From dcced3f0af680a79fb1f3724e5965a169138d9eb Mon Sep 17 00:00:00 2001 From: Maxim Tsoy Date: Tue, 15 Oct 2024 13:39:13 +0200 Subject: [PATCH 1/8] Prepare for the new CPM experiment --- .../Autoconsent/AutoconsentUserScript.swift | 2 +- .../Common/Extensions/URLExtension.swift | 2 +- .../View/PrivacyDashboardViewController.swift | 2 +- .../AdClickAttributionTabExtension.swift | 25 ++++++------------- .../AdClickAttributionTabExtensionTests.swift | 4 +-- 5 files changed, 13 insertions(+), 22 deletions(-) diff --git a/DuckDuckGo/Autoconsent/AutoconsentUserScript.swift b/DuckDuckGo/Autoconsent/AutoconsentUserScript.swift index 38a15b5b97..d9fd415c66 100644 --- a/DuckDuckGo/Autoconsent/AutoconsentUserScript.swift +++ b/DuckDuckGo/Autoconsent/AutoconsentUserScript.swift @@ -235,7 +235,7 @@ extension AutoconsentUserScript { } let remoteConfig = self.config.settings(for: .autoconsent) let disabledCMPs = remoteConfig["disabledCMPs"] as? [String] ?? [] - let isFilterListExperimentEnabled = config.isSubfeatureEnabled(AutoconsentSubfeature.filterlistExperiment) + let isFilterListExperimentEnabled = config.isSubfeatureEnabled(AutoconsentSubfeature.filterlistExperiment2) let enableFilterList = isFilterListExperimentEnabled && AutoconsentFilterlistExperiment.cohort == AutoconsentFilterlistExperiment.test replyHandler([ diff --git a/DuckDuckGo/Common/Extensions/URLExtension.swift b/DuckDuckGo/Common/Extensions/URLExtension.swift index 703b6afefc..17f093745b 100644 --- a/DuckDuckGo/Common/Extensions/URLExtension.swift +++ b/DuckDuckGo/Common/Extensions/URLExtension.swift @@ -94,7 +94,7 @@ extension URL { return nil } - var url = Self.duckDuckGo.appendingParameter(name: DuckDuckGoParameters.search.rawValue, value: trimmedQuery) + var url = Self.duckDuckGo.appendingParameter(name: DuckDuckGoParameters.search.rawValue, value: trimmedQuery).appendingParameter(name: "cpm_filterlist", value: "1") // Add experimental atb parameter to SERP queries for internal users to display Privacy Reminder // https://app.asana.com/0/1199230911884351/1205979030848528/f diff --git a/DuckDuckGo/PrivacyDashboard/View/PrivacyDashboardViewController.swift b/DuckDuckGo/PrivacyDashboard/View/PrivacyDashboardViewController.swift index b9fe4c78db..e6540c2f13 100644 --- a/DuckDuckGo/PrivacyDashboard/View/PrivacyDashboardViewController.swift +++ b/DuckDuckGo/PrivacyDashboard/View/PrivacyDashboardViewController.swift @@ -49,7 +49,7 @@ final class PrivacyDashboardViewController: NSViewController { let privacyConfigurationManager = ContentBlocking.shared.privacyConfigurationManager var updatedParameters = parameters // do not enroll users who have CPM disabled - if CookiePopupProtectionPreferences.shared.isAutoconsentEnabled && privacyConfigurationManager.privacyConfig.isSubfeatureEnabled(AutoconsentSubfeature.filterlistExperiment) { + if CookiePopupProtectionPreferences.shared.isAutoconsentEnabled && privacyConfigurationManager.privacyConfig.isSubfeatureEnabled(AutoconsentSubfeature.filterlistExperiment2) { updatedParameters["cpmExperiment"] = AutoconsentFilterlistExperiment.cohort == AutoconsentFilterlistExperiment.test ? "1" : "0" } PixelKit.fire(NonStandardEvent(NonStandardPixel.brokenSiteReport), diff --git a/DuckDuckGo/Tab/TabExtensions/AdClickAttributionTabExtension.swift b/DuckDuckGo/Tab/TabExtensions/AdClickAttributionTabExtension.swift index abae248fef..7194db2d29 100644 --- a/DuckDuckGo/Tab/TabExtensions/AdClickAttributionTabExtension.swift +++ b/DuckDuckGo/Tab/TabExtensions/AdClickAttributionTabExtension.swift @@ -63,7 +63,7 @@ protocol AdClickLogicProtocol: AnyObject { func applyInheritedAttribution(state: AdClickAttributionLogic.State?) func onRulesChanged(latestRules: [ContentBlockerRulesManager.Rules]) - func onRequestDetected(request: DetectedRequest, cpmExperimentOn: Bool?) + func onRequestDetected(request: DetectedRequest) func onBackForwardNavigation(mainFrameURL: URL?) func onProvisionalNavigation() async @@ -79,12 +79,11 @@ extension ContentBlockerRulesUserScript: ContentBlockerScriptProtocol {} final class AdClickAttributionTabExtension: TabExtension { - private static func makeAdClickAttributionDetection(with dependencies: any AdClickAttributionDependencies, delegate: AdClickAttributionLogic, cpmExperimentOn: Bool?) -> AdClickAttributionDetection { + private static func makeAdClickAttributionDetection(with dependencies: any AdClickAttributionDependencies, delegate: AdClickAttributionLogic) -> AdClickAttributionDetection { let detection = AdClickAttributionDetection(feature: dependencies.adClickAttribution, tld: dependencies.tld, eventReporting: dependencies.attributionEvents, - errorReporting: dependencies.attributionDebugEvents, - cpmExperimentOn: cpmExperimentOn) + errorReporting: dependencies.attributionDebugEvents) detection.delegate = delegate return detection @@ -98,9 +97,9 @@ final class AdClickAttributionTabExtension: TabExtension { errorReporting: dependencies.attributionDebugEvents) } - private static func makeAdClickAttribution(with dependencies: any AdClickAttributionDependencies, cpmExperimentOn: Bool?) -> (AdClickLogicProtocol, AdClickAttributionDetecting) { + private static func makeAdClickAttribution(with dependencies: any AdClickAttributionDependencies) -> (AdClickLogicProtocol, AdClickAttributionDetecting) { let logic = makeAdClickAttributionLogic(with: dependencies) - let detection = makeAdClickAttributionDetection(with: dependencies, delegate: logic, cpmExperimentOn: cpmExperimentOn) + let detection = makeAdClickAttributionDetection(with: dependencies, delegate: logic) return (logic, detection) } @@ -120,7 +119,6 @@ final class AdClickAttributionTabExtension: TabExtension { } private var cancellables = Set() - private let cpmExperimentOn: Bool? init(inheritedAttribution: AdClickAttributionLogic.State?, userContentControllerFuture: some Publisher, @@ -128,18 +126,11 @@ final class AdClickAttributionTabExtension: TabExtension { trackerInfoPublisher: some Publisher, dependencies: some AdClickAttributionDependencies, dateTimeProvider: @escaping () -> Date = Date.init, - logicsProvider: (AdClickAttributionDependencies, Bool?) -> (AdClickLogicProtocol, AdClickAttributionDetecting) = AdClickAttributionTabExtension.makeAdClickAttribution) { + logicsProvider: (AdClickAttributionDependencies) -> (AdClickLogicProtocol, AdClickAttributionDetecting) = AdClickAttributionTabExtension.makeAdClickAttribution) { self.dependencies = dependencies self.dateTimeProvider = dateTimeProvider - - // do not enroll users who have CPM disabled - if !CookiePopupProtectionPreferences.shared.isAutoconsentEnabled || !dependencies.privacyConfigurationManager.privacyConfig.isSubfeatureEnabled(AutoconsentSubfeature.filterlistExperiment) { - self.cpmExperimentOn = nil - } else { - self.cpmExperimentOn = AutoconsentFilterlistExperiment.cohort == AutoconsentFilterlistExperiment.test - } - (self.logic, self.detection) = logicsProvider(dependencies, self.cpmExperimentOn) + (self.logic, self.detection) = logicsProvider(dependencies) self.logic.delegate = self // delay firing up until UserContentController is published @@ -172,7 +163,7 @@ final class AdClickAttributionTabExtension: TabExtension { trackerInfoPublisher .sink { [weak self] tracker in - self?.logic.onRequestDetected(request: tracker, cpmExperimentOn: self?.cpmExperimentOn) + self?.logic.onRequestDetected(request: tracker) } .store(in: &cancellables) } diff --git a/UnitTests/TabExtensionsTests/AdClickAttributionTabExtensionTests.swift b/UnitTests/TabExtensionsTests/AdClickAttributionTabExtensionTests.swift index 766d97a0b3..9c53a02c6c 100644 --- a/UnitTests/TabExtensionsTests/AdClickAttributionTabExtensionTests.swift +++ b/UnitTests/TabExtensionsTests/AdClickAttributionTabExtensionTests.swift @@ -93,7 +93,7 @@ class AdClickAttributionTabExtensionTests: XCTestCase { contentBlockerRulesScriptPublisher: self.contentBlockerRulesScriptSubj, trackerInfoPublisher: self.trackerInfoPublisher, dependencies: dependencies.privacyFeatures.contentBlocking, - dateTimeProvider: { self.now }) { _, _ in + dateTimeProvider: { self.now }) { _ in (logic: self.logic, detection: self.detection) } } @@ -671,7 +671,7 @@ class MockAdClickLogic: AdClickLogicProtocol { } var onRequestDetected: ((DetectedRequest) -> Void)! - func onRequestDetected(request: DetectedRequest, cpmExperimentOn: Bool? = nil) { + func onRequestDetected(request: DetectedRequest) { onRequestDetected(request) } From 73bb0b697f87233cc7e68d5d4aa2f97aa6fdbccd Mon Sep 17 00:00:00 2001 From: Maxim Tsoy Date: Tue, 15 Oct 2024 14:05:36 +0200 Subject: [PATCH 2/8] Send the experiment cohort in search queries --- DuckDuckGo/Common/Extensions/URLExtension.swift | 7 ++++++- DuckDuckGo/Menus/MainMenu.swift | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/DuckDuckGo/Common/Extensions/URLExtension.swift b/DuckDuckGo/Common/Extensions/URLExtension.swift index 17f093745b..51a374c709 100644 --- a/DuckDuckGo/Common/Extensions/URLExtension.swift +++ b/DuckDuckGo/Common/Extensions/URLExtension.swift @@ -94,7 +94,12 @@ extension URL { return nil } - var url = Self.duckDuckGo.appendingParameter(name: DuckDuckGoParameters.search.rawValue, value: trimmedQuery).appendingParameter(name: "cpm_filterlist", value: "1") + let privacyConfigurationManager = ContentBlocking.shared.privacyConfigurationManager + let isFilterListExperimentEnabled = privacyConfigurationManager.privacyConfig.isSubfeatureEnabled(AutoconsentSubfeature.filterlistExperiment2) + var url = Self.duckDuckGo.appendingParameter(name: DuckDuckGoParameters.search.rawValue, value: trimmedQuery) + if isFilterListExperimentEnabled { + url = url.appendingParameter(name: "cpm_filterlist", value: AutoconsentFilterlistExperiment.cohort == AutoconsentFilterlistExperiment.test ? "1" : "0") + } // Add experimental atb parameter to SERP queries for internal users to display Privacy Reminder // https://app.asana.com/0/1199230911884351/1205979030848528/f diff --git a/DuckDuckGo/Menus/MainMenu.swift b/DuckDuckGo/Menus/MainMenu.swift index c7e454208b..e6a3c8ee3f 100644 --- a/DuckDuckGo/Menus/MainMenu.swift +++ b/DuckDuckGo/Menus/MainMenu.swift @@ -604,7 +604,7 @@ final class MainMenu: NSMenu { NSMenuItem(title: "Reset Email Protection InContext Signup Prompt", action: #selector(MainViewController.resetEmailProtectionInContextPrompt)) NSMenuItem(title: "Reset Pixels Storage", action: #selector(MainViewController.resetDailyPixels)) NSMenuItem(title: "Reset Remote Messages", action: #selector(AppDelegate.resetRemoteMessages)) - NSMenuItem(title: "Reset CPM Experiment Cohort (needs restart)", action: #selector(AppDelegate.resetCpmCohort)) + NSMenuItem(title: "Reset CPM Experiment Cohort", action: #selector(AppDelegate.resetCpmCohort)) NSMenuItem(title: "Reset Duck Player Preferences", action: #selector(MainViewController.resetDuckPlayerPreferences)) NSMenuItem(title: "Reset Onboarding", action: #selector(MainViewController.resetOnboarding(_:))) NSMenuItem(title: "Reset Contextual Onboarding", action: #selector(MainViewController.resetContextualOnboarding(_:))) From 3238990720361d9c0085c1ce49d0ce5fe818a511 Mon Sep 17 00:00:00 2001 From: Maxim Tsoy Date: Tue, 15 Oct 2024 14:34:05 +0200 Subject: [PATCH 3/8] Update autoconsent dependency --- package-lock.json | 9 ++++----- package.json | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index cf3dbe14ae..bd0f325aff 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,7 +8,7 @@ "name": "macos-browser", "version": "1.0.0", "dependencies": { - "@duckduckgo/autoconsent": "^10.13.0" + "@duckduckgo/autoconsent": "^10.16.0" }, "devDependencies": { "@rollup/plugin-json": "^4.1.0", @@ -53,10 +53,9 @@ } }, "node_modules/@duckduckgo/autoconsent": { - "version": "10.13.0", - "resolved": "https://registry.npmjs.org/@duckduckgo/autoconsent/-/autoconsent-10.13.0.tgz", - "integrity": "sha512-tR2XpSjA0Y4IC+Ql0J1e9B29Bz3qMEQW/+6gxJ6DRmvu0D8MsKvw0pST2rD/Q3+Mp9rL/FCklB/2X73hLK17LA==", - "license": "MPL-2.0", + "version": "10.16.0", + "resolved": "https://registry.npmjs.org/@duckduckgo/autoconsent/-/autoconsent-10.16.0.tgz", + "integrity": "sha512-731vJAQ/wOu+zpGOgXgnuTyhpF7LCuiVmmOFVLUU9RNHX1357aEm+7D2SdyPAuHj+uDpGkhTbaz/MPX6qFoInQ==", "dependencies": { "tldts-experimental": "^6.1.37" } diff --git a/package.json b/package.json index 5d09ba3e0c..13093ebc25 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,6 @@ "rollup-plugin-terser": "^7.0.2" }, "dependencies": { - "@duckduckgo/autoconsent": "^10.13.0" + "@duckduckgo/autoconsent": "^10.16.0" } } From 6e44c6210b27ffa1a995ab37a52d7e32f44af72c Mon Sep 17 00:00:00 2001 From: Maxim Tsoy Date: Tue, 15 Oct 2024 14:35:11 +0200 Subject: [PATCH 4/8] Upgrade rollup --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index bd0f325aff..7f8b94689b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -455,9 +455,9 @@ } }, "node_modules/rollup": { - "version": "2.79.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", - "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", + "version": "2.79.2", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.2.tgz", + "integrity": "sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==", "dev": true, "bin": { "rollup": "dist/bin/rollup" From da1e1ece5345fab29b609752dc6970e2f3263d14 Mon Sep 17 00:00:00 2001 From: Maxim Tsoy Date: Tue, 15 Oct 2024 14:35:58 +0200 Subject: [PATCH 5/8] Update autoconsent bundle (with filterlist experiment) --- DuckDuckGo/Autoconsent/autoconsent-bundle.js | 80 ++++++++++---------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/DuckDuckGo/Autoconsent/autoconsent-bundle.js b/DuckDuckGo/Autoconsent/autoconsent-bundle.js index 299b8f9c91..bd53df6c15 100644 --- a/DuckDuckGo/Autoconsent/autoconsent-bundle.js +++ b/DuckDuckGo/Autoconsent/autoconsent-bundle.js @@ -1,7 +1,7 @@ -!function(){"use strict";var e=Object.defineProperty,t=(t,o,i)=>(((t,o,i)=>{o in t?e(t,o,{enumerable:!0,configurable:!0,writable:!0,value:i}):t[o]=i})(t,"symbol"!=typeof o?o+"":o,i),i),o=class e{static setBase(t){e.base=t}static findElement(t,o=null,i=!1){let n=null;return n=null!=o?Array.from(o.querySelectorAll(t.selector)):null!=e.base?Array.from(e.base.querySelectorAll(t.selector)):Array.from(document.querySelectorAll(t.selector)),null!=t.textFilter&&(n=n.filter((e=>{const o=e.textContent.toLowerCase();if(Array.isArray(t.textFilter)){let e=!1;for(const i of t.textFilter)if(-1!==o.indexOf(i.toLowerCase())){e=!0;break}return e}if(null!=t.textFilter)return-1!==o.indexOf(t.textFilter.toLowerCase())}))),null!=t.styleFilters&&(n=n.filter((e=>{const o=window.getComputedStyle(e);let i=!0;for(const e of t.styleFilters){const t=o[e.option];i=e.negated?i&&t!==e.value:i&&t===e.value}return i}))),null!=t.displayFilter&&(n=n.filter((e=>t.displayFilter?0!==e.offsetHeight:0===e.offsetHeight))),null!=t.iframeFilter&&(n=n.filter((()=>t.iframeFilter?window.location!==window.parent.location:window.location===window.parent.location))),null!=t.childFilter&&(n=n.filter((o=>{const i=e.base;e.setBase(o);const n=e.find(t.childFilter);return e.setBase(i),null!=n.target}))),i?n:(n.length>1&&console.warn("Multiple possible targets: ",n,t,o),n[0])}static find(t,o=!1){const i=[];if(null!=t.parent){const n=e.findElement(t.parent,null,o);if(null!=n){if(n instanceof Array)return n.forEach((n=>{const s=e.findElement(t.target,n,o);s instanceof Array?s.forEach((e=>{i.push({parent:n,target:e})})):i.push({parent:n,target:s})})),i;{const s=e.findElement(t.target,n,o);s instanceof Array?s.forEach((e=>{i.push({parent:n,target:e})})):i.push({parent:n,target:s})}}}else{const n=e.findElement(t.target,null,o);n instanceof Array?n.forEach((e=>{i.push({parent:null,target:e})})):i.push({parent:null,target:n})}return 0===i.length&&i.push({parent:null,target:null}),o?i:(1!==i.length&&console.warn("Multiple results found, even though multiple false",i),i[0])}};o.base=null;var i=o;function n(e){const t=i.find(e);return"css"===e.type?!!t.target:"checkbox"===e.type?!!t.target&&t.target.checked:void 0}async function s(e,t){switch(e.type){case"click":return async function(e){const t=i.find(e);null!=t.target&&t.target.click();return c(0)}(e);case"list":return async function(e,t){for(const o of e.actions)await s(o,t)}(e,t);case"consent":return async function(e,t){for(const o of e.consents){const e=-1!==t.indexOf(o.type);if(o.matcher&&o.toggleAction){n(o.matcher)!==e&&await s(o.toggleAction)}else e?await s(o.trueAction):await s(o.falseAction)}}(e,t);case"ifcss":return async function(e,t){const o=i.find(e);o.target?e.falseAction&&await s(e.falseAction,t):e.trueAction&&await s(e.trueAction,t)}(e,t);case"waitcss":return async function(e){await new Promise((t=>{let o=e.retries||10;const n=e.waitTime||250,s=()=>{const c=i.find(e);(e.negated&&c.target||!e.negated&&!c.target)&&o>0?(o-=1,setTimeout(s,n)):t()};s()}))}(e);case"foreach":return async function(e,t){const o=i.find(e,!0),n=i.base;for(const n of o)n.target&&(i.setBase(n.target),await s(e.action,t));i.setBase(n)}(e,t);case"hide":return async function(e){const t=i.find(e);t.target&&t.target.classList.add("Autoconsent-Hidden")}(e);case"slide":return async function(e){const t=i.find(e),o=i.find(e.dragTarget);if(t.target){const e=t.target.getBoundingClientRect(),i=o.target.getBoundingClientRect();let n=i.top-e.top,s=i.left-e.left;"y"===this.config.axis.toLowerCase()&&(s=0),"x"===this.config.axis.toLowerCase()&&(n=0);const c=window.screenX+e.left+e.width/2,r=window.screenY+e.top+e.height/2,a=e.left+e.width/2,l=e.top+e.height/2,p=document.createEvent("MouseEvents");p.initMouseEvent("mousedown",!0,!0,window,0,c,r,a,l,!1,!1,!1,!1,0,t.target);const d=document.createEvent("MouseEvents");d.initMouseEvent("mousemove",!0,!0,window,0,c+s,r+n,a+s,l+n,!1,!1,!1,!1,0,t.target);const u=document.createEvent("MouseEvents");u.initMouseEvent("mouseup",!0,!0,window,0,c+s,r+n,a+s,l+n,!1,!1,!1,!1,0,t.target),t.target.dispatchEvent(p),await this.waitTimeout(10),t.target.dispatchEvent(d),await this.waitTimeout(10),t.target.dispatchEvent(u)}}(e);case"close":return async function(){window.close()}();case"wait":return async function(e){await c(e.waitTime)}(e);case"eval":return async function(e){return console.log("eval!",e.code),new Promise((t=>{try{e.async?(window.eval(e.code),setTimeout((()=>{t(window.eval("window.__consentCheckResult"))}),e.timeout||250)):t(window.eval(e.code))}catch(o){console.warn("eval error",o,e.code),t(!1)}}))}(e);default:throw"Unknown action type: "+e.type}}function c(e){return new Promise((t=>{setTimeout((()=>{t()}),e)}))}function r(){return crypto&&void 0!==crypto.randomUUID?crypto.randomUUID():Math.random().toString()}var a={pending:new Map,sendContentMessage:null};function l(e,t){const o=r();a.sendContentMessage({type:"eval",id:o,code:e,snippetId:t});const i=new class{constructor(e,t=1e3){this.id=e,this.promise=new Promise(((e,t)=>{this.resolve=e,this.reject=t})),this.timer=window.setTimeout((()=>{this.reject(new Error("timeout"))}),t)}}(o);return a.pending.set(i.id,i),i.promise}var p={EVAL_0:()=>console.log(1),EVAL_CONSENTMANAGER_1:()=>window.__cmp&&"object"==typeof __cmp("getCMPData"),EVAL_CONSENTMANAGER_2:()=>!__cmp("consentStatus").userChoiceExists,EVAL_CONSENTMANAGER_3:()=>__cmp("setConsent",0),EVAL_CONSENTMANAGER_4:()=>__cmp("setConsent",1),EVAL_CONSENTMANAGER_5:()=>__cmp("consentStatus").userChoiceExists,EVAL_COOKIEBOT_1:()=>!!window.Cookiebot,EVAL_COOKIEBOT_2:()=>!window.Cookiebot.hasResponse&&!0===window.Cookiebot.dialog?.visible,EVAL_COOKIEBOT_3:()=>window.Cookiebot.withdraw()||!0,EVAL_COOKIEBOT_4:()=>window.Cookiebot.hide()||!0,EVAL_COOKIEBOT_5:()=>!0===window.Cookiebot.declined,EVAL_KLARO_1:()=>{const e=globalThis.klaroConfig||globalThis.klaro?.getManager&&globalThis.klaro.getManager().config;if(!e)return!0;const t=(e.services||e.apps).filter((e=>!e.required)).map((e=>e.name));if(klaro&&klaro.getManager){const e=klaro.getManager();return t.every((t=>!e.consents[t]))}if(klaroConfig&&"cookie"===klaroConfig.storageMethod){const e=klaroConfig.cookieName||klaroConfig.storageName,o=JSON.parse(decodeURIComponent(document.cookie.split(";").find((t=>t.trim().startsWith(e))).split("=")[1]));return Object.keys(o).filter((e=>t.includes(e))).every((e=>!1===o[e]))}},EVAL_KLARO_OPEN_POPUP:()=>{klaro.show(void 0,!0)},EVAL_KLARO_TRY_API_OPT_OUT:()=>{if(window.klaro&&"function"==typeof klaro.show&&"function"==typeof klaro.getManager)try{return klaro.getManager().changeAll(!1),klaro.getManager().saveAndApplyConsents(),!0}catch(e){return console.warn(e),!1}return!1},EVAL_ONETRUST_1:()=>window.OnetrustActiveGroups.split(",").filter((e=>e.length>0)).length<=1,EVAL_TRUSTARC_TOP:()=>window&&window.truste&&"0"===window.truste.eu.bindMap.prefCookie,EVAL_TRUSTARC_FRAME_TEST:()=>window&&window.QueryString&&"0"===window.QueryString.preferences,EVAL_TRUSTARC_FRAME_GTM:()=>window&&window.QueryString&&"1"===window.QueryString.gtm,EVAL_ABC_TEST:()=>document.cookie.includes("trackingconsent"),EVAL_ADROLL_0:()=>!document.cookie.includes("__adroll_fpc"),EVAL_ALMACMP_0:()=>document.cookie.includes('"name":"Google","consent":false'),EVAL_AFFINITY_SERIF_COM_0:()=>document.cookie.includes("serif_manage_cookies_viewed")&&!document.cookie.includes("serif_allow_analytics"),EVAL_ARBEITSAGENTUR_TEST:()=>document.cookie.includes("cookie_consent=denied"),EVAL_AXEPTIO_0:()=>document.cookie.includes("axeptio_authorized_vendors=%2C%2C"),EVAL_BAHN_TEST:()=>1===utag.gdpr.getSelectedCategories().length,EVAL_BING_0:()=>document.cookie.includes("AL=0")&&document.cookie.includes("AD=0")&&document.cookie.includes("SM=0"),EVAL_BLOCKSY_0:()=>document.cookie.includes("blocksy_cookies_consent_accepted=no"),EVAL_BORLABS_0:()=>!JSON.parse(decodeURIComponent(document.cookie.split(";").find((e=>-1!==e.indexOf("borlabs-cookie"))).split("=",2)[1])).consents.statistics,EVAL_BUNDESREGIERUNG_DE_0:()=>document.cookie.match("cookie-allow-tracking=0"),EVAL_CANVA_0:()=>!document.cookie.includes("gtm_fpc_engagement_event"),EVAL_CC_BANNER2_0:()=>!!document.cookie.match(/sncc=[^;]+D%3Dtrue/),EVAL_CLICKIO_0:()=>document.cookie.includes("__lxG__consent__v2_daisybit="),EVAL_CLINCH_0:()=>document.cookie.includes("ctc_rejected=1"),EVAL_COOKIECONSENT2_TEST:()=>document.cookie.includes("cc_cookie="),EVAL_COOKIECONSENT3_TEST:()=>document.cookie.includes("cc_cookie="),EVAL_COINBASE_0:()=>JSON.parse(decodeURIComponent(document.cookie.match(/cm_(eu|default)_preferences=([0-9a-zA-Z\\{\\}\\[\\]%:]*);?/)[2])).consent.length<=1,EVAL_COMPLIANZ_BANNER_0:()=>document.cookie.includes("cmplz_banner-status=dismissed"),EVAL_COOKIE_LAW_INFO_0:()=>CLI.disableAllCookies()||CLI.reject_close()||!0,EVAL_COOKIE_LAW_INFO_1:()=>-1===document.cookie.indexOf("cookielawinfo-checkbox-non-necessary=yes"),EVAL_COOKIE_LAW_INFO_DETECT:()=>!!window.CLI,EVAL_COOKIE_MANAGER_POPUP_0:()=>!1===JSON.parse(document.cookie.split(";").find((e=>e.trim().startsWith("CookieLevel"))).split("=")[1]).social,EVAL_COOKIEALERT_0:()=>document.querySelector("body").removeAttribute("style")||!0,EVAL_COOKIEALERT_1:()=>document.querySelector("body").removeAttribute("style")||!0,EVAL_COOKIEALERT_2:()=>!0===window.CookieConsent.declined,EVAL_COOKIEFIRST_0:()=>{return!1===(e=JSON.parse(decodeURIComponent(document.cookie.split(";").find((e=>-1!==e.indexOf("cookiefirst"))).trim()).split("=")[1])).performance&&!1===e.functional&&!1===e.advertising;var e},EVAL_COOKIEFIRST_1:()=>document.querySelectorAll("button[data-cookiefirst-accent-color=true][role=checkbox]:not([disabled])").forEach((e=>"true"==e.getAttribute("aria-checked")&&e.click()))||!0,EVAL_COOKIEINFORMATION_0:()=>CookieInformation.declineAllCategories()||!0,EVAL_COOKIEINFORMATION_1:()=>CookieInformation.submitAllCategories()||!0,EVAL_COOKIEINFORMATION_2:()=>document.cookie.includes("CookieInformationConsent="),EVAL_COOKIEYES_0:()=>document.cookie.includes("advertisement:no"),EVAL_DAILYMOTION_0:()=>!!document.cookie.match("dm-euconsent-v2"),EVAL_DNDBEYOND_TEST:()=>document.cookie.includes("cookie-consent=denied"),EVAL_DSGVO_0:()=>!document.cookie.includes("sp_dsgvo_cookie_settings"),EVAL_DUNELM_0:()=>document.cookie.includes("cc_functional=0")&&document.cookie.includes("cc_targeting=0"),EVAL_ETSY_0:()=>document.querySelectorAll(".gdpr-overlay-body input").forEach((e=>{e.checked=!1}))||!0,EVAL_ETSY_1:()=>document.querySelector(".gdpr-overlay-view button[data-wt-overlay-close]").click()||!0,EVAL_EU_COOKIE_COMPLIANCE_0:()=>-1===document.cookie.indexOf("cookie-agreed=2"),EVAL_EU_COOKIE_LAW_0:()=>!document.cookie.includes("euCookie"),EVAL_EZOIC_0:()=>ezCMP.handleAcceptAllClick(),EVAL_EZOIC_1:()=>!!document.cookie.match(/ez-consent-tcf/),EVAL_FIDES_DETECT_POPUP:()=>window.Fides?.initialized,EVAL_GOOGLE_0:()=>!!document.cookie.match(/SOCS=CAE/),EVAL_HEMA_TEST_0:()=>document.cookie.includes("cookies_rejected=1"),EVAL_IUBENDA_0:()=>document.querySelectorAll(".purposes-item input[type=checkbox]:not([disabled])").forEach((e=>{e.checked&&e.click()}))||!0,EVAL_IUBENDA_1:()=>!!document.cookie.match(/_iub_cs-\d+=/),EVAL_IWINK_TEST:()=>document.cookie.includes("cookie_permission_granted=no"),EVAL_JQUERY_COOKIEBAR_0:()=>!document.cookie.includes("cookies-state=accepted"),EVAL_KETCH_TEST:()=>document.cookie.includes("_ketch_consent_v1_"),EVAL_MEDIAVINE_0:()=>document.querySelectorAll('[data-name="mediavine-gdpr-cmp"] input[type=checkbox]').forEach((e=>e.checked&&e.click()))||!0,EVAL_MICROSOFT_0:()=>Array.from(document.querySelectorAll("div > button")).filter((e=>e.innerText.match("Reject|Ablehnen")))[0].click()||!0,EVAL_MICROSOFT_1:()=>Array.from(document.querySelectorAll("div > button")).filter((e=>e.innerText.match("Accept|Annehmen")))[0].click()||!0,EVAL_MICROSOFT_2:()=>!!document.cookie.match("MSCC|GHCC"),EVAL_MOOVE_0:()=>document.querySelectorAll("#moove_gdpr_cookie_modal input").forEach((e=>{e.disabled||(e.checked="moove_gdpr_strict_cookies"===e.name||"moove_gdpr_strict_cookies"===e.id)}))||!0,EVAL_ONENINETWO_0:()=>document.cookie.includes("CC_ADVERTISING=NO")&&document.cookie.includes("CC_ANALYTICS=NO"),EVAL_OPERA_0:()=>document.cookie.includes("cookie_consent_essential=true")&&!document.cookie.includes("cookie_consent_marketing=true"),EVAL_PAYPAL_0:()=>!0===document.cookie.includes("cookie_prefs"),EVAL_PRIMEBOX_0:()=>!document.cookie.includes("cb-enabled=accepted"),EVAL_PUBTECH_0:()=>document.cookie.includes("euconsent-v2")&&(document.cookie.match(/.YAAAAAAAAAAA/)||document.cookie.match(/.aAAAAAAAAAAA/)||document.cookie.match(/.YAAACFgAAAAA/)),EVAL_REDDIT_0:()=>document.cookie.includes("eu_cookie={%22opted%22:true%2C%22nonessential%22:false}"),EVAL_ROBLOX_TEST:()=>document.cookie.includes("RBXcb"),EVAL_SIRDATA_UNBLOCK_SCROLL:()=>(document.documentElement.classList.forEach((e=>{e.startsWith("sd-cmp-")&&document.documentElement.classList.remove(e)})),!0),EVAL_SNIGEL_0:()=>!!document.cookie.match("snconsent"),EVAL_STEAMPOWERED_0:()=>2===JSON.parse(decodeURIComponent(document.cookie.split(";").find((e=>e.trim().startsWith("cookieSettings"))).split("=")[1])).preference_state,EVAL_SVT_TEST:()=>document.cookie.includes('cookie-consent-1={"optedIn":true,"functionality":false,"statistics":false}'),EVAL_TAKEALOT_0:()=>document.body.classList.remove("freeze")||(document.body.style="")||!0,EVAL_TARTEAUCITRON_0:()=>tarteaucitron.userInterface.respondAll(!1)||!0,EVAL_TARTEAUCITRON_1:()=>tarteaucitron.userInterface.respondAll(!0)||!0,EVAL_TARTEAUCITRON_2:()=>document.cookie.match(/tarteaucitron=[^;]*/)?.[0].includes("false"),EVAL_TAUNTON_TEST:()=>document.cookie.includes("taunton_user_consent_submitted=true"),EVAL_TEALIUM_0:()=>void 0!==window.utag&&"object"==typeof utag.gdpr,EVAL_TEALIUM_1:()=>utag.gdpr.setConsentValue(!1)||!0,EVAL_TEALIUM_DONOTSELL:()=>utag.gdpr.dns?.setDnsState(!1)||!0,EVAL_TEALIUM_2:()=>utag.gdpr.setConsentValue(!0)||!0,EVAL_TEALIUM_3:()=>1!==utag.gdpr.getConsentState(),EVAL_TEALIUM_DONOTSELL_CHECK:()=>1!==utag.gdpr.dns?.getDnsState(),EVAL_TESLA_TEST:()=>document.cookie.includes("tsla-cookie-consent=rejected"),EVAL_TESTCMP_0:()=>"button_clicked"===window.results.results[0],EVAL_TESTCMP_COSMETIC_0:()=>"banner_hidden"===window.results.results[0],EVAL_THEFREEDICTIONARY_0:()=>cmpUi.showPurposes()||cmpUi.rejectAll()||!0,EVAL_THEFREEDICTIONARY_1:()=>cmpUi.allowAll()||!0,EVAL_THEVERGE_0:()=>document.cookie.includes("_duet_gdpr_acknowledged=1"),EVAL_TWCC_TEST:()=>document.cookie.includes("twCookieConsent="),EVAL_UBUNTU_COM_0:()=>document.cookie.includes("_cookies_accepted=essential"),EVAL_UK_COOKIE_CONSENT_0:()=>!document.cookie.includes("catAccCookies"),EVAL_USERCENTRICS_API_0:()=>"object"==typeof UC_UI,EVAL_USERCENTRICS_API_1:()=>!!UC_UI.closeCMP(),EVAL_USERCENTRICS_API_2:()=>!!UC_UI.denyAllConsents(),EVAL_USERCENTRICS_API_3:()=>!!UC_UI.acceptAllConsents(),EVAL_USERCENTRICS_API_4:()=>!!UC_UI.closeCMP(),EVAL_USERCENTRICS_API_5:()=>!0===UC_UI.areAllConsentsAccepted(),EVAL_USERCENTRICS_API_6:()=>!1===UC_UI.areAllConsentsAccepted(),EVAL_USERCENTRICS_BUTTON_0:()=>JSON.parse(localStorage.getItem("usercentrics")).consents.every((e=>e.isEssential||!e.consentStatus)),EVAL_WAITROSE_0:()=>Array.from(document.querySelectorAll("label[id$=cookies-deny-label]")).forEach((e=>e.click()))||!0,EVAL_WAITROSE_1:()=>document.cookie.includes("wtr_cookies_advertising=0")&&document.cookie.includes("wtr_cookies_analytics=0"),EVAL_WP_COOKIE_NOTICE_0:()=>document.cookie.includes("wpl_viewed_cookie=no"),EVAL_XE_TEST:()=>document.cookie.includes("xeConsentState={%22performance%22:false%2C%22marketing%22:false%2C%22compliance%22:false}"),EVAL_XING_0:()=>document.cookie.includes("userConsent=%7B%22marketing%22%3Afalse"),EVAL_YOUTUBE_DESKTOP_0:()=>!!document.cookie.match(/SOCS=CAE/),EVAL_YOUTUBE_MOBILE_0:()=>!!document.cookie.match(/SOCS=CAE/)};var d={main:!0,frame:!1,urlPattern:""},u=class{constructor(e){this.runContext=d,this.autoconsent=e}get hasSelfTest(){throw new Error("Not Implemented")}get isIntermediate(){throw new Error("Not Implemented")}get isCosmetic(){throw new Error("Not Implemented")}mainWorldEval(e){const t=p[e];if(!t)return console.warn("Snippet not found",e),Promise.resolve(!1);const o=this.autoconsent.config.logs;if(this.autoconsent.config.isMainWorld){o.evals&&console.log("inline eval:",e,t);let i=!1;try{i=!!t.call(globalThis)}catch(t){o.evals&&console.error("error evaluating rule",e,t)}return Promise.resolve(i)}const i=`(${t.toString()})()`;return o.evals&&console.log("async eval:",e,i),l(i,e).catch((t=>(o.evals&&console.error("error evaluating rule",e,t),!1)))}checkRunContext(){const e={...d,...this.runContext},t=window.top===window;return!(t&&!e.main)&&(!(!t&&!e.frame)&&!(e.urlPattern&&!window.location.href.match(e.urlPattern)))}detectCmp(){throw new Error("Not Implemented")}async detectPopup(){return!1}optOut(){throw new Error("Not Implemented")}optIn(){throw new Error("Not Implemented")}openCmp(){throw new Error("Not Implemented")}async test(){return Promise.resolve(!0)}click(e,t=!1){return this.autoconsent.domActions.click(e,t)}elementExists(e){return this.autoconsent.domActions.elementExists(e)}elementVisible(e,t){return this.autoconsent.domActions.elementVisible(e,t)}waitForElement(e,t){return this.autoconsent.domActions.waitForElement(e,t)}waitForVisible(e,t,o){return this.autoconsent.domActions.waitForVisible(e,t,o)}waitForThenClick(e,t,o){return this.autoconsent.domActions.waitForThenClick(e,t,o)}wait(e){return this.autoconsent.domActions.wait(e)}hide(e,t){return this.autoconsent.domActions.hide(e,t)}prehide(e){return this.autoconsent.domActions.prehide(e)}undoPrehide(){return this.autoconsent.domActions.undoPrehide()}querySingleReplySelector(e,t){return this.autoconsent.domActions.querySingleReplySelector(e,t)}querySelectorChain(e){return this.autoconsent.domActions.querySelectorChain(e)}elementSelector(e){return this.autoconsent.domActions.elementSelector(e)}},h=class extends u{constructor(e,t){super(t),this.rule=e,this.name=e.name,this.runContext=e.runContext||d}get hasSelfTest(){return!!this.rule.test}get isIntermediate(){return!!this.rule.intermediate}get isCosmetic(){return!!this.rule.cosmetic}get prehideSelectors(){return this.rule.prehideSelectors}async detectCmp(){return!!this.rule.detectCmp&&this._runRulesParallel(this.rule.detectCmp)}async detectPopup(){return!!this.rule.detectPopup&&this._runRulesSequentially(this.rule.detectPopup)}async optOut(){const e=this.autoconsent.config.logs;return!!this.rule.optOut&&(e.lifecycle&&console.log("Initiated optOut()",this.rule.optOut),this._runRulesSequentially(this.rule.optOut))}async optIn(){const e=this.autoconsent.config.logs;return!!this.rule.optIn&&(e.lifecycle&&console.log("Initiated optIn()",this.rule.optIn),this._runRulesSequentially(this.rule.optIn))}async openCmp(){return!!this.rule.openCmp&&this._runRulesSequentially(this.rule.openCmp)}async test(){return this.hasSelfTest?this._runRulesSequentially(this.rule.test):super.test()}async evaluateRuleStep(e){const t=[],o=this.autoconsent.config.logs;if(e.exists&&t.push(this.elementExists(e.exists)),e.visible&&t.push(this.elementVisible(e.visible,e.check)),e.eval){const o=this.mainWorldEval(e.eval);t.push(o)}if(e.waitFor&&t.push(this.waitForElement(e.waitFor,e.timeout)),e.waitForVisible&&t.push(this.waitForVisible(e.waitForVisible,e.timeout,e.check)),e.click&&t.push(this.click(e.click,e.all)),e.waitForThenClick&&t.push(this.waitForThenClick(e.waitForThenClick,e.timeout,e.all)),e.wait&&t.push(this.wait(e.wait)),e.hide&&t.push(this.hide(e.hide,e.method)),e.if){if(!e.if.exists&&!e.if.visible)return console.error("invalid conditional rule",e.if),!1;const i=await this.evaluateRuleStep(e.if);o.rulesteps&&console.log("Condition is",i),i?t.push(this._runRulesSequentially(e.then)):e.else?t.push(this._runRulesSequentially(e.else)):t.push(!0)}if(e.any){for(const t of e.any)if(await this.evaluateRuleStep(t))return!0;return!1}if(0===t.length)return o.errors&&console.warn("Unrecognized rule",e),!1;return(await Promise.all(t)).reduce(((e,t)=>e&&t),!0)}async _runRulesParallel(e){const t=e.map((e=>this.evaluateRuleStep(e)));return(await Promise.all(t)).every((e=>!!e))}async _runRulesSequentially(e){const t=this.autoconsent.config.logs;for(const o of e){t.rulesteps&&console.log("Running rule...",o);const e=await this.evaluateRuleStep(o);if(t.rulesteps&&console.log("...rule result",e),!e&&!o.optional)return!1}return!0}};function m(e="autoconsent-css-rules"){const t=`style#${e}`,o=document.querySelector(t);if(o&&o instanceof HTMLStyleElement)return o;{const t=document.head||document.getElementsByTagName("head")[0]||document.documentElement,o=document.createElement("style");return o.id=e,t.appendChild(o),o}}function A(e,t,o="display"){const i=`${t} { ${"opacity"===o?"opacity: 0":"display: none"} !important; z-index: -1 !important; pointer-events: none !important; } `;return e instanceof HTMLStyleElement&&(e.innerText+=i,t.length>0)}async function g(e,t,o){const i=await e();return!i&&t>0?new Promise((i=>{setTimeout((async()=>{i(g(e,t-1,o))}),o)})):Promise.resolve(i)}function f(e){if(!e)return!1;if(null!==e.offsetParent)return!0;{const t=window.getComputedStyle(e);if("fixed"===t.position&&"none"!==t.display)return!0}return!1}function k(e){const t={enabled:!0,autoAction:"optOut",disabledCmps:[],enablePrehide:!0,enableCosmeticRules:!0,detectRetries:20,isMainWorld:!1,prehideTimeout:2e3,enableFilterList:!0,logs:{lifecycle:!1,rulesteps:!1,evals:!1,errors:!0,messages:!1}},o=(i=t,globalThis.structuredClone?structuredClone(i):JSON.parse(JSON.stringify(i)));var i;for(const i of Object.keys(t))void 0!==e[i]&&(o[i]=e[i]);return o}var b="#truste-show-consent",y="#truste-consent-track",w=[class extends u{constructor(e){super(e),this.name="TrustArc-top",this.prehideSelectors=[".trustarc-banner-container",`.truste_popframe,.truste_overlay,.truste_box_overlay,${y}`],this.runContext={main:!0,frame:!1},this._shortcutButton=null,this._optInDone=!1}get hasSelfTest(){return!0}get isIntermediate(){return!this._optInDone&&!this._shortcutButton}get isCosmetic(){return!1}async detectCmp(){const e=this.elementExists(`${b},${y}`);return e&&(this._shortcutButton=document.querySelector("#truste-consent-required")),e}async detectPopup(){return this.elementVisible(`#truste-consent-content,#trustarc-banner-overlay,${y}`,"all")}openFrame(){this.click(b)}async optOut(){return this._shortcutButton?(this._shortcutButton.click(),!0):(A(m(),`.truste_popframe, .truste_overlay, .truste_box_overlay, ${y}`),this.click(b),setTimeout((()=>{m().remove()}),1e4),!0)}async optIn(){return this._optInDone=!0,this.click("#truste-consent-button")}async openCmp(){return!0}async test(){return await this.wait(500),await this.mainWorldEval("EVAL_TRUSTARC_TOP")}},class extends u{constructor(){super(...arguments),this.name="TrustArc-frame",this.runContext={main:!1,frame:!0,urlPattern:"^https://consent-pref\\.trustarc\\.com/\\?"}}get hasSelfTest(){return!0}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return!0}async detectPopup(){return this.elementVisible("#defaultpreferencemanager","any")&&this.elementVisible(".mainContent","any")}async navigateToSettings(){return await g((async()=>this.elementExists(".shp")||this.elementVisible(".advance","any")||this.elementExists(".switch span:first-child")),10,500),this.elementExists(".shp")&&this.click(".shp"),await this.waitForElement(".prefPanel",5e3),this.elementVisible(".advance","any")&&this.click(".advance"),await g((()=>this.elementVisible(".switch span:first-child","any")),5,1e3)}async optOut(){if(await this.mainWorldEval("EVAL_TRUSTARC_FRAME_TEST"))return!0;let e=3e3;return await this.mainWorldEval("EVAL_TRUSTARC_FRAME_GTM")&&(e=1500),await g((()=>"complete"===document.readyState),20,100),await this.waitForElement(".mainContent[aria-hidden=false]",e),!!this.click(".rejectAll")||(this.elementExists(".prefPanel")&&await this.waitForElement('.prefPanel[style="visibility: visible;"]',e),this.click("#catDetails0")?(this.click(".submit"),this.waitForThenClick("#gwt-debug-close_id",e),!0):this.click(".required")?(this.waitForThenClick("#gwt-debug-close_id",e),!0):(await this.navigateToSettings(),this.click(".switch span:nth-child(1):not(.active)",!0),this.click(".submit"),this.waitForThenClick("#gwt-debug-close_id",10*e),!0))}async optIn(){return this.click(".call")||(await this.navigateToSettings(),this.click(".switch span:nth-child(2)",!0),this.click(".submit"),this.waitForElement("#gwt-debug-close_id",3e5).then((()=>{this.click("#gwt-debug-close_id")}))),!0}async test(){return await this.wait(500),await this.mainWorldEval("EVAL_TRUSTARC_FRAME_TEST")}},class extends u{constructor(){super(...arguments),this.name="Cybotcookiebot",this.prehideSelectors=["#CybotCookiebotDialog,#CybotCookiebotDialogBodyUnderlay,#dtcookie-container,#cookiebanner,#cb-cookieoverlay,.modal--cookie-banner,#cookiebanner_outer,#CookieBanner"]}get hasSelfTest(){return!0}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return await this.mainWorldEval("EVAL_COOKIEBOT_1")}async detectPopup(){return this.mainWorldEval("EVAL_COOKIEBOT_2")}async optOut(){await this.wait(500);let e=await this.mainWorldEval("EVAL_COOKIEBOT_3");return await this.wait(500),e=e&&await this.mainWorldEval("EVAL_COOKIEBOT_4"),e}async optIn(){return this.elementExists("#dtcookie-container")?this.click(".h-dtcookie-accept"):(this.click(".CybotCookiebotDialogBodyLevelButton:not(:checked):enabled",!0),this.click("#CybotCookiebotDialogBodyLevelButtonAccept"),this.click("#CybotCookiebotDialogBodyButtonAccept"),!0)}async test(){return await this.wait(500),await this.mainWorldEval("EVAL_COOKIEBOT_5")}},class extends u{constructor(){super(...arguments),this.name="Sourcepoint-frame",this.prehideSelectors=["div[id^='sp_message_container_'],.message-overlay","#sp_privacy_manager_container"],this.ccpaNotice=!1,this.ccpaPopup=!1,this.runContext={main:!0,frame:!0}}get hasSelfTest(){return!1}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){const e=new URL(location.href);return e.searchParams.has("message_id")&&"ccpa-notice.sp-prod.net"===e.hostname?(this.ccpaNotice=!0,!0):"ccpa-pm.sp-prod.net"===e.hostname?(this.ccpaPopup=!0,!0):("/index.html"===e.pathname||"/privacy-manager/index.html"===e.pathname||"/ccpa_pm/index.html"===e.pathname)&&(e.searchParams.has("message_id")||e.searchParams.has("requestUUID")||e.searchParams.has("consentUUID"))}async detectPopup(){return!!this.ccpaNotice||(this.ccpaPopup?await this.waitForElement(".priv-save-btn",2e3):(await this.waitForElement(".sp_choice_type_11,.sp_choice_type_12,.sp_choice_type_13,.sp_choice_type_ACCEPT_ALL,.sp_choice_type_SAVE_AND_EXIT",2e3),!this.elementExists(".sp_choice_type_9")))}async optIn(){return await this.waitForElement(".sp_choice_type_11,.sp_choice_type_ACCEPT_ALL",2e3),!!this.click(".sp_choice_type_11")||!!this.click(".sp_choice_type_ACCEPT_ALL")}isManagerOpen(){return"/privacy-manager/index.html"===location.pathname||"/ccpa_pm/index.html"===location.pathname}async optOut(){const e=this.autoconsent.config.logs;if(this.ccpaPopup){const e=document.querySelectorAll(".priv-purpose-container .sp-switch-arrow-block a.neutral.on .right");for(const t of e)t.click();const t=document.querySelectorAll(".priv-purpose-container .sp-switch-arrow-block a.switch-bg.on");for(const e of t)e.click();return this.click(".priv-save-btn")}if(!this.isManagerOpen()){if(!await this.waitForElement(".sp_choice_type_12,.sp_choice_type_13"))return!1;if(!this.elementExists(".sp_choice_type_12"))return this.click(".sp_choice_type_13");this.click(".sp_choice_type_12"),await g((()=>this.isManagerOpen()),200,100)}await this.waitForElement(".type-modal",2e4),this.waitForThenClick(".ccpa-stack .pm-switch[aria-checked=true] .slider",500,!0);try{const e=".sp_choice_type_REJECT_ALL",t=".reject-toggle",o=await Promise.race([this.waitForElement(e,2e3).then((e=>e?0:-1)),this.waitForElement(t,2e3).then((e=>e?1:-1)),this.waitForElement(".pm-features",2e3).then((e=>e?2:-1))]);if(0===o)return await this.wait(1500),this.click(e);1===o?this.click(t):2===o&&(await this.waitForElement(".pm-features",1e4),this.click(".checked > span",!0),this.click(".chevron"))}catch(t){e.errors&&console.warn(t)}return this.click(".sp_choice_type_SAVE_AND_EXIT")}},class extends u{constructor(){super(...arguments),this.name="consentmanager.net",this.prehideSelectors=["#cmpbox,#cmpbox2"],this.apiAvailable=!1}get hasSelfTest(){return this.apiAvailable}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return this.apiAvailable=await this.mainWorldEval("EVAL_CONSENTMANAGER_1"),!!this.apiAvailable||this.elementExists("#cmpbox")}async detectPopup(){return this.apiAvailable?(await this.wait(500),await this.mainWorldEval("EVAL_CONSENTMANAGER_2")):this.elementVisible("#cmpbox .cmpmore","any")}async optOut(){return await this.wait(500),this.apiAvailable?await this.mainWorldEval("EVAL_CONSENTMANAGER_3"):!!this.click(".cmpboxbtnno")||(this.elementExists(".cmpwelcomeprpsbtn")?(this.click(".cmpwelcomeprpsbtn > a[aria-checked=true]",!0),this.click(".cmpboxbtnsave"),!0):(this.click(".cmpboxbtncustom"),await this.waitForElement(".cmptblbox",2e3),this.click(".cmptdchoice > a[aria-checked=true]",!0),this.click(".cmpboxbtnyescustomchoices"),this.hide("#cmpwrapper,#cmpbox","display"),!0))}async optIn(){return this.apiAvailable?await this.mainWorldEval("EVAL_CONSENTMANAGER_4"):this.click(".cmpboxbtnyes")}async test(){if(this.apiAvailable)return await this.mainWorldEval("EVAL_CONSENTMANAGER_5")}},class extends u{constructor(){super(...arguments),this.name="Evidon"}get hasSelfTest(){return!1}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return this.elementExists("#_evidon_banner")}async detectPopup(){return this.elementVisible("#_evidon_banner","any")}async optOut(){return this.click("#_evidon-decline-button")||(A(m(),"#evidon-prefdiag-overlay,#evidon-prefdiag-background,#_evidon-background"),await this.waitForThenClick("#_evidon-option-button"),await this.waitForElement("#evidon-prefdiag-overlay",5e3),await this.wait(500),await this.waitForThenClick("#evidon-prefdiag-decline")),!0}async optIn(){return this.click("#_evidon-accept-button")}},class extends u{constructor(){super(...arguments),this.name="Onetrust",this.prehideSelectors=["#onetrust-banner-sdk,#onetrust-consent-sdk,.onetrust-pc-dark-filter,.js-consent-banner"],this.runContext={urlPattern:"^(?!.*https://www\\.nba\\.com/)"}}get hasSelfTest(){return!0}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return this.elementExists("#onetrust-banner-sdk,#onetrust-pc-sdk")}async detectPopup(){return this.elementVisible("#onetrust-banner-sdk,#onetrust-pc-sdk","any")}async optOut(){return this.elementVisible("#onetrust-reject-all-handler,.ot-pc-refuse-all-handler,.js-reject-cookies","any")?this.click("#onetrust-reject-all-handler,.ot-pc-refuse-all-handler,.js-reject-cookies"):(this.elementExists("#onetrust-pc-btn-handler")?this.click("#onetrust-pc-btn-handler"):this.click(".ot-sdk-show-settings,button.js-cookie-settings"),await this.waitForElement("#onetrust-consent-sdk",2e3),await this.wait(1e3),this.click("#onetrust-consent-sdk input.category-switch-handler:checked,.js-editor-toggle-state:checked",!0),await this.wait(1e3),await this.waitForElement(".save-preference-btn-handler,.js-consent-save",2e3),this.click(".save-preference-btn-handler,.js-consent-save"),await this.waitForVisible("#onetrust-banner-sdk",5e3,"none"),!0)}async optIn(){return this.click("#onetrust-accept-btn-handler,#accept-recommended-btn-handler,.js-accept-cookies")}async test(){return await g((()=>this.mainWorldEval("EVAL_ONETRUST_1")),10,500)}},class extends u{constructor(){super(...arguments),this.name="Klaro",this.prehideSelectors=[".klaro"],this.settingsOpen=!1}get hasSelfTest(){return!0}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return this.elementExists(".klaro > .cookie-modal")?(this.settingsOpen=!0,!0):this.elementExists(".klaro > .cookie-notice")}async detectPopup(){return this.elementVisible(".klaro > .cookie-notice,.klaro > .cookie-modal","any")}async optOut(){return!!await this.mainWorldEval("EVAL_KLARO_TRY_API_OPT_OUT")||(!!this.click(".klaro .cn-decline")||(await this.mainWorldEval("EVAL_KLARO_OPEN_POPUP"),!!this.click(".klaro .cn-decline")||(this.click(".cm-purpose:not(.cm-toggle-all) > input:not(.half-checked,.required,.only-required),.cm-purpose:not(.cm-toggle-all) > div > input:not(.half-checked,.required,.only-required)",!0),this.click(".cm-btn-accept,.cm-button"))))}async optIn(){return!!this.click(".klaro .cm-btn-accept-all")||(this.settingsOpen?(this.click(".cm-purpose:not(.cm-toggle-all) > input.half-checked",!0),this.click(".cm-btn-accept")):this.click(".klaro .cookie-notice .cm-btn-success"))}async test(){return await this.mainWorldEval("EVAL_KLARO_1")}},class extends u{constructor(){super(...arguments),this.name="Uniconsent"}get prehideSelectors(){return[".unic",".modal:has(.unic)"]}get hasSelfTest(){return!0}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return this.elementExists(".unic .unic-box,.unic .unic-bar,.unic .unic-modal")}async detectPopup(){return this.elementVisible(".unic .unic-box,.unic .unic-bar,.unic .unic-modal","any")}async optOut(){if(await this.waitForElement(".unic button",1e3),document.querySelectorAll(".unic button").forEach((e=>{const t=e.textContent;(t.includes("Manage Options")||t.includes("Optionen verwalten"))&&e.click()})),await this.waitForElement(".unic input[type=checkbox]",1e3)){await this.waitForElement(".unic button",1e3),document.querySelectorAll(".unic input[type=checkbox]").forEach((e=>{e.checked&&e.click()}));for(const e of document.querySelectorAll(".unic button")){const t=e.textContent;for(const o of["Confirm Choices","Save Choices","Auswahl speichern"])if(t.includes(o))return e.click(),await this.wait(500),!0}}return!1}async optIn(){return this.waitForThenClick(".unic #unic-agree")}async test(){await this.wait(1e3);return!this.elementExists(".unic .unic-box,.unic .unic-bar")}},class extends u{constructor(){super(...arguments),this.prehideSelectors=[".cmp-root"],this.name="Conversant"}get hasSelfTest(){return!0}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return this.elementExists(".cmp-root .cmp-receptacle")}async detectPopup(){return this.elementVisible(".cmp-root .cmp-receptacle","any")}async optOut(){if(!await this.waitForThenClick(".cmp-main-button:not(.cmp-main-button--primary)"))return!1;if(!await this.waitForElement(".cmp-view-tab-tabs"))return!1;await this.waitForThenClick(".cmp-view-tab-tabs > :first-child"),await this.waitForThenClick(".cmp-view-tab-tabs > .cmp-view-tab--active:first-child");for(const e of Array.from(document.querySelectorAll(".cmp-accordion-item"))){e.querySelector(".cmp-accordion-item-title").click(),await g((()=>!!e.querySelector(".cmp-accordion-item-content.cmp-active")),10,50);const t=e.querySelector(".cmp-accordion-item-content.cmp-active");t.querySelectorAll(".cmp-toggle-actions .cmp-toggle-deny:not(.cmp-toggle-deny--active)").forEach((e=>e.click())),t.querySelectorAll(".cmp-toggle-actions .cmp-toggle-checkbox:not(.cmp-toggle-checkbox--active)").forEach((e=>e.click()))}return await this.click(".cmp-main-button:not(.cmp-main-button--primary)"),!0}async optIn(){return this.waitForThenClick(".cmp-main-button.cmp-main-button--primary")}async test(){return document.cookie.includes("cmp-data=0")}},class extends u{constructor(){super(...arguments),this.name="tiktok.com",this.runContext={urlPattern:"tiktok"}}get hasSelfTest(){return!0}get isIntermediate(){return!1}get isCosmetic(){return!1}getShadowRoot(){const e=document.querySelector("tiktok-cookie-banner");return e?e.shadowRoot:null}async detectCmp(){return this.elementExists("tiktok-cookie-banner")}async detectPopup(){return f(this.getShadowRoot().querySelector(".tiktok-cookie-banner"))}async optOut(){const e=this.autoconsent.config.logs,t=this.getShadowRoot().querySelector(".button-wrapper button:first-child");return t?(e.rulesteps&&console.log("[clicking]",t),t.click(),!0):(e.errors&&console.log("no decline button found"),!1)}async optIn(){const e=this.autoconsent.config.logs,t=this.getShadowRoot().querySelector(".button-wrapper button:last-child");return t?(e.rulesteps&&console.log("[clicking]",t),t.click(),!0):(e.errors&&console.log("no accept button found"),!1)}async test(){const e=document.cookie.match(/cookie-consent=([^;]+)/);if(!e)return!1;const t=JSON.parse(decodeURIComponent(e[1]));return Object.values(t).every((e=>"boolean"!=typeof e||!1===e))}},class extends u{constructor(){super(...arguments),this.name="airbnb",this.runContext={urlPattern:"^https://(www\\.)?airbnb\\.[^/]+/"},this.prehideSelectors=["div[data-testid=main-cookies-banner-container]",'div:has(> div:first-child):has(> div:last-child):has(> section [data-testid="strictly-necessary-cookies"])']}get hasSelfTest(){return!0}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return this.elementExists("div[data-testid=main-cookies-banner-container]")}async detectPopup(){return this.elementVisible("div[data-testid=main-cookies-banner-container","any")}async optOut(){let e;for(await this.waitForThenClick("div[data-testid=main-cookies-banner-container] button._snbhip0");e=document.querySelector("[data-testid=modal-container] button[aria-checked=true]:not([disabled])");)e.click();return this.waitForThenClick("button[data-testid=save-btn]")}async optIn(){return this.waitForThenClick("div[data-testid=main-cookies-banner-container] button._148dgdpk")}async test(){return await g((()=>!!document.cookie.match("OptanonAlertBoxClosed")),20,200)}},class extends u{constructor(){super(...arguments),this.name="tumblr-com",this.runContext={urlPattern:"^https://(www\\.)?tumblr\\.com/"}}get hasSelfTest(){return!1}get isIntermediate(){return!1}get isCosmetic(){return!1}get prehideSelectors(){return["#cmp-app-container"]}async detectCmp(){return this.elementExists("#cmp-app-container")}async detectPopup(){return this.elementVisible("#cmp-app-container","any")}async optOut(){let e=document.querySelector("#cmp-app-container iframe"),t=e.contentDocument?.querySelector(".cmp-components-button.is-secondary");return!!t&&(t.click(),await g((()=>!!document.querySelector("#cmp-app-container iframe").contentDocument?.querySelector(".cmp__dialog input")),5,500),e=document.querySelector("#cmp-app-container iframe"),t=e.contentDocument?.querySelector(".cmp-components-button.is-secondary"),!!t&&(t.click(),!0))}async optIn(){const e=document.querySelector("#cmp-app-container iframe").contentDocument.querySelector(".cmp-components-button.is-primary");return!!e&&(e.click(),!0)}},class extends u{constructor(){super(...arguments),this.name="Admiral"}get hasSelfTest(){return!1}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return this.elementExists("div > div[class*=Card] > div[class*=Frame] > div[class*=Pills] > button[class*=Pills__StyledPill]")}async detectPopup(){return this.elementVisible("div > div[class*=Card] > div[class*=Frame] > div[class*=Pills] > button[class*=Pills__StyledPill]","any")}async optOut(){const e="xpath///button[contains(., 'Afvis alle') or contains(., 'Reject all') or contains(., 'Odbaci sve') or contains(., 'Rechazar todo') or contains(., 'Atmesti visus') or contains(., 'Odmítnout vše') or contains(., 'Απόρριψη όλων') or contains(., 'Rejeitar tudo') or contains(., 'Tümünü reddet') or contains(., 'Отклонить все') or contains(., 'Noraidīt visu') or contains(., 'Avvisa alla') or contains(., 'Odrzuć wszystkie') or contains(., 'Alles afwijzen') or contains(., 'Отхвърляне на всички') or contains(., 'Rifiuta tutto') or contains(., 'Zavrni vse') or contains(., 'Az összes elutasítása') or contains(., 'Respingeți tot') or contains(., 'Alles ablehnen') or contains(., 'Tout rejeter') or contains(., 'Odmietnuť všetko') or contains(., 'Lükka kõik tagasi') or contains(., 'Hylkää kaikki')]";if(await this.waitForElement(e,500))return this.click(e);const t="xpath///button[contains(., 'Spara & avsluta') or contains(., 'Save & exit') or contains(., 'Uložit a ukončit') or contains(., 'Enregistrer et quitter') or contains(., 'Speichern & Verlassen') or contains(., 'Tallenna ja poistu') or contains(., 'Išsaugoti ir išeiti') or contains(., 'Opslaan & afsluiten') or contains(., 'Guardar y salir') or contains(., 'Shrani in zapri') or contains(., 'Uložiť a ukončiť') or contains(., 'Kaydet ve çıkış yap') or contains(., 'Сохранить и выйти') or contains(., 'Salvesta ja välju') or contains(., 'Salva ed esci') or contains(., 'Gem & afslut') or contains(., 'Αποθήκευση και έξοδος') or contains(., 'Saglabāt un iziet') or contains(., 'Mentés és kilépés') or contains(., 'Guardar e sair') or contains(., 'Zapisz & zakończ') or contains(., 'Salvare și ieșire') or contains(., 'Spremi i izađi') or contains(., 'Запазване и изход')]";if(await this.waitForThenClick("xpath///button[contains(., 'Zwecke') or contains(., 'Σκοποί') or contains(., 'Purposes') or contains(., 'Цели') or contains(., 'Eesmärgid') or contains(., 'Tikslai') or contains(., 'Svrhe') or contains(., 'Cele') or contains(., 'Účely') or contains(., 'Finalidades') or contains(., 'Mērķi') or contains(., 'Scopuri') or contains(., 'Fines') or contains(., 'Ändamål') or contains(., 'Finalités') or contains(., 'Doeleinden') or contains(., 'Tarkoitukset') or contains(., 'Scopi') or contains(., 'Amaçlar') or contains(., 'Nameni') or contains(., 'Célok') or contains(., 'Formål')]")&&await this.waitForVisible(t)){return this.elementSelector(t)[0].parentElement.parentElement.querySelectorAll("input[type=checkbox]:checked").forEach((e=>e.click())),this.click(t)}return!1}async optIn(){return this.click("xpath///button[contains(., 'Sprejmi vse') or contains(., 'Prihvati sve') or contains(., 'Godkänn alla') or contains(., 'Prijať všetko') or contains(., 'Принять все') or contains(., 'Aceptar todo') or contains(., 'Αποδοχή όλων') or contains(., 'Zaakceptuj wszystkie') or contains(., 'Accetta tutto') or contains(., 'Priimti visus') or contains(., 'Pieņemt visu') or contains(., 'Tümünü kabul et') or contains(., 'Az összes elfogadása') or contains(., 'Accept all') or contains(., 'Приемане на всички') or contains(., 'Accepter alle') or contains(., 'Hyväksy kaikki') or contains(., 'Tout accepter') or contains(., 'Alles accepteren') or contains(., 'Aktsepteeri kõik') or contains(., 'Přijmout vše') or contains(., 'Alles akzeptieren') or contains(., 'Aceitar tudo') or contains(., 'Acceptați tot')]")}}];function v(){return{chars:new Map,code:void 0}}var _=new Uint8Array(0),C=class{constructor(e,t=3e4){this.codebook=e,this.compressor=new class{constructor(e,t=3e4){this.trie=function(e){const t=v();for(let o=0;o ","%3D","%7C","age","box","div","dow","ent","out","rap","set","__",", ",'"]',"%2","%5",'="',"00","ac","ad","Ad","al","an","ar","at","e-","ed","en","er","he","id","in","la","le","lo","od","ol","om","on","op","or","re","s_","s-","se","st","t-","te","ti","un"," ","_","-",";",":",".","(",")","[","]","*","/","#","^","0","1","2","3","4","5","6","7","8","9","b","B","c","C","d","D","e","E","f","F","g","G","h","H","I","j","J","k","K","l","L","m","M","n","N","o","O","p","P","q","Q","r","R","s","S","t","T","u","U","v","V","w","W","x","X","y","Y","z","Z"],S=["sandbox allow-forms allow-same-origin allow-scripts allow-modals allow-orientation-lock allow-pointer-lock allow-presentation allow-top-navigation","script-src 'self' 'unsafe-inline' 'unsafe-eval' "," *.google.com *.gstatic.com *.googleapis.com",".com *.google.com *.googletagmanager.com *.","script-src 'self' '*' 'unsafe-inline'","default-src 'unsafe-inline' 'self'","script-src 'self' 'unsafe-eval' "," *.google.com *.gstatic.com *.","t-src 'self' 'unsafe-inline' ","script-src * 'unsafe-inline'",".com *.googleapis.com *."," *.googletagmanager.com",".com *.bootstrapcdn.com","default-src 'self' *.","frame-src 'self' *"," *.cloudflare.com","child-src 'none';","worker-src 'none'","google-analytics","'unsafe-inline'","*.googleapis","connect-src ","child-src *"," *.gstatic","script-src","style-src ","frame-src","facebook","https://"," 'self'",".com *.",".net *.","addthis","captcha","gstatic","https: ","youtube","defaul","disqus","google","jquery","blob:","data:","http:","media","scrip","-src",".com",".net","n.cc"," *.","age","img","str","vic"," *","*.","bo","cd","ch","el","le","m:","ns","pi","ra","re","te","wi","wp","yt"," ","-",";",":",".","'","*","/","3","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y"],E=["/homad-global-configs.schneevonmorgen.com/global_config","/videojs-vast-vpaid@2.0.2/bin/videojs_5.vast.vpaid.min","/etc.clientlibs/logitech-common/clientlibs/onetrust.","[\\/]{1,}.*[a-zA-Z0-9]{3,7}\\/[a-zA-Z0-9]{6,}\\/.*/","/^https?:\\/\\/[-a-z]{8,15}\\.(?:com|net)\\/","/pagead/managed/js/gpt/*/pubads_impl","/pagead/js/adsbygoogle.js","/vans-adapter-google-ima","/js/sdkloader/ima3_dai","/js/sdkloader/ima3.js","/videojs-contrib-ads","/wp-content/plugins/","/wp-content/uploads/","/wp-content/themes/","/detroitchicago/","/appmeasurement","/413gkwmt/init","/cdn-cgi/trace","/^https?:\\/\\/","[a-zA-Z0-9]{","/^https:\\/\\/","notification","\\/[a-z0-9]{","fingerprint","/ljub4etb/","compliance","impression","/plugins/","/template","affiliate","analytics","telemetry","(.+?\\.)?","[0-9a-z]","/assets/","/images/","/pagead/","tracking","/public","300x250","collect","consent","content","counter","default","metrics","privacy","[a-z]{","728x90","banner","bundle","client","cookie","detect","dn-cgi","google","iframe","module","prebid","script","source","widget",".aspx",".cgi?",".com/",".html","/api/","/beac","/html","/img/","/java","/stat","block","click","count","event","manag","media","pixel","popup","track","type=","video","visit",".css",".gif",".jpg",".min",".php",".png","/jqu","/js/","/lib","/log","/web","/wp-","468x","data","gdpr","gi-b","http","ight","plug","show","stat","view",".js","/ad","=*&","age","gpt","id=","jax","key","lay","log","new","sdk","tag","web","ync","*/","*^","/_","/?","/*","/d","/f","/g","/h","/l","/n","/p","/r","/w","^*","00","1/","ac","ad","al","am","an","ap","ar","as","at","bo","ch","ck","de","e-","e/","ed","el","em","en","er","es","et","ex","g/","ic","id","ig","il","im","in","is","it","js","la","le","li","lo","ma","mp","o/","ol","om","on","op","or","ot","re","ro","s_","s-","s?","s/","si","sp","st","t/","te","ti","tm","tr","ub","um","un","up","ur","us","ut","ve","_","-",":","?",".","}","*","/","\\","&","^","=","0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"],I=["securepubads.g.doubleclick",".actonservice.com","googlesyndication","imasdk.googleapis",".cloudfront.net","analytics.","marketing.","tracking.","metrics.","images.",".co.uk","a8clk.","stats.","a8cv.","media","track",".com",".net",".top",".xyz","ight","tion","www.",".io",".jp","app","cdn","new","web",".b",".c",".d",".f",".h",".k",".m",".n",".p",".s",".t",".v",".w","a1","a2","a4","ab","ac","ad","af","ag","ah","ai","ak","al","am","an","ap","ar","as","at","au","av","aw","ax","ay","az","be","bl","bo","br","bu","ca","ce","ch","ci","ck","cl","cr","ct","cu","de","di","do","dr","ds","dy","e-","eb","ec","ed","ef","eg","el","em","en","ep","er","es","et","eu","ev","ew","ex","fe","fi","fl","fo","fr","ge","gh","gl","go","gr","gs","gu","he","ho","ia","ib","ic","id","ie","if","ig","ik","il","im","in","io","ip","ir","is","it","iv","ix","iz","jo","ke","ks","la","ld","le","li","ll","lo","lu","ly","ma","me","mo","mp","my","ne","no","ob","od","of","ok","ol","om","on","oo","op","or","ot","ou","ov","ow","pa","pe","ph","pl","po","pr","pu","qu","re","ro","ru","s-","sc","se","sh","si","sk","so","sp","ss","st","su","sw","sy","t-","ta","te","th","ti","tn","to","tr","ts","tu","tw","ty","ub","ud","ul","um","un","up","ur","us","ut","ve","vi","we","-",".","0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"],F=["google-analytics.com/analytics.js","googlesyndication_adsbygoogle.js","googletagmanager.com/gtm.js","googletagservices_gpt.js","googletagmanager_gtm.js","fuckadblock.js-3.2.0","amazon_apstag.js","google-analytics","fingerprint2.js","noop-1s.mp4:10","google-ima.js","noop-0.1s.mp3","prebid-ads.js","nobab2.js:10","noopmp3-0.1s","noop-1s.mp4","hd-main.js","noopmp4-1s","32x32.png","noop.html","noopframe","noop.txt","nooptext","1x1.gif","2x2.png","noop.js","noopjs",".com/",".js:5","noop",":10",".js","ads","bea","_a",":5","am","ar","ch","ic","in","le","on","re","st","_","-",":",".","/","0","1","2","3","4","5","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","r","s","t","u","v","w","x","y","z"],O=["/js/sdkloader/ima3.j",".com^$third-party","googlesyndication","imasdk.googleapis",".cloudfront.net^","$script,domain=","redirect-rule=","xmlhttprequest",".actonservice","^$third-party","3p,denyallow=","redirect=noop","||smetrics.","third-party","marketing.","analytics",",domain=","$script,","metrics.","tracking",".co.uk","$ghide","a8clk.","cookie","google","script",".com^",".top^",".xyz^","/wp-c","$doma","a8cv.","image","media","track",".au^",".com",".gif",".jp^",".net","/js/","$doc","$xhr","www.",".jp",".js","app","cdn","new","web",".b",".c",".f",".m",".n",".p",".s","@@","/*","/p","||","1p","a1","a2","ab","ac","ad","af","ag","ai","ak","al","am","an","ap","ar","as","at","au","av","aw","ax","ay","az","be","bo","br","ca","ce","ch","ck","cl","ct","de","di","do","e-","e^","eb","ec","ed","el","em","en","ep","er","es","et","ev","ew","ex","fe","ff","fi","fo","fr","g^","ge","gi","go","gr","gu","he","hi","ho","hp","ht","ic","id","ig","il","im","in","io","ip","ir","is","it","ix","iz","jo","js","ke","ld","le","li","lo","lu","ly","ma","me","mo","mp","my","no","od","ok","ol","om","on","op","or","ot","pl","po","pr","qu","re","ri","ro","ru","s-","s/","sc","se","sh","si","sk","so","sp","ss","st","su","sw","t-","te","th","ti","to","tr","ts","tv","ty","ub","ud","ul","um","un","up","ur","us","ut","ve","vi","we","yo","_","-",",","?",".","*","/","^","=","|","~","$","0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"],T=["-webkit-touch-callo",", googlesyndication","position: initial !","set-local-storage-i","set, blurred, false","user-select: text !","decodeURIComponent",'[href^="https://',"rmnt, script, ","ut: default !"," !important)","trusted-set-",", document.",", noopFunc)","##body,html","contextmenu","no-fetch-if","otification",":has-text(",".com##+js(",'="https://',"background","important;"," -webkit-","container",": auto !","AAAAAAAA","nostif, ",",google",":style(","consent","message","nowoif)","privacy","-wrapp",",kayak",".co.uk","[class","##+js(","accept","aopr, ","banner","bottom","cookie","Cookie","notice","policy","widget",":has(","##div","block","cript","true)",".co.",".com",".de,",".fr,",".net",".nl,",".pl,",".xyz","#@#.","2%3A","gdpr","goog","html","ight","news","wrap"," > ",",xh","##.","###","%3D","%7C","ent","lay","web","xxx","__","-s",", ",",b",",c",",f",",g",",h",",m",",p",",s",",t",": ",".*",".b",".c",".m",".p",".s",'"]',"##","%2","%5",'="',"00","a-","ab","ac","ad","Ad","af","ag","ak","al","am","an","ap","ar","as","at","au","av","ay","az","bo","ch","ck","cl","ct","de","di","do","e-","ed","el","em","en","er","es","et","ew","ex","fi","fo","gr","he","ic","id","if","ig","il","im","in","is","it","iv","le","lo","mo","ol","om","on","op","or","ot","ov","ow","pl","po","re","ro","s_","s-","se","sh","si","sp","st","t-","th","ti","tr","tv","ub","ul","um","un","up","ur","us","ut","vi"," ","_","-",",",";",":",".","(",")","[","*","/","^","0","1","2","3","4","5","6","7","8","9","a","b","B","c","C","d","D","e","E","f","F","g","h","i","I","j","k","l","L","m","M","n","N","o","O","p","P","q","r","R","s","S","t","T","u","v","w","x","y","z"],P=(()=>{let e=0;const t=new Int32Array(256);for(let o=0;256!==o;o+=1)e=o,e=1&e?-306674912^e>>>1:e>>>1,e=1&e?-306674912^e>>>1:e>>>1,e=1&e?-306674912^e>>>1:e>>>1,e=1&e?-306674912^e>>>1:e>>>1,e=1&e?-306674912^e>>>1:e>>>1,e=1&e?-306674912^e>>>1:e>>>1,e=1&e?-306674912^e>>>1:e>>>1,e=1&e?-306674912^e>>>1:e>>>1,t[o]=e;return t})();var z=2147483647,L=36,R=/[^\0-\x7E]/,B=/[\x2E\u3002\uFF0E\uFF61]/g,U={"invalid-input":"Invalid input","not-basic":"Illegal input >= 0x80 (not a basic code point)",overflow:"Overflow: input needs wider integers to process"};function V(e){throw new RangeError(U[e])}function j(e,t){return e+22+75*(e<26?1:0)-((0!==t?1:0)<<5)}function M(e,t,o){let i=0;for(e=o?Math.floor(e/700):e>>1,e+=Math.floor(e/t);e>455;i+=L)e=Math.floor(e/35);return Math.floor(i+36*e/(e+38))}function N(e){const t=[],o=e.length;let i=0,n=128,s=72,c=e.lastIndexOf("-");c<0&&(c=0);for(let o=0;o=128&&V("not-basic"),t.push(e.charCodeAt(o));for(let a=c>0?c+1:0;a=o&&V("invalid-input");const c=(r=e.charCodeAt(a++))-48<10?r-22:r-65<26?r-65:r-97<26?r-97:L;(c>=L||c>Math.floor((z-i)/t))&&V("overflow"),i+=c*t;const l=n<=s?1:n>=s+26?26:n-s;if(cMath.floor(z/p)&&V("overflow"),t*=p}const l=t.length+1;s=M(i-c,l,0===c),Math.floor(i/l)>z-n&&V("overflow"),n+=Math.floor(i/l),i%=l,t.splice(i++,0,n)}var r;return String.fromCodePoint.apply(null,t)}function D(e){const t=[],o=function(e){const t=[];let o=0;const i=e.length;for(;o=55296&&n<=56319&&o=n&&iMath.floor((z-s)/i)&&V("overflow"),s+=(e-n)*i,n=e;for(let e=0;ez&&V("overflow"),l===n){let e=s;for(let o=L;;o+=L){const i=o<=c?1:o>=c+26?26:o-c;if(e{const e=new class{constructor(){t(this,"cosmeticSelector",new C(x)),t(this,"networkCSP",new C(S)),t(this,"networkRedirect",new C(F)),t(this,"networkHostname",new C(I)),t(this,"networkFilter",new C(E)),t(this,"networkRaw",new C(O)),t(this,"cosmeticRaw",new C(T))}};return $=()=>e,e};function K(e){return e<=127?1:5}function Q(e,t){return Y(e.length,t)}function Y(e,t){return(t?3:0)+e+K(e)}function Z(e){return e.length+K(e.length)}function X(e){const t=D(e).length;return t+K(t)}function J(e){return e.byteLength+K(e.length)}var ee,te=class e{constructor(e,{enableCompression:o}){if(t(this,"pos"),t(this,"buffer"),t(this,"compression"),!1===G)throw new Error("Adblocker currently does not support Big-endian systems");!0===o&&this.enableCompression(),this.buffer=e,this.pos=0}static empty(t){return e.fromUint8Array(W,t)}static fromUint8Array(t,o){return new e(t,o)}static allocate(t,o){return new e(new Uint8Array(t),o)}enableCompression(){this.compression=$()}checksum(){return function(e,t,o){let i=-1;const n=o-7;let s=t;for(;s>>8^P[255&(i^e[s++])],i=i>>>8^P[255&(i^e[s++])],i=i>>>8^P[255&(i^e[s++])],i=i>>>8^P[255&(i^e[s++])],i=i>>>8^P[255&(i^e[s++])],i=i>>>8^P[255&(i^e[s++])],i=i>>>8^P[255&(i^e[s++])],i=i>>>8^P[255&(i^e[s++])];for(;s>>8^P[255&(i^e[s++])];return(-1^i)>>>0}(this.buffer,0,this.pos)}dataAvailable(){return this.pos>>8,this.buffer[this.pos++]=e}getUint16(){return(this.buffer[this.pos++]<<8|this.buffer[this.pos++])>>>0}pushUint32(e){this.buffer[this.pos++]=e>>>24,this.buffer[this.pos++]=e>>>16,this.buffer[this.pos++]=e>>>8,this.buffer[this.pos++]=e}getUint32(){return(this.buffer[this.pos++]<<24>>>0)+(this.buffer[this.pos++]<<16|this.buffer[this.pos++]<<8|this.buffer[this.pos++])>>>0}pushUint32Array(e){this.pushLength(e.length);for(const t of e)this.pushUint32(t)}getUint32Array(){const e=this.getLength(),t=new Uint32Array(e);for(let o=0;othis.buffer.byteLength)throw new Error(`StaticDataView too small: ${this.buffer.byteLength}, but required ${this.pos} bytes`)}pushLength(e){e<=127?this.pushUint8(e):(this.pushUint8(128),this.pushUint32(e))}getLength(){const e=this.getUint8();return 128===e?this.getUint32():e}},oe=class e{constructor({debug:e=!1,enableCompression:o=!1,enableHtmlFiltering:i=!1,enableInMemoryCache:n=!0,enableMutationObserver:s=!0,enableOptimizations:c=!0,enablePushInjectionsOnNavigationEvents:r=!0,guessRequestTypeFromUrl:a=!1,integrityCheck:l=!0,loadCSPFilters:p=!0,loadCosmeticFilters:d=!0,loadExceptionFilters:u=!0,loadExtendedSelectors:h=!1,loadGenericCosmeticsFilters:m=!0,loadNetworkFilters:A=!0,loadPreprocessors:g=!1}={}){t(this,"debug"),t(this,"enableCompression"),t(this,"enableHtmlFiltering"),t(this,"enableInMemoryCache"),t(this,"enableMutationObserver"),t(this,"enableOptimizations"),t(this,"enablePushInjectionsOnNavigationEvents"),t(this,"guessRequestTypeFromUrl"),t(this,"integrityCheck"),t(this,"loadCSPFilters"),t(this,"loadCosmeticFilters"),t(this,"loadExceptionFilters"),t(this,"loadExtendedSelectors"),t(this,"loadGenericCosmeticsFilters"),t(this,"loadNetworkFilters"),t(this,"loadPreprocessors"),this.debug=e,this.enableCompression=o,this.enableHtmlFiltering=i,this.enableInMemoryCache=n,this.enableMutationObserver=s,this.enableOptimizations=c,this.enablePushInjectionsOnNavigationEvents=r,this.guessRequestTypeFromUrl=a,this.integrityCheck=l,this.loadCSPFilters=p,this.loadCosmeticFilters=d,this.loadExceptionFilters=u,this.loadExtendedSelectors=h,this.loadGenericCosmeticsFilters=m,this.loadNetworkFilters=A,this.loadPreprocessors=g}static deserialize(t){return new e({debug:t.getBool(),enableCompression:t.getBool(),enableHtmlFiltering:t.getBool(),enableInMemoryCache:t.getBool(),enableMutationObserver:t.getBool(),enableOptimizations:t.getBool(),enablePushInjectionsOnNavigationEvents:t.getBool(),guessRequestTypeFromUrl:t.getBool(),integrityCheck:t.getBool(),loadCSPFilters:t.getBool(),loadCosmeticFilters:t.getBool(),loadExceptionFilters:t.getBool(),loadExtendedSelectors:t.getBool(),loadGenericCosmeticsFilters:t.getBool(),loadNetworkFilters:t.getBool(),loadPreprocessors:t.getBool()})}getSerializedSize(){return 16}serialize(e){e.pushBool(this.debug),e.pushBool(this.enableCompression),e.pushBool(this.enableHtmlFiltering),e.pushBool(this.enableInMemoryCache),e.pushBool(this.enableMutationObserver),e.pushBool(this.enableOptimizations),e.pushBool(this.enablePushInjectionsOnNavigationEvents),e.pushBool(this.guessRequestTypeFromUrl),e.pushBool(this.integrityCheck),e.pushBool(this.loadCSPFilters),e.pushBool(this.loadCosmeticFilters),e.pushBool(this.loadExceptionFilters),e.pushBool(this.loadExtendedSelectors),e.pushBool(this.loadGenericCosmeticsFilters),e.pushBool(this.loadNetworkFilters),e.pushBool(this.loadPreprocessors)}},ie="undefined"!=typeof window&&"function"==typeof window.queueMicrotask?e=>window.queueMicrotask(e):e=>(ee||(ee=Promise.resolve())).then(e).catch((e=>setTimeout((()=>{throw e}),0)));function ne(e,t,o){let i=o.get(e);void 0===i&&(i=[],o.set(e,i)),i.push(t)}function se(e,t,o){const i=o.get(e);if(void 0!==i){const e=i.indexOf(t);-1!==e&&i.splice(e,1)}}function ce(e,t,o){if(0===o.size)return!1;const i=o.get(e);return void 0!==i&&(ie((()=>{for(const e of i)e(...t)})),!0)}var re=class{constructor(){t(this,"onceListeners",new Map),t(this,"onListeners",new Map)}on(e,t){ne(e,t,this.onListeners)}once(e,t){ne(e,t,this.onceListeners)}unsubscribe(e,t){se(e,t,this.onListeners),se(e,t,this.onceListeners)}emit(e,...t){ce(e,t,this.onListeners),!0===ce(e,t,this.onceListeners)&&this.onceListeners.delete(e)}};function ae(e,t){return function(e,t){let o=3;const i=()=>e(t).catch((e=>{if(o>0)return o-=1,new Promise(((e,t)=>{setTimeout((()=>{i().then(e).catch(t)}),500)}));throw e}));return i()}(e,t).then((e=>e.text()))}var le="https://raw.githubusercontent.com/ghostery/adblocker/master/packages/adblocker/assets",pe=[`${le}/easylist/easylist.txt`,`${le}/peter-lowe/serverlist.txt`,`${le}/ublock-origin/badware.txt`,`${le}/ublock-origin/filters-2020.txt`,`${le}/ublock-origin/filters-2021.txt`,`${le}/ublock-origin/filters-2022.txt`,`${le}/ublock-origin/filters-2023.txt`,`${le}/ublock-origin/filters-2024.txt`,`${le}/ublock-origin/filters.txt`,`${le}/ublock-origin/quick-fixes.txt`,`${le}/ublock-origin/resource-abuse.txt`,`${le}/ublock-origin/unbreak.txt`],de=[...pe,`${le}/easylist/easyprivacy.txt`,`${le}/ublock-origin/privacy.txt`],ue=[...de,`${le}/easylist/easylist-cookie.txt`,`${le}/ublock-origin/annoyances-others.txt`,`${le}/ublock-origin/annoyances-cookies.txt`];function he(){return new class{constructor(){t(this,"options",new Set),t(this,"prefix"),t(this,"infix"),t(this,"suffix"),t(this,"redirect")}blockRequestsWithType(e){if(this.options.has(e))throw new Error(`Already blocking type ${e}`);return this.options.add(e),this}images(){return this.blockRequestsWithType("image")}scripts(){return this.blockRequestsWithType("script")}frames(){return this.blockRequestsWithType("frame")}fonts(){return this.blockRequestsWithType("font")}medias(){return this.blockRequestsWithType("media")}styles(){return this.blockRequestsWithType("css")}redirectTo(e){if(void 0!==this.redirect)throw new Error(`Already redirecting: ${this.redirect}`);return this.redirect=`redirect=${e}`,this}urlContains(e){if(void 0!==this.infix)throw new Error(`Already matching pattern: ${this.infix}`);return this.infix=e,this}urlStartsWith(e){if(void 0!==this.prefix)throw new Error(`Already matching prefix: ${this.prefix}`);return this.prefix=`|${e}`,this}urlEndsWith(e){if(void 0!==this.suffix)throw new Error(`Already matching suffix: ${this.suffix}`);return this.suffix=`${e}|`,this}withHostname(e){if(void 0!==this.prefix)throw new Error(`Cannot match hostname if filter already has prefix: ${this.prefix}`);return this.prefix=`||${e}^`,this}toString(){const e=[];void 0!==this.prefix&&e.push(this.prefix),void 0!==this.infix&&e.push(this.infix),void 0!==this.suffix&&e.push(this.suffix);const t=["important"];if(0!==this.options.size)for(const e of this.options)t.push(e);return void 0!==this.redirect&&t.push(this.redirect),`${0===e.length?"*":e.join("*")}$${t.join(",")}`}}}var me=new Set(["any","dir","has","host-context","if","if-not","is","matches","not","where"]),Ae={attribute:/\[\s*(?:(?\*|[-\w]*)\|)?(?[-\w\u{0080}-\u{FFFF}]+)\s*(?:(?\W?=)\s*(?.+?)\s*(?[iIsS])?\s*)?\]/gu,id:/#(?(?:[-\w\u{0080}-\u{FFFF}]|\\.)+)/gu,class:/\.(?(?:[-\w\u{0080}-\u{FFFF}]|\\.)+)/gu,comma:/\s*,\s*/g,combinator:/\s*[\s>+~]\s*/g,"pseudo-element":/::(?[-\w\u{0080}-\u{FFFF}]+)(?:\((?:¶*)\))?/gu,"pseudo-class":/:(?[-\w\u{0080}-\u{FFFF}]+)(?:\((?¶*)\))?/gu,type:/(?:(?\*|[-\w]*)\|)?(?[-\w\u{0080}-\u{FFFF}]+)|\*/gu},ge=new Set(["pseudo-class","pseudo-element"]),fe=new Set([...ge,"attribute"]),ke=new Set(["combinator","comma"]),be=Object.assign({},Ae);function ye(e,t){e.lastIndex=0;const o=e.exec(t);if(null===o)return;const i=o.index-1,n=o[0],s=t.slice(0,i+1),c=t.slice(i+n.length+1);return[s,[n,o.groups||{}],c]}be["pseudo-element"]=RegExp(Ae["pseudo-element"].source.replace("(?¶*)","(?.*?)"),"gu"),be["pseudo-class"]=RegExp(Ae["pseudo-class"].source.replace("(?¶*)","(?.*)"),"gu");var we=[e=>{const t=ye(Ae.attribute,e);if(void 0===t)return;const[o,[i,{name:n,operator:s,value:c,namespace:r,caseSensitive:a}],l]=t;return void 0!==n?[o,{type:"attribute",content:i,length:i.length,namespace:r,caseSensitive:a,pos:[],name:n,operator:s,value:c},l]:void 0},e=>{const t=ye(Ae.id,e);if(void 0===t)return;const[o,[i,{name:n}],s]=t;return void 0!==n?[o,{type:"id",content:i,length:i.length,pos:[],name:n},s]:void 0},e=>{const t=ye(Ae.class,e);if(void 0===t)return;const[o,[i,{name:n}],s]=t;return void 0!==n?[o,{type:"class",content:i,length:i.length,pos:[],name:n},s]:void 0},e=>{const t=ye(Ae.comma,e);if(void 0===t)return;const[o,[i],n]=t;return[o,{type:"comma",content:i,length:i.length,pos:[]},n]},e=>{const t=ye(Ae.combinator,e);if(void 0===t)return;const[o,[i],n]=t;return[o,{type:"combinator",content:i,length:i.length,pos:[]},n]},e=>{const t=ye(Ae["pseudo-element"],e);if(void 0===t)return;const[o,[i,{name:n}],s]=t;return void 0!==n?[o,{type:"pseudo-element",content:i,length:i.length,pos:[],name:n},s]:void 0},e=>{const t=ye(Ae["pseudo-class"],e);if(void 0===t)return;const[o,[i,{name:n,argument:s}],c]=t;return void 0!==n?[o,{type:"pseudo-class",content:i,length:i.length,pos:[],name:n,argument:s,subtree:void 0},c]:void 0},e=>{const t=ye(Ae.type,e);if(void 0===t)return;const[o,[i,{name:n,namespace:s}],c]=t;return[o,{type:"type",content:i,length:i.length,namespace:s,pos:[],name:n},c]}];function ve(e,t,o,i){for(const n of t)for(const t of e)if(i.has(t.type)&&t.pos[0]=0&&"\\"===e[t];)o+=1,t-=1;return o%2!=0}function Ce(e,t,o){let i=o+1;for(;-1!==(i=e.indexOf(t,i))&&!0===_e(e,i);)i+=1;if(-1!==i)return e.slice(o,i+1)}function xe(e,t){let o=0;for(let i=t;i0))return;o-=1}if(0===o)return e.slice(t,i+1)}}function Se(e,t,o,i){const n=[];let s=0;for(;-1!==(s=e.indexOf(o,s));){const o=i(e,s);if(void 0===o)break;n.push({str:o,start:s}),e=`${e.slice(0,s+1)}${t.repeat(o.length-2)}${e.slice(s+o.length-1)}`,s+=o.length}return[n,e]}function Ee(e){if("string"!=typeof e)return[];if(0===(e=e.trim()).length)return[];const[t,o]=Se(e,"§",'"',((e,t)=>Ce(e,'"',t))),[i,n]=Se(o,"§","'",((e,t)=>Ce(e,"'",t))),[s,c]=Se(n,"¶","(",xe),r=function(e){if(!e)return[];const t=[e];for(const e of we)for(let o=0;o0!==e.length)))}}let o=0;for(const e of t)"string"!=typeof e&&(e.pos=[o,o+e.length],ke.has(e.type)&&(e.content=e.content.trim()||" ")),o+=e.length;return t.every((e=>"string"!=typeof e))?t:[]}(c);return ve(r,s,/\(¶*\)/,ge),ve(r,t,/"§*"/,fe),ve(r,i,/'§*'/,fe),r}function Ie(e,{list:t=!0}={}){if(!0===t&&e.some((e=>"comma"===e.type))){const t=[],o=[];for(let i=0;i=0;t--){const o=e[t];if("combinator"===o.type){const i=Ie(e.slice(0,t)),n=Ie(e.slice(t+1));if(void 0===n)return;if(" "!==o.content&&"~"!==o.content&&"+"!==o.content&&">"!==o.content)return;return{type:"complex",combinator:o.content,left:i,right:n}}}if(0!==e.length)return function(e){return e.every((e=>"comma"!==e.type&&"combinator"!==e.type))}(e)?1===e.length?e[0]:{type:"compound",compound:[...e]}:void 0}function Fe(e,t,o,i){if(void 0!==e){if("complex"===e.type)Fe(e.left,t,o,e),Fe(e.right,t,o,e);else if("compound"===e.type)for(const i of e.compound)Fe(i,t,o,e);else"pseudo-class"===e.type&&void 0!==e.subtree&&void 0!==o&&"pseudo-class"===o.type&&void 0!==o.subtree&&Fe(e.subtree,t,o,e);t(e,i)}}function Oe(e,{recursive:t=!0,list:o=!0}={}){const i=Ee(e);if(0===i.length)return;const n=Ie(i,{list:o});return!0===t&&Fe(n,(e=>{"pseudo-class"===e.type&&e.argument&&void 0!==e.name&&me.has(e.name)&&(e.subtree=Oe(e.argument,{recursive:!0,list:!0}))})),n}var Te,Pe,ze=new Set(["has","has-text","if"]),Le=new Set(["active","any","any-link","blank","checked","default","defined","dir","disabled","empty","enabled","first","first-child","first-of-type","focus","focus-visible","focus-within","fullscreen","host","host-context","hover","in-range","indeterminate","invalid","is","lang","last-child","last-of-type","left","link","matches","not","nth-child","nth-last-child","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","placeholder-shown","read-only","read-write","required","right","root","scope","target","valid","visited","where"]),Re=new Set(["after","before","first-letter","first-line"]);function Be(e){if(-1===e.indexOf(":"))return Te.Normal;const t=Ee(e);let o=!1;for(const e of t)if("pseudo-class"===e.type){const{name:t}=e;if(!0===ze.has(t))o=!0;else if(!1===Le.has(t)&&!1===Re.has(t))return Te.Invalid;if(!1===o&&void 0!==e.argument&&!0===me.has(t)){const t=Be(e.argument);if(t===Te.Invalid)return t;t===Te.Extended&&(o=!0)}}return!0===o?Te.Extended:Te.Normal}(Pe=Te||(Te={}))[Pe.Normal=0]="Normal",Pe[Pe.Extended=1]="Extended",Pe[Pe.Invalid=2]="Invalid";var Ue=new Set(["htm","html","xhtml"]),Ve=new Set(["eot","otf","sfnt","ttf","woff","woff2"]),je=new Set(["apng","bmp","cur","dib","eps","gif","heic","heif","ico","j2k","jfi","jfif","jif","jp2","jpe","jpeg","jpf","jpg","jpm","jpx","mj2","pjp","pjpeg","png","svg","svgz","tif","tiff","webp"]),Me=new Set(["avi","flv","mp3","mp4","ogg","wav","weba","webm","wmv"]),Ne=new Set(["js","ts","jsx","esm"]),De=new Set(["css","scss"]);function He(e,t){let o=0,i=e.length,n=!1;if(!t){if(e.startsWith("data:"))return null;for(;oo+1&&e.charCodeAt(i-1)<=32;)i-=1;if(47===e.charCodeAt(o)&&47===e.charCodeAt(o+1))o+=2;else{const t=e.indexOf(":/",o);if(-1!==t){const i=t-o,n=e.charCodeAt(o),s=e.charCodeAt(o+1),c=e.charCodeAt(o+2),r=e.charCodeAt(o+3),a=e.charCodeAt(o+4);if(5===i&&104===n&&116===s&&116===c&&112===r&&115===a);else if(4===i&&104===n&&116===s&&116===c&&112===r);else if(3===i&&119===n&&115===s&&115===c);else if(2===i&&119===n&&115===s);else for(let i=o;i=97&&t<=122||t>=48&&t<=57||46===t||45===t||43===t))return null}for(o=t+2;47===e.charCodeAt(o);)o+=1}}let t=-1,s=-1,c=-1;for(let r=o;r=65&&o<=90&&(n=!0)}if(-1!==t&&t>o&&to&&co+1&&46===e.charCodeAt(i-1);)i-=1;const s=0!==o||i!==e.length?e.slice(o,i):e;return n?s.toLowerCase():s}function We(e){return e>=97&&e<=122||e>=48&&e<=57||e>127}function qe(e){if(e.length>255)return!1;if(0===e.length)return!1;if(!We(e.charCodeAt(0))&&46!==e.charCodeAt(0)&&95!==e.charCodeAt(0))return!1;let t=-1,o=-1;const i=e.length;for(let n=0;n64||46===o||45===o||95===o)return!1;t=n}else if(!We(i)&&45!==i&&95!==i)return!1;o=i}return i-t-1<=63&&45!==o}var Ge=function({allowIcannDomains:e=!0,allowPrivateDomains:t=!1,detectIp:o=!0,extractHostname:i=!0,mixedInputs:n=!0,validHosts:s=null,validateHostname:c=!0}){return{allowIcannDomains:e,allowPrivateDomains:t,detectIp:o,extractHostname:i,mixedInputs:n,validHosts:s,validateHostname:c}}({});function $e(e,t,o,i,n){const s=function(e){return void 0===e?Ge:function({allowIcannDomains:e=!0,allowPrivateDomains:t=!1,detectIp:o=!0,extractHostname:i=!0,mixedInputs:n=!0,validHosts:s=null,validateHostname:c=!0}){return{allowIcannDomains:e,allowPrivateDomains:t,detectIp:o,extractHostname:i,mixedInputs:n,validHosts:s,validateHostname:c}}(e)}(i);return"string"!=typeof e?n:(s.extractHostname?s.mixedInputs?n.hostname=He(e,qe(e)):n.hostname=He(e,!1):n.hostname=e,0===t||null===n.hostname||s.detectIp&&(n.isIp=function(e){if(e.length<3)return!1;let t=e.startsWith("[")?1:0,o=e.length;if("]"===e[o-1]&&(o-=1),o-t>39)return!1;let i=!1;for(;t=48&&o<=57||o>=97&&o<=102||o>=65&&o<=90))return!1}return i}(c=n.hostname)||function(e){if(e.length<7)return!1;if(e.length>15)return!1;let t=0;for(let o=0;o57)return!1}return 3===t&&46!==e.charCodeAt(0)&&46!==e.charCodeAt(e.length-1)}(c),n.isIp)?n:s.validateHostname&&s.extractHostname&&!qe(n.hostname)?(n.hostname=null,n):(o(n.hostname,s,n),2===t||null===n.publicSuffix?n:(n.domain=function(e,t,o){if(null!==o.validHosts){const e=o.validHosts;for(const o of e)if(function(e,t){return!!e.endsWith(t)&&(e.length===t.length||"."===e[e.length-t.length-1])}(t,o))return o}let i=0;if(t.startsWith("."))for(;i=i)return!1;let n=o,s=i-1;for(;n<=s;){const o=n+s>>>1,i=e[o];if(it))return!0;s=o-1}}return!1}var Ye=new Uint32Array(20);function Ze(e,t,o){if(function(e,t,o){if(!t.allowPrivateDomains&&e.length>3){const t=e.length-1,i=e.charCodeAt(t),n=e.charCodeAt(t-1),s=e.charCodeAt(t-2),c=e.charCodeAt(t-3);if(109===i&&111===n&&99===s&&46===c)return o.isIcann=!0,o.isPrivate=!1,o.publicSuffix="com",!0;if(103===i&&114===n&&111===s&&46===c)return o.isIcann=!0,o.isPrivate=!1,o.publicSuffix="org",!0;if(117===i&&100===n&&101===s&&46===c)return o.isIcann=!0,o.isPrivate=!1,o.publicSuffix="edu",!0;if(118===i&&111===n&&103===s&&46===c)return o.isIcann=!0,o.isPrivate=!1,o.publicSuffix="gov",!0;if(116===i&&101===n&&110===s&&46===c)return o.isIcann=!0,o.isPrivate=!1,o.publicSuffix="net",!0;if(101===i&&100===n&&46===s)return o.isIcann=!0,o.isPrivate=!1,o.publicSuffix="de",!0}return!1}(e,t,o))return;const{allowIcannDomains:i,allowPrivateDomains:n}=t;let s=-1,c=0,r=0,a=1;const l=function(e,t){let o=5381,i=0;for(let n=e.length-1;n>=0;n-=1){const s=e.charCodeAt(n);if(46===s&&(Ye[i<<1]=o>>>0,Ye[1+(i<<1)]=n+1,i+=1,i===t))return i;o=33*o^s}return Ye[i<<1]=o>>>0,Ye[1+(i<<1)]=0,i+=1,i}(e,Ke[0]);for(let e=0;er;)t.shift();o.publicSuffix=t.join(".")}else o.publicSuffix=e.slice(Ye[1+(r-2<<1)]);else o.publicSuffix=1===l?e:e.slice(Ye[1])}function Xe(e,t={}){return $e(e,5,Ze,t,{domain:null,domainWithoutSuffix:null,hostname:null,isIcann:null,isIp:null,isPrivate:null,publicSuffix:null,subdomain:null})}var Je=new class{constructor(e){t(this,"buffer"),t(this,"pos",0),this.buffer=new Uint32Array(e)}reset(){this.pos=0}slice(){return this.buffer.slice(0,this.pos)}push(e){this.buffer[this.pos++]=e}empty(){return 0===this.pos}full(){return this.pos===this.buffer.length}remaining(){return this.buffer.length-this.pos}}(1024),et=37,tt=5011;function ot(e){return 16843009*((e=(858993459&(e-=e>>1&1431655765))+(e>>2&858993459))+(e>>4)&252645135)>>24}function it(e,t){return!!(e&t)}function nt(e,t){return e|t}function st(e,t){return e&~t}function ct(e,t,o){let i=tt;for(let n=t;n>>0}function rt(e){return"string"!=typeof e||0===e.length?tt:ct(e,0,e.length)}function at(e){const t=new Uint32Array(e.length);let o=0;for(const i of e)t[o++]=rt(i);return t}function lt(e,t){if(e.length=48&&e<=57}function ut(e){return e>=97&&e<=122||e>=65&&e<=90}function ht(e){return ut(e)||dt(e)||37===e||function(e){return e>=192&&e<=450}(e)||function(e){return e>=1024&&e<=1279}(e)}function mt(e,t,o,i){const n=Math.min(e.length,2*i.remaining());let s=!1,c=0,r=tt;for(let o=0;o1&&(!1===t||0!==c)&&i.push(r>>>0))}!0===s&&!1===o&&e.length-c>1&&!1===i.full()&&i.push(r>>>0)}function At(e,t){const o=Math.min(e.length,2*t.remaining());let i=!1,n=0,s=tt;for(let c=0;c1&&t.push(s>>>0))}!0===i&&e.length-n>1&&!1===t.full()&&t.push(s>>>0)}function gt(e,t){return-1!==function(e,t){if(0===e.length)return-1;let o=0,i=e.length-1;for(;o<=i;){const n=o+i>>>1,s=e[n];if(st))return n;i=n-1}}return-1}(e,t)}var ft=/[^\u0000-\u00ff]/;function kt(e){return ft.test(e)}var bt={extractHostname:!0,mixedInputs:!1,validateHostname:!1},yt={beacon:rt("type:beacon"),cspReport:rt("type:csp"),csp_report:rt("type:csp"),cspviolationreport:rt("type:cspviolationreport"),document:rt("type:document"),eventsource:rt("type:other"),fetch:rt("type:xhr"),font:rt("type:font"),image:rt("type:image"),imageset:rt("type:image"),mainFrame:rt("type:document"),main_frame:rt("type:document"),manifest:rt("type:other"),media:rt("type:media"),object:rt("type:object"),object_subrequest:rt("type:object"),other:rt("type:other"),ping:rt("type:ping"),prefetch:rt("type:other"),preflight:rt("type:preflight"),script:rt("type:script"),signedexchange:rt("type:signedexchange"),speculative:rt("type:other"),stylesheet:rt("type:stylesheet"),subFrame:rt("type:subdocument"),sub_frame:rt("type:subdocument"),texttrack:rt("type:other"),webSocket:rt("type:websocket"),web_manifest:rt("type:other"),websocket:rt("type:websocket"),xhr:rt("type:xhr"),xml_dtd:rt("type:other"),xmlhttprequest:rt("type:xhr"),xslt:rt("type:other")};function wt(e){let t=tt;for(let o=e.length-1;o>=0;o-=1)t=t*et^e.charCodeAt(o);return t>>>0}function vt(e,t,o){Je.reset();let i=tt;for(let n=t-1;n>=0;n-=1){const t=e.charCodeAt(n);46===t&&n>>0),i=i*et^t}return Je.push(i>>>0),Je.slice()}function _t(e,t){const o=function(e,t){let o=null;const i=t.indexOf(".");if(-1!==i){const n=t.slice(i+1);o=e.slice(0,-n.length-1)}return o}(e,t);return null!==o?vt(o,o.length,o.length):q}function Ct(e,t){return vt(e,e.length,e.length-t.length)}var xt=class e{constructor({requestId:e,tabId:o,type:i,domain:n,hostname:s,url:c,sourceDomain:r,sourceHostname:a,_originalRequestDetails:l}){if(t(this,"_originalRequestDetails"),t(this,"type"),t(this,"isHttp"),t(this,"isHttps"),t(this,"isSupported"),t(this,"isFirstParty"),t(this,"isThirdParty"),t(this,"id"),t(this,"tabId"),t(this,"url"),t(this,"hostname"),t(this,"domain"),t(this,"sourceHostnameHashes"),t(this,"sourceEntityHashes"),t(this,"tokens"),t(this,"hostnameHashes"),t(this,"entityHashes"),this._originalRequestDetails=l,this.id=e,this.tabId=o,this.type=i,this.url=c,this.hostname=s,this.domain=n,this.sourceHostnameHashes=0===a.length?q:Ct(a,r),this.sourceEntityHashes=0===a.length?q:_t(a,r),this.isThirdParty=function(e,t,o,i,n){return"main_frame"!==n&&"mainFrame"!==n&&(0!==t.length&&0!==i.length?t!==i:0!==t.length&&0!==o.length?t!==o:0!==i.length&&0!==e.length&&e!==i)}(s,n,a,r,i),this.isFirstParty=!this.isThirdParty,this.isSupported=!0,"websocket"===this.type||this.url.startsWith("ws:")||this.url.startsWith("wss:"))this.isHttp=!1,this.isHttps=!1,this.type="websocket",this.isSupported=!0;else if(this.url.startsWith("http:"))this.isHttp=!0,this.isHttps=!1;else if(this.url.startsWith("https:"))this.isHttps=!0,this.isHttp=!1;else if(this.url.startsWith("data:")){this.isHttp=!1,this.isHttps=!1;const e=this.url.indexOf(",");-1!==e&&(this.url=this.url.slice(0,e))}else this.isHttp=!1,this.isHttps=!1,this.isSupported=!1}static fromRawDetails({requestId:t="0",tabId:o=0,url:i="",hostname:n,domain:s,sourceUrl:c="",sourceHostname:r,sourceDomain:a,type:l="main_frame",_originalRequestDetails:p}){if(i=i.toLowerCase(),void 0===n||void 0===s){const e=Xe(i,bt);n=n||e.hostname||"",s=s||e.domain||""}if(void 0===r||void 0===a){const e=Xe(r||a||c,bt);r=r||e.hostname||"",a=a||e.domain||r||""}return new e({requestId:t,tabId:o,domain:s,hostname:n,url:i,sourceDomain:a,sourceHostname:r,sourceUrl:c,type:l,_originalRequestDetails:p})}getHostnameHashes(){return void 0===this.hostnameHashes&&(this.hostnameHashes=0===this.hostname.length?q:Ct(this.hostname,this.domain)),this.hostnameHashes}getEntityHashes(){return void 0===this.entityHashes&&(this.entityHashes=0===this.hostname.length?q:_t(this.hostname,this.domain)),this.entityHashes}getTokens(){if(void 0===this.tokens){Je.reset();for(const e of this.sourceHostnameHashes)Je.push(e);Je.push(yt[this.type]),At(this.url,Je),this.tokens=Je.slice()}return this.tokens}isMainFrame(){return"main_frame"===this.type||"mainFrame"===this.type}isSubFrame(){return"sub_frame"===this.type||"subFrame"===this.type}guessTypeOfRequest(){const e=this.type;return this.type=function(e){const t=function(e){let t=e.length;const o=e.indexOf("#");-1!==o&&(t=o);const i=e.indexOf("?");-1!==i&&i=0&&(s=e.charCodeAt(n),0!=(s>=65&&s<=90||s>=97&&s<=122||s>=48&&s<=57));n-=1);return 46!==s||n<0||t-n>=10?"":e.slice(n+1,t)}(e);return je.has(t)||e.startsWith("data:image/")||e.startsWith("https://frog.wix.com/bt")?"image":Me.has(t)||e.startsWith("data:audio/")||e.startsWith("data:video/")?"media":De.has(t)||e.startsWith("data:text/css")?"stylesheet":Ne.has(t)||e.startsWith("data:")&&(e.startsWith("data:application/ecmascript")||e.startsWith("data:application/javascript")||e.startsWith("data:application/x-ecmascript")||e.startsWith("data:application/x-javascript")||e.startsWith("data:text/ecmascript")||e.startsWith("data:text/javascript")||e.startsWith("data:text/javascript1.0")||e.startsWith("data:text/javascript1.1")||e.startsWith("data:text/javascript1.2")||e.startsWith("data:text/javascript1.3")||e.startsWith("data:text/javascript1.4")||e.startsWith("data:text/javascript1.5")||e.startsWith("data:text/jscript")||e.startsWith("data:text/livescript")||e.startsWith("data:text/x-ecmascript")||e.startsWith("data:text/x-javascript"))||e.startsWith("https://maps.googleapis.com/maps/api/js")||e.startsWith("https://www.googletagmanager.com/gtag/js")?"script":Ue.has(t)||e.startsWith("data:text/html")||e.startsWith("data:application/xhtml")||e.startsWith("https://www.youtube.com/embed/")||e.startsWith("https://www.google.com/gen_204")?"document":Ve.has(t)||e.startsWith("data:font/")?"font":"other"}(this.url),e!==this.type&&(this.tokens=void 0),this.type}},St=class e{constructor({entities:e,hostnames:o,notEntities:i,notHostnames:n,parts:s}){t(this,"entities"),t(this,"hostnames"),t(this,"notEntities"),t(this,"notHostnames"),t(this,"parts"),this.entities=e,this.hostnames=o,this.notEntities=i,this.notHostnames=n,this.parts=s}static parse(t,o=!1){if(0===t.length)return;const i=[],n=[],s=[],c=[];for(let e of t){kt(e)&&(e=H(e));const t=126===e.charCodeAt(0),o=42===e.charCodeAt(e.length-1)&&46===e.charCodeAt(e.length-2),r=t?1:0,a=o?e.length-2:e.length,l=wt(!0===t||!0===o?e.slice(r,a):e);t?o?n.push(l):c.push(l):o?i.push(l):s.push(l)}return new e({entities:0!==i.length?new Uint32Array(i).sort():void 0,hostnames:0!==s.length?new Uint32Array(s).sort():void 0,notEntities:0!==n.length?new Uint32Array(n).sort():void 0,notHostnames:0!==c.length?new Uint32Array(c).sort():void 0,parts:!0===o?t.join(","):void 0})}static deserialize(t){const o=t.getUint8();return new e({entities:1==(1&o)?t.getUint32Array():void 0,hostnames:2==(2&o)?t.getUint32Array():void 0,notEntities:4==(4&o)?t.getUint32Array():void 0,notHostnames:8==(8&o)?t.getUint32Array():void 0,parts:16==(16&o)?t.getUTF8():void 0})}updateId(e){const{hostnames:t,entities:o,notHostnames:i,notEntities:n}=this;if(void 0!==t)for(const o of t)e=e*et^o;if(void 0!==o)for(const t of o)e=e*et^t;if(void 0!==i)for(const t of i)e=e*et^t;if(void 0!==n)for(const t of n)e=e*et^t;return e}serialize(e){const t=e.getPos();e.pushUint8(0);let o=0;void 0!==this.entities&&(o|=1,e.pushUint32Array(this.entities)),void 0!==this.hostnames&&(o|=2,e.pushUint32Array(this.hostnames)),void 0!==this.notEntities&&(o|=4,e.pushUint32Array(this.notEntities)),void 0!==this.notHostnames&&(o|=8,e.pushUint32Array(this.notHostnames)),void 0!==this.parts&&(o|=16,e.pushUTF8(this.parts)),e.setByte(t,o)}getSerializedSize(){let e=1;return void 0!==this.entities&&(e+=J(this.entities)),void 0!==this.hostnames&&(e+=J(this.hostnames)),void 0!==this.notHostnames&&(e+=J(this.notHostnames)),void 0!==this.notEntities&&(e+=J(this.notEntities)),void 0!==this.parts&&(e+=X(this.parts)),e}match(e,t){if(void 0!==this.notHostnames)for(const t of e)if(gt(this.notHostnames,t))return!1;if(void 0!==this.notEntities)for(const e of t)if(gt(this.notEntities,e))return!1;if(void 0!==this.hostnames||void 0!==this.entities){if(void 0!==this.hostnames)for(const t of e)if(gt(this.hostnames,t))return!0;if(void 0!==this.entities)for(const e of t)if(gt(this.entities,e))return!0;return!1}return!0}};function Et(e){if(!1===e.startsWith("^script"))return;const t=":has-text(",o=[];let i=7;for(;e.startsWith(t,i);){i+=t.length;let n=1;const s=i;let c=-1;for(;i=48&&o<=57||o>=65&&o<=90||o>=97&&o<=122)){if(t{}},t=/^[#.]?[\w-.]+$/;return function(o){if(t.test(o))return!0;try{(t=>{e.matches(t)})(o)}catch(e){return!1}return!0}})();var Bt=class e{constructor({mask:e,selector:o,domains:i,rawLine:n,style:s}){t(this,"mask"),t(this,"selector"),t(this,"domains"),t(this,"style"),t(this,"rawLine"),t(this,"id"),this.mask=e,this.selector=o,this.domains=i,this.style=s,this.id=void 0,this.rawLine=n}static parse(t,o=!1){const i=t;let n,s,c,r=0;const a=t.indexOf("#"),l=a+1;let p=l+1;if(t.length>l&&("@"===t[l]?(r=nt(r,1),p+=1):"?"===t[l]&&(p+=1)),p>=t.length)return null;if(a>0&&(s=St.parse(t.slice(0,a).split(","),o)),t.endsWith(":remove()"))r=nt(r,64),r=nt(r,128),t=t.slice(0,-9);else if(t.length-p>=8&&t.endsWith(")")&&-1!==t.indexOf(":style(",p)){const e=t.indexOf(":style(",p);c=t.slice(e+7,-1),t=t.slice(0,e)}if(94===t.charCodeAt(p)){if(!1===pt(t,"script:has-text(",p+1)||41!==t.charCodeAt(t.length-1))return null;if(n=t.slice(p,t.length),void 0===Et(n))return null}else if(t.length-p>4&&43===t.charCodeAt(p)&&pt(t,"+js(",p)){if((void 0===s||void 0===s.hostnames&&void 0===s.entities)&&!1===it(r,1))return null;if(r=nt(r,2),n=t.slice(p+4,t.length-1),!1===it(r,1)&&0===n.length)return null}else{n=t.slice(p);const e=Be(n);if(e===Te.Extended)r=nt(r,128);else if(e===Te.Invalid||!Rt(n))return null}if(void 0===s&&!0===it(r,128))return null;if(void 0!==n&&(kt(n)&&(r=nt(r,4)),!1===it(r,2)&&!1===it(r,64)&&!1===it(r,128)&&!1===n.startsWith("^"))){const e=n.charCodeAt(0),t=n.charCodeAt(1),o=n.charCodeAt(2);!1===it(r,2)&&(46===e&&zt(n)?r=nt(r,8):35===e&&zt(n)?r=nt(r,16):(97===e&&91===t&&104===o&&Lt(n,2)||91===e&&104===t&&Lt(n,1))&&(r=nt(r,32)))}return new e({mask:r,rawLine:!0===o?i:void 0,selector:n,style:c,domains:s})}static deserialize(t){const o=t.getUint8(),i=it(o,4),n=t.getUint8(),s=i?t.getUTF8():t.getCosmeticSelector();return new e({mask:o,selector:s,domains:1==(1&n)?St.deserialize(t):void 0,rawLine:2==(2&n)?t.getRawCosmetic():void 0,style:4==(4&n)?t.getASCII():void 0})}isCosmeticFilter(){return!0}isNetworkFilter(){return!1}serialize(e){e.pushUint8(this.mask);const t=e.getPos();e.pushUint8(0),this.isUnicode()?e.pushUTF8(this.selector):e.pushCosmeticSelector(this.selector);let o=0;void 0!==this.domains&&(o|=1,this.domains.serialize(e)),void 0!==this.rawLine&&(o|=2,e.pushRawCosmetic(this.rawLine)),void 0!==this.style&&(o|=4,e.pushASCII(this.style)),e.setByte(t,o)}getSerializedSize(e){let t=2;return this.isUnicode()?t+=X(this.selector):t+=function(e,t){return!0===t?Y($().cosmeticSelector.getCompressedSize(e),!1):Z(e)}(this.selector,e),void 0!==this.domains&&(t+=this.domains.getSerializedSize()),void 0!==this.rawLine&&(t+=function(e,t){return!0===t?Y($().cosmeticRaw.getCompressedSize(D(e)),!1):X(e)}(this.rawLine,e)),void 0!==this.style&&(t+=Z(this.style)),t}toString(){if(void 0!==this.rawLine)return this.rawLine;let e="";return void 0!==this.domains&&(void 0!==this.domains.parts?e+=this.domains.parts:e+=""),this.isUnhide()?e+="#@#":e+="##",this.isScriptInject()?(e+="+js(",e+=this.selector,e+=")"):e+=this.selector,e}match(e,t){return!1===this.hasHostnameConstraint()||!(!e&&this.hasHostnameConstraint())&&(void 0===this.domains||this.domains.match(0===e.length?q:Ct(e,t),0===e.length?q:_t(e,t)))}getTokens(){const e=[];if(void 0!==this.domains){const{hostnames:t,entities:o}=this.domains;if(void 0!==t)for(const o of t)e.push(new Uint32Array([o]));if(void 0!==o)for(const t of o)e.push(new Uint32Array([t]))}if(0===e.length&&!1===this.isUnhide())if(this.isIdSelector()||this.isClassSelector()){let t=1;const o=this.selector;for(;t0?n=!0:"'"===p&&e.indexOf("'",o+1)>0?s=!0:"{"===p&&e.indexOf("}",o+1)>0?r+=1:"/"===p&&e.indexOf("/",o+1)>0?c=!0:l=!0)),","===p&&(t.push(e.slice(i+1,o).trim()),i=o,l=!1))),a="\\"===p}if(t.push(e.slice(i+1).trim()),0===t.length)return;const p=t.slice(1).map((e=>e.startsWith("'")&&e.endsWith("'")||e.startsWith('"')&&e.endsWith('"')?e.substring(1,e.length-1):e)).map((e=>e.replace(Ot,",").replace(Tt,"\\").replace(Pt,",")));return{name:t[0],args:p}}getScript(e){const t=this.parseScript();if(void 0===t)return;const{name:o,args:i}=t;let n=e.get(o);if(void 0!==n){for(let e=0;e>>0}(this.mask,this.selector,this.domains,this.style)),this.id}hasCustomStyle(){return void 0!==this.style}getStyle(){return this.style||Ft}getStyleAttributeHash(){return`s${rt(this.getStyle())}`}getSelector(){return this.selector}getSelectorAST(){return Oe(this.getSelector())}getExtendedSelector(){return Et(this.selector)}isExtended(){return it(this.mask,128)}isRemove(){return it(this.mask,64)}isUnhide(){return it(this.mask,1)}isScriptInject(){return it(this.mask,2)}isCSS(){return!1===this.isScriptInject()}isIdSelector(){return it(this.mask,16)}isClassSelector(){return it(this.mask,8)}isHrefSelector(){return it(this.mask,32)}isUnicode(){return it(this.mask,4)}isHtmlFiltering(){return this.getSelector().startsWith("^")}isGenericHide(){return void 0===this?.domains?.hostnames&&void 0===this?.domains?.entities}},Ut=rt("http"),Vt=rt("https");var jt=16371,Mt={beacon:256,document:1,cspviolationreport:128,fetch:8192,font:2,image:16,imageset:16,mainFrame:1,main_frame:1,media:32,object:64,object_subrequest:64,ping:256,script:512,stylesheet:1024,subFrame:2048,sub_frame:2048,webSocket:4096,websocket:4096,xhr:8192,xmlhttprequest:8192,cspReport:128,csp_report:128,eventsource:128,manifest:128,other:128,prefetch:128,preflight:128,signedexchange:128,speculative:128,texttrack:128,web_manifest:128,xml_dtd:128,xslt:128};function Nt(e){const t=[];return e.fromDocument()&&t.push("document"),e.fromImage()&&t.push("image"),e.fromMedia()&&t.push("media"),e.fromObject()&&t.push("object"),e.fromOther()&&t.push("other"),e.fromPing()&&t.push("ping"),e.fromScript()&&t.push("script"),e.fromStylesheet()&&t.push("stylesheet"),e.fromSubdocument()&&t.push("sub_frame"),e.fromWebsocket()&&t.push("websocket"),e.fromXmlHttpRequest()&&t.push("xhr"),e.fromFont()&&t.push("font"),t}function Dt(e,t,o,i,n,s,c){let r=185407^t;if(void 0!==e)for(let t=0;t>>0}function Ht(e,t,o,i){return!0===i?new RegExp(e.slice(1,e.length-1),"i"):(e=(e=(e=e.replace(/([|.$+?{}()[\]\\])/g,"\\$1")).replace(/\*/g,".*")).replace(/\^/g,"(?:[^\\w\\d_.%-]|$)"),o&&(e=`${e}$`),t&&(e=`^${e}`),new RegExp(e))}var Wt=new RegExp(""),qt=class e{constructor({csp:e,filter:o,hostname:i,mask:n,domains:s,denyallow:c,rawLine:r,redirect:a,regex:l}){t(this,"csp"),t(this,"filter"),t(this,"hostname"),t(this,"mask"),t(this,"domains"),t(this,"denyallow"),t(this,"redirect"),t(this,"rawLine"),t(this,"id"),t(this,"regex"),this.csp=e,this.filter=o,this.hostname=i,this.mask=n,this.domains=s,this.denyallow=c,this.redirect=a,this.rawLine=r,this.id=void 0,this.regex=l}static parse(t,o=!1){let i,n,s,c,r,a=49164,l=0,p=jt,d=0,u=t.length;64===t.charCodeAt(0)&&64===t.charCodeAt(1)&&(d+=2,a=nt(a,134217728));const h=function(e,t){let o=e.lastIndexOf(t);if(-1===o)return-1;for(;o>0&&92===e.charCodeAt(o-1);)o=e.lastIndexOf(t,o-1);return o}(t,"$");if(-1!==h&&47!==t.charCodeAt(h+1)){u=h;for(const e of t.slice(h+1).split(",")){const t=126===e.charCodeAt(0);let i=!0===t?e.slice(1):e,d="";const u=i.indexOf("=");switch(-1!==u&&(d=i.slice(u+1),i=i.slice(0,u)),i){case"denyallow":s=St.parse(d.split("|"),o);break;case"domain":case"from":if(124===d.charCodeAt(0)||124===d.charCodeAt(d.length-1))return null;n=St.parse(d.split("|"),o);break;case"badfilter":a=nt(a,131072);break;case"important":if(t)return null;a=nt(a,1048576);break;case"match-case":if(t)return null;break;case"3p":case"third-party":a=st(a,t?32768:16384);break;case"1p":case"first-party":a=st(a,t?16384:32768);break;case"redirect-rule":case"redirect":if(t)return null;if(0===d.length)return null;"redirect-rule"===i&&(a=nt(a,536870912)),c=d;break;case"csp":if(t)return null;a=nt(a,262144),d.length>0&&(r=d);break;case"ehide":case"elemhide":if(t)return null;a=nt(a,524288),a=nt(a,2097152);break;case"shide":case"specifichide":if(t)return null;a=nt(a,2097152);break;case"ghide":case"generichide":if(t)return null;a=nt(a,524288);break;case"inline-script":if(t)return null;a=nt(a,262144),r="script-src 'self' 'unsafe-eval' http: https: data: blob: mediastream: filesystem:";break;case"inline-font":if(t)return null;a=nt(a,262144),r="font-src 'self' 'unsafe-eval' http: https: data: blob: mediastream: filesystem:";break;default:{let e=0;switch(i){case"all":if(t)return null;break;case"image":e=16;break;case"media":e=32;break;case"object":case"object-subrequest":e=64;break;case"other":e=128;break;case"ping":case"beacon":e=256;break;case"script":e=512;break;case"css":case"stylesheet":e=1024;break;case"frame":case"subdocument":e=2048;break;case"xhr":case"xmlhttprequest":e=8192;break;case"websocket":e=4096;break;case"font":e=2;break;case"doc":case"document":e=1;break;default:return null}t?p=st(p,e):l=nt(l,e);break}}}}let m;if(a|=0===l?p:p===jt?l:l&p,u-d>=2&&47===t.charCodeAt(d)&&47===t.charCodeAt(u-1)){m=t.slice(d,u);try{Ht(m,!1,!1,!0)}catch(e){return null}a=nt(a,4194304)}else{if(u>0&&124===t.charCodeAt(u-1)&&(a=nt(a,67108864),u-=1),d0&&42===t.charCodeAt(u-1)&&(u-=1),!1===it(a,268435456)&&u-d>0&&42===t.charCodeAt(d)&&(a=st(a,33554432),d+=1),it(a,33554432)&&(u-d==5&&pt(t,"ws://",d)?(a=nt(a,4096),a=st(a,33554432),a=st(a,4),a=st(a,8),d=u):u-d==7&&pt(t,"http://",d)?(a=nt(a,4),a=st(a,8),a=st(a,33554432),d=u):u-d==8&&pt(t,"https://",d)?(a=nt(a,8),a=st(a,4),a=st(a,33554432),d=u):u-d==8&&pt(t,"http*://",d)&&(a=nt(a,8),a=nt(a,4),a=st(a,33554432),d=u)),u-d>0&&(m=t.slice(d,u).toLowerCase(),a=Gt(a,16777216,kt(m)),!1===it(a,8388608)&&(a=Gt(a,8388608,function(e,t,o){const i=e.indexOf("^",t);if(-1!==i&&it.length)return!1;if(e.length===t.length)return e===t;const i=t.indexOf(e);if(-1===i)return!1;if(0===i)return!0===o||46===t.charCodeAt(e.length)||46===e.charCodeAt(e.length-1);if(t.length===i+e.length)return 46===t.charCodeAt(i-1)||46===e.charCodeAt(0);return!(!0!==o&&46!==t.charCodeAt(e.length)&&46!==e.charCodeAt(e.length-1)||46!==t.charCodeAt(i-1)&&46!==e.charCodeAt(0))}(i,t.hostname,void 0!==e.filter&&42===e.filter.charCodeAt(0)))return!1;if(e.isRegex())return e.getRegex().test(t.url.slice(t.url.indexOf(i)+i.length));if(e.isRightAnchor()&&e.isLeftAnchor()){return o===t.url.slice(t.url.indexOf(i)+i.length)}if(e.isRightAnchor()){const n=t.hostname;return!1===e.hasFilter()?i.length===n.length||n.endsWith(i):t.url.endsWith(o)}return e.isLeftAnchor()?pt(t.url,o,t.url.indexOf(i)+i.length):!1===e.hasFilter()||-1!==t.url.indexOf(o,t.url.indexOf(i)+i.length)}if(e.isRegex())return e.getRegex().test(t.url);if(e.isLeftAnchor()&&e.isRightAnchor())return t.url===o;if(e.isLeftAnchor())return lt(t.url,o);if(e.isRightAnchor())return t.url.endsWith(o);if(!1===e.hasFilter())return!0;return-1!==t.url.indexOf(o)}(this,e)}serialize(e){e.pushUint32(this.mask);const t=e.getPos();e.pushUint8(0);let o=0;void 0!==this.csp&&(o|=1,e.pushNetworkCSP(this.csp)),void 0!==this.filter&&(o|=2,this.isUnicode()?e.pushUTF8(this.filter):e.pushNetworkFilter(this.filter)),void 0!==this.hostname&&(o|=4,e.pushNetworkHostname(this.hostname)),void 0!==this.domains&&(o|=8,this.domains.serialize(e)),void 0!==this.rawLine&&(o|=16,e.pushRawNetwork(this.rawLine)),void 0!==this.redirect&&(o|=32,e.pushNetworkRedirect(this.redirect)),void 0!==this.denyallow&&(o|=64,this.denyallow.serialize(e)),e.setByte(t,o)}getSerializedSize(e){let t=5;return void 0!==this.csp&&(t+=function(e,t){return!0===t?Y($().networkCSP.getCompressedSize(e),!1):Z(e)}(this.csp,e)),void 0!==this.filter&&(!0===this.isUnicode()?t+=X(this.filter):t+=function(e,t){return!0===t?Y($().networkFilter.getCompressedSize(e),!1):Z(e)}(this.filter,e)),void 0!==this.hostname&&(t+=function(e,t){return!0===t?Y($().networkHostname.getCompressedSize(e),!1):Z(e)}(this.hostname,e)),void 0!==this.domains&&(t+=this.domains.getSerializedSize()),void 0!==this.rawLine&&(t+=function(e,t){return!0===t?Y($().networkRaw.getCompressedSize(D(e)),!1):X(e)}(this.rawLine,e)),void 0!==this.redirect&&(t+=function(e,t){return!0===t?Y($().networkRedirect.getCompressedSize(e),!1):Z(e)}(this.redirect,e)),void 0!==this.denyallow&&(t+=this.denyallow.getSerializedSize()),t}toString(e){if(void 0!==this.rawLine)return this.rawLine;let t="";this.isException()&&(t+="@@"),this.isHostnameAnchor()?t+="||":this.fromHttp()!==this.fromHttps()?this.fromHttp()?t+="|http://":t+="|https://":this.isLeftAnchor()&&(t+="|"),this.hasHostname()&&(t+=this.getHostname(),t+="^"),this.isFullRegex()?t+=`/${this.getRegex().source}/`:this.isRegex()?t+=this.getRegex().source:t+=this.getFilter(),this.isRightAnchor()&&"^"!==t[t.length-1]&&(t+="|");const o=[];if(!1===this.fromAny()){const e=ot(this.getCptMask());if(ot(jt)-e")),void 0!==this.denyallow&&(void 0!==this.denyallow.parts?o.push(`denyallow=${this.denyallow.parts}`):o.push("denyallow=")),this.isBadFilter()&&o.push("badfilter"),o.length>0&&(t+="function"==typeof e?`$${o.map(e).join(",")}`:`$${o.join(",")}`),t}getIdWithoutBadFilter(){return Dt(this.csp,-131073&this.mask,this.filter,this.hostname,this.domains,this.denyallow,this.redirect)}getId(){return void 0===this.id&&(this.id=Dt(this.csp,this.mask,this.filter,this.hostname,this.domains,this.denyallow,this.redirect)),this.id}hasFilter(){return void 0!==this.filter}hasDomains(){return void 0!==this.domains}getMask(){return this.mask}getCptMask(){return this.getMask()&jt}isRedirect(){return void 0!==this.redirect}isRedirectRule(){return it(this.mask,536870912)}getRedirect(){return this.redirect||""}hasHostname(){return void 0!==this.hostname}getHostname(){return this.hostname||""}getFilter(){return this.filter||""}getRegex(){return void 0===this.regex&&(this.regex=void 0!==this.filter&&this.isRegex()?Ht(this.filter,this.isLeftAnchor(),this.isRightAnchor(),this.isFullRegex()):Wt),this.regex}getTokens(){if(Je.reset(),void 0!==this.domains&&void 0!==this.domains.hostnames&&void 0===this.domains.entities&&void 0===this.domains.notHostnames&&void 0===this.domains.notEntities&&1===this.domains.hostnames.length&&Je.push(this.domains.hostnames[0]),!1===this.isFullRegex()){if(void 0!==this.filter){const e=!this.isRightAnchor(),t=!this.isLeftAnchor();!function(e,t,o,i){const n=Math.min(e.length,2*i.remaining());let s=!1,c=0,r=0,a=tt;for(let o=0;o1&&42!==n&&42!==c&&(!1===t||0!==r)&&i.push(a>>>0)),c=n)}!1===o&&!0===s&&42!==c&&e.length-r>1&&!1===i.full()&&i.push(a>>>0)}(this.filter,t,e,Je)}void 0!==this.hostname&&mt(this.hostname,!1,void 0!==this.filter&&42===this.filter.charCodeAt(0),Je)}else void 0!==this.filter&&function(e,t){let o=e.length-1,i=1,n=0;for(;i=i;o-=1){const t=e.charCodeAt(o);if(124===t)return;if(41===t||42===t||43===t||63===t||93===t||125===t||46===t&&92!==e.charCodeAt(o-1)||92===t&&ut(n))break;n=t}if(o1&&mt(e.slice(1,i),94!==e.charCodeAt(1),!0,t),oObject.prototype.hasOwnProperty.call(Zt,e),Jt=(e,t)=>"true"===e&&!t.has("true")||!("false"===e&&!t.has("false"))&&!!t.get(e),eo=(e,t)=>{if(0===e.length)return!1;if((e=>Yt.test(e))(e))return"!"===e[0]?!Jt(e.slice(1),t):Jt(e,t);const o=(e=>e.match(Qt))(e);if(!o||0===o.length)return!1;if(e.length!==o.reduce(((e,t)=>e+t.length),0))return!1;const i=[],n=[];for(const e of o)if("("===e)n.push(e);else if(")"===e){for(;0!==n.length&&"("!==n[n.length-1];)i.push(n.pop());if(0===n.length)return!1;n.pop()}else if(Xt(e)){for(;n.length&&Xt(n[n.length-1])&&Zt[e]<=Zt[n[n.length-1]];)i.push(n.pop());n.push(e)}else i.push(Jt(e,t));if("("===n[0]||")"===n[0])return!1;for(;0!==n.length;)i.push(n.pop());for(const e of i)if(!0===e||!1===e)n.push(e);else if("!"===e)n.push(!n.pop());else if(Xt(e)){const t=n.pop(),o=n.pop();"&&"===e?n.push(o&&t):n.push(o||t)}return!0===n[0]},to=class e{constructor({condition:e,filterIDs:o=new Set}){t(this,"condition"),t(this,"filterIDs"),this.condition=e,this.filterIDs=o}static getCondition(e){return e.slice(5).replace(/\s/g,"")}static parse(t,o){return new this({condition:e.getCondition(t),filterIDs:o})}static deserialize(e){const t=e.getUTF8(),o=new Set;for(let t=0,i=e.getUint32();t2)for(;e4&&32===t.charCodeAt(0)&&32===t.charCodeAt(1)&&32===t.charCodeAt(2)&&32===t.charCodeAt(3)&&32!==t.charCodeAt(4)))break;a+=t.slice(4),e+=1}0!==a.length&&a.charCodeAt(a.length-1)<=32&&(a=a.trim());const l=oo(a,{extendedNonSupportedTypes:!0});if(1===l&&!0===t.loadNetworkFilters){const i=qt.parse(a,t.debug);null!==i?(o.push(i),r.length>0&&r[r.length-1].filterIDs.add(i.getId())):n.push({lineNumber:e,filter:a,filterType:l})}else if(2===l&&!0===t.loadCosmeticFilters){const o=Bt.parse(a,t.debug);null!==o?!0!==t.loadGenericCosmeticsFilters&&!1!==o.isGenericHide()||(i.push(o),r.length>0&&r[r.length-1].filterIDs.add(o.getId())):n.push({lineNumber:e,filter:a,filterType:2})}else if(t.loadPreprocessors){const t=Kt(a);if(1===t)r.length>0?r.push(new to({condition:`(${r[r.length-1].condition})&&(${to.getCondition(a)})`})):r.push(to.parse(a));else if((3===t||2===t)&&r.length>0){const e=r.pop();c.push(e),2===t&&r.push(new to({condition:`!(${e.condition})`}))}else 102===l&&n.push({lineNumber:e,filter:a,filterType:l})}else 102===l&&n.push({lineNumber:e,filter:a,filterType:l})}return{networkFilters:o,cosmeticFilters:i,preprocessors:c.filter((e=>e.filterIDs.size>0)),notSupportedFilters:n}}var no="video/flv",so={contentType:`${no};base64`,aliases:[no,".flv","flv"],body:"RkxWAQEAAAAJAAAAABIAALgAAAAAAAAAAgAKb25NZXRhRGF0YQgAAAAIAAhkdXJhdGlvbgAAAAAAAAAAAAAFd2lkdGgAP/AAAAAAAAAABmhlaWdodAA/8AAAAAAAAAANdmlkZW9kYXRhcmF0ZQBAaGoAAAAAAAAJZnJhbWVyYXRlAEBZAAAAAAAAAAx2aWRlb2NvZGVjaWQAQAAAAAAAAAAAB2VuY29kZXICAA1MYXZmNTcuNDEuMTAwAAhmaWxlc2l6ZQBAaoAAAAAAAAAACQAAAMM="},co="image/gif",ro={contentType:`${co};base64`,aliases:[co,".gif","gif"],body:"R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"},ao="text/html",lo={contentType:ao,aliases:[ao,".html","html",".htm","htm","noopframe","noop.html"],body:""},po="image/vnd.microsoft.icon",uo={contentType:`${po};base64`,aliases:[po,".ico","ico"],body:"AAABAAEAAQEAAAEAGAAwAAAAFgAAACgAAAABAAAAAgAAAAEAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8AAAAAAA=="},ho="image/jpeg",mo={contentType:`${ho};base64`,aliases:[ho,".jpg","jpg",".jpeg","jpeg"],body:"/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k="},Ao="application/javascript",go={contentType:Ao,aliases:[Ao,".js","js","javascript",".jsx","jsx","typescript",".ts","ts","noop.js","noopjs"],body:""},fo="application/json",ko={contentType:fo,aliases:[fo,".json","json"],body:"0"},bo="audio/mpeg",yo={contentType:`${bo};base64`,aliases:[bo,".mp3","mp3","noop-0.1s.mp3","noopmp3-0.1s"],body:"/+MYxAAAAANIAAAAAExBTUUzLjk4LjIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"},wo="video/mp4",vo={contentType:`${wo};base64`,aliases:[wo,".mp4","mp4",".m4a","m4a",".m4p","m4p",".m4b","m4b",".m4r","m4r",".m4v","m4v","noop-1s.mp4","noopmp4-1s"],body:"AAAAHGZ0eXBpc29tAAACAGlzb21pc28ybXA0MQAAAAhmcmVlAAAC721kYXQhEAUgpBv/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3pwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcCEQBSCkG//AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADengAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAsJtb292AAAAbG12aGQAAAAAAAAAAAAAAAAAAAPoAAAALwABAAABAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAB7HRyYWsAAABcdGtoZAAAAAMAAAAAAAAAAAAAAAIAAAAAAAAALwAAAAAAAAAAAAAAAQEAAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAACRlZHRzAAAAHGVsc3QAAAAAAAAAAQAAAC8AAAAAAAEAAAAAAWRtZGlhAAAAIG1kaGQAAAAAAAAAAAAAAAAAAKxEAAAIAFXEAAAAAAAtaGRscgAAAAAAAAAAc291bgAAAAAAAAAAAAAAAFNvdW5kSGFuZGxlcgAAAAEPbWluZgAAABBzbWhkAAAAAAAAAAAAAAAkZGluZgAAABxkcmVmAAAAAAAAAAEAAAAMdXJsIAAAAAEAAADTc3RibAAAAGdzdHNkAAAAAAAAAAEAAABXbXA0YQAAAAAAAAABAAAAAAAAAAAAAgAQAAAAAKxEAAAAAAAzZXNkcwAAAAADgICAIgACAASAgIAUQBUAAAAAAfQAAAHz+QWAgIACEhAGgICAAQIAAAAYc3R0cwAAAAAAAAABAAAAAgAABAAAAAAcc3RzYwAAAAAAAAABAAAAAQAAAAIAAAABAAAAHHN0c3oAAAAAAAAAAAAAAAIAAAFzAAABdAAAABRzdGNvAAAAAAAAAAEAAAAsAAAAYnVkdGEAAABabWV0YQAAAAAAAAAhaGRscgAAAAAAAAAAbWRpcmFwcGwAAAAAAAAAAAAAAAAtaWxzdAAAACWpdG9vAAAAHWRhdGEAAAABAAAAAExhdmY1Ni40MC4xMDE="},_o="application/pdf",Co={contentType:`${_o};base64`,aliases:[_o,".pdf","pdf"],body:"JVBERi0xLgoxIDAgb2JqPDwvUGFnZXMgMiAwIFI+PmVuZG9iagoyIDAgb2JqPDwvS2lkc1szIDAgUl0vQ291bnQgMT4+ZW5kb2JqCjMgMCBvYmo8PC9QYXJlbnQgMiAwIFI+PmVuZG9iagp0cmFpbGVyIDw8L1Jvb3QgMSAwIFI+Pg=="},xo="image/png",So={contentType:`${xo};base64`,aliases:[xo,".png","png"],body:"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg=="},Eo="image/svg+xml",Io={contentType:Eo,aliases:[Eo,".svg","svg"],body:"https://raw.githubusercontent.com/mathiasbynens/small/master/svg.svg"},Fo="text/plain",Oo={contentType:Fo,aliases:[Fo,".txt","txt","text","nooptext","noop.txt"],body:""},To="audio/wav",Po={contentType:`${To};base64`,aliases:[To,".wav","wav"],body:"UklGRiQAAABXQVZFZm10IBAAAAABAAEARKwAAIhYAQACABAAZGF0YQAAAAA="},zo="video/webm",Lo={contentType:`${zo};base64`,aliases:[zo,".webm","webm"],body:"GkXfo0AgQoaBAUL3gQFC8oEEQvOBCEKCQAR3ZWJtQoeBAkKFgQIYU4BnQI0VSalmQCgq17FAAw9CQE2AQAZ3aGFtbXlXQUAGd2hhbW15RIlACECPQAAAAAAAFlSua0AxrkAu14EBY8WBAZyBACK1nEADdW5khkAFVl9WUDglhohAA1ZQOIOBAeBABrCBCLqBCB9DtnVAIueBAKNAHIEAAIAwAQCdASoIAAgAAUAmJaQAA3AA/vz0AAA="},Ro="image/webp",Bo={contentType:`${Ro};base64`,aliases:[Ro,".webp","webp"],body:"UklGRhIAAABXRUJQVlA4TAYAAAAvQWxvAGs="},Uo="video/wmv",Vo={contentType:`${Uo};base64`,aliases:[Uo,".wmv","wmv"],body:"MCaydY5mzxGm2QCqAGLObOUBAAAAAAAABQAAAAECodyrjEepzxGO5ADADCBTZWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcCAAAAAAAAAIA+1d6xnQEAAAAAAAAAAMAF2QEAAAAAAAAAAAAAAAAcDAAAAAAAAAIAAACADAAAgAwAAEANAwC1A79fLqnPEY7jAMAMIFNlLgAAAAAAAAAR0tOruqnPEY7mAMAMIFNlBgAAAAAAQKTQ0gfj0hGX8ACgyV6oUGQAAAAAAAAAAQAoAFcATQAvAEUAbgBjAG8AZABpAG4AZwBTAGUAdAB0AGkAbgBnAHMAAAAAABwATABhAHYAZgA1ADcALgA0ADEALgAxADAAMAAAAJEH3Le3qc8RjuYAwAwgU2WBAAAAAAAAAMDvGbxNW88RqP0AgF9cRCsAV/sgVVvPEaj9AIBfXEQrAAAAAAAAAAAzAAAAAAAAAAEAAAAAAAEAAAABAAAAAigAKAAAAAEAAAABAAAAAQAYAE1QNDMDAAAAAAAAAAAAAAAAAAAAAAAAAEBS0YYdMdARo6QAoMkDSPZMAAAAAAAAAEFS0YYdMdARo6QAoMkDSPYBAAAAAQAKAG0AcwBtAHAAZQBnADQAdgAzAAAAAAAEAE1QNDM2JrJ1jmbPEabZAKoAYs5sMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQ=="},jo=(()=>{const e={};for(const t of[so,ro,lo,uo,mo,go,ko,yo,vo,Co,So,Io,Oo,Po,Lo,Bo,Vo])for(const o of t.aliases)e[o]=t;return e})();function Mo(e){return jo[e]||Oo}var No=class e{constructor({checksum:e="",js:o=new Map,resources:i=new Map}={}){t(this,"checksum"),t(this,"js"),t(this,"resources"),this.checksum=e,this.js=o,this.resources=i}static deserialize(t){const o=t.getASCII(),i=new Map,n=t.getUint16();for(let e=0;e{"application/javascript"===e&&s.set(o,t)})),new e({checksum:o,js:s,resources:i})}static parse(t,{checksum:o}){const i=new Map,n=t.split("\n\n");for(const e of n){const t=(s=e,s.replace(/^\s*#.*$/gm,"")).trim();if(0!==t.length){const e=t.indexOf("\n"),o=t.slice(0,e).split(/\s+/),n=o[0],s=o[1],c=t.slice(e+1);if(void 0===n||void 0===s||void 0===c)continue;let r=i.get(s);void 0===r&&(r=new Map,i.set(s,r)),r.set(n,c)}}var s;const c=i.get("application/javascript")||new Map;for(const[e,t]of c.entries())e.endsWith(".js")&&c.set(e.slice(0,-3),t);const r=new Map;return i.forEach(((e,t)=>{e.forEach(((e,o)=>{r.set(o,{contentType:t,body:e})}))})),new e({checksum:o,js:c,resources:r})}getResource(e){const{body:t,contentType:o}=this.resources.get(e)||Mo(e);let i;var n;return i=-1!==o.indexOf(";")?`data:${o},${t}`:`data:${o};base64,${n=t,"undefined"!=typeof btoa?btoa(n):"undefined"!=typeof Buffer?Buffer.from(n).toString("base64"):n}`,{body:t,contentType:o,dataUrl:i}}getSerializedSize(){let e=Z(this.checksum)+2;return this.resources.forEach((({contentType:t,body:o},i)=>{e+=Z(i)+Z(t)+X(o)})),e}serialize(e){e.pushASCII(this.checksum),e.pushUint16(this.resources.size),this.resources.forEach((({contentType:t,body:o},i)=>{e.pushASCII(i),e.pushASCII(t),e.pushUTF8(o)}))}};var Do=new Uint32Array(0);function Ho(e){return`(?:${e.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&")})`}function Wo(e,t,o){let i=e.get(t);void 0===i&&(i=[],e.set(t,i)),i.push(o)}function qo(e,t){const o=new Map;for(const i of e)Wo(o,t(i),i);return Array.from(o.values())}function Go(e,t){const o=[],i=[];for(const n of e)t(n)?o.push(n):i.push(n);return{negative:i,positive:o}}var $o=[{description:"Remove duplicated filters by ID",fusion:e=>e[0],groupByCriteria:e=>""+e.getId(),select:()=>!0},{description:"Group idential filter with same mask but different domains in single filters",fusion:e=>{const t=[],o=new Set,i=new Set,n=new Set,s=new Set;for(const{domains:c}of e)if(void 0!==c){if(void 0!==c.parts&&t.push(c.parts),void 0!==c.hostnames)for(const e of c.hostnames)o.add(e);if(void 0!==c.entities)for(const e of c.entities)n.add(e);if(void 0!==c.notHostnames)for(const e of c.notHostnames)i.add(e);if(void 0!==c.notEntities)for(const e of c.notEntities)s.add(e)}return new qt(Object.assign({},e[0],{domains:new St({hostnames:0!==o.size?new Uint32Array(o).sort():void 0,entities:0!==n.size?new Uint32Array(n).sort():void 0,notHostnames:0!==i.size?new Uint32Array(i).sort():void 0,notEntities:0!==s.size?new Uint32Array(s).sort():void 0,parts:0!==t.length?t.join(","):void 0}),rawLine:void 0!==e[0].rawLine?e.map((({rawLine:e})=>e)).join(" <+> "):void 0}))},groupByCriteria:e=>e.getHostname()+e.getFilter()+e.getMask()+e.getRedirect(),select:e=>!e.isCSP()&&void 0===e.denyallow&&void 0!==e.domains},{description:"Group simple patterns, into a single filter",fusion:e=>{const t=[];for(const o of e)o.isRegex()?t.push(`(?:${o.getRegex().source})`):o.isRightAnchor()?t.push(`${Ho(o.getFilter())}$`):o.isLeftAnchor()?t.push(`^${Ho(o.getFilter())}`):t.push(Ho(o.getFilter()));return new qt(Object.assign({},e[0],{mask:nt(e[0].mask,8388608),rawLine:void 0!==e[0].rawLine?e.map((({rawLine:e})=>e)).join(" <+> "):void 0,regex:new RegExp(t.join("|"))}))},groupByCriteria:e=>""+(-8388609&e.getMask()&-4194305),select:e=>void 0===e.domains&&void 0===e.denyallow&&!e.isHostnameAnchor()&&!e.isRedirect()&&!e.isCSP()}];function Ko(e){return e}function Qo(e){return e}function Yo(e){const t=[];let o=e;for(const{select:e,fusion:i,groupByCriteria:n}of $o){const{positive:s,negative:c}=Go(o,e);o=c;const r=qo(s,n);for(const e of r)e.length>1?t.push(i(e)):o.push(e[0])}for(const e of o)t.push(e);return t}function Zo(e){return e--,e|=e>>1,e|=e>>2,e|=e>>4,e|=e>>8,e|=e>>16,++e}var Xo=1;var Jo=Number.MAX_SAFE_INTEGER>>>0,ei=class e{constructor({deserialize:e,filters:o,optimize:i,config:n}){t(this,"bucketsIndex",q),t(this,"filtersIndexStart",0),t(this,"numberOfFilters",0),t(this,"tokensLookupIndex",q),t(this,"view"),t(this,"cache",new Map),t(this,"deserializeFilter"),t(this,"optimize"),t(this,"config"),this.view=te.empty(n),this.deserializeFilter=e,this.optimize=i,this.config=n,0!==o.length&&this.update(o,void 0)}static deserialize(t,o,i,n){const s=t.getUint32(),c=t.getUint32(),r=t.getUint32(),a=te.fromUint8Array(t.getBytes(!0),n),l=a.getUint32ArrayView(s),p=a.getUint32ArrayView(c),d=a.pos;return a.seekZero(),new e({config:n,deserialize:o,filters:[],optimize:i}).updateInternals({bucketsIndex:p,filtersIndexStart:d,numberOfFilters:r,tokensLookupIndex:l,view:a})}getFilters(){const e=[];if(0===this.numberOfFilters)return e;this.view.setPos(this.filtersIndexStart);for(let t=0;t!t.has(e.getId())||(r-=e.getSerializedSize(o),!1))));for(const t of e)r+=t.getSerializedSize(o),a.push(t)}else{a=e;for(const t of e)r+=t.getSerializedSize(o)}if(0===a.length)return void this.updateInternals({bucketsIndex:q,filtersIndexStart:0,numberOfFilters:0,tokensLookupIndex:q,view:te.empty(this.config)});!0===this.config.debug&&a.sort(((e,t)=>e.getId()-t.getId()));const l=new Uint32Array(Math.max(Zo(2*a.length),256));for(const e of a){const t=e.getTokens();s.push(t),c+=2*t.length,n+=t.length;for(const e of t){i+=e.length;for(const t of e)l[t%l.length]+=1}}r+=4*c;const p=Math.max(2,Zo(n)),d=p-1,u=[];for(let e=0;e1?this.optimize(c):c,lastRequestSeen:-1},!0===this.config.enableInMemoryCache&&this.cache.set(e,i)}if(i.lastRequestSeen!==t){i.lastRequestSeen=t;const e=i.filters;for(let t=0;t0){const o=e[t];e[t]=e[t-1],e[t-1]=o}return!1}}return!0}},ti=new Uint8Array(4),oi=class e{constructor({config:e,deserialize:o,filters:i}){t(this,"filters"),t(this,"deserialize"),t(this,"config"),this.deserialize=o,this.filters=ti,this.config=e,0!==i.length&&this.update(i,void 0)}static deserialize(t,o,i){const n=new e({deserialize:o,config:i,filters:[]});return n.filters=t.getBytes(),n}update(e,t){let o=this.filters.byteLength,i=[];const n=this.config.enableCompression,s=this.getFilters();if(0!==s.length)if(void 0===t||0===t.size)i=s;else for(const e of s)!1===t.has(e.getId())?i.push(e):o-=e.getSerializedSize(n);const c=i.length!==s.length,r=i.length;for(const t of e)o+=t.getSerializedSize(n),i.push(t);const a=i.length>r;if(0===i.length)this.filters=ti;else if(!0===a||!0===c){const e=te.allocate(o,this.config);e.pushUint32(i.length),!0===this.config.debug&&i.sort(((e,t)=>e.getId()-t.getId()));for(const t of i)t.serialize(e);this.filters=e.buffer}}getSerializedSize(){return Q(this.filters,!1)}serialize(e){e.pushBytes(this.filters)}getFilters(){if(this.filters.byteLength<=4)return[];const e=[],t=te.fromUint8Array(this.filters,this.config),o=t.getUint32();for(let i=0;i(n.match(t,e)&&!o?.(n)&&i.push(n),!0)));const s=[];return 0!==i.length&&this.unhideIndex.iterMatchingFilters(n,(i=>(i.match(t,e)&&!o?.(i)&&s.push(i),!0))),{filters:i,unhides:s}}getCosmeticsFilters({domain:e,hostname:t,classes:o=[],hrefs:i=[],ids:n=[],allowGenericHides:s=!0,allowSpecificHides:c=!0,getRulesFromDOM:r=!0,getRulesFromHostname:a=!0,isFilterExcluded:l}){const p=ci(t,e),d=[];if(!0===a&&this.hostnameIndex.iterMatchingFilters(p,(o=>(!0!==c&&!0!==o.isScriptInject()||!o.match(t,e)||l?.(o)||d.push(o),!0))),!0===s&&!0===a){const o=this.getGenericRules();for(const i of o)!0!==i.match(t,e)||l?.(i)||d.push(i)}!0===s&&!0===r&&0!==o.length&&this.classesIndex.iterMatchingFilters(at(o),(o=>(o.match(t,e)&&!l?.(o)&&d.push(o),!0))),!0===s&&!0===r&&0!==n.length&&this.idsIndex.iterMatchingFilters(at(n),(o=>(o.match(t,e)&&!l?.(o)&&d.push(o),!0))),!0===s&&!0===r&&0!==i.length&&this.hrefsIndex.iterMatchingFilters(function(e){const t=e.sort();let o=1;for(let e=1;e{return t=e,Je.reset(),At(t,Je),Je.slice();var t})))),(o=>(o.match(t,e)&&!l?.(o)&&d.push(o),!0)));const u=[];return 0!==d.length&&this.unhideIndex.iterMatchingFilters(p,(o=>(o.match(t,e)&&!l?.(o)&&u.push(o),!0))),{filters:d,unhides:u}}getStylesheetsFromFilters({filters:e,extendedFilters:t},{getBaseRules:o,allowGenericHides:i}){let n=!1===o||!1===i?"":this.getBaseStylesheet();0!==e.length&&(0!==n.length&&(n+="\n\n"),n+=si(e));const s=[];if(0!==t.length){const e=new Map;for(const o of t){const t=o.getSelectorAST();if(void 0!==t){const i=o.isRemove()?void 0:o.getStyleAttributeHash();void 0!==i&&e.set(o.getStyle(),i),s.push({ast:t,remove:o.isRemove(),attribute:i})}}0!==e.size&&(0!==n.length&&(n+="\n\n"),n+=[...e.entries()].map((([e,t])=>`[${t}] { ${e} }`)).join("\n\n"))}return{stylesheet:n,extended:s}}getGenericRules(){return null===this.extraGenericRules?this.lazyPopulateGenericRulesCache().genericRules:this.extraGenericRules}getBaseStylesheet(){return null===this.baseStylesheet?this.lazyPopulateGenericRulesCache().baseStylesheet:this.baseStylesheet}lazyPopulateGenericRulesCache(){if(null===this.baseStylesheet||null===this.extraGenericRules){const e=this.unhideIndex.getFilters(),t=new Set;for(const o of e)t.add(o.getSelector());const o=this.genericRules.getFilters(),i=[],n=[];for(const e of o)e.hasCustomStyle()||e.isScriptInject()||e.hasHostnameConstraint()||t.has(e.getSelector())?n.push(e):i.push(e);this.baseStylesheet=si(i),this.extraGenericRules=n}return{baseStylesheet:this.baseStylesheet,genericRules:this.extraGenericRules}}},ai=class e{constructor({filters:e=[],config:o}){t(this,"index"),t(this,"badFilters"),t(this,"badFiltersIds"),this.index=new ei({config:o,deserialize:qt.deserialize,filters:[],optimize:o.enableOptimizations?Yo:Ko}),this.badFiltersIds=null,this.badFilters=new oi({config:o,deserialize:qt.deserialize,filters:[]}),0!==e.length&&this.update(e,void 0)}static deserialize(t,o){const i=new e({config:o});return i.index=ei.deserialize(t,qt.deserialize,o.enableOptimizations?Yo:Ko,o),i.badFilters=oi.deserialize(t,qt.deserialize,o),i}getFilters(){return[].concat(this.badFilters.getFilters(),this.index.getFilters())}update(e,t){const o=[],i=[];for(const t of e)t.isBadFilter()?o.push(t):i.push(t);this.badFilters.update(o,t),this.index.update(i,t),this.badFiltersIds=null}getSerializedSize(){return this.badFilters.getSerializedSize()+this.index.getSerializedSize()}serialize(e){this.index.serialize(e),this.badFilters.serialize(e)}matchAll(e,t){const o=[];return this.index.iterMatchingFilters(e.getTokens(),(i=>(i.match(e)&&!1===this.isFilterDisabled(i)&&!t?.(i)&&o.push(i),!0))),o}match(e,t){let o;return this.index.iterMatchingFilters(e.getTokens(),(i=>!(i.match(e)&&!1===this.isFilterDisabled(i)&&!t?.(i))||(o=i,!1))),o}isFilterDisabled(e){if(null===this.badFiltersIds){const e=this.badFilters.getFilters();if(0===e.length)return!1;const t=new Set;for(const o of e)t.add(o.getIdWithoutBadFilter());this.badFiltersIds=t}return this.badFiltersIds.has(e.getId())}},li=Number.MAX_SAFE_INTEGER>>>0,pi=class e{constructor({serialize:e,deserialize:o,getKeys:i,getSerializedSize:n,values:s}){if(t(this,"cache",new Map),t(this,"bucketsIndex",q),t(this,"tokensLookupIndex",q),t(this,"valuesIndexStart",0),t(this,"numberOfValues",0),t(this,"view"),t(this,"deserializeValue"),this.view=te.empty({enableCompression:!1}),this.deserializeValue=o,0!==s.length){const t=[];let o=0,c=0;for(const e of s)c+=n(e);if(0===s.length)return void this.updateInternals({bucketsIndex:q,valuesIndexStart:0,numberOfValues:0,tokensLookupIndex:q,view:te.empty({enableCompression:!1})});for(const e of s){const n=i(e);t.push(n),o+=2*n.length}c+=4*o;const r=Math.max(2,Zo(s.length)),a=r-1,l=[];for(let e=0;e[],getSerializedSize:()=>0,serialize:()=>{}}).updateInternals({bucketsIndex:a,valuesIndexStart:l,numberOfValues:s,tokensLookupIndex:r,view:c})}updateInternals({bucketsIndex:e,valuesIndexStart:t,numberOfValues:o,tokensLookupIndex:i,view:n}){return this.bucketsIndex=e,this.valuesIndexStart=t,this.numberOfValues=o,this.tokensLookupIndex=i,this.view=n,n.seekZero(),this}getValues(){const e=[];if(0===this.numberOfValues)return e;this.view.setPos(this.valuesIndexStart);for(let t=0;t[ui(e)],serialize:mi,deserialize:Ai,values:e})}function fi(e){if(null===e)return!1;if("object"!=typeof e)return!1;const{key:t,name:o,description:i,country:n,website_url:s,privacy_policy_url:c,privacy_contact:r,ghostery_id:a}=e;return"string"==typeof t&&("string"==typeof o&&((null===i||"string"==typeof i)&&((null===n||"string"==typeof n)&&((null===s||"string"==typeof s)&&((null===c||"string"==typeof c)&&((null===r||"string"==typeof r)&&(null===a||"string"==typeof a)))))))}function ki(e){return rt(e.key)}function bi(e){return X(e.key)+X(e.name)+X(e.description||"")+X(e.website_url||"")+X(e.country||"")+X(e.privacy_policy_url||"")+X(e.privacy_contact||"")+X(e.ghostery_id||"")}function yi(e,t){t.pushUTF8(e.key),t.pushUTF8(e.name),t.pushUTF8(e.description||""),t.pushUTF8(e.website_url||""),t.pushUTF8(e.country||""),t.pushUTF8(e.privacy_policy_url||""),t.pushUTF8(e.privacy_contact||""),t.pushUTF8(e.ghostery_id||"")}function wi(e){return{key:e.getUTF8(),name:e.getUTF8(),description:e.getUTF8()||null,website_url:e.getUTF8()||null,country:e.getUTF8()||null,privacy_policy_url:e.getUTF8()||null,privacy_contact:e.getUTF8()||null,ghostery_id:e.getUTF8()||null}}function vi(e){return new pi({getSerializedSize:bi,getKeys:e=>[ki(e)],serialize:yi,deserialize:wi,values:e})}function _i(e){if(null===e)return!1;if("object"!=typeof e)return!1;const{key:t,name:o,category:i,organization:n,alias:s,website_url:c,domains:r,filters:a}=e;return"string"==typeof t&&("string"==typeof o&&("string"==typeof i&&((null===n||"string"==typeof n)&&(("string"==typeof s||null===s)&&((null===c||"string"==typeof c)&&(!(!Array.isArray(r)||!r.every((e=>"string"==typeof e)))&&!(!Array.isArray(a)||!a.every((e=>"string"==typeof e)))))))))}function Ci(e){const t=[];for(const o of e.filters){const e=qt.parse(o);null!==e&&t.push(e.getId())}for(const o of e.domains){const e=qt.parse(`||${o}^`);null!==e&&t.push(e.getId())}return[...new Set(t)]}function xi(e){let t=K(e.domains.length);for(const o of e.domains)t+=X(o);let o=K(e.filters.length);for(const t of e.filters)o+=X(t);return X(e.key)+X(e.name)+X(e.category)+X(e.organization||"")+X(e.alias||"")+X(e.website_url||"")+X(e.ghostery_id||"")+t+o}function Si(e,t){t.pushUTF8(e.key),t.pushUTF8(e.name),t.pushUTF8(e.category),t.pushUTF8(e.organization||""),t.pushUTF8(e.alias||""),t.pushUTF8(e.website_url||""),t.pushUTF8(e.ghostery_id||""),t.pushLength(e.domains.length);for(const o of e.domains)t.pushUTF8(o);t.pushLength(e.filters.length);for(const o of e.filters)t.pushUTF8(o)}function Ei(e){const t=e.getUTF8(),o=e.getUTF8(),i=e.getUTF8(),n=e.getUTF8()||null,s=e.getUTF8()||null,c=e.getUTF8()||null,r=e.getUTF8()||null,a=e.getLength(),l=[];for(let t=0;t=2;t.shift()){const e=t.join("."),o=qt.parse(`||${e}^`);if(null===o)continue;const i=this.fromId(o.getId());if(i.length>0)return i}return[]}fromId(e){const t=[];for(const o of this.patterns.get(e))t.push({pattern:o,category:this.categories.get(ui({key:o.category}))?.[0],organization:null!==o.organization?this.organizations.get(ki({key:o.organization}))?.[0]:null});return t}},Oi=class{constructor({excluded:e=new Set,preprocessors:o=[]}){t(this,"preprocessors"),t(this,"excluded"),this.excluded=e,this.preprocessors=o}static deserialize(e){const t=new Set;for(let o=0,i=e.getUint32();ot.condition===e.condition));if(t)for(const o of e.filterIDs)t.filterIDs.delete(o)}if(e)for(const t of e){const e=this.preprocessors.find((e=>e.condition===t.condition));if(e)for(const o of t.filterIDs)e.filterIDs.add(o);else this.preprocessors.push(t)}(t&&0!==t.length||e&&0!==e.length)&&this.updateEnv(o)}serialize(e){e.pushUint32(this.excluded.size);for(const t of this.excluded)e.pushUint32(t);e.pushUint32(this.preprocessors.length);for(const t of this.preprocessors)t.serialize(e)}getSerializedSize(){let e=4*(1+this.excluded.size);e+=4;for(const t of this.preprocessors)e+=t.getSerializedSize();return e}};function Ti(e){if(0===e.length)return!1;let t,o=0;for(const i of e){const e=(i.isImportant()?4:0)|(i.isException()?1:2);e>=o&&(o=e,t=i)}return void 0!==t&&t.isException()}var Pi=class extends re{constructor({cosmeticFilters:e=[],networkFilters:o=[],preprocessors:i=[],config:n=new oe,lists:s=new Map}={}){super(),t(this,"lists"),t(this,"preprocessors"),t(this,"csp"),t(this,"hideExceptions"),t(this,"exceptions"),t(this,"importants"),t(this,"redirects"),t(this,"filters"),t(this,"cosmetics"),t(this,"metadata"),t(this,"resources"),t(this,"config"),this.config=new oe(n),this.lists=s,this.preprocessors=new Oi({}),this.csp=new ai({config:this.config}),this.hideExceptions=new ai({config:this.config}),this.exceptions=new ai({config:this.config}),this.importants=new ai({config:this.config}),this.redirects=new ai({config:this.config}),this.filters=new ai({config:this.config}),this.cosmetics=new ri({config:this.config}),this.resources=new No,0===o.length&&0===e.length||this.update({newCosmeticFilters:e,newNetworkFilters:o,newPreprocessors:i})}static fromCached(e,t){if(void 0===t)return e();const{path:o,read:i,write:n}=t;return i(o).then((e=>this.deserialize(e))).catch((()=>e().then((e=>n(o,e.serialize()).then((()=>e))))))}static empty(e={}){return new this({config:e})}static fromLists(e,t,o={},i){return this.fromCached((()=>{const i=function(e,t){return Promise.all(t.map((t=>ae(e,t))))}(e,t),n=function(e){return ae(e,`${le}/ublock-origin/resources.txt`)}(e);return Promise.all([i,n]).then((([e,t])=>{const i=this.parse(e.join("\n"),o);return void 0!==t&&i.updateResources(t,""+t.length),i}))}),i)}static fromPrebuiltAdsOnly(e=fetch,t){return this.fromLists(e,pe,{},t)}static fromPrebuiltAdsAndTracking(e=fetch,t){return this.fromLists(e,de,{},t)}static fromPrebuiltFull(e=fetch,t){return this.fromLists(e,ue,{},t)}static fromTrackerDB(e,t={}){const o=new oe(t),i=new Fi(e),n=[];for(const e of i.getPatterns())n.push(...e.filters);const s=this.parse(n.join("\n"),o);return s.metadata=i,s}static merge(e){if(!e||e.length<2)throw new Error("merging engines requires at least two engines");const t=e[0].config,o=e[0].lists,i=new Map,n=new Map,s=[],c={organizations:{},categories:{},patterns:{}},r=new Map,a=[],l=Object.keys(t).filter((function(e){return"boolean"==typeof t[e]&&!a.includes(e)}));for(const a of e){for(const e of l)if(t[e]!==a.config[e])throw new Error(`config "${e}" of all merged engines must be the same`);const e=a.getFilters();for(const t of e.networkFilters)i.set(t.getId(),t);for(const t of e.cosmeticFilters)n.set(t.getId(),t);for(const e of a.preprocessors.preprocessors)s.push(e);for(const[e,t]of a.lists)o.has(e)||o.set(e,t);if(void 0!==a.metadata){for(const e of a.metadata.organizations.getValues())void 0===c.organizations[e.key]&&(c.organizations[e.key]=e);for(const e of a.metadata.categories.getValues())void 0===c.categories[e.key]&&(c.categories[e.key]=e);for(const e of a.metadata.patterns.getValues())void 0===c.patterns[e.key]&&(c.patterns[e.key]=e)}for(const[e,t]of a.resources.resources)r.has(e)||r.set(e,t)}const p=[...r.entries()].reduce(((e,[t,o])=>[...e,`${t} ${o.contentType}\n${o.body}`]),[]).join("\n\n"),d=new this({networkFilters:Array.from(i.values()),cosmeticFilters:Array.from(n.values()),preprocessors:s,lists:o,config:t});return Object.keys(c.categories).length+Object.keys(c.organizations).length+Object.keys(c.patterns).length!==0&&(d.metadata=new Fi(c)),d.resources=No.parse(p,{checksum:rt(p).toString(16)}),d}static parse(e,t={}){const o=new oe(t);return new this({...io(e,o),config:o})}static deserialize(e){const t=te.fromUint8Array(e,{enableCompression:!1}),o=t.getUint16();if(664!==o)throw new Error(`serialized engine version mismatch, expected 664 but got ${o}`);const i=oe.deserialize(t);if(i.enableCompression&&t.enableCompression(),i.integrityCheck){const o=t.pos;t.pos=e.length-4;const i=t.checksum(),n=t.getUint32();if(i!==n)throw new Error(`serialized engine checksum mismatch, expected ${n} but got ${i}`);t.pos=o}const n=new this({config:i});n.resources=No.deserialize(t);const s=new Map,c=t.getUint16();for(let e=0;ee.getId()))).concat(o.map((e=>e.getId()))));l.push(new to({condition:e,filterIDs:n}))}if(void 0!==t.added&&0!==t.added.length){const{networkFilters:o,cosmeticFilters:i}=io(t.added.join("\n"),this.config),n=new Set([].concat(i.map((e=>e.getId()))).concat(o.map((e=>e.getId()))));c.push(new to({condition:e,filterIDs:n}))}}return this.update({newCosmeticFilters:n,newNetworkFilters:s,newPreprocessors:c,removedCosmeticFilters:r.map((e=>e.getId())),removedNetworkFilters:a.map((e=>e.getId())),removedPreprocessors:l},i)}getHtmlFilters({url:e,hostname:t,domain:o,callerContext:i}){const n=[];if(!1===this.config.enableHtmlFiltering||!1===this.config.loadCosmeticFilters)return n;o||="";const{filters:s,unhides:c}=this.cosmetics.getHtmlFilters({domain:o,hostname:t,isFilterExcluded:this.isFilterExcluded.bind(this)}),r=new Map(c.map((e=>[e.getSelector(),e])));for(const t of s){const o=t.getExtendedSelector();if(void 0===o)continue;const s=r.get(t.getSelector());void 0!==s&&n.push(o),this.emit("filter-matched",{filter:t,exception:s},{url:e,callerContext:i,filterType:2})}return 0!==n.length&&this.emit("html-filtered",n,e),n}getCosmeticsFilters({url:e,hostname:t,domain:o,classes:i,hrefs:n,ids:s,getBaseRules:c=!0,getInjectionRules:r=!0,getExtendedRules:a=!0,getRulesFromDOM:l=!0,getRulesFromHostname:p=!0,callerContext:d}){if(!1===this.config.loadCosmeticFilters)return{active:!1,extended:[],scripts:[],styles:""};o||="";let u=!0,h=!0;const m=this.hideExceptions.matchAll(xt.fromRawDetails({domain:o,hostname:t,url:e,sourceDomain:"",sourceHostname:"",sourceUrl:""}),this.isFilterExcluded.bind(this)),A=[],g=[];for(const e of m){if(e.isElemHide()){u=!1,h=!1;break}e.isSpecificHide()?g.push(e):e.isGenericHide()&&A.push(e)}!0===u&&(u=!1===Ti(A)),!0===h&&(h=!1===Ti(g));const{filters:f,unhides:k}=this.cosmetics.getCosmeticsFilters({domain:o,hostname:t,classes:i,hrefs:n,ids:s,allowGenericHides:u,allowSpecificHides:h,getRulesFromDOM:l,getRulesFromHostname:p,isFilterExcluded:this.isFilterExcluded.bind(this)});let b=!1;const y=new Map;for(const e of k)!0===e.isScriptInject()&&!0===e.isUnhide()&&0===e.getSelector().length&&(b=!0),y.set(e.getSelector(),e);const w=[],v=[],_=[];if(0!==f.length)for(const t of f){const o=y.get(t.getSelector());if(void 0!==o)continue;let i=!1;!0===t.isScriptInject()?!0===r&&!1===b&&(w.push(t),i=!0):t.isExtended()?!0===a&&(_.push(t),i=!0):(v.push(t),i=!0),i&&this.emit("filter-matched",{filter:t,exception:o},{url:e,callerContext:d,filterType:2})}const C=[];for(const t of w){const o=t.getScript(this.resources.js);void 0!==o&&(this.emit("script-injected",o,e),C.push(o))}const{stylesheet:x,extended:S}=this.cosmetics.getStylesheetsFromFilters({filters:v,extendedFilters:_},{getBaseRules:c,allowGenericHides:u});return 0!==x.length&&this.emit("style-injected",x,e),{active:!0,extended:S,scripts:C,styles:x}}matchAll(e){const t=[];return e.isSupported&&(Array.prototype.push.apply(t,this.importants.matchAll(e,this.isFilterExcluded.bind(this))),Array.prototype.push.apply(t,this.filters.matchAll(e,this.isFilterExcluded.bind(this))),Array.prototype.push.apply(t,this.exceptions.matchAll(e,this.isFilterExcluded.bind(this))),Array.prototype.push.apply(t,this.csp.matchAll(e,this.isFilterExcluded.bind(this))),Array.prototype.push.apply(t,this.hideExceptions.matchAll(e,this.isFilterExcluded.bind(this))),Array.prototype.push.apply(t,this.redirects.matchAll(e,this.isFilterExcluded.bind(this)))),new Set(t)}getCSPDirectives(e){if(!this.config.loadNetworkFilters)return;if(!0!==e.isSupported||!1===e.isMainFrame())return;const t=this.csp.matchAll(e,this.isFilterExcluded.bind(this));if(0===t.length)return;const o=new Map,i=[];for(const n of t)if(n.isException()){if(void 0===n.csp)return void this.emit("filter-matched",{exception:n},{request:e,filterType:1});o.set(n.csp,n)}else i.push(n);if(0===i.length)return;const n=new Set;for(const t of i.values()){const i=o.get(t.csp);void 0===i&&n.add(t.csp),this.emit("filter-matched",{filter:t,exception:i},{request:e,filterType:1})}const s=Array.from(n).join("; ");return s.length>0&&this.emit("csp-injected",e,s),s}match(e,t=!1){const o={exception:void 0,filter:void 0,match:!1,redirect:void 0,metadata:void 0};if(!this.config.loadNetworkFilters)return o;if(e.isSupported){let t,i;if(o.filter=this.importants.match(e,this.isFilterExcluded.bind(this)),void 0===o.filter){const n=this.redirects.matchAll(e,this.isFilterExcluded.bind(this));if(0!==n.length)for(const e of n)"none"===e.getRedirect()?t=e:e.isRedirectRule()?i=e:o.filter=e;void 0===o.filter&&(o.filter=this.filters.match(e,this.isFilterExcluded.bind(this)),void 0!==i&&void 0!==o.filter&&(o.filter=i)),void 0!==o.filter&&(o.exception=this.exceptions.match(e,this.isFilterExcluded.bind(this)))}void 0!==o.filter&&void 0===o.exception&&o.filter.isRedirect()&&(void 0!==t?o.exception=t:o.redirect=this.resources.getResource(o.filter.getRedirect()))}return o.match=void 0===o.exception&&void 0!==o.filter,o.filter&&this.emit("filter-matched",{filter:o.filter,exception:o.exception},{request:e,filterType:1}),void 0!==o.exception?this.emit("request-whitelisted",e,o):void 0!==o.redirect?this.emit("request-redirected",e,o):void 0!==o.filter?this.emit("request-blocked",e,o):this.emit("request-allowed",e,o),!0===t&&void 0!==o.filter&&this.metadata&&(o.metadata=this.metadata.fromFilter(o.filter)),o}getPatternMetadata(e,{getDomainMetadata:t=!1}={}){if(void 0===this.metadata)return[];const o=new Set,i=[];for(const t of this.matchAll(e))for(const e of this.metadata.fromFilter(t))o.has(e.pattern.key)||(o.add(e.pattern.key),i.push(e));if(t)for(const t of this.metadata.fromDomain(e.hostname))o.has(t.pattern.key)||(o.add(t.pattern.key),i.push(t));return i}blockScripts(){return this.updateFromDiff({added:[he().scripts().redirectTo("javascript").toString()]}),this}blockImages(){return this.updateFromDiff({added:[he().images().redirectTo("png").toString()]}),this}blockMedias(){return this.updateFromDiff({added:[he().medias().redirectTo("mp4").toString()]}),this}blockFrames(){return this.updateFromDiff({added:[he().frames().redirectTo("html").toString()]}),this}blockFonts(){return this.updateFromDiff({added:[he().fonts().toString()]}),this}blockStyles(){return this.updateFromDiff({added:[he().styles().toString()]}),this}};function zi(e){const t=new Set(["br","head","link","meta","script","style","s"]),o=new Set,i=new Set,n=new Set,s=new Set;for(const c of e)for(const e of[c,...c.querySelectorAll("[id]:not(html):not(body),[class]:not(html):not(body),[href]:not(html):not(body)")]){if(s.has(e))continue;if(s.add(e),t.has(e.nodeName.toLowerCase()))continue;const c=e.getAttribute("id");"string"==typeof c&&n.add(c);const r=e.classList;for(const e of r)o.add(e);const a=e.getAttribute("href");"string"==typeof a&&i.add(a)}return{classes:Array.from(o),hrefs:Array.from(i),ids:Array.from(n)}}var Li=new Uint8Array([2,152,0,0,0,1,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,128,0,0,70,199,0,0,2,244,0,0,15,35,92,53,102,32,67,111,111,107,105,101,84,101,120,116,0,0,19,35,92,53,102,32,95,97,99,99,101,112,116,95,99,111,111,107,105,101,0,0,15,35,92,53,102,32,95,105,99,45,110,111,116,105,99,101,0,0,31,35,92,53,102,32,95,110,100,99,99,95,99,111,111,107,105,101,73,109,112,108,105,101,100,67,111,110,115,101,110,116,0,0,25,35,92,53,102,32,99,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,112,101,114,0,0,17,35,92,53,102,32,105,112,104,95,99,112,95,112,111,112,117,112,0,0,21,35,99,111,111,107,105,101,66,97,110,110,101,114,92,46,98,97,110,110,101,114,0,0,19,35,106,115,92,46,99,111,111,107,105,101,92,46,98,97,110,110,101,114,0,0,15,46,115,194,183,102,111,111,116,101,114,45,103,100,112,114,4,0,19,46,111,111,107,105,101,65,103,114,101,101,109,101,110,116,45,109,116,109,0,0,13,67,79,79,75,73,69,45,72,69,65,68,69,82,0,0,17,68,67,73,78,70,79,95,67,79,79,75,73,69,95,65,71,66,0,0,11,71,68,80,82,45,78,79,84,73,67,69,0,0,27,91,97,112,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,114,111,108,93,0,0,39,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,99,111,111,107,105,101,45,98,111,120,45,109,101,115,115,97,103,101,34,93,0,0,39,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,34,93,0,0,34,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,99,111,111,107,105,101,112,114,105,118,97,99,121,34,93,0,0,43,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,34,93,0,0,41,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,100,105,97,108,111,103,45,101,117,45,99,111,111,107,105,101,45,108,97,119,34,93,0,0,34,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,94,61,34,99,111,111,107,105,101,45,119,97,108,108,45,34,93,0,0,29,91,97,114,105,97,45,108,97,98,101,108,61,34,67,111,111,107,105,101,115,32,98,97,110,110,101,114,34,93,0,0,33,91,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,99,111,111,107,105,101,45,100,105,97,108,111,103,34,93,0,0,39,91,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,99,111,111,107,105,101,45,119,97,108,108,45,104,101,97,100,105,110,103,34,93,0,0,45,91,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,117,105,45,100,105,97,108,111,103,45,116,105,116,108,101,45,99,111,111,107,105,101,98,111,120,34,93,0,0,19,91,99,110,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,93,0,0,20,91,99,111,111,107,105,101,45,117,110,105,113,117,101,45,110,97,109,101,93,0,0,19,91,100,97,116,97,45,97,108,101,114,116,45,99,111,111,107,105,101,93,0,0,34,91,100,97,116,97,45,97,116,45,115,101,108,101,99,116,111,114,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,0,0,34,91,100,97,116,97,45,97,117,116,111,109,97,116,105,111,110,61,34,99,111,111,107,105,101,115,45,98,97,110,110,101,114,34,93,0,0,31,91,100,97,116,97,45,98,101,104,97,118,105,111,117,114,61,34,99,111,111,107,105,101,45,112,111,112,117,112,34,93,0,0,40,91,100,97,116,97,45,98,105,110,100,61,34,118,105,115,105,98,108,101,58,32,115,104,111,119,67,111,111,107,105,101,87,97,114,110,105,110,103,34,93,0,0,11,91,100,97,116,97,45,99,99,112,97,93,0,0,44,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,45,99,108,97,115,115,45,110,97,109,101,61,34,99,111,111,107,105,101,76,105,103,104,116,98,111,120,34,93,0,0,37,91,100,97,116,97,45,99,111,111,107,105,101,45,110,97,109,101,61,34,99,111,111,107,105,101,115,68,105,114,101,99,116,105,118,101,34,93,0,0,20,91,100,97,116,97,45,99,111,111,107,105,101,45,110,117,109,98,101,114,93,0,0,19,91,100,97,116,97,45,99,111,111,107,105,101,45,112,111,112,117,112,93,0,0,27,91,100,97,116,97,45,99,111,111,107,105,101,45,118,97,108,105,100,105,116,121,45,100,97,121,115,93,0,0,34,91,100,97,116,97,45,99,111,111,107,105,101,61,34,117,115,111,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,34,93,0,0,34,91,100,97,116,97,45,99,111,111,107,105,101,94,61,34,99,111,111,107,105,101,46,100,105,115,99,108,97,105,109,101,114,34,93,0,0,31,91,100,97,116,97,45,99,118,101,110,116,45,105,100,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,0,0,25,91,100,97,116,97,45,99,121,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,0,0,25,91,100,97,116,97,45,99,121,61,34,99,111,111,107,105,101,45,110,111,116,105,99,101,34,93,0,0,21,91,100,97,116,97,45,99,121,61,34,99,111,111,107,105,101,98,97,114,34,93,0,0,33,91,100,97,116,97,45,100,105,97,108,111,103,45,105,100,61,34,97,99,99,101,112,116,45,99,111,111,107,105,101,115,34,93,0,0,25,91,100,97,116,97,45,100,109,105,100,42,61,34,99,111,111,107,105,101,98,97,114,45,34,93,0,0,16,91,100,97,116,97,45,100,109,115,99,111,111,107,105,101,93,0,0,28,91,100,97,116,97,45,103,45,110,97,109,101,61,34,67,111,111,107,105,101,66,97,110,110,101,114,34,93,0,0,29,91,100,97,116,97,45,103,97,111,111,112,95,104,105,100,101,95,97,102,116,101,114,95,99,108,111,115,101,93,0,0,20,91,100,97,116,97,45,105,110,99,61,34,99,111,111,107,105,101,115,34,93,0,0,23,91,100,97,116,97,45,105,110,99,108,117,100,101,61,34,99,111,111,107,105,101,34,93,0,0,24,91,100,97,116,97,45,105,110,99,108,117,100,101,61,34,99,111,111,107,105,101,115,34,93,0,0,28,91,100,97,116,97,45,107,101,121,61,34,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,34,93,0,0,28,91,100,97,116,97,45,109,111,100,117,108,101,61,34,67,111,111,107,105,101,66,97,110,110,101,114,34,93,0,0,23,91,100,97,116,97,45,109,111,100,117,108,101,61,34,99,111,111,107,105,101,115,34,93,0,0,26,91,100,97,116,97,45,110,97,109,101,61,34,99,111,111,107,105,101,78,111,116,105,99,101,34,93,0,0,34,91,100,97,116,97,45,110,97,109,101,94,61,34,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,34,93,0,0,43,91,100,97,116,97,45,110,111,116,105,102,105,99,97,116,105,111,110,61,34,67,111,111,107,105,101,80,111,108,105,99,121,65,103,114,101,101,109,101,110,116,34,93,0,0,21,91,100,97,116,97,45,113,97,61,34,67,111,111,107,105,101,66,97,114,34,93,0,0,30,91,100,97,116,97,45,113,97,61,34,116,120,116,71,100,112,114,67,111,111,107,105,101,80,111,112,117,112,34,93,0,0,41,91,100,97,116,97,45,114,101,97,99,116,45,99,108,97,115,115,42,61,34,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,34,93,0,0,35,91,100,97,116,97,45,114,101,97,99,116,45,99,108,97,115,115,61,34,69,85,67,111,111,107,105,101,66,97,110,110,101,114,34,93,0,0,37,91,100,97,116,97,45,114,101,97,99,116,45,99,111,109,112,111,110,101,110,116,61,34,67,111,111,107,105,101,80,114,111,109,112,116,34,93,0,0,20,91,100,97,116,97,45,114,101,102,61,34,99,111,111,107,105,101,115,34,93,0,0,15,91,100,97,116,97,45,114,103,112,100,45,105,110,99,93,0,0,27,91,100,97,116,97,45,114,111,108,101,61,34,99,111,111,107,105,101,45,110,111,116,105,99,101,34,93,0,0,30,91,100,97,116,97,45,115,45,116,121,112,101,61,34,99,111,111,107,105,101,45,109,101,115,115,97,103,101,34,93,0,0,31,91,100,97,116,97,45,115,101,108,101,99,116,111,114,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,34,93,0,0,23,91,100,97,116,97,45,116,97,114,103,101,116,61,34,99,111,111,99,107,105,101,34,93,0,0,28,91,100,97,116,97,45,116,101,115,116,45,105,100,61,34,67,111,111,107,105,101,80,111,112,117,112,34,93,0,0,37,91,100,97,116,97,45,116,101,115,116,45,105,100,61,34,99,104,101,99,107,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,34,93,0,0,38,91,100,97,116,97,45,116,101,115,116,45,105,100,61,34,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,34,93,0,0,37,91,100,97,116,97,45,116,101,115,116,45,105,100,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,34,93,0,0,27,91,100,97,116,97,45,116,101,115,116,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,0,0,33,91,100,97,116,97,45,116,101,115,116,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,104,101,101,116,34,93,0,0,32,91,100,97,116,97,45,116,101,115,116,61,34,103,100,112,114,45,99,111,111,107,105,101,115,45,112,111,112,117,112,34,93,0,0,24,91,100,97,116,97,45,116,101,115,116,61,34,103,100,112,114,45,109,111,100,97,108,34,93,0,0,37,91,100,97,116,97,45,116,101,115,116,105,100,61,34,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,34,93,0,0,30,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,110,115,101,110,116,45,98,97,110,110,101,114,34,93,0,0,26,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,98,97,114,34,93,0,0,29,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,34,93,0,0,30,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,112,111,112,111,118,101,114,34,93,0,0,35,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,66,97,110,110,101,114,45,119,105,100,103,101,116,34,93,0,0,35,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,34,93,0,0,42,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,95,98,97,110,110,101,114,95,118,50,95,99,111,110,116,97,105,110,101,114,34,93,0,0,38,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,34,93,0,0,30,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,115,45,109,111,100,117,108,101,34,93,0,0,30,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,115,95,102,111,111,116,101,114,34,93,0,0,45,91,100,97,116,97,45,116,101,115,116,105,100,61,34,109,97,105,110,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,34,93,0,0,33,91,100,97,116,97,45,116,111,107,101,110,61,34,103,100,112,114,95,99,111,111,107,105,101,95,110,111,116,105,99,101,34,93,0,0,29,91,100,97,116,97,45,116,121,112,101,61,34,99,111,111,107,105,101,45,97,100,100,115,101,110,115,101,34,93,0,0,28,91,100,97,116,97,45,117,105,45,116,101,115,116,61,34,99,111,111,107,105,101,65,108,101,114,116,34,93,0,0,25,91,100,97,116,97,45,117,110,105,113,117,101,45,99,111,111,107,105,101,45,110,97,109,101,93,0,0,28,91,100,97,116,97,45,118,101,99,105,61,34,99,111,111,107,105,101,115,45,112,111,108,105,99,121,34,93,0,0,41,91,100,97,116,97,45,118,105,101,119,45,110,97,109,101,61,34,112,114,105,118,97,99,121,45,117,112,100,97,116,101,100,45,110,111,116,105,99,101,34,93,0,0,24,91,105,100,61,34,108,117,120,45,99,111,111,107,105,101,45,100,105,97,108,111,103,34,93,0,0,20,91,110,97,109,101,61,34,99,111,111,107,105,101,45,105,110,102,111,34,93,0,0,22,91,110,97,109,101,61,34,99,111,111,107,105,101,119,97,114,110,105,110,103,34,93,0,0,34,91,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,67,111,111,107,105,101,66,97,110,110,101,114,67,116,114,108,34,93,0,0,29,91,110,103,45,115,104,111,119,94,61,34,99,111,111,107,105,101,80,111,108,105,99,121,67,116,114,108,34,93,0,0,28,91,116,121,112,101,61,34,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,34,93,0,0,25,91,120,45,100,97,116,97,61,34,99,111,111,107,105,101,66,97,110,110,101,114,40,41,34,93,0,0,28,91,120,45,115,104,111,119,61,34,115,104,111,119,67,111,111,107,105,101,67,111,110,115,101,110,116,34,93,0,0,17,97,99,99,101,112,116,45,99,111,111,107,105,101,45,98,111,120,0,0,22,97,99,105,100,106,115,45,120,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,9,97,100,99,111,111,107,105,101,115,0,0,21,97,108,116,101,114,100,97,116,97,45,99,111,111,107,105,101,45,116,111,111,108,0,0,17,97,109,101,100,105,97,45,112,114,105,118,97,99,121,98,111,120,0,0,11,97,109,112,45,99,111,110,115,101,110,116,0,0,21,97,109,112,45,117,115,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,17,97,112,112,45,97,99,99,101,112,116,45,99,111,111,107,105,101,0,0,16,97,112,112,45,97,118,105,115,111,45,99,111,111,107,105,101,0,0,17,97,112,112,45,97,118,105,115,111,45,99,111,111,107,105,101,115,0,0,32,97,112,112,45,98,97,110,110,101,114,91,97,114,105,97,108,97,98,101,108,42,61,34,67,111,111,107,105,101,115,34,93,0,0,14,97,112,112,45,99,98,45,99,111,111,107,105,101,115,0,0,15,97,112,112,45,99,99,112,97,45,98,97,110,110,101,114,0,0,10,97,112,112,45,99,111,111,107,105,101,0,0,17,97,112,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,14,97,112,112,45,99,111,111,107,105,101,45,98,97,114,0,0,18,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,25,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,0,0,26,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,102,101,97,116,117,114,101,0,0,24,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,0,0,24,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,0,0,17,97,112,112,45,99,111,111,107,105,101,45,102,111,111,116,101,114,0,0,15,97,112,112,45,99,111,111,107,105,101,45,105,110,102,111,0,0,14,97,112,112,45,99,111,111,107,105,101,45,109,115,103,0,0,23,97,112,112,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,17,97,112,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,0,0,16,97,112,112,45,99,111,111,107,105,101,45,112,111,112,117,112,0,0,17,97,112,112,45,99,111,111,107,105,101,45,112,114,111,109,112,116,0,0,16,97,112,112,45,99,111,111,107,105,101,45,114,117,108,101,115,0,0,18,97,112,112,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,0,0,17,97,112,112,45,99,111,111,107,105,101,45,119,105,100,103,101,116,0,0,11,97,112,112,45,99,111,111,107,105,101,115,0,0,21,97,112,112,45,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,0,0,17,97,112,112,45,99,111,111,107,105,101,115,45,97,108,101,114,116,0,0,18,97,112,112,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,0,0,15,97,112,112,45,99,111,111,107,105,101,115,45,98,111,120,0,0,19,97,112,112,45,99,111,111,107,105,101,115,45,99,111,110,102,105,114,109,0,0,19,97,112,112,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,0,0,17,97,112,112,45,99,111,111,107,105,101,115,45,109,111,100,97,108,0,0,18,97,112,112,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,0,0,18,97,112,112,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,0,0,26,97,112,112,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,117,112,100,97,116,101,100,0,0,17,97,112,112,45,99,111,111,107,105,101,115,45,112,111,112,117,112,0,0,17,97,112,112,45,99,111,111,107,105,101,115,45,116,111,97,115,116,0,0,24,97,112,112,45,102,111,110,99,105,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,23,97,112,112,45,102,111,111,116,101,114,45,109,111,100,97,108,45,99,111,111,107,105,101,0,0,18,97,112,112,45,112,111,112,45,117,112,45,99,111,111,107,105,101,115,0,0,8,97,112,112,45,114,111,100,111,0,0,30,97,112,112,45,114,111,111,116,32,97,112,112,45,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,0,0,13,97,114,107,45,99,111,111,107,105,101,98,97,114,0,0,19,97,115,105,100,101,91,99,108,97,115,115,61,34,114,103,112,100,34,93,0,0,25,97,116,108,97,115,45,108,111,103,111,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,0,0,12,97,118,105,115,45,99,111,111,107,105,101,115,0,0,36,97,119,115,117,105,45,97,108,101,114,116,91,100,105,115,109,105,115,115,42,61,34,67,111,111,107,105,101,66,97,110,110,101,114,34,93,0,0,18,97,122,97,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,0,0,24,98,50,99,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,18,98,111,100,121,32,62,32,46,98,116,110,45,99,111,111,107,105,101,0,0,33,98,114,111,119,115,101,114,45,108,111,103,105,110,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,33,99,45,99,111,109,109,117,110,105,116,121,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,0,0,16,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,20,99,45,101,99,112,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,0,0,27,99,45,111,115,102,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,0,0,11,99,98,110,45,99,111,111,107,105,101,115,0,0,17,99,103,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,0,0,31,99,108,111,117,100,102,108,97,114,101,45,97,112,112,91,97,112,112,61,34,99,111,111,107,105,108,101,115,115,34,93,0,0,42,99,108,111,117,100,102,108,97,114,101,45,97,112,112,91,97,112,112,61,34,116,105,98,114,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,34,93,0,0,17,99,109,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,23,99,109,112,118,105,101,119,115,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,0,0,19,99,110,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,0,0,22,99,111,108,45,99,111,111,107,105,101,45,105,110,102,111,45,98,97,110,110,101,114,0,0,22,99,111,109,112,108,121,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,0,0,16,99,111,110,45,99,111,111,107,105,101,45,112,111,112,117,112,0,0,7,99,111,110,115,101,110,116,0,0,20,99,111,110,115,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,15,99,111,111,107,45,100,105,115,99,108,97,105,109,101,114,0,0,22,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,45,98,108,111,99,107,0,0,12,99,111,111,107,105,101,45,97,108,101,114,116,0,0,13,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,10,99,111,111,107,105,101,45,98,97,114,0,0,19,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,0,0,14,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,21,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,0,0,24,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,109,112,111,110,101,110,116,0,0,20,99,111,111,107,105,101,45,100,114,97,119,101,114,45,112,111,108,105,99,121,0,0,11,99,111,111,107,105,101,45,105,110,102,111,0,0,17,99,111,111,107,105,101,45,108,97,119,45,98,97,110,110,101,114,0,0,12,99,111,111,107,105,101,45,109,111,100,97,108,0,0,13,99,111,111,107,105,101,45,110,111,116,105,99,101,0,0,19,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,17,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,0,0,13,99,111,111,107,105,101,45,112,111,108,105,99,121,0,0,19,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,105,110,0,0,12,99,111,111,107,105,101,45,112,111,112,117,112,0,0,14,99,111,111,107,105,101,45,119,97,114,110,105,110,103,0,0,11,99,111,111,107,105,101,45,119,114,97,112,0,0,13,99,111,111,107,105,101,95,110,111,116,105,99,101,0,0,9,99,111,111,107,105,101,98,111,120,0,0,15,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,0,0,12,99,111,111,107,105,101,115,45,103,100,112,114,0,0,12,99,111,111,107,105,101,115,45,104,105,110,116,0,0,20,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,15,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,0,0,14,99,111,111,107,105,101,115,45,112,111,108,105,99,121,0,0,13,99,111,111,107,105,101,115,45,112,111,112,117,112,0,0,19,99,111,111,107,105,101,115,45,114,101,113,117,105,114,101,109,101,110,116,0,0,15,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,0,0,16,99,111,111,107,105,101,115,46,110,103,45,115,99,111,112,101,0,0,13,99,111,111,107,105,108,101,115,115,45,100,105,118,0,0,17,99,114,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,0,0,22,99,116,115,45,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,115,0,0,22,100,97,121,97,119,97,121,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,20,100,105,97,108,111,103,46,99,111,111,107,105,101,45,112,111,108,105,99,121,0,0,20,100,105,108,101,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,0,0,45,100,105,118,91,100,97,116,97,45,97,117,116,111,109,97,116,105,111,110,61,34,112,114,105,118,97,99,121,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,34,93,0,0,26,100,105,118,91,100,97,116,97,45,98,97,110,110,101,114,61,34,99,111,111,107,105,101,115,34,93,0,0,29,100,105,118,91,100,97,116,97,45,98,111,114,108,97,98,115,45,99,111,111,107,105,101,45,119,114,97,112,93,0,0,34,100,105,118,91,100,97,116,97,45,98,111,120,45,110,97,109,101,61,34,99,111,111,107,105,101,32,112,111,108,105,99,121,34,93,0,0,24,100,105,118,91,100,97,116,97,45,99,109,112,45,110,111,45,99,111,110,115,101,110,116,93,0,0,35,100,105,118,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,34,93,0,0,35,100,105,118,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,61,34,99,111,111,107,105,101,67,111,110,116,101,110,116,34,93,0,0,40,100,105,118,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,115,61,34,112,100,114,45,119,115,49,108,105,98,45,104,101,97,100,101,114,34,93,0,0,33,100,105,118,91,100,97,116,97,45,99,111,110,116,97,105,110,101,114,45,97,99,99,101,112,116,99,111,111,107,105,101,115,93,0,0,36,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,45,108,97,119,45,98,97,110,110,101,114,45,115,101,108,101,99,116,111,114,93,0,0,29,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,93,0,0,21,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,45,112,97,116,104,93,0,0,24,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,93,0,0,22,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,98,97,110,110,101,114,93,0,0,19,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,98,97,114,93,0,0,26,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,108,97,121,101,114,45,105,110,105,116,93,0,0,41,100,105,118,91,100,97,116,97,45,99,111,114,103,105,45,99,111,109,112,111,110,101,110,116,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,0,0,35,100,105,118,91,100,97,116,97,45,101,116,115,121,45,112,114,111,109,111,45,99,111,111,107,105,101,45,101,120,112,105,114,101,115,93,0,0,29,100,105,118,91,100,97,116,97,45,103,100,112,114,45,99,111,110,115,101,110,116,45,112,114,111,109,112,116,93,0,0,24,100,105,118,91,100,97,116,97,45,105,100,61,34,99,111,111,107,105,101,66,97,114,34,93,0,0,28,100,105,118,91,100,97,116,97,45,105,100,61,34,99,111,111,107,105,101,95,100,105,97,108,111,103,34,93,0,0,23,100,105,118,91,100,97,116,97,45,105,115,45,99,111,111,107,105,101,105,110,102,111,93,0,0,32,100,105,118,91,100,97,116,97,45,109,111,100,117,108,101,61,34,99,111,111,107,105,101,95,98,97,110,110,101,114,34,93,0,0,33,100,105,118,91,100,97,116,97,45,110,111,116,105,102,105,99,97,116,105,111,110,105,100,61,34,99,111,111,107,105,101,34,93,0,0,32,100,105,118,91,100,97,116,97,45,112,110,112,45,109,105,45,105,100,61,34,109,105,45,99,111,111,107,105,101,115,34,93,0,0,36,100,105,118,91,100,97,116,97,45,112,111,118,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,93,0,0,25,100,105,118,91,100,97,116,97,45,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,93,0,0,36,100,105,118,91,100,97,116,97,45,114,101,97,99,116,45,99,108,97,115,115,61,34,67,111,111,107,105,101,78,111,116,105,99,101,34,93,0,0,37,100,105,118,91,100,97,116,97,45,114,111,108,101,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,34,93,0,0,38,100,105,118,91,100,97,116,97,45,115,101,99,116,105,111,110,45,116,121,112,101,61,34,67,111,111,107,105,101,115,66,97,110,110,101,114,34,93,0,0,40,100,105,118,91,100,97,116,97,45,115,101,108,101,99,116,111,114,61,34,99,111,110,116,97,105,110,101,114,64,99,111,111,107,105,101,98,97,114,34,93,0,0,35,100,105,118,91,100,97,116,97,45,115,101,108,101,110,45,103,114,111,117,112,61,34,99,111,111,107,105,101,115,45,98,97,114,34,93,0,0,33,100,105,118,91,100,97,116,97,45,115,101,108,101,110,105,117,109,61,34,67,111,111,107,105,101,66,97,110,110,101,114,34,93,0,0,33,100,105,118,91,100,97,116,97,45,116,101,115,116,45,115,101,108,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,93,0,0,37,100,105,118,91,100,97,116,97,45,116,101,115,116,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,34,93,0,0,36,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,34,93,0,0,39,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,34,93,0,0,34,100,105,118,91,100,97,116,97,45,119,122,98,61,34,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,34,93,0,0,36,100,105,118,91,101,108,101,109,101,110,116,45,115,116,114,117,99,116,117,114,101,45,99,111,111,107,105,101,109,111,110,115,116,101,114,93,0,0,15,100,105,118,91,106,115,45,99,111,111,107,105,101,115,93,0,0,30,100,105,118,91,108,100,45,115,99,111,112,101,61,34,99,111,111,107,105,101,45,99,111,110,115,101,110,116,34,93,0,0,42,100,105,118,91,110,103,45,99,108,105,99,107,61,34,115,101,108,102,46,115,101,116,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,40,41,34,93,0,0,29,100,105,118,91,115,112,101,99,61,34,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,34,93,0,0,17,100,107,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,0,0,19,100,118,97,45,109,45,99,111,111,107,105,101,45,102,108,121,111,117,116,0,0,21,101,97,45,116,114,117,115,116,101,45,99,111,110,115,101,110,116,45,98,97,114,0,0,10,101,100,110,45,99,111,111,107,105,101,0,0,39,101,109,118,45,97,110,111,110,121,109,111,117,115,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,45,98,97,110,110,101,114,0,0,13,101,111,45,99,111,111,107,105,101,45,98,97,114,0,0,26,101,112,97,97,115,45,99,111,110,115,101,110,116,45,100,114,97,119,101,114,45,115,104,101,108,108,0,0,21,101,115,110,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,0,0,20,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,0,0,26,102,97,98,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,98,97,110,110,101,114,50,0,0,25,102,100,112,45,119,105,100,103,101,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,17,102,111,111,116,101,114,32,62,32,35,99,111,111,107,105,101,115,0,0,16,102,111,111,116,101,114,32,62,32,46,99,111,111,107,105,101,0,0,29,102,111,114,109,91,110,97,109,101,61,34,70,111,114,109,76,101,103,103,101,67,111,111,107,105,101,115,34,93,0,0,15,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,0,0,22,103,100,112,114,45,97,103,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,0,0,12,103,100,112,114,45,99,111,110,115,101,110,116,0,0,12,103,100,112,114,45,99,111,111,107,105,101,115,0,0,13,103,100,112,114,45,112,111,108,105,99,105,101,115,0,0,12,103,100,112,114,112,111,112,117,112,109,111,100,0,0,19,103,100,115,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,0,0,24,103,102,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,99,101,0,0,16,103,106,45,99,111,111,107,105,101,45,112,114,111,109,112,116,0,0,23,104,109,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,19,105,100,103,45,99,111,111,107,105,101,45,105,110,102,111,45,98,97,114,0,0,30,105,102,114,97,109,101,91,110,97,109,101,61,34,103,111,111,103,108,101,102,99,80,114,101,115,101,110,116,34,93,0,0,17,105,110,103,45,117,105,45,114,98,97,45,99,111,111,107,105,101,0,0,17,105,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,10,106,115,97,45,99,111,111,107,105,101,0,0,15,107,117,109,97,45,99,111,111,107,105,101,45,98,97,114,0,0,11,108,103,112,100,45,99,111,111,107,105,101,0,0,17,108,103,112,100,45,99,111,111,107,105,101,45,116,101,114,109,115,0,0,24,108,105,98,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,116,111,97,115,116,0,0,25,108,110,98,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,111,118,101,114,108,97,121,0,0,11,108,111,111,112,45,99,111,111,107,105,101,0,0,23,108,117,110,111,45,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,0,0,16,109,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,0,0,28,109,99,116,45,116,101,109,112,108,97,116,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,22,109,100,45,116,111,97,115,116,46,99,111,111,107,105,101,115,45,116,111,97,115,116,0,0,15,109,105,112,45,99,111,111,107,105,101,45,105,110,102,111,0,0,21,110,57,45,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,115,0,0,24,110,103,101,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,16,110,108,45,99,111,111,107,105,101,45,110,111,116,105,99,101,0,0,19,110,111,115,105,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,21,110,115,45,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,116,105,112,0,0,12,111,45,99,111,111,107,105,101,45,108,97,119,0,0,18,111,99,97,115,111,45,103,108,111,98,97,108,45,109,111,100,97,108,0,0,18,111,99,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,26,111,100,115,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,0,0,17,111,102,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,0,0,21,111,102,105,45,99,111,111,107,105,101,45,98,111,120,45,119,105,100,103,101,116,0,0,10,111,110,108,45,99,111,111,107,105,101,0,0,20,111,117,116,101,114,45,119,114,97,112,112,101,114,45,99,111,111,107,105,101,0,0,16,112,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,18,112,100,111,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,0,0,16,112,112,45,99,111,111,107,105,101,45,100,105,97,108,111,103,0,0,20,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,116,111,97,115,116,0,0,23,112,114,111,97,99,116,117,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,18,112,117,109,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,18,114,116,107,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,0,0,18,115,55,50,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,17,115,100,45,99,111,111,107,105,101,115,45,119,105,100,103,101,116,0,0,17,115,101,99,116,105,111,110,32,62,32,46,99,111,111,107,105,101,0,0,31,115,101,99,116,105,111,110,91,99,108,97,115,115,42,61,34,95,67,111,111,107,105,101,78,111,116,105,99,101,34,93,0,0,36,115,101,99,116,105,111,110,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,61,34,67,111,109,51,67,111,111,107,105,101,34,93,0,0,37,115,101,99,116,105,111,110,91,100,97,116,97,45,116,101,115,116,45,105,100,61,34,99,111,111,107,105,101,45,110,111,116,105,99,101,34,93,0,0,33,115,101,99,116,105,111,110,91,100,97,116,97,45,118,105,101,119,61,34,99,111,111,107,105,101,80,111,108,105,99,121,34,93,0,0,18,115,101,108,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,17,115,104,98,45,99,111,111,107,105,101,45,97,99,99,101,112,116,0,0,18,115,104,98,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,16,115,105,98,98,111,45,99,109,112,45,108,97,121,111,117,116,0,0,16,115,106,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,18,115,111,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,23,115,116,97,101,100,116,108,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,27,115,117,99,104,101,110,45,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,116,111,97,115,116,0,0,17,116,97,103,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,12,116,104,111,114,45,99,111,111,107,105,101,115,0,0,20,116,104,114,101,97,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,0,0,17,116,112,108,45,99,111,111,107,105,101,99,111,110,115,101,110,116,0,0,13,116,115,45,99,111,111,107,105,101,45,109,115,103,0,0,14,116,117,105,45,99,111,111,107,105,101,45,98,97,114,0,0,18,116,117,105,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,18,116,117,117,103,111,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,22,117,99,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,17,117,103,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,15,117,120,45,99,111,111,107,105,101,45,108,97,121,101,114,0,0,27,118,99,45,115,105,116,101,45,99,111,111,107,105,101,112,111,108,105,99,121,45,100,105,97,108,111,103,0,0,13,118,101,105,115,115,45,99,111,111,107,105,101,115,0,0,17,118,108,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,18,118,111,99,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,0,0,10,119,99,45,99,111,111,107,105,101,115,0,0,18,119,101,98,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,11,119,101,99,111,109,97,45,108,105,116,101,0,0,21,119,105,101,108,97,110,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,29,119,112,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,0,0,29,119,120,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,24,120,107,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,97,114,110,105,110,103,0,0,16,121,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,0,0,17,121,103,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,0,0,31,121,116,100,45,97,112,112,32,126,32,105,114,111,110,45,111,118,101,114,108,97,121,45,98,97,99,107,100,114,111,112,0,0,25,121,116,100,45,99,111,110,115,101,110,116,45,98,117,109,112,45,114,101,110,100,101,114,101,114,0,0,26,121,116,100,45,109,101,97,108,98,97,114,45,112,114,111,109,111,45,114,101,110,100,101,114,101,114,0,0,23,121,116,103,45,110,111,116,105,102,105,99,97,116,105,111,110,45,102,111,111,116,101,114,0,0,18,122,97,112,102,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,17,97,114,116,105,99,108,101,46,99,45,99,111,111,107,105,101,115,0,0,21,97,114,116,105,99,108,101,46,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,24,97,114,116,105,99,108,101,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,0,0,18,97,115,105,100,101,35,99,111,111,107,105,101,45,112,111,112,117,112,0,0,28,97,115,105,100,101,35,101,117,95,99,111,111,107,105,101,95,108,97,119,95,119,105,100,103,101,116,45,50,0,0,27,97,115,105,100,101,46,97,109,103,100,112,114,106,115,45,98,97,114,45,116,101,109,112,108,97,116,101,0,0,20,97,115,105,100,101,46,98,111,116,116,111,109,45,99,111,111,107,105,101,115,0,0,19,97,115,105,100,101,46,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,16,97,115,105,100,101,46,99,111,111,107,105,101,45,98,97,114,0,0,18,97,115,105,100,101,46,99,111,111,107,105,101,45,112,111,112,117,112,0,0,22,100,105,118,35,65,67,67,108,97,121,101,114,66,97,99,107,103,114,111,117,110,100,0,0,23,100,105,118,35,65,67,67,115,109,97,108,108,67,111,111,107,105,101,76,97,121,101,114,0,0,24,100,105,118,35,95,95,116,101,97,108,105,117,109,71,68,80,82,101,99,77,111,100,97,108,0,0,17,100,105,118,35,97,99,99,101,112,116,45,99,111,111,107,105,101,0,0,27,100,105,118,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,0,0,21,100,105,118,35,97,99,101,112,116,97,114,95,99,111,110,116,97,105,110,101,114,0,0,17,100,105,118,35,97,108,108,111,119,45,99,111,111,107,105,101,115,0,0,24,100,105,118,35,99,99,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,0,0,16,100,105,118,35,99,99,95,99,111,110,116,97,105,110,101,114,0,0,16,100,105,118,35,99,99,112,97,45,99,111,110,115,101,110,116,0,0,20,100,105,118,35,99,99,112,97,67,111,111,107,105,101,66,97,110,110,101,114,0,0,28,100,105,118,35,99,109,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,0,0,21,100,105,118,35,99,109,112,45,97,112,112,45,99,111,110,116,97,105,110,101,114,0,0,28,100,105,118,35,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,0,0,29,100,105,118,35,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,99,111,110,116,97,105,110,101,114,0,0,29,100,105,118,35,99,111,110,115,101,110,116,67,111,109,112,111,110,101,110,116,67,111,110,116,97,105,110,101,114,0,0,20,100,105,118,35,99,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,0,0,16,100,105,118,35,99,111,110,115,101,110,116,102,114,97,109,101,0,0,22,100,105,118,35,99,111,110,116,101,110,101,100,111,114,45,99,111,111,107,105,101,115,0,0,27,100,105,118,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,99,111,110,116,97,105,110,101,114,0,0,21,100,105,118,35,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,0,0,26,100,105,118,35,99,111,111,107,105,101,45,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,0,0,27,100,105,118,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,0,0,27,100,105,118,35,99,111,111,107,105,101,45,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,0,0,14,100,105,118,35,99,111,111,107,105,101,45,98,97,114,0,0,24,100,105,118,35,99,111,111,107,105,101,45,98,97,114,45,99,111,110,116,97,105,110,101,114,0,0,21,100,105,118,35,99,111,111,107,105,101,45,98,97,114,45,112,114,111,109,112,116,0,0,16,100,105,118,35,99,111,111,107,105,101,45,99,104,101,99,107,0,0,27,100,105,118,35,99,111,111,107,105,101,45,99,104,111,105,99,101,45,99,111,110,116,97,105,110,101,114,0,0,25,100,105,118,35,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,0,0,21,100,105,118,35,99,111,111,107,105,101,45,108,97,119,45,98,97,110,110,101,114,0,0,16,100,105,118,35,99,111,111,107,105,101,45,112,111,112,117,112,0,0,18,100,105,118,35,99,111,111,107,105,101,66,111,116,72,105,100,101,49,0,0,22,100,105,118,35,99,111,111,107,105,101,67,111,110,115,101,110,116,77,111,100,97,108,0,0,29,100,105,118,35,99,111,111,107,105,101,67,111,110,115,101,110,116,83,116,105,99,107,121,70,111,111,116,101,114,0,0,15,100,105,118,35,99,111,111,107,105,101,80,111,112,117,112,0,0,17,100,105,118,35,99,111,111,107,105,101,95,98,97,110,110,101,114,0,0,22,100,105,118,35,99,111,111,107,105,101,115,45,98,97,99,107,103,114,111,117,110,100,0,0,15,100,105,118,35,99,111,111,107,105,101,115,45,112,111,112,0,0,19,100,105,118,35,99,111,111,107,105,101,115,65,112,112,114,111,118,97,108,0,0,19,100,105,118,35,99,111,111,107,105,101,115,76,105,103,104,116,98,111,120,0,0,20,100,105,118,35,99,111,111,107,105,101,115,100,105,114,101,99,116,105,118,101,0,0,18,100,105,118,35,100,99,67,111,111,107,105,101,72,101,108,112,101,114,0,0,22,100,105,118,35,100,99,67,111,111,107,105,101,72,101,108,112,101,114,45,45,98,103,0,0,20,100,105,118,35,101,117,45,99,111,111,107,105,101,115,45,112,111,112,117,112,0,0,22,100,105,118,35,103,100,112,114,45,99,111,111,107,105,101,45,97,99,99,101,112,116,0,0,17,100,105,118,35,103,100,112,114,67,111,111,107,105,101,66,97,114,0,0,24,100,105,118,35,103,100,112,114,112,97,116,114,111,110,73,110,102,111,108,101,105,115,116,101,0,0,31,100,105,118,35,103,100,112,114,112,97,116,114,111,110,73,110,102,111,108,101,105,115,116,101,79,118,101,114,108,97,121,0,0,8,100,105,118,35,108,103,112,100,0,0,15,100,105,118,35,108,103,112,100,45,98,97,110,110,101,114,0,0,26,100,105,118,35,108,103,112,100,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,0,0,18,100,105,118,35,112,114,105,118,97,99,121,95,112,111,108,105,99,121,0,0,14,100,105,118,35,115,104,97,100,67,111,111,107,105,101,0,0,27,100,105,118,35,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,0,0,19,100,105,118,35,119,104,67,111,111,107,105,101,77,97,110,97,103,101,114,0,0,11,100,105,118,46,45,99,111,111,107,105,101,0,0,18,100,105,118,46,45,99,111,111,107,105,101,45,110,111,116,105,99,101,0,0,12,100,105,118,46,45,99,111,111,107,105,101,115,0,0,19,100,105,118,46,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,0,0,19,100,105,118,46,45,99,111,111,107,105,101,115,95,95,97,108,101,114,116,0,0,17,100,105,118,46,65,99,99,101,112,116,67,111,111,107,105,101,115,0,0,13,100,105,118,46,66,111,120,67,111,111,107,105,101,0,0,17,100,105,118,46,67,111,110,115,101,110,116,67,111,111,107,105,101,0,0,10,100,105,118,46,67,111,111,107,105,101,0,0,17,100,105,118,46,67,111,111,107,105,101,45,98,97,110,110,101,114,0,0,17,100,105,118,46,67,111,111,107,105,101,45,110,111,116,105,99,101,0,0,18,100,105,118,46,67,111,111,107,105,101,45,119,114,97,112,112,101,114,0,0,16,100,105,118,46,67,111,111,107,105,101,65,99,99,101,112,116,0,0,15,100,105,118,46,67,111,111,107,105,101,65,108,101,114,116,0,0,22,100,105,118,46,67,111,111,107,105,101,67,111,110,102,105,114,109,97,116,105,111,110,0,0,14,100,105,118,46,67,111,111,107,105,101,73,110,102,111,0,0,32,100,105,118,46,67,111,111,107,105,101,77,101,115,115,97,103,101,95,95,99,111,111,107,105,101,77,101,115,115,97,103,101,0,0,16,100,105,118,46,67,111,111,107,105,101,80,114,111,109,112,116,0,0,17,100,105,118,46,67,111,111,107,105,101,87,114,97,112,112,101,114,0,0,17,100,105,118,46,67,111,111,107,105,101,95,95,80,111,112,117,112,0,0,11,100,105,118,46,67,111,111,107,105,101,115,0,0,15,100,105,118,46,67,111,111,107,105,101,115,87,114,97,112,0,0,12,100,105,118,46,69,85,67,111,111,107,105,101,0,0,38,100,105,118,46,71,100,112,114,67,111,111,107,105,101,67,111,110,115,101,110,116,45,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,0,0,45,100,105,118,46,71,100,112,114,67,111,111,107,105,101,67,111,110,115,101,110,116,45,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,79,118,101,114,108,97,121,0,0,17,100,105,118,46,80,114,105,118,97,99,121,66,97,110,110,101,114,0,0,17,100,105,118,46,80,114,105,118,97,99,121,67,111,111,107,105,101,0,0,17,100,105,118,46,97,99,99,101,112,116,45,99,111,111,107,105,101,0,0,18,100,105,118,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,0,0,15,100,105,118,46,97,99,99,101,112,116,45,114,103,112,100,0,0,16,100,105,118,46,97,99,99,101,112,116,67,111,111,107,105,101,0,0,17,100,105,118,46,97,99,99,101,112,116,67,111,111,107,105,101,115,0,0,19,100,105,118,46,97,99,99,101,112,116,95,95,99,111,111,107,105,101,115,0,0,16,100,105,118,46,97,99,99,101,112,116,99,111,111,107,105,101,0,0,17,100,105,118,46,97,99,99,101,112,116,99,111,111,107,105,101,115,0,0,20,100,105,118,46,97,99,99,101,112,116,101,100,45,99,111,111,107,105,101,115,0,0,15,100,105,118,46,97,103,114,101,101,99,111,111,107,105,101,0,0,14,100,105,118,46,97,108,101,114,116,45,99,111,111,107,0,0,16,100,105,118,46,97,108,101,114,116,45,99,111,111,107,105,101,0,0,17,100,105,118,46,97,108,101,114,116,45,99,111,111,107,105,101,115,0,0,14,100,105,118,46,97,108,101,114,116,45,103,100,112,114,0,0,15,100,105,118,46,97,108,101,114,116,67,111,111,107,105,101,0,0,16,100,105,118,46,97,108,101,114,116,67,111,111,107,105,101,115,0,0,18,100,105,118,46,97,108,101,114,116,95,95,99,111,111,107,105,101,115,0,0,16,100,105,118,46,97,108,108,111,119,45,99,111,111,107,105,101,0,0,17,100,105,118,46,97,108,108,111,119,45,99,111,111,107,105,101,115,0,0,15,100,105,118,46,97,108,108,111,119,99,111,111,107,105,101,0,0,21,100,105,118,46,97,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,15,100,105,118,46,97,112,112,45,99,111,111,107,105,101,115,0,0,14,100,105,118,46,97,115,107,45,99,111,111,107,105,101,0,0,11,100,105,118,46,97,115,107,99,111,111,107,0,0,16,100,105,118,46,97,118,105,115,111,45,99,111,111,107,105,101,0,0,20,100,105,118,46,97,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,13,100,105,118,46,98,45,45,99,111,111,107,105,101,0,0,12,100,105,118,46,98,45,99,111,111,107,105,101,0,0,14,100,105,118,46,98,108,111,99,107,45,99,110,105,108,0,0,16,100,105,118,46,98,108,111,99,107,45,99,111,111,107,105,101,0,0,24,100,105,118,46,98,108,111,99,107,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,0,0,17,100,105,118,46,98,108,111,99,107,45,99,111,111,107,105,101,115,0,0,15,100,105,118,46,98,108,111,103,45,99,111,111,107,105,101,0,0,18,100,105,118,46,98,111,116,116,111,109,45,99,111,111,107,105,101,115,0,0,12,100,105,118,46,98,111,120,95,108,103,112,100,0,0,13,100,105,118,46,99,45,99,111,110,115,101,110,116,0,0,12,100,105,118,46,99,45,99,111,111,107,105,101,0,0,19,100,105,118,46,99,45,99,111,111,107,105,101,67,111,110,115,101,110,116,0,0,19,100,105,118,46,99,45,99,111,111,107,105,101,99,111,110,115,101,110,116,0,0,13,100,105,118,46,99,45,99,111,111,107,105,101,115,0,0,10,100,105,118,46,99,45,103,100,112,114,0,0,11,100,105,118,46,99,80,111,108,105,99,121,0,0,20,100,105,118,46,99,99,45,67,111,111,107,105,101,87,97,114,110,105,110,103,0,0,13,100,105,118,46,99,99,45,114,101,118,111,107,101,0,0,16,100,105,118,46,99,99,112,97,45,109,101,115,115,97,103,101,0,0,15,100,105,118,46,99,99,112,97,45,110,111,116,105,99,101,0,0,24,100,105,118,46,99,105,118,105,99,95,99,111,111,107,105,101,95,95,98,97,110,110,101,114,0,0,25,100,105,118,46,99,105,118,105,99,95,99,111,111,107,105,101,95,95,111,118,101,114,108,97,121,0,0,8,100,105,118,46,99,110,105,108,0,0,14,100,105,118,46,99,110,105,108,45,112,111,112,117,112,0,0,18,100,105,118,46,99,111,110,102,105,114,109,45,99,111,111,107,105,101,0,0,28,100,105,118,46,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,0,0,14,100,105,118,46,99,111,110,115,101,110,116,45,98,103,0,0,18,100,105,118,46,99,111,110,115,101,110,116,45,100,105,97,108,111,103,0,0,16,100,105,118,46,99,111,110,115,101,110,116,45,115,104,111,119,0,0,25,100,105,118,46,99,111,110,115,101,110,116,45,115,117,109,109,97,114,121,45,115,104,111,119,110,0,0,20,100,105,118,46,99,111,110,115,101,110,116,45,116,114,97,99,107,105,110,103,0,0,17,100,105,118,46,99,111,110,115,101,110,116,98,97,110,110,101,114,0,0,20,100,105,118,46,99,111,110,116,97,105,110,101,114,67,111,111,107,105,101,115,0,0,18,100,105,118,46,99,111,110,116,101,110,45,99,111,111,107,105,101,115,0,0,15,100,105,118,46,99,111,111,99,107,105,101,115,100,105,118,0,0,15,100,105,118,46,99,111,111,107,105,101,45,45,98,97,114,0,0,16,100,105,118,46,99,111,111,107,105,101,45,45,98,108,117,114,0,0,18,100,105,118,46,99,111,111,107,105,101,45,45,110,111,116,105,99,101,0,0,19,100,105,118,46,99,111,111,107,105,101,45,45,119,114,97,112,112,101,114,0,0,27,100,105,118,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,99,111,110,116,97,105,110,101,114,0,0,21,100,105,118,46,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,0,0,17,100,105,118,46,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,25,100,105,118,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,0,0,14,100,105,118,46,99,111,111,107,105,101,45,98,97,114,0,0,26,100,105,118,46,99,111,111,107,105,101,45,98,97,114,45,45,105,115,45,118,105,115,105,98,108,101,0,0,22,100,105,118,46,99,111,111,107,105,101,45,98,97,114,45,118,105,115,105,98,108,101,0,0,16,100,105,118,46,99,111,111,107,105,101,45,98,108,97,99,107,0,0,15,100,105,118,46,99,111,111,107,105,101,45,98,108,111,99,0,0,18,100,105,118,46,99,111,111,107,105,101,45,99,104,111,105,99,101,115,0,0,21,100,105,118,46,99,111,111,107,105,101,45,99,111,109,112,105,108,97,110,99,101,0,0,21,100,105,118,46,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,0,0,18,100,105,118,46,99,111,111,107,105,101,45,99,111,110,102,105,114,109,0,0,18,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,25,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,0,0,22,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,0,0,24,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,108,111,99,107,0,0,24,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,0,0,23,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,112,101,110,0,0,26,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,0,0,24,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,0,0,23,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,104,111,119,0,0,25,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,105,110,100,111,119,0,0,20,100,105,118,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,0,0,18,100,105,118,46,99,111,111,107,105,101,45,99,111,110,116,101,110,116,0,0,18,100,105,118,46,99,111,111,107,105,101,45,100,101,116,97,105,108,115,0,0,20,100,105,118,46,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,0,0,21,100,105,118,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,0,0,20,100,105,118,46,99,111,111,107,105,101,45,100,105,115,99,108,97,109,101,114,0,0,21,100,105,118,46,99,111,111,107,105,101,45,100,105,115,99,108,111,115,117,114,101,0,0,14,100,105,118,46,99,111,111,107,105,101,45,100,105,118,0,0,13,100,105,118,46,99,111,111,107,105,101,45,101,117,0,0,15,100,105,118,46,99,111,111,107,105,101,45,103,100,112,114,0,0,17,100,105,118,46,99,111,111,107,105,101,45,104,101,97,100,101,114,0,0,15,100,105,118,46,99,111,111,107,105,101,45,104,105,110,116,0,0,18,100,105,118,46,99,111,111,107,105,101,45,104,105,110,119,101,105,115,0,0,15,100,105,118,46,99,111,111,107,105,101,45,104,111,108,100,0,0,15,100,105,118,46,99,111,111,107,105,101,45,105,110,102,111,0,0,16,100,105,118,46,99,111,111,107,105,101,45,108,97,121,101,114,0,0,18,100,105,118,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,0,0,14,100,105,118,46,99,111,111,107,105,101,45,109,115,103,0,0,17,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,99,101,0,0,21,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,105,103,0,0,22,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,111,100,121,0,0,25,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,115,101,110,116,0,0,22,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,111,112,101,110,0,0,25,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,118,105,115,105,98,108,101,0,0,25,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,0,0,23,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,31,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,0,0,13,100,105,118,46,99,111,111,107,105,101,45,111,110,0,0,18,100,105,118,46,99,111,111,107,105,101,45,111,118,101,114,108,97,121,0,0,18,100,105,118,46,99,111,111,107,105,101,45,112,97,100,100,105,110,103,0,0,16,100,105,118,46,99,111,111,107,105,101,45,112,97,110,101,108,0,0,17,100,105,118,46,99,111,111,107,105,101,45,112,97,114,101,110,116,0,0,17,100,105,118,46,99,111,111,107,105,101,45,112,111,108,105,99,121,0,0,24,100,105,118,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,0,0,22,100,105,118,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,104,101,97,100,0,0,22,100,105,118,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,105,110,102,111,0,0,30,100,105,118,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,105,110,102,111,45,45,99,101,110,116,101,114,0,0,22,100,105,118,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,111,112,101,110,0,0,16,100,105,118,46,99,111,111,107,105,101,45,112,111,112,117,112,0,0,29,100,105,118,46,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,45,98,97,110,110,101,114,0,0,19,100,105,118,46,99,111,111,107,105,101,45,114,101,109,105,110,100,101,114,0,0,15,100,105,118,46,99,111,111,107,105,101,45,115,104,111,119,0,0,18,100,105,118,46,99,111,111,107,105,101,45,118,105,115,105,98,108,101,0,0,15,100,105,118,46,99,111,111,107,105,101,45,119,97,114,110,0,0,18,100,105,118,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,0,0,18,100,105,118,46,99,111,111,107,105,101,45,119,114,97,112,112,101,114,0,0,21,100,105,118,46,99,111,111,107,105,101,66,97,99,107,103,97,114,111,117,110,100,0,0,16,100,105,118,46,99,111,111,107,105,101,66,97,110,110,101,114,0,0,13,100,105,118,46,99,111,111,107,105,101,66,97,114,0,0,17,100,105,118,46,99,111,111,107,105,101,67,111,110,115,101,110,116,0,0,20,100,105,118,46,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,0,0,16,100,105,118,46,99,111,111,107,105,101,72,111,108,100,101,114,0,0,14,100,105,118,46,99,111,111,107,105,101,73,110,102,111,0,0,17,100,105,118,46,99,111,111,107,105,101,77,101,115,115,97,103,101,0,0,13,100,105,118,46,99,111,111,107,105,101,77,115,103,0,0,13,100,105,118,46,99,111,111,107,105,101,78,97,118,0,0,16,100,105,118,46,99,111,111,107,105,101,80,111,108,105,99,121,0,0,13,100,105,118,46,99,111,111,107,105,101,80,111,112,0,0,16,100,105,118,46,99,111,111,107,105,101,80,114,111,109,112,116,0,0,22,100,105,118,46,99,111,111,107,105,101,84,101,120,116,115,87,114,97,112,112,101,114,0,0,17,100,105,118,46,99,111,111,107,105,101,95,95,97,108,101,114,116,0,0,20,100,105,118,46,99,111,111,107,105,101,95,95,98,97,99,107,100,114,111,112,0,0,22,100,105,118,46,99,111,111,107,105,101,95,95,99,111,109,112,108,105,97,110,99,101,0,0,22,100,105,118,46,99,111,111,107,105,101,95,95,100,105,115,99,108,97,105,109,101,114,0,0,17,100,105,118,46,99,111,111,107,105,101,95,95,108,97,121,101,114,0,0,18,100,105,118,46,99,111,111,107,105,101,95,95,110,111,116,105,99,101,0,0,17,100,105,118,46,99,111,111,107,105,101,95,95,112,111,112,117,112,0,0,16,100,105,118,46,99,111,111,107,105,101,95,97,103,114,101,101,0,0,21,100,105,118,46,99,111,111,107,105,101,95,97,103,114,101,101,95,119,114,97,112,0,0,16,100,105,118,46,99,111,111,107,105,101,95,97,108,97,114,109,0,0,15,100,105,118,46,99,111,111,107,105,101,95,104,101,97,100,0,0,17,100,105,118,46,99,111,111,107,105,101,95,104,101,97,100,101,114,0,0,14,100,105,118,46,99,111,111,107,105,101,95,109,115,103,0,0,16,100,105,118,46,99,111,111,107,105,101,95,112,111,112,117,112,0,0,15,100,105,118,46,99,111,111,107,105,101,95,116,101,120,116,0,0,18,100,105,118,46,99,111,111,107,105,101,95,118,105,115,105,98,108,101,0,0,20,100,105,118,46,99,111,111,107,105,101,98,97,99,107,103,114,111,117,110,100,0,0,16,100,105,118,46,99,111,111,107,105,101,98,97,110,110,101,114,0,0,13,100,105,118,46,99,111,111,107,105,101,98,97,114,0,0,13,100,105,118,46,99,111,111,107,105,101,98,111,120,0,0,17,100,105,118,46,99,111,111,107,105,101,99,111,110,102,105,114,109,0,0,17,100,105,118,46,99,111,111,107,105,101,99,111,110,115,101,110,116,0,0,16,100,105,118,46,99,111,111,107,105,101,104,111,108,100,101,114,0,0,14,100,105,118,46,99,111,111,107,105,101,104,116,109,108,0,0,16,100,105,118,46,99,111,111,107,105,101,110,111,116,105,99,101,0,0,13,100,105,118,46,99,111,111,107,105,101,112,111,112,0,0,16,100,105,118,46,99,111,111,107,105,101,112,114,111,109,112,116,0,0,20,100,105,118,46,99,111,111,107,105,101,115,45,45,118,105,115,105,98,108,101,0,0,18,100,105,118,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,0,0,16,100,105,118,46,99,111,111,107,105,101,115,45,98,111,100,121,0,0,15,100,105,118,46,99,111,111,107,105,101,115,45,98,116,109,0,0,19,100,105,118,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,0,0,16,100,105,118,46,99,111,111,107,105,101,115,45,99,111,110,116,0,0,17,100,105,118,46,99,111,111,107,105,101,115,45,102,105,120,101,100,0,0,19,100,105,118,46,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,0,0,27,100,105,118,46,99,111,111,107,105,101,115,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,0,0,18,100,105,118,46,99,111,111,107,105,101,115,45,110,111,116,105,99,101,0,0,15,100,105,118,46,99,111,111,107,105,101,115,45,112,97,110,0,0,18,100,105,118,46,99,111,111,107,105,101,115,45,112,97,114,101,110,116,0,0,15,100,105,118,46,99,111,111,107,105,101,115,45,112,111,112,0,0,18,100,105,118,46,99,111,111,107,105,101,115,45,115,112,108,97,115,104,0,0,19,100,105,118,46,99,111,111,107,105,101,115,45,118,105,115,105,98,108,101,0,0,21,100,105,118,46,99,111,111,107,105,101,115,65,99,99,101,112,116,97,110,99,101,0,0,17,100,105,118,46,99,111,111,107,105,101,115,66,97,110,110,101,114,0,0,18,100,105,118,46,99,111,111,107,105,101,115,95,95,97,108,101,114,116,0,0,18,100,105,118,46,99,111,111,107,105,101,115,95,95,102,105,114,115,116,0,0,18,100,105,118,46,99,111,111,107,105,101,115,95,95,111,117,116,101,114,0,0,18,100,105,118,46,99,111,111,107,105,101,115,95,98,97,110,110,101,114,0,0,18,100,105,118,46,99,111,111,107,105,101,115,95,100,101,115,105,103,110,0,0,16,100,105,118,46,99,111,111,107,105,101,115,95,111,112,101,110,0,0,17,100,105,118,46,99,111,111,107,105,101,115,95,112,97,110,101,108,0,0,15,100,105,118,46,99,111,111,107,105,101,115,95,112,111,112,0,0,16,100,105,118,46,99,111,111,107,105,101,115,99,114,101,101,110,0,0,17,100,105,118,46,99,111,111,107,105,101,115,101,99,116,105,111,110,0,0,15,100,105,118,46,99,111,111,107,105,101,115,112,97,99,101,0,0,16,100,105,118,46,99,111,111,107,105,101,115,112,108,97,99,101,0,0,19,100,105,118,46,99,111,111,107,105,101,115,116,97,116,101,109,101,110,116,0,0,17,100,105,118,46,99,111,111,107,105,101,115,119,105,110,100,111,119,0,0,14,100,105,118,46,100,101,118,45,99,111,111,107,105,101,0,0,22,100,105,118,46,100,112,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,20,100,105,118,46,101,100,117,45,109,111,100,97,108,45,99,111,111,107,105,101,0,0,13,100,105,118,46,101,117,45,99,111,111,107,105,101,0,0,14,100,105,118,46,101,117,45,111,118,101,114,108,97,121,0,0,13,100,105,118,46,101,117,95,99,111,111,107,105,101,0,0,13,100,105,118,46,101,117,99,111,110,115,101,110,116,0,0,11,100,105,118,46,101,117,112,111,112,117,112,0,0,16,100,105,118,46,101,122,109,111,98,45,102,111,111,116,101,114,0,0,8,100,105,118,46,103,100,112,114,0,0,15,100,105,118,46,103,100,112,114,45,98,111,116,116,111,109,0,0,16,100,105,118,46,103,100,112,114,45,99,111,110,102,105,114,109,0,0,15,100,105,118,46,103,100,112,114,45,99,111,111,107,105,101,0,0,32,100,105,118,46,103,100,112,114,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,0,0,30,100,105,118,46,103,100,112,114,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,0,0,31,100,105,118,46,103,100,112,114,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,115,101,116,116,105,110,103,115,0,0,21,100,105,118,46,103,100,112,114,45,112,111,112,117,112,45,98,111,114,100,101,114,0,0,13,100,105,118,46,103,100,112,114,45,115,104,111,119,0,0,16,100,105,118,46,103,100,112,114,45,119,114,97,112,112,101,114,0,0,15,100,105,118,46,103,100,112,114,87,114,97,112,112,101,114,0,0,15,100,105,118,46,103,114,105,100,45,99,111,111,107,105,101,0,0,12,100,105,118,46,105,45,99,111,111,107,105,101,0,0,13,100,105,118,46,105,115,45,99,111,111,107,105,101,0,0,14,100,105,118,46,105,115,45,99,111,111,107,105,101,115,0,0,29,100,105,118,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,0,0,18,100,105,118,46,106,115,45,99,111,111,107,105,101,45,110,111,116,101,0,0,27,100,105,118,46,106,115,45,99,111,111,107,105,101,45,110,111,116,101,45,45,111,118,101,114,108,97,121,0,0,22,100,105,118,46,106,115,45,99,111,111,107,105,101,45,116,101,109,112,108,97,116,101,0,0,17,100,105,118,46,106,115,45,100,105,115,99,108,97,105,109,101,114,0,0,17,100,105,118,46,108,97,121,101,114,95,99,111,111,107,105,101,115,0,0,17,100,105,118,46,108,97,121,111,117,116,45,99,111,111,107,105,101,0,0,14,100,105,118,46,108,103,112,100,45,112,111,112,117,112,0,0,16,100,105,118,46,108,103,112,100,45,119,97,114,110,105,110,103,0,0,18,100,105,118,46,109,101,115,115,97,103,101,99,111,111,107,105,101,115,0,0,15,100,105,118,46,109,111,100,95,99,111,111,107,105,101,115,0,0,13,100,105,118,46,109,115,103,67,111,111,107,105,101,0,0,18,100,105,118,46,110,111,116,105,99,101,45,45,99,111,111,107,105,101,0,0,21,100,105,118,46,110,111,116,105,102,105,99,97,116,105,111,110,112,111,112,117,112,0,0,15,100,105,118,46,110,119,109,45,99,111,111,107,105,101,115,0,0,14,100,105,118,46,112,97,103,101,67,111,111,107,105,101,0,0,15,100,105,118,46,112,97,103,101,99,111,111,107,105,101,115,0,0,16,100,105,118,46,112,97,110,101,108,67,111,111,107,105,101,115,0,0,16,100,105,118,46,112,111,112,85,112,67,111,111,107,105,101,115,0,0,16,100,105,118,46,112,111,112,117,112,99,111,111,107,105,101,115,0,0,19,100,105,118,46,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,0,0,16,100,105,118,46,112,114,105,118,97,99,121,45,105,110,102,111,0,0,19,100,105,118,46,112,114,105,118,97,99,121,45,109,101,115,115,97,103,101,0,0,17,100,105,118,46,112,114,105,118,97,99,121,45,109,111,100,97,108,0,0,18,100,105,118,46,112,114,105,118,97,99,121,45,109,111,100,117,108,101,0,0,16,100,105,118,46,112,114,105,118,97,99,121,45,110,111,116,101,0,0,19,100,105,118,46,112,114,105,118,97,99,121,45,111,118,101,114,108,97,121,0,0,18,100,105,118,46,112,114,105,118,97,99,121,45,112,111,108,105,99,101,0,0,27,100,105,118,46,112,114,105,118,97,99,121,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,0,0,19,100,105,118,46,115,101,99,116,105,111,110,45,45,99,111,111,107,105,101,0,0,16,100,105,118,46,115,101,99,116,105,111,110,45,103,100,112,114,0,0,19,100,105,118,46,115,104,111,119,45,99,111,111,107,105,101,45,98,111,120,0,0,23,100,105,118,46,115,104,111,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,22,100,105,118,46,115,104,111,119,45,99,111,111,107,105,101,45,112,111,108,105,99,121,0,0,16,100,105,118,46,115,104,111,119,45,99,111,111,107,105,101,115,0,0,15,100,105,118,46,115,105,116,101,45,99,111,111,107,105,101,0,0,24,100,105,118,46,115,113,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,118,50,0,0,12,100,105,118,46,118,45,99,111,111,107,105,101,0,0,12,100,105,118,46,119,45,99,111,111,107,105,101,0,0,15,100,105,118,46,119,105,116,104,45,99,111,111,107,105,101,0,0,27,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,93,0,0,22,102,111,114,109,46,99,111,111,107,105,101,45,98,97,114,45,45,102,108,117,105,100,0,0,17,102,111,114,109,46,99,111,111,107,105,101,66,97,110,110,101,114,0,0,25,110,97,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,0,0,14,112,46,97,108,101,114,116,45,99,111,111,107,105,101,0,0,31,115,101,99,116,105,111,110,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,0,0,31,115,101,99,116,105,111,110,35,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,0,0,21,115,101,99,116,105,111,110,46,67,111,111,107,105,101,45,110,111,116,105,99,101,0,0,16,115,101,99,116,105,111,110,46,99,45,99,111,111,107,105,101,0,0,23,115,101,99,116,105,111,110,46,99,45,99,111,111,107,105,101,99,111,110,115,101,110,116,0,0,17,115,101,99,116,105,111,110,46,99,45,99,111,111,107,105,101,115,0,0,20,115,101,99,116,105,111,110,46,99,111,111,107,105,101,45,97,108,101,114,116,0,0,21,115,101,99,116,105,111,110,46,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,18,115,101,99,116,105,111,110,46,99,111,111,107,105,101,45,98,97,114,0,0,22,115,101,99,116,105,111,110,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,22,115,101,99,116,105,111,110,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,0,0,20,115,101,99,116,105,111,110,46,99,111,111,107,105,101,45,112,111,112,117,112,0,0,23,115,101,99,116,105,111,110,46,99,111,111,107,105,101,95,95,112,114,105,118,97,99,121,0,0,22,115,101,99,116,105,111,110,46,99,111,111,107,105,101,115,95,98,97,110,110,101,114,0,0,32,100,105,118,46,97,109,103,100,112,114,99,111,111,107,105,101,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,0,0,20,100,105,118,46,97,109,109,111,100,97,108,115,45,111,118,101,114,108,97,121,0,0,23,102,111,111,116,101,114,32,62,32,46,67,111,111,107,105,101,67,111,110,115,101,110,116,0,0,23,104,101,97,100,101,114,32,62,32,46,67,111,111,107,105,101,67,111,110,115,101,110,116,0,0,27,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,118,105,115,105,98,108,101,0,0,31,115,101,99,116,105,111,110,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,118,105,115,105,98,108,101,0,0,21,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,66,111,120,45,34,93,0,0,45,98,111,100,121,46,115,108,105,100,105,110,103,45,112,111,112,117,112,45,112,114,111,99,101,115,115,101,100,32,62,32,35,115,108,105,100,105,110,103,45,112,111,112,117,112,0,0,20,104,101,97,100,101,114,32,62,32,35,110,111,116,105,102,121,45,98,97,114,0,0,36,100,105,118,32,62,32,35,99,110,115,104,91,115,116,121,108,101,61,34,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,34,93,0,0,39,100,105,118,91,115,116,121,108,101,61,34,109,105,110,45,119,105,100,116,104,58,32,55,53,48,112,120,59,34,93,32,62,32,46,103,98,95,119,98,0,0,66,100,105,118,91,115,116,121,108,101,42,61,34,98,111,120,45,115,104,97,100,111,119,58,32,114,103,98,40,49,51,54,44,32,49,51,54,44,32,49,51,54,41,32,48,112,120,32,48,112,120,32,49,50,112,120,59,32,99,111,108,111,114,58,32,34,93,0,0,64,0,0,0,64,84,0,0,32,42,128,0,4,188,143,0,0,0,0,0,0,0,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,10,0,0,0,12,0,0,0,14,0,0,0,14,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,18,0,0,0,18,0,0,0,18,0,0,0,18,0,0,0,18,0,0,0,18,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,26,0,0,0,26,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,30,0,0,0,30,0,0,0,30,0,0,0,32,0,0,0,34,0,0,0,36,0,0,0,36,0,0,0,36,0,0,0,38,0,0,0,40,0,0,0,40,0,0,0,40,0,0,0,42,0,0,0,42,0,0,0,42,0,0,0,42,0,0,0,42,0,0,0,42,0,0,0,44,0,0,0,46,0,0,0,46,0,0,0,48,0,0,0,48,0,0,0,48,0,0,0,50,0,0,0,50,0,0,0,52,0,0,0,52,0,0,0,52,0,0,0,52,0,0,0,52,0,0,0,54,0,0,0,54,0,0,0,56,0,0,0,56,0,0,0,60,0,0,0,60,0,0,0,64,0,0,0,66,0,0,0,68,0,0,0,68,0,0,0,70,0,0,0,72,0,0,0,74,0,0,0,74,0,0,0,74,0,0,0,74,0,0,0,74,0,0,0,76,0,0,0,78,0,0,0,80,0,0,0,82,0,0,0,86,0,0,0,86,0,0,0,86,0,0,0,86,0,0,0,88,0,0,0,90,0,0,0,90,0,0,0,90,0,0,0,94,0,0,0,96,0,0,0,98,0,0,0,98,0,0,0,98,0,0,0,98,0,0,0,102,0,0,0,102,0,0,0,102,0,0,0,102,0,0,0,102,0,0,0,106,0,0,0,108,0,0,0,112,0,0,0,116,0,0,0,120,0,0,0,120,0,0,0,120,0,0,0,122,0,0,0,122,0,0,0,122,0,0,0,126,0,0,0,126,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,130,0,0,0,130,0,0,0,132,0,0,0,134,0,0,0,134,0,0,0,134,0,0,0,134,0,0,0,138,0,0,0,142,0,0,0,144,0,0,0,146,0,0,0,148,0,0,0,148,0,0,0,148,0,0,0,150,0,0,0,150,0,0,0,150,0,0,0,150,0,0,0,152,0,0,0,152,0,0,0,152,0,0,0,154,0,0,0,156,0,0,0,158,0,0,0,160,0,0,0,160,0,0,0,162,0,0,0,162,0,0,0,162,0,0,0,162,0,0,0,164,0,0,0,164,0,0,0,168,0,0,0,168,0,0,0,170,0,0,0,170,0,0,0,170,0,0,0,170,0,0,0,170,0,0,0,170,0,0,0,172,0,0,0,172,0,0,0,172,0,0,0,172,0,0,0,174,0,0,0,174,0,0,0,176,0,0,0,178,0,0,0,178,0,0,0,180,0,0,0,180,0,0,0,182,0,0,0,184,0,0,0,184,0,0,0,184,0,0,0,184,0,0,0,188,0,0,0,188,0,0,0,188,0,0,0,188,0,0,0,188,0,0,0,188,0,0,0,190,0,0,0,190,0,0,0,192,0,0,0,192,0,0,0,192,0,0,0,192,0,0,0,194,0,0,0,196,0,0,0,198,0,0,0,200,0,0,0,202,0,0,0,202,0,0,0,202,0,0,0,202,0,0,0,202,0,0,0,202,0,0,0,202,0,0,0,202,0,0,0,202,0,0,0,206,0,0,0,208,0,0,0,208,0,0,0,208,0,0,0,208,0,0,0,208,0,0,0,208,0,0,0,208,0,0,0,208,0,0,0,212,0,0,0,214,0,0,0,216,0,0,0,218,0,0,0,220,0,0,0,222,0,0,0,222,0,0,0,222,0,0,0,224,0,0,0,226,0,0,0,226,0,0,0,226,0,0,0,226,0,0,0,228,0,0,0,230,0,0,0,230,0,0,0,230,0,0,0,230,0,0,0,232,0,0,0,234,0,0,0,234,0,0,0,236,0,0,0,238,0,0,0,246,0,0,0,246,0,0,0,248,0,0,0,250,0,0,0,252,0,0,0,252,0,0,0,254,0,0,0,2,1,0,0,2,1,0,0,2,1,0,0,2,1,0,0,2,1,0,0,2,1,0,0,2,1,0,0,4,1,0,0,8,1,0,0,8,1,0,0,12,1,0,0,12,1,0,0,12,1,0,0,12,1,0,0,12,1,0,0,12,1,0,0,12,1,0,0,14,1,0,0,14,1,0,0,16,1,0,0,16,1,0,0,16,1,0,0,16,1,0,0,16,1,0,0,20,1,0,0,20,1,0,0,22,1,0,0,22,1,0,0,22,1,0,0,24,1,0,0,24,1,0,0,24,1,0,0,24,1,0,0,24,1,0,0,26,1,0,0,26,1,0,0,26,1,0,0,28,1,0,0,30,1,0,0,30,1,0,0,32,1,0,0,34,1,0,0,34,1,0,0,34,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,38,1,0,0,38,1,0,0,38,1,0,0,38,1,0,0,40,1,0,0,40,1,0,0,40,1,0,0,40,1,0,0,44,1,0,0,44,1,0,0,44,1,0,0,44,1,0,0,46,1,0,0,46,1,0,0,46,1,0,0,46,1,0,0,48,1,0,0,50,1,0,0,54,1,0,0,54,1,0,0,54,1,0,0,56,1,0,0,56,1,0,0,56,1,0,0,56,1,0,0,56,1,0,0,58,1,0,0,58,1,0,0,60,1,0,0,60,1,0,0,60,1,0,0,60,1,0,0,60,1,0,0,60,1,0,0,60,1,0,0,62,1,0,0,66,1,0,0,66,1,0,0,66,1,0,0,66,1,0,0,66,1,0,0,66,1,0,0,68,1,0,0,68,1,0,0,70,1,0,0,70,1,0,0,72,1,0,0,72,1,0,0,74,1,0,0,74,1,0,0,74,1,0,0,76,1,0,0,78,1,0,0,78,1,0,0,78,1,0,0,78,1,0,0,78,1,0,0,80,1,0,0,84,1,0,0,86,1,0,0,88,1,0,0,88,1,0,0,88,1,0,0,88,1,0,0,90,1,0,0,90,1,0,0,90,1,0,0,90,1,0,0,90,1,0,0,98,1,0,0,100,1,0,0,102,1,0,0,102,1,0,0,104,1,0,0,106,1,0,0,106,1,0,0,106,1,0,0,106,1,0,0,108,1,0,0,110,1,0,0,112,1,0,0,116,1,0,0,116,1,0,0,118,1,0,0,118,1,0,0,118,1,0,0,120,1,0,0,120,1,0,0,120,1,0,0,122,1,0,0,122,1,0,0,122,1,0,0,124,1,0,0,124,1,0,0,124,1,0,0,126,1,0,0,126,1,0,0,132,1,0,0,132,1,0,0,132,1,0,0,136,1,0,0,140,1,0,0,140,1,0,0,140,1,0,0,144,1,0,0,144,1,0,0,150,1,0,0,152,1,0,0,152,1,0,0,154,1,0,0,156,1,0,0,158,1,0,0,160,1,0,0,162,1,0,0,162,1,0,0,164,1,0,0,168,1,0,0,170,1,0,0,170,1,0,0,170,1,0,0,170,1,0,0,172,1,0,0,172,1,0,0,174,1,0,0,176,1,0,0,176,1,0,0,176,1,0,0,178,1,0,0,180,1,0,0,184,1,0,0,184,1,0,0,184,1,0,0,186,1,0,0,188,1,0,0,188,1,0,0,192,1,0,0,194,1,0,0,194,1,0,0,196,1,0,0,198,1,0,0,198,1,0,0,198,1,0,0,200,1,0,0,202,1,0,0,202,1,0,0,202,1,0,0,202,1,0,0,202,1,0,0,208,1,0,0,208,1,0,0,208,1,0,0,208,1,0,0,210,1,0,0,210,1,0,0,212,1,0,0,212,1,0,0,214,1,0,0,214,1,0,0,216,1,0,0,216,1,0,0,220,1,0,0,220,1,0,0,220,1,0,0,220,1,0,0,222,1,0,0,222,1,0,0,224,1,0,0,224,1,0,0,224,1,0,0,224,1,0,0,224,1,0,0,224,1,0,0,224,1,0,0,226,1,0,0,226,1,0,0,226,1,0,0,226,1,0,0,230,1,0,0,234,1,0,0,234,1,0,0,234,1,0,0,234,1,0,0,236,1,0,0,236,1,0,0,236,1,0,0,238,1,0,0,240,1,0,0,240,1,0,0,240,1,0,0,240,1,0,0,240,1,0,0,246,1,0,0,246,1,0,0,246,1,0,0,248,1,0,0,248,1,0,0,250,1,0,0,250,1,0,0,250,1,0,0,250,1,0,0,250,1,0,0,252,1,0,0,252,1,0,0,252,1,0,0,254,1,0,0,254,1,0,0,254,1,0,0,254,1,0,0,0,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,2,2,0,0,6,2,0,0,6,2,0,0,10,2,0,0,10,2,0,0,12,2,0,0,12,2,0,0,12,2,0,0,16,2,0,0,18,2,0,0,18,2,0,0,18,2,0,0,22,2,0,0,24,2,0,0,26,2,0,0,26,2,0,0,30,2,0,0,30,2,0,0,30,2,0,0,34,2,0,0,36,2,0,0,40,2,0,0,40,2,0,0,42,2,0,0,42,2,0,0,42,2,0,0,42,2,0,0,42,2,0,0,42,2,0,0,42,2,0,0,44,2,0,0,46,2,0,0,46,2,0,0,46,2,0,0,46,2,0,0,46,2,0,0,48,2,0,0,50,2,0,0,50,2,0,0,52,2,0,0,52,2,0,0,52,2,0,0,52,2,0,0,52,2,0,0,52,2,0,0,54,2,0,0,56,2,0,0,56,2,0,0,58,2,0,0,58,2,0,0,58,2,0,0,58,2,0,0,58,2,0,0,64,2,0,0,66,2,0,0,66,2,0,0,66,2,0,0,66,2,0,0,66,2,0,0,66,2,0,0,66,2,0,0,66,2,0,0,68,2,0,0,68,2,0,0,70,2,0,0,70,2,0,0,70,2,0,0,70,2,0,0,72,2,0,0,72,2,0,0,72,2,0,0,72,2,0,0,72,2,0,0,72,2,0,0,72,2,0,0,72,2,0,0,72,2,0,0,72,2,0,0,72,2,0,0,72,2,0,0,74,2,0,0,74,2,0,0,74,2,0,0,76,2,0,0,76,2,0,0,78,2,0,0,82,2,0,0,82,2,0,0,84,2,0,0,86,2,0,0,88,2,0,0,88,2,0,0,88,2,0,0,88,2,0,0,88,2,0,0,90,2,0,0,90,2,0,0,92,2,0,0,94,2,0,0,94,2,0,0,96,2,0,0,96,2,0,0,98,2,0,0,98,2,0,0,98,2,0,0,98,2,0,0,98,2,0,0,98,2,0,0,100,2,0,0,100,2,0,0,100,2,0,0,100,2,0,0,102,2,0,0,104,2,0,0,104,2,0,0,104,2,0,0,106,2,0,0,110,2,0,0,112,2,0,0,112,2,0,0,114,2,0,0,114,2,0,0,114,2,0,0,114,2,0,0,116,2,0,0,116,2,0,0,116,2,0,0,118,2,0,0,118,2,0,0,118,2,0,0,124,2,0,0,124,2,0,0,126,2,0,0,126,2,0,0,126,2,0,0,128,2,0,0,128,2,0,0,128,2,0,0,132,2,0,0,134,2,0,0,138,2,0,0,138,2,0,0,138,2,0,0,138,2,0,0,138,2,0,0,140,2,0,0,140,2,0,0,144,2,0,0,146,2,0,0,146,2,0,0,150,2,0,0,152,2,0,0,156,2,0,0,158,2,0,0,158,2,0,0,158,2,0,0,158,2,0,0,162,2,0,0,162,2,0,0,162,2,0,0,164,2,0,0,164,2,0,0,164,2,0,0,164,2,0,0,168,2,0,0,168,2,0,0,168,2,0,0,168,2,0,0,168,2,0,0,168,2,0,0,168,2,0,0,170,2,0,0,170,2,0,0,170,2,0,0,170,2,0,0,176,2,0,0,178,2,0,0,178,2,0,0,180,2,0,0,180,2,0,0,182,2,0,0,182,2,0,0,184,2,0,0,188,2,0,0,192,2,0,0,196,2,0,0,196,2,0,0,196,2,0,0,198,2,0,0,198,2,0,0,202,2,0,0,204,2,0,0,204,2,0,0,204,2,0,0,204,2,0,0,206,2,0,0,208,2,0,0,210,2,0,0,212,2,0,0,214,2,0,0,214,2,0,0,214,2,0,0,216,2,0,0,220,2,0,0,220,2,0,0,220,2,0,0,220,2,0,0,222,2,0,0,224,2,0,0,224,2,0,0,224,2,0,0,224,2,0,0,224,2,0,0,226,2,0,0,228,2,0,0,232,2,0,0,232,2,0,0,234,2,0,0,234,2,0,0,234,2,0,0,238,2,0,0,238,2,0,0,238,2,0,0,238,2,0,0,238,2,0,0,238,2,0,0,240,2,0,0,242,2,0,0,242,2,0,0,242,2,0,0,244,2,0,0,244,2,0,0,244,2,0,0,248,2,0,0,248,2,0,0,248,2,0,0,248,2,0,0,248,2,0,0,248,2,0,0,250,2,0,0,250,2,0,0,250,2,0,0,250,2,0,0,250,2,0,0,252,2,0,0,0,3,0,0,0,3,0,0,2,3,0,0,4,3,0,0,4,3,0,0,6,3,0,0,6,3,0,0,6,3,0,0,8,3,0,0,10,3,0,0,12,3,0,0,12,3,0,0,12,3,0,0,12,3,0,0,12,3,0,0,12,3,0,0,14,3,0,0,16,3,0,0,18,3,0,0,22,3,0,0,26,3,0,0,28,3,0,0,28,3,0,0,28,3,0,0,30,3,0,0,32,3,0,0,34,3,0,0,36,3,0,0,36,3,0,0,38,3,0,0,38,3,0,0,40,3,0,0,40,3,0,0,44,3,0,0,46,3,0,0,46,3,0,0,46,3,0,0,46,3,0,0,48,3,0,0,50,3,0,0,54,3,0,0,56,3,0,0,58,3,0,0,60,3,0,0,60,3,0,0,64,3,0,0,68,3,0,0,70,3,0,0,70,3,0,0,70,3,0,0,70,3,0,0,70,3,0,0,70,3,0,0,70,3,0,0,72,3,0,0,72,3,0,0,76,3,0,0,78,3,0,0,82,3,0,0,84,3,0,0,84,3,0,0,86,3,0,0,86,3,0,0,88,3,0,0,88,3,0,0,88,3,0,0,88,3,0,0,88,3,0,0,88,3,0,0,88,3,0,0,90,3,0,0,90,3,0,0,90,3,0,0,90,3,0,0,90,3,0,0,90,3,0,0,92,3,0,0,98,3,0,0,104,3,0,0,106,3,0,0,106,3,0,0,110,3,0,0,112,3,0,0,114,3,0,0,116,3,0,0,116,3,0,0,120,3,0,0,120,3,0,0,122,3,0,0,124,3,0,0,124,3,0,0,124,3,0,0,126,3,0,0,126,3,0,0,126,3,0,0,128,3,0,0,128,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,132,3,0,0,134,3,0,0,134,3,0,0,134,3,0,0,134,3,0,0,134,3,0,0,134,3,0,0,134,3,0,0,134,3,0,0,136,3,0,0,138,3,0,0,138,3,0,0,140,3,0,0,140,3,0,0,140,3,0,0,144,3,0,0,146,3,0,0,146,3,0,0,146,3,0,0,146,3,0,0,146,3,0,0,146,3,0,0,148,3,0,0,148,3,0,0,148,3,0,0,148,3,0,0,150,3,0,0,154,3,0,0,154,3,0,0,156,3,0,0,158,3,0,0,158,3,0,0,158,3,0,0,158,3,0,0,158,3,0,0,160,3,0,0,162,3,0,0,162,3,0,0,162,3,0,0,164,3,0,0,164,3,0,0,164,3,0,0,164,3,0,0,164,3,0,0,164,3,0,0,164,3,0,0,166,3,0,0,170,3,0,0,176,3,0,0,178,3,0,0,178,3,0,0,178,3,0,0,178,3,0,0,180,3,0,0,180,3,0,0,182,3,0,0,182,3,0,0,186,3,0,0,188,3,0,0,188,3,0,0,190,3,0,0,190,3,0,0,190,3,0,0,190,3,0,0,190,3,0,0,190,3,0,0,190,3,0,0,192,3,0,0,194,3,0,0,196,3,0,0,196,3,0,0,196,3,0,0,200,3,0,0,200,3,0,0,200,3,0,0,202,3,0,0,202,3,0,0,204,3,0,0,206,3,0,0,206,3,0,0,208,3,0,0,208,3,0,0,208,3,0,0,212,3,0,0,214,3,0,0,214,3,0,0,214,3,0,0,216,3,0,0,216,3,0,0,216,3,0,0,218,3,0,0,218,3,0,0,218,3,0,0,218,3,0,0,218,3,0,0,218,3,0,0,218,3,0,0,218,3,0,0,218,3,0,0,218,3,0,0,218,3,0,0,222,3,0,0,222,3,0,0,222,3,0,0,226,3,0,0,228,3,0,0,228,3,0,0,228,3,0,0,230,3,0,0,230,3,0,0,230,3,0,0,230,3,0,0,230,3,0,0,230,3,0,0,230,3,0,0,232,3,0,0,236,3,0,0,238,3,0,0,238,3,0,0,238,3,0,0,240,3,0,0,242,3,0,0,244,3,0,0,246,3,0,0,246,3,0,0,246,3,0,0,248,3,0,0,248,3,0,0,248,3,0,0,248,3,0,0,248,3,0,0,248,3,0,0,248,3,0,0,250,3,0,0,254,3,0,0,254,3,0,0,0,4,0,0,0,4,0,0,2,4,0,0,2,4,0,0,2,4,0,0,2,4,0,0,2,4,0,0,4,4,0,0,4,4,0,0,4,4,0,0,4,4,0,0,4,4,0,0,8,4,0,0,12,4,0,0,12,4,0,0,12,4,0,0,12,4,0,0,12,4,0,0,12,4,0,0,12,4,0,0,14,4,0,0,14,4,0,0,16,4,0,0,16,4,0,0,16,4,0,0,16,4,0,0,16,4,0,0,18,4,0,0,18,4,0,0,18,4,0,0,20,4,0,0,22,4,0,0,22,4,0,0,22,4,0,0,22,4,0,0,22,4,0,0,22,4,0,0,22,4,0,0,24,4,0,0,28,4,0,0,30,4,0,0,30,4,0,0,32,4,0,0,34,4,0,0,36,4,0,0,36,4,0,0,38,4,0,0,40,4,0,0,42,4,0,0,42,4,0,0,44,4,0,0,46,4,0,0,46,4,0,0,50,4,0,0,52,4,0,0,52,4,0,0,56,4,0,0,56,4,0,0,56,4,0,0,60,4,0,0,64,4,0,0,66,4,0,0,68,4,0,0,68,4,0,0,68,4,0,0,68,4,0,0,68,4,0,0,70,4,0,0,70,4,0,0,70,4,0,0,72,4,0,0,74,4,0,0,80,4,0,0,80,4,0,0,80,4,0,0,80,4,0,0,80,4,0,0,80,4,0,0,80,4,0,0,82,4,0,0,82,4,0,0,82,4,0,0,82,4,0,0,82,4,0,0,84,4,0,0,84,4,0,0,84,4,0,0,84,4,0,0,84,4,0,0,88,4,0,0,88,4,0,0,90,4,0,0,94,4,0,0,94,4,0,0,96,4,0,0,96,4,0,0,96,4,0,0,98,4,0,0,98,4,0,0,100,4,0,0,100,4,0,0,100,4,0,0,100,4,0,0,100,4,0,0,100,4,0,0,102,4,0,0,102,4,0,0,102,4,0,0,102,4,0,0,102,4,0,0,104,4,0,0,104,4,0,0,106,4,0,0,106,4,0,0,106,4,0,0,108,4,0,0,112,4,0,0,112,4,0,0,112,4,0,0,112,4,0,0,112,4,0,0,114,4,0,0,114,4,0,0,114,4,0,0,114,4,0,0,114,4,0,0,114,4,0,0,116,4,0,0,116,4,0,0,116,4,0,0,116,4,0,0,120,4,0,0,120,4,0,0,120,4,0,0,122,4,0,0,124,4,0,0,136,4,0,0,138,4,0,0,138,4,0,0,138,4,0,0,140,4,0,0,142,4,0,0,144,4,0,0,146,4,0,0,146,4,0,0,148,4,0,0,148,4,0,0,148,4,0,0,148,4,0,0,150,4,0,0,152,4,0,0,152,4,0,0,154,4,0,0,156,4,0,0,156,4,0,0,162,4,0,0,162,4,0,0,164,4,0,0,166,4,0,0,166,4,0,0,168,4,0,0,168,4,0,0,168,4,0,0,168,4,0,0,170,4,0,0,170,4,0,0,170,4,0,0,170,4,0,0,170,4,0,0,170,4,0,0,170,4,0,0,170,4,0,0,170,4,0,0,174,4,0,0,178,4,0,0,178,4,0,0,182,4,0,0,182,4,0,0,182,4,0,0,182,4,0,0,182,4,0,0,186,4,0,0,186,4,0,0,190,4,0,0,190,4,0,0,190,4,0,0,190,4,0,0,190,4,0,0,190,4,0,0,190,4,0,0,190,4,0,0,192,4,0,0,194,4,0,0,196,4,0,0,198,4,0,0,198,4,0,0,200,4,0,0,200,4,0,0,202,4,0,0,206,4,0,0,206,4,0,0,206,4,0,0,206,4,0,0,208,4,0,0,208,4,0,0,208,4,0,0,208,4,0,0,208,4,0,0,208,4,0,0,210,4,0,0,210,4,0,0,210,4,0,0,210,4,0,0,212,4,0,0,212,4,0,0,212,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,216,4,0,0,216,4,0,0,218,4,0,0,218,4,0,0,218,4,0,0,218,4,0,0,218,4,0,0,218,4,0,0,218,4,0,0,218,4,0,0,218,4,0,0,218,4,0,0,218,4,0,0,218,4,0,0,224,4,0,0,228,4,0,0,230,4,0,0,230,4,0,0,234,4,0,0,236,4,0,0,240,4,0,0,240,4,0,0,240,4,0,0,240,4,0,0,244,4,0,0,244,4,0,0,244,4,0,0,244,4,0,0,244,4,0,0,248,4,0,0,248,4,0,0,250,4,0,0,250,4,0,0,252,4,0,0,252,4,0,0,254,4,0,0,4,5,0,0,4,5,0,0,4,5,0,0,4,5,0,0,4,5,0,0,6,5,0,0,6,5,0,0,8,5,0,0,12,5,0,0,12,5,0,0,14,5,0,0,14,5,0,0,14,5,0,0,16,5,0,0,16,5,0,0,16,5,0,0,16,5,0,0,18,5,0,0,18,5,0,0,20,5,0,0,22,5,0,0,26,5,0,0,26,5,0,0,26,5,0,0,26,5,0,0,26,5,0,0,26,5,0,0,28,5,0,0,28,5,0,0,28,5,0,0,28,5,0,0,28,5,0,0,28,5,0,0,30,5,0,0,30,5,0,0,30,5,0,0,30,5,0,0,30,5,0,0,30,5,0,0,30,5,0,0,30,5,0,0,30,5,0,0,32,5,0,0,34,5,0,0,34,5,0,0,34,5,0,0,34,5,0,0,36,5,0,0,36,5,0,0,36,5,0,0,36,5,0,0,38,5,0,0,38,5,0,0,38,5,0,0,38,5,0,0,40,5,0,0,40,5,0,0,44,5,0,0,44,5,0,0,44,5,0,0,46,5,0,0,46,5,0,0,46,5,0,0,46,5,0,0,46,5,0,0,46,5,0,0,48,5,0,0,54,5,0,0,54,5,0,0,54,5,0,0,56,5,0,0,56,5,0,0,58,5,0,0,58,5,0,0,60,5,0,0,60,5,0,0,62,5,0,0,62,5,0,0,62,5,0,0,62,5,0,0,64,5,0,0,64,5,0,0,64,5,0,0,64,5,0,0,64,5,0,0,68,5,0,0,72,5,0,0,74,5,0,0,74,5,0,0,74,5,0,0,74,5,0,0,76,5,0,0,80,5,0,0,80,5,0,0,80,5,0,0,80,5,0,0,82,5,0,0,82,5,0,0,82,5,0,0,84,5,0,0,84,5,0,0,94,5,0,0,94,5,0,0,96,5,0,0,96,5,0,0,96,5,0,0,96,5,0,0,96,5,0,0,100,5,0,0,102,5,0,0,108,5,0,0,108,5,0,0,110,5,0,0,112,5,0,0,112,5,0,0,112,5,0,0,112,5,0,0,112,5,0,0,114,5,0,0,114,5,0,0,116,5,0,0,116,5,0,0,118,5,0,0,118,5,0,0,118,5,0,0,122,5,0,0,122,5,0,0,122,5,0,0,124,5,0,0,126,5,0,0,126,5,0,0,126,5,0,0,130,5,0,0,130,5,0,0,130,5,0,0,132,5,0,0,132,5,0,0,134,5,0,0,136,5,0,0,138,5,0,0,138,5,0,0,140,5,0,0,140,5,0,0,142,5,0,0,142,5,0,0,142,5,0,0,144,5,0,0,144,5,0,0,146,5,0,0,146,5,0,0,146,5,0,0,146,5,0,0,146,5,0,0,150,5,0,0,150,5,0,0,150,5,0,0,150,5,0,0,150,5,0,0,150,5,0,0,150,5,0,0,152,5,0,0,154,5,0,0,156,5,0,0,158,5,0,0,158,5,0,0,162,5,0,0,166,5,0,0,168,5,0,0,168,5,0,0,170,5,0,0,170,5,0,0,170,5,0,0,172,5,0,0,176,5,0,0,180,5,0,0,182,5,0,0,182,5,0,0,182,5,0,0,184,5,0,0,186,5,0,0,188,5,0,0,192,5,0,0,194,5,0,0,194,5,0,0,194,5,0,0,194,5,0,0,194,5,0,0,196,5,0,0,198,5,0,0,200,5,0,0,200,5,0,0,200,5,0,0,200,5,0,0,200,5,0,0,200,5,0,0,200,5,0,0,200,5,0,0,200,5,0,0,200,5,0,0,200,5,0,0,202,5,0,0,202,5,0,0,202,5,0,0,204,5,0,0,204,5,0,0,208,5,0,0,208,5,0,0,208,5,0,0,210,5,0,0,210,5,0,0,210,5,0,0,210,5,0,0,210,5,0,0,212,5,0,0,212,5,0,0,212,5,0,0,216,5,0,0,216,5,0,0,216,5,0,0,216,5,0,0,216,5,0,0,222,5,0,0,222,5,0,0,222,5,0,0,224,5,0,0,224,5,0,0,226,5,0,0,226,5,0,0,226,5,0,0,228,5,0,0,230,5,0,0,236,5,0,0,240,5,0,0,240,5,0,0,240,5,0,0,240,5,0,0,240,5,0,0,242,5,0,0,242,5,0,0,242,5,0,0,242,5,0,0,244,5,0,0,244,5,0,0,246,5,0,0,248,5,0,0,248,5,0,0,248,5,0,0,248,5,0,0,248,5,0,0,248,5,0,0,248,5,0,0,248,5,0,0,250,5,0,0,250,5,0,0,250,5,0,0,252,5,0,0,252,5,0,0,252,5,0,0,252,5,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,4,6,0,0,4,6,0,0,4,6,0,0,4,6,0,0,4,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,10,6,0,0,10,6,0,0,10,6,0,0,10,6,0,0,10,6,0,0,10,6,0,0,10,6,0,0,10,6,0,0,10,6,0,0,10,6,0,0,14,6,0,0,16,6,0,0,16,6,0,0,18,6,0,0,24,6,0,0,24,6,0,0,24,6,0,0,24,6,0,0,28,6,0,0,30,6,0,0,30,6,0,0,32,6,0,0,32,6,0,0,32,6,0,0,34,6,0,0,36,6,0,0,36,6,0,0,36,6,0,0,38,6,0,0,38,6,0,0,40,6,0,0,42,6,0,0,42,6,0,0,42,6,0,0,46,6,0,0,46,6,0,0,48,6,0,0,48,6,0,0,48,6,0,0,48,6,0,0,48,6,0,0,52,6,0,0,54,6,0,0,54,6,0,0,54,6,0,0,58,6,0,0,62,6,0,0,64,6,0,0,64,6,0,0,64,6,0,0,68,6,0,0,68,6,0,0,68,6,0,0,70,6,0,0,70,6,0,0,72,6,0,0,74,6,0,0,74,6,0,0,74,6,0,0,76,6,0,0,78,6,0,0,78,6,0,0,80,6,0,0,82,6,0,0,82,6,0,0,84,6,0,0,84,6,0,0,84,6,0,0,90,6,0,0,94,6,0,0,98,6,0,0,98,6,0,0,98,6,0,0,100,6,0,0,102,6,0,0,104,6,0,0,104,6,0,0,104,6,0,0,104,6,0,0,104,6,0,0,104,6,0,0,104,6,0,0,104,6,0,0,106,6,0,0,106,6,0,0,108,6,0,0,108,6,0,0,108,6,0,0,108,6,0,0,108,6,0,0,112,6,0,0,114,6,0,0,116,6,0,0,116,6,0,0,120,6,0,0,122,6,0,0,132,6,0,0,132,6,0,0,134,6,0,0,140,6,0,0,142,6,0,0,142,6,0,0,142,6,0,0,144,6,0,0,146,6,0,0,146,6,0,0,148,6,0,0,152,6,0,0,154,6,0,0,154,6,0,0,156,6,0,0,158,6,0,0,162,6,0,0,162,6,0,0,162,6,0,0,162,6,0,0,162,6,0,0,162,6,0,0,164,6,0,0,164,6,0,0,166,6,0,0,166,6,0,0,168,6,0,0,170,6,0,0,170,6,0,0,170,6,0,0,174,6,0,0,174,6,0,0,174,6,0,0,178,6,0,0,178,6,0,0,180,6,0,0,182,6,0,0,182,6,0,0,182,6,0,0,182,6,0,0,182,6,0,0,182,6,0,0,182,6,0,0,182,6,0,0,182,6,0,0,186,6,0,0,188,6,0,0,190,6,0,0,190,6,0,0,192,6,0,0,192,6,0,0,194,6,0,0,194,6,0,0,194,6,0,0,196,6,0,0,196,6,0,0,196,6,0,0,200,6,0,0,200,6,0,0,200,6,0,0,204,6,0,0,204,6,0,0,204,6,0,0,204,6,0,0,204,6,0,0,204,6,0,0,204,6,0,0,206,6,0,0,208,6,0,0,208,6,0,0,208,6,0,0,208,6,0,0,212,6,0,0,212,6,0,0,212,6,0,0,216,6,0,0,218,6,0,0,220,6,0,0,222,6,0,0,222,6,0,0,222,6,0,0,222,6,0,0,222,6,0,0,222,6,0,0,226,6,0,0,226,6,0,0,228,6,0,0,230,6,0,0,232,6,0,0,232,6,0,0,232,6,0,0,232,6,0,0,232,6,0,0,236,6,0,0,236,6,0,0,236,6,0,0,238,6,0,0,240,6,0,0,240,6,0,0,242,6,0,0,242,6,0,0,244,6,0,0,244,6,0,0,244,6,0,0,244,6,0,0,244,6,0,0,246,6,0,0,246,6,0,0,246,6,0,0,250,6,0,0,254,6,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,2,7,0,0,2,7,0,0,2,7,0,0,2,7,0,0,2,7,0,0,2,7,0,0,4,7,0,0,4,7,0,0,6,7,0,0,8,7,0,0,10,7,0,0,10,7,0,0,10,7,0,0,10,7,0,0,12,7,0,0,12,7,0,0,12,7,0,0,14,7,0,0,14,7,0,0,14,7,0,0,14,7,0,0,14,7,0,0,14,7,0,0,16,7,0,0,18,7,0,0,18,7,0,0,22,7,0,0,22,7,0,0,24,7,0,0,24,7,0,0,24,7,0,0,24,7,0,0,26,7,0,0,26,7,0,0,26,7,0,0,26,7,0,0,28,7,0,0,28,7,0,0,28,7,0,0,30,7,0,0,30,7,0,0,30,7,0,0,30,7,0,0,32,7,0,0,34,7,0,0,34,7,0,0,34,7,0,0,34,7,0,0,34,7,0,0,38,7,0,0,40,7,0,0,40,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,46,7,0,0,46,7,0,0,46,7,0,0,48,7,0,0,50,7,0,0,50,7,0,0,50,7,0,0,52,7,0,0,52,7,0,0,54,7,0,0,56,7,0,0,58,7,0,0,58,7,0,0,58,7,0,0,58,7,0,0,58,7,0,0,60,7,0,0,60,7,0,0,62,7,0,0,62,7,0,0,62,7,0,0,64,7,0,0,66,7,0,0,70,7,0,0,72,7,0,0,78,7,0,0,78,7,0,0,78,7,0,0,78,7,0,0,80,7,0,0,80,7,0,0,80,7,0,0,82,7,0,0,84,7,0,0,84,7,0,0,84,7,0,0,88,7,0,0,90,7,0,0,92,7,0,0,94,7,0,0,94,7,0,0,96,7,0,0,96,7,0,0,96,7,0,0,96,7,0,0,98,7,0,0,98,7,0,0,98,7,0,0,98,7,0,0,100,7,0,0,100,7,0,0,102,7,0,0,106,7,0,0,108,7,0,0,112,7,0,0,112,7,0,0,114,7,0,0,118,7,0,0,118,7,0,0,120,7,0,0,122,7,0,0,122,7,0,0,124,7,0,0,124,7,0,0,124,7,0,0,124,7,0,0,124,7,0,0,124,7,0,0,124,7,0,0,124,7,0,0,124,7,0,0,126,7,0,0,128,7,0,0,128,7,0,0,132,7,0,0,136,7,0,0,136,7,0,0,138,7,0,0,138,7,0,0,138,7,0,0,138,7,0,0,138,7,0,0,138,7,0,0,140,7,0,0,140,7,0,0,140,7,0,0,142,7,0,0,142,7,0,0,144,7,0,0,144,7,0,0,144,7,0,0,144,7,0,0,146,7,0,0,146,7,0,0,148,7,0,0,148,7,0,0,148,7,0,0,150,7,0,0,152,7,0,0,152,7,0,0,152,7,0,0,154,7,0,0,154,7,0,0,154,7,0,0,154,7,0,0,154,7,0,0,154,7,0,0,154,7,0,0,154,7,0,0,154,7,0,0,154,7,0,0,154,7,0,0,156,7,0,0,158,7,0,0,160,7,0,0,160,7,0,0,160,7,0,0,162,7,0,0,164,7,0,0,164,7,0,0,168,7,0,0,168,7,0,0,168,7,0,0,168,7,0,0,168,7,0,0,170,7,0,0,170,7,0,0,170,7,0,0,170,7,0,0,170,7,0,0,170,7,0,0,174,7,0,0,174,7,0,0,176,7,0,0,176,7,0,0,178,7,0,0,178,7,0,0,178,7,0,0,182,7,0,0,182,7,0,0,184,7,0,0,186,7,0,0,186,7,0,0,186,7,0,0,188,7,0,0,190,7,0,0,190,7,0,0,192,7,0,0,192,7,0,0,194,7,0,0,194,7,0,0,202,7,0,0,202,7,0,0,202,7,0,0,204,7,0,0,204,7,0,0,204,7,0,0,208,7,0,0,208,7,0,0,208,7,0,0,208,7,0,0,208,7,0,0,210,7,0,0,214,7,0,0,214,7,0,0,218,7,0,0,220,7,0,0,224,7,0,0,224,7,0,0,226,7,0,0,228,7,0,0,230,7,0,0,232,7,0,0,232,7,0,0,232,7,0,0,236,7,0,0,236,7,0,0,236,7,0,0,236,7,0,0,238,7,0,0,238,7,0,0,238,7,0,0,238,7,0,0,240,7,0,0,244,7,0,0,244,7,0,0,244,7,0,0,250,7,0,0,252,7,0,0,2,8,0,0,6,8,0,0,8,8,0,0,8,8,0,0,8,8,0,0,8,8,0,0,8,8,0,0,12,8,0,0,12,8,0,0,12,8,0,0,12,8,0,0,16,8,0,0,16,8,0,0,16,8,0,0,16,8,0,0,16,8,0,0,18,8,0,0,20,8,0,0,20,8,0,0,22,8,0,0,24,8,0,0,26,8,0,0,26,8,0,0,26,8,0,0,26,8,0,0,28,8,0,0,30,8,0,0,32,8,0,0,32,8,0,0,32,8,0,0,34,8,0,0,34,8,0,0,34,8,0,0,34,8,0,0,36,8,0,0,36,8,0,0,40,8,0,0,40,8,0,0,42,8,0,0,48,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,54,8,0,0,58,8,0,0,60,8,0,0,60,8,0,0,60,8,0,0,60,8,0,0,60,8,0,0,60,8,0,0,62,8,0,0,66,8,0,0,66,8,0,0,66,8,0,0,68,8,0,0,68,8,0,0,74,8,0,0,74,8,0,0,76,8,0,0,76,8,0,0,76,8,0,0,78,8,0,0,82,8,0,0,84,8,0,0,86,8,0,0,86,8,0,0,86,8,0,0,86,8,0,0,86,8,0,0,86,8,0,0,88,8,0,0,90,8,0,0,90,8,0,0,90,8,0,0,90,8,0,0,90,8,0,0,90,8,0,0,92,8,0,0,94,8,0,0,96,8,0,0,96,8,0,0,98,8,0,0,100,8,0,0,100,8,0,0,100,8,0,0,100,8,0,0,100,8,0,0,102,8,0,0,102,8,0,0,104,8,0,0,104,8,0,0,104,8,0,0,106,8,0,0,110,8,0,0,110,8,0,0,110,8,0,0,112,8,0,0,112,8,0,0,114,8,0,0,116,8,0,0,118,8,0,0,118,8,0,0,120,8,0,0,120,8,0,0,120,8,0,0,120,8,0,0,120,8,0,0,122,8,0,0,126,8,0,0,126,8,0,0,126,8,0,0,126,8,0,0,126,8,0,0,126,8,0,0,126,8,0,0,128,8,0,0,128,8,0,0,128,8,0,0,128,8,0,0,128,8,0,0,132,8,0,0,132,8,0,0,142,8,0,0,142,8,0,0,144,8,0,0,146,8,0,0,148,8,0,0,152,8,0,0,158,8,0,0,158,8,0,0,158,8,0,0,158,8,0,0,158,8,0,0,158,8,0,0,158,8,0,0,158,8,0,0,158,8,0,0,160,8,0,0,160,8,0,0,160,8,0,0,160,8,0,0,164,8,0,0,164,8,0,0,166,8,0,0,168,8,0,0,168,8,0,0,170,8,0,0,170,8,0,0,174,8,0,0,174,8,0,0,174,8,0,0,176,8,0,0,176,8,0,0,176,8,0,0,176,8,0,0,180,8,0,0,180,8,0,0,182,8,0,0,182,8,0,0,184,8,0,0,186,8,0,0,188,8,0,0,188,8,0,0,188,8,0,0,190,8,0,0,190,8,0,0,190,8,0,0,192,8,0,0,194,8,0,0,194,8,0,0,194,8,0,0,194,8,0,0,194,8,0,0,194,8,0,0,196,8,0,0,198,8,0,0,202,8,0,0,202,8,0,0,204,8,0,0,204,8,0,0,204,8,0,0,204,8,0,0,204,8,0,0,206,8,0,0,210,8,0,0,210,8,0,0,212,8,0,0,214,8,0,0,214,8,0,0,216,8,0,0,216,8,0,0,216,8,0,0,216,8,0,0,216,8,0,0,216,8,0,0,220,8,0,0,224,8,0,0,226,8,0,0,228,8,0,0,228,8,0,0,230,8,0,0,232,8,0,0,232,8,0,0,236,8,0,0,238,8,0,0,238,8,0,0,238,8,0,0,240,8,0,0,242,8,0,0,242,8,0,0,242,8,0,0,244,8,0,0,244,8,0,0,244,8,0,0,246,8,0,0,246,8,0,0,246,8,0,0,246,8,0,0,248,8,0,0,252,8,0,0,252,8,0,0,254,8,0,0,0,9,0,0,0,9,0,0,0,9,0,0,2,9,0,0,6,9,0,0,6,9,0,0,10,9,0,0,12,9,0,0,12,9,0,0,12,9,0,0,12,9,0,0,12,9,0,0,12,9,0,0,12,9,0,0,14,9,0,0,14,9,0,0,14,9,0,0,14,9,0,0,16,9,0,0,16,9,0,0,16,9,0,0,18,9,0,0,18,9,0,0,20,9,0,0,20,9,0,0,20,9,0,0,20,9,0,0,20,9,0,0,24,9,0,0,26,9,0,0,28,9,0,0,32,9,0,0,32,9,0,0,32,9,0,0,34,9,0,0,36,9,0,0,38,9,0,0,38,9,0,0,38,9,0,0,40,9,0,0,42,9,0,0,42,9,0,0,46,9,0,0,46,9,0,0,50,9,0,0,58,9,0,0,58,9,0,0,60,9,0,0,60,9,0,0,60,9,0,0,60,9,0,0,62,9,0,0,62,9,0,0,64,9,0,0,66,9,0,0,66,9,0,0,68,9,0,0,68,9,0,0,72,9,0,0,72,9,0,0,72,9,0,0,76,9,0,0,78,9,0,0,78,9,0,0,80,9,0,0,82,9,0,0,84,9,0,0,84,9,0,0,86,9,0,0,86,9,0,0,88,9,0,0,88,9,0,0,90,9,0,0,94,9,0,0,96,9,0,0,96,9,0,0,96,9,0,0,96,9,0,0,98,9,0,0,100,9,0,0,102,9,0,0,104,9,0,0,104,9,0,0,104,9,0,0,106,9,0,0,106,9,0,0,106,9,0,0,106,9,0,0,106,9,0,0,110,9,0,0,110,9,0,0,110,9,0,0,110,9,0,0,112,9,0,0,114,9,0,0,116,9,0,0,116,9,0,0,118,9,0,0,118,9,0,0,118,9,0,0,118,9,0,0,120,9,0,0,120,9,0,0,122,9,0,0,122,9,0,0,124,9,0,0,126,9,0,0,126,9,0,0,128,9,0,0,128,9,0,0,128,9,0,0,128,9,0,0,128,9,0,0,128,9,0,0,128,9,0,0,130,9,0,0,130,9,0,0,130,9,0,0,132,9,0,0,136,9,0,0,138,9,0,0,138,9,0,0,142,9,0,0,150,9,0,0,150,9,0,0,152,9,0,0,152,9,0,0,154,9,0,0,156,9,0,0,156,9,0,0,158,9,0,0,160,9,0,0,160,9,0,0,162,9,0,0,162,9,0,0,162,9,0,0,166,9,0,0,168,9,0,0,168,9,0,0,170,9,0,0,172,9,0,0,172,9,0,0,174,9,0,0,174,9,0,0,174,9,0,0,174,9,0,0,176,9,0,0,178,9,0,0,180,9,0,0,180,9,0,0,180,9,0,0,180,9,0,0,180,9,0,0,182,9,0,0,182,9,0,0,182,9,0,0,182,9,0,0,182,9,0,0,184,9,0,0,184,9,0,0,184,9,0,0,186,9,0,0,186,9,0,0,186,9,0,0,188,9,0,0,188,9,0,0,188,9,0,0,190,9,0,0,190,9,0,0,194,9,0,0,196,9,0,0,198,9,0,0,198,9,0,0,200,9,0,0,206,9,0,0,206,9,0,0,206,9,0,0,206,9,0,0,208,9,0,0,208,9,0,0,208,9,0,0,208,9,0,0,208,9,0,0,210,9,0,0,210,9,0,0,210,9,0,0,212,9,0,0,214,9,0,0,214,9,0,0,214,9,0,0,218,9,0,0,220,9,0,0,222,9,0,0,222,9,0,0,224,9,0,0,228,9,0,0,228,9,0,0,230,9,0,0,232,9,0,0,232,9,0,0,232,9,0,0,232,9,0,0,232,9,0,0,232,9,0,0,234,9,0,0,236,9,0,0,236,9,0,0,240,9,0,0,240,9,0,0,240,9,0,0,244,9,0,0,244,9,0,0,246,9,0,0,246,9,0,0,246,9,0,0,246,9,0,0,246,9,0,0,246,9,0,0,246,9,0,0,246,9,0,0,246,9,0,0,246,9,0,0,246,9,0,0,248,9,0,0,248,9,0,0,248,9,0,0,248,9,0,0,248,9,0,0,248,9,0,0,250,9,0,0,252,9,0,0,254,9,0,0,254,9,0,0,254,9,0,0,254,9,0,0,0,10,0,0,6,10,0,0,6,10,0,0,6,10,0,0,8,10,0,0,10,10,0,0,10,10,0,0,10,10,0,0,12,10,0,0,12,10,0,0,14,10,0,0,18,10,0,0,18,10,0,0,18,10,0,0,18,10,0,0,20,10,0,0,20,10,0,0,20,10,0,0,20,10,0,0,22,10,0,0,24,10,0,0,24,10,0,0,24,10,0,0,26,10,0,0,26,10,0,0,26,10,0,0,28,10,0,0,28,10,0,0,28,10,0,0,30,10,0,0,30,10,0,0,32,10,0,0,34,10,0,0,36,10,0,0,36,10,0,0,36,10,0,0,40,10,0,0,40,10,0,0,42,10,0,0,46,10,0,0,46,10,0,0,46,10,0,0,50,10,0,0,50,10,0,0,52,10,0,0,52,10,0,0,52,10,0,0,54,10,0,0,54,10,0,0,56,10,0,0,58,10,0,0,58,10,0,0,60,10,0,0,66,10,0,0,68,10,0,0,70,10,0,0,70,10,0,0,74,10,0,0,76,10,0,0,76,10,0,0,76,10,0,0,76,10,0,0,78,10,0,0,78,10,0,0,80,10,0,0,82,10,0,0,86,10,0,0,86,10,0,0,86,10,0,0,86,10,0,0,88,10,0,0,90,10,0,0,92,10,0,0,92,10,0,0,92,10,0,0,94,10,0,0,96,10,0,0,96,10,0,0,98,10,0,0,98,10,0,0,98,10,0,0,102,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,106,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,110,10,0,0,112,10,0,0,116,10,0,0,116,10,0,0,118,10,0,0,120,10,0,0,122,10,0,0,124,10,0,0,124,10,0,0,124,10,0,0,124,10,0,0,126,10,0,0,126,10,0,0,126,10,0,0,128,10,0,0,128,10,0,0,128,10,0,0,128,10,0,0,130,10,0,0,130,10,0,0,130,10,0,0,130,10,0,0,130,10,0,0,130,10,0,0,130,10,0,0,132,10,0,0,132,10,0,0,134,10,0,0,136,10,0,0,136,10,0,0,136,10,0,0,136,10,0,0,136,10,0,0,138,10,0,0,138,10,0,0,138,10,0,0,138,10,0,0,138,10,0,0,140,10,0,0,140,10,0,0,140,10,0,0,142,10,0,0,142,10,0,0,144,10,0,0,144,10,0,0,146,10,0,0,148,10,0,0,148,10,0,0,150,10,0,0,154,10,0,0,156,10,0,0,158,10,0,0,160,10,0,0,160,10,0,0,160,10,0,0,160,10,0,0,160,10,0,0,160,10,0,0,164,10,0,0,164,10,0,0,164,10,0,0,166,10,0,0,166,10,0,0,166,10,0,0,166,10,0,0,166,10,0,0,166,10,0,0,168,10,0,0,168,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,172,10,0,0,172,10,0,0,174,10,0,0,174,10,0,0,174,10,0,0,174,10,0,0,174,10,0,0,174,10,0,0,174,10,0,0,178,10,0,0,178,10,0,0,178,10,0,0,178,10,0,0,178,10,0,0,180,10,0,0,182,10,0,0,182,10,0,0,198,10,0,0,200,10,0,0,202,10,0,0,202,10,0,0,204,10,0,0,206,10,0,0,206,10,0,0,208,10,0,0,210,10,0,0,210,10,0,0,210,10,0,0,210,10,0,0,210,10,0,0,212,10,0,0,214,10,0,0,216,10,0,0,216,10,0,0,216,10,0,0,216,10,0,0,216,10,0,0,218,10,0,0,220,10,0,0,220,10,0,0,222,10,0,0,222,10,0,0,224,10,0,0,226,10,0,0,228,10,0,0,230,10,0,0,232,10,0,0,236,10,0,0,236,10,0,0,238,10,0,0,238,10,0,0,238,10,0,0,242,10,0,0,244,10,0,0,244,10,0,0,244,10,0,0,246,10,0,0,250,10,0,0,250,10,0,0,250,10,0,0,252,10,0,0,252,10,0,0,252,10,0,0,252,10,0,0,252,10,0,0,252,10,0,0,252,10,0,0,252,10,0,0,252,10,0,0,252,10,0,0,254,10,0,0,0,11,0,0,2,11,0,0,2,11,0,0,4,11,0,0,6,11,0,0,8,11,0,0,10,11,0,0,12,11,0,0,12,11,0,0,12,11,0,0,14,11,0,0,14,11,0,0,14,11,0,0,16,11,0,0,16,11,0,0,16,11,0,0,20,11,0,0,22,11,0,0,22,11,0,0,22,11,0,0,26,11,0,0,26,11,0,0,28,11,0,0,32,11,0,0,34,11,0,0,36,11,0,0,36,11,0,0,36,11,0,0,40,11,0,0,40,11,0,0,40,11,0,0,40,11,0,0,44,11,0,0,44,11,0,0,44,11,0,0,46,11,0,0,46,11,0,0,46,11,0,0,48,11,0,0,50,11,0,0,52,11,0,0,52,11,0,0,52,11,0,0,54,11,0,0,56,11,0,0,56,11,0,0,56,11,0,0,62,11,0,0,62,11,0,0,62,11,0,0,64,11,0,0,64,11,0,0,64,11,0,0,66,11,0,0,68,11,0,0,68,11,0,0,68,11,0,0,72,11,0,0,74,11,0,0,74,11,0,0,74,11,0,0,74,11,0,0,74,11,0,0,76,11,0,0,76,11,0,0,78,11,0,0,82,11,0,0,84,11,0,0,84,11,0,0,84,11,0,0,88,11,0,0,88,11,0,0,90,11,0,0,90,11,0,0,92,11,0,0,94,11,0,0,94,11,0,0,94,11,0,0,94,11,0,0,94,11,0,0,94,11,0,0,96,11,0,0,96,11,0,0,96,11,0,0,96,11,0,0,96,11,0,0,98,11,0,0,100,11,0,0,100,11,0,0,100,11,0,0,102,11,0,0,102,11,0,0,106,11,0,0,106,11,0,0,106,11,0,0,108,11,0,0,114,11,0,0,114,11,0,0,114,11,0,0,114,11,0,0,116,11,0,0,116,11,0,0,118,11,0,0,118,11,0,0,120,11,0,0,120,11,0,0,120,11,0,0,122,11,0,0,122,11,0,0,122,11,0,0,122,11,0,0,124,11,0,0,128,11,0,0,128,11,0,0,128,11,0,0,128,11,0,0,128,11,0,0,128,11,0,0,128,11,0,0,130,11,0,0,130,11,0,0,132,11,0,0,132,11,0,0,136,11,0,0,140,11,0,0,140,11,0,0,140,11,0,0,140,11,0,0,140,11,0,0,142,11,0,0,144,11,0,0,146,11,0,0,146,11,0,0,146,11,0,0,146,11,0,0,152,11,0,0,152,11,0,0,152,11,0,0,154,11,0,0,154,11,0,0,154,11,0,0,154,11,0,0,154,11,0,0,154,11,0,0,154,11,0,0,154,11,0,0,154,11,0,0,156,11,0,0,160,11,0,0,160,11,0,0,160,11,0,0,162,11,0,0,164,11,0,0,166,11,0,0,168,11,0,0,168,11,0,0,168,11,0,0,168,11,0,0,168,11,0,0,168,11,0,0,168,11,0,0,170,11,0,0,172,11,0,0,172,11,0,0,176,11,0,0,176,11,0,0,176,11,0,0,178,11,0,0,180,11,0,0,184,11,0,0,184,11,0,0,188,11,0,0,190,11,0,0,192,11,0,0,194,11,0,0,194,11,0,0,196,11,0,0,202,11,0,0,202,11,0,0,206,11,0,0,206,11,0,0,208,11,0,0,208,11,0,0,208,11,0,0,208,11,0,0,208,11,0,0,208,11,0,0,212,11,0,0,214,11,0,0,216,11,0,0,216,11,0,0,218,11,0,0,218,11,0,0,220,11,0,0,222,11,0,0,222,11,0,0,224,11,0,0,224,11,0,0,224,11,0,0,226,11,0,0,228,11,0,0,232,11,0,0,234,11,0,0,234,11,0,0,234,11,0,0,234,11,0,0,236,11,0,0,236,11,0,0,236,11,0,0,236,11,0,0,238,11,0,0,238,11,0,0,238,11,0,0,238,11,0,0,240,11,0,0,240,11,0,0,242,11,0,0,242,11,0,0,242,11,0,0,242,11,0,0,242,11,0,0,246,11,0,0,248,11,0,0,248,11,0,0,250,11,0,0,250,11,0,0,252,11,0,0,252,11,0,0,254,11,0,0,254,11,0,0,254,11,0,0,2,12,0,0,4,12,0,0,6,12,0,0,8,12,0,0,10,12,0,0,10,12,0,0,10,12,0,0,10,12,0,0,12,12,0,0,12,12,0,0,14,12,0,0,14,12,0,0,14,12,0,0,16,12,0,0,16,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,20,12,0,0,22,12,0,0,22,12,0,0,22,12,0,0,24,12,0,0,24,12,0,0,24,12,0,0,24,12,0,0,26,12,0,0,26,12,0,0,26,12,0,0,28,12,0,0,28,12,0,0,28,12,0,0,28,12,0,0,30,12,0,0,32,12,0,0,32,12,0,0,38,12,0,0,38,12,0,0,38,12,0,0,38,12,0,0,40,12,0,0,42,12,0,0,44,12,0,0,46,12,0,0,48,12,0,0,50,12,0,0,50,12,0,0,50,12,0,0,50,12,0,0,50,12,0,0,50,12,0,0,56,12,0,0,58,12,0,0,60,12,0,0,60,12,0,0,60,12,0,0,62,12,0,0,64,12,0,0,64,12,0,0,64,12,0,0,64,12,0,0,66,12,0,0,68,12,0,0,70,12,0,0,70,12,0,0,70,12,0,0,70,12,0,0,72,12,0,0,72,12,0,0,74,12,0,0,74,12,0,0,74,12,0,0,74,12,0,0,74,12,0,0,74,12,0,0,74,12,0,0,74,12,0,0,74,12,0,0,74,12,0,0,76,12,0,0,76,12,0,0,78,12,0,0,80,12,0,0,82,12,0,0,84,12,0,0,84,12,0,0,88,12,0,0,88,12,0,0,92,12,0,0,96,12,0,0,96,12,0,0,96,12,0,0,96,12,0,0,96,12,0,0,96,12,0,0,96,12,0,0,96,12,0,0,96,12,0,0,96,12,0,0,98,12,0,0,98,12,0,0,98,12,0,0,98,12,0,0,98,12,0,0,102,12,0,0,102,12,0,0,102,12,0,0,104,12,0,0,106,12,0,0,106,12,0,0,108,12,0,0,108,12,0,0,110,12,0,0,110,12,0,0,112,12,0,0,114,12,0,0,114,12,0,0,114,12,0,0,114,12,0,0,114,12,0,0,116,12,0,0,116,12,0,0,116,12,0,0,116,12,0,0,116,12,0,0,118,12,0,0,120,12,0,0,120,12,0,0,120,12,0,0,122,12,0,0,124,12,0,0,124,12,0,0,128,12,0,0,128,12,0,0,128,12,0,0,130,12,0,0,130,12,0,0,130,12,0,0,130,12,0,0,130,12,0,0,130,12,0,0,130,12,0,0,134,12,0,0,134,12,0,0,136,12,0,0,138,12,0,0,138,12,0,0,138,12,0,0,142,12,0,0,142,12,0,0,142,12,0,0,142,12,0,0,142,12,0,0,142,12,0,0,142,12,0,0,142,12,0,0,142,12,0,0,142,12,0,0,144,12,0,0,144,12,0,0,150,12,0,0,150,12,0,0,150,12,0,0,150,12,0,0,150,12,0,0,150,12,0,0,150,12,0,0,150,12,0,0,150,12,0,0,150,12,0,0,156,12,0,0,156,12,0,0,156,12,0,0,156,12,0,0,156,12,0,0,156,12,0,0,156,12,0,0,156,12,0,0,158,12,0,0,160,12,0,0,162,12,0,0,162,12,0,0,162,12,0,0,162,12,0,0,164,12,0,0,164,12,0,0,166,12,0,0,168,12,0,0,168,12,0,0,172,12,0,0,172,12,0,0,172,12,0,0,172,12,0,0,172,12,0,0,172,12,0,0,172,12,0,0,172,12,0,0,172,12,0,0,172,12,0,0,174,12,0,0,174,12,0,0,178,12,0,0,178,12,0,0,180,12,0,0,180,12,0,0,180,12,0,0,180,12,0,0,180,12,0,0,184,12,0,0,184,12,0,0,184,12,0,0,186,12,0,0,186,12,0,0,188,12,0,0,190,12,0,0,190,12,0,0,192,12,0,0,192,12,0,0,192,12,0,0,192,12,0,0,194,12,0,0,198,12,0,0,198,12,0,0,200,12,0,0,202,12,0,0,202,12,0,0,202,12,0,0,202,12,0,0,202,12,0,0,204,12,0,0,206,12,0,0,206,12,0,0,206,12,0,0,206,12,0,0,206,12,0,0,208,12,0,0,212,12,0,0,212,12,0,0,212,12,0,0,212,12,0,0,212,12,0,0,212,12,0,0,212,12,0,0,214,12,0,0,214,12,0,0,214,12,0,0,218,12,0,0,220,12,0,0,220,12,0,0,220,12,0,0,220,12,0,0,220,12,0,0,220,12,0,0,220,12,0,0,220,12,0,0,220,12,0,0,226,12,0,0,230,12,0,0,232,12,0,0,232,12,0,0,232,12,0,0,232,12,0,0,232,12,0,0,238,12,0,0,240,12,0,0,242,12,0,0,242,12,0,0,242,12,0,0,242,12,0,0,242,12,0,0,38,13,0,0,38,13,0,0,38,13,0,0,38,13,0,0,38,13,0,0,38,13,0,0,40,13,0,0,42,13,0,0,42,13,0,0,44,13,0,0,44,13,0,0,44,13,0,0,44,13,0,0,46,13,0,0,48,13,0,0,50,13,0,0,50,13,0,0,50,13,0,0,50,13,0,0,50,13,0,0,50,13,0,0,50,13,0,0,50,13,0,0,50,13,0,0,52,13,0,0,52,13,0,0,58,13,0,0,58,13,0,0,58,13,0,0,60,13,0,0,60,13,0,0,60,13,0,0,60,13,0,0,64,13,0,0,66,13,0,0,68,13,0,0,68,13,0,0,68,13,0,0,68,13,0,0,68,13,0,0,70,13,0,0,70,13,0,0,70,13,0,0,70,13,0,0,70,13,0,0,72,13,0,0,72,13,0,0,72,13,0,0,72,13,0,0,74,13,0,0,76,13,0,0,78,13,0,0,80,13,0,0,80,13,0,0,82,13,0,0,82,13,0,0,82,13,0,0,84,13,0,0,84,13,0,0,84,13,0,0,84,13,0,0,88,13,0,0,90,13,0,0,90,13,0,0,90,13,0,0,90,13,0,0,92,13,0,0,92,13,0,0,96,13,0,0,96,13,0,0,98,13,0,0,100,13,0,0,100,13,0,0,100,13,0,0,100,13,0,0,100,13,0,0,102,13,0,0,104,13,0,0,104,13,0,0,104,13,0,0,104,13,0,0,110,13,0,0,110,13,0,0,112,13,0,0,112,13,0,0,112,13,0,0,112,13,0,0,112,13,0,0,114,13,0,0,116,13,0,0,116,13,0,0,118,13,0,0,120,13,0,0,122,13,0,0,124,13,0,0,124,13,0,0,128,13,0,0,128,13,0,0,128,13,0,0,128,13,0,0,128,13,0,0,132,13,0,0,132,13,0,0,132,13,0,0,132,13,0,0,134,13,0,0,134,13,0,0,134,13,0,0,136,13,0,0,138,13,0,0,138,13,0,0,138,13,0,0,138,13,0,0,138,13,0,0,138,13,0,0,138,13,0,0,138,13,0,0,138,13,0,0,138,13,0,0,140,13,0,0,140,13,0,0,140,13,0,0,144,13,0,0,146,13,0,0,146,13,0,0,148,13,0,0,148,13,0,0,150,13,0,0,152,13,0,0,152,13,0,0,152,13,0,0,152,13,0,0,154,13,0,0,154,13,0,0,156,13,0,0,156,13,0,0,158,13,0,0,158,13,0,0,160,13,0,0,160,13,0,0,162,13,0,0,164,13,0,0,166,13,0,0,166,13,0,0,166,13,0,0,166,13,0,0,170,13,0,0,174,13,0,0,174,13,0,0,174,13,0,0,176,13,0,0,176,13,0,0,176,13,0,0,178,13,0,0,178,13,0,0,180,13,0,0,180,13,0,0,182,13,0,0,182,13,0,0,182,13,0,0,182,13,0,0,182,13,0,0,182,13,0,0,184,13,0,0,184,13,0,0,184,13,0,0,184,13,0,0,184,13,0,0,184,13,0,0,184,13,0,0,186,13,0,0,186,13,0,0,186,13,0,0,186,13,0,0,188,13,0,0,188,13,0,0,188,13,0,0,188,13,0,0,188,13,0,0,188,13,0,0,188,13,0,0,190,13,0,0,190,13,0,0,192,13,0,0,196,13,0,0,196,13,0,0,196,13,0,0,198,13,0,0,198,13,0,0,198,13,0,0,200,13,0,0,200,13,0,0,200,13,0,0,200,13,0,0,200,13,0,0,202,13,0,0,202,13,0,0,204,13,0,0,204,13,0,0,206,13,0,0,208,13,0,0,212,13,0,0,212,13,0,0,214,13,0,0,214,13,0,0,216,13,0,0,216,13,0,0,218,13,0,0,218,13,0,0,218,13,0,0,218,13,0,0,218,13,0,0,218,13,0,0,218,13,0,0,222,13,0,0,224,13,0,0,224,13,0,0,224,13,0,0,224,13,0,0,226,13,0,0,226,13,0,0,226,13,0,0,226,13,0,0,226,13,0,0,228,13,0,0,230,13,0,0,230,13,0,0,232,13,0,0,236,13,0,0,238,13,0,0,238,13,0,0,240,13,0,0,240,13,0,0,240,13,0,0,242,13,0,0,242,13,0,0,244,13,0,0,244,13,0,0,244,13,0,0,244,13,0,0,246,13,0,0,246,13,0,0,246,13,0,0,248,13,0,0,248,13,0,0,250,13,0,0,254,13,0,0,2,14,0,0,2,14,0,0,6,14,0,0,8,14,0,0,10,14,0,0,10,14,0,0,10,14,0,0,10,14,0,0,10,14,0,0,12,14,0,0,12,14,0,0,12,14,0,0,14,14,0,0,14,14,0,0,14,14,0,0,14,14,0,0,14,14,0,0,18,14,0,0,20,14,0,0,20,14,0,0,22,14,0,0,22,14,0,0,24,14,0,0,26,14,0,0,26,14,0,0,26,14,0,0,28,14,0,0,28,14,0,0,28,14,0,0,30,14,0,0,30,14,0,0,30,14,0,0,32,14,0,0,32,14,0,0,32,14,0,0,34,14,0,0,34,14,0,0,34,14,0,0,34,14,0,0,36,14,0,0,36,14,0,0,36,14,0,0,36,14,0,0,36,14,0,0,36,14,0,0,36,14,0,0,38,14,0,0,40,14,0,0,42,14,0,0,42,14,0,0,44,14,0,0,44,14,0,0,46,14,0,0,46,14,0,0,46,14,0,0,46,14,0,0,48,14,0,0,50,14,0,0,50,14,0,0,50,14,0,0,50,14,0,0,50,14,0,0,54,14,0,0,60,14,0,0,60,14,0,0,60,14,0,0,60,14,0,0,60,14,0,0,60,14,0,0,62,14,0,0,66,14,0,0,66,14,0,0,66,14,0,0,66,14,0,0,66,14,0,0,68,14,0,0,70,14,0,0,70,14,0,0,72,14,0,0,72,14,0,0,72,14,0,0,72,14,0,0,72,14,0,0,76,14,0,0,76,14,0,0,78,14,0,0,78,14,0,0,80,14,0,0,80,14,0,0,80,14,0,0,80,14,0,0,80,14,0,0,80,14,0,0,80,14,0,0,80,14,0,0,80,14,0,0,80,14,0,0,80,14,0,0,80,14,0,0,86,14,0,0,86,14,0,0,86,14,0,0,90,14,0,0,90,14,0,0,90,14,0,0,90,14,0,0,90,14,0,0,92,14,0,0,92,14,0,0,94,14,0,0,96,14,0,0,98,14,0,0,100,14,0,0,104,14,0,0,106,14,0,0,106,14,0,0,106,14,0,0,108,14,0,0,108,14,0,0,108,14,0,0,108,14,0,0,108,14,0,0,108,14,0,0,108,14,0,0,108,14,0,0,110,14,0,0,112,14,0,0,114,14,0,0,114,14,0,0,114,14,0,0,116,14,0,0,116,14,0,0,118,14,0,0,120,14,0,0,122,14,0,0,124,14,0,0,126,14,0,0,130,14,0,0,130,14,0,0,130,14,0,0,132,14,0,0,136,14,0,0,136,14,0,0,138,14,0,0,140,14,0,0,140,14,0,0,140,14,0,0,140,14,0,0,140,14,0,0,140,14,0,0,142,14,0,0,142,14,0,0,144,14,0,0,144,14,0,0,146,14,0,0,150,14,0,0,150,14,0,0,152,14,0,0,152,14,0,0,152,14,0,0,154,14,0,0,156,14,0,0,156,14,0,0,156,14,0,0,156,14,0,0,160,14,0,0,160,14,0,0,162,14,0,0,162,14,0,0,166,14,0,0,166,14,0,0,172,14,0,0,176,14,0,0,176,14,0,0,176,14,0,0,178,14,0,0,178,14,0,0,178,14,0,0,180,14,0,0,180,14,0,0,182,14,0,0,182,14,0,0,182,14,0,0,184,14,0,0,184,14,0,0,186,14,0,0,186,14,0,0,190,14,0,0,190,14,0,0,190,14,0,0,190,14,0,0,190,14,0,0,190,14,0,0,190,14,0,0,190,14,0,0,190,14,0,0,190,14,0,0,192,14,0,0,194,14,0,0,194,14,0,0,194,14,0,0,196,14,0,0,196,14,0,0,200,14,0,0,200,14,0,0,200,14,0,0,200,14,0,0,200,14,0,0,202,14,0,0,202,14,0,0,202,14,0,0,204,14,0,0,204,14,0,0,208,14,0,0,208,14,0,0,208,14,0,0,208,14,0,0,208,14,0,0,208,14,0,0,208,14,0,0,210,14,0,0,210,14,0,0,210,14,0,0,212,14,0,0,212,14,0,0,212,14,0,0,214,14,0,0,218,14,0,0,218,14,0,0,218,14,0,0,220,14,0,0,220,14,0,0,220,14,0,0,220,14,0,0,220,14,0,0,220,14,0,0,220,14,0,0,222,14,0,0,222,14,0,0,222,14,0,0,222,14,0,0,222,14,0,0,222,14,0,0,224,14,0,0,224,14,0,0,228,14,0,0,228,14,0,0,228,14,0,0,228,14,0,0,230,14,0,0,230,14,0,0,232,14,0,0,232,14,0,0,232,14,0,0,234,14,0,0,236,14,0,0,238,14,0,0,242,14,0,0,244,14,0,0,244,14,0,0,244,14,0,0,246,14,0,0,252,14,0,0,254,14,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0,15,0,0,2,15,0,0,4,15,0,0,4,15,0,0,6,15,0,0,8,15,0,0,8,15,0,0,10,15,0,0,10,15,0,0,12,15,0,0,12,15,0,0,12,15,0,0,12,15,0,0,12,15,0,0,12,15,0,0,14,15,0,0,16,15,0,0,16,15,0,0,18,15,0,0,18,15,0,0,18,15,0,0,20,15,0,0,26,15,0,0,28,15,0,0,30,15,0,0,36,15,0,0,36,15,0,0,36,15,0,0,36,15,0,0,38,15,0,0,40,15,0,0,44,15,0,0,48,15,0,0,50,15,0,0,56,15,0,0,56,15,0,0,60,15,0,0,60,15,0,0,60,15,0,0,64,15,0,0,64,15,0,0,66,15,0,0,68,15,0,0,70,15,0,0,70,15,0,0,72,15,0,0,74,15,0,0,76,15,0,0,76,15,0,0,80,15,0,0,80,15,0,0,80,15,0,0,80,15,0,0,80,15,0,0,80,15,0,0,82,15,0,0,82,15,0,0,82,15,0,0,82,15,0,0,82,15,0,0,84,15,0,0,84,15,0,0,84,15,0,0,84,15,0,0,90,15,0,0,90,15,0,0,92,15,0,0,92,15,0,0,92,15,0,0,94,15,0,0,94,15,0,0,94,15,0,0,96,15,0,0,100,15,0,0,102,15,0,0,102,15,0,0,102,15,0,0,102,15,0,0,104,15,0,0,108,15,0,0,110,15,0,0,112,15,0,0,112,15,0,0,112,15,0,0,112,15,0,0,112,15,0,0,116,15,0,0,116,15,0,0,116,15,0,0,116,15,0,0,116,15,0,0,116,15,0,0,116,15,0,0,116,15,0,0,116,15,0,0,118,15,0,0,118,15,0,0,118,15,0,0,118,15,0,0,122,15,0,0,124,15,0,0,124,15,0,0,124,15,0,0,124,15,0,0,124,15,0,0,124,15,0,0,124,15,0,0,126,15,0,0,126,15,0,0,128,15,0,0,128,15,0,0,128,15,0,0,128,15,0,0,134,15,0,0,138,15,0,0,138,15,0,0,138,15,0,0,138,15,0,0,140,15,0,0,142,15,0,0,142,15,0,0,144,15,0,0,144,15,0,0,144,15,0,0,146,15,0,0,146,15,0,0,146,15,0,0,146,15,0,0,146,15,0,0,146,15,0,0,150,15,0,0,150,15,0,0,150,15,0,0,150,15,0,0,152,15,0,0,152,15,0,0,154,15,0,0,154,15,0,0,154,15,0,0,154,15,0,0,156,15,0,0,158,15,0,0,158,15,0,0,160,15,0,0,164,15,0,0,164,15,0,0,164,15,0,0,168,15,0,0,168,15,0,0,170,15,0,0,170,15,0,0,170,15,0,0,170,15,0,0,172,15,0,0,174,15,0,0,174,15,0,0,174,15,0,0,174,15,0,0,178,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,182,15,0,0,184,15,0,0,186,15,0,0,186,15,0,0,188,15,0,0,190,15,0,0,192,15,0,0,192,15,0,0,192,15,0,0,192,15,0,0,196,15,0,0,196,15,0,0,198,15,0,0,198,15,0,0,198,15,0,0,198,15,0,0,200,15,0,0,202,15,0,0,202,15,0,0,204,15,0,0,204,15,0,0,204,15,0,0,204,15,0,0,204,15,0,0,204,15,0,0,206,15,0,0,206,15,0,0,206,15,0,0,208,15,0,0,208,15,0,0,210,15,0,0,212,15,0,0,212,15,0,0,214,15,0,0,216,15,0,0,216,15,0,0,216,15,0,0,218,15,0,0,218,15,0,0,220,15,0,0,220,15,0,0,220,15,0,0,222,15,0,0,224,15,0,0,224,15,0,0,224,15,0,0,224,15,0,0,224,15,0,0,226,15,0,0,226,15,0,0,226,15,0,0,226,15,0,0,226,15,0,0,228,15,0,0,228,15,0,0,232,15,0,0,234,15,0,0,234,15,0,0,236,15,0,0,236,15,0,0,236,15,0,0,238,15,0,0,240,15,0,0,240,15,0,0,240,15,0,0,242,15,0,0,246,15,0,0,246,15,0,0,246,15,0,0,246,15,0,0,248,15,0,0,248,15,0,0,248,15,0,0,248,15,0,0,250,15,0,0,250,15,0,0,252,15,0,0,254,15,0,0,254,15,0,0,254,15,0,0,254,15,0,0,0,16,0,0,2,16,0,0,2,16,0,0,2,16,0,0,2,16,0,0,2,16,0,0,4,16,0,0,4,16,0,0,8,16,0,0,8,16,0,0,10,16,0,0,16,16,0,0,18,16,0,0,18,16,0,0,20,16,0,0,20,16,0,0,20,16,0,0,24,16,0,0,24,16,0,0,26,16,0,0,26,16,0,0,26,16,0,0,26,16,0,0,28,16,0,0,28,16,0,0,28,16,0,0,36,16,0,0,38,16,0,0,44,16,0,0,44,16,0,0,48,16,0,0,50,16,0,0,54,16,0,0,54,16,0,0,56,16,0,0,56,16,0,0,56,16,0,0,58,16,0,0,58,16,0,0,58,16,0,0,60,16,0,0,60,16,0,0,60,16,0,0,60,16,0,0,60,16,0,0,62,16,0,0,62,16,0,0,62,16,0,0,64,16,0,0,66,16,0,0,68,16,0,0,70,16,0,0,70,16,0,0,70,16,0,0,70,16,0,0,70,16,0,0,70,16,0,0,70,16,0,0,72,16,0,0,72,16,0,0,72,16,0,0,76,16,0,0,80,16,0,0,80,16,0,0,80,16,0,0,82,16,0,0,86,16,0,0,88,16,0,0,90,16,0,0,94,16,0,0,94,16,0,0,94,16,0,0,94,16,0,0,94,16,0,0,96,16,0,0,96,16,0,0,96,16,0,0,98,16,0,0,98,16,0,0,104,16,0,0,108,16,0,0,108,16,0,0,108,16,0,0,108,16,0,0,108,16,0,0,108,16,0,0,112,16,0,0,112,16,0,0,112,16,0,0,114,16,0,0,114,16,0,0,114,16,0,0,118,16,0,0,118,16,0,0,118,16,0,0,120,16,0,0,120,16,0,0,122,16,0,0,122,16,0,0,122,16,0,0,124,16,0,0,124,16,0,0,124,16,0,0,124,16,0,0,124,16,0,0,124,16,0,0,126,16,0,0,126,16,0,0,126,16,0,0,126,16,0,0,128,16,0,0,132,16,0,0,132,16,0,0,132,16,0,0,132,16,0,0,134,16,0,0,134,16,0,0,134,16,0,0,136,16,0,0,136,16,0,0,140,16,0,0,140,16,0,0,140,16,0,0,142,16,0,0,142,16,0,0,144,16,0,0,146,16,0,0,148,16,0,0,148,16,0,0,148,16,0,0,150,16,0,0,150,16,0,0,152,16,0,0,154,16,0,0,154,16,0,0,156,16,0,0,156,16,0,0,158,16,0,0,158,16,0,0,160,16,0,0,160,16,0,0,166,16,0,0,168,16,0,0,168,16,0,0,168,16,0,0,170,16,0,0,174,16,0,0,174,16,0,0,178,16,0,0,180,16,0,0,182,16,0,0,186,16,0,0,186,16,0,0,186,16,0,0,186,16,0,0,188,16,0,0,188,16,0,0,190,16,0,0,190,16,0,0,190,16,0,0,190,16,0,0,190,16,0,0,190,16,0,0,190,16,0,0,192,16,0,0,196,16,0,0,196,16,0,0,196,16,0,0,196,16,0,0,196,16,0,0,196,16,0,0,196,16,0,0,198,16,0,0,198,16,0,0,198,16,0,0,198,16,0,0,198,16,0,0,198,16,0,0,198,16,0,0,198,16,0,0,198,16,0,0,198,16,0,0,200,16,0,0,202,16,0,0,202,16,0,0,202,16,0,0,202,16,0,0,204,16,0,0,210,16,0,0,212,16,0,0,212,16,0,0,212,16,0,0,212,16,0,0,212,16,0,0,212,16,0,0,212,16,0,0,214,16,0,0,216,16,0,0,218,16,0,0,218,16,0,0,218,16,0,0,218,16,0,0,218,16,0,0,218,16,0,0,220,16,0,0,224,16,0,0,226,16,0,0,226,16,0,0,226,16,0,0,226,16,0,0,226,16,0,0,226,16,0,0,226,16,0,0,226,16,0,0,228,16,0,0,228,16,0,0,230,16,0,0,232,16,0,0,234,16,0,0,234,16,0,0,234,16,0,0,234,16,0,0,234,16,0,0,234,16,0,0,234,16,0,0,234,16,0,0,236,16,0,0,236,16,0,0,238,16,0,0,238,16,0,0,238,16,0,0,238,16,0,0,238,16,0,0,240,16,0,0,240,16,0,0,242,16,0,0,242,16,0,0,242,16,0,0,242,16,0,0,244,16,0,0,244,16,0,0,246,16,0,0,246,16,0,0,246,16,0,0,246,16,0,0,248,16,0,0,0,17,0,0,0,17,0,0,0,17,0,0,0,17,0,0,0,17,0,0,0,17,0,0,0,17,0,0,4,17,0,0,6,17,0,0,6,17,0,0,6,17,0,0,8,17,0,0,10,17,0,0,12,17,0,0,12,17,0,0,12,17,0,0,14,17,0,0,16,17,0,0,16,17,0,0,16,17,0,0,16,17,0,0,18,17,0,0,20,17,0,0,20,17,0,0,20,17,0,0,20,17,0,0,22,17,0,0,22,17,0,0,22,17,0,0,22,17,0,0,26,17,0,0,28,17,0,0,28,17,0,0,28,17,0,0,28,17,0,0,28,17,0,0,30,17,0,0,30,17,0,0,30,17,0,0,30,17,0,0,30,17,0,0,30,17,0,0,30,17,0,0,30,17,0,0,32,17,0,0,32,17,0,0,34,17,0,0,36,17,0,0,38,17,0,0,38,17,0,0,40,17,0,0,46,17,0,0,46,17,0,0,46,17,0,0,48,17,0,0,52,17,0,0,56,17,0,0,58,17,0,0,58,17,0,0,58,17,0,0,58,17,0,0,58,17,0,0,60,17,0,0,62,17,0,0,62,17,0,0,64,17,0,0,66,17,0,0,66,17,0,0,66,17,0,0,66,17,0,0,68,17,0,0,70,17,0,0,70,17,0,0,70,17,0,0,70,17,0,0,72,17,0,0,72,17,0,0,74,17,0,0,78,17,0,0,78,17,0,0,78,17,0,0,80,17,0,0,80,17,0,0,80,17,0,0,82,17,0,0,82,17,0,0,82,17,0,0,82,17,0,0,82,17,0,0,86,17,0,0,88,17,0,0,88,17,0,0,90,17,0,0,92,17,0,0,92,17,0,0,94,17,0,0,94,17,0,0,94,17,0,0,94,17,0,0,94,17,0,0,98,17,0,0,100,17,0,0,102,17,0,0,104,17,0,0,106,17,0,0,106,17,0,0,108,17,0,0,108,17,0,0,108,17,0,0,112,17,0,0,112,17,0,0,112,17,0,0,114,17,0,0,116,17,0,0,118,17,0,0,118,17,0,0,118,17,0,0,120,17,0,0,120,17,0,0,120,17,0,0,122,17,0,0,124,17,0,0,126,17,0,0,128,17,0,0,128,17,0,0,130,17,0,0,130,17,0,0,130,17,0,0,130,17,0,0,130,17,0,0,130,17,0,0,130,17,0,0,132,17,0,0,132,17,0,0,134,17,0,0,136,17,0,0,136,17,0,0,136,17,0,0,140,17,0,0,140,17,0,0,140,17,0,0,142,17,0,0,144,17,0,0,144,17,0,0,146,17,0,0,146,17,0,0,150,17,0,0,150,17,0,0,150,17,0,0,150,17,0,0,150,17,0,0,156,17,0,0,158,17,0,0,158,17,0,0,160,17,0,0,160,17,0,0,162,17,0,0,162,17,0,0,164,17,0,0,168,17,0,0,168,17,0,0,168,17,0,0,168,17,0,0,168,17,0,0,172,17,0,0,172,17,0,0,172,17,0,0,172,17,0,0,174,17,0,0,174,17,0,0,174,17,0,0,174,17,0,0,176,17,0,0,176,17,0,0,176,17,0,0,176,17,0,0,176,17,0,0,178,17,0,0,178,17,0,0,178,17,0,0,178,17,0,0,178,17,0,0,180,17,0,0,180,17,0,0,180,17,0,0,186,17,0,0,186,17,0,0,188,17,0,0,188,17,0,0,192,17,0,0,192,17,0,0,192,17,0,0,192,17,0,0,194,17,0,0,194,17,0,0,196,17,0,0,198,17,0,0,198,17,0,0,198,17,0,0,200,17,0,0,202,17,0,0,204,17,0,0,206,17,0,0,206,17,0,0,208,17,0,0,210,17,0,0,210,17,0,0,210,17,0,0,210,17,0,0,212,17,0,0,214,17,0,0,216,17,0,0,216,17,0,0,216,17,0,0,216,17,0,0,216,17,0,0,216,17,0,0,216,17,0,0,216,17,0,0,218,17,0,0,218,17,0,0,218,17,0,0,220,17,0,0,222,17,0,0,224,17,0,0,224,17,0,0,226,17,0,0,230,17,0,0,230,17,0,0,232,17,0,0,234,17,0,0,238,17,0,0,240,17,0,0,242,17,0,0,242,17,0,0,244,17,0,0,244,17,0,0,246,17,0,0,248,17,0,0,250,17,0,0,252,17,0,0,252,17,0,0,254,17,0,0,254,17,0,0,254,17,0,0,0,18,0,0,0,18,0,0,2,18,0,0,2,18,0,0,4,18,0,0,6,18,0,0,8,18,0,0,10,18,0,0,12,18,0,0,12,18,0,0,16,18,0,0,16,18,0,0,16,18,0,0,16,18,0,0,16,18,0,0,16,18,0,0,18,18,0,0,18,18,0,0,18,18,0,0,22,18,0,0,22,18,0,0,22,18,0,0,22,18,0,0,22,18,0,0,22,18,0,0,22,18,0,0,22,18,0,0,22,18,0,0,22,18,0,0,22,18,0,0,22,18,0,0,26,18,0,0,26,18,0,0,28,18,0,0,34,18,0,0,36,18,0,0,36,18,0,0,36,18,0,0,38,18,0,0,38,18,0,0,38,18,0,0,40,18,0,0,40,18,0,0,42,18,0,0,44,18,0,0,44,18,0,0,44,18,0,0,44,18,0,0,46,18,0,0,52,18,0,0,52,18,0,0,52,18,0,0,52,18,0,0,52,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,58,18,0,0,58,18,0,0,58,18,0,0,60,18,0,0,60,18,0,0,60,18,0,0,62,18,0,0,62,18,0,0,62,18,0,0,62,18,0,0,62,18,0,0,62,18,0,0,62,18,0,0,62,18,0,0,62,18,0,0,66,18,0,0,70,18,0,0,70,18,0,0,74,18,0,0,74,18,0,0,76,18,0,0,76,18,0,0,76,18,0,0,78,18,0,0,78,18,0,0,80,18,0,0,80,18,0,0,80,18,0,0,80,18,0,0,80,18,0,0,80,18,0,0,80,18,0,0,82,18,0,0,86,18,0,0,86,18,0,0,86,18,0,0,86,18,0,0,86,18,0,0,86,18,0,0,86,18,0,0,86,18,0,0,86,18,0,0,92,18,0,0,94,18,0,0,96,18,0,0,96,18,0,0,98,18,0,0,98,18,0,0,98,18,0,0,98,18,0,0,98,18,0,0,100,18,0,0,100,18,0,0,102,18,0,0,102,18,0,0,106,18,0,0,106,18,0,0,106,18,0,0,112,18,0,0,114,18,0,0,114,18,0,0,114,18,0,0,114,18,0,0,116,18,0,0,116,18,0,0,118,18,0,0,120,18,0,0,122,18,0,0,122,18,0,0,124,18,0,0,124,18,0,0,124,18,0,0,126,18,0,0,126,18,0,0,128,18,0,0,128,18,0,0,128,18,0,0,130,18,0,0,132,18,0,0,136,18,0,0,136,18,0,0,138,18,0,0,140,18,0,0,140,18,0,0,140,18,0,0,142,18,0,0,142,18,0,0,142,18,0,0,142,18,0,0,144,18,0,0,144,18,0,0,144,18,0,0,146,18,0,0,146,18,0,0,146,18,0,0,148,18,0,0,148,18,0,0,148,18,0,0,148,18,0,0,150,18,0,0,150,18,0,0,150,18,0,0,150,18,0,0,152,18,0,0,154,18,0,0,156,18,0,0,158,18,0,0,158,18,0,0,158,18,0,0,158,18,0,0,158,18,0,0,158,18,0,0,158,18,0,0,160,18,0,0,160,18,0,0,160,18,0,0,160,18,0,0,160,18,0,0,160,18,0,0,160,18,0,0,160,18,0,0,160,18,0,0,160,18,0,0,162,18,0,0,164,18,0,0,166,18,0,0,166,18,0,0,166,18,0,0,166,18,0,0,168,18,0,0,168,18,0,0,168,18,0,0,170,18,0,0,172,18,0,0,174,18,0,0,176,18,0,0,176,18,0,0,176,18,0,0,178,18,0,0,180,18,0,0,184,18,0,0,186,18,0,0,188,18,0,0,188,18,0,0,188,18,0,0,192,18,0,0,192,18,0,0,192,18,0,0,192,18,0,0,192,18,0,0,192,18,0,0,192,18,0,0,194,18,0,0,194,18,0,0,196,18,0,0,196,18,0,0,196,18,0,0,198,18,0,0,200,18,0,0,200,18,0,0,200,18,0,0,200,18,0,0,204,18,0,0,206,18,0,0,206,18,0,0,206,18,0,0,208,18,0,0,208,18,0,0,208,18,0,0,212,18,0,0,212,18,0,0,214,18,0,0,214,18,0,0,214,18,0,0,216,18,0,0,218,18,0,0,220,18,0,0,220,18,0,0,220,18,0,0,220,18,0,0,222,18,0,0,224,18,0,0,224,18,0,0,224,18,0,0,226,18,0,0,226,18,0,0,230,18,0,0,232,18,0,0,232,18,0,0,234,18,0,0,234,18,0,0,234,18,0,0,234,18,0,0,236,18,0,0,236,18,0,0,238,18,0,0,238,18,0,0,238,18,0,0,238,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,242,18,0,0,244,18,0,0,248,18,0,0,252,18,0,0,252,18,0,0,254,18,0,0,254,18,0,0,254,18,0,0,254,18,0,0,254,18,0,0,254,18,0,0,254,18,0,0,0,19,0,0,8,19,0,0,10,19,0,0,10,19,0,0,10,19,0,0,10,19,0,0,10,19,0,0,10,19,0,0,14,19,0,0,16,19,0,0,16,19,0,0,16,19,0,0,20,19,0,0,20,19,0,0,20,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,26,19,0,0,30,19,0,0,32,19,0,0,32,19,0,0,32,19,0,0,36,19,0,0,36,19,0,0,40,19,0,0,44,19,0,0,44,19,0,0,48,19,0,0,50,19,0,0,52,19,0,0,54,19,0,0,56,19,0,0,56,19,0,0,56,19,0,0,56,19,0,0,56,19,0,0,58,19,0,0,58,19,0,0,60,19,0,0,62,19,0,0,62,19,0,0,64,19,0,0,66,19,0,0,66,19,0,0,66,19,0,0,68,19,0,0,70,19,0,0,70,19,0,0,74,19,0,0,74,19,0,0,76,19,0,0,78,19,0,0,78,19,0,0,78,19,0,0,78,19,0,0,80,19,0,0,82,19,0,0,82,19,0,0,84,19,0,0,84,19,0,0,86,19,0,0,88,19,0,0,88,19,0,0,88,19,0,0,90,19,0,0,90,19,0,0,90,19,0,0,90,19,0,0,90,19,0,0,92,19,0,0,94,19,0,0,96,19,0,0,96,19,0,0,98,19,0,0,100,19,0,0,102,19,0,0,104,19,0,0,104,19,0,0,106,19,0,0,110,19,0,0,110,19,0,0,112,19,0,0,114,19,0,0,116,19,0,0,116,19,0,0,118,19,0,0,120,19,0,0,122,19,0,0,122,19,0,0,128,19,0,0,128,19,0,0,128,19,0,0,128,19,0,0,130,19,0,0,130,19,0,0,134,19,0,0,134,19,0,0,136,19,0,0,138,19,0,0,138,19,0,0,138,19,0,0,138,19,0,0,140,19,0,0,142,19,0,0,142,19,0,0,142,19,0,0,144,19,0,0,144,19,0,0,144,19,0,0,144,19,0,0,144,19,0,0,144,19,0,0,144,19,0,0,144,19,0,0,144,19,0,0,146,19,0,0,146,19,0,0,148,19,0,0,150,19,0,0,158,19,0,0,158,19,0,0,162,19,0,0,162,19,0,0,162,19,0,0,166,19,0,0,172,19,0,0,172,19,0,0,172,19,0,0,172,19,0,0,176,19,0,0,178,19,0,0,180,19,0,0,184,19,0,0,188,19,0,0,188,19,0,0,188,19,0,0,190,19,0,0,192,19,0,0,192,19,0,0,192,19,0,0,192,19,0,0,192,19,0,0,194,19,0,0,196,19,0,0,196,19,0,0,196,19,0,0,196,19,0,0,196,19,0,0,196,19,0,0,196,19,0,0,198,19,0,0,198,19,0,0,198,19,0,0,200,19,0,0,204,19,0,0,204,19,0,0,208,19,0,0,208,19,0,0,208,19,0,0,208,19,0,0,208,19,0,0,210,19,0,0,212,19,0,0,214,19,0,0,216,19,0,0,216,19,0,0,220,19,0,0,222,19,0,0,222,19,0,0,222,19,0,0,226,19,0,0,228,19,0,0,230,19,0,0,230,19,0,0,230,19,0,0,230,19,0,0,230,19,0,0,232,19,0,0,232,19,0,0,232,19,0,0,232,19,0,0,232,19,0,0,236,19,0,0,236,19,0,0,236,19,0,0,236,19,0,0,244,19,0,0,244,19,0,0,244,19,0,0,246,19,0,0,248,19,0,0,250,19,0,0,250,19,0,0,250,19,0,0,250,19,0,0,252,19,0,0,252,19,0,0,252,19,0,0,252,19,0,0,254,19,0,0,0,20,0,0,2,20,0,0,4,20,0,0,6,20,0,0,8,20,0,0,10,20,0,0,10,20,0,0,12,20,0,0,14,20,0,0,20,20,0,0,20,20,0,0,24,20,0,0,26,20,0,0,28,20,0,0,28,20,0,0,28,20,0,0,28,20,0,0,30,20,0,0,34,20,0,0,36,20,0,0,36,20,0,0,38,20,0,0,38,20,0,0,40,20,0,0,40,20,0,0,40,20,0,0,40,20,0,0,40,20,0,0,40,20,0,0,40,20,0,0,40,20,0,0,40,20,0,0,40,20,0,0,40,20,0,0,42,20,0,0,44,20,0,0,44,20,0,0,44,20,0,0,48,20,0,0,48,20,0,0,48,20,0,0,48,20,0,0,52,20,0,0,54,20,0,0,54,20,0,0,54,20,0,0,54,20,0,0,56,20,0,0,58,20,0,0,60,20,0,0,60,20,0,0,60,20,0,0,60,20,0,0,60,20,0,0,62,20,0,0,62,20,0,0,64,20,0,0,64,20,0,0,64,20,0,0,66,20,0,0,66,20,0,0,66,20,0,0,68,20,0,0,68,20,0,0,70,20,0,0,70,20,0,0,72,20,0,0,76,20,0,0,78,20,0,0,80,20,0,0,84,20,0,0,88,20,0,0,88,20,0,0,90,20,0,0,92,20,0,0,96,20,0,0,98,20,0,0,100,20,0,0,100,20,0,0,100,20,0,0,104,20,0,0,104,20,0,0,104,20,0,0,106,20,0,0,110,20,0,0,110,20,0,0,110,20,0,0,110,20,0,0,110,20,0,0,110,20,0,0,110,20,0,0,112,20,0,0,114,20,0,0,114,20,0,0,114,20,0,0,118,20,0,0,118,20,0,0,118,20,0,0,120,20,0,0,122,20,0,0,122,20,0,0,122,20,0,0,124,20,0,0,124,20,0,0,124,20,0,0,126,20,0,0,130,20,0,0,130,20,0,0,130,20,0,0,130,20,0,0,132,20,0,0,132,20,0,0,132,20,0,0,134,20,0,0,136,20,0,0,136,20,0,0,136,20,0,0,136,20,0,0,138,20,0,0,138,20,0,0,138,20,0,0,138,20,0,0,140,20,0,0,140,20,0,0,144,20,0,0,144,20,0,0,144,20,0,0,144,20,0,0,144,20,0,0,144,20,0,0,144,20,0,0,144,20,0,0,146,20,0,0,146,20,0,0,148,20,0,0,148,20,0,0,150,20,0,0,150,20,0,0,152,20,0,0,152,20,0,0,152,20,0,0,154,20,0,0,154,20,0,0,154,20,0,0,156,20,0,0,158,20,0,0,158,20,0,0,158,20,0,0,160,20,0,0,164,20,0,0,166,20,0,0,170,20,0,0,170,20,0,0,172,20,0,0,176,20,0,0,176,20,0,0,176,20,0,0,176,20,0,0,178,20,0,0,180,20,0,0,180,20,0,0,180,20,0,0,180,20,0,0,180,20,0,0,180,20,0,0,180,20,0,0,182,20,0,0,182,20,0,0,182,20,0,0,182,20,0,0,184,20,0,0,184,20,0,0,184,20,0,0,184,20,0,0,184,20,0,0,184,20,0,0,186,20,0,0,188,20,0,0,190,20,0,0,192,20,0,0,192,20,0,0,194,20,0,0,194,20,0,0,194,20,0,0,194,20,0,0,194,20,0,0,196,20,0,0,196,20,0,0,196,20,0,0,200,20,0,0,202,20,0,0,202,20,0,0,202,20,0,0,202,20,0,0,202,20,0,0,204,20,0,0,204,20,0,0,204,20,0,0,206,20,0,0,206,20,0,0,208,20,0,0,208,20,0,0,208,20,0,0,208,20,0,0,210,20,0,0,210,20,0,0,212,20,0,0,212,20,0,0,212,20,0,0,212,20,0,0,212,20,0,0,212,20,0,0,214,20,0,0,214,20,0,0,214,20,0,0,216,20,0,0,218,20,0,0,218,20,0,0,218,20,0,0,222,20,0,0,222,20,0,0,224,20,0,0,224,20,0,0,224,20,0,0,224,20,0,0,224,20,0,0,226,20,0,0,228,20,0,0,230,20,0,0,232,20,0,0,232,20,0,0,232,20,0,0,232,20,0,0,232,20,0,0,234,20,0,0,234,20,0,0,236,20,0,0,236,20,0,0,236,20,0,0,238,20,0,0,238,20,0,0,238,20,0,0,240,20,0,0,240,20,0,0,240,20,0,0,240,20,0,0,240,20,0,0,242,20,0,0,242,20,0,0,248,20,0,0,248,20,0,0,248,20,0,0,248,20,0,0,248,20,0,0,248,20,0,0,248,20,0,0,248,20,0,0,248,20,0,0,250,20,0,0,250,20,0,0,252,20,0,0,254,20,0,0,0,21,0,0,2,21,0,0,2,21,0,0,2,21,0,0,2,21,0,0,4,21,0,0,6,21,0,0,10,21,0,0,10,21,0,0,12,21,0,0,12,21,0,0,14,21,0,0,14,21,0,0,18,21,0,0,18,21,0,0,20,21,0,0,22,21,0,0,24,21,0,0,26,21,0,0,26,21,0,0,28,21,0,0,28,21,0,0,28,21,0,0,30,21,0,0,30,21,0,0,30,21,0,0,32,21,0,0,34,21,0,0,36,21,0,0,36,21,0,0,36,21,0,0,36,21,0,0,36,21,0,0,36,21,0,0,38,21,0,0,40,21,0,0,40,21,0,0,42,21,0,0,42,21,0,0,42,21,0,0,42,21,0,0,46,21,0,0,48,21,0,0,48,21,0,0,48,21,0,0,48,21,0,0,50,21,0,0,50,21,0,0,52,21,0,0,54,21,0,0,54,21,0,0,56,21,0,0,58,21,0,0,60,21,0,0,60,21,0,0,60,21,0,0,62,21,0,0,64,21,0,0,68,21,0,0,70,21,0,0,72,21,0,0,72,21,0,0,72,21,0,0,72,21,0,0,76,21,0,0,80,21,0,0,84,21,0,0,86,21,0,0,86,21,0,0,86,21,0,0,88,21,0,0,88,21,0,0,88,21,0,0,90,21,0,0,90,21,0,0,92,21,0,0,94,21,0,0,96,21,0,0,96,21,0,0,96,21,0,0,100,21,0,0,100,21,0,0,100,21,0,0,100,21,0,0,102,21,0,0,102,21,0,0,104,21,0,0,110,21,0,0,110,21,0,0,110,21,0,0,114,21,0,0,114,21,0,0,116,21,0,0,118,21,0,0,120,21,0,0,120,21,0,0,122,21,0,0,124,21,0,0,126,21,0,0,128,21,0,0,128,21,0,0,128,21,0,0,128,21,0,0,130,21,0,0,132,21,0,0,132,21,0,0,132,21,0,0,132,21,0,0,132,21,0,0,132,21,0,0,134,21,0,0,134,21,0,0,134,21,0,0,134,21,0,0,136,21,0,0,136,21,0,0,136,21,0,0,138,21,0,0,138,21,0,0,138,21,0,0,138,21,0,0,140,21,0,0,140,21,0,0,140,21,0,0,140,21,0,0,140,21,0,0,140,21,0,0,142,21,0,0,142,21,0,0,142,21,0,0,142,21,0,0,144,21,0,0,146,21,0,0,146,21,0,0,148,21,0,0,148,21,0,0,148,21,0,0,148,21,0,0,148,21,0,0,150,21,0,0,150,21,0,0,152,21,0,0,152,21,0,0,152,21,0,0,154,21,0,0,156,21,0,0,156,21,0,0,158,21,0,0,158,21,0,0,158,21,0,0,158,21,0,0,158,21,0,0,160,21,0,0,162,21,0,0,162,21,0,0,162,21,0,0,162,21,0,0,162,21,0,0,164,21,0,0,164,21,0,0,164,21,0,0,170,21,0,0,170,21,0,0,172,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,178,21,0,0,178,21,0,0,180,21,0,0,184,21,0,0,184,21,0,0,190,21,0,0,192,21,0,0,192,21,0,0,192,21,0,0,192,21,0,0,194,21,0,0,194,21,0,0,194,21,0,0,196,21,0,0,196,21,0,0,196,21,0,0,198,21,0,0,198,21,0,0,200,21,0,0,200,21,0,0,200,21,0,0,200,21,0,0,200,21,0,0,200,21,0,0,200,21,0,0,202,21,0,0,204,21,0,0,208,21,0,0,208,21,0,0,208,21,0,0,208,21,0,0,208,21,0,0,208,21,0,0,212,21,0,0,214,21,0,0,216,21,0,0,218,21,0,0,222,21,0,0,222,21,0,0,222,21,0,0,222,21,0,0,224,21,0,0,224,21,0,0,226,21,0,0,226,21,0,0,230,21,0,0,230,21,0,0,232,21,0,0,232,21,0,0,234,21,0,0,236,21,0,0,236,21,0,0,236,21,0,0,236,21,0,0,236,21,0,0,236,21,0,0,240,21,0,0,242,21,0,0,244,21,0,0,244,21,0,0,244,21,0,0,246,21,0,0,246,21,0,0,246,21,0,0,248,21,0,0,248,21,0,0,248,21,0,0,248,21,0,0,248,21,0,0,248,21,0,0,252,21,0,0,252,21,0,0,252,21,0,0,252,21,0,0,252,21,0,0,254,21,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,2,22,0,0,4,22,0,0,4,22,0,0,4,22,0,0,6,22,0,0,6,22,0,0,6,22,0,0,6,22,0,0,6,22,0,0,6,22,0,0,6,22,0,0,6,22,0,0,6,22,0,0,6,22,0,0,6,22,0,0,6,22,0,0,8,22,0,0,8,22,0,0,8,22,0,0,8,22,0,0,10,22,0,0,10,22,0,0,12,22,0,0,12,22,0,0,12,22,0,0,12,22,0,0,12,22,0,0,12,22,0,0,12,22,0,0,14,22,0,0,14,22,0,0,18,22,0,0,18,22,0,0,20,22,0,0,22,22,0,0,24,22,0,0,26,22,0,0,28,22,0,0,30,22,0,0,30,22,0,0,30,22,0,0,30,22,0,0,30,22,0,0,30,22,0,0,30,22,0,0,30,22,0,0,30,22,0,0,30,22,0,0,32,22,0,0,32,22,0,0,32,22,0,0,34,22,0,0,34,22,0,0,34,22,0,0,36,22,0,0,36,22,0,0,38,22,0,0,38,22,0,0,40,22,0,0,52,22,0,0,52,22,0,0,52,22,0,0,52,22,0,0,52,22,0,0,52,22,0,0,56,22,0,0,56,22,0,0,56,22,0,0,58,22,0,0,62,22,0,0,62,22,0,0,64,22,0,0,64,22,0,0,72,22,0,0,74,22,0,0,76,22,0,0,76,22,0,0,98,22,0,0,100,22,0,0,102,22,0,0,102,22,0,0,102,22,0,0,104,22,0,0,104,22,0,0,104,22,0,0,104,22,0,0,104,22,0,0,108,22,0,0,110,22,0,0,112,22,0,0,112,22,0,0,114,22,0,0,116,22,0,0,116,22,0,0,122,22,0,0,122,22,0,0,124,22,0,0,124,22,0,0,124,22,0,0,124,22,0,0,124,22,0,0,124,22,0,0,124,22,0,0,124,22,0,0,124,22,0,0,124,22,0,0,126,22,0,0,126,22,0,0,128,22,0,0,132,22,0,0,132,22,0,0,132,22,0,0,132,22,0,0,134,22,0,0,136,22,0,0,136,22,0,0,136,22,0,0,136,22,0,0,136,22,0,0,138,22,0,0,140,22,0,0,142,22,0,0,144,22,0,0,146,22,0,0,146,22,0,0,146,22,0,0,148,22,0,0,148,22,0,0,150,22,0,0,152,22,0,0,152,22,0,0,152,22,0,0,158,22,0,0,158,22,0,0,158,22,0,0,158,22,0,0,158,22,0,0,158,22,0,0,158,22,0,0,160,22,0,0,160,22,0,0,160,22,0,0,162,22,0,0,162,22,0,0,162,22,0,0,162,22,0,0,164,22,0,0,166,22,0,0,170,22,0,0,170,22,0,0,170,22,0,0,172,22,0,0,172,22,0,0,172,22,0,0,172,22,0,0,176,22,0,0,176,22,0,0,180,22,0,0,180,22,0,0,180,22,0,0,180,22,0,0,180,22,0,0,182,22,0,0,184,22,0,0,184,22,0,0,186,22,0,0,190,22,0,0,190,22,0,0,192,22,0,0,192,22,0,0,192,22,0,0,194,22,0,0,194,22,0,0,194,22,0,0,196,22,0,0,196,22,0,0,196,22,0,0,196,22,0,0,198,22,0,0,198,22,0,0,198,22,0,0,200,22,0,0,200,22,0,0,200,22,0,0,200,22,0,0,200,22,0,0,202,22,0,0,202,22,0,0,202,22,0,0,206,22,0,0,210,22,0,0,210,22,0,0,210,22,0,0,210,22,0,0,212,22,0,0,212,22,0,0,212,22,0,0,214,22,0,0,214,22,0,0,214,22,0,0,214,22,0,0,222,22,0,0,222,22,0,0,224,22,0,0,224,22,0,0,224,22,0,0,226,22,0,0,226,22,0,0,228,22,0,0,230,22,0,0,230,22,0,0,230,22,0,0,232,22,0,0,232,22,0,0,232,22,0,0,232,22,0,0,234,22,0,0,234,22,0,0,234,22,0,0,234,22,0,0,234,22,0,0,234,22,0,0,234,22,0,0,234,22,0,0,234,22,0,0,234,22,0,0,234,22,0,0,234,22,0,0,236,22,0,0,236,22,0,0,236,22,0,0,240,22,0,0,240,22,0,0,240,22,0,0,240,22,0,0,240,22,0,0,242,22,0,0,242,22,0,0,244,22,0,0,246,22,0,0,246,22,0,0,248,22,0,0,250,22,0,0,252,22,0,0,254,22,0,0,254,22,0,0,0,23,0,0,0,23,0,0,0,23,0,0,0,23,0,0,2,23,0,0,4,23,0,0,4,23,0,0,6,23,0,0,6,23,0,0,6,23,0,0,8,23,0,0,10,23,0,0,12,23,0,0,14,23,0,0,14,23,0,0,16,23,0,0,16,23,0,0,20,23,0,0,20,23,0,0,20,23,0,0,22,23,0,0,22,23,0,0,22,23,0,0,24,23,0,0,24,23,0,0,26,23,0,0,26,23,0,0,28,23,0,0,30,23,0,0,30,23,0,0,30,23,0,0,32,23,0,0,32,23,0,0,32,23,0,0,32,23,0,0,32,23,0,0,34,23,0,0,34,23,0,0,36,23,0,0,38,23,0,0,38,23,0,0,38,23,0,0,40,23,0,0,40,23,0,0,46,23,0,0,50,23,0,0,50,23,0,0,50,23,0,0,50,23,0,0,50,23,0,0,54,23,0,0,54,23,0,0,54,23,0,0,54,23,0,0,54,23,0,0,54,23,0,0,56,23,0,0,58,23,0,0,58,23,0,0,58,23,0,0,58,23,0,0,58,23,0,0,60,23,0,0,62,23,0,0,62,23,0,0,66,23,0,0,68,23,0,0,68,23,0,0,68,23,0,0,68,23,0,0,68,23,0,0,68,23,0,0,68,23,0,0,68,23,0,0,70,23,0,0,70,23,0,0,70,23,0,0,70,23,0,0,72,23,0,0,72,23,0,0,78,23,0,0,80,23,0,0,80,23,0,0,80,23,0,0,80,23,0,0,82,23,0,0,82,23,0,0,82,23,0,0,82,23,0,0,86,23,0,0,86,23,0,0,86,23,0,0,86,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,90,23,0,0,90,23,0,0,92,23,0,0,94,23,0,0,96,23,0,0,96,23,0,0,96,23,0,0,96,23,0,0,96,23,0,0,98,23,0,0,98,23,0,0,98,23,0,0,98,23,0,0,98,23,0,0,98,23,0,0,98,23,0,0,98,23,0,0,98,23,0,0,98,23,0,0,98,23,0,0,102,23,0,0,104,23,0,0,104,23,0,0,106,23,0,0,108,23,0,0,110,23,0,0,112,23,0,0,112,23,0,0,112,23,0,0,118,23,0,0,118,23,0,0,120,23,0,0,120,23,0,0,120,23,0,0,122,23,0,0,122,23,0,0,122,23,0,0,122,23,0,0,122,23,0,0,122,23,0,0,122,23,0,0,124,23,0,0,124,23,0,0,124,23,0,0,124,23,0,0,124,23,0,0,124,23,0,0,124,23,0,0,124,23,0,0,130,23,0,0,130,23,0,0,132,23,0,0,134,23,0,0,136,23,0,0,136,23,0,0,136,23,0,0,140,23,0,0,140,23,0,0,140,23,0,0,142,23,0,0,144,23,0,0,148,23,0,0,148,23,0,0,148,23,0,0,148,23,0,0,148,23,0,0,150,23,0,0,150,23,0,0,150,23,0,0,152,23,0,0,152,23,0,0,152,23,0,0,152,23,0,0,156,23,0,0,156,23,0,0,160,23,0,0,160,23,0,0,162,23,0,0,162,23,0,0,162,23,0,0,162,23,0,0,162,23,0,0,166,23,0,0,170,23,0,0,172,23,0,0,172,23,0,0,172,23,0,0,174,23,0,0,178,23,0,0,178,23,0,0,180,23,0,0,180,23,0,0,182,23,0,0,182,23,0,0,182,23,0,0,182,23,0,0,186,23,0,0,186,23,0,0,190,23,0,0,194,23,0,0,194,23,0,0,194,23,0,0,194,23,0,0,194,23,0,0,196,23,0,0,196,23,0,0,196,23,0,0,196,23,0,0,198,23,0,0,200,23,0,0,200,23,0,0,204,23,0,0,204,23,0,0,204,23,0,0,204,23,0,0,204,23,0,0,204,23,0,0,206,23,0,0,206,23,0,0,206,23,0,0,206,23,0,0,206,23,0,0,206,23,0,0,206,23,0,0,206,23,0,0,206,23,0,0,208,23,0,0,210,23,0,0,212,23,0,0,214,23,0,0,216,23,0,0,218,23,0,0,218,23,0,0,218,23,0,0,218,23,0,0,218,23,0,0,218,23,0,0,218,23,0,0,220,23,0,0,220,23,0,0,220,23,0,0,220,23,0,0,220,23,0,0,220,23,0,0,220,23,0,0,222,23,0,0,224,23,0,0,224,23,0,0,224,23,0,0,228,23,0,0,228,23,0,0,228,23,0,0,228,23,0,0,228,23,0,0,228,23,0,0,228,23,0,0,228,23,0,0,230,23,0,0,230,23,0,0,230,23,0,0,230,23,0,0,232,23,0,0,232,23,0,0,234,23,0,0,238,23,0,0,238,23,0,0,240,23,0,0,240,23,0,0,240,23,0,0,244,23,0,0,244,23,0,0,244,23,0,0,246,23,0,0,246,23,0,0,246,23,0,0,246,23,0,0,246,23,0,0,250,23,0,0,252,23,0,0,252,23,0,0,252,23,0,0,254,23,0,0,254,23,0,0,254,23,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,2,24,0,0,4,24,0,0,4,24,0,0,6,24,0,0,6,24,0,0,8,24,0,0,10,24,0,0,10,24,0,0,10,24,0,0,12,24,0,0,14,24,0,0,18,24,0,0,20,24,0,0,22,24,0,0,24,24,0,0,24,24,0,0,24,24,0,0,24,24,0,0,24,24,0,0,24,24,0,0,24,24,0,0,24,24,0,0,26,24,0,0,28,24,0,0,30,24,0,0,32,24,0,0,32,24,0,0,34,24,0,0,34,24,0,0,34,24,0,0,34,24,0,0,34,24,0,0,36,24,0,0,36,24,0,0,38,24,0,0,38,24,0,0,40,24,0,0,40,24,0,0,42,24,0,0,44,24,0,0,44,24,0,0,44,24,0,0,44,24,0,0,46,24,0,0,48,24,0,0,48,24,0,0,50,24,0,0,50,24,0,0,50,24,0,0,50,24,0,0,50,24,0,0,50,24,0,0,52,24,0,0,52,24,0,0,52,24,0,0,52,24,0,0,52,24,0,0,52,24,0,0,52,24,0,0,52,24,0,0,52,24,0,0,52,24,0,0,52,24,0,0,52,24,0,0,52,24,0,0,52,24,0,0,52,24,0,0,56,24,0,0,60,24,0,0,60,24,0,0,60,24,0,0,62,24,0,0,68,24,0,0,70,24,0,0,70,24,0,0,72,24,0,0,72,24,0,0,72,24,0,0,72,24,0,0,74,24,0,0,78,24,0,0,78,24,0,0,78,24,0,0,78,24,0,0,78,24,0,0,80,24,0,0,82,24,0,0,82,24,0,0,82,24,0,0,86,24,0,0,86,24,0,0,86,24,0,0,90,24,0,0,90,24,0,0,90,24,0,0,90,24,0,0,92,24,0,0,92,24,0,0,92,24,0,0,92,24,0,0,94,24,0,0,94,24,0,0,94,24,0,0,100,24,0,0,100,24,0,0,100,24,0,0,104,24,0,0,106,24,0,0,108,24,0,0,108,24,0,0,108,24,0,0,108,24,0,0,108,24,0,0,112,24,0,0,114,24,0,0,114,24,0,0,118,24,0,0,120,24,0,0,122,24,0,0,122,24,0,0,122,24,0,0,124,24,0,0,126,24,0,0,128,24,0,0,130,24,0,0,132,24,0,0,134,24,0,0,136,24,0,0,138,24,0,0,140,24,0,0,140,24,0,0,140,24,0,0,140,24,0,0,140,24,0,0,142,24,0,0,142,24,0,0,144,24,0,0,146,24,0,0,146,24,0,0,146,24,0,0,146,24,0,0,146,24,0,0,146,24,0,0,148,24,0,0,148,24,0,0,148,24,0,0,150,24,0,0,150,24,0,0,150,24,0,0,150,24,0,0,150,24,0,0,150,24,0,0,154,24,0,0,154,24,0,0,158,24,0,0,158,24,0,0,158,24,0,0,160,24,0,0,160,24,0,0,160,24,0,0,160,24,0,0,160,24,0,0,160,24,0,0,160,24,0,0,160,24,0,0,160,24,0,0,160,24,0,0,160,24,0,0,164,24,0,0,164,24,0,0,164,24,0,0,166,24,0,0,168,24,0,0,168,24,0,0,168,24,0,0,170,24,0,0,174,24,0,0,174,24,0,0,176,24,0,0,176,24,0,0,176,24,0,0,176,24,0,0,176,24,0,0,176,24,0,0,176,24,0,0,176,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,184,24,0,0,188,24,0,0,188,24,0,0,188,24,0,0,190,24,0,0,190,24,0,0,190,24,0,0,192,24,0,0,192,24,0,0,192,24,0,0,192,24,0,0,192,24,0,0,192,24,0,0,194,24,0,0,194,24,0,0,198,24,0,0,198,24,0,0,198,24,0,0,198,24,0,0,198,24,0,0,198,24,0,0,200,24,0,0,202,24,0,0,202,24,0,0,202,24,0,0,208,24,0,0,210,24,0,0,212,24,0,0,212,24,0,0,212,24,0,0,214,24,0,0,214,24,0,0,214,24,0,0,214,24,0,0,216,24,0,0,216,24,0,0,216,24,0,0,216,24,0,0,216,24,0,0,216,24,0,0,216,24,0,0,216,24,0,0,216,24,0,0,216,24,0,0,218,24,0,0,218,24,0,0,218,24,0,0,218,24,0,0,220,24,0,0,220,24,0,0,220,24,0,0,222,24,0,0,222,24,0,0,226,24,0,0,226,24,0,0,226,24,0,0,228,24,0,0,228,24,0,0,230,24,0,0,230,24,0,0,230,24,0,0,232,24,0,0,232,24,0,0,232,24,0,0,232,24,0,0,232,24,0,0,232,24,0,0,234,24,0,0,234,24,0,0,234,24,0,0,236,24,0,0,236,24,0,0,238,24,0,0,240,24,0,0,242,24,0,0,244,24,0,0,246,24,0,0,246,24,0,0,246,24,0,0,248,24,0,0,248,24,0,0,254,24,0,0,254,24,0,0,254,24,0,0,254,24,0,0,2,25,0,0,2,25,0,0,2,25,0,0,2,25,0,0,4,25,0,0,8,25,0,0,8,25,0,0,16,25,0,0,18,25,0,0,22,25,0,0,24,25,0,0,24,25,0,0,24,25,0,0,26,25,0,0,26,25,0,0,28,25,0,0,30,25,0,0,32,25,0,0,32,25,0,0,32,25,0,0,32,25,0,0,34,25,0,0,38,25,0,0,40,25,0,0,40,25,0,0,44,25,0,0,44,25,0,0,44,25,0,0,44,25,0,0,46,25,0,0,48,25,0,0,48,25,0,0,48,25,0,0,48,25,0,0,48,25,0,0,48,25,0,0,48,25,0,0,50,25,0,0,50,25,0,0,50,25,0,0,50,25,0,0,50,25,0,0,50,25,0,0,52,25,0,0,52,25,0,0,52,25,0,0,52,25,0,0,52,25,0,0,52,25,0,0,52,25,0,0,56,25,0,0,56,25,0,0,56,25,0,0,58,25,0,0,58,25,0,0,58,25,0,0,60,25,0,0,60,25,0,0,60,25,0,0,62,25,0,0,62,25,0,0,64,25,0,0,66,25,0,0,68,25,0,0,68,25,0,0,72,25,0,0,76,25,0,0,76,25,0,0,76,25,0,0,76,25,0,0,76,25,0,0,76,25,0,0,78,25,0,0,78,25,0,0,78,25,0,0,78,25,0,0,80,25,0,0,82,25,0,0,82,25,0,0,84,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,92,25,0,0,94,25,0,0,94,25,0,0,94,25,0,0,94,25,0,0,94,25,0,0,98,25,0,0,98,25,0,0,98,25,0,0,100,25,0,0,100,25,0,0,100,25,0,0,102,25,0,0,102,25,0,0,102,25,0,0,104,25,0,0,106,25,0,0,108,25,0,0,110,25,0,0,110,25,0,0,110,25,0,0,110,25,0,0,110,25,0,0,110,25,0,0,112,25,0,0,112,25,0,0,112,25,0,0,114,25,0,0,114,25,0,0,116,25,0,0,122,25,0,0,124,25,0,0,124,25,0,0,126,25,0,0,126,25,0,0,126,25,0,0,126,25,0,0,126,25,0,0,128,25,0,0,128,25,0,0,128,25,0,0,128,25,0,0,128,25,0,0,130,25,0,0,130,25,0,0,130,25,0,0,130,25,0,0,130,25,0,0,130,25,0,0,132,25,0,0,132,25,0,0,136,25,0,0,136,25,0,0,138,25,0,0,140,25,0,0,144,25,0,0,146,25,0,0,146,25,0,0,146,25,0,0,146,25,0,0,146,25,0,0,146,25,0,0,148,25,0,0,148,25,0,0,150,25,0,0,150,25,0,0,150,25,0,0,150,25,0,0,152,25,0,0,152,25,0,0,152,25,0,0,152,25,0,0,154,25,0,0,154,25,0,0,154,25,0,0,156,25,0,0,156,25,0,0,156,25,0,0,156,25,0,0,156,25,0,0,156,25,0,0,156,25,0,0,160,25,0,0,162,25,0,0,162,25,0,0,164,25,0,0,166,25,0,0,166,25,0,0,168,25,0,0,168,25,0,0,168,25,0,0,168,25,0,0,168,25,0,0,168,25,0,0,168,25,0,0,168,25,0,0,170,25,0,0,170,25,0,0,172,25,0,0,172,25,0,0,176,25,0,0,178,25,0,0,178,25,0,0,178,25,0,0,180,25,0,0,182,25,0,0,182,25,0,0,182,25,0,0,182,25,0,0,182,25,0,0,182,25,0,0,186,25,0,0,186,25,0,0,186,25,0,0,188,25,0,0,190,25,0,0,192,25,0,0,192,25,0,0,194,25,0,0,196,25,0,0,196,25,0,0,196,25,0,0,198,25,0,0,198,25,0,0,198,25,0,0,198,25,0,0,198,25,0,0,200,25,0,0,200,25,0,0,202,25,0,0,202,25,0,0,202,25,0,0,202,25,0,0,206,25,0,0,208,25,0,0,208,25,0,0,208,25,0,0,210,25,0,0,210,25,0,0,212,25,0,0,212,25,0,0,212,25,0,0,212,25,0,0,212,25,0,0,214,25,0,0,218,25,0,0,220,25,0,0,222,25,0,0,222,25,0,0,222,25,0,0,222,25,0,0,222,25,0,0,222,25,0,0,222,25,0,0,222,25,0,0,222,25,0,0,222,25,0,0,228,25,0,0,230,25,0,0,232,25,0,0,232,25,0,0,232,25,0,0,234,25,0,0,234,25,0,0,236,25,0,0,236,25,0,0,238,25,0,0,240,25,0,0,242,25,0,0,244,25,0,0,244,25,0,0,246,25,0,0,246,25,0,0,248,25,0,0,250,25,0,0,250,25,0,0,250,25,0,0,250,25,0,0,252,25,0,0,252,25,0,0,252,25,0,0,254,25,0,0,254,25,0,0,254,25,0,0,254,25,0,0,4,26,0,0,6,26,0,0,8,26,0,0,8,26,0,0,10,26,0,0,12,26,0,0,12,26,0,0,16,26,0,0,18,26,0,0,22,26,0,0,22,26,0,0,22,26,0,0,24,26,0,0,24,26,0,0,24,26,0,0,28,26,0,0,28,26,0,0,30,26,0,0,30,26,0,0,32,26,0,0,36,26,0,0,40,26,0,0,44,26,0,0,46,26,0,0,46,26,0,0,46,26,0,0,46,26,0,0,46,26,0,0,46,26,0,0,50,26,0,0,50,26,0,0,50,26,0,0,52,26,0,0,54,26,0,0,54,26,0,0,56,26,0,0,56,26,0,0,60,26,0,0,62,26,0,0,62,26,0,0,62,26,0,0,62,26,0,0,64,26,0,0,64,26,0,0,64,26,0,0,64,26,0,0,64,26,0,0,64,26,0,0,66,26,0,0,66,26,0,0,66,26,0,0,68,26,0,0,70,26,0,0,70,26,0,0,72,26,0,0,78,26,0,0,78,26,0,0,78,26,0,0,78,26,0,0,78,26,0,0,78,26,0,0,78,26,0,0,80,26,0,0,80,26,0,0,80,26,0,0,80,26,0,0,80,26,0,0,84,26,0,0,84,26,0,0,86,26,0,0,86,26,0,0,86,26,0,0,86,26,0,0,86,26,0,0,88,26,0,0,90,26,0,0,92,26,0,0,92,26,0,0,94,26,0,0,94,26,0,0,94,26,0,0,96,26,0,0,98,26,0,0,100,26,0,0,102,26,0,0,102,26,0,0,102,26,0,0,102,26,0,0,102,26,0,0,102,26,0,0,102,26,0,0,102,26,0,0,104,26,0,0,106,26,0,0,106,26,0,0,110,26,0,0,110,26,0,0,110,26,0,0,116,26,0,0,118,26,0,0,118,26,0,0,118,26,0,0,120,26,0,0,124,26,0,0,128,26,0,0,128,26,0,0,128,26,0,0,130,26,0,0,130,26,0,0,132,26,0,0,132,26,0,0,132,26,0,0,132,26,0,0,134,26,0,0,138,26,0,0,138,26,0,0,140,26,0,0,140,26,0,0,140,26,0,0,140,26,0,0,140,26,0,0,142,26,0,0,144,26,0,0,146,26,0,0,146,26,0,0,154,26,0,0,154,26,0,0,158,26,0,0,160,26,0,0,162,26,0,0,162,26,0,0,162,26,0,0,162,26,0,0,162,26,0,0,164,26,0,0,164,26,0,0,164,26,0,0,164,26,0,0,164,26,0,0,166,26,0,0,166,26,0,0,168,26,0,0,168,26,0,0,174,26,0,0,176,26,0,0,176,26,0,0,178,26,0,0,178,26,0,0,178,26,0,0,178,26,0,0,178,26,0,0,180,26,0,0,182,26,0,0,182,26,0,0,182,26,0,0,184,26,0,0,184,26,0,0,186,26,0,0,190,26,0,0,190,26,0,0,190,26,0,0,192,26,0,0,192,26,0,0,192,26,0,0,194,26,0,0,194,26,0,0,194,26,0,0,194,26,0,0,194,26,0,0,194,26,0,0,194,26,0,0,196,26,0,0,196,26,0,0,198,26,0,0,198,26,0,0,200,26,0,0,200,26,0,0,202,26,0,0,202,26,0,0,206,26,0,0,208,26,0,0,210,26,0,0,210,26,0,0,210,26,0,0,210,26,0,0,210,26,0,0,212,26,0,0,214,26,0,0,216,26,0,0,218,26,0,0,222,26,0,0,224,26,0,0,224,26,0,0,226,26,0,0,230,26,0,0,230,26,0,0,232,26,0,0,232,26,0,0,234,26,0,0,234,26,0,0,234,26,0,0,236,26,0,0,236,26,0,0,238,26,0,0,238,26,0,0,240,26,0,0,240,26,0,0,240,26,0,0,240,26,0,0,242,26,0,0,244,26,0,0,248,26,0,0,250,26,0,0,250,26,0,0,250,26,0,0,250,26,0,0,250,26,0,0,254,26,0,0,254,26,0,0,254,26,0,0,254,26,0,0,254,26,0,0,254,26,0,0,0,27,0,0,2,27,0,0,4,27,0,0,4,27,0,0,6,27,0,0,8,27,0,0,8,27,0,0,8,27,0,0,8,27,0,0,10,27,0,0,12,27,0,0,14,27,0,0,14,27,0,0,14,27,0,0,16,27,0,0,16,27,0,0,16,27,0,0,16,27,0,0,16,27,0,0,16,27,0,0,16,27,0,0,16,27,0,0,16,27,0,0,16,27,0,0,16,27,0,0,18,27,0,0,18,27,0,0,22,27,0,0,24,27,0,0,26,27,0,0,26,27,0,0,28,27,0,0,30,27,0,0,32,27,0,0,32,27,0,0,32,27,0,0,34,27,0,0,36,27,0,0,36,27,0,0,36,27,0,0,36,27,0,0,36,27,0,0,36,27,0,0,36,27,0,0,36,27,0,0,36,27,0,0,40,27,0,0,40,27,0,0,40,27,0,0,40,27,0,0,42,27,0,0,46,27,0,0,46,27,0,0,48,27,0,0,48,27,0,0,48,27,0,0,48,27,0,0,48,27,0,0,50,27,0,0,52,27,0,0,52,27,0,0,54,27,0,0,56,27,0,0,62,27,0,0,62,27,0,0,62,27,0,0,62,27,0,0,64,27,0,0,68,27,0,0,68,27,0,0,68,27,0,0,70,27,0,0,72,27,0,0,74,27,0,0,74,27,0,0,74,27,0,0,76,27,0,0,76,27,0,0,78,27,0,0,80,27,0,0,82,27,0,0,82,27,0,0,86,27,0,0,86,27,0,0,86,27,0,0,86,27,0,0,86,27,0,0,86,27,0,0,86,27,0,0,86,27,0,0,86,27,0,0,86,27,0,0,86,27,0,0,88,27,0,0,88,27,0,0,88,27,0,0,90,27,0,0,92,27,0,0,92,27,0,0,92,27,0,0,94,27,0,0,96,27,0,0,96,27,0,0,96,27,0,0,96,27,0,0,96,27,0,0,96,27,0,0,98,27,0,0,100,27,0,0,104,27,0,0,104,27,0,0,106,27,0,0,106,27,0,0,110,27,0,0,110,27,0,0,112,27,0,0,116,27,0,0,116,27,0,0,118,27,0,0,118,27,0,0,118,27,0,0,118,27,0,0,118,27,0,0,122,27,0,0,124,27,0,0,126,27,0,0,130,27,0,0,130,27,0,0,130,27,0,0,130,27,0,0,132,27,0,0,134,27,0,0,134,27,0,0,134,27,0,0,138,27,0,0,140,27,0,0,140,27,0,0,142,27,0,0,148,27,0,0,148,27,0,0,148,27,0,0,148,27,0,0,150,27,0,0,150,27,0,0,150,27,0,0,150,27,0,0,150,27,0,0,150,27,0,0,150,27,0,0,150,27,0,0,150,27,0,0,150,27,0,0,152,27,0,0,152,27,0,0,152,27,0,0,152,27,0,0,154,27,0,0,154,27,0,0,156,27,0,0,156,27,0,0,156,27,0,0,156,27,0,0,156,27,0,0,156,27,0,0,156,27,0,0,156,27,0,0,156,27,0,0,156,27,0,0,158,27,0,0,158,27,0,0,158,27,0,0,162,27,0,0,164,27,0,0,164,27,0,0,166,27,0,0,168,27,0,0,170,27,0,0,170,27,0,0,170,27,0,0,170,27,0,0,170,27,0,0,170,27,0,0,172,27,0,0,174,27,0,0,174,27,0,0,176,27,0,0,176,27,0,0,178,27,0,0,178,27,0,0,178,27,0,0,178,27,0,0,180,27,0,0,182,27,0,0,182,27,0,0,182,27,0,0,182,27,0,0,184,27,0,0,184,27,0,0,186,27,0,0,186,27,0,0,186,27,0,0,186,27,0,0,186,27,0,0,186,27,0,0,188,27,0,0,190,27,0,0,192,27,0,0,194,27,0,0,194,27,0,0,194,27,0,0,194,27,0,0,196,27,0,0,196,27,0,0,196,27,0,0,196,27,0,0,198,27,0,0,198,27,0,0,198,27,0,0,198,27,0,0,200,27,0,0,204,27,0,0,204,27,0,0,208,27,0,0,210,27,0,0,210,27,0,0,210,27,0,0,212,27,0,0,212,27,0,0,212,27,0,0,212,27,0,0,216,27,0,0,216,27,0,0,216,27,0,0,218,27,0,0,218,27,0,0,220,27,0,0,220,27,0,0,222,27,0,0,222,27,0,0,226,27,0,0,226,27,0,0,226,27,0,0,230,27,0,0,230,27,0,0,232,27,0,0,234,27,0,0,234,27,0,0,234,27,0,0,236,27,0,0,236,27,0,0,236,27,0,0,236,27,0,0,240,27,0,0,242,27,0,0,242,27,0,0,242,27,0,0,242,27,0,0,242,27,0,0,242,27,0,0,242,27,0,0,246,27,0,0,246,27,0,0,248,27,0,0,248,27,0,0,248,27,0,0,248,27,0,0,248,27,0,0,248,27,0,0,248,27,0,0,252,27,0,0,252,27,0,0,252,27,0,0,254,27,0,0,254,27,0,0,0,28,0,0,2,28,0,0,2,28,0,0,4,28,0,0,4,28,0,0,4,28,0,0,4,28,0,0,4,28,0,0,4,28,0,0,4,28,0,0,8,28,0,0,8,28,0,0,8,28,0,0,8,28,0,0,10,28,0,0,10,28,0,0,12,28,0,0,12,28,0,0,12,28,0,0,12,28,0,0,12,28,0,0,12,28,0,0,12,28,0,0,12,28,0,0,12,28,0,0,12,28,0,0,14,28,0,0,14,28,0,0,14,28,0,0,16,28,0,0,18,28,0,0,20,28,0,0,22,28,0,0,22,28,0,0,22,28,0,0,22,28,0,0,22,28,0,0,22,28,0,0,22,28,0,0,22,28,0,0,24,28,0,0,26,28,0,0,36,28,0,0,38,28,0,0,42,28,0,0,42,28,0,0,42,28,0,0,42,28,0,0,42,28,0,0,44,28,0,0,46,28,0,0,48,28,0,0,50,28,0,0,50,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,54,28,0,0,54,28,0,0,54,28,0,0,56,28,0,0,56,28,0,0,56,28,0,0,58,28,0,0,58,28,0,0,62,28,0,0,62,28,0,0,62,28,0,0,64,28,0,0,64,28,0,0,66,28,0,0,66,28,0,0,66,28,0,0,68,28,0,0,68,28,0,0,68,28,0,0,68,28,0,0,70,28,0,0,72,28,0,0,76,28,0,0,76,28,0,0,78,28,0,0,78,28,0,0,78,28,0,0,78,28,0,0,78,28,0,0,80,28,0,0,80,28,0,0,80,28,0,0,82,28,0,0,82,28,0,0,82,28,0,0,84,28,0,0,84,28,0,0,84,28,0,0,84,28,0,0,84,28,0,0,86,28,0,0,90,28,0,0,90,28,0,0,90,28,0,0,90,28,0,0,90,28,0,0,92,28,0,0,96,28,0,0,96,28,0,0,96,28,0,0,96,28,0,0,96,28,0,0,96,28,0,0,96,28,0,0,96,28,0,0,96,28,0,0,96,28,0,0,98,28,0,0,98,28,0,0,102,28,0,0,102,28,0,0,102,28,0,0,104,28,0,0,106,28,0,0,106,28,0,0,106,28,0,0,106,28,0,0,110,28,0,0,110,28,0,0,112,28,0,0,112,28,0,0,116,28,0,0,116,28,0,0,116,28,0,0,116,28,0,0,116,28,0,0,116,28,0,0,122,28,0,0,126,28,0,0,126,28,0,0,128,28,0,0,128,28,0,0,128,28,0,0,128,28,0,0,128,28,0,0,132,28,0,0,134,28,0,0,134,28,0,0,134,28,0,0,134,28,0,0,136,28,0,0,136,28,0,0,138,28,0,0,140,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,146,28,0,0,148,28,0,0,150,28,0,0,150,28,0,0,150,28,0,0,150,28,0,0,150,28,0,0,150,28,0,0,150,28,0,0,150,28,0,0,150,28,0,0,150,28,0,0,150,28,0,0,150,28,0,0,152,28,0,0,152,28,0,0,152,28,0,0,152,28,0,0,152,28,0,0,152,28,0,0,152,28,0,0,152,28,0,0,152,28,0,0,156,28,0,0,156,28,0,0,156,28,0,0,158,28,0,0,160,28,0,0,160,28,0,0,160,28,0,0,160,28,0,0,162,28,0,0,162,28,0,0,164,28,0,0,164,28,0,0,164,28,0,0,168,28,0,0,168,28,0,0,172,28,0,0,172,28,0,0,176,28,0,0,178,28,0,0,178,28,0,0,180,28,0,0,180,28,0,0,182,28,0,0,182,28,0,0,184,28,0,0,184,28,0,0,184,28,0,0,184,28,0,0,184,28,0,0,184,28,0,0,184,28,0,0,184,28,0,0,184,28,0,0,184,28,0,0,184,28,0,0,184,28,0,0,184,28,0,0,184,28,0,0,186,28,0,0,186,28,0,0,186,28,0,0,190,28,0,0,192,28,0,0,192,28,0,0,192,28,0,0,194,28,0,0,196,28,0,0,198,28,0,0,198,28,0,0,198,28,0,0,200,28,0,0,200,28,0,0,200,28,0,0,202,28,0,0,202,28,0,0,204,28,0,0,204,28,0,0,204,28,0,0,204,28,0,0,204,28,0,0,204,28,0,0,206,28,0,0,206,28,0,0,208,28,0,0,208,28,0,0,212,28,0,0,212,28,0,0,212,28,0,0,212,28,0,0,212,28,0,0,212,28,0,0,212,28,0,0,214,28,0,0,214,28,0,0,218,28,0,0,220,28,0,0,222,28,0,0,222,28,0,0,222,28,0,0,224,28,0,0,224,28,0,0,224,28,0,0,224,28,0,0,226,28,0,0,226,28,0,0,226,28,0,0,228,28,0,0,230,28,0,0,230,28,0,0,236,28,0,0,236,28,0,0,238,28,0,0,240,28,0,0,240,28,0,0,240,28,0,0,240,28,0,0,246,28,0,0,246,28,0,0,246,28,0,0,246,28,0,0,248,28,0,0,248,28,0,0,248,28,0,0,250,28,0,0,254,28,0,0,0,29,0,0,0,29,0,0,2,29,0,0,2,29,0,0,8,29,0,0,8,29,0,0,12,29,0,0,12,29,0,0,14,29,0,0,16,29,0,0,16,29,0,0,18,29,0,0,18,29,0,0,18,29,0,0,18,29,0,0,18,29,0,0,18,29,0,0,22,29,0,0,26,29,0,0,28,29,0,0,28,29,0,0,28,29,0,0,30,29,0,0,32,29,0,0,32,29,0,0,32,29,0,0,32,29,0,0,32,29,0,0,32,29,0,0,32,29,0,0,36,29,0,0,36,29,0,0,36,29,0,0,36,29,0,0,38,29,0,0,40,29,0,0,40,29,0,0,40,29,0,0,40,29,0,0,42,29,0,0,44,29,0,0,44,29,0,0,46,29,0,0,46,29,0,0,46,29,0,0,50,29,0,0,50,29,0,0,50,29,0,0,50,29,0,0,50,29,0,0,52,29,0,0,52,29,0,0,56,29,0,0,56,29,0,0,56,29,0,0,58,29,0,0,60,29,0,0,62,29,0,0,64,29,0,0,64,29,0,0,64,29,0,0,64,29,0,0,64,29,0,0,64,29,0,0,68,29,0,0,68,29,0,0,68,29,0,0,68,29,0,0,68,29,0,0,68,29,0,0,70,29,0,0,70,29,0,0,72,29,0,0,72,29,0,0,74,29,0,0,74,29,0,0,74,29,0,0,74,29,0,0,76,29,0,0,76,29,0,0,76,29,0,0,78,29,0,0,78,29,0,0,78,29,0,0,78,29,0,0,78,29,0,0,80,29,0,0,80,29,0,0,80,29,0,0,80,29,0,0,80,29,0,0,84,29,0,0,86,29,0,0,88,29,0,0,88,29,0,0,88,29,0,0,88,29,0,0,90,29,0,0,92,29,0,0,92,29,0,0,94,29,0,0,94,29,0,0,94,29,0,0,96,29,0,0,96,29,0,0,96,29,0,0,96,29,0,0,96,29,0,0,98,29,0,0,100,29,0,0,104,29,0,0,106,29,0,0,106,29,0,0,106,29,0,0,108,29,0,0,108,29,0,0,108,29,0,0,108,29,0,0,110,29,0,0,112,29,0,0,112,29,0,0,112,29,0,0,114,29,0,0,114,29,0,0,116,29,0,0,116,29,0,0,116,29,0,0,116,29,0,0,116,29,0,0,116,29,0,0,116,29,0,0,116,29,0,0,116,29,0,0,122,29,0,0,124,29,0,0,124,29,0,0,124,29,0,0,124,29,0,0,124,29,0,0,126,29,0,0,126,29,0,0,126,29,0,0,126,29,0,0,126,29,0,0,126,29,0,0,128,29,0,0,130,29,0,0,132,29,0,0,132,29,0,0,132,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,136,29,0,0,138,29,0,0,138,29,0,0,138,29,0,0,138,29,0,0,142,29,0,0,144,29,0,0,144,29,0,0,148,29,0,0,152,29,0,0,156,29,0,0,158,29,0,0,162,29,0,0,162,29,0,0,162,29,0,0,162,29,0,0,162,29,0,0,164,29,0,0,164,29,0,0,164,29,0,0,164,29,0,0,164,29,0,0,166,29,0,0,168,29,0,0,170,29,0,0,172,29,0,0,172,29,0,0,172,29,0,0,174,29,0,0,174,29,0,0,176,29,0,0,176,29,0,0,178,29,0,0,178,29,0,0,180,29,0,0,180,29,0,0,182,29,0,0,182,29,0,0,186,29,0,0,186,29,0,0,186,29,0,0,188,29,0,0,188,29,0,0,192,29,0,0,192,29,0,0,192,29,0,0,194,29,0,0,194,29,0,0,194,29,0,0,194,29,0,0,196,29,0,0,196,29,0,0,196,29,0,0,196,29,0,0,196,29,0,0,196,29,0,0,196,29,0,0,196,29,0,0,200,29,0,0,200,29,0,0,200,29,0,0,200,29,0,0,200,29,0,0,200,29,0,0,200,29,0,0,200,29,0,0,200,29,0,0,204,29,0,0,204,29,0,0,208,29,0,0,208,29,0,0,210,29,0,0,210,29,0,0,210,29,0,0,212,29,0,0,212,29,0,0,214,29,0,0,216,29,0,0,218,29,0,0,220,29,0,0,220,29,0,0,222,29,0,0,226,29,0,0,226,29,0,0,226,29,0,0,228,29,0,0,232,29,0,0,232,29,0,0,232,29,0,0,232,29,0,0,232,29,0,0,234,29,0,0,236,29,0,0,236,29,0,0,236,29,0,0,236,29,0,0,238,29,0,0,238,29,0,0,238,29,0,0,240,29,0,0,242,29,0,0,244,29,0,0,244,29,0,0,244,29,0,0,248,29,0,0,248,29,0,0,250,29,0,0,250,29,0,0,250,29,0,0,252,29,0,0,252,29,0,0,2,30,0,0,2,30,0,0,4,30,0,0,4,30,0,0,4,30,0,0,4,30,0,0,6,30,0,0,6,30,0,0,6,30,0,0,8,30,0,0,10,30,0,0,10,30,0,0,10,30,0,0,10,30,0,0,10,30,0,0,10,30,0,0,10,30,0,0,10,30,0,0,10,30,0,0,14,30,0,0,14,30,0,0,14,30,0,0,14,30,0,0,14,30,0,0,14,30,0,0,14,30,0,0,16,30,0,0,16,30,0,0,18,30,0,0,20,30,0,0,20,30,0,0,20,30,0,0,20,30,0,0,20,30,0,0,26,30,0,0,30,30,0,0,32,30,0,0,34,30,0,0,34,30,0,0,34,30,0,0,34,30,0,0,36,30,0,0,36,30,0,0,38,30,0,0,38,30,0,0,38,30,0,0,40,30,0,0,42,30,0,0,42,30,0,0,42,30,0,0,42,30,0,0,44,30,0,0,44,30,0,0,48,30,0,0,48,30,0,0,50,30,0,0,52,30,0,0,52,30,0,0,54,30,0,0,56,30,0,0,56,30,0,0,56,30,0,0,58,30,0,0,60,30,0,0,60,30,0,0,60,30,0,0,60,30,0,0,62,30,0,0,64,30,0,0,66,30,0,0,66,30,0,0,66,30,0,0,68,30,0,0,68,30,0,0,72,30,0,0,72,30,0,0,72,30,0,0,74,30,0,0,78,30,0,0,78,30,0,0,78,30,0,0,78,30,0,0,78,30,0,0,78,30,0,0,80,30,0,0,86,30,0,0,92,30,0,0,92,30,0,0,94,30,0,0,94,30,0,0,94,30,0,0,94,30,0,0,96,30,0,0,98,30,0,0,106,30,0,0,108,30,0,0,108,30,0,0,108,30,0,0,108,30,0,0,108,30,0,0,112,30,0,0,114,30,0,0,114,30,0,0,116,30,0,0,118,30,0,0,118,30,0,0,118,30,0,0,120,30,0,0,122,30,0,0,122,30,0,0,124,30,0,0,124,30,0,0,126,30,0,0,126,30,0,0,128,30,0,0,130,30,0,0,130,30,0,0,130,30,0,0,132,30,0,0,132,30,0,0,132,30,0,0,132,30,0,0,134,30,0,0,134,30,0,0,136,30,0,0,136,30,0,0,138,30,0,0,140,30,0,0,142,30,0,0,144,30,0,0,144,30,0,0,144,30,0,0,148,30,0,0,148,30,0,0,150,30,0,0,150,30,0,0,154,30,0,0,156,30,0,0,156,30,0,0,156,30,0,0,156,30,0,0,156,30,0,0,156,30,0,0,158,30,0,0,160,30,0,0,162,30,0,0,162,30,0,0,162,30,0,0,162,30,0,0,162,30,0,0,162,30,0,0,162,30,0,0,166,30,0,0,166,30,0,0,166,30,0,0,168,30,0,0,170,30,0,0,170,30,0,0,170,30,0,0,174,30,0,0,174,30,0,0,174,30,0,0,180,30,0,0,182,30,0,0,184,30,0,0,186,30,0,0,188,30,0,0,190,30,0,0,190,30,0,0,192,30,0,0,194,30,0,0,194,30,0,0,194,30,0,0,194,30,0,0,196,30,0,0,198,30,0,0,198,30,0,0,198,30,0,0,198,30,0,0,198,30,0,0,198,30,0,0,198,30,0,0,204,30,0,0,204,30,0,0,204,30,0,0,206,30,0,0,206,30,0,0,208,30,0,0,208,30,0,0,210,30,0,0,210,30,0,0,210,30,0,0,210,30,0,0,210,30,0,0,210,30,0,0,210,30,0,0,212,30,0,0,212,30,0,0,212,30,0,0,214,30,0,0,214,30,0,0,220,30,0,0,220,30,0,0,220,30,0,0,222,30,0,0,224,30,0,0,224,30,0,0,224,30,0,0,226,30,0,0,226,30,0,0,230,30,0,0,234,30,0,0,234,30,0,0,234,30,0,0,234,30,0,0,238,30,0,0,238,30,0,0,238,30,0,0,240,30,0,0,240,30,0,0,240,30,0,0,240,30,0,0,240,30,0,0,240,30,0,0,240,30,0,0,240,30,0,0,240,30,0,0,240,30,0,0,242,30,0,0,242,30,0,0,242,30,0,0,244,30,0,0,246,30,0,0,246,30,0,0,248,30,0,0,248,30,0,0,248,30,0,0,248,30,0,0,250,30,0,0,252,30,0,0,252,30,0,0,252,30,0,0,252,30,0,0,254,30,0,0,254,30,0,0,254,30,0,0,0,31,0,0,0,31,0,0,0,31,0,0,0,31,0,0,0,31,0,0,0,31,0,0,2,31,0,0,4,31,0,0,4,31,0,0,4,31,0,0,6,31,0,0,6,31,0,0,6,31,0,0,6,31,0,0,6,31,0,0,6,31,0,0,8,31,0,0,8,31,0,0,8,31,0,0,8,31,0,0,10,31,0,0,12,31,0,0,12,31,0,0,16,31,0,0,16,31,0,0,18,31,0,0,18,31,0,0,20,31,0,0,20,31,0,0,22,31,0,0,22,31,0,0,26,31,0,0,26,31,0,0,28,31,0,0,30,31,0,0,30,31,0,0,36,31,0,0,36,31,0,0,38,31,0,0,38,31,0,0,38,31,0,0,38,31,0,0,38,31,0,0,38,31,0,0,38,31,0,0,38,31,0,0,38,31,0,0,40,31,0,0,40,31,0,0,40,31,0,0,46,31,0,0,46,31,0,0,46,31,0,0,48,31,0,0,48,31,0,0,50,31,0,0,52,31,0,0,54,31,0,0,58,31,0,0,60,31,0,0,60,31,0,0,62,31,0,0,62,31,0,0,62,31,0,0,64,31,0,0,68,31,0,0,74,31,0,0,74,31,0,0,74,31,0,0,74,31,0,0,78,31,0,0,78,31,0,0,78,31,0,0,78,31,0,0,78,31,0,0,78,31,0,0,78,31,0,0,78,31,0,0,78,31,0,0,78,31,0,0,78,31,0,0,82,31,0,0,82,31,0,0,82,31,0,0,84,31,0,0,90,31,0,0,90,31,0,0,90,31,0,0,94,31,0,0,96,31,0,0,96,31,0,0,98,31,0,0,98,31,0,0,100,31,0,0,100,31,0,0,100,31,0,0,104,31,0,0,104,31,0,0,104,31,0,0,104,31,0,0,104,31,0,0,106,31,0,0,106,31,0,0,106,31,0,0,106,31,0,0,108,31,0,0,112,31,0,0,114,31,0,0,116,31,0,0,116,31,0,0,116,31,0,0,116,31,0,0,118,31,0,0,122,31,0,0,122,31,0,0,124,31,0,0,126,31,0,0,126,31,0,0,130,31,0,0,130,31,0,0,130,31,0,0,132,31,0,0,134,31,0,0,134,31,0,0,134,31,0,0,138,31,0,0,138,31,0,0,138,31,0,0,140,31,0,0,144,31,0,0,144,31,0,0,146,31,0,0,148,31,0,0,148,31,0,0,148,31,0,0,148,31,0,0,148,31,0,0,150,31,0,0,150,31,0,0,154,31,0,0,158,31,0,0,160,31,0,0,164,31,0,0,164,31,0,0,164,31,0,0,164,31,0,0,166,31,0,0,166,31,0,0,166,31,0,0,166,31,0,0,166,31,0,0,166,31,0,0,166,31,0,0,166,31,0,0,166,31,0,0,168,31,0,0,168,31,0,0,170,31,0,0,170,31,0,0,170,31,0,0,170,31,0,0,172,31,0,0,172,31,0,0,172,31,0,0,174,31,0,0,174,31,0,0,176,31,0,0,178,31,0,0,182,31,0,0,186,31,0,0,186,31,0,0,188,31,0,0,188,31,0,0,188,31,0,0,188,31,0,0,188,31,0,0,188,31,0,0,188,31,0,0,188,31,0,0,188,31,0,0,188,31,0,0,190,31,0,0,190,31,0,0,190,31,0,0,190,31,0,0,190,31,0,0,190,31,0,0,192,31,0,0,192,31,0,0,192,31,0,0,192,31,0,0,192,31,0,0,194,31,0,0,194,31,0,0,196,31,0,0,198,31,0,0,200,31,0,0,202,31,0,0,204,31,0,0,206,31,0,0,208,31,0,0,208,31,0,0,208,31,0,0,210,31,0,0,210,31,0,0,210,31,0,0,210,31,0,0,210,31,0,0,210,31,0,0,210,31,0,0,210,31,0,0,212,31,0,0,212,31,0,0,212,31,0,0,212,31,0,0,214,31,0,0,214,31,0,0,214,31,0,0,216,31,0,0,218,31,0,0,218,31,0,0,218,31,0,0,218,31,0,0,218,31,0,0,220,31,0,0,222,31,0,0,226,31,0,0,228,31,0,0,228,31,0,0,228,31,0,0,228,31,0,0,230,31,0,0,232,31,0,0,234,31,0,0,234,31,0,0,238,31,0,0,238,31,0,0,238,31,0,0,238,31,0,0,238,31,0,0,238,31,0,0,240,31,0,0,242,31,0,0,242,31,0,0,242,31,0,0,242,31,0,0,248,31,0,0,250,31,0,0,250,31,0,0,250,31,0,0,250,31,0,0,250,31,0,0,252,31,0,0,254,31,0,0,2,32,0,0,2,32,0,0,2,32,0,0,2,32,0,0,4,32,0,0,4,32,0,0,6,32,0,0,6,32,0,0,6,32,0,0,6,32,0,0,6,32,0,0,8,32,0,0,10,32,0,0,12,32,0,0,12,32,0,0,14,32,0,0,14,32,0,0,14,32,0,0,16,32,0,0,18,32,0,0,20,32,0,0,20,32,0,0,20,32,0,0,20,32,0,0,22,32,0,0,22,32,0,0,22,32,0,0,22,32,0,0,24,32,0,0,26,32,0,0,26,32,0,0,28,32,0,0,28,32,0,0,32,32,0,0,32,32,0,0,32,32,0,0,32,32,0,0,32,32,0,0,32,32,0,0,32,32,0,0,34,32,0,0,36,32,0,0,40,32,0,0,40,32,0,0,40,32,0,0,40,32,0,0,40,32,0,0,46,32,0,0,48,32,0,0,48,32,0,0,52,32,0,0,54,32,0,0,58,32,0,0,62,32,0,0,62,32,0,0,62,32,0,0,64,32,0,0,64,32,0,0,66,32,0,0,68,32,0,0,68,32,0,0,68,32,0,0,68,32,0,0,68,32,0,0,70,32,0,0,70,32,0,0,74,32,0,0,74,32,0,0,74,32,0,0,78,32,0,0,80,32,0,0,84,32,0,0,84,32,0,0,86,32,0,0,88,32,0,0,88,32,0,0,88,32,0,0,88,32,0,0,90,32,0,0,92,32,0,0,94,32,0,0,94,32,0,0,94,32,0,0,94,32,0,0,94,32,0,0,94,32,0,0,96,32,0,0,96,32,0,0,96,32,0,0,96,32,0,0,96,32,0,0,96,32,0,0,100,32,0,0,102,32,0,0,104,32,0,0,104,32,0,0,104,32,0,0,104,32,0,0,104,32,0,0,108,32,0,0,108,32,0,0,110,32,0,0,110,32,0,0,112,32,0,0,114,32,0,0,116,32,0,0,116,32,0,0,116,32,0,0,118,32,0,0,120,32,0,0,122,32,0,0,122,32,0,0,122,32,0,0,122,32,0,0,122,32,0,0,122,32,0,0,122,32,0,0,124,32,0,0,126,32,0,0,128,32,0,0,130,32,0,0,130,32,0,0,130,32,0,0,132,32,0,0,134,32,0,0,134,32,0,0,134,32,0,0,134,32,0,0,136,32,0,0,136,32,0,0,138,32,0,0,138,32,0,0,138,32,0,0,142,32,0,0,142,32,0,0,142,32,0,0,142,32,0,0,144,32,0,0,144,32,0,0,144,32,0,0,144,32,0,0,146,32,0,0,146,32,0,0,150,32,0,0,152,32,0,0,156,32,0,0,160,32,0,0,164,32,0,0,164,32,0,0,164,32,0,0,164,32,0,0,166,32,0,0,166,32,0,0,170,32,0,0,170,32,0,0,170,32,0,0,170,32,0,0,172,32,0,0,172,32,0,0,174,32,0,0,176,32,0,0,176,32,0,0,176,32,0,0,178,32,0,0,178,32,0,0,178,32,0,0,178,32,0,0,180,32,0,0,180,32,0,0,180,32,0,0,180,32,0,0,180,32,0,0,182,32,0,0,182,32,0,0,182,32,0,0,182,32,0,0,182,32,0,0,182,32,0,0,184,32,0,0,184,32,0,0,188,32,0,0,188,32,0,0,188,32,0,0,190,32,0,0,192,32,0,0,194,32,0,0,194,32,0,0,194,32,0,0,194,32,0,0,198,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,202,32,0,0,204,32,0,0,206,32,0,0,208,32,0,0,208,32,0,0,208,32,0,0,210,32,0,0,212,32,0,0,212,32,0,0,212,32,0,0,212,32,0,0,212,32,0,0,212,32,0,0,212,32,0,0,214,32,0,0,214,32,0,0,214,32,0,0,214,32,0,0,216,32,0,0,216,32,0,0,218,32,0,0,222,32,0,0,222,32,0,0,222,32,0,0,226,32,0,0,228,32,0,0,228,32,0,0,228,32,0,0,232,32,0,0,232,32,0,0,232,32,0,0,232,32,0,0,232,32,0,0,236,32,0,0,236,32,0,0,236,32,0,0,236,32,0,0,236,32,0,0,236,32,0,0,236,32,0,0,236,32,0,0,236,32,0,0,240,32,0,0,242,32,0,0,242,32,0,0,244,32,0,0,244,32,0,0,244,32,0,0,246,32,0,0,250,32,0,0,250,32,0,0,252,32,0,0,254,32,0,0,254,32,0,0,254,32,0,0,254,32,0,0,254,32,0,0,0,33,0,0,0,33,0,0,0,33,0,0,2,33,0,0,4,33,0,0,6,33,0,0,6,33,0,0,6,33,0,0,6,33,0,0,6,33,0,0,6,33,0,0,6,33,0,0,6,33,0,0,6,33,0,0,8,33,0,0,8,33,0,0,8,33,0,0,8,33,0,0,8,33,0,0,8,33,0,0,8,33,0,0,8,33,0,0,8,33,0,0,8,33,0,0,8,33,0,0,10,33,0,0,10,33,0,0,10,33,0,0,12,33,0,0,12,33,0,0,12,33,0,0,14,33,0,0,16,33,0,0,16,33,0,0,16,33,0,0,18,33,0,0,20,33,0,0,20,33,0,0,24,33,0,0,24,33,0,0,24,33,0,0,24,33,0,0,24,33,0,0,24,33,0,0,24,33,0,0,24,33,0,0,26,33,0,0,28,33,0,0,28,33,0,0,30,33,0,0,30,33,0,0,30,33,0,0,32,33,0,0,32,33,0,0,36,33,0,0,36,33,0,0,38,33,0,0,38,33,0,0,38,33,0,0,38,33,0,0,42,33,0,0,42,33,0,0,44,33,0,0,44,33,0,0,48,33,0,0,48,33,0,0,52,33,0,0,52,33,0,0,52,33,0,0,52,33,0,0,52,33,0,0,56,33,0,0,58,33,0,0,58,33,0,0,58,33,0,0,60,33,0,0,60,33,0,0,62,33,0,0,62,33,0,0,62,33,0,0,66,33,0,0,66,33,0,0,66,33,0,0,66,33,0,0,66,33,0,0,66,33,0,0,68,33,0,0,72,33,0,0,74,33,0,0,76,33,0,0,78,33,0,0,82,33,0,0,82,33,0,0,82,33,0,0,84,33,0,0,84,33,0,0,86,33,0,0,88,33,0,0,88,33,0,0,88,33,0,0,88,33,0,0,88,33,0,0,88,33,0,0,88,33,0,0,90,33,0,0,92,33,0,0,94,33,0,0,94,33,0,0,96,33,0,0,96,33,0,0,98,33,0,0,98,33,0,0,98,33,0,0,98,33,0,0,100,33,0,0,102,33,0,0,102,33,0,0,102,33,0,0,104,33,0,0,104,33,0,0,106,33,0,0,106,33,0,0,108,33,0,0,110,33,0,0,110,33,0,0,112,33,0,0,114,33,0,0,116,33,0,0,120,33,0,0,120,33,0,0,122,33,0,0,124,33,0,0,124,33,0,0,124,33,0,0,124,33,0,0,126,33,0,0,126,33,0,0,126,33,0,0,126,33,0,0,126,33,0,0,126,33,0,0,128,33,0,0,128,33,0,0,130,33,0,0,130,33,0,0,132,33,0,0,132,33,0,0,132,33,0,0,134,33,0,0,136,33,0,0,138,33,0,0,138,33,0,0,138,33,0,0,138,33,0,0,138,33,0,0,138,33,0,0,138,33,0,0,138,33,0,0,140,33,0,0,142,33,0,0,146,33,0,0,146,33,0,0,146,33,0,0,146,33,0,0,146,33,0,0,146,33,0,0,148,33,0,0,148,33,0,0,150,33,0,0,150,33,0,0,150,33,0,0,150,33,0,0,152,33,0,0,152,33,0,0,152,33,0,0,154,33,0,0,158,33,0,0,158,33,0,0,158,33,0,0,158,33,0,0,160,33,0,0,164,33,0,0,164,33,0,0,164,33,0,0,164,33,0,0,166,33,0,0,168,33,0,0,168,33,0,0,170,33,0,0,170,33,0,0,172,33,0,0,172,33,0,0,174,33,0,0,174,33,0,0,174,33,0,0,174,33,0,0,174,33,0,0,174,33,0,0,174,33,0,0,174,33,0,0,174,33,0,0,176,33,0,0,176,33,0,0,176,33,0,0,176,33,0,0,178,33,0,0,180,33,0,0,180,33,0,0,180,33,0,0,180,33,0,0,182,33,0,0,182,33,0,0,182,33,0,0,182,33,0,0,182,33,0,0,182,33,0,0,182,33,0,0,182,33,0,0,182,33,0,0,182,33,0,0,184,33,0,0,184,33,0,0,184,33,0,0,184,33,0,0,186,33,0,0,188,33,0,0,190,33,0,0,192,33,0,0,192,33,0,0,194,33,0,0,196,33,0,0,200,33,0,0,200,33,0,0,200,33,0,0,200,33,0,0,200,33,0,0,200,33,0,0,204,33,0,0,204,33,0,0,204,33,0,0,204,33,0,0,204,33,0,0,204,33,0,0,206,33,0,0,208,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,214,33,0,0,214,33,0,0,216,33,0,0,218,33,0,0,218,33,0,0,218,33,0,0,218,33,0,0,220,33,0,0,222,33,0,0,222,33,0,0,222,33,0,0,224,33,0,0,224,33,0,0,226,33,0,0,226,33,0,0,226,33,0,0,226,33,0,0,226,33,0,0,226,33,0,0,226,33,0,0,228,33,0,0,228,33,0,0,228,33,0,0,228,33,0,0,228,33,0,0,228,33,0,0,230,33,0,0,230,33,0,0,234,33,0,0,234,33,0,0,234,33,0,0,234,33,0,0,234,33,0,0,234,33,0,0,234,33,0,0,236,33,0,0,236,33,0,0,236,33,0,0,236,33,0,0,236,33,0,0,236,33,0,0,240,33,0,0,240,33,0,0,240,33,0,0,240,33,0,0,248,33,0,0,248,33,0,0,254,33,0,0,0,34,0,0,0,34,0,0,0,34,0,0,0,34,0,0,0,34,0,0,0,34,0,0,0,34,0,0,0,34,0,0,2,34,0,0,2,34,0,0,4,34,0,0,6,34,0,0,6,34,0,0,6,34,0,0,8,34,0,0,10,34,0,0,12,34,0,0,12,34,0,0,12,34,0,0,12,34,0,0,14,34,0,0,14,34,0,0,14,34,0,0,14,34,0,0,14,34,0,0,14,34,0,0,16,34,0,0,16,34,0,0,22,34,0,0,24,34,0,0,24,34,0,0,26,34,0,0,28,34,0,0,28,34,0,0,28,34,0,0,28,34,0,0,32,34,0,0,32,34,0,0,32,34,0,0,32,34,0,0,32,34,0,0,32,34,0,0,32,34,0,0,34,34,0,0,36,34,0,0,38,34,0,0,38,34,0,0,38,34,0,0,40,34,0,0,42,34,0,0,42,34,0,0,42,34,0,0,44,34,0,0,46,34,0,0,46,34,0,0,46,34,0,0,46,34,0,0,48,34,0,0,52,34,0,0,52,34,0,0,52,34,0,0,52,34,0,0,52,34,0,0,52,34,0,0,52,34,0,0,52,34,0,0,52,34,0,0,52,34,0,0,54,34,0,0,56,34,0,0,58,34,0,0,58,34,0,0,58,34,0,0,58,34,0,0,62,34,0,0,64,34,0,0,64,34,0,0,64,34,0,0,66,34,0,0,68,34,0,0,68,34,0,0,68,34,0,0,68,34,0,0,72,34,0,0,72,34,0,0,74,34,0,0,76,34,0,0,76,34,0,0,76,34,0,0,76,34,0,0,78,34,0,0,78,34,0,0,80,34,0,0,82,34,0,0,82,34,0,0,82,34,0,0,82,34,0,0,82,34,0,0,82,34,0,0,82,34,0,0,84,34,0,0,84,34,0,0,84,34,0,0,84,34,0,0,84,34,0,0,86,34,0,0,88,34,0,0,88,34,0,0,90,34,0,0,90,34,0,0,92,34,0,0,92,34,0,0,94,34,0,0,96,34,0,0,98,34,0,0,98,34,0,0,98,34,0,0,98,34,0,0,98,34,0,0,98,34,0,0,98,34,0,0,98,34,0,0,98,34,0,0,98,34,0,0,100,34,0,0,102,34,0,0,102,34,0,0,102,34,0,0,104,34,0,0,106,34,0,0,106,34,0,0,106,34,0,0,108,34,0,0,108,34,0,0,108,34,0,0,108,34,0,0,112,34,0,0,114,34,0,0,114,34,0,0,116,34,0,0,116,34,0,0,116,34,0,0,118,34,0,0,118,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,122,34,0,0,122,34,0,0,122,34,0,0,122,34,0,0,122,34,0,0,122,34,0,0,122,34,0,0,124,34,0,0,126,34,0,0,126,34,0,0,126,34,0,0,126,34,0,0,126,34,0,0,126,34,0,0,128,34,0,0,128,34,0,0,128,34,0,0,130,34,0,0,130,34,0,0,130,34,0,0,132,34,0,0,134,34,0,0,134,34,0,0,134,34,0,0,136,34,0,0,138,34,0,0,140,34,0,0,140,34,0,0,140,34,0,0,142,34,0,0,144,34,0,0,144,34,0,0,146,34,0,0,150,34,0,0,152,34,0,0,154,34,0,0,154,34,0,0,158,34,0,0,158,34,0,0,158,34,0,0,160,34,0,0,168,34,0,0,168,34,0,0,168,34,0,0,172,34,0,0,172,34,0,0,176,34,0,0,178,34,0,0,182,34,0,0,182,34,0,0,182,34,0,0,182,34,0,0,182,34,0,0,184,34,0,0,186,34,0,0,186,34,0,0,186,34,0,0,188,34,0,0,190,34,0,0,190,34,0,0,190,34,0,0,192,34,0,0,194,34,0,0,200,34,0,0,202,34,0,0,204,34,0,0,204,34,0,0,204,34,0,0,206,34,0,0,206,34,0,0,210,34,0,0,210,34,0,0,212,34,0,0,212,34,0,0,212,34,0,0,212,34,0,0,212,34,0,0,216,34,0,0,216,34,0,0,218,34,0,0,218,34,0,0,222,34,0,0,226,34,0,0,238,34,0,0,238,34,0,0,238,34,0,0,238,34,0,0,238,34,0,0,240,34,0,0,242,34,0,0,242,34,0,0,242,34,0,0,244,34,0,0,244,34,0,0,244,34,0,0,244,34,0,0,244,34,0,0,244,34,0,0,248,34,0,0,248,34,0,0,250,34,0,0,252,34,0,0,254,34,0,0,0,35,0,0,0,35,0,0,2,35,0,0,2,35,0,0,4,35,0,0,8,35,0,0,10,35,0,0,12,35,0,0,12,35,0,0,16,35,0,0,16,35,0,0,16,35,0,0,18,35,0,0,18,35,0,0,18,35,0,0,18,35,0,0,18,35,0,0,20,35,0,0,22,35,0,0,22,35,0,0,22,35,0,0,22,35,0,0,22,35,0,0,22,35,0,0,24,35,0,0,24,35,0,0,24,35,0,0,28,35,0,0,28,35,0,0,28,35,0,0,32,35,0,0,32,35,0,0,38,35,0,0,38,35,0,0,38,35,0,0,38,35,0,0,38,35,0,0,38,35,0,0,38,35,0,0,38,35,0,0,44,35,0,0,46,35,0,0,46,35,0,0,46,35,0,0,48,35,0,0,50,35,0,0,56,35,0,0,56,35,0,0,62,35,0,0,64,35,0,0,66,35,0,0,66,35,0,0,68,35,0,0,68,35,0,0,72,35,0,0,72,35,0,0,72,35,0,0,74,35,0,0,78,35,0,0,80,35,0,0,82,35,0,0,82,35,0,0,84,35,0,0,86,35,0,0,86,35,0,0,86,35,0,0,86,35,0,0,86,35,0,0,88,35,0,0,88,35,0,0,88,35,0,0,88,35,0,0,90,35,0,0,90,35,0,0,92,35,0,0,94,35,0,0,96,35,0,0,96,35,0,0,98,35,0,0,98,35,0,0,100,35,0,0,100,35,0,0,102,35,0,0,102,35,0,0,104,35,0,0,104,35,0,0,106,35,0,0,108,35,0,0,112,35,0,0,112,35,0,0,116,35,0,0,116,35,0,0,118,35,0,0,118,35,0,0,120,35,0,0,124,35,0,0,124,35,0,0,124,35,0,0,126,35,0,0,126,35,0,0,126,35,0,0,128,35,0,0,128,35,0,0,130,35,0,0,130,35,0,0,132,35,0,0,134,35,0,0,134,35,0,0,134,35,0,0,134,35,0,0,136,35,0,0,138,35,0,0,140,35,0,0,140,35,0,0,142,35,0,0,144,35,0,0,146,35,0,0,150,35,0,0,150,35,0,0,152,35,0,0,154,35,0,0,154,35,0,0,156,35,0,0,158,35,0,0,160,35,0,0,160,35,0,0,162,35,0,0,164,35,0,0,164,35,0,0,164,35,0,0,164,35,0,0,164,35,0,0,164,35,0,0,164,35,0,0,164,35,0,0,166,35,0,0,168,35,0,0,168,35,0,0,168,35,0,0,170,35,0,0,170,35,0,0,172,35,0,0,174,35,0,0,176,35,0,0,176,35,0,0,178,35,0,0,178,35,0,0,180,35,0,0,180,35,0,0,180,35,0,0,180,35,0,0,180,35,0,0,180,35,0,0,180,35,0,0,182,35,0,0,182,35,0,0,182,35,0,0,182,35,0,0,182,35,0,0,184,35,0,0,184,35,0,0,184,35,0,0,184,35,0,0,186,35,0,0,186,35,0,0,188,35,0,0,188,35,0,0,192,35,0,0,194,35,0,0,194,35,0,0,194,35,0,0,196,35,0,0,196,35,0,0,196,35,0,0,198,35,0,0,198,35,0,0,198,35,0,0,198,35,0,0,198,35,0,0,200,35,0,0,200,35,0,0,200,35,0,0,200,35,0,0,202,35,0,0,204,35,0,0,204,35,0,0,204,35,0,0,206,35,0,0,206,35,0,0,206,35,0,0,206,35,0,0,210,35,0,0,212,35,0,0,212,35,0,0,216,35,0,0,216,35,0,0,216,35,0,0,216,35,0,0,218,35,0,0,218,35,0,0,220,35,0,0,220,35,0,0,222,35,0,0,222,35,0,0,224,35,0,0,228,35,0,0,228,35,0,0,228,35,0,0,228,35,0,0,228,35,0,0,228,35,0,0,228,35,0,0,228,35,0,0,228,35,0,0,228,35,0,0,232,35,0,0,232,35,0,0,234,35,0,0,234,35,0,0,236,35,0,0,238,35,0,0,238,35,0,0,240,35,0,0,244,35,0,0,244,35,0,0,244,35,0,0,244,35,0,0,250,35,0,0,252,35,0,0,0,36,0,0,0,36,0,0,0,36,0,0,0,36,0,0,0,36,0,0,0,36,0,0,2,36,0,0,4,36,0,0,6,36,0,0,8,36,0,0,10,36,0,0,12,36,0,0,14,36,0,0,14,36,0,0,16,36,0,0,16,36,0,0,18,36,0,0,20,36,0,0,22,36,0,0,22,36,0,0,22,36,0,0,22,36,0,0,24,36,0,0,24,36,0,0,24,36,0,0,24,36,0,0,24,36,0,0,26,36,0,0,30,36,0,0,30,36,0,0,30,36,0,0,30,36,0,0,32,36,0,0,32,36,0,0,32,36,0,0,32,36,0,0,32,36,0,0,36,36,0,0,36,36,0,0,36,36,0,0,38,36,0,0,38,36,0,0,40,36,0,0,46,36,0,0,48,36,0,0,48,36,0,0,48,36,0,0,48,36,0,0,48,36,0,0,50,36,0,0,52,36,0,0,52,36,0,0,54,36,0,0,56,36,0,0,56,36,0,0,58,36,0,0,58,36,0,0,58,36,0,0,64,36,0,0,66,36,0,0,66,36,0,0,66,36,0,0,68,36,0,0,68,36,0,0,70,36,0,0,70,36,0,0,72,36,0,0,74,36,0,0,74,36,0,0,78,36,0,0,78,36,0,0,80,36,0,0,80,36,0,0,80,36,0,0,80,36,0,0,84,36,0,0,84,36,0,0,84,36,0,0,84,36,0,0,84,36,0,0,84,36,0,0,84,36,0,0,86,36,0,0,94,36,0,0,94,36,0,0,94,36,0,0,98,36,0,0,100,36,0,0,102,36,0,0,104,36,0,0,104,36,0,0,104,36,0,0,104,36,0,0,104,36,0,0,108,36,0,0,108,36,0,0,108,36,0,0,108,36,0,0,110,36,0,0,110,36,0,0,110,36,0,0,110,36,0,0,110,36,0,0,112,36,0,0,116,36,0,0,116,36,0,0,116,36,0,0,118,36,0,0,118,36,0,0,118,36,0,0,118,36,0,0,118,36,0,0,120,36,0,0,120,36,0,0,120,36,0,0,120,36,0,0,120,36,0,0,120,36,0,0,120,36,0,0,122,36,0,0,124,36,0,0,128,36,0,0,128,36,0,0,128,36,0,0,130,36,0,0,132,36,0,0,132,36,0,0,132,36,0,0,134,36,0,0,134,36,0,0,134,36,0,0,134,36,0,0,134,36,0,0,136,36,0,0,136,36,0,0,140,36,0,0,140,36,0,0,144,36,0,0,144,36,0,0,146,36,0,0,146,36,0,0,146,36,0,0,148,36,0,0,154,36,0,0,156,36,0,0,156,36,0,0,158,36,0,0,158,36,0,0,160,36,0,0,160,36,0,0,160,36,0,0,160,36,0,0,160,36,0,0,162,36,0,0,162,36,0,0,162,36,0,0,162,36,0,0,162,36,0,0,162,36,0,0,162,36,0,0,164,36,0,0,166,36,0,0,166,36,0,0,166,36,0,0,168,36,0,0,168,36,0,0,168,36,0,0,168,36,0,0,170,36,0,0,172,36,0,0,172,36,0,0,172,36,0,0,172,36,0,0,174,36,0,0,174,36,0,0,174,36,0,0,174,36,0,0,176,36,0,0,178,36,0,0,178,36,0,0,178,36,0,0,178,36,0,0,178,36,0,0,178,36,0,0,178,36,0,0,180,36,0,0,180,36,0,0,182,36,0,0,184,36,0,0,184,36,0,0,184,36,0,0,188,36,0,0,188,36,0,0,188,36,0,0,188,36,0,0,190,36,0,0,192,36,0,0,194,36,0,0,196,36,0,0,196,36,0,0,196,36,0,0,198,36,0,0,198,36,0,0,198,36,0,0,200,36,0,0,202,36,0,0,204,36,0,0,206,36,0,0,208,36,0,0,210,36,0,0,212,36,0,0,214,36,0,0,214,36,0,0,214,36,0,0,214,36,0,0,216,36,0,0,216,36,0,0,218,36,0,0,224,36,0,0,226,36,0,0,226,36,0,0,226,36,0,0,226,36,0,0,230,36,0,0,234,36,0,0,234,36,0,0,236,36,0,0,236,36,0,0,238,36,0,0,240,36,0,0,242,36,0,0,242,36,0,0,244,36,0,0,246,36,0,0,246,36,0,0,248,36,0,0,252,36,0,0,252,36,0,0,254,36,0,0,254,36,0,0,0,37,0,0,4,37,0,0,6,37,0,0,8,37,0,0,12,37,0,0,12,37,0,0,12,37,0,0,12,37,0,0,12,37,0,0,12,37,0,0,16,37,0,0,16,37,0,0,20,37,0,0,20,37,0,0,22,37,0,0,22,37,0,0,22,37,0,0,22,37,0,0,22,37,0,0,22,37,0,0,22,37,0,0,24,37,0,0,30,37,0,0,32,37,0,0,32,37,0,0,36,37,0,0,38,37,0,0,38,37,0,0,38,37,0,0,38,37,0,0,40,37,0,0,40,37,0,0,42,37,0,0,42,37,0,0,42,37,0,0,42,37,0,0,44,37,0,0,44,37,0,0,46,37,0,0,46,37,0,0,46,37,0,0,46,37,0,0,46,37,0,0,46,37,0,0,46,37,0,0,46,37,0,0,46,37,0,0,46,37,0,0,48,37,0,0,48,37,0,0,50,37,0,0,52,37,0,0,52,37,0,0,52,37,0,0,54,37,0,0,54,37,0,0,54,37,0,0,54,37,0,0,56,37,0,0,56,37,0,0,58,37,0,0,60,37,0,0,60,37,0,0,62,37,0,0,62,37,0,0,62,37,0,0,62,37,0,0,62,37,0,0,66,37,0,0,66,37,0,0,68,37,0,0,68,37,0,0,70,37,0,0,70,37,0,0,72,37,0,0,74,37,0,0,76,37,0,0,76,37,0,0,78,37,0,0,82,37,0,0,84,37,0,0,86,37,0,0,86,37,0,0,86,37,0,0,86,37,0,0,88,37,0,0,92,37,0,0,92,37,0,0,94,37,0,0,96,37,0,0,96,37,0,0,100,37,0,0,100,37,0,0,102,37,0,0,102,37,0,0,102,37,0,0,102,37,0,0,102,37,0,0,108,37,0,0,108,37,0,0,110,37,0,0,112,37,0,0,112,37,0,0,114,37,0,0,116,37,0,0,116,37,0,0,118,37,0,0,120,37,0,0,122,37,0,0,122,37,0,0,124,37,0,0,124,37,0,0,126,37,0,0,128,37,0,0,130,37,0,0,130,37,0,0,130,37,0,0,134,37,0,0,136,37,0,0,140,37,0,0,140,37,0,0,140,37,0,0,142,37,0,0,144,37,0,0,144,37,0,0,144,37,0,0,144,37,0,0,144,37,0,0,144,37,0,0,144,37,0,0,144,37,0,0,144,37,0,0,144,37,0,0,146,37,0,0,148,37,0,0,148,37,0,0,148,37,0,0,148,37,0,0,148,37,0,0,152,37,0,0,152,37,0,0,154,37,0,0,156,37,0,0,156,37,0,0,156,37,0,0,158,37,0,0,160,37,0,0,164,37,0,0,164,37,0,0,164,37,0,0,164,37,0,0,164,37,0,0,164,37,0,0,164,37,0,0,164,37,0,0,164,37,0,0,164,37,0,0,166,37,0,0,166,37,0,0,166,37,0,0,166,37,0,0,168,37,0,0,170,37,0,0,172,37,0,0,174,37,0,0,174,37,0,0,174,37,0,0,176,37,0,0,178,37,0,0,178,37,0,0,180,37,0,0,180,37,0,0,182,37,0,0,184,37,0,0,188,37,0,0,190,37,0,0,190,37,0,0,190,37,0,0,192,37,0,0,192,37,0,0,194,37,0,0,194,37,0,0,194,37,0,0,194,37,0,0,194,37,0,0,196,37,0,0,200,37,0,0,200,37,0,0,202,37,0,0,202,37,0,0,204,37,0,0,204,37,0,0,206,37,0,0,206,37,0,0,206,37,0,0,208,37,0,0,210,37,0,0,210,37,0,0,210,37,0,0,212,37,0,0,214,37,0,0,214,37,0,0,216,37,0,0,216,37,0,0,218,37,0,0,218,37,0,0,218,37,0,0,218,37,0,0,218,37,0,0,218,37,0,0,220,37,0,0,220,37,0,0,220,37,0,0,220,37,0,0,220,37,0,0,220,37,0,0,222,37,0,0,222,37,0,0,222,37,0,0,222,37,0,0,222,37,0,0,224,37,0,0,228,37,0,0,230,37,0,0,230,37,0,0,232,37,0,0,232,37,0,0,232,37,0,0,236,37,0,0,236,37,0,0,236,37,0,0,238,37,0,0,240,37,0,0,242,37,0,0,246,37,0,0,250,37,0,0,250,37,0,0,252,37,0,0,2,38,0,0,2,38,0,0,4,38,0,0,10,38,0,0,10,38,0,0,10,38,0,0,10,38,0,0,10,38,0,0,10,38,0,0,12,38,0,0,14,38,0,0,16,38,0,0,18,38,0,0,18,38,0,0,18,38,0,0,18,38,0,0,18,38,0,0,20,38,0,0,20,38,0,0,22,38,0,0,22,38,0,0,22,38,0,0,24,38,0,0,28,38,0,0,28,38,0,0,28,38,0,0,28,38,0,0,32,38,0,0,34,38,0,0,34,38,0,0,38,38,0,0,38,38,0,0,38,38,0,0,42,38,0,0,42,38,0,0,44,38,0,0,44,38,0,0,44,38,0,0,44,38,0,0,44,38,0,0,48,38,0,0,48,38,0,0,48,38,0,0,50,38,0,0,52,38,0,0,52,38,0,0,56,38,0,0,56,38,0,0,56,38,0,0,56,38,0,0,56,38,0,0,56,38,0,0,58,38,0,0,60,38,0,0,60,38,0,0,62,38,0,0,62,38,0,0,62,38,0,0,62,38,0,0,62,38,0,0,62,38,0,0,62,38,0,0,64,38,0,0,66,38,0,0,68,38,0,0,70,38,0,0,70,38,0,0,70,38,0,0,70,38,0,0,70,38,0,0,70,38,0,0,72,38,0,0,72,38,0,0,72,38,0,0,74,38,0,0,74,38,0,0,76,38,0,0,76,38,0,0,76,38,0,0,76,38,0,0,76,38,0,0,76,38,0,0,76,38,0,0,76,38,0,0,80,38,0,0,80,38,0,0,80,38,0,0,82,38,0,0,82,38,0,0,82,38,0,0,84,38,0,0,86,38,0,0,86,38,0,0,86,38,0,0,86,38,0,0,88,38,0,0,90,38,0,0,90,38,0,0,90,38,0,0,90,38,0,0,98,38,0,0,102,38,0,0,106,38,0,0,106,38,0,0,108,38,0,0,108,38,0,0,108,38,0,0,108,38,0,0,110,38,0,0,110,38,0,0,110,38,0,0,112,38,0,0,122,38,0,0,124,38,0,0,126,38,0,0,126,38,0,0,126,38,0,0,126,38,0,0,132,38,0,0,132,38,0,0,132,38,0,0,132,38,0,0,132,38,0,0,132,38,0,0,132,38,0,0,132,38,0,0,132,38,0,0,132,38,0,0,132,38,0,0,132,38,0,0,134,38,0,0,136,38,0,0,138,38,0,0,138,38,0,0,138,38,0,0,140,38,0,0,140,38,0,0,142,38,0,0,144,38,0,0,144,38,0,0,144,38,0,0,146,38,0,0,148,38,0,0,148,38,0,0,150,38,0,0,150,38,0,0,150,38,0,0,154,38,0,0,156,38,0,0,158,38,0,0,160,38,0,0,162,38,0,0,162,38,0,0,164,38,0,0,166,38,0,0,168,38,0,0,170,38,0,0,170,38,0,0,172,38,0,0,172,38,0,0,176,38,0,0,178,38,0,0,178,38,0,0,182,38,0,0,184,38,0,0,184,38,0,0,184,38,0,0,186,38,0,0,188,38,0,0,188,38,0,0,188,38,0,0,188,38,0,0,192,38,0,0,196,38,0,0,196,38,0,0,196,38,0,0,200,38,0,0,200,38,0,0,200,38,0,0,202,38,0,0,202,38,0,0,202,38,0,0,204,38,0,0,208,38,0,0,208,38,0,0,208,38,0,0,208,38,0,0,208,38,0,0,210,38,0,0,210,38,0,0,210,38,0,0,212,38,0,0,214,38,0,0,216,38,0,0,218,38,0,0,218,38,0,0,220,38,0,0,220,38,0,0,224,38,0,0,226,38,0,0,228,38,0,0,230,38,0,0,230,38,0,0,230,38,0,0,234,38,0,0,234,38,0,0,234,38,0,0,234,38,0,0,236,38,0,0,236,38,0,0,236,38,0,0,236,38,0,0,236,38,0,0,236,38,0,0,240,38,0,0,242,38,0,0,242,38,0,0,242,38,0,0,244,38,0,0,244,38,0,0,246,38,0,0,246,38,0,0,246,38,0,0,246,38,0,0,246,38,0,0,246,38,0,0,248,38,0,0,250,38,0,0,250,38,0,0,250,38,0,0,250,38,0,0,252,38,0,0,2,39,0,0,2,39,0,0,4,39,0,0,4,39,0,0,4,39,0,0,4,39,0,0,8,39,0,0,8,39,0,0,8,39,0,0,10,39,0,0,10,39,0,0,10,39,0,0,10,39,0,0,10,39,0,0,10,39,0,0,10,39,0,0,10,39,0,0,14,39,0,0,16,39,0,0,16,39,0,0,18,39,0,0,18,39,0,0,18,39,0,0,18,39,0,0,20,39,0,0,22,39,0,0,22,39,0,0,26,39,0,0,26,39,0,0,28,39,0,0,28,39,0,0,30,39,0,0,30,39,0,0,30,39,0,0,30,39,0,0,32,39,0,0,32,39,0,0,36,39,0,0,38,39,0,0,38,39,0,0,38,39,0,0,38,39,0,0,38,39,0,0,38,39,0,0,40,39,0,0,40,39,0,0,42,39,0,0,48,39,0,0,50,39,0,0,50,39,0,0,50,39,0,0,50,39,0,0,50,39,0,0,52,39,0,0,54,39,0,0,56,39,0,0,58,39,0,0,58,39,0,0,60,39,0,0,60,39,0,0,64,39,0,0,64,39,0,0,64,39,0,0,66,39,0,0,66,39,0,0,66,39,0,0,66,39,0,0,66,39,0,0,68,39,0,0,68,39,0,0,68,39,0,0,68,39,0,0,68,39,0,0,68,39,0,0,70,39,0,0,70,39,0,0,70,39,0,0,76,39,0,0,78,39,0,0,78,39,0,0,78,39,0,0,80,39,0,0,84,39,0,0,84,39,0,0,86,39,0,0,86,39,0,0,90,39,0,0,90,39,0,0,92,39,0,0,92,39,0,0,92,39,0,0,92,39,0,0,92,39,0,0,92,39,0,0,92,39,0,0,92,39,0,0,92,39,0,0,96,39,0,0,100,39,0,0,100,39,0,0,100,39,0,0,100,39,0,0,102,39,0,0,104,39,0,0,104,39,0,0,104,39,0,0,104,39,0,0,104,39,0,0,106,39,0,0,108,39,0,0,110,39,0,0,110,39,0,0,110,39,0,0,110,39,0,0,112,39,0,0,112,39,0,0,112,39,0,0,114,39,0,0,114,39,0,0,114,39,0,0,114,39,0,0,114,39,0,0,114,39,0,0,116,39,0,0,116,39,0,0,116,39,0,0,118,39,0,0,118,39,0,0,122,39,0,0,124,39,0,0,126,39,0,0,128,39,0,0,132,39,0,0,132,39,0,0,132,39,0,0,132,39,0,0,132,39,0,0,134,39,0,0,134,39,0,0,134,39,0,0,136,39,0,0,136,39,0,0,136,39,0,0,136,39,0,0,138,39,0,0,138,39,0,0,140,39,0,0,142,39,0,0,144,39,0,0,144,39,0,0,144,39,0,0,146,39,0,0,148,39,0,0,150,39,0,0,150,39,0,0,150,39,0,0,150,39,0,0,152,39,0,0,154,39,0,0,156,39,0,0,156,39,0,0,156,39,0,0,156,39,0,0,158,39,0,0,160,39,0,0,160,39,0,0,162,39,0,0,166,39,0,0,166,39,0,0,166,39,0,0,166,39,0,0,170,39,0,0,172,39,0,0,172,39,0,0,174,39,0,0,174,39,0,0,174,39,0,0,180,39,0,0,180,39,0,0,180,39,0,0,180,39,0,0,180,39,0,0,180,39,0,0,180,39,0,0,180,39,0,0,182,39,0,0,182,39,0,0,182,39,0,0,184,39,0,0,186,39,0,0,186,39,0,0,188,39,0,0,190,39,0,0,190,39,0,0,192,39,0,0,192,39,0,0,192,39,0,0,192,39,0,0,194,39,0,0,196,39,0,0,196,39,0,0,196,39,0,0,196,39,0,0,198,39,0,0,198,39,0,0,200,39,0,0,200,39,0,0,200,39,0,0,200,39,0,0,202,39,0,0,204,39,0,0,204,39,0,0,204,39,0,0,204,39,0,0,204,39,0,0,206,39,0,0,208,39,0,0,208,39,0,0,210,39,0,0,210,39,0,0,212,39,0,0,214,39,0,0,216,39,0,0,216,39,0,0,218,39,0,0,218,39,0,0,222,39,0,0,224,39,0,0,224,39,0,0,224,39,0,0,224,39,0,0,224,39,0,0,226,39,0,0,226,39,0,0,226,39,0,0,228,39,0,0,228,39,0,0,228,39,0,0,228,39,0,0,228,39,0,0,228,39,0,0,232,39,0,0,232,39,0,0,232,39,0,0,234,39,0,0,236,39,0,0,238,39,0,0,240,39,0,0,240,39,0,0,240,39,0,0,240,39,0,0,240,39,0,0,242,39,0,0,242,39,0,0,244,39,0,0,244,39,0,0,244,39,0,0,244,39,0,0,246,39,0,0,246,39,0,0,248,39,0,0,250,39,0,0,254,39,0,0,254,39,0,0,254,39,0,0,0,40,0,0,0,40,0,0,4,40,0,0,4,40,0,0,4,40,0,0,4,40,0,0,4,40,0,0,4,40,0,0,4,40,0,0,6,40,0,0,6,40,0,0,8,40,0,0,8,40,0,0,8,40,0,0,10,40,0,0,10,40,0,0,14,40,0,0,18,40,0,0,18,40,0,0,18,40,0,0,20,40,0,0,22,40,0,0,26,40,0,0,26,40,0,0,30,40,0,0,30,40,0,0,30,40,0,0,30,40,0,0,32,40,0,0,32,40,0,0,32,40,0,0,32,40,0,0,34,40,0,0,36,40,0,0,40,40,0,0,40,40,0,0,42,40,0,0,42,40,0,0,42,40,0,0,44,40,0,0,46,40,0,0,46,40,0,0,46,40,0,0,46,40,0,0,50,40,0,0,50,40,0,0,52,40,0,0,52,40,0,0,52,40,0,0,54,40,0,0,54,40,0,0,56,40,0,0,60,40,0,0,64,40,0,0,64,40,0,0,64,40,0,0,64,40,0,0,66,40,0,0,68,40,0,0,70,40,0,0,70,40,0,0,74,40,0,0,74,40,0,0,74,40,0,0,74,40,0,0,74,40,0,0,74,40,0,0,76,40,0,0,78,40,0,0,78,40,0,0,78,40,0,0,78,40,0,0,80,40,0,0,80,40,0,0,80,40,0,0,80,40,0,0,80,40,0,0,80,40,0,0,80,40,0,0,80,40,0,0,82,40,0,0,84,40,0,0,84,40,0,0,90,40,0,0,90,40,0,0,92,40,0,0,92,40,0,0,92,40,0,0,94,40,0,0,96,40,0,0,98,40,0,0,100,40,0,0,100,40,0,0,100,40,0,0,102,40,0,0,104,40,0,0,106,40,0,0,106,40,0,0,106,40,0,0,108,40,0,0,108,40,0,0,108,40,0,0,110,40,0,0,110,40,0,0,112,40,0,0,112,40,0,0,114,40,0,0,114,40,0,0,114,40,0,0,116,40,0,0,116,40,0,0,118,40,0,0,122,40,0,0,122,40,0,0,124,40,0,0,124,40,0,0,124,40,0,0,126,40,0,0,126,40,0,0,128,40,0,0,128,40,0,0,130,40,0,0,130,40,0,0,134,40,0,0,138,40,0,0,138,40,0,0,138,40,0,0,138,40,0,0,138,40,0,0,140,40,0,0,142,40,0,0,144,40,0,0,144,40,0,0,144,40,0,0,144,40,0,0,144,40,0,0,146,40,0,0,148,40,0,0,148,40,0,0,148,40,0,0,148,40,0,0,150,40,0,0,150,40,0,0,150,40,0,0,150,40,0,0,154,40,0,0,156,40,0,0,156,40,0,0,160,40,0,0,160,40,0,0,162,40,0,0,164,40,0,0,170,40,0,0,170,40,0,0,172,40,0,0,172,40,0,0,174,40,0,0,174,40,0,0,174,40,0,0,176,40,0,0,176,40,0,0,176,40,0,0,176,40,0,0,180,40,0,0,182,40,0,0,182,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,186,40,0,0,188,40,0,0,188,40,0,0,188,40,0,0,188,40,0,0,188,40,0,0,192,40,0,0,192,40,0,0,192,40,0,0,192,40,0,0,194,40,0,0,196,40,0,0,196,40,0,0,196,40,0,0,196,40,0,0,196,40,0,0,196,40,0,0,196,40,0,0,196,40,0,0,196,40,0,0,198,40,0,0,198,40,0,0,198,40,0,0,202,40,0,0,204,40,0,0,206,40,0,0,210,40,0,0,210,40,0,0,210,40,0,0,210,40,0,0,214,40,0,0,214,40,0,0,214,40,0,0,214,40,0,0,214,40,0,0,214,40,0,0,216,40,0,0,218,40,0,0,218,40,0,0,218,40,0,0,218,40,0,0,218,40,0,0,218,40,0,0,218,40,0,0,218,40,0,0,218,40,0,0,218,40,0,0,220,40,0,0,222,40,0,0,226,40,0,0,226,40,0,0,228,40,0,0,228,40,0,0,230,40,0,0,232,40,0,0,232,40,0,0,234,40,0,0,236,40,0,0,236,40,0,0,238,40,0,0,242,40,0,0,242,40,0,0,242,40,0,0,244,40,0,0,244,40,0,0,244,40,0,0,246,40,0,0,248,40,0,0,248,40,0,0,248,40,0,0,248,40,0,0,250,40,0,0,254,40,0,0,254,40,0,0,254,40,0,0,254,40,0,0,254,40,0,0,254,40,0,0,254,40,0,0,254,40,0,0,254,40,0,0,254,40,0,0,0,41,0,0,0,41,0,0,2,41,0,0,6,41,0,0,8,41,0,0,8,41,0,0,8,41,0,0,12,41,0,0,12,41,0,0,12,41,0,0,12,41,0,0,16,41,0,0,18,41,0,0,20,41,0,0,22,41,0,0,26,41,0,0,26,41,0,0,26,41,0,0,28,41,0,0,28,41,0,0,28,41,0,0,28,41,0,0,30,41,0,0,32,41,0,0,32,41,0,0,32,41,0,0,32,41,0,0,32,41,0,0,32,41,0,0,32,41,0,0,32,41,0,0,36,41,0,0,38,41,0,0,38,41,0,0,40,41,0,0,40,41,0,0,40,41,0,0,40,41,0,0,44,41,0,0,46,41,0,0,46,41,0,0,48,41,0,0,48,41,0,0,48,41,0,0,50,41,0,0,52,41,0,0,54,41,0,0,58,41,0,0,58,41,0,0,58,41,0,0,60,41,0,0,60,41,0,0,60,41,0,0,60,41,0,0,62,41,0,0,62,41,0,0,62,41,0,0,62,41,0,0,64,41,0,0,64,41,0,0,64,41,0,0,64,41,0,0,66,41,0,0,66,41,0,0,66,41,0,0,70,41,0,0,70,41,0,0,74,41,0,0,74,41,0,0,74,41,0,0,76,41,0,0,76,41,0,0,76,41,0,0,78,41,0,0,80,41,0,0,80,41,0,0,80,41,0,0,80,41,0,0,82,41,0,0,84,41,0,0,86,41,0,0,86,41,0,0,86,41,0,0,88,41,0,0,90,41,0,0,90,41,0,0,92,41,0,0,92,41,0,0,92,41,0,0,92,41,0,0,96,41,0,0,96,41,0,0,98,41,0,0,100,41,0,0,100,41,0,0,100,41,0,0,100,41,0,0,102,41,0,0,102,41,0,0,104,41,0,0,104,41,0,0,110,41,0,0,112,41,0,0,116,41,0,0,116,41,0,0,116,41,0,0,116,41,0,0,118,41,0,0,118,41,0,0,118,41,0,0,118,41,0,0,118,41,0,0,118,41,0,0,122,41,0,0,124,41,0,0,126,41,0,0,128,41,0,0,130,41,0,0,130,41,0,0,130,41,0,0,132,41,0,0,132,41,0,0,136,41,0,0,136,41,0,0,136,41,0,0,136,41,0,0,138,41,0,0,142,41,0,0,142,41,0,0,142,41,0,0,144,41,0,0,144,41,0,0,148,41,0,0,148,41,0,0,148,41,0,0,148,41,0,0,148,41,0,0,148,41,0,0,148,41,0,0,148,41,0,0,150,41,0,0,152,41,0,0,156,41,0,0,156,41,0,0,156,41,0,0,158,41,0,0,158,41,0,0,158,41,0,0,158,41,0,0,158,41,0,0,158,41,0,0,158,41,0,0,160,41,0,0,162,41,0,0,164,41,0,0,164,41,0,0,164,41,0,0,166,41,0,0,166,41,0,0,166,41,0,0,166,41,0,0,166,41,0,0,168,41,0,0,168,41,0,0,170,41,0,0,170,41,0,0,170,41,0,0,170,41,0,0,170,41,0,0,172,41,0,0,172,41,0,0,176,41,0,0,176,41,0,0,176,41,0,0,176,41,0,0,178,41,0,0,180,41,0,0,180,41,0,0,180,41,0,0,184,41,0,0,186,41,0,0,186,41,0,0,186,41,0,0,190,41,0,0,190,41,0,0,192,41,0,0,196,41,0,0,196,41,0,0,196,41,0,0,196,41,0,0,196,41,0,0,196,41,0,0,198,41,0,0,200,41,0,0,202,41,0,0,202,41,0,0,204,41,0,0,204,41,0,0,204,41,0,0,204,41,0,0,204,41,0,0,206,41,0,0,206,41,0,0,208,41,0,0,210,41,0,0,210,41,0,0,210,41,0,0,210,41,0,0,210,41,0,0,212,41,0,0,212,41,0,0,212,41,0,0,216,41,0,0,216,41,0,0,216,41,0,0,216,41,0,0,216,41,0,0,216,41,0,0,218,41,0,0,220,41,0,0,222,41,0,0,222,41,0,0,222,41,0,0,224,41,0,0,224,41,0,0,226,41,0,0,226,41,0,0,226,41,0,0,226,41,0,0,228,41,0,0,228,41,0,0,230,41,0,0,230,41,0,0,232,41,0,0,232,41,0,0,234,41,0,0,234,41,0,0,234,41,0,0,238,41,0,0,240,41,0,0,240,41,0,0,242,41,0,0,244,41,0,0,244,41,0,0,248,41,0,0,252,41,0,0,252,41,0,0,252,41,0,0,252,41,0,0,252,41,0,0,252,41,0,0,252,41,0,0,254,41,0,0,0,42,0,0,2,42,0,0,6,42,0,0,8,42,0,0,8,42,0,0,8,42,0,0,8,42,0,0,8,42,0,0,8,42,0,0,8,42,0,0,10,42,0,0,10,42,0,0,12,42,0,0,12,42,0,0,12,42,0,0,12,42,0,0,16,42,0,0,18,42,0,0,18,42,0,0,20,42,0,0,20,42,0,0,22,42,0,0,26,42,0,0,30,42,0,0,30,42,0,0,32,42,0,0,32,42,0,0,32,42,0,0,34,42,0,0,34,42,0,0,34,42,0,0,34,42,0,0,36,42,0,0,36,42,0,0,40,42,0,0,42,42,0,0,44,42,0,0,44,42,0,0,46,42,0,0,48,42,0,0,48,42,0,0,48,42,0,0,48,42,0,0,52,42,0,0,54,42,0,0,54,42,0,0,54,42,0,0,54,42,0,0,54,42,0,0,56,42,0,0,58,42,0,0,58,42,0,0,60,42,0,0,64,42,0,0,66,42,0,0,68,42,0,0,70,42,0,0,70,42,0,0,70,42,0,0,72,42,0,0,74,42,0,0,74,42,0,0,74,42,0,0,76,42,0,0,78,42,0,0,80,42,0,0,80,42,0,0,80,42,0,0,80,42,0,0,82,42,0,0,82,42,0,0,82,42,0,0,82,42,0,0,82,42,0,0,82,42,0,0,82,42,0,0,84,42,0,0,84,42,0,0,86,42,0,0,86,42,0,0,86,42,0,0,86,42,0,0,88,42,0,0,88,42,0,0,88,42,0,0,92,42,0,0,92,42,0,0,94,42,0,0,94,42,0,0,94,42,0,0,96,42,0,0,100,42,0,0,100,42,0,0,100,42,0,0,100,42,0,0,102,42,0,0,104,42,0,0,106,42,0,0,106,42,0,0,108,42,0,0,112,42,0,0,118,42,0,0,120,42,0,0,120,42,0,0,122,42,0,0,122,42,0,0,122,42,0,0,122,42,0,0,122,42,0,0,122,42,0,0,122,42,0,0,124,42,0,0,124,42,0,0,126,42,0,0,126,42,0,0,126,42,0,0,128,42,0,0,128,42,0,0,128,42,0,0,128,42,0,0,132,42,0,0,132,42,0,0,132,42,0,0,132,42,0,0,132,42,0,0,132,42,0,0,132,42,0,0,132,42,0,0,132,42,0,0,132,42,0,0,134,42,0,0,136,42,0,0,136,42,0,0,138,42,0,0,138,42,0,0,138,42,0,0,140,42,0,0,140,42,0,0,140,42,0,0,142,42,0,0,142,42,0,0,142,42,0,0,144,42,0,0,146,42,0,0,150,42,0,0,152,42,0,0,152,42,0,0,152,42,0,0,154,42,0,0,156,42,0,0,158,42,0,0,158,42,0,0,160,42,0,0,164,42,0,0,166,42,0,0,166,42,0,0,166,42,0,0,168,42,0,0,168,42,0,0,170,42,0,0,170,42,0,0,170,42,0,0,170,42,0,0,170,42,0,0,170,42,0,0,174,42,0,0,174,42,0,0,176,42,0,0,176,42,0,0,176,42,0,0,176,42,0,0,176,42,0,0,176,42,0,0,180,42,0,0,184,42,0,0,184,42,0,0,186,42,0,0,186,42,0,0,186,42,0,0,188,42,0,0,190,42,0,0,190,42,0,0,192,42,0,0,192,42,0,0,194,42,0,0,194,42,0,0,194,42,0,0,194,42,0,0,194,42,0,0,194,42,0,0,196,42,0,0,196,42,0,0,196,42,0,0,196,42,0,0,196,42,0,0,196,42,0,0,196,42,0,0,196,42,0,0,198,42,0,0,198,42,0,0,202,42,0,0,204,42,0,0,206,42,0,0,208,42,0,0,208,42,0,0,208,42,0,0,210,42,0,0,210,42,0,0,214,42,0,0,214,42,0,0,214,42,0,0,216,42,0,0,218,42,0,0,218,42,0,0,218,42,0,0,220,42,0,0,220,42,0,0,220,42,0,0,220,42,0,0,220,42,0,0,222,42,0,0,224,42,0,0,224,42,0,0,224,42,0,0,224,42,0,0,224,42,0,0,224,42,0,0,224,42,0,0,224,42,0,0,226,42,0,0,230,42,0,0,232,42,0,0,234,42,0,0,234,42,0,0,236,42,0,0,238,42,0,0,238,42,0,0,238,42,0,0,240,42,0,0,240,42,0,0,240,42,0,0,240,42,0,0,240,42,0,0,246,42,0,0,246,42,0,0,246,42,0,0,248,42,0,0,250,42,0,0,250,42,0,0,250,42,0,0,250,42,0,0,250,42,0,0,250,42,0,0,250,42,0,0,250,42,0,0,250,42,0,0,250,42,0,0,254,42,0,0,254,42,0,0,0,43,0,0,0,43,0,0,2,43,0,0,4,43,0,0,4,43,0,0,4,43,0,0,6,43,0,0,8,43,0,0,8,43,0,0,10,43,0,0,10,43,0,0,12,43,0,0,14,43,0,0,16,43,0,0,16,43,0,0,16,43,0,0,16,43,0,0,16,43,0,0,18,43,0,0,20,43,0,0,22,43,0,0,26,43,0,0,28,43,0,0,32,43,0,0,36,43,0,0,36,43,0,0,38,43,0,0,40,43,0,0,44,43,0,0,46,43,0,0,46,43,0,0,46,43,0,0,48,43,0,0,48,43,0,0,50,43,0,0,52,43,0,0,52,43,0,0,52,43,0,0,54,43,0,0,56,43,0,0,56,43,0,0,58,43,0,0,58,43,0,0,58,43,0,0,58,43,0,0,58,43,0,0,60,43,0,0,62,43,0,0,62,43,0,0,62,43,0,0,62,43,0,0,62,43,0,0,62,43,0,0,66,43,0,0,72,43,0,0,74,43,0,0,76,43,0,0,76,43,0,0,76,43,0,0,76,43,0,0,76,43,0,0,76,43,0,0,76,43,0,0,80,43,0,0,80,43,0,0,80,43,0,0,80,43,0,0,80,43,0,0,84,43,0,0,86,43,0,0,86,43,0,0,88,43,0,0,88,43,0,0,88,43,0,0,90,43,0,0,90,43,0,0,90,43,0,0,90,43,0,0,94,43,0,0,100,43,0,0,100,43,0,0,100,43,0,0,102,43,0,0,104,43,0,0,106,43,0,0,106,43,0,0,106,43,0,0,108,43,0,0,110,43,0,0,112,43,0,0,112,43,0,0,112,43,0,0,114,43,0,0,116,43,0,0,116,43,0,0,118,43,0,0,120,43,0,0,122,43,0,0,124,43,0,0,126,43,0,0,128,43,0,0,128,43,0,0,130,43,0,0,130,43,0,0,130,43,0,0,130,43,0,0,130,43,0,0,130,43,0,0,130,43,0,0,132,43,0,0,132,43,0,0,134,43,0,0,134,43,0,0,134,43,0,0,134,43,0,0,136,43,0,0,138,43,0,0,140,43,0,0,142,43,0,0,142,43,0,0,142,43,0,0,142,43,0,0,142,43,0,0,142,43,0,0,142,43,0,0,142,43,0,0,142,43,0,0,142,43,0,0,142,43,0,0,142,43,0,0,146,43,0,0,146,43,0,0,146,43,0,0,148,43,0,0,148,43,0,0,150,43,0,0,150,43,0,0,152,43,0,0,154,43,0,0,154,43,0,0,154,43,0,0,154,43,0,0,154,43,0,0,154,43,0,0,156,43,0,0,156,43,0,0,156,43,0,0,156,43,0,0,156,43,0,0,156,43,0,0,156,43,0,0,156,43,0,0,156,43,0,0,156,43,0,0,158,43,0,0,158,43,0,0,162,43,0,0,162,43,0,0,162,43,0,0,162,43,0,0,162,43,0,0,162,43,0,0,162,43,0,0,164,43,0,0,166,43,0,0,168,43,0,0,170,43,0,0,170,43,0,0,170,43,0,0,170,43,0,0,172,43,0,0,174,43,0,0,174,43,0,0,174,43,0,0,174,43,0,0,176,43,0,0,178,43,0,0,178,43,0,0,178,43,0,0,178,43,0,0,178,43,0,0,178,43,0,0,180,43,0,0,182,43,0,0,182,43,0,0,184,43,0,0,186,43,0,0,188,43,0,0,188,43,0,0,188,43,0,0,188,43,0,0,190,43,0,0,194,43,0,0,196,43,0,0,196,43,0,0,196,43,0,0,196,43,0,0,198,43,0,0,198,43,0,0,198,43,0,0,198,43,0,0,198,43,0,0,198,43,0,0,198,43,0,0,198,43,0,0,198,43,0,0,202,43,0,0,204,43,0,0,208,43,0,0,210,43,0,0,210,43,0,0,212,43,0,0,212,43,0,0,214,43,0,0,214,43,0,0,214,43,0,0,216,43,0,0,216,43,0,0,218,43,0,0,218,43,0,0,218,43,0,0,224,43,0,0,224,43,0,0,224,43,0,0,224,43,0,0,224,43,0,0,224,43,0,0,226,43,0,0,228,43,0,0,230,43,0,0,230,43,0,0,230,43,0,0,230,43,0,0,230,43,0,0,230,43,0,0,230,43,0,0,230,43,0,0,232,43,0,0,232,43,0,0,232,43,0,0,232,43,0,0,234,43,0,0,234,43,0,0,236,43,0,0,236,43,0,0,238,43,0,0,238,43,0,0,238,43,0,0,238,43,0,0,238,43,0,0,238,43,0,0,238,43,0,0,238,43,0,0,238,43,0,0,240,43,0,0,242,43,0,0,242,43,0,0,244,43,0,0,244,43,0,0,246,43,0,0,246,43,0,0,248,43,0,0,248,43,0,0,248,43,0,0,248,43,0,0,248,43,0,0,248,43,0,0,248,43,0,0,248,43,0,0,248,43,0,0,250,43,0,0,250,43,0,0,252,43,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,2,44,0,0,6,44,0,0,6,44,0,0,6,44,0,0,12,44,0,0,12,44,0,0,12,44,0,0,16,44,0,0,16,44,0,0,16,44,0,0,16,44,0,0,16,44,0,0,16,44,0,0,16,44,0,0,16,44,0,0,16,44,0,0,16,44,0,0,16,44,0,0,16,44,0,0,18,44,0,0,18,44,0,0,18,44,0,0,20,44,0,0,22,44,0,0,22,44,0,0,24,44,0,0,24,44,0,0,28,44,0,0,28,44,0,0,28,44,0,0,30,44,0,0,30,44,0,0,34,44,0,0,34,44,0,0,34,44,0,0,38,44,0,0,40,44,0,0,42,44,0,0,42,44,0,0,46,44,0,0,46,44,0,0,48,44,0,0,48,44,0,0,48,44,0,0,48,44,0,0,52,44,0,0,54,44,0,0,56,44,0,0,56,44,0,0,56,44,0,0,58,44,0,0,58,44,0,0,58,44,0,0,58,44,0,0,58,44,0,0,58,44,0,0,58,44,0,0,58,44,0,0,58,44,0,0,62,44,0,0,64,44,0,0,64,44,0,0,66,44,0,0,68,44,0,0,70,44,0,0,70,44,0,0,72,44,0,0,74,44,0,0,74,44,0,0,74,44,0,0,74,44,0,0,74,44,0,0,74,44,0,0,74,44,0,0,76,44,0,0,78,44,0,0,78,44,0,0,82,44,0,0,82,44,0,0,84,44,0,0,86,44,0,0,88,44,0,0,90,44,0,0,90,44,0,0,90,44,0,0,90,44,0,0,94,44,0,0,94,44,0,0,94,44,0,0,94,44,0,0,94,44,0,0,96,44,0,0,96,44,0,0,98,44,0,0,100,44,0,0,100,44,0,0,102,44,0,0,102,44,0,0,104,44,0,0,104,44,0,0,104,44,0,0,104,44,0,0,104,44,0,0,104,44,0,0,106,44,0,0,110,44,0,0,110,44,0,0,110,44,0,0,112,44,0,0,112,44,0,0,114,44,0,0,114,44,0,0,114,44,0,0,114,44,0,0,114,44,0,0,114,44,0,0,114,44,0,0,114,44,0,0,114,44,0,0,114,44,0,0,116,44,0,0,118,44,0,0,118,44,0,0,120,44,0,0,120,44,0,0,120,44,0,0,120,44,0,0,120,44,0,0,122,44,0,0,122,44,0,0,122,44,0,0,122,44,0,0,124,44,0,0,124,44,0,0,124,44,0,0,124,44,0,0,124,44,0,0,128,44,0,0,128,44,0,0,130,44,0,0,130,44,0,0,130,44,0,0,130,44,0,0,132,44,0,0,134,44,0,0,134,44,0,0,134,44,0,0,136,44,0,0,136,44,0,0,140,44,0,0,140,44,0,0,140,44,0,0,140,44,0,0,140,44,0,0,142,44,0,0,144,44,0,0,144,44,0,0,144,44,0,0,144,44,0,0,144,44,0,0,148,44,0,0,152,44,0,0,154,44,0,0,154,44,0,0,154,44,0,0,154,44,0,0,154,44,0,0,154,44,0,0,154,44,0,0,154,44,0,0,156,44,0,0,156,44,0,0,156,44,0,0,156,44,0,0,156,44,0,0,158,44,0,0,158,44,0,0,158,44,0,0,158,44,0,0,158,44,0,0,160,44,0,0,160,44,0,0,160,44,0,0,160,44,0,0,162,44,0,0,164,44,0,0,172,44,0,0,176,44,0,0,178,44,0,0,178,44,0,0,178,44,0,0,178,44,0,0,180,44,0,0,180,44,0,0,182,44,0,0,182,44,0,0,182,44,0,0,182,44,0,0,182,44,0,0,182,44,0,0,182,44,0,0,182,44,0,0,184,44,0,0,186,44,0,0,188,44,0,0,192,44,0,0,192,44,0,0,192,44,0,0,192,44,0,0,192,44,0,0,196,44,0,0,196,44,0,0,198,44,0,0,198,44,0,0,198,44,0,0,200,44,0,0,200,44,0,0,200,44,0,0,202,44,0,0,202,44,0,0,202,44,0,0,202,44,0,0,206,44,0,0,208,44,0,0,210,44,0,0,212,44,0,0,214,44,0,0,214,44,0,0,216,44,0,0,216,44,0,0,216,44,0,0,218,44,0,0,218,44,0,0,218,44,0,0,218,44,0,0,222,44,0,0,226,44,0,0,226,44,0,0,226,44,0,0,228,44,0,0,230,44,0,0,230,44,0,0,232,44,0,0,232,44,0,0,232,44,0,0,232,44,0,0,232,44,0,0,236,44,0,0,238,44,0,0,238,44,0,0,238,44,0,0,238,44,0,0,238,44,0,0,240,44,0,0,240,44,0,0,242,44,0,0,242,44,0,0,244,44,0,0,246,44,0,0,248,44,0,0,248,44,0,0,248,44,0,0,250,44,0,0,250,44,0,0,250,44,0,0,252,44,0,0,254,44,0,0,254,44,0,0,254,44,0,0,0,45,0,0,0,45,0,0,4,45,0,0,4,45,0,0,6,45,0,0,6,45,0,0,6,45,0,0,6,45,0,0,6,45,0,0,8,45,0,0,8,45,0,0,10,45,0,0,12,45,0,0,12,45,0,0,12,45,0,0,14,45,0,0,14,45,0,0,16,45,0,0,18,45,0,0,18,45,0,0,20,45,0,0,22,45,0,0,22,45,0,0,22,45,0,0,22,45,0,0,24,45,0,0,26,45,0,0,26,45,0,0,28,45,0,0,30,45,0,0,32,45,0,0,34,45,0,0,34,45,0,0,36,45,0,0,36,45,0,0,38,45,0,0,38,45,0,0,38,45,0,0,38,45,0,0,38,45,0,0,38,45,0,0,42,45,0,0,42,45,0,0,44,45,0,0,48,45,0,0,48,45,0,0,50,45,0,0,50,45,0,0,54,45,0,0,54,45,0,0,54,45,0,0,56,45,0,0,56,45,0,0,56,45,0,0,56,45,0,0,56,45,0,0,56,45,0,0,56,45,0,0,56,45,0,0,58,45,0,0,58,45,0,0,60,45,0,0,64,45,0,0,64,45,0,0,66,45,0,0,68,45,0,0,68,45,0,0,70,45,0,0,72,45,0,0,72,45,0,0,74,45,0,0,74,45,0,0,74,45,0,0,74,45,0,0,74,45,0,0,74,45,0,0,74,45,0,0,74,45,0,0,76,45,0,0,76,45,0,0,76,45,0,0,78,45,0,0,78,45,0,0,80,45,0,0,82,45,0,0,86,45,0,0,86,45,0,0,86,45,0,0,86,45,0,0,86,45,0,0,86,45,0,0,86,45,0,0,88,45,0,0,90,45,0,0,90,45,0,0,90,45,0,0,94,45,0,0,100,45,0,0,100,45,0,0,100,45,0,0,100,45,0,0,104,45,0,0,104,45,0,0,104,45,0,0,104,45,0,0,106,45,0,0,108,45,0,0,110,45,0,0,112,45,0,0,112,45,0,0,114,45,0,0,114,45,0,0,114,45,0,0,114,45,0,0,114,45,0,0,116,45,0,0,116,45,0,0,116,45,0,0,116,45,0,0,116,45,0,0,118,45,0,0,118,45,0,0,120,45,0,0,120,45,0,0,122,45,0,0,122,45,0,0,122,45,0,0,122,45,0,0,124,45,0,0,124,45,0,0,124,45,0,0,124,45,0,0,126,45,0,0,126,45,0,0,126,45,0,0,128,45,0,0,128,45,0,0,130,45,0,0,134,45,0,0,136,45,0,0,136,45,0,0,138,45,0,0,138,45,0,0,138,45,0,0,140,45,0,0,140,45,0,0,140,45,0,0,142,45,0,0,142,45,0,0,142,45,0,0,144,45,0,0,144,45,0,0,146,45,0,0,146,45,0,0,148,45,0,0,148,45,0,0,148,45,0,0,236,45,0,0,238,45,0,0,238,45,0,0,240,45,0,0,240,45,0,0,240,45,0,0,242,45,0,0,244,45,0,0,244,45,0,0,246,45,0,0,250,45,0,0,250,45,0,0,250,45,0,0,252,45,0,0,0,46,0,0,2,46,0,0,4,46,0,0,4,46,0,0,4,46,0,0,6,46,0,0,6,46,0,0,8,46,0,0,10,46,0,0,10,46,0,0,10,46,0,0,12,46,0,0,14,46,0,0,16,46,0,0,16,46,0,0,16,46,0,0,16,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,20,46,0,0,22,46,0,0,22,46,0,0,22,46,0,0,22,46,0,0,24,46,0,0,26,46,0,0,26,46,0,0,32,46,0,0,32,46,0,0,34,46,0,0,38,46,0,0,38,46,0,0,38,46,0,0,38,46,0,0,38,46,0,0,38,46,0,0,38,46,0,0,38,46,0,0,38,46,0,0,38,46,0,0,38,46,0,0,38,46,0,0,38,46,0,0,40,46,0,0,40,46,0,0,40,46,0,0,40,46,0,0,40,46,0,0,40,46,0,0,40,46,0,0,40,46,0,0,40,46,0,0,42,46,0,0,46,46,0,0,46,46,0,0,46,46,0,0,46,46,0,0,48,46,0,0,48,46,0,0,54,46,0,0,54,46,0,0,54,46,0,0,54,46,0,0,54,46,0,0,54,46,0,0,54,46,0,0,54,46,0,0,56,46,0,0,58,46,0,0,60,46,0,0,62,46,0,0,62,46,0,0,64,46,0,0,66,46,0,0,68,46,0,0,68,46,0,0,68,46,0,0,72,46,0,0,72,46,0,0,72,46,0,0,72,46,0,0,72,46,0,0,74,46,0,0,76,46,0,0,78,46,0,0,78,46,0,0,78,46,0,0,80,46,0,0,80,46,0,0,80,46,0,0,80,46,0,0,80,46,0,0,80,46,0,0,80,46,0,0,80,46,0,0,82,46,0,0,82,46,0,0,82,46,0,0,82,46,0,0,84,46,0,0,84,46,0,0,86,46,0,0,86,46,0,0,86,46,0,0,90,46,0,0,90,46,0,0,90,46,0,0,90,46,0,0,92,46,0,0,92,46,0,0,92,46,0,0,94,46,0,0,94,46,0,0,96,46,0,0,96,46,0,0,96,46,0,0,98,46,0,0,98,46,0,0,98,46,0,0,98,46,0,0,98,46,0,0,98,46,0,0,100,46,0,0,100,46,0,0,102,46,0,0,104,46,0,0,104,46,0,0,108,46,0,0,110,46,0,0,110,46,0,0,112,46,0,0,114,46,0,0,118,46,0,0,118,46,0,0,118,46,0,0,118,46,0,0,118,46,0,0,120,46,0,0,122,46,0,0,122,46,0,0,124,46,0,0,126,46,0,0,128,46,0,0,128,46,0,0,130,46,0,0,130,46,0,0,130,46,0,0,130,46,0,0,130,46,0,0,132,46,0,0,134,46,0,0,134,46,0,0,134,46,0,0,136,46,0,0,138,46,0,0,138,46,0,0,138,46,0,0,138,46,0,0,138,46,0,0,138,46,0,0,138,46,0,0,142,46,0,0,142,46,0,0,142,46,0,0,144,46,0,0,144,46,0,0,146,46,0,0,148,46,0,0,148,46,0,0,150,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,158,46,0,0,158,46,0,0,158,46,0,0,158,46,0,0,160,46,0,0,160,46,0,0,160,46,0,0,162,46,0,0,162,46,0,0,164,46,0,0,166,46,0,0,170,46,0,0,170,46,0,0,170,46,0,0,174,46,0,0,174,46,0,0,174,46,0,0,176,46,0,0,176,46,0,0,178,46,0,0,178,46,0,0,178,46,0,0,178,46,0,0,178,46,0,0,180,46,0,0,184,46,0,0,186,46,0,0,186,46,0,0,186,46,0,0,186,46,0,0,188,46,0,0,188,46,0,0,190,46,0,0,192,46,0,0,194,46,0,0,194,46,0,0,198,46,0,0,198,46,0,0,198,46,0,0,200,46,0,0,200,46,0,0,200,46,0,0,204,46,0,0,204,46,0,0,204,46,0,0,206,46,0,0,206,46,0,0,206,46,0,0,210,46,0,0,214,46,0,0,216,46,0,0,216,46,0,0,216,46,0,0,218,46,0,0,218,46,0,0,218,46,0,0,218,46,0,0,218,46,0,0,218,46,0,0,222,46,0,0,224,46,0,0,224,46,0,0,224,46,0,0,224,46,0,0,226,46,0,0,228,46,0,0,230,46,0,0,234,46,0,0,236,46,0,0,236,46,0,0,236,46,0,0,236,46,0,0,236,46,0,0,236,46,0,0,238,46,0,0,238,46,0,0,240,46,0,0,240,46,0,0,242,46,0,0,248,46,0,0,248,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,252,46,0,0,2,47,0,0,4,47,0,0,4,47,0,0,8,47,0,0,8,47,0,0,8,47,0,0,10,47,0,0,10,47,0,0,10,47,0,0,10,47,0,0,10,47,0,0,14,47,0,0,14,47,0,0,14,47,0,0,16,47,0,0,16,47,0,0,16,47,0,0,16,47,0,0,16,47,0,0,16,47,0,0,16,47,0,0,16,47,0,0,18,47,0,0,18,47,0,0,18,47,0,0,18,47,0,0,18,47,0,0,18,47,0,0,20,47,0,0,22,47,0,0,22,47,0,0,22,47,0,0,24,47,0,0,24,47,0,0,24,47,0,0,24,47,0,0,24,47,0,0,24,47,0,0,24,47,0,0,24,47,0,0,26,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,30,47,0,0,34,47,0,0,38,47,0,0,38,47,0,0,38,47,0,0,38,47,0,0,38,47,0,0,38,47,0,0,40,47,0,0,44,47,0,0,46,47,0,0,48,47,0,0,48,47,0,0,52,47,0,0,54,47,0,0,56,47,0,0,56,47,0,0,56,47,0,0,56,47,0,0,56,47,0,0,58,47,0,0,60,47,0,0,60,47,0,0,60,47,0,0,60,47,0,0,60,47,0,0,60,47,0,0,60,47,0,0,62,47,0,0,62,47,0,0,64,47,0,0,64,47,0,0,68,47,0,0,68,47,0,0,70,47,0,0,70,47,0,0,70,47,0,0,70,47,0,0,70,47,0,0,74,47,0,0,76,47,0,0,80,47,0,0,80,47,0,0,80,47,0,0,80,47,0,0,82,47,0,0,82,47,0,0,84,47,0,0,86,47,0,0,86,47,0,0,86,47,0,0,88,47,0,0,88,47,0,0,90,47,0,0,90,47,0,0,90,47,0,0,90,47,0,0,92,47,0,0,92,47,0,0,92,47,0,0,96,47,0,0,102,47,0,0,102,47,0,0,102,47,0,0,102,47,0,0,104,47,0,0,106,47,0,0,106,47,0,0,108,47,0,0,108,47,0,0,112,47,0,0,114,47,0,0,114,47,0,0,114,47,0,0,114,47,0,0,116,47,0,0,116,47,0,0,116,47,0,0,116,47,0,0,116,47,0,0,116,47,0,0,116,47,0,0,116,47,0,0,116,47,0,0,118,47,0,0,120,47,0,0,120,47,0,0,120,47,0,0,124,47,0,0,124,47,0,0,126,47,0,0,126,47,0,0,126,47,0,0,126,47,0,0,128,47,0,0,128,47,0,0,128,47,0,0,130,47,0,0,130,47,0,0,132,47,0,0,132,47,0,0,134,47,0,0,134,47,0,0,134,47,0,0,134,47,0,0,136,47,0,0,138,47,0,0,138,47,0,0,138,47,0,0,140,47,0,0,142,47,0,0,142,47,0,0,148,47,0,0,148,47,0,0,148,47,0,0,150,47,0,0,150,47,0,0,154,47,0,0,160,47,0,0,160,47,0,0,162,47,0,0,162,47,0,0,164,47,0,0,166,47,0,0,166,47,0,0,166,47,0,0,166,47,0,0,170,47,0,0,170,47,0,0,172,47,0,0,172,47,0,0,172,47,0,0,172,47,0,0,172,47,0,0,174,47,0,0,178,47,0,0,178,47,0,0,178,47,0,0,178,47,0,0,178,47,0,0,178,47,0,0,178,47,0,0,178,47,0,0,180,47,0,0,180,47,0,0,182,47,0,0,186,47,0,0,186,47,0,0,186,47,0,0,188,47,0,0,188,47,0,0,188,47,0,0,188,47,0,0,188,47,0,0,190,47,0,0,190,47,0,0,192,47,0,0,192,47,0,0,192,47,0,0,194,47,0,0,194,47,0,0,196,47,0,0,198,47,0,0,200,47,0,0,200,47,0,0,200,47,0,0,200,47,0,0,202,47,0,0,202,47,0,0,202,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,208,47,0,0,210,47,0,0,210,47,0,0,210,47,0,0,210,47,0,0,212,47,0,0,214,47,0,0,214,47,0,0,214,47,0,0,216,47,0,0,218,47,0,0,222,47,0,0,224,47,0,0,224,47,0,0,224,47,0,0,224,47,0,0,226,47,0,0,228,47,0,0,228,47,0,0,228,47,0,0,228,47,0,0,230,47,0,0,230,47,0,0,230,47,0,0,230,47,0,0,232,47,0,0,234,47,0,0,234,47,0,0,234,47,0,0,236,47,0,0,238,47,0,0,238,47,0,0,240,47,0,0,240,47,0,0,242,47,0,0,244,47,0,0,244,47,0,0,244,47,0,0,244,47,0,0,244,47,0,0,244,47,0,0,246,47,0,0,246,47,0,0,248,47,0,0,250,47,0,0,252,47,0,0,252,47,0,0,252,47,0,0,252,47,0,0,254,47,0,0,6,48,0,0,10,48,0,0,12,48,0,0,12,48,0,0,12,48,0,0,12,48,0,0,14,48,0,0,14,48,0,0,14,48,0,0,14,48,0,0,14,48,0,0,14,48,0,0,16,48,0,0,16,48,0,0,16,48,0,0,16,48,0,0,20,48,0,0,24,48,0,0,24,48,0,0,26,48,0,0,30,48,0,0,30,48,0,0,30,48,0,0,32,48,0,0,36,48,0,0,36,48,0,0,38,48,0,0,38,48,0,0,42,48,0,0,42,48,0,0,42,48,0,0,44,48,0,0,44,48,0,0,46,48,0,0,46,48,0,0,48,48,0,0,52,48,0,0,54,48,0,0,54,48,0,0,54,48,0,0,54,48,0,0,56,48,0,0,58,48,0,0,58,48,0,0,60,48,0,0,60,48,0,0,60,48,0,0,60,48,0,0,62,48,0,0,62,48,0,0,62,48,0,0,62,48,0,0,62,48,0,0,64,48,0,0,64,48,0,0,64,48,0,0,64,48,0,0,64,48,0,0,66,48,0,0,66,48,0,0,68,48,0,0,68,48,0,0,70,48,0,0,70,48,0,0,70,48,0,0,70,48,0,0,72,48,0,0,72,48,0,0,74,48,0,0,74,48,0,0,74,48,0,0,76,48,0,0,80,48,0,0,80,48,0,0,82,48,0,0,82,48,0,0,86,48,0,0,88,48,0,0,88,48,0,0,88,48,0,0,88,48,0,0,90,48,0,0,92,48,0,0,92,48,0,0,92,48,0,0,98,48,0,0,100,48,0,0,100,48,0,0,100,48,0,0,100,48,0,0,102,48,0,0,102,48,0,0,102,48,0,0,102,48,0,0,106,48,0,0,108,48,0,0,108,48,0,0,108,48,0,0,108,48,0,0,108,48,0,0,108,48,0,0,110,48,0,0,110,48,0,0,110,48,0,0,112,48,0,0,114,48,0,0,116,48,0,0,118,48,0,0,120,48,0,0,120,48,0,0,122,48,0,0,122,48,0,0,122,48,0,0,122,48,0,0,122,48,0,0,124,48,0,0,126,48,0,0,130,48,0,0,130,48,0,0,130,48,0,0,130,48,0,0,130,48,0,0,130,48,0,0,132,48,0,0,132,48,0,0,136,48,0,0,138,48,0,0,138,48,0,0,138,48,0,0,138,48,0,0,138,48,0,0,138,48,0,0,138,48,0,0,138,48,0,0,140,48,0,0,140,48,0,0,142,48,0,0,144,48,0,0,144,48,0,0,144,48,0,0,146,48,0,0,146,48,0,0,146,48,0,0,148,48,0,0,148,48,0,0,148,48,0,0,148,48,0,0,150,48,0,0,150,48,0,0,152,48,0,0,154,48,0,0,154,48,0,0,154,48,0,0,154,48,0,0,154,48,0,0,154,48,0,0,154,48,0,0,156,48,0,0,156,48,0,0,160,48,0,0,160,48,0,0,160,48,0,0,162,48,0,0,162,48,0,0,162,48,0,0,166,48,0,0,166,48,0,0,166,48,0,0,168,48,0,0,168,48,0,0,170,48,0,0,170,48,0,0,170,48,0,0,170,48,0,0,170,48,0,0,170,48,0,0,172,48,0,0,172,48,0,0,172,48,0,0,172,48,0,0,174,48,0,0,174,48,0,0,178,48,0,0,180,48,0,0,180,48,0,0,182,48,0,0,184,48,0,0,186,48,0,0,186,48,0,0,186,48,0,0,188,48,0,0,188,48,0,0,190,48,0,0,190,48,0,0,190,48,0,0,194,48,0,0,200,48,0,0,200,48,0,0,206,48,0,0,206,48,0,0,208,48,0,0,208,48,0,0,208,48,0,0,210,48,0,0,212,48,0,0,212,48,0,0,212,48,0,0,214,48,0,0,214,48,0,0,214,48,0,0,218,48,0,0,218,48,0,0,220,48,0,0,220,48,0,0,228,48,0,0,230,48,0,0,230,48,0,0,230,48,0,0,232,48,0,0,234,48,0,0,234,48,0,0,234,48,0,0,236,48,0,0,236,48,0,0,238,48,0,0,238,48,0,0,238,48,0,0,238,48,0,0,238,48,0,0,240,48,0,0,242,48,0,0,242,48,0,0,244,48,0,0,246,48,0,0,250,48,0,0,250,48,0,0,254,48,0,0,254,48,0,0,254,48,0,0,0,49,0,0,0,49,0,0,2,49,0,0,2,49,0,0,2,49,0,0,2,49,0,0,4,49,0,0,6,49,0,0,8,49,0,0,8,49,0,0,8,49,0,0,8,49,0,0,8,49,0,0,10,49,0,0,10,49,0,0,10,49,0,0,14,49,0,0,14,49,0,0,14,49,0,0,14,49,0,0,16,49,0,0,16,49,0,0,16,49,0,0,18,49,0,0,18,49,0,0,20,49,0,0,20,49,0,0,20,49,0,0,20,49,0,0,20,49,0,0,22,49,0,0,22,49,0,0,26,49,0,0,28,49,0,0,28,49,0,0,30,49,0,0,30,49,0,0,32,49,0,0,34,49,0,0,34,49,0,0,34,49,0,0,36,49,0,0,36,49,0,0,42,49,0,0,42,49,0,0,46,49,0,0,46,49,0,0,46,49,0,0,46,49,0,0,48,49,0,0,50,49,0,0,50,49,0,0,50,49,0,0,50,49,0,0,50,49,0,0,52,49,0,0,52,49,0,0,52,49,0,0,52,49,0,0,54,49,0,0,54,49,0,0,56,49,0,0,56,49,0,0,56,49,0,0,56,49,0,0,56,49,0,0,62,49,0,0,64,49,0,0,64,49,0,0,68,49,0,0,68,49,0,0,70,49,0,0,70,49,0,0,70,49,0,0,70,49,0,0,72,49,0,0,72,49,0,0,72,49,0,0,74,49,0,0,74,49,0,0,74,49,0,0,74,49,0,0,78,49,0,0,84,49,0,0,86,49,0,0,86,49,0,0,86,49,0,0,86,49,0,0,88,49,0,0,88,49,0,0,88,49,0,0,92,49,0,0,96,49,0,0,102,49,0,0,102,49,0,0,102,49,0,0,102,49,0,0,102,49,0,0,102,49,0,0,102,49,0,0,102,49,0,0,102,49,0,0,102,49,0,0,102,49,0,0,102,49,0,0,102,49,0,0,106,49,0,0,108,49,0,0,108,49,0,0,108,49,0,0,108,49,0,0,108,49,0,0,110,49,0,0,110,49,0,0,114,49,0,0,114,49,0,0,116,49,0,0,118,49,0,0,118,49,0,0,118,49,0,0,120,49,0,0,122,49,0,0,122,49,0,0,122,49,0,0,124,49,0,0,126,49,0,0,126,49,0,0,126,49,0,0,126,49,0,0,128,49,0,0,128,49,0,0,128,49,0,0,130,49,0,0,132,49,0,0,132,49,0,0,134,49,0,0,136,49,0,0,136,49,0,0,136,49,0,0,136,49,0,0,136,49,0,0,136,49,0,0,136,49,0,0,136,49,0,0,138,49,0,0,144,49,0,0,144,49,0,0,146,49,0,0,146,49,0,0,154,49,0,0,154,49,0,0,156,49,0,0,156,49,0,0,158,49,0,0,158,49,0,0,158,49,0,0,158,49,0,0,162,49,0,0,162,49,0,0,166,49,0,0,166,49,0,0,168,49,0,0,168,49,0,0,168,49,0,0,170,49,0,0,170,49,0,0,172,49,0,0,172,49,0,0,172,49,0,0,176,49,0,0,176,49,0,0,178,49,0,0,178,49,0,0,180,49,0,0,180,49,0,0,180,49,0,0,182,49,0,0,184,49,0,0,184,49,0,0,188,49,0,0,188,49,0,0,188,49,0,0,188,49,0,0,188,49,0,0,188,49,0,0,194,49,0,0,196,49,0,0,200,49,0,0,202,49,0,0,202,49,0,0,202,49,0,0,204,49,0,0,204,49,0,0,204,49,0,0,204,49,0,0,206,49,0,0,206,49,0,0,206,49,0,0,208,49,0,0,210,49,0,0,214,49,0,0,214,49,0,0,214,49,0,0,214,49,0,0,214,49,0,0,214,49,0,0,214,49,0,0,216,49,0,0,216,49,0,0,216,49,0,0,218,49,0,0,218,49,0,0,218,49,0,0,218,49,0,0,220,49,0,0,222,49,0,0,222,49,0,0,222,49,0,0,222,49,0,0,224,49,0,0,226,49,0,0,226,49,0,0,226,49,0,0,226,49,0,0,226,49,0,0,226,49,0,0,226,49,0,0,226,49,0,0,226,49,0,0,226,49,0,0,226,49,0,0,226,49,0,0,228,49,0,0,228,49,0,0,230,49,0,0,230,49,0,0,230,49,0,0,230,49,0,0,230,49,0,0,230,49,0,0,232,49,0,0,232,49,0,0,232,49,0,0,234,49,0,0,234,49,0,0,234,49,0,0,238,49,0,0,238,49,0,0,238,49,0,0,244,49,0,0,244,49,0,0,246,49,0,0,250,49,0,0,252,49,0,0,252,49,0,0,252,49,0,0,0,50,0,0,0,50,0,0,2,50,0,0,6,50,0,0,6,50,0,0,6,50,0,0,6,50,0,0,6,50,0,0,6,50,0,0,8,50,0,0,8,50,0,0,8,50,0,0,8,50,0,0,8,50,0,0,12,50,0,0,12,50,0,0,16,50,0,0,18,50,0,0,20,50,0,0,20,50,0,0,24,50,0,0,24,50,0,0,24,50,0,0,24,50,0,0,26,50,0,0,26,50,0,0,26,50,0,0,28,50,0,0,28,50,0,0,28,50,0,0,30,50,0,0,32,50,0,0,36,50,0,0,36,50,0,0,36,50,0,0,36,50,0,0,36,50,0,0,36,50,0,0,38,50,0,0,42,50,0,0,44,50,0,0,44,50,0,0,44,50,0,0,46,50,0,0,46,50,0,0,48,50,0,0,52,50,0,0,52,50,0,0,52,50,0,0,52,50,0,0,54,50,0,0,54,50,0,0,54,50,0,0,54,50,0,0,54,50,0,0,56,50,0,0,56,50,0,0,56,50,0,0,56,50,0,0,60,50,0,0,60,50,0,0,60,50,0,0,60,50,0,0,60,50,0,0,60,50,0,0,64,50,0,0,64,50,0,0,64,50,0,0,66,50,0,0,66,50,0,0,66,50,0,0,68,50,0,0,70,50,0,0,72,50,0,0,72,50,0,0,72,50,0,0,72,50,0,0,76,50,0,0,80,50,0,0,80,50,0,0,80,50,0,0,80,50,0,0,82,50,0,0,82,50,0,0,82,50,0,0,84,50,0,0,86,50,0,0,86,50,0,0,88,50,0,0,88,50,0,0,92,50,0,0,92,50,0,0,94,50,0,0,94,50,0,0,96,50,0,0,98,50,0,0,102,50,0,0,106,50,0,0,108,50,0,0,108,50,0,0,108,50,0,0,108,50,0,0,108,50,0,0,108,50,0,0,112,50,0,0,112,50,0,0,112,50,0,0,116,50,0,0,116,50,0,0,116,50,0,0,116,50,0,0,116,50,0,0,118,50,0,0,118,50,0,0,120,50,0,0,124,50,0,0,124,50,0,0,126,50,0,0,128,50,0,0,128,50,0,0,128,50,0,0,128,50,0,0,130,50,0,0,130,50,0,0,130,50,0,0,130,50,0,0,130,50,0,0,130,50,0,0,130,50,0,0,132,50,0,0,134,50,0,0,136,50,0,0,136,50,0,0,136,50,0,0,136,50,0,0,136,50,0,0,136,50,0,0,136,50,0,0,136,50,0,0,136,50,0,0,136,50,0,0,136,50,0,0,138,50,0,0,142,50,0,0,142,50,0,0,142,50,0,0,142,50,0,0,142,50,0,0,144,50,0,0,144,50,0,0,144,50,0,0,148,50,0,0,148,50,0,0,148,50,0,0,148,50,0,0,148,50,0,0,150,50,0,0,154,50,0,0,156,50,0,0,156,50,0,0,158,50,0,0,162,50,0,0,164,50,0,0,166,50,0,0,166,50,0,0,166,50,0,0,166,50,0,0,166,50,0,0,166,50,0,0,168,50,0,0,168,50,0,0,170,50,0,0,170,50,0,0,170,50,0,0,170,50,0,0,170,50,0,0,172,50,0,0,174,50,0,0,174,50,0,0,176,50,0,0,176,50,0,0,178,50,0,0,178,50,0,0,178,50,0,0,180,50,0,0,180,50,0,0,180,50,0,0,184,50,0,0,188,50,0,0,190,50,0,0,190,50,0,0,194,50,0,0,194,50,0,0,196,50,0,0,196,50,0,0,196,50,0,0,196,50,0,0,200,50,0,0,200,50,0,0,200,50,0,0,200,50,0,0,200,50,0,0,202,50,0,0,202,50,0,0,202,50,0,0,202,50,0,0,204,50,0,0,204,50,0,0,204,50,0,0,204,50,0,0,204,50,0,0,208,50,0,0,208,50,0,0,208,50,0,0,208,50,0,0,208,50,0,0,208,50,0,0,210,50,0,0,210,50,0,0,210,50,0,0,210,50,0,0,210,50,0,0,210,50,0,0,210,50,0,0,210,50,0,0,212,50,0,0,212,50,0,0,212,50,0,0,212,50,0,0,212,50,0,0,212,50,0,0,212,50,0,0,214,50,0,0,216,50,0,0,218,50,0,0,222,50,0,0,224,50,0,0,224,50,0,0,224,50,0,0,224,50,0,0,224,50,0,0,224,50,0,0,226,50,0,0,228,50,0,0,228,50,0,0,230,50,0,0,232,50,0,0,232,50,0,0,234,50,0,0,234,50,0,0,234,50,0,0,234,50,0,0,234,50,0,0,234,50,0,0,238,50,0,0,238,50,0,0,240,50,0,0,242,50,0,0,242,50,0,0,244,50,0,0,244,50,0,0,244,50,0,0,246,50,0,0,248,50,0,0,250,50,0,0,250,50,0,0,252,50,0,0,254,50,0,0,254,50,0,0,254,50,0,0,254,50,0,0,254,50,0,0,0,51,0,0,2,51,0,0,2,51,0,0,4,51,0,0,6,51,0,0,8,51,0,0,8,51,0,0,12,51,0,0,12,51,0,0,12,51,0,0,14,51,0,0,14,51,0,0,14,51,0,0,14,51,0,0,16,51,0,0,16,51,0,0,16,51,0,0,18,51,0,0,18,51,0,0,18,51,0,0,18,51,0,0,18,51,0,0,18,51,0,0,18,51,0,0,24,51,0,0,24,51,0,0,24,51,0,0,24,51,0,0,24,51,0,0,24,51,0,0,24,51,0,0,26,51,0,0,26,51,0,0,26,51,0,0,28,51,0,0,28,51,0,0,28,51,0,0,30,51,0,0,34,51,0,0,36,51,0,0,36,51,0,0,36,51,0,0,36,51,0,0,36,51,0,0,36,51,0,0,36,51,0,0,36,51,0,0,38,51,0,0,38,51,0,0,38,51,0,0,40,51,0,0,44,51,0,0,44,51,0,0,44,51,0,0,44,51,0,0,44,51,0,0,44,51,0,0,44,51,0,0,44,51,0,0,44,51,0,0,48,51,0,0,48,51,0,0,48,51,0,0,48,51,0,0,48,51,0,0,48,51,0,0,48,51,0,0,48,51,0,0,48,51,0,0,48,51,0,0,50,51,0,0,50,51,0,0,54,51,0,0,54,51,0,0,56,51,0,0,56,51,0,0,56,51,0,0,56,51,0,0,56,51,0,0,58,51,0,0,60,51,0,0,60,51,0,0,60,51,0,0,60,51,0,0,62,51,0,0,62,51,0,0,62,51,0,0,64,51,0,0,64,51,0,0,66,51,0,0,68,51,0,0,68,51,0,0,68,51,0,0,68,51,0,0,68,51,0,0,68,51,0,0,68,51,0,0,68,51,0,0,68,51,0,0,70,51,0,0,74,51,0,0,74,51,0,0,80,51,0,0,84,51,0,0,86,51,0,0,86,51,0,0,88,51,0,0,88,51,0,0,90,51,0,0,92,51,0,0,94,51,0,0,96,51,0,0,98,51,0,0,98,51,0,0,100,51,0,0,100,51,0,0,102,51,0,0,102,51,0,0,106,51,0,0,108,51,0,0,108,51,0,0,108,51,0,0,108,51,0,0,108,51,0,0,108,51,0,0,112,51,0,0,112,51,0,0,114,51,0,0,114,51,0,0,114,51,0,0,114,51,0,0,120,51,0,0,122,51,0,0,122,51,0,0,124,51,0,0,124,51,0,0,124,51,0,0,124,51,0,0,124,51,0,0,124,51,0,0,124,51,0,0,124,51,0,0,124,51,0,0,126,51,0,0,126,51,0,0,130,51,0,0,130,51,0,0,130,51,0,0,130,51,0,0,130,51,0,0,130,51,0,0,130,51,0,0,132,51,0,0,134,51,0,0,134,51,0,0,138,51,0,0,140,51,0,0,140,51,0,0,140,51,0,0,142,51,0,0,142,51,0,0,142,51,0,0,142,51,0,0,144,51,0,0,144,51,0,0,146,51,0,0,146,51,0,0,146,51,0,0,148,51,0,0,148,51,0,0,148,51,0,0,150,51,0,0,150,51,0,0,152,51,0,0,152,51,0,0,152,51,0,0,152,51,0,0,154,51,0,0,154,51,0,0,154,51,0,0,156,51,0,0,156,51,0,0,158,51,0,0,158,51,0,0,158,51,0,0,160,51,0,0,160,51,0,0,160,51,0,0,160,51,0,0,164,51,0,0,164,51,0,0,164,51,0,0,164,51,0,0,164,51,0,0,166,51,0,0,166,51,0,0,166,51,0,0,166,51,0,0,166,51,0,0,166,51,0,0,166,51,0,0,168,51,0,0,168,51,0,0,168,51,0,0,170,51,0,0,170,51,0,0,172,51,0,0,172,51,0,0,174,51,0,0,174,51,0,0,174,51,0,0,174,51,0,0,174,51,0,0,176,51,0,0,176,51,0,0,176,51,0,0,176,51,0,0,176,51,0,0,178,51,0,0,180,51,0,0,184,51,0,0,188,51,0,0,188,51,0,0,190,51,0,0,190,51,0,0,192,51,0,0,192,51,0,0,194,51,0,0,194,51,0,0,194,51,0,0,196,51,0,0,198,51,0,0,198,51,0,0,200,51,0,0,202,51,0,0,202,51,0,0,204,51,0,0,206,51,0,0,206,51,0,0,206,51,0,0,210,51,0,0,210,51,0,0,210,51,0,0,210,51,0,0,210,51,0,0,210,51,0,0,210,51,0,0,210,51,0,0,210,51,0,0,210,51,0,0,210,51,0,0,210,51,0,0,210,51,0,0,210,51,0,0,210,51,0,0,210,51,0,0,212,51,0,0,216,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,222,51,0,0,222,51,0,0,222,51,0,0,224,51,0,0,224,51,0,0,224,51,0,0,224,51,0,0,224,51,0,0,228,51,0,0,228,51,0,0,230,51,0,0,230,51,0,0,230,51,0,0,230,51,0,0,232,51,0,0,238,51,0,0,242,51,0,0,242,51,0,0,242,51,0,0,242,51,0,0,244,51,0,0,246,51,0,0,246,51,0,0,248,51,0,0,250,51,0,0,254,51,0,0,0,52,0,0,0,52,0,0,0,52,0,0,0,52,0,0,0,52,0,0,2,52,0,0,2,52,0,0,4,52,0,0,4,52,0,0,4,52,0,0,4,52,0,0,4,52,0,0,4,52,0,0,8,52,0,0,12,52,0,0,12,52,0,0,12,52,0,0,12,52,0,0,12,52,0,0,12,52,0,0,16,52,0,0,16,52,0,0,16,52,0,0,16,52,0,0,16,52,0,0,18,52,0,0,18,52,0,0,18,52,0,0,18,52,0,0,20,52,0,0,22,52,0,0,24,52,0,0,24,52,0,0,24,52,0,0,26,52,0,0,28,52,0,0,30,52,0,0,34,52,0,0,34,52,0,0,36,52,0,0,42,52,0,0,42,52,0,0,42,52,0,0,46,52,0,0,46,52,0,0,48,52,0,0,48,52,0,0,50,52,0,0,50,52,0,0,52,52,0,0,54,52,0,0,54,52,0,0,58,52,0,0,58,52,0,0,60,52,0,0,60,52,0,0,60,52,0,0,60,52,0,0,60,52,0,0,60,52,0,0,64,52,0,0,66,52,0,0,68,52,0,0,68,52,0,0,68,52,0,0,68,52,0,0,68,52,0,0,70,52,0,0,70,52,0,0,70,52,0,0,72,52,0,0,74,52,0,0,74,52,0,0,74,52,0,0,74,52,0,0,74,52,0,0,76,52,0,0,80,52,0,0,80,52,0,0,84,52,0,0,84,52,0,0,84,52,0,0,84,52,0,0,84,52,0,0,88,52,0,0,90,52,0,0,92,52,0,0,92,52,0,0,92,52,0,0,92,52,0,0,92,52,0,0,92,52,0,0,94,52,0,0,94,52,0,0,94,52,0,0,96,52,0,0,100,52,0,0,100,52,0,0,102,52,0,0,104,52,0,0,104,52,0,0,104,52,0,0,104,52,0,0,106,52,0,0,106,52,0,0,108,52,0,0,108,52,0,0,110,52,0,0,110,52,0,0,110,52,0,0,112,52,0,0,112,52,0,0,116,52,0,0,116,52,0,0,116,52,0,0,116,52,0,0,118,52,0,0,118,52,0,0,118,52,0,0,118,52,0,0,118,52,0,0,118,52,0,0,122,52,0,0,124,52,0,0,124,52,0,0,126,52,0,0,126,52,0,0,126,52,0,0,126,52,0,0,126,52,0,0,128,52,0,0,128,52,0,0,132,52,0,0,132,52,0,0,132,52,0,0,132,52,0,0,132,52,0,0,132,52,0,0,134,52,0,0,134,52,0,0,134,52,0,0,136,52,0,0,136,52,0,0,138,52,0,0,138,52,0,0,138,52,0,0,140,52,0,0,142,52,0,0,144,52,0,0,144,52,0,0,144,52,0,0,144,52,0,0,146,52,0,0,146,52,0,0,146,52,0,0,148,52,0,0,148,52,0,0,148,52,0,0,148,52,0,0,148,52,0,0,152,52,0,0,152,52,0,0,152,52,0,0,152,52,0,0,152,52,0,0,154,52,0,0,154,52,0,0,156,52,0,0,158,52,0,0,162,52,0,0,166,52,0,0,168,52,0,0,170,52,0,0,174,52,0,0,176,52,0,0,178,52,0,0,186,52,0,0,186,52,0,0,186,52,0,0,188,52,0,0,188,52,0,0,190,52,0,0,190,52,0,0,192,52,0,0,192,52,0,0,194,52,0,0,194,52,0,0,196,52,0,0,198,52,0,0,198,52,0,0,200,52,0,0,200,52,0,0,202,52,0,0,204,52,0,0,206,52,0,0,206,52,0,0,208,52,0,0,208,52,0,0,208,52,0,0,208,52,0,0,208,52,0,0,210,52,0,0,210,52,0,0,216,52,0,0,216,52,0,0,218,52,0,0,220,52,0,0,220,52,0,0,220,52,0,0,220,52,0,0,222,52,0,0,224,52,0,0,224,52,0,0,224,52,0,0,226,52,0,0,230,52,0,0,230,52,0,0,230,52,0,0,232,52,0,0,232,52,0,0,232,52,0,0,232,52,0,0,232,52,0,0,234,52,0,0,236,52,0,0,240,52,0,0,244,52,0,0,246,52,0,0,246,52,0,0,248,52,0,0,248,52,0,0,248,52,0,0,0,53,0,0,0,53,0,0,0,53,0,0,0,53,0,0,4,53,0,0,6,53,0,0,8,53,0,0,10,53,0,0,10,53,0,0,10,53,0,0,10,53,0,0,12,53,0,0,12,53,0,0,12,53,0,0,12,53,0,0,12,53,0,0,12,53,0,0,12,53,0,0,12,53,0,0,12,53,0,0,14,53,0,0,16,53,0,0,16,53,0,0,16,53,0,0,18,53,0,0,20,53,0,0,22,53,0,0,22,53,0,0,26,53,0,0,26,53,0,0,26,53,0,0,28,53,0,0,28,53,0,0,28,53,0,0,28,53,0,0,30,53,0,0,32,53,0,0,32,53,0,0,32,53,0,0,34,53,0,0,34,53,0,0,36,53,0,0,36,53,0,0,40,53,0,0,40,53,0,0,40,53,0,0,40,53,0,0,40,53,0,0,40,53,0,0,40,53,0,0,46,53,0,0,46,53,0,0,46,53,0,0,46,53,0,0,48,53,0,0,50,53,0,0,50,53,0,0,52,53,0,0,52,53,0,0,54,53,0,0,54,53,0,0,54,53,0,0,56,53,0,0,56,53,0,0,56,53,0,0,60,53,0,0,60,53,0,0,62,53,0,0,62,53,0,0,62,53,0,0,62,53,0,0,64,53,0,0,66,53,0,0,66,53,0,0,70,53,0,0,72,53,0,0,72,53,0,0,72,53,0,0,72,53,0,0,72,53,0,0,72,53,0,0,72,53,0,0,72,53,0,0,72,53,0,0,72,53,0,0,82,53,0,0,84,53,0,0,84,53,0,0,84,53,0,0,84,53,0,0,84,53,0,0,84,53,0,0,86,53,0,0,86,53,0,0,86,53,0,0,86,53,0,0,88,53,0,0,88,53,0,0,90,53,0,0,90,53,0,0,92,53,0,0,94,53,0,0,94,53,0,0,96,53,0,0,96,53,0,0,96,53,0,0,96,53,0,0,96,53,0,0,100,53,0,0,100,53,0,0,100,53,0,0,100,53,0,0,100,53,0,0,102,53,0,0,104,53,0,0,106,53,0,0,106,53,0,0,106,53,0,0,110,53,0,0,112,53,0,0,114,53,0,0,114,53,0,0,114,53,0,0,118,53,0,0,118,53,0,0,118,53,0,0,118,53,0,0,120,53,0,0,122,53,0,0,122,53,0,0,122,53,0,0,122,53,0,0,122,53,0,0,122,53,0,0,122,53,0,0,122,53,0,0,122,53,0,0,122,53,0,0,124,53,0,0,124,53,0,0,124,53,0,0,126,53,0,0,128,53,0,0,128,53,0,0,128,53,0,0,128,53,0,0,128,53,0,0,128,53,0,0,128,53,0,0,128,53,0,0,130,53,0,0,130,53,0,0,130,53,0,0,130,53,0,0,130,53,0,0,130,53,0,0,130,53,0,0,132,53,0,0,132,53,0,0,132,53,0,0,132,53,0,0,132,53,0,0,134,53,0,0,134,53,0,0,134,53,0,0,136,53,0,0,136,53,0,0,138,53,0,0,142,53,0,0,144,53,0,0,144,53,0,0,146,53,0,0,146,53,0,0,150,53,0,0,152,53,0,0,152,53,0,0,152,53,0,0,152,53,0,0,154,53,0,0,154,53,0,0,156,53,0,0,156,53,0,0,158,53,0,0,158,53,0,0,158,53,0,0,160,53,0,0,160,53,0,0,160,53,0,0,160,53,0,0,160,53,0,0,160,53,0,0,160,53,0,0,162,53,0,0,162,53,0,0,162,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,166,53,0,0,166,53,0,0,166,53,0,0,166,53,0,0,166,53,0,0,170,53,0,0,176,53,0,0,176,53,0,0,176,53,0,0,176,53,0,0,180,53,0,0,180,53,0,0,180,53,0,0,180,53,0,0,180,53,0,0,180,53,0,0,180,53,0,0,180,53,0,0,182,53,0,0,182,53,0,0,182,53,0,0,186,53,0,0,188,53,0,0,188,53,0,0,188,53,0,0,188,53,0,0,188,53,0,0,190,53,0,0,190,53,0,0,192,53,0,0,192,53,0,0,194,53,0,0,196,53,0,0,196,53,0,0,196,53,0,0,196,53,0,0,198,53,0,0,198,53,0,0,198,53,0,0,198,53,0,0,198,53,0,0,198,53,0,0,198,53,0,0,198,53,0,0,198,53,0,0,198,53,0,0,200,53,0,0,200,53,0,0,202,53,0,0,202,53,0,0,204,53,0,0,204,53,0,0,204,53,0,0,208,53,0,0,212,53,0,0,216,53,0,0,218,53,0,0,218,53,0,0,218,53,0,0,222,53,0,0,224,53,0,0,226,53,0,0,226,53,0,0,226,53,0,0,228,53,0,0,230,53,0,0,230,53,0,0,230,53,0,0,232,53,0,0,232,53,0,0,234,53,0,0,236,53,0,0,236,53,0,0,238,53,0,0,238,53,0,0,240,53,0,0,240,53,0,0,240,53,0,0,240,53,0,0,240,53,0,0,240,53,0,0,240,53,0,0,242,53,0,0,246,53,0,0,246,53,0,0,246,53,0,0,246,53,0,0,246,53,0,0,246,53,0,0,246,53,0,0,246,53,0,0,246,53,0,0,246,53,0,0,248,53,0,0,252,53,0,0,252,53,0,0,254,53,0,0,254,53,0,0,254,53,0,0,254,53,0,0,2,54,0,0,2,54,0,0,2,54,0,0,6,54,0,0,8,54,0,0,8,54,0,0,8,54,0,0,8,54,0,0,8,54,0,0,10,54,0,0,12,54,0,0,12,54,0,0,12,54,0,0,14,54,0,0,14,54,0,0,14,54,0,0,14,54,0,0,16,54,0,0,16,54,0,0,16,54,0,0,16,54,0,0,18,54,0,0,18,54,0,0,20,54,0,0,22,54,0,0,24,54,0,0,28,54,0,0,30,54,0,0,30,54,0,0,32,54,0,0,32,54,0,0,34,54,0,0,36,54,0,0,38,54,0,0,38,54,0,0,40,54,0,0,40,54,0,0,42,54,0,0,44,54,0,0,44,54,0,0,44,54,0,0,44,54,0,0,46,54,0,0,46,54,0,0,46,54,0,0,46,54,0,0,48,54,0,0,48,54,0,0,48,54,0,0,48,54,0,0,54,54,0,0,56,54,0,0,56,54,0,0,56,54,0,0,56,54,0,0,56,54,0,0,58,54,0,0,60,54,0,0,62,54,0,0,66,54,0,0,66,54,0,0,68,54,0,0,68,54,0,0,68,54,0,0,70,54,0,0,72,54,0,0,72,54,0,0,72,54,0,0,76,54,0,0,76,54,0,0,76,54,0,0,76,54,0,0,76,54,0,0,78,54,0,0,78,54,0,0,80,54,0,0,82,54,0,0,82,54,0,0,82,54,0,0,84,54,0,0,84,54,0,0,86,54,0,0,86,54,0,0,86,54,0,0,88,54,0,0,90,54,0,0,90,54,0,0,90,54,0,0,90,54,0,0,92,54,0,0,94,54,0,0,94,54,0,0,94,54,0,0,94,54,0,0,98,54,0,0,104,54,0,0,104,54,0,0,106,54,0,0,108,54,0,0,108,54,0,0,108,54,0,0,108,54,0,0,110,54,0,0,112,54,0,0,112,54,0,0,114,54,0,0,114,54,0,0,116,54,0,0,116,54,0,0,118,54,0,0,120,54,0,0,122,54,0,0,122,54,0,0,122,54,0,0,124,54,0,0,124,54,0,0,126,54,0,0,128,54,0,0,128,54,0,0,130,54,0,0,130,54,0,0,132,54,0,0,132,54,0,0,134,54,0,0,134,54,0,0,134,54,0,0,134,54,0,0,136,54,0,0,136,54,0,0,138,54,0,0,138,54,0,0,138,54,0,0,138,54,0,0,138,54,0,0,138,54,0,0,138,54,0,0,138,54,0,0,138,54,0,0,138,54,0,0,138,54,0,0,140,54,0,0,140,54,0,0,140,54,0,0,142,54,0,0,144,54,0,0,144,54,0,0,148,54,0,0,148,54,0,0,150,54,0,0,154,54,0,0,156,54,0,0,158,54,0,0,158,54,0,0,158,54,0,0,158,54,0,0,158,54,0,0,158,54,0,0,160,54,0,0,160,54,0,0,160,54,0,0,160,54,0,0,160,54,0,0,160,54,0,0,162,54,0,0,164,54,0,0,168,54,0,0,168,54,0,0,168,54,0,0,170,54,0,0,170,54,0,0,172,54,0,0,172,54,0,0,174,54,0,0,174,54,0,0,176,54,0,0,176,54,0,0,176,54,0,0,178,54,0,0,178,54,0,0,178,54,0,0,178,54,0,0,178,54,0,0,180,54,0,0,184,54,0,0,184,54,0,0,184,54,0,0,184,54,0,0,184,54,0,0,184,54,0,0,186,54,0,0,186,54,0,0,186,54,0,0,188,54,0,0,192,54,0,0,194,54,0,0,194,54,0,0,194,54,0,0,194,54,0,0,194,54,0,0,194,54,0,0,196,54,0,0,196,54,0,0,198,54,0,0,200,54,0,0,202,54,0,0,202,54,0,0,206,54,0,0,206,54,0,0,206,54,0,0,206,54,0,0,206,54,0,0,206,54,0,0,208,54,0,0,208,54,0,0,208,54,0,0,212,54,0,0,212,54,0,0,214,54,0,0,214,54,0,0,214,54,0,0,214,54,0,0,216,54,0,0,218,54,0,0,220,54,0,0,220,54,0,0,220,54,0,0,222,54,0,0,222,54,0,0,224,54,0,0,228,54,0,0,232,54,0,0,232,54,0,0,232,54,0,0,236,54,0,0,236,54,0,0,236,54,0,0,236,54,0,0,236,54,0,0,240,54,0,0,242,54,0,0,242,54,0,0,244,54,0,0,244,54,0,0,246,54,0,0,248,54,0,0,252,54,0,0,0,55,0,0,0,55,0,0,0,55,0,0,0,55,0,0,0,55,0,0,0,55,0,0,0,55,0,0,2,55,0,0,2,55,0,0,2,55,0,0,4,55,0,0,8,55,0,0,10,55,0,0,10,55,0,0,10,55,0,0,12,55,0,0,16,55,0,0,20,55,0,0,22,55,0,0,22,55,0,0,22,55,0,0,22,55,0,0,24,55,0,0,26,55,0,0,28,55,0,0,28,55,0,0,30,55,0,0,32,55,0,0,32,55,0,0,34,55,0,0,36,55,0,0,38,55,0,0,38,55,0,0,40,55,0,0,44,55,0,0,46,55,0,0,46,55,0,0,48,55,0,0,50,55,0,0,52,55,0,0,52,55,0,0,56,55,0,0,56,55,0,0,56,55,0,0,58,55,0,0,60,55,0,0,62,55,0,0,64,55,0,0,68,55,0,0,70,55,0,0,74,55,0,0,76,55,0,0,76,55,0,0,76,55,0,0,76,55,0,0,82,55,0,0,84,55,0,0,86,55,0,0,90,55,0,0,90,55,0,0,90,55,0,0,90,55,0,0,92,55,0,0,92,55,0,0,92,55,0,0,92,55,0,0,92,55,0,0,94,55,0,0,94,55,0,0,94,55,0,0,94,55,0,0,94,55,0,0,94,55,0,0,96,55,0,0,98,55,0,0,98,55,0,0,98,55,0,0,98,55,0,0,100,55,0,0,100,55,0,0,102,55,0,0,106,55,0,0,108,55,0,0,108,55,0,0,110,55,0,0,110,55,0,0,110,55,0,0,112,55,0,0,112,55,0,0,112,55,0,0,112,55,0,0,114,55,0,0,114,55,0,0,118,55,0,0,122,55,0,0,126,55,0,0,128,55,0,0,130,55,0,0,132,55,0,0,132,55,0,0,132,55,0,0,132,55,0,0,132,55,0,0,138,55,0,0,138,55,0,0,140,55,0,0,142,55,0,0,146,55,0,0,148,55,0,0,150,55,0,0,150,55,0,0,152,55,0,0,152,55,0,0,152,55,0,0,154,55,0,0,154,55,0,0,154,55,0,0,154,55,0,0,154,55,0,0,154,55,0,0,156,55,0,0,156,55,0,0,160,55,0,0,160,55,0,0,160,55,0,0,162,55,0,0,164,55,0,0,164,55,0,0,164,55,0,0,164,55,0,0,166,55,0,0,166,55,0,0,168,55,0,0,170,55,0,0,170,55,0,0,172,55,0,0,174,55,0,0,174,55,0,0,174,55,0,0,174,55,0,0,174,55,0,0,176,55,0,0,178,55,0,0,178,55,0,0,178,55,0,0,178,55,0,0,180,55,0,0,180,55,0,0,182,55,0,0,184,55,0,0,186,55,0,0,188,55,0,0,188,55,0,0,188,55,0,0,190,55,0,0,196,55,0,0,196,55,0,0,196,55,0,0,196,55,0,0,198,55,0,0,198,55,0,0,198,55,0,0,198,55,0,0,198,55,0,0,200,55,0,0,202,55,0,0,204,55,0,0,206,55,0,0,206,55,0,0,208,55,0,0,212,55,0,0,212,55,0,0,214,55,0,0,216,55,0,0,216,55,0,0,218,55,0,0,218,55,0,0,220,55,0,0,224,55,0,0,224,55,0,0,226,55,0,0,226,55,0,0,228,55,0,0,228,55,0,0,228,55,0,0,228,55,0,0,228,55,0,0,228,55,0,0,232,55,0,0,234,55,0,0,234,55,0,0,234,55,0,0,238,55,0,0,242,55,0,0,248,55,0,0,248,55,0,0,248,55,0,0,248,55,0,0,248,55,0,0,250,55,0,0,252,55,0,0,252,55,0,0,252,55,0,0,254,55,0,0,254,55,0,0,254,55,0,0,254,55,0,0,0,56,0,0,2,56,0,0,2,56,0,0,2,56,0,0,6,56,0,0,10,56,0,0,12,56,0,0,12,56,0,0,12,56,0,0,12,56,0,0,12,56,0,0,14,56,0,0,16,56,0,0,16,56,0,0,20,56,0,0,20,56,0,0,20,56,0,0,20,56,0,0,24,56,0,0,24,56,0,0,26,56,0,0,26,56,0,0,26,56,0,0,26,56,0,0,26,56,0,0,26,56,0,0,28,56,0,0,28,56,0,0,28,56,0,0,28,56,0,0,28,56,0,0,30,56,0,0,30,56,0,0,30,56,0,0,30,56,0,0,30,56,0,0,30,56,0,0,34,56,0,0,34,56,0,0,34,56,0,0,34,56,0,0,34,56,0,0,34,56,0,0,34,56,0,0,34,56,0,0,34,56,0,0,36,56,0,0,38,56,0,0,38,56,0,0,38,56,0,0,38,56,0,0,38,56,0,0,40,56,0,0,42,56,0,0,44,56,0,0,46,56,0,0,48,56,0,0,50,56,0,0,50,56,0,0,52,56,0,0,52,56,0,0,52,56,0,0,52,56,0,0,52,56,0,0,52,56,0,0,54,56,0,0,54,56,0,0,54,56,0,0,54,56,0,0,54,56,0,0,54,56,0,0,54,56,0,0,54,56,0,0,54,56,0,0,54,56,0,0,54,56,0,0,56,56,0,0,60,56,0,0,60,56,0,0,60,56,0,0,60,56,0,0,60,56,0,0,62,56,0,0,62,56,0,0,62,56,0,0,62,56,0,0,66,56,0,0,66,56,0,0,72,56,0,0,76,56,0,0,76,56,0,0,76,56,0,0,76,56,0,0,76,56,0,0,76,56,0,0,76,56,0,0,78,56,0,0,78,56,0,0,80,56,0,0,80,56,0,0,82,56,0,0,84,56,0,0,84,56,0,0,84,56,0,0,84,56,0,0,84,56,0,0,86,56,0,0,88,56,0,0,92,56,0,0,92,56,0,0,92,56,0,0,92,56,0,0,92,56,0,0,92,56,0,0,92,56,0,0,92,56,0,0,96,56,0,0,98,56,0,0,98,56,0,0,98,56,0,0,98,56,0,0,100,56,0,0,100,56,0,0,102,56,0,0,104,56,0,0,104,56,0,0,104,56,0,0,106,56,0,0,106,56,0,0,108,56,0,0,110,56,0,0,110,56,0,0,110,56,0,0,110,56,0,0,110,56,0,0,112,56,0,0,112,56,0,0,114,56,0,0,114,56,0,0,114,56,0,0,118,56,0,0,122,56,0,0,126,56,0,0,126,56,0,0,126,56,0,0,128,56,0,0,128,56,0,0,128,56,0,0,128,56,0,0,128,56,0,0,130,56,0,0,130,56,0,0,130,56,0,0,132,56,0,0,132,56,0,0,136,56,0,0,136,56,0,0,138,56,0,0,140,56,0,0,140,56,0,0,142,56,0,0,144,56,0,0,146,56,0,0,146,56,0,0,148,56,0,0,150,56,0,0,152,56,0,0,152,56,0,0,156,56,0,0,156,56,0,0,160,56,0,0,164,56,0,0,164,56,0,0,164,56,0,0,164,56,0,0,164,56,0,0,168,56,0,0,168,56,0,0,170,56,0,0,172,56,0,0,174,56,0,0,174,56,0,0,176,56,0,0,176,56,0,0,176,56,0,0,176,56,0,0,182,56,0,0,184,56,0,0,184,56,0,0,184,56,0,0,186,56,0,0,186,56,0,0,186,56,0,0,186,56,0,0,186,56,0,0,186,56,0,0,188,56,0,0,188,56,0,0,188,56,0,0,192,56,0,0,192,56,0,0,192,56,0,0,192,56,0,0,196,56,0,0,196,56,0,0,196,56,0,0,196,56,0,0,196,56,0,0,196,56,0,0,196,56,0,0,196,56,0,0,196,56,0,0,196,56,0,0,198,56,0,0,198,56,0,0,198,56,0,0,198,56,0,0,200,56,0,0,200,56,0,0,204,56,0,0,204,56,0,0,204,56,0,0,204,56,0,0,206,56,0,0,206,56,0,0,206,56,0,0,206,56,0,0,206,56,0,0,208,56,0,0,208,56,0,0,216,56,0,0,216,56,0,0,216,56,0,0,218,56,0,0,220,56,0,0,220,56,0,0,222,56,0,0,224,56,0,0,224,56,0,0,224,56,0,0,224,56,0,0,224,56,0,0,226,56,0,0,226,56,0,0,226,56,0,0,228,56,0,0,232,56,0,0,234,56,0,0,236,56,0,0,236,56,0,0,236,56,0,0,236,56,0,0,236,56,0,0,236,56,0,0,238,56,0,0,238,56,0,0,238,56,0,0,240,56,0,0,240,56,0,0,240,56,0,0,242,56,0,0,242,56,0,0,242,56,0,0,242,56,0,0,246,56,0,0,248,56,0,0,248,56,0,0,248,56,0,0,250,56,0,0,250,56,0,0,252,56,0,0,252,56,0,0,254,56,0,0,254,56,0,0,254,56,0,0,254,56,0,0,2,57,0,0,2,57,0,0,2,57,0,0,2,57,0,0,2,57,0,0,2,57,0,0,2,57,0,0,4,57,0,0,4,57,0,0,4,57,0,0,4,57,0,0,6,57,0,0,8,57,0,0,8,57,0,0,8,57,0,0,8,57,0,0,8,57,0,0,8,57,0,0,8,57,0,0,8,57,0,0,10,57,0,0,10,57,0,0,10,57,0,0,10,57,0,0,10,57,0,0,10,57,0,0,10,57,0,0,10,57,0,0,10,57,0,0,10,57,0,0,14,57,0,0,16,57,0,0,16,57,0,0,18,57,0,0,20,57,0,0,20,57,0,0,20,57,0,0,20,57,0,0,20,57,0,0,22,57,0,0,24,57,0,0,24,57,0,0,26,57,0,0,26,57,0,0,26,57,0,0,26,57,0,0,28,57,0,0,28,57,0,0,28,57,0,0,28,57,0,0,28,57,0,0,28,57,0,0,30,57,0,0,30,57,0,0,30,57,0,0,30,57,0,0,30,57,0,0,30,57,0,0,30,57,0,0,32,57,0,0,34,57,0,0,34,57,0,0,34,57,0,0,34,57,0,0,36,57,0,0,36,57,0,0,38,57,0,0,40,57,0,0,40,57,0,0,44,57,0,0,44,57,0,0,46,57,0,0,46,57,0,0,46,57,0,0,46,57,0,0,48,57,0,0,48,57,0,0,50,57,0,0,50,57,0,0,52,57,0,0,54,57,0,0,56,57,0,0,56,57,0,0,58,57,0,0,58,57,0,0,58,57,0,0,58,57,0,0,58,57,0,0,60,57,0,0,60,57,0,0,60,57,0,0,62,57,0,0,64,57,0,0,66,57,0,0,66,57,0,0,66,57,0,0,68,57,0,0,70,57,0,0,74,57,0,0,74,57,0,0,74,57,0,0,74,57,0,0,74,57,0,0,74,57,0,0,74,57,0,0,74,57,0,0,74,57,0,0,74,57,0,0,74,57,0,0,74,57,0,0,74,57,0,0,74,57,0,0,74,57,0,0,76,57,0,0,78,57,0,0,78,57,0,0,82,57,0,0,82,57,0,0,82,57,0,0,86,57,0,0,86,57,0,0,90,57,0,0,90,57,0,0,90,57,0,0,90,57,0,0,90,57,0,0,90,57,0,0,90,57,0,0,90,57,0,0,90,57,0,0,90,57,0,0,90,57,0,0,92,57,0,0,92,57,0,0,96,57,0,0,96,57,0,0,96,57,0,0,96,57,0,0,98,57,0,0,100,57,0,0,100,57,0,0,100,57,0,0,100,57,0,0,100,57,0,0,102,57,0,0,102,57,0,0,102,57,0,0,104,57,0,0,106,57,0,0,106,57,0,0,106,57,0,0,106,57,0,0,110,57,0,0,110,57,0,0,112,57,0,0,114,57,0,0,114,57,0,0,116,57,0,0,116,57,0,0,118,57,0,0,120,57,0,0,120,57,0,0,120,57,0,0,122,57,0,0,124,57,0,0,126,57,0,0,126,57,0,0,126,57,0,0,128,57,0,0,128,57,0,0,130,57,0,0,132,57,0,0,132,57,0,0,132,57,0,0,136,57,0,0,136,57,0,0,136,57,0,0,140,57,0,0,140,57,0,0,142,57,0,0,142,57,0,0,142,57,0,0,148,57,0,0,148,57,0,0,148,57,0,0,150,57,0,0,152,57,0,0,156,57,0,0,156,57,0,0,156,57,0,0,156,57,0,0,156,57,0,0,156,57,0,0,158,57,0,0,158,57,0,0,158,57,0,0,158,57,0,0,158,57,0,0,158,57,0,0,160,57,0,0,162,57,0,0,162,57,0,0,162,57,0,0,162,57,0,0,162,57,0,0,162,57,0,0,164,57,0,0,164,57,0,0,164,57,0,0,164,57,0,0,168,57,0,0,168,57,0,0,168,57,0,0,168,57,0,0,168,57,0,0,168,57,0,0,168,57,0,0,170,57,0,0,172,57,0,0,172,57,0,0,174,57,0,0,176,57,0,0,176,57,0,0,176,57,0,0,178,57,0,0,178,57,0,0,178,57,0,0,178,57,0,0,178,57,0,0,178,57,0,0,178,57,0,0,178,57,0,0,178,57,0,0,178,57,0,0,178,57,0,0,178,57,0,0,180,57,0,0,180,57,0,0,180,57,0,0,182,57,0,0,184,57,0,0,184,57,0,0,184,57,0,0,186,57,0,0,190,57,0,0,190,57,0,0,190,57,0,0,192,57,0,0,192,57,0,0,192,57,0,0,194,57,0,0,194,57,0,0,194,57,0,0,196,57,0,0,200,57,0,0,204,57,0,0,204,57,0,0,206,57,0,0,208,57,0,0,208,57,0,0,208,57,0,0,210,57,0,0,210,57,0,0,214,57,0,0,214,57,0,0,214,57,0,0,218,57,0,0,222,57,0,0,226,57,0,0,228,57,0,0,228,57,0,0,228,57,0,0,230,57,0,0,230,57,0,0,230,57,0,0,230,57,0,0,230,57,0,0,230,57,0,0,230,57,0,0,230,57,0,0,230,57,0,0,230,57,0,0,230,57,0,0,232,57,0,0,232,57,0,0,232,57,0,0,232,57,0,0,232,57,0,0,232,57,0,0,234,57,0,0,234,57,0,0,236,57,0,0,238,57,0,0,240,57,0,0,242,57,0,0,242,57,0,0,242,57,0,0,242,57,0,0,242,57,0,0,244,57,0,0,248,57,0,0,250,57,0,0,252,57,0,0,252,57,0,0,254,57,0,0,0,58,0,0,0,58,0,0,2,58,0,0,6,58,0,0,6,58,0,0,10,58,0,0,14,58,0,0,14,58,0,0,14,58,0,0,16,58,0,0,16,58,0,0,16,58,0,0,20,58,0,0,22,58,0,0,24,58,0,0,26,58,0,0,26,58,0,0,26,58,0,0,28,58,0,0,28,58,0,0,28,58,0,0,28,58,0,0,28,58,0,0,28,58,0,0,30,58,0,0,30,58,0,0,30,58,0,0,30,58,0,0,30,58,0,0,32,58,0,0,34,58,0,0,34,58,0,0,38,58,0,0,44,58,0,0,44,58,0,0,44,58,0,0,44,58,0,0,44,58,0,0,44,58,0,0,46,58,0,0,46,58,0,0,48,58,0,0,50,58,0,0,52,58,0,0,52,58,0,0,52,58,0,0,52,58,0,0,52,58,0,0,54,58,0,0,56,58,0,0,56,58,0,0,60,58,0,0,60,58,0,0,62,58,0,0,62,58,0,0,64,58,0,0,64,58,0,0,66,58,0,0,66,58,0,0,66,58,0,0,70,58,0,0,70,58,0,0,70,58,0,0,70,58,0,0,74,58,0,0,74,58,0,0,76,58,0,0,78,58,0,0,78,58,0,0,78,58,0,0,80,58,0,0,80,58,0,0,80,58,0,0,80,58,0,0,80,58,0,0,82,58,0,0,84,58,0,0,84,58,0,0,84,58,0,0,86,58,0,0,86,58,0,0,86,58,0,0,88,58,0,0,88,58,0,0,88,58,0,0,92,58,0,0,92,58,0,0,94,58,0,0,94,58,0,0,96,58,0,0,98,58,0,0,98,58,0,0,98,58,0,0,100,58,0,0,100,58,0,0,102,58,0,0,102,58,0,0,104,58,0,0,104,58,0,0,104,58,0,0,106,58,0,0,106,58,0,0,106,58,0,0,108,58,0,0,108,58,0,0,110,58,0,0,110,58,0,0,110,58,0,0,110,58,0,0,110,58,0,0,112,58,0,0,116,58,0,0,118,58,0,0,118,58,0,0,118,58,0,0,118,58,0,0,118,58,0,0,118,58,0,0,118,58,0,0,120,58,0,0,120,58,0,0,120,58,0,0,120,58,0,0,120,58,0,0,122,58,0,0,122,58,0,0,122,58,0,0,124,58,0,0,124,58,0,0,126,58,0,0,126,58,0,0,128,58,0,0,128,58,0,0,130,58,0,0,130,58,0,0,130,58,0,0,130,58,0,0,130,58,0,0,132,58,0,0,132,58,0,0,134,58,0,0,136,58,0,0,138,58,0,0,140,58,0,0,140,58,0,0,142,58,0,0,144,58,0,0,144,58,0,0,144,58,0,0,144,58,0,0,144,58,0,0,144,58,0,0,144,58,0,0,148,58,0,0,150,58,0,0,152,58,0,0,156,58,0,0,156,58,0,0,156,58,0,0,156,58,0,0,158,58,0,0,158,58,0,0,158,58,0,0,164,58,0,0,164,58,0,0,168,58,0,0,168,58,0,0,168,58,0,0,168,58,0,0,170,58,0,0,170,58,0,0,170,58,0,0,172,58,0,0,174,58,0,0,178,58,0,0,180,58,0,0,180,58,0,0,180,58,0,0,184,58,0,0,184,58,0,0,184,58,0,0,184,58,0,0,184,58,0,0,184,58,0,0,184,58,0,0,184,58,0,0,184,58,0,0,184,58,0,0,186,58,0,0,186,58,0,0,186,58,0,0,186,58,0,0,186,58,0,0,188,58,0,0,190,58,0,0,196,58,0,0,196,58,0,0,196,58,0,0,196,58,0,0,196,58,0,0,196,58,0,0,198,58,0,0,198,58,0,0,198,58,0,0,198,58,0,0,200,58,0,0,200,58,0,0,202,58,0,0,206,58,0,0,206,58,0,0,206,58,0,0,206,58,0,0,210,58,0,0,214,58,0,0,218,58,0,0,218,58,0,0,220,58,0,0,220,58,0,0,220,58,0,0,224,58,0,0,224,58,0,0,230,58,0,0,230,58,0,0,230,58,0,0,232,58,0,0,232,58,0,0,234,58,0,0,234,58,0,0,234,58,0,0,234,58,0,0,234,58,0,0,234,58,0,0,234,58,0,0,234,58,0,0,236,58,0,0,236,58,0,0,238,58,0,0,238,58,0,0,240,58,0,0,240,58,0,0,240,58,0,0,240,58,0,0,240,58,0,0,240,58,0,0,240,58,0,0,242,58,0,0,242,58,0,0,242,58,0,0,244,58,0,0,246,58,0,0,246,58,0,0,250,58,0,0,250,58,0,0,250,58,0,0,250,58,0,0,252,58,0,0,252,58,0,0,252,58,0,0,254,58,0,0,254,58,0,0,254,58,0,0,254,58,0,0,254,58,0,0,254,58,0,0,254,58,0,0,254,58,0,0,0,59,0,0,4,59,0,0,4,59,0,0,6,59,0,0,6,59,0,0,6,59,0,0,8,59,0,0,10,59,0,0,10,59,0,0,10,59,0,0,12,59,0,0,12,59,0,0,12,59,0,0,14,59,0,0,16,59,0,0,18,59,0,0,22,59,0,0,22,59,0,0,24,59,0,0,28,59,0,0,28,59,0,0,28,59,0,0,28,59,0,0,28,59,0,0,28,59,0,0,30,59,0,0,30,59,0,0,30,59,0,0,30,59,0,0,30,59,0,0,34,59,0,0,34,59,0,0,36,59,0,0,36,59,0,0,36,59,0,0,36,59,0,0,36,59,0,0,36,59,0,0,40,59,0,0,42,59,0,0,46,59,0,0,46,59,0,0,46,59,0,0,48,59,0,0,48,59,0,0,48,59,0,0,50,59,0,0,50,59,0,0,50,59,0,0,52,59,0,0,52,59,0,0,54,59,0,0,54,59,0,0,54,59,0,0,54,59,0,0,54,59,0,0,54,59,0,0,54,59,0,0,54,59,0,0,54,59,0,0,54,59,0,0,56,59,0,0,56,59,0,0,58,59,0,0,58,59,0,0,58,59,0,0,58,59,0,0,62,59,0,0,62,59,0,0,62,59,0,0,64,59,0,0,64,59,0,0,66,59,0,0,66,59,0,0,66,59,0,0,68,59,0,0,68,59,0,0,68,59,0,0,72,59,0,0,72,59,0,0,72,59,0,0,74,59,0,0,76,59,0,0,76,59,0,0,76,59,0,0,78,59,0,0,78,59,0,0,78,59,0,0,78,59,0,0,78,59,0,0,78,59,0,0,82,59,0,0,82,59,0,0,82,59,0,0,82,59,0,0,82,59,0,0,82,59,0,0,84,59,0,0,84,59,0,0,84,59,0,0,88,59,0,0,88,59,0,0,90,59,0,0,92,59,0,0,94,59,0,0,94,59,0,0,96,59,0,0,96,59,0,0,98,59,0,0,98,59,0,0,100,59,0,0,102,59,0,0,106,59,0,0,106,59,0,0,110,59,0,0,112,59,0,0,112,59,0,0,112,59,0,0,112,59,0,0,114,59,0,0,114,59,0,0,118,59,0,0,118,59,0,0,118,59,0,0,118,59,0,0,118,59,0,0,118,59,0,0,120,59,0,0,120,59,0,0,120,59,0,0,120,59,0,0,120,59,0,0,122,59,0,0,122,59,0,0,128,59,0,0,128,59,0,0,128,59,0,0,132,59,0,0,132,59,0,0,132,59,0,0,134,59,0,0,136,59,0,0,138,59,0,0,140,59,0,0,140,59,0,0,142,59,0,0,142,59,0,0,142,59,0,0,142,59,0,0,142,59,0,0,142,59,0,0,142,59,0,0,144,59,0,0,148,59,0,0,150,59,0,0,150,59,0,0,150,59,0,0,150,59,0,0,150,59,0,0,150,59,0,0,150,59,0,0,150,59,0,0,152,59,0,0,152,59,0,0,152,59,0,0,152,59,0,0,152,59,0,0,152,59,0,0,152,59,0,0,152,59,0,0,154,59,0,0,154,59,0,0,158,59,0,0,158,59,0,0,160,59,0,0,160,59,0,0,164,59,0,0,164,59,0,0,166,59,0,0,170,59,0,0,170,59,0,0,170,59,0,0,172,59,0,0,172,59,0,0,176,59,0,0,180,59,0,0,182,59,0,0,184,59,0,0,184,59,0,0,184,59,0,0,186,59,0,0,186,59,0,0,186,59,0,0,190,59,0,0,190,59,0,0,192,59,0,0,192,59,0,0,194,59,0,0,196,59,0,0,198,59,0,0,200,59,0,0,200,59,0,0,200,59,0,0,200,59,0,0,200,59,0,0,202,59,0,0,210,59,0,0,212,59,0,0,212,59,0,0,216,59,0,0,216,59,0,0,220,59,0,0,220,59,0,0,220,59,0,0,220,59,0,0,222,59,0,0,224,59,0,0,228,59,0,0,228,59,0,0,228,59,0,0,228,59,0,0,228,59,0,0,228,59,0,0,228,59,0,0,228,59,0,0,228,59,0,0,230,59,0,0,232,59,0,0,232,59,0,0,232,59,0,0,232,59,0,0,232,59,0,0,234,59,0,0,234,59,0,0,234,59,0,0,234,59,0,0,234,59,0,0,236,59,0,0,236,59,0,0,236,59,0,0,238,59,0,0,240,59,0,0,240,59,0,0,242,59,0,0,242,59,0,0,242,59,0,0,242,59,0,0,244,59,0,0,244,59,0,0,246,59,0,0,246,59,0,0,248,59,0,0,248,59,0,0,248,59,0,0,248,59,0,0,252,59,0,0,254,59,0,0,0,60,0,0,2,60,0,0,2,60,0,0,4,60,0,0,6,60,0,0,8,60,0,0,10,60,0,0,10,60,0,0,12,60,0,0,14,60,0,0,18,60,0,0,18,60,0,0,18,60,0,0,22,60,0,0,24,60,0,0,26,60,0,0,28,60,0,0,28,60,0,0,28,60,0,0,28,60,0,0,30,60,0,0,30,60,0,0,30,60,0,0,32,60,0,0,32,60,0,0,34,60,0,0,34,60,0,0,36,60,0,0,36,60,0,0,36,60,0,0,38,60,0,0,40,60,0,0,42,60,0,0,44,60,0,0,48,60,0,0,48,60,0,0,52,60,0,0,52,60,0,0,56,60,0,0,56,60,0,0,58,60,0,0,58,60,0,0,58,60,0,0,58,60,0,0,62,60,0,0,62,60,0,0,64,60,0,0,64,60,0,0,64,60,0,0,64,60,0,0,64,60,0,0,66,60,0,0,66,60,0,0,66,60,0,0,66,60,0,0,66,60,0,0,66,60,0,0,70,60,0,0,72,60,0,0,72,60,0,0,72,60,0,0,72,60,0,0,72,60,0,0,74,60,0,0,76,60,0,0,82,60,0,0,82,60,0,0,82,60,0,0,84,60,0,0,88,60,0,0,88,60,0,0,88,60,0,0,88,60,0,0,88,60,0,0,88,60,0,0,88,60,0,0,88,60,0,0,90,60,0,0,90,60,0,0,90,60,0,0,90,60,0,0,90,60,0,0,90,60,0,0,92,60,0,0,94,60,0,0,94,60,0,0,96,60,0,0,96,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,100,60,0,0,102,60,0,0,104,60,0,0,106,60,0,0,108,60,0,0,108,60,0,0,110,60,0,0,110,60,0,0,110,60,0,0,110,60,0,0,110,60,0,0,110,60,0,0,112,60,0,0,112,60,0,0,112,60,0,0,112,60,0,0,112,60,0,0,114,60,0,0,114,60,0,0,114,60,0,0,114,60,0,0,114,60,0,0,114,60,0,0,118,60,0,0,120,60,0,0,122,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,126,60,0,0,126,60,0,0,126,60,0,0,126,60,0,0,126,60,0,0,128,60,0,0,128,60,0,0,130,60,0,0,130,60,0,0,132,60,0,0,132,60,0,0,136,60,0,0,138,60,0,0,140,60,0,0,140,60,0,0,140,60,0,0,140,60,0,0,140,60,0,0,140,60,0,0,140,60,0,0,142,60,0,0,142,60,0,0,146,60,0,0,150,60,0,0,150,60,0,0,150,60,0,0,152,60,0,0,156,60,0,0,156,60,0,0,158,60,0,0,160,60,0,0,160,60,0,0,160,60,0,0,162,60,0,0,162,60,0,0,162,60,0,0,164,60,0,0,166,60,0,0,166,60,0,0,168,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,172,60,0,0,174,60,0,0,176,60,0,0,176,60,0,0,176,60,0,0,180,60,0,0,180,60,0,0,180,60,0,0,180,60,0,0,182,60,0,0,184,60,0,0,184,60,0,0,184,60,0,0,184,60,0,0,184,60,0,0,184,60,0,0,186,60,0,0,188,60,0,0,192,60,0,0,194,60,0,0,200,60,0,0,202,60,0,0,204,60,0,0,204,60,0,0,204,60,0,0,204,60,0,0,204,60,0,0,204,60,0,0,206,60,0,0,206,60,0,0,206,60,0,0,206,60,0,0,206,60,0,0,208,60,0,0,208,60,0,0,208,60,0,0,208,60,0,0,210,60,0,0,210,60,0,0,212,60,0,0,212,60,0,0,212,60,0,0,212,60,0,0,212,60,0,0,214,60,0,0,214,60,0,0,214,60,0,0,214,60,0,0,214,60,0,0,218,60,0,0,220,60,0,0,220,60,0,0,220,60,0,0,220,60,0,0,224,60,0,0,224,60,0,0,226,60,0,0,226,60,0,0,226,60,0,0,226,60,0,0,230,60,0,0,230,60,0,0,232,60,0,0,232,60,0,0,232,60,0,0,232,60,0,0,232,60,0,0,232,60,0,0,232,60,0,0,234,60,0,0,236,60,0,0,236,60,0,0,238,60,0,0,240,60,0,0,242,60,0,0,242,60,0,0,246,60,0,0,246,60,0,0,246,60,0,0,246,60,0,0,246,60,0,0,248,60,0,0,248,60,0,0,248,60,0,0,250,60,0,0,250,60,0,0,250,60,0,0,250,60,0,0,250,60,0,0,250,60,0,0,252,60,0,0,254,60,0,0,254,60,0,0,0,61,0,0,2,61,0,0,6,61,0,0,6,61,0,0,8,61,0,0,12,61,0,0,14,61,0,0,14,61,0,0,14,61,0,0,14,61,0,0,14,61,0,0,16,61,0,0,16,61,0,0,16,61,0,0,18,61,0,0,18,61,0,0,20,61,0,0,20,61,0,0,20,61,0,0,22,61,0,0,24,61,0,0,26,61,0,0,26,61,0,0,28,61,0,0,30,61,0,0,30,61,0,0,32,61,0,0,32,61,0,0,32,61,0,0,34,61,0,0,36,61,0,0,38,61,0,0,38,61,0,0,38,61,0,0,40,61,0,0,42,61,0,0,44,61,0,0,44,61,0,0,44,61,0,0,48,61,0,0,50,61,0,0,52,61,0,0,52,61,0,0,52,61,0,0,54,61,0,0,54,61,0,0,54,61,0,0,54,61,0,0,56,61,0,0,58,61,0,0,58,61,0,0,60,61,0,0,64,61,0,0,64,61,0,0,66,61,0,0,66,61,0,0,66,61,0,0,66,61,0,0,66,61,0,0,66,61,0,0,66,61,0,0,68,61,0,0,70,61,0,0,70,61,0,0,70,61,0,0,74,61,0,0,76,61,0,0,76,61,0,0,78,61,0,0,78,61,0,0,82,61,0,0,82,61,0,0,88,61,0,0,94,61,0,0,96,61,0,0,96,61,0,0,96,61,0,0,96,61,0,0,96,61,0,0,98,61,0,0,98,61,0,0,98,61,0,0,98,61,0,0,98,61,0,0,100,61,0,0,104,61,0,0,104,61,0,0,106,61,0,0,106,61,0,0,106,61,0,0,106,61,0,0,108,61,0,0,110,61,0,0,118,61,0,0,120,61,0,0,122,61,0,0,124,61,0,0,124,61,0,0,126,61,0,0,126,61,0,0,128,61,0,0,130,61,0,0,132,61,0,0,132,61,0,0,132,61,0,0,132,61,0,0,132,61,0,0,132,61,0,0,132,61,0,0,134,61,0,0,134,61,0,0,134,61,0,0,134,61,0,0,134,61,0,0,136,61,0,0,136,61,0,0,136,61,0,0,138,61,0,0,138,61,0,0,142,61,0,0,146,61,0,0,150,61,0,0,150,61,0,0,154,61,0,0,158,61,0,0,158,61,0,0,158,61,0,0,160,61,0,0,160,61,0,0,160,61,0,0,162,61,0,0,162,61,0,0,164,61,0,0,164,61,0,0,164,61,0,0,164,61,0,0,164,61,0,0,166,61,0,0,166,61,0,0,166,61,0,0,168,61,0,0,170,61,0,0,170,61,0,0,170,61,0,0,170,61,0,0,172,61,0,0,172,61,0,0,176,61,0,0,176,61,0,0,176,61,0,0,176,61,0,0,176,61,0,0,178,61,0,0,182,61,0,0,184,61,0,0,186,61,0,0,186,61,0,0,188,61,0,0,188,61,0,0,192,61,0,0,194,61,0,0,194,61,0,0,194,61,0,0,196,61,0,0,196,61,0,0,196,61,0,0,198,61,0,0,198,61,0,0,202,61,0,0,204,61,0,0,204,61,0,0,204,61,0,0,204,61,0,0,206,61,0,0,206,61,0,0,210,61,0,0,212,61,0,0,212,61,0,0,212,61,0,0,212,61,0,0,212,61,0,0,216,61,0,0,218,61,0,0,220,61,0,0,220,61,0,0,224,61,0,0,224,61,0,0,224,61,0,0,224,61,0,0,224,61,0,0,228,61,0,0,228,61,0,0,228,61,0,0,228,61,0,0,230,61,0,0,234,61,0,0,236,61,0,0,238,61,0,0,238,61,0,0,240,61,0,0,242,61,0,0,242,61,0,0,242,61,0,0,242,61,0,0,242,61,0,0,242,61,0,0,244,61,0,0,246,61,0,0,250,61,0,0,252,61,0,0,252,61,0,0,254,61,0,0,254,61,0,0,254,61,0,0,0,62,0,0,2,62,0,0,4,62,0,0,6,62,0,0,6,62,0,0,6,62,0,0,6,62,0,0,12,62,0,0,12,62,0,0,12,62,0,0,12,62,0,0,12,62,0,0,14,62,0,0,14,62,0,0,14,62,0,0,14,62,0,0,14,62,0,0,14,62,0,0,14,62,0,0,16,62,0,0,16,62,0,0,16,62,0,0,16,62,0,0,16,62,0,0,18,62,0,0,20,62,0,0,20,62,0,0,24,62,0,0,26,62,0,0,26,62,0,0,26,62,0,0,26,62,0,0,26,62,0,0,32,62,0,0,32,62,0,0,32,62,0,0,34,62,0,0,34,62,0,0,36,62,0,0,38,62,0,0,38,62,0,0,38,62,0,0,40,62,0,0,40,62,0,0,40,62,0,0,42,62,0,0,42,62,0,0,42,62,0,0,42,62,0,0,44,62,0,0,44,62,0,0,46,62,0,0,48,62,0,0,48,62,0,0,50,62,0,0,50,62,0,0,50,62,0,0,52,62,0,0,52,62,0,0,54,62,0,0,58,62,0,0,62,62,0,0,64,62,0,0,64,62,0,0,64,62,0,0,64,62,0,0,68,62,0,0,68,62,0,0,70,62,0,0,70,62,0,0,70,62,0,0,70,62,0,0,70,62,0,0,70,62,0,0,70,62,0,0,70,62,0,0,70,62,0,0,72,62,0,0,72,62,0,0,74,62,0,0,74,62,0,0,76,62,0,0,80,62,0,0,80,62,0,0,80,62,0,0,80,62,0,0,82,62,0,0,84,62,0,0,86,62,0,0,86,62,0,0,86,62,0,0,90,62,0,0,90,62,0,0,90,62,0,0,90,62,0,0,92,62,0,0,92,62,0,0,92,62,0,0,92,62,0,0,92,62,0,0,96,62,0,0,98,62,0,0,98,62,0,0,102,62,0,0,104,62,0,0,104,62,0,0,104,62,0,0,104,62,0,0,106,62,0,0,106,62,0,0,106,62,0,0,106,62,0,0,108,62,0,0,108,62,0,0,108,62,0,0,108,62,0,0,108,62,0,0,110,62,0,0,110,62,0,0,110,62,0,0,114,62,0,0,116,62,0,0,118,62,0,0,118,62,0,0,118,62,0,0,118,62,0,0,120,62,0,0,124,62,0,0,124,62,0,0,126,62,0,0,128,62,0,0,128,62,0,0,128,62,0,0,130,62,0,0,132,62,0,0,134,62,0,0,134,62,0,0,134,62,0,0,136,62,0,0,136,62,0,0,136,62,0,0,136,62,0,0,136,62,0,0,136,62,0,0,136,62,0,0,138,62,0,0,140,62,0,0,140,62,0,0,144,62,0,0,146,62,0,0,146,62,0,0,148,62,0,0,150,62,0,0,150,62,0,0,150,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,154,62,0,0,156,62,0,0,156,62,0,0,156,62,0,0,156,62,0,0,156,62,0,0,156,62,0,0,156,62,0,0,156,62,0,0,158,62,0,0,158,62,0,0,158,62,0,0,160,62,0,0,160,62,0,0,162,62,0,0,162,62,0,0,162,62,0,0,162,62,0,0,162,62,0,0,166,62,0,0,166,62,0,0,166,62,0,0,170,62,0,0,170,62,0,0,172,62,0,0,174,62,0,0,176,62,0,0,176,62,0,0,176,62,0,0,176,62,0,0,178,62,0,0,180,62,0,0,180,62,0,0,180,62,0,0,182,62,0,0,184,62,0,0,186,62,0,0,186,62,0,0,186,62,0,0,186,62,0,0,186,62,0,0,186,62,0,0,186,62,0,0,186,62,0,0,186,62,0,0,186,62,0,0,188,62,0,0,188,62,0,0,192,62,0,0,192,62,0,0,192,62,0,0,196,62,0,0,196,62,0,0,200,62,0,0,200,62,0,0,202,62,0,0,204,62,0,0,208,62,0,0,208,62,0,0,212,62,0,0,214,62,0,0,216,62,0,0,216,62,0,0,218,62,0,0,218,62,0,0,218,62,0,0,218,62,0,0,218,62,0,0,224,62,0,0,228,62,0,0,228,62,0,0,230,62,0,0,230,62,0,0,230,62,0,0,232,62,0,0,232,62,0,0,234,62,0,0,234,62,0,0,234,62,0,0,236,62,0,0,238,62,0,0,244,62,0,0,244,62,0,0,244,62,0,0,244,62,0,0,244,62,0,0,244,62,0,0,246,62,0,0,246,62,0,0,246,62,0,0,246,62,0,0,246,62,0,0,248,62,0,0,248,62,0,0,248,62,0,0,248,62,0,0,248,62,0,0,248,62,0,0,252,62,0,0,254,62,0,0,0,63,0,0,0,63,0,0,0,63,0,0,2,63,0,0,4,63,0,0,4,63,0,0,10,63,0,0,10,63,0,0,10,63,0,0,10,63,0,0,12,63,0,0,12,63,0,0,14,63,0,0,16,63,0,0,18,63,0,0,18,63,0,0,18,63,0,0,20,63,0,0,20,63,0,0,20,63,0,0,22,63,0,0,22,63,0,0,22,63,0,0,24,63,0,0,28,63,0,0,30,63,0,0,32,63,0,0,32,63,0,0,32,63,0,0,32,63,0,0,32,63,0,0,36,63,0,0,38,63,0,0,40,63,0,0,40,63,0,0,40,63,0,0,42,63,0,0,42,63,0,0,42,63,0,0,42,63,0,0,42,63,0,0,42,63,0,0,42,63,0,0,44,63,0,0,44,63,0,0,44,63,0,0,44,63,0,0,46,63,0,0,46,63,0,0,46,63,0,0,50,63,0,0,54,63,0,0,54,63,0,0,56,63,0,0,56,63,0,0,56,63,0,0,56,63,0,0,56,63,0,0,56,63,0,0,58,63,0,0,58,63,0,0,58,63,0,0,58,63,0,0,58,63,0,0,60,63,0,0,62,63,0,0,62,63,0,0,62,63,0,0,62,63,0,0,64,63,0,0,66,63,0,0,68,63,0,0,68,63,0,0,68,63,0,0,68,63,0,0,68,63,0,0,70,63,0,0,70,63,0,0,70,63,0,0,70,63,0,0,72,63,0,0,74,63,0,0,74,63,0,0,74,63,0,0,74,63,0,0,74,63,0,0,76,63,0,0,76,63,0,0,76,63,0,0,76,63,0,0,76,63,0,0,78,63,0,0,80,63,0,0,82,63,0,0,84,63,0,0,84,63,0,0,84,63,0,0,84,63,0,0,86,63,0,0,88,63,0,0,88,63,0,0,90,63,0,0,90,63,0,0,90,63,0,0,92,63,0,0,92,63,0,0,92,63,0,0,94,63,0,0,96,63,0,0,96,63,0,0,96,63,0,0,98,63,0,0,100,63,0,0,102,63,0,0,102,63,0,0,102,63,0,0,104,63,0,0,106,63,0,0,106,63,0,0,106,63,0,0,106,63,0,0,108,63,0,0,108,63,0,0,108,63,0,0,110,63,0,0,110,63,0,0,114,63,0,0,116,63,0,0,116,63,0,0,118,63,0,0,122,63,0,0,122,63,0,0,128,63,0,0,130,63,0,0,136,63,0,0,136,63,0,0,136,63,0,0,136,63,0,0,136,63,0,0,138,63,0,0,140,63,0,0,142,63,0,0,142,63,0,0,142,63,0,0,144,63,0,0,144,63,0,0,146,63,0,0,148,63,0,0,150,63,0,0,152,63,0,0,152,63,0,0,152,63,0,0,152,63,0,0,154,63,0,0,154,63,0,0,158,63,0,0,162,63,0,0,164,63,0,0,164,63,0,0,166,63,0,0,166,63,0,0,166,63,0,0,166,63,0,0,166,63,0,0,166,63,0,0,168,63,0,0,168,63,0,0,172,63,0,0,176,63,0,0,176,63,0,0,180,63,0,0,180,63,0,0,180,63,0,0,180,63,0,0,182,63,0,0,182,63,0,0,182,63,0,0,182,63,0,0,184,63,0,0,184,63,0,0,186,63,0,0,190,63,0,0,192,63,0,0,192,63,0,0,194,63,0,0,194,63,0,0,196,63,0,0,196,63,0,0,196,63,0,0,196,63,0,0,196,63,0,0,196,63,0,0,196,63,0,0,198,63,0,0,200,63,0,0,200,63,0,0,202,63,0,0,202,63,0,0,204,63,0,0,204,63,0,0,204,63,0,0,206,63,0,0,206,63,0,0,206,63,0,0,206,63,0,0,208,63,0,0,208,63,0,0,210,63,0,0,210,63,0,0,212,63,0,0,214,63,0,0,214,63,0,0,214,63,0,0,216,63,0,0,216,63,0,0,216,63,0,0,216,63,0,0,220,63,0,0,224,63,0,0,224,63,0,0,224,63,0,0,224,63,0,0,224,63,0,0,226,63,0,0,228,63,0,0,232,63,0,0,232,63,0,0,232,63,0,0,232,63,0,0,232,63,0,0,232,63,0,0,232,63,0,0,232,63,0,0,232,63,0,0,234,63,0,0,234,63,0,0,236,63,0,0,238,63,0,0,240,63,0,0,240,63,0,0,242,63,0,0,242,63,0,0,252,63,0,0,252,63,0,0,252,63,0,0,254,63,0,0,0,64,0,0,0,64,0,0,0,64,0,0,0,64,0,0,4,64,0,0,4,64,0,0,6,64,0,0,6,64,0,0,6,64,0,0,6,64,0,0,6,64,0,0,6,64,0,0,6,64,0,0,6,64,0,0,8,64,0,0,8,64,0,0,8,64,0,0,8,64,0,0,12,64,0,0,14,64,0,0,18,64,0,0,20,64,0,0,20,64,0,0,22,64,0,0,22,64,0,0,24,64,0,0,24,64,0,0,24,64,0,0,28,64,0,0,28,64,0,0,34,64,0,0,36,64,0,0,36,64,0,0,36,64,0,0,38,64,0,0,40,64,0,0,40,64,0,0,40,64,0,0,40,64,0,0,42,64,0,0,42,64,0,0,46,64,0,0,46,64,0,0,48,64,0,0,52,64,0,0,54,64,0,0,54,64,0,0,58,64,0,0,62,64,0,0,62,64,0,0,62,64,0,0,62,64,0,0,62,64,0,0,64,64,0,0,64,64,0,0,66,64,0,0,68,64,0,0,70,64,0,0,74,64,0,0,74,64,0,0,76,64,0,0,76,64,0,0,76,64,0,0,76,64,0,0,76,64,0,0,76,64,0,0,76,64,0,0,78,64,0,0,80,64,0,0,80,64,0,0,84,64,0,0,1,192,77,33,134,103,2,0,1,64,248,186,182,135,3,0,1,192,248,245,221,159,4,0,6,0,238,192,148,140,4,0,9,64,51,167,149,124,3,0,10,64,197,229,59,70,4,0,11,0,239,22,213,170,2,0,13,0,196,97,255,179,3,0,18,64,196,196,145,173,3,0,24,128,25,11,72,93,2,0,24,0,134,194,132,193,2,0,31,192,33,241,250,170,2,0,34,192,167,84,141,121,2,0,36,192,30,110,36,57,3,0,40,128,133,214,187,18,2,0,43,0,46,144,4,173,4,0,44,64,222,2,25,142,4,0,45,0,163,129,105,212,3,0,48,0,54,45,147,88,4,0,49,64,166,206,231,30,4,0,52,0,102,140,169,30,3,0,58,128,114,104,93,184,4,0,59,64,192,82,125,129,4,0,61,0,172,44,136,7,4,0,64,128,250,193,63,222,2,0,66,0,54,99,142,179,4,0,71,192,20,184,151,110,2,0,73,0,61,114,93,40,3,0,75,192,207,70,20,107,3,0,75,0,180,18,210,202,3,0,77,64,162,54,124,162,2,0,77,64,176,186,131,180,4,0,78,192,40,84,18,96,4,0,79,0,177,163,123,100,4,0,81,64,180,239,52,5,2,0,82,192,1,96,18,92,2,0,83,128,126,31,75,122,2,0,88,128,36,74,115,116,3,0,89,64,204,106,41,167,4,0,90,0,3,57,145,93,2,0,91,192,141,74,205,132,4,0,92,0,146,34,130,135,2,0,92,64,36,147,157,184,3,0,96,192,233,146,112,92,4,0,97,0,168,170,159,36,2,0,100,128,29,221,86,28,3,0,100,128,39,24,181,74,4,0,101,0,34,3,5,244,3,0,102,128,68,40,169,125,2,0,106,64,227,134,49,135,2,0,106,192,171,153,148,4,4,0,111,128,46,202,136,4,2,0,111,192,73,90,216,255,3,0,112,64,196,255,189,246,2,0,113,128,128,62,0,128,2,0,113,192,3,227,233,172,4,0,114,128,108,33,93,5,3,0,114,128,41,83,114,121,4,0,115,128,177,168,43,66,3,0,115,192,254,205,58,83,3,0,118,192,136,184,55,76,3,0,121,64,7,188,30,46,3,0,121,0,28,29,66,158,4,0,123,128,186,198,87,188,3,0,127,0,218,94,13,164,4,0,129,0,243,33,252,159,3,0,130,192,94,75,19,60,4,0,134,128,252,101,175,239,3,0,134,192,2,116,222,241,3,0,135,0,214,219,209,118,2,0,135,128,40,194,222,231,2,0,136,192,240,221,128,8,2,0,137,0,160,215,87,133,3,0,138,0,185,1,91,86,2,0,141,0,104,68,197,168,3,0,145,192,63,35,112,117,2,0,148,64,137,60,236,10,3,0,149,128,78,65,154,90,4,0,150,0,109,128,8,81,2,0,151,128,58,205,160,52,3,0,153,64,226,152,122,216,2,0,157,64,29,196,251,88,2,0,159,0,17,27,201,210,2,0,159,192,66,110,192,60,4,0,161,192,200,5,5,49,3,0,167,64,193,128,84,84,3,0,171,0,144,118,196,216,2,0,173,0,228,244,191,221,3,0,174,64,2,72,196,240,3,0,176,192,57,100,32,247,3,0,178,0,239,157,148,46,3,0,179,128,112,61,0,46,3,0,183,64,22,38,169,89,2,0,183,0,86,191,233,154,3,0,189,128,42,84,235,75,4,0,191,192,165,94,111,29,3,0,195,0,200,124,247,87,4,0,196,64,84,60,125,146,2,0,197,128,228,59,129,65,4,0,198,192,52,229,155,31,2,0,199,64,162,183,131,101,2,0,208,192,189,255,106,80,2,0,208,64,72,234,23,240,3,0,209,128,250,156,94,207,3,0,217,64,68,93,12,67,2,0,217,0,66,62,178,146,2,0,218,128,111,108,171,131,2,0,219,64,164,189,140,239,2,0,220,192,13,230,17,58,4,0,221,128,103,186,218,32,3,0,222,128,60,176,228,129,3,0,225,0,154,177,140,19,3,0,226,0,183,184,128,19,2,0,230,192,255,22,159,122,3,0,231,128,115,25,39,130,3,0,235,192,242,20,112,186,2,0,236,192,215,186,6,121,2,0,238,128,129,70,201,159,2,0,239,64,145,185,222,26,2,0,240,0,105,199,92,114,2,0,240,192,51,13,115,1,3,0,240,64,255,45,218,204,3,0,240,128,126,126,125,49,4,0,242,64,29,36,105,52,2,0,243,0,115,251,164,132,2,0,244,192,131,26,225,148,3,0,246,192,215,52,121,106,2,0,247,64,23,11,30,28,2,0,247,128,110,226,91,48,2,0,254,192,72,106,39,222,2,0,255,0,104,13,92,169,2,0,255,0,119,2,150,87,4,0,1,129,202,126,11,15,2,0,1,1,83,88,230,120,4,0,8,129,235,169,40,86,3,0,10,65,234,43,232,204,3,0,15,193,95,7,183,15,2,0,15,129,28,48,178,212,2,0,17,1,134,119,60,132,3,0,20,129,251,174,139,39,4,0,25,65,178,11,173,126,4,0,28,1,118,164,230,147,4,0,29,129,231,147,154,130,4,0,31,129,169,90,185,247,2,0,32,65,67,183,47,110,3,0,35,193,33,126,114,83,4,0,48,193,16,96,199,133,2,0,52,193,242,84,239,100,4,0,56,129,185,97,119,10,2,0,56,129,235,128,113,119,2,0,60,1,193,17,40,95,4,0,64,129,80,116,152,232,3,0,65,65,167,35,190,94,3,0,66,1,1,155,240,192,2,0,66,193,31,132,63,90,3,0,69,129,94,219,222,39,3,0,74,129,37,139,255,66,3,0,76,65,75,150,226,110,3,0,83,1,179,118,233,191,3,0,84,193,68,42,217,183,2,0,84,193,26,135,138,201,3,0,90,193,195,157,240,128,3,0,92,129,137,92,112,200,3,0,94,193,214,204,127,192,2,0,96,129,133,203,253,106,3,0,99,65,41,75,74,24,2,0,100,1,80,54,25,7,4,0,105,129,113,19,180,47,3,0,106,193,148,201,156,10,2,0,106,129,157,125,211,120,4,0,107,129,71,240,211,155,4,0,108,65,102,49,117,131,4,0,112,1,17,7,166,31,4,0,117,193,72,48,142,145,2,0,117,193,253,210,243,58,3,0,117,65,212,214,168,36,4,0,117,193,35,172,38,41,4,0,118,129,79,91,194,207,2,0,119,1,164,4,63,25,2,0,121,193,52,248,228,95,3,0,122,65,249,131,153,251,3,0,126,65,53,59,29,30,3,0,127,129,152,218,128,23,4,0,128,65,17,144,232,33,2,0,129,129,113,154,45,95,2,0,129,1,161,173,120,208,3,0,131,193,230,143,106,162,3,0,134,129,238,22,200,243,2,0,137,1,43,110,28,168,2,0,140,65,164,145,4,142,3,0,143,1,149,65,60,86,2,0,145,1,106,111,173,111,2,0,145,193,206,141,204,152,2,0,145,193,50,56,207,213,2,0,148,65,107,151,130,159,2,0,148,65,107,138,5,47,4,0,149,129,4,238,200,246,3,0,149,193,238,200,216,128,4,0,152,1,118,125,113,69,2,0,152,65,34,179,53,225,3,0,154,65,241,187,216,14,2,0,154,65,42,118,245,201,2,0,154,129,89,196,245,220,3,0,155,129,131,255,203,143,3,0,157,65,84,181,236,88,4,0,158,65,58,144,93,170,3,0,159,193,80,76,85,106,2,0,160,1,20,220,232,233,2,0,161,65,123,167,188,92,3,0,163,65,52,16,180,66,2,0,164,193,63,110,250,87,2,0,164,1,221,67,132,199,3,0,165,129,58,81,245,248,2,0,169,193,228,183,101,25,3,0,171,1,69,43,211,137,2,0,172,65,60,27,188,5,2,0,175,65,28,107,88,80,2,0,176,65,30,253,203,90,2,0,177,1,113,52,251,39,3,0,177,193,35,164,17,192,3,0,180,1,235,116,200,163,3,0,181,65,163,185,197,185,3,0,183,65,55,174,173,20,2,0,183,193,20,244,192,9,4,0,184,65,42,103,115,22,4,0,186,129,56,252,47,193,3,0,187,193,165,212,30,87,4,0,190,1,99,28,148,230,2,0,191,129,24,223,57,5,3,0,196,65,195,240,16,241,2,0,196,193,74,98,117,12,3,0,196,193,255,89,119,159,4,0,200,1,205,50,224,36,3,0,202,129,124,104,117,40,3,0,204,193,250,2,85,254,3,0,206,65,198,46,17,154,3,0,208,193,214,234,106,91,2,0,208,129,158,174,191,121,3,0,212,65,149,148,199,179,2,0,214,193,231,147,146,143,2,0,221,65,249,140,150,54,3,0,225,1,113,210,129,127,3,0,225,1,102,6,53,68,4,0,226,129,53,46,212,162,2,0,226,65,158,227,200,34,3,0,230,129,21,75,121,129,3,0,233,1,30,102,138,106,2,0,234,65,105,236,140,189,3,0,239,1,235,62,234,215,3,0,239,65,16,40,128,110,4,0,239,193,220,45,156,135,4,0,242,193,203,113,84,85,3,0,244,1,251,0,221,5,2,0,249,65,38,72,176,93,4,0,252,129,51,138,166,25,3,0,0,2,90,253,194,22,3,0,1,66,128,154,208,18,3,0,6,2,2,81,235,125,2,0,6,2,176,62,194,64,3,0,8,194,35,183,76,216,3,0,8,130,120,232,21,161,4,0,10,194,149,85,253,116,2,0,13,130,215,38,194,201,2,0,13,66,67,156,120,234,3,0,14,194,151,51,139,196,2,0,17,66,223,153,98,34,2,0,17,194,60,81,192,242,2,0,18,2,47,70,166,64,2,0,19,2,121,28,62,8,2,0,21,66,201,102,180,68,3,0,21,66,252,9,157,113,3,0,24,2,111,112,218,28,3,0,24,2,83,105,192,142,4,0,25,130,112,127,165,174,4,0,26,66,192,192,131,44,3,0,26,66,204,12,46,104,3,0,28,2,95,20,196,174,4,0,35,194,66,108,147,146,3,0,36,130,0,12,118,88,2,0,41,130,243,59,192,43,3,0,42,194,205,67,189,145,2,0,44,66,160,115,99,156,3,0,50,66,178,103,1,96,2,0,51,130,229,108,91,127,4,0,53,194,41,188,107,3,3,0,58,194,181,181,98,246,2,0,58,2,231,118,248,193,3,0,58,2,136,240,184,240,3,0,59,130,85,219,210,60,2,0,67,2,193,185,49,247,3,0,69,66,50,160,248,160,2,0,73,194,236,31,18,90,4,0,85,130,215,223,19,178,4,0,88,130,212,137,66,176,4,0,90,194,145,238,8,246,2,0,91,194,153,223,113,248,2,0,91,66,112,47,32,185,3,0,93,2,167,244,173,28,3,0,94,2,126,194,145,28,3,0,95,194,216,73,220,136,4,0,100,194,45,74,177,14,2,0,102,66,129,106,20,219,2,0,103,130,12,0,18,205,2,0,105,2,29,58,43,167,3,0,107,2,97,162,194,220,3,0,113,2,191,98,212,194,3,0,117,130,14,23,171,126,2,0,118,2,138,176,254,88,4,0,121,66,124,249,100,200,3,0,122,66,202,120,238,13,3,0,122,66,47,100,174,53,4,0,123,66,123,81,115,94,3,0,125,2,147,173,253,130,4,0,129,2,220,37,29,159,3,0,132,130,23,102,97,109,4,0,135,130,240,139,110,27,2,0,135,194,121,42,37,122,2,0,135,2,252,26,8,88,3,0,137,2,155,231,200,224,3,0,140,2,158,68,135,155,4,0,143,130,108,222,179,182,2,0,143,66,223,49,230,200,2,0,144,194,2,170,103,187,2,0,145,194,146,182,148,130,2,0,145,130,41,220,235,111,4,0,150,194,173,27,172,101,4,0,152,130,208,253,191,25,3,0,152,194,151,237,66,31,4,0,153,130,159,234,213,108,2,0,155,130,15,246,58,110,4,0,155,66,42,36,77,134,4,0,156,66,234,67,35,204,3,0,157,194,183,18,83,133,2,0,157,194,220,56,105,59,4,0,158,130,45,229,201,134,3,0,162,194,220,139,207,60,3,0,162,130,146,184,217,74,3,0,165,130,77,164,124,187,4,0,169,130,93,234,224,142,3,0,169,130,93,234,32,143,3,0,176,130,83,249,185,8,3,0,180,130,88,193,149,246,2,0,180,2,165,250,30,1,4,0,180,66,51,48,205,109,4,0,181,130,23,89,198,104,4,0,183,194,22,196,113,152,2,0,185,2,201,149,228,138,3,0,187,66,156,149,246,41,3,0,188,2,150,231,91,255,2,0,188,194,0,156,103,43,4,0,189,66,230,11,232,48,3,0,189,194,9,157,201,254,3,0,190,130,226,88,73,71,3,0,190,2,73,82,12,61,4,0,193,194,31,114,14,14,4,0,195,66,96,233,197,72,2,0,195,2,29,120,39,152,3,0,196,130,228,194,60,194,2,0,200,194,3,239,76,112,2,0,201,2,34,178,63,34,3,0,202,66,139,217,47,176,4,0,203,130,60,59,140,106,3,0,204,66,196,68,61,116,3,0,207,66,132,165,48,113,2,0,208,66,168,203,13,59,4,0,208,2,95,72,66,77,4,0,212,194,189,124,9,104,4,0,213,66,51,130,84,78,4,0,218,2,246,123,78,14,3,0,219,66,92,46,154,12,2,0,220,194,245,122,59,163,2,0,220,194,18,221,103,215,3,0,222,130,53,46,88,164,2,0,225,2,153,223,85,38,3,0,225,130,15,173,245,192,3,0,231,66,180,103,9,184,3,0,232,194,119,237,159,214,3,0,235,2,3,169,208,80,2,0,238,130,80,176,50,59,2,0,238,194,97,206,153,128,3,0,244,130,67,71,23,253,3,0,249,66,32,12,107,227,3,0,250,194,109,157,203,54,2,0,250,130,192,72,164,144,3,0,252,194,14,137,96,191,3,0,253,130,76,81,168,231,2,0,255,130,205,47,79,69,2,0,2,67,126,13,116,1,2,0,3,67,179,146,86,97,3,0,4,3,167,5,43,32,2,0,10,131,254,215,164,76,4,0,11,195,105,158,82,126,3,0,12,67,165,25,31,8,4,0,13,3,98,103,41,134,2,0,13,131,136,160,152,71,3,0,14,67,52,45,212,20,3,0,14,195,234,237,196,249,3,0,15,3,123,186,69,94,4,0,18,3,3,47,14,41,4,0,19,195,76,81,221,161,2,0,20,195,177,144,158,137,2,0,21,195,231,22,128,108,2,0,23,67,174,57,44,168,4,0,25,3,15,80,88,151,2,0,27,67,181,145,194,43,2,0,27,131,0,10,103,127,3,0,28,67,120,99,187,87,2,0,32,195,37,231,237,69,3,0,33,67,56,110,73,137,3,0,34,67,25,156,174,3,2,0,34,131,187,171,1,183,3,0,35,131,25,205,62,161,2,0,36,195,11,109,69,91,3,0,37,3,204,91,116,156,4,0,39,131,41,229,122,73,2,0,39,131,39,81,234,16,3,0,40,67,59,166,49,30,3,0,40,3,36,9,71,163,3,0,41,67,155,178,49,243,3,0,48,3,3,55,33,109,4,0,50,195,122,230,88,114,3,0,50,67,225,172,160,130,3,0,51,195,194,44,34,230,2,0,52,3,170,77,16,88,2,0,52,3,241,105,129,147,2,0,53,131,111,27,109,144,4,0,55,3,135,121,81,4,3,0,57,195,226,194,159,197,2,0,64,131,28,188,77,156,2,0,70,131,213,59,50,107,4,0,71,195,76,81,61,170,2,0,71,131,5,21,34,65,3,0,71,195,129,59,74,192,3,0,72,195,65,85,133,35,2,0,72,131,26,142,13,242,2,0,72,131,153,223,236,5,3,0,73,67,30,148,16,63,4,0,75,195,76,81,137,170,2,0,75,3,207,124,83,87,4,0,76,195,221,13,160,215,3,0,77,3,189,234,121,66,2,0,78,131,131,29,172,18,2,0,80,195,23,106,188,32,3,0,80,195,92,191,133,154,3,0,82,195,27,208,32,52,3,0,83,131,181,211,169,38,4,0,86,3,197,120,89,237,3,0,89,3,211,146,161,105,3,0,91,3,93,157,28,199,3,0,100,3,186,156,32,17,3,0,101,195,208,152,80,162,3,0,109,67,119,173,238,14,2,0,110,131,57,82,105,37,3,0,112,67,165,51,33,124,2,0,115,195,155,129,232,15,3,0,115,67,238,215,34,119,3,0,116,195,56,164,126,248,3,0,122,195,21,207,174,82,2,0,126,131,196,55,49,179,3,0,127,195,25,117,183,69,2,0,127,67,167,129,176,99,2,0,129,3,149,215,140,249,3,0,130,67,0,139,239,163,2,0,135,3,185,251,184,13,2,0,136,3,186,57,211,1,4,0,139,3,84,227,103,196,3,0,146,195,42,205,229,87,2,0,147,67,41,6,8,28,2,0,147,131,254,227,178,162,2,0,148,131,242,147,109,244,2,0,148,195,202,248,150,136,3,0,148,195,6,102,146,152,3,0,149,67,44,81,217,6,3,0,153,67,248,51,156,185,3,0,155,67,237,175,11,99,4,0,157,131,58,98,36,137,2,0,157,195,41,60,55,125,3,0,158,3,212,207,92,163,3,0,160,195,211,196,250,171,3,0,167,131,115,4,153,61,3,0,168,131,153,223,110,5,3,0,169,3,38,176,44,147,3,0,172,131,244,156,156,74,3,0,172,131,21,24,2,197,3,0,175,67,251,103,244,155,2,0,177,67,212,49,203,169,2,0,178,195,215,157,185,164,2,0,180,67,22,42,207,34,2,0,183,67,42,37,171,117,3,0,183,195,199,187,56,154,3,0,184,131,18,128,105,246,3,0,187,195,31,66,12,13,2,0,190,3,174,28,134,233,2,0,201,67,66,242,187,145,4,0,201,131,101,212,210,187,4,0,204,67,138,54,219,9,3,0,204,67,21,21,118,39,3,0,205,67,27,96,19,222,2,0,208,3,236,239,66,130,2,0,215,131,141,53,237,25,2,0,216,195,134,102,94,95,2,0,216,195,79,243,28,3,4,0,217,195,47,81,150,123,4,0,220,195,236,70,221,6,4,0,221,195,30,23,160,167,4,0,222,131,52,5,28,40,2,0,223,3,126,39,78,64,2,0,226,131,133,115,162,44,4,0,233,195,202,210,122,15,3,0,234,131,21,225,224,39,2,0,234,131,26,203,189,8,4,0,236,131,48,4,118,153,3,0,238,67,97,16,33,150,4,0,243,195,40,182,170,56,4,0,248,195,67,85,242,255,3,0,248,67,165,236,231,3,4,0,249,131,81,248,37,247,2,0,249,3,231,100,153,151,3,0,0,4,63,48,254,92,4,0,2,4,235,148,173,104,4,0,7,68,129,101,192,75,2,0,10,68,48,43,8,156,4,0,11,132,221,240,82,14,4,0,18,4,255,191,88,32,2,0,19,132,103,108,42,129,3,0,19,196,81,168,76,49,4,0,20,132,243,216,65,7,3,0,22,68,224,151,181,13,4,0,23,132,234,193,226,82,3,0,24,4,201,40,41,70,4,0,26,132,127,172,207,129,2,0,27,4,229,10,5,51,3,0,28,132,225,198,178,0,4,0,30,196,35,45,163,234,3,0,31,196,55,80,44,38,2,0,33,4,51,9,197,220,2,0,33,4,193,107,242,179,4,0,34,132,191,104,218,156,2,0,36,68,138,222,19,7,3,0,36,4,207,248,186,98,4,0,39,132,168,128,247,41,2,0,39,68,24,102,208,91,2,0,40,132,59,184,171,62,3,0,40,4,216,203,12,6,4,0,41,4,123,236,142,183,2,0,42,132,44,132,77,171,3,0,47,4,87,243,111,119,3,0,50,68,186,207,5,45,2,0,51,196,114,83,98,50,3,0,52,68,215,18,107,20,2,0,52,4,149,51,113,179,3,0,52,196,197,102,44,240,3,0,59,196,70,133,100,203,2,0,64,4,135,29,10,133,4,0,69,196,125,116,212,13,4,0,69,132,188,167,58,55,4,0,71,132,154,31,75,141,3,0,72,4,187,126,205,9,2,0,72,68,65,84,111,83,2,0,74,4,153,223,233,40,3,0,77,4,1,229,198,6,4,0,79,68,14,69,59,185,2,0,85,132,83,142,107,9,4,0,90,68,77,140,238,190,2,0,92,4,245,77,5,245,3,0,95,132,187,30,46,174,4,0,96,196,81,60,38,7,2,0,96,132,108,36,100,189,2,0,101,196,95,173,172,47,4,0,107,132,149,33,128,153,4,0,111,132,7,138,181,26,2,0,111,68,32,39,72,243,3,0,114,132,133,40,92,196,2,0,115,4,239,67,27,231,2,0,116,4,235,217,48,180,2,0,116,4,235,217,73,180,2,0,116,4,235,217,98,180,2,0,116,4,235,217,121,180,2,0,116,4,235,217,145,180,2,0,116,4,235,217,178,180,2,0,117,132,8,50,251,2,3,0,120,196,99,180,90,52,4,0,121,68,107,238,79,21,3,0,122,68,192,66,195,116,3,0,123,4,216,35,154,119,4,0,125,132,112,61,187,37,4,0,129,196,80,80,215,11,2,0,130,196,131,149,235,66,2,0,132,4,20,50,19,147,3,0,133,68,120,32,84,129,2,0,135,4,204,175,236,95,2,0,135,196,4,135,237,52,4,0,135,132,218,153,156,147,4,0,137,68,56,236,234,93,2,0,138,196,26,235,164,17,4,0,140,68,141,30,153,110,4,0,144,68,75,176,114,244,3,0,153,196,56,164,122,181,2,0,153,4,110,252,180,14,3,0,154,4,64,45,170,152,3,0,154,4,240,86,11,115,4,0,156,132,185,234,69,118,2,0,156,196,62,48,222,239,3,0,161,68,209,151,207,182,2,0,161,132,76,81,181,228,2,0,163,196,25,248,129,153,2,0,163,132,40,247,160,86,3,0,171,196,44,18,139,131,2,0,172,196,52,142,159,163,4,0,173,68,133,72,134,80,2,0,174,132,87,131,160,4,3,0,176,196,36,243,174,101,2,0,178,132,113,1,30,88,4,0,179,196,223,210,181,96,2,0,179,132,99,24,107,228,2,0,183,196,176,95,203,53,3,0,189,132,36,150,45,218,2,0,193,68,190,16,198,78,4,0,196,68,118,14,30,143,2,0,202,196,84,35,199,239,3,0,204,132,240,194,197,228,3,0,216,68,71,244,107,182,2,0,216,132,188,152,73,186,2,0,216,196,203,207,62,36,3,0,217,196,43,186,245,26,3,0,217,68,62,240,79,81,4,0,218,196,126,222,118,53,3,0,220,4,191,70,25,101,2,0,220,196,73,186,184,29,3,0,221,68,19,38,221,21,3,0,222,132,53,46,210,165,2,0,222,196,206,32,65,140,4,0,226,4,219,165,107,33,2,0,226,4,221,98,205,178,4,0,231,4,17,72,64,60,2,0,231,68,120,119,91,148,4,0,233,68,196,55,101,194,2,0,235,68,234,126,217,67,2,0,237,4,32,60,71,203,2,0,238,68,19,30,251,109,2,0,238,132,223,160,241,254,2,0,238,4,30,67,45,38,3,0,243,132,209,195,246,187,2,0,245,68,197,115,188,98,3,0,246,196,85,91,183,187,3,0,246,4,56,120,241,200,3,0,248,132,46,28,131,164,2,0,251,4,6,132,66,93,4,0,255,4,203,47,95,188,4,0,1,69,213,206,54,125,4,0,2,69,242,55,60,201,2,0,3,133,232,232,254,157,2,0,3,197,175,170,59,180,4,0,9,5,126,137,254,107,4,0,15,5,16,188,238,255,2,0,24,133,252,3,8,220,3,0,25,69,106,37,116,58,3,0,29,197,139,67,113,16,3,0,33,5,123,59,234,210,3,0,37,5,59,55,69,179,2,0,39,133,195,141,207,97,2,0,39,5,190,199,92,179,3,0,42,5,196,136,29,85,2,0,48,69,103,64,117,163,4,0,49,133,212,115,50,162,3,0,49,133,27,224,181,91,4,0,49,197,164,214,6,176,4,0,52,5,147,209,235,230,2,0,54,133,221,30,22,193,3,0,56,197,136,6,124,139,2,0,58,197,117,97,182,31,3,0,62,5,81,6,135,59,2,0,67,69,243,47,138,3,2,0,67,133,233,94,81,218,3,0,68,69,225,14,204,18,2,0,68,69,25,139,182,112,3,0,69,69,207,108,30,223,3,0,73,197,79,176,21,16,4,0,74,133,79,210,48,42,4,0,74,5,216,110,233,157,4,0,78,5,111,11,165,241,3,0,81,69,236,232,252,190,3,0,83,133,84,92,106,123,2,0,83,133,13,181,14,126,2,0,83,133,238,210,203,123,3,0,83,197,99,67,199,225,3,0,83,133,204,121,189,252,3,0,85,197,126,82,80,122,3,0,90,5,114,118,67,144,2,0,90,5,76,87,240,121,4,0,91,197,20,37,22,40,3,0,92,5,226,211,118,98,2,0,92,69,208,236,56,14,4,0,92,69,172,93,68,97,4,0,94,69,97,212,19,138,3,0,95,197,70,133,118,203,2,0,100,197,116,111,212,215,2,0,102,5,44,238,97,3,2,0,104,69,45,135,204,118,4,0,107,5,161,215,6,44,2,0,107,69,221,75,201,53,4,0,110,197,225,130,56,186,3,0,111,69,8,129,188,128,2,0,114,133,199,143,156,27,2,0,114,5,118,211,80,129,3,0,117,5,111,228,225,146,2,0,119,133,3,252,163,189,2,0,120,5,134,208,80,142,4,0,121,133,211,36,175,219,2,0,123,197,41,127,67,241,3,0,125,133,76,81,84,230,2,0,128,197,117,131,139,213,3,0,130,69,191,227,2,212,2,0,135,5,153,223,193,40,3,0,135,133,16,15,229,162,4,0,142,5,68,26,129,34,3,0,143,197,255,107,227,68,2,0,144,133,226,83,26,248,3,0,145,133,230,229,251,221,3,0,147,5,63,79,123,223,3,0,147,5,167,205,44,53,4,0,148,69,184,95,85,37,3,0,148,133,28,221,16,182,4,0,149,197,91,175,199,46,4,0,151,133,129,68,29,32,2,0,154,197,175,153,39,56,2,0,155,133,125,154,236,9,2,0,155,133,76,81,68,229,2,0,156,197,98,206,85,228,2,0,156,5,186,101,99,247,3,0,157,5,54,187,3,147,4,0,160,197,170,219,88,121,4,0,161,197,7,129,126,89,2,0,162,69,191,248,65,202,3,0,163,197,172,231,66,5,4,0,163,197,25,157,32,25,4,0,164,5,207,24,235,217,2,0,169,197,64,185,152,37,3,0,170,197,41,169,106,174,3,0,171,69,25,81,3,41,3,0,182,69,227,227,68,181,2,0,185,197,130,207,168,198,2,0,187,197,239,169,239,5,2,0,187,69,20,54,9,53,3,0,190,133,68,231,52,119,3,0,195,5,170,10,78,118,2,0,198,5,176,233,71,168,3,0,198,197,47,50,129,146,4,0,203,69,167,206,245,223,2,0,203,69,71,21,91,45,3,0,203,69,17,61,20,213,3,0,206,5,236,174,245,127,3,0,208,197,221,145,75,63,4,0,211,133,189,204,202,181,2,0,212,133,50,195,97,71,3,0,213,133,124,198,64,26,2,0,213,197,14,233,230,68,4,0,213,197,14,233,72,69,4,0,214,133,219,191,130,96,2,0,214,69,38,0,81,245,2,0,219,133,223,218,205,146,4,0,223,5,224,171,92,9,3,0,225,69,101,239,231,118,4,0,226,197,127,121,229,235,3,0,234,133,243,199,87,165,4,0,237,5,173,196,41,198,3,0,241,133,184,92,113,195,2,0,241,133,20,254,14,124,4,0,245,69,139,47,88,178,2,0,245,133,52,69,109,35,3,0,250,133,48,167,250,91,3,0,254,133,119,25,15,21,2,0,254,5,162,145,123,229,2,0,8,70,226,108,103,106,2,0,8,134,14,160,152,68,4,0,9,6,27,254,210,97,3,0,11,134,177,179,218,253,2,0,12,70,213,49,37,221,2,0,12,134,227,186,188,9,3,0,12,6,9,212,202,30,4,0,16,6,68,117,33,174,3,0,16,134,157,200,152,245,3,0,17,198,155,28,12,202,3,0,19,6,166,48,155,118,2,0,22,70,166,227,217,189,3,0,23,70,45,170,103,62,2,0,26,198,87,247,3,111,4,0,28,134,118,31,105,100,3,0,29,70,52,156,32,28,3,0,32,198,147,156,252,2,2,0,32,134,48,194,27,29,3,0,34,198,240,149,17,210,3,0,39,134,226,210,16,94,3,0,39,6,86,221,255,194,3,0,40,198,47,56,112,25,2,0,43,6,140,60,76,116,3,0,43,198,22,47,230,95,4,0,44,134,125,56,76,4,2,0,44,198,180,78,149,132,2,0,45,6,162,75,27,36,4,0,48,134,97,69,8,38,2,0,48,134,238,155,224,127,3,0,51,6,64,56,37,65,2,0,53,6,216,167,185,154,4,0,54,198,32,159,248,204,2,0,57,198,118,234,153,156,3,0,58,198,71,173,249,73,3,0,60,134,176,28,27,162,3,0,61,70,209,2,72,11,3,0,63,198,41,188,68,3,3,0,66,198,45,179,80,19,2,0,66,198,245,192,44,197,3,0,66,134,222,241,77,231,3,0,67,134,51,56,75,158,3,0,67,198,137,10,17,167,3,0,68,6,118,172,218,1,2,0,68,6,57,196,249,166,4,0,71,70,228,98,103,73,4,0,72,6,44,119,162,1,3,0,73,6,60,104,93,150,4,0,81,134,186,102,220,114,4,0,83,70,165,241,7,36,2,0,88,198,62,23,151,190,3,0,88,70,89,70,184,123,4,0,89,70,135,222,161,30,4,0,90,70,195,216,127,65,2,0,92,134,17,62,7,14,3,0,92,70,129,153,233,97,4,0,93,134,105,21,90,160,2,0,94,198,217,47,116,169,3,0,94,198,217,47,132,169,3,0,94,198,217,47,6,171,3,0,94,134,113,165,3,233,3,0,94,70,138,229,152,59,4,0,96,198,32,75,74,109,4,0,97,198,57,35,231,6,3,0,97,198,238,169,47,85,3,0,97,70,152,250,211,73,4,0,98,134,235,175,57,44,4,0,101,134,113,26,121,135,3,0,102,198,238,218,71,43,2,0,104,134,179,173,124,97,3,0,105,198,207,46,16,152,2,0,105,134,98,195,123,113,4,0,106,134,195,136,47,107,2,0,108,198,125,185,83,121,2,0,109,198,124,110,229,43,2,0,110,70,39,5,136,24,3,0,110,6,74,127,164,157,4,0,116,70,129,20,158,151,2,0,118,6,175,1,5,214,2,0,120,134,177,179,235,253,2,0,121,134,212,197,167,93,3,0,124,134,116,11,249,78,2,0,124,6,219,64,216,40,4,0,127,6,122,33,178,59,2,0,127,198,88,45,83,142,2,0,129,134,31,219,80,232,3,0,130,6,210,165,206,43,4,0,139,198,171,185,47,124,3,0,139,6,27,162,195,133,3,0,140,134,209,150,215,209,3,0,141,134,73,78,78,78,3,0,143,134,47,29,212,152,4,0,145,134,39,30,184,200,3,0,148,70,194,106,230,184,3,0,151,6,132,205,123,238,3,0,151,6,131,19,162,254,3,0,154,70,93,71,144,74,2,0,154,198,226,25,34,55,3,0,161,6,49,75,243,72,4,0,162,70,247,22,44,12,4,0,166,198,122,77,45,158,2,0,166,70,96,154,181,142,3,0,169,198,15,40,101,129,3,0,169,134,151,136,189,131,3,0,170,198,187,173,83,163,2,0,171,198,238,114,193,61,3,0,172,70,61,98,222,179,4,0,178,198,226,193,56,53,2,0,178,198,59,108,212,65,2,0,180,70,160,2,122,61,4,0,181,134,94,248,122,16,4,0,182,6,31,78,16,16,2,0,187,6,173,173,44,186,2,0,187,134,154,176,85,249,3,0,190,70,57,108,177,54,3,0,191,134,79,243,237,47,4,0,193,70,24,226,99,222,2,0,195,198,165,35,141,223,2,0,200,6,219,2,245,8,3,0,203,70,72,198,37,79,2,0,203,134,203,133,40,113,3,0,204,198,232,134,47,75,2,0,204,70,157,52,47,106,2,0,205,198,42,60,121,75,4,0,209,6,14,85,34,106,2,0,215,198,131,219,25,34,2,0,217,198,0,32,86,34,3,0,218,70,128,105,177,44,3,0,219,6,119,101,25,118,4,0,223,134,31,204,9,123,2,0,226,198,254,206,68,177,3,0,232,70,189,167,103,44,4,0,233,6,53,73,54,80,3,0,235,134,76,9,48,240,2,0,235,6,152,244,115,45,4,0,237,198,195,167,72,138,4,0,241,198,102,10,215,55,2,0,245,134,76,65,60,2,3,0,248,6,216,155,6,114,3,0,252,198,7,91,197,157,2,0,253,70,219,253,34,150,3,0,2,199,165,110,114,155,3,0,2,71,224,226,136,211,3,0,3,135,148,160,30,52,2,0,5,71,27,35,38,4,3,0,18,7,56,245,24,56,2,0,18,7,129,33,215,220,3,0,21,71,74,80,192,12,2,0,22,135,91,203,29,197,3,0,25,135,220,222,75,118,3,0,27,199,69,195,90,74,4,0,28,7,26,192,172,186,2,0,29,135,120,242,87,16,2,0,34,7,105,39,187,52,2,0,36,199,128,231,147,46,4,0,39,199,140,229,153,38,4,0,40,199,191,110,38,21,4,0,41,7,176,13,102,197,2,0,41,199,157,169,61,238,2,0,42,71,1,251,202,119,4,0,43,71,33,249,12,43,3,0,43,135,168,228,84,174,3,0,43,135,242,245,24,252,3,0,47,71,29,164,13,116,2,0,50,7,84,17,79,61,2,0,51,71,218,107,242,152,2,0,54,199,39,252,171,132,4,0,54,7,198,48,219,164,4,0,55,199,233,44,159,75,3,0,56,199,218,134,207,103,4,0,57,199,93,219,77,145,4,0,59,135,213,182,148,99,4,0,63,71,0,21,5,97,2,0,67,199,198,201,203,105,2,0,69,71,223,70,141,74,4,0,70,199,192,232,112,135,2,0,70,71,15,192,214,229,2,0,71,71,60,152,24,189,3,0,72,71,157,141,27,27,2,0,72,199,107,219,34,101,4,0,74,7,163,185,35,186,3,0,75,135,81,192,222,119,2,0,75,71,163,24,36,160,2,0,77,7,14,134,55,105,4,0,78,135,40,59,169,221,3,0,80,7,127,68,43,99,3,0,89,71,186,50,82,225,2,0,90,199,236,237,52,124,2,0,92,199,177,230,64,139,3,0,92,135,57,81,72,150,4,0,93,135,144,131,135,136,3,0,93,7,111,19,127,109,4,0,95,135,86,255,84,233,2,0,101,71,242,214,212,135,4,0,104,7,23,104,141,95,3,0,106,7,39,214,41,193,2,0,110,199,10,40,77,110,3,0,112,7,18,45,216,160,2,0,115,7,232,243,92,102,2,0,116,135,209,80,244,3,4,0,119,7,223,17,82,229,2,0,130,135,116,218,64,164,4,0,131,71,207,153,20,76,2,0,132,7,33,51,105,135,4,0,135,7,90,37,85,77,2,0,136,7,109,36,70,107,4,0,138,71,234,90,234,167,3,0,138,199,167,80,184,195,3,0,143,71,167,91,131,0,4,0,149,199,41,167,104,183,2,0,149,135,205,125,5,60,4,0,151,7,228,6,248,74,3,0,153,135,134,104,192,230,3,0,156,135,38,159,4,56,2,0,156,7,210,129,145,134,4,0,158,199,84,216,63,61,2,0,159,135,212,213,198,173,3,0,162,135,91,142,212,112,3,0,163,7,102,6,234,146,3,0,165,71,175,137,125,142,2,0,167,7,181,203,127,143,2,0,169,199,38,41,107,3,4,0,169,199,38,41,128,3,4,0,169,199,38,41,156,3,4,0,169,199,38,41,186,3,4,0,172,135,145,24,228,166,4,0,175,71,117,20,140,62,2,0,175,7,132,235,50,174,2,0,180,199,247,47,251,122,3,0,181,71,105,13,36,141,3,0,181,7,167,46,235,253,3,0,183,7,255,45,244,97,2,0,183,71,229,94,94,216,3,0,184,135,39,81,131,16,3,0,185,7,39,183,102,23,3,0,185,199,251,226,216,33,4,0,187,71,134,44,193,139,2,0,188,199,62,107,88,246,3,0,189,7,71,212,248,162,3,0,190,135,151,121,223,50,2,0,193,71,49,207,13,18,2,0,193,7,80,175,95,162,2,0,197,135,169,90,227,159,2,0,201,71,158,149,186,225,3,0,202,71,226,91,189,32,2,0,202,199,75,237,32,5,3,0,205,71,24,182,60,255,2,0,205,7,124,123,238,251,3,0,205,135,73,62,226,22,4,0,206,71,194,210,90,250,2,0,207,71,98,195,33,183,2,0,207,7,49,150,141,102,3,0,207,199,252,255,196,245,3,0,208,7,90,65,139,133,4,0,208,7,90,65,161,133,4,0,209,135,195,147,67,100,4,0,214,7,227,250,182,231,2,0,214,71,88,239,165,57,3,0,218,7,251,128,148,238,2,0,218,7,231,100,58,250,3,0,223,135,63,152,95,181,2,0,224,199,153,137,43,118,4,0,226,199,60,74,62,23,4,0,227,199,147,253,59,97,2,0,228,199,251,167,148,78,2,0,232,135,102,156,229,213,3,0,233,135,155,239,104,109,2,0,234,199,117,150,158,73,4,0,237,199,161,36,146,100,2,0,241,199,204,7,5,96,3,0,243,71,75,166,68,168,2,0,243,7,64,22,146,174,2,0,245,135,37,107,14,145,4,0,246,199,184,9,215,38,2,0,246,7,4,209,244,143,2,0,246,7,214,154,122,125,4,0,247,135,198,67,143,45,2,0,255,135,183,82,247,174,3,0,255,135,176,129,129,243,3,0,0,136,146,30,244,6,2,0,0,200,113,157,25,246,3,0,1,200,170,56,82,163,4,0,7,72,214,91,187,96,4,0,8,136,21,150,180,105,2,0,8,72,230,22,83,100,3,0,11,136,196,213,183,141,4,0,13,200,244,151,154,123,2,0,13,136,135,251,129,66,3,0,13,8,226,17,254,128,3,0,15,8,148,159,28,22,3,0,18,8,177,29,138,227,3,0,19,8,148,159,161,22,3,0,19,200,242,172,26,126,4,0,20,8,204,197,84,97,2,0,21,200,50,83,149,149,2,0,27,8,208,181,190,227,2,0,28,8,206,2,41,11,3,0,34,72,65,17,175,1,4,0,35,72,211,72,223,98,3,0,36,72,177,235,70,124,2,0,38,136,18,132,121,132,2,0,39,8,163,105,73,22,2,0,44,8,23,37,177,172,2,0,46,72,138,48,213,157,4,0,49,136,159,14,0,134,4,0,50,200,249,55,58,155,2,0,50,72,60,178,154,166,4,0,53,72,225,72,52,156,4,0,55,72,73,70,231,207,3,0,56,136,201,74,90,151,4,0,57,136,25,69,253,241,3,0,59,72,239,71,253,148,2,0,64,8,90,76,125,185,4,0,65,136,114,166,177,113,3,0,65,8,128,54,199,55,4,0,72,200,202,67,185,123,3,0,77,136,55,254,198,27,3,0,77,72,163,179,80,17,4,0,79,8,192,209,243,168,3,0,79,136,168,228,95,174,3,0,79,72,154,208,140,182,3,0,79,8,113,246,111,237,3,0,79,136,56,64,42,66,4,0,81,8,50,81,9,4,3,0,82,8,182,186,50,16,3,0,83,8,246,134,159,83,4,0,84,200,79,14,120,51,2,0,84,72,46,254,31,174,4,0,85,8,244,156,218,48,2,0,85,8,3,113,178,138,2,0,85,8,61,88,146,177,3,0,94,72,33,103,60,30,4,0,98,72,154,223,174,222,2,0,98,136,76,81,169,230,2,0,100,72,31,154,212,87,2,0,101,8,26,191,101,233,3,0,103,8,37,207,38,34,3,0,105,136,20,225,45,131,3,0,105,72,109,65,188,210,3,0,108,136,129,72,30,48,3,0,112,200,158,28,126,9,4,0,112,72,178,153,200,79,4,0,114,136,48,133,35,211,2,0,116,72,131,105,251,23,3,0,117,136,21,84,101,104,4,0,118,200,40,5,126,59,4,0,121,8,1,222,208,41,2,0,124,72,135,12,30,176,3,0,125,72,131,187,242,59,4,0,131,8,22,13,164,145,2,0,132,136,221,88,187,62,2,0,133,200,245,242,214,60,4,0,133,200,62,147,136,115,4,0,135,72,71,195,88,169,3,0,140,200,157,235,182,183,2,0,141,136,109,35,130,105,2,0,141,200,241,155,33,225,3,0,143,8,147,183,50,231,3,0,144,136,134,70,236,147,2,0,146,72,234,59,15,159,2,0,152,200,253,24,67,38,4,0,152,8,192,252,253,124,4,0,153,200,30,104,26,89,2,0,153,72,236,177,182,15,3,0,154,136,158,160,183,57,3,0,155,72,70,69,155,234,2,0,157,200,165,106,224,122,3,0,158,200,231,63,157,187,4,0,160,200,39,81,22,26,3,0,160,136,62,134,113,141,3,0,161,200,235,109,81,240,3,0,164,8,22,102,93,10,3,0,165,136,104,153,95,165,3,0,168,72,59,81,20,249,2,0,171,72,96,47,115,53,4,0,175,8,87,50,248,140,3,0,176,8,152,115,108,11,2,0,176,136,71,182,196,121,2,0,178,8,240,127,158,10,3,0,179,72,251,4,180,179,3,0,182,8,42,31,42,238,2,0,183,136,184,224,90,255,3,0,183,72,79,214,1,127,4,0,185,72,170,12,107,57,2,0,185,200,169,20,150,75,4,0,186,136,154,151,160,28,4,0,193,72,98,194,149,65,2,0,197,8,43,60,225,6,2,0,200,200,251,23,240,132,2,0,202,200,65,41,30,138,2,0,207,8,125,195,224,169,2,0,207,200,60,70,98,30,4,0,208,200,148,156,121,235,3,0,209,136,54,45,1,114,4,0,210,200,11,109,150,186,2,0,210,200,251,82,3,20,4,0,213,200,152,223,56,95,3,0,214,72,169,223,250,148,3,0,215,200,16,79,107,229,3,0,218,136,226,138,250,4,3,0,219,8,115,79,126,254,2,0,221,136,215,68,130,100,2,0,221,8,7,47,210,50,4,0,223,72,175,243,188,118,3,0,223,200,163,161,151,172,3,0,224,136,205,47,25,111,4,0,224,136,205,47,48,111,4,0,224,136,205,47,97,111,4,0,224,136,205,47,79,188,4,0,226,136,186,64,255,50,2,0,230,8,255,112,248,31,3,0,232,136,39,70,111,0,4,0,233,8,236,33,24,48,2,0,235,8,233,192,126,87,3,0,237,72,153,223,133,14,3,0,237,200,119,169,206,37,3,0,240,136,115,219,118,29,4,0,240,72,239,64,144,33,4,0,241,72,250,58,233,13,4,0,243,72,154,223,179,234,2,0,244,136,77,41,216,202,2,0,245,200,198,28,128,170,4,0,247,8,105,178,67,191,3,0,249,72,145,40,70,248,3,0,251,72,78,1,86,201,2,0,252,136,53,144,71,108,2,0,252,8,32,43,220,216,2,0,253,72,210,208,37,144,4,0,1,73,61,248,136,63,2,0,2,201,178,119,58,22,2,0,3,73,118,144,233,50,3,0,4,73,84,144,196,229,2,0,7,201,168,1,125,99,4,0,12,201,184,110,253,227,2,0,12,137,51,146,110,95,4,0,16,201,72,70,106,54,4,0,17,73,246,221,162,76,2,0,18,201,50,77,172,221,2,0,20,137,160,248,244,108,4,0,24,137,176,52,147,68,3,0,26,9,114,80,233,142,2,0,28,201,249,168,71,4,4,0,29,73,185,92,244,138,2,0,31,201,66,63,46,233,3,0,38,9,241,54,7,255,2,0,41,73,157,63,13,157,3,0,42,9,236,175,103,15,2,0,42,9,19,143,119,38,4,0,43,73,176,91,164,67,2,0,45,73,77,167,61,73,2,0,45,9,53,79,224,105,2,0,46,201,188,0,219,22,2,0,46,73,89,244,91,198,2,0,46,73,189,72,89,232,2,0,46,73,50,45,104,17,4,0,48,73,235,248,42,181,2,0,50,201,141,149,191,12,3,0,51,9,90,73,170,160,2,0,53,137,186,254,175,81,4,0,54,201,248,122,50,87,4,0,56,137,214,58,109,245,3,0,59,201,12,21,219,114,3,0,59,73,141,196,7,132,3,0,60,201,77,17,211,175,3,0,62,201,190,84,21,222,3,0,63,137,67,63,124,43,3,0,65,9,141,105,186,150,3,0,69,201,152,108,141,107,4,0,70,9,148,159,134,21,3,0,71,201,28,110,146,93,3,0,76,201,252,50,156,101,4,0,81,73,87,162,130,7,2,0,84,137,233,110,172,26,3,0,87,73,47,194,244,228,2,0,90,137,26,214,93,181,4,0,92,9,94,229,82,38,2,0,92,73,121,157,12,55,2,0,93,137,125,56,36,107,4,0,94,73,120,127,178,184,4,0,96,201,211,37,138,155,3,0,97,9,24,105,57,10,3,0,97,137,39,81,210,14,3,0,97,9,148,12,211,24,4,0,101,137,34,67,61,152,4,0,106,73,167,69,200,183,2,0,109,137,39,81,196,14,3,0,110,201,93,235,28,169,3,0,113,137,174,29,116,224,3,0,113,137,175,252,172,57,4,0,114,201,23,211,26,17,2,0,115,137,251,211,216,146,3,0,117,73,24,81,175,79,3,0,118,201,122,77,62,158,2,0,118,137,38,156,37,64,4,0,120,137,189,186,100,21,3,0,121,201,53,227,91,93,2,0,127,201,47,194,4,229,2,0,128,137,178,254,41,94,4,0,130,137,19,192,61,200,2,0,130,201,125,153,65,63,3,0,133,137,39,81,26,14,3,0,133,137,3,67,254,153,3,0,135,73,122,71,51,144,2,0,146,137,197,249,246,157,4,0,152,73,58,0,152,145,3,0,153,137,39,81,55,13,3,0,154,9,75,47,63,199,2,0,158,73,175,211,58,145,4,0,159,201,191,58,27,230,3,0,159,201,189,114,107,117,4,0,159,73,232,194,240,187,4,0,162,201,23,81,115,91,3,0,163,9,217,187,107,132,3,0,166,9,34,55,172,153,3,0,168,73,24,122,79,68,3,0,169,9,166,240,50,70,2,0,169,201,188,131,123,73,4,0,173,137,29,137,235,75,2,0,177,137,6,116,7,93,3,0,178,201,132,215,158,95,3,0,181,137,123,253,91,122,2,0,184,137,115,171,26,95,4,0,187,137,169,77,114,29,2,0,189,137,195,218,29,131,2,0,190,9,120,116,138,120,4,0,191,9,144,21,73,159,2,0,194,73,124,147,203,203,2,0,194,73,154,223,130,211,2,0,196,73,124,184,156,89,3,0,197,137,94,245,169,83,2,0,197,9,67,71,216,98,2,0,200,137,194,36,73,210,2,0,200,137,161,218,210,227,2,0,202,201,50,173,51,74,3,0,205,137,66,114,206,241,2,0,207,73,96,73,234,216,3,0,208,9,8,123,11,239,3,0,210,201,195,117,93,160,4,0,211,73,218,67,43,63,3,0,211,201,101,172,39,161,3,0,211,137,25,147,236,101,4,0,212,137,199,63,249,24,2,0,213,137,95,146,66,87,3,0,215,73,152,197,51,27,2,0,215,9,89,209,122,202,2,0,216,137,25,163,183,69,3,0,220,9,86,226,11,172,4,0,222,73,29,231,41,48,2,0,223,9,203,219,53,29,2,0,224,73,65,156,213,187,3,0,224,73,100,78,47,175,4,0,228,9,241,179,38,150,2,0,229,9,61,57,10,101,3,0,230,73,245,223,54,29,4,0,233,73,49,7,144,231,2,0,234,9,84,33,251,55,4,0,236,73,214,230,53,131,4,0,239,9,98,84,246,99,2,0,239,73,9,130,35,120,4,0,240,73,147,52,247,222,3,0,246,9,93,147,228,153,3,0,247,201,104,204,226,206,3,0,3,202,105,19,204,48,4,0,4,138,112,69,29,140,3,0,5,138,30,248,252,183,3,0,5,202,237,181,180,234,3,0,7,202,106,62,240,28,3,0,8,138,248,124,27,178,2,0,9,10,227,115,194,96,2,0,10,202,176,75,15,13,3,0,14,10,168,87,98,218,3,0,17,202,207,104,67,68,4,0,21,138,1,181,52,196,2,0,28,202,67,231,8,215,2,0,30,74,174,206,49,111,3,0,31,10,148,9,165,168,2,0,36,138,71,170,65,149,2,0,41,74,188,205,247,241,2,0,44,138,91,48,26,86,4,0,46,10,45,211,107,75,2,0,48,10,118,211,216,132,2,0,49,10,173,205,29,18,3,0,51,10,7,218,126,35,3,0,52,138,43,42,164,96,3,0,52,138,141,116,243,50,4,0,53,138,160,72,150,153,4,0,54,10,202,208,136,138,4,0,55,138,65,195,66,165,3,0,61,202,141,93,217,178,3,0,61,202,47,119,15,65,4,0,64,10,211,47,231,237,3,0,70,138,143,143,100,113,4,0,72,138,214,231,148,102,4,0,80,202,243,139,60,112,2,0,82,202,156,210,245,105,3,0,89,138,215,68,164,100,2,0,89,10,224,148,178,231,3,0,94,202,235,232,167,218,3,0,95,10,251,237,151,120,2,0,97,202,87,235,47,46,2,0,97,202,87,235,69,46,2,0,97,202,87,235,166,46,2,0,97,202,87,235,207,46,2,0,97,202,87,235,245,46,2,0,97,202,87,235,23,47,2,0,97,202,87,235,67,47,2,0,97,202,87,235,97,47,2,0,98,10,169,81,241,79,3,0,99,138,234,150,74,200,3,0,101,74,126,101,17,42,4,0,102,138,251,167,225,57,3,0,104,10,59,184,187,71,3,0,105,10,163,125,136,101,4,0,110,202,240,125,216,225,2,0,111,202,247,70,241,136,4,0,112,10,215,69,155,254,2,0,117,138,225,231,5,9,3,0,118,202,135,99,44,6,3,0,120,202,69,185,89,2,2,0,122,138,236,236,100,185,3,0,123,138,219,47,95,111,2,0,124,202,134,35,123,34,2,0,125,74,103,23,71,157,3,0,126,138,102,76,1,103,2,0,127,74,154,223,172,169,2,0,127,10,193,26,80,159,4,0,129,74,158,80,117,110,2,0,132,10,38,206,6,240,2,0,132,202,27,13,55,104,4,0,133,10,182,88,168,41,4,0,136,74,34,155,214,215,3,0,137,202,249,24,160,15,2,0,137,202,162,44,225,77,3,0,140,74,123,130,19,29,2,0,150,138,35,107,85,130,3,0,151,74,214,36,197,148,2,0,152,138,250,192,68,135,2,0,154,202,223,132,142,88,2,0,155,10,205,105,26,238,2,0,156,10,205,22,14,160,2,0,157,74,27,165,208,56,3,0,158,138,193,83,174,211,3,0,161,10,47,142,109,195,3,0,164,202,233,142,143,86,3,0,167,202,5,58,8,22,2,0,167,202,142,103,95,18,4,0,168,10,228,45,95,133,4,0,171,10,181,126,189,10,2,0,171,74,87,177,143,168,2,0,173,74,235,38,10,162,2,0,174,10,213,176,100,38,2,0,174,74,223,155,118,128,4,0,175,74,197,163,99,176,4,0,176,10,228,183,23,181,3,0,179,10,227,152,23,218,2,0,179,202,77,152,7,117,4,0,183,74,17,192,219,193,2,0,183,202,47,192,175,228,3,0,186,10,64,108,30,2,3,0,189,74,174,236,243,140,2,0,190,74,154,223,143,188,2,0,191,138,66,62,138,36,2,0,194,74,154,223,73,187,2,0,195,202,202,4,125,220,2,0,198,74,129,125,40,31,3,0,198,202,216,225,204,136,3,0,198,74,112,99,111,177,4,0,201,74,94,225,190,115,2,0,204,10,40,49,48,62,3,0,205,10,126,37,24,96,3,0,208,202,211,17,129,216,3,0,208,138,64,97,211,162,4,0,209,202,231,135,137,127,2,0,214,74,132,219,228,246,2,0,216,74,176,0,123,170,3,0,217,10,246,90,3,44,4,0,217,74,206,229,46,93,4,0,218,10,167,8,26,239,3,0,221,10,237,252,133,98,2,0,221,202,26,192,84,161,2,0,223,138,51,219,189,195,2,0,225,138,197,226,37,187,3,0,226,138,155,54,127,60,3,0,232,202,152,240,53,55,3,0,237,10,3,119,204,44,3,0,238,138,250,212,13,5,3,0,241,202,230,46,219,136,2,0,243,138,113,71,191,196,2,0,243,138,17,72,227,61,4,0,246,10,218,116,196,85,4,0,247,10,36,219,198,1,2,0,247,10,220,47,135,104,3,0,247,202,120,211,95,147,3,0,251,74,81,132,164,116,4,0,253,138,95,146,84,87,3,0,255,138,53,194,159,229,2,0,2,75,76,108,125,115,2,0,6,203,102,59,135,188,3,0,7,11,126,27,71,30,3,0,7,75,17,243,212,31,4,0,14,75,88,114,51,147,4,0,16,75,18,216,105,131,3,0,18,75,75,185,207,58,2,0,18,75,251,76,234,158,2,0,19,203,250,252,169,19,3,0,19,75,82,224,115,167,4,0,24,11,43,110,81,73,4,0,25,203,104,159,230,102,3,0,26,75,229,56,212,154,2,0,30,203,19,86,29,71,2,0,30,11,52,235,85,82,3,0,30,11,205,20,19,144,3,0,33,11,78,100,120,2,4,0,42,139,5,143,189,122,4,0,43,139,36,38,68,129,2,0,43,203,62,229,80,219,3,0,46,139,130,180,89,195,2,0,47,11,150,29,136,10,2,0,48,139,142,32,218,110,4,0,49,139,71,86,126,62,3,0,56,203,19,224,151,226,2,0,57,139,117,63,170,173,3,0,59,203,218,91,113,64,2,0,59,139,63,226,35,255,2,0,62,75,68,12,252,169,3,0,63,139,242,174,26,12,4,0,64,203,128,212,184,91,2,0,64,139,107,15,3,247,2,0,66,139,4,228,196,190,3,0,66,139,203,129,99,213,3,0,67,203,96,80,108,140,4,0,68,75,24,81,227,79,3,0,69,11,192,226,222,54,3,0,71,139,92,130,65,21,4,0,72,11,10,245,91,101,2,0,72,203,130,132,142,201,2,0,72,139,153,47,223,193,3,0,74,75,86,213,142,94,3,0,74,11,235,22,180,96,3,0,76,139,241,54,86,59,3,0,82,11,206,255,194,28,2,0,82,203,101,240,130,241,3,0,83,139,50,30,17,108,3,0,84,139,106,94,185,208,3,0,86,11,76,41,115,18,4,0,88,139,163,150,151,146,2,0,89,203,48,150,55,145,2,0,91,75,195,39,229,140,4,0,94,11,238,216,51,98,2,0,95,75,117,217,13,9,4,0,96,203,210,227,224,14,3,0,96,11,85,211,237,45,4,0,97,203,177,206,162,173,4,0,101,139,10,155,153,192,2,0,105,75,12,192,199,41,4,0,109,75,218,60,106,182,3,0,111,75,91,95,124,175,4,0,116,75,253,83,94,30,3,0,116,11,146,137,60,91,4,0,117,75,116,246,1,34,2,0,119,203,240,90,4,31,4,0,121,75,135,144,204,171,3,0,123,75,156,200,164,249,2,0,126,139,221,142,202,96,3,0,126,75,41,125,27,206,3,0,127,75,142,151,245,42,2,0,128,203,224,253,10,245,2,0,129,75,205,184,43,42,3,0,130,11,239,120,207,16,4,0,134,203,35,19,232,76,3,0,136,139,125,105,160,129,3,0,139,203,130,171,14,114,2,0,141,139,49,8,15,219,3,0,144,11,227,107,101,94,2,0,145,11,148,148,150,172,4,0,148,139,64,64,238,170,4,0,152,203,44,135,104,41,4,0,155,203,31,217,74,96,3,0,159,75,52,16,92,154,2,0,160,11,19,64,1,107,4,0,162,139,29,95,218,201,2,0,162,75,91,76,221,81,3,0,162,139,11,58,101,203,3,0,166,11,121,164,235,40,4,0,167,203,163,175,71,120,3,0,168,139,66,173,213,73,3,0,169,203,64,224,33,92,2,0,170,11,199,78,187,55,3,0,171,203,150,34,183,157,4,0,177,11,23,171,100,120,2,0,177,203,123,224,71,95,4,0,177,11,74,226,175,117,4,0,178,11,62,248,172,76,3,0,179,203,180,232,43,130,4,0,182,75,35,224,230,31,2,0,183,11,144,8,127,219,3,0,187,203,188,198,99,204,3,0,188,75,178,138,138,133,2,0,189,11,22,254,131,96,4,0,193,139,148,85,254,45,4,0,195,139,105,161,16,26,2,0,205,11,99,202,155,224,2,0,207,75,225,97,176,166,3,0,208,203,39,64,52,177,2,0,209,203,163,97,84,18,2,0,210,11,67,36,4,118,3,0,212,139,40,75,94,159,2,0,212,203,190,22,178,18,3,0,214,203,235,29,70,185,3,0,214,11,44,15,73,130,4,0,215,11,247,90,211,20,2,0,215,139,40,75,112,159,2,0,225,75,91,132,170,2,3,0,230,11,81,171,53,79,3,0,230,203,182,171,159,108,4,0,233,11,119,177,83,3,3,0,234,203,198,157,26,88,3,0,236,75,183,18,46,183,3,0,238,75,160,54,214,59,3,0,240,11,18,94,16,100,3,0,241,75,125,235,6,118,2,0,246,11,234,220,19,106,2,0,251,11,183,94,244,208,3,0,252,139,137,184,40,76,3,0,255,203,68,127,253,57,2,0,0,140,251,171,43,117,3,0,2,76,157,85,126,29,2,0,2,76,177,45,204,176,2,0,5,12,197,188,87,130,2,0,12,76,67,220,91,109,2,0,12,76,210,15,238,231,2,0,14,76,229,61,170,126,3,0,15,76,70,198,234,182,4,0,18,204,11,124,227,146,4,0,18,76,246,141,125,148,4,0,28,204,117,23,40,116,4,0,30,204,215,5,37,144,3,0,30,140,93,128,233,230,3,0,30,12,35,145,5,38,4,0,40,12,188,77,86,57,2,0,40,140,15,248,24,190,2,0,40,12,85,249,226,195,3,0,48,140,178,220,82,167,2,0,49,204,134,122,120,152,4,0,50,76,175,69,247,67,2,0,54,76,197,229,79,184,3,0,56,204,13,207,133,232,2,0,57,76,86,119,179,75,3,0,59,140,215,189,170,194,2,0,59,76,15,192,53,229,2,0,69,12,86,173,78,12,2,0,71,204,144,181,80,249,2,0,71,140,217,151,252,47,4,0,73,12,138,27,133,102,2,0,78,76,166,81,148,62,3,0,78,204,26,127,232,125,4,0,81,76,214,110,128,145,4,0,83,204,72,167,116,92,2,0,84,140,100,221,14,120,4,0,86,204,137,128,125,69,4,0,90,76,187,2,224,23,4,0,91,76,113,61,57,17,2,0,91,140,107,63,59,140,2,0,93,76,130,175,172,121,4,0,94,204,39,81,248,25,3,0,99,76,32,167,59,245,2,0,100,76,3,123,79,69,3,0,105,140,92,38,184,187,4,0,106,76,124,184,171,89,3,0,106,140,1,14,22,100,4,0,113,140,89,165,101,40,2,0,116,76,91,214,134,61,2,0,116,76,67,249,63,228,3,0,117,76,74,80,177,12,2,0,126,76,171,31,193,7,2,0,126,204,82,203,45,159,2,0,126,140,152,242,19,109,3,0,127,76,165,151,88,95,3,0,127,204,10,20,250,118,3,0,128,204,179,252,170,114,3,0,133,140,88,229,20,23,3,0,133,204,139,20,186,95,3,0,133,12,152,137,5,16,4,0,134,140,182,134,152,169,3,0,135,12,232,27,3,107,2,0,140,76,42,43,112,86,2,0,140,12,59,184,222,69,3,0,140,204,139,20,226,71,3,0,140,204,139,20,244,71,3,0,140,204,139,20,5,72,3,0,140,204,139,20,28,72,3,0,140,204,139,20,57,72,3,0,140,204,139,20,75,72,3,0,140,204,139,20,93,72,3,0,140,204,139,20,112,72,3,0,140,204,139,20,128,72,3,0,140,204,139,20,146,72,3,0,140,204,139,20,162,72,3,0,140,204,139,20,181,72,3,0,140,204,139,20,201,72,3,0,140,204,139,20,217,72,3,0,140,204,139,20,241,72,3,0,140,204,139,20,7,73,3,0,140,204,139,20,22,73,3,0,140,204,139,20,58,73,3,0,140,204,139,20,78,73,3,0,140,204,139,20,99,73,3,0,140,204,139,20,120,73,3,0,140,204,139,20,143,73,3,0,140,204,139,20,158,80,3,0,140,204,139,20,196,80,3,0,146,204,229,96,228,124,4,0,147,140,97,219,12,115,2,0,149,140,245,63,27,39,4,0,153,12,166,45,185,89,4,0,154,12,70,166,138,168,4,0,155,204,139,20,62,35,3,0,164,12,179,126,174,103,3,0,166,76,167,178,16,213,2,0,166,12,245,218,220,119,4,0,166,12,57,237,210,186,4,0,169,12,33,51,207,232,3,0,173,204,189,204,227,181,2,0,173,140,106,35,166,177,3,0,174,76,35,235,187,102,3,0,175,204,139,20,75,0,3,0,180,204,139,20,172,250,2,0,185,140,70,226,41,101,3,0,189,12,47,207,110,127,4,0,190,12,153,55,145,92,4,0,191,140,181,57,157,103,3,0,192,140,54,60,107,245,2,0,194,12,59,184,0,70,3,0,197,76,156,241,115,0,3,0,201,76,78,156,152,6,3,0,201,76,7,35,230,112,3,0,202,204,139,20,2,238,2,0,206,204,200,32,81,104,3,0,208,76,34,15,101,18,2,0,208,76,164,201,72,57,3,0,210,204,233,90,21,113,3,0,211,204,195,166,221,244,2,0,216,140,27,20,8,202,2,0,217,140,223,137,128,130,2,0,221,12,190,228,21,7,2,0,221,12,123,168,20,91,3,0,221,204,251,94,86,215,3,0,223,12,203,239,150,252,3,0,228,140,71,64,233,170,2,0,229,76,137,56,136,97,4,0,231,76,6,121,166,13,2,0,232,204,133,119,240,169,2,0,233,204,139,20,197,95,3,0,234,76,224,252,165,106,3,0,236,12,166,97,211,153,2,0,236,76,151,160,56,57,3,0,241,140,157,255,100,12,4,0,241,12,241,126,203,170,4,0,245,204,145,59,104,159,4,0,248,204,208,241,164,99,3,0,249,12,205,17,65,164,2,0,3,77,168,141,162,14,4,0,6,13,72,177,103,218,2,0,6,141,240,199,155,44,3,0,7,13,54,81,161,253,2,0,9,77,55,61,21,128,2,0,11,13,54,81,132,253,2,0,12,141,214,121,115,14,2,0,16,205,73,157,44,170,4,0,18,205,252,92,133,186,2,0,20,141,110,229,83,145,3,0,22,77,222,0,121,214,3,0,24,77,234,247,122,137,2,0,25,13,88,181,97,4,4,0,26,205,153,44,49,18,3,0,30,13,80,180,169,9,3,0,30,141,238,169,121,85,3,0,31,77,244,144,178,127,3,0,31,141,215,246,173,147,4,0,34,205,178,154,109,139,3,0,37,141,175,7,11,32,2,0,39,13,72,106,37,249,3,0,41,13,184,81,68,16,4,0,47,13,14,97,150,143,4,0,54,205,224,53,110,175,3,0,58,205,201,239,0,41,2,0,65,141,228,116,105,160,3,0,67,141,54,67,14,23,2,0,68,77,5,25,174,156,2,0,68,13,235,160,49,10,4,0,71,77,124,52,18,227,3,0,74,77,215,230,97,98,3,0,79,141,70,150,200,200,3,0,81,141,240,210,78,104,2,0,83,13,142,184,204,165,3,0,84,205,237,219,153,119,2,0,85,77,255,146,134,150,3,0,85,205,55,85,100,194,3,0,87,141,12,250,10,151,3,0,89,13,190,205,97,18,3,0,91,77,239,44,227,90,4,0,98,77,90,87,91,204,2,0,98,13,200,189,177,242,2,0,99,13,235,0,16,171,4,0,103,141,253,45,210,7,2,0,108,205,222,154,216,75,3,0,109,13,160,189,95,183,3,0,111,141,232,219,38,145,4,0,112,205,51,63,45,169,2,0,112,77,175,86,19,165,3,0,113,13,124,39,171,104,3,0,115,205,107,42,209,68,4,0,118,77,32,165,214,210,3,0,120,205,15,45,133,141,3,0,124,141,87,255,156,144,4,0,127,77,31,181,164,158,3,0,129,205,114,81,95,177,4,0,130,141,159,125,8,104,2,0,130,13,66,168,189,155,2,0,131,205,13,192,18,194,2,0,131,141,222,215,186,24,3,0,133,205,243,43,138,115,2,0,133,13,222,41,230,179,2,0,134,77,143,118,7,4,4,0,135,205,206,155,98,68,3,0,140,13,43,141,198,50,3,0,143,77,69,241,11,48,4,0,148,13,41,40,62,9,2,0,148,141,48,245,142,241,3,0,149,13,204,57,196,56,2,0,151,141,51,204,112,121,3,0,153,205,206,165,79,214,2,0,154,141,135,240,233,139,3,0,157,205,239,62,119,19,4,0,160,77,57,69,214,101,4,0,163,77,120,167,242,98,3,0,166,77,33,128,144,66,2,0,170,77,87,107,75,56,3,0,177,13,250,31,203,48,2,0,178,141,220,178,189,126,2,0,179,205,185,181,246,119,4,0,181,13,177,24,74,216,2,0,183,141,211,42,15,86,2,0,187,205,199,203,149,56,4,0,188,141,57,13,20,129,3,0,193,141,49,160,23,141,4,0,193,141,8,194,228,181,4,0,194,141,182,144,93,128,2,0,194,141,118,176,204,185,2,0,194,13,57,201,31,42,4,0,200,77,45,26,169,70,4,0,201,13,143,255,212,123,2,0,201,141,88,142,33,51,3,0,206,13,226,109,162,198,3,0,207,141,189,5,69,250,2,0,209,141,89,202,179,154,2,0,214,77,250,8,197,60,2,0,214,141,183,55,112,149,2,0,216,141,247,155,244,68,2,0,218,77,84,252,245,14,3,0,230,13,223,152,107,217,2,0,230,205,168,48,50,83,4,0,230,13,203,81,53,188,4,0,233,13,236,37,226,31,3,0,233,141,98,177,212,97,4,0,238,13,202,190,160,55,3,0,240,205,195,193,16,79,2,0,241,141,207,115,208,248,2,0,242,205,9,216,28,202,2,0,243,13,75,176,112,19,3,0,244,205,198,213,204,26,2,0,244,77,230,165,18,78,3,0,245,13,175,188,71,124,3,0,248,141,253,103,92,146,3,0,0,14,236,112,229,244,3,0,1,206,76,81,223,186,2,0,2,78,255,180,115,165,2,0,5,78,176,175,125,43,4,0,7,78,183,193,53,74,2,0,8,142,175,183,102,217,3,0,9,206,106,26,183,218,2,0,10,142,212,188,108,7,3,0,11,14,225,223,89,75,3,0,12,14,122,56,126,118,2,0,12,206,67,221,27,177,2,0,15,78,198,21,252,104,2,0,16,14,194,166,139,115,3,0,16,206,223,107,176,24,4,0,18,14,178,239,18,233,3,0,19,78,11,143,254,229,2,0,25,142,75,105,56,93,3,0,27,142,45,216,228,58,2,0,29,14,110,138,54,102,4,0,30,142,240,47,29,20,2,0,30,142,186,134,158,127,2,0,32,78,116,196,1,168,3,0,35,206,45,216,136,23,3,0,36,142,15,248,211,189,2,0,40,206,244,64,216,95,2,0,40,142,26,125,120,174,4,0,42,14,59,38,188,106,2,0,44,142,155,196,38,51,2,0,44,14,217,47,209,249,2,0,46,206,32,187,27,72,2,0,46,78,158,154,123,174,2,0,46,78,178,214,154,160,4,0,47,78,55,178,27,112,4,0,47,142,207,214,197,157,4,0,50,206,153,99,76,202,3,0,53,78,236,5,78,3,2,0,55,142,45,77,105,175,2,0,58,14,72,56,163,159,3,0,60,78,157,183,119,23,3,0,62,78,55,222,132,184,3,0,62,14,25,68,216,11,4,0,72,14,241,150,177,156,3,0,73,206,123,64,13,204,3,0,76,142,177,22,137,142,3,0,78,14,226,110,228,191,2,0,78,142,145,148,199,254,2,0,83,78,225,46,214,196,2,0,86,206,244,65,238,86,3,0,88,78,34,126,79,25,2,0,88,78,82,185,38,105,2,0,95,206,107,146,212,126,2,0,98,78,82,136,42,171,3,0,101,14,96,16,49,165,3,0,102,142,138,83,237,27,3,0,102,206,21,17,117,130,4,0,105,206,121,69,102,202,3,0,112,78,39,72,210,101,2,0,118,206,150,222,94,107,3,0,120,14,208,53,218,238,2,0,120,78,53,21,170,39,3,0,124,206,233,204,11,139,2,0,126,206,19,186,31,36,3,0,129,206,4,28,207,128,2,0,130,206,22,197,25,83,4,0,131,78,31,188,48,166,2,0,132,142,244,134,181,176,3,0,132,78,63,32,114,65,4,0,133,206,205,249,235,206,2,0,136,142,32,195,52,134,3,0,137,78,62,121,184,25,2,0,137,14,31,109,203,57,2,0,137,78,10,169,183,250,2,0,138,14,134,184,248,92,3,0,139,78,90,185,125,189,2,0,143,78,37,232,211,179,3,0,144,206,23,242,12,57,3,0,146,78,130,130,114,138,2,0,147,142,251,255,233,41,4,0,149,14,140,251,95,58,4,0,151,206,138,41,235,48,2,0,157,14,155,130,143,131,3,0,158,206,47,81,79,5,3,0,160,14,127,114,131,181,3,0,163,78,196,169,225,187,2,0,164,142,210,199,69,111,3,0,164,78,249,74,181,184,3,0,164,78,228,249,201,95,4,0,165,142,120,141,49,190,3,0,166,206,190,46,118,5,4,0,167,142,158,94,51,196,3,0,167,142,204,86,118,232,3,0,167,78,122,89,168,255,3,0,171,78,92,240,198,221,2,0,172,142,34,208,13,45,4,0,173,142,159,221,110,7,2,0,173,78,75,168,236,197,3,0,174,78,55,186,214,29,3,0,174,142,10,10,177,110,4,0,175,206,95,36,38,92,4,0,176,14,210,67,128,247,2,0,176,206,14,176,234,238,3,0,176,14,251,211,74,153,4,0,178,14,192,146,146,158,4,0,178,142,119,19,209,176,4,0,181,78,193,79,62,103,2,0,181,206,24,192,127,183,2,0,183,78,126,151,236,190,3,0,184,78,117,196,149,185,2,0,185,142,28,100,204,251,3,0,187,142,10,99,29,200,3,0,188,78,30,253,202,23,3,0,189,142,218,152,236,120,3,0,191,206,51,111,16,11,4,0,191,14,173,205,4,13,4,0,197,142,187,167,251,250,3,0,202,78,171,248,173,159,2,0,206,206,187,125,232,175,2,0,206,206,98,112,35,244,2,0,206,14,7,139,170,235,3,0,208,78,202,8,79,165,3,0,211,14,154,59,34,117,4,0,214,78,172,200,250,242,3,0,215,142,220,189,51,101,2,0,215,206,5,66,41,252,2,0,216,142,76,254,41,253,3,0,220,14,73,50,23,201,3,0,221,206,171,43,4,166,3,0,221,78,33,68,5,94,4,0,222,14,189,31,7,235,3,0,223,142,37,111,24,74,2,0,228,14,21,192,217,212,2,0,228,14,241,93,76,129,4,0,237,14,49,34,247,140,4,0,241,206,141,97,252,59,2,0,241,142,9,171,238,105,4,0,242,78,90,205,2,233,2,0,249,206,190,147,133,90,2,0,251,142,60,228,180,147,2,0,255,14,209,76,2,53,2,0,255,206,218,25,220,52,3,0,255,14,17,47,100,53,4,0,0,79,26,20,139,83,2,0,0,15,56,128,113,44,3,0,4,143,123,134,172,74,2,0,5,143,179,53,134,74,3,0,7,207,93,82,33,133,2,0,10,143,75,129,220,0,4,0,16,207,252,75,168,149,3,0,16,15,54,18,216,172,3,0,20,15,252,250,100,239,3,0,22,79,192,6,181,244,3,0,26,79,24,126,101,70,2,0,27,207,230,13,83,175,3,0,29,79,147,115,99,105,2,0,30,143,45,13,70,132,2,0,30,15,92,69,110,220,3,0,33,143,150,147,72,30,2,0,33,79,86,237,241,175,3,0,35,15,133,40,122,54,4,0,39,15,73,27,149,206,2,0,40,15,180,113,36,212,2,0,44,207,5,89,175,120,2,0,44,79,169,92,183,1,3,0,45,15,142,65,151,170,2,0,56,79,180,228,140,137,4,0,57,79,210,8,25,25,3,0,58,15,139,66,55,11,2,0,60,143,168,99,132,192,3,0,61,79,38,122,20,69,4,0,62,79,155,72,203,231,3,0,66,15,240,190,173,81,2,0,66,15,129,118,46,117,2,0,68,207,159,76,253,255,2,0,72,143,189,71,97,93,4,0,73,15,32,237,217,85,2,0,75,143,97,140,161,82,3,0,81,79,120,20,255,139,3,0,84,79,174,196,151,66,3,0,86,143,189,92,7,139,4,0,87,15,98,75,230,81,4,0,89,79,70,23,97,236,3,0,90,79,74,193,128,228,2,0,93,15,95,169,228,90,3,0,95,207,250,157,122,178,4,0,98,207,22,218,56,68,3,0,99,207,30,73,41,37,2,0,104,79,61,89,202,174,2,0,109,143,81,219,7,27,3,0,111,15,157,143,229,241,2,0,111,143,37,185,255,203,3,0,112,79,142,205,40,166,4,0,114,207,69,154,50,128,3,0,117,79,55,201,217,141,3,0,118,15,109,235,201,23,2,0,121,79,101,162,140,50,2,0,122,207,147,45,152,117,2,0,122,79,31,106,32,49,3,0,126,143,176,197,95,30,2,0,130,79,97,58,154,183,4,0,132,207,12,12,21,147,2,0,133,207,169,206,129,230,3,0,137,15,243,12,205,162,3,0,138,207,85,152,52,191,3,0,143,207,8,168,95,22,2,0,145,15,167,62,176,63,3,0,145,207,175,80,180,241,3,0,147,207,227,25,211,144,4,0,148,207,157,251,76,194,2,0,148,79,239,97,201,49,3,0,148,143,83,215,139,70,3,0,149,143,253,40,209,62,2,0,151,79,13,15,66,116,4,0,154,15,122,176,33,212,3,0,154,79,234,97,54,129,4,0,156,15,151,155,108,31,2,0,160,143,91,240,175,78,4,0,163,207,188,53,175,56,3,0,163,15,241,231,54,136,3,0,163,79,83,251,173,216,3,0,163,79,78,236,14,10,4,0,164,79,214,137,243,89,3,0,165,207,194,0,190,130,2,0,165,79,55,169,219,252,2,0,165,207,244,200,28,74,3,0,167,207,253,185,102,126,4,0,167,15,1,163,92,156,4,0,168,143,116,155,10,25,4,0,169,79,148,131,249,56,2,0,169,15,41,66,181,19,4,0,171,207,66,92,16,248,2,0,174,79,211,158,92,33,3,0,177,15,184,244,183,2,4,0,182,207,147,14,170,98,2,0,185,79,227,32,214,167,3,0,186,207,32,94,205,201,3,0,187,15,91,172,43,149,3,0,188,15,158,130,170,245,3,0,195,79,91,28,47,100,2,0,198,207,151,169,134,174,3,0,198,15,55,50,231,49,4,0,199,79,71,133,146,21,2,0,199,143,139,214,233,148,4,0,202,79,9,16,44,213,2,0,203,15,87,93,134,45,3,0,203,79,172,122,140,130,3,0,204,79,161,59,218,53,4,0,205,207,143,241,6,58,3,0,206,207,4,54,246,30,4,0,206,143,132,69,189,150,4,0,211,143,178,168,32,246,2,0,214,79,64,83,126,15,2,0,216,207,9,118,130,28,2,0,216,79,91,158,151,101,2,0,216,15,17,144,240,137,3,0,217,143,118,173,105,84,2,0,217,79,189,255,68,244,2,0,223,79,160,140,57,150,3,0,223,15,189,169,113,123,4,0,226,15,20,32,250,134,3,0,229,15,198,223,73,152,3,0,229,15,231,233,102,2,4,0,232,15,45,215,121,76,2,0,234,143,80,247,79,113,4,0,237,15,35,56,129,31,4,0,243,143,27,40,13,52,2,0,247,207,204,141,250,201,3,0,248,143,46,198,170,160,3,0,248,15,213,230,129,18,4,0,252,79,239,27,228,88,3,0,255,143,30,32,109,79,2,0,1,144,114,241,189,54,4,0,1,80,105,205,63,60,4,0,4,144,175,183,42,217,3,0,6,16,86,221,117,18,3,0,7,144,35,21,232,115,4,0,8,208,181,234,100,142,3,0,11,144,114,187,178,7,3,0,13,144,52,248,166,73,3,0,14,208,51,69,37,222,3,0,16,80,111,166,111,247,2,0,18,80,236,67,192,104,3,0,20,80,43,206,202,67,2,0,22,144,186,199,62,2,2,0,22,208,218,133,187,78,2,0,22,208,185,177,188,69,4,0,23,144,23,67,109,102,3,0,26,80,76,158,122,150,2,0,27,80,28,133,238,98,2,0,27,208,202,48,118,47,4,0,29,208,37,252,142,231,3,0,29,80,104,123,111,70,4,0,30,144,246,153,30,198,2,0,31,80,96,72,50,52,3,0,32,16,64,92,246,35,2,0,32,16,126,106,192,115,4,0,36,144,164,242,140,79,2,0,38,80,92,57,132,91,2,0,45,80,220,168,160,162,4,0,46,80,173,170,105,157,2,0,46,16,186,94,167,178,3,0,53,144,66,43,209,226,2,0,63,80,65,158,52,197,2,0,64,16,123,137,188,9,2,0,68,16,131,83,43,41,2,0,69,144,52,248,236,92,3,0,69,144,102,32,222,248,3,0,69,144,8,1,96,92,4,0,70,16,81,171,69,79,3,0,77,144,52,248,130,92,3,0,78,208,118,78,252,172,2,0,79,144,52,248,142,92,3,0,85,16,109,210,42,155,4,0,86,80,65,24,182,33,2,0,86,16,240,33,169,140,4,0,87,144,225,133,137,215,2,0,95,144,52,248,104,90,3,0,97,80,174,149,198,120,2,0,98,144,49,223,209,160,4,0,99,16,84,14,251,162,4,0,107,144,239,179,238,227,3,0,109,16,237,27,228,153,2,0,114,208,226,180,223,47,2,0,116,80,74,188,240,152,3,0,120,80,68,162,106,132,2,0,122,80,59,184,60,56,3,0,126,208,137,87,23,208,2,0,127,80,50,62,215,75,2,0,127,208,110,117,57,108,2,0,127,144,184,113,157,131,2,0,127,144,52,248,43,75,3,0,134,144,118,207,31,151,3,0,134,16,8,37,134,32,4,0,135,16,48,9,19,170,4,0,138,208,43,159,204,66,2,0,139,16,215,26,87,136,4,0,140,144,102,196,223,117,4,0,143,80,192,15,71,92,2,0,144,80,62,22,70,133,4,0,148,144,127,154,120,159,3,0,149,80,167,166,174,145,4,0,153,144,54,53,158,56,3,0,157,16,183,147,245,101,3,0,157,16,51,28,28,31,4,0,158,144,46,253,7,172,3,0,163,16,182,147,154,203,3,0,171,16,109,36,206,49,2,0,173,208,219,47,88,99,3,0,174,144,209,57,17,148,4,0,175,144,203,26,223,105,3,0,177,208,139,161,120,194,3,0,178,208,224,139,100,43,2,0,178,16,95,144,224,168,2,0,178,16,22,55,79,102,4,0,181,16,225,151,173,151,3,0,182,208,215,163,4,21,3,0,182,208,65,100,34,195,3,0,183,80,0,181,219,77,2,0,183,80,155,33,22,44,3,0,184,16,138,146,16,43,4,0,189,16,230,105,193,52,4,0,190,16,199,54,212,130,2,0,192,208,108,48,43,111,2,0,193,16,41,53,20,175,3,0,197,16,60,63,108,152,3,0,198,16,199,186,71,28,3,0,202,144,15,149,87,37,4,0,204,144,72,192,221,27,2,0,205,80,90,143,80,140,2,0,205,208,247,46,152,253,3,0,208,144,245,166,220,88,2,0,211,208,214,232,167,88,2,0,216,144,189,14,168,240,3,0,216,16,139,124,130,186,4,0,217,208,2,182,86,205,2,0,219,80,173,24,185,158,2,0,220,16,105,63,222,108,2,0,222,144,52,248,221,44,3,0,227,16,79,81,129,91,3,0,227,208,77,167,68,183,3,0,228,16,233,42,236,17,4,0,229,144,93,140,140,215,3,0,230,80,178,173,114,130,2,0,231,80,15,213,19,166,3,0,233,208,156,225,112,176,2,0,236,16,77,76,205,118,3,0,236,16,238,252,173,164,4,0,239,144,176,40,68,48,4,0,240,80,254,54,208,223,3,0,241,16,51,38,110,146,3,0,244,144,251,19,195,164,3,0,247,208,40,64,43,145,3,0,248,16,137,162,164,84,4,0,249,80,166,62,203,2,2,0,250,80,228,57,181,87,4,0,252,144,174,225,164,174,3,0,3,145,182,185,51,140,4,0,5,17,241,197,40,39,3,0,6,209,25,203,166,43,2,0,9,81,182,16,213,116,2,0,9,145,207,224,91,161,4,0,12,209,152,236,133,121,3,0,13,81,30,210,201,192,3,0,15,209,146,9,7,31,2,0,17,145,3,24,5,102,2,0,17,209,3,208,79,89,3,0,22,81,99,72,107,122,2,0,22,81,176,108,9,75,3,0,22,81,113,184,36,91,3,0,23,209,212,2,77,62,2,0,25,209,241,93,2,187,4,0,27,17,137,236,89,141,2,0,29,81,20,180,22,107,2,0,30,209,154,64,204,110,2,0,30,17,181,56,195,166,3,0,35,145,13,254,74,21,2,0,35,81,140,115,5,130,3,0,39,209,40,172,197,61,2,0,43,81,174,76,23,82,3,0,48,81,158,98,219,11,3,0,53,81,116,0,116,90,3,0,56,145,234,173,28,135,3,0,56,209,27,18,68,57,4,0,56,209,139,34,232,99,4,0,58,17,175,116,175,3,3,0,60,81,111,95,250,212,2,0,60,145,64,187,13,226,2,0,64,17,172,164,187,163,2,0,66,81,17,235,208,144,3,0,67,17,141,253,214,10,4,0,70,145,6,106,71,175,2,0,71,81,196,79,98,126,2,0,72,145,182,211,9,137,2,0,73,81,1,183,90,90,2,0,75,209,228,156,102,242,3,0,76,145,167,130,110,128,2,0,80,81,159,79,154,180,4,0,81,145,160,102,20,59,2,0,82,81,5,177,92,28,2,0,90,145,129,83,146,106,4,0,93,209,246,135,174,187,2,0,94,17,31,19,147,164,3,0,95,209,100,65,128,240,2,0,97,81,154,223,164,155,2,0,98,17,80,92,141,15,4,0,98,17,51,227,254,141,4,0,100,209,211,78,178,189,3,0,101,17,215,26,211,39,2,0,102,145,231,50,202,248,3,0,102,81,139,147,53,94,4,0,103,145,58,23,139,49,2,0,104,209,201,19,44,20,4,0,106,209,39,34,134,16,2,0,108,81,177,45,187,175,2,0,109,17,66,21,139,123,2,0,110,209,55,92,59,134,4,0,111,145,94,250,234,156,3,0,113,209,87,28,35,219,3,0,116,17,11,109,86,140,4,0,118,145,203,3,98,125,3,0,120,81,91,72,125,145,2,0,121,145,20,191,224,106,3,0,122,17,193,43,153,204,3,0,123,17,136,14,157,137,4,0,124,209,222,15,140,128,4,0,126,209,229,172,113,114,2,0,126,17,46,159,95,224,3,0,132,17,136,240,69,240,3,0,135,145,169,136,123,5,2,0,135,17,252,153,93,171,3,0,147,81,169,238,250,240,2,0,147,81,36,238,9,246,3,0,149,209,63,127,53,78,4,0,150,145,245,160,57,198,3,0,150,81,97,75,215,81,4,0,150,81,150,252,233,84,4,0,151,81,246,32,234,226,3,0,154,81,0,227,112,88,4,0,157,145,170,131,241,210,2,0,159,81,80,176,134,140,4,0,160,145,80,154,18,137,3,0,164,145,51,162,222,70,2,0,165,17,74,18,133,125,2,0,165,209,229,176,85,108,3,0,165,17,16,164,233,164,4,0,170,17,18,34,202,71,2,0,183,17,64,218,124,190,2,0,183,209,4,236,207,83,3,0,186,145,32,246,87,22,4,0,189,17,204,160,75,45,3,0,198,145,151,123,37,184,2,0,198,145,201,224,132,121,4,0,199,209,174,125,102,13,2,0,199,81,102,184,154,92,3,0,201,209,111,60,104,60,2,0,201,81,119,203,186,107,2,0,203,145,27,9,135,214,2,0,206,209,234,193,243,128,4,0,208,81,235,167,29,163,2,0,215,145,73,78,144,250,2,0,216,17,146,65,238,166,2,0,216,81,95,3,55,106,4,0,225,17,160,6,207,16,2,0,225,17,77,83,211,233,2,0,225,81,61,157,242,16,4,0,226,17,74,9,152,214,2,0,227,17,255,93,254,96,4,0,229,17,226,240,35,69,4,0,234,81,164,73,123,82,3,0,236,81,139,230,234,246,3,0,238,209,248,110,139,138,3,0,238,17,204,196,90,173,3,0,241,17,73,1,26,62,2,0,241,17,104,246,64,126,2,0,241,145,51,184,32,12,3,0,242,209,77,6,33,242,3,0,246,209,89,139,214,27,3,0,248,145,33,246,221,129,4,0,249,145,180,31,78,150,3,0,250,81,149,140,255,1,4,0,252,17,124,129,71,209,2,0,255,81,157,112,165,87,3,0,1,18,94,213,216,190,3,0,4,146,186,171,64,183,2,0,5,210,76,81,97,158,2,0,6,146,104,28,148,46,2,0,6,82,218,228,138,76,4,0,8,82,22,31,8,170,3,0,9,18,55,167,41,154,4,0,12,210,38,103,16,140,2,0,16,82,40,206,243,199,2,0,19,18,37,24,135,154,2,0,22,146,2,65,52,21,2,0,26,82,42,235,99,26,3,0,30,210,89,131,103,86,4,0,31,210,198,184,53,44,3,0,32,146,128,8,111,97,2,0,33,146,89,89,213,243,3,0,40,210,153,223,34,249,2,0,50,146,199,195,215,59,4,0,51,210,193,133,168,238,2,0,52,210,152,223,178,73,3,0,56,82,165,127,151,21,3,0,59,210,127,117,1,86,4,0,60,82,119,16,176,136,2,0,61,18,241,211,155,213,2,0,62,18,189,59,247,20,2,0,65,82,185,97,33,13,2,0,66,18,224,203,227,123,2,0,67,146,12,169,0,43,2,0,67,18,72,88,214,61,2,0,68,210,152,223,17,46,3,0,69,146,55,180,99,234,3,0,72,210,17,54,255,51,3,0,72,82,228,7,118,17,4,0,79,82,214,107,155,63,2,0,81,18,99,201,146,87,3,0,84,18,199,73,22,183,3,0,85,18,155,160,120,64,3,0,89,18,169,172,97,209,2,0,89,146,46,56,111,158,3,0,90,210,34,8,157,166,2,0,93,18,66,79,167,129,2,0,96,146,127,170,166,137,3,0,96,210,145,47,255,125,4,0,98,146,69,71,192,116,2,0,101,146,194,129,159,38,3,0,102,18,207,202,94,49,4,0,103,146,60,139,119,233,3,0,107,18,22,36,33,9,4,0,108,18,143,224,16,232,2,0,111,210,255,126,7,6,2,0,113,210,152,223,25,45,3,0,113,18,233,94,142,217,3,0,114,146,53,193,123,227,2,0,116,18,22,81,251,44,3,0,120,18,57,23,54,65,2,0,122,146,113,224,135,29,3,0,126,82,41,188,119,60,2,0,145,210,208,15,147,23,4,0,146,18,35,66,69,146,3,0,147,82,10,92,227,57,2,0,147,210,66,218,54,198,2,0,148,82,147,203,0,31,3,0,148,18,100,14,52,92,3,0,150,210,149,251,155,205,2,0,157,82,144,147,168,69,2,0,158,146,131,144,80,1,2,0,158,146,171,12,164,93,2,0,158,82,73,113,77,27,3,0,158,146,79,95,239,81,3,0,159,146,95,252,238,47,3,0,165,18,164,167,248,232,3,0,165,82,99,50,126,134,4,0,166,82,121,219,71,252,3,0,169,210,160,243,166,19,2,0,169,146,67,229,81,101,4,0,172,18,180,195,167,225,3,0,180,18,5,226,250,243,2,0,180,210,66,4,123,136,4,0,181,82,48,111,45,22,3,0,181,18,101,27,169,188,3,0,182,210,72,147,224,8,2,0,185,82,248,153,35,21,2,0,185,210,76,81,223,157,2,0,187,146,244,74,222,111,2,0,187,18,154,91,0,74,4,0,188,18,109,251,222,15,2,0,188,210,93,152,180,167,2,0,190,82,156,180,248,204,3,0,190,18,91,208,99,90,4,0,191,82,21,81,127,95,3,0,192,82,11,74,59,31,3,0,193,82,60,138,41,250,3,0,194,18,164,23,186,202,3,0,199,210,128,249,147,9,4,0,201,210,149,125,97,25,2,0,202,18,116,1,214,117,3,0,204,82,89,195,100,85,4,0,205,82,231,150,87,35,2,0,208,210,89,12,71,175,3,0,209,146,128,34,230,21,2,0,211,146,243,237,12,84,2,0,211,146,5,102,200,119,3,0,213,210,129,195,129,149,3,0,214,146,52,248,29,32,3,0,218,146,252,189,199,212,3,0,219,82,215,65,208,208,2,0,221,18,67,238,59,160,3,0,223,18,127,217,245,139,3,0,224,82,114,46,74,107,2,0,227,82,129,24,42,215,2,0,232,210,21,132,4,133,2,0,233,210,206,153,91,31,4,0,234,146,175,83,181,0,3,0,236,18,202,209,36,192,3,0,237,82,12,92,195,28,3,0,238,18,18,109,139,99,2,0,239,82,169,24,101,206,2,0,241,146,190,61,244,96,3,0,242,18,75,116,118,255,2,0,242,146,181,127,112,183,4,0,244,18,40,139,230,189,2,0,245,82,236,180,141,165,4,0,246,18,221,117,185,123,2,0,248,146,48,190,4,195,2,0,249,82,139,25,151,156,2,0,250,82,74,25,159,72,4,0,252,82,115,245,191,238,2,0,252,210,37,167,4,196,3,0,252,146,128,171,71,36,4,0,0,211,203,53,40,214,2,0,2,147,163,100,33,116,2,0,2,147,163,100,53,116,2,0,4,19,242,166,68,165,4,0,5,147,60,116,206,123,4,0,9,147,3,160,212,91,3,0,10,147,168,131,125,166,3,0,13,83,118,226,147,196,3,0,22,19,58,80,44,168,3,0,24,147,75,58,242,194,2,0,25,211,202,87,253,58,2,0,26,83,227,116,97,161,3,0,26,211,135,85,9,80,4,0,26,211,135,85,33,80,4,0,26,211,135,85,69,80,4,0,28,211,25,173,169,214,2,0,28,147,189,164,139,31,3,0,31,147,143,106,102,249,2,0,31,83,255,137,162,201,3,0,32,83,169,210,158,84,3,0,32,83,217,33,152,168,3,0,32,19,61,12,238,171,3,0,36,211,248,158,67,66,2,0,36,83,139,160,164,68,3,0,37,83,35,94,18,41,2,0,38,147,218,174,178,80,2,0,39,83,124,50,72,58,2,0,39,147,65,58,156,141,4,0,40,19,145,239,244,23,2,0,40,19,34,40,242,154,4,0,43,83,235,161,60,135,3,0,44,83,71,192,77,155,2,0,49,19,160,215,137,133,3,0,50,147,25,25,139,197,2,0,57,83,229,64,191,198,3,0,60,211,24,136,180,109,4,0,61,19,20,104,211,41,3,0,61,211,122,128,212,166,4,0,63,19,201,26,133,117,3,0,63,19,196,167,142,194,3,0,68,211,250,90,204,27,2,0,69,19,173,80,250,142,2,0,70,147,225,114,214,197,3,0,71,147,156,42,106,142,4,0,73,147,109,143,220,207,2,0,73,211,84,184,103,173,3,0,74,83,175,121,106,178,4,0,77,147,52,248,251,19,3,0,77,83,102,64,138,163,4,0,78,83,57,143,10,77,4,0,79,83,77,22,109,139,4,0,84,83,93,116,0,248,3,0,89,211,45,87,205,62,3,0,89,19,214,21,169,65,3,0,93,211,212,34,152,121,3,0,93,147,130,73,151,149,3,0,93,147,113,4,101,157,3,0,93,19,219,175,2,70,4,0,96,211,237,98,118,213,3,0,97,211,131,54,70,120,2,0,98,211,64,205,184,146,4,0,102,19,208,210,141,32,2,0,106,147,129,207,57,84,3,0,107,19,108,124,109,180,3,0,108,83,232,128,222,54,2,0,109,147,36,81,81,29,3,0,110,147,94,197,78,95,2,0,111,19,120,28,82,138,2,0,112,83,208,9,95,24,2,0,114,19,97,124,38,113,4,0,115,211,159,16,131,116,3,0,116,211,166,244,123,28,3,0,116,19,116,255,49,107,3,0,116,147,178,9,186,49,4,0,118,83,245,75,115,46,4,0,118,211,49,141,126,164,4,0,119,147,248,194,170,61,2,0,120,147,72,134,46,20,3,0,124,19,215,252,75,17,3,0,125,147,250,215,28,152,4,0,125,19,227,206,184,153,4,0,126,83,236,11,10,178,3,0,128,211,71,167,182,125,2,0,130,83,180,242,166,230,3,0,141,147,124,176,98,211,3,0,142,19,209,183,254,68,4,0,145,83,104,108,197,202,3,0,145,147,42,54,245,19,4,0,149,147,175,218,227,114,2,0,149,211,125,26,149,121,4,0,150,211,228,238,179,143,3,0,154,83,246,221,52,243,2,0,155,211,76,81,135,160,2,0,156,19,238,194,209,205,3,0,161,147,122,102,236,247,3,0,163,83,138,7,50,38,4,0,166,83,40,83,252,21,2,0,169,147,228,144,76,64,4,0,171,19,11,84,90,56,4,0,173,211,149,141,242,10,2,0,174,211,121,167,78,201,3,0,174,19,145,10,73,99,4,0,175,147,48,80,183,11,2,0,176,83,62,68,27,190,3,0,177,83,68,129,71,241,2,0,177,147,40,118,22,226,3,0,178,211,240,184,40,14,4,0,178,211,151,4,4,92,4,0,180,147,29,94,204,110,3,0,181,19,252,103,191,253,2,0,182,19,6,126,58,26,3,0,182,19,124,84,116,161,4,0,183,211,240,251,82,184,2,0,184,211,42,237,116,44,4,0,187,83,74,210,175,185,2,0,187,147,238,182,181,208,2,0,190,19,57,151,194,111,2,0,191,19,41,55,220,79,2,0,191,211,243,97,43,35,3,0,198,83,75,219,238,178,3,0,199,211,19,179,36,68,3,0,202,83,112,113,127,168,3,0,202,147,175,63,80,54,4,0,205,19,178,186,102,12,3,0,206,147,117,124,45,170,3,0,209,19,155,148,230,122,4,0,212,211,113,132,251,252,3,0,213,147,160,45,207,12,2,0,213,211,11,49,114,95,2,0,217,83,109,110,242,43,4,0,220,83,42,116,41,4,2,0,221,211,100,125,143,112,3,0,225,211,70,233,177,240,2,0,229,19,140,222,101,251,2,0,231,83,235,67,26,3,3,0,231,211,211,190,35,99,4,0,239,147,117,242,68,29,4,0,241,211,223,125,154,183,3,0,243,147,185,72,3,48,3,0,245,83,6,92,166,127,3,0,248,83,197,124,192,101,4,0,251,147,51,9,69,66,3,0,252,83,142,243,253,186,2,0,255,83,134,41,130,92,4,0,0,212,200,214,172,118,3,0,0,20,53,219,146,235,3,0,1,148,160,171,136,130,4,0,2,84,218,231,126,30,2,0,2,84,172,223,108,233,2,0,4,84,65,110,194,172,3,0,5,148,207,90,126,156,2,0,5,20,195,150,85,159,3,0,9,84,178,98,213,108,3,0,10,148,203,224,201,149,2,0,17,148,175,12,193,58,4,0,21,20,96,180,58,118,3,0,27,84,43,209,228,178,2,0,28,20,142,84,86,136,2,0,29,148,31,5,47,36,2,0,30,20,57,20,226,167,4,0,32,148,101,89,164,111,4,0,37,148,160,216,187,71,2,0,40,148,25,109,103,46,2,0,40,212,168,81,236,110,4,0,41,84,199,63,120,56,3,0,46,148,145,100,143,148,3,0,49,20,250,96,218,125,4,0,51,148,186,103,154,141,3,0,55,84,3,227,39,60,2,0,57,148,161,41,246,145,3,0,63,20,245,147,203,184,3,0,66,212,225,153,241,83,4,0,67,84,37,34,231,120,2,0,70,84,184,64,205,79,2,0,70,84,199,58,158,233,3,0,72,20,25,111,199,47,3,0,77,84,121,2,236,158,3,0,78,212,141,117,12,82,4,0,79,84,72,210,88,5,4,0,80,148,232,51,95,70,3,0,85,148,168,88,82,72,4,0,87,212,11,22,137,241,2,0,90,20,170,18,117,2,2,0,93,148,76,81,149,189,2,0,98,212,39,220,78,132,4,0,100,84,147,203,102,144,3,0,100,212,63,162,31,191,3,0,100,148,13,130,132,104,4,0,109,212,90,34,137,86,4,0,111,20,65,251,119,20,3,0,112,84,244,190,195,78,3,0,113,20,198,217,190,145,3,0,114,84,68,78,154,178,4,0,118,20,249,32,26,189,2,0,119,84,251,13,80,131,3,0,120,148,149,184,115,111,3,0,120,212,54,180,115,87,4,0,122,84,194,202,173,220,3,0,124,84,44,198,31,33,2,0,126,148,213,228,229,73,3,0,126,148,69,206,42,149,4,0,128,148,242,70,27,43,4,0,129,20,241,94,115,21,3,0,130,148,76,73,195,91,3,0,131,84,110,237,97,166,3,0,133,20,24,81,49,90,3,0,136,20,180,201,244,222,2,0,139,84,98,16,139,11,3,0,140,148,6,19,6,28,3,0,141,148,38,28,96,248,2,0,147,84,48,186,168,48,4,0,148,212,137,30,207,135,2,0,150,84,193,251,154,12,3,0,154,212,86,3,184,5,3,0,154,84,235,121,210,90,3,0,155,20,10,108,95,59,2,0,159,148,223,149,248,93,2,0,161,84,113,76,93,51,4,0,162,20,186,101,169,9,4,0,164,148,75,58,52,195,2,0,165,212,111,172,21,217,3,0,166,84,91,199,236,137,2,0,169,84,119,127,30,149,4,0,170,148,39,35,247,32,3,0,171,84,10,227,94,26,2,0,171,148,130,100,27,113,2,0,172,20,131,163,215,38,4,0,173,148,222,152,85,217,2,0,177,212,24,41,2,106,2,0,177,20,52,202,18,71,3,0,178,84,190,197,194,114,2,0,178,20,6,171,242,199,3,0,179,212,240,27,224,40,2,0,179,212,240,115,52,76,2,0,180,20,112,238,246,83,2,0,183,84,235,212,213,96,2,0,186,84,22,18,149,160,2,0,188,212,66,105,198,28,4,0,189,148,28,192,236,101,2,0,190,20,87,3,167,5,3,0,193,20,24,81,4,90,3,0,193,148,199,196,185,173,3,0,197,20,15,51,147,181,3,0,199,84,174,151,104,95,3,0,200,20,140,170,255,154,2,0,200,148,23,192,64,171,2,0,200,84,191,228,218,26,3,0,203,148,156,122,209,106,3,0,203,20,76,11,30,164,3,0,205,84,119,118,126,248,2,0,206,212,121,25,87,152,3,0,207,148,144,28,4,1,4,0,209,212,224,186,19,145,3,0,210,148,26,244,145,160,3,0,211,84,66,85,29,36,2,0,212,20,197,64,69,99,2,0,216,84,206,40,74,92,3,0,217,148,121,238,32,110,2,0,223,148,238,182,237,208,2,0,227,84,134,130,29,164,4,0,230,212,116,172,5,12,4,0,234,212,24,81,140,105,3,0,240,20,187,238,231,113,3,0,244,20,44,157,192,178,4,0,245,84,15,62,45,192,2,0,247,20,156,22,98,69,2,0,252,212,92,232,135,173,4,0,254,84,93,92,169,5,4,0,1,213,52,250,39,9,2,0,2,85,192,21,132,140,3,0,4,21,15,22,219,157,3,0,9,85,119,137,246,229,3,0,10,21,86,127,170,224,3,0,15,149,4,230,26,234,3,0,18,149,229,70,110,111,2,0,18,213,57,46,255,230,3,0,18,149,145,68,172,178,4,0,20,213,153,144,197,95,2,0,21,213,77,70,238,161,3,0,21,21,203,239,50,195,3,0,24,213,86,67,129,95,2,0,26,85,76,70,159,219,3,0,27,149,59,184,137,59,3,0,27,149,227,22,118,156,3,0,29,85,120,165,76,113,2,0,29,85,120,165,99,113,2,0,29,149,230,212,68,66,4,0,30,149,25,9,37,30,4,0,34,149,33,18,120,67,3,0,37,85,43,222,15,87,4,0,40,21,161,141,29,216,2,0,42,149,220,15,78,90,4,0,49,21,72,68,30,56,3,0,50,149,123,148,99,187,3,0,51,149,143,47,226,126,3,0,51,21,200,221,223,96,4,0,57,21,63,194,53,72,2,0,57,85,22,61,227,29,4,0,58,21,3,241,240,116,3,0,59,85,1,191,105,103,2,0,60,21,29,219,66,167,4,0,61,85,217,120,135,163,3,0,61,21,140,24,231,74,4,0,65,213,20,209,5,183,4,0,67,149,167,181,144,67,4,0,69,213,58,12,34,185,2,0,69,21,0,64,91,71,4,0,71,149,98,201,137,38,4,0,73,21,24,81,18,90,3,0,74,213,72,11,243,117,4,0,80,21,200,221,42,35,2,0,80,21,17,175,21,21,3,0,81,149,199,160,186,2,2,0,82,21,160,226,44,164,4,0,85,149,213,56,7,20,3,0,88,213,217,0,160,31,3,0,94,21,91,141,179,109,3,0,94,21,117,178,92,119,4,0,99,21,38,81,13,35,3,0,100,213,218,224,37,156,3,0,104,21,227,133,173,170,3,0,105,213,76,155,249,17,4,0,108,213,82,70,8,224,3,0,120,149,119,97,122,79,4,0,124,85,60,209,58,42,3,0,126,213,252,120,35,132,3,0,133,149,193,238,54,192,3,0,135,21,74,108,72,50,2,0,135,213,226,235,6,97,3,0,137,149,67,179,184,17,4,0,138,213,44,243,30,137,3,0,139,149,255,144,56,211,3,0,140,149,232,242,216,140,4,0,141,21,94,132,231,176,4,0,142,85,89,8,33,11,2,0,152,21,208,105,226,245,3,0,155,21,26,3,116,104,2,0,158,85,69,237,84,62,4,0,160,85,2,188,187,148,4,0,162,21,29,48,110,74,3,0,163,21,203,2,202,37,2,0,163,21,203,2,219,37,2,0,163,21,203,2,243,37,2,0,163,149,76,42,143,123,3,0,163,21,203,2,170,183,4,0,163,21,203,2,185,183,4,0,169,213,25,110,11,143,2,0,169,213,109,243,74,186,3,0,172,213,162,47,173,179,4,0,173,21,108,182,48,32,4,0,173,85,3,184,140,78,4,0,175,85,1,129,88,44,3,0,177,213,43,165,12,135,3,0,177,85,236,105,108,50,4,0,177,149,127,72,24,74,4,0,177,213,235,188,100,163,4,0,178,85,98,79,44,244,3,0,179,213,127,154,10,19,3,0,181,213,175,218,252,25,4,0,181,213,175,218,38,26,4,0,181,213,175,218,93,26,4,0,181,213,175,218,138,26,4,0,181,213,175,218,178,26,4,0,181,213,175,218,225,26,4,0,181,213,175,218,17,27,4,0,181,213,175,218,53,27,4,0,181,213,175,218,93,27,4,0,181,213,175,218,136,27,4,0,181,213,175,218,171,27,4,0,182,21,137,168,29,12,2,0,183,213,196,35,170,219,3,0,186,85,150,160,192,56,3,0,191,213,54,245,224,62,2,0,191,149,252,103,103,238,2,0,192,149,179,124,247,90,4,0,193,213,214,58,51,212,3,0,195,85,204,86,200,219,2,0,196,149,38,28,98,186,3,0,198,213,154,255,12,221,2,0,198,213,200,195,181,177,3,0,198,213,238,2,18,20,4,0,200,85,3,199,94,209,3,0,210,21,128,143,62,101,4,0,212,213,127,133,214,247,2,0,213,149,113,109,8,74,2,0,213,149,142,243,24,169,2,0,217,21,2,114,118,234,2,0,218,21,36,253,23,11,3,0,223,85,167,246,68,235,3,0,224,213,45,248,112,87,2,0,225,213,205,26,42,220,3,0,226,213,202,78,135,13,2,0,227,213,149,227,5,186,4,0,230,149,111,235,230,234,2,0,232,21,121,171,185,180,4,0,233,149,87,0,83,86,4,0,236,213,178,87,36,93,2,0,236,213,40,229,97,15,3,0,236,21,115,54,255,62,4,0,243,149,203,160,222,45,3,0,246,85,23,187,129,217,2,0,250,213,143,178,54,216,3,0,251,149,205,116,184,16,2,0,252,213,171,201,96,171,2,0,252,149,135,90,193,65,3,0,255,21,108,51,237,163,3,0,3,22,48,158,131,128,2,0,3,150,8,216,60,167,2,0,5,86,77,65,151,64,2,0,5,150,141,93,146,178,3,0,10,150,225,226,182,54,2,0,11,86,131,53,147,48,3,0,13,214,116,45,40,103,2,0,14,22,160,63,191,101,2,0,14,22,214,38,156,175,3,0,16,150,54,118,50,91,2,0,19,86,245,150,215,126,4,0,22,22,23,211,36,34,4,0,26,86,89,171,179,78,3,0,29,22,231,49,214,142,2,0,34,214,214,127,189,17,3,0,37,22,233,158,36,217,2,0,37,22,149,250,205,132,3,0,38,22,189,206,33,25,2,0,38,22,16,146,234,243,3,0,42,22,62,99,242,209,3,0,45,214,191,59,173,124,3,0,49,150,47,18,51,24,2,0,49,22,218,243,140,24,2,0,49,86,33,15,168,97,4,0,49,150,148,167,147,159,4,0,51,150,244,106,97,150,3,0,54,214,242,238,163,55,4,0,56,86,187,128,208,245,3,0,57,150,57,166,154,104,4,0,60,150,39,143,211,188,2,0,64,214,208,16,218,42,4,0,76,150,158,172,21,206,2,0,79,22,211,7,108,24,2,0,79,22,173,184,231,41,3,0,84,214,183,213,122,148,3,0,86,22,148,71,208,55,3,0,87,86,129,171,188,214,2,0,89,214,201,226,174,1,2,0,90,150,52,248,160,250,2,0,91,150,31,99,88,141,4,0,92,214,57,74,15,186,4,0,94,214,246,83,177,157,3,0,98,22,23,194,203,230,2,0,99,22,212,96,219,93,4,0,101,22,86,187,162,47,3,0,104,22,67,113,125,221,3,0,105,22,110,152,251,77,3,0,106,214,153,223,13,238,2,0,107,22,16,32,145,107,3,0,109,22,206,21,14,244,2,0,111,86,76,85,9,150,3,0,111,214,229,23,246,14,4,0,114,86,95,113,240,240,3,0,117,150,157,11,234,97,3,0,119,22,152,92,236,46,4,0,121,86,37,211,104,81,2,0,122,150,205,170,175,61,4,0,125,22,183,216,28,13,4,0,130,214,6,242,98,224,2,0,132,22,53,237,157,135,2,0,133,86,109,252,146,14,3,0,136,214,27,115,60,218,3,0,138,214,96,108,36,83,3,0,138,22,23,92,141,93,4,0,138,214,215,154,82,170,4,0,139,22,10,206,245,82,3,0,139,86,56,222,253,84,3,0,144,22,197,112,108,17,3,0,144,214,121,135,12,138,4,0,150,86,18,204,72,148,4,0,151,22,110,105,108,239,2,0,156,22,64,155,213,227,3,0,157,22,72,191,139,239,3,0,159,150,23,195,98,211,2,0,159,22,133,24,90,145,4,0,160,150,235,49,221,130,3,0,168,150,247,155,120,190,3,0,172,150,52,248,72,248,2,0,174,86,41,20,96,45,2,0,174,86,202,252,39,7,3,0,174,150,12,20,253,144,4,0,175,150,41,188,196,215,3,0,179,214,36,11,248,6,3,0,183,150,52,248,84,248,2,0,183,86,20,37,59,40,3,0,187,150,243,32,173,236,3,0,191,214,46,215,64,108,4,0,193,86,60,227,104,188,3,0,194,22,203,110,16,210,2,0,195,214,176,196,163,4,4,0,200,22,154,202,191,188,3,0,211,22,64,151,5,109,2,0,211,86,191,181,22,116,3,0,212,86,39,24,118,99,2,0,214,86,95,201,139,77,3,0,215,214,24,223,123,168,2,0,216,150,144,29,180,37,2,0,217,22,15,96,194,29,2,0,220,150,167,192,132,182,2,0,220,86,153,131,99,200,2,0,220,22,220,187,211,154,3,0,222,214,32,132,144,126,2,0,225,150,242,66,17,158,4,0,232,150,117,243,106,225,2,0,240,150,142,189,110,68,2,0,240,214,73,70,114,221,3,0,240,86,49,93,161,175,4,0,242,22,221,69,234,8,4,0,243,150,173,199,243,182,3,0,244,22,17,5,189,124,4,0,247,150,60,218,218,150,3,0,247,214,32,97,24,51,4,0,250,86,6,168,196,4,3,0,251,86,62,192,126,52,2,0,252,86,94,215,103,21,2,0,252,86,245,108,73,196,2,0,1,151,234,214,122,179,2,0,4,215,132,54,181,226,3,0,8,151,94,205,36,72,4,0,8,87,78,1,89,82,4,0,10,151,49,107,73,154,3,0,10,151,60,62,99,238,3,0,12,151,253,154,11,186,3,0,17,151,71,208,201,88,2,0,17,87,18,192,33,194,2,0,18,151,156,124,19,4,2,0,18,151,52,248,96,239,2,0,19,215,181,148,62,125,2,0,22,23,99,160,0,60,3,0,23,87,164,155,180,7,2,0,23,87,182,176,2,16,3,0,25,151,3,90,160,24,3,0,27,215,247,201,5,51,4,0,31,23,223,6,116,120,2,0,31,151,9,113,152,111,3,0,33,23,147,86,167,2,4,0,33,151,210,138,215,86,4,0,34,151,33,15,108,74,2,0,34,151,33,15,122,74,2,0,39,87,40,194,219,230,2,0,43,87,10,239,93,57,4,0,44,215,80,5,81,42,3,0,46,23,44,167,202,82,2,0,46,23,209,46,96,99,4,0,52,23,129,176,156,211,3,0,61,87,27,224,246,4,4,0,62,23,59,38,36,26,3,0,63,215,91,43,176,198,3,0,64,87,239,249,70,115,3,0,65,87,11,173,145,220,2,0,66,23,167,153,45,201,3,0,73,151,134,121,72,65,3,0,80,151,2,242,151,42,4,0,81,87,99,30,83,189,2,0,84,215,99,140,209,82,3,0,84,87,198,201,97,102,4,0,92,151,139,206,178,97,3,0,96,151,28,139,76,14,2,0,98,87,81,243,96,65,4,0,99,215,133,231,19,124,3,0,99,87,227,173,199,161,4,0,101,87,14,139,177,66,3,0,104,151,52,248,132,243,2,0,104,87,30,43,86,193,3,0,107,215,24,212,10,59,3,0,112,87,25,110,72,42,2,0,112,23,237,17,83,30,4,0,113,87,29,86,141,82,3,0,116,215,249,42,109,7,4,0,119,151,100,139,82,183,2,0,125,87,74,63,192,81,4,0,126,215,85,180,150,140,3,0,128,87,110,136,113,236,3,0,130,215,174,40,207,234,2,0,131,151,193,29,45,73,2,0,134,23,52,112,201,187,2,0,135,215,65,188,114,170,2,0,136,87,164,103,193,7,3,0,136,151,24,235,174,206,3,0,137,23,30,248,88,96,3,0,138,87,124,184,48,89,3,0,139,23,119,186,157,189,3,0,147,215,182,62,87,251,3,0,148,151,33,122,246,79,2,0,149,151,228,250,165,151,4,0,150,215,64,196,214,119,3,0,152,151,167,161,151,81,4,0,157,151,171,203,16,134,2,0,159,87,124,190,219,46,3,0,161,87,192,19,182,108,2,0,163,87,25,3,234,143,4,0,164,87,131,148,200,148,4,0,168,151,244,36,255,139,4,0,169,23,220,95,42,130,2,0,171,215,218,212,104,13,4,0,177,23,192,176,249,72,2,0,192,151,201,112,149,117,3,0,192,151,217,197,39,238,3,0,193,87,143,99,137,132,2,0,193,23,239,91,48,96,4,0,196,215,139,160,56,65,3,0,197,87,140,91,222,123,3,0,197,215,233,29,32,194,3,0,197,151,229,64,52,52,4,0,198,215,39,149,8,129,4,0,200,87,177,45,63,176,2,0,204,151,37,67,66,205,3,0,205,151,54,2,94,94,3,0,205,151,38,51,231,55,4,0,210,151,54,96,251,146,3,0,211,87,228,229,127,148,2,0,214,87,167,233,71,219,2,0,214,87,152,137,104,79,4,0,217,87,67,208,16,104,3,0,217,151,59,20,58,171,3,0,221,215,229,5,234,172,3,0,225,23,209,250,180,120,4,0,228,87,103,212,6,185,2,0,228,215,123,98,123,212,2,0,228,151,178,191,234,68,3,0,231,87,37,37,32,227,2,0,231,151,14,240,157,227,2,0,232,215,188,194,154,192,3,0,233,151,44,52,222,67,3,0,238,151,219,105,60,9,3,0,238,151,86,130,11,72,4,0,239,215,154,49,64,206,3,0,241,87,235,190,241,125,3,0,241,151,12,28,208,165,4,0,242,215,51,84,214,37,4,0,243,215,131,97,139,150,2,0,246,23,167,103,46,139,4,0,247,151,7,197,188,48,3,0,248,151,2,3,143,96,2,0,249,215,181,25,87,155,3,0,250,215,218,182,30,153,2,0,251,87,229,126,36,181,4,0,252,151,227,189,155,237,3,0,253,151,54,136,91,172,2,0,254,23,190,15,191,227,3,0,3,24,62,159,155,37,4,0,5,152,141,99,150,13,2,0,6,24,35,112,1,87,4,0,12,152,173,19,92,36,3,0,15,152,58,66,69,99,3,0,21,88,80,245,90,193,2,0,21,152,158,128,221,63,4,0,23,216,116,122,206,25,2,0,23,24,177,174,116,36,2,0,26,88,123,74,241,61,4,0,37,216,200,183,77,7,2,0,37,24,100,183,90,86,3,0,40,152,218,178,219,232,3,0,41,88,127,138,52,42,2,0,44,24,157,179,251,189,2,0,45,216,26,12,6,141,2,0,45,88,77,244,54,90,4,0,47,216,107,68,207,109,2,0,55,24,114,227,159,128,2,0,55,216,153,223,91,243,2,0,66,152,25,11,28,229,3,0,69,88,110,155,118,38,3,0,70,88,223,149,15,185,3,0,70,88,131,121,31,135,4,0,73,152,4,54,147,30,4,0,76,152,182,155,55,85,4,0,82,88,34,56,253,215,3,0,84,152,99,163,48,46,3,0,84,216,75,127,63,108,3,0,90,88,158,253,78,128,3,0,91,152,108,208,66,127,2,0,94,24,223,66,121,54,2,0,94,24,105,184,235,91,3,0,94,216,16,46,163,250,3,0,95,152,114,156,234,189,3,0,96,216,148,149,155,133,3,0,99,88,42,15,112,127,2,0,103,216,248,66,111,177,3,0,113,216,108,253,12,61,2,0,117,152,203,17,104,172,4,0,120,24,239,185,221,58,4,0,122,152,4,195,20,212,2,0,122,216,123,184,51,87,3,0,125,88,183,84,220,253,3,0,127,88,237,156,63,171,4,0,130,88,209,47,206,93,4,0,136,216,200,183,57,7,2,0,139,88,25,15,115,107,3,0,141,88,183,165,241,44,4,0,142,24,49,51,194,83,2,0,143,88,204,168,182,50,2,0,144,88,151,73,6,113,2,0,145,152,153,223,131,4,3,0,148,24,8,49,31,242,2,0,150,88,222,61,59,223,2,0,150,216,125,67,41,15,3,0,150,88,61,198,199,175,4,0,154,88,10,8,176,128,4,0,154,24,58,158,40,182,4,0,158,88,28,180,8,232,3,0,159,216,123,3,33,235,2,0,159,152,73,103,97,167,3,0,161,152,191,57,15,112,2,0,161,88,130,205,182,132,2,0,161,152,239,22,159,98,3,0,161,24,148,48,29,121,3,0,162,216,35,145,185,153,2,0,163,88,94,202,19,153,4,0,163,24,48,91,106,175,4,0,164,216,153,102,41,60,3,0,167,24,137,13,14,153,3,0,169,88,250,94,234,193,2,0,170,152,138,219,191,6,2,0,171,88,119,226,240,10,4,0,175,24,27,226,22,134,3,0,176,152,129,192,54,186,4,0,176,152,129,192,94,186,4,0,177,88,76,250,151,69,2,0,179,216,124,209,115,133,3,0,179,88,117,96,142,246,3,0,183,88,205,154,244,11,2,0,184,88,136,185,170,48,2,0,191,24,37,32,156,126,4,0,197,24,115,57,168,170,2,0,204,88,210,199,132,175,3,0,204,24,163,213,91,95,4,0,207,88,180,38,148,95,2,0,210,216,80,201,116,211,3,0,213,152,254,125,186,132,4,0,215,24,53,120,5,15,3,0,216,152,182,65,167,161,4,0,217,152,255,243,239,11,4,0,219,216,112,37,161,52,2,0,219,88,30,1,39,64,2,0,220,24,24,242,160,53,3,0,220,24,51,111,2,11,4,0,226,152,113,52,31,93,4,0,230,24,250,74,95,123,3,0,231,216,222,45,92,115,4,0,233,152,149,23,131,97,2,0,234,24,2,223,2,44,3,0,240,216,76,75,206,186,2,0,240,24,22,129,218,223,2,0,240,216,244,139,72,135,3,0,241,152,24,232,141,136,4,0,246,152,160,113,74,223,3,0,246,152,248,248,21,245,3,0,249,88,232,35,227,119,3,0,252,152,6,160,85,117,2,0,255,24,70,58,2,72,2,0,0,153,67,44,23,236,3,0,1,25,166,195,91,92,3,0,2,25,188,186,14,18,3,0,8,217,28,162,119,63,4,0,11,217,241,34,221,158,3,0,13,153,146,12,41,49,4,0,14,217,57,184,78,82,2,0,14,217,133,144,24,240,2,0,14,153,59,99,79,24,4,0,15,25,247,150,4,206,3,0,17,89,212,25,223,54,4,0,22,217,203,60,78,84,4,0,27,25,33,9,113,115,3,0,33,217,241,16,73,76,2,0,35,217,120,184,34,136,2,0,35,89,185,77,51,178,4,0,37,153,87,77,89,158,3,0,38,153,238,89,146,255,2,0,39,25,110,105,124,239,2,0,39,89,182,77,27,9,3,0,40,217,128,251,47,206,3,0,46,89,31,137,19,114,3,0,48,25,227,143,136,20,2,0,52,89,158,188,86,251,2,0,56,89,220,149,250,161,4,0,59,153,93,181,77,224,3,0,66,25,221,123,175,229,2,0,66,25,101,186,61,32,3,0,67,153,200,149,214,220,2,0,69,153,121,126,50,109,4,0,70,89,237,2,60,230,2,0,72,153,106,46,111,16,2,0,80,89,28,126,130,120,3,0,82,25,69,210,139,54,4,0,84,153,225,152,240,215,2,0,84,153,103,52,50,253,2,0,85,25,230,248,26,220,3,0,88,25,111,16,239,9,4,0,89,89,12,222,163,193,3,0,95,89,191,203,74,62,3,0,95,153,109,157,30,38,4,0,98,89,164,155,97,7,2,0,99,25,134,206,226,174,2,0,100,25,2,119,153,105,2,0,102,217,222,143,167,102,3,0,103,89,76,158,216,239,2,0,106,153,102,155,134,12,3,0,111,217,239,187,123,5,3,0,113,25,105,28,140,67,3,0,117,153,119,169,28,38,3,0,117,217,151,75,81,81,3,0,118,25,91,61,156,61,4,0,121,25,196,100,216,230,3,0,123,153,44,29,172,107,2,0,128,153,249,104,121,151,2,0,129,153,56,59,197,47,2,0,129,25,41,113,228,104,2,0,130,89,243,150,184,165,4,0,131,217,125,164,189,98,2,0,141,25,244,56,150,162,2,0,141,25,40,64,183,60,3,0,141,217,213,13,248,181,3,0,142,217,226,138,183,110,3,0,143,217,252,214,68,209,3,0,146,153,84,149,127,249,3,0,148,89,161,81,140,129,2,0,150,217,26,177,53,216,2,0,151,153,109,26,47,157,4,0,152,153,176,53,71,157,4,0,153,153,159,93,102,4,3,0,155,89,206,54,194,181,4,0,157,153,3,139,91,17,3,0,158,217,153,223,197,240,2,0,162,153,133,232,134,176,3,0,165,89,248,253,153,177,4,0,169,89,87,59,86,15,2,0,169,153,204,68,60,224,2,0,169,25,156,93,213,100,4,0,170,89,158,185,161,247,3,0,171,217,46,197,235,59,2,0,173,153,120,130,227,36,2,0,174,25,199,183,192,207,3,0,176,153,115,200,178,255,2,0,176,89,65,43,87,21,4,0,177,153,56,93,250,129,2,0,178,153,69,233,41,112,2,0,178,89,237,134,2,131,2,0,181,153,136,242,167,106,4,0,184,153,12,177,252,111,2,0,184,89,214,176,34,103,3,0,186,25,76,250,68,27,2,0,188,89,109,209,189,4,2,0,189,89,185,147,29,37,2,0,189,89,85,71,106,125,4,0,190,153,202,35,113,102,2,0,190,153,9,171,252,181,2,0,191,25,1,165,214,140,2,0,191,217,236,144,216,65,3,0,192,89,116,175,255,162,2,0,198,217,122,77,237,157,2,0,198,89,166,125,116,142,3,0,201,89,201,100,93,114,4,0,202,89,223,144,49,173,4,0,204,217,207,169,179,116,2,0,206,89,131,118,207,93,3,0,206,89,249,130,185,246,3,0,207,25,57,66,138,252,2,0,211,153,234,231,142,84,4,0,217,25,160,0,225,145,3,0,220,153,224,152,115,215,2,0,221,153,162,116,146,70,2,0,223,153,59,132,79,20,3,0,224,153,211,75,140,75,2,0,224,25,124,184,232,85,3,0,224,217,216,187,16,198,3,0,231,25,148,115,188,219,3,0,236,153,171,107,85,49,3,0,236,89,138,95,235,2,4,0,238,25,82,246,67,74,3,0,243,153,217,45,207,63,2,0,244,153,52,186,161,51,2,0,245,25,145,16,177,124,2,0,247,217,189,105,67,83,4,0,250,153,60,217,153,153,2,0,251,25,238,217,87,41,4,0,252,89,97,231,158,90,3,0,253,153,110,119,196,116,4,0,5,154,82,2,126,229,3,0,6,26,85,82,191,191,3,0,8,218,203,224,40,116,3,0,8,26,3,218,237,15,4,0,11,218,139,78,96,58,3,0,11,218,249,91,183,155,3,0,11,90,51,158,113,161,3,0,12,218,200,172,198,81,3,0,15,218,48,95,133,134,2,0,16,90,227,217,57,48,3,0,16,218,3,21,152,125,3,0,17,90,21,188,162,79,2,0,17,218,198,95,45,140,3,0,20,26,4,91,22,147,4,0,22,26,90,253,178,22,3,0,26,154,87,255,82,149,4,0,27,154,144,45,152,71,2,0,27,218,151,178,84,40,4,0,29,90,129,52,61,103,3,0,34,90,59,234,177,40,4,0,35,90,221,128,191,25,4,0,36,218,185,163,141,28,4,0,38,26,40,167,114,92,3,0,38,26,185,176,254,226,3,0,38,218,199,56,225,171,4,0,38,218,115,196,66,188,4,0,40,26,7,244,152,103,2,0,40,26,7,173,232,185,2,0,41,26,189,185,48,61,2,0,42,90,200,114,147,34,2,0,47,90,213,205,253,249,3,0,52,90,159,218,42,77,4,0,54,154,52,248,48,194,2,0,56,218,210,17,131,17,3,0,56,90,22,81,138,71,3,0,56,90,72,10,114,120,4,0,57,218,201,237,173,177,4,0,59,90,90,185,234,7,4,0,64,154,192,64,230,44,4,0,65,154,160,46,232,152,4,0,68,218,244,181,192,173,4,0,70,26,148,126,157,49,2,0,71,26,164,244,159,67,3,0,71,26,19,225,166,132,3,0,74,218,26,177,165,215,2,0,77,26,250,144,36,98,4,0,84,154,164,155,74,16,2,0,86,90,141,190,21,102,4,0,88,154,212,203,90,94,4,0,90,218,106,38,133,161,4,0,92,154,151,152,178,242,3,0,92,26,195,48,112,148,4,0,93,90,22,81,209,70,3,0,94,90,5,179,60,152,3,0,99,154,33,15,113,134,2,0,100,218,180,159,218,115,4,0,101,90,22,81,81,70,3,0,102,90,50,70,65,92,4,0,103,90,90,29,85,192,2,0,103,26,41,199,164,70,3,0,104,26,181,153,139,41,4,0,106,90,14,212,217,249,3,0,107,154,52,248,177,155,2,0,107,90,255,9,81,128,4,0,109,218,3,206,17,136,3,0,111,90,184,78,38,59,3,0,114,218,180,144,242,160,4,0,116,154,164,155,61,16,2,0,118,90,200,114,166,34,2,0,122,218,207,46,30,152,2,0,123,154,146,92,197,64,4,0,124,26,180,195,127,188,2,0,124,218,86,111,51,61,4,0,125,154,233,177,153,56,2,0,130,218,217,68,144,190,2,0,130,218,240,64,252,80,4,0,136,90,65,120,63,236,3,0,137,26,30,55,88,74,3,0,138,90,218,1,181,94,4,0,140,154,247,58,186,62,3,0,141,26,21,204,162,209,3,0,145,154,35,248,249,176,4,0,146,218,105,184,123,250,3,0,147,26,238,209,237,203,3,0,150,218,6,68,91,27,2,0,161,90,50,230,104,165,4,0,163,26,161,215,23,44,2,0,163,218,66,36,31,57,2,0,164,218,219,167,243,198,2,0,165,90,40,154,95,190,2,0,167,90,29,205,198,51,3,0,168,218,167,237,30,46,4,0,169,218,160,85,0,214,3,0,172,90,186,160,48,127,2,0,173,90,157,84,85,226,3,0,182,218,12,48,131,232,3,0,182,26,35,210,195,33,4,0,186,154,139,104,56,184,2,0,187,154,20,186,15,136,2,0,187,90,204,3,195,147,4,0,189,90,122,3,0,82,2,0,194,154,44,147,215,67,4,0,195,90,98,207,252,218,2,0,197,90,204,240,53,62,4,0,198,154,53,95,82,33,4,0,199,26,224,16,69,218,2,0,199,26,159,119,6,241,3,0,199,90,104,120,240,0,4,0,203,90,138,63,137,92,2,0,204,90,9,146,224,152,2,0,204,154,165,64,195,241,3,0,207,218,235,76,63,169,3,0,208,154,226,43,55,96,2,0,209,154,56,151,198,125,4,0,212,154,156,79,104,129,2,0,214,218,36,121,172,207,3,0,215,218,83,26,212,180,3,0,216,90,132,86,34,70,2,0,218,218,149,24,6,216,2,0,218,218,135,0,235,18,3,0,229,218,153,223,151,242,2,0,232,218,4,183,239,51,4,0,233,154,96,100,146,200,2,0,236,218,147,41,122,65,3,0,237,26,108,186,198,22,2,0,243,26,231,85,36,91,4,0,244,218,95,73,73,207,3,0,245,26,141,252,134,81,4,0,245,90,194,19,248,129,4,0,247,26,5,74,86,187,2,0,249,26,79,115,143,224,3,0,249,90,45,20,103,76,4,0,251,218,196,9,146,64,3,0,252,26,59,184,116,69,3,0,252,26,191,236,248,147,3,0,254,218,66,216,156,24,4,0,3,155,246,10,50,0,4,0,3,155,242,164,175,20,4,0,4,219,28,162,95,63,4,0,5,27,31,254,223,122,2,0,6,155,20,15,217,186,3,0,6,27,140,83,82,126,4,0,10,219,174,108,104,154,4,0,11,155,107,225,196,21,3,0,14,155,63,223,184,141,2,0,14,27,99,121,114,153,2,0,15,219,65,122,25,251,2,0,17,155,249,182,131,38,2,0,18,219,206,47,42,69,2,0,18,219,195,239,236,227,2,0,18,91,208,42,123,206,3,0,22,27,235,97,192,248,2,0,32,91,26,102,235,49,2,0,36,91,55,227,133,64,2,0,38,155,24,7,73,36,2,0,48,27,26,249,117,55,4,0,51,219,138,182,83,51,4,0,51,91,149,243,202,167,4,0,52,91,158,153,35,109,2,0,54,91,142,105,185,167,4,0,55,91,200,45,194,120,4,0,56,27,99,223,89,43,4,0,62,91,89,27,219,203,3,0,63,91,53,230,107,226,3,0,65,27,139,224,148,134,3,0,67,219,23,228,31,173,4,0,71,91,242,143,239,132,3,0,72,155,235,78,5,175,2,0,76,155,32,68,29,115,3,0,78,219,244,198,11,234,2,0,84,91,76,81,68,225,2,0,85,91,170,41,52,155,3,0,86,91,107,10,155,203,2,0,87,91,45,189,66,15,2,0,91,27,179,122,131,124,3,0,95,155,107,198,223,123,4,0,99,91,253,58,101,39,4,0,100,219,62,113,226,89,3,0,100,91,175,129,23,157,4,0,102,27,155,64,146,202,2,0,102,27,64,127,54,188,3,0,103,219,93,179,17,134,4,0,106,219,174,227,59,52,2,0,110,91,164,155,167,7,2,0,110,91,17,106,35,106,3,0,113,219,213,230,125,188,3,0,115,219,138,116,197,61,4,0,117,219,211,236,125,88,4,0,119,155,195,4,212,21,2,0,119,27,13,162,251,221,2,0,122,27,4,20,152,126,3,0,122,219,230,73,192,143,4,0,124,155,141,51,246,123,3,0,125,219,55,239,65,117,3,0,128,155,75,234,178,108,4,0,132,27,162,6,232,212,2,0,132,219,101,173,84,146,4,0,133,219,2,106,112,240,2,0,140,219,134,53,201,111,3,0,140,155,165,212,5,153,4,0,142,219,153,223,251,242,2,0,149,219,45,150,53,146,3,0,149,91,81,190,171,248,3,0,152,91,71,64,195,154,2,0,154,219,235,168,243,195,3,0,155,155,226,81,52,13,4,0,157,155,101,219,113,181,3,0,164,155,242,55,96,61,2,0,164,155,116,238,125,149,4,0,168,155,33,15,228,117,2,0,170,219,74,219,89,233,3,0,180,219,61,185,25,39,3,0,183,219,204,180,228,42,3,0,184,155,31,147,196,108,2,0,185,91,186,39,179,35,3,0,186,219,153,223,164,242,2,0,194,91,100,55,231,67,2,0,195,27,103,234,134,113,2,0,196,155,18,58,7,122,2,0,196,155,139,95,210,84,3,0,196,155,106,63,80,103,3,0,196,27,1,102,32,139,3,0,196,219,134,106,189,161,3,0,197,91,81,141,53,146,2,0,198,27,148,165,242,245,2,0,198,219,152,223,182,91,3,0,203,219,148,172,151,107,2,0,204,91,46,190,174,168,3,0,205,27,46,128,136,48,4,0,206,27,166,119,180,8,2,0,208,27,178,96,175,133,2,0,216,91,30,206,18,65,2,0,219,27,113,66,191,133,4,0,222,27,75,184,163,108,2,0,224,219,107,7,175,197,2,0,224,27,27,95,213,229,3,0,227,27,15,211,142,116,4,0,229,91,164,24,210,107,4,0,232,155,67,198,49,54,2,0,236,219,113,244,75,91,2,0,237,27,55,162,207,15,3,0,238,219,81,222,73,119,3,0,238,27,159,128,114,85,4,0,240,27,131,53,129,49,3,0,245,155,200,46,85,243,3,0,248,27,114,13,240,196,2,0,251,91,208,46,142,152,2,0,0,28,142,131,98,36,2,0,1,28,188,77,39,245,3,0,1,220,162,245,108,69,4,0,6,92,247,170,156,125,2,0,7,156,221,56,38,84,3,0,7,220,14,29,94,113,3,0,17,28,77,193,149,11,4,0,19,156,232,17,36,229,2,0,19,156,255,58,53,224,3,0,22,28,150,17,41,82,3,0,23,92,74,152,112,8,4,0,27,92,37,159,43,3,2,0,27,220,29,167,107,118,2,0,29,28,203,248,59,183,4,0,31,156,167,18,151,30,2,0,31,156,44,81,164,7,3,0,37,28,174,121,17,173,2,0,37,92,22,81,144,56,3,0,37,220,245,102,73,156,4,0,38,92,192,178,23,46,2,0,38,92,172,208,120,109,2,0,40,92,227,192,142,30,3,0,45,92,67,200,28,19,2,0,45,92,148,172,74,203,3,0,46,92,6,112,86,13,3,0,50,28,104,182,121,231,2,0,52,28,132,224,54,177,3,0,53,92,72,28,34,43,3,0,54,92,244,225,129,76,3,0,54,220,45,168,100,219,3,0,67,220,15,99,174,166,4,0,68,156,91,108,15,99,3,0,69,156,51,60,22,15,3,0,81,156,246,16,121,32,2,0,90,220,37,96,170,207,2,0,90,220,16,189,171,168,4,0,93,156,97,11,99,134,3,0,94,28,180,25,189,176,4,0,98,28,68,12,169,169,3,0,100,156,74,223,245,167,2,0,103,28,24,81,247,85,3,0,103,92,229,144,221,128,3,0,105,220,153,223,206,242,2,0,105,220,156,191,77,180,4,0,107,220,49,47,76,211,3,0,107,92,11,111,165,8,4,0,108,156,170,44,214,163,4,0,110,156,238,177,84,25,4,0,112,28,153,223,204,35,3,0,114,28,84,124,197,36,3,0,128,156,180,14,125,54,3,0,131,92,76,158,227,192,3,0,131,28,190,146,152,13,4,0,132,156,71,157,55,0,3,0,135,92,139,62,101,10,4,0,136,156,214,158,221,169,4,0,137,28,70,148,6,228,3,0,140,28,55,100,56,39,3,0,143,92,183,203,5,117,3,0,145,28,176,53,225,100,2,0,151,28,45,31,25,243,3,0,153,220,102,49,106,157,4,0,155,220,67,162,227,248,2,0,155,220,146,70,8,252,2,0,162,92,227,186,77,9,3,0,164,220,84,61,213,44,2,0,164,28,208,186,98,241,3,0,165,220,117,52,171,33,3,0,166,220,198,232,188,182,4,0,169,220,152,223,197,90,3,0,173,156,206,218,162,247,2,0,176,92,145,204,127,55,2,0,177,28,213,13,85,176,2,0,179,92,89,65,61,83,2,0,179,220,39,80,167,141,2,0,179,220,188,111,47,181,3,0,181,92,124,145,174,140,3,0,182,28,129,54,204,137,4,0,186,28,46,233,67,20,2,0,186,220,153,215,153,164,2,0,186,92,251,202,233,202,2,0,190,220,152,223,184,90,3,0,193,220,153,223,55,244,2,0,194,220,58,129,154,19,2,0,194,28,51,45,143,137,3,0,195,220,245,45,183,134,3,0,197,156,138,24,133,242,3,0,199,156,27,236,168,29,3,0,199,156,127,95,241,96,4,0,199,28,71,12,172,180,4,0,201,156,238,230,39,93,3,0,201,220,39,154,231,183,3,0,203,28,223,71,19,218,3,0,204,220,178,98,124,125,3,0,206,92,185,234,171,117,2,0,212,220,42,253,12,121,3,0,212,156,232,93,99,254,3,0,213,92,22,208,180,119,3,0,213,220,239,153,4,90,4,0,214,156,1,87,255,151,4,0,217,28,37,173,201,74,3,0,218,28,146,55,119,39,4,0,225,156,10,23,97,216,2,0,225,220,250,86,113,99,4,0,229,156,117,205,1,207,2,0,230,28,115,139,155,59,2,0,234,220,20,177,53,73,4,0,235,220,168,203,225,90,2,0,237,92,151,102,19,77,2,0,240,28,152,63,176,243,2,0,240,156,1,150,190,124,3,0,245,92,132,253,182,83,3,0,247,28,220,86,165,106,2,0,247,92,191,150,65,136,4,0,250,220,37,178,73,199,3,0,251,28,160,96,53,12,3,0,252,92,63,195,190,158,3,0,253,220,135,233,43,122,3,0,3,157,233,88,162,23,2,0,3,93,155,118,68,28,2,0,9,93,24,81,108,79,3,0,11,29,93,238,6,141,4,0,13,29,91,83,64,98,3,0,17,29,0,88,58,219,3,0,20,29,148,116,231,20,2,0,25,221,84,224,140,170,3,0,30,157,32,98,152,29,4,0,30,157,76,34,121,116,4,0,31,221,94,81,229,28,2,0,32,93,173,216,101,78,4,0,36,93,202,233,165,167,3,0,37,157,86,228,164,48,3,0,39,93,84,91,126,56,4,0,42,157,45,218,203,141,4,0,47,93,219,22,238,30,3,0,48,157,142,52,230,72,2,0,49,221,54,123,65,246,3,0,49,221,195,71,240,175,4,0,50,221,170,58,201,218,3,0,53,221,111,144,49,157,2,0,57,157,191,131,162,165,3,0,58,157,16,181,131,205,2,0,61,29,69,109,243,171,4,0,63,221,123,67,107,35,2,0,72,157,247,126,206,137,3,0,72,221,122,176,15,212,3,0,72,221,117,72,163,222,3,0,73,157,173,228,11,111,3,0,78,29,58,226,27,97,4,0,84,29,143,235,173,59,4,0,85,221,19,192,76,198,2,0,86,157,7,75,16,110,2,0,89,29,221,98,176,80,4,0,95,29,237,157,254,76,2,0,96,221,92,125,64,6,3,0,100,29,59,184,201,68,3,0,100,221,42,118,180,95,4,0,101,157,163,120,63,118,4,0,103,221,58,212,248,110,2,0,103,29,13,42,199,159,4,0,104,93,38,230,161,123,3,0,104,29,45,86,161,46,4,0,105,221,220,148,31,180,3,0,105,157,96,185,223,19,4,0,106,221,171,29,110,21,4,0,107,157,170,32,104,73,2,0,107,157,15,142,52,130,4,0,112,157,254,159,99,121,3,0,117,29,174,217,112,201,2,0,118,93,181,206,46,78,3,0,119,221,121,240,112,59,2,0,120,157,197,38,241,183,2,0,123,221,172,150,143,69,4,0,125,29,2,242,126,186,3,0,127,29,100,46,33,183,4,0,129,157,114,43,111,145,3,0,131,93,226,158,219,152,3,0,133,93,173,42,11,95,3,0,133,29,189,163,201,22,4,0,136,221,85,88,90,83,4,0,138,93,123,254,158,213,3,0,138,93,154,184,210,171,4,0,141,93,250,12,149,144,2,0,145,157,90,39,215,177,4,0,153,157,228,187,26,110,3,0,153,157,153,168,194,67,4,0,162,221,100,253,12,22,3,0,162,93,151,40,205,57,4,0,164,93,207,205,37,161,4,0,164,93,241,157,40,163,4,0,166,93,252,34,12,156,2,0,169,93,67,195,36,165,3,0,171,29,84,14,183,57,2,0,172,29,141,76,238,164,3,0,173,221,220,157,112,126,2,0,174,29,40,60,178,60,2,0,176,29,0,188,5,87,3,0,177,29,94,71,146,49,3,0,177,221,14,121,239,67,4,0,180,221,50,239,219,254,3,0,181,221,0,40,150,186,3,0,181,93,191,3,154,150,4,0,186,29,54,7,9,188,4,0,187,157,2,155,94,107,2,0,191,29,79,96,201,151,2,0,194,29,161,125,16,249,3,0,195,29,162,128,89,228,3,0,196,29,66,31,240,26,2,0,199,221,203,221,237,62,2,0,199,93,206,201,244,85,2,0,201,157,152,236,201,138,3,0,204,93,74,231,109,14,4,0,206,157,23,253,181,90,2,0,206,93,213,64,167,37,3,0,206,93,182,37,36,179,4,0,208,93,139,160,54,20,2,0,212,93,202,239,150,138,2,0,215,93,168,5,159,112,3,0,216,157,145,220,60,123,4,0,225,93,51,182,4,100,4,0,225,157,210,247,36,123,4,0,232,221,20,167,77,98,4,0,234,157,218,249,46,213,3,0,235,29,184,183,18,105,2,0,240,93,89,82,104,104,3,0,240,93,93,240,118,1,4,0,240,221,204,54,181,131,4,0,241,221,42,85,117,136,2,0,241,29,249,143,165,83,3,0,242,221,227,60,94,50,2,0,243,157,45,28,188,165,2,0,247,221,156,103,2,32,4,0,249,29,125,45,14,166,4,0,252,29,111,49,144,216,2,0,253,29,87,133,255,195,2,0,1,30,194,254,52,56,4,0,3,222,183,12,186,68,2,0,3,158,51,27,91,135,4,0,5,94,14,178,130,80,4,0,6,30,41,167,216,81,2,0,8,94,14,221,74,247,2,0,9,222,195,166,13,93,4,0,12,94,24,81,221,78,3,0,13,222,239,86,3,136,4,0,17,94,51,223,135,175,2,0,18,30,174,58,50,1,3,0,19,158,178,234,55,134,2,0,22,158,214,248,133,150,4,0,24,158,5,121,58,104,3,0,24,222,155,60,5,54,4,0,27,30,197,107,8,211,2,0,28,158,228,236,165,191,2,0,28,222,27,212,138,38,3,0,34,158,62,85,119,105,3,0,35,30,221,42,218,92,3,0,35,158,176,158,135,254,3,0,35,158,234,10,162,15,4,0,36,94,229,93,234,179,3,0,36,222,219,248,209,56,4,0,36,30,122,0,80,60,4,0,38,94,99,177,157,65,4,0,42,222,0,97,238,106,2,0,43,30,20,31,209,126,3,0,44,94,140,143,207,33,2,0,44,158,63,121,25,98,2,0,44,94,212,39,130,126,3,0,44,158,38,34,228,69,4,0,45,222,152,223,3,84,3,0,50,94,134,221,211,214,3,0,50,158,97,207,248,13,4,0,51,158,64,111,227,62,3,0,53,222,0,39,244,22,2,0,54,222,192,95,57,81,3,0,57,222,41,231,220,51,3,0,58,158,127,132,112,184,2,0,60,222,129,38,41,23,2,0,62,94,227,186,45,9,3,0,64,30,245,169,184,21,4,0,65,158,66,14,71,50,4,0,68,158,179,209,171,33,4,0,72,30,57,88,180,31,2,0,74,94,143,26,85,153,2,0,76,30,239,47,28,22,2,0,77,222,28,55,138,114,4,0,78,30,131,185,94,241,2,0,79,94,11,216,9,215,3,0,82,158,228,53,125,147,3,0,82,222,99,178,188,31,4,0,84,222,137,75,163,58,4,0,86,158,78,111,210,149,4,0,86,222,28,104,141,184,4,0,87,30,37,177,31,55,2,0,93,30,41,109,247,155,3,0,94,222,247,188,52,85,2,0,95,94,185,37,192,178,3,0,102,94,44,61,241,239,2,0,102,158,33,55,52,1,4,0,105,30,199,68,240,64,4,0,106,158,30,243,74,101,2,0,109,222,198,152,123,93,3,0,109,158,155,4,127,203,3,0,112,94,121,14,222,155,2,0,112,30,88,178,164,165,2,0,112,222,64,155,170,82,4,0,113,222,131,144,63,46,4,0,114,158,251,249,99,192,3,0,115,94,24,81,252,78,3,0,116,30,165,255,95,96,4,0,117,30,47,119,229,121,2,0,119,222,198,206,162,143,3,0,120,222,154,74,106,243,3,0,124,30,195,62,58,163,4,0,125,94,14,65,213,13,3,0,132,30,89,107,110,154,2,0,132,94,192,172,169,197,3,0,132,30,81,200,144,62,4,0,135,94,21,226,221,183,3,0,137,30,141,185,99,27,3,0,139,158,21,55,189,239,2,0,146,222,252,163,148,197,3,0,149,158,73,160,55,138,2,0,151,222,159,227,143,81,2,0,151,158,177,45,120,178,2,0,151,158,142,40,171,188,2,0,154,30,62,144,19,70,4,0,155,94,104,42,5,162,4,0,158,30,191,50,79,158,2,0,160,94,233,202,119,23,2,0,160,158,225,3,157,125,4,0,161,30,251,163,197,102,2,0,161,158,204,238,232,126,4,0,165,222,26,201,151,109,4,0,165,94,203,43,215,130,4,0,168,222,65,33,18,250,3,0,178,94,203,189,28,175,4,0,181,30,240,188,174,114,2,0,182,94,98,209,136,27,2,0,184,94,147,20,114,241,2,0,188,30,182,92,97,101,4,0,189,30,176,220,61,96,3,0,193,222,231,19,212,199,3,0,196,30,227,186,57,11,3,0,202,94,252,34,56,156,2,0,203,30,27,86,23,125,3,0,206,94,36,159,75,161,3,0,212,30,125,180,37,50,3,0,216,30,143,8,113,114,3,0,217,30,7,17,140,48,2,0,219,158,88,37,47,230,3,0,219,30,156,68,145,66,4,0,221,222,93,180,96,79,2,0,223,158,115,210,70,0,4,0,225,158,158,88,6,175,4,0,227,222,102,137,111,143,3,0,227,222,60,12,78,173,3,0,229,30,86,90,118,70,2,0,230,94,163,234,102,15,4,0,232,222,137,52,224,196,3,0,232,94,223,209,207,27,4,0,232,94,223,209,234,27,4,0,234,222,70,133,46,49,2,0,243,94,67,140,133,126,4,0,246,30,15,32,185,97,2,0,246,94,59,184,129,47,3,0,246,94,119,163,55,151,3,0,249,94,124,24,92,215,2,0,251,30,166,80,163,87,4,0,252,30,211,236,80,123,2,0,253,94,47,124,138,233,3,0,254,30,158,232,21,17,4,0,254,94,29,77,220,89,4,0,255,30,28,13,123,106,4,0,1,223,103,154,139,173,2,0,4,223,82,208,70,24,3,0,5,223,152,223,98,80,3,0,5,159,85,19,86,196,3,0,6,159,33,170,22,86,3,0,6,159,141,211,124,35,4,0,6,159,252,218,81,61,4,0,10,31,246,105,85,227,2,0,10,159,44,121,152,207,3,0,21,95,65,79,144,83,3,0,21,95,81,5,125,119,3,0,24,159,64,172,55,172,2,0,25,159,21,233,85,144,3,0,25,31,102,79,236,231,3,0,25,159,241,181,146,108,4,0,28,223,216,242,68,164,3,0,28,223,216,11,153,165,4,0,29,223,168,252,173,17,3,0,31,223,74,148,147,23,2,0,33,223,153,235,93,112,4,0,36,31,255,46,57,93,2,0,36,95,187,25,137,110,2,0,41,95,36,149,207,205,2,0,45,95,231,178,245,238,3,0,46,95,215,68,115,101,2,0,46,31,138,255,159,147,2,0,47,95,7,64,240,63,3,0,48,31,19,170,55,121,4,0,52,31,87,234,222,125,2,0,53,223,71,146,188,211,2,0,53,31,41,235,67,234,3,0,55,95,16,178,123,90,4,0,56,159,80,198,180,38,3,0,58,159,146,49,227,63,2,0,58,95,56,86,205,84,4,0,61,95,3,202,97,175,3,0,62,223,54,194,20,229,2,0,65,95,217,9,215,3,2,0,65,95,150,61,244,54,2,0,68,95,219,130,253,246,3,0,69,95,244,175,6,174,2,0,69,31,253,5,13,125,4,0,71,95,186,64,138,52,3,0,72,31,192,214,13,200,2,0,77,95,182,127,182,10,3,0,79,223,150,138,73,40,2,0,79,223,135,81,165,94,3,0,80,95,6,124,69,13,3,0,80,31,190,186,64,20,3,0,81,31,23,166,245,180,4,0,82,95,140,230,185,232,3,0,82,159,183,237,22,168,4,0,86,95,101,88,44,19,2,0,95,95,66,113,29,162,4,0,97,31,85,78,223,106,4,0,101,95,84,29,229,93,3,0,104,31,210,141,150,82,2,0,106,95,238,41,143,5,2,0,107,223,64,55,106,221,2,0,108,159,136,160,206,69,3,0,108,31,50,215,2,158,3,0,109,159,52,154,176,122,2,0,109,223,114,167,180,127,2,0,111,95,243,73,197,92,2,0,121,95,92,252,140,25,4,0,127,223,47,83,215,208,3,0,132,95,181,58,108,148,2,0,134,95,93,14,225,41,2,0,135,95,245,113,203,142,3,0,136,95,82,184,185,136,4,0,137,223,77,205,24,50,2,0,138,31,100,100,84,56,2,0,139,95,95,76,82,42,4,0,140,95,236,34,80,85,2,0,143,159,217,71,255,217,3,0,151,159,69,130,214,102,4,0,155,31,33,2,104,248,3,0,158,31,225,92,231,214,3,0,159,223,221,156,103,16,4,0,164,223,180,108,71,45,2,0,165,95,5,75,101,62,4,0,166,159,183,195,41,187,2,0,166,223,149,131,151,208,2,0,167,31,226,3,129,71,2,0,171,95,202,145,225,104,4,0,172,223,209,56,215,168,3,0,173,223,87,170,57,144,4,0,175,223,19,252,115,224,2,0,175,31,19,0,78,23,3,0,181,159,172,252,145,153,3,0,182,31,215,177,158,60,2,0,186,223,22,91,181,177,2,0,186,223,98,254,237,252,2,0,186,95,84,232,174,116,3,0,187,31,82,226,8,118,4,0,192,95,228,115,34,84,2,0,193,159,16,129,148,52,4,0,194,31,185,206,2,87,2,0,194,159,7,226,192,11,3,0,198,159,39,6,73,151,3,0,200,31,90,170,241,36,3,0,205,223,48,108,77,242,2,0,206,223,145,106,141,226,3,0,207,31,61,105,109,22,2,0,209,159,121,104,177,129,4,0,212,223,113,184,244,90,3,0,213,223,15,220,89,7,3,0,214,223,38,85,63,141,2,0,218,31,236,225,197,114,4,0,222,31,201,34,55,102,2,0,223,95,45,42,176,133,3,0,225,223,54,93,148,139,4,0,227,223,187,47,15,186,2,0,227,223,159,67,1,99,3,0,234,223,94,186,229,29,3,0,235,223,10,15,255,231,2,0,236,31,88,9,79,70,2,0,236,159,160,17,82,254,2,0,241,159,29,172,207,131,2,0,241,159,48,82,33,154,3,0,241,31,255,127,8,155,4,0,242,31,86,176,165,139,2,0,244,95,65,67,136,203,2,0,244,95,185,186,49,221,3,0,245,223,25,84,114,239,3,0,246,95,109,189,5,172,2,0,246,159,117,144,27,172,2,0,247,31,175,140,103,32,4,0,247,159,149,42,27,79,4,0,250,223,22,97,24,58,3,0,252,159,90,80,230,12,2,0,253,223,179,17,252,32,4,0,2,96,156,179,105,251,3,0,4,32,29,81,104,39,3,0,4,160,77,171,88,23,4,0,7,32,118,131,131,144,2,0,7,160,18,144,27,179,3,0,8,96,79,211,154,199,3,0,9,32,200,36,239,47,2,0,9,224,204,69,87,244,3,0,11,96,198,209,250,103,3,0,12,32,34,31,164,245,2,0,16,224,211,192,195,117,3,0,17,160,185,197,48,165,4,0,18,160,222,94,236,3,3,0,24,224,203,207,202,161,2,0,30,32,72,204,115,19,2,0,30,96,153,58,204,232,2,0,31,32,181,89,246,142,4,0,32,32,156,242,218,94,2,0,37,224,171,126,223,13,2,0,37,160,243,213,47,215,3,0,39,96,127,20,47,66,2,0,41,96,225,197,26,136,4,0,42,32,179,98,183,165,3,0,43,160,226,158,136,194,2,0,46,224,68,223,59,43,3,0,47,160,250,169,121,89,3,0,48,32,254,111,170,18,4,0,55,32,214,39,106,137,3,0,56,160,45,106,7,57,4,0,57,224,152,211,231,74,2,0,58,96,134,112,244,209,2,0,61,32,23,95,250,54,4,0,62,96,24,81,25,93,3,0,66,224,26,177,2,218,2,0,68,160,61,11,155,68,2,0,71,32,191,251,72,12,3,0,71,96,60,117,55,17,3,0,75,224,66,64,72,212,3,0,79,32,116,241,226,71,4,0,81,224,138,230,177,159,3,0,81,160,197,220,119,62,4,0,82,96,239,187,138,5,3,0,83,224,222,160,70,230,3,0,83,96,86,44,219,148,4,0,84,224,157,45,243,150,3,0,84,96,127,147,38,138,4,0,85,224,99,84,102,145,2,0,85,224,58,172,113,117,3,0,89,224,169,0,183,113,4,0,91,224,10,158,98,219,2,0,91,224,115,90,148,225,2,0,95,224,170,96,113,82,4,0,97,224,82,233,26,235,3,0,98,160,228,205,141,79,4,0,101,160,97,241,219,255,2,0,105,32,182,126,230,11,2,0,110,160,114,97,8,121,4,0,116,32,72,134,28,20,3,0,118,96,179,49,214,235,3,0,118,96,38,245,81,105,4,0,121,96,8,0,195,212,2,0,122,96,114,95,180,44,4,0,123,160,230,248,238,163,4,0,127,224,152,223,110,93,3,0,127,160,6,25,162,164,3,0,128,96,170,201,228,131,3,0,134,96,220,129,203,189,3,0,135,160,176,72,98,141,3,0,136,32,162,234,248,233,3,0,137,32,53,117,83,2,3,0,140,96,146,169,143,5,4,0,141,224,46,15,167,88,3,0,148,32,98,69,110,77,2,0,152,224,136,255,67,247,3,0,154,96,147,182,128,163,2,0,155,224,39,81,49,27,3,0,155,224,28,102,212,158,4,0,158,224,39,81,63,27,3,0,158,32,58,244,112,52,4,0,159,32,29,134,203,124,3,0,162,32,177,22,180,106,3,0,162,96,73,90,177,6,4,0,167,224,117,30,46,232,3,0,167,160,12,177,98,158,4,0,176,96,5,26,250,90,2,0,176,224,70,22,118,198,3,0,177,160,127,220,149,104,2,0,179,32,235,41,59,48,2,0,182,96,81,87,3,100,3,0,183,96,102,28,91,64,3,0,183,224,183,158,82,110,4,0,185,160,236,76,4,169,4,0,186,32,148,174,191,188,2,0,191,224,207,117,212,250,3,0,194,224,199,169,182,79,4,0,195,224,126,226,251,138,3,0,196,96,50,134,110,67,2,0,205,160,107,75,169,29,2,0,216,96,161,20,155,135,3,0,219,96,0,13,126,131,3,0,222,32,239,171,96,48,4,0,223,224,115,65,245,130,2,0,226,224,25,255,126,46,2,0,227,160,177,3,35,165,4,0,229,32,84,192,48,28,2,0,229,224,181,191,21,21,4,0,237,160,141,206,77,189,3,0,238,160,243,90,49,235,3,0,240,224,239,83,81,182,2,0,243,160,3,205,135,60,2,0,245,224,236,221,235,43,3,0,245,32,242,175,164,127,4,0,247,32,233,73,156,22,2,0,251,160,89,11,164,91,3,0,251,96,247,156,182,193,3,0,253,224,62,34,248,114,4,0,255,160,114,180,84,148,2,0,255,224,82,171,119,110,3,0,1,161,213,232,81,26,3,0,1,225,44,173,232,74,3,0,6,225,32,100,118,101,4,0,6,161,32,224,156,149,4,0,7,225,55,116,239,173,3,0,10,97,2,206,74,111,2,0,12,161,67,157,152,119,3,0,15,33,126,229,134,57,2,0,15,161,20,67,95,171,4,0,21,97,145,240,126,93,2,0,22,225,107,129,36,24,4,0,22,161,69,247,58,113,4,0,23,161,26,24,35,14,2,0,24,225,174,203,80,140,3,0,25,161,41,250,234,66,3,0,26,161,152,2,135,129,3,0,26,225,43,26,129,228,3,0,29,33,94,65,207,168,2,0,31,225,134,72,134,64,4,0,32,97,190,163,123,28,4,0,39,33,227,221,252,207,3,0,40,225,152,223,78,93,3,0,41,161,63,141,102,156,2,0,43,33,65,149,38,67,2,0,45,161,134,219,196,2,3,0,49,161,38,9,29,97,3,0,50,161,250,142,56,133,2,0,53,97,199,210,73,46,3,0,55,225,153,120,13,133,3,0,57,225,55,118,127,95,4,0,58,33,173,190,196,253,3,0,60,33,192,95,252,253,2,0,61,225,214,195,206,155,2,0,62,161,57,146,83,248,3,0,63,97,205,94,33,99,2,0,63,33,116,146,244,93,4,0,65,225,250,195,52,114,2,0,66,33,23,211,100,149,3,0,70,33,106,41,188,144,2,0,76,225,65,76,92,53,3,0,78,33,104,153,180,137,4,0,80,33,249,217,19,63,3,0,83,97,245,173,187,186,2,0,84,225,86,164,9,139,3,0,85,225,33,120,150,55,2,0,93,97,82,135,197,45,3,0,94,161,13,173,55,75,3,0,95,97,35,188,105,20,4,0,95,225,236,165,235,20,4,0,101,33,130,176,60,189,2,0,103,97,232,152,27,220,2,0,107,97,139,148,29,164,2,0,110,161,152,68,255,45,2,0,111,161,219,137,253,131,2,0,111,225,203,186,177,43,4,0,115,33,70,240,141,109,3,0,116,97,245,8,241,16,2,0,116,97,134,184,193,77,3,0,120,97,128,94,48,5,4,0,121,33,116,190,231,65,2,0,123,161,24,253,21,107,4,0,125,161,50,124,50,65,4,0,127,225,206,14,64,180,3,0,136,97,113,191,38,108,4,0,140,225,189,32,100,214,3,0,141,161,184,164,132,81,3,0,145,225,149,19,198,26,3,0,155,97,112,44,137,156,3,0,159,97,197,97,26,126,2,0,160,161,11,236,67,215,3,0,161,97,6,165,144,219,3,0,162,97,193,109,23,185,4,0,164,97,133,69,47,180,4,0,165,33,133,84,80,108,4,0,166,97,163,171,24,195,2,0,166,97,130,194,160,208,3,0,172,97,194,145,90,180,3,0,172,97,235,168,222,80,4,0,178,97,251,35,187,225,2,0,179,97,153,219,70,76,3,0,180,97,156,95,187,39,3,0,180,97,126,133,70,78,4,0,184,33,127,195,156,169,2,0,186,225,210,194,45,200,2,0,187,161,205,106,18,56,4,0,191,225,89,73,150,169,4,0,192,161,183,104,65,136,2,0,195,225,49,162,158,78,4,0,197,225,43,167,134,13,3,0,204,97,21,117,63,175,4,0,210,161,68,177,218,19,3,0,212,161,205,168,159,35,3,0,212,161,23,81,204,92,3,0,219,161,16,175,119,50,3,0,225,225,132,247,157,16,2,0,225,97,90,173,59,37,2,0,229,97,157,234,79,79,2,0,229,161,127,38,178,67,3,0,229,33,52,213,29,131,4,0,229,97,148,250,120,162,4,0,231,225,86,243,82,125,2,0,231,97,189,194,120,167,3,0,231,225,233,134,234,194,3,0,232,97,14,94,197,46,3,0,240,161,203,75,132,111,2,0,242,225,149,7,204,138,4,0,243,161,39,141,125,50,4,0,246,161,4,223,21,184,4,0,247,97,48,216,158,118,4,0,248,33,213,238,137,79,3,0,252,33,125,162,81,11,2,0,2,34,181,143,75,123,3,0,4,34,64,178,100,54,2,0,4,34,74,191,85,208,2,0,4,226,222,176,84,195,3,0,5,226,224,29,189,189,2,0,7,98,112,246,150,4,2,0,8,226,16,162,11,32,3,0,12,226,82,12,56,55,2,0,12,226,40,144,214,101,3,0,19,98,234,87,36,5,2,0,20,162,63,71,41,241,3,0,21,226,90,249,251,156,3,0,24,98,165,244,175,150,4,0,25,162,37,59,100,43,3,0,28,98,189,40,156,72,2,0,29,98,59,106,90,117,4,0,33,226,223,16,62,253,3,0,34,162,30,149,125,122,3,0,34,226,160,91,227,83,4,0,44,98,220,219,196,154,3,0,45,34,98,178,140,165,2,0,46,226,110,253,104,99,3,0,50,226,44,96,108,141,2,0,50,34,53,235,13,84,4,0,51,98,101,155,48,223,3,0,54,34,149,160,82,50,3,0,55,98,0,117,235,111,2,0,59,162,1,37,234,188,2,0,59,34,180,95,23,49,4,0,61,34,212,59,52,76,4,0,62,162,99,73,209,115,2,0,66,98,142,86,4,66,4,0,68,34,168,41,102,138,3,0,69,34,39,108,137,185,3,0,76,98,69,80,255,9,2,0,81,226,39,81,118,27,3,0,82,162,163,103,204,172,2,0,84,226,0,10,131,253,3,0,86,162,59,30,6,37,2,0,88,226,90,75,34,148,3,0,89,98,165,244,207,150,4,0,90,162,9,9,161,14,2,0,100,34,193,124,170,181,3,0,101,226,207,188,226,254,2,0,104,226,153,128,6,85,2,0,105,34,63,191,15,70,3,0,108,34,74,90,231,52,2,0,112,98,245,81,79,224,2,0,112,98,107,140,115,81,3,0,113,226,81,45,220,170,3,0,115,34,75,20,218,10,3,0,118,34,255,241,149,200,3,0,120,98,232,211,115,166,4,0,123,98,173,129,227,140,3,0,130,162,69,141,72,161,4,0,131,226,87,34,191,20,2,0,137,162,99,204,88,81,2,0,140,34,88,240,19,254,2,0,143,226,164,76,174,27,2,0,144,226,153,223,43,248,2,0,147,226,175,80,157,74,2,0,148,226,201,229,238,35,3,0,149,226,92,254,189,236,3,0,152,34,221,161,202,13,2,0,153,162,192,39,243,244,2,0,155,226,255,143,226,83,3,0,156,34,10,173,103,87,4,0,156,98,169,155,152,170,4,0,157,34,86,124,154,133,2,0,158,226,189,106,38,11,4,0,160,98,62,157,204,113,4,0,160,34,83,204,83,147,4,0,163,34,217,169,178,82,3,0,164,162,184,13,170,72,2,0,164,34,3,210,171,199,3,0,164,34,3,210,191,199,3,0,164,34,3,210,207,182,4,0,167,226,199,251,166,187,3,0,167,98,106,239,232,178,4,0,169,226,102,207,27,57,4,0,169,226,39,76,141,182,4,0,170,98,155,143,232,155,4,0,171,226,89,249,161,3,2,0,171,226,208,25,51,172,4,0,176,226,44,32,242,127,4,0,177,98,12,255,234,28,4,0,180,162,246,187,58,89,2,0,181,226,0,226,131,183,4,0,184,226,206,75,197,86,4,0,185,98,23,145,179,102,2,0,186,98,69,67,184,203,2,0,186,98,9,23,171,216,2,0,186,98,83,46,227,80,3,0,187,34,114,206,39,228,2,0,188,98,108,143,171,88,4,0,191,226,116,23,124,128,3,0,193,226,96,135,213,107,2,0,193,98,180,242,55,204,3,0,195,162,72,72,167,49,4,0,200,34,43,104,8,80,2,0,200,34,43,104,68,187,4,0,202,226,243,38,163,249,3,0,204,226,198,226,57,45,3,0,204,98,136,185,44,45,4,0,205,162,22,32,48,50,2,0,205,162,53,126,31,156,4,0,206,98,50,243,67,34,4,0,206,98,50,243,90,34,4,0,206,98,50,243,121,34,4,0,206,98,50,243,165,34,4,0,206,98,50,243,20,35,4,0,206,98,50,243,72,35,4,0,211,98,224,88,77,174,2,0,212,98,123,211,138,0,3,0,215,98,78,254,78,47,4,0,221,162,76,81,31,200,2,0,221,34,57,66,72,252,2,0,223,162,234,178,73,168,4,0,224,34,17,3,175,20,3,0,225,34,74,126,228,103,2,0,226,226,36,100,3,98,3,0,228,226,207,188,146,253,2,0,230,226,150,152,69,121,3,0,231,226,79,121,250,64,3,0,231,226,43,109,154,112,4,0,232,226,14,199,141,209,3,0,233,162,109,94,242,225,2,0,235,226,218,249,158,33,2,0,235,34,156,46,48,17,4,0,238,162,107,23,30,84,4,0,243,162,153,73,114,115,4,0,244,226,63,189,188,19,2,0,250,226,85,68,69,170,3,0,253,34,133,46,100,67,4,0,253,98,230,173,164,146,4,0,0,99,77,21,91,7,4,0,0,227,16,137,226,92,4,0,2,163,25,73,185,137,2,0,2,99,241,198,52,156,3,0,2,163,254,17,186,77,4,0,10,35,207,70,206,177,3,0,10,35,11,196,52,207,3,0,10,99,33,15,88,16,4,0,11,35,66,58,220,35,4,0,14,35,242,169,243,83,3,0,15,163,193,189,23,61,4,0,16,35,197,17,6,182,3,0,16,163,63,227,205,206,3,0,16,35,255,243,195,45,4,0,18,35,121,5,201,223,2,0,18,227,200,217,157,138,3,0,18,35,248,67,219,151,3,0,19,35,116,133,37,123,3,0,20,227,178,102,164,205,3,0,22,99,153,73,105,82,3,0,24,99,190,202,197,125,2,0,24,227,236,93,41,138,3,0,27,99,82,67,38,226,2,0,28,163,207,198,57,178,3,0,28,163,94,137,199,211,3,0,29,227,46,23,207,42,3,0,30,163,55,21,250,233,2,0,32,163,19,162,142,178,2,0,33,163,164,7,39,146,2,0,38,227,242,12,76,166,3,0,42,99,202,123,42,128,2,0,44,99,45,248,71,193,2,0,45,99,10,10,180,49,2,0,46,227,213,126,206,17,3,0,48,35,88,240,38,254,2,0,50,99,145,236,8,253,2,0,52,99,85,100,28,146,3,0,54,99,24,72,226,240,3,0,56,227,146,73,58,194,3,0,57,227,155,202,7,252,3,0,58,35,171,6,118,129,2,0,58,99,103,140,167,161,3,0,60,163,126,199,61,228,2,0,60,163,87,229,138,101,3,0,62,163,162,176,182,254,3,0,64,227,57,157,124,222,2,0,65,227,117,167,211,144,2,0,65,227,212,187,235,4,3,0,68,227,82,190,146,43,3,0,71,35,30,141,103,77,3,0,73,99,151,227,0,102,4,0,75,99,14,206,254,1,2,0,76,163,245,120,168,50,4,0,80,227,114,162,244,122,2,0,81,35,185,6,218,66,2,0,82,99,174,115,201,69,2,0,84,227,139,68,101,85,2,0,85,227,82,90,5,142,2,0,86,99,57,59,221,100,3,0,87,35,147,222,16,105,3,0,87,163,96,224,198,108,4,0,89,227,84,179,130,37,4,0,90,163,173,243,190,30,3,0,92,99,169,91,74,18,3,0,93,163,31,222,151,85,2,0,94,227,162,144,11,199,3,0,96,99,5,247,52,158,3,0,97,99,163,239,70,222,3,0,105,163,82,161,137,141,4,0,106,99,134,196,126,103,3,0,109,99,185,39,244,174,4,0,111,99,188,175,156,152,2,0,112,35,215,131,24,42,3,0,113,227,239,120,6,17,4,0,115,99,153,23,18,149,3,0,117,227,108,143,60,203,3,0,124,227,187,204,4,76,4,0,129,99,249,159,9,45,3,0,133,163,176,8,126,36,3,0,135,99,28,123,227,242,3,0,137,99,202,35,220,8,3,0,137,163,210,151,1,150,4,0,138,163,150,181,142,21,4,0,141,35,226,6,58,23,3,0,144,227,36,155,125,238,2,0,149,163,4,130,31,203,3,0,153,227,141,253,71,54,3,0,154,163,6,178,200,18,4,0,157,99,12,20,75,70,4,0,161,99,252,19,159,171,2,0,161,227,199,226,238,20,3,0,162,35,221,247,247,103,2,0,164,99,23,236,136,57,3,0,164,227,153,46,14,119,3,0,168,35,106,0,163,92,4,0,170,99,139,24,249,19,2,0,172,163,203,20,68,75,4,0,174,99,13,181,78,145,2,0,175,163,52,67,167,38,2,0,175,163,3,2,220,221,2,0,185,99,55,121,97,220,2,0,185,99,128,6,196,204,3,0,187,227,175,238,170,184,2,0,189,35,152,134,75,113,3,0,190,227,47,179,224,42,2,0,192,163,82,59,81,9,2,0,193,227,50,117,217,51,2,0,193,163,24,186,38,0,3,0,197,35,106,186,173,32,3,0,197,227,18,25,215,66,3,0,197,35,153,185,196,59,4,0,198,163,39,81,53,19,3,0,199,163,149,87,68,169,2,0,199,35,26,5,53,157,3,0,205,35,11,50,193,160,3,0,206,99,108,24,245,251,2,0,207,99,106,150,183,160,4,0,208,99,36,98,67,51,4,0,209,163,114,10,225,91,2,0,210,35,123,210,96,197,3,0,211,163,96,230,57,115,2,0,213,35,237,55,65,166,4,0,215,227,14,66,202,153,4,0,216,227,166,238,28,201,2,0,217,163,205,164,47,169,3,0,221,35,40,28,7,164,2,0,226,227,83,230,188,171,3,0,227,163,198,57,157,99,2,0,227,35,250,66,145,220,3,0,231,99,53,83,7,146,3,0,236,99,233,118,147,2,3,0,236,35,137,5,189,39,4,0,239,35,185,125,87,183,4,0,241,163,152,160,144,53,3,0,242,35,4,236,126,164,3,0,242,99,62,104,183,205,3,0,242,99,212,232,225,137,4,0,243,227,173,175,73,210,3,0,248,99,220,170,248,16,3,0,249,35,145,112,82,67,2,0,251,227,95,22,152,39,3,0,252,163,222,2,203,9,3,0,254,99,239,147,102,71,2,0,1,164,153,223,200,250,2,0,1,100,14,94,94,143,3,0,1,228,10,239,79,158,4,0,2,164,167,222,64,78,2,0,5,228,61,118,186,70,3,0,7,100,118,179,86,29,2,0,9,164,26,195,17,105,4,0,10,164,157,194,76,31,2,0,12,100,24,81,179,77,3,0,12,36,9,169,221,142,4,0,14,100,62,112,169,102,4,0,18,36,42,159,24,95,2,0,18,228,90,227,196,38,3,0,25,36,241,45,143,211,2,0,26,100,61,224,44,39,2,0,26,100,221,246,140,6,4,0,26,228,215,171,114,24,4,0,26,228,206,95,112,74,4,0,29,228,246,174,17,123,3,0,29,164,116,203,136,61,4,0,30,36,84,168,116,169,2,0,31,36,237,199,205,135,3,0,32,100,72,138,2,30,3,0,37,36,157,183,133,119,2,0,37,36,39,232,26,137,4,0,41,36,67,153,151,18,4,0,46,164,22,43,119,194,2,0,47,36,194,16,31,18,2,0,47,100,116,84,108,240,3,0,50,36,85,46,250,235,3,0,55,228,210,190,39,16,4,0,62,164,93,126,61,217,2,0,63,100,130,176,141,214,3,0,64,100,152,160,139,50,3,0,64,36,159,0,36,52,4,0,67,36,62,244,102,176,3,0,68,228,19,192,112,198,2,0,71,228,227,98,199,80,4,0,76,36,145,28,163,37,2,0,78,228,248,235,230,22,3,0,78,36,151,47,144,113,4,0,80,36,91,2,202,102,3,0,80,100,208,246,192,144,3,0,82,100,87,206,64,127,3,0,85,100,248,86,176,22,2,0,86,36,72,181,48,129,2,0,86,228,36,167,10,92,3,0,86,36,139,197,67,177,4,0,87,164,46,92,153,64,4,0,89,36,57,66,92,252,2,0,91,36,39,187,229,25,3,0,96,100,146,254,173,146,3,0,103,228,72,193,233,24,3,0,104,228,161,245,121,182,4,0,107,100,250,157,12,153,2,0,111,164,36,43,95,64,4,0,112,36,53,179,121,122,4,0,116,36,26,81,39,44,3,0,120,228,20,63,34,102,2,0,121,100,206,113,234,84,3,0,128,228,74,134,88,40,2,0,130,228,227,120,81,18,4,0,131,100,35,117,182,138,4,0,134,36,198,211,230,45,2,0,134,228,42,95,23,22,4,0,138,100,10,67,164,196,2,0,139,164,156,192,28,215,3,0,140,228,179,246,166,238,3,0,141,36,165,235,65,215,2,0,144,100,168,87,45,81,2,0,147,228,9,103,128,56,2,0,148,36,140,57,181,34,3,0,149,228,28,13,38,15,4,0,150,228,195,87,168,176,4,0,151,36,238,216,202,17,2,0,152,100,251,206,193,65,2,0,153,36,219,98,201,19,4,0,154,36,167,235,193,166,4,0,158,228,85,30,189,17,2,0,160,228,174,123,101,89,4,0,161,36,113,155,9,64,3,0,161,100,239,35,7,203,3,0,161,228,204,126,136,124,4,0,162,36,44,207,132,96,3,0,166,164,67,209,189,235,3,0,166,228,237,254,53,92,4,0,167,36,247,59,31,81,2,0,167,228,226,196,235,173,2,0,169,164,206,23,212,61,3,0,171,36,29,81,90,39,3,0,172,100,111,196,249,170,3,0,173,36,38,9,115,160,4,0,175,36,7,146,133,88,3,0,176,228,52,218,208,191,2,0,178,36,124,157,30,4,4,0,179,36,6,81,229,233,3,0,179,100,181,120,2,7,4,0,181,164,47,19,191,59,3,0,183,228,220,178,238,117,3,0,184,100,35,14,219,155,3,0,184,100,249,137,101,38,4,0,185,100,154,189,179,222,3,0,186,164,70,70,115,48,4,0,187,100,40,188,204,147,2,0,187,228,190,49,178,220,2,0,193,164,221,241,20,154,2,0,193,228,136,100,47,204,2,0,195,100,88,111,130,33,2,0,195,100,229,96,187,222,2,0,197,100,224,225,114,137,4,0,204,228,249,233,216,169,3,0,205,164,141,198,210,113,2,0,205,36,16,219,173,139,3,0,205,164,46,254,41,134,4,0,206,228,200,150,83,55,4,0,208,228,227,134,45,206,2,0,208,228,211,93,190,250,3,0,209,36,183,117,169,55,2,0,213,36,5,183,100,88,3,0,215,164,247,21,3,96,4,0,219,36,145,100,44,143,4,0,221,164,237,47,201,4,4,0,231,36,133,250,61,94,3,0,233,100,87,35,195,45,2,0,234,36,83,18,34,165,2,0,237,228,1,47,54,51,4,0,241,228,71,127,170,143,4,0,243,228,241,193,225,144,3,0,244,228,239,129,11,193,2,0,246,228,109,114,237,133,3,0,251,228,20,151,207,157,3,0,251,164,219,3,236,198,3,0,253,100,19,70,24,92,4,0,255,36,60,61,40,90,2,0,1,165,97,67,185,34,2,0,2,229,18,52,166,69,3,0,3,101,26,107,220,112,4,0,5,165,176,134,50,151,2,0,6,165,176,164,185,251,3,0,6,229,246,228,72,119,4,0,7,165,163,165,209,48,3,0,8,229,37,52,202,99,3,0,12,37,2,234,124,118,3,0,13,101,157,9,231,55,2,0,13,165,46,147,195,3,3,0,15,165,142,47,229,218,3,0,16,229,176,43,61,121,2,0,18,101,128,173,127,209,2,0,18,229,152,223,246,40,3,0,20,37,168,148,167,161,2,0,25,229,82,97,181,204,2,0,25,101,98,176,26,16,3,0,25,101,24,81,125,77,3,0,27,37,236,10,38,77,3,0,28,229,202,80,167,229,3,0,30,229,75,215,202,199,2,0,31,165,137,226,133,86,2,0,33,165,198,117,165,99,4,0,34,37,105,178,244,254,3,0,35,37,160,54,120,59,3,0,37,37,7,146,150,88,3,0,39,101,173,82,170,202,2,0,40,37,122,231,118,107,4,0,41,101,50,12,59,168,3,0,44,37,90,119,94,63,3,0,44,165,138,196,186,89,3,0,45,229,20,91,5,22,4,0,46,37,222,69,76,13,2,0,46,101,139,241,86,122,4,0,49,37,98,123,221,194,2,0,50,101,89,152,219,46,4,0,60,229,55,101,80,77,3,0,61,165,148,36,240,81,2,0,66,165,202,174,12,78,2,0,66,229,212,4,87,119,3,0,68,165,240,165,150,187,3,0,69,229,250,169,63,89,3,0,72,37,229,228,233,56,2,0,73,101,1,130,54,113,3,0,74,37,164,155,176,10,2,0,74,37,164,243,27,35,3,0,84,101,248,144,190,194,2,0,88,229,18,14,139,161,2,0,89,229,112,70,8,101,4,0,90,229,164,44,254,74,2,0,91,101,107,247,95,106,4,0,94,101,199,240,35,65,4,0,95,101,153,61,152,112,2,0,97,37,57,30,203,178,2,0,99,37,16,189,144,171,4,0,100,229,154,233,194,238,3,0,101,101,144,181,164,6,2,0,101,37,29,81,76,39,3,0,102,101,183,246,200,103,2,0,105,165,221,181,33,63,4,0,107,37,0,37,207,96,4,0,112,101,135,160,223,70,3,0,113,165,161,181,13,227,2,0,113,101,229,106,195,35,4,0,115,37,89,243,32,145,2,0,117,229,122,19,120,171,2,0,119,165,56,166,210,240,2,0,122,229,159,121,104,2,3,0,123,101,99,103,102,136,4,0,126,101,187,236,134,116,2,0,127,165,250,39,188,166,2,0,129,229,203,226,110,77,4,0,131,165,142,110,6,207,3,0,137,229,205,63,122,185,3,0,143,37,167,141,181,111,3,0,148,101,169,12,232,110,2,0,149,229,153,188,137,85,3,0,149,101,37,198,135,179,3,0,150,101,235,185,173,43,3,0,152,229,131,99,115,38,2,0,155,37,255,198,243,37,3,0,155,101,52,140,113,150,4,0,158,165,85,214,11,63,2,0,159,229,53,225,78,34,2,0,160,165,213,182,193,196,3,0,161,229,72,60,88,11,3,0,161,229,13,80,18,135,4,0,162,165,229,217,184,181,2,0,162,37,180,174,129,152,3,0,164,165,167,188,93,98,2,0,165,101,22,254,53,94,2,0,165,101,75,68,22,103,2,0,165,37,236,152,123,219,2,0,167,165,135,21,180,111,4,0,168,229,94,190,31,31,2,0,168,101,53,81,231,251,2,0,168,229,43,22,236,11,3,0,174,229,230,184,16,144,4,0,175,165,87,57,20,203,2,0,176,37,98,114,194,80,2,0,177,37,18,55,186,137,3,0,182,229,86,188,63,106,2,0,184,165,221,17,217,207,3,0,187,165,206,0,242,105,2,0,188,165,216,22,113,222,3,0,188,229,213,26,207,131,4,0,192,165,206,247,180,199,2,0,192,101,41,94,221,150,4,0,193,37,121,209,178,55,4,0,195,165,87,163,122,31,3,0,195,37,133,23,190,130,3,0,198,229,200,38,95,55,2,0,198,101,81,220,228,102,4,0,200,37,52,49,99,72,4,0,205,229,147,205,60,182,3,0,205,37,43,96,49,4,4,0,208,229,59,108,175,147,3,0,209,37,165,27,177,29,4,0,211,37,207,90,64,178,2,0,211,101,8,54,65,16,3,0,217,37,188,238,247,71,4,0,218,101,231,228,148,33,3,0,220,165,200,24,14,106,3,0,227,229,103,107,86,123,4,0,228,229,44,209,7,161,3,0,229,101,131,200,211,24,2,0,230,165,208,7,204,19,2,0,236,229,119,253,134,183,3,0,239,229,69,163,135,103,4,0,241,229,223,37,34,167,2,0,249,101,32,25,206,143,2,0,249,37,200,11,37,59,4,0,252,37,17,23,211,5,3,0,255,101,49,52,51,67,3,0,0,102,128,128,44,152,2,0,4,230,11,176,61,42,4,0,5,230,28,63,222,231,3,0,9,38,231,13,68,98,2,0,9,38,39,161,138,55,3,0,9,102,195,3,102,61,3,0,9,230,179,51,57,143,3,0,10,102,118,61,155,45,3,0,10,102,202,22,56,115,4,0,11,166,54,80,145,219,2,0,11,38,166,170,56,63,4,0,13,166,46,3,187,117,2,0,17,102,237,100,250,153,4,0,20,166,80,23,114,255,3,0,21,166,54,188,2,29,3,0,21,230,151,160,32,61,3,0,21,230,209,249,68,67,3,0,21,166,206,144,112,163,3,0,21,230,118,192,64,181,3,0,22,102,24,129,129,187,2,0,23,166,245,102,69,151,2,0,27,38,138,46,14,27,2,0,27,166,6,101,58,202,2,0,27,38,190,57,51,153,3,0,39,166,8,23,245,12,2,0,40,38,181,18,108,164,2,0,41,38,191,3,167,25,4,0,44,166,40,251,225,0,3,0,46,38,39,181,163,35,4,0,47,38,139,101,50,139,3,0,50,102,214,84,170,134,2,0,51,166,250,61,20,125,2,0,53,38,12,17,236,154,2,0,56,102,67,171,149,198,2,0,56,102,6,75,9,128,4,0,57,166,130,44,110,97,4,0,58,102,199,154,174,178,2,0,59,38,213,38,249,139,2,0,60,166,76,81,156,194,2,0,62,230,181,109,110,44,2,0,63,166,107,169,76,246,2,0,64,102,25,25,135,1,2,0,65,38,30,123,15,197,3,0,67,166,123,235,111,253,2,0,69,102,38,172,117,62,2,0,69,102,58,135,33,251,3,0,70,230,3,140,53,249,3,0,72,166,109,16,38,74,2,0,72,166,128,184,111,80,3,0,73,102,9,64,110,253,3,0,76,38,57,176,200,85,3,0,77,102,169,90,74,59,2,0,81,166,195,211,9,17,2,0,81,230,172,113,173,119,4,0,82,166,219,243,90,240,2,0,82,102,129,139,210,240,3,0,85,230,210,83,145,29,2,0,85,102,203,173,17,41,3,0,88,38,81,206,111,133,4,0,91,230,52,103,48,71,4,0,92,38,41,53,132,11,4,0,92,166,235,92,130,105,4,0,97,102,50,104,59,123,2,0,100,102,50,230,183,103,4,0,101,38,88,255,139,250,3,0,102,38,98,192,160,124,4,0,103,102,153,124,227,94,3,0,105,230,153,49,29,114,4,0,107,38,150,233,186,241,2,0,107,166,26,62,156,94,4,0,108,102,225,8,95,168,2,0,109,166,152,3,69,243,2,0,110,166,236,135,217,35,3,0,113,38,213,115,14,75,2,0,113,230,67,24,105,179,4,0,117,166,54,198,188,16,4,0,123,230,255,245,139,30,2,0,123,166,114,41,165,40,3,0,124,38,103,216,62,101,3,0,127,166,94,72,58,59,3,0,129,166,97,120,180,100,2,0,135,102,31,170,28,197,2,0,136,166,173,102,123,246,3,0,140,166,218,24,231,205,2,0,141,38,123,83,218,197,2,0,141,230,81,226,60,41,3,0,141,230,247,205,74,187,3,0,143,230,148,5,236,108,3,0,147,38,102,184,121,42,3,0,147,102,187,180,38,159,4,0,150,102,250,72,120,82,2,0,158,166,181,15,141,32,3,0,158,230,214,28,71,105,3,0,159,38,186,254,84,90,3,0,161,230,23,52,28,180,4,0,165,38,165,110,221,167,2,0,166,166,170,136,65,156,3,0,168,102,233,9,182,232,2,0,168,102,142,215,197,244,2,0,170,230,81,13,232,131,4,0,172,38,220,79,77,15,4,0,176,38,207,205,26,3,2,0,178,166,36,220,248,91,2,0,178,230,64,85,8,93,2,0,179,230,204,99,78,60,2,0,185,166,71,15,234,1,4,0,187,38,35,225,53,31,2,0,188,38,31,74,157,18,3,0,188,230,86,225,238,45,3,0,188,38,102,119,245,102,3,0,189,230,107,190,204,40,2,0,194,102,23,192,232,171,2,0,195,230,133,194,116,193,2,0,196,38,34,178,56,86,3,0,197,230,100,147,133,117,2,0,199,166,33,157,133,218,2,0,201,230,213,173,18,64,4,0,201,38,143,78,253,77,4,0,204,230,228,64,26,69,2,0,209,230,231,170,118,48,3,0,215,38,117,10,177,84,4,0,218,166,79,247,2,203,2,0,218,166,9,130,217,225,3,0,218,102,41,171,105,71,4,0,219,166,27,167,206,71,4,0,222,38,184,203,128,142,4,0,223,38,132,67,89,39,4,0,223,230,123,165,26,76,4,0,225,230,30,115,201,150,3,0,227,102,201,21,122,172,2,0,227,230,207,249,172,206,2,0,229,166,162,222,166,134,3,0,238,38,23,236,252,3,2,0,238,230,26,158,29,61,2,0,239,166,39,227,195,16,3,0,239,38,139,187,133,151,3,0,243,102,153,124,247,94,3,0,244,230,30,15,60,162,4,0,249,38,250,106,233,98,4,0,250,230,153,103,236,31,4,0,251,230,83,224,104,167,2,0,255,102,253,190,1,108,3,0,2,167,217,206,172,108,3,0,8,167,58,7,190,66,4,0,11,39,2,126,164,91,2,0,13,231,255,17,134,78,2,0,13,167,48,1,255,184,3,0,14,231,221,16,227,228,2,0,15,167,118,101,154,154,3,0,16,103,140,191,51,131,2,0,17,231,190,239,22,228,2,0,17,231,52,250,244,34,4,0,22,103,190,231,15,19,4,0,25,39,226,81,152,7,2,0,29,231,123,207,177,68,4,0,31,39,209,117,168,66,4,0,32,103,59,12,162,66,2,0,33,167,23,7,94,66,2,0,36,167,185,195,237,186,2,0,37,39,25,115,237,66,4,0,38,39,144,13,110,11,3,0,42,231,151,160,144,60,3,0,43,39,4,102,154,166,3,0,44,167,165,177,45,57,4,0,48,103,61,75,181,67,2,0,49,103,217,169,99,81,3,0,51,231,162,155,118,230,3,0,52,103,67,202,233,213,2,0,52,167,54,82,89,139,3,0,56,231,254,245,178,40,2,0,56,231,185,194,10,79,3,0,57,231,76,114,23,132,4,0,59,231,127,236,95,29,3,0,62,39,223,76,215,198,2,0,62,231,50,114,147,248,3,0,62,167,247,221,197,82,4,0,70,231,236,0,196,97,3,0,73,103,227,31,229,103,4,0,74,231,19,213,24,191,2,0,76,167,131,88,12,50,4,0,77,103,38,62,129,98,4,0,79,231,183,27,142,114,3,0,83,103,11,38,174,21,3,0,84,167,23,208,230,141,4,0,88,39,196,220,172,104,2,0,90,231,95,180,243,185,4,0,94,231,214,63,134,44,4,0,95,103,83,209,11,117,2,0,100,103,13,139,63,85,3,0,101,103,206,50,109,36,3,0,103,39,147,238,236,151,2,0,105,103,70,183,241,158,4,0,106,39,62,161,208,172,4,0,107,231,130,85,90,222,3,0,109,103,61,202,27,182,3,0,111,231,87,254,160,57,2,0,111,103,164,67,249,169,4,0,112,231,226,27,217,20,4,0,117,231,71,107,116,243,2,0,120,231,49,200,142,175,4,0,126,39,116,10,67,68,2,0,126,231,98,186,28,129,4,0,129,167,37,250,52,79,2,0,130,103,88,32,106,133,2,0,131,103,145,44,250,237,3,0,132,103,236,237,16,247,3,0,137,103,208,46,128,152,2,0,139,39,151,86,189,135,4,0,143,39,115,26,194,113,3,0,145,103,31,81,148,36,3,0,146,167,250,131,71,88,4,0,147,103,127,210,9,74,3,0,147,167,7,177,59,232,3,0,150,231,60,81,160,244,2,0,152,231,81,209,97,55,3,0,152,103,94,112,22,152,3,0,159,231,101,175,249,5,4,0,161,39,117,18,119,171,4,0,164,103,22,52,70,173,2,0,166,103,26,171,12,148,2,0,166,39,124,184,112,83,3,0,167,39,65,48,81,33,2,0,167,167,46,47,59,227,2,0,170,39,250,75,144,206,3,0,171,39,151,59,214,74,2,0,172,39,216,7,31,75,2,0,172,167,92,62,84,160,3,0,174,231,23,63,184,77,2,0,174,167,22,58,230,144,2,0,178,39,132,63,108,18,2,0,182,103,57,25,134,195,2,0,183,231,20,15,75,154,4,0,184,103,84,195,245,109,3,0,184,39,80,98,157,7,4,0,186,103,136,51,216,16,3,0,189,103,110,129,162,227,3,0,190,231,33,36,12,94,2,0,194,231,162,150,127,51,3,0,194,167,198,142,8,80,3,0,196,103,233,162,187,84,2,0,199,167,115,159,142,191,2,0,201,167,131,3,140,166,4,0,202,231,57,24,243,39,4,0,202,167,153,115,199,42,4,0,203,231,162,161,93,42,2,0,203,231,172,61,171,109,2,0,207,231,247,62,97,191,2,0,208,103,54,254,17,141,3,0,209,167,110,215,161,100,4,0,211,231,155,100,201,146,3,0,211,167,3,115,108,122,4,0,217,39,186,0,8,169,3,0,218,231,226,161,52,133,3,0,222,231,155,220,93,35,3,0,230,167,74,133,121,121,2,0,231,167,67,138,160,60,3,0,233,39,65,21,172,143,2,0,233,39,65,21,191,143,2,0,233,39,65,21,85,144,2,0,235,39,196,169,153,187,2,0,238,231,79,186,67,19,3,0,239,103,152,171,216,76,3,0,240,167,206,198,85,162,4,0,241,231,107,162,143,26,3,0,244,39,251,145,42,239,3,0,245,167,90,35,217,134,2,0,246,167,246,138,164,53,2,0,249,167,133,227,80,197,3,0,252,231,39,27,155,54,4,0,254,103,154,4,251,118,4,0,0,168,80,218,178,171,2,0,3,104,49,52,17,67,3,0,5,40,33,181,59,64,2,0,6,168,215,164,231,80,2,0,6,168,151,159,200,184,2,0,8,104,177,87,157,177,2,0,11,168,98,61,3,225,2,0,13,232,177,234,223,104,3,0,15,232,63,192,7,71,4,0,17,40,178,142,233,56,4,0,17,104,67,111,229,94,4,0,18,104,178,62,95,234,2,0,18,232,205,113,15,17,3,0,23,40,37,58,137,167,3,0,24,40,3,228,27,101,3,0,25,40,186,248,102,192,2,0,30,232,105,162,193,38,2,0,31,232,226,55,165,87,2,0,35,168,78,61,172,243,3,0,39,168,129,17,142,229,2,0,39,104,37,215,226,228,3,0,40,232,76,184,71,37,4,0,42,168,210,210,174,193,2,0,42,40,13,62,67,120,4,0,44,40,247,55,153,179,2,0,45,168,236,80,115,173,2,0,46,40,112,109,58,67,2,0,46,168,125,201,245,238,2,0,46,40,12,235,44,2,4,0,48,232,162,120,170,73,2,0,50,40,125,86,18,70,2,0,53,104,60,226,219,57,4,0,57,104,93,229,201,8,2,0,57,40,93,237,232,172,2,0,58,232,147,48,22,180,2,0,60,168,106,50,140,152,4,0,65,232,24,78,37,70,3,0,66,232,87,215,214,149,3,0,71,232,109,196,43,15,2,0,71,232,216,174,104,131,2,0,75,168,235,6,225,96,3,0,76,232,50,72,101,169,3,0,85,104,217,169,41,81,3,0,88,168,84,155,58,103,4,0,88,168,156,123,247,115,4,0,89,168,91,226,46,152,4,0,90,232,111,105,207,177,2,0,91,104,10,44,241,220,2,0,91,40,169,190,65,147,4,0,95,40,1,118,89,20,2,0,95,104,167,228,115,164,3,0,101,104,171,49,78,194,3,0,102,232,183,195,57,187,2,0,112,104,162,218,17,33,3,0,113,104,248,134,158,50,2,0,114,40,93,141,212,52,2,0,114,232,178,3,114,64,4,0,116,168,244,219,172,136,3,0,118,40,122,226,49,147,2,0,119,40,190,137,216,127,4,0,121,168,226,200,94,76,2,0,122,40,80,245,250,102,4,0,124,40,63,92,96,229,3,0,125,232,106,131,142,35,3,0,125,168,23,190,251,111,4,0,128,104,106,172,127,31,2,0,131,232,151,230,59,14,3,0,132,232,196,239,25,172,3,0,136,232,106,193,220,199,2,0,137,168,75,188,23,4,3,0,137,232,81,226,40,41,3,0,147,40,249,95,246,110,3,0,149,232,80,250,178,179,2,0,150,104,193,175,67,179,3,0,150,232,14,81,187,10,4,0,151,232,52,124,35,118,3,0,154,168,231,10,54,62,2,0,154,40,133,88,39,10,3,0,158,232,3,168,201,155,3,0,158,104,73,190,223,187,4,0,159,40,85,19,4,159,4,0,160,168,20,81,232,141,2,0,161,40,247,197,98,139,2,0,162,104,176,162,168,71,3,0,162,232,60,12,29,173,3,0,165,40,157,143,72,74,2,0,169,232,215,177,184,105,4,0,170,40,136,99,104,9,2,0,178,168,12,99,149,38,2,0,178,168,165,174,246,104,3,0,179,168,105,237,150,42,3,0,181,104,39,81,88,12,3,0,185,168,50,235,27,94,2,0,185,232,122,100,83,238,3,0,186,104,82,1,55,57,2,0,188,40,182,62,155,48,4,0,191,168,140,192,200,19,3,0,192,104,129,195,21,228,3,0,193,40,18,32,210,147,4,0,194,40,49,217,183,251,2,0,194,40,153,192,237,124,3,0,197,40,230,135,180,183,3,0,201,232,24,61,41,155,2,0,205,168,69,132,93,242,2,0,209,40,49,192,165,64,3,0,212,232,63,216,66,23,2,0,212,168,89,56,107,89,2,0,214,104,195,114,6,103,3,0,214,104,254,228,12,205,3,0,217,104,255,80,111,9,3,0,220,168,133,243,108,191,3,0,221,232,32,162,204,111,4,0,225,232,217,168,135,84,2,0,226,104,219,124,112,70,3,0,227,40,4,244,194,11,4,0,230,168,215,134,197,87,4,0,231,168,240,246,72,88,3,0,233,104,133,105,220,93,2,0,237,104,205,253,6,26,3,0,237,40,238,31,93,151,3,0,239,232,149,232,2,178,4,0,240,232,25,83,147,47,4,0,244,104,249,56,41,135,3,0,246,232,54,52,168,123,4,0,248,168,120,44,100,153,2,0,248,40,11,111,219,87,3,0,248,104,180,70,138,8,4,0,249,168,231,175,136,100,3,0,250,168,115,239,152,12,4,0,250,232,18,13,38,18,4,0,254,104,167,228,140,159,3,0,4,105,60,223,251,17,2,0,4,41,204,63,202,186,3,0,5,41,45,29,176,204,3,0,6,169,151,152,84,121,3,0,7,233,70,228,91,49,2,0,8,233,203,45,162,13,3,0,11,233,72,55,46,3,4,0,13,41,127,6,163,158,2,0,13,41,72,98,43,190,2,0,17,41,0,75,124,21,2,0,18,233,40,13,220,17,2,0,18,233,179,23,82,53,2,0,21,41,180,161,107,151,2,0,23,169,221,143,224,113,2,0,23,233,225,48,211,65,4,0,31,41,199,203,34,234,2,0,32,105,116,52,180,23,4,0,33,105,242,98,147,58,2,0,33,41,25,112,91,103,4,0,36,41,63,99,39,218,3,0,43,169,217,107,26,68,2,0,44,105,58,61,91,115,3,0,45,105,23,192,18,183,2,0,48,233,252,220,114,134,3,0,53,233,176,23,209,125,2,0,55,105,28,38,212,90,4,0,60,41,23,226,206,59,2,0,62,169,114,194,235,78,3,0,62,169,31,195,245,22,4,0,66,233,53,43,210,22,3,0,67,233,233,236,106,227,2,0,70,41,16,192,192,234,2,0,70,169,0,254,42,23,3,0,71,233,99,221,30,0,4,0,74,41,49,142,18,100,2,0,74,169,241,240,186,198,2,0,76,169,165,229,123,157,4,0,77,41,86,187,144,47,3,0,77,105,112,79,179,92,4,0,83,105,81,225,37,28,4,0,84,233,216,191,215,28,4,0,85,105,227,16,73,51,2,0,87,41,9,229,77,37,2,0,92,105,231,109,238,114,3,0,94,105,69,92,186,237,3,0,95,169,229,91,99,206,3,0,100,233,109,172,158,120,4,0,103,169,91,215,57,167,3,0,103,169,205,247,191,197,3,0,109,233,198,185,101,121,2,0,110,169,188,239,236,82,4,0,111,105,239,241,92,149,2,0,114,169,130,11,175,223,3,0,116,233,215,5,240,107,3,0,120,41,172,194,175,65,2,0,122,41,93,159,139,237,3,0,124,233,241,238,157,104,3,0,126,105,63,105,70,240,2,0,129,169,171,185,62,19,2,0,129,169,83,103,8,135,2,0,130,233,175,247,206,77,2,0,132,233,205,178,161,241,2,0,133,41,97,149,198,151,4,0,135,41,37,81,244,29,3,0,135,105,48,91,121,204,3,0,136,233,193,228,38,10,2,0,136,41,243,82,3,54,3,0,143,169,245,151,76,139,2,0,144,233,228,204,135,75,3,0,145,169,213,170,244,65,3,0,146,233,96,246,169,123,2,0,146,233,176,90,98,231,3,0,147,169,150,31,228,53,3,0,154,41,113,95,40,173,2,0,156,105,74,240,179,224,2,0,160,233,32,117,30,142,2,0,160,169,52,101,187,70,4,0,161,169,44,157,7,42,3,0,163,105,108,240,0,21,4,0,165,169,222,125,164,23,4,0,166,233,209,111,81,84,2,0,166,169,76,81,160,211,2,0,167,169,142,33,58,234,2,0,167,41,182,7,167,190,3,0,169,105,164,136,216,68,3,0,172,169,193,30,165,148,4,0,176,105,126,77,17,69,3,0,178,233,67,109,74,220,2,0,178,169,180,94,232,149,3,0,179,105,6,220,174,75,4,0,180,169,219,210,53,138,4,0,182,169,146,241,22,158,2,0,183,105,67,248,158,91,4,0,187,233,128,88,3,91,3,0,187,41,62,175,21,159,4,0,188,105,230,121,191,134,2,0,193,233,172,189,174,239,2,0,194,233,182,12,205,213,3,0,196,41,132,204,111,105,4,0,197,41,208,222,93,41,2,0,197,169,186,186,185,19,3,0,198,169,249,97,176,248,2,0,199,41,96,84,251,178,4,0,200,233,129,184,170,30,2,0,203,105,170,23,118,157,3,0,204,233,131,16,137,187,4,0,207,233,38,112,73,221,3,0,208,169,189,183,122,178,3,0,209,41,141,230,109,108,4,0,213,105,194,0,231,144,4,0,220,169,101,176,158,124,2,0,222,169,185,33,158,252,2,0,226,41,158,216,32,64,3,0,229,233,246,42,0,48,2,0,229,105,219,27,58,105,2,0,231,169,89,2,208,73,2,0,234,41,137,67,57,254,2,0,235,105,79,148,78,152,2,0,235,105,23,192,3,183,2,0,239,169,98,251,156,35,2,0,240,105,134,242,198,156,3,0,241,233,74,157,95,82,2,0,243,169,246,109,54,22,4,0,244,233,134,251,158,204,2,0,244,41,60,236,129,220,3,0,245,169,80,104,201,10,3,0,245,105,49,52,34,67,3,0,245,41,158,183,254,151,3,0,246,41,10,20,86,164,4,0,248,41,141,227,27,117,2,0,255,41,168,228,145,175,3,0,1,234,253,142,95,14,3,0,4,106,129,60,143,53,4,0,8,106,78,222,187,168,2,0,8,42,136,240,96,240,3,0,18,234,159,41,150,20,4,0,19,106,197,254,182,120,3,0,21,234,55,73,117,33,3,0,24,106,127,153,22,24,3,0,27,106,214,57,127,154,4,0,30,42,237,170,171,39,2,0,31,106,164,230,40,14,3,0,32,170,115,196,203,42,2,0,32,42,178,37,102,19,4,0,33,234,238,137,187,191,2,0,36,234,11,97,231,59,3,0,37,42,61,163,151,47,2,0,38,234,244,205,30,80,2,0,40,170,103,78,107,62,3,0,41,106,78,224,57,141,3,0,41,234,1,254,61,24,4,0,42,42,198,159,121,151,3,0,45,170,63,142,245,165,4,0,47,234,139,186,254,84,4,0,53,42,8,219,93,78,2,0,53,170,67,197,131,87,2,0,55,170,236,9,78,72,2,0,61,42,202,189,220,243,2,0,61,42,165,65,207,25,3,0,62,106,39,0,41,77,2,0,62,234,66,164,68,44,3,0,64,234,144,47,54,184,4,0,67,234,23,81,144,90,3,0,68,234,159,104,202,92,4,0,70,42,5,55,20,130,2,0,72,170,161,22,119,105,2,0,78,170,165,164,151,147,3,0,86,42,180,102,183,138,3,0,88,234,162,13,64,53,3,0,88,170,60,12,158,173,3,0,89,106,162,188,1,50,3,0,90,234,35,102,217,151,2,0,91,170,101,128,171,58,2,0,94,106,163,190,9,173,3,0,96,42,99,195,143,171,2,0,96,106,98,70,205,51,4,0,99,106,190,130,2,106,4,0,100,170,170,128,69,22,4,0,103,106,129,203,188,65,4,0,108,234,149,243,27,47,4,0,109,106,228,54,85,79,3,0,117,106,220,13,2,229,3,0,118,170,84,249,9,235,2,0,118,106,31,143,77,101,3,0,119,106,156,160,111,60,3,0,120,42,89,35,168,202,3,0,122,106,208,184,198,170,3,0,123,42,26,172,187,148,3,0,126,170,82,81,86,50,4,0,131,170,119,226,151,41,2,0,131,234,133,154,229,51,2,0,131,106,20,192,167,118,2,0,134,234,55,23,244,21,4,0,135,234,52,138,6,34,4,0,145,234,187,168,48,12,2,0,145,170,160,41,84,153,3,0,147,42,28,207,98,187,4,0,149,106,136,49,235,128,2,0,150,42,18,5,77,197,2,0,153,170,252,19,175,42,2,0,154,170,142,10,135,245,3,0,156,234,99,22,135,69,2,0,158,234,106,179,142,91,4,0,159,106,132,159,193,179,4,0,160,106,12,11,172,169,4,0,165,106,254,46,21,167,4,0,166,170,25,26,23,130,4,0,167,170,125,31,152,59,3,0,168,234,142,104,25,211,3,0,168,170,148,25,251,38,4,0,169,170,198,242,90,74,2,0,170,106,124,251,210,221,3,0,170,170,99,75,118,6,4,0,171,106,16,195,178,157,2,0,171,234,204,84,122,181,4,0,173,106,245,176,63,192,2,0,174,234,66,60,219,17,4,0,175,42,95,73,216,127,2,0,175,234,182,58,116,86,4,0,176,106,154,60,210,158,2,0,179,170,229,15,255,60,4,0,181,234,128,130,190,170,2,0,182,106,110,252,117,14,3,0,185,234,43,175,49,3,3,0,186,170,228,233,135,144,4,0,188,170,187,13,55,132,2,0,193,106,32,83,240,18,4,0,194,42,167,44,156,3,3,0,200,234,227,102,238,112,2,0,200,106,44,199,72,112,4,0,201,106,163,197,249,15,2,0,201,234,155,218,248,69,2,0,201,42,1,5,207,91,4,0,202,106,14,21,73,7,4,0,203,234,62,240,46,171,4,0,210,170,226,76,33,237,3,0,210,170,82,41,216,95,4,0,215,234,238,96,90,185,2,0,215,234,135,184,122,79,3,0,216,170,107,60,124,199,2,0,218,170,14,163,228,48,4,0,221,42,98,158,171,65,4,0,225,170,146,85,157,80,2,0,225,234,137,65,75,170,2,0,226,170,66,35,223,149,2,0,226,106,98,65,72,166,2,0,226,106,98,65,109,166,2,0,229,106,57,152,31,111,3,0,230,42,206,146,38,105,3,0,231,106,241,54,103,59,3,0,234,170,153,223,218,251,2,0,235,234,27,114,69,233,3,0,236,234,168,193,1,25,3,0,239,234,56,153,247,134,2,0,240,42,176,32,190,101,3,0,242,234,182,22,219,132,3,0,243,234,204,200,27,214,3,0,244,234,64,228,186,149,4,0,245,170,156,167,232,229,3,0,246,234,43,67,209,45,2,0,247,170,51,175,225,62,4,0,249,170,113,178,86,110,2,0,0,107,66,210,231,107,4,0,2,43,50,12,151,159,3,0,6,171,28,10,23,39,2,0,7,43,232,180,156,51,3,0,8,235,130,45,226,126,2,0,9,43,247,196,164,27,3,0,21,107,7,215,21,91,2,0,21,107,179,132,135,119,4,0,24,43,158,252,136,25,2,0,26,43,7,37,199,108,3,0,28,107,198,200,39,108,3,0,29,107,128,127,103,31,3,0,35,43,0,139,240,214,2,0,45,43,37,58,151,167,3,0,47,235,73,125,97,245,3,0,47,235,101,36,57,122,4,0,54,43,229,188,60,4,2,0,55,43,2,189,91,31,2,0,56,43,17,195,240,207,2,0,57,235,114,113,174,191,3,0,61,171,18,52,131,69,3,0,62,43,11,78,222,116,3,0,66,43,83,208,160,23,3,0,67,171,106,165,61,110,2,0,73,235,174,75,92,68,4,0,74,107,160,33,141,154,4,0,76,235,50,31,29,243,2,0,77,107,97,134,255,7,2,0,78,171,114,187,214,198,3,0,82,235,165,189,78,202,2,0,83,107,240,187,194,14,2,0,83,171,18,100,52,137,3,0,84,107,71,130,197,75,3,0,88,43,160,154,137,89,3,0,97,235,217,19,123,218,3,0,97,171,70,237,107,25,4,0,98,107,143,239,7,98,2,0,99,171,53,169,149,50,4,0,99,43,150,11,18,174,4,0,100,107,6,38,155,9,2,0,102,107,151,23,33,156,2,0,104,171,206,242,148,63,3,0,107,235,204,21,22,67,4,0,109,235,66,52,144,122,4,0,112,43,151,228,2,90,2,0,112,107,23,192,169,181,2,0,112,171,222,145,211,245,2,0,118,171,138,83,80,3,4,0,119,235,73,9,58,160,2,0,120,107,205,55,69,29,2,0,128,107,193,48,192,94,2,0,132,235,22,28,84,127,3,0,134,107,156,242,193,181,3,0,136,43,250,145,181,217,3,0,145,107,204,235,201,153,2,0,146,235,186,37,120,42,4,0,148,43,136,240,156,240,3,0,150,43,195,80,159,20,2,0,152,107,51,219,127,146,3,0,161,235,194,79,4,159,3,0,163,107,183,186,223,17,3,0,164,235,126,122,105,143,2,0,164,107,184,68,158,148,3,0,169,107,5,115,120,72,4,0,170,43,57,43,6,115,3,0,170,43,50,12,108,159,3,0,173,107,32,42,167,49,3,0,173,107,13,25,101,80,4,0,173,107,48,203,103,152,4,0,176,43,222,11,167,45,2,0,176,171,48,23,38,153,4,0,188,235,63,45,6,69,2,0,191,171,133,246,225,86,2,0,192,43,83,252,43,179,2,0,194,107,36,108,150,89,2,0,196,107,163,28,188,39,2,0,196,235,55,144,198,63,4,0,199,235,145,84,88,221,2,0,201,107,14,116,123,6,2,0,201,107,54,206,207,1,3,0,204,171,46,222,156,242,3,0,204,43,66,247,27,127,4,0,205,107,132,185,248,147,4,0,206,43,61,95,230,184,2,0,208,235,92,74,138,78,3,0,208,107,100,162,252,97,4,0,210,235,7,21,113,45,3,0,214,171,18,251,34,161,2,0,214,235,196,215,71,169,4,0,215,107,90,252,111,180,4,0,216,107,65,43,144,248,2,0,219,235,237,110,174,244,2,0,228,235,202,121,8,42,2,0,228,235,59,68,76,143,2,0,229,171,151,250,90,165,2,0,231,235,205,31,57,142,2,0,232,107,78,35,215,43,2,0,233,43,103,25,143,129,4,0,235,171,150,230,3,39,3,0,236,235,79,48,24,28,4,0,243,107,238,17,248,93,3,0,244,171,188,220,142,43,2,0,246,235,80,42,156,75,2,0,246,43,50,12,240,159,3,0,248,171,184,224,160,167,2,0,249,235,238,17,52,25,3,0,250,235,3,66,192,55,2,0,251,235,125,145,225,53,2,0,255,107,235,69,111,189,3,0,255,107,101,44,84,155,4,0,4,236,229,36,158,236,3,0,6,236,233,47,181,203,3,0,7,108,131,73,0,121,3,0,9,44,46,122,155,96,4,0,11,108,55,207,239,149,4,0,17,172,77,233,185,172,4,0,18,108,153,223,210,7,3,0,18,44,124,184,110,84,3,0,21,44,240,155,212,176,3,0,23,44,179,140,234,195,2,0,33,44,156,200,131,39,2,0,34,236,29,110,73,58,3,0,36,172,48,248,179,28,2,0,41,44,164,73,126,93,4,0,45,44,212,113,218,159,3,0,50,172,188,155,97,154,3,0,50,172,213,15,76,204,3,0,52,172,167,150,166,232,3,0,56,236,152,223,194,42,3,0,57,108,66,234,134,22,2,0,60,172,76,81,174,211,2,0,62,236,34,182,94,14,2,0,62,172,195,54,75,85,4,0,67,172,156,219,161,228,2,0,68,172,149,208,7,180,4,0,73,172,140,247,6,76,3,0,73,108,160,121,224,39,4,0,74,236,239,30,51,242,2,0,74,108,210,132,120,132,4,0,75,108,230,163,14,146,4,0,83,236,161,115,30,245,2,0,88,236,55,170,204,141,2,0,93,44,205,223,73,10,4,0,97,108,230,181,91,173,4,0,98,108,211,157,114,241,3,0,99,108,224,143,198,70,2,0,99,236,39,54,139,227,2,0,99,236,106,106,253,164,3,0,99,44,218,228,192,14,4,0,100,44,254,134,38,199,2,0,100,44,46,87,71,147,3,0,101,236,128,147,223,131,2,0,105,108,60,231,27,104,2,0,107,172,100,87,13,181,2,0,115,172,216,59,220,120,2,0,116,44,37,195,9,208,3,0,117,108,37,1,188,171,4,0,118,108,240,53,238,61,3,0,118,44,145,94,18,15,4,0,123,108,156,141,198,52,3,0,123,236,68,147,13,81,3,0,125,172,81,31,28,170,3,0,128,172,66,12,161,170,3,0,131,236,195,241,253,151,2,0,135,172,32,246,183,105,3,0,135,172,31,4,28,68,4,0,136,44,150,238,182,85,2,0,137,108,91,232,101,210,3,0,138,172,211,133,139,98,3,0,139,108,210,78,122,165,4,0,141,44,31,28,165,163,2,0,144,44,248,141,72,39,2,0,148,44,232,18,25,166,2,0,148,172,228,135,139,94,4,0,149,108,85,94,77,1,3,0,149,172,74,162,223,137,3,0,152,236,216,58,150,243,3,0,153,172,140,155,18,68,3,0,155,236,224,206,118,52,3,0,160,236,43,209,113,199,3,0,160,108,196,98,50,132,4,0,161,108,30,149,142,122,3,0,166,172,24,111,234,132,4,0,168,172,195,78,85,68,2,0,170,172,162,137,21,157,2,0,171,108,46,179,225,76,2,0,172,236,185,68,18,130,3,0,175,172,13,234,97,56,3,0,178,108,101,119,71,75,3,0,179,172,184,84,134,44,2,0,182,172,171,226,70,71,4,0,184,108,52,46,1,138,2,0,184,172,216,66,233,250,2,0,186,108,85,94,96,1,3,0,191,108,18,222,165,74,4,0,193,108,128,25,60,84,2,0,194,44,247,178,16,123,4,0,197,172,242,169,125,84,3,0,199,236,93,245,98,89,3,0,200,172,44,129,8,209,2,0,202,236,7,55,28,42,2,0,203,108,46,122,30,196,2,0,207,236,114,58,205,33,3,0,208,44,96,157,45,246,3,0,210,236,5,39,25,15,2,0,211,236,41,63,19,156,3,0,212,172,208,207,46,36,3,0,213,236,65,115,78,54,2,0,215,44,242,11,118,61,2,0,217,44,27,195,162,105,4,0,223,44,142,141,242,65,4,0,223,172,196,37,143,71,4,0,225,236,55,225,119,197,3,0,226,108,230,81,47,189,3,0,226,236,183,60,2,190,3,0,228,172,89,194,185,64,2,0,230,236,62,96,51,34,2,0,230,108,57,133,62,18,4,0,233,236,11,189,221,2,4,0,241,44,38,119,66,155,4,0,243,108,180,193,216,12,4,0,244,108,229,135,10,68,2,0,244,108,89,28,180,7,4,0,246,236,65,146,247,99,4,0,247,172,178,80,75,104,4,0,249,44,96,158,233,60,3,0,250,108,246,194,203,99,2,0,252,172,175,25,65,155,3,0,4,45,61,61,48,214,3,0,7,45,247,42,216,164,2,0,9,45,252,232,111,173,4,0,10,173,185,147,103,147,2,0,11,45,40,166,45,6,2,0,11,109,116,207,107,169,4,0,18,45,47,151,106,51,3,0,19,173,111,149,231,187,3,0,22,173,87,7,57,99,3,0,22,109,142,150,246,145,4,0,23,45,23,192,49,183,2,0,23,45,25,192,156,188,2,0,23,109,126,204,109,13,3,0,27,45,166,125,31,48,4,0,27,173,121,241,159,98,4,0,31,237,158,216,32,178,4,0,32,237,171,252,145,240,2,0,33,237,134,241,251,103,4,0,34,109,112,151,130,107,3,0,36,237,32,205,163,0,4,0,41,173,226,231,155,138,4,0,46,173,145,36,249,124,2,0,48,45,48,153,135,160,4,0,50,237,193,180,158,77,3,0,54,45,217,169,47,176,3,0,58,45,102,199,230,93,4,0,61,45,41,68,53,182,2,0,63,237,82,157,86,112,3,0,64,45,242,38,144,4,3,0,64,237,113,58,109,34,3,0,65,109,136,74,146,218,3,0,67,173,97,53,85,198,3,0,70,45,125,129,145,95,4,0,73,45,135,251,147,65,3,0,76,109,204,235,40,96,3,0,78,45,83,208,181,23,3,0,80,109,200,125,100,28,4,0,83,109,25,125,233,4,2,0,83,109,204,235,39,154,2,0,83,109,204,235,56,154,2,0,83,109,204,235,73,235,2,0,83,109,204,235,89,235,2,0,83,109,204,235,106,235,2,0,83,109,204,235,131,235,2,0,83,109,204,235,148,235,2,0,83,109,204,235,167,235,2,0,83,109,204,235,202,235,2,0,83,109,204,235,228,235,2,0,83,109,204,235,247,235,2,0,83,109,204,235,16,236,2,0,83,109,204,235,40,236,2,0,83,109,204,235,57,236,2,0,83,109,204,235,73,236,2,0,83,109,204,235,96,236,2,0,83,109,204,235,114,236,2,0,83,109,204,235,135,236,2,0,83,109,204,235,155,236,2,0,83,109,204,235,183,236,2,0,83,109,204,235,203,236,2,0,83,109,204,235,228,236,2,0,83,109,204,235,243,236,2,0,83,109,204,235,5,237,2,0,83,109,204,235,24,237,2,0,83,109,204,235,54,237,2,0,83,109,204,235,71,237,2,0,83,109,204,235,90,237,2,0,83,109,204,235,106,237,2,0,83,109,204,235,123,237,2,0,83,109,204,235,137,237,2,0,83,109,204,235,156,237,2,0,83,109,204,235,174,237,2,0,83,109,204,235,192,237,2,0,83,109,204,235,209,237,2,0,83,109,204,235,223,7,3,0,83,109,204,235,251,7,3,0,83,109,204,235,25,8,3,0,83,109,204,235,48,8,3,0,83,109,204,235,79,8,3,0,83,109,204,235,118,8,3,0,83,109,204,235,155,8,3,0,83,237,207,98,255,225,3,0,84,45,36,211,28,102,3,0,86,237,22,254,55,28,3,0,89,173,214,228,153,212,3,0,90,45,201,115,183,134,4,0,92,237,17,246,136,47,2,0,93,45,131,66,212,32,2,0,93,237,164,186,240,116,4,0,96,237,216,107,8,243,2,0,97,173,156,177,31,29,4,0,97,173,126,220,171,45,4,0,98,173,250,81,228,173,4,0,99,173,222,189,103,85,3,0,102,173,177,174,45,219,2,0,104,109,94,153,221,78,4,0,105,173,147,182,213,44,4,0,108,237,93,129,248,51,2,0,109,109,61,135,54,43,2,0,110,237,52,102,194,229,3,0,114,45,113,140,181,81,3,0,118,109,36,255,83,46,2,0,119,173,23,88,60,148,4,0,123,45,61,18,253,76,3,0,124,173,12,236,89,253,3,0,126,45,109,113,54,109,2,0,126,237,154,114,50,168,2,0,126,237,150,77,170,172,3,0,128,237,190,65,142,167,4,0,129,173,7,33,152,232,2,0,129,109,216,177,239,135,3,0,142,173,246,128,173,253,3,0,151,237,200,217,146,230,3,0,152,173,22,199,38,45,3,0,152,237,48,141,171,59,3,0,156,109,243,25,88,182,3,0,158,237,164,197,196,76,2,0,158,45,101,221,102,87,3,0,158,237,202,105,110,146,4,0,166,45,94,55,15,43,2,0,167,237,183,247,132,108,4,0,168,173,54,81,150,249,2,0,169,173,39,81,0,18,3,0,171,237,102,214,214,89,2,0,172,109,228,67,204,70,4,0,173,237,203,19,110,103,4,0,176,173,172,16,145,2,2,0,176,173,207,45,102,97,3,0,181,237,147,202,96,23,2,0,182,45,89,19,183,180,3,0,183,173,73,70,174,181,4,0,186,109,164,174,135,14,4,0,194,109,245,235,64,100,3,0,198,109,99,26,217,219,3,0,200,237,143,13,219,92,2,0,203,173,173,126,236,180,3,0,203,45,6,161,106,6,4,0,207,45,7,139,237,116,2,0,210,109,130,232,249,148,4,0,212,109,134,6,73,102,2,0,215,237,203,109,141,19,4,0,221,45,135,230,181,50,4,0,223,173,217,9,222,111,4,0,224,45,69,169,165,24,2,0,226,109,38,56,222,109,3,0,226,237,252,28,175,16,4,0,227,237,90,207,124,206,2,0,229,109,58,169,44,187,4,0,230,45,1,82,77,13,4,0,231,45,166,126,178,135,2,0,231,237,224,145,223,109,4,0,236,109,110,85,72,125,4,0,237,45,232,80,81,97,4,0,239,45,24,192,5,65,2,0,240,45,236,231,37,128,4,0,241,173,224,193,185,223,2,0,243,45,129,30,22,2,4,0,248,45,155,47,95,75,4,0,249,237,73,168,96,180,4,0,252,237,218,63,211,36,4,0,253,173,247,143,32,224,3,0,4,46,156,154,110,177,2,0,4,238,6,122,196,222,3,0,7,174,159,200,224,14,4,0,9,174,48,121,166,237,3,0,10,110,159,178,192,117,4,0,12,46,10,118,251,25,2,0,13,46,150,217,160,152,4,0,19,174,141,210,17,142,3,0,19,174,141,210,48,142,3,0,19,174,141,210,72,142,3,0,23,46,183,130,49,175,3,0,26,238,41,54,71,251,3,0,28,110,154,147,131,251,3,0,29,174,96,79,83,126,2,0,30,110,119,171,187,245,2,0,30,46,124,184,176,84,3,0,33,46,232,125,182,76,2,0,33,238,129,61,155,100,3,0,36,238,222,191,3,181,3,0,38,238,17,188,23,0,3,0,43,238,102,44,144,243,2,0,44,238,113,101,146,3,2,0,44,110,242,38,39,88,2,0,45,238,139,99,69,193,3,0,49,238,19,110,126,12,4,0,51,46,183,138,41,33,3,0,52,238,191,80,229,229,2,0,53,110,74,117,17,57,2,0,55,46,252,3,105,108,3,0,55,110,42,2,215,41,4,0,58,238,12,69,167,103,2,0,61,238,185,205,136,53,2,0,61,46,253,191,199,119,2,0,64,46,18,165,111,158,2,0,67,110,96,100,169,42,4,0,67,174,124,47,58,126,4,0,68,174,216,66,9,251,2,0,68,238,178,37,193,107,3,0,69,110,21,225,162,228,3,0,72,238,45,32,235,44,2,0,78,46,230,110,44,102,3,0,78,238,15,82,229,151,4,0,79,110,121,176,170,210,3,0,83,174,216,66,249,250,2,0,84,110,191,120,42,129,4,0,85,110,139,14,160,154,2,0,86,174,144,78,18,54,2,0,86,110,43,175,128,113,3,0,87,46,44,110,143,63,4,0,93,110,192,156,158,155,3,0,95,238,177,255,60,150,2,0,97,110,241,23,10,127,3,0,98,174,123,237,219,135,3,0,98,238,82,181,168,63,4,0,98,46,63,228,206,136,4,0,100,110,186,171,159,79,3,0,111,174,76,81,1,204,2,0,112,110,161,154,209,175,2,0,112,46,103,84,48,61,3,0,112,174,107,43,91,107,4,0,113,174,5,24,13,217,2,0,115,46,183,94,182,212,3,0,115,46,72,212,69,173,4,0,118,46,178,148,174,210,2,0,123,238,176,248,10,148,3,0,123,46,221,117,237,160,3,0,126,174,76,81,226,203,2,0,134,238,131,108,11,187,3,0,140,46,161,189,97,150,2,0,141,238,206,167,136,169,2,0,144,110,94,153,241,78,4,0,152,110,87,191,34,172,4,0,153,46,151,71,201,2,4,0,162,110,184,187,192,177,4,0,163,238,245,178,165,130,2,0,163,46,104,1,30,148,2,0,164,110,149,144,16,34,3,0,164,174,74,11,92,59,4,0,170,174,240,32,7,12,3,0,171,110,181,229,247,9,3,0,171,46,6,104,144,31,4,0,172,110,74,169,113,100,4,0,173,174,155,172,89,118,4,0,175,110,152,51,54,84,4,0,175,238,105,224,241,139,4,0,176,174,1,96,167,121,2,0,177,110,131,57,247,70,2,0,182,174,49,21,78,234,2,0,183,46,175,246,174,152,2,0,190,238,141,197,119,112,4,0,192,174,208,175,192,115,3,0,194,110,35,155,185,169,2,0,194,110,196,61,249,223,3,0,196,174,170,126,167,246,3,0,201,174,51,149,93,186,2,0,201,238,122,174,105,178,3,0,202,46,34,68,56,64,4,0,203,238,19,41,200,35,2,0,203,46,198,74,202,86,2,0,207,174,34,168,6,61,3,0,209,238,141,93,6,179,3,0,210,110,195,180,68,190,3,0,213,174,161,61,86,120,2,0,215,110,54,38,250,236,3,0,219,174,104,0,36,151,4,0,222,110,40,75,239,136,2,0,222,174,240,157,125,46,3,0,223,174,1,191,201,51,2,0,223,110,43,248,183,103,2,0,223,174,23,156,44,205,2,0,227,110,30,100,29,168,3,0,228,238,245,160,173,64,4,0,230,174,18,11,47,24,3,0,232,174,182,118,32,160,3,0,232,174,124,15,235,133,4,0,233,238,103,254,192,162,4,0,237,46,68,104,87,124,3,0,246,174,12,50,150,132,4,0,247,174,224,81,183,230,2,0,250,238,187,171,162,32,4,0,250,238,187,171,204,32,4,0,252,238,93,188,122,246,2,0,0,175,46,194,149,96,3,0,3,175,232,210,90,99,2,0,5,111,18,242,92,143,4,0,7,47,179,81,226,24,2,0,11,175,164,149,181,63,2,0,12,111,163,173,151,16,4,0,15,239,225,59,79,41,2,0,16,239,121,84,178,52,3,0,18,47,171,72,39,21,3,0,18,111,193,62,94,1,4,0,18,175,231,12,82,9,4,0,21,239,191,36,186,131,2,0,23,111,61,117,47,126,2,0,23,47,12,197,13,75,4,0,24,239,26,96,152,221,2,0,24,175,95,12,130,123,4,0,24,239,88,239,133,178,4,0,26,239,236,91,69,75,2,0,28,111,0,64,32,121,2,0,29,111,96,157,159,81,2,0,33,111,54,123,149,43,4,0,33,239,223,235,99,55,4,0,35,47,157,31,194,164,4,0,40,239,218,166,113,58,4,0,41,111,191,2,98,36,4,0,41,175,140,78,134,112,4,0,49,111,18,163,95,67,3,0,51,111,246,195,80,217,3,0,52,47,239,182,169,190,2,0,52,239,98,205,43,141,4,0,55,111,147,97,1,99,2,0,60,47,87,144,123,202,3,0,62,47,142,137,149,40,2,0,65,47,72,12,132,162,3,0,67,111,56,201,200,93,2,0,68,47,41,177,189,73,2,0,69,239,253,55,181,100,4,0,73,175,245,250,97,29,4,0,76,47,172,64,180,41,4,0,76,47,33,178,198,44,4,0,79,175,188,133,47,71,3,0,80,175,66,51,167,244,3,0,84,111,78,96,142,205,3,0,85,239,49,108,242,79,4,0,88,111,9,122,186,37,3,0,89,239,26,156,1,211,3,0,90,47,238,255,252,60,2,0,90,175,1,132,201,153,3,0,91,239,164,32,93,24,4,0,95,239,102,227,57,45,4,0,96,47,213,187,99,105,3,0,100,47,224,213,230,165,2,0,104,175,166,197,171,70,2,0,105,111,198,216,96,111,3,0,108,175,3,221,202,231,2,0,109,175,150,37,49,199,3,0,111,239,111,165,151,61,2,0,113,175,241,95,149,58,4,0,114,47,43,72,72,67,4,0,120,175,210,221,224,108,4,0,122,239,104,139,111,84,4,0,123,111,65,164,96,37,2,0,124,239,204,249,254,94,2,0,128,111,208,167,71,43,4,0,129,239,118,1,79,116,2,0,129,175,182,120,239,188,3,0,129,111,192,197,163,252,3,0,129,47,202,217,90,70,4,0,130,47,255,79,145,39,2,0,130,175,240,217,179,107,3,0,131,111,30,6,213,78,2,0,135,239,203,246,21,49,2,0,141,47,208,98,245,112,4,0,145,111,40,161,235,118,2,0,145,175,166,25,156,148,2,0,146,111,245,177,12,199,2,0,146,111,60,81,113,242,2,0,148,47,186,107,241,212,3,0,149,175,30,221,103,202,2,0,149,111,3,149,76,172,4,0,152,175,106,61,151,145,4,0,153,47,147,153,228,64,4,0,153,175,146,204,152,185,4,0,155,175,167,228,31,171,3,0,157,175,242,29,53,97,3,0,157,239,160,65,96,223,3,0,160,239,11,224,149,28,2,0,162,239,188,247,210,150,2,0,164,239,177,64,156,25,2,0,165,239,169,233,53,112,3,0,165,175,75,0,201,129,4,0,166,175,121,130,21,163,3,0,170,239,95,241,44,166,3,0,171,111,179,19,193,151,3,0,173,239,166,82,246,113,3,0,177,239,70,183,72,253,2,0,182,239,10,167,201,81,2,0,187,47,102,15,241,186,3,0,189,47,132,92,104,56,4,0,191,175,173,23,208,75,4,0,195,239,155,34,73,119,2,0,197,47,202,196,188,113,2,0,200,239,216,47,149,144,3,0,201,111,157,106,235,89,2,0,201,47,248,206,52,54,4,0,203,239,106,49,100,136,3,0,205,47,76,33,228,78,2,0,205,175,4,24,38,90,4,0,206,239,158,200,190,88,4,0,210,111,201,178,154,97,2,0,211,111,194,154,73,134,3,0,214,175,76,81,84,211,2,0,214,239,87,56,142,58,3,0,214,175,58,82,49,163,3,0,215,47,28,2,188,129,2,0,219,47,11,1,127,198,2,0,223,111,242,20,132,7,3,0,223,47,237,249,111,184,3,0,224,175,208,52,97,235,3,0,230,239,198,6,7,179,2,0,233,47,55,157,201,88,3,0,234,47,216,136,119,230,2,0,235,239,86,255,112,252,2,0,236,239,127,113,90,131,2,0,237,47,206,215,121,78,4,0,239,47,16,197,134,204,3,0,244,47,183,118,166,95,4,0,245,111,43,47,117,196,3,0,246,111,118,62,255,118,2,0,246,111,251,187,111,49,3,0,252,175,232,106,198,147,3,0,254,175,104,0,147,45,4,0,254,175,104,0,160,45,4,0,255,239,201,18,63,44,2,0,7,48,171,172,107,232,3,0,9,176,105,41,57,179,4,0,10,240,97,244,66,195,3,0,13,176,56,18,154,212,2,0,16,112,151,253,201,58,3,0,20,240,178,118,212,3,3,0,22,48,108,53,0,168,4,0,23,240,87,74,144,17,2,0,30,112,189,123,35,10,4,0,32,176,212,66,26,80,3,0,32,176,166,16,226,65,4,0,35,240,157,19,100,72,2,0,38,176,72,30,205,31,3,0,38,112,67,168,3,249,3,0,41,48,5,225,248,117,2,0,43,176,104,0,89,202,3,0,49,112,26,146,210,88,4,0,53,48,82,14,223,224,2,0,55,240,246,49,84,60,3,0,55,240,114,169,161,142,3,0,56,112,167,35,76,40,3,0,58,176,104,0,114,225,3,0,59,112,185,140,18,177,4,0,60,240,55,142,34,87,3,0,63,48,254,94,123,215,3,0,65,48,68,24,89,199,2,0,68,48,116,43,175,100,3,0,68,240,129,163,199,72,4,0,69,48,34,74,141,15,2,0,69,176,173,154,255,179,2,0,69,48,83,193,88,120,4,0,71,112,116,229,7,20,2,0,71,48,42,138,90,76,3,0,71,48,246,253,62,39,4,0,73,240,120,174,69,162,2,0,76,48,174,36,68,174,4,0,77,176,187,16,51,126,3,0,80,176,95,134,219,138,4,0,83,240,224,108,208,196,3,0,83,112,227,235,208,217,3,0,85,240,163,1,40,148,4,0,87,112,20,28,66,80,2,0,87,240,24,118,43,89,2,0,87,112,207,235,3,134,2,0,87,240,190,146,133,224,2,0,88,48,136,45,140,1,3,0,91,112,187,99,255,70,3,0,92,176,87,124,116,39,2,0,95,48,170,216,172,71,2,0,97,240,206,69,141,40,4,0,102,48,44,160,140,208,3,0,103,48,184,207,209,79,3,0,105,176,14,164,207,121,4,0,106,112,83,144,208,179,4,0,107,240,113,25,254,205,2,0,107,176,32,207,123,151,4,0,109,176,159,136,88,132,3,0,109,112,37,137,48,31,4,0,112,48,208,136,210,217,2,0,114,48,177,7,253,41,4,0,118,48,160,28,176,46,4,0,119,48,163,197,29,188,3,0,120,240,217,63,148,9,3,0,125,176,224,60,87,168,3,0,128,240,161,34,209,84,2,0,128,112,166,130,105,100,2,0,132,176,246,112,74,10,3,0,135,176,139,42,254,216,3,0,137,176,164,17,220,175,4,0,142,48,151,75,173,41,3,0,144,112,65,136,61,152,2,0,144,48,246,238,97,116,4,0,145,240,85,77,243,92,2,0,147,112,29,206,152,164,4,0,149,48,252,255,52,106,3,0,150,48,33,234,155,34,3,0,153,176,17,235,226,69,2,0,155,240,14,192,132,12,2,0,155,176,195,127,229,121,3,0,155,48,16,201,202,129,3,0,157,48,191,181,73,94,2,0,157,48,108,97,215,222,3,0,161,48,19,22,206,164,4,0,162,48,246,166,34,78,4,0,167,48,253,132,190,86,3,0,171,240,26,17,68,102,3,0,173,112,76,180,129,9,3,0,178,48,158,178,243,21,3,0,178,48,211,56,176,154,3,0,178,176,75,54,44,202,3,0,179,112,126,167,127,61,3,0,181,48,240,4,127,242,2,0,181,176,11,149,63,25,4,0,183,176,245,252,173,155,4,0,187,112,192,162,252,29,4,0,190,112,207,195,147,158,2,0,194,176,94,140,3,191,2,0,194,112,27,169,208,63,3,0,195,112,0,23,146,91,3,0,195,240,141,14,213,113,3,0,195,112,181,99,223,173,3,0,196,176,57,8,29,121,4,0,200,176,191,194,152,195,3,0,203,48,43,123,223,37,3,0,203,112,175,129,56,77,3,0,204,176,200,201,14,64,2,0,204,48,27,146,131,180,3,0,205,112,208,122,63,38,2,0,205,240,18,158,96,152,2,0,205,176,5,146,213,21,4,0,218,48,81,184,68,174,3,0,218,48,8,111,204,139,4,0,219,176,249,1,2,164,3,0,224,240,213,7,198,112,4,0,226,176,44,125,223,16,2,0,226,240,41,176,22,231,3,0,228,176,30,147,97,65,2,0,229,112,89,22,70,122,4,0,232,112,150,45,23,158,3,0,233,240,230,92,184,12,4,0,236,176,202,140,235,177,4,0,237,240,165,169,82,238,2,0,241,48,153,231,221,200,3,0,244,112,149,101,17,149,2,0,245,176,170,174,80,124,2,0,247,48,124,54,237,201,3,0,248,240,143,49,52,88,4,0,0,113,1,245,24,146,2,0,1,177,21,132,167,97,2,0,1,177,217,113,191,84,3,0,1,113,195,186,23,128,3,0,3,49,189,28,33,193,3,0,5,177,92,57,214,163,2,0,5,241,107,94,60,49,3,0,5,113,91,146,191,73,3,0,5,113,181,33,159,158,4,0,7,241,203,160,21,40,4,0,9,49,35,133,158,118,3,0,13,241,104,199,107,168,3,0,13,49,24,2,64,111,4,0,15,49,46,179,228,109,2,0,15,113,139,140,227,182,3,0,17,241,152,41,242,150,4,0,20,241,26,96,132,221,2,0,22,177,55,242,136,240,3,0,25,177,112,6,196,30,2,0,25,49,24,192,9,169,2,0,27,241,102,90,76,253,3,0,29,241,122,36,189,109,2,0,32,49,33,47,162,32,2,0,33,113,209,32,185,93,3,0,35,241,98,122,241,32,2,0,35,177,100,242,14,66,3,0,41,113,6,76,125,106,3,0,41,113,255,240,199,140,4,0,41,241,91,217,187,155,4,0,42,113,135,136,76,111,4,0,43,113,230,173,177,192,3,0,43,113,242,111,69,227,3,0,44,49,9,192,244,224,2,0,47,177,104,0,105,116,2,0,51,113,50,246,131,244,2,0,54,241,30,7,243,185,3,0,55,113,79,112,189,5,4,0,56,177,253,76,87,73,2,0,56,177,153,9,15,151,4,0,63,241,206,157,202,71,3,0,66,241,247,56,6,122,4,0,70,241,41,17,232,162,2,0,71,177,215,22,215,180,4,0,75,113,67,32,179,6,3,0,76,241,242,59,58,212,2,0,88,49,84,31,41,63,2,0,90,241,31,213,91,91,3,0,96,113,187,26,190,163,4,0,99,177,31,72,111,93,4,0,102,113,41,191,25,111,2,0,102,49,100,15,134,141,2,0,105,49,108,97,224,2,2,0,105,49,168,49,76,65,2,0,105,241,17,138,204,67,3,0,107,49,179,155,61,122,3,0,108,49,186,189,14,55,3,0,108,177,223,9,6,28,4,0,109,49,108,107,6,223,2,0,112,177,142,211,49,220,2,0,112,49,78,109,244,58,4,0,114,177,226,147,129,172,3,0,115,241,164,175,193,140,2,0,115,241,237,108,70,195,2,0,121,177,225,114,149,188,3,0,126,113,127,68,38,175,2,0,126,241,29,136,246,245,3,0,128,113,146,204,182,205,2,0,128,113,66,94,204,83,4,0,129,241,110,41,30,176,4,0,130,177,194,249,102,129,4,0,132,177,210,170,227,49,3,0,132,241,87,60,16,174,3,0,136,113,22,212,83,52,2,0,139,49,76,202,128,155,2,0,142,177,128,135,110,24,3,0,143,241,140,41,117,96,4,0,144,241,7,47,131,210,2,0,144,177,65,196,44,172,3,0,150,113,76,46,229,205,3,0,151,49,136,160,239,70,3,0,151,113,81,72,169,186,4,0,152,241,235,204,76,5,2,0,155,49,221,125,20,131,3,0,157,113,160,254,91,63,2,0,158,49,53,25,145,16,3,0,158,113,52,142,65,9,4,0,162,49,50,12,248,165,3,0,167,113,235,37,7,83,3,0,171,49,173,11,127,249,2,0,171,113,37,81,127,32,3,0,177,177,68,82,68,87,2,0,177,113,227,119,123,176,4,0,180,177,12,90,143,17,4,0,183,241,142,160,116,68,3,0,184,49,212,129,14,82,2,0,185,177,55,185,23,89,3,0,189,49,148,168,75,100,2,0,189,177,245,120,33,202,3,0,190,113,217,15,165,201,2,0,190,113,209,237,94,253,2,0,194,177,148,197,234,60,2,0,197,241,173,95,183,128,3,0,198,177,176,87,133,177,2,0,200,241,130,241,68,33,3,0,202,177,107,58,57,144,3,0,202,241,90,158,112,91,4,0,204,49,210,235,250,159,2,0,206,177,46,28,158,1,4,0,207,113,79,157,245,81,4,0,208,177,159,32,118,13,2,0,208,49,148,112,188,233,2,0,209,241,194,103,50,227,3,0,209,113,39,183,88,130,4,0,210,113,162,79,244,138,4,0,216,241,254,5,59,114,3,0,216,113,33,135,58,59,4,0,219,177,58,128,187,41,2,0,219,49,24,192,235,161,2,0,224,113,153,18,19,62,3,0,226,177,208,211,129,137,3,0,227,49,93,71,195,182,3,0,227,113,139,176,71,40,4,0,229,177,72,82,250,35,4,0,230,241,238,184,163,131,3,0,234,113,120,233,226,165,3,0,241,241,116,248,27,133,4,0,242,49,179,111,194,99,4,0,243,113,143,59,0,198,3,0,254,49,36,190,109,141,4,0,255,241,36,61,228,226,2,0,255,113,134,121,32,6,4,0,4,178,167,228,134,173,3,0,7,178,250,138,10,14,2,0,7,242,71,232,86,79,4,0,12,178,248,73,151,92,2,0,13,178,141,140,181,226,2,0,13,242,157,232,147,146,4,0,14,114,95,49,158,157,2,0,16,114,21,169,235,170,3,0,17,242,30,165,203,193,3,0,17,114,102,158,30,254,3,0,18,178,107,80,153,22,4,0,19,242,234,229,52,89,4,0,25,242,55,136,252,48,2,0,27,50,206,213,23,76,3,0,32,114,210,151,154,18,2,0,33,178,7,42,26,232,3,0,35,242,189,247,150,77,2,0,37,50,224,19,249,49,4,0,40,114,155,176,136,159,4,0,43,114,116,147,186,152,2,0,43,178,239,143,127,83,3,0,44,242,205,199,41,53,3,0,44,178,118,109,46,97,4,0,45,178,57,79,132,166,2,0,47,114,33,167,198,109,3,0,47,242,143,99,219,84,4,0,49,114,55,103,35,19,4,0,53,114,228,230,235,17,2,0,53,242,31,191,4,37,3,0,58,50,61,6,67,124,4,0,62,178,179,228,162,14,3,0,67,114,215,31,159,150,2,0,67,242,113,213,183,201,3,0,73,114,248,18,206,246,2,0,81,114,195,191,158,89,4,0,88,114,95,24,111,112,3,0,89,114,187,39,51,251,3,0,90,114,106,58,180,53,2,0,91,242,224,92,229,145,2,0,91,50,245,151,5,189,3,0,92,114,104,200,22,132,2,0,98,178,162,233,44,232,2,0,99,114,223,225,166,110,2,0,101,242,248,80,93,134,2,0,102,242,227,75,155,114,2,0,104,178,143,110,139,124,2,0,110,50,192,59,235,7,2,0,110,242,187,173,248,164,2,0,112,50,213,232,90,227,3,0,113,242,218,23,212,214,2,0,115,114,71,218,242,76,4,0,118,114,26,96,17,98,4,0,119,114,118,147,11,68,4,0,120,178,241,121,79,239,3,0,122,114,237,150,224,35,2,0,123,242,98,21,250,4,2,0,128,50,237,45,241,87,3,0,129,242,49,44,72,63,2,0,131,242,191,213,5,7,2,0,132,114,38,205,206,31,2,0,133,114,66,172,238,60,4,0,135,50,25,8,85,16,3,0,135,50,29,159,109,11,4,0,138,50,219,128,162,62,2,0,142,114,89,148,194,149,3,0,145,114,233,213,68,107,3,0,152,242,84,51,244,64,2,0,152,178,114,108,112,204,2,0,152,178,150,170,81,80,3,0,159,114,49,104,7,66,2,0,162,242,168,165,77,76,4,0,165,114,82,59,162,107,4,0,166,242,186,196,204,120,3,0,166,178,175,204,141,162,4,0,167,178,152,160,239,51,3,0,175,178,152,160,16,52,3,0,178,242,239,21,98,65,3,0,179,242,99,127,200,203,3,0,179,114,81,169,245,63,4,0,188,114,172,221,2,177,2,0,188,178,255,121,96,116,3,0,198,114,31,228,131,85,2,0,200,178,189,79,226,249,2,0,200,50,29,62,82,139,4,0,202,178,191,86,31,223,2,0,207,50,127,138,126,13,4,0,208,50,116,221,206,36,2,0,212,50,175,136,12,184,2,0,215,50,111,97,28,118,2,0,217,114,150,230,199,244,3,0,218,114,159,149,189,247,3,0,227,178,7,195,81,212,2,0,228,114,152,124,36,95,3,0,228,178,80,185,131,87,4,0,230,242,219,214,58,63,2,0,230,178,43,75,94,205,3,0,230,50,160,56,239,135,4,0,231,242,212,120,187,249,2,0,231,178,177,198,216,145,4,0,232,50,232,70,25,98,3,0,234,50,57,187,189,13,3,0,236,242,125,153,142,76,2,0,237,178,37,81,159,32,3,0,238,242,46,28,3,166,2,0,239,242,200,84,101,155,4,0,240,114,59,184,92,62,3,0,242,242,247,83,168,144,2,0,244,242,136,64,114,193,3,0,246,242,51,144,193,126,4,0,246,178,122,217,7,160,4,0,247,178,208,203,197,216,3,0,253,242,225,247,183,62,4,0,253,242,103,81,40,75,4,0,255,50,208,232,80,41,3,0,3,243,114,167,15,9,2,0,3,179,238,108,170,195,2,0,3,51,3,35,225,166,3,0,4,51,149,22,73,48,2,0,6,179,77,249,16,143,4,0,15,115,158,254,3,82,3,0,17,243,118,44,7,255,3,0,17,51,218,187,55,11,4,0,24,115,226,25,251,54,3,0,25,179,227,199,130,225,3,0,27,51,143,252,149,222,2,0,27,115,175,93,218,79,4,0,28,51,189,138,56,122,2,0,31,115,114,252,215,102,2,0,35,179,242,164,238,99,3,0,37,51,100,15,128,140,2,0,40,179,87,119,64,181,4,0,43,51,24,109,210,5,4,0,45,115,162,234,184,233,3,0,49,243,224,251,93,220,3,0,52,51,143,96,214,226,3,0,54,243,132,227,72,226,3,0,57,51,170,242,56,239,2,0,61,51,24,192,187,161,2,0,61,243,21,135,208,200,2,0,66,243,206,130,2,171,4,0,73,243,8,128,108,37,4,0,76,179,223,0,65,153,2,0,78,51,213,208,162,77,2,0,80,243,115,204,20,94,4,0,85,179,136,10,173,135,4,0,90,115,65,222,49,25,2,0,91,115,216,54,69,232,2,0,92,243,51,45,203,40,4,0,92,115,48,246,52,137,4,0,93,51,123,134,11,30,2,0,93,115,26,77,65,35,2,0,95,179,10,51,71,74,4,0,97,179,234,63,59,119,2,0,99,243,37,35,19,60,2,0,102,243,142,8,170,200,2,0,103,243,25,57,156,163,3,0,105,51,27,230,126,81,2,0,106,51,112,203,4,8,4,0,108,243,143,115,239,131,2,0,109,243,113,16,234,252,3,0,112,243,252,81,192,160,2,0,112,115,163,112,0,231,2,0,128,115,85,196,169,151,2,0,129,243,81,24,157,209,2,0,129,243,23,176,120,55,3,0,130,51,18,221,47,50,4,0,138,179,51,148,208,62,4,0,138,115,135,166,160,77,4,0,141,51,185,28,165,96,2,0,146,179,226,134,38,78,2,0,146,179,100,15,194,103,3,0,148,51,204,204,238,86,4,0,152,115,142,54,244,120,4,0,153,179,176,224,249,5,3,0,153,243,81,119,89,172,3,0,153,243,240,227,203,39,4,0,154,51,248,125,248,113,2,0,154,51,248,154,233,124,2,0,158,115,89,93,251,122,4,0,159,51,16,77,153,139,3,0,161,243,9,245,96,108,4,0,162,115,137,167,56,69,4,0,163,179,6,44,143,202,3,0,163,243,1,244,69,12,4,0,164,115,35,160,8,161,4,0,169,51,154,160,3,63,3,0,171,51,224,54,227,134,3,0,177,179,41,181,130,22,3,0,177,115,154,90,169,52,4,0,178,243,85,116,245,133,2,0,178,115,93,250,81,148,3,0,184,243,79,14,254,35,3,0,184,179,174,6,203,158,3,0,189,51,201,241,223,165,4,0,193,115,54,227,75,52,4,0,194,179,124,64,150,42,2,0,195,179,63,133,64,72,4,0,198,243,45,117,31,96,4,0,199,115,31,129,17,109,2,0,200,115,183,244,78,150,2,0,201,51,137,160,65,70,3,0,201,179,91,79,134,135,3,0,203,115,143,242,47,231,2,0,204,179,161,142,148,52,2,0,204,51,153,223,155,29,3,0,204,51,51,13,190,209,3,0,207,115,171,61,237,84,2,0,207,179,31,94,220,201,3,0,209,115,44,211,101,252,3,0,211,179,38,92,208,29,4,0,213,179,114,153,210,166,2,0,214,243,78,19,255,83,4,0,216,179,238,89,152,239,3,0,216,179,156,163,95,131,4,0,218,51,107,203,148,193,2,0,224,243,229,24,90,58,2,0,224,179,221,203,151,98,2,0,225,51,255,239,10,39,2,0,226,51,15,66,191,89,2,0,231,243,125,11,92,124,4,0,234,51,136,162,123,67,4,0,235,179,241,148,160,179,3,0,240,179,59,129,101,208,3,0,241,115,217,186,131,167,2,0,241,115,220,229,133,111,3,0,243,115,218,99,19,119,2,0,243,179,30,219,114,118,4,0,248,243,255,96,4,12,2,0,248,51,197,137,115,81,4,0,249,51,116,95,234,34,3,0,250,179,195,119,123,144,3,0,0,180,61,61,98,173,2,0,3,180,137,68,138,1,4,0,4,52,52,161,229,129,2,0,4,244,42,142,193,51,4,0,6,180,144,155,59,185,4,0,7,52,182,214,86,48,3,0,11,180,173,164,9,194,3,0,13,244,47,93,131,245,2,0,15,116,45,93,105,63,2,0,18,180,31,93,121,201,3,0,20,116,51,16,118,99,3,0,20,180,245,48,116,254,3,0,24,116,196,145,191,136,3,0,30,180,242,247,170,2,2,0,30,52,169,165,80,45,4,0,31,52,34,40,5,79,4,0,33,244,103,107,24,182,2,0,38,116,141,254,152,103,4,0,40,52,122,140,218,28,2,0,40,244,200,52,114,250,2,0,46,116,183,90,17,18,4,0,49,180,45,60,73,97,3,0,51,180,246,226,246,224,3,0,54,52,129,194,50,13,2,0,55,116,59,184,178,61,3,0,56,116,104,113,185,56,4,0,60,180,57,110,5,128,3,0,63,52,142,0,152,81,3,0,68,244,37,43,160,183,2,0,68,52,178,232,180,118,4,0,73,180,221,143,141,118,3,0,75,180,220,54,121,94,4,0,76,52,215,103,163,156,4,0,77,244,117,185,38,209,2,0,77,52,224,255,200,23,4,0,78,52,225,37,28,8,2,0,78,52,172,167,37,171,2,0,79,244,115,228,34,29,2,0,80,52,16,234,50,64,3,0,81,116,96,242,43,100,3,0,81,180,153,236,214,49,4,0,82,52,194,99,114,4,2,0,83,52,123,172,24,23,4,0,84,116,72,135,74,146,2,0,84,116,72,135,60,148,2,0,84,180,189,79,243,249,2,0,84,116,72,135,241,183,4,0,87,116,176,188,88,174,4,0,89,180,247,160,29,104,4,0,91,116,221,144,18,108,4,0,93,52,153,127,137,176,2,0,95,52,106,116,102,112,2,0,96,244,30,34,173,112,2,0,98,116,37,81,76,32,3,0,100,52,210,235,153,159,2,0,101,52,90,244,195,202,2,0,102,52,151,85,21,216,3,0,104,116,102,220,250,247,2,0,109,244,57,126,143,40,3,0,111,180,171,104,175,149,2,0,111,116,117,189,161,248,2,0,111,244,97,218,64,38,3,0,113,52,247,223,232,5,4,0,114,116,25,99,152,180,3,0,118,244,31,48,230,107,2,0,119,180,239,116,143,176,4,0,122,116,48,230,10,124,2,0,123,52,185,4,229,135,2,0,123,244,222,141,4,201,3,0,126,180,3,171,192,58,2,0,131,116,151,224,130,4,4,0,132,52,149,26,243,42,4,0,133,244,96,138,217,30,3,0,133,244,26,164,213,160,3,0,134,180,204,214,252,136,3,0,134,180,133,90,85,181,3,0,135,180,244,188,178,213,3,0,137,180,175,58,57,154,4,0,140,116,61,231,196,21,2,0,140,180,191,230,165,223,2,0,140,180,227,94,37,216,3,0,140,244,93,122,70,2,4,0,144,244,53,241,90,32,3,0,144,180,222,223,89,175,4,0,145,180,203,236,192,118,2,0,146,52,185,22,186,107,4,0,147,116,2,96,254,100,2,0,151,180,220,245,126,143,4,0,160,244,85,159,143,140,2,0,161,180,232,169,74,86,3,0,164,244,148,229,125,101,3,0,165,244,157,203,17,192,2,0,166,180,125,190,21,154,4,0,168,116,230,47,26,92,3,0,168,52,183,94,254,211,3,0,171,116,146,223,168,47,2,0,175,244,29,113,162,60,4,0,176,244,21,10,115,41,2,0,179,116,175,75,114,196,2,0,181,180,118,140,143,244,3,0,183,244,114,26,206,218,2,0,183,52,58,135,15,251,3,0,190,180,223,103,64,3,2,0,190,52,86,121,1,113,3,0,190,52,235,21,255,253,3,0,194,244,68,145,27,244,3,0,195,52,215,82,152,116,3,0,197,244,217,86,91,182,4,0,199,116,181,8,169,196,3,0,202,116,242,130,118,165,3,0,205,244,33,165,219,171,3,0,205,116,24,182,120,182,3,0,207,180,82,241,171,46,3,0,211,52,93,229,225,33,3,0,212,116,251,28,124,123,3,0,214,180,165,45,172,5,2,0,214,116,212,79,109,51,4,0,215,116,232,179,207,98,4,0,225,180,237,193,49,92,2,0,225,180,37,118,173,92,2,0,225,244,19,89,26,225,2,0,225,180,128,216,248,28,4,0,225,244,43,245,33,115,4,0,226,116,236,179,238,30,2,0,232,180,223,112,219,9,2,0,236,180,76,154,254,64,4,0,238,180,47,228,203,50,2,0,240,52,127,195,250,161,2,0,241,244,158,52,61,77,2,0,243,52,136,150,153,94,2,0,248,180,121,98,198,74,2,0,248,244,57,37,31,135,2,0,253,116,202,189,235,243,2,0,254,52,133,15,60,137,2,0,255,52,114,135,212,99,4,0,2,53,173,234,43,86,2,0,2,245,75,27,67,112,3,0,3,117,44,160,78,167,3,0,4,245,31,248,43,17,2,0,7,245,88,199,219,161,3,0,7,245,115,168,137,118,4,0,11,245,194,127,80,188,2,0,12,181,124,49,96,64,2,0,22,181,38,69,247,115,3,0,25,117,213,70,83,93,4,0,26,245,30,169,210,89,3,0,34,53,112,123,94,128,3,0,41,245,53,106,226,176,2,0,46,245,198,194,77,136,3,0,49,53,123,128,165,125,3,0,51,181,21,67,246,177,3,0,52,245,29,77,64,249,2,0,52,181,58,22,66,201,3,0,53,117,42,51,173,148,2,0,55,53,88,29,74,32,2,0,57,53,25,137,157,182,2,0,57,245,21,135,124,200,2,0,58,117,90,6,195,68,4,0,62,181,101,109,38,157,3,0,64,53,190,36,10,223,3,0,66,53,52,129,59,208,3,0,69,181,201,130,136,68,2,0,76,53,230,8,137,73,2,0,79,245,205,100,5,136,3,0,88,181,166,244,45,37,3,0,93,53,59,184,3,68,3,0,93,53,95,201,247,53,4,0,94,181,156,77,51,68,2,0,94,117,167,42,173,96,4,0,94,245,53,220,233,134,4,0,98,245,113,206,74,11,4,0,98,117,40,14,159,19,4,0,106,53,4,86,220,51,4,0,109,53,58,28,223,211,3,0,109,117,224,247,106,49,4,0,110,245,131,123,204,69,4,0,115,53,28,185,116,247,3,0,117,245,145,204,43,81,4,0,119,181,243,68,249,46,3,0,120,245,171,114,232,232,2,0,124,181,211,213,116,72,2,0,134,181,172,54,33,119,2,0,136,245,50,73,172,185,4,0,138,117,108,138,105,56,2,0,141,53,221,209,247,52,3,0,141,53,221,116,127,210,3,0,142,181,109,202,101,110,2,0,142,53,28,29,48,229,3,0,143,53,230,109,102,145,4,0,143,245,222,210,85,169,4,0,144,181,180,121,13,53,4,0,147,245,150,92,89,226,2,0,147,245,150,92,121,226,2,0,148,181,247,158,206,133,4,0,149,53,94,156,141,161,3,0,152,245,216,51,180,192,2,0,153,53,114,190,158,218,2,0,156,245,176,233,22,85,4,0,158,117,198,59,143,131,4,0,159,53,63,240,12,0,4,0,161,245,73,186,199,29,3,0,163,53,107,174,153,217,2,0,170,245,218,143,9,71,2,0,171,117,210,177,144,54,2,0,171,181,117,103,131,213,2,0,181,245,159,229,133,60,4,0,182,53,94,210,176,254,2,0,182,181,229,52,234,232,3,0,184,245,165,172,173,11,4,0,188,245,152,223,139,37,3,0,188,53,123,123,52,142,4,0,191,117,10,62,157,86,4,0,191,245,11,146,120,168,4,0,192,117,205,145,10,110,3,0,197,181,40,241,109,155,2,0,198,181,195,186,149,27,3,0,201,181,139,133,88,119,2,0,205,245,152,223,126,37,3,0,209,245,88,236,106,41,3,0,211,53,47,45,29,160,4,0,212,53,139,250,141,193,3,0,213,117,50,55,56,148,3,0,214,53,113,39,65,79,2,0,214,245,14,160,192,190,2,0,215,53,171,229,217,107,3,0,217,181,232,242,49,67,4,0,219,117,36,120,9,33,2,0,220,245,255,20,232,34,2,0,221,53,131,167,148,108,2,0,223,245,48,143,84,157,4,0,225,117,13,80,146,65,4,0,226,53,19,72,67,172,3,0,230,245,31,243,240,95,3,0,234,181,11,8,232,250,3,0,238,53,153,100,107,148,3,0,238,181,238,231,71,214,3,0,238,53,112,17,221,139,4,0,239,181,120,107,32,176,2,0,244,245,19,200,58,69,3,0,245,181,167,228,57,174,3,0,246,117,1,129,202,0,3,0,247,181,202,55,187,129,3,0,247,117,25,184,155,226,3,0,249,245,121,156,217,23,2,0,252,181,6,61,67,20,4,0,253,53,87,24,98,118,3,0,0,54,64,69,96,140,3,0,0,118,116,227,173,185,3,0,5,54,69,21,40,44,2,0,7,246,201,67,202,8,3,0,8,182,226,255,92,177,3,0,11,246,177,93,32,30,2,0,13,246,205,162,253,164,4,0,16,118,1,239,29,208,3,0,17,54,190,211,62,140,3,0,21,182,221,102,212,192,2,0,22,182,197,240,22,62,4,0,26,182,134,173,118,112,2,0,26,118,132,17,250,57,4,0,27,182,53,102,237,13,2,0,27,54,124,200,165,115,3,0,27,118,31,55,112,23,4,0,29,54,135,122,71,88,2,0,30,118,111,73,130,41,3,0,34,54,178,209,224,58,3,0,35,54,227,148,128,68,4,0,37,246,83,73,238,111,3,0,39,182,250,245,108,124,3,0,41,246,197,92,160,182,3,0,42,246,247,238,180,214,3,0,43,182,9,4,200,0,4,0,46,246,244,84,38,123,2,0,48,182,59,183,111,216,3,0,49,246,117,232,45,250,2,0,51,182,238,182,217,209,2,0,53,54,106,218,4,112,3,0,55,182,99,0,165,115,4,0,59,246,78,59,8,144,2,0,61,54,26,81,107,42,3,0,72,246,181,106,90,0,4,0,75,118,164,98,85,223,2,0,76,54,197,89,76,147,2,0,78,118,160,166,87,164,3,0,78,246,197,64,235,221,3,0,80,246,193,22,120,107,2,0,81,246,192,205,162,21,2,0,81,182,18,240,18,108,2,0,82,54,183,252,21,85,3,0,83,246,43,2,242,62,4,0,89,182,129,211,41,173,3,0,95,182,254,190,208,131,3,0,96,182,113,110,219,242,2,0,97,54,28,189,91,11,4,0,97,182,246,233,12,88,4,0,100,118,182,249,78,59,4,0,102,246,181,181,67,141,4,0,104,54,117,220,131,134,3,0,106,118,110,216,142,57,4,0,109,54,179,232,179,50,3,0,114,246,249,250,242,197,2,0,115,182,83,171,11,230,3,0,115,118,60,164,178,71,4,0,121,182,161,66,38,149,2,0,124,182,2,75,99,231,2,0,125,246,158,92,103,151,4,0,125,54,231,40,212,173,4,0,126,54,198,64,112,232,2,0,132,246,1,90,230,91,4,0,134,118,127,156,234,103,3,0,135,118,154,17,33,253,2,0,136,54,95,53,18,24,2,0,138,118,130,121,190,1,4,0,138,182,62,94,49,114,4,0,144,182,225,181,152,41,3,0,147,182,208,34,197,156,2,0,147,246,239,146,116,57,3,0,149,54,63,184,97,22,3,0,153,246,117,109,8,2,3,0,154,182,43,143,101,201,3,0,155,182,53,92,28,5,4,0,158,246,66,173,30,127,3,0,160,54,217,166,9,131,4,0,161,182,121,235,90,135,2,0,161,182,247,130,8,1,3,0,162,54,164,203,251,191,2,0,162,182,243,118,13,181,4,0,165,54,46,91,206,5,2,0,165,182,24,81,29,75,3,0,170,118,191,61,216,190,2,0,170,118,73,54,74,64,3,0,171,54,169,47,211,252,3,0,173,182,14,6,133,145,3,0,175,118,227,101,24,37,3,0,176,54,33,195,75,52,3,0,177,246,215,127,3,156,3,0,177,246,180,113,159,21,4,0,178,246,91,69,26,144,2,0,178,118,111,14,99,98,4,0,185,118,122,96,157,44,2,0,188,182,128,71,252,128,2,0,189,118,114,58,69,145,3,0,189,118,35,119,168,165,4,0,190,54,62,218,16,58,2,0,193,118,247,249,74,114,2,0,194,246,110,223,124,3,2,0,194,246,110,51,216,163,3,0,195,182,183,121,154,73,2,0,195,54,220,236,252,120,2,0,196,118,179,159,115,138,4,0,200,54,252,184,42,125,3,0,201,118,141,38,236,12,4,0,202,182,162,80,17,195,3,0,204,182,132,118,51,99,2,0,205,246,146,30,23,170,2,0,207,54,201,17,5,11,3,0,208,118,49,51,137,56,4,0,209,118,38,253,52,118,2,0,211,118,228,231,68,22,3,0,212,118,155,188,125,251,2,0,212,118,50,12,231,168,3,0,213,54,199,174,121,50,2,0,215,118,186,186,236,19,3,0,216,246,81,105,141,10,3,0,217,246,247,28,194,20,4,0,219,118,125,109,2,73,4,0,219,54,194,214,224,156,4,0,222,246,136,127,198,106,4,0,223,118,74,3,44,210,2,0,224,182,113,226,246,56,3,0,225,182,24,81,177,74,3,0,226,54,159,198,208,77,3,0,226,246,71,16,253,48,4,0,227,182,153,80,35,169,4,0,228,246,248,182,38,132,2,0,228,54,77,71,117,171,3,0,229,246,72,58,172,45,3,0,233,54,118,56,181,51,2,0,233,54,231,91,80,44,4,0,233,118,210,236,126,158,4,0,234,246,84,162,127,2,3,0,235,54,59,184,132,68,3,0,236,54,123,183,226,224,3,0,236,182,164,120,50,177,4,0,240,246,107,49,60,238,3,0,245,182,44,76,151,142,4,0,251,54,53,52,17,65,3,0,252,54,97,229,93,190,3,0,0,247,168,141,20,73,2,0,2,55,150,229,112,26,2,0,3,247,88,199,8,162,3,0,3,247,244,80,51,98,4,0,4,183,110,131,254,66,2,0,6,119,83,23,93,77,4,0,9,247,54,247,192,243,3,0,13,55,194,54,38,158,3,0,15,247,30,39,3,189,2,0,15,119,219,67,118,150,3,0,16,247,181,0,184,132,3,0,16,247,83,23,105,110,4,0,17,247,72,108,108,96,2,0,17,55,199,61,33,1,3,0,18,55,199,61,247,0,3,0,19,247,139,191,61,21,3,0,20,55,196,80,88,10,2,0,25,247,143,117,6,127,2,0,25,247,143,117,29,127,2,0,25,183,39,54,145,132,3,0,27,119,53,81,58,252,2,0,28,247,34,173,98,51,2,0,29,55,166,188,85,177,2,0,29,183,101,103,26,139,4,0,30,247,103,154,162,173,2,0,31,247,250,67,29,45,2,0,33,119,80,246,106,124,2,0,36,55,54,165,198,146,2,0,42,55,245,68,79,43,3,0,44,247,112,33,28,233,2,0,44,55,46,218,141,191,3,0,47,247,28,13,74,154,2,0,48,247,248,236,184,151,2,0,52,183,3,181,108,125,2,0,54,183,195,16,196,224,2,0,55,55,95,68,184,174,3,0,57,119,121,132,15,1,4,0,58,247,157,250,154,179,4,0,63,119,154,18,159,251,2,0,64,119,1,21,221,133,2,0,68,119,39,38,142,110,3,0,70,55,78,94,37,83,2,0,71,183,43,166,186,73,4,0,72,119,29,145,135,77,4,0,73,55,90,75,167,79,4,0,76,55,103,255,105,130,4,0,77,119,153,188,203,251,2,0,77,119,115,82,237,151,3,0,77,119,223,124,221,174,4,0,81,247,19,51,112,183,3,0,86,55,117,71,205,100,2,0,87,119,158,19,60,220,3,0,88,55,45,104,253,173,3,0,89,55,145,211,220,139,2,0,91,247,250,67,50,45,2,0,92,247,132,80,191,167,3,0,92,119,152,181,112,119,4,0,94,247,237,67,46,112,4,0,95,247,13,177,180,252,2,0,97,55,205,28,233,18,2,0,99,183,243,36,38,178,3,0,100,55,7,84,180,23,2,0,100,247,221,166,110,58,2,0,102,55,120,152,236,136,3,0,104,247,95,239,107,213,2,0,110,247,85,194,249,234,2,0,110,119,146,220,108,228,3,0,111,247,154,185,83,98,3,0,114,183,115,193,72,106,3,0,114,183,152,6,67,6,4,0,115,119,237,99,239,67,3,0,115,55,150,179,141,255,3,0,116,183,123,132,149,141,2,0,116,119,164,109,157,231,3,0,116,183,215,31,138,247,3,0,121,247,227,120,176,86,2,0,122,183,188,109,174,172,4,0,125,119,109,147,68,149,3,0,129,119,138,128,73,6,2,0,130,247,226,128,212,195,2,0,133,183,11,74,175,253,2,0,133,247,10,248,8,137,4,0,134,247,137,185,70,37,3,0,134,247,46,107,225,136,3,0,135,55,14,245,123,195,3,0,140,119,155,59,77,55,2,0,141,119,242,128,223,82,2,0,143,55,85,221,8,167,2,0,143,183,62,193,233,177,2,0,147,55,116,31,211,124,2,0,147,247,79,25,63,205,2,0,149,247,151,33,91,100,4,0,155,183,90,234,217,143,3,0,160,119,168,12,112,75,3,0,166,183,165,34,162,140,2,0,166,55,31,172,99,120,3,0,175,119,253,106,17,10,2,0,176,183,48,66,56,208,2,0,181,55,165,55,69,95,3,0,182,247,157,228,15,36,3,0,183,247,15,81,67,143,4,0,184,183,217,216,177,4,3,0,185,247,243,80,137,151,4,0,186,183,203,40,104,12,2,0,188,55,32,238,226,181,3,0,194,119,210,105,214,52,4,0,205,247,114,26,229,218,2,0,206,55,109,67,245,119,2,0,206,55,7,122,12,140,3,0,211,55,155,63,210,15,4,0,215,119,212,47,49,47,4,0,215,119,212,47,65,47,4,0,217,119,174,47,7,40,2,0,217,55,43,134,36,136,3,0,217,183,134,13,180,28,4,0,218,183,57,143,55,237,3,0,218,119,235,80,211,47,4,0,225,119,114,214,70,90,2,0,227,183,191,238,199,159,3,0,229,55,12,243,46,87,2,0,230,247,213,24,120,45,2,0,235,183,25,80,39,62,4,0,236,247,225,154,165,101,3,0,237,119,227,251,136,67,2,0,237,247,170,115,42,126,4,0,245,247,39,81,50,29,3,0,245,183,198,79,50,88,3,0,246,183,56,41,50,188,2,0,250,183,237,253,76,127,4,0,252,55,72,44,69,126,3,0,253,183,244,73,134,139,3,0,0,56,249,181,26,106,4,0,2,56,164,228,144,222,3,0,3,56,171,47,216,211,2,0,8,120,6,244,242,102,2,0,10,184,104,238,214,4,3,0,13,56,184,186,158,17,3,0,13,184,50,246,73,249,3,0,14,248,18,209,224,125,3,0,14,184,126,133,72,79,4,0,15,184,25,80,70,62,4,0,15,184,154,95,96,153,4,0,18,248,18,144,141,84,3,0,23,184,91,128,213,181,4,0,26,184,24,75,7,200,3,0,28,184,191,72,248,123,2,0,28,184,199,130,88,47,3,0,30,56,9,237,116,49,2,0,31,248,82,79,66,19,4,0,33,56,231,160,107,103,3,0,34,120,14,246,18,81,4,0,35,56,185,132,221,64,2,0,37,120,201,112,52,143,2,0,38,184,105,200,98,57,3,0,39,120,251,20,148,7,3,0,41,248,35,210,74,49,2,0,41,56,192,78,133,72,2,0,43,56,87,163,23,31,3,0,43,184,101,199,59,33,4,0,44,248,101,126,14,150,2,0,44,184,202,207,57,28,4,0,49,248,71,176,25,53,2,0,49,120,206,48,33,114,2,0,51,184,54,194,215,30,2,0,52,248,183,47,202,128,3,0,53,56,249,207,9,89,2,0,55,120,97,146,225,19,2,0,59,184,21,211,85,244,2,0,59,248,90,164,211,77,4,0,59,56,127,167,206,183,4,0,60,184,211,173,36,205,3,0,63,120,242,143,34,255,3,0,69,184,74,220,140,251,2,0,72,120,59,184,183,51,3,0,72,56,158,225,151,155,4,0,76,56,239,179,241,77,2,0,76,56,0,7,52,127,4,0,86,184,136,51,86,179,4,0,90,120,169,229,136,16,4,0,92,120,217,253,126,25,3,0,92,248,245,198,118,30,3,0,96,248,0,99,61,176,3,0,101,56,118,166,190,24,2,0,103,56,67,131,171,119,2,0,103,248,43,141,31,141,2,0,103,120,189,239,144,228,2,0,103,248,178,162,188,175,3,0,106,120,199,85,251,143,3,0,107,120,193,72,102,132,4,0,109,56,200,202,229,118,3,0,110,184,64,37,95,66,4,0,115,184,2,131,236,161,4,0,118,184,54,63,67,146,4,0,119,184,50,128,73,131,2,0,119,120,189,25,48,225,2,0,120,248,254,192,160,117,4,0,121,120,71,231,208,68,2,0,127,184,166,210,254,154,3,0,130,120,185,196,27,73,4,0,133,56,212,123,104,163,2,0,137,56,90,104,38,125,2,0,137,56,21,192,205,204,2,0,138,56,21,192,76,204,2,0,141,120,170,200,250,135,2,0,143,56,19,61,232,130,2,0,145,120,157,127,212,105,4,0,149,56,145,61,79,171,2,0,149,56,151,94,130,20,4,0,156,56,120,25,187,217,2,0,160,184,37,165,121,185,2,0,161,120,113,27,89,92,2,0,169,120,87,155,117,26,3,0,179,120,162,203,98,230,3,0,179,184,94,110,153,97,4,0,180,120,65,66,168,67,4,0,182,184,73,170,119,161,2,0,183,184,100,56,161,233,2,0,188,184,48,188,238,73,4,0,189,120,124,153,200,128,4,0,191,248,38,22,135,39,3,0,195,248,71,212,97,46,3,0,201,120,160,78,233,12,3,0,208,56,101,235,197,183,3,0,209,248,196,179,248,109,4,0,213,120,130,133,123,75,2,0,215,56,219,219,210,104,2,0,216,184,251,26,85,167,4,0,218,248,35,227,226,73,2,0,218,184,62,193,2,178,2,0,220,248,0,153,196,152,3,0,224,184,11,74,203,255,2,0,226,248,125,26,144,155,2,0,228,184,135,129,5,209,3,0,229,248,50,38,155,239,2,0,230,184,103,80,179,142,2,0,232,184,159,243,205,242,3,0,237,56,157,66,188,209,2,0,240,248,67,9,111,126,3,0,241,56,58,196,140,122,2,0,242,120,193,155,24,32,4,0,245,248,78,143,252,125,2,0,246,184,116,106,169,78,2,0,247,56,4,121,120,42,2,0,247,248,10,143,16,230,2,0,6,185,57,86,103,88,2,0,7,185,48,49,64,29,3,0,9,121,108,60,189,79,3,0,9,57,230,36,11,97,4,0,12,249,234,17,241,1,3,0,12,249,210,188,26,33,4,0,14,121,153,86,61,41,4,0,14,121,192,57,254,131,4,0,25,121,96,236,112,28,2,0,27,249,72,23,101,5,2,0,27,57,35,241,164,194,3,0,31,57,228,124,143,216,3,0,32,57,41,162,11,6,3,0,37,249,52,134,216,38,3,0,40,121,63,150,227,240,2,0,41,121,84,108,129,6,3,0,45,249,205,3,77,61,3,0,45,57,93,148,161,154,4,0,47,249,147,40,63,8,4,0,48,121,169,61,163,134,4,0,50,57,31,40,204,134,4,0,52,57,81,134,76,200,2,0,53,185,203,56,52,48,4,0,56,57,241,181,158,53,4,0,57,249,96,102,115,209,3,0,58,185,80,5,115,4,4,0,61,121,118,90,36,26,2,0,63,249,235,90,54,30,2,0,64,121,167,103,211,154,4,0,67,57,134,202,150,109,2,0,67,121,130,161,68,102,4,0,70,121,19,192,165,199,2,0,70,249,127,2,85,102,3,0,72,185,220,231,54,123,3,0,75,185,186,44,1,35,2,0,75,185,154,243,23,112,3,0,75,249,125,123,100,47,4,0,78,249,141,67,59,15,3,0,79,57,31,21,206,94,4,0,80,57,186,20,220,204,2,0,80,121,55,239,51,136,4,0,86,121,121,177,40,82,4,0,92,249,85,114,102,6,2,0,93,57,172,220,6,167,4,0,99,121,19,192,150,199,2,0,103,249,55,41,155,8,2,0,103,121,197,66,236,180,2,0,110,185,176,157,183,48,4,0,111,185,124,168,212,145,3,0,113,185,212,198,200,139,3,0,114,57,112,203,213,43,3,0,117,185,225,151,140,18,3,0,129,121,246,221,244,153,2,0,132,185,230,33,185,30,4,0,133,121,232,28,89,8,2,0,136,57,105,64,16,30,4,0,137,121,110,181,3,126,3,0,137,57,242,228,70,151,4,0,140,185,177,188,204,252,2,0,143,121,18,175,172,141,3,0,146,121,119,116,20,187,2,0,147,121,124,6,245,142,3,0,147,121,33,97,39,51,4,0,148,121,151,192,132,27,3,0,148,185,243,39,118,140,3,0,150,249,2,133,48,79,4,0,151,57,186,239,73,109,2,0,154,121,226,92,218,115,3,0,156,121,30,56,122,94,2,0,156,249,47,89,36,228,3,0,159,185,251,227,121,40,2,0,159,185,147,115,101,106,3,0,160,249,41,90,196,100,3,0,160,249,86,64,63,15,4,0,161,57,37,29,204,122,3,0,161,249,138,106,18,91,4,0,162,185,28,7,137,118,2,0,165,249,8,2,111,113,3,0,176,185,37,119,102,61,4,0,182,185,78,166,64,182,4,0,184,185,196,111,44,162,2,0,185,185,86,26,161,97,3,0,186,249,239,147,73,138,3,0,187,57,226,69,11,225,3,0,192,249,90,47,141,2,4,0,193,121,220,77,108,48,2,0,193,57,86,100,167,51,4,0,194,121,18,179,133,112,2,0,195,185,193,181,170,12,3,0,197,57,102,149,58,128,4,0,198,185,72,4,248,22,3,0,200,121,252,223,163,136,4,0,201,185,40,189,90,75,2,0,201,57,136,163,49,121,3,0,203,121,171,72,92,101,3,0,203,185,55,238,179,163,3,0,204,185,179,129,77,125,3,0,204,57,140,48,139,83,4,0,207,249,172,51,144,120,3,0,210,185,103,144,9,168,2,0,210,185,88,208,69,56,4,0,211,121,113,250,173,17,2,0,212,121,59,184,103,52,3,0,213,185,228,115,62,229,3,0,216,121,41,21,91,93,3,0,222,57,154,165,43,23,4,0,227,185,151,157,144,70,4,0,228,185,239,50,200,140,3,0,230,57,199,117,139,108,3,0,230,185,98,90,180,125,4,0,231,57,16,251,216,45,4,0,231,121,251,254,213,76,4,0,231,57,230,142,145,174,4,0,237,185,29,62,218,185,3,0,239,57,139,164,40,55,4,0,240,185,131,233,245,149,2,0,241,57,203,13,148,172,2,0,246,121,230,82,44,210,3,0,247,121,120,12,112,154,3,0,249,185,99,169,63,81,2,0,249,249,160,61,209,166,3,0,251,185,134,83,185,130,4,0,253,185,172,78,82,96,2,0,255,185,16,196,177,86,4,0,2,250,230,191,145,127,3,0,2,186,94,39,90,46,4,0,6,250,52,20,44,82,2,0,6,58,95,249,177,112,4,0,8,250,216,66,70,251,2,0,9,122,168,221,197,144,4,0,12,250,202,22,237,6,4,0,17,122,120,214,233,44,3,0,18,250,217,117,82,103,2,0,21,250,24,70,192,87,3,0,24,186,8,199,159,115,2,0,27,58,205,131,217,110,2,0,27,122,18,98,10,120,2,0,29,58,177,176,45,203,2,0,31,186,82,80,201,127,3,0,32,122,45,193,220,64,3,0,35,186,98,225,69,255,3,0,37,250,185,184,87,125,4,0,39,186,43,213,105,182,4,0,42,186,7,100,126,77,2,0,45,250,18,137,115,130,3,0,47,58,113,29,10,191,3,0,52,122,59,184,26,53,3,0,53,250,20,81,80,94,3,0,53,186,21,66,229,36,4,0,54,58,76,55,162,28,2,0,61,250,247,86,91,108,2,0,66,122,122,33,21,47,3,0,69,186,20,249,45,164,3,0,71,58,156,85,73,96,4,0,73,250,231,157,223,50,4,0,75,58,228,175,27,79,3,0,80,250,161,184,144,116,2,0,82,186,139,20,50,96,3,0,83,122,150,129,56,153,4,0,84,186,188,229,1,134,3,0,85,58,8,248,141,153,2,0,87,250,96,213,94,179,2,0,88,186,81,43,77,1,4,0,95,58,116,1,203,53,2,0,95,186,90,226,174,16,3,0,96,250,171,167,20,118,3,0,97,122,76,81,164,220,2,0,98,186,160,214,166,171,3,0,98,122,32,192,100,250,3,0,102,250,245,73,218,184,4,0,105,122,224,18,97,212,2,0,105,186,157,189,162,240,2,0,105,250,243,210,25,66,4,0,107,250,46,147,147,91,2,0,107,58,18,138,191,76,3,0,111,58,24,114,226,2,3,0,114,122,74,193,174,227,2,0,115,250,45,241,87,6,3,0,116,122,129,130,223,70,4,0,116,122,147,9,146,85,4,0,117,122,133,64,27,71,4,0,120,58,48,144,250,166,3,0,120,58,185,242,20,140,4,0,130,250,164,155,253,13,2,0,135,186,216,199,68,53,4,0,136,122,211,179,219,86,3,0,137,186,105,42,246,27,2,0,137,122,246,130,78,32,4,0,137,250,232,22,236,77,4,0,143,122,237,9,216,251,3,0,147,58,135,222,184,127,4,0,149,250,107,158,28,196,3,0,150,186,195,109,105,28,3,0,150,186,222,214,132,52,4,0,154,250,69,212,132,3,3,0,154,250,167,131,252,108,3,0,155,122,172,28,225,174,3,0,155,122,133,17,24,209,3,0,156,250,202,126,120,205,3,0,156,250,237,81,32,56,4,0,158,250,236,131,46,121,2,0,161,186,62,219,198,11,2,0,161,186,94,203,190,44,2,0,163,122,92,182,45,98,3,0,163,186,115,49,33,54,4,0,163,122,245,168,217,87,4,0,166,122,75,60,132,58,2,0,168,58,171,7,253,68,3,0,176,122,13,192,70,213,2,0,178,186,191,116,14,116,4,0,180,186,14,13,228,61,2,0,187,250,104,63,55,235,2,0,190,122,130,235,134,126,2,0,191,250,133,168,166,153,2,0,193,250,124,53,221,47,3,0,193,122,23,200,56,161,4,0,197,250,91,201,7,239,2,0,200,58,51,182,133,55,4,0,208,186,47,243,27,117,3,0,209,58,0,28,229,23,3,0,209,58,216,189,46,100,4,0,211,186,87,195,63,191,2,0,214,250,69,178,248,108,2,0,215,122,76,234,93,247,2,0,218,58,73,50,77,160,4,0,221,58,179,172,242,86,2,0,222,58,197,51,131,200,3,0,223,122,44,224,102,115,2,0,224,250,240,237,250,80,3,0,224,122,211,130,134,24,4,0,226,250,163,26,254,94,4,0,227,58,125,160,196,142,2,0,227,186,245,198,78,25,3,0,233,122,145,6,80,20,4,0,238,122,109,112,124,187,3,0,238,122,38,76,31,122,4,0,240,186,231,63,60,245,3,0,246,186,144,40,7,111,2,0,246,122,67,253,178,175,4,0,247,58,159,181,235,219,2,0,248,186,236,145,0,56,3,0,248,250,127,98,79,250,3,0,251,58,149,188,18,25,2,0,254,58,67,83,33,115,2,0,1,187,48,112,244,29,2,0,3,251,190,247,143,158,3,0,13,59,96,23,11,143,3,0,15,59,57,106,12,113,4,0,19,187,160,145,208,237,3,0,19,59,248,231,34,110,4,0,22,251,76,147,196,169,4,0,24,251,64,134,139,99,3,0,27,123,190,57,138,127,4,0,30,59,220,12,10,102,3,0,30,187,203,211,130,89,4,0,33,251,216,196,51,184,3,0,34,123,5,253,24,250,2,0,37,251,37,150,203,10,2,0,43,59,86,149,229,217,3,0,43,251,202,134,251,23,4,0,49,59,111,165,27,188,2,0,52,123,36,31,32,44,4,0,52,59,159,18,70,114,4,0,54,59,191,238,203,85,2,0,55,123,121,215,36,224,2,0,56,251,171,205,91,88,4,0,58,251,101,91,239,115,2,0,60,123,92,232,207,234,3,0,62,187,49,81,86,0,3,0,63,251,138,112,242,219,3,0,64,251,36,156,231,237,2,0,64,59,208,47,229,85,4,0,66,59,110,134,210,103,3,0,66,59,208,47,214,85,4,0,67,59,3,71,126,80,3,0,71,59,208,47,242,85,4,0,73,59,78,178,8,236,3,0,73,187,119,216,112,60,4,0,79,187,125,188,219,111,3,0,84,187,61,196,228,56,3,0,86,59,9,46,207,117,2,0,86,251,24,39,4,197,2,0,86,59,117,129,72,143,3,0,89,59,83,33,246,134,4,0,89,251,108,192,57,135,4,0,92,123,106,170,82,31,3,0,93,187,175,145,213,180,2,0,94,123,47,238,6,188,2,0,95,59,153,181,3,220,2,0,97,123,198,104,73,128,2,0,104,187,26,225,127,132,3,0,105,187,93,212,3,108,2,0,105,187,109,10,36,37,4,0,106,187,104,169,178,85,4,0,114,251,74,172,68,10,2,0,122,187,140,243,231,96,2,0,124,251,226,123,49,80,2,0,124,123,20,150,246,37,4,0,126,187,16,43,122,197,2,0,128,251,37,150,136,11,2,0,128,251,122,148,53,16,4,0,130,251,50,176,112,207,3,0,131,251,35,178,177,36,2,0,131,187,204,47,71,178,4,0,134,123,183,250,33,119,4,0,136,59,200,114,23,35,2,0,136,59,54,121,207,74,4,0,137,123,52,30,42,40,2,0,137,251,147,227,123,66,4,0,138,59,138,238,8,11,2,0,139,123,138,75,30,207,3,0,142,251,111,49,15,204,2,0,145,59,25,54,160,86,2,0,145,59,108,143,215,206,2,0,147,59,83,120,34,102,4,0,149,187,132,201,121,36,4,0,150,59,251,53,199,114,3,0,151,123,54,130,19,2,2,0,152,187,119,110,58,56,2,0,157,251,121,108,153,162,3,0,158,59,154,166,203,112,2,0,158,251,237,56,186,215,2,0,158,59,51,39,44,109,3,0,158,251,251,121,96,166,4,0,159,187,94,115,229,3,2,0,161,123,72,134,58,47,3,0,161,187,48,141,174,158,4,0,163,251,224,182,183,79,2,0,163,59,167,83,216,246,3,0,167,59,42,231,34,120,3,0,168,187,26,177,248,216,2,0,169,123,131,127,84,87,2,0,169,251,187,222,100,96,3,0,178,123,129,215,25,177,3,0,179,187,64,210,177,83,4,0,184,123,254,82,42,58,2,0,189,59,79,29,202,193,2,0,192,123,185,213,251,158,2,0,193,123,232,82,243,248,3,0,195,123,222,105,80,239,2,0,199,251,251,168,155,85,3,0,201,59,24,81,144,80,3,0,203,123,227,57,176,213,2,0,207,59,27,11,174,139,4,0,207,59,197,219,226,153,4,0,208,251,91,219,108,249,3,0,209,187,91,172,103,10,2,0,210,187,163,234,106,164,4,0,212,187,51,201,136,177,4,0,213,251,143,16,48,153,2,0,214,123,31,14,4,176,2,0,215,251,193,115,213,66,4,0,217,187,193,20,16,55,4,0,218,59,99,2,139,135,4,0,219,187,213,214,241,75,3,0,219,187,65,231,208,95,3,0,222,187,239,115,90,132,2,0,222,123,13,12,176,22,4,0,223,59,31,12,93,122,3,0,224,123,250,193,56,221,2,0,225,251,21,19,58,95,4,0,229,59,48,42,66,3,4,0,232,187,2,94,144,26,2,0,234,59,24,192,8,170,2,0,236,123,27,31,11,224,2,0,239,187,211,132,219,106,2,0,240,59,189,109,235,242,2,0,241,123,173,203,252,184,4,0,242,59,245,46,99,161,2,0,243,123,223,168,205,145,2,0,243,187,18,156,90,117,3,0,245,251,7,134,238,39,2,0,245,187,43,1,23,97,2,0,247,59,111,9,44,226,3,0,247,59,223,22,193,168,4,0,249,123,131,146,211,121,3,0,253,251,80,182,213,236,3,0,253,123,62,228,128,179,4,0,255,251,47,81,153,5,3,0,4,60,67,117,78,208,3,0,10,60,100,32,157,26,2,0,10,188,164,186,194,206,2,0,11,124,218,197,239,169,3,0,16,188,30,81,2,23,4,0,17,252,78,109,144,157,4,0,18,252,20,25,215,24,3,0,18,124,105,131,50,248,3,0,18,60,116,206,236,129,4,0,21,252,93,151,123,225,2,0,22,124,101,68,203,98,3,0,22,188,209,81,123,231,3,0,30,124,61,100,159,217,3,0,36,60,14,37,95,97,4,0,37,188,84,244,233,127,2,0,39,60,24,192,46,170,2,0,41,124,191,230,208,7,4,0,47,252,60,22,57,244,3,0,48,124,235,100,110,140,2,0,49,60,124,117,198,197,2,0,50,60,124,176,111,160,2,0,51,124,109,254,106,134,4,0,53,60,27,241,62,226,2,0,59,188,17,81,211,173,2,0,64,188,134,208,64,117,2,0,70,60,213,179,112,10,3,0,70,188,202,157,216,9,4,0,71,188,92,69,237,225,3,0,72,188,186,56,85,91,4,0,73,60,12,16,74,134,2,0,90,124,70,126,10,38,3,0,95,252,139,115,68,190,2,0,97,60,113,222,233,182,2,0,99,60,163,129,37,60,4,0,101,252,27,73,46,139,2,0,101,124,11,247,151,225,3,0,102,252,159,214,244,63,2,0,103,188,204,94,185,173,2,0,110,124,153,193,53,200,3,0,112,252,180,166,38,120,2,0,112,60,247,218,139,117,4,0,113,124,162,186,70,109,3,0,113,188,237,195,113,147,4,0,116,252,148,253,98,230,2,0,117,252,128,176,118,43,2,0,117,188,106,40,1,37,4,0,119,188,3,62,210,122,4,0,120,60,21,192,32,204,2,0,123,252,155,74,169,92,3,0,126,124,150,165,87,38,4,0,127,188,35,12,103,188,2,0,129,188,58,148,78,157,2,0,130,188,23,52,41,69,3,0,134,124,161,94,221,164,3,0,135,124,76,81,4,194,2,0,136,60,49,194,195,228,2,0,139,124,204,154,216,112,2,0,139,60,93,218,200,233,3,0,143,188,51,53,133,157,3,0,144,60,124,219,245,234,3,0,150,252,133,38,248,33,3,0,151,252,116,122,14,163,4,0,152,60,155,114,203,167,2,0,152,60,213,100,228,113,4,0,153,124,175,19,177,121,3,0,154,252,73,68,199,15,2,0,154,124,3,125,254,191,3,0,154,60,109,215,18,37,4,0,155,252,45,117,160,113,4,0,156,252,53,8,61,69,2,0,162,188,38,165,33,239,2,0,167,60,180,131,162,110,3,0,171,60,0,219,58,130,3,0,173,60,165,0,85,213,2,0,178,188,99,26,104,174,4,0,183,252,184,37,214,222,2,0,183,124,172,183,172,182,4,0,184,252,182,144,56,128,2,0,188,188,153,119,40,2,2,0,188,60,225,219,47,236,3,0,190,188,236,189,147,247,2,0,194,188,200,134,98,69,3,0,194,188,100,57,78,89,4,0,196,60,234,14,105,6,3,0,203,60,196,226,79,176,3,0,204,124,130,124,190,42,2,0,206,124,205,224,21,155,2,0,207,252,61,71,194,24,4,0,208,60,27,188,203,174,3,0,210,124,47,253,37,19,3,0,210,252,86,207,199,185,4,0,215,60,93,219,176,94,2,0,218,252,77,255,16,221,3,0,224,188,194,86,96,135,3,0,225,124,15,93,137,204,2,0,227,60,153,160,217,83,2,0,228,252,72,14,219,238,3,0,229,60,49,4,96,104,2,0,229,60,205,189,161,243,2,0,231,252,121,119,54,159,4,0,232,124,73,148,158,54,2,0,232,252,16,167,199,57,3,0,233,124,170,140,147,87,2,0,238,188,251,2,142,25,3,0,241,252,139,152,80,225,3,0,243,124,134,24,250,176,3,0,246,60,21,141,133,197,3,0,247,252,220,163,173,42,3,0,248,252,154,148,57,165,2,0,250,124,176,229,162,175,2,0,251,60,124,227,138,198,3,0,253,252,86,26,144,97,3,0,0,125,5,46,89,154,4,0,1,253,188,247,59,51,3,0,2,61,216,12,62,242,3,0,5,189,83,157,255,40,4,0,6,253,131,188,211,8,4,0,7,189,219,47,109,101,3,0,10,61,125,30,156,90,2,0,10,61,154,213,180,93,2,0,11,61,50,35,147,20,3,0,12,125,104,117,83,51,3,0,15,61,120,89,251,104,4,0,19,61,66,175,53,71,2,0,20,61,84,206,94,83,3,0,22,253,16,43,7,198,2,0,23,253,118,34,152,11,2,0,23,253,237,43,129,111,4,0,25,125,226,220,246,156,2,0,32,61,3,216,56,33,2,0,33,61,139,41,84,8,4,0,36,189,39,81,198,20,3,0,36,253,239,242,187,122,3,0,37,253,235,105,225,148,2,0,39,61,100,28,211,124,4,0,41,125,197,128,248,74,4,0,41,61,9,89,79,92,4,0,43,125,241,204,186,27,2,0,43,253,149,117,20,129,2,0,43,189,230,255,173,174,2,0,44,189,150,233,125,10,4,0,44,189,150,233,146,10,4,0,44,189,150,233,170,10,4,0,45,253,154,128,248,156,4,0,50,189,223,12,172,36,3,0,55,253,107,44,145,128,2,0,56,253,52,10,215,56,2,0,56,61,39,3,225,71,2,0,58,125,106,17,108,53,2,0,62,189,68,23,105,66,3,0,63,125,82,234,33,126,3,0,64,61,185,9,5,89,3,0,64,125,120,104,131,143,3,0,64,61,223,52,142,165,3,0,64,61,116,178,150,223,3,0,65,189,73,18,110,86,3,0,66,61,105,78,21,5,2,0,67,253,15,32,1,120,3,0,69,61,233,183,177,144,4,0,71,61,48,143,93,199,3,0,72,189,208,233,50,234,3,0,73,189,219,189,203,105,3,0,80,61,34,166,19,122,3,0,85,189,123,129,105,210,2,0,88,61,6,112,203,64,2,0,90,253,220,152,64,60,3,0,90,61,17,95,21,241,3,0,91,189,45,46,87,4,2,0,91,189,30,57,244,42,3,0,92,253,172,14,100,54,3,0,92,189,19,177,124,30,4,0,94,61,20,177,92,17,2,0,94,189,154,85,244,181,4,0,95,253,187,92,159,102,2,0,95,189,173,85,7,176,3,0,98,189,227,75,121,15,4,0,101,61,86,138,247,82,2,0,103,61,84,206,76,83,3,0,108,253,170,110,56,138,3,0,111,61,241,106,111,40,4,0,112,61,164,155,175,9,2,0,116,61,101,6,107,214,2,0,118,189,39,92,38,94,3,0,118,125,192,7,10,3,4,0,123,61,6,66,24,252,2,0,124,253,176,142,14,83,2,0,124,189,68,27,115,96,3,0,125,61,217,53,0,208,2,0,126,125,71,227,137,120,2,0,128,61,191,83,144,221,3,0,130,61,22,156,155,210,2,0,130,61,132,74,15,78,4,0,131,253,54,11,120,71,4,0,134,125,241,238,179,156,4,0,137,253,7,82,49,43,4,0,139,189,76,81,247,171,2,0,139,61,122,49,240,203,2,0,140,253,7,30,150,0,4,0,144,253,205,253,127,149,2,0,146,125,66,119,29,104,3,0,146,253,205,83,71,58,4,0,147,253,207,125,59,197,3,0,152,125,113,131,35,54,3,0,152,253,252,75,49,74,4,0,153,125,0,13,63,131,3,0,154,61,158,119,120,124,2,0,156,189,108,207,110,57,4,0,156,125,212,176,181,152,4,0,161,61,173,20,139,14,2,0,161,61,144,119,58,58,4,0,165,61,40,163,60,82,3,0,166,125,9,33,43,189,2,0,166,189,215,134,230,168,4,0,167,253,130,4,174,145,3,0,168,125,35,5,225,97,2,0,170,61,61,158,94,221,3,0,171,125,10,47,37,105,4,0,177,189,225,128,198,54,3,0,178,61,60,112,238,202,3,0,179,253,208,2,157,11,3,0,179,253,70,232,91,24,3,0,180,253,209,188,24,89,4,0,182,189,127,171,160,39,4,0,185,189,88,85,147,15,3,0,186,61,196,22,120,78,3,0,187,189,140,176,45,146,4,0,188,125,153,203,226,162,3,0,192,61,208,19,106,32,3,0,192,189,22,229,191,141,3,0,192,189,21,9,134,171,3,0,197,253,111,195,215,247,3,0,204,125,14,199,156,157,3,0,209,125,123,184,194,82,3,0,210,189,46,54,41,114,3,0,212,189,164,65,173,11,3,0,212,253,209,73,60,217,3,0,213,189,41,188,11,3,3,0,218,189,148,211,251,121,3,0,218,189,71,66,217,133,3,0,218,189,193,106,3,83,4,0,221,253,231,113,61,111,2,0,223,253,86,67,27,96,2,0,224,61,33,158,127,172,4,0,227,61,127,199,1,50,2,0,230,253,201,175,221,134,4,0,234,189,170,185,108,76,3,0,236,253,226,235,117,208,2,0,237,189,77,158,76,231,2,0,239,253,211,225,184,110,2,0,242,253,147,112,124,131,2,0,244,61,96,143,233,211,2,0,245,125,113,185,31,184,3,0,245,61,74,69,151,229,3,0,246,189,99,54,140,184,2,0,246,189,45,168,189,38,4,0,247,253,162,112,34,134,3,0,251,125,237,25,184,53,3,0,251,61,116,89,51,185,3,0,253,61,100,18,121,188,4,0,6,254,173,174,38,140,2,0,8,126,252,214,124,112,3,0,10,190,66,28,50,160,4,0,11,126,158,119,250,8,2,0,11,62,102,81,130,9,2,0,15,126,211,142,215,12,3,0,16,254,201,203,21,6,2,0,17,254,4,100,211,25,4,0,20,190,64,185,244,38,3,0,20,126,30,253,147,82,4,0,24,126,179,91,155,80,4,0,29,254,99,126,149,171,3,0,29,126,62,58,122,252,3,0,30,126,66,157,48,104,2,0,32,126,21,249,159,116,2,0,32,190,196,210,41,241,2,0,33,254,51,53,245,80,2,0,37,254,164,119,120,71,3,0,41,254,81,92,164,153,4,0,46,126,243,3,218,43,4,0,49,254,70,243,91,19,3,0,49,126,47,232,208,3,4,0,50,126,80,43,141,207,2,0,51,126,84,116,88,28,4,0,55,62,16,225,64,128,3,0,56,190,95,12,158,122,2,0,56,62,121,236,74,178,3,0,58,126,169,84,8,109,4,0,59,254,59,75,80,105,2,0,62,62,230,24,104,172,3,0,63,62,182,46,121,20,2,0,64,190,78,89,6,62,4,0,67,126,37,81,233,32,3,0,74,62,107,174,245,36,2,0,75,190,97,146,225,4,4,0,77,62,27,117,206,40,3,0,77,126,90,47,223,147,3,0,78,254,184,200,74,131,4,0,80,254,157,227,217,34,3,0,81,254,175,179,157,78,3,0,84,62,27,104,24,66,2,0,94,62,149,194,120,169,4,0,95,62,174,120,36,58,4,0,103,254,32,181,22,151,2,0,106,190,178,136,2,201,2,0,108,126,59,184,82,55,3,0,113,126,138,83,99,229,2,0,113,190,102,76,79,242,3,0,116,254,169,98,201,132,2,0,116,62,108,17,81,229,3,0,118,254,58,152,181,169,3,0,119,254,93,82,120,217,3,0,120,62,232,173,198,156,4,0,124,62,112,160,129,157,2,0,125,62,36,34,176,72,4,0,128,126,37,176,195,41,3,0,129,254,255,188,8,234,3,0,130,126,161,113,154,113,2,0,140,190,114,78,136,37,2,0,142,254,231,57,58,211,2,0,142,62,197,15,67,65,4,0,145,126,210,160,16,84,3,0,145,62,8,95,179,215,3,0,147,62,209,181,92,127,2,0,147,190,158,160,165,58,3,0,149,126,210,21,158,182,4,0,150,62,176,66,235,38,2,0,151,190,78,202,17,149,4,0,151,62,59,28,53,151,4,0,153,190,26,84,65,254,3,0,153,190,188,48,127,102,4,0,154,254,113,110,110,223,2,0,155,126,134,184,193,34,4,0,157,126,247,50,55,117,4,0,162,62,244,86,76,115,2,0,162,254,208,32,255,44,4,0,162,62,175,107,250,70,4,0,163,62,229,229,11,161,2,0,163,62,45,22,36,13,3,0,165,254,21,122,4,250,2,0,168,190,52,244,34,158,4,0,170,254,106,255,217,72,4,0,173,254,77,163,174,129,3,0,174,62,149,155,199,171,2,0,175,254,43,95,250,61,2,0,175,126,178,186,0,13,3,0,175,126,122,151,75,137,4,0,181,190,172,240,244,57,3,0,186,62,123,25,196,6,3,0,192,254,179,253,33,27,3,0,192,254,80,0,11,29,4,0,193,254,42,48,47,58,3,0,194,62,114,252,178,35,2,0,197,62,169,163,181,126,3,0,198,254,187,219,217,139,3,0,200,254,137,250,18,90,2,0,200,190,192,148,211,121,2,0,200,126,206,177,166,69,4,0,204,254,73,51,232,133,2,0,206,126,129,232,254,218,3,0,207,190,239,239,3,138,3,0,208,126,255,30,100,39,2,0,211,190,228,228,121,25,4,0,214,254,196,190,50,86,4,0,217,190,56,79,51,88,2,0,218,62,224,247,166,225,2,0,218,254,170,143,5,86,3,0,219,254,190,68,188,76,4,0,220,254,239,18,24,87,2,0,225,190,234,201,243,168,2,0,225,126,221,11,148,181,4,0,226,62,90,170,3,151,2,0,227,254,229,139,164,84,2,0,230,254,251,194,114,211,2,0,237,62,41,203,252,173,4,0,241,126,8,192,254,226,2,0,244,254,152,243,11,10,3,0,244,126,70,149,143,49,4,0,245,254,135,140,125,158,3,0,245,254,162,124,230,24,4,0,247,254,197,234,25,103,4,0,253,190,49,209,89,137,2,0,2,127,156,160,25,60,3,0,3,63,77,254,182,27,3,0,7,255,100,79,158,0,3,0,8,191,75,74,227,99,2,0,9,255,71,87,160,150,3,0,14,191,2,253,148,181,2,0,18,255,56,116,229,21,4,0,19,255,145,178,121,160,3,0,24,191,196,202,163,114,4,0,29,255,249,179,97,20,3,0,30,255,47,208,249,146,2,0,31,63,29,47,156,134,2,0,32,127,111,44,149,136,2,0,36,63,94,246,57,18,2,0,37,255,24,242,199,3,2,0,39,255,136,126,223,143,2,0,42,63,168,172,254,18,2,0,45,255,93,242,101,138,4,0,46,127,144,131,120,136,3,0,49,255,147,190,246,239,3,0,50,255,130,208,4,145,2,0,51,191,168,143,145,148,4,0,54,255,185,208,56,4,3,0,55,191,150,137,32,90,3,0,59,127,74,67,92,170,2,0,62,191,41,244,91,137,4,0,64,127,164,186,110,205,2,0,64,255,107,197,221,212,3,0,65,191,101,144,142,151,2,0,67,127,124,69,105,254,2,0,68,255,229,12,150,76,3,0,68,127,164,190,60,159,3,0,70,255,119,150,188,81,2,0,70,191,161,61,92,155,2,0,70,191,90,2,19,171,2,0,71,127,57,109,51,91,3,0,72,191,241,10,135,18,2,0,72,127,105,7,102,142,2,0,72,63,31,81,78,36,3,0,77,255,110,163,11,160,3,0,78,127,161,91,80,106,4,0,79,191,214,50,194,194,3,0,82,127,134,37,131,207,3,0,84,255,187,173,13,165,2,0,85,255,87,58,192,122,2,0,86,255,243,66,151,142,2,0,87,127,154,114,132,132,4,0,91,255,84,255,60,233,2,0,93,255,0,140,77,206,2,0,93,63,102,110,182,162,3,0,94,63,13,18,150,174,3,0,94,191,84,217,122,226,3,0,95,191,133,220,76,71,2,0,97,63,123,49,224,210,2,0,103,191,188,168,54,246,2,0,105,191,226,28,238,141,3,0,105,63,200,30,241,159,4,0,106,255,205,189,22,247,2,0,106,127,33,9,190,125,3,0,108,255,207,47,255,51,4,0,108,255,207,47,17,52,4,0,112,255,49,83,147,238,3,0,116,127,93,248,93,128,4,0,118,191,108,27,188,124,2,0,119,127,218,224,155,50,3,0,119,127,83,76,124,212,3,0,120,127,124,6,157,176,3,0,122,63,31,93,144,6,2,0,124,255,250,42,1,154,2,0,131,191,89,81,147,111,2,0,132,63,74,69,41,40,4,0,134,63,98,23,170,159,4,0,136,63,245,239,239,228,3,0,139,255,94,173,98,130,3,0,143,127,47,194,211,228,2,0,145,191,19,252,195,169,3,0,147,191,44,115,58,247,2,0,148,191,32,2,177,162,4,0,151,255,105,120,86,44,2,0,155,63,81,225,52,180,3,0,155,255,172,251,143,156,4,0,156,127,100,79,14,5,4,0,156,255,161,164,38,124,4,0,161,63,48,188,100,0,3,0,162,127,241,47,186,121,4,0,163,191,42,86,238,17,3,0,163,63,38,72,162,93,4,0,172,63,20,178,157,1,2,0,174,255,191,65,226,177,3,0,175,127,2,48,104,31,4,0,176,127,64,250,75,144,4,0,178,127,243,192,230,55,3,0,180,63,123,49,40,207,2,0,180,63,123,49,63,207,2,0,180,63,123,49,96,207,2,0,180,63,123,49,120,207,2,0,180,191,178,134,148,69,3,0,183,191,64,255,80,247,3,0,184,127,101,157,247,121,2,0,188,191,158,122,118,63,3,0,188,191,148,223,190,93,4,0,190,255,77,91,130,66,2,0,198,255,185,162,1,67,4,0,202,127,236,225,61,50,3,0,202,63,193,204,118,124,4,0,203,127,111,237,50,169,4,0,204,63,177,45,101,174,2,0,204,191,208,104,112,33,4,0,205,191,207,132,1,29,2,0,207,191,117,250,170,131,4,0,209,191,201,34,8,110,4,0,212,255,208,183,190,104,2,0,212,127,20,172,104,78,3,0,214,63,79,227,245,73,2,0,214,255,126,186,82,83,2,0,214,255,224,147,212,156,3,0,215,127,26,12,253,145,2,0,218,255,136,106,213,138,2,0,219,63,12,43,219,10,2,0,223,191,132,5,250,187,3,0,225,127,230,6,118,109,3,0,225,191,209,177,86,234,3,0,227,191,20,72,136,234,3,0,228,63,242,115,56,248,2,0,228,127,94,173,178,85,3,0,229,255,179,240,48,254,3,0,231,191,138,171,164,176,2,0,231,127,64,17,191,102,4,0,232,255,82,242,168,246,2,0,232,191,225,6,43,251,2,0,237,255,107,197,79,213,3,0,239,127,85,27,47,249,2,0,240,255,220,147,131,51,4,0,241,127,106,1,36,22,2,0,242,127,250,193,72,221,2,0,242,191,121,91,51,7,4,0,244,255,91,37,3,249,2,0,251,191,66,224,88,6,4,0,252,191,74,1,162,107,3,0,254,191,48,115,111,90,2,0,254,191,206,196,239,157,3,0,8,0,33,46,45,45,102,114,97,109,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,16,46,45,97,99,116,105,118,101,46,99,111,111,107,105,101,115,8,0,19,46,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,14,46,45,115,45,99,111,111,107,105,101,45,98,97,114,8,0,21,46,45,115,104,111,119,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,8,0,17,46,65,53,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,33,46,65,66,84,97,115,116,121,80,108,117,103,105,110,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,8,0,18,46,65,80,95,109,111,100,45,98,109,45,99,111,111,107,105,101,115,8,0,18,46,65,87,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,19,46,65,99,99,101,112,116,67,111,111,107,105,101,45,70,105,120,101,100,8,0,24,46,65,99,99,101,112,116,67,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,25,46,65,99,99,101,112,116,67,111,111,107,105,101,115,77,111,100,117,108,101,80,111,112,85,112,8,0,25,46,65,103,114,101,101,109,101,110,116,66,97,110,110,101,114,95,95,119,114,97,112,112,101,114,8,0,22,46,65,110,97,108,121,116,105,99,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,13,46,65,118,105,115,111,67,111,111,107,105,101,115,8,0,14,46,65,118,105,115,111,95,99,111,111,107,105,101,115,8,0,18,46,66,97,110,100,101,97,117,67,111,111,107,105,101,71,108,111,98,8,0,25,46,66,97,110,110,101,114,80,114,105,118,97,99,121,73,110,102,111,114,109,97,116,105,111,110,8,0,27,46,66,108,111,103,72,101,97,100,101,114,95,95,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,14,46,66,111,114,108,97,98,115,67,111,111,107,105,101,8,0,18,46,67,50,49,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,67,67,80,65,66,97,110,110,101,114,8,0,16,46,67,67,99,111,111,107,105,101,119,97,114,110,105,110,103,8,0,24,46,67,73,110,102,111,91,100,97,116,97,45,99,111,111,107,105,101,45,105,110,102,111,93,8,0,11,46,67,76,97,119,66,97,110,110,101,114,8,0,5,46,67,78,73,76,8,0,12,46,67,79,49,49,95,99,111,111,107,105,101,8,0,10,46,67,79,79,75,73,69,45,105,116,8,0,22,46,67,79,79,75,73,69,67,79,78,83,69,78,84,95,66,65,78,68,69,65,85,8,0,13,46,67,79,79,75,73,69,78,79,84,73,67,69,8,0,11,46,67,79,79,75,73,69,95,66,79,88,8,0,20,46,67,79,79,75,73,69,95,80,82,73,86,65,67,89,95,67,79,78,84,8,0,20,46,67,79,79,75,73,69,95,85,83,65,71,69,95,65,67,67,69,80,84,8,0,19,46,67,84,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,16,46,67,95,67,111,111,107,105,101,95,80,111,108,105,99,121,8,0,13,46,67,97,105,120,97,67,111,111,107,105,101,115,8,0,8,46,67,101,114,101,122,80,112,8,0,24,46,67,110,105,108,67,111,111,107,105,101,115,67,111,110,102,105,114,109,97,116,105,111,110,8,0,19,46,67,110,105,108,67,111,111,107,105,101,115,87,97,114,110,105,110,103,8,0,11,46,67,111,67,104,79,117,116,66,111,120,8,0,36,46,67,111,109,109,111,110,45,80,114,105,118,97,99,121,45,72,101,97,100,101,114,67,111,111,107,105,101,115,77,101,115,115,97,103,101,8,0,41,46,67,111,109,112,111,110,101,110,116,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,61,34,67,111,111,107,105,101,70,111,111,116,101,114,34,93,8,0,14,46,67,111,110,67,111,111,107,105,101,73,110,102,111,8,0,24,46,67,111,110,102,105,114,109,67,111,111,107,105,101,77,101,115,115,97,103,101,66,111,120,8,0,12,46,67,111,110,115,101,110,116,72,105,110,116,8,0,13,46,67,111,110,115,101,110,116,80,97,110,101,108,8,0,21,46,67,111,110,115,101,110,116,101,100,67,111,111,107,105,101,66,108,111,99,107,8,0,22,46,67,111,110,115,101,110,116,115,66,97,110,110,101,114,79,118,101,114,108,97,121,8,0,19,46,67,111,110,116,97,105,110,101,114,45,45,99,111,111,107,105,101,115,8,0,17,46,67,111,110,116,97,105,110,101,114,67,111,111,107,105,101,115,8,0,26,46,67,111,110,116,114,111,108,67,111,111,107,105,101,115,45,97,108,101,114,116,45,115,104,111,119,8,0,13,46,67,111,111,107,105,101,45,45,98,97,115,101,8,0,15,46,67,111,111,107,105,101,45,45,98,111,116,116,111,109,8,0,12,46,67,111,111,107,105,101,45,45,105,98,101,8,0,15,46,67,111,111,107,105,101,45,67,111,110,115,101,110,116,8,0,21,46,67,111,111,107,105,101,45,67,111,110,115,101,110,116,45,45,115,104,111,119,8,0,11,46,67,111,111,107,105,101,45,98,97,114,8,0,21,46,67,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,108,111,99,107,8,0,25,46,67,111,111,107,105,101,45,110,111,116,105,99,101,95,95,99,111,110,116,97,105,110,101,114,8,0,26,46,67,111,111,107,105,101,65,99,99,101,112,116,73,109,97,103,101,68,105,118,67,108,97,115,115,8,0,18,46,67,111,111,107,105,101,65,99,99,101,112,116,76,97,121,101,114,8,0,18,46,67,111,111,107,105,101,65,99,99,101,112,116,80,97,110,101,108,8,0,17,46,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,8,0,24,46,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,87,114,97,112,112,101,114,8,0,31,46,67,111,111,107,105,101,65,99,107,110,111,119,108,100,101,103,101,109,101,110,116,67,111,110,116,97,105,110,101,114,8,0,16,46,67,111,111,107,105,101,65,103,114,101,101,109,101,110,116,8,0,14,46,67,111,111,107,105,101,65,112,112,114,111,118,101,8,0,13,46,67,111,111,107,105,101,66,97,110,110,101,114,8,0,14,46,67,111,111,107,105,101,66,97,110,110,101,114,50,8,0,16,46,67,111,111,107,105,101,66,97,110,110,101,114,68,105,118,8,0,17,46,67,111,111,107,105,101,66,97,110,110,101,114,79,102,77,119,8,0,17,46,67,111,111,107,105,101,66,97,110,110,101,114,79,102,80,99,8,0,10,46,67,111,111,107,105,101,66,97,114,8,0,17,46,67,111,111,107,105,101,66,97,114,87,114,97,112,112,101,114,8,0,19,46,67,111,111,107,105,101,66,97,114,95,95,87,114,97,112,112,101,114,8,0,12,46,67,111,111,107,105,101,66,97,120,71,114,8,0,10,46,67,111,111,107,105,101,66,111,120,8,0,10,46,67,111,111,107,105,101,66,116,110,8,0,14,46,67,111,111,107,105,101,67,104,101,99,107,101,114,8,0,22,46,67,111,111,107,105,101,67,104,111,105,99,101,67,111,110,116,97,105,110,101,114,8,0,17,46,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,8,0,26,46,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,67,111,110,116,97,105,110,101,114,8,0,31,46,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,67,111,110,116,97,105,110,101,114,45,118,101,105,108,8,0,24,46,67,111,111,107,105,101,67,111,110,115,101,110,116,45,67,111,110,116,97,105,110,101,114,8,0,36,46,67,111,111,107,105,101,67,111,110,115,101,110,116,45,87,114,97,112,112,101,114,45,66,97,99,107,103,114,111,117,110,100,66,111,120,8,0,24,46,67,111,111,107,105,101,67,111,110,115,101,110,116,45,102,105,114,115,116,105,110,102,111,8,0,22,46,67,111,111,107,105,101,67,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,18,46,67,111,111,107,105,101,67,111,110,115,101,110,116,65,114,101,97,8,0,20,46,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,8,0,23,46,67,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,8,0,18,46,67,111,111,107,105,101,67,111,110,115,101,110,116,77,101,109,111,8,0,21,46,67,111,111,107,105,101,67,111,110,115,101,110,116,79,118,101,114,108,97,121,8,0,20,46,67,111,111,107,105,101,67,111,110,115,101,110,116,95,95,104,111,115,116,8,0,16,46,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,20,46,67,111,111,107,105,101,67,111,110,116,114,111,108,66,97,110,110,101,114,8,0,23,46,67,111,111,107,105,101,68,105,114,101,99,116,105,118,101,68,105,115,112,108,97,121,8,0,22,46,67,111,111,107,105,101,68,105,114,101,99,116,105,118,101,72,101,105,103,104,116,8,0,17,46,67,111,111,107,105,101,68,105,115,99,108,111,115,117,114,101,8,0,10,46,67,111,111,107,105,101,68,105,118,8,0,14,46,67,111,111,107,105,101,69,66,117,116,116,111,110,8,0,11,46,67,111,111,107,105,101,72,105,110,116,8,0,14,46,67,111,111,107,105,101,73,110,102,111,66,97,114,8,0,16,46,67,111,111,107,105,101,73,110,102,111,80,97,110,101,108,8,0,15,46,67,111,111,107,105,101,73,110,102,111,84,101,120,116,8,0,18,46,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,8,0,27,46,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,67,111,110,116,97,105,110,101,114,8,0,17,46,67,111,111,107,105,101,76,97,119,87,114,97,112,112,101,114,8,0,12,46,67,111,111,107,105,101,76,97,121,101,114,8,0,13,46,67,111,111,107,105,101,76,97,121,111,117,116,8,0,14,46,67,111,111,107,105,101,77,101,115,115,97,103,101,8,0,17,46,67,111,111,107,105,101,77,101,115,115,97,103,101,68,105,118,8,0,17,46,67,111,111,107,105,101,77,111,110,115,116,101,114,66,111,120,8,0,10,46,67,111,111,107,105,101,77,115,103,8,0,11,46,67,111,111,107,105,101,78,111,116,101,8,0,13,46,67,111,111,107,105,101,78,111,116,105,99,101,8,0,20,46,67,111,111,107,105,101,78,111,116,105,99,101,45,68,114,97,119,101,114,8,0,19,46,67,111,111,107,105,101,78,111,116,105,99,101,66,97,110,110,101,114,8,0,22,46,67,111,111,107,105,101,78,111,116,105,99,101,67,111,110,116,97,105,110,101,114,8,0,19,46,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,23,46,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,8,0,24,46,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,80,111,112,85,112,8,0,25,46,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,84,111,112,66,97,114,8,0,13,46,67,111,111,107,105,101,78,111,116,105,102,121,8,0,28,46,67,111,111,107,105,101,78,111,116,105,102,121,87,105,100,103,101,116,95,95,119,114,97,112,112,101,114,8,0,12,46,67,111,111,107,105,101,79,112,116,73,110,8,0,14,46,67,111,111,107,105,101,79,118,101,114,108,97,121,8,0,12,46,67,111,111,107,105,101,80,97,110,101,108,8,0,11,46,67,111,111,107,105,101,80,101,114,109,8,0,13,46,67,111,111,107,105,101,80,111,108,105,99,121,8,0,22,46,67,111,111,107,105,101,80,111,108,105,99,121,45,67,111,110,116,101,110,101,114,8,0,16,46,67,111,111,107,105,101,80,111,108,105,99,121,66,97,114,8,0,27,46,67,111,111,107,105,101,80,111,108,105,99,121,77,97,110,97,103,101,114,45,66,97,110,110,101,114,8,0,23,46,67,111,111,107,105,101,80,111,108,105,99,121,77,101,115,115,97,103,101,66,111,120,8,0,25,46,67,111,111,107,105,101,80,111,108,105,99,121,78,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,67,111,111,107,105,101,80,111,108,105,99,121,87,105,100,103,101,116,8,0,20,46,67,111,111,107,105,101,80,111,108,105,99,121,95,115,117,98,100,105,118,8,0,12,46,67,111,111,107,105,101,80,111,112,85,112,8,0,12,46,67,111,111,107,105,101,80,111,112,117,112,8,0,20,46,67,111,111,107,105,101,80,114,105,118,97,99,121,66,97,110,110,101,114,8,0,12,46,67,111,111,107,105,101,80,114,111,109,111,8,0,20,46,67,111,111,107,105,101,84,111,112,68,105,115,99,108,97,105,109,101,114,8,0,18,46,67,111,111,107,105,101,85,115,101,65,112,112,114,111,118,97,108,8,0,14,46,67,111,111,107,105,101,87,97,114,110,105,110,103,8,0,23,46,67,111,111,107,105,101,87,97,114,110,105,110,103,67,111,109,112,111,110,101,110,116,8,0,23,46,67,111,111,107,105,101,87,97,114,110,105,110,103,95,95,119,114,97,112,112,101,114,8,0,13,46,67,111,111,107,105,101,87,105,110,100,111,119,8,0,14,46,67,111,111,107,105,101,95,66,97,110,110,101,114,8,0,12,46,67,111,111,107,105,101,95,80,97,110,101,8,0,13,46,67,111,111,107,105,101,95,84,101,114,109,115,8,0,15,46,67,111,111,107,105,101,95,95,66,97,110,110,101,114,8,0,15,46,67,111,111,107,105,101,95,95,98,97,110,110,101,114,8,0,18,46,67,111,111,107,105,101,95,95,99,111,110,116,97,105,110,101,114,8,0,11,46,67,111,111,107,105,101,95,98,97,114,8,0,13,46,67,111,111,107,105,101,95,109,111,100,97,108,8,0,10,46,67,111,111,107,105,101,98,97,114,8,0,22,46,67,111,111,107,105,101,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,38,46,67,111,111,107,105,101,112,111,108,105,99,121,91,100,97,116,97,45,105,100,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,34,93,8,0,15,46,67,111,111,107,105,101,112,111,112,117,112,98,111,120,8,0,18,46,67,111,111,107,105,101,115,45,67,111,110,116,97,105,110,101,114,8,0,21,46,67,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,67,111,111,107,105,101,115,65,99,99,101,112,116,45,66,111,100,121,8,0,13,46,67,111,111,107,105,101,115,65,108,101,114,116,8,0,14,46,67,111,111,107,105,101,115,66,97,110,110,101,114,8,0,19,46,67,111,111,107,105,101,115,66,97,110,110,101,114,45,114,111,111,116,8,0,19,46,67,111,111,107,105,101,115,66,97,110,110,101,114,45,115,104,111,119,8,0,26,46,67,111,111,107,105,101,115,66,97,110,110,101,114,77,111,100,97,108,79,118,101,114,108,97,121,8,0,11,46,67,111,111,107,105,101,115,66,97,114,8,0,15,46,67,111,111,107,105,101,115,67,111,110,115,101,110,116,8,0,20,46,67,111,111,107,105,101,115,67,111,110,115,101,110,116,95,114,111,111,116,8,0,17,46,67,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,8,0,14,46,67,111,111,107,105,101,115,70,111,111,116,101,114,8,0,20,46,67,111,111,107,105,101,115,72,105,110,119,101,105,115,79,117,116,101,114,8,0,12,46,67,111,111,107,105,101,115,73,110,102,111,8,0,16,46,67,111,111,107,105,101,115,73,110,102,111,77,97,105,110,8,0,20,46,67,111,111,107,105,101,115,76,97,119,67,111,110,116,97,105,110,101,114,8,0,13,46,67,111,111,107,105,101,115,76,97,121,101,114,8,0,20,46,67,111,111,107,105,101,115,77,101,115,115,97,103,101,66,108,111,99,107,8,0,24,46,67,111,111,107,105,101,115,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,8,0,20,46,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,8,0,42,46,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,115,80,111,112,85,112,95,95,79,117,116,101,114,67,111,110,116,97,105,110,101,114,8,0,10,46,67,111,111,107,105,101,115,79,75,8,0,10,46,67,111,111,107,105,101,115,79,107,8,0,21,46,67,111,111,107,105,101,115,80,111,108,105,99,121,45,98,97,110,110,101,114,8,0,20,46,67,111,111,107,105,101,115,80,111,108,105,99,121,66,97,110,110,101,114,8,0,20,46,67,111,111,107,105,101,115,80,111,112,117,112,45,109,105,100,100,108,101,8,0,24,46,67,111,111,107,105,101,115,80,111,112,117,112,95,95,67,111,110,116,97,105,110,101,114,8,0,20,46,67,111,111,107,105,101,115,84,101,114,109,115,67,111,110,115,101,110,116,8,0,13,46,67,111,111,107,105,101,115,85,115,97,103,101,8,0,15,46,67,111,111,107,105,101,115,87,97,114,110,105,110,103,8,0,21,46,67,111,111,107,105,101,115,95,67,111,111,107,105,101,115,80,111,112,105,110,8,0,14,46,67,111,111,107,105,101,115,95,97,108,101,114,116,8,0,14,46,67,111,111,107,105,101,115,95,98,108,111,99,107,8,0,11,46,67,111,114,101,67,111,111,107,105,101,8,0,32,46,68,86,87,101,98,78,111,100,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,49,46,68,86,87,101,98,78,111,100,101,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,8,0,26,46,68,105,115,99,108,97,105,109,101,114,67,111,111,107,105,101,67,111,109,112,111,110,101,110,116,8,0,13,46,68,109,120,108,97,98,115,75,111,111,107,101,8,0,10,46,69,85,45,99,111,111,107,105,101,8,0,15,46,69,85,67,111,111,107,105,101,66,97,110,110,101,114,8,0,12,46,69,85,67,111,111,107,105,101,66,111,120,8,0,13,46,69,85,67,111,111,107,105,101,73,110,102,111,8,0,15,46,69,85,67,111,111,107,105,101,76,97,119,66,97,114,8,0,15,46,69,85,67,111,111,107,105,101,78,111,116,105,99,101,8,0,23,46,69,85,67,111,111,107,105,101,78,111,116,105,99,101,95,99,111,110,116,101,110,116,8,0,24,46,69,85,67,111,111,107,105,101,80,111,108,105,99,121,67,111,110,116,97,105,110,101,114,8,0,14,46,69,85,67,111,111,107,105,101,80,111,112,117,112,8,0,4,46,69,85,99,8,0,24,46,69,87,83,67,111,111,107,105,101,67,111,110,115,101,110,116,79,118,101,114,108,97,121,8,0,16,46,69,110,97,98,108,105,110,103,67,111,111,107,105,101,115,8,0,15,46,69,112,114,105,118,97,99,121,66,97,110,110,101,114,8,0,12,46,69,117,67,111,111,107,105,101,66,97,114,8,0,14,46,69,117,67,111,111,107,105,101,83,104,101,101,116,8,0,26,46,69,117,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,86,105,101,119,8,0,18,46,69,117,114,111,112,101,97,110,67,111,111,107,105,101,66,97,114,8,0,27,46,70,54,45,99,111,111,107,105,101,115,95,119,95,106,115,45,101,110,116,114,121,112,111,105,110,116,8,0,13,46,70,69,95,67,79,79,75,73,69,76,65,87,8,0,15,46,70,79,79,84,69,82,95,67,79,79,75,73,69,83,8,0,15,46,70,111,111,116,101,114,67,111,111,107,105,101,71,76,8,0,32,46,71,48,48,53,45,103,108,111,98,97,108,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,10,46,71,65,99,111,111,107,105,101,115,8,0,23,46,71,66,97,115,101,71,68,80,82,67,111,110,115,101,110,116,68,105,97,108,111,103,8,0,9,46,71,68,80,82,45,77,115,103,8,0,19,46,71,68,80,82,45,87,101,108,99,111,109,101,66,97,110,110,101,114,8,0,13,46,71,68,80,82,45,99,111,111,107,105,101,115,8,0,18,46,71,68,80,82,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,21,46,71,68,80,82,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,11,46,71,68,80,82,45,116,111,97,115,116,8,0,19,46,71,68,80,82,45,116,111,111,108,115,45,99,111,110,115,101,110,116,8,0,22,46,71,68,80,82,46,110,103,45,115,116,97,114,45,105,110,115,101,114,116,101,100,8,0,10,46,71,68,80,82,80,97,110,101,108,8,0,19,46,71,68,80,82,80,97,110,101,108,45,45,118,105,115,105,98,108,101,8,0,15,46,71,68,80,82,80,97,110,101,108,45,114,111,111,116,8,0,11,46,71,82,85,95,98,97,110,110,101,114,8,0,12,46,71,100,112,114,45,112,111,108,105,99,121,8,0,20,46,71,100,112,114,45,112,111,108,105,99,121,45,100,101,115,107,116,111,112,8,0,11,46,71,100,112,114,66,97,110,110,101,114,8,0,15,46,71,100,112,114,66,97,110,110,101,114,95,95,98,103,8,0,17,46,71,100,112,114,67,111,111,107,105,101,115,80,111,112,117,112,8,0,17,46,71,108,111,98,97,108,67,111,110,115,101,110,116,66,97,114,8,0,13,46,71,108,111,98,97,108,67,111,111,107,105,101,8,0,21,46,71,114,111,119,109,97,114,107,71,68,80,82,95,87,114,97,112,112,101,114,8,0,17,46,72,85,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,14,46,72,101,97,100,101,114,45,99,111,111,107,105,101,8,0,19,46,72,114,83,121,115,45,71,105,112,115,45,68,105,118,73,66,111,120,8,0,26,46,72,114,83,121,115,45,71,105,112,115,45,105,66,111,120,68,105,118,67,111,110,116,101,110,116,8,0,18,46,73,80,95,95,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,19,46,73,84,80,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,13,46,73,84,80,99,111,111,107,105,101,98,97,114,8,0,31,46,73,109,112,111,114,116,97,110,116,91,109,115,103,105,100,61,34,99,111,111,107,105,101,45,105,110,102,111,34,93,8,0,13,46,74,83,95,99,111,111,107,105,101,66,97,114,8,0,15,46,74,83,99,111,111,107,105,101,115,45,112,97,114,116,8,0,19,46,74,95,97,103,114,101,101,67,111,111,107,105,101,77,111,100,97,108,8,0,9,46,75,111,108,97,99,105,107,121,8,0,17,46,76,65,87,95,99,111,111,107,105,101,95,97,108,101,114,116,8,0,5,46,76,71,80,68,8,0,19,46,76,71,80,68,45,112,111,112,117,112,45,119,114,97,112,112,101,114,8,0,12,46,76,71,80,68,87,97,114,110,105,110,103,8,0,19,46,76,111,111,112,114,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,11,46,77,52,84,45,99,111,111,107,105,101,8,0,22,46,77,66,45,49,48,56,45,99,111,111,107,105,101,45,104,105,110,119,101,105,115,8,0,19,46,77,67,111,111,107,105,101,81,117,101,115,116,105,111,110,66,111,120,8,0,17,46,77,101,115,115,97,103,101,45,45,99,111,111,107,105,101,115,8,0,19,46,77,101,115,115,97,103,101,66,108,111,99,107,67,111,111,107,105,101,8,0,18,46,77,111,100,84,104,111,109,97,115,67,111,111,107,105,101,115,67,8,0,22,46,77,111,100,97,108,45,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,23,46,77,111,100,97,108,67,111,111,107,105,101,115,66,97,99,107,103,114,111,117,110,100,8,0,24,46,78,97,118,98,97,114,45,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,8,0,22,46,78,97,118,98,97,114,45,116,111,97,115,116,67,111,110,116,97,105,110,101,114,8,0,27,46,78,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,78,111,116,105,99,101,8,0,20,46,78,111,116,105,102,105,99,97,116,105,111,110,67,111,111,107,105,101,115,8,0,25,46,78,111,118,101,109,101,100,105,97,67,111,111,107,105,101,80,111,108,105,99,121,66,111,120,8,0,12,46,79,45,67,111,111,107,105,101,76,97,119,8,0,15,46,79,98,115,67,110,105,108,87,97,114,110,105,110,103,8,0,18,46,80,80,111,108,105,99,121,68,105,115,99,108,97,105,109,101,114,8,0,13,46,80,97,103,101,45,99,111,111,107,105,101,115,8,0,24,46,80,97,114,116,105,97,108,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,8,0,27,46,80,97,114,116,105,97,108,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,45,104,112,8,0,30,46,80,105,119,105,107,80,82,79,67,111,110,115,101,110,116,70,111,114,109,45,99,111,110,116,97,105,110,101,114,8,0,20,46,80,111,108,105,99,121,78,111,116,105,102,105,99,97,116,105,111,110,115,8,0,18,46,80,111,112,77,101,115,115,97,103,101,46,99,111,111,107,105,101,8,0,10,46,80,111,112,117,112,71,68,80,82,8,0,29,46,80,111,114,116,108,101,116,71,101,115,116,105,111,110,68,101,115,67,111,111,107,105,101,115,67,78,73,76,8,0,22,46,80,111,115,105,116,105,111,110,66,111,116,116,111,109,46,97,115,45,111,105,108,8,0,22,46,80,114,105,118,97,99,121,67,111,111,107,105,101,65,99,99,101,112,116,101,100,8,0,18,46,80,114,105,118,97,99,121,77,111,100,101,72,101,97,100,101,114,8,0,12,46,80,114,105,118,97,99,121,78,111,116,101,8,0,20,46,80,114,105,118,97,99,121,80,111,108,105,99,121,78,111,116,105,99,101,8,0,22,46,80,114,105,118,97,99,121,83,101,116,116,105,110,103,115,66,97,110,110,101,114,8,0,12,46,82,65,67,75,87,114,97,112,112,101,114,8,0,13,46,82,71,80,68,95,109,101,115,115,97,103,101,8,0,11,46,82,71,80,68,99,111,111,107,105,101,8,0,13,46,82,86,95,99,111,111,107,105,101,100,105,114,8,0,15,46,82,103,112,100,45,99,111,109,112,111,110,101,110,116,8,0,12,46,82,103,112,100,45,110,111,116,105,99,101,8,0,21,46,82,103,112,100,66,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,8,0,17,46,82,111,100,111,78,111,116,121,102,105,99,97,116,105,111,110,8,0,25,46,82,111,111,116,95,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,8,0,19,46,83,48,49,77,57,55,45,67,111,111,107,105,101,65,108,101,114,116,8,0,28,46,83,48,49,77,57,55,45,67,111,111,107,105,101,65,108,101,114,116,45,45,111,118,101,114,108,97,121,8,0,11,46,83,67,75,95,66,97,110,110,101,114,8,0,18,46,83,76,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,8,0,17,46,83,80,45,67,111,110,115,101,110,116,66,97,110,110,101,114,8,0,25,46,83,80,45,67,111,110,115,101,110,116,66,97,110,110,101,114,95,95,115,112,97,99,101,114,8,0,27,46,83,80,45,67,111,111,107,105,101,85,115,97,103,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,15,46,83,101,99,116,105,111,110,45,67,111,111,107,105,101,8,0,29,46,83,101,101,101,109,115,45,69,117,67,111,111,107,105,101,45,78,111,116,105,102,105,99,97,116,105,111,110,8,0,10,46,83,105,116,101,45,114,103,112,100,8,0,21,46,83,105,116,101,76,97,121,111,117,116,45,99,111,111,107,105,101,66,97,114,8,0,20,46,83,105,116,101,77,101,115,115,97,103,101,45,45,99,111,111,107,105,101,8,0,15,46,83,105,116,101,85,115,101,67,111,111,107,105,101,115,8,0,15,46,83,105,116,101,87,105,100,101,67,111,111,107,105,101,8,0,27,46,83,105,116,101,99,111,111,107,105,101,109,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,8,0,10,46,84,79,83,66,97,110,110,101,114,8,0,21,46,84,83,45,67,111,111,107,105,101,76,101,103,97,108,78,111,116,105,99,101,8,0,14,46,84,100,107,83,104,111,119,67,111,111,107,105,101,8,0,20,46,84,101,109,112,108,97,116,101,95,67,111,111,107,105,101,115,66,111,120,8,0,16,46,84,104,101,67,111,111,107,105,101,66,97,110,110,101,114,8,0,23,46,84,104,105,114,100,80,97,114,116,121,67,111,111,107,105,101,115,65,108,101,114,116,8,0,17,46,84,111,119,97,45,71,100,112,114,45,80,108,117,103,105,110,8,0,15,46,84,120,72,102,67,111,111,107,105,101,72,105,110,116,8,0,9,46,85,69,67,111,111,107,105,101,8,0,15,46,85,73,67,111,111,107,105,101,66,97,110,110,101,114,8,0,14,46,85,78,95,70,82,65,77,69,95,103,100,112,114,8,0,22,46,87,48,51,52,95,67,111,111,107,105,101,95,68,105,114,101,99,116,105,118,101,8,0,15,46,87,87,45,99,111,111,107,105,101,109,111,100,117,108,8,0,19,46,87,101,85,115,101,67,111,111,107,105,101,115,78,111,116,105,99,101,8,0,15,46,87,101,98,115,105,116,101,67,111,111,107,105,101,115,8,0,17,46,95,51,54,48,99,111,111,107,105,101,68,105,97,108,111,103,8,0,21,46,95,67,111,111,107,105,101,66,111,120,95,99,111,111,107,105,101,66,111,120,8,0,17,46,95,95,95,101,117,99,111,111,107,105,101,80,111,112,117,112,8,0,15,46,95,95,99,111,111,107,105,101,78,111,116,105,99,101,8,0,16,46,95,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,10,46,95,95,99,111,111,107,105,101,115,8,0,14,46,95,95,99,111,111,107,105,101,115,95,109,115,103,8,0,12,46,95,95,103,100,112,114,45,109,97,105,110,8,0,21,46,95,95,103,100,112,114,67,111,110,102,105,114,109,79,118,101,114,108,97,121,8,0,8,46,95,99,111,111,107,105,101,8,0,25,46,95,99,111,111,107,105,101,45,97,100,118,97,110,99,101,100,45,45,97,99,116,105,118,101,8,0,15,46,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,12,46,95,99,111,111,107,105,101,45,98,97,114,8,0,16,46,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,13,46,95,99,111,111,107,105,101,45,105,110,102,111,8,0,14,46,95,99,111,111,107,105,101,66,97,110,110,101,114,8,0,25,46,95,99,111,111,107,105,101,98,97,110,110,101,114,45,111,112,116,45,105,110,45,111,117,116,8,0,9,46,95,99,111,111,107,105,101,115,8,0,16,46,95,99,111,111,107,105,101,115,45,99,111,111,107,105,101,8,0,21,46,95,99,111,111,107,105,101,115,45,99,111,111,107,105,101,115,45,98,97,114,8,0,22,46,95,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,112,111,112,117,112,8,0,47,46,95,102,108,111,97,116,105,110,103,45,98,97,110,110,101,114,91,102,108,111,97,116,105,110,103,45,98,97,110,110,101,114,45,105,100,61,34,99,111,111,107,105,101,115,34,93,8,0,20,46,95,103,100,112,114,45,110,111,116,105,102,121,45,104,101,97,100,101,114,8,0,18,46,95,103,100,112,114,67,111,111,107,105,101,66,97,110,110,101,114,8,0,19,46,95,105,112,104,95,99,112,95,115,116,97,110,100,97,108,111,110,101,8,0,15,46,95,106,115,67,111,111,107,105,101,80,111,112,117,112,8,0,20,46,95,108,101,103,97,108,45,97,108,101,114,116,95,101,114,121,108,101,49,8,0,28,46,95,120,117,105,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,111,118,101,114,108,97,121,8,0,10,46,97,45,45,99,111,111,107,105,101,8,0,9,46,97,45,99,111,111,107,105,101,8,0,16,46,97,45,100,101,114,105,118,101,45,99,111,111,107,105,101,8,0,23,46,97,51,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,8,0,16,46,97,97,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,20,46,97,97,51,48,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,22,46,97,97,114,100,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,21,46,97,98,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,19,46,97,98,98,114,95,95,99,111,111,107,105,101,98,97,110,110,101,114,8,0,20,46,97,98,99,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,12,46,97,98,99,111,111,107,105,101,108,97,119,8,0,14,46,97,98,99,111,111,107,105,101,108,97,119,98,103,8,0,16,46,97,98,101,45,103,100,112,114,45,98,97,110,110,101,114,8,0,25,46,97,98,110,111,114,109,77,101,100,105,97,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,22,46,97,98,115,116,114,97,99,116,67,109,112,68,105,115,99,108,97,105,109,101,114,8,0,23,46,97,98,116,45,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,21,46,97,99,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,34,46,97,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,15,46,97,99,45,99,111,111,107,105,101,45,119,114,97,112,8,0,11,46,97,99,45,99,111,111,107,105,101,115,8,0,28,46,97,99,97,115,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,114,116,97,108,8,0,11,46,97,99,99,45,99,111,111,107,105,101,8,0,30,46,97,99,99,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,97,99,107,103,114,111,117,110,100,8,0,17,46,97,99,99,101,112,116,45,98,111,120,45,45,114,111,100,111,8,0,18,46,97,99,99,101,112,116,45,99,111,111,107,105,101,45,98,97,114,8,0,24,46,97,99,99,101,112,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,20,46,97,99,99,101,112,116,45,99,111,111,107,105,101,45,111,117,116,101,114,8,0,26,46,97,99,99,101,112,116,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,98,111,120,8,0,21,46,97,99,99,101,112,116,45,99,111,111,107,105,101,45,119,105,110,100,111,119,8,0,19,46,97,99,99,101,112,116,45,99,111,111,107,105,101,45,119,114,97,112,8,0,22,46,97,99,99,101,112,116,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,22,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,23,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,108,111,99,107,117,107,8,0,20,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,99,111,110,116,8,0,25,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,21,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,109,111,100,97,108,8,0,22,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,8,0,22,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,22,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,112,114,111,109,112,116,8,0,21,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,116,111,97,115,116,8,0,23,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,24,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,17,46,97,99,99,101,112,116,45,109,121,45,99,111,111,107,105,101,8,0,22,46,97,99,99,101,112,116,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,8,0,21,46,97,99,99,101,112,116,45,112,114,105,118,97,99,121,112,111,108,105,99,121,8,0,16,46,97,99,99,101,112,116,67,111,111,107,105,101,66,97,114,8,0,16,46,97,99,99,101,112,116,67,111,111,107,105,101,66,111,120,8,0,19,46,97,99,99,101,112,116,67,111,111,107,105,101,66,117,116,116,111,110,8,0,22,46,97,99,99,101,112,116,67,111,111,107,105,101,67,111,109,112,111,110,101,110,116,8,0,22,46,97,99,99,101,112,116,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,19,46,97,99,99,101,112,116,67,111,111,107,105,101,68,105,97,108,111,103,8,0,16,46,97,99,99,101,112,116,67,111,111,107,105,101,68,105,118,8,0,20,46,97,99,99,101,112,116,67,111,111,107,105,101,77,101,115,115,97,103,101,8,0,19,46,97,99,99,101,112,116,67,111,111,107,105,101,78,111,116,105,99,101,8,0,17,46,97,99,99,101,112,116,67,111,111,107,105,101,115,66,111,120,8,0,23,46,97,99,99,101,112,116,67,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,8,0,20,46,97,99,99,101,112,116,67,111,111,107,105,101,115,77,111,98,105,108,101,8,0,19,46,97,99,99,101,112,116,67,111,111,107,105,101,115,77,111,100,97,108,8,0,19,46,97,99,99,101,112,116,67,111,111,107,105,101,115,80,97,110,101,108,8,0,21,46,97,99,99,101,112,116,67,111,111,107,105,101,115,87,114,97,112,112,101,114,8,0,19,46,97,99,99,101,112,116,95,97,100,97,116,118,101,100,101,108,101,109,8,0,14,46,97,99,99,101,112,116,95,99,111,111,107,105,101,8,0,19,46,97,99,99,101,112,116,95,99,111,111,107,105,101,95,115,108,111,116,8,0,15,46,97,99,99,101,112,116,95,99,111,111,107,105,101,115,8,0,23,46,97,99,99,101,112,116,95,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,22,46,97,99,99,101,112,116,95,99,111,111,107,105,101,115,95,97,99,116,105,111,110,8,0,15,46,97,99,99,101,112,116,101,114,67,111,111,107,105,101,8,0,19,46,97,99,99,101,112,116,109,121,99,111,111,107,105,101,45,98,97,114,8,0,18,46,97,99,99,101,112,116,115,105,116,101,99,111,111,107,105,101,115,8,0,15,46,97,99,99,101,115,115,45,99,111,111,107,105,101,115,8,0,26,46,97,99,99,101,115,115,105,98,105,108,105,116,121,45,98,97,114,45,99,111,111,107,105,101,115,8,0,18,46,97,99,99,101,116,116,97,45,99,111,110,116,97,105,110,101,114,8,0,15,46,97,99,99,101,116,116,97,95,99,111,111,107,105,101,8,0,14,46,97,99,99,101,116,116,97,99,111,111,107,105,101,8,0,20,46,97,99,99,101,116,116,97,122,105,111,110,101,67,111,111,107,105,101,115,8,0,9,46,97,99,99,111,111,107,105,101,8,0,15,46,97,99,99,111,114,100,95,99,111,111,107,105,101,115,8,0,15,46,97,99,101,112,116,97,95,99,111,111,107,105,101,115,8,0,16,46,97,99,101,112,116,97,114,95,99,111,111,107,105,101,115,8,0,37,46,97,99,114,105,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,58,110,111,116,40,46,105,115,45,45,109,111,100,97,108,41,8,0,24,46,97,99,116,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,14,46,97,99,116,105,111,110,45,99,111,111,107,105,101,8,0,19,46,97,99,116,105,118,101,45,99,111,111,107,105,101,45,109,101,110,117,8,0,14,46,97,99,116,105,118,101,46,99,111,111,107,105,101,8,0,21,46,97,99,116,105,118,101,46,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,97,99,116,105,118,101,46,114,103,112,100,45,109,111,100,97,108,8,0,33,46,97,99,116,105,118,101,98,97,114,45,99,111,110,116,97,105,110,101,114,46,95,112,114,105,118,97,99,121,95,102,105,120,8,0,16,46,97,99,116,105,118,105,116,121,45,99,111,111,107,105,101,8,0,16,46,97,100,98,108,111,99,107,45,99,111,111,107,105,101,115,8,0,15,46,97,100,100,45,103,101,116,45,99,111,111,107,105,101,8,0,12,46,97,100,100,95,99,111,111,107,105,101,115,8,0,13,46,97,100,100,99,111,111,107,105,101,108,97,119,8,0,15,46,97,100,100,116,104,105,115,45,99,111,111,107,105,101,8,0,15,46,97,100,101,45,99,111,111,107,105,101,45,98,97,114,8,0,23,46,97,100,101,111,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,19,46,97,100,107,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,17,46,97,100,110,45,99,111,111,107,105,101,45,112,97,110,101,108,8,0,28,46,97,100,110,45,99,111,111,107,105,101,45,112,97,110,110,101,108,45,99,111,110,116,97,105,110,101,114,8,0,10,46,97,100,112,45,112,111,112,117,112,8,0,18,46,97,100,112,45,112,111,112,117,112,45,111,118,101,114,108,97,121,8,0,25,46,97,100,114,111,108,108,95,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,8,0,25,46,97,100,115,107,45,103,100,112,114,45,102,111,111,116,101,114,45,119,114,97,112,112,101,114,8,0,13,46,97,100,118,45,45,51,48,48,120,50,53,48,8,0,12,46,97,100,118,45,45,55,50,56,120,57,48,8,0,11,46,97,100,118,45,99,111,111,107,105,101,8,0,23,46,97,100,118,101,114,116,105,115,105,110,103,45,99,111,111,107,105,101,45,117,115,101,8,0,14,46,97,100,118,105,99,101,45,99,111,111,107,105,101,8,0,20,46,97,100,118,109,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,10,46,97,102,45,99,111,111,107,105,101,8,0,11,46,97,102,45,99,111,111,107,105,101,115,8,0,22,46,97,102,45,99,111,111,107,105,101,115,45,98,97,99,107,103,114,111,117,110,100,8,0,18,46,97,102,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,97,102,102,101,110,107,101,107,115,101,8,0,28,46,97,102,105,99,105,111,110,97,100,111,45,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,12,46,97,102,109,45,67,111,111,107,105,101,115,8,0,10,46,97,103,45,99,111,111,107,105,101,8,0,17,46,97,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,25,46,97,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,8,0,26,46,97,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,95,95,119,114,97,112,112,101,114,8,0,23,46,97,103,95,99,111,111,107,105,101,95,97,108,101,114,116,95,119,105,110,100,111,119,8,0,17,46,97,103,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,29,46,97,103,95,117,115,101,114,95,97,108,101,114,116,95,119,105,110,100,111,119,95,99,111,110,116,101,110,116,8,0,15,46,97,103,101,103,97,116,101,45,99,111,111,107,105,101,8,0,22,46,97,103,101,110,100,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,33,46,97,103,103,45,119,97,114,110,105,110,103,45,98,97,110,110,101,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,11,46,97,103,105,99,111,111,107,105,101,115,8,0,19,46,97,103,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,33,46,97,103,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,105,110,110,101,114,45,119,114,97,112,112,101,114,8,0,33,46,97,103,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,117,116,101,114,45,119,114,97,112,112,101,114,8,0,18,46,97,103,114,101,101,45,99,111,111,107,105,101,45,119,114,97,112,8,0,14,46,97,103,114,101,101,45,99,111,111,107,105,101,115,8,0,19,46,97,103,114,101,101,45,119,105,116,104,45,99,111,111,107,105,101,115,8,0,14,46,97,103,114,101,101,99,111,111,107,105,101,115,99,8,0,17,46,97,103,114,101,101,109,101,110,116,45,99,111,111,107,105,101,8,0,21,46,97,103,114,101,101,109,101,110,116,45,101,117,45,99,111,111,107,105,101,115,8,0,17,46,97,104,98,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,18,46,97,105,45,109,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,24,46,97,105,45,109,45,111,118,101,114,108,97,121,45,98,97,99,107,103,114,111,117,110,100,8,0,27,46,97,105,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,45,119,114,97,112,112,101,114,8,0,22,46,97,106,97,120,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,8,0,12,46,97,106,115,45,109,101,115,115,97,103,101,8,0,10,46,97,107,45,99,111,111,107,105,101,8,0,18,46,97,107,45,99,111,111,107,105,101,95,95,98,97,110,110,101,114,8,0,18,46,97,107,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,8,46,97,107,95,114,103,112,100,8,0,12,46,97,107,102,95,95,99,111,111,107,105,101,8,0,36,46,97,107,105,115,109,101,116,95,99,111,109,109,101,110,116,95,102,111,114,109,95,112,114,105,118,97,99,121,95,110,111,116,105,99,101,8,0,14,46,97,108,101,114,116,45,45,99,111,111,107,105,101,8,0,26,46,97,108,101,114,116,45,45,99,111,111,107,105,101,99,111,110,115,101,110,116,98,108,111,99,107,8,0,15,46,97,108,101,114,116,45,45,99,111,111,107,105,101,115,8,0,21,46,97,108,101,114,116,45,98,97,110,100,101,97,117,45,99,111,111,107,105,101,8,0,21,46,97,108,101,114,116,45,98,97,110,110,101,114,45,45,99,111,111,107,105,101,8,0,25,46,97,108,101,114,116,45,98,111,120,45,99,111,111,107,105,101,95,95,108,97,121,111,117,116,8,0,18,46,97,108,101,114,116,45,98,111,120,45,99,111,111,107,105,101,115,8,0,11,46,97,108,101,114,116,45,99,110,105,108,8,0,30,46,97,108,101,114,116,45,99,111,109,112,108,105,97,110,99,101,46,102,105,120,101,100,45,98,111,116,116,111,109,8,0,14,46,97,108,101,114,116,45,99,111,111,99,105,101,115,8,0,14,46,97,108,101,114,116,45,99,111,111,99,107,105,101,8,0,20,46,97,108,101,114,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,20,46,97,108,101,114,116,45,99,111,111,107,105,101,45,98,117,116,116,111,110,8,0,21,46,97,108,101,114,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,97,108,101,114,116,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,20,46,97,108,101,114,116,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,30,46,97,108,101,114,116,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,20,46,97,108,101,114,116,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,19,46,97,108,101,114,116,45,99,111,111,107,105,101,45,117,115,97,103,101,8,0,23,46,97,108,101,114,116,45,99,111,111,107,105,101,115,45,98,97,99,107,100,114,111,112,8,0,21,46,97,108,101,114,116,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,18,46,97,108,101,114,116,45,99,111,111,107,105,101,115,45,98,97,114,8,0,18,46,97,108,101,114,116,45,99,111,111,107,105,101,115,45,98,111,120,8,0,22,46,97,108,101,114,116,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,8,0,21,46,97,108,101,114,116,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,20,46,97,108,101,114,116,45,99,111,111,107,105,101,119,97,114,110,105,110,103,8,0,21,46,97,108,101,114,116,45,109,101,115,115,97,103,101,46,99,111,111,107,105,101,8,0,25,46,97,108,101,114,116,45,112,114,105,118,97,99,121,45,100,105,115,99,108,97,105,109,101,114,8,0,11,46,97,108,101,114,116,45,114,103,112,100,8,0,18,46,97,108,101,114,116,45,115,105,116,101,45,99,111,111,107,105,101,8,0,22,46,97,108,101,114,116,45,116,114,97,99,107,105,110,103,45,99,111,111,107,105,101,8,0,21,46,97,108,101,114,116,45,119,97,114,110,105,110,103,45,102,111,111,116,101,114,8,0,21,46,97,108,101,114,116,45,119,114,97,112,112,101,114,45,99,111,111,107,105,101,8,0,19,46,97,108,101,114,116,46,99,99,112,97,45,109,101,115,115,97,103,101,8,0,11,46,97,108,101,114,116,46,114,103,112,100,8,0,17,46,97,108,101,114,116,67,111,111,107,105,101,115,67,110,105,108,8,0,20,46,97,108,101,114,116,76,68,71,80,66,97,99,107,103,114,111,117,110,100,8,0,19,46,97,108,101,114,116,80,111,108,105,99,121,67,111,111,107,105,101,115,8,0,15,46,97,108,101,114,116,86,105,101,80,114,105,118,101,101,8,0,38,46,97,108,101,114,116,91,100,97,116,97,45,98,101,104,97,118,105,111,117,114,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,8,0,35,46,97,108,101,114,116,91,100,97,116,97,45,99,111,111,107,105,101,61,34,98,97,110,110,101,114,45,99,111,111,107,105,101,34,93,8,0,31,46,97,108,101,114,116,91,100,97,116,97,45,110,97,109,101,61,34,101,117,95,98,105,115,99,117,105,116,115,34,93,8,0,41,46,97,108,101,114,116,91,100,97,116,97,45,110,103,45,105,102,61,34,115,104,111,119,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,34,93,8,0,27,46,97,108,101,114,116,91,110,103,45,105,102,61,34,99,111,111,107,105,101,65,108,101,114,116,34,93,8,0,36,46,97,108,101,114,116,91,110,103,45,105,102,61,34,115,104,111,119,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,34,93,8,0,12,46,97,108,101,114,116,95,95,82,71,80,68,8,0,14,46,97,108,101,114,116,95,95,99,111,111,107,105,101,8,0,26,46,97,108,101,114,116,95,98,97,99,107,103,114,111,117,110,100,95,99,111,111,99,107,105,101,115,8,0,23,46,97,108,101,114,116,95,99,111,110,116,97,105,110,101,114,46,99,111,111,107,105,101,8,0,13,46,97,108,101,114,116,95,99,111,111,107,105,101,8,0,14,46,97,108,101,114,116,95,99,111,111,107,105,101,115,8,0,21,46,97,108,101,114,116,95,119,114,97,112,112,101,114,46,99,111,111,107,105,101,8,0,14,46,97,108,101,114,116,97,45,99,111,111,107,105,101,8,0,15,46,97,108,101,114,116,97,45,99,111,111,107,105,101,115,8,0,11,46,97,108,101,114,116,97,76,71,80,68,8,0,15,46,97,108,101,114,116,97,95,99,111,111,107,105,101,115,8,0,14,46,97,108,101,114,116,97,99,111,111,107,105,101,115,8,0,29,46,97,108,101,114,116,98,97,114,45,45,116,114,97,99,107,105,110,103,72,111,114,105,122,111,110,116,97,108,8,0,27,46,97,108,101,114,116,98,97,114,45,45,116,114,97,99,107,105,110,103,86,101,114,116,105,99,97,108,8,0,30,46,97,108,101,114,116,98,97,114,91,100,97,116,97,45,97,108,101,114,116,61,34,99,111,111,107,105,101,34,93,8,0,12,46,97,108,101,114,116,99,111,111,107,105,101,8,0,14,46,97,108,101,114,116,101,45,99,111,111,107,105,101,8,0,14,46,97,108,101,114,116,101,95,99,111,111,107,105,101,8,0,22,46,97,108,101,114,116,101,95,99,111,111,107,105,101,95,99,111,110,116,101,110,116,8,0,22,46,97,108,101,114,116,115,45,45,101,117,45,99,111,111,107,105,101,45,98,97,114,8,0,25,46,97,108,101,114,116,115,45,109,97,110,97,103,101,114,45,99,111,110,116,97,105,110,101,114,8,0,14,46,97,108,102,95,99,111,111,107,105,101,76,97,119,8,0,22,46,97,108,105,101,110,115,97,110,105,109,97,116,101,99,111,111,107,105,101,105,110,8,0,20,46,97,108,105,101,110,115,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,15,46,97,108,108,101,114,116,45,99,111,111,107,105,101,115,8,0,20,46,97,108,108,111,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,23,46,97,108,108,111,119,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,26,46,97,108,108,111,119,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,97,108,108,111,119,45,99,111,111,107,105,101,45,112,97,110,101,108,8,0,20,46,97,108,108,111,119,45,99,111,111,107,105,101,45,115,116,114,105,112,101,8,0,21,46,97,108,108,111,119,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,21,46,97,108,108,111,119,45,99,111,111,107,105,101,115,45,100,105,97,108,111,103,8,0,19,46,97,108,108,111,119,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,24,46,97,108,108,111,119,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,8,0,16,46,97,108,108,111,119,101,100,45,99,111,111,107,105,101,115,8,0,15,46,97,108,108,114,101,97,100,121,99,111,111,107,105,101,8,0,21,46,97,108,108,116,114,105,99,107,115,45,67,110,105,108,82,105,98,98,111,110,8,0,18,46,97,108,115,45,99,111,111,107,105,101,45,98,117,116,116,111,110,8,0,17,46,97,108,116,95,108,103,112,100,95,99,111,111,107,105,101,115,8,0,29,46,97,108,116,97,109,105,114,97,45,103,100,112,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,36,46,97,108,116,101,114,110,97,116,105,118,101,95,99,111,111,107,105,101,95,108,97,121,101,114,95,98,97,99,107,103,114,111,117,110,100,8,0,32,46,97,108,116,101,114,110,97,116,105,118,101,95,99,111,111,107,105,101,95,108,97,121,101,114,95,104,111,108,100,101,114,8,0,22,46,97,108,116,101,114,110,101,116,67,111,111,107,105,101,77,101,115,115,97,103,101,8,0,19,46,97,108,116,105,117,109,45,112,114,105,118,97,99,121,45,98,97,114,8,0,38,46,97,108,116,117,109,99,111,100,101,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,8,0,17,46,97,108,118,105,110,101,99,111,111,107,105,101,105,110,102,111,8,0,17,46,97,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,13,46,97,109,45,99,111,111,107,105,101,98,97,114,8,0,9,46,97,109,50,45,103,100,112,114,8,0,16,46,97,109,99,98,45,99,111,111,107,105,101,45,98,97,110,8,0,18,46,97,109,100,98,45,108,103,112,100,45,99,111,110,115,101,110,116,8,0,14,46,97,109,103,100,112,114,45,99,111,111,107,105,101,8,0,26,46,97,109,103,100,112,114,99,111,111,107,105,101,45,98,97,114,45,116,101,109,112,108,97,116,101,8,0,21,46,97,109,115,45,109,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,19,46,97,109,122,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,8,0,18,46,97,110,97,108,121,116,105,99,115,45,99,111,110,115,101,110,116,8,0,19,46,97,110,97,108,121,116,105,99,115,95,95,99,111,110,115,101,110,116,8,0,10,46,97,110,100,99,111,111,107,105,101,8,0,23,46,97,110,105,109,97,116,101,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,22,46,97,110,105,109,97,116,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,16,46,97,110,105,109,97,116,101,45,99,111,111,107,105,101,115,8,0,24,46,97,110,105,109,97,116,101,100,46,103,100,112,114,45,99,111,110,116,97,105,110,101,114,8,0,20,46,97,110,110,111,117,110,99,101,109,101,110,116,45,99,111,111,107,105,101,8,0,28,46,97,110,110,111,117,110,99,101,109,101,110,116,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,23,46,97,110,110,111,117,110,99,101,109,101,110,116,45,101,117,45,99,111,111,107,105,101,8,0,23,46,97,110,110,121,116,97,98,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,25,46,97,110,111,110,121,109,111,117,115,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,25,46,97,110,111,110,121,109,111,117,115,84,111,83,67,111,110,115,101,110,116,95,109,97,115,107,8,0,13,46,97,110,117,110,116,45,99,111,111,107,105,101,8,0,20,46,97,111,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,19,46,97,111,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,46,46,97,112,45,99,45,109,101,115,115,97,103,101,45,119,114,97,112,91,100,97,116,97,45,99,111,110,116,114,111,108,108,101,114,61,34,99,109,101,115,115,97,103,101,34,93,8,0,28,46,97,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,26,46,97,112,45,99,111,111,107,105,101,115,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,8,0,19,46,97,112,97,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,18,46,97,112,97,45,99,111,110,115,101,110,116,45,114,101,115,101,116,8,0,20,46,97,112,97,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,11,46,97,112,112,45,99,111,111,107,105,101,8,0,21,46,97,112,112,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,8,0,18,46,97,112,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,97,112,112,45,99,111,111,107,105,101,45,99,97,114,100,8,0,19,46,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,97,112,112,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,16,46,97,112,112,45,99,111,111,107,105,101,45,108,105,110,101,8,0,22,46,97,112,112,45,99,111,111,107,105,101,45,108,105,110,101,45,105,110,110,101,114,8,0,18,46,97,112,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,15,46,97,112,112,45,99,111,111,107,105,101,45,114,111,119,8,0,29,46,97,112,112,45,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,98,97,110,110,101,114,8,0,20,46,97,112,112,45,100,105,115,99,108,97,105,109,101,114,45,114,103,112,100,8,0,16,46,97,112,112,45,103,100,112,114,45,110,111,116,105,99,101,8,0,20,46,97,112,112,45,114,111,111,116,32,62,32,46,99,111,111,107,105,101,115,8,0,20,46,97,112,112,45,119,114,97,112,112,101,114,45,99,111,111,107,105,101,115,8,0,13,46,97,112,112,95,95,99,111,111,107,105,101,115,8,0,26,46,97,112,112,95,95,109,105,115,99,45,99,111,111,107,105,101,95,95,99,111,110,115,101,110,116,8,0,17,46,97,112,112,95,99,111,111,107,105,101,95,97,108,101,114,116,8,0,12,46,97,112,112,95,103,100,112,114,45,45,50,8,0,16,46,97,112,112,114,111,118,101,45,99,111,111,107,105,101,115,8,0,23,46,97,112,112,114,111,118,101,45,99,111,111,107,105,101,115,45,104,101,97,100,101,114,8,0,18,46,97,112,112,114,111,118,101,67,111,111,107,105,101,115,66,97,114,8,0,20,46,97,112,112,116,105,107,101,114,45,99,111,111,107,105,101,45,98,97,114,8,0,22,46,97,112,112,120,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,101,117,8,0,40,46,97,112,114,111,112,111,45,119,105,100,103,101,116,115,45,116,111,111,108,98,97,114,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,16,46,97,114,95,95,99,111,111,107,105,101,95,105,110,102,111,8,0,15,46,97,114,103,101,110,116,95,99,111,111,107,105,101,115,8,0,13,46,97,114,111,117,110,100,67,111,111,107,105,101,8,0,21,46,97,114,115,111,114,115,67,111,111,107,105,101,95,119,114,97,112,112,101,114,8,0,11,46,97,114,116,45,99,111,111,107,105,101,8,0,21,46,97,114,118,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,28,46,97,115,45,111,105,108,91,100,97,116,97,45,113,97,61,34,111,105,108,45,76,97,121,101,114,34,93,8,0,18,46,97,115,95,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,24,46,97,115,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,23,46,97,115,115,101,116,95,98,97,108,97,78,111,116,105,102,105,99,97,116,105,111,110,8,0,20,46,97,115,115,105,103,110,109,101,110,116,45,45,99,111,111,107,105,101,115,8,0,17,46,97,115,122,102,76,97,121,101,114,67,111,110,116,101,110,116,8,0,21,46,97,116,108,97,110,116,115,95,99,111,111,107,95,119,114,97,112,112,101,114,8,0,23,46,97,116,109,45,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,8,0,16,46,97,116,118,105,45,98,97,110,110,101,114,45,99,109,112,8,0,23,46,97,116,118,105,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,27,46,97,116,118,105,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,109,111,100,117,108,101,8,0,15,46,97,117,114,111,114,97,45,110,97,110,111,98,97,114,8,0,17,46,97,117,115,107,117,110,102,116,45,99,111,111,107,105,101,115,8,0,19,46,97,117,115,116,114,105,97,95,99,111,111,107,105,101,95,108,97,119,8,0,12,46,97,117,116,104,45,99,111,111,107,105,101,8,0,21,46,97,117,116,111,109,97,114,116,45,99,111,111,107,105,101,97,108,101,114,116,8,0,18,46,97,118,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,12,46,97,118,67,111,111,107,105,101,76,97,119,8,0,18,46,97,118,97,108,97,110,99,104,101,45,109,101,115,115,97,103,101,8,0,22,46,97,118,101,114,116,105,115,115,101,109,101,110,116,45,99,111,111,107,105,101,115,8,0,20,46,97,118,101,114,116,105,115,115,101,109,101,110,116,67,111,111,107,105,101,8,0,27,46,97,118,101,114,116,105,115,115,101,109,101,110,116,67,111,111,107,105,101,67,111,110,116,101,110,117,8,0,21,46,97,118,101,114,116,105,115,115,101,109,101,110,116,67,111,111,107,105,101,115,8,0,18,46,97,118,103,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,14,46,97,118,103,45,99,111,111,107,105,101,98,97,114,8,0,20,46,97,118,103,45,99,111,111,107,105,101,115,95,95,116,111,103,103,108,101,8,0,17,46,97,118,104,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,20,46,97,118,105,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,25,46,97,118,105,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,8,0,26,46,97,118,105,97,45,99,111,111,107,105,101,109,101,115,115,97,103,101,45,98,111,116,116,111,109,8,0,14,46,97,118,105,115,111,45,99,111,111,107,105,101,115,8,0,20,46,97,118,105,115,111,45,99,111,111,107,105,101,115,45,108,97,121,101,114,8,0,17,46,97,118,105,115,111,45,100,101,45,99,111,111,107,105,101,115,8,0,22,46,97,118,105,115,111,45,103,101,115,116,105,111,110,45,99,111,111,107,105,101,115,8,0,11,46,97,118,105,115,111,45,108,103,112,100,8,0,23,46,97,118,105,115,111,45,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,8,0,12,46,97,118,105,115,111,67,111,111,107,105,101,8,0,13,46,97,118,105,115,111,67,111,111,107,105,101,115,8,0,20,46,97,118,105,115,111,67,111,111,107,105,101,115,67,111,110,116,101,110,116,8,0,17,46,97,118,105,115,111,67,111,111,107,105,101,115,70,105,120,111,8,0,16,46,97,118,105,115,111,67,111,111,107,105,101,115,84,120,116,8,0,10,46,97,118,105,115,111,76,71,80,68,8,0,21,46,97,118,105,115,111,80,111,108,105,116,105,99,97,99,111,111,107,105,101,115,8,0,15,46,97,118,105,115,111,95,95,99,111,111,107,105,101,115,8,0,13,46,97,118,105,115,111,95,99,111,111,107,105,101,8,0,14,46,97,118,105,115,111,95,99,111,111,107,105,101,115,8,0,16,46,97,118,105,115,111,95,108,103,112,100,95,98,111,100,121,8,0,12,46,97,118,105,115,111,99,111,111,107,105,101,8,0,13,46,97,118,105,115,111,99,111,111,107,105,101,115,8,0,14,46,97,118,105,115,111,108,103,112,100,45,98,97,114,8,0,19,46,97,118,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,13,46,97,118,118,105,115,111,67,111,111,107,105,101,8,0,14,46,97,118,118,105,115,111,95,99,111,111,107,105,101,8,0,16,46,97,119,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,24,46,97,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,118,101,114,108,121,8,0,14,46,97,119,45,99,111,111,107,105,101,45,108,97,119,8,0,11,46,97,119,45,99,111,111,107,105,101,115,8,0,19,46,97,119,50,45,110,97,118,45,116,111,112,45,99,111,111,107,105,101,8,0,29,46,97,119,97,118,101,95,99,111,110,115,101,110,116,95,109,111,100,97,108,95,98,97,99,107,100,114,111,112,8,0,25,46,97,119,97,118,101,95,99,111,110,115,101,110,116,95,109,111,100,97,108,95,111,112,101,110,8,0,20,46,97,119,101,45,112,111,112,107,105,101,115,45,99,111,110,116,101,110,116,8,0,23,46,97,119,101,45,112,111,112,107,105,101,115,45,108,97,121,101,114,95,100,97,114,107,8,0,11,46,97,119,101,95,99,111,111,107,105,101,8,0,20,46,97,119,101,95,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,8,0,19,46,97,119,101,115,111,109,101,45,101,117,45,99,111,111,107,105,101,115,8,0,22,46,97,119,110,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,19,46,97,119,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,12,46,97,120,97,45,99,111,111,107,105,101,115,8,0,10,46,97,120,97,67,111,111,107,105,101,8,0,27,46,97,120,105,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,27,46,97,120,109,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,14,46,97,120,115,45,109,100,45,99,111,111,107,105,101,8,0,11,46,98,45,45,99,111,111,107,105,101,115,8,0,16,46,98,45,97,99,99,101,112,116,45,99,111,111,107,105,101,8,0,11,46,98,45,99,99,111,110,115,101,110,116,8,0,28,46,98,45,99,111,110,116,101,110,116,45,97,115,115,101,116,95,99,111,111,107,105,101,95,104,105,110,116,8,0,16,46,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,23,46,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,45,102,105,120,101,100,8,0,23,46,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,105,110,110,101,114,8,0,17,46,98,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,14,46,98,45,99,111,111,107,105,101,45,104,105,110,116,8,0,23,46,98,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,97,110,110,101,114,8,0,22,46,98,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,17,46,98,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,16,46,98,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,15,46,98,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,14,46,98,45,99,111,111,107,105,101,45,116,101,120,116,8,0,17,46,98,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,15,46,98,45,99,111,111,107,105,101,66,97,110,110,101,114,8,0,12,46,98,45,99,111,111,107,105,101,66,111,120,8,0,16,46,98,45,99,111,111,107,105,101,67,111,110,115,101,110,116,8,0,15,46,98,45,99,111,111,107,105,101,68,105,97,108,111,103,8,0,15,46,98,45,99,111,111,107,105,101,95,95,98,111,100,121,8,0,20,46,98,45,99,111,111,107,105,101,95,95,99,111,110,116,97,105,110,101,114,8,0,14,46,98,45,99,111,111,107,105,101,95,104,105,110,116,8,0,10,46,98,45,99,111,111,107,105,101,115,8,0,16,46,98,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,14,46,98,45,99,111,111,107,105,101,115,45,98,97,114,8,0,19,46,98,45,99,111,111,107,105,101,115,45,105,110,102,111,114,109,101,114,8,0,18,46,98,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,8,0,27,46,98,45,99,111,111,107,105,101,115,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,8,0,19,46,98,45,99,111,111,107,105,101,115,95,105,110,102,111,114,109,101,114,8,0,23,46,98,45,99,111,111,107,105,101,115,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,15,46,98,45,100,115,103,118,111,45,98,97,110,110,101,114,8,0,16,46,98,45,102,111,111,116,101,114,45,99,111,111,107,105,101,8,0,16,46,98,45,104,101,97,100,101,114,45,99,111,111,107,105,101,8,0,29,46,98,45,110,111,116,105,102,105,99,97,116,105,111,110,45,112,117,115,104,95,95,119,114,97,112,112,101,114,8,0,14,46,98,45,112,111,108,105,99,121,45,105,110,102,111,8,0,20,46,98,45,112,111,112,117,112,45,99,111,111,107,105,101,95,119,114,97,112,8,0,17,46,98,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,8,0,24,46,98,45,115,116,114,105,112,101,95,99,111,110,116,101,110,116,95,99,111,111,107,105,101,8,0,24,46,98,49,48,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,6,46,98,67,110,105,108,8,0,11,46,98,95,95,99,111,111,107,105,101,115,8,0,15,46,98,95,99,111,111,107,105,101,66,97,110,110,101,114,8,0,15,46,98,95,99,111,111,107,105,101,110,111,116,105,99,101,8,0,21,46,98,97,45,98,97,110,110,101,114,45,100,105,115,99,108,97,105,109,101,114,8,0,11,46,98,97,45,99,111,111,107,105,101,115,8,0,14,46,98,97,95,99,111,111,107,105,101,95,98,97,114,8,0,16,46,98,97,95,112,111,112,117,112,95,99,111,111,107,105,101,8,0,11,46,98,97,99,107,99,111,111,107,105,101,8,0,23,46,98,97,99,107,100,114,111,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,17,46,98,97,99,107,100,114,111,112,45,99,111,111,107,105,101,115,8,0,21,46,98,97,99,107,100,114,111,112,45,108,101,121,45,99,111,111,107,105,101,115,8,0,25,46,98,97,99,107,103,114,111,117,110,100,45,112,101,116,114,111,108,45,99,111,111,107,105,101,8,0,23,46,98,97,99,107,103,114,111,117,110,100,95,97,108,101,114,116,99,111,111,107,105,101,8,0,25,46,98,97,99,107,103,114,111,117,110,100,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,14,46,98,97,100,103,101,95,112,114,105,118,97,99,121,8,0,18,46,98,97,107,101,100,45,99,111,111,107,105,101,115,45,98,97,114,8,0,12,46,98,97,110,45,99,111,111,107,105,101,115,8,0,11,46,98,97,110,100,45,45,103,100,112,114,8,0,13,46,98,97,110,100,97,45,99,111,111,107,105,101,8,0,16,46,98,97,110,100,97,65,99,101,112,116,97,99,105,111,110,8,0,13,46,98,97,110,100,97,99,111,111,107,105,101,115,8,0,22,46,98,97,110,100,101,97,117,45,97,99,99,101,112,116,45,99,111,111,107,105,101,8,0,13,46,98,97,110,100,101,97,117,45,99,110,105,108,8,0,15,46,98,97,110,100,101,97,117,45,99,111,111,107,105,101,8,0,22,46,98,97,110,100,101,97,117,45,99,111,111,107,105,101,45,98,111,116,116,111,109,8,0,23,46,98,97,110,100,101,97,117,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,16,46,98,97,110,100,101,97,117,45,99,111,111,107,105,101,115,8,0,28,46,98,97,110,100,101,97,117,45,105,110,102,111,114,109,97,116,105,111,110,45,99,111,111,107,105,101,115,8,0,19,46,98,97,110,100,101,97,117,45,115,101,108,108,115,101,99,117,114,101,8,0,16,46,98,97,110,100,101,97,117,45,119,114,97,112,112,101,114,8,0,14,46,98,97,110,100,101,97,117,67,111,111,107,105,101,8,0,15,46,98,97,110,100,101,97,117,67,111,111,107,105,101,115,8,0,17,46,98,97,110,100,101,97,117,95,95,99,111,111,107,105,101,115,8,0,13,46,98,97,110,100,101,97,117,95,99,110,105,108,8,0,16,46,98,97,110,100,101,97,117,95,99,111,110,115,101,110,116,8,0,15,46,98,97,110,100,101,97,117,95,99,111,111,107,105,101,8,0,16,46,98,97,110,100,101,97,117,95,99,111,111,107,105,101,115,8,0,12,46,98,97,110,100,101,97,117,99,110,105,108,8,0,19,46,98,97,110,100,101,97,117,99,110,105,108,99,111,111,107,105,101,115,8,0,13,46,98,97,110,101,114,45,99,111,111,107,105,101,8,0,14,46,98,97,110,107,105,100,45,99,111,111,107,105,101,8,0,12,46,98,97,110,110,45,99,111,111,107,105,101,8,0,15,46,98,97,110,110,101,114,45,45,99,111,111,107,105,101,8,0,22,46,98,97,110,110,101,114,45,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,19,46,98,97,110,110,101,114,45,45,99,111,111,107,105,101,115,45,101,117,8,0,23,46,98,97,110,110,101,114,45,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,13,46,98,97,110,110,101,114,45,45,103,100,112,114,8,0,13,46,98,97,110,110,101,114,45,45,108,103,112,100,8,0,26,46,98,97,110,110,101,114,45,97,99,101,112,116,97,99,105,111,110,45,99,111,111,107,105,101,115,8,0,19,46,98,97,110,110,101,114,45,99,111,110,115,101,110,116,45,97,108,108,8,0,14,46,98,97,110,110,101,114,45,99,111,111,107,105,101,8,0,25,46,98,97,110,110,101,114,45,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,8,0,22,46,98,97,110,110,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,24,46,98,97,110,110,101,114,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,21,46,98,97,110,110,101,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,22,46,98,97,110,110,101,114,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,15,46,98,97,110,110,101,114,45,99,111,111,107,105,101,115,8,0,17,46,98,97,110,110,101,114,45,99,111,111,107,105,101,115,45,50,8,0,21,46,98,97,110,110,101,114,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,20,46,98,97,110,110,101,114,45,99,111,111,107,105,101,115,45,115,104,111,119,8,0,23,46,98,97,110,110,101,114,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,24,46,98,97,110,110,101,114,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,20,46,98,97,110,110,101,114,45,101,115,112,97,45,119,114,97,112,112,101,114,8,0,17,46,98,97,110,110,101,114,45,101,117,45,99,111,111,107,105,101,8,0,12,46,98,97,110,110,101,114,45,103,100,112,114,8,0,12,46,98,97,110,110,101,114,45,108,103,112,100,8,0,20,46,98,97,110,110,101,114,45,108,103,112,100,45,99,111,110,115,101,110,116,8,0,30,46,98,97,110,110,101,114,45,108,103,112,100,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,22,46,98,97,110,110,101,114,45,108,103,112,100,45,99,111,110,116,97,105,110,101,114,8,0,23,46,98,97,110,110,101,114,45,108,103,112,100,95,95,99,111,110,116,97,105,110,101,114,8,0,22,46,98,97,110,110,101,114,45,109,101,115,115,97,103,101,45,99,112,111,112,117,112,8,0,19,46,98,97,110,110,101,114,45,112,111,108,105,99,121,45,119,114,97,112,8,0,13,46,98,97,110,110,101,114,67,111,111,107,105,101,8,0,14,46,98,97,110,110,101,114,67,111,111,107,105,101,115,8,0,20,46,98,97,110,110,101,114,73,110,102,111,114,109,97,116,105,118,97,69,85,8,0,11,46,98,97,110,110,101,114,76,71,80,68,8,0,24,46,98,97,110,110,101,114,80,114,105,118,97,99,121,65,99,99,101,112,116,97,110,99,101,8,0,30,46,98,97,110,110,101,114,91,100,97,116,97,45,98,97,110,110,101,114,61,34,99,111,111,107,105,101,115,34,93,8,0,16,46,98,97,110,110,101,114,95,95,99,111,111,107,105,101,115,8,0,24,46,98,97,110,110,101,114,95,95,111,118,101,114,108,97,121,45,45,99,111,111,107,105,101,8,0,22,46,98,97,110,110,101,114,95,97,99,99,101,112,116,95,99,111,111,107,105,101,115,8,0,13,46,98,97,110,110,101,114,95,99,111,107,105,101,8,0,23,46,98,97,110,110,101,114,95,99,111,110,115,101,110,115,111,95,99,111,111,107,105,101,8,0,14,46,98,97,110,110,101,114,95,99,111,111,107,105,101,8,0,15,46,98,97,110,110,101,114,95,99,111,111,107,105,101,115,8,0,12,46,98,97,110,110,101,114,95,108,103,112,100,8,0,14,46,98,97,110,110,101,114,95,112,111,108,105,99,121,8,0,13,46,98,97,110,110,101,114,99,111,111,107,105,101,8,0,16,46,98,97,110,110,105,101,114,101,67,111,111,107,105,101,115,8,0,16,46,98,97,110,110,105,101,114,101,95,99,111,111,107,105,101,8,0,15,46,98,97,110,110,105,101,114,101,99,111,111,107,105,101,8,0,16,46,98,97,114,45,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,98,97,114,45,45,99,111,111,107,105,101,110,111,116,101,8,0,13,46,98,97,114,45,45,99,111,111,107,105,101,115,8,0,11,46,98,97,114,45,99,111,111,107,105,101,8,0,12,46,98,97,114,45,99,111,111,107,105,101,115,8,0,16,46,98,97,114,45,99,111,111,107,105,101,115,45,103,116,109,8,0,15,46,98,97,114,45,99,111,111,107,105,101,115,45,112,104,8,0,15,46,98,97,114,45,101,117,45,99,111,111,107,105,101,115,8,0,11,46,98,97,114,46,99,111,111,107,105,101,8,0,19,46,98,97,114,46,117,100,99,45,98,97,114,45,104,111,108,100,101,114,8,0,10,46,98,97,114,67,111,111,107,105,101,8,0,12,46,98,97,114,95,112,114,105,118,97,99,121,8,0,23,46,98,97,114,114,97,45,97,118,105,115,111,45,112,114,105,118,97,99,105,100,97,100,8,0,13,46,98,97,114,114,97,45,99,111,111,107,105,101,8,0,14,46,98,97,114,114,97,45,99,111,111,107,105,101,115,8,0,20,46,98,97,114,114,97,45,99,111,111,107,105,101,115,45,109,111,100,97,108,8,0,13,46,98,97,114,114,97,95,99,111,111,107,105,101,8,0,14,46,98,97,114,114,97,95,99,111,111,107,105,101,115,8,0,13,46,98,97,114,114,101,45,99,111,111,107,105,101,8,0,19,46,98,97,114,114,101,45,105,110,102,111,45,99,111,111,107,105,101,115,8,0,18,46,98,97,114,114,101,73,110,102,111,67,111,111,107,105,101,115,50,8,0,14,46,98,97,114,114,101,95,95,99,111,111,107,105,101,8,0,13,46,98,97,114,114,101,95,99,111,111,107,105,101,8,0,14,46,98,97,114,114,101,95,99,111,111,107,105,101,115,8,0,13,46,98,97,115,101,45,99,111,111,107,105,101,115,8,0,33,46,98,97,115,101,95,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,20,46,98,97,115,101,108,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,17,46,98,97,115,101,108,95,99,111,111,107,105,101,95,98,97,114,8,0,38,46,98,97,115,105,99,45,45,100,114,97,119,45,109,101,115,115,97,103,101,45,98,97,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,29,46,98,97,115,105,99,95,102,101,97,116,117,114,101,115,45,99,111,111,107,105,101,109,101,115,115,97,103,101,8,0,18,46,98,97,117,49,48,48,95,99,111,111,107,105,101,45,98,97,114,8,0,18,46,98,97,117,95,95,99,111,111,107,105,101,98,97,110,110,101,114,8,0,24,46,98,97,121,101,114,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,18,46,98,98,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,17,46,98,98,45,99,111,110,115,101,110,116,98,97,110,110,101,114,8,0,17,46,98,98,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,11,46,98,98,45,99,111,111,107,105,101,115,8,0,26,46,98,98,45,99,111,111,107,105,101,115,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,8,0,26,46,98,98,45,104,101,97,100,101,114,95,95,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,18,46,98,98,97,45,112,111,112,117,112,45,99,111,111,107,105,101,115,8,0,19,46,98,98,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,17,46,98,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,21,46,98,99,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,22,46,98,99,79,112,116,73,110,79,112,116,111,117,116,78,111,116,105,102,105,101,114,8,0,13,46,98,99,101,101,45,99,111,111,107,105,101,115,8,0,21,46,98,99,101,107,109,101,99,101,95,99,111,111,107,105,101,115,95,100,105,118,8,0,9,46,98,99,111,111,107,105,101,122,8,0,19,46,98,99,112,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,8,0,19,46,98,100,66,117,122,122,67,111,111,107,105,101,80,111,108,105,99,121,8,0,10,46,98,100,99,111,111,107,105,101,115,8,0,19,46,98,100,101,119,95,95,99,111,111,107,105,101,98,97,110,110,101,114,8,0,24,46,98,100,102,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,23,46,98,100,115,95,109,105,110,105,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,23,46,98,100,117,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,8,0,26,46,98,101,45,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,97,114,8,0,38,46,98,101,97,110,115,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,99,111,110,116,97,105,110,101,114,8,0,11,46,98,101,108,45,99,111,111,107,105,101,8,0,18,46,98,101,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,15,46,98,101,110,103,111,114,45,99,111,111,107,105,101,115,8,0,23,46,98,101,116,116,101,114,119,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,12,46,98,101,117,99,45,99,111,111,107,105,101,8,0,18,46,98,101,122,122,111,45,99,111,111,107,105,101,115,45,98,97,114,8,0,20,46,98,102,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,18,46,98,102,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,12,46,98,102,95,103,100,112,114,95,98,111,120,8,0,10,46,98,103,95,99,111,111,107,105,101,8,0,11,46,98,103,95,99,111,111,107,105,101,115,8,0,14,46,98,103,95,103,100,112,114,95,112,111,112,117,112,8,0,10,46,98,103,99,111,111,107,105,101,115,8,0,28,46,98,104,45,99,111,111,107,105,101,115,45,112,111,112,117,112,45,98,97,99,107,103,114,111,117,110,100,8,0,19,46,98,104,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,18,46,98,104,45,108,97,121,101,114,67,111,111,107,105,101,76,97,119,8,0,19,46,98,104,67,111,111,107,105,101,66,111,120,87,114,97,112,112,101,114,8,0,12,46,98,105,99,97,45,105,110,108,105,110,101,8,0,23,46,98,105,99,101,118,105,100,97,95,102,105,120,101,100,45,99,111,111,107,105,101,115,8,0,15,46,98,105,112,80,97,115,101,107,67,111,111,107,105,101,8,0,19,46,98,105,115,99,111,116,116,111,46,115,99,45,98,111,116,116,111,109,8,0,16,46,98,105,115,99,117,105,116,45,109,101,115,115,97,103,101,8,0,14,46,98,105,115,99,117,105,116,45,117,115,97,103,101,8,0,19,46,98,105,115,99,117,105,116,98,111,120,45,119,114,97,112,112,101,114,8,0,15,46,98,105,115,99,117,105,116,115,45,117,115,97,103,101,8,0,25,46,98,107,45,99,111,111,107,105,101,45,97,108,101,114,116,45,115,110,97,99,107,98,97,114,8,0,20,46,98,107,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,18,46,98,107,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,13,46,98,107,45,99,111,111,107,105,101,66,97,114,8,0,11,46,98,107,45,99,111,111,107,105,101,115,8,0,20,46,98,107,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,11,46,98,107,103,95,99,111,111,107,105,101,8,0,16,46,98,108,97,99,107,45,98,103,45,99,111,111,107,105,101,8,0,20,46,98,108,105,110,100,116,111,111,108,98,111,120,45,99,111,111,107,105,101,8,0,11,46,98,108,107,45,67,111,111,107,105,101,8,0,15,46,98,108,107,45,68,105,115,99,108,97,105,109,101,114,8,0,22,46,98,108,107,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,13,46,98,108,107,95,99,111,111,99,107,105,101,115,8,0,19,46,98,108,111,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,14,46,98,108,111,99,45,99,111,111,107,105,101,45,100,8,0,13,46,98,108,111,99,45,99,111,111,107,105,101,115,8,0,11,46,98,108,111,99,67,111,111,107,105,101,8,0,12,46,98,108,111,99,67,111,111,107,105,101,115,8,0,10,46,98,108,111,99,95,99,110,105,108,8,0,12,46,98,108,111,99,95,99,111,111,107,105,101,8,0,21,46,98,108,111,99,95,99,111,111,107,105,101,95,116,114,97,99,107,105,110,103,8,0,13,46,98,108,111,99,95,99,111,111,107,105,101,115,8,0,11,46,98,108,111,99,99,111,111,107,105,101,8,0,27,46,98,108,111,99,107,45,45,98,101,97,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,31,46,98,108,111,99,107,45,45,98,108,111,99,107,45,109,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,14,46,98,108,111,99,107,45,45,99,111,111,107,105,101,8,0,22,46,98,108,111,99,107,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,27,46,98,108,111,99,107,45,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,21,46,98,108,111,99,107,45,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,25,46,98,108,111,99,107,45,45,109,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,18,46,98,108,111,99,107,45,67,111,111,107,105,101,66,108,111,99,107,8,0,21,46,98,108,111,99,107,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,20,46,98,108,111,99,107,45,97,114,116,119,104,101,114,101,45,103,100,112,114,8,0,20,46,98,108,111,99,107,45,97,119,97,118,101,45,99,111,110,115,101,110,116,8,0,21,46,98,108,111,99,107,45,98,52,110,45,99,111,111,107,105,101,45,98,97,114,8,0,18,46,98,108,111,99,107,45,98,110,102,45,99,111,111,107,105,101,115,8,0,26,46,98,108,111,99,107,45,99,105,112,105,120,45,99,111,111,107,105,101,99,111,110,116,114,111,108,8,0,25,46,98,108,111,99,107,45,99,108,99,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,27,46,98,108,111,99,107,45,99,111,111,107,105,101,45,97,99,99,101,112,116,45,110,111,116,105,102,121,8,0,22,46,98,108,111,99,107,45,99,111,111,107,105,101,45,97,112,112,114,111,118,97,108,8,0,20,46,98,108,111,99,107,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,26,46,98,108,111,99,107,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,98,108,111,99,107,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,19,46,98,108,111,99,107,45,99,111,111,107,105,101,45,117,115,97,103,101,8,0,23,46,98,108,111,99,107,45,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,8,0,18,46,98,108,111,99,107,45,99,111,111,107,105,101,112,111,112,117,112,8,0,21,46,98,108,111,99,107,45,99,111,111,107,105,101,115,45,97,108,101,114,116,101,8,0,27,46,98,108,111,99,107,45,99,111,111,107,105,101,115,45,100,105,97,108,111,103,45,98,108,111,99,107,8,0,26,46,98,108,111,99,107,45,99,111,111,107,105,101,115,45,105,110,102,111,114,109,97,116,105,111,110,8,0,20,46,98,108,111,99,107,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,19,46,98,108,111,99,107,45,99,111,111,107,105,101,115,45,114,103,112,100,8,0,25,46,98,108,111,99,107,45,99,111,111,107,105,101,115,45,114,103,112,100,45,98,108,111,99,107,8,0,22,46,98,108,111,99,107,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,20,46,98,108,111,99,107,45,99,111,111,107,105,101,115,97,99,116,105,118,101,8,0,20,46,98,108,111,99,107,45,101,117,99,111,111,107,105,101,98,108,111,99,107,8,0,25,46,98,108,111,99,107,45,103,100,112,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,98,108,111,99,107,45,105,110,102,111,45,99,111,111,107,105,101,8,0,27,46,98,108,111,99,107,45,107,104,115,116,45,99,111,111,107,105,101,45,97,112,112,114,111,118,97,108,8,0,17,46,98,108,111,99,107,45,108,115,119,45,99,111,111,107,105,101,8,0,28,46,98,108,111,99,107,45,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,115,8,0,18,46,98,108,111,99,107,45,112,111,114,45,99,111,111,107,105,101,115,8,0,11,46,98,108,111,99,107,45,114,103,112,100,8,0,24,46,98,108,111,99,107,45,118,105,116,111,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,24,46,98,108,111,99,107,45,119,97,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,8,0,25,46,98,108,111,99,107,45,119,97,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,14,46,98,108,111,99,107,46,99,111,111,107,105,101,115,8,0,28,46,98,108,111,99,107,67,111,111,107,105,101,65,103,114,101,101,109,101,110,116,87,114,97,112,112,101,114,8,0,18,46,98,108,111,99,107,67,111,111,107,105,101,66,97,110,110,101,114,8,0,18,46,98,108,111,99,107,67,111,111,107,105,101,78,111,116,105,99,101,8,0,24,46,98,108,111,99,107,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,13,46,98,108,111,99,107,67,111,111,107,105,101,115,8,0,23,46,98,108,111,99,107,95,95,99,111,110,116,101,110,116,45,99,111,111,107,105,101,115,8,0,20,46,98,108,111,99,107,95,95,119,105,110,100,111,119,45,45,103,100,112,114,8,0,14,46,98,108,111,99,107,95,99,111,110,115,101,110,116,8,0,13,46,98,108,111,99,107,95,99,111,111,107,105,101,8,0,19,46,98,108,111,99,107,95,99,111,111,107,105,101,45,45,115,104,111,119,8,0,19,46,98,108,111,99,107,95,99,111,111,107,105,101,95,112,111,112,117,112,8,0,19,46,98,108,111,99,107,95,109,101,115,115,95,99,111,111,107,105,101,115,8,0,13,46,98,108,111,99,107,99,111,111,107,105,101,115,8,0,25,46,98,108,111,99,107,110,97,118,45,103,101,115,116,105,111,110,45,99,111,111,107,105,101,115,8,0,16,46,98,108,111,103,67,111,111,107,105,101,67,111,118,101,114,8,0,13,46,98,108,111,103,95,95,99,111,111,107,105,101,8,0,15,46,98,108,111,113,117,101,45,99,111,111,107,105,101,115,8,0,19,46,98,108,111,113,117,101,76,101,103,97,108,67,111,111,107,105,101,115,8,0,22,46,98,108,111,113,117,101,95,118,101,110,116,97,110,97,67,111,111,107,105,101,115,8,0,14,46,98,108,111,113,117,101,99,111,111,107,105,101,115,8,0,18,46,98,108,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,19,46,98,108,117,101,108,97,98,115,45,103,100,112,114,95,95,98,97,114,8,0,20,46,98,108,117,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,9,46,98,109,99,111,111,107,105,101,8,0,17,46,98,109,103,45,103,100,112,114,45,119,114,97,112,112,101,114,8,0,29,46,98,109,106,45,99,111,111,107,105,101,45,110,111,116,105,99,101,98,97,114,45,99,111,110,116,101,110,116,8,0,12,46,98,109,112,45,99,111,111,107,105,101,115,8,0,21,46,98,109,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,22,46,98,109,117,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,31,46,98,109,119,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,104,111,108,100,101,114,8,0,16,46,98,110,45,99,111,111,107,105,101,45,112,97,110,101,108,8,0,28,46,98,110,45,99,111,111,107,105,101,45,112,114,111,109,112,116,95,95,99,111,110,116,97,105,110,101,114,8,0,11,46,98,110,45,99,111,111,107,105,101,115,8,0,14,46,98,110,45,99,111,111,107,105,101,115,45,119,114,8,0,14,46,98,110,116,95,99,111,111,107,105,101,66,97,114,8,0,12,46,98,111,99,45,99,111,111,107,105,101,115,8,0,46,46,98,111,100,121,45,111,118,101,114,108,97,121,91,100,97,116,97,45,115,104,111,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,93,8,0,16,46,98,111,100,121,45,119,97,114,110,67,111,111,107,105,101,8,0,21,46,98,111,108,100,99,111,111,107,105,101,66,97,114,79,118,101,114,108,97,121,8,0,16,46,98,111,110,105,97,108,67,109,112,66,97,110,110,101,114,8,0,19,46,98,111,111,116,111,109,45,99,111,111,107,105,101,45,119,114,97,112,8,0,20,46,98,111,114,100,101,114,45,99,111,111,107,105,101,66,111,114,100,101,114,8,0,18,46,98,111,114,108,97,98,115,67,111,111,107,105,101,83,104,111,119,8,0,20,46,98,111,114,110,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,13,46,98,111,114,110,45,99,111,111,107,105,101,115,8,0,19,46,98,111,116,116,111,109,45,45,99,111,111,107,105,101,45,98,97,114,8,0,27,46,98,111,116,116,111,109,45,45,99,111,111,107,105,101,45,98,97,114,45,111,118,101,114,108,97,121,8,0,17,46,98,111,116,116,111,109,45,48,46,99,111,111,107,105,101,115,8,0,18,46,98,111,116,116,111,109,45,98,97,114,45,99,111,111,107,105,101,8,0,19,46,98,111,116,116,111,109,45,98,97,114,45,99,111,111,107,105,101,115,8,0,20,46,98,111,116,116,111,109,45,99,111,111,107,105,101,45,98,108,111,99,107,8,0,22,46,98,111,116,116,111,109,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,19,46,98,111,116,116,111,109,45,99,111,111,107,105,101,45,105,110,102,111,8,0,19,46,98,111,116,116,111,109,45,99,111,111,107,105,101,45,119,114,97,112,8,0,22,46,98,111,116,116,111,109,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,24,46,98,111,116,116,111,109,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,45,50,8,0,26,46,98,111,116,116,111,109,45,99,111,111,107,105,101,115,45,98,97,99,107,103,114,111,117,110,100,8,0,22,46,98,111,116,116,111,109,45,99,111,111,107,105,101,115,45,111,114,101,100,101,114,8,0,28,46,98,111,116,116,111,109,45,122,111,110,101,95,95,112,114,105,118,97,99,121,45,112,111,108,105,99,121,8,0,23,46,98,111,116,116,111,109,46,99,111,111,107,105,101,95,95,115,101,99,116,105,111,110,8,0,12,46,98,111,116,116,111,109,65,108,101,114,116,8,0,14,46,98,111,116,116,111,109,67,111,111,107,105,101,115,8,0,17,46,98,111,116,116,111,109,80,114,105,118,97,99,121,65,108,108,8,0,21,46,98,111,116,116,111,109,95,95,99,111,111,107,105,101,45,98,108,111,99,107,8,0,14,46,98,111,116,116,111,109,95,99,111,111,107,105,101,8,0,20,46,98,111,116,116,111,109,95,99,111,111,107,105,101,95,98,108,111,99,107,8,0,23,46,98,111,116,116,111,109,95,111,112,116,111,117,116,95,97,110,110,111,117,110,99,101,8,0,12,46,98,111,120,45,45,99,111,111,107,105,101,8,0,13,46,98,111,120,45,45,99,111,111,107,105,101,115,8,0,19,46,98,111,120,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,15,46,98,111,120,45,97,103,114,101,101,45,103,100,112,114,8,0,24,46,98,111,120,45,97,108,101,114,116,45,99,111,111,107,105,101,45,105,110,115,105,100,101,8,0,18,46,98,111,120,45,97,118,105,115,111,45,99,111,111,107,105,101,115,8,0,11,46,98,111,120,45,99,111,111,107,105,101,8,0,19,46,98,111,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,98,111,120,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,19,46,98,111,120,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,8,0,21,46,98,111,120,45,99,111,111,107,105,101,45,100,105,115,99,108,97,109,101,114,8,0,18,46,98,111,120,45,99,111,111,107,105,101,45,101,117,45,108,97,119,8,0,25,46,98,111,120,45,99,111,111,107,105,101,45,105,110,102,111,45,45,111,118,101,114,108,97,121,8,0,18,46,98,111,120,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,12,46,98,111,120,45,99,111,111,107,105,101,115,8,0,16,46,98,111,120,45,105,110,102,111,45,99,111,111,107,105,101,8,0,32,46,98,111,120,45,112,111,108,105,116,105,99,97,45,112,114,105,118,97,99,105,100,97,100,101,45,102,111,111,116,101,114,8,0,16,46,98,111,120,45,116,120,116,45,99,111,111,107,105,101,115,8,0,16,46,98,111,120,65,118,118,105,115,111,67,111,111,107,105,101,8,0,13,46,98,111,120,67,104,107,67,111,111,107,105,101,8,0,17,46,98,111,120,67,104,107,67,111,111,107,105,101,87,114,97,112,8,0,17,46,98,111,120,67,111,110,116,101,110,116,67,111,111,107,105,101,8,0,11,46,98,111,120,95,67,111,111,107,105,101,8,0,11,46,98,111,120,95,99,111,111,107,105,101,8,0,17,46,98,111,120,95,99,111,111,107,105,101,95,97,108,108,111,119,8,0,12,46,98,111,120,95,99,111,111,107,105,101,115,8,0,23,46,98,111,120,122,105,108,108,97,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,17,46,98,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,25,46,98,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,8,0,18,46,98,112,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,28,46,98,112,120,45,114,103,112,100,45,99,111,111,107,105,101,45,98,111,116,116,111,109,80,97,110,101,108,8,0,20,46,98,113,103,108,111,98,97,108,114,103,112,100,45,98,97,110,110,101,114,8,0,13,46,98,114,45,99,111,111,107,105,101,98,97,114,8,0,23,46,98,114,97,98,111,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,33,46,98,114,101,119,115,116,101,114,45,99,111,111,107,105,101,45,98,97,114,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,23,46,98,114,105,110,103,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,18,46,98,114,107,95,101,117,95,99,111,111,107,105,101,95,109,115,103,8,0,30,46,98,114,111,119,115,101,114,102,101,97,116,117,114,101,115,45,99,111,111,107,105,101,115,110,101,101,100,101,100,8,0,13,46,98,114,117,117,116,45,99,111,111,107,105,101,8,0,17,46,98,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,12,46,98,115,45,103,100,112,114,45,108,97,119,8,0,16,46,98,115,45,112,111,112,117,112,45,99,111,111,107,105,101,8,0,46,46,98,115,45,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,119,45,112,114,111,118,105,100,101,114,45,111,118,101,114,108,97,121,8,0,16,46,98,115,45,115,117,111,112,45,99,111,111,107,105,101,115,8,0,17,46,98,115,45,119,114,97,112,45,103,100,112,114,45,108,97,119,8,0,18,46,98,115,116,97,114,45,99,111,111,107,105,101,45,105,110,102,111,8,0,23,46,98,115,116,99,109,102,119,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,25,46,98,116,119,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,105,100,103,101,116,8,0,24,46,98,116,120,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,23,46,98,116,122,45,99,111,111,107,105,101,45,112,111,112,117,112,95,95,99,97,114,100,8,0,19,46,98,117,104,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,10,46,98,117,116,116,101,114,66,97,114,8,0,19,46,98,117,116,116,101,114,66,97,114,45,45,112,114,105,118,97,99,121,8,0,13,46,98,118,67,111,111,107,105,101,115,66,97,114,8,0,10,46,98,119,45,99,111,111,107,105,101,8,0,16,46,98,119,67,111,111,107,105,101,77,101,115,115,97,103,101,8,0,15,46,98,119,112,45,99,111,111,107,105,101,45,98,97,114,8,0,27,46,98,119,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,15,46,98,120,45,105,110,102,111,45,99,111,111,107,105,101,8,0,33,46,98,120,45,108,97,110,100,105,110,103,45,99,111,111,107,105,101,115,45,112,111,112,117,112,45,119,97,114,110,105,110,103,8,0,22,46,98,120,45,109,97,105,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,24,46,98,120,115,116,45,109,97,105,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,17,46,98,121,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,20,46,98,121,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,10,46,98,122,45,99,111,111,107,105,101,8,0,15,46,99,45,67,111,111,107,105,101,66,97,110,110,101,114,8,0,19,46,99,45,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,8,0,15,46,99,45,67,111,111,107,105,101,78,111,116,105,99,101,8,0,16,46,99,45,97,99,99,101,112,116,45,99,111,111,107,105,101,8,0,16,46,99,45,97,108,101,114,116,45,45,99,111,111,107,105,101,8,0,15,46,99,45,97,108,101,114,116,45,99,111,111,107,105,101,8,0,23,46,99,45,97,110,110,111,117,110,99,101,109,101,110,116,45,45,99,111,111,107,105,101,8,0,14,46,99,45,97,112,112,45,99,111,111,107,105,101,115,8,0,22,46,99,45,97,112,112,45,99,111,111,107,105,101,115,45,45,98,111,116,116,111,109,8,0,22,46,99,45,97,112,112,45,99,111,111,107,105,101,115,45,45,114,105,98,98,111,110,8,0,12,46,99,45,97,112,112,66,97,110,110,101,114,8,0,15,46,99,45,98,97,110,100,101,97,117,45,114,103,112,100,8,0,16,46,99,45,98,97,110,110,101,114,45,99,111,111,107,105,101,8,0,16,46,99,45,98,97,110,110,101,114,99,111,111,107,105,101,115,8,0,24,46,99,45,98,97,110,110,101,114,99,111,111,107,105,101,115,45,45,111,112,101,110,101,100,8,0,19,46,99,45,98,97,110,110,101,114,115,95,95,119,114,97,112,112,101,114,8,0,16,46,99,45,98,97,114,114,97,95,99,111,111,107,105,101,115,8,0,29,46,99,45,98,103,45,115,101,99,111,110,100,97,114,121,46,99,99,45,98,111,116,116,111,109,45,98,97,114,8,0,15,46,99,45,99,110,105,108,45,119,114,97,112,112,101,114,8,0,15,46,99,45,99,111,110,115,101,110,116,45,102,111,114,109,8,0,18,46,99,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,8,0,25,46,99,45,99,111,110,115,101,110,116,76,97,121,101,114,95,95,105,110,110,101,114,66,111,120,8,0,18,46,99,45,99,111,110,115,101,110,116,84,114,97,99,107,105,110,103,8,0,15,46,99,45,99,111,110,115,101,110,116,95,95,98,97,114,8,0,16,46,99,45,99,111,110,115,101,110,116,99,111,111,107,105,101,8,0,24,46,99,45,99,111,110,115,101,110,116,99,111,111,107,105,101,45,45,97,99,116,105,118,101,8,0,21,46,99,45,99,111,111,107,105,101,45,45,100,105,115,99,108,97,105,109,101,114,8,0,16,46,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,25,46,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,45,100,101,102,97,117,108,116,8,0,26,46,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,119,114,97,112,112,101,114,8,0,27,46,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,95,98,97,99,107,103,114,111,117,110,100,8,0,22,46,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,95,109,111,100,97,108,8,0,13,46,99,45,99,111,111,107,105,101,45,98,97,114,8,0,15,46,99,45,99,111,111,107,105,101,45,98,108,111,99,107,8,0,13,46,99,45,99,111,111,107,105,101,45,98,111,120,8,0,22,46,99,45,99,111,111,107,105,101,45,99,111,110,102,105,103,117,114,97,116,111,114,8,0,17,46,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,26,46,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,100,101,102,97,117,108,116,8,0,24,46,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,23,46,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,8,0,20,46,99,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,14,46,99,45,99,111,111,107,105,101,45,105,110,102,111,8,0,21,46,99,45,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,8,0,13,46,99,45,99,111,111,107,105,101,45,108,97,119,8,0,17,46,99,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,20,46,99,45,99,111,111,107,105,101,45,109,115,103,45,104,111,108,100,101,114,8,0,14,46,99,45,99,111,111,107,105,101,45,110,111,116,101,8,0,16,46,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,23,46,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,95,95,112,111,112,117,112,8,0,22,46,99,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,26,46,99,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,8,0,18,46,99,45,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,8,0,15,46,99,45,99,111,111,107,105,101,45,112,97,110,101,108,8,0,16,46,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,18,46,99,45,99,111,111,107,105,101,45,112,111,112,117,110,100,101,114,8,0,17,46,99,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,23,46,99,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,112,97,110,101,108,8,0,17,46,99,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,15,46,99,45,99,111,111,107,105,101,65,99,99,101,112,116,8,0,15,46,99,45,99,111,111,107,105,101,66,97,110,110,101,114,8,0,24,46,99,45,99,111,111,107,105,101,66,97,110,110,101,114,45,45,111,118,101,114,108,97,121,8,0,12,46,99,45,99,111,111,107,105,101,66,97,114,8,0,18,46,99,45,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,15,46,99,45,99,111,111,107,105,101,80,111,108,105,99,121,8,0,19,46,99,45,99,111,111,107,105,101,80,111,108,105,99,121,45,98,111,120,8,0,17,46,99,45,99,111,111,107,105,101,95,95,98,97,110,110,101,114,8,0,20,46,99,45,99,111,111,107,105,101,95,95,99,111,110,116,97,105,110,101,114,8,0,26,46,99,45,99,111,111,107,105,101,95,95,109,101,115,115,97,103,101,45,45,109,105,100,100,108,101,8,0,15,46,99,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,12,46,99,45,99,111,111,107,105,101,98,97,114,8,0,13,46,99,45,99,111,111,107,105,101,104,105,110,116,8,0,14,46,99,45,99,111,111,107,105,101,112,111,112,117,112,8,0,25,46,99,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,110,99,101,45,109,115,103,8,0,16,46,99,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,14,46,99,45,99,111,111,107,105,101,115,45,98,97,114,8,0,16,46,99,45,99,111,111,107,105,101,115,45,98,108,111,99,107,8,0,18,46,99,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,8,0,27,46,99,45,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,45,109,111,100,97,108,8,0,15,46,99,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,17,46,99,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,8,0,30,46,99,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,8,0,20,46,99,45,99,111,111,107,105,101,115,68,105,115,99,108,97,105,109,101,114,8,0,15,46,99,45,99,111,111,107,105,101,115,80,97,110,101,108,8,0,17,46,99,45,99,111,111,107,105,101,115,95,95,97,108,101,114,116,8,0,15,46,99,45,99,111,111,107,105,101,115,95,95,98,97,114,8,0,21,46,99,45,99,111,111,107,105,101,115,95,95,99,111,110,116,97,105,110,101,114,8,0,19,46,99,45,99,111,111,107,105,101,115,95,95,99,111,110,116,101,110,116,8,0,17,46,99,45,99,111,111,107,105,101,115,95,95,102,114,97,109,101,8,0,17,46,99,45,99,111,111,107,105,101,115,95,95,112,111,112,117,112,8,0,19,46,99,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,16,46,99,45,99,111,111,107,105,101,119,97,114,110,105,110,103,8,0,17,46,99,45,100,105,97,108,111,103,45,45,99,111,111,107,105,101,8,0,8,46,99,45,100,115,103,118,111,8,0,20,46,99,45,102,108,111,97,116,105,110,103,46,99,45,119,105,110,100,111,119,8,0,24,46,99,45,102,110,100,45,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,8,0,20,46,99,45,102,111,111,116,101,114,45,99,111,111,107,105,101,45,98,105,103,8,0,18,46,99,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,115,8,0,15,46,99,45,103,99,45,99,111,111,107,105,101,98,97,114,8,0,13,46,99,45,103,100,112,114,45,97,108,101,114,116,8,0,14,46,99,45,103,100,112,114,45,98,97,110,110,101,114,8,0,12,46,99,45,103,100,112,114,80,111,112,117,112,8,0,10,46,99,45,103,100,112,114,98,97,114,8,0,13,46,99,45,103,100,112,114,99,111,111,107,105,101,8,0,19,46,99,45,104,101,97,100,98,97,110,100,45,99,111,111,107,105,101,115,8,0,15,46,99,45,105,110,102,111,45,45,99,111,111,107,105,101,8,0,15,46,99,45,106,115,45,99,111,111,107,105,101,98,111,120,8,0,14,46,99,45,108,101,103,97,108,66,97,110,110,101,114,8,0,24,46,99,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,20,46,99,45,110,111,116,105,99,101,46,99,45,102,108,111,97,116,105,110,103,8,0,28,46,99,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,95,95,111,118,101,114,108,97,121,8,0,16,46,99,45,110,111,116,105,102,121,45,99,111,111,107,105,101,8,0,18,46,99,45,111,110,101,116,114,117,115,116,45,98,97,99,107,117,112,8,0,16,46,99,45,112,111,112,105,110,45,99,111,111,107,105,101,115,8,0,22,46,99,45,112,111,112,117,112,45,99,111,111,107,105,101,45,115,105,109,112,108,101,8,0,24,46,99,45,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,45,109,111,100,97,108,8,0,17,46,99,45,112,114,105,118,97,99,121,45,109,111,100,117,108,101,8,0,23,46,99,45,112,114,105,118,97,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,28,46,99,45,112,114,105,118,97,99,121,45,112,114,111,116,101,99,116,105,111,110,45,98,97,110,110,101,114,8,0,18,46,99,45,114,109,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,11,46,99,45,114,111,100,111,45,98,97,114,8,0,24,46,99,45,115,105,109,112,108,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,14,46,99,45,116,111,97,115,116,45,45,103,100,112,114,8,0,26,46,99,45,117,110,105,113,117,101,95,99,111,111,107,105,101,45,97,116,116,101,110,116,105,111,110,8,0,12,46,99,48,57,45,45,99,111,111,107,105,101,8,0,36,46,99,50,50,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,8,0,11,46,99,50,52,45,99,111,111,107,105,101,8,0,17,46,99,50,99,111,111,107,105,101,98,97,110,110,101,114,115,109,8,0,34,46,99,50,103,95,100,97,105,109,108,101,114,95,99,111,111,107,105,101,95,100,105,97,108,111,103,95,111,118,101,114,108,97,121,8,0,17,46,99,51,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,12,46,99,51,112,111,45,98,97,110,110,101,114,8,0,16,46,99,54,50,45,99,111,111,107,105,101,115,45,98,97,114,8,0,11,46,99,65,99,99,101,112,116,66,97,114,8,0,14,46,99,67,111,111,107,105,101,80,111,108,105,99,121,8,0,6,46,99,71,68,80,82,8,0,23,46,99,71,68,80,82,95,78,111,116,105,99,101,95,67,111,109,109,117,110,105,116,121,8,0,10,46,99,83,45,99,111,111,107,105,101,8,0,9,46,99,95,99,111,111,107,105,101,8,0,15,46,99,95,99,111,111,107,105,101,45,98,97,100,103,101,8,0,16,46,99,95,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,16,46,99,95,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,15,46,99,95,99,111,111,107,105,101,80,111,108,105,99,121,8,0,10,46,99,95,99,111,111,107,105,101,115,8,0,13,46,99,95,99,111,111,107,105,101,119,97,108,108,8,0,27,46,99,97,45,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,98,97,114,45,119,114,97,112,8,0,18,46,99,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,15,46,99,97,98,101,99,101,114,97,67,111,111,107,105,101,8,0,15,46,99,97,98,111,115,115,101,97,100,115,98,108,111,99,8,0,18,46,99,97,100,114,101,67,111,111,107,105,101,70,111,111,116,101,114,8,0,20,46,99,97,100,114,101,95,97,108,101,114,116,95,99,111,111,107,105,101,115,8,0,18,46,99,97,105,120,97,95,109,105,110,105,109,97,108,105,115,116,97,8,0,13,46,99,97,106,97,95,99,111,111,107,105,101,115,8,0,26,46,99,97,108,105,98,114,56,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,22,46,99,97,110,95,103,100,112,114,95,102,105,120,101,100,95,98,97,110,110,101,114,8,0,12,46,99,97,112,97,45,99,111,111,107,105,101,8,0,13,46,99,97,112,97,45,99,111,111,107,105,101,115,8,0,17,46,99,97,112,97,65,118,105,115,111,67,111,111,107,105,101,115,8,0,11,46,99,97,112,97,67,111,111,107,105,101,8,0,12,46,99,97,112,97,67,111,111,107,105,101,115,8,0,15,46,99,97,112,97,67,111,111,107,105,101,115,78,101,119,8,0,17,46,99,97,112,97,70,111,110,100,111,67,111,111,107,105,101,115,8,0,10,46,99,97,112,97,80,111,112,117,112,8,0,12,46,99,97,112,97,95,99,111,111,107,105,101,8,0,13,46,99,97,112,97,95,99,111,111,107,105,101,115,8,0,12,46,99,97,112,97,99,111,111,107,105,101,115,8,0,15,46,99,97,112,116,105,102,121,45,105,102,114,97,109,101,8,0,15,46,99,97,112,116,105,102,121,45,119,105,100,103,101,116,8,0,15,46,99,97,112,116,105,111,110,45,99,111,111,107,105,101,8,0,10,46,99,97,114,100,45,108,103,112,100,8,0,18,46,99,97,114,100,45,108,103,112,100,45,111,118,101,114,108,97,121,8,0,12,46,99,97,114,100,46,99,111,111,107,105,101,8,0,19,46,99,97,114,100,95,95,119,105,110,100,111,119,45,45,103,100,112,114,8,0,12,46,99,97,114,116,95,99,111,111,107,105,101,8,0,23,46,99,97,114,116,119,97,114,101,95,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,18,46,99,97,115,101,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,25,46,99,97,118,50,45,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,111,107,105,101,8,0,10,46,99,98,45,98,97,110,110,101,114,8,0,14,46,99,98,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,99,98,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,23,46,99,98,45,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,8,0,16,46,99,98,48,49,45,99,111,111,107,105,101,45,98,97,114,8,0,13,46,99,98,95,109,115,103,67,111,111,107,105,101,8,0,23,46,99,98,97,110,110,101,114,99,111,110,116,97,105,110,101,114,45,115,113,95,99,112,8,0,13,46,99,98,97,114,45,119,114,97,112,112,101,114,8,0,12,46,99,98,97,114,95,98,97,110,110,101,114,8,0,16,46,99,98,98,45,99,111,111,107,105,101,45,105,110,102,111,8,0,18,46,99,98,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,27,46,99,98,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,95,95,119,114,97,112,112,101,114,8,0,10,46,99,99,45,98,97,110,110,101,114,8,0,19,46,99,99,45,98,97,110,110,101,114,45,103,114,97,110,117,108,97,114,8,0,21,46,99,99,45,98,97,110,110,101,114,45,112,111,112,117,112,45,119,114,97,112,8,0,18,46,99,99,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,18,46,99,99,45,98,108,111,99,107,105,110,103,83,99,114,101,101,110,8,0,25,46,99,99,45,98,111,116,116,111,109,45,108,101,102,116,46,99,99,45,119,105,110,100,111,119,8,0,20,46,99,99,45,98,111,116,116,111,109,46,99,99,45,98,97,110,110,101,114,8,0,32,46,99,99,45,98,111,116,116,111,109,46,99,99,45,102,108,111,97,116,105,110,103,46,99,99,45,119,105,110,100,111,119,8,0,17,46,99,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,31,46,99,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,109,111,100,97,108,8,0,19,46,99,99,45,99,111,111,107,105,101,99,111,110,116,97,105,110,101,114,8,0,11,46,99,99,45,99,111,111,107,105,101,115,8,0,21,46,99,99,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,99,45,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,8,0,16,46,99,99,45,99,111,111,107,105,101,115,45,112,97,103,101,8,0,16,46,99,99,45,99,117,115,116,111,109,100,105,97,108,111,103,8,0,19,46,99,99,45,100,105,97,108,111,103,45,98,97,99,107,100,114,111,112,8,0,15,46,99,99,45,100,105,97,108,111,103,45,112,97,110,101,8,0,18,46,99,99,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,8,0,39,46,99,99,45,100,105,97,108,111,103,91,97,114,105,97,45,108,97,98,101,108,61,34,99,111,111,107,105,101,45,99,111,110,115,101,110,116,34,93,8,0,16,46,99,99,45,102,105,120,101,100,45,98,111,116,116,111,109,8,0,17,46,99,99,45,102,117,108,108,115,99,114,101,101,110,45,98,103,8,0,30,46,99,99,45,105,110,100,105,118,105,100,117,97,108,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,8,0,38,46,99,99,45,105,110,100,105,118,105,100,117,97,108,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,111,118,101,114,108,97,121,8,0,18,46,99,99,45,109,101,115,115,97,103,101,45,98,111,116,116,111,109,8,0,21,46,99,99,45,110,98,45,109,97,105,110,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,99,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,23,46,99,99,45,111,110,99,111,110,115,101,110,116,45,97,110,97,108,121,116,105,99,115,8,0,20,46,99,99,45,111,110,99,111,110,115,101,110,116,45,115,111,99,105,97,108,8,0,10,46,99,99,45,112,111,108,105,99,121,8,0,18,46,99,99,45,112,111,108,105,99,121,45,111,118,101,114,108,97,121,8,0,28,46,99,99,45,112,114,105,118,97,99,121,45,98,111,116,116,111,109,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,99,45,115,116,111,112,45,111,118,101,114,108,97,121,8,0,27,46,99,99,45,116,104,101,109,101,45,99,108,97,115,115,105,99,46,99,99,45,119,105,110,100,111,119,8,0,27,46,99,99,45,116,121,112,101,45,111,112,116,45,105,110,46,99,99,45,102,108,111,97,116,105,110,103,8,0,17,46,99,99,45,119,105,110,100,111,119,45,98,97,110,110,101,114,8,0,17,46,99,99,45,119,105,110,100,111,119,46,99,111,111,107,105,101,8,0,23,46,99,99,45,119,105,110,100,111,119,46,99,111,111,107,105,101,45,109,111,100,101,108,8,0,23,46,99,99,45,119,114,97,112,112,101,114,32,62,32,46,99,99,45,105,110,110,101,114,8,0,26,46,99,99,91,100,97,116,97,45,110,111,116,105,99,101,61,34,99,111,111,107,105,101,115,34,93,8,0,7,46,99,99,95,95,98,103,8,0,12,46,99,99,95,95,119,114,97,112,112,101,114,8,0,17,46,99,99,95,98,97,110,101,114,45,119,114,97,112,112,101,114,8,0,10,46,99,99,95,98,97,110,110,101,114,8,0,18,46,99,99,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,21,46,99,99,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,95,70,66,8,0,13,46,99,99,95,98,97,110,110,101,114,95,70,66,8,0,11,46,99,99,95,99,111,110,115,101,110,116,8,0,13,46,99,99,95,99,111,110,116,97,105,110,101,114,8,0,16,46,99,99,95,99,111,110,116,97,105,110,101,114,95,70,66,8,0,15,46,99,99,95,99,111,111,107,105,101,65,108,101,114,116,8,0,18,46,99,99,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,8,0,24,46,99,99,95,100,105,97,108,111,103,46,99,99,95,99,115,115,95,114,101,98,111,111,116,8,0,18,46,99,99,95,100,105,115,99,108,97,105,109,101,114,95,98,111,120,8,0,16,46,99,99,95,103,99,99,112,45,119,114,97,112,112,101,114,8,0,16,46,99,99,95,111,118,101,114,108,97,121,95,108,111,99,107,8,0,13,46,99,99,98,97,114,46,99,99,112,97,110,101,8,0,17,46,99,99,98,97,114,95,112,111,115,95,98,111,116,116,111,109,8,0,18,46,99,99,98,97,114,98,111,100,121,32,46,99,99,112,97,110,101,8,0,17,46,99,99,99,32,62,32,46,99,99,99,45,112,111,112,117,112,8,0,11,46,99,99,99,45,119,105,100,103,101,116,8,0,19,46,99,99,99,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,21,46,99,99,99,101,110,116,101,114,45,115,104,111,119,45,98,97,110,110,101,114,8,0,14,46,99,99,99,111,111,107,105,101,45,97,114,101,97,8,0,6,46,99,99,100,105,118,8,0,26,46,99,99,103,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,16,46,99,99,107,45,99,111,110,115,101,110,116,45,98,97,114,8,0,8,46,99,99,107,45,109,115,103,8,0,15,46,99,99,107,66,97,110,110,101,114,73,110,110,101,114,8,0,9,46,99,99,107,108,97,121,101,114,8,0,22,46,99,99,108,97,121,101,114,66,111,116,116,111,109,46,99,99,108,97,121,101,114,8,0,14,46,99,99,108,105,115,116,46,99,99,112,97,110,101,8,0,23,46,99,99,109,45,67,111,111,107,105,101,67,111,110,115,101,110,116,80,111,112,117,112,8,0,17,46,99,99,109,45,98,97,110,110,101,114,45,115,109,97,108,108,8,0,17,46,99,99,109,45,98,111,116,116,111,109,45,115,108,105,100,101,8,0,11,46,99,99,109,99,115,115,95,111,105,99,8,0,23,46,99,99,112,45,111,118,101,114,108,97,121,45,102,117,108,108,115,99,114,101,101,110,8,0,11,46,99,99,112,97,45,97,108,101,114,116,8,0,12,46,99,99,112,97,45,98,97,110,110,101,114,8,0,22,46,99,99,112,97,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,17,46,99,99,112,97,45,98,97,110,110,101,114,45,114,111,111,116,8,0,17,46,99,99,112,97,45,99,111,110,115,101,110,116,45,98,97,114,8,0,15,46,99,99,112,97,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,99,112,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,20,46,99,99,112,97,45,109,101,115,115,97,103,101,45,98,97,110,110,101,114,8,0,20,46,99,99,112,97,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,8,0,18,46,99,99,112,97,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,25,46,99,99,112,97,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,8,0,29,46,99,99,112,97,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,95,49,45,48,8,0,13,46,99,99,112,97,45,111,118,101,114,108,97,121,8,0,11,46,99,99,112,97,45,112,111,112,117,112,8,0,13,46,99,99,112,97,45,115,108,105,100,101,117,112,8,0,18,46,99,99,112,97,45,115,108,105,100,101,117,112,45,45,114,111,119,8,0,11,46,99,99,112,97,66,97,110,110,101,114,8,0,21,46,99,99,112,97,95,99,111,110,116,97,105,110,101,114,95,99,108,97,115,115,8,0,20,46,99,99,112,97,95,111,112,116,95,111,117,116,95,98,97,110,110,101,114,8,0,19,46,99,99,112,97,95,111,112,116,95,111,117,116,95,114,101,115,101,116,8,0,8,46,99,99,112,97,98,97,114,8,0,18,46,99,99,112,97,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,7,46,99,99,119,114,97,112,8,0,23,46,99,99,122,99,111,111,107,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,11,46,99,100,95,95,99,111,111,107,105,101,8,0,12,46,99,100,108,45,99,111,111,107,105,101,115,8,0,19,46,99,100,112,45,99,111,111,107,105,101,115,45,97,108,101,114,116,97,8,0,15,46,99,101,45,98,97,110,110,101,114,45,104,116,109,108,8,0,17,46,99,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,99,101,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,23,46,99,101,95,114,115,99,101,95,116,97,111,95,102,105,120,101,100,95,110,111,116,101,8,0,26,46,99,101,95,114,115,99,101,95,118,105,115,105,111,110,95,102,105,120,101,100,95,110,111,116,101,8,0,12,46,99,101,110,116,101,114,45,103,100,112,114,8,0,15,46,99,101,110,116,101,114,95,99,111,111,107,105,101,115,8,0,15,46,99,101,114,101,122,45,98,105,108,100,105,114,105,109,8,0,13,46,99,101,114,101,122,45,109,101,115,97,106,105,8,0,27,46,99,101,114,101,122,45,112,111,108,105,116,105,107,97,115,105,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,101,114,101,122,45,112,111,112,117,112,45,98,111,120,8,0,16,46,99,101,114,101,122,80,111,112,117,112,85,121,97,114,105,8,0,13,46,99,101,114,101,122,98,105,108,103,105,115,105,8,0,13,46,99,101,114,101,122,115,111,114,103,117,108,97,8,0,30,46,99,102,45,97,110,110,111,121,105,110,103,45,101,117,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,15,46,99,102,95,95,109,97,105,110,45,98,108,111,99,107,8,0,15,46,99,102,109,67,111,111,107,105,101,76,97,121,101,114,8,0,13,46,99,102,114,99,111,111,107,105,101,98,97,114,8,0,28,46,99,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,105,115,99,108,97,105,109,101,114,8,0,18,46,99,103,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,18,46,99,103,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,26,46,99,103,117,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,115,104,97,100,111,119,8,0,18,46,99,104,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,18,46,99,104,50,45,100,105,97,108,111,103,45,98,111,116,116,111,109,8,0,23,46,99,104,97,110,103,101,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,8,0,30,46,99,104,101,99,107,45,97,99,99,101,112,116,45,103,111,111,103,108,101,45,97,110,97,108,121,116,105,99,115,8,0,12,46,99,104,101,99,107,67,111,111,107,105,101,8,0,12,46,99,104,101,99,107,99,111,111,107,105,101,8,0,13,46,99,104,101,99,107,99,111,111,107,105,101,115,8,0,24,46,99,104,105,109,117,110,116,104,117,45,108,103,112,100,45,98,97,114,45,109,97,105,110,8,0,12,46,99,104,111,99,45,98,97,110,110,101,114,8,0,18,46,99,104,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,15,46,99,104,115,111,102,116,45,99,111,111,107,105,101,115,8,0,20,46,99,104,115,111,102,116,45,99,111,111,107,105,101,115,45,109,97,105,110,8,0,16,46,99,105,45,112,114,105,118,97,99,121,45,104,105,110,116,8,0,15,46,99,105,45,114,111,100,111,45,102,111,111,116,101,114,8,0,7,46,99,105,97,99,104,111,8,0,23,46,99,105,97,99,104,111,50,45,119,114,97,112,45,99,111,110,116,97,105,110,101,114,8,0,11,46,99,105,97,115,116,101,99,122,107,97,8,0,16,46,99,105,97,115,116,101,99,122,107,97,45,105,110,102,111,8,0,16,46,99,105,97,115,116,101,99,122,107,97,95,105,110,102,111,8,0,16,46,99,105,97,115,116,101,99,122,107,111,45,105,110,102,111,8,0,8,46,99,105,97,115,116,107,97,8,0,20,46,99,105,97,115,116,107,97,95,111,115,116,114,122,101,122,101,110,105,101,8,0,19,46,99,105,103,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,13,46,99,105,108,105,45,99,111,111,107,105,101,115,8,0,24,46,99,105,110,95,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,15,46,99,105,110,116,45,99,111,111,107,105,101,98,111,116,8,0,21,46,99,105,112,66,97,99,107,103,114,111,117,110,100,79,118,101,114,108,97,121,8,0,17,46,99,105,112,67,111,111,107,105,101,79,118,101,114,108,97,121,8,0,23,46,99,105,114,99,117,115,45,103,100,112,114,45,99,111,111,107,105,101,45,98,97,114,8,0,22,46,99,105,121,97,115,104,111,112,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,20,46,99,106,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,8,0,10,46,99,107,45,66,97,110,110,101,114,8,0,10,46,99,107,45,98,97,110,110,101,114,8,0,12,46,99,107,45,99,111,111,107,105,101,45,119,8,0,9,46,99,107,45,110,111,116,105,122,8,0,10,46,99,107,87,97,114,110,105,110,103,8,0,10,46,99,107,95,98,97,110,110,101,114,8,0,14,46,99,107,95,105,110,102,111,99,111,111,107,105,101,8,0,15,46,99,107,105,45,117,110,97,99,99,101,112,116,101,100,8,0,9,46,99,107,105,45,119,114,97,112,8,0,18,46,99,107,108,111,119,112,111,112,67,111,110,116,97,105,110,101,114,8,0,14,46,99,107,110,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,107,121,45,99,111,110,115,101,110,116,45,98,97,114,8,0,12,46,99,107,121,45,111,118,101,114,108,97,121,8,0,11,46,99,108,45,99,111,110,115,101,110,116,8,0,19,46,99,108,45,116,101,114,116,105,97,114,121,46,99,111,111,107,105,101,8,0,7,46,99,108,95,98,97,114,8,0,24,46,99,108,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,108,97,121,101,114,8,0,15,46,99,108,95,103,100,112,114,95,98,97,110,110,101,114,8,0,20,46,99,108,97,115,115,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,11,46,99,108,97,115,115,95,114,103,112,100,8,0,33,46,99,108,98,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,108,103,112,100,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,108,101,97,114,102,105,120,32,62,32,35,99,111,111,107,105,101,115,8,0,16,46,99,108,101,97,114,102,105,120,46,99,111,111,107,105,101,8,0,15,46,99,108,101,97,114,102,121,45,99,111,111,107,105,101,8,0,23,46,99,108,101,97,114,102,121,45,99,111,111,107,105,101,45,45,98,111,116,116,111,109,8,0,17,46,99,108,101,118,101,114,45,99,111,111,107,105,101,108,97,119,8,0,22,46,99,108,105,101,110,116,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,8,0,18,46,99,108,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,99,108,111,110,101,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,33,46,99,108,111,115,101,45,99,101,110,116,101,114,101,100,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,108,113,8,0,14,46,99,108,111,115,101,45,99,111,111,107,105,101,115,8,0,20,46,99,108,111,115,101,45,109,111,98,105,108,101,45,99,111,111,107,105,101,8,0,18,46,99,108,111,115,101,67,111,111,107,105,101,80,97,114,101,110,116,8,0,18,46,99,108,111,115,101,67,111,111,107,105,101,80,111,108,105,99,121,8,0,11,46,99,108,115,45,99,111,111,107,105,101,8,0,14,46,99,109,45,99,111,111,107,105,101,45,103,101,111,8,0,17,46,99,109,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,14,46,99,109,45,99,111,111,107,105,101,45,112,111,112,8,0,18,46,99,109,45,99,111,111,107,105,101,95,95,112,114,111,109,112,116,8,0,11,46,99,109,45,99,111,111,107,105,101,115,8,0,11,46,99,109,45,109,101,115,115,97,103,101,8,0,26,46,99,109,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,109,45,117,115,101,114,45,109,101,115,115,97,103,101,8,0,25,46,99,109,45,119,114,97,112,112,101,114,45,119,114,97,112,112,101,114,46,105,110,110,101,114,8,0,14,46,99,109,95,100,105,115,99,108,97,105,109,101,114,8,0,21,46,99,109,95,100,105,115,99,108,97,105,109,101,114,45,98,97,110,110,101,114,8,0,25,46,99,109,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,17,46,99,109,110,115,116,114,45,97,99,116,105,118,97,116,101,100,8,0,13,46,99,109,112,45,97,112,112,95,103,100,112,114,8,0,17,46,99,109,112,45,98,97,110,45,110,111,99,111,111,107,105,101,8,0,11,46,99,109,112,45,99,111,111,107,105,101,8,0,19,46,99,109,112,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,24,46,99,109,112,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,18,46,99,109,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,16,46,99,109,112,45,99,111,111,107,105,101,45,115,116,109,116,8,0,19,46,99,109,112,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,18,46,99,109,112,45,112,111,112,117,112,45,99,111,111,107,105,101,115,8,0,23,46,99,109,112,45,116,101,97,115,101,114,95,95,115,117,98,99,111,110,116,101,110,116,8,0,19,46,99,109,112,66,111,120,87,101,108,99,111,109,101,79,112,116,73,110,8,0,21,46,99,109,112,95,99,111,111,107,105,101,115,95,117,115,97,103,101,95,119,114,8,0,18,46,99,109,112,108,122,45,115,104,111,119,45,98,97,110,110,101,114,8,0,24,46,99,109,112,108,122,45,116,99,102,45,98,97,110,110,101,114,45,104,105,100,100,101,110,8,0,11,46,99,109,112,119,114,97,112,112,101,114,8,0,17,46,99,109,115,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,14,46,99,109,115,45,99,111,111,107,105,101,108,97,119,8,0,22,46,99,109,115,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,99,109,115,95,99,111,111,107,105,101,95,119,114,97,112,112,101,114,8,0,17,46,99,109,115,95,100,112,95,98,97,114,95,102,105,120,101,100,8,0,10,46,99,110,45,98,97,110,110,101,114,8,0,10,46,99,110,45,99,111,111,107,105,101,8,0,24,46,99,110,45,100,115,103,118,111,45,112,114,105,118,97,99,121,45,110,111,116,105,99,101,8,0,19,46,99,110,45,102,105,114,115,116,45,116,105,109,101,45,115,101,101,110,8,0,19,46,99,110,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,8,0,14,46,99,110,99,116,95,108,103,112,100,95,98,111,120,8,0,11,46,99,110,105,108,45,97,108,101,114,116,8,0,17,46,99,110,105,108,45,97,108,101,114,116,45,105,110,110,101,114,8,0,12,46,99,110,105,108,45,98,97,110,110,101,114,8,0,15,46,99,110,105,108,45,98,97,110,110,101,114,45,118,50,8,0,11,46,99,110,105,108,45,98,108,111,99,107,8,0,12,46,99,110,105,108,45,99,111,111,107,105,101,8,0,18,46,99,110,105,108,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,13,46,99,110,105,108,45,99,111,111,107,105,101,115,8,0,13,46,99,110,105,108,45,109,101,115,115,97,103,101,8,0,11,46,99,110,105,108,45,112,97,110,101,108,8,0,22,46,99,110,105,108,45,112,97,110,101,108,45,45,100,105,115,112,108,97,121,101,100,8,0,13,46,99,110,105,108,45,119,97,114,110,105,110,103,8,0,14,46,99,110,105,108,67,111,110,116,97,105,110,101,114,8,0,12,46,99,110,105,108,67,111,111,107,105,101,115,8,0,17,46,99,110,105,108,78,111,116,105,102,105,99,97,116,105,111,110,8,0,13,46,99,110,105,108,95,99,111,110,115,101,110,116,8,0,12,46,99,110,105,108,95,99,111,111,107,105,101,8,0,13,46,99,110,105,108,95,119,97,114,110,105,110,103,8,0,9,46,99,110,105,108,105,110,102,111,8,0,12,46,99,110,108,45,99,111,111,107,105,101,115,8,0,15,46,99,110,115,116,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,110,116,45,99,107,99,110,115,110,116,109,110,103,114,8,0,12,46,99,110,116,45,99,111,111,107,105,101,115,8,0,21,46,99,110,116,45,116,101,120,116,45,105,110,102,111,45,99,111,111,107,105,101,8,0,17,46,99,110,116,120,45,99,111,111,107,105,101,45,105,110,102,111,8,0,26,46,99,110,116,120,45,99,111,111,107,105,101,45,109,111,100,97,108,45,104,97,110,100,108,101,114,8,0,20,46,99,111,45,99,111,111,107,78,111,116,105,102,105,99,97,116,105,111,110,8,0,24,46,99,111,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,20,46,99,111,45,99,111,111,107,105,101,115,45,100,105,115,99,45,98,97,114,8,0,29,46,99,111,95,99,111,110,115,101,110,116,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,8,0,13,46,99,111,99,107,105,101,45,112,111,112,117,112,8,0,18,46,99,111,99,107,105,101,45,112,111,112,117,112,45,119,114,97,112,8,0,21,46,99,111,100,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,105,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,8,46,99,111,107,87,114,97,112,8,0,10,46,99,111,107,105,101,45,98,111,120,8,0,11,46,99,111,107,105,101,65,108,101,114,116,8,0,10,46,99,111,107,105,101,115,46,112,102,8,0,22,46,99,111,107,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,8,0,11,46,99,111,107,107,105,101,45,108,121,114,8,0,16,46,99,111,108,45,57,32,62,32,35,99,111,111,107,105,101,8,0,16,46,99,111,108,45,115,109,45,56,46,99,111,111,107,105,101,8,0,17,46,99,111,108,45,120,115,45,49,48,46,99,111,111,107,105,101,8,0,17,46,99,111,108,46,109,111,100,97,108,45,99,111,111,107,105,101,8,0,20,46,99,111,108,111,114,45,116,101,120,116,111,45,99,111,111,107,105,101,115,8,0,11,46,99,111,109,45,99,111,111,107,105,101,8,0,18,46,99,111,109,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,23,46,99,111,109,98,105,110,101,100,67,111,110,115,101,110,116,95,98,111,116,116,111,109,8,0,27,46,99,111,109,98,105,110,101,100,95,99,111,110,115,101,110,116,95,106,115,95,105,110,105,116,101,100,8,0,14,46,99,111,109,109,111,110,45,99,111,111,107,105,101,8,0,20,46,99,111,109,109,111,110,45,99,111,111,107,105,101,78,111,116,105,99,101,8,0,15,46,99,111,109,109,111,110,45,99,111,111,107,105,101,115,8,0,16,46,99,111,109,109,111,110,45,103,100,112,114,45,98,111,120,8,0,19,46,99,111,109,109,111,110,45,104,101,97,100,101,114,45,103,100,112,114,8,0,19,46,99,111,109,109,111,110,80,114,105,118,97,99,121,95,95,98,97,114,8,0,15,46,99,111,109,109,111,110,95,95,99,111,111,107,105,101,8,0,24,46,99,111,109,109,111,110,95,112,114,111,109,112,116,45,99,111,111,107,105,101,45,98,103,8,0,18,46,99,111,109,109,117,110,105,107,97,116,95,99,111,111,107,105,101,8,0,26,46,99,111,109,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,19,46,99,111,109,112,45,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,18,46,99,111,109,112,45,100,115,103,118,111,45,98,97,110,110,101,114,8,0,18,46,99,111,109,112,45,109,111,100,97,108,45,99,111,111,107,105,101,8,0,16,46,99,111,109,112,95,95,99,111,111,107,105,101,66,97,114,8,0,28,46,99,111,109,112,108,105,97,110,99,101,45,101,117,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,99,111,109,112,108,105,97,110,99,101,111,118,101,114,108,97,121,8,0,28,46,99,111,109,112,111,110,101,110,116,45,45,109,101,115,115,97,103,101,95,95,99,111,111,107,105,101,115,8,0,29,46,99,111,109,112,111,110,101,110,116,45,69,120,112,111,114,116,115,45,67,111,111,107,105,101,115,66,97,114,8,0,24,46,99,111,109,112,111,110,101,110,116,45,98,97,110,110,101,114,45,99,111,111,107,105,101,8,0,40,46,99,111,109,112,111,110,101,110,116,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,17,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,8,0,23,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,24,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,21,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,98,97,114,8,0,26,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,105,110,102,111,45,98,97,114,8,0,30,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,33,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,8,0,24,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,23,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,22,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,97,108,101,114,116,8,0,18,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,115,8,0,26,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,8,0,22,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,115,45,109,115,103,8,0,24,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,29,46,99,111,109,112,111,110,101,110,116,95,101,117,95,101,112,114,105,118,97,99,121,95,111,112,116,105,111,110,8,0,33,46,99,111,109,112,111,110,101,110,116,95,103,100,112,114,77,101,115,115,97,103,101,95,95,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,109,112,111,110,101,110,116,101,45,97,118,105,115,111,45,99,111,111,107,105,101,115,8,0,32,46,99,111,109,112,111,110,101,110,116,101,45,97,118,105,115,111,45,99,111,111,107,105,101,115,45,98,111,116,111,101,115,8,0,28,46,99,111,109,112,111,110,101,110,116,115,45,99,111,111,107,105,101,45,108,97,119,45,98,97,115,105,99,8,0,20,46,99,111,109,120,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,32,46,99,111,110,45,107,105,116,45,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,27,46,99,111,110,45,107,105,116,45,103,100,112,114,45,99,111,111,107,105,101,45,112,111,112,45,117,112,8,0,19,46,99,111,110,100,95,117,116,105,108,105,115,95,99,111,111,107,105,101,8,0,23,46,99,111,110,102,105,100,101,110,116,105,97,108,105,116,101,95,104,101,97,100,101,114,8,0,38,46,99,111,110,102,105,103,77,101,115,115,97,103,101,115,95,95,102,111,111,116,101,114,46,99,111,110,102,105,103,77,101,115,115,97,103,101,115,8,0,25,46,99,111,110,102,105,114,109,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,24,46,99,111,110,102,105,114,109,45,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,8,0,26,46,99,111,110,102,105,114,109,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,110,102,105,114,109,95,99,111,111,107,105,101,115,95,98,111,120,8,0,19,46,99,111,110,110,101,99,116,45,99,111,111,107,105,101,45,98,97,114,8,0,18,46,99,111,110,115,101,110,116,45,97,110,105,109,97,116,105,111,110,8,0,18,46,99,111,110,115,101,110,116,45,97,116,45,98,111,116,116,111,109,8,0,27,46,99,111,110,115,101,110,116,45,98,97,99,107,103,114,111,117,110,100,45,111,118,101,114,108,97,121,8,0,15,46,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,12,46,99,111,110,115,101,110,116,45,98,97,114,8,0,16,46,99,111,110,115,101,110,116,45,98,103,45,100,97,114,107,8,0,28,46,99,111,110,115,101,110,116,45,99,111,110,102,105,114,109,97,116,105,111,110,45,98,97,110,110,101,114,8,0,18,46,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,26,46,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,45,45,98,97,110,110,101,114,8,0,16,46,99,111,110,115,101,110,116,45,99,111,110,116,101,110,116,8,0,22,46,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,29,46,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,98,111,120,45,45,108,105,103,104,116,98,111,120,8,0,23,46,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,16,46,99,111,110,115,101,110,116,45,99,111,111,107,105,101,115,8,0,23,46,99,111,110,115,101,110,116,45,99,111,111,107,105,101,115,45,100,105,97,108,111,103,8,0,12,46,99,111,110,115,101,110,116,45,99,116,97,8,0,15,46,99,111,110,115,101,110,116,45,104,111,108,100,101,114,8,0,14,46,99,111,110,115,101,110,116,45,108,97,121,101,114,8,0,17,46,99,111,110,115,101,110,116,45,108,97,121,101,114,45,118,50,8,0,25,46,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,45,97,108,101,114,116,8,0,26,46,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,45,115,105,109,112,108,101,8,0,22,46,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,108,97,121,101,114,8,0,24,46,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,111,118,101,114,108,97,121,8,0,23,46,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,46,98,97,110,110,101,114,8,0,16,46,99,111,110,115,101,110,116,45,109,101,115,115,97,103,101,8,0,20,46,99,111,110,115,101,110,116,45,109,111,100,97,108,45,102,105,114,115,116,8,0,23,46,99,111,110,115,101,110,116,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,8,0,25,46,99,111,110,115,101,110,116,45,109,111,100,117,108,101,45,114,111,97,100,98,108,111,99,107,8,0,14,46,99,111,110,115,101,110,116,45,112,97,110,101,108,8,0,15,46,99,111,110,115,101,110,116,45,112,111,112,45,117,112,8,0,16,46,99,111,110,115,101,110,116,45,112,111,112,111,118,101,114,8,0,14,46,99,111,110,115,101,110,116,45,112,111,112,117,112,8,0,14,46,99,111,110,115,101,110,116,45,116,111,97,115,116,8,0,16,46,99,111,110,115,101,110,116,45,116,111,111,108,98,97,114,8,0,19,46,99,111,110,115,101,110,116,45,117,105,45,45,98,97,110,110,101,114,8,0,21,46,99,111,110,115,101,110,116,45,119,97,108,108,45,111,118,101,114,108,97,121,8,0,26,46,99,111,110,115,101,110,116,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,110,115,101,110,116,45,119,114,97,112,45,111,117,116,101,114,8,0,16,46,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,23,46,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,45,97,99,116,105,118,101,8,0,16,46,99,111,110,115,101,110,116,46,99,111,111,107,105,101,115,8,0,12,46,99,111,110,115,101,110,116,46,114,111,119,8,0,14,46,99,111,110,115,101,110,116,66,97,110,110,101,114,8,0,18,46,99,111,110,115,101,110,116,66,97,114,87,114,97,112,112,101,114,8,0,17,46,99,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,8,0,15,46,99,111,110,115,101,110,116,76,97,121,111,118,101,114,8,0,22,46,99,111,110,115,101,110,116,79,118,101,114,108,97,121,67,111,110,116,101,110,116,8,0,13,46,99,111,110,115,101,110,116,80,111,112,117,112,8,0,15,46,99,111,110,115,101,110,116,87,114,97,112,112,101,114,8,0,43,46,99,111,110,115,101,110,116,91,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,99,111,111,107,105,101,67,111,110,115,101,110,116,67,116,114,108,34,93,8,0,15,46,99,111,110,115,101,110,116,95,95,97,108,101,114,116,8,0,16,46,99,111,110,115,101,110,116,95,95,98,97,110,110,101,114,8,0,17,46,99,111,110,115,101,110,116,95,95,99,111,111,107,105,101,115,8,0,20,46,99,111,110,115,101,110,116,95,98,114,101,97,100,99,114,117,109,98,115,8,0,16,46,99,111,110,115,101,110,116,95,99,111,111,107,105,101,115,8,0,27,46,99,111,110,115,101,110,116,95,109,97,110,97,103,101,114,45,98,97,99,107,103,114,111,117,110,100,8,0,25,46,99,111,110,115,101,110,116,95,114,101,113,117,105,114,101,100,95,111,118,101,114,108,97,121,8,0,20,46,99,111,110,115,101,110,116,98,97,114,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,110,115,101,110,116,101,109,101,110,116,95,99,111,111,107,105,101,8,0,21,46,99,111,110,115,101,110,116,101,109,101,110,116,95,99,111,111,107,105,101,115,8,0,20,46,99,111,110,115,101,110,116,105,109,101,110,116,111,67,111,111,107,105,101,8,0,14,46,99,111,110,115,101,110,116,108,121,45,98,97,114,8,0,19,46,99,111,110,115,101,110,116,114,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,110,115,101,110,116,114,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,13,46,99,111,110,115,101,110,116,115,45,98,97,114,8,0,21,46,99,111,110,115,111,108,101,45,104,101,97,100,45,99,111,111,107,105,101,115,8,0,21,46,99,111,110,115,116,95,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,24,46,99,111,110,115,117,109,101,114,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,12,46,99,111,110,116,45,99,111,111,107,105,101,8,0,11,46,99,111,110,116,67,111,111,107,105,101,8,0,18,46,99,111,110,116,95,97,118,105,115,95,103,97,108,101,116,101,115,8,0,48,46,99,111,110,116,97,105,110,101,114,32,126,32,100,105,118,91,100,97,116,97,45,114,101,97,99,116,45,99,108,97,115,115,61,34,67,111,111,107,105,101,65,103,114,101,101,34,93,8,0,23,46,99,111,110,116,97,105,110,101,114,45,97,118,105,115,111,99,111,111,107,105,101,115,8,0,24,46,99,111,110,116,97,105,110,101,114,45,98,97,110,110,101,114,45,99,111,111,107,105,101,8,0,17,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,8,0,24,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,97,100,118,105,115,101,8,0,21,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,98,97,114,8,0,25,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,25,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,109,101,108,100,105,110,103,8,0,24,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,24,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,23,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,27,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,119,112,45,112,97,108,109,97,115,8,0,18,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,115,8,0,21,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,115,66,97,114,8,0,29,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,46,99,111,111,107,105,101,45,109,111,100,97,108,8,0,29,46,99,111,110,116,97,105,110,101,114,45,103,100,112,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,15,46,99,111,110,116,97,105,110,101,114,45,108,103,112,100,8,0,27,46,99,111,110,116,97,105,110,101,114,45,110,111,116,105,102,105,99,97,99,97,111,45,108,103,112,100,8,0,21,46,99,111,110,116,97,105,110,101,114,46,99,111,111,107,105,101,105,110,102,111,8,0,21,46,99,111,110,116,97,105,110,101,114,66,111,120,45,99,111,111,107,105,101,115,8,0,16,46,99,111,110,116,97,105,110,101,114,67,111,111,107,105,101,8,0,26,46,99,111,110,116,97,105,110,101,114,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,8,0,14,46,99,111,110,116,97,105,110,101,114,71,68,80,82,8,0,21,46,99,111,110,116,97,105,110,101,114,79,117,116,101,114,67,111,111,107,105,101,8,0,25,46,99,111,110,116,97,105,110,101,114,95,95,99,111,111,107,105,101,115,80,111,108,105,99,121,8,0,25,46,99,111,110,116,97,105,110,101,114,95,99,111,110,116,101,110,116,95,99,111,111,107,105,101,8,0,17,46,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,8,0,18,46,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,115,8,0,24,46,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,115,95,97,108,101,114,116,8,0,24,46,99,111,110,116,97,105,110,101,114,95,109,111,100,97,108,95,99,111,111,107,105,101,115,8,0,17,46,99,111,110,116,97,111,45,99,111,111,107,105,101,98,97,114,8,0,12,46,99,111,110,116,99,111,111,107,105,101,115,8,0,19,46,99,111,110,116,101,110,101,100,111,114,45,99,111,111,107,105,101,115,8,0,23,46,99,111,110,116,101,110,101,100,111,114,45,108,101,121,45,99,111,111,107,105,101,115,8,0,23,46,99,111,110,116,101,110,101,100,111,114,65,118,105,115,111,67,111,111,107,105,101,115,8,0,19,46,99,111,110,116,101,110,101,100,111,114,95,99,111,111,107,105,101,115,8,0,19,46,99,111,110,116,101,110,116,45,45,99,111,111,107,105,101,45,106,115,8,0,22,46,99,111,110,116,101,110,116,45,97,108,101,114,116,45,98,114,111,119,115,101,114,8,0,21,46,99,111,110,116,101,110,116,45,97,108,101,114,116,45,99,111,111,107,105,101,8,0,19,46,99,111,110,116,101,110,116,45,99,111,110,45,99,111,111,107,105,101,8,0,15,46,99,111,110,116,101,110,116,45,99,111,111,107,105,101,8,0,16,46,99,111,110,116,101,110,116,45,99,111,111,107,105,101,115,8,0,22,46,99,111,110,116,101,110,116,45,108,101,103,97,108,101,45,99,111,111,107,105,101,8,0,14,46,99,111,110,116,101,110,116,67,111,111,107,105,101,8,0,17,46,99,111,110,116,101,110,116,67,111,111,107,105,101,66,111,120,8,0,48,46,99,111,110,116,101,110,116,82,101,110,100,101,114,95,110,97,109,101,95,112,108,117,103,105,110,115,95,99,111,109,109,111,110,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,46,46,99,111,110,116,101,110,116,82,101,110,100,101,114,95,110,97,109,101,95,112,108,117,103,105,110,115,95,99,111,109,109,111,110,95,103,100,112,114,95,98,97,110,110,101,114,8,0,16,46,99,111,110,116,101,110,116,95,99,111,111,107,105,101,115,8,0,25,46,99,111,110,116,101,117,100,111,45,99,111,111,107,105,101,45,97,99,99,101,112,116,101,100,8,0,16,46,99,111,110,116,101,117,100,111,67,111,111,107,105,101,115,8,0,16,46,99,111,110,116,105,101,110,101,45,99,111,111,107,105,101,8,0,16,46,99,111,110,116,105,101,110,101,67,111,111,107,105,101,115,8,0,11,46,99,111,111,45,98,97,110,110,101,114,8,0,18,46,99,111,111,95,98,97,110,110,101,114,45,110,111,116,105,99,101,8,0,13,46,99,111,111,99,101,115,95,95,119,114,97,112,8,0,8,46,99,111,111,99,107,105,101,8,0,12,46,99,111,111,99,107,105,101,45,98,97,114,8,0,14,46,99,111,111,99,107,105,101,45,98,108,111,99,107,8,0,13,46,99,111,111,99,107,105,101,45,108,105,110,101,8,0,16,46,99,111,111,99,107,105,101,45,109,101,115,115,97,103,101,8,0,14,46,99,111,111,99,107,105,101,45,112,111,112,117,112,8,0,16,46,99,111,111,99,107,105,101,45,119,97,114,110,105,110,103,8,0,11,46,99,111,111,99,107,105,101,66,97,114,8,0,11,46,99,111,111,99,107,105,101,76,97,119,8,0,14,46,99,111,111,99,107,105,101,80,111,108,105,99,121,8,0,14,46,99,111,111,99,107,105,101,87,105,110,100,111,119,8,0,15,46,99,111,111,99,107,105,101,95,98,97,110,110,101,114,8,0,14,46,99,111,111,99,107,105,101,95,112,111,112,117,112,8,0,12,46,99,111,111,99,107,105,101,95,116,120,116,8,0,11,46,99,111,111,99,107,105,101,98,97,114,8,0,11,46,99,111,111,99,107,105,101,100,105,118,8,0,15,46,99,111,111,99,107,105,101,104,105,110,119,101,105,115,8,0,9,46,99,111,111,99,107,105,101,115,8,0,15,46,99,111,111,99,107,105,101,115,45,98,108,111,99,107,8,0,17,46,99,111,111,99,107,105,101,115,45,109,101,115,115,97,103,101,8,0,15,46,99,111,111,99,107,105,101,115,45,112,111,112,117,112,8,0,23,46,99,111,111,99,107,105,101,115,77,111,100,97,108,67,111,110,116,97,105,110,101,114,8,0,15,46,99,111,111,99,107,105,101,115,80,111,108,105,99,121,8,0,15,46,99,111,111,99,107,105,101,115,95,97,108,101,114,116,8,0,14,46,99,111,111,99,107,105,101,115,102,105,120,101,100,8,0,17,46,99,111,111,105,107,101,95,97,108,101,114,116,95,98,111,120,8,0,12,46,99,111,111,107,45,97,99,99,101,112,116,8,0,11,46,99,111,111,107,45,112,111,112,117,112,8,0,12,46,99,111,111,107,45,119,105,110,100,111,119,8,0,9,46,99,111,111,107,76,105,110,107,8,0,9,46,99,111,111,107,95,109,115,103,8,0,10,46,99,111,111,107,95,112,108,99,121,8,0,16,46,99,111,111,107,95,117,115,105,110,103,95,112,101,114,109,8,0,13,46,99,111,111,107,97,99,99,101,112,116,111,114,8,0,7,46,99,111,111,107,98,120,8,0,14,46,99,111,111,107,99,111,110,116,97,105,110,101,114,8,0,13,46,99,111,111,107,101,69,110,97,98,108,101,114,8,0,10,46,99,111,111,107,101,72,105,110,116,8,0,16,46,99,111,111,107,105,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,95,98,97,110,101,114,95,119,114,112,8,0,14,46,99,111,111,107,105,101,32,62,32,46,98,111,120,8,0,15,46,99,111,111,107,105,101,32,62,32,46,114,103,112,100,8,0,15,46,99,111,111,107,105,101,45,45,97,99,116,105,118,101,8,0,15,46,99,111,111,107,105,101,45,45,98,97,110,110,101,114,8,0,22,46,99,111,111,107,105,101,45,45,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,45,45,99,111,110,115,101,110,116,45,45,114,111,111,116,8,0,16,46,99,111,111,107,105,101,45,45,100,101,115,107,116,111,112,8,0,13,46,99,111,111,107,105,101,45,45,102,111,114,109,8,0,14,46,99,111,111,107,105,101,45,45,108,97,121,101,114,8,0,21,46,99,111,111,107,105,101,45,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,99,111,111,107,105,101,45,45,111,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,45,45,112,101,114,109,105,115,115,105,111,110,8,0,17,46,99,111,111,107,105,101,45,45,112,111,108,105,116,121,107,97,8,0,14,46,99,111,111,107,105,101,45,45,112,111,112,117,112,8,0,16,46,99,111,111,107,105,101,45,45,115,101,99,116,105,111,110,8,0,12,46,99,111,111,107,105,101,45,45,116,111,112,8,0,14,46,99,111,111,107,105,101,45,45,117,110,115,101,116,8,0,16,46,99,111,111,107,105,101,45,45,118,105,115,105,98,108,101,8,0,13,46,99,111,111,107,105,101,45,45,119,114,97,112,8,0,17,46,99,111,111,107,105,101,45,45,119,114,97,112,95,95,111,110,8,0,10,46,99,111,111,107,105,101,45,48,51,8,0,9,46,99,111,111,107,105,101,45,49,8,0,14,46,99,111,111,107,105,101,45,66,97,110,110,101,114,8,0,13,46,99,111,111,107,105,101,45,97,98,111,118,101,8,0,19,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,97,114,101,97,8,0,21,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,97,110,110,101,114,8,0,18,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,97,114,8,0,20,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,108,111,99,107,8,0,18,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,111,120,8,0,22,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,100,101,102,97,117,108,116,8,0,21,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,110,111,116,105,99,101,8,0,22,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,111,118,101,114,108,97,121,8,0,20,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,112,111,112,117,112,8,0,20,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,115,116,121,108,101,8,0,18,46,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,8,0,25,46,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,98,97,110,110,101,114,8,0,28,46,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,100,105,97,108,111,103,8,0,26,46,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,109,101,115,115,97,103,101,8,0,24,46,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,109,111,100,97,108,8,0,21,46,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,98,111,120,8,0,26,46,99,111,111,107,105,101,45,97,99,99,101,112,116,97,116,105,111,110,45,109,111,100,117,108,101,8,0,17,46,99,111,111,107,105,101,45,97,99,99,101,112,116,105,111,110,8,0,16,46,99,111,111,107,105,101,45,97,99,99,101,112,116,111,114,8,0,23,46,99,111,111,107,105,101,45,97,99,107,110,111,119,108,101,100,103,101,109,101,110,116,8,0,11,46,99,111,111,107,105,101,45,97,100,118,8,0,14,46,99,111,111,107,105,101,45,97,100,118,101,114,116,8,0,21,46,99,111,111,107,105,101,45,97,100,118,101,114,116,105,115,101,109,101,110,116,8,0,20,46,99,111,111,107,105,101,45,97,100,118,101,114,116,105,115,109,101,110,116,8,0,14,46,99,111,111,107,105,101,45,97,100,118,105,99,101,8,0,14,46,99,111,111,107,105,101,45,97,100,118,105,115,101,8,0,15,46,99,111,111,107,105,101,45,97,100,118,105,115,111,114,8,0,11,46,99,111,111,107,105,101,45,97,103,101,8,0,33,46,99,111,111,107,105,101,45,97,103,103,114,101,109,101,110,116,45,98,108,111,99,107,45,99,111,110,116,97,105,110,101,114,8,0,13,46,99,111,111,107,105,101,45,97,103,114,101,101,8,0,19,46,99,111,111,107,105,101,45,97,103,114,101,101,45,112,111,112,117,112,8,0,22,46,99,111,111,107,105,101,45,97,103,114,101,101,45,119,105,116,104,45,117,115,101,8,0,21,46,99,111,111,107,105,101,45,97,103,114,101,101,45,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,45,97,103,114,101,101,100,8,0,17,46,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,8,0,27,46,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,45,119,114,97,112,112,101,114,8,0,18,46,99,111,111,107,105,101,45,97,108,101,114,116,45,45,116,111,112,8,0,15,46,99,111,111,107,105,101,45,97,108,101,114,116,45,49,8,0,15,46,99,111,111,107,105,101,45,97,108,101,114,116,45,50,8,0,20,46,99,111,111,107,105,101,45,97,108,101,114,116,45,50,48,49,56,45,99,8,0,17,46,99,111,111,107,105,101,45,97,108,101,114,116,45,98,111,120,8,0,25,46,99,111,111,107,105,101,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,23,46,99,111,111,107,105,101,45,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,45,97,108,101,114,116,45,104,111,108,100,101,114,8,0,17,46,99,111,111,107,105,101,45,97,108,101,114,116,45,109,115,107,8,0,19,46,99,111,111,107,105,101,45,97,108,101,114,116,45,111,117,116,101,114,8,0,19,46,99,111,111,107,105,101,45,97,108,101,114,116,45,112,97,110,101,108,8,0,29,46,99,111,111,107,105,101,45,97,108,101,114,116,45,115,116,114,105,112,45,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,45,97,108,101,114,116,45,119,114,97,112,8,0,21,46,99,111,111,107,105,101,45,97,108,101,114,116,45,119,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,45,97,108,108,8,0,18,46,99,111,111,107,105,101,45,97,108,108,99,111,110,116,101,110,116,8,0,19,46,99,111,111,107,105,101,45,97,108,108,111,119,45,98,108,111,99,107,8,0,21,46,99,111,111,107,105,101,45,97,108,108,111,119,45,99,111,110,102,105,114,109,8,0,29,46,99,111,111,107,105,101,45,97,110,100,45,112,114,105,118,97,99,121,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,45,97,110,110,111,117,110,99,101,8,0,20,46,99,111,111,107,105,101,45,97,110,110,111,117,110,99,101,109,101,110,116,8,0,25,46,99,111,111,107,105,101,45,97,112,112,114,111,118,97,108,95,95,119,114,97,112,112,101,114,8,0,19,46,99,111,111,107,105,101,45,97,112,112,114,111,118,101,109,101,110,116,8,0,12,46,99,111,111,107,105,101,45,97,114,101,97,8,0,17,46,99,111,111,107,105,101,45,97,114,107,115,105,103,110,101,114,8,0,17,46,99,111,111,107,105,101,45,97,115,115,105,115,116,97,110,116,8,0,25,46,99,111,111,107,105,101,45,97,115,115,105,115,116,97,110,116,45,119,114,97,112,112,101,114,8,0,17,46,99,111,111,107,105,101,45,97,116,116,101,110,116,105,111,110,8,0,12,46,99,111,111,107,105,101,45,98,97,99,107,8,0,16,46,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,8,0,11,46,99,111,111,107,105,101,45,98,97,110,8,0,12,46,99,111,111,107,105,101,45,98,97,110,100,8,0,13,46,99,111,111,107,105,101,45,98,97,110,101,114,8,0,31,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,45,100,105,115,97,98,108,101,45,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,45,115,105,109,112,108,101,8,0,23,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,45,119,114,97,112,112,101,114,8,0,26,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,45,119,114,97,112,112,101,114,45,106,115,8,0,23,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,97,99,107,100,114,111,112,8,0,25,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,97,99,107,103,114,111,117,110,100,8,0,31,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,97,99,107,115,105,100,101,45,116,101,97,108,105,117,109,8,0,17,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,103,8,0,20,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,108,111,99,107,8,0,27,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,108,111,99,107,105,110,103,45,100,105,118,8,0,27,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,111,100,121,45,111,118,101,114,108,97,121,8,0,21,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,111,116,116,111,109,8,0,18,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,111,120,8,0,21,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,117,116,116,111,110,8,0,34,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,8,0,24,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,100,101,115,107,116,111,112,8,0,21,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,102,111,111,116,101,114,8,0,19,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,105,110,102,111,8,0,33,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,105,110,102,111,45,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,105,110,110,101,114,8,0,17,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,106,115,8,0,20,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,108,97,121,101,114,8,0,19,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,108,103,112,100,8,0,29,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,108,103,112,100,45,99,111,110,116,97,105,110,101,114,8,0,28,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,108,103,112,100,95,116,101,120,116,45,98,111,120,8,0,29,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,8,0,18,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,115,103,8,0,18,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,108,100,8,0,20,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,117,116,101,114,8,0,30,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,117,116,101,114,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,115,101,99,116,105,111,110,8,0,21,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,115,104,97,100,111,119,8,0,21,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,115,104,114,111,117,100,8,0,19,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,115,116,121,114,8,0,17,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,116,109,8,0,26,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,116,109,95,95,111,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,118,105,101,119,8,0,20,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,104,105,116,101,8,0,21,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,105,110,100,111,119,8,0,34,46,99,111,111,107,105,101,45,98,97,110,110,101,114,46,110,97,118,98,97,114,45,102,105,120,101,100,45,98,111,116,116,111,109,8,0,20,46,99,111,111,107,105,101,45,98,97,110,110,101,114,46,116,111,97,115,116,8,0,22,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,98,111,116,116,111,109,8,0,28,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,98,111,116,116,111,109,45,112,97,110,101,108,8,0,19,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,99,110,116,8,0,25,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,111,118,101,114,108,97,121,8,0,23,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,115,101,99,116,105,111,110,8,0,23,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,119,114,97,112,112,101,114,8,0,19,46,99,111,111,107,105,101,45,98,97,114,45,45,97,99,116,105,118,101,8,0,19,46,99,111,111,107,105,101,45,98,97,114,45,45,98,111,116,116,111,109,8,0,24,46,99,111,111,107,105,101,45,98,97,114,45,45,116,121,112,101,45,109,97,110,97,103,101,8,0,26,46,99,111,111,107,105,101,45,98,97,114,45,97,99,116,105,118,101,45,98,108,111,99,107,101,114,8,0,17,46,99,111,111,107,105,101,45,98,97,114,45,97,108,101,114,116,8,0,20,46,99,111,111,107,105,101,45,98,97,114,45,98,97,99,107,100,114,111,112,8,0,15,46,99,111,111,107,105,101,45,98,97,114,45,99,111,110,8,0,21,46,99,111,111,107,105,101,45,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,45,98,97,114,45,105,110,110,101,114,8,0,16,46,99,111,111,107,105,101,45,98,97,114,45,109,97,115,107,8,0,19,46,99,111,111,107,105,101,45,98,97,114,45,109,101,115,115,97,103,101,8,0,15,46,99,111,111,107,105,101,45,98,97,114,45,110,101,119,8,0,24,46,99,111,111,107,105,101,45,98,97,114,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,25,46,99,111,111,107,105,101,45,98,97,114,45,110,111,116,105,102,105,99,97,116,105,111,110,115,8,0,17,46,99,111,111,107,105,101,45,98,97,114,45,111,117,116,101,114,8,0,19,46,99,111,111,107,105,101,45,98,97,114,45,112,111,112,111,118,101,114,8,0,19,46,99,111,111,107,105,101,45,98,97,114,45,115,101,99,116,105,111,110,8,0,17,46,99,111,111,107,105,101,45,98,97,114,45,117,110,105,113,97,8,0,14,46,99,111,111,107,105,101,45,98,97,114,45,119,112,8,0,16,46,99,111,111,107,105,101,45,98,97,114,45,119,114,97,112,8,0,19,46,99,111,111,107,105,101,45,98,97,114,45,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,45,98,97,114,50,8,0,18,46,99,111,111,107,105,101,45,98,97,114,95,95,105,110,110,101,114,8,0,20,46,99,111,111,107,105,101,45,98,97,114,95,95,119,114,97,112,112,101,114,8,0,21,46,99,111,111,107,105,101,45,98,97,114,95,99,111,109,112,111,110,101,110,116,8,0,21,46,99,111,111,107,105,101,45,98,97,114,95,99,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,45,98,97,114,95,105,110,110,101,114,8,0,17,46,99,111,111,107,105,101,45,98,97,114,95,111,117,116,101,114,8,0,13,46,99,111,111,107,105,101,45,98,97,114,114,101,8,0,10,46,99,111,111,107,105,101,45,98,103,8,0,15,46,99,111,111,107,105,101,45,98,103,45,119,114,97,112,8,0,18,46,99,111,111,107,105,101,45,98,103,45,119,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,45,98,108,111,99,107,8,0,21,46,99,111,111,107,105,101,45,98,108,111,99,107,45,118,105,115,105,98,108,101,8,0,12,46,99,111,111,107,105,101,45,98,111,100,121,8,0,20,46,99,111,111,107,105,101,45,98,111,100,121,45,111,118,101,114,108,97,121,8,0,12,46,99,111,111,107,105,101,45,98,111,111,107,8,0,11,46,99,111,111,107,105,101,45,98,111,116,8,0,14,46,99,111,111,107,105,101,45,98,111,116,116,111,109,8,0,19,46,99,111,111,107,105,101,45,98,111,116,116,111,109,45,109,97,105,110,8,0,20,46,99,111,111,107,105,101,45,98,111,116,116,111,109,45,112,108,97,99,101,8,0,11,46,99,111,111,107,105,101,45,98,111,120,8,0,14,46,99,111,111,107,105,101,45,98,111,120,45,101,110,8,0,19,46,99,111,111,107,105,101,45,98,111,120,45,119,114,97,112,112,101,114,8,0,20,46,99,111,111,107,105,101,45,98,111,120,95,95,111,118,101,114,108,97,121,8,0,17,46,99,111,111,107,105,101,45,98,111,120,95,95,119,114,97,112,8,0,14,46,99,111,111,107,105,101,45,98,117,98,98,108,101,8,0,22,46,99,111,111,107,105,101,45,98,117,116,116,111,110,45,99,111,110,115,101,110,116,8,0,15,46,99,111,111,107,105,101,45,99,97,108,108,111,117,116,8,0,24,46,99,111,111,107,105,101,45,99,97,114,100,95,112,111,112,117,112,95,102,105,120,101,100,8,0,12,46,99,111,111,107,105,101,45,99,101,108,108,8,0,14,46,99,111,111,107,105,101,45,99,104,111,105,99,101,8,0,21,46,99,111,111,107,105,101,45,99,104,111,105,99,101,115,45,45,105,110,102,111,8,0,20,46,99,111,111,107,105,101,45,99,104,111,105,99,101,115,45,105,110,102,111,8,0,13,46,99,111,111,107,105,101,45,99,108,97,115,115,8,0,16,46,99,111,111,107,105,101,45,99,108,105,99,107,97,108,108,8,0,18,46,99,111,111,107,105,101,45,99,110,102,45,98,97,110,110,101,114,8,0,30,46,99,111,111,107,105,101,45,99,110,102,45,98,97,110,110,101,114,45,45,98,97,99,107,103,114,111,117,110,100,8,0,12,46,99,111,111,107,105,101,45,99,110,105,108,8,0,11,46,99,111,111,107,105,101,45,99,110,116,8,0,19,46,99,111,111,107,105,101,45,99,111,108,108,97,112,115,105,98,108,101,8,0,25,46,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,8,0,33,46,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,28,46,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,100,101,115,107,8,0,26,46,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,109,101,115,115,97,103,101,8,0,24,46,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,112,111,112,117,112,8,0,25,46,99,111,111,107,105,101,45,99,111,109,112,108,105,101,110,99,101,45,98,97,110,110,101,114,8,0,17,46,99,111,111,107,105,101,45,99,111,110,100,105,116,105,111,110,8,0,18,46,99,111,111,107,105,101,45,99,111,110,100,105,116,105,111,110,115,8,0,20,46,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,8,0,27,46,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,45,110,111,116,105,99,101,8,0,25,46,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,95,95,98,111,120,8,0,14,46,99,111,111,107,105,101,45,99,111,110,115,101,110,8,0,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,71,68,80,82,8,0,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,98,111,120,8,0,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,101,112,51,8,0,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,110,111,114,109,97,108,8,0,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,115,104,111,119,8,0,24,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,119,114,97,112,112,101,114,8,0,41,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,99,107,110,111,119,108,101,100,103,101,109,101,110,116,45,99,111,110,97,116,105,110,101,114,8,0,24,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,100,118,97,110,99,101,100,8,0,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,108,101,114,116,8,0,19,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,112,112,8,0,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,114,101,97,8,0,24,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,99,107,100,114,111,112,8,0,26,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,99,107,103,114,111,117,110,100,8,0,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,100,103,101,8,0,32,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,30,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,111,112,116,45,111,117,116,8,0,30,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,8,0,31,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,95,95,119,114,97,112,112,101,114,8,0,27,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,45,111,118,101,114,108,97,121,8,0,24,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,45,119,114,97,112,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,111,116,116,111,109,8,0,19,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,111,120,8,0,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,109,112,8,0,25,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,109,112,111,110,101,110,116,8,0,25,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,28,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,45,118,50,8,0,19,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,116,114,8,0,24,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,97,114,107,101,110,101,114,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,8,0,24,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,117,101,8,0,37,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,117,101,95,95,97,100,118,101,114,116,105,115,105,110,103,8,0,19,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,118,8,0,29,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,101,109,98,101,100,45,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,102,108,121,111,117,116,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,102,111,111,116,101,114,8,0,30,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,104,101,97,100,101,114,45,119,114,97,112,112,101,114,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,104,111,108,100,101,114,8,0,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,106,111,108,116,8,0,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,108,97,121,101,114,8,0,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,108,111,99,97,108,8,0,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,8,0,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,101,115,115,97,103,101,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,110,111,116,105,99,101,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,110,111,116,105,102,121,8,0,34,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,45,98,97,99,107,103,114,111,117,110,100,8,0,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,97,110,101,108,8,0,29,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,97,110,101,108,45,109,101,115,115,97,103,101,8,0,19,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,110,108,8,0,29,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,45,111,118,101,114,108,97,121,8,0,26,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,45,119,114,97,112,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,114,111,109,112,116,8,0,32,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,114,111,109,112,116,45,99,111,110,116,97,105,110,101,114,8,0,33,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,114,101,99,116,97,110,103,108,101,45,119,114,97,112,112,101,114,8,0,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,114,101,113,117,101,115,116,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,114,101,118,111,107,101,8,0,25,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,104,97,100,111,119,45,98,103,8,0,28,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,104,97,100,111,119,45,108,97,121,101,114,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,112,108,97,115,104,8,0,18,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,118,50,8,0,28,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,97,108,108,45,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,105,100,103,101,116,8,0,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,8,0,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,46,98,111,116,116,111,109,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,46,105,110,118,101,114,115,8,0,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,46,115,104,111,119,8,0,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,46,115,104,111,119,110,8,0,30,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,91,100,97,116,97,45,99,108,111,115,97,98,108,101,93,8,0,32,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,91,100,97,116,97,45,99,111,110,116,114,111,108,108,101,114,93,8,0,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,98,97,114,8,0,30,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,26,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,100,105,97,108,111,103,8,0,24,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,111,118,101,114,108,97,121,8,0,24,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,119,114,97,112,112,101,114,8,0,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,111,118,101,114,108,97,121,8,0,18,46,99,111,111,107,105,101,45,99,111,110,115,101,116,45,98,97,114,8,0,12,46,99,111,111,107,105,101,45,99,111,110,116,8,0,15,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,8,0,22,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,45,109,97,105,110,8,0,22,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,45,109,111,115,116,8,0,25,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,45,111,118,101,114,108,97,121,8,0,26,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,45,115,101,108,101,99,116,111,114,8,0,25,46,99,111,111,107,105,101,45,99,111,110,116,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,99,111,110,116,101,110,116,45,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,45,99,111,110,116,101,110,116,45,114,105,98,98,111,110,8,0,22,46,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,98,97,110,110,101,114,8,0,19,46,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,98,97,114,8,0,25,46,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,99,111,110,116,101,110,116,8,0,23,46,99,111,111,107,105,101,45,99,111,110,116,114,111,108,95,95,98,97,110,110,101,114,8,0,12,46,99,111,111,107,105,101,45,99,111,112,121,8,0,12,46,99,111,111,107,105,101,45,99,111,114,101,8,0,13,46,99,111,111,107,105,101,45,99,111,118,101,114,8,0,12,46,99,111,111,107,105,101,45,99,117,98,101,8,0,15,46,99,111,111,107,105,101,45,99,117,114,116,97,105,110,8,0,19,46,99,111,111,107,105,101,45,100,97,114,107,45,102,105,108,116,101,114,8,0,20,46,99,111,111,107,105,101,45,100,97,116,97,45,119,97,114,110,105,110,103,8,0,12,46,99,111,111,107,105,101,45,100,101,109,111,8,0,15,46,99,111,111,107,105,101,45,100,101,109,111,45,111,110,8,0,19,46,99,111,111,107,105,101,45,100,101,115,99,114,105,112,116,105,111,110,8,0,15,46,99,111,111,107,105,101,45,100,101,115,107,116,111,112,8,0,14,46,99,111,111,107,105,101,45,100,105,97,108,111,103,8,0,21,46,99,111,111,107,105,101,45,100,105,97,108,111,103,45,99,101,110,116,101,114,8,0,24,46,99,111,111,107,105,101,45,100,105,97,108,111,103,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,8,0,16,46,99,111,111,107,105,101,45,100,105,97,108,111,103,117,101,8,0,23,46,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,45,97,108,101,114,116,8,0,27,46,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,45,111,118,101,114,108,97,121,8,0,27,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,45,100,101,102,97,117,108,116,8,0,27,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,45,111,118,101,114,108,97,121,8,0,27,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,98,97,99,107,100,114,111,112,8,0,29,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,98,97,99,107,103,114,111,117,110,100,8,0,25,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,98,97,110,110,101,114,8,0,22,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,98,111,120,8,0,28,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,99,111,109,112,111,110,101,110,116,8,0,28,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,104,111,108,100,101,114,8,0,23,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,109,97,115,107,8,0,26,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,109,101,115,115,97,103,101,8,0,25,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,110,111,116,105,99,101,8,0,36,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,8,0,26,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,119,114,97,112,112,101,114,8,0,26,46,99,111,111,107,105,101,45,100,105,115,99,108,111,115,117,114,101,45,109,101,115,115,97,103,101,8,0,17,46,99,111,111,107,105,101,45,100,114,111,112,45,100,111,119,110,8,0,16,46,99,111,111,107,105,101,45,100,114,111,112,100,111,119,110,8,0,18,46,99,111,111,107,105,101,45,101,110,116,101,114,45,100,111,110,101,8,0,14,46,99,111,111,107,105,101,45,101,117,45,109,115,103,8,0,19,46,99,111,111,107,105,101,45,101,118,101,110,116,45,98,108,111,99,107,8,0,12,46,99,111,111,107,105,101,45,102,97,100,101,8,0,16,46,99,111,111,107,105,101,45,102,98,45,116,105,116,108,101,8,0,14,46,99,111,111,107,105,101,45,102,98,45,116,111,112,8,0,11,46,99,111,111,107,105,101,45,102,105,120,8,0,13,46,99,111,111,107,105,101,45,102,105,120,101,100,8,0,20,46,99,111,111,107,105,101,45,102,105,120,101,100,45,102,111,111,116,101,114,8,0,18,46,99,111,111,107,105,101,45,102,105,120,101,100,45,104,105,110,116,8,0,13,46,99,111,111,107,105,101,45,102,108,97,115,104,8,0,13,46,99,111,111,107,105,101,45,102,108,111,97,116,8,0,10,46,99,111,111,107,105,101,45,102,110,8,0,14,46,99,111,111,107,105,101,45,102,111,111,116,101,114,8,0,23,46,99,111,111,107,105,101,45,102,111,111,116,101,114,45,45,119,114,97,112,112,101,114,8,0,21,46,99,111,111,107,105,101,45,102,111,111,116,101,114,45,98,97,110,110,101,114,8,0,18,46,99,111,111,107,105,101,45,102,111,111,116,101,114,45,98,97,114,8,0,24,46,99,111,111,107,105,101,45,102,111,111,116,101,114,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,45,102,111,111,116,101,114,45,100,105,97,108,111,103,8,0,18,46,99,111,111,107,105,101,45,102,111,111,116,101,114,45,109,115,103,8,0,13,46,99,111,111,107,105,101,45,102,114,97,109,101,8,0,18,46,99,111,111,107,105,101,45,102,117,108,108,45,98,108,101,101,100,8,0,20,46,99,111,111,107,105,101,45,102,119,45,99,111,110,116,97,105,110,101,114,8,0,27,46,99,111,111,107,105,101,45,103,100,112,114,45,112,111,112,117,112,45,111,118,101,108,97,121,101,114,8,0,20,46,99,111,111,107,105,101,45,103,100,112,114,95,95,98,97,110,110,101,114,8,0,21,46,99,111,111,107,105,101,45,103,100,112,114,95,95,102,97,100,101,45,105,110,8,0,13,46,99,111,111,107,105,101,45,103,105,111,100,111,8,0,10,46,99,111,111,107,105,101,45,103,111,8,0,12,46,99,111,111,107,105,101,45,103,114,111,119,8,0,17,46,99,111,111,107,105,101,45,103,117,97,114,100,45,109,115,103,8,0,17,46,99,111,111,107,105,101,45,103,117,105,100,101,108,105,110,101,8,0,20,46,99,111,111,107,105,101,45,104,97,110,100,108,105,110,103,45,110,101,119,8,0,22,46,99,111,111,107,105,101,45,104,105,110,116,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,45,104,105,110,116,45,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,45,104,111,108,100,101,114,8,0,14,46,99,111,111,107,105,101,45,104,111,112,112,101,114,8,0,20,46,99,111,111,107,105,101,45,104,117,45,99,111,110,116,97,105,110,101,114,8,0,14,46,99,111,111,107,105,101,45,105,99,101,114,105,107,8,0,22,46,99,111,111,107,105,101,45,105,100,101,110,116,105,102,105,99,97,116,105,111,110,8,0,21,46,99,111,111,107,105,101,45,105,109,97,103,101,45,119,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,45,105,109,103,8,0,23,46,99,111,111,107,105,101,45,105,110,102,111,45,98,97,99,107,103,114,111,117,110,100,8,0,19,46,99,111,111,107,105,101,45,105,110,102,111,45,98,97,110,110,101,114,8,0,16,46,99,111,111,107,105,101,45,105,110,102,111,45,98,97,114,8,0,18,46,99,111,111,107,105,101,45,105,110,102,111,45,98,108,111,99,107,8,0,26,46,99,111,111,107,105,101,45,105,110,102,111,45,98,108,111,99,107,45,115,101,99,116,105,111,110,8,0,16,46,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,8,0,22,46,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,45,97,103,114,101,101,8,0,24,46,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,45,111,118,101,114,108,97,121,8,0,26,46,99,111,111,107,105,101,45,105,110,102,111,45,99,108,111,115,101,45,119,114,97,112,112,101,114,8,0,17,46,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,8,0,22,46,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,101,110,116,8,0,21,46,99,111,111,107,105,101,45,105,110,102,111,45,100,114,111,112,100,111,119,110,8,0,19,46,99,111,111,107,105,101,45,105,110,102,111,45,104,101,97,100,101,114,8,0,18,46,99,111,111,107,105,101,45,105,110,102,111,45,108,97,121,101,114,8,0,18,46,99,111,111,107,105,101,45,105,110,102,111,45,109,111,100,97,108,8,0,36,46,99,111,111,107,105,101,45,105,110,102,111,45,109,111,114,101,45,111,112,116,105,111,110,115,45,98,97,99,107,103,114,111,117,110,100,8,0,31,46,99,111,111,107,105,101,45,105,110,102,111,45,109,111,114,101,45,111,112,116,105,111,110,115,45,108,97,121,101,114,8,0,42,46,99,111,111,107,105,101,45,105,110,102,111,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,105,110,100,111,119,45,99,111,110,97,116,105,110,101,114,8,0,20,46,99,111,111,107,105,101,45,105,110,102,111,45,111,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,45,105,110,102,111,45,115,108,105,100,101,114,8,0,18,46,99,111,111,107,105,101,45,105,110,102,111,45,115,116,114,105,112,8,0,17,46,99,111,111,107,105,101,45,105,110,102,111,45,116,101,120,116,8,0,20,46,99,111,111,107,105,101,45,105,110,102,111,45,119,114,97,112,112,101,114,8,0,19,46,99,111,111,107,105,101,45,105,110,102,111,95,95,112,97,110,101,108,8,0,25,46,99,111,111,107,105,101,45,105,110,102,111,95,95,112,97,110,101,108,45,45,115,104,111,119,8,0,15,46,99,111,111,107,105,101,45,105,110,102,111,98,97,114,8,0,19,46,99,111,111,107,105,101,45,105,110,102,111,98,111,120,45,119,114,112,8,0,14,46,99,111,111,107,105,101,45,105,110,102,111,114,109,8,0,22,46,99,111,111,107,105,101,45,105,110,102,111,114,109,45,97,110,100,45,97,115,107,8,0,23,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,98,97,114,8,0,24,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,99,111,110,116,8,0,29,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,112,97,110,101,108,8,0,24,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,116,101,120,116,8,0,27,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,119,114,97,112,112,101,114,8,0,27,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,118,101,45,109,101,115,115,97,103,101,8,0,16,46,99,111,111,107,105,101,45,105,110,102,111,114,109,101,114,8,0,23,46,99,111,111,107,105,101,45,105,110,102,111,114,109,101,114,45,104,111,108,100,101,114,8,0,13,46,99,111,111,107,105,101,45,105,110,102,111,115,8,0,13,46,99,111,111,107,105,101,45,105,110,110,101,114,8,0,23,46,99,111,111,107,105,101,45,105,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,45,105,110,113,117,105,114,121,45,45,115,101,116,116,105,110,103,115,8,0,14,46,99,111,111,107,105,101,45,105,110,115,101,114,116,8,0,12,46,99,111,111,107,105,101,45,105,116,101,109,8,0,23,46,99,111,111,107,105,101,45,105,116,101,109,45,112,114,111,116,101,99,116,105,111,110,8,0,11,46,99,111,111,107,105,101,45,106,97,114,8,0,12,46,99,111,111,107,105,101,45,106,118,110,115,8,0,12,46,99,111,111,107,105,101,45,107,117,116,117,8,0,9,46,99,111,111,107,105,101,45,108,8,0,13,46,99,111,111,107,105,101,45,108,97,98,101,108,8,0,22,46,99,111,111,107,105,101,45,108,97,98,101,108,45,119,114,97,112,112,114,101,114,8,0,15,46,99,111,111,107,105,101,45,108,97,110,100,105,110,103,8,0,14,46,99,111,111,107,105,101,45,108,97,115,99,104,101,8,0,17,46,99,111,111,107,105,101,45,108,97,115,99,104,101,45,104,112,8,0,11,46,99,111,111,107,105,101,45,108,97,119,8,0,17,46,99,111,111,107,105,101,45,108,97,119,45,97,108,101,114,116,8,0,28,46,99,111,111,107,105,101,45,108,97,119,45,97,112,112,114,111,118,97,108,45,119,114,97,112,112,101,114,8,0,18,46,99,111,111,107,105,101,45,108,97,119,45,98,97,110,110,101,114,8,0,15,46,99,111,111,107,105,101,45,108,97,119,45,98,97,114,8,0,17,46,99,111,111,107,105,101,45,108,97,119,45,98,108,111,99,107,8,0,25,46,99,111,111,107,105,101,45,108,97,119,45,98,108,111,99,107,45,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,45,108,97,119,45,98,111,120,8,0,16,46,99,111,111,107,105,101,45,108,97,119,45,99,111,110,116,8,0,21,46,99,111,111,107,105,101,45,108,97,119,45,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,45,108,97,119,45,100,105,97,108,111,103,8,0,33,46,99,111,111,107,105,101,45,108,97,119,45,100,105,97,108,111,103,45,99,111,110,116,101,110,116,119,114,97,112,112,101,114,8,0,16,46,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,8,0,20,46,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,8,0,19,46,99,111,111,107,105,101,45,108,97,119,45,109,101,115,115,97,103,101,8,0,18,46,99,111,111,107,105,101,45,108,97,119,45,110,111,116,105,99,101,8,0,28,46,99,111,111,107,105,101,45,108,97,119,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,45,108,97,119,45,111,118,101,114,108,97,121,8,0,18,46,99,111,111,107,105,101,45,108,97,119,45,112,111,108,105,99,121,8,0,16,46,99,111,111,107,105,101,45,108,97,119,45,116,101,120,116,8,0,19,46,99,111,111,107,105,101,45,108,97,119,45,119,114,97,112,112,101,114,8,0,22,46,99,111,111,107,105,101,45,108,97,119,95,95,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,45,108,97,121,101,114,45,97,100,118,97,110,99,101,100,8,0,24,46,99,111,111,107,105,101,45,108,97,121,101,114,45,98,97,99,107,103,114,111,117,110,100,8,0,20,46,99,111,111,107,105,101,45,108,97,121,101,114,45,98,111,116,116,111,109,8,0,23,46,99,111,111,107,105,101,45,108,97,121,101,114,45,99,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,45,108,97,121,101,114,45,110,101,119,8,0,21,46,99,111,111,107,105,101,45,108,97,121,101,114,45,118,105,115,105,98,108,101,8,0,21,46,99,111,111,107,105,101,45,108,97,121,101,114,45,119,114,97,112,112,101,114,8,0,22,46,99,111,111,107,105,101,45,108,97,121,101,114,95,95,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,45,108,97,121,101,114,95,95,119,114,97,112,112,101,114,8,0,17,46,99,111,111,107,105,101,45,108,97,121,101,114,98,111,100,121,8,0,14,46,99,111,111,107,105,101,45,108,97,121,101,114,115,8,0,17,46,99,111,111,107,105,101,45,108,98,45,98,111,116,116,111,109,8,0,13,46,99,111,111,107,105,101,45,108,101,103,97,108,8,0,20,46,99,111,111,107,105,101,45,108,101,103,97,108,45,98,97,110,110,101,114,8,0,17,46,99,111,111,107,105,101,45,108,101,103,97,108,45,98,111,120,8,0,21,46,99,111,111,107,105,101,45,108,101,103,97,108,45,99,111,110,116,101,110,116,8,0,18,46,99,111,111,107,105,101,45,108,101,103,97,108,45,105,110,102,111,8,0,20,46,99,111,111,107,105,101,45,108,101,103,97,108,45,110,111,116,105,99,101,8,0,21,46,99,111,111,107,105,101,45,108,101,103,97,108,45,111,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,45,108,101,103,105,115,108,97,116,105,111,110,8,0,12,46,99,111,111,107,105,101,45,108,103,112,100,8,0,18,46,99,111,111,107,105,101,45,108,103,112,100,45,112,111,112,117,112,8,0,12,46,99,111,111,107,105,101,45,108,105,110,101,8,0,19,46,99,111,111,107,105,101,45,108,105,110,101,95,95,108,97,121,101,114,8,0,16,46,99,111,111,107,105,101,45,108,105,115,116,101,110,101,114,8,0,15,46,99,111,111,107,105,101,45,109,97,100,110,101,115,115,8,0,26,46,99,111,111,107,105,101,45,109,97,110,97,103,101,109,101,110,116,45,111,118,101,114,108,97,121,8,0,25,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,45,101,120,116,101,110,100,101,100,8,0,22,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,98,97,110,110,101,114,8,0,23,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,99,111,110,115,101,110,116,8,0,22,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,100,105,97,108,111,103,8,0,23,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,111,118,101,114,108,97,121,8,0,32,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,112,111,112,117,112,95,95,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,112,111,114,116,108,101,116,8,0,12,46,99,111,111,107,105,101,45,109,97,114,107,8,0,12,46,99,111,111,107,105,101,45,109,97,115,107,8,0,19,46,99,111,111,107,105,101,45,109,97,116,45,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,45,109,101,108,100,105,110,103,8,0,20,46,99,111,111,107,105,101,45,109,101,108,100,105,110,103,45,102,111,110,100,8,0,23,46,99,111,111,107,105,101,45,109,101,108,100,105,110,103,45,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,45,109,101,110,116,105,111,110,8,0,11,46,99,111,111,107,105,101,45,109,101,115,8,0,13,46,99,111,111,107,105,101,45,109,101,115,97,106,8,0,12,46,99,111,111,107,105,101,45,109,101,115,115,8,0,20,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,50,48,50,48,8,0,22,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,97,110,110,101,114,8,0,19,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,97,114,8,0,21,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,108,111,99,107,8,0,35,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,108,111,99,107,105,110,103,45,98,97,99,107,103,114,111,117,110,100,8,0,19,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,111,120,8,0,25,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,100,101,115,107,116,111,112,8,0,29,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,109,111,100,97,108,45,111,118,101,114,108,97,121,8,0,23,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,111,118,101,114,108,97,121,8,0,23,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,119,114,97,112,112,101,114,8,0,27,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,46,99,109,115,70,108,101,120,105,98,108,101,8,0,20,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,95,95,98,97,114,8,0,26,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,95,95,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,95,95,119,114,97,112,8,0,24,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,95,95,119,114,97,112,112,101,114,8,0,16,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,115,8,0,17,46,99,111,111,107,105,101,45,109,101,115,115,97,103,105,110,103,8,0,27,46,99,111,111,107,105,101,45,109,101,115,115,97,103,105,110,103,45,99,111,109,112,111,110,101,110,116,8,0,17,46,99,111,111,107,105,101,45,109,105,110,45,112,97,110,101,108,8,0,22,46,99,111,111,107,105,101,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,8,0,16,46,99,111,111,107,105,101,45,109,111,100,97,108,45,98,103,8,0,21,46,99,111,111,107,105,101,45,109,111,100,97,108,45,109,101,115,115,97,103,101,8,0,21,46,99,111,111,107,105,101,45,109,111,100,97,108,45,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,8,0,18,46,99,111,111,107,105,101,45,109,111,100,101,95,95,119,114,97,112,8,0,14,46,99,111,111,107,105,101,45,109,111,100,117,108,101,8,0,22,46,99,111,111,107,105,101,45,109,111,100,117,108,101,45,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,45,109,111,110,115,116,101,114,8,0,22,46,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,100,105,97,108,111,103,8,0,23,46,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,111,118,101,114,108,97,121,8,0,26,46,99,111,111,107,105,101,45,109,111,110,115,116,101,114,95,95,99,111,110,116,97,105,110,101,114,8,0,15,46,99,111,111,107,105,101,45,109,115,103,45,98,97,114,8,0,15,46,99,111,111,107,105,101,45,109,115,103,45,98,111,120,8,0,16,46,99,111,111,107,105,101,45,109,115,103,45,105,110,102,111,8,0,26,46,99,111,111,107,105,101,45,109,115,103,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,45,109,115,103,45,119,114,97,112,8,0,20,46,99,111,111,107,105,101,45,109,115,103,95,95,99,111,110,116,101,110,116,8,0,11,46,99,111,111,107,105,101,45,110,97,103,8,0,14,46,99,111,111,107,105,101,45,110,97,103,98,97,114,8,0,11,46,99,111,111,107,105,101,45,110,97,118,8,0,14,46,99,111,111,107,105,101,45,110,97,118,98,97,114,8,0,12,46,99,111,111,107,105,101,45,110,111,110,101,8,0,26,46,99,111,111,107,105,101,45,110,111,116,45,99,111,110,102,105,114,109,45,98,97,110,110,101,114,8,0,12,46,99,111,111,107,105,101,45,110,111,116,101,8,0,18,46,99,111,111,107,105,101,45,110,111,116,101,45,45,119,114,97,112,8,0,22,46,99,111,111,107,105,101,45,110,111,116,101,45,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,45,110,111,116,101,45,112,111,112,117,112,8,0,20,46,99,111,111,107,105,101,45,110,111,116,101,45,119,114,97,112,112,101,114,8,0,21,46,99,111,111,107,105,101,45,110,111,116,101,95,95,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,45,110,111,116,102,8,0,25,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,45,105,115,86,105,115,105,98,108,101,8,0,23,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,45,118,105,115,105,98,108,101,8,0,23,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,45,119,114,97,112,112,101,114,8,0,16,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,50,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,97,108,101,114,116,8,0,21,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,97,110,110,101,114,8,0,18,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,97,114,8,0,21,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,111,116,116,111,109,8,0,24,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,101,110,116,8,0,21,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,100,105,97,108,111,103,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,100,115,118,103,111,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,102,105,120,101,100,8,0,21,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,102,111,111,116,101,114,8,0,29,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,102,117,108,108,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,104,111,108,100,101,114,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,105,110,110,101,114,8,0,22,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,111,118,101,114,108,97,121,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,112,111,112,117,112,8,0,19,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,114,111,111,116,8,0,18,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,116,111,112,8,0,17,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,117,105,8,0,19,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,8,0,36,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,45,112,114,105,118,97,99,121,112,111,108,105,99,121,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,99,101,46,97,108,101,114,116,8,0,30,46,99,111,111,107,105,101,45,110,111,116,105,99,101,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,8,0,21,46,99,111,111,107,105,101,45,110,111,116,105,99,101,46,98,111,116,116,111,109,8,0,18,46,99,111,111,107,105,101,45,110,111,116,105,99,101,46,116,111,112,8,0,26,46,99,111,111,107,105,101,45,110,111,116,105,99,101,95,95,98,97,99,107,103,114,111,117,110,100,8,0,21,46,99,111,111,107,105,101,45,110,111,116,105,99,101,95,95,105,110,110,101,114,8,0,23,46,99,111,111,107,105,101,45,110,111,116,105,99,101,95,95,111,118,101,114,108,97,121,8,0,17,46,99,111,111,107,105,101,45,110,111,116,105,99,101,98,97,114,8,0,13,46,99,111,111,107,105,101,45,110,111,116,105,102,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,102,45,98,97,110,110,101,114,8,0,30,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,45,101,120,116,101,114,110,97,108,8,0,26,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,97,108,101,114,116,8,0,29,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,99,107,100,114,111,112,8,0,31,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,99,107,103,114,111,117,110,100,8,0,27,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,8,0,24,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,8,0,26,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,108,111,99,107,8,0,24,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,111,120,8,0,27,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,117,98,98,108,101,8,0,30,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,101,115,8,0,27,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,104,101,97,100,101,114,8,0,27,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,104,111,108,100,101,114,8,0,28,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,109,101,115,115,97,103,101,8,0,26,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,109,111,100,97,108,8,0,24,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,109,115,103,8,0,25,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,8,0,25,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,98,97,114,8,0,26,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,119,114,97,112,8,0,29,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,119,114,97,112,112,101,114,8,0,23,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,95,119,114,8,0,21,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,115,8,0,16,46,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,8,0,24,46,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,45,99,111,110,116,101,110,116,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,102,105,107,97,115,106,111,110,8,0,14,46,99,111,111,107,105,101,45,110,111,116,105,102,121,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,102,121,45,98,108,111,99,107,8,0,24,46,99,111,111,107,105,101,45,110,111,116,105,102,121,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,102,121,45,112,111,112,117,112,8,0,23,46,99,111,111,107,105,101,45,110,111,116,105,102,121,95,95,119,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,45,110,116,102,8,0,13,46,99,111,111,107,105,101,45,110,117,100,103,101,8,0,13,46,99,111,111,107,105,101,45,111,102,102,101,114,8,0,10,46,99,111,111,107,105,101,45,111,107,8,0,14,46,99,111,111,107,105,101,45,111,110,45,116,111,112,8,0,11,46,99,111,111,107,105,101,45,111,110,101,8,0,11,46,99,111,111,107,105,101,45,111,112,97,8,0,25,46,99,111,111,107,105,101,45,111,112,101,114,97,116,105,111,110,45,109,101,115,115,97,103,101,8,0,14,46,99,111,111,107,105,101,45,111,112,116,45,105,110,8,0,22,46,99,111,111,107,105,101,45,111,112,116,45,105,110,45,111,118,101,114,108,97,121,8,0,15,46,99,111,111,107,105,101,45,111,112,116,45,111,117,116,8,0,13,46,99,111,111,107,105,101,45,111,112,116,105,110,8,0,19,46,99,111,111,107,105,101,45,111,112,116,105,110,45,109,111,100,97,108,8,0,20,46,99,111,111,107,105,101,45,111,112,116,105,111,110,115,45,104,111,111,107,8,0,13,46,99,111,111,107,105,101,45,111,117,116,101,114,8,0,23,46,99,111,111,107,105,101,45,111,117,116,101,114,45,99,111,110,116,97,105,110,101,114,8,0,28,46,99,111,111,107,105,101,45,111,117,116,101,114,45,99,111,110,116,97,105,110,101,114,45,119,114,97,112,8,0,21,46,99,111,111,107,105,101,45,111,117,116,101,114,45,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,45,111,117,116,116,101,114,8,0,19,46,99,111,111,107,105,101,45,111,118,101,110,45,119,105,100,103,101,116,8,0,12,46,99,111,111,107,105,101,45,111,118,101,114,8,0,15,46,99,111,111,107,105,101,45,111,118,101,114,76,97,121,8,0,19,46,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,98,111,120,8,0,25,46,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,109,111,100,97,108,45,98,111,120,8,0,23,46,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,45,112,97,110,101,8,0,19,46,99,111,111,107,105,101,45,112,97,110,101,45,45,115,104,111,119,110,8,0,21,46,99,111,111,107,105,101,45,112,97,110,101,108,45,99,111,110,116,101,110,116,8,0,21,46,99,111,111,107,105,101,45,112,97,110,101,108,45,111,118,101,114,108,97,121,8,0,18,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,8,0,28,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,45,98,97,99,107,100,114,111,112,8,0,23,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,45,100,105,109,8,0,25,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,98,97,110,110,101,114,8,0,32,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,99,111,110,116,97,105,110,101,114,45,98,105,103,8,0,36,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,99,111,110,116,97,105,110,101,114,45,111,118,101,114,108,97,121,8,0,25,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,102,111,111,116,101,114,8,0,25,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,112,114,111,109,112,116,8,0,14,46,99,111,111,107,105,101,45,112,108,117,103,105,110,8,0,14,46,99,111,111,107,105,101,45,112,111,108,105,99,101,8,0,16,46,99,111,111,107,105,101,45,112,111,108,105,99,105,101,115,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,45,98,108,111,99,107,8,0,25,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,99,99,101,112,116,8,0,31,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,103,103,114,101,115,115,105,118,101,45,112,111,112,117,112,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,103,114,101,101,8,0,24,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,103,114,101,101,109,101,110,116,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,108,101,114,116,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,114,101,97,8,0,25,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,45,98,97,114,8,0,18,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,114,8,0,23,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,114,45,98,97,115,101,8,0,25,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,114,45,98,111,116,116,111,109,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,101,108,116,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,108,111,99,107,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,111,116,116,111,109,8,0,18,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,111,120,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,108,97,115,115,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,115,101,110,116,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,116,8,0,24,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,116,101,110,116,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,105,97,108,111,103,8,0,25,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,105,115,99,108,97,105,109,101,114,8,0,18,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,105,118,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,117,114,101,120,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,101,108,101,109,101,110,116,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,102,111,111,116,101,114,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,102,111,114,109,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,103,100,112,114,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,105,110,102,111,114,109,8,0,31,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,106,117,110,101,45,50,48,49,57,45,110,111,116,105,99,101,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,108,97,121,101,114,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,111,100,97,108,8,0,18,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,115,103,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,101,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,99,101,8,0,31,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,27,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,111,112,116,45,111,117,116,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,111,118,101,114,108,97,121,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,97,110,101,108,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,105,110,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,114,111,109,112,116,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,101,99,116,105,111,110,8,0,23,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,110,97,99,107,98,97,114,8,0,24,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,116,97,116,101,109,101,110,116,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,117,109,109,97,114,121,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,116,105,112,115,8,0,27,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,116,105,112,115,45,119,114,97,112,112,101,114,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,97,114,110,105,110,103,8,0,32,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,105,100,103,101,116,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,105,110,100,111,119,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,95,95,99,97,114,100,8,0,25,46,99,111,111,107,105,101,45,112,111,108,105,99,121,95,95,99,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,45,112,111,108,105,99,121,109,115,103,8,0,16,46,99,111,111,107,105,101,45,112,111,108,105,116,105,99,115,8,0,11,46,99,111,111,107,105,101,45,112,111,112,8,0,16,46,99,111,111,107,105,101,45,112,111,112,45,109,97,105,110,8,0,14,46,99,111,111,107,105,101,45,112,111,112,45,117,112,8,0,24,46,99,111,111,107,105,101,45,112,111,112,45,117,112,45,99,111,109,112,111,110,101,110,116,8,0,24,46,99,111,111,107,105,101,45,112,111,112,45,117,112,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,45,112,111,112,45,117,112,45,111,118,101,114,108,97,121,8,0,16,46,99,111,111,107,105,101,45,112,111,112,45,119,114,97,112,8,0,13,46,99,111,111,107,105,101,45,112,111,112,85,112,8,0,13,46,99,111,111,107,105,101,45,112,111,112,105,110,8,0,15,46,99,111,111,107,105,101,45,112,111,112,111,118,101,114,8,0,23,46,99,111,111,107,105,101,45,112,111,112,111,118,101,114,45,45,97,99,116,105,118,101,8,0,17,46,99,111,111,107,105,101,45,112,111,112,117,112,45,98,97,114,8,0,17,46,99,111,111,107,105,101,45,112,111,112,117,112,45,98,111,120,8,0,23,46,99,111,111,107,105,101,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,45,112,111,112,117,112,45,102,105,114,115,116,8,0,28,46,99,111,111,107,105,101,45,112,111,112,117,112,45,109,111,98,105,108,101,45,119,114,97,112,112,101,114,8,0,21,46,99,111,111,107,105,101,45,112,111,112,117,112,45,111,118,101,114,108,97,121,8,0,17,46,99,111,111,107,105,101,45,112,111,112,117,112,45,119,105,110,8,0,21,46,99,111,111,107,105,101,45,112,111,112,117,112,45,119,114,97,112,112,101,114,8,0,33,46,99,111,111,107,105,101,45,112,111,112,117,112,46,118,97,114,105,97,110,116,83,101,108,101,99,116,77,111,98,105,108,101,8,0,22,46,99,111,111,107,105,101,45,112,111,112,117,112,95,95,99,111,110,116,101,110,116,8,0,22,46,99,111,111,107,105,101,45,112,111,112,117,112,95,95,104,101,97,100,105,110,103,8,0,22,46,99,111,111,107,105,101,45,112,111,112,117,112,95,95,119,114,97,112,112,101,114,8,0,10,46,99,111,111,107,105,101,45,112,112,8,0,24,46,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,45,109,111,100,97,108,8,0,27,46,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,95,95,111,118,101,114,108,97,121,8,0,15,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,8,0,22,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,25,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,109,101,115,115,97,103,101,8,0,22,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,110,111,116,105,99,101,8,0,28,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,21,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,112,111,112,117,112,8,0,17,46,99,111,111,107,105,101,45,112,114,111,99,101,115,115,101,100,8,0,13,46,99,111,111,107,105,101,45,112,114,111,109,111,8,0,14,46,99,111,111,107,105,101,45,112,114,111,109,112,116,8,0,24,46,99,111,111,107,105,101,45,112,114,111,109,112,116,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,45,112,114,111,109,112,116,45,119,114,97,112,8,0,22,46,99,111,111,107,105,101,45,112,114,111,109,112,116,45,119,114,97,112,112,101,114,8,0,21,46,99,111,111,107,105,101,45,112,114,111,109,112,116,95,95,111,117,116,101,114,8,0,16,46,99,111,111,107,105,101,45,112,114,111,109,112,116,101,114,8,0,16,46,99,111,111,107,105,101,45,113,117,101,115,116,105,111,110,8,0,14,46,99,111,111,107,105,101,45,114,101,103,105,111,110,8,0,15,46,99,111,111,107,105,101,45,114,101,113,117,101,115,116,8,0,19,46,99,111,111,107,105,101,45,114,101,113,117,101,115,116,45,99,116,110,8,0,21,46,99,111,111,107,105,101,45,114,101,118,111,107,101,45,104,105,100,100,101,110,8,0,14,46,99,111,111,107,105,101,45,114,105,98,98,111,110,8,0,24,46,99,111,111,107,105,101,45,114,105,98,98,111,110,45,99,111,109,112,111,110,101,110,116,8,0,18,46,99,111,111,107,105,101,45,114,105,99,104,116,108,105,110,105,101,8,0,12,46,99,111,111,107,105,101,45,114,111,100,111,8,0,20,46,99,111,111,107,105,101,45,114,111,100,111,45,45,99,101,110,116,101,114,8,0,19,46,99,111,111,107,105,101,45,114,111,100,111,45,100,105,97,108,111,103,8,0,17,46,99,111,111,107,105,101,45,114,111,103,108,97,45,100,105,118,8,0,11,46,99,111,111,107,105,101,45,114,111,119,8,0,21,46,99,111,111,107,105,101,45,114,117,108,101,115,45,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,45,114,117,110,119,97,121,8,0,22,46,99,111,111,107,105,101,45,115,99,114,105,112,116,45,99,111,110,116,101,110,116,8,0,15,46,99,111,111,107,105,101,45,115,101,99,116,105,111,110,8,0,18,46,99,111,111,107,105,101,45,115,101,116,45,112,111,112,45,117,112,8,0,26,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,45,98,111,116,116,111,109,45,98,97,114,8,0,23,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,45,109,101,115,115,97,103,101,8,0,24,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,45,115,105,109,112,108,101,8,0,22,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,97,108,101,114,116,8,0,21,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,98,97,110,100,8,0,24,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,109,101,115,115,97,103,101,8,0,29,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,46,102,105,120,101,100,45,98,111,116,116,111,109,8,0,27,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,46,105,115,45,118,105,115,105,98,108,101,8,0,27,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,95,95,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,95,95,111,118,101,114,108,97,121,8,0,16,46,99,111,111,107,105,101,45,115,104,111,119,45,98,97,114,8,0,23,46,99,111,111,107,105,101,45,115,104,111,119,45,98,97,114,45,98,111,116,116,111,109,8,0,12,46,99,111,111,107,105,101,45,115,105,103,110,8,0,16,46,99,111,111,107,105,101,45,115,105,103,110,98,111,100,121,8,0,24,46,99,111,111,107,105,101,45,115,105,116,101,117,115,97,103,101,45,110,111,116,105,99,101,8,0,23,46,99,111,111,107,105,101,45,115,108,105,100,101,45,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,45,115,108,105,100,101,45,100,111,119,110,8,0,14,46,99,111,111,107,105,101,45,115,108,105,100,101,114,8,0,13,46,99,111,111,107,105,101,45,115,110,97,99,107,8,0,15,46,99,111,111,107,105,101,45,115,110,105,112,112,101,116,8,0,14,46,99,111,111,107,105,101,45,115,112,108,97,115,104,8,0,13,46,99,111,111,107,105,101,45,115,116,97,103,101,8,0,17,46,99,111,111,107,105,101,45,115,116,97,116,101,109,101,110,116,8,0,23,46,99,111,111,107,105,101,45,115,116,97,116,101,109,101,110,116,45,112,111,112,117,112,8,0,14,46,99,111,111,107,105,101,45,115,116,97,116,117,115,8,0,22,46,99,111,111,107,105,101,45,115,116,97,116,117,115,45,109,101,115,115,97,103,101,8,0,14,46,99,111,111,107,105,101,45,115,116,105,99,107,121,8,0,19,46,99,111,111,107,105,101,45,115,116,105,99,107,121,45,102,108,101,120,8,0,21,46,99,111,111,107,105,101,45,115,116,105,99,107,121,45,104,111,108,100,101,114,8,0,19,46,99,111,111,107,105,101,45,115,116,105,99,107,121,45,119,114,97,112,8,0,18,46,99,111,111,107,105,101,45,115,116,105,107,101,121,45,110,97,118,8,0,13,46,99,111,111,107,105,101,45,115,116,114,105,112,8,0,14,46,99,111,111,107,105,101,45,115,116,114,105,112,101,8,0,17,46,99,111,111,107,105,101,45,115,117,98,115,116,114,97,116,101,8,0,11,46,99,111,111,107,105,101,45,116,97,98,8,0,13,46,99,111,111,107,105,101,45,116,97,98,108,101,8,0,13,46,99,111,111,107,105,101,45,116,101,97,100,101,8,0,14,46,99,111,111,107,105,101,45,116,101,97,115,101,114,8,0,13,46,99,111,111,107,105,101,45,116,101,107,115,116,8,0,13,46,99,111,111,107,105,101,45,116,101,114,109,115,8,0,13,46,99,111,111,107,105,101,45,116,104,105,110,103,8,0,14,46,99,111,111,107,105,101,45,116,104,111,117,103,104,8,0,12,46,99,111,111,107,105,101,45,116,105,109,101,8,0,11,46,99,111,111,107,105,101,45,116,105,112,8,0,14,46,99,111,111,107,105,101,45,116,105,112,45,98,103,8,0,21,46,99,111,111,107,105,101,45,116,105,112,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,45,116,105,112,45,119,114,97,112,8,0,14,46,99,111,111,107,105,101,45,116,111,45,116,111,112,8,0,13,46,99,111,111,107,105,101,45,116,111,97,115,116,8,0,18,46,99,111,111,107,105,101,45,116,111,97,115,116,45,119,114,97,112,8,0,15,46,99,111,111,107,105,101,45,116,111,97,115,116,101,114,8,0,12,46,99,111,111,107,105,101,45,116,111,111,108,8,0,22,46,99,111,111,107,105,101,45,116,111,111,108,45,99,111,110,116,97,105,110,101,114,8,0,15,46,99,111,111,107,105,101,45,116,111,111,108,98,97,114,8,0,15,46,99,111,111,107,105,101,45,116,111,111,108,116,105,112,8,0,23,46,99,111,111,107,105,101,45,116,111,111,108,116,105,112,45,99,111,110,116,101,110,116,8,0,21,46,99,111,111,107,105,101,45,116,111,111,108,116,105,112,95,112,111,112,117,112,8,0,11,46,99,111,111,107,105,101,45,116,111,112,8,0,18,46,99,111,111,107,105,101,45,116,111,112,45,98,97,110,110,101,114,8,0,26,46,99,111,111,107,105,101,45,116,111,112,98,97,110,110,101,114,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,45,116,111,115,45,102,111,111,116,101,114,8,0,11,46,99,111,111,107,105,101,45,116,120,116,8,0,17,46,99,111,111,107,105,101,45,117,105,45,100,105,97,108,111,103,8,0,13,46,99,111,111,107,105,101,45,117,110,100,105,122,8,0,13,46,99,111,111,107,105,101,45,117,115,97,103,101,8,0,18,46,99,111,111,107,105,101,45,117,115,97,103,101,45,105,110,102,111,8,0,24,46,99,111,111,107,105,101,45,117,115,97,103,101,45,105,110,102,111,45,98,108,111,99,107,8,0,17,46,99,111,111,107,105,101,45,117,115,97,103,101,45,109,115,103,8,0,26,46,99,111,111,107,105,101,45,117,115,97,103,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,20,46,99,111,111,107,105,101,45,117,115,97,103,101,45,110,111,116,105,102,121,8,0,19,46,99,111,111,107,105,101,45,117,115,97,103,101,45,112,111,112,117,112,8,0,20,46,99,111,111,107,105,101,45,117,115,97,103,101,45,119,105,100,103,101,116,8,0,21,46,99,111,111,107,105,101,45,117,115,97,103,101,45,119,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,45,117,115,101,8,0,17,46,99,111,111,107,105,101,45,117,115,101,45,112,111,112,117,112,8,0,17,46,99,111,111,107,105,101,45,117,115,101,100,45,110,111,116,101,8,0,13,46,99,111,111,107,105,101,45,117,115,103,97,101,8,0,14,46,99,111,111,107,105,101,45,117,115,108,111,118,105,8,0,14,46,99,111,111,107,105,101,45,117,122,101,110,101,116,8,0,25,46,99,111,111,107,105,101,45,118,101,114,112,108,105,99,104,116,45,109,101,108,100,105,110,103,8,0,22,46,99,111,111,107,105,101,45,119,97,108,108,45,99,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,45,119,97,108,108,45,102,111,114,109,8,0,20,46,99,111,111,107,105,101,45,119,97,108,108,45,119,114,97,112,112,101,114,8,0,18,46,99,111,111,107,105,101,45,119,97,114,110,45,109,111,100,97,108,8,0,16,46,99,111,111,107,105,101,45,119,97,114,110,45,109,115,103,8,0,27,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,98,97,110,110,101,114,45,118,105,101,119,8,0,19,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,98,97,114,8,0,25,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,99,111,110,116,101,110,116,8,0,23,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,109,101,115,115,97,103,101,8,0,29,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,109,111,100,97,108,45,45,114,105,98,98,111,110,8,0,21,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,112,97,110,101,108,8,0,21,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,112,111,112,117,112,8,0,23,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,119,114,97,112,112,101,114,8,0,24,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,95,95,111,118,101,114,108,97,121,8,0,24,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,95,95,119,114,97,112,112,101,114,8,0,20,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,95,115,104,111,119,8,0,18,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,98,97,114,8,0,15,46,99,111,111,107,105,101,45,119,97,114,110,117,110,103,8,0,14,46,99,111,111,107,105,101,45,119,105,100,103,101,116,8,0,20,46,99,111,111,107,105,101,45,119,105,100,103,101,116,45,45,111,112,101,110,8,0,21,46,99,111,111,107,105,101,45,119,105,100,103,101,116,45,104,111,108,100,101,114,8,0,17,46,99,111,111,107,105,101,45,119,105,100,103,101,116,45,118,50,8,0,14,46,99,111,111,107,105,101,45,119,105,110,100,111,119,8,0,20,46,99,111,111,107,105,101,45,119,105,110,100,111,119,45,98,108,111,99,107,8,0,34,46,99,111,111,107,105,101,45,119,105,110,100,111,119,45,111,118,101,114,108,97,121,45,110,111,45,115,101,116,116,105,110,103,115,8,0,21,46,99,111,111,107,105,101,45,119,105,110,100,111,119,45,115,101,108,101,99,116,8,0,10,46,99,111,111,107,105,101,45,119,114,8,0,12,46,99,111,111,107,105,101,45,119,114,97,112,8,0,20,46,99,111,111,107,105,101,45,119,114,97,112,45,99,111,110,116,101,110,116,8,0,16,46,99,111,111,107,105,101,45,119,114,97,112,45,116,105,112,8,0,13,46,99,111,111,107,105,101,45,119,114,97,112,112,8,0,21,46,99,111,111,107,105,101,45,119,114,97,112,112,101,114,45,112,111,112,117,112,8,0,19,46,99,111,111,107,105,101,45,119,114,110,45,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,45,122,45,105,110,100,101,120,8,0,13,46,99,111,111,107,105,101,46,97,108,101,114,116,8,0,14,46,99,111,111,107,105,101,46,97,108,101,114,116,101,8,0,22,46,99,111,111,107,105,101,46,97,110,99,104,111,114,101,100,45,116,111,97,115,116,8,0,14,46,99,111,111,107,105,101,46,98,97,110,110,101,114,8,0,16,46,99,111,111,107,105,101,46,98,103,45,119,104,105,116,101,8,0,32,46,99,111,111,107,105,101,46,99,104,97,110,103,101,45,109,101,115,115,97,103,101,45,45,111,110,45,99,108,105,99,107,8,0,23,46,99,111,111,107,105,101,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,8,0,16,46,99,111,111,107,105,101,46,99,111,110,116,101,117,100,111,8,0,22,46,99,111,111,107,105,101,46,99,111,111,107,105,101,45,102,117,108,108,102,97,116,8,0,21,46,99,111,111,107,105,101,46,99,111,111,107,105,101,45,108,111,119,102,97,116,8,0,14,46,99,111,111,107,105,101,46,99,117,115,116,111,109,8,0,13,46,99,111,111,107,105,101,46,102,105,120,101,100,8,0,20,46,99,111,111,107,105,101,46,102,105,120,101,100,45,98,111,116,116,111,109,8,0,15,46,99,111,111,107,105,101,46,105,115,45,115,104,111,119,8,0,18,46,99,111,111,107,105,101,46,105,115,45,118,105,115,105,98,108,101,8,0,17,46,99,111,111,107,105,101,46,105,115,86,105,115,105,98,108,101,8,0,25,46,99,111,111,107,105,101,46,106,113,117,101,114,121,45,110,111,116,105,102,121,45,98,97,114,8,0,17,46,99,111,111,107,105,101,46,106,115,45,98,97,110,110,101,114,8,0,22,46,99,111,111,107,105,101,46,107,111,122,101,112,114,101,95,105,103,97,122,105,116,8,0,12,46,99,111,111,107,105,101,46,109,98,45,48,8,0,15,46,99,111,111,107,105,101,46,109,101,115,115,97,103,101,8,0,16,46,99,111,111,107,105,101,46,109,101,115,115,97,103,101,115,8,0,27,46,99,111,111,107,105,101,46,110,97,118,98,97,114,45,102,105,120,101,100,45,98,111,116,116,111,109,8,0,14,46,99,111,111,107,105,101,46,111,112,116,45,105,110,8,0,16,46,99,111,111,107,105,101,46,112,45,97,99,116,105,118,101,8,0,13,46,99,111,111,107,105,101,46,112,111,112,117,112,8,0,14,46,99,111,111,107,105,101,46,114,101,119,111,107,101,8,0,11,46,99,111,111,107,105,101,46,114,111,119,8,0,16,46,99,111,111,107,105,101,46,116,111,112,45,105,110,102,111,8,0,15,46,99,111,111,107,105,101,46,118,45,97,108,101,114,116,8,0,15,46,99,111,111,107,105,101,46,118,105,115,105,98,108,101,8,0,14,46,99,111,111,107,105,101,46,119,105,100,103,101,116,8,0,19,46,99,111,111,107,105,101,46,119,105,100,103,101,116,95,116,101,120,116,8,0,24,46,99,111,111,107,105,101,50,52,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,8,46,99,111,111,107,105,101,53,8,0,10,46,99,111,111,107,105,101,65,99,99,8,0,13,46,99,111,111,107,105,101,65,99,99,101,112,116,8,0,16,46,99,111,111,107,105,101,65,99,99,101,112,116,66,111,120,8,0,18,46,99,111,111,107,105,101,65,99,99,101,112,116,80,97,110,101,108,8,0,18,46,99,111,111,107,105,101,65,99,99,101,112,116,80,111,112,117,112,8,0,19,46,99,111,111,107,105,101,65,99,99,101,112,116,87,105,110,100,111,119,8,0,20,46,99,111,111,107,105,101,65,99,99,101,112,116,87,114,97,112,112,101,114,8,0,17,46,99,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,8,0,20,46,99,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,66,111,120,8,0,24,46,99,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,79,118,101,114,108,97,121,8,0,24,46,99,111,111,107,105,101,65,99,99,101,112,116,97,116,105,111,110,77,111,100,117,108,101,8,0,15,46,99,111,111,107,105,101,65,99,99,101,112,116,101,100,8,0,23,46,99,111,111,107,105,101,65,99,99,101,112,116,101,114,71,114,97,121,66,111,100,121,8,0,20,46,99,111,111,107,105,101,65,99,99,101,112,116,101,114,80,111,112,117,112,8,0,21,46,99,111,111,107,105,101,65,99,99,101,112,116,101,114,83,108,105,100,101,114,8,0,13,46,99,111,111,107,105,101,65,99,116,105,118,101,8,0,9,46,99,111,111,107,105,101,65,100,8,0,13,46,99,111,111,107,105,101,65,100,118,105,99,101,8,0,13,46,99,111,111,107,105,101,65,100,118,105,115,101,8,0,12,46,99,111,111,107,105,101,65,103,114,101,101,8,0,16,46,99,111,111,107,105,101,65,103,114,101,101,109,101,110,116,8,0,12,46,99,111,111,107,105,101,65,108,101,114,116,8,0,24,46,99,111,111,107,105,101,65,108,101,114,116,66,97,114,67,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,65,108,101,114,116,66,97,114,77,101,115,115,97,103,101,8,0,18,46,99,111,111,107,105,101,65,108,101,114,116,66,105,103,84,111,112,8,0,15,46,99,111,111,107,105,101,65,108,101,114,116,66,111,120,8,0,21,46,99,111,111,107,105,101,65,108,101,114,116,67,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,65,108,101,114,116,68,101,115,107,116,111,112,8,0,17,46,99,111,111,107,105,101,65,108,101,114,116,76,97,121,101,114,8,0,19,46,99,111,111,107,105,101,65,108,101,114,116,87,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,65,108,108,101,114,116,8,0,14,46,99,111,111,107,105,101,65,110,110,111,121,101,114,8,0,14,46,99,111,111,107,105,101,65,112,112,114,111,118,101,8,0,12,46,99,111,111,107,105,101,65,115,107,101,114,8,0,17,46,99,111,111,107,105,101,66,97,99,107,103,114,111,117,110,100,8,0,10,46,99,111,111,107,105,101,66,97,110,8,0,14,46,99,111,111,107,105,101,66,97,110,100,101,97,117,8,0,20,46,99,111,111,107,105,101,66,97,110,110,101,114,45,45,108,97,121,101,114,8,0,19,46,99,111,111,107,105,101,66,97,110,110,101,114,65,99,116,105,118,101,8,0,22,46,99,111,111,107,105,101,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,8,0,27,46,99,111,111,107,105,101,66,97,110,110,101,114,68,105,115,99,108,97,105,109,101,114,87,114,97,112,8,0,20,46,99,111,111,107,105,101,66,97,110,110,101,114,79,118,101,114,108,97,121,8,0,17,46,99,111,111,107,105,101,66,97,110,110,101,114,84,101,120,116,8,0,20,46,99,111,111,107,105,101,66,97,110,110,101,114,87,114,97,112,112,101,114,8,0,21,46,99,111,111,107,105,101,66,97,110,110,101,114,95,95,98,97,110,110,101,114,8,0,22,46,99,111,111,107,105,101,66,97,110,110,101,114,95,95,119,114,97,112,112,101,114,8,0,17,46,99,111,111,107,105,101,66,97,114,45,102,105,108,108,101,114,8,0,20,46,99,111,111,107,105,101,66,97,114,45,110,101,119,45,115,116,121,108,101,8,0,15,46,99,111,111,107,105,101,66,97,114,65,110,105,73,110,8,0,19,46,99,111,111,107,105,101,66,97,114,67,111,110,116,97,105,110,101,114,8,0,15,46,99,111,111,107,105,101,66,97,114,73,110,110,101,114,8,0,17,46,99,111,111,107,105,101,66,97,114,79,118,101,114,108,97,121,8,0,23,46,99,111,111,107,105,101,66,97,114,82,101,118,105,101,119,68,101,115,107,116,111,112,8,0,13,46,99,111,111,107,105,101,66,97,114,84,111,112,8,0,17,46,99,111,111,107,105,101,66,97,114,87,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,66,97,114,88,8,0,21,46,99,111,111,107,105,101,66,97,114,95,95,99,111,110,116,97,105,110,101,114,8,0,10,46,99,111,111,107,105,101,66,101,97,8,0,10,46,99,111,111,107,105,101,66,108,107,8,0,12,46,99,111,111,107,105,101,66,108,111,99,107,8,0,11,46,99,111,111,107,105,101,66,108,111,103,8,0,10,46,99,111,111,107,105,101,66,110,114,8,0,13,46,99,111,111,107,105,101,66,110,114,87,114,112,8,0,13,46,99,111,111,107,105,101,66,111,116,116,111,109,8,0,10,46,99,111,111,107,105,101,66,111,120,8,0,18,46,99,111,111,107,105,101,66,111,120,45,119,114,97,112,112,101,114,8,0,20,46,99,111,111,107,105,101,66,111,120,66,97,99,107,103,114,111,117,110,100,8,0,14,46,99,111,111,107,105,101,66,111,120,87,114,97,112,8,0,19,46,99,111,111,107,105,101,66,111,120,95,95,119,114,97,112,112,101,114,8,0,22,46,99,111,111,107,105,101,66,116,110,58,110,111,116,40,98,117,116,116,111,110,41,8,0,13,46,99,111,111,107,105,101,66,117,98,98,108,101,8,0,9,46,99,111,111,107,105,101,67,68,8,0,14,46,99,111,111,107,105,101,67,97,108,108,111,117,116,8,0,12,46,99,111,111,107,105,101,67,104,101,99,107,8,0,21,46,99,111,111,107,105,101,67,104,101,99,107,77,97,105,110,80,97,110,101,108,8,0,17,46,99,111,111,107,105,101,67,104,111,105,99,101,73,110,102,111,8,0,12,46,99,111,111,107,105,101,67,108,97,115,115,8,0,12,46,99,111,111,107,105,101,67,108,111,115,101,8,0,17,46,99,111,111,107,105,101,67,110,105,108,67,117,115,116,111,109,8,0,18,46,99,111,111,107,105,101,67,110,105,108,77,97,107,104,101,105,97,8,0,17,46,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,8,0,10,46,99,111,111,107,105,101,67,111,110,8,0,14,46,99,111,111,107,105,101,67,111,110,99,101,110,116,8,0,21,46,99,111,111,107,105,101,67,111,110,102,105,114,109,79,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,67,111,110,102,105,114,109,97,116,105,111,110,8,0,26,46,99,111,111,107,105,101,67,111,110,102,105,114,109,97,116,105,111,110,77,101,115,115,97,103,101,8,0,11,46,99,111,111,107,105,101,67,111,110,115,8,0,20,46,99,111,111,107,105,101,67,111,110,115,101,110,116,45,48,45,50,45,49,8,0,21,46,99,111,111,107,105,101,67,111,110,115,101,110,116,45,100,105,97,108,111,103,8,0,19,46,99,111,111,107,105,101,67,111,110,115,101,110,116,65,108,101,114,116,8,0,20,46,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,8,0,17,46,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,114,8,0,26,46,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,114,67,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,114,87,112,8,0,23,46,99,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,101,110,116,8,0,30,46,99,111,111,107,105,101,67,111,110,115,101,110,116,67,117,115,116,111,109,105,122,101,45,100,105,97,108,111,103,8,0,20,46,99,111,111,107,105,101,67,111,110,115,101,110,116,70,111,111,116,101,114,8,0,21,46,99,111,111,107,105,101,67,111,110,115,101,110,116,72,105,110,119,101,105,115,8,0,28,46,99,111,111,107,105,101,67,111,110,115,101,110,116,72,105,110,119,101,105,115,79,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,67,111,110,115,101,110,116,76,97,121,101,114,8,0,21,46,99,111,111,107,105,101,67,111,110,115,101,110,116,77,101,115,115,97,103,101,8,0,19,46,99,111,111,107,105,101,67,111,110,115,101,110,116,80,97,110,101,108,8,0,19,46,99,111,111,107,105,101,67,111,110,115,101,110,116,80,111,112,117,112,8,0,19,46,99,111,111,107,105,101,67,111,110,115,101,110,116,83,104,111,114,116,8,0,21,46,99,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,112,101,114,8,0,24,46,99,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,112,101,114,67,111,110,8,0,16,46,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,86,50,8,0,14,46,99,111,111,107,105,101,67,111,110,116,114,111,108,8,0,19,46,99,111,111,107,105,101,67,111,110,116,114,111,108,95,95,66,97,114,8,0,28,46,99,111,111,107,105,101,67,111,110,116,114,111,108,95,95,66,97,114,67,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,67,111,114,114,101,99,116,111,114,8,0,12,46,99,111,111,107,105,101,67,111,118,101,114,8,0,18,46,99,111,111,107,105,101,68,101,116,97,105,108,115,87,114,97,112,8,0,13,46,99,111,111,107,105,101,68,105,97,108,111,103,8,0,16,46,99,111,111,107,105,101,68,105,97,108,111,103,84,111,112,8,0,15,46,99,111,111,107,105,101,68,105,97,108,111,103,117,101,8,0,14,46,99,111,111,107,105,101,68,105,114,87,114,97,112,8,0,16,46,99,111,111,107,105,101,68,105,114,101,99,116,105,118,101,8,0,12,46,99,111,111,107,105,101,68,105,115,99,108,8,0,20,46,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,66,111,120,8,0,26,46,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,67,111,110,116,97,105,110,101,114,8,0,33,46,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,67,111,110,116,97,105,110,101,114,87,114,97,112,112,101,114,8,0,19,46,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,86,50,8,0,24,46,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,87,114,97,112,112,101,114,8,0,10,46,99,111,111,107,105,101,68,105,118,8,0,13,46,99,111,111,107,105,101,68,114,97,119,101,114,8,0,9,46,99,111,111,107,105,101,69,78,8,0,9,46,99,111,111,107,105,101,69,85,8,0,14,46,99,111,111,107,105,101,69,108,101,109,101,110,116,8,0,10,46,99,111,111,107,105,101,69,110,103,8,0,15,46,99,111,111,107,105,101,70,97,110,99,121,98,111,120,8,0,14,46,99,111,111,107,105,101,70,108,111,97,116,101,114,8,0,12,46,99,111,111,107,105,101,70,108,121,101,114,8,0,13,46,99,111,111,107,105,101,70,108,121,111,117,116,8,0,13,46,99,111,111,107,105,101,70,111,111,116,101,114,8,0,16,46,99,111,111,107,105,101,70,111,111,116,101,114,68,105,118,8,0,15,46,99,111,111,107,105,101,70,111,111,116,101,114,98,103,8,0,11,46,99,111,111,107,105,101,70,111,114,109,8,0,14,46,99,111,111,107,105,101,70,111,114,119,97,114,100,8,0,11,46,99,111,111,107,105,101,71,97,116,101,8,0,10,46,99,111,111,107,105,101,71,99,111,8,0,14,46,99,111,111,107,105,101,72,97,110,100,108,101,114,8,0,13,46,99,111,111,107,105,101,72,101,97,100,101,114,8,0,19,46,99,111,111,107,105,101,72,101,97,100,101,114,67,101,110,116,101,114,8,0,22,46,99,111,111,107,105,101,72,101,97,100,101,114,67,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,72,101,97,100,101,114,87,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,72,105,110,116,8,0,20,46,99,111,111,107,105,101,72,105,110,116,67,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,72,105,110,116,69,120,116,101,110,100,101,100,8,0,14,46,99,111,111,107,105,101,72,105,110,119,101,105,115,8,0,14,46,99,111,111,107,105,101,73,110,102,111,66,97,114,8,0,14,46,99,111,111,107,105,101,73,110,102,111,66,111,120,8,0,17,46,99,111,111,107,105,101,73,110,102,111,87,105,110,100,111,119,8,0,18,46,99,111,111,107,105,101,73,110,102,111,87,114,97,112,112,101,114,8,0,21,46,99,111,111,107,105,101,73,110,102,111,95,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,8,0,21,46,99,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,66,97,114,8,0,27,46,99,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,67,111,110,116,97,105,110,101,114,8,0,13,46,99,111,111,107,105,101,73,110,115,105,100,101,8,0,9,46,99,111,111,107,105,101,74,115,8,0,8,46,99,111,111,107,105,101,75,8,0,14,46,99,111,111,107,105,101,76,97,119,45,98,111,120,8,0,30,46,99,111,111,107,105,101,76,97,119,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,13,46,99,111,111,107,105,101,76,97,119,66,97,114,8,0,13,46,99,111,111,107,105,101,76,97,119,66,111,111,8,0,13,46,99,111,111,107,105,101,76,97,119,66,111,120,8,0,15,46,99,111,111,107,105,101,76,97,119,80,111,112,117,112,8,0,24,46,99,111,111,107,105,101,76,97,119,80,111,112,117,112,67,111,110,116,97,105,110,101,114,8,0,13,46,99,111,111,107,105,101,76,97,119,80,114,111,8,0,12,46,99,111,111,107,105,101,76,97,121,101,114,8,0,21,46,99,111,111,107,105,101,76,97,121,101,114,95,95,99,111,110,116,101,110,116,8,0,12,46,99,111,111,107,105,101,76,101,103,97,108,8,0,16,46,99,111,111,107,105,101,76,101,103,97,108,67,111,109,112,8,0,21,46,99,111,111,107,105,101,76,101,103,97,108,67,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,76,101,103,97,108,95,99,111,109,112,8,0,12,46,99,111,111,107,105,101,76,105,103,104,116,8,0,10,46,99,111,111,107,105,101,77,83,71,8,0,11,46,99,111,111,107,105,101,77,97,105,110,8,0,16,46,99,111,111,107,105,101,77,97,105,110,80,97,110,101,108,8,0,13,46,99,111,111,107,105,101,77,97,115,116,101,114,8,0,14,46,99,111,111,107,105,101,77,101,108,100,105,110,103,8,0,14,46,99,111,111,107,105,101,77,101,108,100,117,110,103,8,0,11,46,99,111,111,107,105,101,77,101,115,115,8,0,17,46,99,111,111,107,105,101,77,101,115,115,97,103,101,66,97,114,8,0,17,46,99,111,111,107,105,101,77,101,115,115,97,103,101,66,111,120,8,0,23,46,99,111,111,107,105,101,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,77,101,115,115,97,103,101,68,105,118,8,0,19,46,99,111,111,107,105,101,77,101,115,115,97,103,101,80,97,110,101,108,8,0,21,46,99,111,111,107,105,101,77,101,115,115,97,103,101,87,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,77,111,100,97,108,8,0,15,46,99,111,111,107,105,101,77,111,100,97,108,66,111,120,8,0,24,46,99,111,111,107,105,101,77,111,100,97,108,95,95,98,97,99,107,103,114,111,117,110,100,8,0,22,46,99,111,111,107,105,101,77,111,100,117,108,101,67,111,110,116,97,105,110,101,114,8,0,14,46,99,111,111,107,105,101,77,111,110,115,116,101,114,8,0,19,46,99,111,111,107,105,101,77,111,110,115,116,101,114,45,105,110,102,111,8,0,19,46,99,111,111,107,105,101,77,115,103,67,111,110,116,97,105,110,101,114,8,0,14,46,99,111,111,107,105,101,77,115,103,87,114,97,112,8,0,18,46,99,111,111,107,105,101,78,111,116,65,99,99,101,112,116,101,100,8,0,11,46,99,111,111,107,105,101,78,111,116,101,8,0,12,46,99,111,111,107,105,101,78,111,116,101,115,8,0,11,46,99,111,111,107,105,101,78,111,116,105,8,0,13,46,99,111,111,107,105,101,78,111,116,105,99,101,8,0,24,46,99,111,111,107,105,101,78,111,116,105,99,101,45,45,105,115,86,105,115,105,98,108,101,8,0,14,46,99,111,111,107,105,101,78,111,116,105,99,101,50,8,0,14,46,99,111,111,107,105,101,78,111,116,105,99,101,65,8,0,20,46,99,111,111,107,105,101,78,111,116,105,99,101,66,97,108,108,111,111,110,8,0,16,46,99,111,111,107,105,101,78,111,116,105,99,101,66,97,114,8,0,16,46,99,111,111,107,105,101,78,111,116,105,99,101,66,111,120,8,0,22,46,99,111,111,107,105,101,78,111,116,105,99,101,67,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,78,111,116,105,99,101,67,111,110,116,101,110,116,8,0,18,46,99,111,111,107,105,101,78,111,116,105,99,101,80,111,112,85,112,8,0,26,46,99,111,111,107,105,101,78,111,116,105,99,101,84,101,120,116,67,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,78,111,116,105,99,101,84,121,112,101,49,8,0,20,46,99,111,111,107,105,101,78,111,116,105,99,101,87,114,97,112,112,101,114,8,0,24,46,99,111,111,107,105,101,78,111,116,105,99,101,95,95,99,111,110,116,97,105,110,101,114,8,0,12,46,99,111,111,107,105,101,78,111,116,105,102,8,0,19,46,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,25,46,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,110,110,101,114,8,0,22,46,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,8,0,28,46,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,67,111,110,116,97,105,110,101,114,8,0,24,46,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,80,111,112,117,112,8,0,25,46,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,87,105,100,103,101,116,8,0,29,46,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,95,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,78,111,116,105,102,105,101,114,87,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,78,111,116,105,102,121,8,0,16,46,99,111,111,107,105,101,78,111,116,105,102,121,66,97,114,8,0,12,46,99,111,111,107,105,101,79,112,116,73,110,8,0,23,46,99,111,111,107,105,101,79,112,116,79,117,116,66,111,120,87,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,79,117,116,101,114,8,0,14,46,99,111,111,107,105,101,79,118,101,114,108,97,121,8,0,17,46,99,111,111,107,105,101,79,118,101,114,108,97,121,66,111,120,8,0,8,46,99,111,111,107,105,101,80,8,0,11,46,99,111,111,107,105,101,80,97,99,107,8,0,12,46,99,111,111,107,105,101,80,97,110,101,108,8,0,20,46,99,111,111,107,105,101,80,101,114,109,105,115,105,111,110,73,110,102,111,8,0,17,46,99,111,111,107,105,101,80,101,114,109,105,115,115,105,111,110,8,0,20,46,99,111,111,107,105,101,80,101,114,109,105,116,87,114,97,112,112,101,114,8,0,18,46,99,111,111,107,105,101,80,111,108,105,99,101,66,108,111,99,107,8,0,20,46,99,111,111,107,105,101,80,111,108,105,99,121,45,98,97,110,110,101,114,8,0,19,46,99,111,111,107,105,101,80,111,108,105,99,121,45,112,111,112,117,112,8,0,14,46,99,111,111,107,105,101,80,111,108,105,99,121,65,8,0,22,46,99,111,111,107,105,101,80,111,108,105,99,121,65,103,114,101,101,109,101,110,116,8,0,14,46,99,111,111,107,105,101,80,111,108,105,99,121,66,8,0,24,46,99,111,111,107,105,101,80,111,108,105,99,121,66,97,110,110,101,114,79,117,116,101,114,8,0,16,46,99,111,111,107,105,101,80,111,108,105,99,121,66,110,114,8,0,16,46,99,111,111,107,105,101,80,111,108,105,99,121,66,111,120,8,0,22,46,99,111,111,107,105,101,80,111,108,105,99,121,67,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,80,111,108,105,99,121,67,117,115,116,111,109,8,0,18,46,99,111,111,107,105,101,80,111,108,105,99,121,71,111,109,97,103,8,0,21,46,99,111,111,107,105,101,80,111,108,105,99,121,76,105,103,104,116,66,111,120,8,0,31,46,99,111,111,107,105,101,80,111,108,105,99,121,76,105,103,104,116,66,111,120,79,118,101,114,102,108,111,119,66,103,8,0,20,46,99,111,111,107,105,101,80,111,108,105,99,121,77,101,115,115,97,103,101,8,0,19,46,99,111,111,107,105,101,80,111,108,105,99,121,78,111,116,105,99,101,8,0,27,46,99,111,111,107,105,101,80,111,108,105,99,121,78,111,116,105,102,121,45,119,114,97,112,112,101,114,8,0,20,46,99,111,111,107,105,101,80,111,108,105,99,121,79,118,101,114,108,97,121,8,0,18,46,99,111,111,107,105,101,80,111,108,105,99,121,80,111,112,117,112,8,0,20,46,99,111,111,107,105,101,80,111,108,105,99,121,83,110,105,112,112,101,116,8,0,17,46,99,111,111,107,105,101,80,111,108,105,99,121,84,101,120,116,8,0,20,46,99,111,111,107,105,101,80,111,108,105,99,121,87,114,97,112,112,101,114,8,0,23,46,99,111,111,107,105,101,80,111,108,105,99,121,95,95,102,105,120,66,108,111,99,107,8,0,27,46,99,111,111,107,105,101,80,111,108,105,116,105,99,115,78,111,116,105,102,105,99,97,116,105,111,110,8,0,22,46,99,111,111,107,105,101,80,111,108,105,116,105,99,115,87,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,80,111,112,80,117,112,8,0,12,46,99,111,111,107,105,101,80,111,112,85,112,8,0,20,46,99,111,111,107,105,101,80,111,112,85,112,79,117,116,101,114,68,105,118,8,0,16,46,99,111,111,107,105,101,80,111,112,85,112,87,114,97,112,8,0,12,46,99,111,111,107,105,101,80,111,112,105,110,8,0,21,46,99,111,111,107,105,101,80,111,112,105,110,95,95,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,80,111,112,117,112,58,110,111,116,40,98,111,100,121,41,8,0,21,46,99,111,111,107,105,101,80,111,112,117,112,67,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,80,111,112,117,112,80,97,114,116,8,0,17,46,99,111,111,107,105,101,80,111,112,117,112,83,109,97,108,108,8,0,14,46,99,111,111,107,105,101,80,114,105,118,97,99,121,8,0,21,46,99,111,111,107,105,101,80,114,105,118,97,99,121,73,110,102,111,68,105,118,8,0,26,46,99,111,111,107,105,101,80,114,111,109,112,116,95,111,117,116,101,114,87,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,80,117,115,104,8,0,12,46,99,111,111,107,105,101,81,117,101,114,121,8,0,15,46,99,111,111,107,105,101,82,101,109,105,110,100,101,114,8,0,22,46,99,111,111,107,105,101,82,101,109,105,110,100,101,114,87,114,97,112,112,101,114,8,0,18,46,99,111,111,107,105,101,82,101,115,116,114,105,99,116,105,111,110,8,0,26,46,99,111,111,107,105,101,82,105,99,104,116,108,105,110,101,95,99,111,110,116,97,105,110,101,114,8,0,10,46,99,111,111,107,105,101,82,111,119,8,0,13,46,99,111,111,107,105,101,83,99,114,105,112,116,8,0,14,46,99,111,111,107,105,101,83,101,99,116,105,111,110,8,0,16,46,99,111,111,107,105,101,83,101,108,101,99,116,68,105,118,8,0,15,46,99,111,111,107,105,101,83,101,116,116,105,110,103,115,8,0,18,46,99,111,111,107,105,101,83,101,116,116,105,110,103,115,66,116,110,8,0,12,46,99,111,111,107,105,101,83,104,101,108,108,8,0,16,46,99,111,111,107,105,101,83,104,111,119,67,108,97,115,115,8,0,16,46,99,111,111,107,105,101,83,116,97,116,101,109,101,110,116,8,0,22,46,99,111,111,107,105,101,83,116,97,116,101,109,101,110,116,45,98,108,111,99,107,8,0,19,46,99,111,111,107,105,101,84,101,114,109,115,67,111,110,116,101,110,116,8,0,11,46,99,111,111,107,105,101,84,101,120,116,8,0,14,46,99,111,111,107,105,101,84,105,112,87,114,97,112,8,0,10,46,99,111,111,107,105,101,84,107,100,8,0,12,46,99,111,111,107,105,101,84,111,84,111,112,8,0,12,46,99,111,111,107,105,101,84,111,97,115,116,8,0,11,46,99,111,111,107,105,101,84,111,111,108,8,0,14,46,99,111,111,107,105,101,84,111,111,108,98,97,114,8,0,24,46,99,111,111,107,105,101,84,111,111,108,116,105,112,58,110,111,116,40,104,116,109,108,41,8,0,22,46,99,111,111,107,105,101,84,111,111,108,116,105,112,75,111,110,116,101,110,101,114,8,0,10,46,99,111,111,107,105,101,84,111,112,8,0,15,46,99,111,111,107,105,101,84,114,105,97,110,103,108,101,8,0,30,46,99,111,111,107,105,101,85,115,97,103,101,65,108,101,114,116,77,97,105,110,67,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,85,115,101,87,97,114,110,105,110,103,8,0,20,46,99,111,111,107,105,101,85,115,101,114,65,103,114,101,101,109,101,110,116,8,0,15,46,99,111,111,107,105,101,86,105,111,108,97,116,111,114,8,0,21,46,99,111,111,107,105,101,86,105,111,108,97,116,111,114,45,102,105,120,101,100,8,0,20,46,99,111,111,107,105,101,86,105,111,108,97,116,111,114,70,105,120,101,100,8,0,24,46,99,111,111,107,105,101,86,105,115,105,98,108,101,58,110,111,116,40,98,111,100,121,41,8,0,14,46,99,111,111,107,105,101,87,97,108,97,68,105,118,8,0,18,46,99,111,111,107,105,101,87,97,108,108,87,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,87,97,114,110,8,0,14,46,99,111,111,107,105,101,87,97,114,110,105,110,103,8,0,24,46,99,111,111,107,105,101,87,97,114,110,105,110,103,66,97,99,107,103,114,111,117,110,100,8,0,17,46,99,111,111,107,105,101,87,97,114,110,105,110,103,66,111,120,8,0,23,46,99,111,111,107,105,101,87,97,114,110,105,110,103,67,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,87,97,114,110,105,110,103,83,101,99,116,105,111,110,8,0,16,46,99,111,111,107,105,101,87,101,116,103,101,118,105,110,103,8,0,21,46,99,111,111,107,105,101,87,101,116,103,101,118,105,110,103,77,111,100,97,108,8,0,13,46,99,111,111,107,105,101,87,105,100,103,101,116,8,0,13,46,99,111,111,107,105,101,87,105,110,100,111,119,8,0,11,46,99,111,111,107,105,101,87,114,97,112,8,0,12,46,99,111,111,107,105,101,87,114,97,112,112,8,0,14,46,99,111,111,107,105,101,87,114,97,112,112,101,114,8,0,10,46,99,111,111,107,105,101,87,114,112,8,0,25,46,99,111,111,107,105,101,91,100,97,116,97,45,99,111,111,107,105,101,45,105,110,102,111,93,8,0,27,46,99,111,111,107,105,101,91,100,97,116,97,45,99,111,111,107,105,101,45,110,111,116,105,99,101,93,8,0,20,46,99,111,111,107,105,101,91,100,97,116,97,45,99,111,111,107,105,101,93,8,0,28,46,99,111,111,107,105,101,91,100,97,116,97,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,93,8,0,36,46,99,111,111,107,105,101,91,100,97,116,97,45,115,101,108,101,99,116,111,114,61,34,99,111,111,107,105,101,115,45,98,97,114,34,93,8,0,34,46,99,111,111,107,105,101,91,110,103,45,104,105,100,101,61,34,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,34,93,8,0,27,46,99,111,111,107,105,101,91,114,111,108,101,61,34,97,108,101,114,116,100,105,97,108,111,103,34,93,8,0,14,46,99,111,111,107,105,101,95,66,97,110,110,101,114,8,0,15,46,99,111,111,107,105,101,95,95,97,99,99,101,112,116,8,0,22,46,99,111,111,107,105,101,95,95,97,108,101,114,116,45,45,97,99,116,105,118,101,8,0,13,46,99,111,111,107,105,101,95,95,97,114,101,97,8,0,19,46,99,111,111,107,105,101,95,95,98,97,99,107,103,114,111,117,110,100,8,0,15,46,99,111,111,107,105,101,95,95,98,97,110,110,101,114,8,0,12,46,99,111,111,107,105,101,95,95,98,97,114,8,0,14,46,99,111,111,107,105,101,95,95,98,108,111,99,107,8,0,12,46,99,111,111,107,105,101,95,95,98,111,120,8,0,16,46,99,111,111,107,105,101,95,95,99,97,108,108,111,117,116,8,0,15,46,99,111,111,107,105,101,95,95,99,111,108,117,109,110,8,0,16,46,99,111,111,107,105,101,95,95,99,111,110,115,101,110,116,8,0,18,46,99,111,111,107,105,101,95,95,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,95,95,99,111,110,116,101,110,116,8,0,12,46,99,111,111,107,105,101,95,95,100,105,118,8,0,13,46,99,111,111,107,105,101,95,95,102,108,101,120,8,0,25,46,99,111,111,107,105,101,95,95,102,108,111,97,116,45,45,99,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,95,95,102,108,111,97,116,105,110,103,8,0,25,46,99,111,111,107,105,101,95,95,102,108,111,97,116,105,110,103,45,45,98,111,116,116,111,109,8,0,15,46,99,111,111,107,105,101,95,95,102,111,111,116,101,114,8,0,14,46,99,111,111,107,105,101,95,95,105,110,110,101,114,8,0,16,46,99,111,111,107,105,101,95,95,109,97,110,97,103,101,114,8,0,16,46,99,111,111,107,105,101,95,95,109,101,115,115,97,103,101,8,0,26,46,99,111,111,107,105,101,95,95,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,8,0,14,46,99,111,111,107,105,101,95,95,109,111,100,97,108,8,0,21,46,99,111,111,107,105,101,95,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,99,111,111,107,105,101,95,95,111,118,101,114,108,97,121,8,0,14,46,99,111,111,107,105,101,95,95,112,97,110,101,108,8,0,15,46,99,111,111,107,105,101,95,95,112,111,108,105,99,121,8,0,22,46,99,111,111,107,105,101,95,95,112,111,108,105,99,121,45,110,111,116,105,99,101,8,0,15,46,99,111,111,107,105,101,95,95,112,114,111,109,112,116,8,0,15,46,99,111,111,107,105,101,95,95,114,101,118,101,97,108,8,0,13,46,99,111,111,107,105,101,95,95,115,104,111,119,8,0,12,46,99,111,111,107,105,101,95,95,116,111,112,8,0,13,46,99,111,111,107,105,101,95,95,119,97,108,108,8,0,19,46,99,111,111,107,105,101,95,95,119,97,114,110,95,95,119,114,97,112,8,0,26,46,99,111,111,107,105,101,95,95,119,97,114,110,105,110,103,45,109,101,115,115,97,103,105,110,103,8,0,15,46,99,111,111,107,105,101,95,95,119,105,110,100,111,119,8,0,13,46,99,111,111,107,105,101,95,95,119,114,97,112,8,0,16,46,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,8,0,24,46,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,95,110,111,110,101,117,117,107,8,0,14,46,99,111,111,107,105,101,95,97,99,99,101,112,116,8,0,24,46,99,111,111,107,105,101,95,97,99,99,101,112,116,95,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,95,97,99,99,101,112,116,95,110,111,116,101,98,111,120,8,0,18,46,99,111,111,107,105,101,95,97,99,99,101,112,116,97,110,99,101,8,0,16,46,99,111,111,107,105,101,95,97,99,99,101,112,116,101,114,8,0,13,46,99,111,111,107,105,101,95,97,99,101,112,116,8,0,11,46,99,111,111,107,105,101,95,97,99,107,8,0,12,46,99,111,111,107,105,101,95,97,100,118,50,8,0,14,46,99,111,111,107,105,101,95,97,100,118,105,99,101,8,0,17,46,99,111,111,107,105,101,95,97,103,114,101,101,109,101,110,116,8,0,13,46,99,111,111,107,105,101,95,97,108,101,114,116,8,0,18,46,99,111,111,107,105,101,95,97,108,101,114,116,95,99,111,110,116,8,0,21,46,99,111,111,107,105,101,95,97,108,101,114,116,95,109,101,115,115,97,103,101,8,0,15,46,99,111,111,107,105,101,95,97,112,112,114,111,118,101,8,0,20,46,99,111,111,107,105,101,95,97,112,112,114,111,118,101,100,95,98,97,114,8,0,12,46,99,111,111,107,105,101,95,97,114,101,97,8,0,18,46,99,111,111,107,105,101,95,98,97,99,107,103,114,111,117,110,100,8,0,16,46,99,111,111,107,105,101,95,98,97,99,107,119,114,97,112,8,0,11,46,99,111,111,107,105,101,95,98,97,110,8,0,14,46,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,20,46,99,111,111,107,105,101,95,98,97,110,110,101,114,45,45,114,111,111,116,8,0,22,46,99,111,111,107,105,101,95,98,97,110,110,101,114,45,104,97,110,100,108,101,100,8,0,25,46,99,111,111,107,105,101,95,98,97,110,110,101,114,95,98,97,99,107,103,114,111,117,110,100,8,0,24,46,99,111,111,107,105,101,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,95,98,97,110,110,101,114,95,102,111,111,116,101,114,8,0,22,46,99,111,111,107,105,101,95,98,97,110,110,101,114,95,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,95,98,97,110,110,101,114,95,115,101,99,116,105,111,110,8,0,16,46,99,111,111,107,105,101,95,98,97,110,110,105,101,114,101,8,0,11,46,99,111,111,107,105,101,95,98,97,114,8,0,16,46,99,111,111,107,105,101,95,98,97,114,95,98,97,115,101,8,0,16,46,99,111,111,107,105,101,95,98,97,114,95,116,101,120,116,8,0,14,46,99,111,111,107,105,101,95,98,97,114,95,118,50,8,0,19,46,99,111,111,107,105,101,95,98,97,114,95,119,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,95,98,97,114,114,97,8,0,10,46,99,111,111,107,105,101,95,98,103,8,0,13,46,99,111,111,107,105,101,95,98,108,111,99,107,8,0,15,46,99,111,111,107,105,101,95,98,108,111,99,107,101,114,8,0,13,46,99,111,111,107,105,101,95,98,111,108,99,107,8,0,11,46,99,111,111,107,105,101,95,98,111,116,8,0,11,46,99,111,111,107,105,101,95,98,111,120,8,0,18,46,99,111,111,107,105,101,95,98,111,120,95,115,104,97,100,111,119,8,0,13,46,99,111,111,107,105,101,95,99,104,101,99,107,8,0,14,46,99,111,111,107,105,101,95,99,104,111,105,99,101,8,0,16,46,99,111,111,107,105,101,95,99,110,116,110,114,95,115,116,8,0,15,46,99,111,111,107,105,101,95,99,111,110,102,105,114,109,8,0,35,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,22,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,95,97,108,101,114,116,8,0,22,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,8,0,32,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,100,105,97,108,111,103,8,0,22,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,104,111,108,100,101,114,8,0,23,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,111,118,101,114,108,97,121,8,0,21,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,112,111,112,117,112,8,0,21,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,116,105,116,108,101,8,0,12,46,99,111,111,107,105,101,95,99,111,110,116,8,0,17,46,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,95,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,95,99,111,110,116,101,110,116,8,0,11,46,99,111,111,107,105,101,95,99,115,116,8,0,26,46,99,111,111,107,105,101,95,100,105,115,99,97,108,105,109,101,114,95,101,110,103,108,105,115,104,8,0,18,46,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,8,0,18,46,99,111,111,107,105,101,95,100,105,115,99,108,111,115,117,114,101,8,0,15,46,99,111,111,107,105,101,95,100,105,115,112,108,97,121,8,0,11,46,99,111,111,107,105,101,95,100,105,118,8,0,20,46,99,111,111,107,105,101,95,101,110,97,98,108,101,95,112,111,112,117,112,8,0,14,46,99,111,111,107,105,101,95,101,117,95,98,97,114,8,0,20,46,99,111,111,107,105,101,95,101,117,95,99,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,95,101,118,105,108,95,111,118,101,114,8,0,13,46,99,111,111,107,105,101,95,102,108,111,97,116,8,0,14,46,99,111,111,107,105,101,95,102,108,121,111,117,116,8,0,20,46,99,111,111,107,105,101,95,102,111,111,116,101,114,95,102,105,120,101,100,8,0,24,46,99,111,111,107,105,101,95,102,114,97,109,101,95,98,97,99,107,103,114,111,117,110,100,8,0,12,46,99,111,111,107,105,101,95,103,100,112,114,8,0,13,46,99,111,111,107,105,101,95,103,114,97,121,76,8,0,14,46,99,111,111,107,105,101,95,104,101,108,112,101,114,8,0,14,46,99,111,111,107,105,101,95,104,105,100,100,101,110,8,0,12,46,99,111,111,107,105,101,95,104,105,110,116,8,0,15,46,99,111,111,107,105,101,95,104,105,110,119,101,105,115,8,0,11,46,99,111,111,107,105,101,95,105,110,102,8,0,12,46,99,111,111,107,105,101,95,105,110,102,111,8,0,17,46,99,111,111,107,105,101,95,105,110,102,111,95,98,111,120,49,8,0,22,46,99,111,111,107,105,101,95,105,110,102,111,95,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,95,105,110,102,111,95,99,111,110,116,101,110,116,8,0,17,46,99,111,111,107,105,101,95,105,110,102,111,95,119,114,97,112,8,0,20,46,99,111,111,107,105,101,95,105,110,102,111,95,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,95,105,110,102,111,114,109,8,0,18,46,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,101,8,0,27,46,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,45,45,97,99,116,105,118,101,8,0,24,46,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,45,45,98,97,114,8,0,28,46,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,45,45,111,118,101,114,108,97,121,8,0,24,46,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,45,45,116,111,112,8,0,13,46,99,111,111,107,105,101,95,105,110,110,101,114,8,0,11,46,99,111,111,107,105,101,95,108,97,119,8,0,21,46,99,111,111,107,105,101,95,108,97,119,95,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,95,108,97,119,95,100,105,97,108,111,103,8,0,25,46,99,111,111,107,105,101,95,108,97,119,95,114,101,118,101,97,108,95,100,105,97,108,111,103,8,0,26,46,99,111,111,107,105,101,95,108,97,119,95,114,101,118,101,97,108,95,111,118,101,114,108,97,121,8,0,13,46,99,111,111,107,105,101,95,108,97,121,101,114,8,0,12,46,99,111,111,107,105,101,95,108,98,111,120,8,0,15,46,99,111,111,107,105,101,95,108,105,99,101,110,99,101,8,0,15,46,99,111,111,107,105,101,95,108,111,97,100,105,110,103,8,0,12,46,99,111,111,107,105,101,95,108,111,103,111,8,0,9,46,99,111,111,107,105,101,95,109,8,0,18,46,99,111,111,107,105,101,95,109,97,105,110,95,98,108,111,99,107,8,0,15,46,99,111,111,107,105,101,95,109,101,108,100,105,110,103,8,0,15,46,99,111,111,107,105,101,95,109,101,108,100,117,110,103,8,0,12,46,99,111,111,107,105,101,95,109,101,115,115,8,0,15,46,99,111,111,107,105,101,95,109,101,115,115,97,103,101,8,0,19,46,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,98,111,120,8,0,25,46,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,100,105,115,112,108,97,121,101,100,8,0,20,46,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,119,114,97,112,8,0,11,46,99,111,111,107,105,101,95,109,111,98,8,0,23,46,99,111,111,107,105,101,95,109,111,100,97,108,95,98,117,116,116,111,110,95,118,53,8,0,19,46,99,111,111,107,105,101,95,109,111,100,97,108,95,111,117,116,101,114,8,0,14,46,99,111,111,107,105,101,95,109,111,100,117,108,101,8,0,15,46,99,111,111,107,105,101,95,109,111,110,115,116,101,114,8,0,19,46,99,111,111,107,105,101,95,109,111,110,115,116,101,114,95,98,111,120,8,0,15,46,99,111,111,107,105,101,95,109,115,103,95,98,108,107,8,0,18,46,99,111,111,107,105,101,95,110,101,119,115,108,101,116,116,101,114,8,0,12,46,99,111,111,107,105,101,95,110,111,116,101,8,0,16,46,99,111,111,107,105,101,95,110,111,116,101,95,98,107,103,8,0,14,46,99,111,111,107,105,101,95,110,111,116,105,99,101,8,0,20,46,99,111,111,107,105,101,95,110,111,116,105,99,101,95,98,108,111,99,107,8,0,19,46,99,111,111,107,105,101,95,110,111,116,105,99,101,95,98,108,117,101,8,0,22,46,99,111,111,107,105,101,95,110,111,116,105,99,101,95,111,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,95,110,111,116,105,99,101,95,119,114,97,112,8,0,22,46,99,111,111,107,105,101,95,110,111,116,105,99,101,95,119,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,95,110,111,116,105,102,8,0,14,46,99,111,111,107,105,101,95,110,111,116,105,102,101,8,0,20,46,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,26,46,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,98,108,111,99,107,8,0,30,46,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,110,116,97,105,110,101,114,8,0,28,46,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,95,110,111,116,105,102,121,8,0,13,46,99,111,111,107,105,101,95,111,112,114,117,122,8,0,13,46,99,111,111,107,105,101,95,111,112,116,105,110,8,0,17,46,99,111,111,107,105,101,95,111,112,116,105,110,95,98,111,120,8,0,15,46,99,111,111,107,105,101,95,111,118,101,114,108,97,121,8,0,25,46,99,111,111,107,105,101,95,111,118,101,114,108,97,121,95,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,95,111,118,101,114,108,97,121,115,104,111,119,8,0,13,46,99,111,111,107,105,101,95,112,97,110,101,108,8,0,17,46,99,111,111,107,105,101,95,112,97,110,101,108,95,110,101,119,8,0,21,46,99,111,111,107,105,101,95,112,105,99,107,105,110,103,95,98,108,111,99,107,8,0,14,46,99,111,111,107,105,101,95,112,108,117,103,105,110,8,0,14,46,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,21,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,97,110,110,101,114,8,0,18,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,97,114,8,0,18,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,111,120,8,0,24,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,99,111,109,112,111,110,101,110,116,8,0,19,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,99,111,110,116,8,0,24,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,109,101,115,115,97,103,101,8,0,20,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,111,117,116,101,114,8,0,18,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,112,111,112,8,0,16,46,99,111,111,107,105,101,95,112,111,108,105,116,105,99,115,8,0,23,46,99,111,111,107,105,101,95,112,111,112,117,112,95,97,108,105,103,110,109,101,110,116,8,0,21,46,99,111,111,107,105,101,95,112,111,112,117,112,95,119,114,97,112,112,101,114,8,0,23,46,99,111,111,107,105,101,95,112,111,115,105,116,105,111,110,95,98,111,116,116,111,109,8,0,26,46,99,111,111,107,105,101,95,112,114,101,102,101,114,101,110,99,101,115,95,98,97,110,110,101,114,8,0,15,46,99,111,111,107,105,101,95,112,114,105,118,97,99,121,8,0,21,46,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,97,108,101,114,116,8,0,21,46,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,98,108,111,99,107,8,0,24,46,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,105,110,102,111,95,98,97,114,8,0,23,46,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,108,97,119,95,98,97,114,8,0,20,46,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,108,105,110,101,8,0,22,46,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,112,111,108,105,99,121,8,0,13,46,99,111,111,107,105,101,95,114,97,109,107,97,8,0,21,46,99,111,111,107,105,101,95,114,102,95,116,121,112,101,95,112,97,110,101,108,8,0,22,46,99,111,111,107,105,101,95,114,102,95,116,121,112,101,95,119,105,110,100,111,119,8,0,13,46,99,111,111,107,105,101,95,114,105,98,111,110,8,0,19,46,99,111,111,107,105,101,95,114,105,99,104,116,108,105,110,105,101,110,8,0,16,46,99,111,111,107,105,101,95,114,111,108,108,100,111,119,110,8,0,11,46,99,111,111,107,105,101,95,114,111,119,8,0,13,46,99,111,111,107,105,101,95,114,117,108,101,115,8,0,11,46,99,111,111,107,105,101,95,115,97,118,8,0,19,46,99,111,111,107,105,101,95,115,99,104,101,109,97,95,100,97,114,107,8,0,20,46,99,111,111,107,105,101,95,115,101,99,111,110,100,95,98,108,111,99,107,8,0,15,46,99,111,111,107,105,101,95,115,101,99,116,105,111,110,8,0,15,46,99,111,111,107,105,101,95,115,101,116,116,105,110,103,8,0,23,46,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,95,98,111,116,116,111,109,8,0,26,46,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,95,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,95,116,111,103,103,108,101,8,0,17,46,99,111,111,107,105,101,95,115,116,97,116,101,109,101,110,116,8,0,24,46,99,111,111,107,105,101,95,115,116,97,116,101,109,101,110,116,95,115,112,97,99,101,114,8,0,15,46,99,111,111,107,105,101,95,115,116,105,99,107,101,114,8,0,23,46,99,111,111,107,105,101,95,115,116,105,99,107,101,114,95,119,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,95,115,116,114,105,112,8,0,11,46,99,111,111,107,105,101,95,116,97,98,8,0,11,46,99,111,111,107,105,101,95,116,97,103,8,0,19,46,99,111,111,107,105,101,95,116,97,106,101,107,111,122,116,97,116,111,8,0,16,46,99,111,111,107,105,101,95,116,97,107,101,111,118,101,114,8,0,11,46,99,111,111,107,105,101,95,116,105,112,8,0,14,46,99,111,111,107,105,101,95,116,105,112,98,111,120,8,0,12,46,99,111,111,107,105,101,95,116,105,112,115,8,0,15,46,99,111,111,107,105,101,95,116,111,111,108,98,97,114,8,0,13,46,99,111,111,107,105,101,95,116,114,97,99,107,8,0,13,46,99,111,111,107,105,101,95,117,115,97,103,101,8,0,20,46,99,111,111,107,105,101,95,117,115,97,103,101,95,98,97,110,110,101,114,8,0,22,46,99,111,111,107,105,101,95,117,115,97,103,101,95,110,111,116,105,102,105,101,114,8,0,23,46,99,111,111,107,105,101,95,117,115,97,103,101,95,110,111,116,105,102,105,101,114,50,8,0,20,46,99,111,111,107,105,101,95,117,115,97,103,101,95,110,111,116,105,102,121,8,0,13,46,99,111,111,107,105,101,95,118,101,114,105,102,8,0,12,46,99,111,111,107,105,101,95,119,97,114,110,8,0,16,46,99,111,111,107,105,101,95,119,97,114,110,95,98,111,120,8,0,15,46,99,111,111,107,105,101,95,119,97,114,110,105,110,103,8,0,19,46,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,98,111,120,8,0,25,46,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,110,101,119,8,0,20,46,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,119,114,97,112,8,0,19,46,99,111,111,107,105,101,95,119,114,97,112,95,98,111,116,116,111,109,8,0,15,46,99,111,111,107,105,101,95,119,114,97,112,112,101,114,8,0,22,46,99,111,111,107,105,101,95,119,114,97,112,112,101,114,45,98,111,116,116,111,109,8,0,20,46,99,111,111,107,105,101,95,119,114,97,112,112,101,114,95,116,111,111,108,8,0,11,46,99,111,111,107,105,101,95,119,114,112,8,0,14,46,99,111,111,107,105,101,97,98,102,114,97,103,101,8,0,11,46,99,111,111,107,105,101,97,98,108,101,8,0,13,46,99,111,111,107,105,101,97,99,99,101,112,116,8,0,21,46,99,111,111,107,105,101,97,99,99,101,112,116,95,119,114,97,112,112,101,114,8,0,17,46,99,111,111,107,105,101,97,99,99,101,112,116,97,110,99,101,8,0,10,46,99,111,111,107,105,101,97,100,118,8,0,13,46,99,111,111,107,105,101,97,100,118,105,115,101,8,0,12,46,99,111,111,107,105,101,97,108,97,114,109,8,0,12,46,99,111,111,107,105,101,97,108,101,114,116,8,0,12,46,99,111,111,107,105,101,97,116,97,116,97,8,0,12,46,99,111,111,107,105,101,98,97,100,103,101,8,0,11,46,99,111,111,107,105,101,98,97,108,107,8,0,24,46,99,111,111,107,105,101,98,97,110,110,101,114,45,45,99,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,98,97,110,110,101,114,45,45,106,115,8,0,19,46,99,111,111,107,105,101,98,97,110,110,101,114,45,105,110,110,101,114,8,0,20,46,99,111,111,107,105,101,98,97,110,110,101,114,45,108,101,103,97,99,121,8,0,21,46,99,111,111,107,105,101,98,97,110,110,101,114,45,111,118,101,114,108,97,121,8,0,21,46,99,111,111,107,105,101,98,97,110,110,101,114,45,119,97,114,110,105,110,103,8,0,24,46,99,111,111,107,105,101,98,97,110,110,101,114,95,95,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,98,97,110,110,101,114,95,95,116,111,112,8,0,24,46,99,111,111,107,105,101,98,97,110,110,101,114,95,98,97,99,107,103,114,111,117,110,100,8,0,18,46,99,111,111,107,105,101,98,97,110,110,101,114,112,111,112,117,112,8,0,15,46,99,111,111,107,105,101,98,97,110,110,101,114,118,50,8,0,20,46,99,111,111,107,105,101,98,97,114,45,45,118,97,114,105,97,110,116,49,8,0,14,46,99,111,111,107,105,101,98,97,114,45,97,100,109,8,0,16,46,99,111,111,107,105,101,98,97,114,45,98,108,111,99,107,8,0,20,46,99,111,111,107,105,101,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,98,97,114,45,109,101,115,115,97,103,101,8,0,16,46,99,111,111,107,105,101,98,97,114,45,112,97,110,101,108,8,0,14,46,99,111,111,107,105,101,98,97,114,45,116,112,108,8,0,18,46,99,111,111,107,105,101,98,97,114,45,119,114,97,112,112,101,114,8,0,19,46,99,111,111,107,105,101,98,97,114,95,95,111,118,101,114,108,97,121,8,0,20,46,99,111,111,107,105,101,98,97,114,95,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,98,97,114,95,119,114,97,112,112,101,114,8,0,19,46,99,111,111,107,105,101,98,97,114,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,98,97,114,104,111,108,100,101,114,8,0,15,46,99,111,111,107,105,101,98,97,114,105,110,110,101,114,8,0,29,46,99,111,111,107,105,101,98,103,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,12,46,99,111,111,107,105,101,98,108,111,99,107,8,0,11,46,99,111,111,107,105,101,98,111,107,115,8,0,13,46,99,111,111,107,105,101,98,111,116,116,111,109,8,0,18,46,99,111,111,107,105,101,98,111,120,45,119,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,98,111,120,77,8,0,15,46,99,111,111,107,105,101,98,111,120,83,116,97,114,116,8,0,11,46,99,111,111,107,105,101,99,97,108,108,8,0,12,46,99,111,111,107,105,101,99,104,101,99,107,8,0,27,46,99,111,111,107,105,101,99,104,101,99,107,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,99,108,111,115,101,8,0,11,46,99,111,111,107,105,101,99,110,105,108,8,0,23,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,98,97,99,107,100,114,111,112,8,0,21,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,24,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,100,105,97,108,111,103,8,0,22,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,8,0,28,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,45,108,105,103,104,116,8,0,20,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,112,111,112,117,112,8,0,31,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,112,111,112,117,112,45,98,97,99,107,103,114,111,117,110,100,8,0,17,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,114,117,8,0,20,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,115,104,97,100,101,8,0,21,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,115,105,109,112,108,101,8,0,19,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,119,114,97,112,8,0,22,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,20,46,99,111,111,107,105,101,99,111,110,115,101,110,116,95,95,119,114,97,112,8,0,20,46,99,111,111,107,105,101,99,111,110,115,101,110,116,98,97,110,110,101,114,8,0,17,46,99,111,111,107,105,101,99,111,110,115,101,110,116,98,97,114,8,0,23,46,99,111,111,107,105,101,99,111,110,115,101,110,116,99,111,109,112,111,110,101,110,116,8,0,23,46,99,111,111,107,105,101,99,111,110,115,101,110,116,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,99,111,110,116,97,105,110,101,114,8,0,14,46,99,111,111,107,105,101,99,111,110,116,101,110,116,8,0,14,46,99,111,111,107,105,101,99,111,110,116,114,111,108,8,0,32,46,99,111,111,107,105,101,99,111,110,116,114,111,108,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,99,114,97,112,8,0,13,46,99,111,111,107,105,101,99,117,116,116,101,114,8,0,16,46,99,111,111,107,105,101,100,45,99,111,110,116,101,110,116,8,0,28,46,99,111,111,107,105,101,100,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,13,46,99,111,111,107,105,101,100,79,117,116,101,114,8,0,14,46,99,111,111,107,105,101,100,101,116,97,105,108,115,8,0,13,46,99,111,111,107,105,101,100,105,97,108,111,103,8,0,14,46,99,111,111,107,105,101,100,105,109,101,114,100,97,8,0,17,46,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,8,0,22,46,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,98,108,111,99,107,8,0,10,46,99,111,111,107,105,101,100,105,118,8,0,18,46,99,111,111,107,105,101,100,111,111,114,95,112,97,100,100,101,100,8,0,13,46,99,111,111,107,105,101,102,97,115,99,105,97,8,0,14,46,99,111,111,107,105,101,102,108,111,97,116,101,114,8,0,13,46,99,111,111,107,105,101,102,111,111,116,101,114,8,0,12,46,99,111,111,107,105,101,102,114,97,109,101,8,0,13,46,99,111,111,107,105,101,104,101,97,100,101,114,8,0,13,46,99,111,111,107,105,101,104,101,105,103,104,116,8,0,11,46,99,111,111,107,105,101,104,105,110,116,8,0,14,46,99,111,111,107,105,101,104,105,110,119,101,105,115,8,0,14,46,99,111,111,107,105,101,105,110,102,111,45,98,103,8,0,19,46,99,111,111,107,105,101,105,110,102,111,45,99,111,110,116,101,110,116,8,0,21,46,99,111,111,107,105,101,105,110,102,111,58,110,111,116,40,98,111,100,121,41,8,0,22,46,99,111,111,107,105,101,105,110,102,111,95,95,99,111,110,116,97,105,110,101,114,8,0,24,46,99,111,111,107,105,101,105,110,102,111,98,97,110,110,101,114,87,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,105,110,102,111,98,97,114,8,0,16,46,99,111,111,107,105,101,105,110,102,111,98,108,111,99,107,8,0,17,46,99,111,111,107,105,101,105,110,102,111,104,111,108,100,101,114,8,0,18,46,99,111,111,107,105,101,105,110,102,111,114,109,97,116,105,111,110,8,0,22,46,99,111,111,107,105,101,105,110,102,111,114,109,97,116,105,111,110,97,114,101,97,8,0,12,46,99,111,111,107,105,101,105,110,102,111,115,8,0,17,46,99,111,111,107,105,101,106,97,114,45,98,111,116,116,111,109,8,0,18,46,99,111,111,107,105,101,106,97,114,45,99,111,110,116,101,110,116,8,0,10,46,99,111,111,107,105,101,107,97,116,8,0,10,46,99,111,111,107,105,101,107,98,98,8,0,12,46,99,111,111,107,105,101,108,97,98,101,108,8,0,16,46,99,111,111,107,105,101,108,97,119,45,97,108,101,114,116,8,0,17,46,99,111,111,107,105,101,108,97,119,45,98,97,110,110,101,114,8,0,14,46,99,111,111,107,105,101,108,97,119,45,98,97,114,8,0,17,46,99,111,111,107,105,101,108,97,119,45,98,111,116,116,111,109,8,0,20,46,99,111,111,107,105,101,108,97,119,45,99,111,110,116,97,105,110,101,114,8,0,15,46,99,111,111,107,105,101,108,97,119,45,105,110,102,111,8,0,14,46,99,111,111,107,105,101,108,97,119,45,109,115,103,8,0,16,46,99,111,111,107,105,101,108,97,119,45,112,97,110,101,108,8,0,18,46,99,111,111,107,105,101,108,97,119,45,119,114,97,112,112,101,114,8,0,30,46,99,111,111,107,105,101,108,97,119,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,17,46,99,111,111,107,105,101,108,97,119,72,105,110,116,116,111,112,8,0,18,46,99,111,111,107,105,101,108,97,119,95,111,118,101,114,108,97,121,8,0,18,46,99,111,111,107,105,101,108,97,119,95,119,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,108,97,119,98,97,114,8,0,17,46,99,111,111,107,105,101,108,97,119,105,110,102,111,98,97,114,8,0,25,46,99,111,111,107,105,101,108,97,119,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,12,46,99,111,111,107,105,101,108,97,121,101,114,8,0,19,46,99,111,111,107,105,101,108,97,121,101,114,95,95,108,97,121,101,114,8,0,12,46,99,111,111,107,105,101,108,101,103,97,108,8,0,13,46,99,111,111,107,105,101,108,101,105,115,116,101,8,0,17,46,99,111,111,107,105,101,108,101,118,101,108,95,95,98,97,114,8,0,11,46,99,111,111,107,105,101,108,105,110,101,8,0,11,46,99,111,111,107,105,101,108,111,111,112,8,0,11,46,99,111,111,107,105,101,108,111,112,100,8,0,14,46,99,111,111,107,105,101,109,97,100,110,101,115,115,8,0,14,46,99,111,111,107,105,101,109,97,105,110,100,105,118,8,0,15,46,99,111,111,107,105,101,109,97,110,45,115,104,111,119,8,0,14,46,99,111,111,107,105,101,109,97,110,97,103,101,114,8,0,32,46,99,111,111,107,105,101,109,97,110,97,103,101,114,95,98,97,110,110,101,114,45,45,99,111,110,116,97,105,110,101,114,8,0,26,46,99,111,111,107,105,101,109,97,110,97,103,101,114,95,115,104,111,119,95,115,105,109,112,108,101,8,0,24,46,99,111,111,107,105,101,109,101,108,100,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,34,46,99,111,111,107,105,101,109,101,108,100,105,110,103,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,8,0,14,46,99,111,111,107,105,101,109,101,108,100,117,110,103,8,0,14,46,99,111,111,107,105,101,109,101,115,115,97,103,101,8,0,21,46,99,111,111,107,105,101,109,101,115,115,97,103,101,45,104,111,108,100,101,114,8,0,23,46,99,111,111,107,105,101,109,101,115,115,97,103,101,95,95,111,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,109,101,115,115,97,103,101,98,108,111,99,107,8,0,25,46,99,111,111,107,105,101,109,101,115,115,97,103,101,112,108,97,99,101,104,111,108,100,101,114,8,0,10,46,99,111,111,107,105,101,109,111,110,8,0,24,46,99,111,111,107,105,101,109,111,110,115,116,101,114,45,99,111,110,116,97,105,110,101,114,8,0,10,46,99,111,111,107,105,101,109,115,103,8,0,10,46,99,111,111,107,105,101,110,97,118,8,0,11,46,99,111,111,107,105,101,110,111,116,101,8,0,20,46,99,111,111,107,105,101,110,111,116,101,95,95,111,118,101,114,108,97,121,8,0,17,46,99,111,111,107,105,101,110,111,116,105,99,101,45,98,97,114,8,0,17,46,99,111,111,107,105,101,110,111,116,105,99,101,45,98,111,120,8,0,23,46,99,111,111,107,105,101,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,110,111,116,105,99,101,45,99,111,110,116,101,110,116,8,0,19,46,99,111,111,107,105,101,110,111,116,105,99,101,45,105,110,110,101,114,8,0,18,46,99,111,111,107,105,101,110,111,116,105,99,101,45,119,114,97,112,8,0,19,46,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,8,0,13,46,99,111,111,107,105,101,110,111,116,105,102,121,8,0,17,46,99,111,111,107,105,101,111,112,116,45,104,111,108,100,101,114,8,0,12,46,99,111,111,107,105,101,111,112,116,105,110,8,0,14,46,99,111,111,107,105,101,111,112,116,105,111,110,115,8,0,14,46,99,111,111,107,105,101,111,118,101,114,108,97,121,8,0,16,46,99,111,111,107,105,101,111,118,101,114,108,97,121,45,120,8,0,12,46,99,111,111,107,105,101,112,97,110,101,108,8,0,20,46,99,111,111,107,105,101,112,97,110,101,108,95,111,118,101,114,108,97,121,8,0,23,46,99,111,111,107,105,101,112,101,114,109,105,115,115,105,111,110,112,114,111,109,112,116,8,0,11,46,99,111,111,107,105,101,112,108,117,115,8,0,26,46,99,111,111,107,105,101,112,108,117,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,20,46,99,111,111,107,105,101,112,108,117,115,45,101,120,116,101,110,100,101,100,8,0,18,46,99,111,111,107,105,101,112,108,117,115,45,109,111,100,101,114,110,8,0,10,46,99,111,111,107,105,101,112,111,108,8,0,18,46,99,111,111,107,105,101,112,111,108,105,99,101,112,111,112,117,112,8,0,13,46,99,111,111,107,105,101,112,111,108,105,99,121,8,0,21,46,99,111,111,107,105,101,112,111,108,105,99,121,45,45,97,99,116,105,118,101,8,0,19,46,99,111,111,107,105,101,112,111,108,105,99,121,45,98,108,111,99,107,8,0,22,46,99,111,111,107,105,101,112,111,108,105,99,121,45,100,114,111,112,100,111,119,110,8,0,17,46,99,111,111,107,105,101,112,111,108,105,99,121,45,116,120,116,8,0,18,46,99,111,111,107,105,101,112,111,108,105,99,121,45,119,114,97,112,8,0,21,46,99,111,111,107,105,101,112,111,108,105,99,121,45,119,114,97,112,112,101,114,8,0,19,46,99,111,111,107,105,101,112,111,108,105,99,121,66,97,110,110,101,114,8,0,24,46,99,111,111,107,105,101,112,111,108,105,99,121,95,95,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,112,111,108,105,99,121,98,97,114,8,0,18,46,99,111,111,107,105,101,112,111,108,105,99,121,99,108,97,115,115,8,0,19,46,99,111,111,107,105,101,112,111,108,105,99,121,102,111,111,116,101,114,8,0,20,46,99,111,111,107,105,101,112,111,108,105,99,121,111,118,101,114,108,97,121,8,0,17,46,99,111,111,107,105,101,112,111,108,105,99,121,116,101,120,116,8,0,14,46,99,111,111,107,105,101,112,111,108,105,116,105,107,8,0,11,46,99,111,111,107,105,101,112,111,108,108,8,0,12,46,99,111,111,107,105,101,112,111,112,105,110,8,0,17,46,99,111,111,107,105,101,112,111,112,117,112,45,99,111,110,116,8,0,22,46,99,111,111,107,105,101,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,15,46,99,111,111,107,105,101,112,111,112,117,112,98,111,120,8,0,21,46,99,111,111,107,105,101,112,111,112,117,112,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,112,111,112,117,112,119,114,97,112,112,101,114,8,0,24,46,99,111,111,107,105,101,112,114,101,102,101,114,101,110,99,101,115,95,112,111,112,117,112,8,0,14,46,99,111,111,107,105,101,112,114,105,118,97,99,121,8,0,9,46,99,111,111,107,105,101,112,117,8,0,15,46,99,111,111,107,105,101,113,117,101,115,116,105,111,110,8,0,11,46,99,111,111,107,105,101,114,98,97,114,8,0,13,46,99,111,111,107,105,101,114,105,110,102,111,114,8,0,10,46,99,111,111,107,105,101,114,111,119,8,0,16,46,99,111,111,107,105,101,115,45,45,97,99,116,105,118,101,8,0,15,46,99,111,111,107,105,101,115,45,45,97,103,114,101,101,8,0,13,46,99,111,111,107,105,101,115,45,45,98,97,114,8,0,19,46,99,111,111,107,105,101,115,45,45,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,115,45,45,101,120,112,108,105,99,105,116,8,0,18,46,99,111,111,107,105,101,115,45,45,105,109,112,108,105,99,105,116,8,0,14,46,99,111,111,107,105,101,115,45,45,105,110,102,111,8,0,22,46,99,111,111,107,105,101,115,45,45,110,111,116,45,97,99,99,101,112,116,101,100,8,0,22,46,99,111,111,107,105,101,115,45,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,13,46,99,111,111,107,105,101,115,45,45,112,111,112,8,0,15,46,99,111,111,107,105,101,115,45,45,114,105,103,104,116,8,0,14,46,99,111,111,107,105,101,115,45,45,115,104,111,119,8,0,10,46,99,111,111,107,105,101,115,45,49,8,0,15,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,8,0,22,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,45,98,108,111,99,107,8,0,21,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,98,108,111,99,107,8,0,25,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,102,111,114,109,8,0,20,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,105,110,102,111,8,0,23,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,109,101,115,115,97,103,101,8,0,19,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,110,99,101,8,0,27,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,110,99,101,45,111,118,101,114,108,97,121,8,0,25,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,110,99,101,45,112,97,110,101,108,8,0,34,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,110,99,101,45,119,114,97,112,112,101,114,45,99,111,109,109,111,110,8,0,27,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,116,105,111,110,45,98,97,110,110,101,114,8,0,38,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,46,112,97,103,101,41,8,0,12,46,99,111,111,107,105,101,115,45,97,100,118,8,0,15,46,99,111,111,107,105,101,115,45,97,100,118,101,114,116,8,0,15,46,99,111,111,107,105,101,115,45,97,100,118,105,99,101,8,0,16,46,99,111,111,107,105,101,115,45,97,100,118,105,115,111,114,8,0,19,46,99,111,111,107,105,101,115,45,97,103,103,114,101,101,109,101,110,116,8,0,14,46,99,111,111,107,105,101,115,45,97,103,114,101,101,8,0,18,46,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,8,0,24,46,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,98,108,111,99,107,8,0,24,46,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,99,108,97,115,115,8,0,26,46,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,100,101,115,107,116,111,112,8,0,29,46,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,101,110,116,101,114,45,100,111,110,101,8,0,26,46,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,21,46,99,111,111,107,105,101,115,45,97,108,101,114,116,45,97,108,101,114,116,97,8,0,18,46,99,111,111,107,105,101,115,45,97,108,101,114,116,45,98,97,114,8,0,20,46,99,111,111,107,105,101,115,45,97,108,101,114,116,45,98,108,111,99,107,8,0,26,46,99,111,111,107,105,101,115,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,24,46,99,111,111,107,105,101,115,45,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,115,45,97,108,101,114,116,45,119,105,100,101,114,45,119,114,97,112,8,0,22,46,99,111,111,107,105,101,115,45,97,108,101,114,116,45,119,114,97,112,112,101,114,8,0,23,46,99,111,111,107,105,101,115,45,97,108,101,114,116,95,95,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,115,45,97,108,101,114,116,97,8,0,14,46,99,111,111,107,105,101,115,45,97,108,108,111,119,8,0,18,46,99,111,111,107,105,101,115,45,97,108,108,111,119,97,110,99,101,8,0,31,46,99,111,111,107,105,101,115,45,97,108,108,111,119,101,100,91,114,111,108,101,61,34,100,105,97,108,111,103,34,93,8,0,23,46,99,111,111,107,105,101,115,45,97,110,97,108,121,116,105,99,115,45,105,110,102,111,8,0,27,46,99,111,111,107,105,101,115,45,97,110,100,45,112,114,105,118,97,99,121,45,98,111,114,100,101,114,8,0,33,46,99,111,111,107,105,101,115,45,97,110,100,45,112,114,105,118,97,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,21,46,99,111,111,107,105,101,115,45,97,110,100,45,116,114,97,99,107,105,110,103,8,0,18,46,99,111,111,107,105,101,115,45,97,110,100,114,111,109,101,100,97,8,0,13,46,99,111,111,107,105,101,115,45,97,114,101,97,8,0,18,46,99,111,111,107,105,101,115,45,98,97,99,107,45,98,111,100,121,8,0,17,46,99,111,111,107,105,101,115,45,98,97,99,107,100,114,111,112,8,0,13,46,99,111,111,107,105,101,115,45,98,97,110,100,8,0,21,46,99,111,111,107,105,101,115,45,98,97,110,100,45,111,118,101,114,108,97,121,8,0,16,46,99,111,111,107,105,101,115,45,98,97,110,100,101,97,117,8,0,32,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,98,97,99,107,100,114,111,112,45,119,114,97,112,112,101,114,8,0,25,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,8,0,25,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,101,110,97,98,108,101,100,8,0,21,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,115,104,111,119,110,8,0,20,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,119,114,97,112,8,0,18,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,95,95,99,8,0,26,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,95,95,99,111,110,116,97,105,110,101,114,8,0,24,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,95,95,111,118,101,114,108,97,121,8,0,12,46,99,111,111,107,105,101,115,45,98,97,114,8,0,19,46,99,111,111,107,105,101,115,45,98,97,114,45,108,97,121,111,117,116,8,0,16,46,99,111,111,107,105,101,115,45,98,97,114,45,110,101,119,8,0,13,46,99,111,111,107,105,101,115,45,98,108,111,99,8,0,14,46,99,111,111,107,105,101,115,45,98,108,111,99,107,8,0,13,46,99,111,111,107,105,101,115,45,98,108,111,107,8,0,15,46,99,111,111,107,105,101,115,45,98,111,116,116,111,109,8,0,22,46,99,111,111,107,105,101,115,45,98,111,116,116,111,109,45,98,97,110,110,101,114,8,0,25,46,99,111,111,107,105,101,115,45,98,111,116,116,111,109,45,99,111,110,116,97,105,110,101,114,8,0,12,46,99,111,111,107,105,101,115,45,98,111,120,8,0,17,46,99,111,111,107,105,101,115,45,98,111,120,45,105,110,102,111,8,0,19,46,99,111,111,107,105,101,115,45,98,111,120,45,109,111,100,117,108,101,8,0,15,46,99,111,111,107,105,101,115,45,98,117,98,98,108,101,8,0,17,46,99,111,111,107,105,101,115,45,98,117,108,108,115,104,105,116,8,0,19,46,99,111,111,107,105,101,115,45,99,97,106,97,45,116,101,120,116,111,8,0,24,46,99,111,111,107,105,101,115,45,99,97,108,108,111,117,116,45,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,115,45,99,97,118,101,97,116,8,0,14,46,99,111,111,107,105,101,115,45,99,108,97,105,109,8,0,12,46,99,111,111,107,105,101,115,45,99,110,116,8,0,20,46,99,111,111,107,105,101,115,45,99,111,109,109,117,110,105,99,97,116,101,8,0,25,46,99,111,111,107,105,101,115,45,99,111,109,112,108,105,97,110,99,101,45,98,108,111,99,107,8,0,23,46,99,111,111,107,105,101,115,45,99,111,109,112,111,110,101,110,116,45,108,103,112,100,8,0,23,46,99,111,111,107,105,101,115,45,99,111,110,99,101,110,116,45,100,105,97,108,111,103,8,0,13,46,99,111,111,107,105,101,115,45,99,111,110,102,8,0,21,46,99,111,111,107,105,101,115,45,99,111,110,102,105,103,45,97,118,105,115,111,8,0,16,46,99,111,111,107,105,101,115,45,99,111,110,102,105,114,109,8,0,22,46,99,111,111,107,105,101,115,45,99,111,110,102,105,114,109,45,98,108,111,99,107,8,0,28,46,99,111,111,107,105,101,115,45,99,111,110,102,105,114,109,97,116,105,111,110,45,100,105,97,108,111,103,8,0,29,46,99,111,111,107,105,101,115,45,99,111,110,102,105,114,109,97,116,105,111,110,45,119,114,97,112,112,101,114,8,0,33,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,8,0,26,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,112,97,110,101,108,8,0,22,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,112,111,112,117,112,8,0,24,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,18,46,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,45,117,107,8,0,26,46,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,95,105,110,118,101,114,115,101,8,0,16,46,99,111,111,107,105,101,115,45,99,111,110,116,101,110,116,8,0,17,46,99,111,111,107,105,101,115,45,99,111,110,116,101,117,100,111,8,0,16,46,99,111,111,107,105,101,115,45,99,111,110,116,114,111,108,8,0,26,46,99,111,111,107,105,101,115,45,99,111,110,116,114,111,108,45,99,111,110,116,97,105,110,101,114,8,0,12,46,99,111,111,107,105,101,115,45,99,116,110,8,0,20,46,99,111,111,107,105,101,115,45,100,97,114,107,45,102,105,108,116,101,114,8,0,15,46,99,111,111,107,105,101,115,45,100,105,97,108,111,103,8,0,19,46,99,111,111,107,105,101,115,45,100,105,97,108,111,103,45,98,111,120,8,0,24,46,99,111,111,107,105,101,115,45,100,105,97,108,111,103,95,95,119,114,97,112,112,101,114,8,0,18,46,99,111,111,107,105,101,115,45,100,105,114,101,99,116,105,118,101,8,0,19,46,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,8,0,23,46,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,45,98,97,114,8,0,27,46,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,45,119,114,97,112,112,101,114,8,0,27,46,99,111,111,107,105,101,115,45,100,105,115,99,108,111,115,117,114,101,45,111,118,101,114,108,97,121,8,0,12,46,99,111,111,107,105,101,115,45,100,105,118,8,0,19,46,99,111,111,107,105,101,115,45,100,105,118,45,102,111,111,116,101,114,8,0,20,46,99,111,111,107,105,101,115,45,101,108,105,120,114,101,103,116,101,99,104,8,0,21,46,99,111,111,107,105,101,115,45,101,115,45,99,111,110,116,97,105,110,101,114,8,0,11,46,99,111,111,107,105,101,115,45,101,117,8,0,14,46,99,111,111,107,105,101,115,45,101,117,45,98,103,8,0,14,46,99,111,111,107,105,101,115,45,102,105,101,108,100,8,0,13,46,99,111,111,107,105,101,115,45,102,108,101,120,8,0,17,46,99,111,111,107,105,101,115,45,102,108,111,97,116,105,110,103,8,0,15,46,99,111,111,107,105,101,115,45,102,111,111,116,101,114,8,0,19,46,99,111,111,107,105,101,115,45,102,111,111,116,101,114,45,98,97,114,8,0,21,46,99,111,111,107,105,101,115,45,102,111,111,116,101,114,45,98,108,111,99,107,8,0,17,46,99,111,111,107,105,101,115,45,102,111,111,116,101,114,45,105,8,0,13,46,99,111,111,107,105,101,115,45,103,100,112,114,8,0,23,46,99,111,111,107,105,101,115,45,103,105,111,111,100,111,45,114,101,113,117,105,114,101,8,0,15,46,99,111,111,107,105,101,115,45,103,108,111,98,97,108,8,0,17,46,99,111,111,107,105,101,115,45,103,114,97,100,105,101,110,116,8,0,26,46,99,111,111,107,105,101,115,45,104,97,110,100,115,104,97,107,101,45,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,115,45,104,101,97,100,101,114,8,0,13,46,99,111,111,107,105,101,115,45,104,105,110,116,8,0,23,46,99,111,111,107,105,101,115,45,104,105,110,116,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,115,45,104,105,110,119,101,105,115,8,0,15,46,99,111,111,107,105,101,115,45,104,111,108,100,101,114,8,0,15,46,99,111,111,107,105,101,115,45,105,102,114,97,109,101,8,0,20,46,99,111,111,107,105,101,115,45,105,110,85,115,101,45,97,108,101,114,116,8,0,23,46,99,111,111,107,105,101,115,45,105,110,102,111,45,98,97,99,107,103,114,111,110,100,8,0,20,46,99,111,111,107,105,101,115,45,105,110,102,111,45,98,97,110,110,101,114,8,0,17,46,99,111,111,107,105,101,115,45,105,110,102,111,45,98,111,120,8,0,23,46,99,111,111,107,105,101,115,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,115,45,105,110,102,111,45,115,116,97,116,105,99,8,0,33,46,99,111,111,107,105,101,115,45,105,110,102,111,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,8,0,20,46,99,111,111,107,105,101,115,45,105,110,102,111,95,98,97,110,110,101,114,8,0,16,46,99,111,111,107,105,101,115,45,105,110,102,111,98,97,114,8,0,20,46,99,111,111,107,105,101,115,45,105,110,102,111,114,109,97,116,105,111,110,8,0,25,46,99,111,111,107,105,101,115,45,105,110,102,111,114,109,97,116,105,111,110,45,97,114,101,97,8,0,17,46,99,111,111,107,105,101,115,45,105,110,102,111,114,109,101,114,8,0,25,46,99,111,111,107,105,101,115,45,105,110,102,111,114,109,101,114,45,115,101,99,116,105,111,110,8,0,14,46,99,111,111,107,105,101,115,45,105,110,102,111,115,8,0,14,46,99,111,111,107,105,101,115,45,105,110,110,101,114,8,0,14,46,99,111,111,107,105,101,115,45,108,97,98,101,108,8,0,12,46,99,111,111,107,105,101,115,45,108,97,119,8,0,16,46,99,111,111,107,105,101,115,45,108,97,119,45,98,97,114,8,0,17,46,99,111,111,107,105,101,115,45,108,97,119,45,105,110,102,111,8,0,20,46,99,111,111,107,105,101,115,45,108,97,119,45,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,115,45,108,97,121,101,114,8,0,22,46,99,111,111,107,105,101,115,45,108,97,121,111,117,116,45,109,111,100,117,108,101,8,0,22,46,99,111,111,107,105,101,115,45,108,97,121,111,117,116,45,112,97,103,105,110,97,8,0,13,46,99,111,111,107,105,101,115,45,108,101,102,116,8,0,20,46,99,111,111,107,105,101,115,45,108,101,103,105,115,108,97,116,105,111,110,8,0,17,46,99,111,111,107,105,101,115,45,108,105,103,104,116,98,111,120,8,0,24,46,99,111,111,107,105,101,115,45,108,105,103,104,116,98,111,120,45,97,99,99,101,112,116,8,0,13,46,99,111,111,107,105,101,115,45,108,105,110,101,8,0,14,46,99,111,111,107,105,101,115,45,108,105,115,116,97,8,0,13,46,99,111,111,107,105,101,115,45,109,97,105,110,8,0,20,46,99,111,111,107,105,101,115,45,109,97,105,110,45,98,97,110,110,101,114,8,0,21,46,99,111,111,107,105,101,115,45,109,97,105,110,45,111,118,101,114,108,97,121,8,0,23,46,99,111,111,107,105,101,115,45,109,97,110,97,103,101,109,101,110,116,45,98,97,114,8,0,26,46,99,111,111,107,105,101,115,45,109,97,110,97,103,101,109,101,110,116,45,98,117,116,116,111,110,8,0,23,46,99,111,111,107,105,101,115,45,109,97,110,97,103,101,114,45,98,97,110,110,101,114,8,0,13,46,99,111,111,107,105,101,115,45,109,97,115,115,8,0,26,46,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,112,97,110,101,108,8,0,22,46,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,112,111,112,117,112,8,0,23,46,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,119,105,110,100,111,119,8,0,22,46,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,119,114,97,112,112,8,0,12,46,99,111,111,107,105,101,115,45,109,111,100,8,0,16,46,99,111,111,107,105,101,115,45,109,111,100,45,98,97,114,8,0,23,46,99,111,111,107,105,101,115,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,8,0,34,46,99,111,111,107,105,101,115,45,109,111,100,97,108,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,26,46,99,111,111,107,105,101,115,45,109,111,100,97,108,95,95,98,97,99,107,103,114,111,117,110,100,8,0,23,46,99,111,111,107,105,101,115,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,8,0,15,46,99,111,111,107,105,101,115,45,109,111,100,117,108,101,8,0,12,46,99,111,111,107,105,101,115,45,109,115,103,8,0,16,46,99,111,111,107,105,101,115,45,109,115,103,45,98,111,120,8,0,19,46,99,111,111,107,105,101,115,45,109,115,103,45,119,105,100,103,101,116,8,0,20,46,99,111,111,107,105,101,115,45,109,115,103,45,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,115,45,110,97,118,8,0,16,46,99,111,111,107,105,101,115,45,110,97,118,45,98,97,114,8,0,19,46,99,111,111,107,105,101,115,45,110,111,102,105,99,97,116,105,111,110,8,0,29,46,99,111,111,107,105,101,115,45,110,111,114,109,97,116,105,118,101,95,95,99,111,110,116,97,105,110,101,114,8,0,13,46,99,111,111,107,105,101,115,45,110,111,116,101,8,0,21,46,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,97,108,101,114,116,8,0,19,46,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,109,115,103,8,0,26,46,99,111,111,107,105,101,115,45,110,111,116,105,99,101,115,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,27,46,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,45,119,114,97,112,8,0,25,46,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,8,0,29,46,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,112,111,114,116,108,101,116,8,0,29,46,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,8,0,22,46,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,115,8,0,20,46,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,111,114,8,0,15,46,99,111,111,107,105,101,115,45,110,111,116,105,102,121,8,0,21,46,99,111,111,107,105,101,115,45,110,111,116,105,102,121,45,109,111,100,97,108,8,0,14,46,99,111,111,107,105,101,115,45,110,111,116,105,115,8,0,26,46,99,111,111,107,105,101,115,45,111,98,108,105,103,97,116,105,111,110,45,99,108,97,117,115,101,8,0,23,46,99,111,111,107,105,101,115,45,111,112,101,110,58,110,111,116,40,98,111,100,121,41,8,0,16,46,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,8,0,26,46,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,45,119,105,100,103,101,116,8,0,27,46,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,95,95,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,115,45,112,97,103,101,45,102,105,108,116,101,114,8,0,14,46,99,111,111,107,105,101,115,45,112,97,110,101,108,8,0,19,46,99,111,111,107,105,101,115,45,112,97,110,101,108,45,103,100,112,114,8,0,13,46,99,111,111,107,105,101,115,45,112,100,112,97,8,0,23,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,45,97,99,116,105,118,101,8,0,21,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,97,108,101,114,116,8,0,22,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,19,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,98,97,114,8,0,21,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,98,108,111,99,107,8,0,20,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,99,97,114,100,8,0,25,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,99,111,110,116,101,110,116,8,0,26,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,100,105,115,99,108,97,105,109,101,114,8,0,23,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,8,0,33,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,112,111,112,111,118,101,114,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,19,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,115,101,99,8,0,23,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,116,114,105,103,103,101,114,8,0,35,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,16,46,99,111,111,107,105,101,115,45,112,111,108,105,116,105,99,8,0,18,46,99,111,111,107,105,101,115,45,112,111,112,45,97,108,101,114,116,8,0,15,46,99,111,111,107,105,101,115,45,112,111,112,45,117,112,8,0,14,46,99,111,111,107,105,101,115,45,112,111,112,97,112,8,0,14,46,99,111,111,107,105,101,115,45,112,111,112,105,110,8,0,14,46,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,24,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,119,114,97,112,112,101,114,8,0,17,46,99,111,111,107,105,101,115,45,112,111,112,117,112,98,111,120,8,0,16,46,99,111,111,107,105,101,115,45,112,111,114,116,108,101,116,8,0,16,46,99,111,111,107,105,101,115,45,112,114,105,118,97,99,121,8,0,23,46,99,111,111,107,105,101,115,45,112,114,105,118,97,99,121,45,115,116,105,99,107,121,8,0,15,46,99,111,111,107,105,101,115,45,112,114,111,109,112,116,8,0,14,46,99,111,111,107,105,101,115,45,112,119,114,97,112,8,0,17,46,99,111,111,107,105,101,115,45,113,117,101,115,116,105,111,110,8,0,12,46,99,111,111,107,105,101,115,45,114,97,119,8,0,15,46,99,111,111,107,105,101,115,45,114,101,103,105,111,110,8,0,17,46,99,111,111,107,105,101,115,45,114,101,109,105,110,100,101,114,8,0,20,46,99,111,111,107,105,101,115,45,114,101,109,105,110,100,101,114,45,118,50,8,0,16,46,99,111,111,107,105,101,115,45,114,101,113,117,101,115,116,8,0,15,46,99,111,111,107,105,101,115,45,114,105,98,98,111,110,8,0,13,46,99,111,111,107,105,101,115,45,114,111,100,111,8,0,12,46,99,111,111,107,105,101,115,45,114,111,119,8,0,14,46,99,111,111,107,105,101,115,45,114,117,108,101,115,8,0,13,46,99,111,111,107,105,101,115,45,115,97,118,101,8,0,18,46,99,111,111,107,105,101,115,45,115,99,114,111,108,108,98,97,114,8,0,12,46,99,111,111,107,105,101,115,45,115,101,99,8,0,15,46,99,111,111,107,105,101,115,45,115,101,99,111,110,100,8,0,16,46,99,111,111,107,105,101,115,45,115,101,99,116,105,111,110,8,0,17,46,99,111,111,107,105,101,115,45,115,101,116,116,105,110,103,115,8,0,21,46,99,111,111,107,105,101,115,45,115,101,116,116,105,110,103,115,45,98,111,120,8,0,14,46,99,111,111,107,105,101,115,45,115,108,105,100,101,8,0,18,46,99,111,111,107,105,101,115,45,115,116,97,116,101,109,101,110,116,8,0,16,46,99,111,111,107,105,101,115,45,115,116,105,99,107,101,114,8,0,15,46,99,111,111,107,105,101,115,45,115,116,105,99,107,121,8,0,12,46,99,111,111,107,105,101,115,45,115,116,110,8,0,14,46,99,111,111,107,105,101,115,45,115,116,114,105,112,8,0,15,46,99,111,111,107,105,101,115,45,115,116,114,105,112,101,8,0,14,46,99,111,111,107,105,101,115,45,115,116,121,108,101,8,0,20,46,99,111,111,107,105,101,115,45,116,101,109,97,45,98,108,97,110,99,111,8,0,13,46,99,111,111,107,105,101,115,45,116,101,120,116,8,0,12,46,99,111,111,107,105,101,115,45,116,105,112,8,0,16,46,99,111,111,107,105,101,115,45,116,111,111,108,116,105,112,8,0,12,46,99,111,111,107,105,101,115,45,116,111,112,8,0,19,46,99,111,111,107,105,101,115,45,116,111,112,45,110,111,116,105,99,101,8,0,25,46,99,111,111,107,105,101,115,45,116,114,97,99,107,105,110,103,45,45,98,111,116,116,111,109,8,0,13,46,99,111,111,107,105,101,115,45,116,121,112,101,8,0,11,46,99,111,111,107,105,101,115,45,117,101,8,0,14,46,99,111,111,107,105,101,115,45,117,115,97,103,101,8,0,24,46,99,111,111,107,105,101,115,45,117,115,97,103,101,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,115,45,117,115,97,103,101,45,99,111,110,116,101,110,116,8,0,19,46,99,111,111,107,105,101,115,45,117,115,97,103,101,45,105,110,102,111,8,0,20,46,99,111,111,107,105,101,115,45,117,115,101,100,45,110,111,116,105,99,101,8,0,11,46,99,111,111,107,105,101,115,45,118,50,8,0,13,46,99,111,111,107,105,101,115,45,118,105,101,119,8,0,13,46,99,111,111,107,105,101,115,45,119,97,114,110,8,0,16,46,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,26,46,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,45,102,111,111,116,101,114,8,0,21,46,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,45,119,114,97,112,8,0,20,46,99,111,111,107,105,101,115,45,119,105,100,103,101,116,45,98,111,100,121,8,0,15,46,99,111,111,107,105,101,115,45,119,105,110,100,111,119,8,0,11,46,99,111,111,107,105,101,115,45,119,114,8,0,13,46,99,111,111,107,105,101,115,45,119,114,97,112,8,0,16,46,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,115,45,119,114,112,8,0,21,46,99,111,111,107,105,101,115,45,119,114,112,95,95,99,111,111,107,105,101,115,8,0,15,46,99,111,111,107,105,101,115,46,97,99,116,105,118,101,8,0,14,46,99,111,111,107,105,101,115,46,97,108,101,114,116,8,0,20,46,99,111,111,107,105,101,115,46,97,108,101,114,116,45,45,102,117,108,108,8,0,26,46,99,111,111,107,105,101,115,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,8,0,15,46,99,111,111,107,105,101,115,46,98,97,110,110,101,114,8,0,15,46,99,111,111,107,105,101,115,46,98,111,116,116,111,109,8,0,16,46,99,111,111,107,105,101,115,46,99,97,108,108,111,117,116,8,0,13,46,99,111,111,107,105,101,115,46,100,97,114,107,8,0,15,46,99,111,111,107,105,101,115,46,100,105,97,108,111,103,8,0,13,46,99,111,111,107,105,101,115,46,105,110,102,111,8,0,16,46,99,111,111,107,105,101,115,46,105,115,45,111,112,101,110,8,0,17,46,99,111,111,107,105,101,115,46,105,115,45,115,104,111,119,110,8,0,13,46,99,111,111,107,105,101,115,46,112,98,45,48,8,0,21,46,99,111,111,107,105,101,115,46,112,114,105,110,116,45,104,105,100,100,101,110,8,0,19,46,99,111,111,107,105,101,115,46,112,114,105,118,97,99,121,76,97,119,8,0,12,46,99,111,111,107,105,101,115,46,114,111,119,8,0,33,46,99,111,111,107,105,101,115,46,115,104,111,119,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,8,0,17,46,99,111,111,107,105,101,115,46,115,105,116,101,45,109,115,103,8,0,18,46,99,111,111,107,105,101,115,46,115,108,105,100,101,73,110,85,112,8,0,18,46,99,111,111,107,105,101,115,46,115,118,45,108,97,121,111,117,116,8,0,20,46,99,111,111,107,105,101,115,46,115,118,45,118,101,114,116,105,99,97,108,8,0,20,46,99,111,111,107,105,101,115,46,116,101,120,116,45,99,101,110,116,101,114,8,0,9,46,99,111,111,107,105,101,115,49,8,0,10,46,99,111,111,107,105,101,115,50,50,8,0,19,46,99,111,111,107,105,101,115,65,99,99,101,112,116,97,116,105,111,110,8,0,13,46,99,111,111,107,105,101,115,65,103,114,101,101,8,0,17,46,99,111,111,107,105,101,115,65,103,114,101,101,109,101,110,116,8,0,13,46,99,111,111,107,105,101,115,65,108,101,114,116,8,0,16,46,99,111,111,107,105,101,115,65,108,101,114,116,66,111,120,8,0,20,46,99,111,111,107,105,101,115,65,108,101,114,116,87,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,115,65,118,105,115,111,8,0,18,46,99,111,111,107,105,101,115,66,97,99,107,103,114,111,117,110,100,8,0,19,46,99,111,111,107,105,101,115,66,97,110,110,101,114,66,108,111,99,107,8,0,21,46,99,111,111,107,105,101,115,66,97,110,110,101,114,79,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,115,66,97,110,110,101,114,83,104,111,119,110,8,0,18,46,99,111,111,107,105,101,115,66,97,114,45,104,111,108,100,101,114,8,0,21,46,99,111,111,107,105,101,115,66,97,114,58,110,111,116,40,98,111,100,121,41,8,0,13,46,99,111,111,107,105,101,115,66,103,67,108,115,8,0,12,46,99,111,111,107,105,101,115,66,108,111,99,8,0,13,46,99,111,111,107,105,101,115,66,108,111,99,107,8,0,14,46,99,111,111,107,105,101,115,66,111,116,116,111,109,8,0,17,46,99,111,111,107,105,101,115,66,111,116,116,111,109,66,97,114,8,0,11,46,99,111,111,107,105,101,115,66,111,120,8,0,9,46,99,111,111,107,105,101,115,67,8,0,13,46,99,111,111,107,105,101,115,67,108,97,115,115,8,0,15,46,99,111,111,107,105,101,115,67,111,110,102,105,114,109,8,0,20,46,99,111,111,107,105,101,115,67,111,110,102,105,114,109,97,116,105,111,110,8,0,20,46,99,111,111,107,105,101,115,67,111,110,115,101,110,116,80,111,112,85,112,8,0,21,46,99,111,111,107,105,101,115,67,111,110,115,101,110,116,95,111,117,116,101,114,8,0,17,46,99,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,8,0,15,46,99,111,111,107,105,101,115,67,111,110,116,101,110,116,8,0,16,46,99,111,111,107,105,101,115,67,111,114,114,101,105,111,115,8,0,22,46,99,111,111,107,105,101,115,68,105,115,97,98,108,101,100,66,97,110,110,101,114,8,0,18,46,99,111,111,107,105,101,115,68,105,115,99,108,97,105,109,101,114,8,0,14,46,99,111,111,107,105,101,115,70,111,111,116,101,114,8,0,14,46,99,111,111,107,105,101,115,72,101,97,100,101,114,8,0,12,46,99,111,111,107,105,101,115,72,105,100,101,8,0,12,46,99,111,111,107,105,101,115,73,110,102,111,8,0,17,46,99,111,111,107,105,101,115,73,110,102,111,66,108,111,99,107,8,0,15,46,99,111,111,107,105,101,115,73,110,102,111,66,111,120,8,0,18,46,99,111,111,107,105,101,115,73,110,102,111,72,111,108,100,101,114,8,0,18,46,99,111,111,107,105,101,115,73,110,102,111,95,109,111,100,97,108,8,0,19,46,99,111,111,107,105,101,115,73,110,102,111,114,109,97,116,105,111,110,8,0,16,46,99,111,111,107,105,101,115,73,110,102,111,114,109,101,114,8,0,22,46,99,111,111,107,105,101,115,76,97,119,65,99,99,101,112,116,97,116,105,111,110,8,0,13,46,99,111,111,107,105,101,115,76,97,121,101,114,8,0,18,46,99,111,111,107,105,101,115,76,101,103,97,108,82,117,108,101,115,8,0,38,46,99,111,111,107,105,101,115,77,97,110,97,103,101,109,101,110,116,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,15,46,99,111,111,107,105,101,115,77,101,115,115,97,103,101,8,0,21,46,99,111,111,107,105,101,115,77,101,115,115,97,103,101,66,97,110,110,101,114,8,0,20,46,99,111,111,107,105,101,115,77,101,115,115,97,103,101,76,97,121,101,114,8,0,19,46,99,111,111,107,105,101,115,77,101,115,115,97,103,101,87,114,97,112,8,0,11,46,99,111,111,107,105,101,115,77,115,103,8,0,16,46,99,111,111,107,105,101,115,77,115,103,95,119,114,97,112,8,0,18,46,99,111,111,107,105,101,115,78,97,118,77,101,115,115,97,103,101,8,0,11,46,99,111,111,107,105,101,115,78,101,119,8,0,12,46,99,111,111,107,105,101,115,78,111,116,101,8,0,14,46,99,111,111,107,105,101,115,78,111,116,105,99,101,8,0,23,46,99,111,111,107,105,101,115,78,111,116,105,99,101,67,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,8,0,25,46,99,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,79,117,116,101,114,8,0,29,46,99,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,95,95,119,114,97,112,112,101,114,8,0,23,46,99,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,95,118,49,8,0,13,46,99,111,111,107,105,101,115,79,112,116,105,110,8,0,15,46,99,111,111,107,105,101,115,79,118,101,114,108,97,121,8,0,16,46,99,111,111,107,105,101,115,79,118,101,114,108,97,121,50,8,0,19,46,99,111,111,107,105,101,115,79,118,101,114,108,97,121,50,66,111,120,8,0,13,46,99,111,111,107,105,101,115,80,97,110,101,108,8,0,23,46,99,111,111,107,105,101,115,80,97,110,101,108,66,97,99,107,103,114,111,117,110,100,8,0,11,46,99,111,111,107,105,101,115,80,105,101,8,0,14,46,99,111,111,107,105,101,115,80,105,115,107,111,116,8,0,11,46,99,111,111,107,105,101,115,80,111,108,8,0,14,46,99,111,111,107,105,101,115,80,111,108,105,99,121,8,0,23,46,99,111,111,107,105,101,115,80,111,108,105,99,121,67,111,110,116,97,105,110,101,114,8,0,13,46,99,111,111,107,105,101,115,80,111,112,85,112,8,0,13,46,99,111,111,107,105,101,115,80,111,112,117,112,8,0,20,46,99,111,111,107,105,101,115,80,114,105,118,97,99,121,76,97,121,101,114,8,0,11,46,99,111,111,107,105,101,115,80,114,111,8,0,12,46,99,111,111,107,105,101,115,83,104,111,119,8,0,19,46,99,111,111,107,105,101,115,83,105,116,101,77,101,115,115,97,103,101,8,0,13,46,99,111,111,107,105,101,115,83,116,114,105,112,8,0,11,46,99,111,111,107,105,101,115,84,105,112,8,0,17,46,99,111,111,107,105,101,115,84,105,112,73,102,114,97,109,101,8,0,15,46,99,111,111,107,105,101,115,84,111,112,95,100,105,118,8,0,11,46,99,111,111,107,105,101,115,84,120,116,8,0,20,46,99,111,111,107,105,101,115,85,115,97,103,101,77,101,115,115,97,103,101,8,0,15,46,99,111,111,107,105,101,115,87,97,114,110,105,110,103,8,0,25,46,99,111,111,107,105,101,115,87,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,24,46,99,111,111,107,105,101,115,87,97,114,110,105,110,103,67,111,110,116,97,105,110,101,114,8,0,14,46,99,111,111,107,105,101,115,87,105,110,100,111,119,8,0,10,46,99,111,111,107,105,101,115,87,114,8,0,12,46,99,111,111,107,105,101,115,87,114,97,112,8,0,15,46,99,111,111,107,105,101,115,87,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,115,87,114,112,8,0,35,46,99,111,111,107,105,101,115,91,100,97,116,97,45,112,108,117,103,105,110,45,97,99,99,101,112,116,99,111,111,107,105,101,115,93,8,0,28,46,99,111,111,107,105,101,115,91,100,97,116,97,45,112,108,117,103,105,110,45,99,111,111,107,105,101,93,8,0,20,46,99,111,111,107,105,101,115,95,95,98,97,99,107,103,114,111,117,110,100,8,0,16,46,99,111,111,107,105,101,115,95,95,98,97,110,110,101,114,8,0,25,46,99,111,111,107,105,101,115,95,95,98,97,110,110,101,114,95,95,119,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,115,95,95,98,97,114,8,0,21,46,99,111,111,107,105,101,115,95,95,98,97,114,95,95,104,101,97,100,101,114,8,0,15,46,99,111,111,107,105,101,115,95,95,98,108,111,99,107,8,0,13,46,99,111,111,107,105,101,115,95,95,98,111,120,8,0,14,46,99,111,111,107,105,101,115,95,95,99,97,114,100,8,0,17,46,99,111,111,107,105,101,115,95,95,99,111,110,116,101,110,116,8,0,26,46,99,111,111,107,105,101,115,95,95,100,105,118,45,45,100,105,118,45,111,118,101,114,108,97,121,8,0,14,46,99,111,111,107,105,101,115,95,95,105,110,102,111,8,0,20,46,99,111,111,107,105,101,115,95,95,105,110,102,111,95,98,108,111,99,107,8,0,15,46,99,111,111,107,105,101,115,95,95,105,110,110,101,114,8,0,17,46,99,111,111,107,105,101,115,95,95,108,97,121,111,118,101,114,8,0,17,46,99,111,111,107,105,101,115,95,95,109,101,115,115,97,103,101,8,0,15,46,99,111,111,107,105,101,115,95,95,109,111,100,97,108,8,0,16,46,99,111,111,107,105,101,115,95,95,110,111,116,105,99,101,8,0,22,46,99,111,111,107,105,101,115,95,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,17,46,99,111,111,107,105,101,115,95,95,111,118,101,114,108,97,121,8,0,15,46,99,111,111,107,105,101,115,95,95,112,97,110,101,108,8,0,15,46,99,111,111,107,105,101,115,95,95,112,111,112,117,112,8,0,17,46,99,111,111,107,105,101,115,95,95,115,101,99,116,105,111,110,8,0,14,46,99,111,111,107,105,101,115,95,95,115,104,111,119,8,0,13,46,99,111,111,107,105,101,115,95,95,115,116,100,8,0,12,46,99,111,111,107,105,101,115,95,95,119,114,8,0,14,46,99,111,111,107,105,101,115,95,95,119,114,97,112,8,0,16,46,99,111,111,107,105,101,115,95,95,119,114,97,112,101,114,8,0,15,46,99,111,111,107,105,101,115,95,97,99,99,101,112,116,8,0,26,46,99,111,111,107,105,101,115,95,97,99,99,101,112,116,95,99,111,110,116,97,105,110,116,101,114,8,0,19,46,99,111,111,107,105,101,115,95,97,99,99,101,112,116,97,110,99,101,8,0,15,46,99,111,111,107,105,101,115,95,97,99,116,105,118,101,8,0,15,46,99,111,111,107,105,101,115,95,97,100,118,105,99,101,8,0,15,46,99,111,111,107,105,101,115,95,97,100,118,105,100,101,8,0,12,46,99,111,111,107,105,101,115,95,97,102,102,8,0,14,46,99,111,111,107,105,101,115,95,97,103,114,101,101,8,0,18,46,99,111,111,107,105,101,115,95,97,103,114,101,101,109,101,110,116,8,0,14,46,99,111,111,107,105,101,115,95,97,108,101,114,116,8,0,22,46,99,111,111,107,105,101,115,95,97,108,101,114,116,95,119,114,97,112,112,101,114,8,0,16,46,99,111,111,107,105,101,115,95,97,108,108,111,119,101,100,8,0,14,46,99,111,111,107,105,101,115,95,97,112,112,108,121,8,0,13,46,99,111,111,107,105,101,115,95,97,118,105,115,8,0,10,46,99,111,111,107,105,101,115,95,98,8,0,19,46,99,111,111,107,105,101,115,95,98,97,99,107,103,114,111,117,110,100,8,0,16,46,99,111,111,107,105,101,115,95,98,97,110,100,101,97,117,8,0,24,46,99,111,111,107,105,101,115,95,98,97,110,110,101,114,95,98,97,99,107,100,114,111,112,8,0,23,46,99,111,111,107,105,101,115,95,98,97,110,110,101,114,95,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,115,95,98,97,114,8,0,13,46,99,111,111,107,105,101,115,95,98,108,111,99,8,0,14,46,99,111,111,107,105,101,115,95,98,108,111,99,107,8,0,15,46,99,111,111,107,105,101,115,95,98,111,116,116,111,109,8,0,12,46,99,111,111,107,105,101,115,95,98,111,120,8,0,16,46,99,111,111,107,105,101,115,95,99,111,110,102,105,114,109,8,0,21,46,99,111,111,107,105,101,115,95,99,111,110,102,105,114,109,97,116,105,111,110,8,0,16,46,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,8,0,21,46,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,45,115,104,111,119,8,0,23,46,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,8,0,13,46,99,111,111,107,105,101,115,95,99,111,110,116,8,0,18,46,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,115,95,99,111,110,116,101,110,116,8,0,15,46,99,111,111,107,105,101,115,95,99,111,111,107,105,101,8,0,13,46,99,111,111,107,105,101,115,95,99,116,97,115,8,0,15,46,99,111,111,107,105,101,115,95,99,117,101,114,112,111,8,0,20,46,99,111,111,107,105,101,115,95,100,101,99,108,97,114,97,116,105,111,110,8,0,19,46,99,111,111,107,105,101,115,95,100,105,115,99,108,97,105,109,101,114,8,0,29,46,99,111,111,107,105,101,115,95,100,105,115,99,108,97,105,109,101,114,95,99,111,110,116,97,105,110,101,114,8,0,12,46,99,111,111,107,105,101,115,95,100,105,118,8,0,11,46,99,111,111,107,105,101,115,95,101,117,8,0,14,46,99,111,111,107,105,101,115,95,101,117,95,115,97,8,0,15,46,99,111,111,107,105,101,115,95,102,111,111,116,101,114,8,0,13,46,99,111,111,107,105,101,115,95,102,117,108,108,8,0,15,46,99,111,111,107,105,101,115,95,104,101,97,100,101,114,8,0,13,46,99,111,111,107,105,101,115,95,105,110,102,111,8,0,17,46,99,111,111,107,105,101,115,95,107,111,110,116,101,110,101,114,8,0,30,46,99,111,111,107,105,101,115,95,108,97,119,95,99,111,109,112,108,105,97,110,99,101,95,102,111,111,116,101,114,8,0,14,46,99,111,111,107,105,101,115,95,108,97,121,101,114,8,0,27,46,99,111,111,107,105,101,115,95,109,97,110,97,103,101,109,101,110,116,45,111,118,101,114,108,97,121,8,0,26,46,99,111,111,107,105,101,115,95,109,97,110,97,103,101,109,101,110,116,45,116,111,112,98,97,114,8,0,16,46,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,8,0,20,46,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,95,98,97,114,8,0,26,46,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,8,0,14,46,99,111,111,107,105,101,115,95,109,111,100,97,108,8,0,12,46,99,111,111,107,105,101,115,95,109,115,103,8,0,15,46,99,111,111,107,105,101,115,95,110,111,116,105,99,101,8,0,15,46,99,111,111,107,105,101,115,95,110,111,116,105,101,115,8,0,21,46,99,111,111,107,105,101,115,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,17,46,99,111,111,107,105,101,115,95,110,111,116,105,102,105,101,114,8,0,16,46,99,111,111,107,105,101,115,95,111,118,101,114,108,97,121,8,0,24,46,99,111,111,107,105,101,115,95,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,8,0,24,46,99,111,111,107,105,101,115,95,111,118,101,114,108,97,121,95,119,114,97,112,112,101,114,8,0,19,46,99,111,111,107,105,101,115,95,112,97,110,101,108,95,50,48,50,50,8,0,20,46,99,111,111,107,105,101,115,95,112,100,105,115,99,108,97,105,109,101,114,8,0,15,46,99,111,111,107,105,101,115,95,112,111,108,105,99,121,8,0,21,46,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,97,108,101,114,116,8,0,19,46,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,98,111,120,8,0,25,46,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,99,111,110,116,97,105,110,101,114,8,0,30,46,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,105,110,102,111,114,109,95,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,115,95,112,111,112,105,110,8,0,14,46,99,111,111,107,105,101,115,95,112,111,112,117,112,8,0,31,46,99,111,111,107,105,101,115,95,112,111,112,117,112,95,98,111,116,116,111,109,95,99,111,110,116,97,105,110,101,114,8,0,24,46,99,111,111,107,105,101,115,95,112,114,105,118,97,99,121,95,119,114,97,112,112,101,114,8,0,30,46,99,111,111,107,105,101,115,95,114,101,103,117,108,97,116,105,111,110,95,95,99,111,110,116,97,105,110,101,114,8,0,15,46,99,111,111,107,105,101,115,95,115,116,105,99,107,121,8,0,22,46,99,111,111,107,105,101,115,95,115,116,114,105,112,45,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,115,95,118,49,54,8,0,13,46,99,111,111,107,105,101,115,95,119,97,114,110,8,0,16,46,99,111,111,107,105,101,115,95,119,97,114,110,105,110,103,8,0,20,46,99,111,111,107,105,101,115,95,119,97,114,110,105,110,103,95,98,97,114,8,0,13,46,99,111,111,107,105,101,115,95,119,114,97,112,8,0,16,46,99,111,111,107,105,101,115,95,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,115,95,121,101,115,8,0,12,46,99,111,111,107,105,101,115,95,121,117,109,8,0,21,46,99,111,111,107,105,101,115,97,99,99,101,112,116,97,110,99,101,109,115,103,8,0,13,46,99,111,111,107,105,101,115,97,108,101,114,116,8,0,14,46,99,111,111,107,105,101,115,97,110,115,119,101,114,8,0,14,46,99,111,111,107,105,101,115,98,97,110,110,101,114,8,0,11,46,99,111,111,107,105,101,115,98,97,114,8,0,11,46,99,111,111,107,105,101,115,98,108,107,8,0,14,46,99,111,111,107,105,101,115,98,111,116,116,111,109,8,0,11,46,99,111,111,107,105,101,115,98,111,120,8,0,18,46,99,111,111,107,105,101,115,98,111,120,45,98,117,98,98,108,101,8,0,17,46,99,111,111,107,105,101,115,98,121,116,104,101,98,111,111,107,8,0,9,46,99,111,111,107,105,101,115,99,8,0,25,46,99,111,111,107,105,101,115,100,105,114,101,99,116,105,118,101,45,119,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,115,100,105,118,8,0,23,46,99,111,111,107,105,101,115,101,97,108,45,98,97,110,110,101,114,45,98,111,100,121,8,0,10,46,99,111,111,107,105,101,115,101,99,8,0,10,46,99,111,111,107,105,101,115,101,116,8,0,15,46,99,111,111,107,105,101,115,101,116,116,105,110,103,115,8,0,13,46,99,111,111,107,105,101,115,102,114,97,109,101,8,0,12,46,99,111,111,107,105,101,115,104,97,100,101,8,0,14,46,99,111,111,107,105,101,115,104,101,97,100,101,114,8,0,13,46,99,111,111,107,105,101,115,104,111,121,101,114,8,0,12,46,99,111,111,107,105,101,115,105,110,102,111,8,0,15,46,99,111,111,107,105,101,115,105,110,102,111,98,111,120,8,0,19,46,99,111,111,107,105,101,115,105,110,102,111,114,109,97,116,105,111,110,8,0,21,46,99,111,111,107,105,101,115,105,116,101,95,109,97,105,110,112,111,112,117,112,8,0,11,46,99,111,111,107,105,101,115,108,97,119,8,0,14,46,99,111,111,107,105,101,115,108,111,97,100,101,100,8,0,15,46,99,111,111,107,105,101,115,109,97,110,97,103,101,114,8,0,15,46,99,111,111,107,105,101,115,109,101,115,115,97,103,101,8,0,10,46,99,111,111,107,105,101,115,109,115,8,0,14,46,99,111,111,107,105,101,115,110,111,116,105,99,101,8,0,20,46,99,111,111,107,105,101,115,110,111,116,105,102,105,99,97,116,105,111,110,8,0,12,46,99,111,111,107,105,101,115,112,97,110,101,8,0,13,46,99,111,111,107,105,101,115,112,97,110,101,108,8,0,13,46,99,111,111,107,105,101,115,112,108,97,115,104,8,0,23,46,99,111,111,107,105,101,115,112,108,117,101,45,97,99,98,45,98,97,110,110,101,114,8,0,19,46,99,111,111,107,105,101,115,112,108,117,115,45,99,101,110,116,101,114,8,0,14,46,99,111,111,107,105,101,115,112,111,108,105,99,121,8,0,20,46,99,111,111,107,105,101,115,112,111,112,45,99,111,110,97,105,110,101,114,8,0,13,46,99,111,111,107,105,101,115,112,111,112,117,112,8,0,9,46,99,111,111,107,105,101,115,113,8,0,9,46,99,111,111,107,105,101,115,115,8,0,12,46,99,111,111,107,105,101,115,116,114,105,112,8,0,16,46,99,111,111,107,105,101,115,116,114,105,112,119,114,97,112,8,0,13,46,99,111,111,107,105,101,115,117,115,97,103,101,8,0,11,46,99,111,111,107,105,101,115,118,105,115,8,0,15,46,99,111,111,107,105,101,115,119,114,97,112,112,101,114,8,0,9,46,99,111,111,107,105,101,115,121,8,0,12,46,99,111,111,107,105,101,116,101,114,109,115,8,0,15,46,99,111,111,107,105,101,116,101,115,116,95,98,110,111,8,0,11,46,99,111,111,107,105,101,116,101,120,116,8,0,14,46,99,111,111,107,105,101,116,111,97,115,116,101,114,8,0,19,46,99,111,111,107,105,101,116,111,111,108,45,109,101,115,115,97,103,101,8,0,10,46,99,111,111,107,105,101,116,111,112,8,0,16,46,99,111,111,107,105,101,116,111,112,98,97,110,110,101,114,8,0,10,46,99,111,111,107,105,101,116,120,116,8,0,20,46,99,111,111,107,105,101,117,115,97,103,101,45,99,111,110,102,105,114,109,8,0,18,46,99,111,111,107,105,101,117,115,97,103,101,95,95,98,97,115,101,8,0,15,46,99,111,111,107,105,101,117,115,101,45,111,112,101,110,8,0,19,46,99,111,111,107,105,101,118,97,114,110,105,110,103,45,119,114,97,112,8,0,19,46,99,111,111,107,105,101,119,45,108,97,119,45,98,97,110,110,101,114,8,0,16,46,99,111,111,107,105,101,119,76,97,119,76,97,121,101,114,8,0,21,46,99,111,111,107,105,101,119,97,108,108,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,119,97,108,108,45,119,114,97,112,112,101,114,8,0,20,46,99,111,111,107,105,101,119,97,108,108,95,95,119,114,97,112,112,101,114,8,0,16,46,99,111,111,107,105,101,119,97,108,108,112,111,112,117,112,8,0,11,46,99,111,111,107,105,101,119,97,114,110,8,0,18,46,99,111,111,107,105,101,119,97,114,110,105,110,103,45,98,97,114,8,0,24,46,99,111,111,107,105,101,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,119,97,114,110,105,110,103,45,105,110,110,101,114,8,0,22,46,99,111,111,107,105,101,119,97,114,110,105,110,103,45,119,114,97,112,112,101,114,8,0,34,46,99,111,111,107,105,101,119,97,114,110,105,110,103,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,17,46,99,111,111,107,105,101,119,97,114,110,105,110,103,95,98,103,8,0,17,46,99,111,111,107,105,101,119,97,114,110,105,110,103,95,102,103,8,0,22,46,99,111,111,107,105,101,119,97,114,110,105,110,103,95,119,114,97,112,112,101,114,8,0,17,46,99,111,111,107,105,101,119,97,114,110,105,110,103,98,111,120,8,0,10,46,99,111,111,107,105,101,119,101,116,8,0,16,46,99,111,111,107,105,101,119,101,116,103,101,118,105,110,103,8,0,13,46,99,111,111,107,105,101,119,105,100,103,101,116,8,0,20,46,99,111,111,107,105,101,119,105,110,100,111,119,46,116,111,97,115,116,49,8,0,11,46,99,111,111,107,105,101,119,114,97,112,8,0,14,46,99,111,111,107,105,101,119,114,97,112,112,101,114,8,0,25,46,99,111,111,107,105,101,119,114,97,112,112,101,114,45,100,105,115,99,108,111,115,117,114,101,8,0,8,46,99,111,111,107,105,101,122,8,0,8,46,99,111,111,107,105,102,121,8,0,17,46,99,111,111,107,105,108,108,105,97,110,45,97,108,101,114,116,8,0,9,46,99,111,111,107,105,110,102,111,8,0,18,46,99,111,111,107,105,110,102,111,95,95,119,114,97,112,112,101,114,8,0,16,46,99,111,111,107,105,110,102,111,95,98,111,116,116,111,109,8,0,13,46,99,111,111,107,105,110,102,111,95,116,111,112,8,0,7,46,99,111,111,107,105,122,8,0,8,46,99,111,111,107,109,115,103,8,0,10,46,99,111,111,107,112,111,112,117,112,8,0,11,46,99,111,111,107,115,105,101,100,105,118,8,0,9,46,99,111,111,107,115,107,111,109,8,0,12,46,99,111,111,107,119,97,114,110,105,110,103,8,0,14,46,99,111,111,107,119,97,114,110,105,110,103,99,122,8,0,14,46,99,111,111,107,121,45,112,111,108,105,99,105,121,8,0,12,46,99,111,111,111,111,111,111,111,107,105,101,8,0,13,46,99,111,112,107,105,101,80,111,108,105,99,121,8,0,19,46,99,111,114,101,45,67,111,111,107,105,101,115,80,111,108,105,99,121,8,0,20,46,99,111,114,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,16,46,99,111,114,110,101,114,80,111,108,105,99,121,84,97,98,8,0,15,46,99,111,114,114,101,111,115,67,111,111,107,105,101,115,8,0,20,46,99,111,117,99,111,117,46,99,111,111,107,105,101,95,115,108,105,100,101,8,0,21,46,99,112,45,67,111,111,107,105,101,115,68,105,115,99,108,97,105,109,101,114,8,0,17,46,99,112,45,97,108,101,114,116,45,109,101,115,115,97,103,101,8,0,10,46,99,112,45,98,97,110,110,101,114,8,0,13,46,99,112,45,98,111,120,45,97,108,101,114,116,8,0,19,46,99,112,45,98,111,120,45,97,108,101,114,116,45,112,111,112,117,112,8,0,17,46,99,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,14,46,99,112,45,99,111,111,107,105,101,45,98,97,114,8,0,14,46,99,112,45,99,111,111,107,105,101,45,116,105,112,8,0,15,46,99,112,45,99,111,111,107,105,101,45,119,114,97,112,8,0,11,46,99,112,45,99,111,111,107,105,101,115,8,0,21,46,99,112,45,99,117,114,116,97,105,110,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,112,45,105,110,102,111,45,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,112,45,109,111,100,117,108,101,45,105,110,102,111,95,98,97,114,8,0,17,46,99,112,45,112,111,112,117,112,45,111,118,101,114,108,97,121,8,0,16,46,99,112,45,115,108,105,100,101,114,45,112,111,112,117,112,8,0,16,46,99,112,49,67,111,111,107,105,101,66,97,110,110,101,114,8,0,11,46,99,112,77,111,100,97,108,87,105,110,8,0,39,46,99,112,79,118,101,114,108,97,121,91,100,97,116,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,93,8,0,17,46,99,112,95,99,111,111,107,105,101,45,100,105,97,108,111,103,8,0,26,46,99,112,98,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,119,105,100,103,101,116,8,0,12,46,99,112,99,107,45,98,97,110,110,101,114,8,0,17,46,99,112,103,95,109,101,115,115,97,103,101,95,105,110,102,111,8,0,16,46,99,112,104,45,99,99,112,97,95,98,97,110,110,101,114,8,0,12,46,99,112,109,45,99,111,111,107,105,101,115,8,0,11,46,99,112,110,98,45,105,110,110,101,114,8,0,25,46,99,112,110,98,45,109,111,100,97,108,45,115,104,111,119,45,102,97,100,101,45,111,117,116,8,0,11,46,99,112,110,98,45,111,117,116,101,114,8,0,9,46,99,112,110,98,45,116,111,112,8,0,16,46,99,112,111,108,105,99,121,45,119,97,114,110,105,110,103,8,0,13,46,99,112,112,97,46,115,101,99,116,105,111,110,8,0,11,46,99,112,115,45,98,97,110,110,101,114,8,0,18,46,99,112,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,99,114,101,97,116,105,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,35,46,99,114,101,97,118,101,97,45,98,97,110,110,101,114,45,99,111,110,115,101,110,116,101,109,101,110,116,45,99,111,111,107,105,101,8,0,33,46,99,114,101,97,118,101,97,45,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,18,46,99,114,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,10,46,99,115,45,99,111,111,107,105,101,8,0,24,46,99,115,45,99,111,111,107,105,101,45,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,18,46,99,115,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,16,46,99,115,45,105,110,102,111,45,119,114,97,112,112,101,114,8,0,19,46,99,115,45,114,111,119,95,95,99,111,111,107,105,101,45,98,97,114,8,0,28,46,99,115,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,115,112,112,112,45,99,111,110,116,97,105,110,101,114,8,0,17,46,99,115,112,120,45,99,111,111,107,105,101,115,45,98,97,114,8,0,18,46,99,115,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,99,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,8,0,42,46,99,116,45,117,108,116,105,109,97,116,101,45,103,100,112,114,45,99,111,111,107,105,101,45,102,117,108,108,80,97,110,101,108,45,111,118,101,114,108,97,121,8,0,14,46,99,116,67,111,111,107,105,101,84,101,114,109,115,8,0,11,46,99,116,97,45,99,111,111,107,105,101,8,0,18,46,99,116,108,95,67,111,111,107,105,101,87,97,114,110,105,110,103,8,0,12,46,99,116,110,45,99,111,111,107,105,101,115,8,0,12,46,99,116,110,95,99,111,111,107,105,101,115,8,0,14,46,99,116,114,108,67,111,111,107,105,101,66,97,114,8,0,13,46,99,117,107,105,46,99,117,107,105,112,114,101,8,0,10,46,99,117,115,116,45,101,115,112,97,8,0,24,46,99,117,115,116,111,109,45,99,104,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,22,46,99,117,115,116,111,109,45,99,111,110,116,97,105,110,101,114,45,108,103,112,100,8,0,21,46,99,117,115,116,111,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,28,46,99,117,115,116,111,109,45,99,111,111,107,105,101,45,102,111,111,116,101,114,45,98,97,110,110,101,114,8,0,18,46,99,117,115,116,111,109,45,99,111,111,107,105,101,45,109,115,103,8,0,15,46,99,117,115,116,111,109,45,99,111,111,107,105,101,115,8,0,13,46,99,117,115,116,111,109,67,111,111,107,105,101,8,0,21,46,99,117,115,116,111,109,67,111,111,107,105,101,66,97,99,107,100,114,111,112,8,0,14,46,99,117,115,116,111,109,95,99,111,111,107,105,101,8,0,21,46,99,117,115,116,111,109,95,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,29,46,99,117,115,116,111,109,101,114,45,105,110,102,111,45,98,108,111,99,107,95,95,99,111,111,99,107,105,101,8,0,23,46,99,117,115,116,111,109,105,115,101,45,99,111,111,107,105,101,115,45,109,97,105,110,8,0,17,46,99,118,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,12,46,99,118,50,45,119,114,97,112,112,101,114,8,0,25,46,99,119,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,117,105,45,115,100,107,8,0,12,46,99,119,99,111,111,107,105,101,108,97,119,8,0,14,46,99,119,99,111,111,107,105,101,108,97,119,98,103,8,0,25,46,99,119,115,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,24,46,99,119,116,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,8,0,16,46,99,120,95,99,111,111,107,105,101,78,111,116,105,99,101,8,0,24,46,99,120,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,99,121,45,112,111,112,105,110,45,99,111,111,107,105,101,8,0,28,46,99,121,98,111,116,45,99,111,111,107,105,101,98,111,116,45,112,108,97,99,101,104,111,108,100,101,114,8,0,14,46,99,122,45,99,111,111,107,105,101,45,98,97,114,8,0,17,46,99,122,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,13,46,99,122,45,99,111,111,107,105,101,98,97,114,8,0,21,46,100,45,99,99,45,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,8,0,13,46,100,45,99,111,111,107,105,101,45,98,97,114,8,0,19,46,100,45,99,111,111,107,105,101,66,97,110,110,101,114,86,105,101,119,8,0,10,46,100,45,99,111,111,107,105,101,115,8,0,14,46,100,67,111,111,107,105,101,115,65,108,101,114,116,8,0,9,46,100,95,99,111,95,98,111,120,8,0,20,46,100,97,97,99,45,100,101,115,107,116,111,112,45,110,111,116,105,99,101,8,0,20,46,100,97,103,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,8,0,28,46,100,97,104,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,111,118,101,114,108,97,121,8,0,19,46,100,97,114,107,46,103,100,112,114,45,115,101,116,116,105,110,103,115,8,0,11,46,100,97,115,45,99,111,111,107,105,101,8,0,18,46,100,97,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,28,46,100,97,115,104,98,108,111,103,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,8,0,20,46,100,97,116,97,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,23,46,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,110,111,116,105,99,101,8,0,19,46,100,97,116,97,80,114,105,118,97,99,121,79,118,101,114,108,97,121,8,0,30,46,100,97,116,97,80,114,111,116,101,99,116,105,111,110,83,101,116,116,105,110,103,115,87,114,97,112,112,101,114,8,0,25,46,100,97,116,97,112,114,105,118,97,99,121,45,99,111,111,107,105,101,115,45,110,111,116,101,8,0,17,46,100,97,116,101,98,111,111,107,45,99,111,111,107,105,101,115,8,0,18,46,100,97,116,101,110,115,99,104,117,116,122,98,97,110,110,101,114,8,0,18,46,100,97,116,101,110,115,99,104,117,116,122,99,111,111,107,105,101,8,0,19,46,100,97,116,101,110,115,99,104,117,116,122,104,105,110,119,101,105,115,8,0,17,46,100,98,45,99,111,111,107,105,101,45,114,101,109,97,114,107,8,0,17,46,100,98,97,121,67,111,111,107,105,101,83,101,108,101,99,116,8,0,19,46,100,98,101,45,99,111,110,116,101,110,116,95,99,111,111,107,105,101,8,0,22,46,100,98,104,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,18,46,100,98,105,95,95,99,111,111,107,105,101,98,97,110,110,101,114,8,0,14,46,100,98,107,45,99,111,111,107,105,101,98,97,114,8,0,17,46,100,98,116,102,121,45,99,111,111,107,105,101,95,98,111,120,8,0,26,46,100,99,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,116,111,103,103,108,101,114,8,0,21,46,100,99,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,12,46,100,99,67,111,111,107,105,101,66,97,114,8,0,22,46,100,99,67,111,111,107,105,101,66,97,114,66,97,99,107,103,114,111,117,110,100,8,0,12,46,100,99,101,45,112,114,105,118,97,99,121,8,0,26,46,100,99,105,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,12,46,100,99,109,45,99,111,111,107,105,101,115,8,0,26,46,100,99,110,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,99,111,111,107,105,101,8,0,20,46,100,99,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,115,101,8,0,26,46,100,99,120,97,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,115,8,0,16,46,100,101,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,23,46,100,101,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,119,114,97,112,8,0,18,46,100,101,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,8,0,12,46,100,101,97,99,111,111,107,105,101,100,116,8,0,12,46,100,101,97,108,45,99,111,111,107,105,101,8,0,14,46,100,101,98,97,116,45,99,111,111,107,105,101,115,8,0,14,46,100,101,102,97,117,108,116,67,111,111,107,105,101,8,0,11,46,100,101,107,114,97,45,103,100,112,114,8,0,21,46,100,101,108,105,109,105,116,97,84,101,114,109,111,115,67,111,111,107,105,101,8,0,20,46,100,101,108,116,97,95,100,111,109,97,105,110,95,99,111,111,107,105,101,8,0,14,46,100,101,110,116,114,111,45,99,111,111,107,105,101,8,0,13,46,100,101,112,111,45,99,111,111,107,105,101,115,8,0,19,46,100,101,114,105,118,101,45,99,111,111,107,105,101,45,100,114,111,112,8,0,21,46,100,101,115,107,116,111,112,95,99,111,111,107,105,101,95,98,108,111,99,107,8,0,19,46,100,101,115,112,114,101,45,99,111,111,107,105,101,45,105,110,102,111,8,0,17,46,100,101,118,114,111,99,107,101,116,45,99,111,111,107,105,101,8,0,31,46,100,101,118,115,105,116,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,101,117,45,99,111,111,107,105,101,8,0,30,46,100,102,99,45,99,111,111,107,105,101,45,105,110,102,111,45,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,24,46,100,102,120,45,99,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,8,0,11,46,100,103,45,99,111,111,107,105,101,115,8,0,20,46,100,103,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,13,46,100,103,116,108,45,99,111,110,115,101,110,116,8,0,20,46,100,104,95,99,111,111,107,105,101,95,109,97,110,97,103,101,114,95,49,8,0,22,46,100,105,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,8,0,23,46,100,105,97,108,111,103,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,8,0,45,46,100,105,97,108,111,103,66,97,110,110,101,114,95,95,105,110,110,101,114,91,100,97,116,97,45,113,97,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,8,0,20,46,100,105,97,108,111,103,67,111,111,107,105,101,87,97,114,110,105,110,103,8,0,35,46,100,105,97,108,111,103,91,97,114,105,97,45,108,97,98,101,108,61,34,99,111,111,107,105,101,99,111,110,115,101,110,116,34,93,8,0,16,46,100,105,97,108,111,103,117,101,45,99,111,111,107,105,101,8,0,21,46,100,105,100,111,109,105,45,110,111,116,105,99,101,45,98,97,110,110,101,114,8,0,20,46,100,105,103,105,109,97,100,105,45,99,99,45,119,114,97,112,112,101,114,8,0,18,46,100,105,110,97,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,13,46,100,105,115,99,45,99,111,111,107,105,101,115,8,0,18,46,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,8,0,27,46,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,8,0,39,46,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,115,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,20,46,100,105,115,99,108,97,105,109,101,114,67,111,110,116,97,105,110,101,114,8,0,17,46,100,105,115,99,108,97,105,109,101,114,67,111,111,107,105,101,8,0,18,46,100,105,115,99,108,97,105,109,101,114,67,111,111,107,105,101,115,8,0,18,46,100,105,115,99,108,97,105,109,101,114,80,114,105,118,97,99,121,8,0,19,46,100,105,115,99,108,97,105,109,101,114,95,99,111,111,107,105,101,115,8,0,17,46,100,105,115,99,108,97,105,109,101,114,98,97,110,110,101,114,8,0,18,46,100,105,115,99,108,97,105,109,101,114,109,101,115,115,97,103,101,8,0,17,46,100,105,115,99,108,97,105,109,101,114,115,45,108,103,112,100,8,0,15,46,100,105,115,99,108,97,109,101,95,98,108,111,99,107,8,0,17,46,100,105,115,99,108,97,109,101,114,95,99,111,111,107,105,101,8,0,24,46,100,105,115,99,108,111,115,117,114,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,100,105,115,99,114,101,116,101,45,99,111,111,107,105,101,8,0,15,46,100,105,115,109,105,115,115,45,99,111,111,107,105,101,8,0,16,46,100,105,115,109,105,115,115,95,99,111,111,107,105,101,115,8,0,26,46,100,105,115,109,105,115,115,97,98,108,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,17,46,100,105,115,111,102,108,101,120,45,99,111,111,107,105,101,115,8,0,15,46,100,105,115,112,108,97,121,45,99,111,111,107,105,101,8,0,16,46,100,105,115,112,108,97,121,45,99,111,111,107,105,101,115,8,0,19,46,100,105,115,112,108,97,121,95,99,111,111,107,105,101,95,98,116,110,8,0,16,46,100,105,115,112,108,97,121,95,99,111,111,107,105,101,115,8,0,27,46,100,105,118,45,98,97,110,110,101,114,45,99,111,111,107,105,101,45,99,101,110,116,114,97,108,101,8,0,11,46,100,105,118,45,99,111,111,107,105,101,8,0,16,46,100,105,118,65,108,108,111,119,67,111,111,107,105,101,115,8,0,22,46,100,105,118,67,111,110,116,101,110,105,116,111,114,101,67,111,111,107,105,101,115,8,0,10,46,100,105,118,67,111,111,107,105,101,8,0,16,46,100,105,118,67,111,111,107,105,101,66,97,110,110,101,114,8,0,13,46,100,105,118,67,111,111,107,105,101,66,97,114,8,0,20,46,100,105,118,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,8,0,27,46,100,105,118,67,111,111,107,105,101,80,111,108,105,99,121,80,111,112,111,117,116,79,117,116,101,114,8,0,15,46,100,105,118,67,111,111,107,105,101,80,111,112,85,112,8,0,24,46,100,105,118,67,111,111,107,105,101,80,111,112,85,112,67,111,110,116,97,105,110,101,114,8,0,17,46,100,105,118,67,111,111,107,105,101,87,97,114,110,105,110,103,8,0,16,46,100,105,118,67,111,111,107,105,101,98,111,116,84,97,98,8,0,11,46,100,105,118,67,111,111,107,105,101,115,8,0,18,46,100,105,118,67,111,111,107,105,101,115,87,97,114,110,105,110,103,8,0,16,46,100,105,118,70,111,111,116,101,114,67,111,111,107,105,101,8,0,14,46,100,105,118,76,101,121,67,111,111,107,105,101,115,8,0,14,46,100,105,118,95,67,111,111,107,105,101,76,97,119,8,0,26,46,100,105,118,95,67,111,111,107,105,101,78,111,116,105,99,101,67,111,110,116,97,105,110,101,114,8,0,17,46,100,105,118,95,97,108,101,114,116,46,99,111,111,107,105,101,8,0,14,46,100,105,118,95,99,111,111,107,105,101,95,98,103,8,0,16,46,100,105,118,95,99,111,111,107,105,101,95,104,105,110,116,8,0,15,46,100,105,118,95,99,111,111,107,105,101,95,116,111,112,8,0,12,46,100,105,118,95,99,111,111,107,105,101,115,8,0,13,46,100,105,118,97,115,99,111,111,107,105,101,115,8,0,10,46,100,105,118,99,111,111,107,105,101,8,0,19,46,100,106,45,99,111,111,107,105,101,45,45,118,105,115,105,98,108,101,8,0,15,46,100,107,45,99,111,111,107,105,101,115,45,98,97,114,8,0,26,46,100,108,95,99,111,111,107,105,101,66,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,8,0,22,46,100,108,95,99,111,111,107,105,101,66,97,110,110,101,114,95,111,117,116,101,114,8,0,26,46,100,108,95,99,111,111,107,105,101,95,102,111,111,116,101,114,45,45,118,105,115,105,98,108,101,8,0,25,46,100,108,95,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,97,100,118,101,114,116,8,0,26,46,100,109,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,17,46,100,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,100,109,103,45,99,111,111,107,105,101,45,105,110,102,111,8,0,21,46,100,110,45,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,8,0,20,46,100,110,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,38,46,100,110,105,45,110,111,116,105,102,105,99,97,116,105,111,110,115,95,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,18,46,100,110,116,45,117,115,105,110,103,45,99,111,111,107,105,101,115,8,0,19,46,100,110,116,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,23,46,100,110,118,103,108,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,23,46,100,111,109,45,99,111,110,116,101,110,116,45,45,101,117,45,98,97,110,110,101,114,8,0,24,46,100,111,109,97,99,105,99,97,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,23,46,100,111,110,101,45,103,100,112,114,45,97,108,101,114,116,45,98,111,120,45,98,103,8,0,26,46,100,111,110,101,45,103,100,112,114,45,97,108,101,114,116,45,98,111,120,45,109,111,100,97,108,8,0,28,46,100,111,110,101,45,103,100,112,114,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,15,46,100,111,116,45,99,99,45,119,114,97,112,112,101,114,8,0,18,46,100,111,116,45,99,111,111,107,105,101,45,112,114,111,109,112,116,8,0,12,46,100,111,116,95,99,111,111,107,105,101,115,8,0,17,46,100,111,121,111,117,108,105,107,101,99,111,111,107,105,101,115,8,0,16,46,100,112,45,99,111,111,107,105,101,45,108,101,103,97,108,8,0,13,46,100,112,100,112,97,45,45,112,111,112,117,112,8,0,18,46,100,112,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,100,114,45,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,8,0,18,46,100,114,45,109,101,115,115,97,103,101,45,99,111,111,107,105,101,8,0,24,46,100,114,95,99,111,111,107,105,101,115,95,118,50,95,99,111,110,116,97,105,110,101,114,8,0,15,46,100,114,97,119,101,114,45,99,111,111,107,105,101,115,8,0,18,46,100,114,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,19,46,100,114,105,45,110,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,13,46,100,115,45,99,111,111,107,105,101,98,97,114,8,0,19,46,100,115,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,22,46,100,115,50,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,20,46,100,115,100,118,111,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,17,46,100,115,103,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,13,46,100,115,103,118,111,45,98,97,110,110,101,114,8,0,19,46,100,115,103,118,111,45,99,111,110,102,105,114,109,97,116,105,111,110,8,0,21,46,100,115,103,118,111,45,99,111,110,115,101,110,116,45,45,112,111,112,117,112,8,0,16,46,100,115,103,118,111,45,99,111,110,116,97,105,110,101,114,8,0,21,46,100,115,103,118,111,45,99,111,111,107,105,101,95,99,111,110,115,101,110,116,8,0,19,46,100,115,103,118,111,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,13,46,100,115,103,118,111,45,102,111,111,116,101,114,8,0,12,46,100,115,103,118,111,45,109,111,100,97,108,8,0,20,46,100,115,103,118,111,45,109,111,100,97,108,45,111,118,101,114,108,97,121,8,0,14,46,100,115,103,118,111,45,111,118,101,114,108,97,121,8,0,20,46,100,115,103,118,111,45,119,105,100,103,101,116,95,95,112,111,112,117,112,8,0,23,46,100,115,103,118,111,45,119,105,100,103,101,116,95,95,112,111,112,117,112,45,98,103,8,0,14,46,100,115,103,118,111,45,119,114,97,112,112,101,114,8,0,14,46,100,115,103,118,111,65,112,112,114,111,118,97,108,8,0,11,46,100,115,103,118,111,76,97,121,101,114,8,0,13,46,100,115,103,118,111,95,102,111,111,116,101,114,8,0,14,46,100,115,103,118,111,95,111,118,101,114,108,97,121,8,0,21,46,100,115,118,103,111,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,18,46,100,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,17,46,100,116,45,99,111,111,107,105,101,45,100,105,97,108,111,103,8,0,17,46,100,116,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,15,46,100,116,99,111,111,107,105,101,95,95,119,114,97,112,8,0,18,46,100,116,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,100,116,120,45,99,111,111,107,105,101,8,0,21,46,100,116,121,114,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,11,46,100,117,95,99,111,110,115,101,110,116,8,0,24,46,100,117,99,45,98,97,115,101,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,25,46,100,117,101,116,45,45,99,116,97,45,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,100,118,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,100,118,45,99,111,111,107,105,101,115,8,0,10,46,100,118,67,111,111,107,105,101,115,8,0,27,46,100,118,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,30,46,100,118,111,114,101,45,97,99,99,101,112,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,34,46,100,118,111,114,101,95,112,114,103,95,97,99,99,101,112,116,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,8,0,25,46,100,118,115,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,99,111,110,116,97,105,8,0,28,46,100,118,115,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,11,46,100,119,95,99,111,111,107,105,101,115,8,0,35,46,100,119,97,45,101,109,98,101,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,19,46,100,119,99,99,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,29,46,100,120,109,108,45,99,111,111,107,105,101,45,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,8,0,17,46,101,45,99,111,110,115,101,110,116,115,45,97,108,101,114,116,8,0,9,46,101,45,99,111,111,107,105,101,8,0,14,46,101,45,99,111,111,107,105,101,45,105,110,102,111,8,0,17,46,101,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,17,46,101,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,12,46,101,45,99,111,111,107,105,101,66,97,114,8,0,12,46,101,45,99,111,111,107,105,101,98,97,114,8,0,10,46,101,45,99,111,111,107,105,101,115,8,0,18,46,101,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,16,46,101,45,110,111,116,101,95,95,99,111,111,107,105,101,115,8,0,22,46,101,45,116,114,111,110,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,8,0,11,46,101,51,95,99,111,111,107,105,101,115,8,0,17,46,101,51,110,95,99,111,111,107,105,101,98,97,110,110,101,114,8,0,15,46,101,67,111,111,107,105,101,115,66,97,110,110,101,114,8,0,19,46,101,71,68,83,67,111,111,107,105,101,115,79,118,101,114,108,97,121,8,0,21,46,101,80,114,105,118,97,99,121,79,117,116,101,114,87,114,97,112,112,101,114,8,0,21,46,101,97,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,15,46,101,97,45,99,111,111,107,105,101,115,45,98,97,114,8,0,16,46,101,97,118,45,99,111,111,107,105,101,108,97,121,101,114,8,0,10,46,101,98,45,99,111,111,107,105,101,8,0,29,46,101,98,99,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,8,0,14,46,101,98,111,120,67,111,111,107,105,101,66,97,114,8,0,14,46,101,98,111,120,67,111,111,107,105,101,76,97,119,8,0,25,46,101,98,117,45,99,111,111,107,105,101,115,45,108,97,121,101,114,95,95,109,111,100,97,108,8,0,14,46,101,99,45,99,111,111,107,105,101,45,98,97,114,8,0,17,46,101,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,24,46,101,99,45,103,116,109,45,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,8,0,19,46,101,99,45,110,111,116,105,99,101,45,45,119,97,114,110,105,110,103,8,0,17,46,101,99,45,110,111,116,105,99,101,115,95,95,119,114,97,112,8,0,14,46,101,99,97,117,112,111,45,99,111,111,107,105,101,8,0,18,46,101,99,98,45,99,111,111,107,105,101,67,111,110,115,101,110,116,8,0,17,46,101,99,100,99,67,111,111,107,105,101,80,111,108,105,99,121,8,0,26,46,101,99,109,116,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,115,8,0,16,46,101,99,111,109,45,99,111,111,107,105,101,95,98,111,120,8,0,15,46,101,99,111,109,45,99,111,111,107,105,101,98,97,114,8,0,21,46,101,99,111,109,99,111,111,107,105,101,108,97,119,45,104,111,108,100,101,114,8,0,15,46,101,100,45,99,111,111,107,105,101,115,45,98,97,114,8,0,16,46,101,100,99,99,45,99,111,111,107,105,101,45,98,97,114,8,0,21,46,101,100,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,8,0,26,46,101,100,120,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,25,46,101,101,45,105,110,116,114,111,45,98,97,110,110,101,114,95,95,99,111,110,115,101,110,116,8,0,21,46,101,102,105,108,108,105,45,108,97,121,111,117,116,45,108,101,103,97,99,121,8,0,13,46,101,103,45,99,99,45,98,97,110,110,101,114,8,0,18,46,101,103,109,45,99,111,111,107,105,101,45,102,108,121,111,117,116,8,0,20,46,101,103,109,111,110,116,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,15,46,101,103,109,111,110,116,45,99,111,111,107,105,101,115,8,0,21,46,101,104,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,14,46,101,104,45,99,111,111,107,105,101,105,110,102,111,8,0,10,46,101,105,95,99,111,111,107,105,101,8,0,31,46,101,105,103,104,116,119,111,114,107,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,108,117,115,8,0,39,46,101,105,103,104,116,119,111,114,107,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,108,117,115,45,116,111,103,103,108,101,114,8,0,16,46,101,105,105,45,99,99,112,97,45,99,111,111,107,105,101,8,0,10,46,101,107,45,99,111,111,107,105,101,8,0,19,46,101,107,115,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,18,46,101,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,23,46,101,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,114,101,97,8,0,25,46,101,108,97,110,52,50,45,100,105,115,99,108,97,105,109,101,114,45,98,97,110,110,101,114,8,0,10,46,101,108,99,97,45,103,100,112,114,8,0,22,46,101,108,101,109,101,110,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,31,46,101,108,102,115,105,103,104,116,45,119,105,100,103,101,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,14,46,101,109,98,45,99,112,45,100,105,97,108,111,103,8,0,15,46,101,109,98,45,99,112,45,119,114,97,112,112,101,114,8,0,27,46,101,109,98,101,100,100,101,100,67,111,111,107,105,101,67,111,110,115,101,110,116,80,111,112,117,112,8,0,15,46,101,109,101,114,115,111,110,45,99,111,111,107,105,101,8,0,15,46,101,109,103,45,99,111,111,107,105,101,45,98,97,114,8,0,10,46,101,109,103,99,111,111,107,105,101,8,0,26,46,101,109,107,97,45,99,111,111,107,105,101,115,45,98,111,116,116,111,109,45,108,97,121,101,114,8,0,16,46,101,109,109,45,99,111,111,107,105,101,45,105,110,102,111,8,0,19,46,101,109,112,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,15,46,101,109,115,45,99,111,111,107,105,101,45,98,110,114,8,0,8,46,101,110,95,103,100,112,114,8,0,25,46,101,110,97,98,108,101,95,109,97,114,107,101,116,105,110,103,95,99,111,111,107,105,101,115,8,0,14,46,101,110,99,97,114,116,95,99,111,111,107,105,101,8,0,37,46,101,110,101,114,106,105,115,97,45,99,101,114,101,122,45,112,111,108,105,116,105,107,97,115,105,45,99,111,111,107,105,101,45,98,97,114,8,0,17,46,101,110,103,95,99,111,111,107,105,101,95,105,110,110,101,114,8,0,31,46,101,110,104,97,110,99,101,100,45,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,17,46,101,110,115,77,111,100,97,108,66,97,99,107,100,114,111,112,8,0,16,46,101,110,115,78,111,116,105,102,121,66,97,110,110,101,114,8,0,23,46,101,110,115,78,111,116,105,102,121,66,97,110,110,101,114,87,114,97,112,112,101,114,8,0,13,46,101,110,115,117,114,101,67,111,111,107,105,101,8,0,18,46,101,110,118,45,109,111,100,97,108,45,99,111,111,107,105,101,115,8,0,9,46,101,111,99,111,111,107,105,101,8,0,20,46,101,111,110,101,45,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,20,46,101,111,115,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,18,46,101,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,13,46,101,112,45,99,111,111,107,105,101,98,97,114,8,0,15,46,101,112,45,99,111,111,107,105,101,115,45,98,97,114,8,0,24,46,101,112,45,99,111,111,107,105,101,115,45,105,110,102,111,45,119,114,97,112,112,101,114,8,0,11,46,101,112,95,99,111,111,107,105,101,115,8,0,11,46,101,112,112,45,99,111,111,107,105,101,8,0,13,46,101,112,112,45,108,98,45,105,110,110,101,114,8,0,27,46,101,112,114,105,118,97,99,121,45,98,97,110,110,101,114,45,45,100,105,115,112,108,97,121,101,100,8,0,26,46,101,112,114,105,118,97,99,121,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,27,46,101,112,114,105,118,97,99,121,45,98,97,110,110,101,114,95,95,99,111,110,116,97,105,110,101,114,8,0,16,46,101,112,114,105,118,97,99,121,45,99,111,111,107,105,101,8,0,16,46,101,112,114,105,118,97,99,121,45,112,108,117,103,105,110,8,0,16,46,101,112,114,105,118,97,99,121,95,99,111,111,107,105,101,8,0,11,46,101,112,114,106,99,111,111,107,105,101,8,0,19,46,101,112,115,111,110,95,99,111,111,107,105,101,110,111,116,105,99,101,8,0,19,46,101,115,45,99,111,111,107,105,101,45,115,111,108,117,116,105,111,110,8,0,35,46,101,115,105,108,45,103,108,111,98,97,108,45,115,101,99,116,105,111,110,95,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,101,115,112,97,45,98,97,110,110,101,114,45,102,105,120,101,100,8,0,17,46,101,115,112,97,45,104,111,118,101,114,45,105,109,97,103,101,8,0,11,46,101,115,112,97,45,105,109,97,103,101,8,0,22,46,101,115,112,97,45,108,111,103,111,115,95,95,99,111,110,116,97,105,110,101,114,8,0,11,46,101,115,112,97,98,97,110,110,101,114,8,0,10,46,101,115,112,99,111,111,107,105,101,8,0,12,46,101,115,114,105,45,99,111,111,107,105,101,8,0,23,46,101,115,116,114,97,116,101,103,121,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,30,46,101,115,116,114,97,116,101,103,121,45,99,111,111,107,105,101,45,112,111,112,117,112,45,109,111,98,105,108,101,8,0,10,46,101,116,45,99,111,111,107,105,101,8,0,18,46,101,116,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,8,0,16,46,101,116,105,67,111,111,107,105,101,66,97,110,110,101,114,8,0,24,46,101,116,115,95,99,111,111,107,105,101,95,98,97,110,98,101,114,95,98,108,111,99,107,8,0,10,46,101,117,45,98,97,110,110,101,114,8,0,14,46,101,117,45,99,111,109,112,108,105,97,110,99,101,8,0,22,46,101,117,45,99,111,109,112,108,105,97,110,99,101,45,109,101,115,115,97,103,101,8,0,17,46,101,117,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,27,46,101,117,45,99,111,111,107,105,101,45,98,97,114,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,28,46,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,8,0,52,46,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,112,111,112,117,112,45,111,112,101,110,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,22,46,101,117,45,99,111,111,107,105,101,45,100,105,118,45,105,110,105,116,105,97,108,8,0,15,46,101,117,45,99,111,111,107,105,101,45,105,110,102,111,8,0,14,46,101,117,45,99,111,111,107,105,101,45,108,97,119,8,0,22,46,101,117,45,99,111,111,107,105,101,45,108,97,119,45,119,114,97,112,112,101,114,8,0,18,46,101,117,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,14,46,101,117,45,99,111,111,107,105,101,45,110,97,103,8,0,17,46,101,117,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,23,46,101,117,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,101,117,45,99,111,111,107,105,101,45,112,97,110,101,108,8,0,17,46,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,32,46,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,25,46,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,116,101,110,116,8,0,22,46,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,101,8,0,25,46,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,8,0,16,46,101,117,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,17,46,101,117,45,99,111,111,107,105,101,45,112,114,111,109,112,116,8,0,15,46,101,117,45,99,111,111,107,105,101,45,115,104,111,119,8,0,18,46,101,117,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,15,46,101,117,45,99,111,111,107,105,101,45,119,114,97,112,8,0,18,46,101,117,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,11,46,101,117,45,99,111,111,107,105,101,115,8,0,17,46,101,117,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,27,46,101,117,45,99,111,111,107,105,101,115,45,98,97,114,45,99,111,111,107,105,101,115,45,98,97,114,8,0,36,46,101,117,45,99,111,111,107,105,101,115,45,98,97,114,45,99,111,111,107,105,101,115,45,98,97,114,45,115,101,116,116,105,110,103,115,8,0,32,46,101,117,45,99,111,111,107,105,101,115,45,98,97,114,45,99,111,111,107,105,101,115,45,98,97,114,45,119,114,97,112,8,0,25,46,101,117,45,99,111,111,107,105,101,115,45,98,97,114,58,110,111,116,40,98,111,100,121,41,8,0,19,46,101,117,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,8,0,15,46,101,117,45,99,111,111,107,105,101,115,45,109,115,103,8,0,18,46,101,117,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,16,46,101,117,45,99,111,111,107,105,101,115,45,115,104,111,119,8,0,19,46,101,117,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,17,46,101,117,45,108,97,119,45,99,111,110,116,97,105,110,101,114,8,0,17,46,101,117,45,112,114,117,100,97,45,99,111,111,107,105,101,115,8,0,18,46,101,117,45,115,117,99,107,45,109,121,45,99,111,111,107,105,101,8,0,9,46,101,117,67,111,111,107,105,101,8,0,15,46,101,117,67,111,111,107,105,101,45,111,117,116,101,114,8,0,18,46,101,117,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,23,46,101,117,67,111,111,107,105,101,73,110,102,111,98,97,114,87,114,97,112,112,101,114,8,0,12,46,101,117,67,111,111,107,105,101,76,97,119,8,0,14,46,101,117,67,111,111,107,105,101,76,97,121,101,114,8,0,14,46,101,117,67,111,111,107,105,101,77,111,100,97,108,8,0,15,46,101,117,67,111,111,107,105,101,78,111,116,105,99,101,8,0,14,46,101,117,67,111,111,107,105,101,80,97,110,101,108,8,0,15,46,101,117,67,111,111,107,105,101,80,111,108,105,99,121,8,0,23,46,101,117,67,111,111,107,105,101,80,111,112,117,112,67,111,110,116,97,105,110,101,114,8,0,20,46,101,117,67,111,111,107,105,101,80,111,112,117,112,83,112,97,99,101,114,8,0,15,46,101,117,67,111,111,107,105,101,83,116,114,105,112,101,8,0,13,46,101,117,67,111,111,107,105,101,87,97,114,110,8,0,10,46,101,117,67,111,111,107,105,101,115,8,0,16,46,101,117,67,111,111,107,105,101,115,80,111,108,105,99,121,8,0,9,46,101,117,80,111,108,105,99,121,8,0,21,46,101,117,80,114,105,118,97,99,121,95,99,111,111,107,105,101,115,77,115,103,8,0,22,46,101,117,95,95,99,111,111,107,105,101,45,45,99,111,110,116,97,105,110,101,114,8,0,10,46,101,117,95,99,99,95,108,97,119,8,0,18,46,101,117,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,8,0,24,46,101,117,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,112,111,112,117,112,8,0,20,46,101,117,95,99,111,111,107,105,101,95,119,114,97,112,112,101,114,95,50,8,0,11,46,101,117,95,99,111,111,107,105,101,115,8,0,17,46,101,117,95,99,111,111,107,105,101,115,95,97,108,101,114,116,8,0,19,46,101,117,95,99,111,111,111,107,105,101,95,116,111,111,108,98,97,114,8,0,9,46,101,117,99,111,111,107,105,101,8,0,16,46,101,117,99,111,111,107,105,101,45,112,111,112,45,117,112,8,0,15,46,101,117,99,111,111,107,105,101,95,98,108,111,99,107,8,0,20,46,101,117,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,8,0,20,46,101,117,99,111,111,107,105,101,95,110,111,116,105,99,97,116,105,111,110,8,0,17,46,101,117,99,111,111,107,105,101,95,119,114,97,112,112,101,114,8,0,12,46,101,117,99,111,111,107,105,101,98,97,114,8,0,12,46,101,117,99,111,111,107,105,101,108,97,119,8,0,19,46,101,117,99,111,111,107,105,101,108,97,119,45,98,97,110,110,101,114,8,0,16,46,101,117,99,111,111,107,105,101,109,97,110,97,103,101,114,8,0,10,46,101,117,99,111,111,107,105,101,115,8,0,18,46,101,117,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,8,46,101,117,100,115,103,118,111,8,0,13,46,101,117,103,100,112,114,45,98,108,111,99,107,8,0,19,46,101,117,108,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,9,46,101,117,108,97,119,98,111,120,8,0,19,46,101,117,112,111,112,117,112,45,98,97,99,107,103,114,111,117,110,100,8,0,18,46,101,117,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,30,46,101,117,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,45,98,111,116,116,111,109,114,105,103,104,116,8,0,20,46,101,117,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,101,117,8,0,11,46,101,117,114,111,99,111,111,107,105,101,8,0,20,46,101,117,116,45,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,8,0,17,46,101,118,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,101,118,97,115,116,101,45,99,111,110,116,97,105,110,101,114,8,0,14,46,101,118,97,115,116,101,115,101,108,111,115,116,101,8,0,14,46,101,118,105,100,111,110,45,98,97,110,110,101,114,8,0,16,46,101,118,105,108,45,99,111,111,107,105,101,45,98,97,114,8,0,13,46,101,118,111,45,103,100,112,114,45,98,111,120,8,0,19,46,101,118,116,45,99,111,111,107,105,101,45,101,108,101,109,101,110,116,8,0,12,46,101,120,112,45,99,111,111,107,105,101,115,8,0,14,46,101,120,112,97,110,100,101,100,46,103,100,112,114,8,0,26,46,101,120,112,108,105,99,105,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,34,46,101,120,112,108,105,99,105,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,45,119,114,97,112,112,101,114,8,0,15,46,101,120,112,111,110,101,97,45,98,97,110,110,101,114,8,0,23,46,101,120,112,111,110,101,97,45,98,97,110,110,101,114,45,45,99,111,111,107,105,101,8,0,15,46,101,120,112,111,110,101,97,45,99,111,111,107,105,101,8,0,24,46,101,120,112,111,110,101,97,45,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,8,0,20,46,101,120,112,114,101,115,115,99,111,110,115,101,110,116,65,108,101,114,116,8,0,11,46,101,120,116,45,99,111,111,107,105,101,8,0,20,46,101,120,116,114,97,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,15,46,101,120,116,114,101,109,101,45,99,111,111,107,105,101,8,0,11,46,101,120,122,111,99,111,111,107,105,101,8,0,22,46,101,121,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,115,103,8,0,17,46,101,122,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,101,122,111,105,99,45,102,108,111,97,116,105,110,103,45,98,111,116,116,111,109,8,0,16,46,102,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,102,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,24,46,102,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,111,116,116,111,109,8,0,14,46,102,45,100,97,116,97,45,112,111,108,105,99,121,8,0,13,46,102,45,101,117,45,99,111,111,107,105,101,115,8,0,9,46,102,95,99,111,111,107,105,101,8,0,7,46,102,95,103,100,112,114,8,0,10,46,102,97,45,99,111,111,107,105,101,8,0,14,46,102,97,108,100,111,110,67,111,111,107,105,101,115,8,0,13,46,102,97,115,99,105,97,67,111,111,107,105,101,8,0,14,46,102,98,45,99,111,111,107,105,101,45,108,97,119,8,0,15,46,102,98,45,99,111,111,107,105,101,115,45,98,97,114,8,0,13,46,102,98,80,97,103,101,66,97,110,110,101,114,8,0,19,46,102,98,97,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,11,46,102,99,45,99,111,111,107,105,101,115,8,0,15,46,102,99,107,45,101,117,45,99,111,111,107,105,101,115,8,0,21,46,102,99,115,45,99,111,111,107,105,101,45,99,111,109,112,111,110,101,110,116,8,0,23,46,102,101,97,116,117,114,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,8,0,24,46,102,101,101,100,98,97,99,107,45,109,101,115,115,97,103,101,46,99,111,111,107,105,101,8,0,18,46,102,101,108,100,45,99,111,111,107,105,101,110,111,116,105,99,101,8,0,22,46,102,101,111,95,115,104,97,114,101,95,99,111,111,107,105,101,115,95,98,97,114,8,0,16,46,102,101,115,116,105,118,97,108,45,99,111,111,107,105,101,8,0,18,46,102,101,118,101,114,45,99,111,111,107,105,101,95,95,98,97,114,8,0,15,46,102,102,67,111,111,107,105,101,45,109,111,100,97,108,8,0,20,46,102,103,45,99,111,111,107,105,101,115,100,105,114,101,99,116,105,118,101,8,0,12,46,102,104,67,111,111,107,105,101,76,97,119,8,0,17,46,102,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,102,105,108,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,15,46,102,105,108,67,111,111,107,105,101,115,67,110,105,108,8,0,16,46,102,105,110,101,120,45,99,111,111,107,105,101,98,97,114,8,0,23,46,102,105,116,45,99,111,111,107,105,101,87,97,108,108,45,111,118,101,114,108,97,121,8,0,18,46,102,105,117,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,102,105,120,45,99,111,111,107,105,101,45,109,115,103,45,98,97,114,8,0,10,46,102,105,120,99,111,111,107,105,101,8,0,28,46,102,105,120,101,100,45,98,111,116,116,111,109,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,102,105,120,101,100,45,98,111,116,116,111,109,46,99,111,111,107,105,101,115,8,0,25,46,102,105,120,101,100,45,98,111,116,116,111,109,46,115,104,111,119,80,114,105,118,97,99,121,8,0,13,46,102,105,120,101,100,45,99,111,111,107,105,101,8,0,18,46,102,105,120,101,100,45,99,111,111,107,105,101,45,97,114,105,97,8,0,21,46,102,105,120,101,100,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,8,0,17,46,102,105,120,101,100,45,99,111,111,107,105,101,45,112,114,108,8,0,19,46,102,105,120,101,100,45,109,115,103,45,45,99,111,111,107,105,101,115,8,0,18,46,102,105,120,101,100,45,116,111,112,46,99,111,111,107,105,101,115,8,0,18,46,102,105,120,101,100,46,99,111,111,107,105,101,115,95,108,97,119,8,0,19,46,102,105,120,101,100,67,111,111,107,105,101,79,118,101,114,108,97,121,8,0,18,46,102,105,120,101,100,67,111,111,107,105,101,80,111,108,105,99,121,8,0,22,46,102,105,120,101,100,91,100,97,116,97,45,99,111,111,107,105,101,98,97,114,93,8,0,12,46,102,105,120,101,100,95,99,101,114,101,122,8,0,19,46,102,105,120,101,100,95,99,111,111,107,105,101,80,111,108,105,99,121,8,0,14,46,102,105,120,101,100,95,99,111,111,107,105,101,115,8,0,17,46,102,108,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,28,46,102,108,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,45,99,111,110,116,97,105,110,101,114,8,0,14,46,102,108,97,115,104,45,45,99,111,111,107,105,101,8,0,21,46,102,108,97,115,104,45,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,102,108,97,115,104,45,114,103,112,100,8,0,31,46,102,108,97,115,104,91,100,97,116,97,45,99,111,111,107,105,101,61,34,101,117,95,99,111,111,107,105,101,34,93,8,0,21,46,102,108,97,115,104,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,8,0,15,46,102,108,97,116,45,99,109,45,99,111,111,107,105,101,8,0,17,46,102,108,97,116,115,111,109,101,45,99,111,111,107,105,101,115,8,0,25,46,102,108,97,116,115,111,109,101,45,99,111,111,107,105,101,115,45,45,97,99,116,105,118,101,8,0,14,46,102,108,97,122,105,111,45,99,111,111,107,105,101,8,0,18,46,102,108,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,23,46,102,108,101,120,45,99,111,111,107,105,101,115,45,115,116,97,116,101,109,101,110,116,8,0,12,46,102,108,101,120,46,99,111,111,107,105,101,8,0,25,46,102,108,101,120,95,99,111,111,107,105,101,95,112,111,112,117,112,95,98,111,116,116,111,109,8,0,13,46,102,108,101,120,105,45,99,111,111,107,105,101,8,0,14,46,102,108,101,120,105,116,95,99,111,111,107,105,101,8,0,47,46,102,108,111,97,116,105,110,103,45,98,97,114,91,100,97,116,97,45,99,111,111,107,105,101,45,110,97,109,101,61,34,99,111,111,107,105,101,95,110,111,116,105,99,101,34,93,8,0,21,46,102,108,111,97,116,105,110,103,45,99,111,111,107,105,101,45,105,110,102,111,8,0,23,46,102,108,111,97,116,105,110,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,11,46,102,108,111,119,67,111,111,107,105,101,8,0,25,46,102,108,117,118,45,101,117,45,99,111,111,99,107,105,101,115,45,119,114,97,112,112,101,114,8,0,19,46,102,108,117,120,101,100,67,111,110,115,101,110,116,80,111,112,117,112,8,0,16,46,102,109,45,99,111,111,107,105,101,66,97,110,110,101,114,8,0,19,46,102,110,45,99,111,111,107,105,101,45,115,104,111,119,45,98,97,114,8,0,13,46,102,110,45,99,111,111,107,105,101,98,97,114,8,0,19,46,102,110,45,99,111,111,107,105,101,98,97,114,45,115,116,121,108,101,8,0,10,46,102,111,45,99,111,111,107,105,101,8,0,18,46,102,111,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,14,46,102,111,99,117,115,45,99,111,111,107,105,101,115,8,0,18,46,102,111,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,102,111,110,100,95,98,97,110,100,101,97,117,95,99,111,111,99,107,105,101,115,8,0,13,46,102,111,110,100,99,111,111,107,105,101,115,50,8,0,20,46,102,111,110,100,111,45,97,118,105,115,111,45,99,111,111,107,105,101,115,8,0,15,46,102,111,111,45,98,97,114,45,99,111,111,107,105,101,8,0,14,46,102,111,111,98,97,114,45,99,111,111,107,105,101,8,0,17,46,102,111,111,108,95,116,101,120,116,95,99,111,111,107,105,101,8,0,23,46,102,111,111,111,116,101,114,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,8,0,25,46,102,111,111,116,101,114,45,98,111,116,116,111,109,32,62,32,35,99,111,111,107,105,101,115,8,0,12,46,102,111,111,116,101,114,45,99,110,105,108,8,0,15,46,102,111,111,116,101,114,45,99,110,105,108,45,119,114,8,0,14,46,102,111,111,116,101,114,45,99,111,111,107,105,101,8,0,21,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,24,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,21,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,27,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,23,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,8,0,21,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,20,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,22,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,22,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,15,46,102,111,111,116,101,114,45,99,111,111,107,105,101,115,8,0,21,46,102,111,111,116,101,114,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,19,46,102,111,111,116,101,114,45,99,111,111,107,105,101,115,45,98,97,114,8,0,22,46,102,111,111,116,101,114,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,23,46,102,111,111,116,101,114,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,12,46,102,111,111,116,101,114,45,103,100,112,114,8,0,18,46,102,111,111,116,101,114,45,103,100,112,114,45,109,111,100,97,108,8,0,12,46,102,111,111,116,101,114,45,107,118,107,107,8,0,26,46,102,111,111,116,101,114,45,110,101,119,95,95,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,35,46,102,111,111,116,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,22,46,102,111,111,116,101,114,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,21,46,102,111,111,116,101,114,45,112,114,105,118,97,99,121,45,112,111,112,117,112,8,0,22,46,102,111,111,116,101,114,45,112,114,105,118,97,116,101,45,112,111,108,105,99,121,8,0,22,46,102,111,111,116,101,114,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,8,0,29,46,102,111,111,116,101,114,45,115,116,105,99,107,121,95,95,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,26,46,102,111,111,116,101,114,45,116,101,114,109,115,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,102,111,111,116,101,114,45,118,50,95,95,112,114,105,118,97,99,121,8,0,14,46,102,111,111,116,101,114,67,111,111,107,105,101,115,8,0,23,46,102,111,111,116,101,114,95,95,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,17,46,102,111,111,116,101,114,95,95,99,111,111,99,107,105,101,115,8,0,15,46,102,111,111,116,101,114,95,95,99,111,111,107,105,101,8,0,30,46,102,111,111,116,101,114,95,95,99,111,111,107,105,101,45,97,108,101,114,116,45,45,119,114,97,112,112,101,114,8,0,22,46,102,111,111,116,101,114,95,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,20,46,102,111,111,116,101,114,95,95,99,111,111,107,105,101,45,105,110,102,111,8,0,18,46,102,111,111,116,101,114,95,95,99,111,111,107,105,101,98,97,114,8,0,16,46,102,111,111,116,101,114,95,95,99,111,111,107,105,101,115,8,0,18,46,102,111,111,116,101,114,95,95,101,117,45,99,111,111,107,105,101,8,0,13,46,102,111,111,116,101,114,95,95,103,100,114,112,8,0,23,46,102,111,111,116,101,114,95,95,112,114,105,118,97,99,121,45,99,111,111,107,105,101,8,0,23,46,102,111,111,116,101,114,95,99,101,114,101,122,112,111,108,105,116,105,107,97,115,105,8,0,12,46,102,111,111,116,101,114,95,99,110,105,108,8,0,14,46,102,111,111,116,101,114,95,99,111,111,107,105,101,8,0,22,46,102,111,111,116,101,114,95,99,111,111,107,105,101,82,101,109,105,110,100,101,114,8,0,20,46,102,111,111,116,101,114,95,99,111,111,107,105,101,95,97,108,101,114,116,8,0,18,46,102,111,111,116,101,114,95,99,111,111,107,105,101,95,98,97,114,8,0,21,46,102,111,111,116,101,114,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,15,46,102,111,111,116,101,114,95,99,111,111,107,105,101,115,8,0,17,46,102,111,111,116,101,114,95,101,117,95,99,111,111,107,105,101,8,0,25,46,102,111,111,116,101,114,95,112,114,105,118,97,99,121,45,99,111,110,116,97,105,110,101,114,8,0,9,46,102,111,111,116,101,114,99,107,8,0,17,46,102,111,111,116,112,114,105,110,116,95,99,111,111,107,105,101,8,0,17,46,102,111,114,99,101,45,101,117,45,99,111,111,107,105,101,115,8,0,17,46,102,111,114,109,45,45,99,111,111,107,105,101,45,98,97,114,8,0,23,46,102,111,114,109,45,98,111,120,45,99,111,111,107,105,101,109,101,115,115,97,103,101,8,0,15,46,102,111,114,109,98,97,114,67,111,110,115,101,110,116,8,0,14,46,102,111,114,109,105,100,97,67,111,111,107,105,101,8,0,21,46,102,111,114,117,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,115,8,0,14,46,102,112,45,99,111,111,107,105,101,45,98,97,114,8,0,18,46,102,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,10,46,102,112,95,99,111,111,107,105,101,8,0,11,46,102,112,95,99,111,111,107,105,101,115,8,0,18,46,102,114,45,99,45,109,101,115,115,97,103,101,45,119,114,97,112,8,0,18,46,102,114,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,14,46,102,114,45,99,111,111,107,105,101,45,98,97,114,8,0,21,46,102,114,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,23,46,102,114,95,115,104,111,119,67,111,111,107,105,101,76,101,103,97,108,73,110,102,111,8,0,20,46,102,114,97,109,101,45,115,109,97,108,108,46,99,111,111,107,105,101,115,8,0,18,46,102,114,97,109,101,119,111,114,107,95,99,111,111,107,105,101,115,8,0,27,46,102,114,101,101,112,114,105,118,97,99,121,112,111,108,105,99,121,45,99,111,109,45,45,45,110,98,8,0,34,46,102,114,101,101,112,114,105,118,97,99,121,112,111,108,105,99,121,45,99,111,109,45,45,45,110,98,45,115,105,109,112,108,101,8,0,30,46,102,114,105,103,103,45,99,111,111,107,105,101,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,31,46,102,114,111,110,116,101,110,100,80,114,105,118,97,99,121,95,95,99,111,110,115,101,110,116,66,97,110,110,101,114,8,0,24,46,102,115,45,99,99,45,98,97,110,110,101,114,50,95,99,111,109,112,111,110,101,110,116,8,0,24,46,102,115,45,99,99,45,98,97,110,110,101,114,51,95,99,111,109,112,111,110,101,110,116,8,0,26,46,102,115,45,99,99,45,98,97,110,110,101,114,51,95,99,111,109,112,111,110,101,110,116,45,50,8,0,24,46,102,115,45,99,99,45,98,97,110,110,101,114,52,95,99,111,109,112,111,110,101,110,116,8,0,23,46,102,115,45,99,99,45,98,97,110,110,101,114,95,99,111,109,112,111,110,101,110,116,8,0,16,46,102,115,45,99,99,45,99,111,109,112,111,110,101,110,116,8,0,13,46,102,115,45,99,99,45,99,111,111,107,105,101,8,0,20,46,102,115,45,99,99,45,99,111,111,107,105,101,45,115,121,109,98,111,108,8,0,14,46,102,115,45,99,111,111,107,105,101,45,98,97,114,8,0,21,46,102,116,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,12,46,102,116,95,95,99,111,111,107,105,101,115,8,0,18,46,102,116,99,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,18,46,102,116,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,102,117,99,107,105,110,103,45,101,117,45,99,111,111,107,105,101,115,8,0,17,46,102,117,108,108,119,105,100,116,104,46,99,111,111,107,105,101,8,0,12,46,102,117,110,99,45,99,111,111,107,105,101,8,0,19,46,102,117,115,105,111,110,45,112,114,105,118,97,99,121,45,98,97,114,8,0,18,46,102,117,116,117,114,101,45,99,111,111,107,105,101,45,98,97,114,8,0,51,46,102,119,45,100,105,97,108,111,103,91,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,116,101,110,116,34,93,8,0,10,46,102,119,95,99,111,111,107,105,101,8,0,19,46,102,119,111,114,107,115,95,99,111,110,115,101,110,116,95,98,97,114,8,0,24,46,102,119,111,114,107,115,95,99,111,110,115,101,110,116,95,98,97,114,95,105,110,105,116,8,0,21,46,102,119,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,17,46,102,120,115,95,97,108,101,114,116,67,111,111,107,105,101,115,8,0,22,46,102,120,120,108,45,99,111,111,107,105,101,45,109,97,105,110,109,111,100,97,108,8,0,15,46,102,122,45,117,115,101,45,99,111,111,107,105,101,115,8,0,15,46,103,45,97,108,101,114,116,45,99,111,111,107,105,101,8,0,25,46,103,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,98,97,110,110,101,114,8,0,9,46,103,45,99,111,111,107,105,101,8,0,13,46,103,45,99,111,111,107,105,101,45,98,97,114,8,0,15,46,103,45,99,111,111,107,105,101,78,111,116,105,99,101,8,0,12,46,103,45,99,111,111,107,105,101,98,97,114,8,0,10,46,103,45,99,111,111,107,105,101,115,8,0,31,46,103,97,45,103,111,111,103,108,101,45,97,110,97,108,121,116,105,99,115,45,112,114,111,45,111,112,116,111,117,116,8,0,16,46,103,97,45,117,105,45,99,111,111,107,105,101,98,97,114,8,0,16,46,103,97,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,13,46,103,97,105,99,111,77,101,115,115,97,103,101,8,0,21,46,103,97,111,111,112,91,100,97,116,97,45,103,97,111,111,112,95,117,97,93,8,0,18,46,103,98,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,11,46,103,98,45,99,111,111,107,105,101,115,8,0,19,46,103,98,45,103,110,98,95,95,110,111,116,105,99,101,45,98,97,114,8,0,14,46,103,98,105,45,99,111,111,107,105,101,98,97,114,8,0,15,46,103,98,112,45,99,111,111,107,105,101,105,110,102,111,8,0,22,46,103,99,95,109,101,115,115,97,103,101,95,98,97,114,95,98,111,116,116,111,109,8,0,12,46,103,99,99,45,99,111,111,107,105,101,115,8,0,15,46,103,99,112,114,105,118,97,99,121,45,104,105,110,116,8,0,27,46,103,99,117,115,101,115,99,111,111,107,105,101,115,95,98,97,110,110,101,114,95,98,108,111,99,107,8,0,14,46,103,100,45,99,111,111,107,105,101,45,98,97,114,8,0,12,46,103,100,98,114,95,98,97,110,110,101,114,8,0,20,46,103,100,98,114,95,98,97,110,110,101,114,95,119,114,97,112,112,101,114,8,0,18,46,103,100,108,45,99,111,111,107,105,101,45,100,105,97,108,111,103,8,0,27,46,103,100,108,114,45,99,111,114,101,45,112,114,105,118,97,99,121,45,98,111,120,45,119,114,97,112,8,0,9,46,103,100,110,45,119,114,97,112,8,0,17,46,103,100,110,45,119,114,97,112,45,100,101,115,107,116,111,112,8,0,16,46,103,100,110,45,119,114,97,112,45,109,111,98,105,108,101,8,0,18,46,103,100,112,95,99,111,111,107,105,101,95,119,105,100,103,101,116,8,0,12,46,103,100,112,114,45,45,112,111,112,117,112,8,0,11,46,103,100,112,114,45,80,111,112,117,112,8,0,20,46,103,100,112,114,45,97,100,118,105,99,101,45,100,101,115,107,116,111,112,8,0,11,46,103,100,112,114,45,97,103,114,101,101,8,0,19,46,103,100,112,114,45,97,103,114,101,101,109,101,110,116,45,98,111,120,8,0,11,46,103,100,112,114,45,97,108,101,114,116,8,0,15,46,103,100,112,114,45,97,108,101,114,116,45,98,97,114,8,0,18,46,103,100,112,114,45,97,108,101,114,116,45,98,111,116,116,111,109,8,0,23,46,103,100,112,114,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,10,46,103,100,112,114,45,97,114,101,97,8,0,15,46,103,100,112,114,45,97,115,107,45,109,111,100,97,108,8,0,12,46,103,100,112,114,45,98,97,110,110,101,114,8,0,21,46,103,100,112,114,45,98,97,110,110,101,114,45,45,115,108,105,100,101,117,112,8,0,22,46,103,100,112,114,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,28,46,103,100,112,114,45,98,97,110,110,101,114,45,99,111,110,116,101,110,116,45,119,114,97,112,112,101,114,8,0,22,46,103,100,112,114,45,98,97,110,110,101,114,45,112,114,111,99,101,115,115,101,100,8,0,20,46,103,100,112,114,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,9,46,103,100,112,114,45,98,97,114,8,0,17,46,103,100,112,114,45,98,97,114,45,119,114,97,112,112,101,114,8,0,8,46,103,100,112,114,45,98,103,8,0,9,46,103,100,112,114,45,98,108,107,8,0,11,46,103,100,112,114,45,98,108,111,99,107,8,0,19,46,103,100,112,114,45,98,108,111,99,107,45,112,114,105,118,97,99,121,8,0,16,46,103,100,112,114,45,98,108,111,99,107,45,119,114,97,112,8,0,19,46,103,100,112,114,45,98,111,116,116,111,109,45,98,97,110,110,101,114,8,0,9,46,103,100,112,114,45,98,111,120,8,0,12,46,103,100,112,114,45,98,117,116,116,111,110,8,0,18,46,103,100,112,114,45,99,97,114,100,45,119,114,97,112,112,101,114,8,0,24,46,103,100,112,114,45,99,111,109,112,108,105,97,110,99,101,45,119,114,97,112,112,101,114,8,0,22,46,103,100,112,114,45,99,111,109,112,111,110,101,110,116,45,104,111,108,100,101,114,8,0,18,46,103,100,112,114,45,99,111,110,102,105,114,109,97,116,105,111,110,8,0,13,46,103,100,112,114,45,99,111,110,115,101,110,116,8,0,21,46,103,100,112,114,45,99,111,110,115,101,110,116,45,45,104,105,100,100,101,110,8,0,22,46,103,100,112,114,45,99,111,110,115,101,110,116,45,98,97,99,107,100,114,111,112,8,0,20,46,103,100,112,114,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,17,46,103,100,112,114,45,99,111,110,115,101,110,116,45,98,97,114,8,0,21,46,103,100,112,114,45,99,111,110,115,101,110,116,45,98,97,114,45,98,111,120,8,0,23,46,103,100,112,114,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,29,46,103,100,112,114,45,99,111,110,115,101,110,116,45,101,108,101,109,101,110,116,45,119,114,97,112,112,101,114,8,0,33,46,103,100,112,114,45,99,111,110,115,101,110,116,45,103,117,97,114,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,103,100,112,114,45,99,111,110,115,101,110,116,45,112,97,110,101,108,8,0,13,46,103,100,112,114,45,99,111,110,116,101,110,116,8,0,25,46,103,100,112,114,45,99,111,110,116,101,110,116,95,98,108,107,45,105,110,100,101,112,116,104,8,0,23,46,103,100,112,114,45,99,111,111,107,105,101,45,97,108,101,114,116,45,119,114,97,112,8,0,19,46,103,100,112,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,27,46,103,100,112,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,16,46,103,100,112,114,45,99,111,111,107,105,101,45,98,97,114,8,0,23,46,103,100,112,114,45,99,111,111,107,105,101,45,98,97,114,45,98,111,116,116,111,109,8,0,16,46,103,100,112,114,45,99,111,111,107,105,101,45,98,111,120,8,0,20,46,103,100,112,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,27,46,103,100,112,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,23,46,103,100,112,114,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,23,46,103,100,112,114,45,99,111,111,107,105,101,45,102,105,110,115,119,101,101,116,45,49,8,0,18,46,103,100,112,114,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,26,46,103,100,112,114,45,99,111,111,107,105,101,45,108,97,121,101,114,45,45,97,99,116,105,118,101,8,0,20,46,103,100,112,114,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,18,46,103,100,112,114,45,99,111,111,107,105,101,45,109,111,100,97,108,8,0,19,46,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,26,46,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,102,105,108,116,101,114,8,0,25,46,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,109,111,100,97,108,8,0,19,46,103,100,112,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,18,46,103,100,112,114,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,17,46,103,100,112,114,45,99,111,111,107,105,101,45,119,114,97,112,8,0,20,46,103,100,112,114,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,18,46,103,100,112,114,45,99,111,111,107,105,101,78,111,116,105,99,101,8,0,20,46,103,100,112,114,45,99,111,111,107,105,101,95,109,101,115,115,97,103,101,8,0,18,46,103,100,112,114,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,13,46,103,100,112,114,45,99,111,111,107,105,101,115,8,0,18,46,103,100,112,114,45,99,111,111,107,105,101,115,45,104,105,110,116,8,0,18,46,103,100,112,114,45,99,111,111,107,105,101,115,45,108,105,110,101,8,0,25,46,103,100,112,114,45,99,111,111,107,105,101,115,45,119,101,108,99,111,109,101,45,98,111,120,8,0,12,46,103,100,112,114,45,100,105,97,108,111,103,8,0,20,46,103,100,112,114,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,8,0,16,46,103,100,112,114,45,100,105,115,99,108,97,105,109,101,114,8,0,25,46,103,100,112,114,45,100,105,115,99,108,97,105,109,101,114,95,95,111,118,101,114,108,97,121,8,0,8,46,103,100,112,114,45,101,117,8,0,18,46,103,100,112,114,45,102,108,111,97,116,45,98,97,110,110,101,114,8,0,12,46,103,100,112,114,45,102,111,111,116,101,114,8,0,30,46,103,100,112,114,45,102,111,111,116,101,114,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,23,46,103,100,112,114,45,102,117,108,108,45,112,97,103,101,45,119,114,97,112,112,101,114,8,0,14,46,103,100,112,114,45,104,101,97,100,98,97,110,100,8,0,12,46,103,100,112,114,45,104,101,97,100,101,114,8,0,19,46,103,100,112,114,45,104,101,97,100,101,114,87,114,97,112,112,101,114,8,0,14,46,103,100,112,114,45,104,101,108,108,111,98,97,114,8,0,10,46,103,100,112,114,45,105,110,102,111,8,0,14,46,103,100,112,114,45,105,110,102,111,45,98,97,114,8,0,10,46,103,100,112,114,45,109,97,115,107,8,0,13,46,103,100,112,114,45,109,101,115,115,97,103,101,8,0,20,46,103,100,112,114,45,109,101,115,115,97,103,101,45,98,97,110,110,101,114,8,0,21,46,103,100,112,114,45,109,101,115,115,101,110,103,101,114,45,109,111,100,97,108,8,0,17,46,103,100,112,114,45,109,111,100,97,108,45,98,108,111,99,107,8,0,18,46,103,100,112,114,45,109,111,100,97,108,45,100,105,97,108,111,103,8,0,18,46,103,100,112,114,45,109,111,100,97,108,45,110,111,116,105,102,121,8,0,19,46,103,100,112,114,45,109,111,100,97,108,45,111,118,101,114,108,97,121,8,0,19,46,103,100,112,114,45,109,111,100,97,108,45,119,114,97,112,112,101,114,8,0,9,46,103,100,112,114,45,109,115,103,8,0,12,46,103,100,112,114,45,110,111,116,105,99,101,8,0,22,46,103,100,112,114,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,29,46,103,100,112,114,45,110,111,116,105,99,101,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,8,0,18,46,103,100,112,114,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,25,46,103,100,112,114,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,8,0,26,46,103,100,112,114,45,111,110,98,111,97,114,100,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,19,46,103,100,112,114,45,111,112,116,45,105,110,45,119,105,100,103,101,116,8,0,16,46,103,100,112,114,45,111,112,116,105,110,45,118,105,101,119,8,0,11,46,103,100,112,114,45,111,117,116,101,114,8,0,13,46,103,100,112,114,45,111,118,101,114,108,97,121,8,0,22,46,103,100,112,114,45,111,118,101,114,108,97,121,45,45,105,110,105,116,105,97,108,8,0,20,46,103,100,112,114,45,111,118,101,114,108,97,121,45,45,118,105,100,101,111,8,0,23,46,103,100,112,114,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,8,0,11,46,103,100,112,114,45,112,97,110,101,108,8,0,18,46,103,100,112,114,45,112,110,45,99,111,110,116,97,105,110,101,114,8,0,16,46,103,100,112,114,45,112,111,108,105,99,121,45,98,97,114,8,0,20,46,103,100,112,114,45,112,111,108,105,99,121,46,116,111,97,115,116,101,114,8,0,14,46,103,100,112,114,45,112,111,112,45,111,118,101,114,8,0,11,46,103,100,112,114,45,112,111,112,105,110,8,0,11,46,103,100,112,114,45,112,111,112,117,112,8,0,23,46,103,100,112,114,45,112,111,112,117,112,45,109,111,100,97,108,45,99,108,97,115,115,8,0,20,46,103,100,112,114,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,17,46,103,100,112,114,45,112,114,105,118,97,99,121,45,98,97,114,8,0,20,46,103,100,112,114,45,112,114,105,118,97,99,121,45,110,111,116,105,99,101,8,0,25,46,103,100,112,114,45,112,114,105,118,97,99,121,45,112,114,101,102,101,114,101,110,99,101,115,8,0,12,46,103,100,112,114,45,112,114,111,109,112,116,8,0,12,46,103,100,112,114,45,114,101,118,101,97,108,8,0,9,46,103,100,112,114,45,114,111,119,8,0,13,46,103,100,112,114,45,115,101,99,116,105,111,110,8,0,17,46,103,100,112,114,45,115,101,116,116,105,110,103,115,45,115,109,8,0,17,46,103,100,112,114,45,115,116,97,116,117,115,45,104,111,108,100,8,0,22,46,103,100,112,114,45,115,116,105,99,107,121,45,99,111,110,116,97,105,110,101,114,8,0,19,46,103,100,112,114,45,115,116,105,99,107,121,45,102,111,111,116,101,114,8,0,20,46,103,100,112,114,45,115,116,105,99,107,121,95,109,101,115,115,97,103,101,8,0,15,46,103,100,112,114,45,115,116,105,99,107,121,98,97,114,8,0,13,46,103,100,112,114,45,115,117,112,112,111,114,116,8,0,9,46,103,100,112,114,45,116,97,98,8,0,18,46,103,100,112,114,45,116,101,114,109,115,45,98,97,110,110,101,114,8,0,17,46,103,100,112,114,45,116,101,114,109,115,45,112,111,112,117,112,8,0,16,46,103,100,112,114,45,116,101,120,116,45,97,108,105,103,110,8,0,13,46,103,100,112,114,45,119,97,114,110,105,110,103,8,0,22,46,103,100,112,114,45,119,97,114,110,105,110,103,45,115,108,105,100,101,45,117,112,8,0,10,46,103,100,112,114,45,119,114,97,112,8,0,12,46,103,100,112,114,45,119,114,97,112,101,114,8,0,13,46,103,100,112,114,46,99,111,110,115,101,110,116,8,0,17,46,103,100,112,114,46,112,97,103,101,45,119,105,110,100,111,119,8,0,14,46,103,100,112,114,66,97,99,107,103,111,117,110,100,8,0,9,46,103,100,112,114,66,97,108,107,8,0,11,46,103,100,112,114,66,97,110,110,101,114,8,0,18,46,103,100,112,114,66,97,110,110,101,114,87,114,97,112,112,101,114,8,0,20,46,103,100,112,114,66,97,110,110,101,114,95,95,111,118,101,114,108,97,121,8,0,10,46,103,100,112,114,66,108,111,99,107,8,0,9,46,103,100,112,114,66,110,110,114,8,0,17,46,103,100,112,114,66,111,120,67,111,110,116,97,105,110,101,114,8,0,14,46,103,100,112,114,67,111,110,116,97,105,110,101,114,8,0,21,46,103,100,112,114,67,111,110,116,97,105,110,101,114,87,114,97,112,112,101,114,8,0,21,46,103,100,112,114,67,111,111,107,105,101,65,108,101,114,116,80,111,112,117,112,8,0,27,46,103,100,112,114,67,111,111,107,105,101,66,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,8,0,14,46,103,100,112,114,67,111,111,107,105,101,76,97,119,8,0,18,46,103,100,112,114,67,111,111,107,105,101,87,114,97,112,112,101,114,8,0,9,46,103,100,112,114,70,111,114,109,8,0,22,46,103,100,112,114,76,101,103,97,108,78,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,103,100,112,114,77,97,110,97,103,101,114,77,101,115,115,97,103,101,8,0,12,46,103,100,112,114,77,101,115,115,97,103,101,8,0,11,46,103,100,112,114,78,111,116,105,99,101,8,0,10,46,103,100,112,114,80,111,112,117,112,8,0,22,46,103,100,112,114,91,100,97,116,97,45,103,100,112,114,45,112,111,112,117,112,93,8,0,8,46,103,100,112,114,95,95,65,8,0,13,46,103,100,112,114,95,95,98,97,110,110,101,114,8,0,16,46,103,100,112,114,95,95,99,111,110,116,97,105,110,101,114,8,0,13,46,103,100,112,114,95,95,99,111,111,107,105,101,8,0,21,46,103,100,112,114,95,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,8,0,14,46,103,100,112,114,95,95,111,118,101,114,108,97,121,8,0,12,46,103,100,112,114,95,95,112,111,112,117,112,8,0,14,46,103,100,112,114,95,95,119,114,97,112,112,101,114,8,0,19,46,103,100,112,114,95,97,99,99,101,112,116,95,99,111,111,107,105,101,8,0,13,46,103,100,112,114,95,97,112,112,114,111,118,101,8,0,12,46,103,100,112,114,95,98,97,110,110,101,114,8,0,16,46,103,100,112,114,95,98,97,110,110,101,114,95,116,111,112,8,0,9,46,103,100,112,114,95,98,97,114,8,0,10,46,103,100,112,114,95,98,97,115,101,8,0,15,46,103,100,112,114,95,99,110,45,98,111,116,116,111,109,8,0,16,46,103,100,112,114,95,99,111,109,112,108,105,97,110,99,101,8,0,20,46,103,100,112,114,95,99,111,110,115,101,110,116,95,100,105,97,108,111,103,8,0,19,46,103,100,112,114,95,99,111,110,115,101,110,116,95,112,111,112,117,112,8,0,12,46,103,100,112,114,95,99,111,111,107,105,101,8,0,22,46,103,100,112,114,95,99,111,111,107,105,101,95,97,108,101,114,116,95,98,111,120,8,0,19,46,103,100,112,114,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,16,46,103,100,112,114,95,99,111,111,107,105,101,95,98,97,114,8,0,21,46,103,100,112,114,95,99,111,111,107,105,101,95,98,97,114,95,99,111,110,116,8,0,19,46,103,100,112,114,95,99,111,111,107,105,101,95,110,111,116,105,99,101,8,0,15,46,103,100,112,114,95,99,111,111,107,105,101,98,97,114,8,0,28,46,103,100,112,114,95,99,111,111,107,105,101,115,95,98,97,110,110,101,114,95,119,114,97,112,112,101,114,8,0,17,46,103,100,112,114,95,100,105,115,99,112,108,97,105,109,101,114,8,0,9,46,103,100,112,114,95,100,105,118,8,0,34,46,103,100,112,114,95,103,100,112,114,45,99,111,109,112,111,115,101,114,45,112,97,110,101,108,95,95,116,111,111,108,98,97,114,8,0,9,46,103,100,112,114,95,104,100,114,8,0,10,46,103,100,112,114,95,104,111,111,107,8,0,28,46,103,100,112,114,95,105,110,102,111,98,97,114,95,112,111,115,116,105,111,110,95,98,111,116,116,111,109,8,0,8,46,103,100,112,114,95,105,112,8,0,10,46,103,100,112,114,95,109,97,105,110,8,0,9,46,103,100,112,114,95,109,115,103,8,0,12,46,103,100,112,114,95,109,115,103,98,111,120,8,0,10,46,103,100,112,114,95,110,111,116,101,8,0,22,46,103,100,112,114,95,110,111,116,105,99,101,95,99,111,110,116,97,105,110,101,114,8,0,13,46,103,100,112,114,95,111,118,101,114,108,97,121,8,0,11,46,103,100,112,114,95,112,111,112,117,112,8,0,16,46,103,100,112,114,95,112,111,112,117,112,95,119,114,97,112,8,0,14,46,103,100,112,114,95,114,101,100,101,115,105,103,110,8,0,21,46,103,100,112,114,95,116,104,101,109,101,95,97,110,111,110,121,109,111,117,115,8,0,8,46,103,100,112,114,95,118,50,8,0,13,46,103,100,112,114,95,119,114,97,112,112,101,114,8,0,8,46,103,100,112,114,98,97,114,8,0,8,46,103,100,112,114,98,111,120,8,0,25,46,103,100,112,114,98,111,120,95,95,119,114,97,112,112,101,114,45,45,115,105,109,112,108,101,8,0,13,46,103,100,112,114,98,111,120,99,111,108,111,114,8,0,11,46,103,100,112,114,99,111,111,107,105,101,8,0,17,46,103,100,112,114,99,111,111,107,105,101,45,108,97,121,101,114,8,0,16,46,103,100,112,114,99,111,111,107,105,101,45,109,97,115,107,8,0,19,46,103,100,112,114,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,19,46,103,100,112,114,99,111,111,107,105,101,95,98,108,111,99,107,101,114,8,0,26,46,103,100,112,114,99,111,111,107,105,101,115,45,109,111,100,97,108,45,115,101,99,116,105,111,110,8,0,26,46,103,100,112,114,99,111,111,107,105,101,115,45,109,111,100,97,108,45,119,114,97,112,112,101,114,8,0,19,46,103,100,112,114,99,112,45,99,111,111,107,105,101,115,45,98,97,114,8,0,9,46,103,100,112,114,102,97,100,101,8,0,11,46,103,100,112,114,102,111,111,116,101,114,8,0,10,46,103,100,112,114,109,111,100,97,108,8,0,19,46,103,100,112,114,109,111,100,97,108,45,98,97,99,107,100,114,111,112,8,0,10,46,103,100,112,114,112,111,112,117,112,8,0,8,46,103,100,112,114,114,104,115,8,0,29,46,103,100,112,114,115,117,105,116,101,45,99,111,111,107,105,101,45,98,97,114,45,100,105,115,112,108,97,121,8,0,20,46,103,100,114,112,45,98,97,110,110,101,114,45,99,111,110,116,101,110,116,8,0,27,46,103,100,114,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,19,46,103,100,114,112,45,112,111,112,117,112,45,99,111,110,116,101,110,116,8,0,20,46,103,100,114,112,45,119,114,97,112,46,103,100,114,112,45,115,104,111,119,8,0,14,46,103,100,114,112,95,95,111,118,101,114,108,97,121,8,0,11,46,103,100,115,45,99,111,111,107,105,101,8,0,15,46,103,101,98,97,101,99,107,45,110,111,116,105,99,101,8,0,20,46,103,101,99,107,111,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,29,46,103,101,105,115,116,108,105,99,104,100,101,50,52,120,45,99,111,111,107,105,101,45,111,112,116,45,105,110,8,0,20,46,103,101,109,45,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,21,46,103,101,110,101,114,97,108,45,98,108,111,99,107,45,99,111,111,107,105,101,8,0,28,46,103,101,110,101,114,97,108,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,35,46,103,101,110,101,114,97,108,95,100,97,116,97,95,112,114,111,116,101,99,116,105,111,110,95,114,101,103,117,108,97,116,105,111,110,8,0,28,46,103,101,110,101,114,105,99,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,26,46,103,101,116,116,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,11,46,103,102,45,99,111,111,107,105,101,115,8,0,21,46,103,102,108,45,119,105,100,103,101,116,45,103,100,112,114,45,119,114,97,112,8,0,16,46,103,104,111,115,116,45,99,111,111,107,105,101,98,97,114,8,0,32,46,103,104,111,115,116,101,114,121,45,105,109,112,108,105,101,100,45,99,111,110,115,101,110,116,45,110,111,116,105,99,101,8,0,17,46,103,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,12,46,103,105,103,121,97,78,111,116,105,102,121,8,0,22,46,103,105,110,103,101,114,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,17,46,103,105,122,108,105,108,105,107,45,99,111,111,107,105,101,115,8,0,17,46,103,106,45,99,111,111,107,105,101,45,112,114,111,109,112,116,8,0,17,46,103,107,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,25,46,103,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,16,46,103,108,67,111,111,107,105,101,77,101,115,115,97,103,101,8,0,14,46,103,108,97,116,67,111,111,107,105,101,66,97,114,8,0,28,46,103,108,111,98,97,108,45,97,108,101,114,116,45,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,14,46,103,108,111,98,97,108,45,99,111,111,107,105,101,8,0,21,46,103,108,111,98,97,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,103,108,111,98,97,108,45,99,111,111,107,105,101,45,98,97,114,8,0,22,46,103,108,111,98,97,108,45,99,111,111,107,105,101,45,99,117,114,116,97,105,110,8,0,22,46,103,108,111,98,97,108,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,18,46,103,108,111,98,97,108,45,99,111,111,107,105,101,45,109,115,103,8,0,21,46,103,108,111,98,97,108,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,18,46,103,108,111,98,97,108,45,99,111,111,107,105,101,45,116,105,112,8,0,19,46,103,108,111,98,97,108,45,99,111,111,107,105,101,112,111,112,117,112,8,0,15,46,103,108,111,98,97,108,45,99,111,111,107,105,101,115,8,0,22,46,103,108,111,98,97,108,45,103,100,112,114,45,99,111,110,116,97,105,110,101,114,8,0,18,46,103,108,111,98,97,108,45,103,100,112,114,45,112,111,112,117,112,8,0,19,46,103,108,111,98,97,108,45,108,101,118,101,108,45,97,108,101,114,116,8,0,22,46,103,108,111,98,97,108,45,109,101,115,115,97,103,101,95,99,111,111,107,105,101,8,0,17,46,103,108,111,98,97,108,80,114,105,118,97,99,121,66,97,114,8,0,28,46,103,108,111,98,97,108,99,111,111,107,105,101,112,111,108,105,99,121,99,111,110,116,97,105,110,101,114,8,0,20,46,103,108,111,119,67,111,111,107,105,101,115,95,95,98,97,110,110,101,114,8,0,18,46,103,108,111,119,67,111,111,107,105,101,115,95,95,115,104,111,119,8,0,29,46,103,108,117,101,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,8,0,18,46,103,109,116,95,99,111,110,115,101,110,116,95,112,111,112,117,112,8,0,9,46,103,109,116,95,103,100,112,114,8,0,23,46,103,109,116,95,103,100,112,114,95,98,117,116,116,111,110,95,99,111,110,102,105,103,8,0,16,46,103,110,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,19,46,103,110,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,18,46,103,110,111,45,99,111,111,107,105,101,115,45,112,97,110,101,108,8,0,28,46,103,111,45,109,100,108,45,99,111,111,107,105,101,115,45,100,114,99,116,45,119,97,114,110,105,110,103,8,0,26,46,103,111,111,103,108,101,45,100,105,115,99,108,97,105,109,101,114,45,119,114,97,112,112,101,114,8,0,21,46,103,111,111,103,108,101,95,108,105,110,101,95,116,114,97,99,107,105,110,103,8,0,20,46,103,111,118,117,107,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,103,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,21,46,103,112,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,14,46,103,112,45,103,100,112,114,95,95,98,101,108,116,8,0,18,46,103,112,45,109,111,100,97,108,95,95,99,111,111,107,105,101,115,8,0,25,46,103,112,45,112,108,117,103,105,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,15,46,103,112,100,114,45,97,103,114,101,101,109,101,110,116,8,0,13,46,103,112,100,114,45,119,114,97,112,112,101,114,8,0,20,46,103,112,100,114,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,8,0,20,46,103,112,109,45,99,111,111,107,105,101,45,97,99,99,101,112,116,101,100,8,0,30,46,103,112,109,45,99,111,111,107,105,101,45,97,99,99,101,112,116,101,100,45,99,111,110,116,97,105,110,101,114,8,0,19,46,103,112,110,45,103,100,112,114,45,99,111,110,116,97,105,110,101,114,8,0,11,46,103,114,45,99,111,110,115,101,110,116,8,0,18,46,103,114,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,30,46,103,114,97,118,105,116,111,67,77,80,45,98,97,99,107,103,114,111,117,110,100,45,111,118,101,114,108,97,121,8,0,25,46,103,114,97,121,45,119,105,116,104,45,98,103,45,105,109,103,45,99,111,111,107,105,101,115,8,0,15,46,103,114,100,112,45,99,111,110,116,97,105,110,101,114,8,0,11,46,103,114,100,112,45,112,111,112,117,112,8,0,17,46,103,114,101,97,116,45,101,117,45,99,111,111,107,105,101,115,8,0,17,46,103,114,101,99,97,112,116,99,104,97,45,98,97,100,103,101,8,0,32,46,103,114,111,117,112,45,104,101,97,100,101,114,45,112,108,97,99,101,104,111,108,100,101,114,45,99,111,111,107,105,101,8,0,29,46,103,114,112,45,104,101,97,100,101,114,95,95,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,8,0,13,46,103,114,115,78,111,116,105,102,121,66,97,114,8,0,11,46,103,114,116,45,99,111,111,107,105,101,8,0,18,46,103,114,116,45,99,111,111,107,105,101,45,97,99,116,105,118,101,8,0,21,46,103,114,118,101,45,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,8,0,19,46,103,115,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,8,0,24,46,103,115,107,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,111,117,116,101,114,8,0,14,46,103,116,45,99,111,111,107,105,101,45,98,97,114,8,0,19,46,103,116,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,17,46,103,116,45,117,105,45,99,111,111,107,105,101,45,98,97,114,8,0,23,46,103,116,101,99,45,112,111,112,117,112,45,100,97,116,101,110,115,99,104,117,116,122,8,0,14,46,103,117,100,95,99,111,111,107,105,101,95,112,108,8,0,21,46,103,117,101,115,116,121,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,7,46,103,117,106,45,99,98,8,0,18,46,103,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,10,46,104,45,99,111,111,107,105,101,115,8,0,19,46,104,76,105,98,67,111,111,107,105,101,69,120,112,97,110,100,101,100,8,0,17,46,104,97,108,45,99,111,111,107,105,101,110,111,116,105,99,101,8,0,25,46,104,97,110,100,108,101,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,29,46,104,97,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,58,110,111,116,40,98,111,100,121,41,8,0,18,46,104,98,99,111,109,45,99,111,111,107,105,101,112,97,110,101,108,8,0,22,46,104,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,8,0,21,46,104,99,45,112,114,105,118,97,99,121,100,105,115,99,108,97,105,109,101,114,8,0,19,46,104,100,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,24,46,104,100,108,105,110,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,22,46,104,101,97,100,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,13,46,104,101,97,100,45,99,111,111,107,105,101,115,8,0,14,46,104,101,97,100,67,111,111,107,105,101,66,97,114,8,0,16,46,104,101,97,100,98,97,110,100,45,99,111,111,107,105,101,8,0,16,46,104,101,97,100,101,114,45,45,99,111,111,107,105,101,115,8,0,27,46,104,101,97,100,101,114,45,45,119,111,114,108,100,119,105,100,101,95,95,99,111,111,107,105,101,115,8,0,19,46,104,101,97,100,101,114,45,98,97,114,45,99,111,111,107,105,101,115,8,0,12,46,104,101,97,100,101,114,45,99,110,105,108,8,0,16,46,104,101,97,100,101,114,45,99,110,105,108,45,98,97,114,8,0,14,46,104,101,97,100,101,114,45,99,111,111,107,105,101,8,0,21,46,104,101,97,100,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,104,101,97,100,101,114,45,99,111,111,107,105,101,45,98,97,114,8,0,22,46,104,101,97,100,101,114,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,8,0,21,46,104,101,97,100,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,21,46,104,101,97,100,101,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,18,46,104,101,97,100,101,114,45,99,111,111,107,105,101,45,119,101,116,8,0,15,46,104,101,97,100,101,114,45,99,111,111,107,105,101,115,8,0,21,46,104,101,97,100,101,114,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,25,46,104,101,97,100,101,114,45,99,111,111,107,105,101,115,45,99,111,109,112,111,110,101,110,116,8,0,21,46,104,101,97,100,101,114,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,49,46,104,101,97,100,101,114,45,100,101,99,108,97,114,97,116,105,111,110,91,100,97,116,97,45,99,117,115,116,111,109,101,114,45,112,111,112,117,112,61,34,99,111,111,107,105,101,34,93,8,0,12,46,104,101,97,100,101,114,45,103,100,112,114,8,0,21,46,104,101,97,100,101,114,45,103,100,112,114,45,45,118,105,115,105,98,108,101,8,0,23,46,104,101,97,100,101,114,45,103,100,112,114,95,95,99,111,110,116,97,105,110,101,114,8,0,23,46,104,101,97,100,101,114,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,8,0,34,46,104,101,97,100,101,114,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,95,95,99,111,110,116,97,105,110,101,114,8,0,22,46,104,101,97,100,101,114,45,110,111,116,105,99,101,45,99,111,111,107,105,101,115,8,0,22,46,104,101,97,100,101,114,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,8,0,23,46,104,101,97,100,101,114,45,119,114,97,112,112,101,114,95,95,99,111,111,107,105,101,8,0,13,46,104,101,97,100,101,114,67,111,111,107,105,101,8,0,14,46,104,101,97,100,101,114,67,111,111,107,105,101,115,8,0,27,46,104,101,97,100,101,114,95,95,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,97,114,8,0,15,46,104,101,97,100,101,114,95,95,99,111,111,107,105,101,8,0,16,46,104,101,97,100,101,114,95,95,99,111,111,107,105,101,115,8,0,32,46,104,101,97,100,101,114,95,95,99,111,111,107,105,101,115,45,110,111,116,105,99,101,95,95,119,114,97,112,112,101,114,8,0,22,46,104,101,97,100,101,114,95,95,99,111,111,107,105,101,115,112,111,108,105,99,121,8,0,30,46,104,101,97,100,101,114,95,95,114,100,99,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,14,46,104,101,97,100,101,114,95,99,111,111,107,105,101,8,0,18,46,104,101,97,100,101,114,98,97,114,95,99,111,111,107,105,101,115,8,0,7,46,104,101,97,114,121,101,8,0,11,46,104,101,108,108,111,45,114,111,100,111,8,0,17,46,104,101,108,108,111,45,114,111,100,111,45,45,115,104,111,119,8,0,19,46,104,101,114,98,121,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,45,46,104,101,114,110,101,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,95,112,114,101,95,111,117,116,101,114,98,111,120,50,8,0,19,46,104,102,115,95,112,97,103,101,67,111,111,107,105,101,72,105,110,116,8,0,16,46,104,105,45,99,111,111,107,105,101,45,98,108,111,99,107,8,0,20,46,104,105,100,100,101,110,45,120,115,46,101,117,45,112,111,108,105,99,121,8,0,27,46,104,105,100,101,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,45,98,117,116,116,111,110,8,0,31,46,104,105,100,101,70,105,114,115,116,76,111,97,100,80,111,112,85,112,67,111,111,107,105,101,80,111,108,105,99,121,8,0,26,46,104,105,103,45,99,111,111,107,105,101,45,98,97,114,95,95,99,111,110,116,97,105,110,101,114,8,0,14,46,104,105,114,109,97,45,99,111,111,107,105,101,115,8,0,18,46,104,108,45,99,111,111,107,105,101,115,45,104,101,97,100,101,114,8,0,22,46,104,108,100,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,11,46,104,111,45,99,111,111,107,105,101,115,8,0,14,46,104,111,102,45,67,111,111,107,105,101,66,97,114,8,0,21,46,104,111,109,101,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,115,8,0,22,46,104,111,109,101,45,112,114,105,118,97,99,121,45,99,111,111,111,107,105,101,115,8,0,19,46,104,111,109,101,95,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,16,46,104,111,109,101,95,99,111,111,107,105,101,95,98,111,120,8,0,22,46,104,111,109,101,112,97,103,101,45,99,111,111,107,105,101,45,98,108,111,99,107,8,0,24,46,104,111,109,101,112,103,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,28,46,104,111,110,103,111,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,8,0,13,46,104,111,111,107,45,45,99,111,111,107,105,101,8,0,26,46,104,111,111,107,45,45,99,111,111,107,105,101,45,45,112,108,97,99,101,104,111,108,100,101,114,8,0,17,46,104,111,111,107,45,99,111,111,107,105,101,115,45,109,115,103,8,0,17,46,104,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,13,46,104,112,45,99,111,111,107,105,101,98,97,114,8,0,11,46,104,112,45,99,111,111,107,105,101,115,8,0,18,46,104,112,109,45,97,108,101,114,116,45,99,111,111,107,105,101,115,8,0,18,46,104,115,104,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,12,46,104,115,112,45,99,111,111,107,105,101,115,8,0,26,46,104,116,45,110,97,118,45,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,8,0,9,46,104,116,115,45,114,103,112,100,8,0,30,46,104,117,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,46,104,117,45,119,114,97,112,112,101,114,8,0,30,46,104,117,45,112,111,115,105,116,105,111,110,45,99,101,110,116,101,114,46,104,117,45,119,114,97,112,112,101,114,8,0,14,46,104,117,97,119,101,105,45,99,111,111,107,105,101,8,0,39,46,104,117,105,115,104,117,45,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,18,46,104,118,95,112,114,105,118,97,99,121,95,112,114,111,109,112,116,8,0,16,46,104,119,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,16,46,104,119,99,99,95,99,111,111,107,105,101,95,98,97,114,8,0,15,46,104,119,99,111,111,107,105,101,98,97,110,110,101,114,8,0,17,46,104,120,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,104,120,95,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,97,105,110,8,0,30,46,104,121,98,114,105,100,45,99,111,111,107,105,101,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,8,0,19,46,104,122,45,99,111,110,115,101,110,116,115,45,98,97,110,110,101,114,8,0,20,46,104,122,45,118,105,115,105,116,111,114,45,99,111,110,115,101,110,116,115,8,0,21,46,105,45,97,109,45,111,107,45,119,105,116,104,45,99,111,111,107,105,101,115,8,0,23,46,105,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,99,101,8,0,15,46,105,45,99,111,111,107,105,101,68,105,97,108,111,103,8,0,30,46,105,45,108,97,121,111,117,116,95,95,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,8,46,105,67,111,111,107,105,101,8,0,11,46,105,67,111,111,107,105,101,66,97,114,8,0,19,46,105,97,45,109,45,99,111,111,107,105,101,45,102,108,121,111,117,116,8,0,14,46,105,98,45,99,111,111,107,105,101,45,98,97,114,8,0,25,46,105,98,45,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,24,46,105,98,45,103,108,111,98,97,108,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,105,98,45,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,105,98,101,67,111,111,107,105,101,66,97,110,110,101,114,8,0,18,46,105,98,120,45,99,111,111,99,107,105,101,45,97,103,114,101,101,8,0,17,46,105,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,105,99,45,99,111,111,107,105,101,115,45,97,108,101,114,116,45,116,101,120,116,8,0,14,46,105,99,45,103,100,112,114,45,112,111,112,117,112,8,0,20,46,105,99,97,97,108,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,23,46,105,99,108,45,76,101,103,97,108,67,111,110,115,101,110,116,66,97,110,110,101,114,8,0,17,46,105,99,109,115,45,99,111,111,107,105,101,97,108,101,114,116,8,0,19,46,105,99,111,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,17,46,105,100,45,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,19,46,105,100,99,45,112,114,105,118,97,99,121,45,110,111,116,105,99,101,8,0,19,46,105,100,101,110,116,105,116,121,45,110,111,116,105,99,101,98,97,114,8,0,27,46,105,100,101,110,116,105,116,121,45,110,111,116,105,99,101,98,97,114,45,99,111,110,116,101,110,116,8,0,15,46,105,100,103,99,112,95,95,115,101,99,116,105,111,110,8,0,19,46,105,100,109,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,18,46,105,100,109,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,15,46,105,102,114,97,109,101,95,99,111,111,107,105,101,115,8,0,14,46,105,103,114,111,119,108,45,99,111,111,107,105,101,8,0,13,46,105,108,105,107,101,99,111,111,107,105,101,115,8,0,13,46,105,108,111,118,101,99,111,111,107,105,101,115,8,0,15,46,105,108,116,101,109,112,111,99,111,111,107,105,101,115,8,0,22,46,105,109,80,111,108,105,99,121,99,111,111,107,105,101,109,101,115,115,97,103,101,8,0,11,46,105,109,99,45,99,111,111,107,105,101,8,0,26,46,105,109,112,111,114,116,97,110,116,45,98,97,110,110,101,114,45,45,99,111,111,107,105,101,115,8,0,29,46,105,109,112,117,108,115,45,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,98,97,110,110,101,114,8,0,39,46,105,109,112,117,108,115,45,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,14,46,105,110,98,101,110,116,97,67,111,111,107,105,101,8,0,14,46,105,110,99,111,110,115,101,110,116,45,98,97,114,8,0,21,46,105,110,99,114,121,112,116,101,100,45,99,111,111,107,105,101,45,98,97,114,8,0,20,46,105,110,100,101,120,95,95,99,111,111,107,105,101,95,95,98,111,100,121,8,0,32,46,105,110,100,101,120,95,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,95,95,49,45,86,76,78,8,0,14,46,105,110,100,101,120,95,99,111,111,107,105,101,115,8,0,11,46,105,110,101,114,67,111,111,107,105,101,8,0,27,46,105,110,102,111,45,98,97,110,110,101,114,95,95,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,19,46,105,110,102,111,45,98,108,111,99,107,46,99,111,111,107,105,101,115,8,0,21,46,105,110,102,111,45,99,111,110,116,101,110,116,45,99,111,111,107,105,101,115,8,0,12,46,105,110,102,111,45,99,111,111,107,105,101,8,0,13,46,105,110,102,111,45,99,111,111,107,105,101,115,8,0,31,46,105,110,102,111,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,8,0,10,46,105,110,102,111,67,111,99,107,101,8,0,11,46,105,110,102,111,67,111,111,107,105,101,8,0,12,46,105,110,102,111,67,111,111,107,105,101,115,8,0,12,46,105,110,102,111,95,99,111,111,107,105,101,8,0,18,46,105,110,102,111,95,99,111,111,107,105,101,95,112,111,112,117,112,8,0,13,46,105,110,102,111,95,99,111,111,107,105,101,115,8,0,20,46,105,110,102,111,95,99,111,111,107,105,101,115,95,98,97,110,110,101,114,8,0,11,46,105,110,102,111,99,111,111,107,105,101,8,0,12,46,105,110,102,111,99,111,111,107,105,101,115,8,0,18,46,105,110,102,111,114,109,97,116,105,118,97,45,98,114,101,118,101,8,0,19,46,105,110,102,111,114,109,97,116,105,118,97,45,99,111,111,107,105,101,8,0,20,46,105,110,102,111,114,109,97,116,105,118,97,45,99,111,111,107,105,101,115,8,0,19,46,105,110,102,111,114,109,97,116,105,118,97,95,99,111,111,107,105,101,8,0,17,46,105,110,102,111,114,109,97,116,105,118,111,45,108,103,112,100,8,0,13,46,105,110,102,111,115,45,99,111,111,107,105,101,8,0,22,46,105,110,102,111,115,45,103,101,115,116,105,111,110,45,99,111,111,107,105,101,115,8,0,13,46,105,110,102,111,115,99,111,111,107,105,101,115,8,0,25,46,105,110,103,45,67,111,111,107,105,101,77,97,110,97,103,101,109,101,110,116,78,101,120,116,8,0,30,46,105,110,105,116,105,97,108,45,99,109,112,45,99,111,110,116,97,105,110,101,114,45,111,118,101,114,108,97,121,8,0,17,46,105,110,107,116,104,101,109,101,45,99,111,111,107,105,101,115,8,0,21,46,105,110,108,105,110,101,45,99,111,111,107,105,101,115,45,112,97,110,101,108,8,0,11,46,105,110,110,101,114,95,99,110,105,108,8,0,12,46,105,110,110,111,80,114,105,118,97,99,121,8,0,20,46,105,110,115,45,101,108,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,19,46,105,110,115,45,118,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,28,46,105,110,115,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,14,46,105,110,115,105,100,101,45,99,111,111,107,105,101,8,0,18,46,105,110,116,101,114,99,101,112,116,45,99,111,111,107,105,101,115,8,0,21,46,105,110,116,103,114,116,110,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,17,46,105,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,105,112,97,114,67,111,111,107,105,101,78,111,116,105,99,101,8,0,16,46,105,112,97,114,115,121,115,46,99,111,111,107,105,101,115,8,0,19,46,105,112,120,95,99,111,111,107,105,101,95,111,118,101,114,108,97,121,8,0,14,46,105,114,95,99,111,111,107,105,101,104,105,110,116,8,0,17,46,105,115,45,97,99,116,105,118,101,46,99,111,111,107,105,101,8,0,18,46,105,115,45,97,99,116,105,118,101,46,99,111,111,107,105,101,115,8,0,27,46,105,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,58,110,111,116,40,98,111,100,121,41,8,0,18,46,105,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,19,46,105,115,45,118,105,115,105,98,108,101,46,99,111,111,107,105,101,115,8,0,21,46,105,116,45,101,112,114,105,118,97,99,121,45,98,97,99,107,100,114,111,112,8,0,18,46,105,116,95,112,114,105,118,97,99,121,95,110,111,116,105,99,101,8,0,23,46,105,116,98,108,45,99,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,8,0,9,46,105,116,101,109,108,103,112,100,8,0,16,46,105,117,98,101,110,100,97,45,99,115,45,108,101,102,116,8,0,15,46,105,117,98,101,110,100,97,45,105,98,97,100,103,101,8,0,32,46,105,118,45,117,105,45,119,101,98,115,105,116,101,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,13,46,105,119,45,99,99,45,98,97,110,110,101,114,8,0,18,46,105,119,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,17,46,105,119,45,99,111,111,107,105,101,45,119,105,110,100,111,119,8,0,16,46,105,119,99,99,45,98,97,99,107,103,114,111,117,110,100,8,0,16,46,105,119,101,98,45,99,111,111,107,105,101,45,98,97,114,8,0,19,46,105,120,105,95,97,99,99,101,112,116,95,99,111,111,107,105,101,115,8,0,18,46,105,122,101,101,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,9,46,106,45,99,111,111,107,105,101,8,0,20,46,106,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,17,46,106,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,14,46,106,45,99,111,111,107,105,101,65,108,101,114,116,8,0,21,46,106,45,99,111,111,107,105,101,67,111,110,115,101,110,116,80,97,110,101,108,8,0,18,46,106,45,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,19,46,106,45,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,8,0,12,46,106,45,99,111,111,107,105,101,76,97,119,8,0,14,46,106,45,99,111,111,107,105,101,77,111,100,97,108,8,0,10,46,106,45,99,111,111,107,105,101,115,8,0,15,46,106,45,103,100,112,114,45,109,101,115,115,97,103,101,8,0,18,46,106,45,119,101,108,99,111,109,101,45,112,114,105,118,97,99,121,8,0,8,46,106,67,111,111,107,105,101,8,0,18,46,106,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,8,46,106,97,95,103,100,112,114,8,0,10,46,106,98,45,99,111,111,107,105,101,8,0,10,46,106,98,46,99,111,111,107,105,101,8,0,18,46,106,98,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,106,99,45,99,111,111,107,105,101,109,97,110,97,103,101,114,8,0,22,46,106,99,98,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,15,46,106,99,111,111,107,105,101,45,110,97,118,98,97,114,8,0,8,46,106,100,45,114,111,100,111,8,0,10,46,106,100,45,114,111,100,111,45,50,8,0,25,46,106,103,45,99,104,114,111,109,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,22,46,106,105,120,95,97,99,99,101,112,116,99,111,111,107,105,101,115,95,98,111,120,8,0,21,46,106,108,99,45,119,109,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,26,46,106,108,112,45,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,11,46,106,110,99,45,99,111,111,107,105,101,8,0,24,46,106,110,101,119,115,45,99,111,111,107,105,101,45,108,97,119,45,112,111,108,105,99,121,8,0,23,46,106,111,104,110,110,121,115,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,24,46,106,112,99,111,111,107,105,101,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,24,46,106,113,67,111,111,107,105,101,65,99,99,101,112,116,67,111,110,116,97,105,110,101,114,8,0,16,46,106,113,95,99,111,111,107,105,101,45,115,116,114,105,112,8,0,16,46,106,113,95,99,111,111,107,105,101,80,111,108,105,99,121,8,0,15,46,106,113,95,99,111,111,107,105,101,115,95,109,115,103,8,0,15,46,106,113,109,65,108,101,114,116,87,105,110,100,111,119,8,0,11,46,106,113,109,79,118,101,114,108,97,121,8,0,19,46,106,115,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,17,46,106,115,45,45,99,111,111,107,105,101,95,111,117,116,101,114,8,0,18,46,106,115,45,45,99,111,111,107,105,101,99,111,110,116,114,111,108,8,0,20,46,106,115,45,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,8,0,19,46,106,115,45,45,108,103,112,100,45,99,111,110,116,97,105,110,101,114,8,0,10,46,106,115,45,67,111,111,107,105,101,8,0,16,46,106,115,45,67,111,111,107,105,101,66,97,110,110,101,114,8,0,20,46,106,115,45,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,8,0,17,46,106,115,45,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,19,46,106,115,45,67,111,111,107,105,101,67,111,110,115,101,110,116,86,50,8,0,11,46,106,115,45,67,111,111,107,105,101,115,8,0,13,46,106,115,45,69,85,45,99,111,111,107,105,101,8,0,17,46,106,115,45,97,99,99,101,112,116,45,99,111,111,107,105,101,8,0,21,46,106,115,45,97,99,99,101,112,116,45,99,111,111,107,105,101,45,98,111,120,8,0,27,46,106,115,45,97,99,99,101,112,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,25,46,106,115,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,23,46,106,115,45,97,99,99,101,112,116,45,116,101,114,109,115,45,104,111,108,100,101,114,8,0,19,46,106,115,45,97,99,99,101,112,116,67,111,111,107,105,101,68,105,118,8,0,19,46,106,115,45,97,99,99,101,112,116,85,115,101,67,111,111,107,105,101,8,0,16,46,106,115,45,97,108,101,114,116,45,99,111,111,107,105,101,8,0,23,46,106,115,45,97,108,108,111,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,106,115,45,97,108,108,111,119,45,99,111,111,107,105,101,115,8,0,28,46,106,115,45,97,116,116,101,110,116,105,111,110,45,119,101,45,117,115,101,45,99,111,111,107,105,101,115,8,0,20,46,106,115,45,98,97,100,103,101,45,99,111,111,107,105,101,45,109,115,103,8,0,17,46,106,115,45,98,97,110,110,101,114,45,99,111,111,107,105,101,8,0,14,46,106,115,45,98,97,110,110,101,114,76,71,80,68,8,0,32,46,106,115,45,98,97,115,105,99,95,102,101,97,116,117,114,101,115,45,99,111,111,107,105,101,109,101,115,115,97,103,101,8,0,21,46,106,115,45,98,99,111,111,107,105,101,45,45,98,111,120,45,105,110,102,111,8,0,18,46,106,115,45,98,101,110,103,111,114,45,99,111,111,107,105,101,115,8,0,27,46,106,115,45,98,111,116,116,111,109,45,110,111,116,105,102,45,109,115,103,45,99,111,111,107,105,101,8,0,28,46,106,115,45,98,111,116,116,111,109,45,110,111,116,105,102,45,109,115,103,45,112,114,105,118,97,99,121,8,0,18,46,106,115,45,98,111,120,45,116,101,114,109,111,45,108,103,112,100,8,0,33,46,106,115,45,99,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,8,0,21,46,106,115,45,99,98,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,106,115,45,99,99,45,97,110,110,111,117,110,99,101,109,101,110,116,8,0,18,46,106,115,45,99,109,112,45,99,111,111,107,105,101,115,66,97,114,8,0,18,46,106,115,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,15,46,106,115,45,99,111,110,115,101,110,116,45,98,97,114,8,0,16,46,106,115,45,99,111,110,115,101,110,116,45,102,111,114,109,8,0,18,46,106,115,45,99,111,110,115,101,110,116,45,110,111,116,105,99,101,8,0,17,46,106,115,45,99,111,110,115,101,110,116,45,112,97,110,101,108,8,0,17,46,106,115,45,99,111,110,115,101,110,116,45,112,111,112,117,112,8,0,22,46,106,115,45,99,111,110,115,101,110,116,45,114,101,97,99,116,45,114,111,111,116,8,0,11,46,106,115,45,99,111,111,99,107,105,101,8,0,18,46,106,115,45,99,111,111,107,46,112,97,103,101,45,99,111,111,107,8,0,10,46,106,115,45,99,111,111,107,105,101,8,0,17,46,106,115,45,99,111,111,107,105,101,45,45,109,111,100,97,108,8,0,27,46,106,115,45,99,111,111,107,105,101,45,97,100,118,101,114,116,45,99,111,110,116,97,105,110,101,114,8,0,16,46,106,115,45,99,111,111,107,105,101,45,97,103,114,101,101,8,0,20,46,106,115,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,8,0,16,46,106,115,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,17,46,106,115,45,99,111,111,107,105,101,45,97,108,101,114,116,49,8,0,17,46,106,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,106,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,108,117,114,8,0,27,46,106,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,26,46,106,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,116,101,114,109,105,110,97,108,8,0,14,46,106,115,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,106,115,45,99,111,111,107,105,101,45,99,108,111,115,101,8,0,41,46,106,115,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,8,0,23,46,106,115,45,99,111,111,107,105,101,45,99,111,110,102,105,103,117,114,97,116,111,114,8,0,18,46,106,115,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,8,0,23,46,106,115,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,8,0,18,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,25,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,22,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,8,0,24,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,108,111,99,107,8,0,28,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,24,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,108,97,121,101,114,8,0,26,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,101,115,115,97,103,101,8,0,25,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,117,108,101,8,0,23,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,8,0,40,46,106,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,8,0,15,46,106,115,45,99,111,111,107,105,101,45,99,111,112,121,8,0,23,46,106,115,45,99,111,111,107,105,101,45,100,97,116,97,45,119,97,114,110,105,110,103,8,0,17,46,106,115,45,99,111,111,107,105,101,45,100,105,97,108,111,103,8,0,20,46,106,115,45,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,8,0,21,46,106,115,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,28,46,106,115,45,99,111,111,107,105,101,45,100,105,115,99,108,111,115,117,114,101,45,98,97,110,110,101,114,8,0,17,46,106,115,45,99,111,111,107,105,101,45,102,111,111,116,101,114,8,0,19,46,106,115,45,99,111,111,107,105,101,45,104,101,97,100,98,97,110,100,8,0,15,46,106,115,45,99,111,111,107,105,101,45,104,105,110,116,8,0,17,46,106,115,45,99,111,111,107,105,101,45,104,111,108,100,101,114,8,0,17,46,106,115,45,99,111,111,107,105,101,45,105,102,114,97,109,101,8,0,15,46,106,115,45,99,111,111,107,105,101,45,105,110,102,111,8,0,22,46,106,115,45,99,111,111,107,105,101,45,105,110,102,111,95,95,112,97,110,101,108,8,0,21,46,106,115,45,99,111,111,107,105,101,45,105,110,102,111,109,97,116,105,111,110,8,0,28,46,106,115,45,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,112,111,112,117,112,8,0,14,46,106,115,45,99,111,111,107,105,101,45,108,97,119,8,0,15,46,106,115,45,99,111,111,107,105,101,45,108,105,110,101,8,0,15,46,106,115,45,99,111,111,107,105,101,45,109,97,115,107,8,0,18,46,106,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,30,46,106,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,112,108,97,99,101,104,111,108,100,101,114,8,0,16,46,106,115,45,99,111,111,107,105,101,45,109,111,100,97,108,8,0,26,46,106,115,45,99,111,111,107,105,101,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,8,0,26,46,106,115,45,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,111,118,101,114,108,97,121,8,0,14,46,106,115,45,99,111,111,107,105,101,45,109,115,103,8,0,19,46,106,115,45,99,111,111,107,105,101,45,110,111,116,97,116,105,111,110,8,0,17,46,106,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,32,46,106,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,102,117,108,108,45,99,111,110,116,97,105,110,101,114,8,0,23,46,106,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,30,46,106,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,8,0,17,46,106,115,45,99,111,111,107,105,101,45,110,111,116,105,102,121,8,0,16,46,106,115,45,99,111,111,107,105,101,45,111,102,102,101,114,8,0,18,46,106,115,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,16,46,106,115,45,99,111,111,107,105,101,45,112,97,110,101,108,8,0,17,46,106,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,24,46,106,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,21,46,106,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,111,120,8,0,24,46,106,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,104,101,97,100,101,114,8,0,24,46,106,115,45,99,111,111,107,105,101,45,112,111,112,105,110,45,111,118,101,114,108,97,121,8,0,18,46,106,115,45,99,111,111,107,105,101,45,112,111,112,111,118,101,114,8,0,20,46,106,115,45,99,111,111,107,105,101,45,112,111,112,117,112,45,97,112,112,8,0,26,46,106,115,45,99,111,111,107,105,101,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,18,46,106,115,45,99,111,111,107,105,101,45,112,114,105,118,97,99,121,8,0,17,46,106,115,45,99,111,111,107,105,101,45,112,114,111,109,112,116,8,0,15,46,106,115,45,99,111,111,107,105,101,45,114,103,112,100,8,0,18,46,106,115,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,28,46,106,115,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,17,46,106,115,45,99,111,111,107,105,101,45,119,105,100,103,101,116,8,0,31,46,106,115,45,99,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,73,110,102,111,114,109,97,116,105,111,110,8,0,16,46,106,115,45,99,111,111,107,105,101,66,97,110,110,101,114,8,0,16,46,106,115,45,99,111,111,107,105,101,67,111,109,112,108,121,8,0,17,46,106,115,45,99,111,111,107,105,101,67,111,110,115,101,110,116,8,0,16,46,106,115,45,99,111,111,107,105,101,72,101,97,100,101,114,8,0,14,46,106,115,45,99,111,111,107,105,101,73,110,102,111,8,0,17,46,106,115,45,99,111,111,107,105,101,77,101,115,115,97,103,101,8,0,14,46,106,115,45,99,111,111,107,105,101,78,111,116,101,8,0,17,46,106,115,45,99,111,111,107,105,101,79,118,101,114,108,97,121,8,0,16,46,106,115,45,99,111,111,107,105,101,83,116,105,99,107,121,8,0,14,46,106,115,45,99,111,111,107,105,101,95,98,97,114,8,0,15,46,106,115,45,99,111,111,107,105,101,95,104,105,110,116,8,0,17,46,106,115,45,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,16,46,106,115,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,21,46,106,115,45,99,111,111,107,105,101,98,97,110,110,101,114,45,119,114,97,112,8,0,13,46,106,115,45,99,111,111,107,105,101,98,97,114,8,0,14,46,106,115,45,99,111,111,107,105,101,104,105,110,116,8,0,19,46,106,115,45,99,111,111,107,105,101,105,110,102,111,108,97,121,101,114,8,0,15,46,106,115,45,99,111,111,107,105,101,108,97,121,101,114,8,0,14,46,106,115,45,99,111,111,107,105,101,108,111,111,112,8,0,15,46,106,115,45,99,111,111,107,105,101,109,111,100,97,108,8,0,11,46,106,115,45,99,111,111,107,105,101,115,8,0,27,46,106,115,45,99,111,111,107,105,101,115,45,97,103,114,101,101,45,99,111,110,116,97,105,110,101,114,8,0,21,46,106,115,45,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,8,0,34,46,106,115,45,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,17,46,106,115,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,20,46,106,115,45,99,111,111,107,105,101,115,45,98,97,99,107,100,114,111,112,8,0,18,46,106,115,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,15,46,106,115,45,99,111,111,107,105,101,115,45,98,97,114,8,0,17,46,106,115,45,99,111,111,107,105,101,115,45,98,108,111,99,107,8,0,19,46,106,115,45,99,111,111,107,105,101,115,45,98,108,111,99,107,95,116,8,0,15,46,106,115,45,99,111,111,107,105,101,115,45,98,111,120,8,0,19,46,106,115,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,8,0,14,46,106,115,45,99,111,111,107,105,101,115,45,101,117,8,0,19,46,106,115,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,8,0,24,46,106,115,45,99,111,111,107,105,101,115,45,110,111,116,45,97,99,99,101,112,116,101,100,8,0,18,46,106,115,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,8,0,23,46,106,115,45,99,111,111,107,105,101,115,45,112,97,103,101,45,102,105,108,116,101,114,8,0,17,46,106,115,45,99,111,111,107,105,101,115,45,112,97,110,101,108,8,0,17,46,106,115,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,18,46,106,115,45,99,111,111,107,105,101,115,45,112,111,112,117,112,115,8,0,18,46,106,115,45,99,111,111,107,105,101,115,45,116,97,114,103,101,116,8,0,14,46,106,115,45,99,111,111,107,105,101,115,65,100,118,8,0,22,46,106,115,45,99,111,111,107,105,101,115,95,95,100,105,115,99,108,97,109,101,114,8,0,20,46,106,115,45,99,111,111,107,105,101,115,95,105,110,102,111,114,109,101,114,8,0,18,46,106,115,45,99,111,111,107,105,101,115,95,110,111,116,105,99,101,8,0,31,46,106,115,45,99,121,98,111,116,45,99,111,111,107,105,101,98,111,116,45,112,108,97,99,101,104,111,108,100,101,114,8,0,25,46,106,115,45,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,112,111,112,117,112,8,0,22,46,106,115,45,100,105,115,99,108,97,105,109,101,114,45,100,105,115,109,105,115,115,8,0,14,46,106,115,45,101,117,45,99,111,48,107,49,101,115,8,0,17,46,106,115,45,101,117,45,99,111,111,107,105,101,45,108,97,119,8,0,20,46,106,115,45,101,117,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,106,115,45,102,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,106,115,45,102,101,118,101,114,45,99,111,111,107,105,101,115,8,0,24,46,106,115,45,102,111,111,116,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,14,46,106,115,45,102,116,45,99,111,111,107,105,101,115,8,0,12,46,106,115,45,103,45,99,111,111,107,105,101,8,0,8,46,106,115,45,103,100,112,114,8,0,15,46,106,115,45,103,100,112,114,45,98,97,110,110,101,114,8,0,26,46,106,115,45,103,100,112,114,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,22,46,106,115,45,103,100,112,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,106,115,45,103,100,112,114,45,99,111,111,107,105,101,45,98,111,120,8,0,15,46,106,115,45,103,100,112,114,45,104,101,97,100,101,114,8,0,13,46,106,115,45,103,100,112,114,45,105,110,102,111,8,0,15,46,106,115,45,103,100,112,114,45,110,111,116,105,99,101,8,0,30,46,106,115,45,103,100,112,114,45,110,111,116,105,99,101,45,100,105,97,108,111,103,45,111,118,101,114,108,97,121,8,0,14,46,106,115,45,103,100,112,114,45,112,111,112,117,112,8,0,16,46,106,115,45,103,100,112,114,45,116,111,111,108,116,105,112,8,0,13,46,106,115,45,103,100,112,114,65,108,101,114,116,8,0,25,46,106,115,45,103,108,111,98,97,108,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,18,46,106,115,45,103,108,111,98,97,108,45,99,111,111,107,105,101,115,8,0,18,46,106,115,45,103,108,111,98,97,108,45,112,114,105,118,97,99,121,8,0,27,46,106,115,45,103,108,111,98,97,108,45,112,114,105,118,97,99,121,45,109,101,115,115,97,103,101,115,8,0,24,46,106,115,45,103,108,111,98,97,108,45,115,107,114,112,45,109,101,115,115,97,103,101,115,8,0,30,46,106,115,45,103,108,111,98,97,108,45,116,111,112,45,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,8,0,21,46,106,115,45,105,100,45,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,18,46,106,115,45,105,110,102,111,66,97,114,67,111,111,107,105,101,115,8,0,17,46,106,115,45,108,97,121,101,114,45,99,111,111,107,105,101,115,8,0,8,46,106,115,45,108,103,112,100,8,0,16,46,106,115,45,108,119,112,99,110,103,78,111,116,105,99,101,8,0,22,46,106,115,45,109,97,105,110,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,106,115,45,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,8,0,16,46,106,115,45,109,111,100,97,108,45,99,111,111,107,105,101,8,0,22,46,106,115,45,109,111,100,97,108,45,102,105,114,115,116,45,99,111,111,107,105,101,8,0,13,46,106,115,45,109,121,45,99,111,111,107,105,101,8,0,23,46,106,115,45,110,97,110,111,98,97,114,45,102,105,114,115,116,45,108,111,103,105,110,8,0,13,46,106,115,45,110,110,45,99,111,111,107,105,101,8,0,30,46,106,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,106,115,45,110,111,116,105,102,121,45,99,111,111,107,105,101,8,0,20,46,106,115,45,110,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,28,46,106,115,45,111,99,99,108,115,115,45,97,108,101,114,116,45,99,111,111,107,105,101,112,111,112,117,112,8,0,16,46,106,115,45,112,97,103,101,45,99,111,111,107,105,101,115,8,0,13,46,106,115,45,112,97,103,101,45,107,118,107,107,8,0,14,46,106,115,45,112,97,103,101,95,95,103,100,112,114,8,0,16,46,106,115,45,112,97,110,101,108,45,99,111,111,107,105,101,8,0,29,46,106,115,45,112,101,114,115,111,110,97,108,73,110,102,111,114,109,97,116,105,111,110,78,111,116,105,99,101,8,0,16,46,106,115,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,17,46,106,115,45,112,111,108,105,99,121,95,98,97,110,110,101,114,8,0,15,46,106,115,45,112,111,108,105,99,121,112,111,112,117,112,8,0,23,46,106,115,45,112,111,112,117,112,45,99,111,111,107,105,101,45,115,105,109,112,108,101,8,0,19,46,106,115,45,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,8,0,24,46,106,115,45,112,114,105,118,97,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,24,46,106,115,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,97,108,101,114,116,8,0,22,46,106,115,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,114,8,0,30,46,106,115,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,45,98,111,120,8,0,38,46,106,115,45,114,101,97,99,116,45,99,111,109,112,111,110,101,110,116,45,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,12,46,106,115,45,114,115,116,45,103,100,112,114,8,0,21,46,106,115,45,115,104,111,119,46,99,111,111,107,105,101,45,109,111,100,97,108,8,0,18,46,106,115,45,115,105,108,101,110,116,45,99,111,110,115,101,110,116,8,0,21,46,106,115,45,115,105,116,101,45,99,111,111,107,105,101,95,95,105,110,102,111,8,0,15,46,106,115,45,115,105,116,101,67,111,111,107,105,101,115,8,0,18,46,106,115,45,115,116,105,99,107,121,45,99,111,111,107,105,101,115,8,0,24,46,106,115,45,115,116,105,99,107,121,45,102,111,111,116,101,114,45,99,111,111,107,105,101,8,0,24,46,106,115,45,115,117,110,100,105,111,45,99,111,111,107,105,101,45,100,105,97,108,111,103,8,0,27,46,106,115,45,116,101,114,109,115,45,111,102,45,117,115,101,45,100,105,115,99,108,97,105,109,101,114,8,0,23,46,106,115,45,116,109,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,17,46,106,115,45,116,111,97,115,116,45,99,111,111,107,105,101,115,8,0,18,46,106,115,45,116,114,97,99,107,105,110,103,45,112,111,112,117,112,8,0,19,46,106,115,45,117,103,45,97,108,101,114,116,45,99,111,111,107,105,101,8,0,17,46,106,115,45,118,105,115,105,116,111,114,78,111,116,105,99,101,8,0,24,46,106,115,45,119,97,114,110,105,110,103,45,116,111,112,45,45,99,111,111,107,105,101,115,8,0,31,46,106,115,45,119,101,98,115,105,116,101,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,13,46,106,115,46,116,99,45,98,97,110,110,101,114,8,0,18,46,106,115,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,13,46,106,115,67,111,111,107,105,101,68,105,97,103,8,0,16,46,106,115,67,111,111,107,105,101,87,97,114,110,105,110,103,8,0,10,46,106,115,67,111,111,107,105,101,115,8,0,15,46,106,115,67,111,111,107,105,101,115,65,108,101,114,116,8,0,17,46,106,115,67,111,111,107,105,101,115,77,101,115,115,97,103,101,8,0,15,46,106,115,67,111,111,107,105,101,115,80,111,112,85,112,8,0,20,46,106,115,67,117,115,116,111,109,67,108,111,115,101,67,111,111,107,105,101,8,0,19,46,106,115,67,117,115,116,111,109,67,111,111,107,105,101,87,114,97,112,8,0,25,46,106,115,69,85,67,111,111,107,105,101,73,110,102,111,98,97,114,68,105,115,112,108,97,121,8,0,10,46,106,115,71,100,112,114,66,97,114,8,0,19,46,106,115,71,100,112,114,78,111,116,105,99,101,72,111,108,100,101,114,8,0,12,46,106,115,77,111,100,97,108,82,111,100,111,8,0,16,46,106,115,95,95,98,97,110,110,101,114,45,103,100,112,114,8,0,11,46,106,115,95,95,99,111,111,107,105,101,8,0,23,46,106,115,95,95,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,8,0,30,46,106,115,95,95,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,95,98,97,110,110,101,114,8,0,17,46,106,115,95,95,99,111,111,107,105,101,45,109,111,100,97,108,8,0,17,46,106,115,95,95,99,111,111,107,105,101,95,112,111,112,117,112,8,0,17,46,106,115,95,97,99,99,101,112,116,95,99,111,111,107,105,101,8,0,29,46,106,115,95,97,108,101,114,116,67,111,111,107,105,101,67,78,73,76,95,99,111,110,116,97,105,110,101,114,8,0,16,46,106,115,95,99,107,95,99,111,110,116,97,105,110,101,114,8,0,18,46,106,115,95,99,111,111,107,105,101,45,109,97,110,97,103,101,114,8,0,14,46,106,115,95,99,111,111,107,105,101,95,108,97,119,8,0,28,46,106,115,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,8,0,21,46,106,115,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,8,0,26,46,106,115,95,99,111,111,107,105,101,115,95,100,105,115,97,98,108,101,100,95,108,97,121,101,114,8,0,19,46,106,115,95,99,111,111,107,105,101,115,95,119,114,97,112,112,101,114,8,0,22,46,106,115,95,103,100,112,114,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,21,46,106,115,95,104,101,97,100,101,114,45,99,111,111,107,105,101,45,98,97,114,8,0,12,46,106,115,98,100,45,67,111,111,107,105,101,8,0,12,46,106,117,98,67,111,111,107,87,97,114,110,8,0,24,46,106,117,109,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,8,0,23,46,106,117,109,98,111,116,114,111,110,45,45,99,111,111,107,105,101,108,97,121,101,114,8,0,16,46,106,117,110,101,50,48,49,56,99,111,111,107,105,101,115,8,0,18,46,106,117,110,105,116,104,45,99,111,111,107,105,101,110,111,116,101,8,0,30,46,106,119,45,119,105,100,103,101,116,45,115,104,111,119,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,10,46,107,52,45,99,111,111,107,105,101,8,0,19,46,107,97,99,111,111,107,105,101,45,99,109,45,119,105,110,100,111,119,8,0,26,46,107,97,100,101,110,99,101,45,99,111,110,118,101,114,115,105,111,110,45,98,97,110,110,101,114,8,0,10,46,107,97,107,111,114,45,98,97,114,8,0,16,46,107,97,108,105,45,99,99,45,98,97,110,100,101,97,117,8,0,23,46,107,98,45,99,107,45,98,97,114,45,110,111,116,105,102,121,45,98,108,111,99,107,8,0,17,46,107,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,107,98,99,95,99,111,111,107,105,101,8,0,16,46,107,98,99,95,99,111,111,107,105,101,95,119,114,97,112,8,0,12,46,107,101,99,107,115,101,45,105,110,102,111,8,0,8,46,107,101,107,115,98,97,114,8,0,16,46,107,101,107,115,98,111,120,45,111,118,101,114,108,97,121,8,0,22,46,107,101,107,115,98,111,120,45,111,118,101,114,108,97,121,45,108,97,121,101,114,8,0,13,46,107,101,107,115,105,45,98,97,110,110,101,114,8,0,24,46,107,101,107,115,105,107,121,115,101,108,121,77,111,100,97,108,69,108,101,109,101,110,116,8,0,16,46,107,101,110,116,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,107,103,109,77,111,100,97,108,45,99,111,111,107,105,101,8,0,11,46,107,105,97,45,99,111,111,107,105,101,8,0,18,46,107,105,99,107,45,107,99,109,45,115,101,116,116,105,110,103,115,8,0,13,46,107,105,103,111,45,99,111,111,107,105,101,115,8,0,17,46,107,105,107,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,20,46,107,105,116,116,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,25,46,107,105,116,116,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,95,115,104,111,119,8,0,17,46,107,106,102,67,111,111,107,105,101,73,110,102,111,66,111,120,8,0,8,46,107,107,45,103,100,112,114,8,0,14,46,107,108,45,99,111,111,107,105,101,110,111,116,101,8,0,17,46,107,108,97,114,111,80,108,97,99,101,104,111,108,100,101,114,8,0,23,46,107,108,105,99,107,101,100,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,21,46,107,109,45,99,111,111,107,105,101,115,45,99,111,109,112,111,110,101,110,116,8,0,14,46,107,111,101,107,105,101,109,101,108,100,105,110,103,8,0,19,46,107,111,101,107,106,101,95,98,97,114,95,99,111,110,116,101,110,116,8,0,20,46,107,111,107,107,117,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,25,46,107,111,109,95,112,111,108,105,116,121,107,97,95,112,114,121,119,97,116,110,111,115,99,105,8,0,24,46,107,111,109,117,110,105,107,97,116,45,112,97,110,101,108,45,99,111,111,107,105,101,115,8,0,18,46,107,111,109,117,110,105,107,97,116,95,99,111,111,107,105,101,115,8,0,22,46,107,111,110,105,110,103,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,8,0,16,46,107,111,110,116,101,110,101,114,95,99,111,111,107,105,101,8,0,12,46,107,111,111,107,105,101,99,104,101,99,107,8,0,18,46,107,112,45,99,111,111,107,105,101,115,95,95,99,108,111,97,107,8,0,22,46,107,114,97,107,101,110,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,16,46,107,114,104,67,111,111,107,105,101,66,97,110,110,101,114,8,0,11,46,107,115,45,99,111,111,107,105,101,115,8,0,25,46,107,115,109,97,45,98,108,111,99,107,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,15,46,107,116,45,99,111,111,107,105,101,115,45,98,97,114,8,0,17,46,107,116,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,10,46,107,116,95,99,111,111,107,105,101,8,0,18,46,107,116,104,45,116,111,97,115,116,45,45,98,111,116,116,111,109,8,0,24,46,107,117,101,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,8,46,107,117,107,105,45,106,115,8,0,10,46,107,117,107,105,119,114,97,112,120,8,0,18,46,107,118,45,101,101,45,103,100,112,114,45,98,97,110,110,101,114,8,0,11,46,107,118,107,45,99,111,111,107,105,101,8,0,16,46,107,118,107,45,102,111,111,116,101,114,45,98,111,100,121,8,0,19,46,107,118,107,45,102,111,111,116,101,114,45,119,97,114,110,105,110,103,8,0,9,46,107,118,107,45,111,110,97,121,8,0,12,46,107,118,107,107,45,98,111,116,116,111,109,8,0,11,46,107,118,107,107,45,102,114,97,109,101,8,0,8,46,107,118,107,107,112,111,112,8,0,12,46,107,118,118,107,45,99,111,111,107,105,101,8,0,25,46,107,119,45,115,108,105,100,101,114,95,95,99,111,111,99,107,105,101,45,108,97,121,101,114,8,0,20,46,107,119,112,99,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,108,45,99,111,110,115,101,110,116,95,98,97,110,110,101,114,8,0,9,46,108,45,99,111,111,107,105,101,8,0,15,46,108,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,16,46,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,108,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,8,0,23,46,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,8,0,13,46,108,45,99,111,111,107,105,101,45,108,97,119,8,0,26,46,108,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,16,46,108,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,13,46,108,45,99,111,111,107,105,101,45,112,111,112,8,0,15,46,108,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,21,46,108,45,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,14,46,108,45,99,111,111,107,105,101,80,111,112,117,112,8,0,16,46,108,45,99,111,111,107,105,101,87,114,97,112,112,101,114,8,0,10,46,108,45,99,111,111,107,105,101,115,8,0,18,46,108,45,99,111,111,107,105,101,115,95,95,98,97,110,110,101,114,8,0,13,46,108,45,100,105,115,99,108,97,105,109,101,114,8,0,24,46,108,45,102,111,111,116,101,114,95,99,111,111,107,105,101,65,108,101,114,116,66,111,120,8,0,14,46,108,45,103,100,112,114,45,98,97,110,110,101,114,8,0,24,46,108,45,103,108,111,98,97,108,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,8,0,35,46,108,45,104,101,97,100,101,114,45,99,111,110,116,97,105,110,101,114,95,95,112,114,105,118,97,99,121,45,112,114,111,109,112,116,8,0,15,46,108,45,109,111,100,97,108,45,99,111,111,107,105,101,8,0,16,46,108,45,112,97,103,101,95,95,99,111,111,107,105,101,115,8,0,20,46,108,45,115,116,105,99,107,121,45,103,102,95,95,97,99,99,101,112,116,8,0,16,46,108,52,119,45,99,111,111,107,105,101,115,45,98,97,114,8,0,26,46,108,97,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,8,0,21,46,108,97,109,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,22,46,108,97,109,105,117,109,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,108,97,110,100,101,110,100,45,105,110,102,111,98,97,114,45,100,97,114,107,8,0,16,46,108,97,110,100,105,110,103,45,99,111,111,107,105,101,115,8,0,22,46,108,97,110,100,105,110,103,45,99,111,111,107,105,101,115,98,97,110,110,101,114,8,0,12,46,108,97,110,103,45,99,111,111,107,105,101,8,0,18,46,108,97,110,110,101,98,111,45,99,111,111,107,105,101,98,111,116,8,0,11,46,108,97,119,95,99,111,111,107,105,101,8,0,12,46,108,97,119,95,99,111,111,107,105,101,115,8,0,21,46,108,97,119,95,99,111,111,107,105,101,115,95,116,101,115,116,95,65,67,77,8,0,13,46,108,97,119,115,45,99,111,111,107,105,101,115,8,0,31,46,108,97,121,101,114,45,45,102,105,120,101,100,45,98,111,116,116,111,109,91,99,111,111,107,105,101,98,97,114,93,8,0,13,46,108,97,121,101,114,45,99,111,111,107,105,101,8,0,42,46,108,97,121,101,114,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,8,0,12,46,108,97,121,101,114,67,111,111,107,105,101,8,0,13,46,108,97,121,101,114,95,99,111,111,107,105,101,8,0,21,46,108,97,121,111,117,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,34,46,108,97,121,111,117,116,70,108,111,97,116,105,110,103,91,105,115,61,34,98,97,115,105,115,45,99,111,111,107,105,101,34,93,8,0,36,46,108,97,121,111,117,116,95,95,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,108,97,121,111,117,116,95,95,100,105,115,99,108,97,105,109,101,114,8,0,31,46,108,97,121,111,117,116,95,95,111,118,101,114,108,97,121,115,95,95,99,111,111,107,105,101,78,111,116,105,99,101,8,0,19,46,108,97,122,105,109,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,25,46,108,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,13,46,108,98,120,45,45,99,111,111,107,105,101,115,8,0,8,46,108,99,45,103,100,112,114,8,0,17,46,108,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,108,100,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,20,46,108,100,115,95,95,112,114,105,118,97,99,121,45,112,111,108,105,99,121,8,0,16,46,108,101,102,116,46,117,100,99,45,104,111,108,100,101,114,8,0,42,46,108,101,103,97,108,45,97,99,107,110,111,119,108,101,100,103,101,109,101,110,116,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,18,46,108,101,103,97,108,45,97,108,101,114,116,45,112,111,112,117,112,8,0,20,46,108,101,103,97,108,45,98,97,110,110,101,114,45,114,101,103,105,111,110,8,0,13,46,108,101,103,97,108,45,99,111,111,107,105,101,8,0,21,46,108,101,103,97,108,45,99,111,111,107,105,101,45,101,117,45,104,105,110,116,8,0,21,46,108,101,103,97,108,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,16,46,108,101,103,97,108,45,99,111,111,107,105,101,98,97,114,8,0,25,46,108,101,103,97,108,45,105,110,102,111,95,95,97,108,101,114,116,45,99,111,111,107,105,101,8,0,22,46,108,101,103,97,108,45,109,101,115,115,97,103,101,45,119,114,97,112,112,101,114,8,0,12,46,108,101,103,97,108,67,111,111,107,105,101,8,0,8,46,108,101,103,97,108,85,69,8,0,19,46,108,101,103,97,108,95,99,111,111,107,105,101,95,98,108,111,99,107,8,0,12,46,108,101,103,97,108,97,100,118,105,99,101,8,0,13,46,108,101,103,97,108,119,97,114,110,105,110,103,8,0,34,46,108,101,109,111,110,95,99,111,111,107,105,101,95,119,105,110,100,111,119,95,111,117,116,101,114,95,119,114,97,112,112,101,114,8,0,18,46,108,101,116,117,115,45,117,115,101,45,99,111,111,107,105,101,115,8,0,11,46,108,101,121,67,111,111,107,105,101,115,8,0,22,46,108,102,45,99,111,111,107,105,101,45,108,97,119,45,100,101,102,97,117,108,116,8,0,10,46,108,103,45,99,111,111,107,105,101,8,0,20,46,108,103,99,111,111,107,105,101,115,108,97,119,45,98,97,110,110,101,114,8,0,21,46,108,103,99,111,111,107,105,101,115,108,97,119,45,111,118,101,114,108,97,121,8,0,20,46,108,103,99,111,111,107,105,101,115,108,97,119,95,98,97,110,110,101,114,8,0,21,46,108,103,99,111,111,107,105,101,115,108,97,119,95,111,118,101,114,108,97,121,8,0,30,46,108,103,105,45,98,103,99,111,110,116,97,105,110,101,114,45,112,114,105,118,97,99,121,98,97,110,110,101,114,8,0,18,46,108,103,105,95,112,114,105,118,97,99,121,98,97,110,110,101,114,8,0,22,46,108,103,112,100,45,97,99,101,105,116,101,45,99,111,110,116,97,105,110,101,114,8,0,9,46,108,103,112,100,45,97,108,108,8,0,12,46,108,103,112,100,45,98,97,110,110,101,114,8,0,9,46,108,103,112,100,45,98,97,114,8,0,25,46,108,103,112,100,45,98,97,114,45,102,108,111,97,116,45,99,111,110,116,97,105,110,101,114,8,0,17,46,108,103,112,100,45,98,97,114,45,119,114,97,112,112,101,114,8,0,9,46,108,103,112,100,45,98,111,120,8,0,13,46,108,103,112,100,45,99,111,110,116,101,110,116,8,0,9,46,108,103,112,100,45,100,105,118,8,0,11,46,108,103,112,100,45,108,97,121,101,114,8,0,13,46,108,103,112,100,45,109,101,115,115,97,103,101,8,0,11,46,108,103,112,100,45,109,111,100,97,108,8,0,19,46,108,103,112,100,45,109,111,100,97,108,45,99,111,110,116,101,110,116,8,0,12,46,108,103,112,100,45,110,111,116,105,99,101,8,0,17,46,108,103,112,100,45,110,111,116,105,99,101,45,119,114,97,112,8,0,23,46,108,103,112,100,45,110,111,116,105,99,101,95,95,99,111,110,116,97,105,110,101,114,8,0,28,46,108,103,112,100,45,112,111,108,105,99,121,45,99,111,109,112,108,105,97,110,99,101,45,109,97,105,110,8,0,13,46,108,103,112,100,45,115,101,99,116,105,111,110,8,0,13,46,108,103,112,100,45,119,114,97,112,112,101,114,8,0,9,46,108,103,112,100,95,98,97,114,8,0,20,46,108,103,112,100,95,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,12,46,108,103,112,100,95,119,100,95,98,111,120,8,0,12,46,108,105,67,111,111,107,105,101,80,111,108,8,0,24,46,108,105,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,97,108,101,114,116,8,0,28,46,108,105,98,45,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,114,101,103,105,115,116,114,121,8,0,33,46,108,105,103,104,116,98,111,120,45,98,97,99,107,100,114,111,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,26,46,108,105,108,97,121,111,117,116,45,104,101,97,100,101,114,45,99,111,111,107,105,101,98,97,114,8,0,14,46,108,105,115,116,97,45,99,111,111,107,105,101,115,8,0,20,46,108,105,116,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,28,46,108,105,116,104,111,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,8,0,20,46,108,108,95,99,111,111,107,105,101,98,97,114,95,98,111,116,116,111,109,8,0,19,46,108,108,95,99,111,111,107,105,101,98,97,114,95,108,105,103,104,116,8,0,24,46,108,108,100,45,99,111,111,107,105,101,99,111,110,115,101,110,116,98,97,110,110,101,114,8,0,19,46,108,109,115,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,8,0,20,46,108,110,100,45,67,111,111,107,105,101,115,95,87,114,97,112,112,101,114,8,0,28,46,108,111,97,100,105,110,103,95,99,111,111,107,105,101,95,109,97,105,110,107,117,97,110,103,106,105,97,8,0,21,46,108,111,103,105,110,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,20,46,108,111,105,95,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,8,0,10,46,108,111,105,95,104,97,109,111,110,8,0,18,46,108,111,118,105,110,103,45,101,117,45,99,111,111,107,105,101,115,8,0,20,46,108,111,119,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,108,112,45,99,111,100,101,32,62,32,35,99,111,111,107,105,101,8,0,19,46,108,112,45,99,111,111,107,105,101,45,97,112,112,114,111,118,97,108,8,0,17,46,108,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,108,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,18,46,108,112,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,24,46,108,112,45,119,105,100,103,101,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,108,112,95,95,99,111,111,107,105,101,95,116,111,111,108,116,105,112,8,0,14,46,108,112,115,67,111,111,107,105,101,73,110,102,111,8,0,10,46,108,115,67,111,110,115,101,110,116,8,0,27,46,108,117,97,110,97,45,109,111,100,117,108,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,24,46,108,117,99,105,100,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,26,46,108,117,109,105,115,45,115,101,114,118,105,99,101,45,112,114,105,118,97,99,121,116,101,114,109,8,0,21,46,108,117,112,99,111,109,95,99,111,111,107,105,101,95,115,119,105,116,99,104,8,0,11,46,108,117,115,45,99,111,111,107,105,101,8,0,15,46,108,117,115,45,99,111,111,107,105,101,45,112,114,101,8,0,27,46,108,117,120,97,114,95,100,105,115,99,108,97,105,109,101,114,95,99,111,110,116,97,105,110,101,114,8,0,29,46,108,118,109,45,99,111,109,112,108,105,97,110,99,101,45,99,111,110,102,105,114,109,45,97,108,101,114,116,8,0,13,46,108,119,112,99,110,103,78,111,116,105,99,101,8,0,15,46,108,120,98,95,99,109,45,109,101,115,115,97,103,101,8,0,18,46,109,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,34,46,109,45,48,52,56,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,8,0,9,46,109,45,67,111,111,107,105,101,8,0,23,46,109,45,97,108,101,114,116,45,98,97,110,110,101,114,45,45,99,111,111,107,105,101,8,0,14,46,109,45,98,97,114,45,45,99,111,111,107,105,101,8,0,15,46,109,45,98,97,115,105,99,45,99,111,111,107,105,101,8,0,23,46,109,45,98,97,115,105,99,45,99,111,111,107,105,101,45,114,101,102,114,101,115,104,8,0,9,46,109,45,99,111,111,107,105,101,8,0,15,46,109,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,17,46,109,45,99,111,111,107,105,101,45,97,108,101,114,116,45,49,8,0,16,46,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,13,46,109,45,99,111,111,107,105,101,45,98,97,114,8,0,17,46,109,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,8,0,17,46,109,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,20,46,109,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,14,46,109,45,99,111,111,107,105,101,45,105,110,102,111,8,0,15,46,109,45,99,111,111,107,105,101,45,105,110,116,114,111,8,0,16,46,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,22,46,109,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,15,46,109,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,12,46,109,45,99,111,111,107,105,101,66,97,114,8,0,13,46,109,45,99,111,111,107,105,101,73,110,102,111,8,0,15,46,109,45,99,111,111,107,105,101,80,111,108,105,99,121,8,0,16,46,109,45,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,16,46,109,45,99,111,111,107,105,101,99,111,110,116,114,111,108,8,0,13,46,109,45,99,111,111,107,105,101,104,105,110,116,8,0,14,46,109,45,99,111,111,107,105,101,108,97,121,101,114,8,0,15,46,109,45,99,111,111,107,105,101,112,111,108,105,99,121,8,0,10,46,109,45,99,111,111,107,105,101,115,8,0,16,46,109,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,14,46,109,45,99,111,111,107,105,101,115,45,98,97,114,8,0,19,46,109,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,20,46,109,45,103,100,112,114,45,97,108,101,114,116,45,98,97,110,110,101,114,8,0,25,46,109,45,103,108,111,98,97,108,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,8,0,23,46,109,45,104,101,97,100,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,18,46,109,45,104,101,97,100,115,45,117,112,45,98,97,110,110,101,114,8,0,17,46,109,45,109,101,115,115,97,103,101,45,98,97,110,110,101,114,8,0,23,46,109,45,110,111,116,105,99,101,95,80,114,105,118,97,99,121,80,111,108,105,99,121,8,0,21,46,109,45,110,111,116,105,102,105,99,97,116,105,111,110,45,108,97,121,101,114,8,0,17,46,109,45,112,111,112,117,112,95,95,99,111,111,107,105,101,115,8,0,10,46,109,45,112,114,105,118,97,99,121,8,0,18,46,109,45,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,8,0,19,46,109,45,112,114,105,118,97,99,121,45,108,105,103,104,116,98,111,120,8,0,18,46,109,45,112,114,105,118,97,99,121,45,111,112,116,105,111,110,115,8,0,21,46,109,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,111,112,8,0,28,46,109,45,114,101,97,99,116,45,99,99,109,95,95,115,101,116,116,105,110,103,115,45,108,97,121,101,114,8,0,17,46,109,45,115,116,114,105,112,101,45,45,99,111,111,107,105,101,8,0,18,46,109,45,116,114,97,99,107,105,110,103,45,98,97,110,110,101,114,8,0,13,46,109,49,53,57,45,99,111,111,107,105,101,115,8,0,10,46,109,53,45,99,111,111,107,105,101,8,0,18,46,109,54,67,111,111,107,105,101,115,95,111,118,101,114,108,97,121,8,0,13,46,109,67,67,70,45,45,98,111,116,116,111,109,8,0,17,46,109,83,117,105,116,101,67,111,111,107,105,101,70,97,100,101,8,0,9,46,109,95,99,111,111,107,105,101,8,0,20,46,109,95,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,16,46,109,95,99,111,111,107,105,101,95,110,111,116,105,99,101,8,0,10,46,109,95,99,111,111,107,105,101,115,8,0,20,46,109,95,112,114,105,118,97,99,121,95,115,116,97,116,101,109,101,110,116,8,0,30,46,109,97,45,67,111,111,107,105,101,115,68,105,114,101,99,116,105,118,101,95,67,111,110,116,97,105,110,101,114,8,0,18,46,109,97,95,99,111,111,107,105,101,95,112,111,112,111,118,101,114,8,0,33,46,109,97,99,45,104,101,97,100,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,115,101,99,116,105,111,110,8,0,18,46,109,97,100,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,20,46,109,97,103,101,110,105,111,95,97,108,101,114,116,99,111,111,107,105,101,8,0,14,46,109,97,103,110,117,115,45,99,111,111,107,105,101,8,0,18,46,109,97,105,110,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,18,46,109,97,105,110,45,99,111,111,107,105,101,45,116,105,116,108,101,8,0,20,46,109,97,105,110,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,13,46,109,97,105,110,45,99,111,111,107,105,101,115,8,0,21,46,109,97,105,110,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,24,46,109,97,105,110,45,102,111,111,116,101,114,45,99,111,111,107,105,101,45,105,110,102,111,8,0,19,46,109,97,105,110,45,112,114,105,118,97,99,121,45,112,111,112,117,112,8,0,17,46,109,97,105,110,67,111,111,107,105,101,65,108,101,114,116,97,8,0,16,46,109,97,105,110,67,111,111,107,105,101,80,111,112,117,112,8,0,17,46,109,97,105,110,67,111,111,107,105,101,115,80,111,112,85,112,8,0,15,46,109,97,105,110,80,114,105,118,97,99,121,66,97,114,8,0,15,46,109,97,105,110,80,114,105,118,97,99,121,68,105,118,8,0,17,46,109,97,105,110,80,114,105,118,97,99,121,77,111,100,97,108,8,0,13,46,109,97,110,97,103,101,99,111,111,107,105,101,8,0,15,46,109,97,110,97,103,101,114,67,111,111,107,105,101,115,8,0,23,46,109,97,110,116,105,110,103,97,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,109,97,114,99,111,45,99,105,118,105,108,45,98,97,110,110,101,114,8,0,29,46,109,97,114,107,101,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,109,111,100,97,108,8,0,16,46,109,97,115,101,114,97,116,105,45,99,111,111,107,105,101,8,0,9,46,109,97,115,107,82,111,100,111,8,0,19,46,109,97,115,113,117,101,95,99,111,111,107,105,101,95,119,97,108,108,8,0,22,46,109,97,115,116,45,99,45,98,97,110,110,101,114,115,45,99,111,111,107,105,101,8,0,14,46,109,97,116,111,109,111,95,98,97,110,110,101,114,8,0,44,46,109,97,116,114,105,122,50,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,8,0,27,46,109,97,120,95,119,112,95,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,18,46,109,98,45,99,111,110,116,101,110,116,45,99,111,111,107,105,101,8,0,25,46,109,98,45,111,108,45,112,114,105,118,97,99,121,45,98,111,120,45,102,111,111,116,101,114,8,0,10,46,109,98,95,99,111,111,107,105,101,8,0,23,46,109,98,95,105,110,102,111,114,109,97,116,105,118,97,95,99,111,111,107,105,101,115,8,0,19,46,109,98,116,45,99,111,111,107,105,101,95,95,110,111,116,105,99,101,8,0,20,46,109,99,45,99,111,110,115,101,110,116,115,45,119,114,97,112,112,101,114,8,0,14,46,109,99,65,112,105,95,99,111,111,107,105,101,115,8,0,25,46,109,99,100,45,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,108,97,121,101,114,8,0,15,46,109,99,108,45,99,111,111,107,105,101,45,98,97,114,8,0,18,46,109,99,113,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,109,100,45,99,111,110,115,101,110,116,8,0,10,46,109,100,45,99,111,111,107,105,101,8,0,18,46,109,100,45,99,111,111,107,105,101,45,98,108,111,99,107,101,114,8,0,18,46,109,100,45,99,111,111,107,105,101,45,100,101,102,97,117,108,116,8,0,18,46,109,100,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,18,46,109,100,45,99,111,111,107,105,101,115,45,97,100,118,105,99,101,8,0,20,46,109,100,115,116,114,67,111,111,107,105,101,76,111,99,97,116,105,111,110,8,0,21,46,109,100,120,45,115,116,100,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,12,46,109,101,100,45,99,111,111,107,105,101,115,8,0,17,46,109,101,108,105,110,100,114,101,115,45,98,97,110,110,101,114,8,0,28,46,109,101,108,105,115,45,103,100,112,114,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,15,46,109,101,110,115,97,106,101,45,99,111,111,107,105,101,8,0,14,46,109,101,110,116,105,111,110,67,111,111,107,105,101,8,0,17,46,109,101,110,117,45,99,111,110,45,99,111,111,107,105,101,115,8,0,11,46,109,101,110,117,67,111,111,107,105,101,8,0,14,46,109,101,115,115,97,103,101,45,45,99,110,105,108,8,0,16,46,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,8,0,24,46,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,17,46,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,115,8,0,16,46,109,101,115,115,97,103,101,45,99,111,99,107,105,101,115,8,0,15,46,109,101,115,115,97,103,101,45,99,111,111,107,105,101,8,0,22,46,109,101,115,115,97,103,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,8,0,24,46,109,101,115,115,97,103,101,45,100,101,109,97,110,100,101,45,99,111,111,107,105,101,115,8,0,32,46,109,101,115,115,97,103,101,45,100,101,109,97,110,100,101,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,18,46,109,101,115,115,97,103,101,45,101,117,119,97,114,110,105,110,103,8,0,21,46,109,101,115,115,97,103,101,45,109,111,100,97,108,45,99,111,111,107,105,101,8,0,24,46,109,101,115,115,97,103,101,45,110,111,116,105,102,105,99,97,116,105,111,110,95,99,116,8,0,24,46,109,101,115,115,97,103,101,45,111,118,101,114,108,97,121,45,45,99,111,111,107,105,101,8,0,45,46,109,101,115,115,97,103,101,45,112,97,110,101,108,91,100,97,116,97,45,110,111,116,105,99,101,45,105,100,61,34,99,111,111,107,105,101,78,111,116,105,99,101,34,93,8,0,23,46,109,101,115,115,97,103,101,45,119,101,45,117,115,101,45,99,111,111,107,105,101,115,8,0,23,46,109,101,115,115,97,103,101,91,100,97,116,97,45,99,99,45,109,111,100,97,108,93,8,0,15,46,109,101,115,115,97,103,101,95,99,111,111,107,105,101,8,0,17,46,109,101,115,115,97,103,101,115,45,45,99,111,111,107,105,101,8,0,17,46,109,101,115,115,97,103,101,115,95,99,111,111,107,105,101,115,8,0,17,46,109,101,115,115,97,103,103,105,111,95,99,111,111,107,105,101,8,0,18,46,109,101,115,115,97,103,103,105,111,95,99,111,111,107,105,101,115,8,0,17,46,109,102,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,109,102,45,99,111,111,107,105,101,45,109,111,100,101,108,8,0,10,46,109,103,45,99,111,111,107,105,101,8,0,12,46,109,103,100,112,114,45,112,111,112,117,112,8,0,19,46,109,103,118,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,17,46,109,103,120,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,17,46,109,104,53,95,67,111,111,107,105,101,78,111,116,105,99,101,8,0,17,46,109,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,8,46,109,105,45,103,100,112,114,8,0,12,46,109,105,100,45,99,111,111,107,105,101,115,8,0,19,46,109,105,104,111,121,111,45,99,111,111,107,105,101,45,116,105,112,115,8,0,22,46,109,105,107,105,116,95,98,97,110,100,101,97,117,95,99,111,111,107,105,101,115,8,0,14,46,109,105,108,105,98,111,111,67,111,111,107,105,101,8,0,21,46,109,105,110,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,17,46,109,105,110,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,17,46,109,105,110,80,112,112,87,114,112,95,99,111,111,107,105,101,8,0,14,46,109,105,110,80,112,112,95,99,111,111,107,105,101,8,0,12,46,109,105,110,105,67,111,110,115,101,110,116,8,0,18,46,109,105,110,105,95,99,111,111,107,105,101,95,115,116,97,99,107,8,0,20,46,109,105,112,114,111,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,18,46,109,105,115,99,45,112,111,112,117,112,45,99,111,111,107,105,101,8,0,20,46,109,106,45,98,111,120,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,19,46,109,106,45,99,111,110,115,101,110,116,95,95,98,97,110,110,101,114,8,0,23,46,109,106,45,103,100,112,114,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,29,46,109,106,45,106,115,45,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,15,46,109,106,95,103,100,112,114,95,98,97,110,110,101,114,8,0,18,46,109,106,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,23,46,109,107,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,13,46,109,107,45,99,111,111,107,105,101,66,111,120,8,0,15,46,109,107,67,111,111,107,105,101,66,97,110,110,101,114,8,0,17,46,109,107,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,11,46,109,107,111,99,111,111,107,105,101,115,8,0,28,46,109,107,116,95,99,111,110,115,101,110,116,95,109,97,110,97,103,101,114,95,119,114,97,112,112,101,114,8,0,15,46,109,108,45,99,111,111,107,105,101,45,119,114,97,112,8,0,15,46,109,108,97,45,103,100,112,114,45,108,105,103,104,116,8,0,17,46,109,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,109,109,45,99,111,111,107,105,101,115,8,0,24,46,109,109,45,109,111,100,97,108,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,18,46,109,109,45,112,97,103,101,32,62,32,35,99,111,111,107,105,101,8,0,25,46,109,109,45,112,97,103,101,32,62,32,35,99,111,111,107,105,101,104,105,110,119,101,105,115,8,0,27,46,109,109,45,112,97,103,101,32,62,32,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,8,0,19,46,109,109,45,112,97,103,101,32,62,32,46,99,111,111,107,105,101,115,8,0,20,46,109,109,67,111,111,107,105,101,73,110,102,111,66,111,120,85,115,101,114,8,0,10,46,109,109,67,111,111,107,105,101,115,8,0,16,46,109,109,95,99,111,111,107,105,101,95,108,97,121,101,114,8,0,20,46,109,109,99,111,111,107,105,101,112,114,101,102,45,112,108,117,103,105,110,8,0,16,46,109,109,115,45,99,111,111,107,105,101,108,97,121,101,114,8,0,19,46,109,109,116,111,111,108,115,45,99,111,111,107,105,101,45,98,97,114,8,0,23,46,109,109,117,105,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,15,46,109,110,100,45,99,111,111,107,105,101,45,98,97,114,8,0,12,46,109,110,100,45,99,111,111,107,105,101,115,8,0,15,46,109,111,45,99,111,109,45,99,111,111,107,105,101,115,8,0,12,46,109,111,45,115,105,116,101,80,114,105,118,8,0,35,46,109,111,98,114,111,103,45,118,49,45,99,109,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,21,46,109,111,99,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,18,46,109,111,100,45,67,111,111,107,105,101,77,101,115,115,97,103,101,8,0,21,46,109,111,100,45,97,119,95,99,111,111,107,105,101,97,98,102,114,97,103,101,8,0,11,46,109,111,100,45,99,111,111,107,105,101,8,0,17,46,109,111,100,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,15,46,109,111,100,45,99,111,111,107,105,101,45,98,97,114,8,0,19,46,109,111,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,27,46,109,111,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,100,105,97,108,111,103,8,0,22,46,109,111,100,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,23,46,109,111,100,45,99,111,111,107,105,101,45,108,97,119,45,99,111,110,115,101,110,116,8,0,17,46,109,111,100,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,18,46,109,111,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,109,111,100,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,14,46,109,111,100,45,99,111,111,107,105,101,98,97,114,8,0,16,46,109,111,100,45,99,111,111,107,105,101,108,97,121,101,114,8,0,17,46,109,111,100,45,99,111,111,107,105,101,112,111,108,105,99,121,8,0,32,46,109,111,100,45,99,111,111,107,105,101,115,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,18,46,109,111,100,45,99,111,111,107,105,101,119,97,114,110,105,110,103,8,0,15,46,109,111,100,45,100,105,115,99,108,97,105,109,101,114,8,0,9,46,109,111,100,45,108,103,112,100,8,0,19,46,109,111,100,45,108,103,112,100,45,99,97,98,101,99,97,108,104,111,8,0,34,46,109,111,100,45,111,118,101,114,108,97,121,91,100,97,116,97,45,116,111,112,105,99,61,34,99,111,110,115,101,110,116,34,93,8,0,18,46,109,111,100,45,112,114,105,118,97,99,121,112,111,108,105,99,121,8,0,20,46,109,111,100,45,119,101,98,115,105,116,101,45,99,111,111,107,105,101,115,8,0,13,46,109,111,100,67,111,111,107,105,101,66,97,114,8,0,18,46,109,111,100,67,111,111,107,105,101,115,67,111,110,115,101,110,116,8,0,20,46,109,111,100,70,105,110,97,110,99,105,97,108,67,111,111,107,105,101,115,8,0,23,46,109,111,100,85,116,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,49,8,0,19,46,109,111,100,95,99,109,115,95,99,111,111,107,105,101,95,98,97,114,8,0,15,46,109,111,100,95,99,111,111,107,105,101,45,98,97,114,8,0,15,46,109,111,100,95,99,111,111,107,105,101,95,98,97,114,8,0,24,46,109,111,100,95,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,18,46,109,111,100,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,20,46,109,111,100,95,99,111,111,107,105,101,98,97,114,95,111,112,116,105,110,8,0,25,46,109,111,100,95,99,111,111,107,105,101,98,97,114,95,111,112,116,105,110,95,115,108,105,109,8,0,23,46,109,111,100,95,99,111,111,107,105,101,99,111,110,102,105,114,109,97,116,105,111,110,8,0,23,46,109,111,100,95,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,8,0,24,46,109,111,100,95,105,120,99,110,98,95,99,111,111,107,105,101,95,110,111,116,105,99,101,8,0,29,46,109,111,100,95,107,97,95,99,111,110,116,97,111,95,99,111,111,107,105,101,115,95,98,97,110,110,101,114,8,0,18,46,109,111,100,95,112,114,105,118,97,99,121,95,111,112,116,105,110,8,0,25,46,109,111,100,95,112,114,105,118,97,99,121,95,111,112,116,105,110,95,109,101,100,105,117,109,8,0,23,46,109,111,100,95,112,114,105,118,97,99,121,95,111,112,116,105,110,95,115,108,105,109,8,0,24,46,109,111,100,97,108,45,45,99,111,111,107,105,101,115,45,98,97,99,107,100,114,111,112,8,0,21,46,109,111,100,97,108,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,19,46,109,111,100,97,108,45,97,118,105,115,111,45,99,111,111,107,105,101,8,0,20,46,109,111,100,97,108,45,98,97,110,110,101,114,99,111,111,107,105,101,115,8,0,32,46,109,111,100,97,108,45,98,111,120,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,8,0,17,46,109,111,100,97,108,45,99,99,45,99,111,111,107,105,101,115,8,0,29,46,109,111,100,97,108,45,99,111,110,116,101,110,116,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,14,46,109,111,100,97,108,45,99,111,111,99,107,105,101,8,0,22,46,109,111,100,97,108,45,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,8,0,16,46,109,111,100,97,108,45,99,111,111,107,105,101,45,98,103,8,0,18,46,109,111,100,97,108,45,99,111,111,107,105,101,45,98,111,100,121,8,0,19,46,109,111,100,97,108,45,99,111,111,107,105,101,95,98,108,111,99,107,8,0,20,46,109,111,100,97,108,45,99,111,111,107,105,101,115,45,99,111,108,111,114,8,0,21,46,109,111,100,97,108,45,99,111,111,107,105,101,115,45,119,105,110,100,111,119,8,0,20,46,109,111,100,97,108,45,100,105,97,108,111,103,67,111,111,107,105,101,115,8,0,28,46,109,111,100,97,108,45,101,110,116,101,114,45,100,111,110,101,46,114,103,112,100,45,109,111,100,97,108,8,0,18,46,109,111,100,97,108,45,108,101,121,45,99,111,111,107,105,101,115,8,0,11,46,109,111,100,97,108,45,108,103,112,100,8,0,21,46,109,111,100,97,108,45,112,114,105,118,97,99,121,95,97,99,116,105,118,101,8,0,25,46,109,111,100,97,108,45,115,116,114,105,112,91,100,97,116,97,45,99,111,111,107,105,101,93,8,0,21,46,109,111,100,97,108,45,119,105,110,100,111,119,45,99,111,111,107,105,101,115,8,0,18,46,109,111,100,97,108,46,115,109,95,111,112,116,105,110,95,98,103,8,0,21,46,109,111,100,97,108,46,117,100,99,45,98,97,114,45,104,111,108,100,101,114,8,0,14,46,109,111,100,97,108,46,117,100,99,45,111,118,114,8,0,24,46,109,111,100,97,108,95,95,99,111,110,116,101,110,116,45,45,99,111,111,107,105,101,115,8,0,23,46,109,111,100,97,108,95,95,99,111,111,107,105,101,45,45,109,101,115,115,97,103,101,8,0,15,46,109,111,100,97,108,95,95,99,111,111,107,105,101,115,8,0,11,46,109,111,100,97,108,95,108,103,112,100,8,0,19,46,109,111,100,97,108,95,109,97,115,107,46,99,111,111,107,105,101,115,8,0,14,46,109,111,100,97,108,101,67,111,111,107,105,101,115,8,0,16,46,109,111,100,101,45,99,111,111,107,105,101,45,116,105,112,8,0,14,46,109,111,100,101,108,45,99,111,111,107,105,101,115,8,0,15,46,109,111,100,117,108,101,45,45,99,111,111,107,105,101,8,0,20,46,109,111,100,117,108,101,45,97,108,101,114,116,45,99,111,111,107,105,101,8,0,14,46,109,111,100,117,108,101,45,99,111,111,107,105,101,8,0,21,46,109,111,100,117,108,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,109,111,100,117,108,101,45,99,111,111,107,105,101,45,98,97,114,8,0,19,46,109,111,100,117,108,101,45,99,111,111,107,105,101,45,105,110,102,111,8,0,20,46,109,111,100,117,108,101,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,19,46,109,111,100,117,108,101,45,99,111,111,107,105,101,45,110,111,116,101,8,0,18,46,109,111,100,117,108,101,45,99,111,111,107,105,101,105,110,102,111,8,0,15,46,109,111,100,117,108,101,45,99,111,111,107,105,101,115,8,0,22,46,109,111,100,117,108,101,45,99,111,111,107,105,101,115,45,97,100,118,105,99,101,8,0,28,46,109,111,100,117,108,101,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,23,46,109,111,100,117,108,101,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,23,46,109,111,100,117,108,101,45,103,100,112,114,45,97,99,99,101,112,116,97,110,99,101,8,0,29,46,109,111,100,117,108,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,115,8,0,29,46,109,111,100,117,108,101,45,115,112,101,99,105,97,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,109,111,100,117,108,101,67,111,111,107,105,101,115,66,111,120,8,0,21,46,109,111,100,117,108,101,95,95,99,111,111,107,105,101,98,97,110,110,101,114,8,0,21,46,109,111,100,117,108,101,95,99,111,110,115,101,110,116,95,95,109,97,105,110,8,0,21,46,109,111,100,117,108,101,95,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,22,46,109,111,100,117,108,101,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,8,0,24,46,109,111,100,117,108,101,95,109,101,115,115,97,103,101,115,95,99,111,111,107,105,101,115,8,0,19,46,109,111,100,117,108,101,115,45,45,99,111,111,107,105,101,98,97,114,8,0,23,46,109,111,100,117,108,101,115,100,101,110,45,99,111,111,107,105,101,115,45,98,97,114,8,0,26,46,109,111,100,117,108,101,116,97,98,108,101,45,112,114,105,118,97,99,121,45,112,111,112,117,112,8,0,28,46,109,111,100,117,108,111,45,97,99,99,101,116,116,97,122,105,111,110,101,45,99,111,111,107,105,101,115,8,0,18,46,109,111,100,117,108,111,67,111,111,107,105,101,65,108,101,114,116,8,0,12,46,109,111,108,45,97,100,115,45,99,109,112,8,0,19,46,109,111,108,97,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,23,46,109,111,108,101,99,117,108,101,45,99,111,111,107,105,101,109,101,115,115,97,103,101,8,0,13,46,109,111,110,107,45,99,111,111,107,105,101,115,8,0,23,46,109,111,111,110,50,45,115,116,97,116,105,115,116,105,99,115,79,112,116,66,111,120,8,0,24,46,109,111,111,118,101,45,103,100,112,114,45,97,108,105,103,110,45,99,101,110,116,101,114,8,0,23,46,109,111,111,118,101,45,103,100,112,114,45,100,97,114,107,45,115,99,104,101,109,101,8,0,24,46,109,111,111,118,101,45,103,100,112,114,45,108,105,103,104,116,45,115,99,104,101,109,101,8,0,27,46,109,111,111,118,101,95,103,100,112,114,95,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,8,0,29,46,109,111,111,118,101,95,103,100,112,114,95,99,111,111,107,105,101,95,109,111,100,97,108,95,111,112,101,110,8,0,19,46,109,111,115,116,114,97,114,67,97,112,97,99,111,111,107,105,101,115,8,0,25,46,109,111,116,111,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,17,46,109,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,109,112,45,99,111,111,107,105,101,45,112,108,97,99,101,104,111,108,100,101,114,8,0,11,46,109,112,45,99,111,111,107,105,101,115,8,0,22,46,109,112,45,99,111,111,107,105,101,115,45,105,110,102,111,114,109,45,98,97,114,8,0,16,46,109,112,45,115,104,111,119,45,99,111,111,107,105,101,115,8,0,17,46,109,112,115,112,45,108,103,112,100,45,98,97,110,110,101,114,8,0,18,46,109,112,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,45,46,109,114,112,105,120,45,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,45,111,118,101,114,104,101,97,100,45,99,111,110,116,97,105,110,101,114,8,0,24,46,109,114,116,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,121,8,0,21,46,109,115,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,13,46,109,115,45,99,111,111,107,105,101,45,111,107,8,0,15,46,109,115,67,111,111,107,105,101,66,97,110,110,101,114,8,0,11,46,109,115,103,45,99,111,111,107,105,101,8,0,12,46,109,115,103,45,99,111,111,107,105,101,115,8,0,17,46,109,115,103,45,116,114,97,121,45,45,99,111,111,107,105,101,8,0,12,46,109,115,103,46,99,111,111,107,105,101,115,8,0,16,46,109,115,103,65,118,105,115,111,67,111,111,107,105,101,115,8,0,11,46,109,115,103,95,99,111,111,107,105,101,8,0,12,46,109,115,103,95,99,111,111,107,105,101,115,8,0,21,46,109,115,103,98,111,120,45,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,10,46,109,115,103,99,111,111,107,105,101,8,0,16,46,109,115,103,119,114,97,112,112,101,114,46,103,100,112,114,8,0,32,46,109,115,105,116,45,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,119,114,97,112,112,101,114,8,0,17,46,109,115,108,50,67,111,111,107,105,101,78,111,116,105,99,101,8,0,12,46,109,115,110,45,99,111,111,107,105,101,115,8,0,24,46,109,115,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,29,46,109,115,116,45,103,100,112,114,95,95,99,111,111,107,105,101,45,98,97,114,45,119,114,97,112,112,101,114,8,0,21,46,109,116,45,83,104,97,114,101,100,67,111,111,107,105,101,76,97,121,101,114,8,0,11,46,109,116,45,99,99,45,98,110,110,114,8,0,22,46,109,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,8,0,18,46,109,116,99,111,111,107,105,101,45,45,118,105,115,105,98,108,101,8,0,17,46,109,116,100,101,45,114,103,112,100,45,119,105,110,100,111,119,8,0,32,46,109,116,118,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,115,99,111,110,116,97,105,110,101,114,8,0,14,46,109,117,45,99,111,111,107,105,101,45,98,111,120,8,0,10,46,109,117,95,99,111,111,107,105,101,8,0,21,46,109,117,95,99,111,111,107,105,101,95,98,97,99,107,103,114,111,117,110,100,8,0,18,46,109,117,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,21,46,109,117,105,45,106,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,109,117,110,105,119,101,98,45,99,111,111,107,105,101,115,8,0,11,46,109,117,112,45,99,111,111,107,105,101,8,0,17,46,109,117,115,116,95,115,104,111,119,95,99,111,111,107,105,101,8,0,11,46,109,118,45,99,111,111,107,105,101,115,8,0,19,46,109,118,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,16,46,109,118,104,45,103,100,112,114,45,98,97,110,110,101,114,8,0,27,46,109,119,45,99,111,111,107,105,101,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,37,46,109,119,45,100,115,103,118,111,45,99,111,111,107,105,101,45,115,108,105,100,101,98,97,114,45,102,105,120,101,100,45,98,103,95,48,49,8,0,28,46,109,119,45,100,115,103,118,111,45,99,111,111,107,105,101,45,115,108,105,100,101,98,97,114,95,48,49,8,0,17,46,109,119,45,100,115,103,118,111,45,111,118,101,114,108,97,121,8,0,28,46,109,119,45,100,115,103,118,111,45,111,118,101,114,108,97,121,45,98,97,99,107,103,114,111,117,110,100,8,0,33,46,109,119,45,110,111,116,105,102,105,99,97,116,105,111,110,45,116,97,103,45,99,111,111,107,105,101,80,111,108,105,99,121,8,0,14,46,109,119,95,99,111,111,107,105,101,95,98,97,114,8,0,19,46,109,119,95,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,8,0,15,46,109,120,100,45,99,111,111,107,105,101,45,98,97,114,8,0,19,46,109,120,100,45,110,101,119,45,99,111,111,107,105,101,45,98,97,114,8,0,17,46,109,120,109,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,19,46,109,120,117,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,19,46,109,121,45,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,8,0,11,46,109,121,45,99,111,111,107,105,101,115,8,0,12,46,109,121,67,111,111,107,105,101,66,97,114,8,0,23,46,109,121,95,99,111,111,107,105,101,108,97,121,101,114,95,111,118,101,114,108,97,121,8,0,20,46,109,121,99,109,112,65,108,101,114,116,66,105,103,66,111,116,116,111,109,8,0,10,46,109,121,99,111,111,107,105,101,115,8,0,22,46,109,121,115,104,112,95,99,111,111,107,105,101,115,95,119,97,114,110,105,110,103,8,0,22,46,109,122,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,98,97,114,8,0,17,46,109,122,95,99,111,111,107,105,101,67,111,110,115,101,110,116,8,0,22,46,110,45,45,104,101,108,112,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,110,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,20,46,110,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,15,46,110,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,18,46,110,48,52,48,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,18,46,110,97,102,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,14,46,110,97,103,109,115,103,95,99,111,111,107,105,101,8,0,24,46,110,97,109,101,115,112,97,99,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,19,46,110,97,110,111,98,97,114,45,99,111,111,107,105,101,45,99,111,103,8,0,20,46,110,97,114,105,122,101,110,105,45,101,117,45,99,111,111,107,105,101,115,8,0,29,46,110,97,115,97,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,14,46,110,97,116,67,111,111,107,105,101,73,110,102,111,8,0,22,46,110,97,118,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,26,46,110,97,118,45,110,101,119,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,13,46,110,97,118,95,95,99,111,111,107,105,101,115,8,0,12,46,110,97,118,95,99,111,111,107,105,101,115,8,0,14,46,110,97,118,98,97,114,45,99,111,111,107,105,101,8,0,15,46,110,97,118,98,97,114,45,99,111,111,107,105,101,115,8,0,28,46,110,97,118,98,97,114,45,102,105,120,101,100,45,98,111,116,116,111,109,46,99,111,111,107,105,101,115,8,0,12,46,110,97,118,98,97,114,45,103,100,112,114,8,0,15,46,110,97,118,98,97,114,45,112,114,105,118,97,99,121,8,0,25,46,110,97,118,105,103,97,116,105,111,110,45,99,111,111,107,105,101,98,98,97,110,110,101,114,8,0,35,46,110,97,118,105,103,97,116,105,111,110,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,99,111,111,107,105,101,98,97,114,8,0,20,46,110,97,118,105,103,97,116,105,111,110,95,95,99,111,111,107,105,101,115,8,0,22,46,110,97,121,108,111,114,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,22,46,110,97,122,97,114,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,8,0,16,46,110,98,45,45,99,111,111,107,105,101,112,111,112,117,112,8,0,10,46,110,98,45,99,111,111,107,105,101,8,0,19,46,110,98,100,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,16,46,110,98,110,45,99,111,111,107,105,101,45,105,110,102,111,8,0,16,46,110,98,115,67,111,111,107,105,101,78,111,116,105,99,101,8,0,23,46,110,99,97,45,99,111,111,107,105,101,115,97,99,99,101,112,116,45,108,105,110,101,8,0,21,46,110,99,103,87,101,65,114,101,85,115,105,110,103,67,111,111,107,105,101,115,8,0,13,46,110,99,109,112,95,95,98,97,110,110,101,114,8,0,16,46,110,99,109,112,95,95,110,111,114,109,97,108,105,115,101,8,0,14,46,110,99,111,105,45,45,45,98,101,104,105,110,100,8,0,13,46,110,100,45,99,111,111,107,105,101,66,97,114,8,0,17,46,110,101,67,111,111,107,105,101,115,77,101,115,115,97,103,101,8,0,21,46,110,101,98,111,116,104,101,109,101,45,99,111,111,107,105,101,45,98,97,114,8,0,24,46,110,101,100,45,109,111,100,97,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,38,46,110,101,100,102,105,110,105,116,121,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,22,46,110,101,111,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,66,97,114,8,0,15,46,110,101,111,110,45,99,111,111,107,105,101,98,97,114,8,0,11,46,110,101,119,45,99,111,111,107,105,101,8,0,18,46,110,101,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,110,101,119,45,99,111,111,107,105,101,45,114,117,108,101,115,8,0,19,46,110,101,119,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,17,46,110,101,119,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,15,46,110,101,119,45,101,117,45,99,111,111,107,105,101,115,8,0,14,46,110,101,119,67,110,105,108,66,97,110,110,101,114,8,0,16,46,110,101,119,95,99,111,111,107,105,101,95,105,110,102,111,8,0,33,46,110,101,119,115,108,101,116,116,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,115,8,0,19,46,110,101,120,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,28,46,110,101,120,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,119,114,97,112,112,101,114,8,0,18,46,110,101,120,116,45,99,111,111,107,105,101,104,111,108,100,101,114,8,0,20,46,110,101,120,117,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,110,102,45,99,111,111,107,105,101,115,8,0,16,46,110,102,45,106,115,45,99,111,111,107,105,101,98,111,120,8,0,24,46,110,102,45,112,114,111,99,111,111,107,105,101,45,98,111,116,116,111,109,45,98,97,114,8,0,21,46,110,102,45,112,114,111,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,17,46,110,103,45,99,111,111,107,105,101,45,102,111,111,116,101,114,8,0,38,46,110,103,45,105,115,111,108,97,116,101,45,115,99,111,112,101,91,100,97,116,97,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,93,8,0,39,46,110,103,45,115,99,111,112,101,91,100,97,116,97,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,105,114,101,99,116,105,118,101,93,8,0,52,46,110,103,45,115,99,111,112,101,91,100,97,116,97,45,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,67,111,111,107,105,101,83,105,103,110,67,111,110,116,114,111,108,108,101,114,34,93,8,0,42,46,110,103,45,115,99,111,112,101,91,100,97,116,97,45,110,103,45,115,104,111,119,61,34,115,104,111,119,67,111,111,107,105,101,66,97,110,110,101,114,34,93,8,0,37,46,110,103,45,115,99,111,112,101,91,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,67,111,111,107,105,101,67,116,114,108,34,93,8,0,44,46,110,103,45,115,99,111,112,101,91,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,67,111,111,107,105,101,115,65,99,99,101,112,116,67,116,114,108,34,93,8,0,45,46,110,103,45,115,99,111,112,101,91,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,67,111,111,107,105,101,115,67,111,110,115,101,110,116,67,116,114,108,34,93,8,0,33,46,110,103,45,115,99,111,112,101,91,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,99,111,111,107,105,101,34,93,8,0,37,46,110,103,45,115,99,111,112,101,91,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,99,111,111,107,105,101,67,116,114,108,34,93,8,0,40,46,110,103,45,115,99,111,112,101,91,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,99,111,111,107,105,101,76,97,119,67,116,114,108,34,93,8,0,32,46,110,103,45,115,99,111,112,101,91,110,103,45,105,102,61,34,99,111,111,107,105,101,87,97,114,110,105,110,103,34,93,8,0,33,46,110,103,45,115,99,111,112,101,91,110,103,45,105,102,61,34,115,104,111,119,67,111,111,107,105,101,73,110,102,111,34,93,8,0,24,46,110,103,45,115,116,97,114,45,105,110,115,101,114,116,101,100,46,99,111,111,107,105,101,8,0,25,46,110,103,45,115,116,97,114,45,105,110,115,101,114,116,101,100,46,99,111,111,107,105,101,115,8,0,15,46,110,103,115,45,99,111,111,107,105,101,45,98,97,114,8,0,10,46,110,104,45,99,111,111,107,105,101,8,0,17,46,110,105,45,99,111,111,107,105,101,67,111,110,115,101,110,116,8,0,28,46,110,105,116,101,97,45,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,9,46,110,106,116,45,103,100,112,114,8,0,20,46,110,106,116,45,103,100,112,114,45,102,117,108,108,95,119,105,100,116,104,8,0,15,46,110,106,116,45,103,100,112,114,45,112,111,112,117,112,8,0,16,46,110,107,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,17,46,110,107,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,15,46,110,107,109,99,111,111,107,105,101,97,108,101,114,116,8,0,14,46,110,108,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,110,108,45,99,111,111,107,105,101,112,111,108,105,99,121,8,0,11,46,110,108,95,99,111,111,107,105,101,115,8,0,16,46,110,109,45,99,111,111,107,105,101,112,111,108,105,99,121,8,0,17,46,110,109,67,111,111,107,105,101,78,111,116,105,102,105,101,114,8,0,20,46,110,110,112,45,97,112,112,45,99,111,111,107,105,101,45,105,110,102,111,8,0,11,46,110,111,45,45,99,111,111,107,105,101,8,0,26,46,110,111,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,97,114,110,105,110,103,8,0,18,46,110,111,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,31,46,110,111,45,99,111,111,107,105,101,115,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,22,46,110,111,45,101,105,107,97,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,28,46,110,111,97,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,98,97,110,110,101,114,8,0,16,46,110,111,101,95,99,111,111,107,105,101,95,99,110,105,108,8,0,22,46,110,111,107,105,97,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,17,46,110,111,110,109,111,100,97,108,45,45,99,111,111,107,105,101,8,0,18,46,110,111,114,109,97,116,105,118,97,45,99,111,111,107,105,101,115,8,0,20,46,110,111,114,115,95,99,111,111,107,105,101,115,95,110,111,116,105,99,101,8,0,20,46,110,111,116,45,97,99,99,101,112,116,101,100,46,99,111,111,107,105,101,8,0,12,46,110,111,116,101,95,99,111,111,107,105,101,8,0,23,46,110,111,116,105,99,101,45,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,20,46,110,111,116,105,99,101,45,45,105,110,116,45,99,111,111,107,105,101,115,8,0,11,46,110,111,116,105,99,101,45,98,97,114,8,0,21,46,110,111,116,105,99,101,45,98,108,111,99,107,46,99,111,111,107,105,101,115,8,0,14,46,110,111,116,105,99,101,45,99,111,111,107,105,101,8,0,26,46,110,111,116,105,99,101,45,99,111,111,107,105,101,115,45,104,111,114,105,122,111,110,116,97,108,8,0,12,46,110,111,116,105,99,101,45,103,100,112,114,8,0,11,46,110,111,116,105,99,101,45,116,111,117,8,0,21,46,110,111,116,105,99,101,67,111,111,107,105,101,115,67,111,110,116,101,110,116,8,0,17,46,110,111,116,105,99,101,67,111,111,107,105,101,115,85,115,101,8,0,15,46,110,111,116,105,99,101,95,99,111,111,107,105,101,115,8,0,22,46,110,111,116,105,99,101,95,110,111,116,105,99,101,95,99,111,111,107,105,101,115,8,0,10,46,110,111,116,105,102,45,98,97,114,8,0,22,46,110,111,116,105,102,45,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,8,0,12,46,110,111,116,105,102,67,111,111,107,105,101,8,0,19,46,110,111,116,105,102,95,99,111,111,107,105,101,95,112,97,110,101,108,8,0,19,46,110,111,116,105,102,105,99,97,95,99,111,111,107,105,101,98,97,114,8,0,21,46,110,111,116,105,102,105,99,97,99,97,111,45,101,115,116,97,116,105,99,97,8,0,21,46,110,111,116,105,102,105,99,97,99,105,111,110,45,99,111,111,107,105,101,115,8,0,19,46,110,111,116,105,102,105,99,97,116,105,111,110,45,45,67,78,73,76,8,0,19,46,110,111,116,105,102,105,99,97,116,105,111,110,45,45,71,68,80,82,8,0,21,46,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,8,0,27,46,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,22,46,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,115,8,0,28,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,45,45,99,111,111,107,105,101,8,0,25,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,45,45,99,111,111,107,105,101,8,0,39,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,91,100,97,116,97,45,98,97,114,45,116,121,112,101,61,34,103,100,112,114,34,93,8,0,45,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,91,100,97,116,97,45,105,100,61,34,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,34,93,8,0,27,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,115,101,95,95,99,111,111,107,105,101,115,8,0,30,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,46,99,111,111,107,105,101,8,0,20,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,8,0,27,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,29,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,8,0,24,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,104,105,110,116,8,0,21,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,115,8,0,18,46,110,111,116,105,102,105,99,97,116,105,111,110,45,103,100,112,114,8,0,43,46,110,111,116,105,102,105,99,97,116,105,111,110,45,108,97,121,111,117,116,91,110,103,45,99,108,97,115,115,61,34,99,111,111,107,105,101,45,98,97,114,34,93,8,0,27,46,110,111,116,105,102,105,99,97,116,105,111,110,45,119,105,100,103,101,116,46,99,111,111,107,105,101,8,0,28,46,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,45,98,111,116,116,111,109,8,0,20,46,110,111,116,105,102,105,99,97,116,105,111,110,46,99,111,111,107,105,101,8,0,28,46,110,111,116,105,102,105,99,97,116,105,111,110,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,41,46,110,111,116,105,102,105,99,97,116,105,111,110,46,99,111,111,107,105,101,115,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,25,46,110,111,116,105,102,105,99,97,116,105,111,110,46,115,104,111,119,45,99,111,111,107,105,101,8,0,48,46,110,111,116,105,102,105,99,97,116,105,111,110,66,97,114,91,100,97,116,97,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,112,111,108,105,99,121,93,8,0,29,46,110,111,116,105,102,105,99,97,116,105,111,110,80,97,110,101,108,45,45,99,111,111,107,105,101,66,97,114,8,0,49,46,110,111,116,105,102,105,99,97,116,105,111,110,91,100,97,116,97,45,110,111,116,105,102,105,99,97,116,105,111,110,61,34,97,99,99,101,112,116,45,99,111,111,107,105,101,115,34,93,8,0,49,46,110,111,116,105,102,105,99,97,116,105,111,110,91,100,97,116,97,45,110,111,116,105,102,105,99,97,116,105,111,110,61,34,99,111,111,99,107,105,101,67,111,110,115,101,110,116,34,93,8,0,36,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,98,111,120,45,45,112,101,114,115,105,115,116,101,110,116,99,111,111,107,105,101,8,0,29,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,99,111,110,116,101,110,116,45,99,111,111,107,105,101,8,0,22,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,99,111,111,107,105,101,115,8,0,27,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,105,116,101,109,45,45,99,111,111,107,105,101,8,0,30,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,109,101,115,115,97,103,101,46,99,111,111,107,105,101,115,8,0,41,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,119,114,97,112,112,101,114,91,100,97,116,97,45,105,100,61,34,99,111,111,107,105,101,115,34,93,8,0,24,46,110,111,116,105,102,105,99,97,116,105,111,110,95,98,111,120,46,99,111,111,107,105,101,8,0,20,46,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,111,107,105,101,8,0,44,46,110,111,116,105,102,105,99,97,116,105,111,110,95,119,114,97,112,91,100,97,116,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,93,8,0,40,46,110,111,116,105,102,105,99,97,116,105,111,110,115,45,98,97,114,95,95,105,110,102,111,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,8,0,15,46,110,111,116,105,102,121,45,45,99,111,111,107,105,101,8,0,25,46,110,111,116,105,102,121,45,98,97,110,110,101,114,91,105,114,45,110,111,116,105,102,121,93,8,0,14,46,110,111,116,105,102,121,45,99,111,111,107,105,101,8,0,15,46,110,111,116,105,102,121,45,99,111,111,107,105,101,115,8,0,32,46,110,111,116,105,102,121,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,8,0,13,46,110,111,116,105,102,121,67,111,111,107,105,101,8,0,18,46,110,111,116,105,102,121,67,111,111,107,105,101,73,110,110,101,114,8,0,19,46,110,111,116,105,102,121,67,111,111,107,105,101,115,80,97,110,101,108,8,0,22,46,110,111,116,105,102,121,95,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,29,46,110,111,116,105,102,121,95,99,111,111,107,105,101,45,119,114,97,112,112,101,114,45,98,111,116,116,111,109,8,0,24,46,110,111,116,105,102,121,106,115,45,99,111,111,107,105,101,98,97,114,45,98,97,115,101,8,0,29,46,110,111,116,105,102,121,106,115,45,110,111,116,105,102,121,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,12,46,110,111,116,121,95,99,111,111,107,105,101,8,0,22,46,110,111,117,110,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,17,46,110,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,14,46,110,112,45,103,100,112,114,45,109,111,100,97,108,8,0,17,46,110,112,95,68,105,97,108,111,103,67,111,110,115,101,110,116,8,0,11,46,110,112,110,45,99,111,111,107,105,101,8,0,15,46,110,112,111,95,99,99,95,114,101,103,117,108,97,114,8,0,15,46,110,113,45,99,45,67,111,111,107,105,101,66,97,114,8,0,13,46,110,113,45,99,45,82,103,112,100,66,97,114,8,0,13,46,110,113,45,99,45,114,103,112,100,66,97,114,8,0,17,46,110,114,45,99,111,111,107,105,101,45,97,99,99,101,112,116,8,0,23,46,110,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,33,46,110,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,109,112,111,110,101,110,116,8,0,29,46,110,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,119,97,108,108,8,0,32,46,110,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,119,114,97,112,112,101,114,8,0,24,46,110,114,45,112,114,105,118,97,99,121,45,109,111,100,97,108,45,98,111,120,45,118,50,8,0,9,46,110,114,99,111,111,107,105,101,8,0,15,46,110,114,102,45,100,105,115,99,108,97,105,109,101,114,8,0,17,46,110,114,103,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,18,46,110,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,26,46,110,115,45,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,8,0,11,46,110,115,45,99,111,111,107,105,101,115,8,0,18,46,110,115,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,8,0,16,46,110,115,45,116,121,112,101,45,99,111,111,107,105,101,115,8,0,31,46,110,115,103,45,45,99,111,111,107,105,101,115,46,110,115,103,45,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,17,46,110,115,107,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,27,46,110,116,45,102,111,111,116,101,114,45,99,111,111,107,105,101,45,115,116,97,116,101,109,101,110,116,8,0,10,46,110,116,102,67,111,111,107,105,101,8,0,24,46,110,116,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,8,0,27,46,110,117,45,99,111,111,107,105,101,115,45,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,8,0,33,46,110,117,120,45,115,105,103,110,117,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,101,110,116,8,0,23,46,110,118,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,10,46,110,118,99,111,111,107,105,101,115,8,0,16,46,110,118,99,111,111,107,105,101,115,45,111,117,116,101,114,8,0,17,46,110,118,116,95,99,111,111,107,105,101,110,111,116,105,99,101,8,0,12,46,110,118,120,45,99,111,111,107,105,101,115,8,0,21,46,110,118,120,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,20,46,110,119,106,115,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,8,0,23,46,110,120,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,14,46,110,120,109,50,67,111,111,107,105,101,66,97,114,8,0,32,46,110,121,116,99,45,45,45,99,111,111,107,105,101,98,97,110,110,101,114,45,45,45,99,111,110,116,97,105,110,101,114,8,0,26,46,111,45,67,111,111,107,105,101,115,66,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,9,46,111,45,99,111,111,107,105,101,8,0,16,46,111,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,13,46,111,45,99,111,111,107,105,101,45,98,97,114,8,0,15,46,111,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,17,46,111,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,17,46,111,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,11,46,111,45,99,111,111,107,105,101,79,107,8,0,14,46,111,45,99,111,111,107,105,101,108,97,121,101,114,8,0,10,46,111,45,99,111,111,107,105,101,115,8,0,18,46,111,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,8,0,35,46,111,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,119,105,100,103,101,116,95,95,99,111,110,116,97,105,110,101,114,8,0,28,46,111,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,95,95,99,111,110,116,97,105,110,101,114,8,0,15,46,111,45,99,111,111,107,105,101,115,95,95,114,111,119,8,0,27,46,111,45,99,111,114,101,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,111,45,100,115,103,118,111,45,119,114,97,112,112,101,114,8,0,22,46,111,50,120,45,99,111,111,107,105,101,98,97,114,45,119,114,97,112,112,101,114,8,0,26,46,111,55,99,111,111,107,105,101,45,105,110,102,111,45,112,114,111,109,112,116,45,119,114,97,112,8,0,8,46,111,67,111,111,107,105,101,8,0,19,46,111,95,99,111,111,107,105,101,115,95,100,105,115,99,114,101,116,101,8,0,19,46,111,97,118,101,97,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,15,46,111,97,120,45,99,111,111,107,105,101,45,109,115,103,8,0,11,46,111,98,45,99,111,111,107,105,101,115,8,0,19,46,111,98,45,99,111,111,107,105,101,115,45,99,111,110,116,101,110,116,8,0,21,46,111,98,45,101,117,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,25,46,111,98,45,112,117,98,108,105,99,45,119,105,100,103,101,116,45,99,111,111,107,105,101,115,8,0,26,46,111,98,102,120,45,99,111,111,107,105,101,45,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,9,46,111,98,115,95,99,110,105,108,8,0,21,46,111,99,45,100,105,115,99,108,97,105,109,101,114,77,101,115,115,97,103,101,8,0,14,46,111,99,95,99,98,95,119,114,97,112,112,101,114,8,0,26,46,111,99,99,108,115,115,45,97,108,101,114,116,45,45,99,111,111,107,105,101,112,111,112,117,112,8,0,22,46,111,99,109,45,99,111,110,116,97,105,110,101,114,45,45,98,97,110,110,101,114,8,0,20,46,111,99,116,111,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,20,46,111,100,97,118,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,10,46,111,100,100,99,111,111,107,105,101,8,0,15,46,111,101,45,99,111,111,107,105,101,115,45,108,97,119,8,0,25,46,111,104,95,99,111,111,107,105,101,95,110,111,116,105,99,101,95,119,114,97,112,112,101,114,8,0,15,46,111,105,45,99,99,112,97,45,110,111,116,105,99,101,8,0,15,46,111,105,45,99,99,112,97,45,116,111,103,103,108,101,8,0,12,46,111,106,99,95,99,111,110,115,101,110,116,8,0,14,46,111,107,67,111,111,107,105,101,80,97,110,101,108,8,0,8,46,111,107,111,111,107,105,101,8,0,11,46,111,108,100,45,99,111,111,107,105,101,8,0,11,46,111,108,119,45,99,111,111,107,105,101,8,0,28,46,111,108,121,45,119,101,98,45,117,105,95,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,10,46,111,109,45,99,111,111,107,105,101,8,0,20,46,111,109,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,8,0,32,46,111,109,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,112,111,112,117,112,8,0,29,46,111,109,110,105,117,109,95,99,111,111,107,105,101,115,95,112,111,112,117,112,95,119,114,97,112,112,101,114,8,0,10,46,111,110,46,99,111,111,107,105,101,8,0,8,46,111,110,46,114,103,112,100,8,0,21,46,111,110,99,101,45,117,112,111,110,45,103,97,45,99,111,110,115,101,110,116,8,0,18,46,111,110,101,45,97,108,101,114,116,45,45,99,111,111,107,105,101,8,0,18,46,111,110,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,14,46,111,110,101,84,114,117,115,116,76,97,121,101,114,8,0,29,46,111,110,101,105,110,100,105,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,30,46,111,110,101,112,97,103,101,114,95,103,101,110,101,114,97,108,95,99,111,111,107,105,101,112,111,108,105,99,121,8,0,24,46,111,110,101,116,114,117,115,116,45,112,99,45,100,97,114,107,45,102,105,108,116,101,114,8,0,22,46,111,110,108,105,110,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,29,46,111,110,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,11,46,111,110,115,45,99,111,111,107,105,101,8,0,12,46,111,110,116,45,99,111,111,107,105,101,115,8,0,20,46,111,110,116,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,17,46,111,111,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,14,46,111,111,110,45,100,115,45,98,97,110,110,101,114,8,0,22,46,111,112,97,99,105,116,121,95,108,97,121,101,114,95,99,111,110,115,101,110,116,8,0,19,46,111,112,99,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,19,46,111,112,99,45,109,97,110,97,103,101,114,45,99,111,111,107,105,101,8,0,13,46,111,112,101,110,46,99,111,111,107,105,101,115,8,0,10,46,111,112,101,110,46,114,103,112,100,8,0,19,46,111,112,108,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,8,0,15,46,111,112,116,45,97,99,116,105,111,110,45,98,97,114,8,0,26,46,111,112,116,97,110,111,110,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,22,46,111,112,116,97,110,111,110,45,115,104,111,119,45,115,101,116,116,105,110,103,115,8,0,36,46,111,112,116,97,110,111,110,45,115,104,111,119,45,115,101,116,116,105,110,103,115,45,112,111,112,117,112,45,119,114,97,112,112,101,114,8,0,23,46,111,112,116,97,110,111,110,45,116,111,103,103,108,101,45,100,105,115,112,108,97,121,8,0,12,46,111,112,116,105,110,45,115,116,97,116,115,8,0,12,46,111,112,116,105,110,67,111,111,107,105,101,8,0,17,46,111,112,116,111,109,97,67,111,111,107,105,101,87,114,97,112,8,0,18,46,111,114,45,99,111,111,107,105,101,95,95,98,97,110,110,101,114,8,0,13,46,111,114,97,107,101,108,65,100,118,105,99,101,8,0,25,46,111,114,98,105,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,102,111,114,109,8,0,16,46,111,114,103,45,99,111,111,107,105,101,45,109,105,110,105,8,0,18,46,111,114,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,111,115,97,110,111,45,99,109,45,119,105,110,100,111,119,8,0,10,46,111,115,99,111,111,107,105,101,115,8,0,12,46,111,115,119,45,112,114,105,118,97,99,121,8,0,18,46,111,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,111,116,45,115,100,107,45,115,104,111,119,45,115,101,116,116,105,110,103,115,8,0,22,46,111,116,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,8,0,23,46,111,116,95,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,95,98,116,110,8,0,15,46,111,117,45,99,111,111,107,105,101,115,45,98,97,114,8,0,32,46,111,117,116,101,114,45,112,114,105,118,97,99,121,45,116,111,112,45,110,97,118,105,103,97,116,105,111,110,66,97,114,8,0,15,46,111,117,116,101,114,67,111,111,107,105,101,66,97,114,8,0,9,46,111,118,99,111,111,107,105,101,8,0,16,46,111,118,101,114,108,97,121,45,45,99,111,111,107,105,101,8,0,15,46,111,118,101,114,108,97,121,45,99,111,111,107,105,101,8,0,21,46,111,118,101,114,108,97,121,45,99,111,111,107,105,101,45,98,108,111,99,107,8,0,16,46,111,118,101,114,108,97,121,45,99,111,111,107,105,101,115,8,0,25,46,111,118,101,114,108,97,121,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,115,8,0,14,46,111,118,101,114,108,97,121,67,111,111,107,105,101,8,0,15,46,111,118,101,114,108,97,121,67,111,111,107,105,101,115,8,0,16,46,111,118,101,114,108,97,121,95,95,99,111,111,107,105,101,8,0,32,46,111,118,101,114,108,97,121,95,95,115,104,97,100,111,119,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,111,118,101,114,108,97,121,95,99,111,111,107,105,101,98,97,110,110,101,114,8,0,12,46,111,118,101,114,108,97,121,95,112,114,105,8,0,19,46,111,118,101,114,108,97,121,98,108,97,99,107,67,111,111,107,105,101,8,0,14,46,111,118,101,114,108,97,121,99,111,111,107,105,101,8,0,21,46,111,118,101,114,108,97,121,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,16,46,111,119,45,99,111,111,107,105,101,45,119,114,97,112,112,8,0,10,46,111,119,95,99,111,111,107,105,101,8,0,26,46,111,119,108,95,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,95,106,115,8,0,10,46,112,45,99,111,111,99,107,105,101,8,0,17,46,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,15,46,112,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,16,46,112,45,99,111,111,107,105,101,45,112,114,111,109,112,116,8,0,12,46,112,45,99,111,111,107,105,101,66,111,120,8,0,12,46,112,45,99,111,111,107,105,101,98,97,114,8,0,10,46,112,45,99,111,111,107,105,101,115,8,0,13,46,112,45,102,105,120,101,100,46,114,103,112,100,8,0,7,46,112,45,103,100,112,114,8,0,13,46,112,45,103,100,112,114,45,109,111,100,97,108,8,0,19,46,112,45,109,97,120,45,119,105,100,116,104,95,99,111,111,107,105,101,8,0,33,46,112,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,23,46,112,45,116,111,112,95,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,8,0,9,46,112,95,99,111,111,107,105,101,8,0,12,46,112,97,98,107,95,99,111,111,107,105,101,8,0,16,46,112,97,100,100,105,110,103,46,99,111,111,107,105,101,115,8,0,13,46,112,97,100,100,105,110,103,95,103,100,112,114,8,0,15,46,112,97,103,101,32,62,32,46,99,111,111,107,105,101,8,0,16,46,112,97,103,101,32,62,32,46,99,111,111,107,105,101,115,8,0,13,46,112,97,103,101,45,45,99,111,111,107,105,101,8,0,20,46,112,97,103,101,45,98,97,110,110,101,114,95,95,99,111,111,107,105,101,8,0,12,46,112,97,103,101,45,99,111,111,107,105,101,8,0,19,46,112,97,103,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,112,97,103,101,45,99,111,111,107,105,101,45,119,97,114,110,8,0,13,46,112,97,103,101,45,99,111,111,107,105,101,115,8,0,18,46,112,97,103,101,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,21,46,112,97,103,101,45,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,8,0,18,46,112,97,103,101,45,100,105,97,108,111,103,45,100,115,103,118,111,8,0,20,46,112,97,103,101,45,104,101,97,100,101,114,95,95,99,111,111,107,105,101,8,0,29,46,112,97,103,101,45,104,101,97,100,101,114,95,95,99,111,111,107,105,101,45,110,111,116,105,102,121,101,114,8,0,28,46,112,97,103,101,45,112,114,105,118,97,99,121,95,95,100,105,97,108,111,103,95,98,97,110,110,101,114,8,0,21,46,112,97,103,101,45,119,97,114,110,105,110,103,95,99,111,111,107,105,101,115,8,0,29,46,112,97,103,101,45,119,114,97,112,45,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,8,0,12,46,112,97,103,101,67,111,111,107,105,101,115,8,0,25,46,112,97,103,101,70,111,111,116,101,114,45,97,99,99,101,112,116,67,111,111,107,105,101,115,8,0,12,46,112,97,103,101,72,67,111,111,107,105,101,8,0,13,46,112,97,103,101,95,95,99,111,111,107,105,101,8,0,24,46,112,97,103,101,95,95,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,14,46,112,97,103,101,95,95,99,111,111,107,105,101,115,8,0,26,46,112,97,103,101,95,95,100,105,115,99,108,97,105,109,101,114,45,45,99,111,111,107,105,101,115,8,0,11,46,112,97,103,101,95,95,103,100,112,114,8,0,25,46,112,97,103,101,95,95,115,117,114,118,101,121,45,99,111,111,107,105,101,45,105,110,102,111,8,0,16,46,112,97,103,101,105,110,102,111,45,99,111,111,107,105,101,8,0,25,46,112,97,110,101,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,45,116,121,112,101,8,0,23,46,112,97,110,101,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,13,46,112,97,110,101,108,45,99,111,111,107,105,101,8,0,14,46,112,97,110,101,108,45,99,111,111,107,105,101,115,8,0,13,46,112,97,110,101,108,95,99,111,111,107,105,101,8,0,31,46,112,97,110,116,97,45,106,115,45,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,8,0,31,46,112,97,112,101,114,45,99,108,105,101,110,116,45,112,114,105,118,97,99,121,45,97,103,114,101,101,109,101,110,116,8,0,24,46,112,97,114,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,105,110,102,111,8,0,19,46,112,97,114,101,110,116,45,98,111,120,45,99,111,111,107,105,101,115,8,0,21,46,112,97,114,105,115,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,15,46,112,97,114,107,45,99,111,111,107,105,101,98,97,114,8,0,22,46,112,97,114,107,45,115,110,97,99,107,98,97,114,45,99,111,111,107,105,101,115,8,0,13,46,112,97,114,116,45,99,111,111,107,105,101,115,8,0,15,46,112,97,114,116,105,97,108,45,99,111,111,107,105,101,8,0,13,46,112,97,115,101,107,95,99,111,111,107,105,101,8,0,27,46,112,97,115,119,50,48,49,53,99,111,111,107,105,101,115,45,99,111,111,107,105,101,45,112,111,112,8,0,12,46,112,97,118,101,67,111,111,107,105,101,115,8,0,18,46,112,98,45,67,111,111,107,105,101,115,67,111,110,115,101,110,116,8,0,29,46,112,98,45,97,112,112,95,95,97,99,99,101,112,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,112,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,20,46,112,98,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,11,46,112,98,45,99,111,111,107,105,101,115,8,0,17,46,112,99,45,99,111,111,107,105,101,45,97,99,99,101,112,116,8,0,14,46,112,99,45,99,111,111,107,105,101,45,98,97,114,8,0,18,46,112,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,11,46,112,99,102,45,99,111,111,107,105,101,8,0,19,46,112,99,105,45,103,108,111,98,97,108,45,99,111,111,107,105,101,115,8,0,8,46,112,99,111,111,107,105,101,8,0,9,46,112,99,111,111,107,105,101,115,8,0,18,46,112,99,121,95,99,111,111,107,105,101,95,110,111,116,105,99,101,8,0,12,46,112,100,112,97,45,99,111,111,107,105,101,8,0,21,46,112,100,120,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,21,46,112,101,97,95,99,111,111,107,95,98,111,116,116,111,109,114,105,103,104,116,8,0,27,46,112,101,97,95,99,111,111,107,95,109,111,114,101,95,105,110,102,111,95,112,111,112,111,118,101,114,8,0,17,46,112,101,97,95,99,111,111,107,95,119,114,97,112,112,101,114,8,0,15,46,112,101,110,99,105,45,103,112,114,100,45,108,97,119,8,0,20,46,112,101,110,99,105,45,119,114,97,112,45,103,112,114,100,45,108,97,119,8,0,22,46,112,101,114,45,99,111,111,107,105,101,115,45,97,110,100,45,116,101,114,109,115,8,0,14,46,112,101,114,115,111,110,97,67,111,111,107,105,101,8,0,29,46,112,101,114,115,111,110,97,108,45,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,98,97,114,8,0,27,46,112,101,114,115,111,110,97,108,68,97,116,97,67,111,110,102,105,114,109,87,114,97,112,112,101,114,8,0,30,46,112,101,114,115,111,110,97,108,105,122,97,116,105,111,110,77,101,115,115,97,103,101,87,114,97,112,112,101,114,8,0,11,46,112,101,115,99,111,111,107,105,101,115,8,0,28,46,112,101,116,114,97,45,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,20,46,112,102,45,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,8,0,16,46,112,102,115,45,99,111,111,107,105,101,115,45,98,97,114,8,0,19,46,112,102,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,10,46,112,103,45,99,111,111,107,105,101,8,0,21,46,112,104,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,15,46,112,104,45,99,111,111,107,105,101,45,105,110,102,111,8,0,33,46,112,104,45,99,111,111,107,105,101,45,112,111,112,117,112,45,118,50,45,118,105,101,119,50,45,100,101,102,97,117,108,116,8,0,11,46,112,104,45,99,111,111,107,105,101,115,8,0,27,46,112,104,105,108,97,100,101,108,112,104,105,97,45,111,112,116,105,110,45,118,105,115,105,98,108,101,8,0,25,46,112,104,105,108,111,114,111,95,99,111,111,107,105,101,115,45,45,112,111,112,111,118,101,114,8,0,20,46,112,104,112,114,111,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,22,46,112,104,115,45,99,111,111,107,105,101,45,112,111,112,117,112,45,97,114,101,97,8,0,21,46,112,104,117,110,107,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,18,46,112,105,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,17,46,112,105,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,11,46,112,105,101,95,99,111,111,107,105,101,8,0,10,46,112,105,101,100,95,99,110,105,108,8,0,18,46,112,105,116,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,23,46,112,105,119,105,107,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,18,46,112,105,120,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,20,46,112,106,45,117,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,112,107,111,45,99,111,111,107,105,101,45,114,111,100,111,8,0,24,46,112,107,111,45,99,111,111,107,105,101,45,114,111,100,111,45,111,118,101,114,108,97,121,8,0,16,46,112,108,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,11,46,112,108,45,99,111,111,107,105,101,115,8,0,15,46,112,108,45,99,111,111,107,105,101,115,45,99,116,97,8,0,23,46,112,108,45,99,111,111,107,105,101,115,45,99,116,97,45,99,111,110,116,97,105,110,8,0,14,46,112,108,97,116,101,45,99,111,111,107,105,101,115,8,0,29,46,112,108,97,116,102,111,114,109,45,45,99,111,111,107,105,101,115,45,45,99,111,110,116,97,105,110,101,114,8,0,18,46,112,108,97,122,109,97,45,99,111,111,107,105,101,45,98,97,114,8,0,26,46,112,108,97,122,109,97,45,99,111,111,107,105,101,45,98,97,114,45,45,97,99,116,105,118,101,8,0,27,46,112,108,103,95,115,121,115,116,101,109,95,101,112,114,105,118,97,99,121,95,109,111,100,117,108,101,8,0,19,46,112,108,114,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,8,0,21,46,112,108,117,103,105,110,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,14,46,112,108,117,103,105,110,95,99,111,111,107,105,101,8,0,10,46,112,109,45,99,111,111,107,105,101,8,0,8,46,112,109,45,103,100,112,114,8,0,25,46,112,109,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,108,111,99,107,8,0,27,46,112,109,119,45,45,99,111,111,107,105,101,115,45,99,111,111,107,105,101,45,98,117,116,116,111,110,8,0,18,46,112,110,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,17,46,112,110,95,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,11,46,112,110,108,45,99,111,111,107,105,101,8,0,17,46,112,110,108,67,111,111,107,105,101,109,101,108,100,105,110,103,8,0,16,46,112,110,111,116,105,102,121,45,99,111,111,107,105,101,115,8,0,19,46,112,110,121,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,27,46,112,111,102,111,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,8,0,11,46,112,111,108,99,111,111,107,105,101,115,8,0,18,46,112,111,108,105,99,121,45,97,99,99,101,112,116,45,98,97,114,8,0,13,46,112,111,108,105,99,121,45,97,108,101,114,116,8,0,14,46,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,11,46,112,111,108,105,99,121,45,98,97,114,8,0,14,46,112,111,108,105,99,121,45,98,111,116,116,111,109,8,0,11,46,112,111,108,105,99,121,45,98,111,120,8,0,14,46,112,111,108,105,99,121,45,99,111,111,107,105,101,8,0,15,46,112,111,108,105,99,121,45,99,111,111,107,105,101,115,8,0,22,46,112,111,108,105,99,121,45,109,101,115,115,97,103,101,46,99,111,111,107,105,101,8,0,36,46,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,45,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,8,0,22,46,112,111,108,105,99,121,45,119,97,114,110,105,110,103,45,98,97,110,110,101,114,8,0,14,46,112,111,108,105,99,121,45,119,105,110,100,111,119,8,0,14,46,112,111,108,105,99,121,46,99,111,111,107,105,101,8,0,10,46,112,111,108,105,99,121,67,104,107,8,0,14,46,112,111,108,105,99,121,77,101,115,115,97,103,101,8,0,14,46,112,111,108,105,99,121,95,102,111,111,116,101,114,8,0,20,46,112,111,108,105,99,121,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,112,111,108,105,116,105,99,95,95,99,111,111,107,105,101,8,0,17,46,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,8,0,21,46,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,45,98,97,114,8,0,21,46,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,45,98,111,120,8,0,22,46,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,45,99,111,110,116,8,0,27,46,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,20,46,112,111,108,105,116,105,99,97,45,100,101,45,99,111,111,107,105,101,115,8,0,21,46,112,111,108,105,116,105,99,97,45,112,114,105,118,97,99,105,100,97,100,101,8,0,26,46,112,111,108,105,116,105,99,97,45,112,114,105,118,97,99,105,100,97,100,101,45,108,103,112,100,8,0,16,46,112,111,108,105,116,105,99,97,67,111,111,107,105,101,115,8,0,16,46,112,111,108,105,116,105,99,97,82,101,119,97,114,100,115,8,0,17,46,112,111,108,105,116,105,99,97,95,99,111,111,107,105,101,115,8,0,16,46,112,111,108,105,116,105,99,97,99,111,111,107,105,101,115,8,0,16,46,112,111,108,105,116,105,99,115,95,99,111,111,107,105,101,8,0,17,46,112,111,108,105,116,105,113,117,101,95,99,111,111,107,105,101,8,0,16,46,112,111,108,105,116,121,107,97,45,99,111,111,107,105,101,8,0,17,46,112,111,108,105,116,121,107,97,95,99,105,97,115,116,101,107,8,0,21,46,112,111,108,105,116,121,107,97,95,112,114,121,119,97,116,110,111,115,99,105,8,0,28,46,112,111,108,105,116,121,107,97,95,112,114,121,119,97,116,110,111,115,99,105,87,114,97,112,112,101,114,8,0,9,46,112,111,112,45,99,110,105,108,8,0,11,46,112,111,112,45,99,111,111,107,105,101,8,0,14,46,112,111,112,45,99,111,111,107,105,101,98,111,120,8,0,17,46,112,111,112,45,99,111,111,107,105,101,112,111,108,105,99,121,8,0,12,46,112,111,112,45,99,111,111,107,105,101,115,8,0,14,46,112,111,112,45,117,112,45,99,111,111,107,105,101,8,0,26,46,112,111,112,45,117,112,45,99,111,111,107,105,101,45,97,108,101,114,116,45,98,108,111,99,107,8,0,15,46,112,111,112,45,117,112,45,99,111,111,107,105,101,115,8,0,12,46,112,111,112,95,99,111,111,107,105,101,115,8,0,14,46,112,111,112,95,117,112,95,99,111,111,107,105,101,8,0,8,46,112,111,112,103,100,112,114,8,0,11,46,112,111,112,105,110,45,99,110,105,108,8,0,14,46,112,111,112,105,110,45,99,111,111,107,105,101,115,8,0,20,46,112,111,112,105,110,45,99,111,111,107,105,101,115,45,109,111,100,97,108,8,0,12,46,112,111,112,105,110,67,111,111,107,105,101,8,0,13,46,112,111,112,105,110,67,111,111,107,105,101,115,8,0,15,46,112,111,112,111,118,101,114,45,99,111,111,107,105,101,8,0,18,46,112,111,112,111,118,101,114,45,109,100,46,99,111,111,107,105,101,8,0,14,46,112,111,112,117,112,45,45,99,111,111,107,105,101,8,0,23,46,112,111,112,117,112,45,45,99,111,111,107,105,101,45,104,97,110,100,108,105,110,103,8,0,24,46,112,111,112,117,112,45,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,25,46,112,111,112,117,112,45,45,112,111,108,105,99,121,45,97,98,115,111,108,117,116,101,108,121,8,0,19,46,112,111,112,117,112,45,97,108,101,114,116,45,110,111,116,105,99,101,8,0,20,46,112,111,112,117,112,45,97,108,108,111,119,45,99,111,111,107,105,101,115,8,0,19,46,112,111,112,117,112,45,97,118,105,115,111,45,99,111,111,107,105,101,8,0,20,46,112,111,112,117,112,45,97,118,105,115,111,45,99,111,111,107,105,101,115,8,0,21,46,112,111,112,117,112,45,99,104,111,111,115,101,45,99,111,111,107,105,101,115,8,0,17,46,112,111,112,117,112,45,99,111,111,107,105,101,45,45,111,110,8,0,18,46,112,111,112,117,112,45,99,111,111,107,105,101,45,50,48,49,56,8,0,24,46,112,111,112,117,112,45,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,8,0,20,46,112,111,112,117,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,25,46,112,111,112,117,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,8,0,20,46,112,111,112,117,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,18,46,112,111,112,117,112,45,99,111,111,107,105,101,45,115,104,111,119,8,0,21,46,112,111,112,117,112,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,23,46,112,111,112,117,112,45,99,111,111,107,105,101,58,110,111,116,40,98,111,100,121,41,8,0,18,46,112,111,112,117,112,45,99,111,111,107,105,101,95,95,98,111,120,8,0,21,46,112,111,112,117,112,45,99,111,111,107,105,101,95,95,115,104,97,100,111,119,8,0,25,46,112,111,112,117,112,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,100,111,119,110,8,0,14,46,112,111,112,117,112,45,99,111,111,107,105,101,115,8,0,22,46,112,111,112,117,112,45,99,111,111,107,105,101,115,45,115,101,99,116,105,111,110,8,0,11,46,112,111,112,117,112,45,103,100,112,114,8,0,22,46,112,111,112,117,112,45,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,8,0,33,46,112,111,112,117,112,45,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,45,105,115,45,118,105,115,105,98,108,101,8,0,21,46,112,111,112,117,112,45,109,101,115,115,97,103,101,46,99,111,111,107,105,101,8,0,22,46,112,111,112,117,112,45,111,118,101,114,108,97,121,45,99,111,111,107,105,101,115,8,0,15,46,112,111,112,117,112,45,112,111,108,105,116,105,99,97,8,0,11,46,112,111,112,117,112,45,114,111,100,111,8,0,18,46,112,111,112,117,112,45,115,99,114,101,101,110,45,114,111,100,111,8,0,21,46,112,111,112,117,112,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,19,46,112,111,112,117,112,66,97,110,110,101,114,87,114,97,112,112,101,114,8,0,12,46,112,111,112,117,112,67,111,111,107,105,101,8,0,18,46,112,111,112,117,112,67,111,111,107,105,101,65,99,99,101,112,116,8,0,13,46,112,111,112,117,112,67,111,111,107,105,101,115,8,0,33,46,112,111,112,117,112,91,100,97,116,97,45,112,111,112,117,112,61,34,112,111,112,117,112,45,99,111,111,107,105,101,34,93,8,0,14,46,112,111,112,117,112,95,95,99,111,111,107,105,101,8,0,15,46,112,111,112,117,112,95,95,99,111,111,107,105,101,115,8,0,20,46,112,111,112,117,112,95,98,108,111,99,107,95,67,111,111,107,105,101,115,8,0,19,46,112,111,112,117,112,95,98,108,111,99,107,95,99,111,111,107,105,101,8,0,13,46,112,111,112,117,112,95,99,111,111,107,105,101,8,0,21,46,112,111,112,117,112,95,99,111,111,107,105,101,95,97,100,115,101,110,115,101,8,0,27,46,112,111,112,117,112,95,99,111,111,107,105,101,95,112,111,115,105,116,105,111,110,95,108,101,102,116,8,0,14,46,112,111,112,117,112,95,99,111,111,107,105,101,115,8,0,19,46,112,111,112,117,112,95,99,111,111,107,105,101,115,95,119,114,97,112,8,0,15,46,112,111,112,117,112,95,112,111,108,105,99,105,101,115,8,0,13,46,112,111,112,117,112,99,111,111,99,107,105,101,8,0,12,46,112,111,112,117,112,99,111,111,107,105,101,8,0,18,46,112,111,112,117,112,102,111,114,109,45,99,111,111,107,105,101,115,8,0,30,46,112,111,114,116,97,108,45,121,111,117,65,114,101,72,101,114,101,45,99,111,111,107,105,101,45,119,114,97,112,8,0,22,46,112,111,114,116,108,101,116,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,15,46,112,111,115,116,101,108,45,99,111,111,107,105,101,115,8,0,14,46,112,111,115,119,112,45,100,97,116,97,98,97,114,8,0,16,46,112,111,118,111,108,101,110,105,67,111,111,107,105,101,115,8,0,24,46,112,112,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,108,111,99,107,8,0,10,46,112,112,45,99,111,111,107,105,101,8,0,17,46,112,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,112,112,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,19,46,112,112,45,99,111,111,107,105,101,95,95,99,111,110,116,101,110,116,8,0,18,46,112,112,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,8,0,11,46,112,112,97,45,110,111,116,105,99,101,8,0,12,46,112,112,103,45,99,111,111,107,105,101,115,8,0,20,46,112,112,109,115,95,99,109,95,99,111,110,115,101,110,116,95,98,97,114,8,0,32,46,112,112,114,95,112,114,105,118,95,100,111,99,117,109,101,110,116,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,25,46,112,112,115,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,115,116,114,105,112,8,0,17,46,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,18,46,112,114,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,17,46,112,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,22,46,112,114,101,45,104,101,97,100,95,95,99,111,111,107,105,101,45,105,110,102,111,8,0,25,46,112,114,101,45,104,101,97,100,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,15,46,112,114,101,77,111,100,97,108,67,111,111,107,105,101,8,0,14,46,112,114,101,99,111,107,105,101,105,110,110,101,114,8,0,18,46,112,114,101,118,101,110,116,65,99,99,101,112,116,97,110,99,101,8,0,36,46,112,114,105,109,111,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,112,108,97,99,101,104,111,108,100,101,114,8,0,14,46,112,114,105,118,97,99,121,45,97,108,101,114,116,8,0,20,46,112,114,105,118,97,99,121,45,97,110,100,45,99,111,111,107,105,101,115,8,0,15,46,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,23,46,112,114,105,118,97,99,121,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,12,46,112,114,105,118,97,99,121,45,98,97,114,8,0,22,46,112,114,105,118,97,99,121,45,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,23,46,112,114,105,118,97,99,121,45,98,97,114,95,95,99,111,110,116,97,105,110,101,114,8,0,25,46,112,114,105,118,97,99,121,45,98,108,111,99,107,105,110,103,45,111,118,101,114,108,97,121,8,0,19,46,112,114,105,118,97,99,121,45,99,101,110,116,101,114,45,99,116,97,8,0,17,46,112,114,105,118,97,99,121,45,99,111,110,99,101,114,110,115,8,0,32,46,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,95,95,111,118,101,114,108,97,121,8,0,25,46,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,45,105,110,102,111,45,99,116,97,8,0,22,46,112,114,105,118,97,99,121,45,99,111,110,116,114,111,108,45,98,97,100,103,101,8,0,24,46,112,114,105,118,97,99,121,45,99,111,110,116,114,111,108,115,45,98,97,110,110,101,114,8,0,15,46,112,114,105,118,97,99,121,45,99,111,111,107,105,101,8,0,21,46,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,22,46,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,112,114,105,118,97,99,121,45,99,111,111,107,105,101,115,8,0,19,46,112,114,105,118,97,99,121,45,100,105,115,99,108,97,105,109,101,114,8,0,26,46,112,114,105,118,97,99,121,45,100,105,115,99,108,97,105,109,101,114,45,98,97,110,110,101,114,8,0,21,46,112,114,105,118,97,99,121,45,102,111,111,116,101,114,45,98,108,111,99,107,8,0,13,46,112,114,105,118,97,99,121,45,104,105,110,116,8,0,23,46,112,114,105,118,97,99,121,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,21,46,112,114,105,118,97,99,121,45,105,110,102,111,45,109,101,115,115,97,103,101,8,0,14,46,112,114,105,118,97,99,121,45,105,110,102,111,115,8,0,18,46,112,114,105,118,97,99,121,45,105,110,105,116,45,119,97,108,108,8,0,24,46,112,114,105,118,97,99,121,45,109,97,110,97,103,101,114,95,95,98,97,110,110,101,114,8,0,25,46,112,114,105,118,97,99,121,45,109,97,110,97,103,101,114,95,95,111,118,101,114,108,97,121,8,0,24,46,112,114,105,118,97,99,121,45,109,101,115,115,97,103,101,45,111,118,101,114,108,97,121,8,0,23,46,112,114,105,118,97,99,121,45,110,111,116,105,99,101,45,45,115,105,109,112,108,101,8,0,26,46,112,114,105,118,97,99,121,45,110,111,116,105,99,101,45,98,97,99,107,103,114,111,117,110,100,8,0,21,46,112,114,105,118,97,99,121,45,110,111,116,105,99,101,45,105,110,110,101,114,8,0,31,46,112,114,105,118,97,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,8,0,24,46,112,114,105,118,97,99,121,45,112,111,108,105,99,105,101,115,45,98,97,110,110,101,114,8,0,22,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,19,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,114,8,0,23,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,99,111,110,115,101,110,116,8,0,22,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,99,111,111,107,105,101,8,0,23,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,99,111,111,107,105,101,115,8,0,32,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,99,111,111,107,105,101,115,45,105,110,102,111,114,109,101,114,8,0,23,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,8,0,21,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,109,111,100,97,108,8,0,22,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,110,111,116,105,99,101,8,0,26,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,110,111,116,105,99,101,45,98,97,114,8,0,21,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,29,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,114,111,109,112,116,45,45,109,111,100,97,108,8,0,21,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,116,111,97,115,116,8,0,24,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,105,115,45,115,116,105,99,107,121,8,0,14,46,112,114,105,118,97,99,121,45,112,111,112,117,112,8,0,22,46,112,114,105,118,97,99,121,45,112,111,112,117,112,45,111,118,101,114,108,97,121,8,0,22,46,112,114,105,118,97,99,121,45,112,111,112,117,112,45,119,114,97,112,112,101,114,8,0,23,46,112,114,105,118,97,99,121,45,112,114,111,109,112,116,45,119,114,97,112,112,101,114,8,0,22,46,112,114,105,118,97,99,121,45,115,104,105,101,108,100,45,98,97,110,110,101,114,8,0,22,46,112,114,105,118,97,99,121,45,116,101,114,109,115,45,99,111,111,107,105,101,115,8,0,14,46,112,114,105,118,97,99,121,45,116,111,97,115,116,8,0,15,46,112,114,105,118,97,99,121,45,117,112,100,97,116,101,8,0,16,46,112,114,105,118,97,99,121,45,119,97,114,110,105,110,103,8,0,16,46,112,114,105,118,97,99,121,65,108,101,114,116,66,111,120,8,0,14,46,112,114,105,118,97,99,121,66,97,110,110,101,114,8,0,11,46,112,114,105,118,97,99,121,66,97,114,8,0,14,46,112,114,105,118,97,99,121,67,111,111,107,105,101,8,0,17,46,112,114,105,118,97,99,121,67,111,111,107,105,101,66,111,120,8,0,16,46,112,114,105,118,97,99,121,76,97,119,65,108,101,114,116,8,0,15,46,112,114,105,118,97,99,121,77,101,108,100,105,110,103,8,0,14,46,112,114,105,118,97,99,121,78,111,116,105,99,101,8,0,20,46,112,114,105,118,97,99,121,78,111,116,105,102,105,99,97,116,105,111,110,8,0,20,46,112,114,105,118,97,99,121,80,111,108,105,99,121,66,97,110,110,101,114,8,0,17,46,112,114,105,118,97,99,121,80,111,108,105,99,121,66,97,114,8,0,17,46,112,114,105,118,97,99,121,80,111,108,105,99,121,66,108,107,8,0,19,46,112,114,105,118,97,99,121,80,111,108,105,99,121,80,111,112,117,112,8,0,18,46,112,114,105,118,97,99,121,80,111,108,105,99,121,87,97,114,110,8,0,21,46,112,114,105,118,97,99,121,83,101,116,116,105,110,103,115,80,111,112,117,112,8,0,11,46,112,114,105,118,97,99,121,84,111,112,8,0,15,46,112,114,105,118,97,99,121,95,95,112,111,112,117,112,8,0,15,46,112,114,105,118,97,99,121,95,98,97,110,110,101,114,8,0,16,46,112,114,105,118,97,99,121,95,99,111,110,115,101,110,116,8,0,23,46,112,114,105,118,97,99,121,95,99,111,111,107,105,101,115,95,112,111,108,105,99,121,8,0,12,46,112,114,105,118,97,99,121,95,100,105,118,8,0,15,46,112,114,105,118,97,99,121,95,108,97,119,95,98,103,8,0,15,46,112,114,105,118,97,99,121,95,110,111,116,105,99,101,8,0,21,46,112,114,105,118,97,99,121,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,20,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,45,105,110,102,111,8,0,21,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,46,97,108,101,114,116,8,0,33,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,8,0,29,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,46,97,108,101,114,116,45,119,97,114,110,105,110,103,8,0,26,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,95,99,111,110,116,97,105,110,101,114,8,0,22,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,98,97,110,110,101,114,8,0,18,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,98,103,8,0,20,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,98,111,116,109,8,0,20,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,105,110,102,111,8,0,27,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,109,101,115,115,97,103,101,95,98,111,120,8,0,19,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,112,111,112,8,0,22,46,112,114,105,118,97,99,121,95,112,114,111,109,112,116,95,98,111,116,116,111,109,8,0,33,46,112,114,105,118,97,99,121,95,112,114,111,116,101,99,116,105,111,110,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,33,46,112,114,105,118,97,99,121,95,115,101,116,116,105,110,103,115,95,105,110,116,101,114,102,97,99,101,46,112,111,112,117,112,8,0,16,46,112,114,105,118,97,99,121,95,119,97,114,110,105,110,103,8,0,14,46,112,114,105,118,97,99,121,98,97,110,110,101,114,8,0,21,46,112,114,105,118,97,99,121,98,97,110,110,101,114,95,110,111,116,105,99,101,8,0,14,46,112,114,105,118,97,99,121,99,111,111,107,105,101,8,0,20,46,112,114,105,118,97,99,121,99,111,111,107,105,101,98,97,110,110,101,114,8,0,12,46,112,114,105,118,97,99,121,104,105,110,116,8,0,12,46,112,114,105,118,97,99,121,105,110,102,111,8,0,20,46,112,114,105,118,97,99,121,111,117,116,101,114,119,114,97,112,112,101,114,8,0,25,46,112,114,105,118,97,99,121,112,111,108,105,99,105,101,115,45,99,111,109,45,45,45,110,98,8,0,46,46,112,114,105,118,97,99,121,112,111,108,105,99,105,101,115,45,99,111,109,45,45,45,110,98,45,105,110,116,101,114,115,116,105,116,105,97,108,45,111,118,101,114,108,97,121,8,0,21,46,112,114,105,118,97,99,121,112,111,108,105,99,121,45,97,99,99,101,112,116,8,0,31,46,112,114,105,118,97,99,121,112,111,108,105,99,121,109,101,115,115,97,103,101,98,111,120,95,104,101,97,100,101,114,8,0,20,46,112,114,105,118,97,99,121,112,111,108,105,99,121,115,116,114,105,112,101,8,0,24,46,112,114,105,118,97,99,121,115,101,116,116,105,110,103,115,95,95,98,97,110,110,101,114,8,0,36,46,112,114,105,118,97,99,121,119,97,108,108,45,98,97,110,110,101,114,91,100,97,116,97,45,105,115,45,118,105,115,105,98,108,101,93,8,0,20,46,112,114,105,118,97,99,121,119,105,114,101,45,119,114,97,112,112,101,114,8,0,19,46,112,114,105,118,97,115,121,112,111,108,105,99,121,45,105,110,102,111,8,0,22,46,112,114,105,118,97,116,101,45,99,111,111,107,105,101,115,45,109,111,100,97,108,8,0,14,46,112,114,105,118,97,116,101,80,111,108,105,99,121,8,0,20,46,112,114,111,95,99,111,111,107,105,101,45,108,97,121,101,114,45,110,103,8,0,21,46,112,114,111,107,111,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,22,46,112,114,111,109,111,65,108,101,114,116,45,99,111,111,107,105,101,112,111,112,115,8,0,17,46,112,114,111,109,112,116,45,99,111,111,107,105,101,108,97,119,8,0,15,46,112,114,111,109,112,116,95,99,111,111,107,105,101,115,8,0,24,46,112,114,111,112,101,108,108,101,114,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,20,46,112,114,111,116,101,99,116,67,111,111,107,105,101,66,97,110,110,101,114,8,0,11,46,112,115,45,67,111,111,107,105,101,115,8,0,11,46,112,115,45,99,111,111,107,105,101,115,8,0,11,46,112,115,103,45,99,111,111,107,105,101,8,0,14,46,112,116,45,99,111,111,107,105,101,45,98,97,114,8,0,21,46,112,117,98,108,105,99,95,108,101,103,97,108,95,99,111,111,107,105,101,115,8,0,21,46,112,117,112,112,101,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,30,46,112,117,114,101,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,28,46,112,117,114,101,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,8,0,19,46,112,117,114,112,108,101,45,99,111,111,107,105,101,45,105,110,102,111,8,0,10,46,112,117,115,104,45,99,110,105,108,8,0,25,46,112,117,115,104,101,114,112,97,110,101,108,45,99,111,111,107,105,101,110,111,116,105,99,101,8,0,11,46,112,117,117,45,99,111,111,107,105,101,8,0,11,46,112,118,45,99,111,111,107,105,101,115,8,0,18,46,112,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,112,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,118,50,8,0,30,46,112,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,118,50,45,98,97,99,107,100,114,111,112,8,0,17,46,112,119,45,99,111,111,107,105,101,45,119,105,110,100,111,119,8,0,22,46,112,119,95,99,111,110,115,101,110,116,95,109,101,115,115,97,103,101,100,105,118,8,0,11,46,112,119,95,99,111,111,107,105,101,115,8,0,29,46,112,119,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,117,115,116,111,109,105,122,101,8,0,29,46,112,119,101,98,98,111,120,45,112,108,117,103,105,110,45,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,15,46,112,119,115,95,99,111,111,107,105,101,95,98,97,114,8,0,15,46,112,120,108,95,99,111,111,107,105,101,95,98,97,114,8,0,12,46,112,121,45,49,46,99,111,111,107,105,101,8,0,10,46,112,121,45,51,46,114,103,112,100,8,0,12,46,112,121,45,52,46,99,111,111,107,105,101,8,0,22,46,112,122,45,100,105,115,99,108,97,105,109,101,114,45,45,99,111,111,107,105,101,8,0,21,46,113,45,108,101,103,97,108,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,30,46,113,45,110,111,116,105,102,105,99,97,116,105,111,110,91,99,108,97,115,115,42,61,34,103,100,112,114,34,93,8,0,17,46,113,45,115,105,108,101,110,116,45,99,111,110,115,101,110,116,8,0,10,46,113,95,99,111,111,107,105,101,115,8,0,18,46,113,97,45,97,108,101,114,116,45,45,99,111,111,107,105,101,115,8,0,17,46,113,97,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,17,46,113,97,45,115,110,97,99,107,98,97,114,45,99,99,112,97,8,0,17,46,113,98,45,99,111,111,107,105,101,108,97,119,45,98,97,114,8,0,15,46,113,99,45,99,109,112,45,115,104,111,119,105,110,103,8,0,20,46,113,99,45,99,109,112,45,117,105,45,99,111,110,116,97,105,110,101,114,8,0,16,46,113,100,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,11,46,113,103,45,99,111,110,115,101,110,116,8,0,12,46,113,110,105,45,99,111,111,107,109,115,103,8,0,17,46,113,112,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,30,46,113,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,17,46,113,117,105,99,107,45,99,111,111,107,105,101,45,98,97,114,8,0,9,46,114,45,99,111,111,107,105,101,8,0,13,46,114,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,114,45,99,111,111,107,105,101,45,102,111,111,116,101,114,8,0,10,46,114,45,99,111,111,107,105,101,115,8,0,15,46,114,45,103,100,112,114,45,99,111,111,107,105,101,115,8,0,13,46,114,45,103,100,112,114,45,112,111,112,117,112,8,0,17,46,114,97,100,105,111,112,108,97,121,101,114,45,97,110,110,111,8,0,27,46,114,97,100,105,111,112,108,97,121,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,18,46,114,97,100,105,115,104,45,99,111,111,107,105,101,45,98,97,114,8,0,15,46,114,97,100,105,115,104,45,114,99,99,45,98,97,114,8,0,19,46,114,97,104,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,16,46,114,97,110,107,45,99,111,111,107,105,101,45,98,97,114,8,0,17,46,114,97,115,116,104,97,98,101,114,45,99,111,111,107,105,101,8,0,18,46,114,98,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,10,46,114,98,45,99,111,111,107,105,101,8,0,19,46,114,98,45,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,8,0,21,46,114,98,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,16,46,114,98,45,99,111,111,107,105,110,103,97,108,101,114,116,8,0,17,46,114,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,23,46,114,99,119,45,99,45,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,8,0,15,46,114,100,95,95,99,111,111,107,105,101,45,98,97,114,8,0,23,46,114,100,103,100,112,114,97,111,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,25,46,114,100,109,45,100,97,97,99,45,110,111,116,105,99,101,45,116,101,109,112,108,97,116,101,8,0,23,46,114,101,97,99,116,45,45,109,111,100,117,108,101,95,95,99,111,111,107,105,101,115,8,0,20,46,114,101,97,99,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,26,46,114,101,97,99,116,45,99,111,111,107,105,101,45,103,100,112,114,45,98,108,111,99,107,101,114,8,0,25,46,114,101,97,99,116,45,99,111,111,107,105,101,45,103,100,112,114,45,100,105,97,108,111,103,8,0,24,46,114,101,97,99,116,45,99,111,111,107,105,101,45,108,97,119,45,100,105,97,108,111,103,8,0,32,46,114,101,97,99,116,45,110,97,118,105,45,101,97,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,37,46,114,101,97,99,116,45,114,101,118,101,97,108,91,99,108,97,115,115,42,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,8,0,11,46,114,101,97,100,99,111,111,107,105,101,8,0,17,46,114,101,99,116,97,110,103,108,101,67,111,111,107,105,101,115,8,0,13,46,114,101,99,117,114,108,121,45,103,100,112,114,8,0,21,46,114,101,100,104,97,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,114,101,103,105,111,110,45,99,111,111,107,105,101,45,98,97,110,8,0,21,46,114,101,103,105,111,110,45,99,111,111,107,105,101,109,101,108,100,105,110,103,8,0,28,46,114,101,103,105,111,110,45,100,105,115,99,108,97,105,109,101,114,45,99,111,109,112,111,110,101,110,116,8,0,55,46,114,101,103,105,111,110,45,100,105,115,99,108,97,105,109,101,114,91,100,97,116,97,45,99,111,111,107,105,101,95,110,97,109,101,61,34,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,34,93,8,0,12,46,114,101,103,105,111,110,45,103,100,112,114,8,0,17,46,114,101,103,105,111,110,45,114,111,100,111,45,105,110,102,111,8,0,24,46,114,101,103,105,111,110,97,108,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,15,46,114,101,113,117,101,115,116,67,111,111,107,105,101,115,8,0,21,46,114,101,115,67,111,111,107,105,101,99,111,110,45,119,114,97,112,112,101,114,8,0,22,46,114,101,115,104,97,114,101,95,99,111,111,107,105,101,119,97,114,110,105,110,103,8,0,24,46,114,101,115,112,111,110,115,105,118,101,45,97,112,112,95,95,99,111,111,107,105,101,115,8,0,27,46,114,101,115,112,111,110,115,105,118,101,70,111,111,116,101,114,66,97,114,67,111,110,116,101,110,116,8,0,13,46,114,101,115,117,108,116,67,111,111,107,105,101,8,0,20,46,114,101,116,97,105,108,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,23,46,114,101,118,101,97,108,45,109,111,100,97,108,45,98,103,45,99,111,111,107,105,101,8,0,20,46,114,101,118,101,97,108,45,109,111,100,97,108,45,99,111,111,107,105,101,8,0,27,46,114,101,118,101,97,108,45,109,111,100,97,108,91,105,100,42,61,34,99,111,111,107,105,101,34,93,8,0,17,46,114,101,121,45,99,111,111,107,105,101,78,111,116,105,99,101,8,0,11,46,114,103,112,100,45,97,108,101,114,116,8,0,12,46,114,103,112,100,45,98,97,110,110,101,114,8,0,9,46,114,103,112,100,45,98,97,114,8,0,11,46,114,103,112,100,45,98,108,111,99,107,8,0,14,46,114,103,112,100,45,98,108,111,99,107,97,103,101,8,0,13,46,114,103,112,100,45,99,111,110,115,101,110,116,8,0,15,46,114,103,112,100,45,99,111,110,116,97,105,110,101,114,8,0,12,46,114,103,112,100,45,99,111,111,107,105,101,8,0,15,46,114,103,112,100,45,99,111,111,107,105,101,98,97,114,8,0,13,46,114,103,112,100,45,99,111,111,107,105,101,115,8,0,20,46,114,103,112,100,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,21,46,114,103,112,100,45,99,111,111,107,105,101,115,45,116,111,111,108,98,111,120,8,0,25,46,114,103,112,100,45,100,97,116,97,45,99,111,110,116,114,111,108,45,98,97,110,110,101,114,8,0,12,46,114,103,112,100,45,101,110,99,97,114,116,8,0,15,46,114,103,112,100,45,102,105,120,101,100,45,98,97,114,8,0,12,46,114,103,112,100,45,102,111,111,116,101,114,8,0,17,46,114,103,112,100,45,103,101,110,101,114,97,108,45,98,111,120,8,0,14,46,114,103,112,100,45,105,110,102,111,95,98,97,114,8,0,11,46,114,103,112,100,45,105,110,110,101,114,8,0,11,46,114,103,112,100,45,108,97,121,101,114,8,0,12,46,114,103,112,100,45,110,97,118,98,97,114,8,0,12,46,114,103,112,100,45,110,111,116,105,99,101,8,0,18,46,114,103,112,100,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,11,46,114,103,112,100,45,112,111,112,105,110,8,0,11,46,114,103,112,100,45,112,111,112,117,112,8,0,13,46,114,103,112,100,45,119,114,97,112,112,101,114,8,0,10,46,114,103,112,100,46,118,105,101,119,8,0,8,46,114,103,112,100,66,97,110,8,0,11,46,114,103,112,100,67,111,111,107,105,101,8,0,14,46,114,103,112,100,95,98,97,99,107,100,114,111,112,8,0,12,46,114,103,112,100,95,98,97,110,110,101,114,8,0,18,46,114,103,112,100,95,98,97,110,110,101,114,95,97,108,101,114,116,8,0,9,46,114,103,112,100,95,98,111,120,8,0,13,46,114,103,112,100,95,109,101,115,115,97,103,101,8,0,18,46,114,104,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,28,46,114,104,119,101,98,45,111,118,101,114,108,97,121,45,99,111,111,107,105,101,45,99,104,97,110,103,101,8,0,15,46,114,105,98,98,111,110,45,95,99,111,111,107,105,101,8,0,14,46,114,105,98,98,111,110,45,99,111,111,107,105,101,8,0,22,46,114,105,103,104,116,45,102,108,111,97,116,105,110,103,45,99,111,111,107,105,101,8,0,22,46,114,105,113,117,97,100,114,111,65,118,118,105,115,111,80,114,105,118,97,99,121,8,0,20,46,114,105,115,99,109,115,95,99,111,111,107,105,101,108,101,105,115,116,101,8,0,22,46,114,106,119,112,45,99,111,111,107,105,101,45,108,97,119,45,112,111,112,117,112,8,0,25,46,114,108,116,99,112,95,105,110,102,111,114,109,97,116,105,111,110,95,99,111,111,107,105,101,8,0,11,46,114,108,120,45,99,111,111,107,105,101,8,0,15,46,114,108,120,45,99,111,111,107,105,101,45,98,97,114,8,0,10,46,114,109,45,99,111,111,107,105,101,8,0,17,46,114,109,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,16,46,114,109,45,99,111,111,107,105,101,115,45,98,101,108,116,8,0,14,46,114,109,45,99,111,111,107,105,101,115,45,111,108,8,0,15,46,114,109,103,67,111,111,107,105,101,65,108,101,114,116,8,0,18,46,114,110,107,45,67,111,111,107,105,101,115,80,111,108,105,99,121,8,0,11,46,114,110,116,95,99,111,111,107,105,101,8,0,18,46,114,111,99,107,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,12,46,114,111,100,111,45,97,99,99,101,112,116,8,0,11,46,114,111,100,111,45,97,108,101,114,116,8,0,26,46,114,111,100,111,45,99,111,111,107,105,101,115,45,112,97,110,101,108,45,109,111,100,117,108,101,8,0,12,46,114,111,100,111,45,104,101,105,103,104,116,8,0,10,46,114,111,100,111,45,105,110,102,111,8,0,14,46,114,111,100,111,45,105,110,102,111,45,98,111,120,8,0,22,46,114,111,100,111,45,105,110,102,111,45,98,111,120,45,111,118,101,114,108,97,121,8,0,19,46,114,111,100,111,45,105,110,102,111,95,95,99,111,110,116,101,110,116,8,0,19,46,114,111,100,111,45,105,110,102,111,95,95,111,118,101,114,108,97,121,8,0,11,46,114,111,100,111,45,109,111,100,97,108,8,0,21,46,114,111,100,111,45,110,111,116,45,115,109,97,108,108,45,109,111,100,97,108,8,0,15,46,114,111,100,111,45,111,118,101,114,108,97,121,101,114,8,0,11,46,114,111,100,111,45,112,111,112,117,112,8,0,17,46,114,111,100,111,45,112,111,112,117,112,95,112,111,112,117,112,8,0,13,46,114,111,100,111,45,119,114,97,112,112,101,114,8,0,15,46,114,111,100,111,45,119,114,97,112,112,101,114,45,49,8,0,10,46,114,111,100,111,65,108,101,114,116,8,0,10,46,114,111,100,111,80,111,112,117,112,8,0,13,46,114,111,100,111,95,95,97,99,99,101,112,116,8,0,16,46,114,111,100,111,95,95,99,111,110,116,97,105,110,101,114,8,0,19,46,114,111,100,111,95,99,111,111,107,105,101,115,95,112,111,112,117,112,8,0,10,46,114,111,100,111,95,105,110,102,111,8,0,11,46,114,111,100,111,97,99,99,101,112,116,8,0,12,46,114,111,104,45,99,111,111,107,105,101,115,8,0,23,46,114,111,119,45,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,14,46,114,111,119,45,99,111,111,107,105,101,98,97,114,8,0,12,46,114,111,119,45,99,111,111,107,105,101,115,8,0,41,46,114,111,119,91,100,97,116,97,45,116,101,115,116,45,115,101,108,101,99,116,111,114,42,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,8,0,18,46,114,112,45,67,111,111,107,105,101,115,67,111,110,115,101,110,116,8,0,16,46,114,115,45,97,108,101,114,116,45,99,111,111,107,105,101,8,0,18,46,114,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,16,46,114,115,116,98,111,120,67,111,111,107,105,101,66,97,114,8,0,12,46,114,115,117,45,99,111,111,107,105,101,115,8,0,23,46,114,116,45,99,111,111,107,105,101,112,111,108,105,99,121,45,110,111,116,105,99,101,8,0,19,46,114,116,115,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,27,46,114,116,115,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,45,112,97,110,110,101,108,8,0,27,46,114,116,115,45,109,111,100,117,108,101,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,8,0,24,46,114,118,108,45,66,97,110,110,101,114,45,99,111,111,107,105,101,66,97,110,110,101,114,8,0,18,46,114,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,23,46,114,119,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,31,46,114,120,116,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,95,95,99,111,110,116,97,105,110,101,114,8,0,21,46,114,121,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,8,0,35,46,115,45,45,109,101,115,115,97,103,101,91,99,108,97,115,115,42,61,34,99,111,111,107,105,101,45,110,111,116,105,99,101,34,93,8,0,20,46,115,45,49,48,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,14,46,115,45,97,112,112,45,99,111,111,107,105,101,115,8,0,9,46,115,45,99,111,111,107,105,101,8,0,20,46,115,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,14,46,115,45,99,111,111,107,105,101,45,104,105,110,116,8,0,26,46,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,8,0,15,46,115,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,17,46,115,45,99,111,111,107,105,101,95,95,109,111,100,97,108,53,8,0,12,46,115,45,99,111,111,107,105,101,98,97,114,8,0,10,46,115,45,99,111,111,107,105,101,115,8,0,15,46,115,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,21,46,115,45,99,111,111,107,105,101,115,45,105,110,102,111,45,105,110,110,101,114,8,0,18,46,115,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,21,46,115,45,99,111,111,107,105,101,115,95,95,99,111,110,116,97,105,110,101,114,8,0,19,46,115,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,7,46,115,45,103,100,112,114,8,0,35,46,115,45,110,97,118,105,103,97,116,105,111,110,45,116,111,111,108,45,112,97,110,101,108,45,100,105,115,99,108,97,105,109,101,114,8,0,17,46,115,49,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,29,46,115,50,48,45,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,99,111,110,116,97,105,110,101,114,8,0,23,46,115,50,48,50,50,45,99,111,111,107,105,101,45,98,97,114,95,95,118,101,105,108,8,0,22,46,115,50,109,67,111,111,107,105,101,115,79,112,116,105,110,68,105,97,108,111,103,8,0,23,46,115,51,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,119,114,97,112,8,0,25,46,115,51,54,48,45,99,111,111,107,105,101,45,104,105,110,116,45,119,114,97,112,112,101,114,8,0,16,46,115,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,13,46,115,97,103,101,45,99,111,111,107,105,101,115,8,0,18,46,115,97,109,115,45,99,111,111,107,105,101,45,109,111,100,97,108,8,0,15,46,115,97,110,97,45,99,111,111,107,105,101,98,97,114,8,0,17,46,115,97,110,111,109,97,45,111,112,116,105,110,45,98,97,114,8,0,13,46,115,97,118,101,45,99,111,111,107,105,101,115,8,0,17,46,115,97,118,101,45,99,111,111,107,105,101,115,45,114,116,101,8,0,19,46,115,98,45,98,97,110,110,101,114,115,45,45,99,111,111,107,105,101,8,0,19,46,115,98,45,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,8,0,17,46,115,98,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,18,46,115,98,45,110,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,10,46,115,99,45,99,111,111,107,105,101,8,0,17,46,115,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,115,99,45,99,111,111,107,105,101,115,8,0,8,46,115,99,45,103,100,112,114,8,0,15,46,115,99,45,103,100,112,114,45,98,97,110,110,101,114,8,0,27,46,115,99,45,109,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,18,46,115,99,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,18,46,115,99,103,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,115,99,104,45,100,97,116,97,99,111,110,116,114,111,108,108,101,114,8,0,20,46,115,99,104,97,95,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,115,99,109,112,45,112,111,112,105,110,8,0,19,46,115,99,111,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,8,0,28,46,115,99,111,109,109,101,114,99,101,45,103,100,112,114,45,99,111,111,107,105,101,110,111,116,105,99,101,8,0,30,46,115,99,111,114,101,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,97,108,101,114,116,8,0,30,46,115,99,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,117,116,101,114,45,119,114,97,112,8,0,16,46,115,99,114,45,97,100,118,45,99,111,111,107,105,101,115,8,0,22,46,115,99,114,101,101,110,45,111,118,101,114,108,97,121,45,99,111,111,107,105,101,8,0,14,46,115,99,114,101,101,110,46,99,111,111,107,105,101,8,0,28,46,115,99,114,105,112,116,45,112,114,105,118,97,99,121,80,111,108,105,99,121,45,99,111,111,107,105,101,8,0,21,46,115,99,114,105,112,116,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,19,46,115,99,114,111,108,108,45,102,105,120,46,99,111,111,107,105,101,115,8,0,19,46,115,99,114,111,108,108,101,114,32,62,32,46,99,111,111,107,105,101,8,0,11,46,115,99,119,45,99,111,111,107,105,101,8,0,17,46,115,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,23,46,115,100,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,17,46,115,100,95,99,111,111,107,105,101,115,112,111,108,105,99,121,8,0,23,46,115,100,99,45,115,105,116,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,28,46,115,100,108,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,45,98,97,114,8,0,19,46,115,100,108,45,119,101,98,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,115,101,97,116,95,99,111,111,107,105,101,95,98,97,114,8,0,22,46,115,101,99,116,105,111,110,45,45,98,97,110,110,101,114,67,111,111,107,105,101,8,0,24,46,115,101,99,116,105,111,110,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,23,46,115,101,99,116,105,111,110,45,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,19,46,115,101,99,116,105,111,110,45,45,99,111,111,107,105,101,66,97,114,8,0,17,46,115,101,99,116,105,111,110,45,45,99,111,111,107,105,101,115,8,0,15,46,115,101,99,116,105,111,110,45,99,111,111,107,105,101,8,0,23,46,115,101,99,116,105,111,110,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,27,46,115,101,99,116,105,111,110,45,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,115,101,99,116,105,111,110,45,99,111,111,107,105,101,115,8,0,29,46,115,101,99,116,105,111,110,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,115,8,0,19,46,115,101,99,116,105,111,110,45,112,111,112,117,112,45,103,100,112,114,8,0,25,46,115,101,99,116,105,111,110,95,95,99,111,111,107,105,101,45,45,109,101,115,115,97,103,101,8,0,23,46,115,101,99,116,105,111,110,95,95,99,111,111,107,105,101,45,116,111,103,103,108,101,8,0,17,46,115,101,99,116,105,111,110,95,95,99,111,111,107,105,101,115,8,0,21,46,115,101,101,114,115,45,99,109,112,45,98,97,110,110,101,114,45,98,97,114,8,0,26,46,115,101,101,114,115,45,99,109,112,45,99,111,111,107,105,101,45,100,97,116,97,45,104,111,108,8,0,22,46,115,101,103,98,45,99,111,111,107,105,101,99,111,109,112,108,105,97,110,99,101,8,0,12,46,115,101,105,99,45,99,111,111,107,105,101,8,0,25,46,115,101,108,101,99,116,111,114,67,111,111,107,105,101,76,97,119,77,101,115,115,97,103,101,8,0,20,46,115,101,108,102,45,99,111,110,116,97,105,110,45,99,111,111,107,105,101,8,0,18,46,115,101,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,28,46,115,101,110,116,101,110,99,101,45,45,99,111,111,107,105,101,45,45,99,111,110,116,97,105,110,101,114,8,0,22,46,115,101,111,112,114,101,115,115,45,117,115,101,114,45,99,111,110,115,101,110,116,8,0,31,46,115,101,111,112,114,101,115,115,45,117,115,101,114,45,99,111,110,115,101,110,116,45,98,97,99,107,100,114,111,112,8,0,17,46,115,101,116,114,97,112,112,101,108,99,111,111,107,105,101,115,8,0,12,46,115,101,116,115,45,99,111,111,107,105,101,8,0,11,46,115,102,45,99,111,110,115,101,110,116,8,0,17,46,115,102,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,115,102,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,24,46,115,102,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,117,116,101,114,8,0,20,46,115,102,45,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,8,0,18,46,115,102,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,21,46,115,102,95,119,105,100,103,101,116,95,112,101,114,109,105,115,115,105,111,110,8,0,21,46,115,102,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,18,46,115,103,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,20,46,115,103,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,17,46,115,103,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,17,46,115,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,23,46,115,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,13,46,115,103,45,99,119,45,99,111,111,107,105,101,8,0,13,46,115,103,99,99,45,99,111,111,107,105,101,115,8,0,10,46,115,103,100,112,114,45,98,111,120,8,0,20,46,115,103,115,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,8,0,11,46,115,103,115,67,111,111,107,105,101,115,8,0,10,46,115,104,45,99,111,111,107,105,101,8,0,16,46,115,104,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,17,46,115,104,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,23,46,115,104,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,8,0,17,46,115,104,45,99,111,111,107,105,101,45,100,105,97,108,111,103,8,0,17,46,115,104,45,99,111,111,107,105,101,115,45,116,114,97,99,107,8,0,22,46,115,104,45,115,104,111,119,45,99,111,111,107,105,101,115,45,116,114,97,99,107,8,0,14,46,115,104,97,100,111,119,45,99,111,111,107,105,101,8,0,21,46,115,104,97,100,111,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,20,46,115,104,97,100,111,119,45,99,111,111,107,105,101,66,97,110,110,101,114,8,0,27,46,115,104,97,114,101,97,104,111,108,105,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,115,104,97,114,101,100,45,97,108,101,114,116,95,95,99,111,111,107,105,101,8,0,26,46,115,104,97,114,101,100,45,99,111,109,112,111,110,101,110,116,115,45,99,111,111,107,105,101,115,8,0,22,46,115,104,97,114,101,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,15,46,115,104,97,114,101,100,45,99,111,111,107,105,101,115,8,0,22,46,115,104,97,114,101,100,95,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,13,46,115,104,97,114,107,45,99,111,111,107,105,101,8,0,23,46,115,104,98,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,111,120,8,0,21,46,115,104,105,102,116,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,21,46,115,104,111,112,117,105,45,101,117,45,99,111,111,107,105,101,45,98,97,114,8,0,20,46,115,104,111,119,45,98,97,110,110,101,114,45,99,111,111,107,105,101,115,8,0,20,46,115,104,111,119,45,99,111,110,99,111,114,100,45,98,97,110,110,101,114,8,0,22,46,115,104,111,119,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,21,46,115,104,111,119,45,99,111,111,107,105,101,45,110,111,116,105,102,121,101,114,8,0,38,46,115,104,111,119,45,99,111,111,107,105,101,45,112,111,112,117,112,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,15,46,115,104,111,119,45,101,117,45,99,111,111,107,105,101,8,0,20,46,115,104,111,119,45,103,100,112,114,58,110,111,116,40,98,111,100,121,41,8,0,19,46,115,104,111,119,45,110,111,116,105,99,101,45,99,111,111,107,105,101,8,0,20,46,115,104,111,119,46,117,100,99,45,98,97,114,45,104,111,108,100,101,114,8,0,13,46,115,104,111,119,46,117,100,99,45,111,118,114,8,0,9,46,115,104,111,119,71,68,80,82,8,0,18,46,115,104,111,119,80,114,105,118,97,99,121,67,111,111,107,105,101,8,0,29,46,115,104,111,119,91,99,108,97,115,115,42,61,34,99,111,111,107,105,101,45,110,111,116,105,99,101,34,93,8,0,32,46,115,104,111,119,95,99,111,111,107,105,101,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,13,46,115,104,111,119,95,99,111,111,107,105,101,115,8,0,21,46,115,104,111,119,101,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,15,46,115,104,111,119,101,100,46,99,111,111,107,105,101,115,8,0,10,46,115,104,114,109,45,103,100,112,114,8,0,13,46,115,105,98,98,111,45,108,97,121,111,117,116,8,0,29,46,115,105,103,45,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,99,111,110,116,97,105,110,101,114,8,0,16,46,115,105,103,110,97,116,117,45,99,111,110,115,101,110,116,8,0,23,46,115,105,107,111,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,18,46,115,105,109,112,108,101,45,99,111,111,107,105,101,45,98,97,114,8,0,23,46,115,105,109,112,108,101,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,12,46,115,105,115,117,45,99,111,111,107,105,101,8,0,17,46,115,105,116,101,45,71,68,80,82,45,98,97,110,110,101,114,8,0,20,46,115,105,116,101,45,98,101,97,99,111,110,45,99,111,111,107,105,101,115,8,0,18,46,115,105,116,101,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,19,46,115,105,116,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,115,105,116,101,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,20,46,115,105,116,101,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,8,0,23,46,115,105,116,101,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,17,46,115,105,116,101,45,99,111,111,107,105,101,45,105,110,102,111,8,0,18,46,115,105,116,101,45,99,111,111,107,105,101,45,112,97,110,101,108,8,0,18,46,115,105,116,101,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,20,46,115,105,116,101,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,18,46,115,105,116,101,45,99,111,111,107,105,101,66,97,110,110,101,114,8,0,13,46,115,105,116,101,45,99,111,111,107,105,101,115,8,0,20,46,115,105,116,101,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,18,46,115,105,116,101,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,21,46,115,105,116,101,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,26,46,115,105,116,101,45,102,111,111,116,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,25,46,115,105,116,101,45,102,111,111,116,101,114,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,17,46,115,105,116,101,45,103,100,112,114,45,98,97,110,110,101,114,8,0,18,46,115,105,116,101,45,103,100,112,114,45,109,101,115,115,97,103,101,8,0,20,46,115,105,116,101,45,104,101,97,100,101,114,45,99,111,111,107,105,101,115,8,0,42,46,115,105,116,101,45,104,101,97,100,101,114,45,114,101,97,99,116,95,95,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,100,101,115,107,116,111,112,8,0,22,46,115,105,116,101,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,115,8,0,31,46,115,105,116,101,45,109,101,115,115,97,103,101,45,45,102,105,114,115,116,45,112,118,45,99,111,110,115,101,110,116,8,0,20,46,115,105,116,101,45,109,101,115,115,97,103,101,46,99,111,111,107,105,101,8,0,25,46,115,105,116,101,45,109,111,100,117,108,101,45,45,115,105,116,101,45,99,111,111,107,105,101,8,0,16,46,115,105,116,101,45,109,115,103,45,99,111,111,107,105,101,8,0,19,46,115,105,116,101,45,110,101,101,100,115,45,99,111,111,107,105,101,115,8,0,20,46,115,105,116,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,8,0,33,46,115,105,116,101,45,112,111,108,105,99,121,45,99,111,110,115,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,115,105,116,101,45,112,111,112,117,112,46,99,111,110,115,101,110,116,8,0,19,46,115,105,116,101,45,112,114,105,118,97,99,121,112,111,108,105,99,121,8,0,26,46,115,105,116,101,45,117,115,101,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,24,46,115,105,116,101,45,117,115,101,115,45,99,111,111,107,105,101,115,45,98,108,111,99,107,8,0,23,46,115,105,116,101,45,119,105,100,101,45,110,111,116,105,99,101,45,45,103,100,112,114,8,0,11,46,115,105,116,101,67,111,111,107,105,101,8,0,12,46,115,105,116,101,67,111,111,107,105,101,115,8,0,20,46,115,105,116,101,67,111,111,107,105,101,115,45,45,98,111,116,116,111,109,8,0,23,46,115,105,116,101,95,98,108,111,99,107,95,119,114,97,112,95,99,111,111,107,105,101,8,0,23,46,115,105,116,101,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,8,0,28,46,115,105,116,101,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,95,111,112,101,110,8,0,21,46,115,105,116,101,95,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,8,0,18,46,115,105,116,101,95,99,111,111,107,105,101,115,112,108,97,115,104,8,0,19,46,115,105,116,101,95,104,101,97,100,101,114,95,99,111,111,107,105,101,8,0,29,46,115,105,116,101,95,112,114,105,118,97,99,121,99,111,111,107,105,101,115,95,95,99,111,110,116,101,110,116,8,0,41,46,115,105,116,101,112,108,97,110,110,101,114,45,109,111,100,117,108,101,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,99,101,8,0,20,46,115,105,116,101,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,24,46,115,105,116,101,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,102,105,116,8,0,18,46,115,105,116,101,115,109,97,114,116,45,99,111,111,107,105,101,115,8,0,32,46,115,105,116,101,119,105,100,101,45,98,97,110,110,101,114,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,14,46,115,106,115,45,101,117,45,99,111,111,107,105,101,8,0,29,46,115,107,45,99,111,109,112,111,110,101,110,116,45,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,18,46,115,107,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,12,46,115,107,97,45,99,111,111,107,105,101,115,8,0,14,46,115,107,114,45,99,111,111,107,105,101,66,111,120,8,0,28,46,115,107,121,45,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,17,46,115,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,115,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,14,46,115,108,105,99,101,95,67,111,111,107,105,101,115,8,0,15,46,115,108,105,100,101,73,110,46,99,111,111,107,105,101,8,0,17,46,115,108,105,100,101,111,117,116,45,99,111,111,107,105,101,115,8,0,23,46,115,108,105,100,105,110,103,45,99,111,111,107,105,101,115,45,98,111,116,116,111,109,8,0,22,46,115,108,105,100,105,110,103,45,112,114,105,118,97,99,121,45,112,111,112,117,112,8,0,20,46,115,109,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,8,0,18,46,115,109,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,19,46,115,109,97,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,21,46,115,109,97,108,108,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,24,46,115,109,97,108,108,95,103,100,112,114,95,112,111,112,117,112,95,104,111,108,100,101,114,8,0,17,46,115,109,97,114,116,45,101,117,45,99,111,111,107,105,101,115,8,0,35,46,115,109,99,99,95,98,111,116,116,111,109,95,99,111,111,107,105,101,97,99,99,101,112,116,95,99,111,110,116,97,105,110,101,114,8,0,36,46,115,109,105,108,101,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,8,0,17,46,115,109,108,95,99,111,111,107,105,101,112,111,108,105,99,121,8,0,17,46,115,109,111,111,116,104,105,101,45,99,111,110,115,101,110,116,8,0,20,46,115,109,114,116,45,110,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,16,46,115,109,116,45,99,111,111,107,105,101,45,110,111,116,101,8,0,16,46,115,110,97,99,107,98,97,114,45,99,111,111,107,105,101,8,0,26,46,115,110,97,99,107,98,97,114,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,15,46,115,110,99,109,112,45,97,112,112,95,103,100,112,114,8,0,23,46,115,110,101,97,107,121,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,21,46,115,110,105,103,101,108,45,99,109,112,45,102,114,97,109,101,119,111,114,107,8,0,18,46,115,111,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,29,46,115,111,45,103,100,112,114,95,95,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,18,46,115,111,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,23,46,115,111,107,45,99,111,110,115,101,110,116,45,98,111,116,116,111,109,45,98,97,114,8,0,21,46,115,111,108,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,17,46,115,111,108,45,99,111,111,107,105,101,45,99,111,118,101,114,8,0,19,46,115,111,108,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,11,46,115,111,115,45,99,111,111,107,105,101,8,0,14,46,115,111,116,105,99,45,99,111,111,107,105,101,115,8,0,16,46,115,111,117,104,108,97,115,45,99,111,111,107,105,101,115,8,0,11,46,115,111,118,114,110,45,103,100,112,114,8,0,17,46,115,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,115,112,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,23,46,115,112,45,100,115,103,118,111,45,112,111,112,117,112,45,111,118,101,114,108,97,121,8,0,30,46,115,112,45,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,8,0,23,46,115,112,45,109,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,15,46,115,112,67,111,111,107,105,101,78,111,116,105,99,101,8,0,14,46,115,112,95,97,100,95,119,114,97,112,112,101,114,8,0,20,46,115,112,97,99,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,11,46,115,112,100,45,99,111,111,107,105,101,8,0,18,46,115,112,101,99,45,99,111,111,107,105,101,45,111,112,116,105,110,8,0,30,46,115,112,101,99,116,114,117,109,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,19,46,115,112,101,120,45,99,111,111,107,105,101,67,111,110,115,101,110,116,8,0,22,46,115,112,105,99,121,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,23,46,115,112,107,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,8,0,10,46,115,112,107,99,111,111,107,105,101,8,0,13,46,115,112,114,100,45,99,111,110,115,101,110,116,8,0,19,46,115,112,114,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,10,46,115,113,114,99,111,111,107,105,101,8,0,20,46,115,114,97,120,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,42,46,115,114,99,45,99,111,109,112,111,110,101,110,116,115,45,67,111,111,107,105,101,80,111,108,105,99,121,45,95,95,115,116,121,108,101,95,95,114,111,111,116,8,0,18,46,115,114,102,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,17,46,115,115,45,109,111,100,97,108,45,99,111,111,107,105,101,115,8,0,18,46,115,115,102,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,115,116,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,17,46,115,116,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,21,46,115,116,95,110,111,116,105,102,105,99,97,116,105,111,110,95,119,114,97,112,8,0,23,46,115,116,97,109,112,101,110,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,24,46,115,116,97,112,102,111,116,111,45,99,111,111,107,105,101,45,109,101,108,100,105,110,103,8,0,14,46,115,116,97,116,101,45,105,115,45,99,99,112,97,8,0,17,46,115,116,97,116,105,115,116,105,99,115,79,112,116,66,111,120,8,0,15,46,115,116,97,116,117,115,45,99,111,111,107,105,101,115,8,0,13,46,115,116,105,99,107,101,114,45,103,100,112,114,8,0,19,46,115,116,105,99,107,121,45,98,97,114,45,45,99,111,111,107,105,101,8,0,14,46,115,116,105,99,107,121,45,99,111,111,107,105,101,8,0,44,46,115,116,105,99,107,121,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,8,0,21,46,115,116,105,99,107,121,45,99,111,111,107,105,101,45,102,111,111,116,101,114,8,0,26,46,115,116,105,99,107,121,45,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,8,0,22,46,115,116,105,99,107,121,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,23,46,115,116,105,99,107,121,45,99,111,111,107,105,101,108,97,119,98,97,110,110,101,114,8,0,15,46,115,116,105,99,107,121,45,99,111,111,107,105,101,115,8,0,21,46,115,116,105,99,107,121,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,26,46,115,116,105,99,107,121,45,102,111,111,116,101,114,45,99,111,111,107,105,101,45,105,110,102,111,8,0,19,46,115,116,105,99,107,121,67,111,111,107,105,101,80,111,108,105,99,121,8,0,14,46,115,116,105,99,107,121,95,99,111,111,107,105,101,8,0,22,46,115,116,105,99,107,121,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,8,0,13,46,115,116,105,99,107,121,99,111,111,107,105,101,8,0,38,46,115,116,105,99,107,121,102,111,111,116,101,114,45,99,111,111,107,105,101,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,15,46,115,116,108,67,111,111,107,105,101,84,111,97,115,116,8,0,12,46,115,116,110,45,99,111,111,107,105,101,115,8,0,16,46,115,116,110,95,99,111,111,107,105,101,111,112,116,105,110,8,0,13,46,115,116,111,114,109,45,99,111,111,107,105,101,8,0,32,46,115,116,111,114,109,100,105,103,105,116,97,108,45,99,111,111,107,105,101,87,97,108,108,45,111,118,101,114,108,97,121,8,0,20,46,115,116,114,105,112,101,45,99,108,97,105,109,45,99,111,111,107,105,101,8,0,15,46,115,116,114,105,112,101,95,99,111,111,107,105,101,115,8,0,17,46,115,116,114,105,115,99,105,97,45,99,111,111,107,105,101,115,8,0,11,46,115,116,116,45,99,111,111,107,105,101,8,0,20,46,115,116,117,112,105,100,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,24,46,115,116,121,95,99,111,111,107,105,101,95,109,111,110,115,116,101,114,95,99,111,110,116,8,0,13,46,115,116,121,108,101,67,111,111,107,105,101,115,8,0,13,46,115,117,45,99,111,111,107,105,101,98,97,114,8,0,21,46,115,117,98,45,102,111,111,116,101,114,32,62,32,46,99,111,111,107,105,101,8,0,17,46,115,117,98,115,99,114,105,98,101,45,99,111,111,107,105,101,8,0,28,46,115,117,99,104,101,110,45,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,116,111,97,115,116,8,0,20,46,115,117,103,45,110,111,116,105,99,101,45,45,112,114,105,118,97,99,121,8,0,14,46,115,117,105,45,67,109,112,66,97,110,110,101,114,8,0,17,46,115,117,105,45,67,111,111,107,105,101,66,97,110,110,101,114,8,0,19,46,115,117,105,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,14,46,115,117,108,99,111,45,99,111,111,107,105,101,115,8,0,22,46,115,117,110,100,97,121,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,23,46,115,117,112,101,114,112,119,97,45,115,116,105,99,107,121,45,98,97,110,110,101,114,8,0,22,46,115,117,112,112,111,114,116,45,98,111,111,116,111,109,45,99,111,111,107,105,101,8,0,21,46,115,117,114,115,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,12,46,115,117,116,105,119,97,114,110,105,110,103,8,0,16,46,115,118,45,67,111,111,107,105,101,87,105,110,100,111,119,8,0,25,46,115,118,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,23,46,115,118,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,17,46,115,118,45,99,111,111,107,105,101,67,111,110,115,101,110,116,8,0,29,46,115,118,45,115,101,45,115,111,108,101,105,108,105,116,45,67,111,111,107,105,101,77,101,115,115,97,103,101,8,0,23,46,115,118,45,116,101,120,116,45,112,111,114,116,108,101,116,46,99,111,111,107,105,101,8,0,20,46,115,119,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,25,46,115,119,45,99,111,111,107,105,101,66,97,110,110,101,114,95,95,111,118,101,114,108,97,121,8,0,18,46,115,119,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,20,46,115,119,49,57,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,9,46,115,119,67,111,111,107,105,101,8,0,22,46,115,119,67,111,111,107,105,101,66,97,110,110,101,114,87,97,114,112,112,101,114,8,0,19,46,115,119,103,45,111,118,101,114,108,97,121,45,99,111,111,107,105,101,8,0,33,46,115,119,105,99,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,99,111,110,116,97,105,110,101,114,8,0,21,46,115,119,105,102,116,76,101,103,97,108,67,111,109,112,108,105,97,110,99,101,8,0,13,46,115,119,110,122,97,95,98,97,110,110,101,114,8,0,24,46,115,119,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,18,46,115,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,17,46,115,120,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,11,46,115,120,45,99,111,111,107,105,101,115,8,0,9,46,115,120,99,111,111,107,105,101,8,0,19,46,115,121,109,97,110,116,101,99,45,99,112,45,98,97,110,110,101,114,8,0,23,46,115,121,109,112,111,115,105,97,45,99,111,111,107,105,101,45,97,99,99,101,112,116,8,0,20,46,115,121,110,111,95,99,111,111,107,105,101,95,101,108,101,109,101,110,116,8,0,15,46,115,121,115,95,99,99,45,99,111,111,107,105,101,115,8,0,31,46,115,121,115,95,104,101,97,100,101,114,95,116,111,111,108,98,97,114,95,99,111,111,107,105,101,95,116,101,120,116,8,0,21,46,115,121,115,116,101,109,45,110,111,116,105,99,101,46,99,111,111,107,105,101,8,0,17,46,115,122,45,109,101,116,97,95,95,99,111,111,107,105,101,115,8,0,12,46,115,122,99,95,119,105,100,101,98,111,120,8,0,9,46,116,45,99,111,111,107,105,101,8,0,28,46,116,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,17,46,116,51,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,6,46,116,67,111,111,107,8,0,18,46,116,67,111,111,107,105,101,115,73,110,102,111,98,108,111,99,107,8,0,12,46,116,97,98,45,99,111,111,107,105,101,115,8,0,14,46,116,97,98,50,45,114,111,100,111,45,98,97,114,8,0,9,46,116,97,110,99,109,98,110,114,8,0,16,46,116,97,111,45,99,111,111,107,105,101,45,104,105,110,116,8,0,15,46,116,97,114,95,99,111,111,107,105,101,115,66,97,114,8,0,28,46,116,97,114,116,101,97,117,99,105,116,114,111,110,65,108,101,114,116,66,105,103,66,111,116,116,111,109,8,0,27,46,116,97,114,116,101,97,117,99,105,116,114,111,110,66,101,102,111,114,101,86,105,115,105,98,108,101,8,0,35,46,116,97,120,99,111,100,101,97,110,100,112,114,105,118,97,99,121,45,99,111,111,107,105,101,110,111,116,105,99,101,45,98,97,114,8,0,9,46,116,98,99,111,111,107,105,101,8,0,17,46,116,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,21,46,116,99,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,18,46,116,99,45,99,111,111,107,105,101,115,45,97,108,101,114,116,97,8,0,18,46,116,99,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,19,46,116,99,45,112,114,105,118,97,99,121,45,111,118,101,114,108,97,121,8,0,23,46,116,99,67,111,111,107,105,101,115,68,105,97,108,111,103,87,114,97,112,112,101,114,8,0,24,46,116,99,117,45,99,111,111,107,105,101,115,45,100,112,103,114,45,98,97,110,110,101,114,8,0,8,46,116,100,45,103,100,112,114,8,0,23,46,116,100,45,103,100,112,114,95,95,99,111,111,107,105,101,109,101,115,115,97,103,101,8,0,22,46,116,100,95,95,110,97,118,95,95,99,111,111,107,105,101,78,111,116,105,99,101,8,0,19,46,116,100,95,114,113,95,109,111,100,97,108,45,99,111,111,107,105,101,8,0,22,46,116,101,97,108,105,117,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,24,46,116,101,109,112,108,97,116,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,25,46,116,101,109,112,108,97,116,101,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,115,8,0,21,46,116,101,110,99,45,104,101,97,100,101,114,95,95,99,111,111,107,105,101,115,8,0,15,46,116,101,110,100,105,110,97,45,99,111,111,107,105,101,8,0,9,46,116,101,114,109,76,71,80,68,8,0,15,46,116,101,114,109,108,121,45,99,111,110,115,101,110,116,8,0,18,46,116,101,114,109,111,45,97,99,101,105,116,101,45,108,103,112,100,8,0,12,46,116,101,114,109,111,67,111,111,107,105,101,8,0,16,46,116,101,114,109,111,115,45,112,111,108,105,116,105,99,97,8,0,26,46,116,101,114,109,111,115,95,99,111,111,107,105,101,95,112,114,105,118,97,99,105,100,97,100,101,8,0,29,46,116,101,114,109,115,45,99,111,110,100,105,116,105,111,110,115,45,98,111,116,116,111,109,45,108,105,110,101,8,0,14,46,116,101,114,109,115,45,99,111,111,107,105,101,115,8,0,40,46,116,101,114,109,115,102,101,101,100,45,99,111,109,45,45,45,110,98,45,105,110,116,101,114,115,116,105,116,105,97,108,45,111,118,101,114,108,97,121,8,0,22,46,116,101,114,109,115,102,101,101,100,45,99,111,109,45,45,45,114,101,115,101,116,8,0,13,46,116,101,115,99,111,45,99,111,111,107,105,101,8,0,25,46,116,101,115,116,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,116,101,120,116,45,99,101,110,116,101,114,46,99,111,111,107,105,101,8,0,27,46,116,101,120,116,45,99,101,110,116,101,114,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,12,46,116,101,120,116,45,99,111,111,107,105,101,8,0,26,46,116,101,120,116,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,18,46,116,101,120,116,101,65,108,101,114,116,101,67,111,111,107,105,101,8,0,14,46,116,101,120,116,111,95,99,111,111,107,105,101,115,8,0,21,46,116,102,45,99,111,111,107,105,101,80,111,108,105,99,121,77,111,100,97,108,8,0,15,46,116,102,116,108,45,48,56,45,99,111,111,107,105,101,8,0,15,46,116,103,45,105,110,102,111,45,99,111,111,107,105,101,8,0,26,46,116,103,100,112,114,99,45,99,111,111,107,105,101,45,98,97,114,45,100,105,115,112,108,97,121,8,0,17,46,116,104,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,116,104,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,15,46,116,104,98,45,99,111,111,107,105,101,45,98,97,114,8,0,17,46,116,104,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,18,46,116,104,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,14,46,116,104,101,45,99,111,111,107,105,101,106,97,114,8,0,9,46,116,104,101,45,103,100,112,114,8,0,10,46,116,104,101,67,111,111,107,105,101,8,0,25,46,116,104,101,70,114,105,101,110,100,108,121,67,111,111,107,105,101,77,111,110,115,116,101,114,8,0,10,46,116,104,101,101,99,108,98,111,120,8,0,23,46,116,104,105,115,95,115,105,116,101,95,117,115,101,115,95,99,111,111,107,105,101,115,8,0,31,46,116,104,111,109,97,110,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,8,0,11,46,116,104,115,99,111,111,107,105,101,115,8,0,31,46,116,105,98,114,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,14,46,116,105,99,107,101,114,95,99,111,111,107,105,101,8,0,14,46,116,105,101,116,111,115,117,111,106,97,98,111,120,8,0,13,46,116,107,45,70,111,111,116,101,114,45,99,99,8,0,20,46,116,107,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,24,46,116,107,110,45,99,111,111,107,105,101,45,97,99,99,101,112,116,95,95,97,114,101,97,8,0,17,46,116,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,20,46,116,109,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,22,46,116,109,45,99,111,111,107,105,101,45,100,105,97,108,111,103,45,114,111,111,116,8,0,11,46,116,109,45,99,111,111,107,105,101,115,8,0,19,46,116,109,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,8,0,12,46,116,109,67,111,111,107,105,101,66,111,120,8,0,18,46,116,109,98,45,99,111,111,107,105,101,45,99,104,111,105,99,101,8,0,15,46,116,109,99,111,111,107,105,101,110,111,116,105,99,101,8,0,19,46,116,109,111,45,99,111,111,107,105,101,45,109,101,108,100,105,110,103,8,0,19,46,116,110,45,99,111,111,107,105,101,73,110,102,111,45,97,114,101,97,8,0,18,46,116,110,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,116,110,102,45,99,111,111,107,105,101,8,0,18,46,116,110,119,95,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,20,46,116,110,122,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,8,0,15,46,116,111,97,115,116,45,45,99,111,111,107,105,101,115,8,0,23,46,116,111,97,115,116,45,45,109,111,100,45,99,111,111,107,105,101,45,100,101,115,99,8,0,20,46,116,111,97,115,116,45,98,108,111,99,107,45,99,111,111,107,105,101,115,8,0,13,46,116,111,97,115,116,45,99,111,111,107,105,101,8,0,20,46,116,111,97,115,116,45,99,111,111,107,105,101,45,97,99,116,105,118,101,8,0,23,46,116,111,97,115,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,14,46,116,111,97,115,116,45,99,111,111,107,105,101,115,8,0,20,46,116,111,97,115,116,45,112,114,105,109,97,114,121,46,116,111,97,115,116,8,0,21,46,116,111,97,115,116,45,116,121,112,101,45,110,101,119,67,111,111,107,105,101,8,0,18,46,116,111,97,115,116,67,111,111,107,105,101,80,111,108,105,99,121,8,0,40,46,116,111,97,115,116,91,100,97,116,97,45,100,105,115,109,105,115,115,97,98,108,101,45,105,100,61,34,99,111,111,107,105,101,105,110,102,111,34,93,8,0,23,46,116,111,97,115,116,101,114,45,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,12,46,116,111,102,45,99,111,111,107,105,101,115,8,0,16,46,116,111,111,108,98,97,114,45,99,111,111,107,105,101,115,8,0,26,46,116,111,112,45,97,108,101,114,116,45,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,11,46,116,111,112,45,99,111,111,107,105,101,8,0,18,46,116,111,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,116,111,112,45,99,111,111,107,105,101,45,105,110,102,111,8,0,24,46,116,111,112,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,116,111,112,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,12,46,116,111,112,45,99,111,111,107,105,101,115,8,0,22,46,116,111,112,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,16,46,116,111,112,45,104,101,97,100,101,114,45,103,100,112,114,8,0,16,46,116,111,112,45,105,110,102,111,45,99,111,111,107,105,101,8,0,17,46,116,111,112,45,105,110,102,111,45,99,111,111,107,105,101,115,8,0,33,46,116,111,112,45,109,101,115,115,97,103,101,91,100,97,116,97,45,118,99,118,45,116,111,112,45,98,97,110,110,101,114,93,8,0,24,46,116,111,112,45,112,111,112,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,8,0,36,46,116,111,112,45,114,111,119,91,100,97,116,97,45,99,111,110,116,97,105,110,101,114,61,34,99,111,111,107,105,101,98,111,120,34,93,8,0,23,46,116,111,112,45,119,114,97,112,112,101,114,45,99,111,111,107,105,101,105,110,102,111,8,0,27,46,116,111,112,67,111,109,112,111,110,101,110,116,95,95,99,111,111,107,105,101,66,97,110,110,101,114,8,0,14,46,116,111,112,67,111,111,107,105,101,115,77,115,103,8,0,17,46,116,111,112,95,98,97,110,110,101,114,45,45,103,100,112,114,8,0,11,46,116,111,112,95,99,111,111,107,105,101,8,0,18,46,116,111,112,95,99,111,111,107,105,101,95,112,97,110,110,101,108,8,0,28,46,116,111,112,95,109,101,115,115,97,103,101,95,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,8,0,11,46,116,111,112,99,111,111,107,105,101,115,8,0,18,46,116,111,112,109,101,115,115,97,103,101,45,99,111,111,107,105,101,8,0,19,46,116,111,112,115,108,105,100,101,105,110,46,99,111,111,107,105,101,115,8,0,23,46,116,111,115,45,66,97,110,110,101,114,45,100,105,115,109,105,115,115,97,98,108,101,8,0,11,46,116,111,115,45,102,111,111,116,101,114,8,0,18,46,116,111,115,45,117,112,100,97,116,101,45,98,97,110,110,101,114,8,0,27,46,116,111,117,99,104,100,101,115,105,103,110,45,99,111,111,107,105,101,45,112,114,105,118,97,99,121,8,0,14,46,116,112,45,99,111,111,107,105,101,45,108,97,119,8,0,10,46,116,112,95,99,111,111,107,105,101,8,0,15,46,116,112,99,97,45,99,111,110,116,97,105,110,101,114,8,0,12,46,116,112,108,45,99,111,111,107,105,101,115,8,0,14,46,116,112,108,45,103,45,99,111,111,107,105,101,115,8,0,17,46,116,112,108,105,115,45,99,108,45,99,111,111,107,105,101,115,8,0,21,46,116,114,45,68,105,115,109,105,115,115,105,98,108,101,66,97,110,110,101,114,8,0,18,46,116,114,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,18,46,116,114,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,25,46,116,114,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,16,46,116,114,97,99,107,105,110,103,45,98,97,110,110,101,114,8,0,24,46,116,114,97,99,107,105,110,103,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,17,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,8,0,24,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,21,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,99,116,97,8,0,24,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,8,0,24,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,110,111,116,105,99,101,8,0,25,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,8,0,23,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,112,111,112,117,112,8,0,19,46,116,114,97,99,107,105,110,103,45,99,111,110,116,101,110,97,110,116,8,0,20,46,116,114,97,99,107,105,110,103,45,100,105,115,99,108,97,105,109,101,114,8,0,38,46,116,114,97,99,107,105,110,103,45,119,105,100,103,101,116,91,100,97,116,97,45,116,114,97,99,107,105,110,103,45,119,105,100,103,101,116,93,8,0,26,46,116,114,97,99,107,105,110,103,67,111,111,107,105,101,115,68,105,115,99,108,97,105,109,101,114,8,0,22,46,116,114,97,99,107,105,110,103,78,111,116,105,99,101,79,118,101,114,108,97,121,8,0,23,46,116,114,97,99,107,105,110,103,95,99,111,111,107,105,101,95,104,101,97,100,101,114,8,0,25,46,116,114,97,99,107,105,110,103,95,99,111,111,107,105,101,95,104,105,100,101,97,98,108,101,8,0,20,46,116,114,100,45,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,8,0,22,46,116,114,101,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,31,46,116,114,105,108,108,105,97,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,21,46,116,114,111,120,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,8,0,17,46,116,114,117,115,116,101,45,115,102,45,98,97,110,110,101,114,8,0,19,46,116,114,117,115,116,101,95,98,111,120,95,111,118,101,114,108,97,121,8,0,39,46,116,114,117,115,116,101,95,99,109,95,111,117,116,101,114,100,105,118,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,35,46,116,114,117,115,116,101,95,111,118,101,114,108,97,121,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,18,46,116,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,17,46,116,115,51,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,15,46,116,115,95,112,114,105,118,97,99,121,95,97,100,118,8,0,31,46,116,115,99,85,105,78,111,116,105,102,105,99,97,116,105,111,110,77,105,100,100,108,101,87,114,97,112,112,101,114,8,0,23,46,116,115,99,99,98,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,18,46,116,115,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,18,46,116,115,100,45,99,111,111,107,105,101,95,95,111,117,116,101,114,8,0,17,46,116,115,108,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,11,46,116,115,112,45,99,111,111,107,105,101,8,0,17,46,116,116,45,98,115,104,45,99,111,111,107,105,101,98,97,114,8,0,19,46,116,116,45,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,8,0,14,46,116,116,45,99,111,111,107,105,101,45,98,97,114,8,0,21,46,116,116,45,99,111,111,107,105,101,45,98,97,114,45,109,111,100,117,108,101,8,0,17,46,116,116,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,16,46,116,116,97,99,106,115,95,95,111,118,101,114,108,97,121,8,0,10,46,116,116,99,111,110,115,101,110,116,8,0,9,46,116,117,105,45,103,100,112,114,8,0,23,46,116,117,116,111,114,105,97,108,95,98,97,110,110,101,114,95,99,111,111,107,105,101,8,0,20,46,116,118,50,45,106,115,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,20,46,116,118,99,109,115,99,111,111,107,105,101,115,45,110,111,116,105,99,101,8,0,10,46,116,119,45,99,111,111,107,105,101,8,0,26,46,116,119,45,117,115,101,114,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,27,46,116,119,105,110,100,105,103,105,116,97,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,116,119,111,100,111,100,105,103,105,116,97,108,45,45,99,111,111,107,105,101,8,0,28,46,116,119,115,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,45,119,114,97,112,112,101,114,8,0,19,46,116,119,116,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,14,46,116,120,45,98,115,100,45,99,111,111,107,105,101,8,0,23,46,116,120,45,99,111,110,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,16,46,116,120,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,15,46,116,120,45,99,111,111,107,105,101,111,112,116,105,110,8,0,14,46,116,120,45,100,109,45,99,111,111,107,105,101,115,8,0,17,46,116,120,45,101,119,105,45,101,121,101,99,111,111,107,105,101,8,0,18,46,116,120,45,103,103,99,111,111,107,105,101,98,97,110,110,101,114,8,0,19,46,116,120,45,105,116,50,52,99,111,111,107,105,101,115,45,112,105,49,8,0,29,46,116,120,45,109,111,100,97,108,99,111,111,107,105,101,98,97,110,110,101,114,45,111,118,101,114,108,97,121,8,0,16,46,116,120,45,112,97,110,100,97,45,99,111,111,107,105,101,8,0,26,46,116,120,45,112,97,115,99,111,101,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,8,0,11,46,116,120,45,112,110,102,99,110,105,108,8,0,15,46,116,120,45,116,97,110,100,110,99,111,111,107,105,101,8,0,27,46,116,120,45,119,104,122,99,111,111,107,105,101,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,40,46,116,120,95,99,111,111,107,105,101,109,111,110,115,116,101,114,95,100,97,116,97,112,114,111,116,101,99,116,105,111,110,95,111,118,101,114,108,97,121,8,0,14,46,116,120,95,102,101,95,99,111,111,107,105,101,115,8,0,19,46,116,120,99,95,99,111,111,107,105,101,95,105,110,102,111,98,111,120,8,0,12,46,116,120,116,99,111,111,99,107,105,101,115,8,0,17,46,116,121,103,104,45,116,111,112,45,99,111,111,107,105,101,115,8,0,15,46,116,121,112,101,45,99,111,111,107,105,101,76,97,119,8,0,22,46,116,121,112,101,45,99,111,111,107,105,101,97,99,99,101,112,116,112,97,103,101,8,0,20,46,116,121,112,105,102,121,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,17,46,117,45,98,97,110,110,101,114,45,99,111,111,107,105,101,115,8,0,9,46,117,45,99,111,111,107,105,101,8,0,16,46,117,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,117,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,8,0,10,46,117,45,108,97,98,45,98,97,114,8,0,17,46,117,45,108,97,98,45,99,111,111,107,105,101,45,108,97,119,8,0,17,46,117,98,45,101,109,98,45,98,97,114,45,102,114,97,109,101,8,0,19,46,117,98,103,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,10,46,117,99,45,99,111,111,107,105,101,8,0,16,46,117,99,45,99,111,111,107,105,101,45,98,108,111,99,107,8,0,11,46,117,99,45,99,111,111,107,105,101,115,8,0,13,46,117,99,103,67,111,111,107,105,101,66,97,114,8,0,21,46,117,99,109,45,98,97,110,110,101,114,45,112,111,115,45,45,112,117,115,104,8,0,10,46,117,99,110,45,98,108,111,99,107,8,0,9,46,117,99,111,111,107,105,101,67,8,0,37,46,117,100,45,99,111,109,112,111,110,101,110,116,45,45,101,117,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,45,97,112,112,8,0,40,46,117,100,45,99,111,109,112,111,110,101,110,116,45,45,102,111,111,116,101,114,45,45,101,117,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,28,46,117,100,103,100,112,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,99,101,8,0,27,46,117,101,45,99,45,115,105,116,101,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,115,8,0,21,46,117,101,108,116,106,101,45,99,111,111,107,105,101,45,97,99,99,101,112,116,8,0,26,46,117,103,51,45,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,15,46,117,103,99,45,99,111,111,107,105,101,45,98,97,114,8,0,29,46,117,105,45,99,111,111,107,105,101,45,98,108,111,99,107,101,100,45,112,97,103,101,45,99,111,118,101,114,8,0,36,46,117,105,45,99,111,111,107,105,101,45,98,108,111,99,107,101,100,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,18,46,117,105,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,17,46,117,105,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,17,46,117,105,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,18,46,117,105,45,99,111,111,107,105,101,45,116,111,111,108,116,105,112,8,0,18,46,117,105,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,11,46,117,105,45,99,111,111,107,105,101,50,8,0,15,46,117,105,45,99,111,111,107,105,101,65,103,114,101,101,8,0,11,46,117,105,45,99,111,111,107,105,101,115,8,0,18,46,117,105,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,26,46,117,105,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,111,118,101,114,108,97,121,8,0,18,46,117,105,45,100,105,97,108,111,103,45,99,111,111,107,105,101,115,8,0,14,46,117,105,46,99,111,111,107,105,101,46,110,97,103,8,0,14,46,117,105,67,111,111,107,105,101,115,72,105,110,116,8,0,17,46,117,105,116,107,45,103,100,112,114,45,98,97,110,110,101,114,8,0,10,46,117,107,45,99,111,111,107,105,101,8,0,17,46,117,107,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,117,107,45,99,111,111,107,105,101,115,8,0,25,46,117,107,45,102,105,114,115,116,45,99,111,108,117,109,110,46,117,107,45,97,108,101,114,116,8,0,30,46,117,107,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,111,116,116,111,109,45,99,101,110,116,101,114,8,0,28,46,117,107,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,111,116,116,111,109,45,108,101,102,116,8,0,23,46,117,107,45,110,111,116,105,102,121,45,109,101,115,115,97,103,101,45,105,110,102,111,8,0,26,46,117,107,45,112,111,115,105,116,105,111,110,45,102,105,120,101,100,46,99,111,111,107,105,101,115,8,0,15,46,117,107,67,111,111,107,105,101,80,111,108,105,99,121,8,0,12,46,117,108,67,111,111,107,105,101,80,111,108,8,0,39,46,117,108,116,105,109,105,122,101,95,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,110,116,97,105,110,101,114,8,0,14,46,117,109,117,67,111,111,107,105,101,77,97,105,110,8,0,17,46,117,110,95,99,111,111,107,105,101,67,111,110,102,105,114,109,8,0,17,46,117,110,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,18,46,117,110,105,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,28,46,117,110,105,110,97,118,45,99,111,111,107,105,101,45,108,97,119,45,99,111,110,116,97,105,110,101,114,8,0,17,46,117,110,105,116,99,111,111,107,105,101,111,110,112,97,103,101,8,0,26,46,117,110,105,118,101,114,115,97,108,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,8,0,11,46,117,110,113,45,99,111,111,107,105,101,8,0,16,46,117,111,45,102,105,114,115,116,45,99,111,111,107,105,101,8,0,15,46,117,112,45,102,111,114,109,45,99,111,111,107,105,101,8,0,15,46,117,112,50,45,99,111,111,107,105,101,45,100,105,118,8,0,19,46,117,112,115,100,95,95,108,103,112,100,95,95,114,101,110,100,101,114,8,0,29,46,117,112,115,101,108,108,45,103,100,112,114,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,19,46,117,113,118,50,45,99,111,110,115,101,110,116,45,112,111,112,117,112,8,0,11,46,117,115,101,45,99,111,111,107,105,101,8,0,17,46,117,115,101,45,99,111,111,107,105,101,45,98,108,111,99,107,8,0,15,46,117,115,101,45,99,111,111,107,105,101,45,98,111,120,8,0,21,46,117,115,101,45,99,111,111,107,105,101,45,99,111,109,112,111,110,101,110,116,8,0,21,46,117,115,101,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,24,46,117,115,101,45,99,111,111,107,105,101,115,45,98,108,111,99,107,45,102,105,120,101,100,8,0,17,46,117,115,101,45,99,111,111,107,105,101,115,95,109,97,105,110,8,0,13,46,117,115,101,67,111,111,107,105,101,66,111,120,8,0,15,46,117,115,101,67,111,111,107,105,101,115,73,110,102,111,8,0,11,46,117,115,101,95,99,111,111,107,105,101,8,0,12,46,117,115,101,95,99,111,111,107,105,101,115,8,0,20,46,117,115,101,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,11,46,117,115,101,99,111,111,107,105,101,115,8,0,17,46,117,115,101,111,102,99,111,111,107,105,101,115,45,116,105,112,8,0,21,46,117,115,101,114,45,97,108,101,114,116,115,95,95,99,111,111,107,105,101,115,8,0,23,46,117,115,101,114,45,99,111,110,115,101,110,116,46,117,105,45,100,105,97,108,111,103,8,0,28,46,117,115,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,101,99,116,105,111,110,8,0,19,46,117,115,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,31,46,117,115,101,114,84,105,112,66,97,110,110,101,114,45,45,97,103,114,101,101,100,95,116,111,95,116,101,114,109,115,8,0,21,46,117,115,101,114,99,111,111,107,105,101,109,97,110,97,103,101,109,101,110,116,8,0,15,46,117,115,101,114,99,111,111,107,105,101,115,104,111,119,8,0,14,46,117,115,101,114,109,115,103,67,111,111,107,105,101,8,0,31,46,117,115,101,114,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,45,117,115,97,103,101,8,0,13,46,117,115,105,110,103,45,99,111,111,107,105,101,8,0,19,46,117,115,105,110,103,45,99,111,111,107,105,101,45,98,108,111,99,107,8,0,11,46,117,115,111,45,99,111,111,107,105,101,8,0,21,46,117,116,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,99,49,8,0,18,46,117,116,119,101,110,116,101,45,99,111,111,107,105,101,98,97,114,8,0,29,46,117,117,53,45,98,114,105,99,107,115,45,99,111,111,107,105,101,45,98,97,114,45,98,111,116,116,111,109,8,0,20,46,117,117,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,18,46,117,119,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,117,120,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,16,46,117,120,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,21,46,118,45,65,95,45,99,111,111,107,105,101,95,95,109,111,110,115,116,101,114,8,0,24,46,118,45,97,112,112,45,80,111,114,116,108,101,116,67,111,111,107,105,101,115,76,97,119,8,0,17,46,118,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,13,46,118,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,118,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,23,46,118,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,21,46,118,45,115,105,116,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,28,46,118,45,119,105,110,100,111,119,45,99,111,111,107,105,101,68,105,97,108,111,103,87,105,110,100,111,119,8,0,21,46,118,50,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,21,46,118,50,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,8,0,10,46,118,97,108,105,100,114,103,112,100,8,0,19,46,118,97,108,117,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,14,46,118,98,99,110,45,98,97,99,107,100,114,111,112,8,0,18,46,118,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,17,46,118,99,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,16,46,118,101,110,116,97,110,97,45,99,111,111,107,105,101,115,8,0,11,46,118,101,114,105,65,108,116,66,97,114,8,0,13,46,118,102,45,67,111,111,107,105,101,66,97,114,8,0,17,46,118,102,45,97,108,101,114,116,45,99,111,111,107,105,101,115,8,0,10,46,118,102,45,98,97,110,110,101,114,8,0,24,46,118,102,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,14,46,118,102,99,99,95,95,111,118,101,114,108,97,121,8,0,29,46,118,103,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,112,111,112,117,112,8,0,10,46,118,103,99,111,111,107,105,101,115,8,0,16,46,118,105,97,99,111,109,99,111,111,107,105,101,98,97,114,8,0,25,46,118,105,97,99,111,109,99,111,111,107,105,101,98,97,114,45,101,120,116,101,110,100,101,100,8,0,17,46,118,105,98,114,97,110,116,45,97,112,112,95,103,100,112,114,8,0,10,46,118,105,101,119,45,103,100,112,114,8,0,12,46,118,105,105,97,45,99,111,111,107,105,101,8,0,35,46,118,105,114,116,117,97,108,103,114,111,117,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,8,0,26,46,118,105,115,105,98,108,101,45,99,111,111,107,105,101,115,58,110,111,116,40,98,111,100,121,41,8,0,16,46,118,105,115,105,98,108,101,46,99,111,111,107,105,101,115,8,0,14,46,118,105,115,105,116,111,114,99,111,111,107,105,101,8,0,14,46,118,105,115,109,111,45,99,111,111,107,105,101,115,8,0,13,46,118,105,116,111,45,45,99,111,111,107,105,101,8,0,23,46,118,107,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,21,46,118,107,95,99,111,111,107,105,101,95,99,111,109,112,108,105,97,110,99,101,8,0,12,46,118,108,98,45,99,111,111,107,105,101,115,8,0,14,46,118,108,99,111,111,107,105,101,115,95,98,111,120,8,0,8,46,118,109,45,103,100,112,114,8,0,20,46,118,109,95,99,111,111,107,105,101,66,97,114,87,114,97,112,112,101,114,8,0,26,46,118,109,97,112,105,45,105,110,102,111,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,19,46,118,109,110,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,17,46,118,110,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,118,110,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,19,46,118,111,99,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,18,46,118,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,24,46,118,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,8,0,13,46,118,116,101,120,45,99,111,111,107,105,101,115,8,0,19,46,118,116,108,45,99,98,45,109,97,105,110,45,119,105,100,103,101,116,8,0,17,46,118,116,109,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,16,46,118,119,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,26,46,118,119,45,104,101,97,100,101,114,45,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,23,46,118,119,95,106,115,95,99,111,111,107,105,101,95,101,117,95,112,111,108,105,99,121,8,0,30,46,118,119,95,115,121,115,116,101,109,95,110,111,116,105,102,105,99,97,116,105,111,110,95,111,112,116,95,105,110,8,0,19,46,118,119,100,52,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,10,46,119,45,45,99,111,111,107,105,101,8,0,13,46,119,45,49,48,48,46,99,111,111,107,105,101,8,0,16,46,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,13,46,119,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,119,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,22,46,119,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,14,46,119,45,105,110,102,111,45,99,111,111,107,105,101,8,0,31,46,119,45,109,111,100,97,108,91,99,108,97,115,115,42,61,34,112,114,105,118,97,99,121,97,108,101,114,116,34,93,8,0,29,46,119,45,110,111,116,105,102,105,99,97,116,105,111,110,115,95,95,110,111,116,121,95,99,111,111,107,105,101,8,0,34,46,119,49,56,108,97,114,97,95,116,103,112,108,117,103,105,110,95,99,111,110,115,101,110,116,95,98,111,100,121,98,97,99,107,8,0,11,46,119,50,116,45,98,97,110,110,101,114,8,0,8,46,119,51,95,99,110,105,108,8,0,21,46,119,97,71,68,80,82,95,99,111,110,115,101,110,116,66,117,116,116,111,110,8,0,28,46,119,97,71,68,80,82,95,109,111,100,97,108,70,114,97,109,101,66,97,99,107,103,114,111,117,110,100,8,0,22,46,119,97,99,111,110,99,111,111,107,105,101,109,97,110,97,103,101,109,101,110,116,8,0,32,46,119,97,99,111,110,99,111,111,107,105,101,109,97,110,97,103,101,109,101,110,116,45,99,111,111,107,105,101,98,97,114,8,0,18,46,119,97,100,45,98,97,110,110,101,114,45,99,111,111,107,105,101,8,0,16,46,119,97,109,105,95,99,111,111,107,105,101,95,100,105,118,8,0,14,46,119,97,110,100,101,114,45,99,111,111,107,105,101,8,0,12,46,119,97,114,110,45,99,111,111,107,105,101,8,0,16,46,119,97,114,110,105,110,103,45,45,112,111,108,105,99,121,8,0,15,46,119,97,114,110,105,110,103,45,99,111,111,107,105,101,8,0,19,46,119,97,114,110,105,110,103,45,99,111,111,107,105,101,45,108,97,119,8,0,16,46,119,97,114,110,105,110,103,45,99,111,111,107,105,101,115,8,0,23,46,119,97,114,110,105,110,103,45,109,101,115,115,97,103,101,46,99,111,111,107,105,101,8,0,15,46,119,97,114,110,105,110,103,45,112,111,108,105,99,121,8,0,21,46,119,97,114,110,105,110,103,45,116,111,112,45,45,99,111,111,107,105,101,115,8,0,15,46,119,97,114,110,105,110,103,46,99,111,111,107,105,101,8,0,14,46,119,97,114,110,105,110,103,67,111,111,107,105,101,8,0,18,46,119,97,114,110,105,110,103,67,111,111,107,105,101,82,103,112,100,8,0,18,46,119,97,114,110,105,110,103,67,111,111,107,105,101,87,114,97,112,8,0,28,46,119,97,114,110,105,110,103,77,101,115,115,97,103,101,80,97,110,101,108,46,99,111,111,107,105,101,115,8,0,21,46,119,97,114,110,105,110,103,95,69,85,95,99,111,111,107,105,101,109,115,103,8,0,21,46,119,97,114,110,105,110,103,95,99,111,111,107,105,101,95,98,108,111,99,107,8,0,28,46,119,97,114,112,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,98,97,114,114,105,101,114,8,0,13,46,119,97,115,97,95,99,111,111,107,105,101,115,8,0,12,46,119,98,85,75,67,111,111,107,105,101,115,8,0,17,46,119,98,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,19,46,119,98,117,95,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,17,46,119,99,45,100,101,102,97,117,108,116,115,45,103,100,112,114,8,0,17,46,119,99,45,103,100,112,114,45,116,101,109,112,108,97,116,101,8,0,23,46,119,99,45,103,100,112,114,45,116,101,109,112,108,97,116,101,45,108,97,114,103,101,8,0,18,46,119,99,95,112,114,105,118,97,99,121,95,110,111,116,105,99,101,8,0,18,46,119,99,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,9,46,119,99,111,111,107,105,101,115,8,0,10,46,119,100,45,99,111,111,107,105,101,8,0,11,46,119,100,45,99,111,111,107,105,101,115,8,0,17,46,119,100,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,35,46,119,100,45,119,105,100,103,101,116,45,106,115,46,119,100,45,100,97,116,97,45,117,115,97,103,101,45,99,111,110,102,105,114,109,8,0,10,46,119,100,95,99,111,111,107,105,101,8,0,17,46,119,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,119,101,45,104,97,118,101,45,99,111,111,107,105,101,115,8,0,14,46,119,101,45,117,115,101,45,99,111,111,107,105,101,8,0,15,46,119,101,45,117,115,101,45,99,111,111,107,105,101,115,8,0,16,46,119,101,45,117,115,105,110,103,45,99,111,111,107,105,101,8,0,9,46,119,101,67,111,111,107,105,101,8,0,12,46,119,101,67,111,111,107,105,101,66,97,114,8,0,13,46,119,101,85,115,101,67,111,111,107,105,101,115,8,0,21,46,119,101,97,108,100,45,103,100,112,114,45,99,111,110,116,97,105,110,101,114,8,0,12,46,119,101,98,45,99,111,111,107,105,101,115,8,0,19,46,119,101,98,45,99,111,111,107,105,101,115,45,105,110,108,105,110,101,8,0,22,46,119,101,98,103,97,116,104,97,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,23,46,119,101,98,115,104,111,112,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,22,46,119,101,98,115,105,116,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,28,46,119,101,98,115,105,116,101,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,119,101,98,115,105,116,101,45,99,111,111,107,105,101,115,8,0,22,46,119,101,99,111,111,107,105,101,112,111,112,45,99,111,110,116,97,105,110,101,114,8,0,11,46,119,101,101,45,99,111,111,107,105,101,8,0,17,46,119,101,108,99,111,109,101,45,45,99,111,111,107,105,101,115,8,0,16,46,119,101,108,99,111,109,101,45,99,111,111,107,105,101,115,8,0,16,46,119,101,108,99,111,109,101,45,112,114,105,118,97,99,121,8,0,13,46,119,101,117,115,101,99,111,111,107,105,101,115,8,0,18,46,119,102,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,10,46,119,103,95,99,111,111,107,105,101,8,0,12,46,119,103,116,45,99,111,111,107,105,101,115,8,0,17,46,119,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,119,105,100,103,101,116,45,45,99,111,111,107,105,101,67,111,110,115,101,110,116,8,0,16,46,119,105,100,103,101,116,45,45,99,111,111,107,105,101,115,8,0,27,46,119,105,100,103,101,116,45,45,101,110,97,98,108,101,45,99,111,111,107,105,101,115,45,98,111,120,8,0,24,46,119,105,100,103,101,116,45,71,100,112,114,67,111,111,107,105,101,66,97,110,110,101,114,8,0,15,46,119,105,100,103,101,116,45,99,111,110,115,101,110,116,8,0,22,46,119,105,100,103,101,116,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,8,0,14,46,119,105,100,103,101,116,45,99,111,111,107,105,101,8,0,21,46,119,105,100,103,101,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,27,46,119,105,100,103,101,116,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,119,105,100,103,101,116,45,99,111,111,107,105,101,79,112,116,73,110,8,0,19,46,119,105,100,103,101,116,45,103,100,112,114,45,98,97,110,110,101,114,8,0,26,46,119,105,100,103,101,116,45,103,100,112,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,44,46,119,105,100,103,101,116,45,116,121,112,101,95,115,121,115,116,101,109,95,119,105,100,103,101,116,95,118,52,95,109,111,100,97,108,95,99,111,111,107,105,101,95,49,8,0,15,46,119,105,100,103,101,116,46,99,111,111,107,105,101,115,8,0,30,46,119,105,100,103,101,116,95,95,99,111,110,116,97,99,116,95,95,105,116,101,109,45,45,99,111,111,107,105,101,8,0,19,46,119,105,100,103,101,116,95,97,108,101,114,116,99,111,111,107,105,101,8,0,34,46,119,105,100,103,101,116,95,99,111,97,108,97,45,119,105,100,103,101,116,45,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,27,46,119,105,100,103,101,116,95,99,111,111,107,105,101,99,111,110,115,101,110,116,119,105,100,103,101,116,8,0,28,46,119,105,100,103,101,116,95,101,117,95,99,111,111,107,105,101,95,108,97,119,95,119,105,100,103,101,116,8,0,12,46,119,105,110,95,99,111,111,107,105,101,115,8,0,18,46,119,107,100,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,11,46,119,107,112,45,99,111,111,107,105,101,8,0,19,46,119,108,45,45,45,99,111,111,107,105,101,87,97,114,110,105,110,103,8,0,10,46,119,108,95,99,111,111,107,105,101,8,0,27,46,119,109,100,107,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,8,0,19,46,119,110,101,116,95,99,111,111,107,105,101,115,112,111,108,105,99,121,8,0,21,46,119,111,108,102,45,99,111,110,115,101,110,116,109,101,110,116,45,98,97,114,8,0,22,46,119,111,108,102,111,114,100,45,97,108,108,111,119,45,99,111,111,107,105,101,115,8,0,25,46,119,111,111,99,111,109,109,101,114,99,101,45,115,116,111,114,101,45,110,111,116,105,99,101,8,0,23,46,119,111,111,100,109,97,114,116,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,22,46,119,111,111,100,121,45,99,111,111,107,105,101,115,45,116,111,111,108,98,111,120,8,0,35,46,119,111,114,100,112,114,101,115,115,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,95,95,119,114,97,112,112,101,114,8,0,43,46,119,111,114,100,112,114,101,115,115,45,103,100,112,114,45,111,112,101,110,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,45,109,111,100,97,108,8,0,21,46,119,111,114,100,112,114,101,115,115,45,103,100,112,114,45,112,111,112,117,112,8,0,48,46,119,111,114,100,112,114,101,115,115,45,103,100,112,114,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,32,46,119,112,45,98,108,111,99,107,45,106,101,116,112,97,99,107,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,17,46,119,112,45,99,111,111,107,105,101,45,112,114,111,109,112,116,8,0,11,46,119,112,45,99,111,111,107,105,101,115,8,0,27,46,119,112,45,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,8,0,14,46,119,112,45,103,100,112,114,45,112,111,112,117,112,8,0,29,46,119,112,45,112,114,105,118,97,99,121,45,112,114,111,109,112,116,45,100,105,97,108,111,103,45,98,111,120,8,0,21,46,119,112,45,112,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,22,46,119,112,45,115,116,97,116,105,115,116,105,99,115,45,111,112,116,45,111,117,116,8,0,41,46,119,112,95,112,114,105,118,97,99,121,95,99,111,111,107,105,101,95,119,97,108,108,45,112,114,111,109,112,116,45,100,105,97,108,111,103,45,98,111,120,8,0,19,46,119,112,99,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,12,46,119,112,99,99,45,98,111,116,116,111,109,8,0,15,46,119,112,99,99,45,99,111,110,116,97,105,110,101,114,8,0,21,46,119,112,99,103,45,98,114,46,119,112,99,103,45,108,97,121,45,111,117,116,8,0,20,46,119,112,99,110,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,14,46,119,112,99,111,111,107,105,101,45,115,101,101,110,8,0,22,46,119,112,99,117,105,45,99,111,111,107,105,101,45,98,97,114,45,98,111,100,121,8,0,25,46,119,112,99,117,105,45,99,111,111,107,105,101,45,98,97,114,45,100,105,115,112,108,97,121,8,0,20,46,119,112,102,114,101,115,104,52,45,99,111,111,107,105,101,45,112,111,112,8,0,20,46,119,112,102,114,101,115,104,53,45,99,111,111,107,105,101,45,112,111,112,8,0,21,46,119,112,103,100,112,114,45,109,111,100,97,108,45,100,105,97,108,111,103,103,8,0,8,46,119,112,103,100,112,114,99,8,0,20,46,119,112,103,100,112,114,99,45,99,111,110,115,101,110,116,45,98,97,114,8,0,22,46,119,112,104,97,99,107,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,24,46,119,112,109,97,115,116,101,114,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,8,0,24,46,119,112,109,97,115,116,101,114,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,15,46,119,112,114,45,99,111,111,107,105,101,98,97,108,107,8,0,17,46,119,112,114,99,98,45,99,111,111,107,105,101,45,98,97,114,8,0,19,46,119,114,97,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,119,114,97,112,45,99,111,111,107,105,101,45,105,110,102,111,8,0,21,46,119,114,97,112,45,99,111,111,107,105,101,45,105,110,102,111,45,101,120,116,8,0,24,46,119,114,97,112,45,99,111,111,107,105,101,45,112,108,97,99,101,104,111,108,100,101,114,8,0,27,46,119,114,97,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,8,0,17,46,119,114,97,112,45,99,111,111,107,105,101,45,115,105,116,101,8,0,13,46,119,114,97,112,45,99,111,111,107,105,101,115,8,0,21,46,119,114,97,112,45,99,111,111,107,105,101,115,45,100,101,115,107,116,111,112,8,0,19,46,119,114,97,112,45,99,111,111,107,105,101,115,45,105,110,102,111,115,8,0,10,46,119,114,97,112,45,103,100,112,114,8,0,12,46,119,114,97,112,95,99,111,111,107,105,101,8,0,19,46,119,114,97,112,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,17,46,119,114,97,112,95,99,111,111,107,105,101,95,115,105,116,101,8,0,13,46,119,114,97,112,95,99,111,111,107,105,101,115,8,0,13,46,119,114,97,112,112,45,99,111,111,107,105,101,8,0,22,46,119,114,97,112,112,101,114,32,62,32,35,111,116,45,115,100,107,45,98,116,110,8,0,17,46,119,114,97,112,112,101,114,45,45,99,111,111,107,105,101,115,8,0,28,46,119,114,97,112,112,101,114,45,45,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,8,0,22,46,119,114,97,112,112,101,114,45,98,97,110,110,101,114,45,99,111,111,107,105,101,8,0,20,46,119,114,97,112,112,101,114,45,98,97,110,110,101,114,45,114,103,112,100,8,0,15,46,119,114,97,112,112,101,114,45,99,111,111,107,105,101,8,0,19,46,119,114,97,112,112,101,114,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,119,114,97,112,112,101,114,45,99,111,111,107,105,101,115,8,0,13,46,119,114,97,112,112,101,114,45,103,100,112,114,8,0,23,46,119,114,97,112,112,101,114,45,110,111,116,105,102,121,45,99,111,111,107,105,101,115,8,0,14,46,119,114,97,112,112,101,114,67,111,111,107,105,101,8,0,15,46,119,114,97,112,112,101,114,67,111,111,107,105,101,115,8,0,15,46,119,114,97,112,112,101,114,95,99,111,111,107,105,101,8,0,16,46,119,114,97,112,112,101,114,95,99,111,111,107,105,101,115,8,0,14,46,119,114,97,112,112,101,114,99,111,111,107,105,101,8,0,18,46,119,114,97,112,115,45,99,111,111,107,105,101,45,105,110,102,111,8,0,18,46,119,115,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,8,0,17,46,119,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,119,115,45,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,8,0,21,46,119,115,45,99,111,111,107,105,101,98,97,114,45,119,114,97,112,112,101,114,8,0,14,46,119,115,97,45,99,111,111,107,105,101,108,97,119,8,0,16,46,119,115,99,45,99,111,111,107,105,101,115,45,98,97,114,8,0,30,46,119,115,105,116,101,45,99,111,111,107,105,101,45,111,112,116,45,111,117,116,45,45,119,114,97,112,112,101,114,8,0,21,46,119,115,114,45,45,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,8,0,17,46,119,116,45,99,111,110,102,105,114,109,45,108,97,121,101,114,8,0,22,46,119,116,45,99,111,111,107,105,101,45,98,111,120,45,119,114,97,112,112,101,114,8,0,18,46,119,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,17,46,119,116,45,110,111,116,105,99,101,45,99,111,111,107,105,101,8,0,19,46,119,116,97,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,15,46,119,117,67,111,111,107,105,101,66,97,110,110,101,114,8,0,22,46,119,117,110,100,101,114,121,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,29,46,119,117,110,100,101,114,121,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,111,116,116,111,109,8,0,14,46,119,119,45,99,111,111,107,105,101,119,97,108,108,8,0,25,46,119,119,100,106,45,99,111,111,107,105,101,45,97,99,99,101,112,116,95,95,97,114,101,97,8,0,13,46,119,119,112,45,103,100,112,114,95,98,97,114,8,0,22,46,119,119,119,115,99,104,117,116,122,95,99,109,112,95,115,104,111,119,105,110,103,8,0,14,46,119,120,45,99,111,111,107,105,101,45,112,112,112,8,0,17,46,119,120,95,99,111,110,115,101,110,116,98,97,110,110,101,114,8,0,16,46,119,122,45,99,99,45,99,111,110,116,97,105,110,101,114,8,0,20,46,120,45,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,8,0,17,46,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,20,46,120,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,14,46,120,45,99,111,111,107,105,101,45,111,112,101,110,8,0,10,46,120,45,99,111,111,107,105,101,115,8,0,16,46,120,45,99,111,111,107,105,101,115,45,109,111,100,97,108,8,0,17,46,120,45,100,97,110,111,110,101,45,99,111,111,107,105,101,115,8,0,32,46,120,45,101,108,91,100,97,116,97,45,97,105,100,42,61,34,67,79,79,75,73,69,95,66,65,78,78,69,82,34,93,8,0,13,46,120,45,108,103,112,100,45,112,111,112,117,112,8,0,8,46,120,99,111,111,107,105,101,8,0,18,46,120,101,110,111,102,105,116,45,99,111,111,107,105,101,98,97,114,8,0,15,46,120,102,45,99,111,111,107,105,101,45,104,105,110,116,8,0,17,46,120,108,50,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,10,46,120,109,95,109,97,116,111,109,111,8,0,24,46,120,111,108,97,45,112,105,105,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,16,46,120,112,114,45,99,111,111,107,105,101,77,111,100,97,108,8,0,38,46,120,115,45,102,105,120,101,100,91,100,97,116,97,45,109,111,100,117,108,101,61,34,99,111,111,107,105,101,95,98,97,110,110,101,114,34,93,8,0,18,46,120,115,52,97,108,108,45,99,111,111,107,105,101,87,97,108,108,8,0,26,46,120,115,52,97,108,108,45,99,111,111,107,105,101,87,97,108,108,45,111,118,101,114,108,97,121,8,0,16,46,120,115,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,20,46,120,120,120,45,99,111,111,107,105,101,115,45,116,111,111,108,116,105,112,8,0,11,46,120,121,45,99,111,110,115,101,110,116,8,0,9,46,120,122,108,103,99,111,111,107,8,0,16,46,121,97,45,97,108,108,111,119,45,99,111,111,107,105,101,8,0,17,46,121,100,45,106,105,103,45,99,111,111,107,105,101,108,97,119,8,0,12,46,121,101,108,108,111,119,46,114,103,112,100,8,0,11,46,121,110,45,99,111,111,107,105,101,115,8,0,17,46,121,115,100,98,45,99,111,111,107,105,101,97,108,101,114,116,8,0,18,46,121,115,111,108,67,111,111,107,105,101,73,110,102,111,66,111,120,8,0,18,46,121,116,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,16,46,122,45,98,97,110,110,101,114,45,99,111,111,107,105,101,8,0,9,46,122,45,99,111,111,107,105,101,8,0,15,46,122,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,16,46,122,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,12,46,122,45,99,111,111,107,105,101,66,97,114,8,0,17,46,122,45,99,111,111,107,105,101,66,97,114,95,116,101,120,116,8,0,20,46,122,45,99,111,111,107,105,101,66,97,114,95,119,114,97,112,112,101,114,8,0,15,46,122,45,99,111,111,107,105,101,112,111,108,105,99,121,8,0,10,46,122,45,99,111,111,107,105,101,115,8,0,27,46,122,45,110,97,118,105,99,97,116,45,104,101,97,100,101,114,45,99,111,111,107,105,101,66,97,114,8,0,27,46,122,49,54,95,99,111,111,107,105,101,115,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,21,46,122,97,108,114,116,45,122,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,20,46,122,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,25,46,122,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,8,0,26,46,122,97,112,112,45,99,111,111,107,105,101,109,101,115,115,97,103,101,45,98,111,116,116,111,109,8,0,26,46,122,101,98,114,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,112,111,112,117,112,8,0,23,46,122,101,110,45,112,114,105,118,97,99,121,112,111,108,105,99,121,112,111,112,117,112,8,0,23,46,122,101,110,97,114,105,111,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,8,0,17,46,122,101,110,99,111,110,115,101,110,116,45,112,111,112,117,112,8,0,16,46,122,103,111,100,97,95,110,97,95,99,111,111,107,105,101,8,0,12,46,122,103,111,100,121,45,112,111,112,117,112,8,0,13,46,122,104,45,99,111,111,107,105,101,66,111,120,8,0,25,46,122,105,103,45,108,105,115,116,115,45,97,116,116,101,110,116,105,101,114,101,103,101,108,115,8,0,21,46,122,105,108,99,104,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,21,46,122,107,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,24,46,122,109,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,11,46,122,110,45,99,111,111,107,105,101,115,8,0,13,46,122,111,110,101,45,99,111,111,107,105,101,115,8,0,17,46,122,112,87,105,110,84,104,101,109,101,67,111,111,107,105,101,8,0,14,46,122,112,99,111,110,115,101,110,116,105,110,102,111,8,0,11,46,122,112,109,45,99,111,111,107,105,101,8,0,13,46,122,121,114,111,45,99,111,111,107,105,101,115,8,0,16,46,102,112,45,99,111,111,107,105,101,45,109,111,100,97,108,8,0,24,46,105,115,45,97,99,116,105,118,101,46,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,24,46,110,97,118,98,97,114,32,62,32,46,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,25,46,106,115,45,110,111,116,105,99,101,46,110,111,116,105,99,101,45,45,99,111,111,107,105,101,8,0,23,46,110,111,116,105,99,101,45,45,99,111,111,107,105,101,65,100,118,97,110,99,101,100,8,0,25,46,99,111,111,107,105,101,95,99,111,111,107,105,101,45,98,97,114,95,95,50,99,51,74,113,8,0,22,46,100,97,114,107,118,99,108,111,98,46,98,99,46,109,105,110,118,99,108,111,98,8,0,16,46,99,97,106,97,78,101,103,114,97,65,108,101,114,116,97,8,0,20,46,109,111,100,97,108,78,117,101,115,116,114,97,67,111,111,107,105,101,115,8,0,13,46,99,99,109,95,115,104,111,119,46,99,99,109,8,0,12,46,97,99,116,105,118,101,46,71,68,80,82,8,0,18,46,97,99,116,105,118,101,46,100,105,115,99,108,97,105,109,101,114,8,0,32,46,116,104,101,109,101,49,46,95,49,111,112,104,57,102,57,46,95,51,104,109,115,106,46,95,49,120,98,55,103,97,109,8,0,33,46,99,111,110,116,97,105,110,101,114,32,62,32,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,8,0,30,46,102,111,111,116,101,114,32,62,32,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,8,0,36,46,115,105,116,101,45,99,111,110,116,101,110,116,32,62,32,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,8,0,45,46,99,117,114,114,101,110,116,46,98,108,111,99,107,101,114,46,98,108,111,99,107,101,114,45,99,111,111,107,105,101,115,46,106,113,117,101,114,121,45,109,111,100,97,108,8,0,34,46,109,112,112,45,99,111,110,116,97,105,110,101,114,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,45,98,97,114,8,0,37,46,109,112,112,45,99,111,110,116,97,105,110,101,114,45,112,111,115,105,116,105,111,110,45,109,105,100,100,108,101,45,99,101,110,116,101,114,8,0,31,46,109,112,112,45,99,111,110,116,97,105,110,101,114,45,112,111,115,105,116,105,111,110,45,116,111,112,45,98,97,114,8,0,24,46,112,105,120,101,108,109,97,116,101,45,98,97,110,110,101,114,45,98,111,116,116,111,109,8,0,33,46,112,105,120,101,108,109,97,116,101,45,103,101,110,101,114,97,108,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,63,46,115,114,99,45,99,111,110,116,97,105,110,101,114,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,115,116,121,108,101,95,95,99,111,111,107,105,101,78,111,116,105,99,101,87,114,97,112,112,101,114,45,45,49,112,81,116,75,8,0,24,46,99,109,112,45,45,118,97,114,45,101,46,99,109,112,95,95,119,114,97,112,112,101,114,8,0,17,46,121,117,105,51,45,119,105,100,103,101,116,45,109,97,115,107,8,0,24,46,121,117,105,51,45,119,105,100,103,101,116,46,99,111,111,107,101,45,112,111,112,117,112,8,0,41,46,97,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,111,116,116,111,109,46,97,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,15,46,95,103,104,120,102,107,104,46,95,51,104,109,115,106,8,0,7,46,103,100,112,114,66,71,8,0,36,46,112,114,105,118,97,99,121,83,101,116,116,105,110,103,115,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,8,0,37,46,109,97,105,110,95,99,111,110,116,97,105,110,101,114,32,62,32,46,99,111,110,115,101,110,116,95,115,105,116,101,95,99,111,118,101,114,8,0,33,46,109,97,105,110,95,99,111,110,116,97,105,110,101,114,32,62,32,46,99,111,110,115,101,110,116,95,119,105,110,100,111,119,8,0,36,46,115,116,105,99,107,121,45,102,111,111,116,101,114,32,62,32,100,105,118,32,62,32,100,105,118,32,62,32,46,99,45,99,101,108,108,8,0,38,46,115,117,105,45,67,109,112,85,105,32,62,32,46,115,117,105,45,77,111,108,101,99,117,108,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,45,46,110,111,116,121,95,99,111,110,116,32,62,32,108,105,32,62,32,46,110,111,116,121,95,97,108,101,114,116,32,62,32,46,110,111,116,121,95,109,101,115,115,97,103,101,8,0,39,46,117,107,45,112,111,115,105,116,105,111,110,45,122,45,105,110,100,101,120,46,117,107,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,8,0,21,46,118,119,53,45,115,116,97,116,105,115,116,105,99,115,79,112,116,66,111,120,8,0,27,46,98,105,115,99,111,116,116,111,32,62,32,46,98,105,115,99,111,116,116,111,45,105,110,110,101,114,8,0,23,46,100,111,99,107,101,100,45,98,111,116,116,111,109,46,105,110,102,111,45,98,97,114,8,0,10,46,103,104,45,98,97,110,110,101,114,8,0,17,46,103,104,45,98,97,110,110,101,114,45,97,99,116,105,118,101,8,0,24,46,115,107,111,100,97,53,45,115,116,97,116,105,115,116,105,99,115,79,112,116,66,111,120,8,0,23,46,97,115,45,111,105,108,45,99,111,110,116,101,110,116,45,111,118,101,114,108,97,121,8,0,10,46,98,115,116,45,112,97,110,101,108,8,0,14,46,99,95,105,95,99,111,110,116,97,105,110,101,114,8,0,22,46,99,109,112,108,122,45,115,111,102,116,45,99,111,111,107,105,101,119,97,108,108,8,0,41,46,101,108,105,115,97,45,110,97,118,105,45,99,111,111,107,105,101,45,97,110,100,45,99,111,110,115,101,110,116,45,100,105,115,99,108,97,105,109,101,114,8,0,10,46,114,99,99,45,112,97,110,101,108,8,0,10,46,114,101,99,111,99,108,105,118,50,8,0,13,46,115,104,111,119,46,99,112,45,119,114,97,112,8,0,23,46,119,114,97,112,32,62,32,46,99,111,110,115,101,110,116,45,119,105,100,103,101,116,8,0,19,46,106,115,45,99,111,110,115,101,110,116,46,99,111,110,115,101,110,116,0,0,128,0,0,0,238,102,0,0,34,144,128,0,11,105,61,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,4,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,12,0,0,0,14,0,0,0,18,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,26,0,0,0,32,0,0,0,32,0,0,0,34,0,0,0,46,0,0,0,46,0,0,0,46,0,0,0,46,0,0,0,48,0,0,0,50,0,0,0,56,0,0,0,62,0,0,0,62,0,0,0,62,0,0,0,64,0,0,0,72,0,0,0,72,0,0,0,74,0,0,0,74,0,0,0,74,0,0,0,76,0,0,0,76,0,0,0,78,0,0,0,78,0,0,0,78,0,0,0,78,0,0,0,78,0,0,0,82,0,0,0,82,0,0,0,82,0,0,0,84,0,0,0,84,0,0,0,86,0,0,0,86,0,0,0,86,0,0,0,86,0,0,0,86,0,0,0,86,0,0,0,86,0,0,0,86,0,0,0,94,0,0,0,94,0,0,0,96,0,0,0,98,0,0,0,100,0,0,0,102,0,0,0,104,0,0,0,104,0,0,0,106,0,0,0,106,0,0,0,106,0,0,0,106,0,0,0,106,0,0,0,110,0,0,0,116,0,0,0,118,0,0,0,122,0,0,0,122,0,0,0,124,0,0,0,126,0,0,0,128,0,0,0,132,0,0,0,132,0,0,0,132,0,0,0,132,0,0,0,132,0,0,0,140,0,0,0,146,0,0,0,146,0,0,0,146,0,0,0,146,0,0,0,156,0,0,0,158,0,0,0,160,0,0,0,160,0,0,0,164,0,0,0,164,0,0,0,166,0,0,0,168,0,0,0,168,0,0,0,168,0,0,0,170,0,0,0,170,0,0,0,172,0,0,0,172,0,0,0,174,0,0,0,174,0,0,0,174,0,0,0,174,0,0,0,178,0,0,0,182,0,0,0,182,0,0,0,186,0,0,0,188,0,0,0,190,0,0,0,192,0,0,0,192,0,0,0,192,0,0,0,194,0,0,0,194,0,0,0,196,0,0,0,196,0,0,0,200,0,0,0,204,0,0,0,206,0,0,0,206,0,0,0,206,0,0,0,210,0,0,0,212,0,0,0,212,0,0,0,212,0,0,0,214,0,0,0,214,0,0,0,224,0,0,0,226,0,0,0,226,0,0,0,236,0,0,0,236,0,0,0,238,0,0,0,246,0,0,0,246,0,0,0,250,0,0,0,250,0,0,0,252,0,0,0,252,0,0,0,20,1,0,0,22,1,0,0,22,1,0,0,28,1,0,0,36,1,0,0,38,1,0,0,38,1,0,0,40,1,0,0,40,1,0,0,40,1,0,0,40,1,0,0,40,1,0,0,40,1,0,0,42,1,0,0,44,1,0,0,46,1,0,0,46,1,0,0,50,1,0,0,50,1,0,0,62,1,0,0,62,1,0,0,64,1,0,0,64,1,0,0,64,1,0,0,64,1,0,0,64,1,0,0,64,1,0,0,66,1,0,0,70,1,0,0,70,1,0,0,70,1,0,0,76,1,0,0,76,1,0,0,76,1,0,0,76,1,0,0,76,1,0,0,78,1,0,0,80,1,0,0,80,1,0,0,80,1,0,0,80,1,0,0,82,1,0,0,82,1,0,0,90,1,0,0,92,1,0,0,94,1,0,0,102,1,0,0,110,1,0,0,110,1,0,0,114,1,0,0,120,1,0,0,120,1,0,0,122,1,0,0,126,1,0,0,126,1,0,0,126,1,0,0,134,1,0,0,134,1,0,0,136,1,0,0,138,1,0,0,140,1,0,0,140,1,0,0,142,1,0,0,144,1,0,0,150,1,0,0,150,1,0,0,152,1,0,0,152,1,0,0,152,1,0,0,152,1,0,0,152,1,0,0,154,1,0,0,154,1,0,0,154,1,0,0,158,1,0,0,158,1,0,0,160,1,0,0,160,1,0,0,160,1,0,0,168,1,0,0,174,1,0,0,174,1,0,0,178,1,0,0,178,1,0,0,180,1,0,0,180,1,0,0,180,1,0,0,180,1,0,0,190,1,0,0,190,1,0,0,190,1,0,0,196,1,0,0,202,1,0,0,204,1,0,0,214,1,0,0,214,1,0,0,218,1,0,0,218,1,0,0,218,1,0,0,218,1,0,0,222,1,0,0,222,1,0,0,226,1,0,0,230,1,0,0,230,1,0,0,230,1,0,0,230,1,0,0,232,1,0,0,232,1,0,0,234,1,0,0,238,1,0,0,246,1,0,0,246,1,0,0,246,1,0,0,246,1,0,0,248,1,0,0,248,1,0,0,248,1,0,0,248,1,0,0,248,1,0,0,248,1,0,0,248,1,0,0,0,2,0,0,2,2,0,0,6,2,0,0,6,2,0,0,8,2,0,0,18,2,0,0,18,2,0,0,18,2,0,0,26,2,0,0,26,2,0,0,30,2,0,0,30,2,0,0,30,2,0,0,30,2,0,0,30,2,0,0,32,2,0,0,32,2,0,0,32,2,0,0,32,2,0,0,32,2,0,0,32,2,0,0,32,2,0,0,36,2,0,0,36,2,0,0,42,2,0,0,44,2,0,0,44,2,0,0,48,2,0,0,50,2,0,0,54,2,0,0,56,2,0,0,56,2,0,0,56,2,0,0,56,2,0,0,64,2,0,0,64,2,0,0,64,2,0,0,66,2,0,0,66,2,0,0,66,2,0,0,66,2,0,0,68,2,0,0,70,2,0,0,70,2,0,0,70,2,0,0,74,2,0,0,74,2,0,0,74,2,0,0,76,2,0,0,76,2,0,0,76,2,0,0,84,2,0,0,84,2,0,0,84,2,0,0,84,2,0,0,84,2,0,0,90,2,0,0,90,2,0,0,90,2,0,0,90,2,0,0,96,2,0,0,100,2,0,0,100,2,0,0,100,2,0,0,100,2,0,0,104,2,0,0,112,2,0,0,112,2,0,0,112,2,0,0,116,2,0,0,116,2,0,0,116,2,0,0,128,2,0,0,128,2,0,0,128,2,0,0,132,2,0,0,136,2,0,0,136,2,0,0,138,2,0,0,140,2,0,0,140,2,0,0,140,2,0,0,140,2,0,0,146,2,0,0,150,2,0,0,152,2,0,0,154,2,0,0,154,2,0,0,154,2,0,0,160,2,0,0,160,2,0,0,164,2,0,0,164,2,0,0,164,2,0,0,172,2,0,0,172,2,0,0,172,2,0,0,172,2,0,0,174,2,0,0,174,2,0,0,174,2,0,0,176,2,0,0,176,2,0,0,176,2,0,0,176,2,0,0,176,2,0,0,176,2,0,0,186,2,0,0,188,2,0,0,192,2,0,0,194,2,0,0,194,2,0,0,194,2,0,0,194,2,0,0,198,2,0,0,204,2,0,0,210,2,0,0,210,2,0,0,210,2,0,0,210,2,0,0,210,2,0,0,210,2,0,0,210,2,0,0,210,2,0,0,212,2,0,0,212,2,0,0,214,2,0,0,220,2,0,0,220,2,0,0,226,2,0,0,228,2,0,0,228,2,0,0,234,2,0,0,240,2,0,0,240,2,0,0,240,2,0,0,240,2,0,0,240,2,0,0,242,2,0,0,246,2,0,0,246,2,0,0,250,2,0,0,250,2,0,0,4,3,0,0,12,3,0,0,22,3,0,0,26,3,0,0,28,3,0,0,28,3,0,0,28,3,0,0,32,3,0,0,32,3,0,0,36,3,0,0,36,3,0,0,38,3,0,0,44,3,0,0,50,3,0,0,52,3,0,0,52,3,0,0,54,3,0,0,54,3,0,0,60,3,0,0,62,3,0,0,62,3,0,0,62,3,0,0,64,3,0,0,68,3,0,0,70,3,0,0,70,3,0,0,70,3,0,0,70,3,0,0,72,3,0,0,74,3,0,0,76,3,0,0,82,3,0,0,84,3,0,0,84,3,0,0,100,3,0,0,100,3,0,0,100,3,0,0,106,3,0,0,106,3,0,0,108,3,0,0,108,3,0,0,112,3,0,0,114,3,0,0,114,3,0,0,114,3,0,0,114,3,0,0,116,3,0,0,118,3,0,0,120,3,0,0,120,3,0,0,120,3,0,0,120,3,0,0,120,3,0,0,122,3,0,0,122,3,0,0,122,3,0,0,124,3,0,0,124,3,0,0,124,3,0,0,126,3,0,0,126,3,0,0,126,3,0,0,126,3,0,0,128,3,0,0,140,3,0,0,140,3,0,0,140,3,0,0,144,3,0,0,144,3,0,0,146,3,0,0,154,3,0,0,160,3,0,0,166,3,0,0,166,3,0,0,166,3,0,0,168,3,0,0,168,3,0,0,168,3,0,0,170,3,0,0,170,3,0,0,170,3,0,0,172,3,0,0,172,3,0,0,178,3,0,0,180,3,0,0,184,3,0,0,184,3,0,0,186,3,0,0,186,3,0,0,186,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,194,3,0,0,196,3,0,0,196,3,0,0,200,3,0,0,200,3,0,0,200,3,0,0,200,3,0,0,204,3,0,0,204,3,0,0,204,3,0,0,204,3,0,0,204,3,0,0,204,3,0,0,204,3,0,0,204,3,0,0,204,3,0,0,208,3,0,0,208,3,0,0,208,3,0,0,210,3,0,0,216,3,0,0,218,3,0,0,222,3,0,0,226,3,0,0,230,3,0,0,232,3,0,0,232,3,0,0,234,3,0,0,234,3,0,0,242,3,0,0,248,3,0,0,250,3,0,0,250,3,0,0,250,3,0,0,0,4,0,0,2,4,0,0,2,4,0,0,4,4,0,0,4,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,8,4,0,0,8,4,0,0,14,4,0,0,14,4,0,0,14,4,0,0,14,4,0,0,14,4,0,0,14,4,0,0,14,4,0,0,14,4,0,0,18,4,0,0,20,4,0,0,20,4,0,0,20,4,0,0,20,4,0,0,20,4,0,0,22,4,0,0,22,4,0,0,22,4,0,0,22,4,0,0,26,4,0,0,30,4,0,0,32,4,0,0,34,4,0,0,36,4,0,0,40,4,0,0,42,4,0,0,42,4,0,0,50,4,0,0,50,4,0,0,50,4,0,0,50,4,0,0,50,4,0,0,52,4,0,0,52,4,0,0,56,4,0,0,60,4,0,0,68,4,0,0,68,4,0,0,76,4,0,0,76,4,0,0,76,4,0,0,78,4,0,0,78,4,0,0,86,4,0,0,90,4,0,0,92,4,0,0,94,4,0,0,98,4,0,0,98,4,0,0,100,4,0,0,100,4,0,0,106,4,0,0,106,4,0,0,106,4,0,0,106,4,0,0,112,4,0,0,112,4,0,0,112,4,0,0,112,4,0,0,114,4,0,0,114,4,0,0,114,4,0,0,116,4,0,0,116,4,0,0,120,4,0,0,120,4,0,0,120,4,0,0,120,4,0,0,122,4,0,0,124,4,0,0,126,4,0,0,130,4,0,0,130,4,0,0,130,4,0,0,134,4,0,0,136,4,0,0,136,4,0,0,138,4,0,0,140,4,0,0,140,4,0,0,144,4,0,0,156,4,0,0,156,4,0,0,162,4,0,0,162,4,0,0,162,4,0,0,168,4,0,0,168,4,0,0,168,4,0,0,170,4,0,0,170,4,0,0,170,4,0,0,170,4,0,0,172,4,0,0,172,4,0,0,174,4,0,0,174,4,0,0,176,4,0,0,178,4,0,0,184,4,0,0,184,4,0,0,184,4,0,0,184,4,0,0,184,4,0,0,184,4,0,0,186,4,0,0,190,4,0,0,196,4,0,0,196,4,0,0,210,4,0,0,214,4,0,0,214,4,0,0,220,4,0,0,220,4,0,0,220,4,0,0,224,4,0,0,224,4,0,0,226,4,0,0,228,4,0,0,228,4,0,0,228,4,0,0,230,4,0,0,230,4,0,0,230,4,0,0,230,4,0,0,234,4,0,0,238,4,0,0,238,4,0,0,238,4,0,0,242,4,0,0,246,4,0,0,246,4,0,0,250,4,0,0,252,4,0,0,252,4,0,0,0,5,0,0,0,5,0,0,4,5,0,0,6,5,0,0,12,5,0,0,12,5,0,0,14,5,0,0,14,5,0,0,16,5,0,0,20,5,0,0,20,5,0,0,22,5,0,0,30,5,0,0,36,5,0,0,36,5,0,0,38,5,0,0,38,5,0,0,38,5,0,0,40,5,0,0,50,5,0,0,54,5,0,0,54,5,0,0,56,5,0,0,60,5,0,0,64,5,0,0,64,5,0,0,66,5,0,0,68,5,0,0,68,5,0,0,70,5,0,0,70,5,0,0,70,5,0,0,70,5,0,0,74,5,0,0,74,5,0,0,80,5,0,0,80,5,0,0,86,5,0,0,88,5,0,0,88,5,0,0,94,5,0,0,94,5,0,0,96,5,0,0,98,5,0,0,98,5,0,0,100,5,0,0,106,5,0,0,106,5,0,0,106,5,0,0,110,5,0,0,110,5,0,0,110,5,0,0,110,5,0,0,116,5,0,0,120,5,0,0,120,5,0,0,120,5,0,0,120,5,0,0,120,5,0,0,120,5,0,0,122,5,0,0,122,5,0,0,122,5,0,0,122,5,0,0,126,5,0,0,126,5,0,0,134,5,0,0,142,5,0,0,142,5,0,0,142,5,0,0,142,5,0,0,144,5,0,0,146,5,0,0,146,5,0,0,146,5,0,0,152,5,0,0,154,5,0,0,154,5,0,0,156,5,0,0,158,5,0,0,158,5,0,0,158,5,0,0,162,5,0,0,164,5,0,0,164,5,0,0,164,5,0,0,166,5,0,0,166,5,0,0,166,5,0,0,168,5,0,0,168,5,0,0,168,5,0,0,170,5,0,0,170,5,0,0,182,5,0,0,182,5,0,0,182,5,0,0,192,5,0,0,192,5,0,0,194,5,0,0,196,5,0,0,196,5,0,0,198,5,0,0,198,5,0,0,200,5,0,0,200,5,0,0,200,5,0,0,200,5,0,0,200,5,0,0,200,5,0,0,202,5,0,0,202,5,0,0,206,5,0,0,206,5,0,0,206,5,0,0,206,5,0,0,206,5,0,0,206,5,0,0,212,5,0,0,212,5,0,0,212,5,0,0,212,5,0,0,212,5,0,0,212,5,0,0,212,5,0,0,212,5,0,0,212,5,0,0,218,5,0,0,222,5,0,0,222,5,0,0,222,5,0,0,224,5,0,0,226,5,0,0,226,5,0,0,226,5,0,0,232,5,0,0,232,5,0,0,236,5,0,0,238,5,0,0,238,5,0,0,238,5,0,0,242,5,0,0,250,5,0,0,250,5,0,0,252,5,0,0,252,5,0,0,252,5,0,0,254,5,0,0,0,6,0,0,2,6,0,0,2,6,0,0,2,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,8,6,0,0,8,6,0,0,10,6,0,0,18,6,0,0,22,6,0,0,22,6,0,0,22,6,0,0,22,6,0,0,28,6,0,0,34,6,0,0,34,6,0,0,40,6,0,0,40,6,0,0,42,6,0,0,44,6,0,0,46,6,0,0,46,6,0,0,54,6,0,0,60,6,0,0,62,6,0,0,62,6,0,0,62,6,0,0,62,6,0,0,62,6,0,0,62,6,0,0,70,6,0,0,70,6,0,0,70,6,0,0,74,6,0,0,74,6,0,0,76,6,0,0,78,6,0,0,80,6,0,0,80,6,0,0,80,6,0,0,84,6,0,0,84,6,0,0,86,6,0,0,86,6,0,0,88,6,0,0,88,6,0,0,94,6,0,0,94,6,0,0,94,6,0,0,94,6,0,0,94,6,0,0,100,6,0,0,102,6,0,0,104,6,0,0,104,6,0,0,104,6,0,0,106,6,0,0,106,6,0,0,106,6,0,0,110,6,0,0,112,6,0,0,118,6,0,0,118,6,0,0,118,6,0,0,122,6,0,0,124,6,0,0,128,6,0,0,128,6,0,0,134,6,0,0,134,6,0,0,138,6,0,0,138,6,0,0,140,6,0,0,142,6,0,0,142,6,0,0,142,6,0,0,146,6,0,0,150,6,0,0,150,6,0,0,150,6,0,0,150,6,0,0,150,6,0,0,150,6,0,0,152,6,0,0,152,6,0,0,154,6,0,0,154,6,0,0,156,6,0,0,156,6,0,0,158,6,0,0,162,6,0,0,164,6,0,0,164,6,0,0,166,6,0,0,168,6,0,0,172,6,0,0,172,6,0,0,172,6,0,0,174,6,0,0,174,6,0,0,176,6,0,0,176,6,0,0,176,6,0,0,178,6,0,0,180,6,0,0,182,6,0,0,182,6,0,0,182,6,0,0,184,6,0,0,192,6,0,0,192,6,0,0,192,6,0,0,194,6,0,0,196,6,0,0,196,6,0,0,200,6,0,0,202,6,0,0,204,6,0,0,204,6,0,0,204,6,0,0,204,6,0,0,208,6,0,0,220,6,0,0,220,6,0,0,222,6,0,0,224,6,0,0,226,6,0,0,226,6,0,0,236,6,0,0,236,6,0,0,236,6,0,0,236,6,0,0,236,6,0,0,236,6,0,0,236,6,0,0,236,6,0,0,240,6,0,0,240,6,0,0,240,6,0,0,240,6,0,0,240,6,0,0,248,6,0,0,254,6,0,0,0,7,0,0,10,7,0,0,10,7,0,0,10,7,0,0,12,7,0,0,16,7,0,0,16,7,0,0,16,7,0,0,16,7,0,0,20,7,0,0,20,7,0,0,20,7,0,0,20,7,0,0,20,7,0,0,20,7,0,0,20,7,0,0,22,7,0,0,22,7,0,0,22,7,0,0,26,7,0,0,26,7,0,0,32,7,0,0,36,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,40,7,0,0,44,7,0,0,46,7,0,0,48,7,0,0,48,7,0,0,54,7,0,0,54,7,0,0,54,7,0,0,58,7,0,0,60,7,0,0,62,7,0,0,62,7,0,0,62,7,0,0,62,7,0,0,62,7,0,0,64,7,0,0,66,7,0,0,68,7,0,0,70,7,0,0,74,7,0,0,74,7,0,0,74,7,0,0,76,7,0,0,80,7,0,0,84,7,0,0,86,7,0,0,86,7,0,0,86,7,0,0,86,7,0,0,88,7,0,0,88,7,0,0,92,7,0,0,94,7,0,0,94,7,0,0,94,7,0,0,96,7,0,0,100,7,0,0,106,7,0,0,112,7,0,0,112,7,0,0,114,7,0,0,116,7,0,0,116,7,0,0,116,7,0,0,116,7,0,0,116,7,0,0,116,7,0,0,118,7,0,0,128,7,0,0,128,7,0,0,134,7,0,0,136,7,0,0,136,7,0,0,138,7,0,0,138,7,0,0,138,7,0,0,138,7,0,0,142,7,0,0,142,7,0,0,142,7,0,0,148,7,0,0,150,7,0,0,152,7,0,0,154,7,0,0,154,7,0,0,162,7,0,0,162,7,0,0,162,7,0,0,162,7,0,0,162,7,0,0,162,7,0,0,162,7,0,0,164,7,0,0,178,7,0,0,182,7,0,0,182,7,0,0,182,7,0,0,182,7,0,0,182,7,0,0,182,7,0,0,182,7,0,0,184,7,0,0,184,7,0,0,184,7,0,0,184,7,0,0,186,7,0,0,192,7,0,0,192,7,0,0,196,7,0,0,196,7,0,0,202,7,0,0,208,7,0,0,208,7,0,0,208,7,0,0,214,7,0,0,218,7,0,0,218,7,0,0,218,7,0,0,220,7,0,0,226,7,0,0,230,7,0,0,236,7,0,0,236,7,0,0,236,7,0,0,236,7,0,0,238,7,0,0,238,7,0,0,238,7,0,0,240,7,0,0,242,7,0,0,244,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,248,7,0,0,250,7,0,0,0,8,0,0,4,8,0,0,4,8,0,0,8,8,0,0,8,8,0,0,12,8,0,0,12,8,0,0,12,8,0,0,16,8,0,0,20,8,0,0,20,8,0,0,24,8,0,0,24,8,0,0,24,8,0,0,24,8,0,0,26,8,0,0,26,8,0,0,28,8,0,0,28,8,0,0,32,8,0,0,32,8,0,0,36,8,0,0,36,8,0,0,36,8,0,0,40,8,0,0,50,8,0,0,54,8,0,0,54,8,0,0,58,8,0,0,60,8,0,0,60,8,0,0,64,8,0,0,72,8,0,0,74,8,0,0,78,8,0,0,78,8,0,0,82,8,0,0,82,8,0,0,86,8,0,0,88,8,0,0,94,8,0,0,94,8,0,0,98,8,0,0,98,8,0,0,100,8,0,0,108,8,0,0,110,8,0,0,110,8,0,0,112,8,0,0,114,8,0,0,116,8,0,0,122,8,0,0,126,8,0,0,126,8,0,0,128,8,0,0,130,8,0,0,132,8,0,0,132,8,0,0,132,8,0,0,136,8,0,0,136,8,0,0,136,8,0,0,138,8,0,0,140,8,0,0,140,8,0,0,142,8,0,0,144,8,0,0,144,8,0,0,144,8,0,0,146,8,0,0,146,8,0,0,148,8,0,0,148,8,0,0,150,8,0,0,150,8,0,0,152,8,0,0,154,8,0,0,154,8,0,0,154,8,0,0,154,8,0,0,154,8,0,0,154,8,0,0,156,8,0,0,156,8,0,0,164,8,0,0,164,8,0,0,168,8,0,0,168,8,0,0,168,8,0,0,168,8,0,0,172,8,0,0,172,8,0,0,172,8,0,0,174,8,0,0,174,8,0,0,176,8,0,0,176,8,0,0,182,8,0,0,184,8,0,0,186,8,0,0,186,8,0,0,186,8,0,0,186,8,0,0,196,8,0,0,204,8,0,0,208,8,0,0,208,8,0,0,210,8,0,0,210,8,0,0,210,8,0,0,210,8,0,0,210,8,0,0,214,8,0,0,216,8,0,0,222,8,0,0,228,8,0,0,228,8,0,0,234,8,0,0,236,8,0,0,240,8,0,0,242,8,0,0,242,8,0,0,242,8,0,0,244,8,0,0,244,8,0,0,246,8,0,0,250,8,0,0,250,8,0,0,250,8,0,0,252,8,0,0,252,8,0,0,0,9,0,0,0,9,0,0,6,9,0,0,12,9,0,0,14,9,0,0,14,9,0,0,14,9,0,0,14,9,0,0,16,9,0,0,16,9,0,0,16,9,0,0,16,9,0,0,16,9,0,0,16,9,0,0,18,9,0,0,20,9,0,0,30,9,0,0,30,9,0,0,30,9,0,0,32,9,0,0,32,9,0,0,32,9,0,0,40,9,0,0,40,9,0,0,42,9,0,0,42,9,0,0,42,9,0,0,42,9,0,0,42,9,0,0,48,9,0,0,48,9,0,0,50,9,0,0,54,9,0,0,60,9,0,0,80,9,0,0,80,9,0,0,80,9,0,0,84,9,0,0,84,9,0,0,86,9,0,0,86,9,0,0,86,9,0,0,90,9,0,0,90,9,0,0,90,9,0,0,92,9,0,0,94,9,0,0,94,9,0,0,94,9,0,0,94,9,0,0,94,9,0,0,94,9,0,0,98,9,0,0,100,9,0,0,104,9,0,0,104,9,0,0,110,9,0,0,114,9,0,0,114,9,0,0,116,9,0,0,118,9,0,0,124,9,0,0,124,9,0,0,124,9,0,0,126,9,0,0,128,9,0,0,128,9,0,0,130,9,0,0,130,9,0,0,130,9,0,0,134,9,0,0,134,9,0,0,134,9,0,0,136,9,0,0,136,9,0,0,138,9,0,0,138,9,0,0,138,9,0,0,146,9,0,0,146,9,0,0,150,9,0,0,154,9,0,0,156,9,0,0,158,9,0,0,158,9,0,0,160,9,0,0,162,9,0,0,166,9,0,0,166,9,0,0,166,9,0,0,166,9,0,0,168,9,0,0,170,9,0,0,170,9,0,0,170,9,0,0,172,9,0,0,172,9,0,0,178,9,0,0,184,9,0,0,188,9,0,0,188,9,0,0,190,9,0,0,194,9,0,0,194,9,0,0,202,9,0,0,206,9,0,0,206,9,0,0,208,9,0,0,208,9,0,0,212,9,0,0,212,9,0,0,212,9,0,0,212,9,0,0,212,9,0,0,212,9,0,0,212,9,0,0,214,9,0,0,218,9,0,0,218,9,0,0,218,9,0,0,224,9,0,0,224,9,0,0,224,9,0,0,224,9,0,0,226,9,0,0,226,9,0,0,226,9,0,0,228,9,0,0,228,9,0,0,228,9,0,0,228,9,0,0,230,9,0,0,238,9,0,0,242,9,0,0,244,9,0,0,248,9,0,0,248,9,0,0,252,9,0,0,254,9,0,0,254,9,0,0,254,9,0,0,254,9,0,0,2,10,0,0,2,10,0,0,4,10,0,0,4,10,0,0,6,10,0,0,10,10,0,0,18,10,0,0,20,10,0,0,20,10,0,0,22,10,0,0,22,10,0,0,34,10,0,0,36,10,0,0,38,10,0,0,38,10,0,0,40,10,0,0,40,10,0,0,40,10,0,0,40,10,0,0,42,10,0,0,42,10,0,0,42,10,0,0,42,10,0,0,44,10,0,0,46,10,0,0,48,10,0,0,48,10,0,0,48,10,0,0,48,10,0,0,50,10,0,0,50,10,0,0,58,10,0,0,60,10,0,0,66,10,0,0,68,10,0,0,68,10,0,0,72,10,0,0,72,10,0,0,74,10,0,0,74,10,0,0,74,10,0,0,92,10,0,0,94,10,0,0,96,10,0,0,96,10,0,0,96,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,106,10,0,0,108,10,0,0,110,10,0,0,110,10,0,0,112,10,0,0,114,10,0,0,116,10,0,0,118,10,0,0,118,10,0,0,118,10,0,0,122,10,0,0,124,10,0,0,126,10,0,0,136,10,0,0,144,10,0,0,148,10,0,0,150,10,0,0,160,10,0,0,162,10,0,0,162,10,0,0,162,10,0,0,162,10,0,0,166,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,174,10,0,0,180,10,0,0,180,10,0,0,184,10,0,0,184,10,0,0,186,10,0,0,186,10,0,0,188,10,0,0,188,10,0,0,188,10,0,0,188,10,0,0,188,10,0,0,188,10,0,0,188,10,0,0,188,10,0,0,196,10,0,0,196,10,0,0,196,10,0,0,198,10,0,0,202,10,0,0,202,10,0,0,204,10,0,0,204,10,0,0,206,10,0,0,206,10,0,0,210,10,0,0,212,10,0,0,214,10,0,0,214,10,0,0,214,10,0,0,216,10,0,0,218,10,0,0,220,10,0,0,220,10,0,0,226,10,0,0,230,10,0,0,232,10,0,0,232,10,0,0,232,10,0,0,234,10,0,0,234,10,0,0,234,10,0,0,234,10,0,0,236,10,0,0,236,10,0,0,236,10,0,0,236,10,0,0,236,10,0,0,238,10,0,0,248,10,0,0,250,10,0,0,254,10,0,0,0,11,0,0,0,11,0,0,0,11,0,0,6,11,0,0,6,11,0,0,6,11,0,0,10,11,0,0,22,11,0,0,22,11,0,0,22,11,0,0,26,11,0,0,26,11,0,0,30,11,0,0,30,11,0,0,32,11,0,0,32,11,0,0,34,11,0,0,34,11,0,0,34,11,0,0,34,11,0,0,34,11,0,0,36,11,0,0,36,11,0,0,36,11,0,0,36,11,0,0,40,11,0,0,44,11,0,0,48,11,0,0,50,11,0,0,56,11,0,0,60,11,0,0,66,11,0,0,68,11,0,0,68,11,0,0,68,11,0,0,68,11,0,0,72,11,0,0,72,11,0,0,72,11,0,0,74,11,0,0,74,11,0,0,74,11,0,0,74,11,0,0,74,11,0,0,76,11,0,0,76,11,0,0,76,11,0,0,78,11,0,0,78,11,0,0,78,11,0,0,78,11,0,0,86,11,0,0,86,11,0,0,86,11,0,0,88,11,0,0,94,11,0,0,94,11,0,0,96,11,0,0,96,11,0,0,98,11,0,0,98,11,0,0,98,11,0,0,98,11,0,0,100,11,0,0,100,11,0,0,102,11,0,0,104,11,0,0,104,11,0,0,104,11,0,0,104,11,0,0,104,11,0,0,104,11,0,0,104,11,0,0,108,11,0,0,110,11,0,0,110,11,0,0,116,11,0,0,118,11,0,0,118,11,0,0,118,11,0,0,118,11,0,0,120,11,0,0,120,11,0,0,126,11,0,0,126,11,0,0,126,11,0,0,128,11,0,0,128,11,0,0,128,11,0,0,132,11,0,0,132,11,0,0,138,11,0,0,140,11,0,0,140,11,0,0,140,11,0,0,144,11,0,0,148,11,0,0,148,11,0,0,148,11,0,0,152,11,0,0,158,11,0,0,162,11,0,0,162,11,0,0,164,11,0,0,164,11,0,0,166,11,0,0,166,11,0,0,166,11,0,0,172,11,0,0,172,11,0,0,172,11,0,0,172,11,0,0,172,11,0,0,180,11,0,0,180,11,0,0,180,11,0,0,182,11,0,0,184,11,0,0,184,11,0,0,184,11,0,0,184,11,0,0,186,11,0,0,186,11,0,0,192,11,0,0,192,11,0,0,192,11,0,0,194,11,0,0,194,11,0,0,194,11,0,0,196,11,0,0,198,11,0,0,198,11,0,0,198,11,0,0,204,11,0,0,206,11,0,0,206,11,0,0,208,11,0,0,208,11,0,0,208,11,0,0,210,11,0,0,212,11,0,0,212,11,0,0,212,11,0,0,212,11,0,0,212,11,0,0,214,11,0,0,216,11,0,0,216,11,0,0,218,11,0,0,218,11,0,0,220,11,0,0,220,11,0,0,222,11,0,0,222,11,0,0,230,11,0,0,234,11,0,0,236,11,0,0,236,11,0,0,250,11,0,0,254,11,0,0,254,11,0,0,4,12,0,0,4,12,0,0,4,12,0,0,4,12,0,0,4,12,0,0,6,12,0,0,10,12,0,0,12,12,0,0,20,12,0,0,28,12,0,0,28,12,0,0,36,12,0,0,36,12,0,0,38,12,0,0,40,12,0,0,42,12,0,0,42,12,0,0,42,12,0,0,44,12,0,0,44,12,0,0,44,12,0,0,46,12,0,0,46,12,0,0,50,12,0,0,50,12,0,0,50,12,0,0,50,12,0,0,50,12,0,0,52,12,0,0,56,12,0,0,56,12,0,0,56,12,0,0,56,12,0,0,58,12,0,0,58,12,0,0,60,12,0,0,60,12,0,0,66,12,0,0,66,12,0,0,70,12,0,0,70,12,0,0,70,12,0,0,74,12,0,0,76,12,0,0,76,12,0,0,76,12,0,0,80,12,0,0,80,12,0,0,80,12,0,0,88,12,0,0,90,12,0,0,90,12,0,0,90,12,0,0,96,12,0,0,100,12,0,0,100,12,0,0,102,12,0,0,102,12,0,0,104,12,0,0,106,12,0,0,108,12,0,0,110,12,0,0,110,12,0,0,110,12,0,0,110,12,0,0,114,12,0,0,114,12,0,0,114,12,0,0,120,12,0,0,126,12,0,0,126,12,0,0,126,12,0,0,126,12,0,0,128,12,0,0,140,12,0,0,144,12,0,0,144,12,0,0,144,12,0,0,144,12,0,0,144,12,0,0,144,12,0,0,148,12,0,0,148,12,0,0,148,12,0,0,148,12,0,0,150,12,0,0,154,12,0,0,154,12,0,0,156,12,0,0,156,12,0,0,156,12,0,0,156,12,0,0,158,12,0,0,164,12,0,0,164,12,0,0,166,12,0,0,166,12,0,0,166,12,0,0,176,12,0,0,176,12,0,0,178,12,0,0,178,12,0,0,180,12,0,0,180,12,0,0,180,12,0,0,182,12,0,0,182,12,0,0,182,12,0,0,184,12,0,0,186,12,0,0,186,12,0,0,186,12,0,0,186,12,0,0,190,12,0,0,198,12,0,0,200,12,0,0,206,12,0,0,206,12,0,0,208,12,0,0,210,12,0,0,210,12,0,0,210,12,0,0,212,12,0,0,216,12,0,0,216,12,0,0,220,12,0,0,220,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,232,12,0,0,236,12,0,0,236,12,0,0,240,12,0,0,240,12,0,0,240,12,0,0,242,12,0,0,242,12,0,0,244,12,0,0,246,12,0,0,246,12,0,0,248,12,0,0,252,12,0,0,252,12,0,0,252,12,0,0,252,12,0,0,252,12,0,0,254,12,0,0,254,12,0,0,254,12,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,2,13,0,0,2,13,0,0,4,13,0,0,8,13,0,0,10,13,0,0,10,13,0,0,14,13,0,0,20,13,0,0,24,13,0,0,24,13,0,0,28,13,0,0,28,13,0,0,32,13,0,0,38,13,0,0,38,13,0,0,38,13,0,0,42,13,0,0,42,13,0,0,46,13,0,0,46,13,0,0,46,13,0,0,50,13,0,0,50,13,0,0,56,13,0,0,60,13,0,0,60,13,0,0,60,13,0,0,70,13,0,0,76,13,0,0,80,13,0,0,80,13,0,0,80,13,0,0,82,13,0,0,84,13,0,0,86,13,0,0,88,13,0,0,96,13,0,0,100,13,0,0,100,13,0,0,102,13,0,0,104,13,0,0,108,13,0,0,112,13,0,0,116,13,0,0,122,13,0,0,122,13,0,0,128,13,0,0,128,13,0,0,134,13,0,0,134,13,0,0,142,13,0,0,142,13,0,0,142,13,0,0,142,13,0,0,142,13,0,0,142,13,0,0,142,13,0,0,142,13,0,0,148,13,0,0,150,13,0,0,152,13,0,0,152,13,0,0,156,13,0,0,156,13,0,0,158,13,0,0,160,13,0,0,160,13,0,0,160,13,0,0,160,13,0,0,170,13,0,0,170,13,0,0,170,13,0,0,176,13,0,0,180,13,0,0,182,13,0,0,184,13,0,0,184,13,0,0,186,13,0,0,188,13,0,0,190,13,0,0,190,13,0,0,190,13,0,0,196,13,0,0,198,13,0,0,198,13,0,0,204,13,0,0,206,13,0,0,206,13,0,0,210,13,0,0,218,13,0,0,226,13,0,0,230,13,0,0,230,13,0,0,232,13,0,0,236,13,0,0,236,13,0,0,244,13,0,0,244,13,0,0,244,13,0,0,246,13,0,0,246,13,0,0,248,13,0,0,248,13,0,0,250,13,0,0,250,13,0,0,252,13,0,0,0,14,0,0,10,14,0,0,16,14,0,0,16,14,0,0,16,14,0,0,18,14,0,0,18,14,0,0,18,14,0,0,18,14,0,0,18,14,0,0,28,14,0,0,28,14,0,0,28,14,0,0,30,14,0,0,30,14,0,0,30,14,0,0,32,14,0,0,32,14,0,0,34,14,0,0,34,14,0,0,34,14,0,0,34,14,0,0,40,14,0,0,40,14,0,0,44,14,0,0,44,14,0,0,50,14,0,0,50,14,0,0,52,14,0,0,58,14,0,0,60,14,0,0,62,14,0,0,68,14,0,0,74,14,0,0,74,14,0,0,74,14,0,0,76,14,0,0,78,14,0,0,78,14,0,0,80,14,0,0,82,14,0,0,82,14,0,0,82,14,0,0,82,14,0,0,82,14,0,0,82,14,0,0,82,14,0,0,82,14,0,0,84,14,0,0,86,14,0,0,88,14,0,0,88,14,0,0,88,14,0,0,88,14,0,0,88,14,0,0,90,14,0,0,90,14,0,0,90,14,0,0,92,14,0,0,92,14,0,0,92,14,0,0,102,14,0,0,102,14,0,0,102,14,0,0,102,14,0,0,102,14,0,0,106,14,0,0,106,14,0,0,112,14,0,0,112,14,0,0,114,14,0,0,114,14,0,0,114,14,0,0,114,14,0,0,118,14,0,0,122,14,0,0,122,14,0,0,124,14,0,0,124,14,0,0,126,14,0,0,126,14,0,0,128,14,0,0,130,14,0,0,130,14,0,0,130,14,0,0,132,14,0,0,136,14,0,0,138,14,0,0,144,14,0,0,146,14,0,0,150,14,0,0,150,14,0,0,150,14,0,0,152,14,0,0,152,14,0,0,156,14,0,0,156,14,0,0,156,14,0,0,158,14,0,0,158,14,0,0,162,14,0,0,162,14,0,0,162,14,0,0,162,14,0,0,162,14,0,0,162,14,0,0,162,14,0,0,162,14,0,0,164,14,0,0,172,14,0,0,178,14,0,0,180,14,0,0,182,14,0,0,184,14,0,0,186,14,0,0,186,14,0,0,186,14,0,0,186,14,0,0,190,14,0,0,192,14,0,0,192,14,0,0,192,14,0,0,192,14,0,0,192,14,0,0,192,14,0,0,194,14,0,0,194,14,0,0,194,14,0,0,198,14,0,0,198,14,0,0,202,14,0,0,208,14,0,0,210,14,0,0,214,14,0,0,214,14,0,0,216,14,0,0,216,14,0,0,218,14,0,0,218,14,0,0,218,14,0,0,218,14,0,0,220,14,0,0,220,14,0,0,220,14,0,0,222,14,0,0,224,14,0,0,224,14,0,0,226,14,0,0,228,14,0,0,228,14,0,0,228,14,0,0,230,14,0,0,230,14,0,0,230,14,0,0,232,14,0,0,232,14,0,0,234,14,0,0,234,14,0,0,238,14,0,0,240,14,0,0,240,14,0,0,242,14,0,0,242,14,0,0,244,14,0,0,248,14,0,0,248,14,0,0,252,14,0,0,2,15,0,0,2,15,0,0,2,15,0,0,2,15,0,0,2,15,0,0,4,15,0,0,8,15,0,0,8,15,0,0,8,15,0,0,8,15,0,0,8,15,0,0,10,15,0,0,10,15,0,0,14,15,0,0,16,15,0,0,16,15,0,0,24,15,0,0,28,15,0,0,28,15,0,0,28,15,0,0,28,15,0,0,32,15,0,0,38,15,0,0,44,15,0,0,44,15,0,0,44,15,0,0,48,15,0,0,48,15,0,0,48,15,0,0,48,15,0,0,50,15,0,0,50,15,0,0,50,15,0,0,56,15,0,0,64,15,0,0,64,15,0,0,68,15,0,0,70,15,0,0,72,15,0,0,72,15,0,0,74,15,0,0,74,15,0,0,74,15,0,0,74,15,0,0,74,15,0,0,80,15,0,0,80,15,0,0,80,15,0,0,86,15,0,0,94,15,0,0,94,15,0,0,94,15,0,0,94,15,0,0,96,15,0,0,98,15,0,0,102,15,0,0,106,15,0,0,106,15,0,0,108,15,0,0,110,15,0,0,112,15,0,0,112,15,0,0,122,15,0,0,126,15,0,0,130,15,0,0,130,15,0,0,130,15,0,0,130,15,0,0,134,15,0,0,134,15,0,0,134,15,0,0,136,15,0,0,142,15,0,0,144,15,0,0,144,15,0,0,148,15,0,0,150,15,0,0,150,15,0,0,150,15,0,0,152,15,0,0,158,15,0,0,158,15,0,0,158,15,0,0,158,15,0,0,160,15,0,0,166,15,0,0,170,15,0,0,172,15,0,0,174,15,0,0,178,15,0,0,178,15,0,0,178,15,0,0,178,15,0,0,178,15,0,0,178,15,0,0,180,15,0,0,182,15,0,0,182,15,0,0,184,15,0,0,188,15,0,0,188,15,0,0,188,15,0,0,188,15,0,0,194,15,0,0,194,15,0,0,194,15,0,0,196,15,0,0,202,15,0,0,202,15,0,0,206,15,0,0,206,15,0,0,212,15,0,0,214,15,0,0,214,15,0,0,214,15,0,0,216,15,0,0,226,15,0,0,230,15,0,0,230,15,0,0,230,15,0,0,236,15,0,0,240,15,0,0,240,15,0,0,246,15,0,0,248,15,0,0,248,15,0,0,248,15,0,0,248,15,0,0,248,15,0,0,250,15,0,0,250,15,0,0,254,15,0,0,2,16,0,0,8,16,0,0,8,16,0,0,14,16,0,0,14,16,0,0,16,16,0,0,16,16,0,0,16,16,0,0,16,16,0,0,18,16,0,0,20,16,0,0,20,16,0,0,20,16,0,0,20,16,0,0,24,16,0,0,24,16,0,0,24,16,0,0,24,16,0,0,24,16,0,0,24,16,0,0,24,16,0,0,24,16,0,0,26,16,0,0,28,16,0,0,28,16,0,0,30,16,0,0,30,16,0,0,30,16,0,0,34,16,0,0,34,16,0,0,36,16,0,0,36,16,0,0,40,16,0,0,40,16,0,0,40,16,0,0,44,16,0,0,50,16,0,0,62,16,0,0,62,16,0,0,62,16,0,0,66,16,0,0,66,16,0,0,72,16,0,0,72,16,0,0,72,16,0,0,80,16,0,0,80,16,0,0,82,16,0,0,82,16,0,0,82,16,0,0,82,16,0,0,84,16,0,0,84,16,0,0,88,16,0,0,92,16,0,0,92,16,0,0,94,16,0,0,94,16,0,0,94,16,0,0,96,16,0,0,100,16,0,0,102,16,0,0,102,16,0,0,102,16,0,0,102,16,0,0,114,16,0,0,114,16,0,0,116,16,0,0,120,16,0,0,122,16,0,0,126,16,0,0,130,16,0,0,130,16,0,0,136,16,0,0,138,16,0,0,138,16,0,0,138,16,0,0,138,16,0,0,138,16,0,0,138,16,0,0,140,16,0,0,140,16,0,0,140,16,0,0,140,16,0,0,144,16,0,0,146,16,0,0,148,16,0,0,152,16,0,0,152,16,0,0,152,16,0,0,152,16,0,0,154,16,0,0,154,16,0,0,154,16,0,0,154,16,0,0,164,16,0,0,168,16,0,0,170,16,0,0,172,16,0,0,172,16,0,0,172,16,0,0,180,16,0,0,188,16,0,0,190,16,0,0,194,16,0,0,196,16,0,0,196,16,0,0,196,16,0,0,202,16,0,0,206,16,0,0,206,16,0,0,208,16,0,0,212,16,0,0,212,16,0,0,218,16,0,0,224,16,0,0,228,16,0,0,228,16,0,0,234,16,0,0,244,16,0,0,248,16,0,0,248,16,0,0,248,16,0,0,254,16,0,0,254,16,0,0,4,17,0,0,6,17,0,0,10,17,0,0,12,17,0,0,14,17,0,0,14,17,0,0,16,17,0,0,18,17,0,0,24,17,0,0,24,17,0,0,24,17,0,0,30,17,0,0,32,17,0,0,34,17,0,0,34,17,0,0,36,17,0,0,36,17,0,0,38,17,0,0,38,17,0,0,40,17,0,0,40,17,0,0,40,17,0,0,48,17,0,0,48,17,0,0,48,17,0,0,50,17,0,0,52,17,0,0,56,17,0,0,56,17,0,0,56,17,0,0,64,17,0,0,64,17,0,0,66,17,0,0,72,17,0,0,76,17,0,0,76,17,0,0,84,17,0,0,84,17,0,0,84,17,0,0,84,17,0,0,84,17,0,0,84,17,0,0,86,17,0,0,86,17,0,0,88,17,0,0,90,17,0,0,98,17,0,0,98,17,0,0,104,17,0,0,104,17,0,0,104,17,0,0,104,17,0,0,104,17,0,0,106,17,0,0,106,17,0,0,108,17,0,0,116,17,0,0,122,17,0,0,122,17,0,0,124,17,0,0,126,17,0,0,130,17,0,0,130,17,0,0,134,17,0,0,134,17,0,0,136,17,0,0,142,17,0,0,142,17,0,0,142,17,0,0,150,17,0,0,150,17,0,0,160,17,0,0,162,17,0,0,164,17,0,0,164,17,0,0,164,17,0,0,164,17,0,0,166,17,0,0,166,17,0,0,166,17,0,0,168,17,0,0,170,17,0,0,174,17,0,0,174,17,0,0,176,17,0,0,176,17,0,0,176,17,0,0,176,17,0,0,176,17,0,0,182,17,0,0,182,17,0,0,186,17,0,0,190,17,0,0,192,17,0,0,196,17,0,0,198,17,0,0,200,17,0,0,200,17,0,0,204,17,0,0,206,17,0,0,206,17,0,0,206,17,0,0,206,17,0,0,208,17,0,0,208,17,0,0,208,17,0,0,208,17,0,0,208,17,0,0,208,17,0,0,208,17,0,0,210,17,0,0,210,17,0,0,212,17,0,0,218,17,0,0,226,17,0,0,228,17,0,0,228,17,0,0,242,17,0,0,246,17,0,0,246,17,0,0,246,17,0,0,248,17,0,0,2,18,0,0,4,18,0,0,4,18,0,0,6,18,0,0,6,18,0,0,6,18,0,0,16,18,0,0,16,18,0,0,20,18,0,0,22,18,0,0,26,18,0,0,32,18,0,0,34,18,0,0,44,18,0,0,48,18,0,0,48,18,0,0,54,18,0,0,54,18,0,0,60,18,0,0,62,18,0,0,62,18,0,0,64,18,0,0,68,18,0,0,70,18,0,0,74,18,0,0,78,18,0,0,80,18,0,0,82,18,0,0,82,18,0,0,86,18,0,0,86,18,0,0,102,18,0,0,104,18,0,0,106,18,0,0,110,18,0,0,110,18,0,0,114,18,0,0,114,18,0,0,116,18,0,0,120,18,0,0,120,18,0,0,134,18,0,0,134,18,0,0,134,18,0,0,134,18,0,0,134,18,0,0,140,18,0,0,140,18,0,0,140,18,0,0,140,18,0,0,148,18,0,0,150,18,0,0,160,18,0,0,160,18,0,0,160,18,0,0,160,18,0,0,168,18,0,0,172,18,0,0,172,18,0,0,172,18,0,0,172,18,0,0,172,18,0,0,174,18,0,0,174,18,0,0,176,18,0,0,182,18,0,0,188,18,0,0,190,18,0,0,190,18,0,0,198,18,0,0,198,18,0,0,198,18,0,0,198,18,0,0,198,18,0,0,200,18,0,0,204,18,0,0,204,18,0,0,208,18,0,0,208,18,0,0,212,18,0,0,212,18,0,0,214,18,0,0,214,18,0,0,216,18,0,0,216,18,0,0,216,18,0,0,228,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,236,18,0,0,240,18,0,0,244,18,0,0,254,18,0,0,2,19,0,0,2,19,0,0,2,19,0,0,6,19,0,0,6,19,0,0,8,19,0,0,8,19,0,0,8,19,0,0,10,19,0,0,10,19,0,0,10,19,0,0,10,19,0,0,14,19,0,0,20,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,26,19,0,0,26,19,0,0,34,19,0,0,34,19,0,0,38,19,0,0,38,19,0,0,38,19,0,0,40,19,0,0,46,19,0,0,46,19,0,0,48,19,0,0,52,19,0,0,54,19,0,0,54,19,0,0,54,19,0,0,54,19,0,0,54,19,0,0,62,19,0,0,64,19,0,0,66,19,0,0,66,19,0,0,66,19,0,0,72,19,0,0,72,19,0,0,76,19,0,0,78,19,0,0,80,19,0,0,80,19,0,0,84,19,0,0,86,19,0,0,86,19,0,0,86,19,0,0,90,19,0,0,90,19,0,0,92,19,0,0,96,19,0,0,98,19,0,0,98,19,0,0,98,19,0,0,102,19,0,0,104,19,0,0,106,19,0,0,106,19,0,0,106,19,0,0,106,19,0,0,106,19,0,0,106,19,0,0,106,19,0,0,106,19,0,0,114,19,0,0,116,19,0,0,116,19,0,0,118,19,0,0,118,19,0,0,128,19,0,0,136,19,0,0,136,19,0,0,136,19,0,0,136,19,0,0,138,19,0,0,140,19,0,0,144,19,0,0,144,19,0,0,146,19,0,0,146,19,0,0,146,19,0,0,146,19,0,0,148,19,0,0,148,19,0,0,148,19,0,0,150,19,0,0,152,19,0,0,152,19,0,0,154,19,0,0,156,19,0,0,158,19,0,0,160,19,0,0,160,19,0,0,160,19,0,0,162,19,0,0,164,19,0,0,164,19,0,0,168,19,0,0,168,19,0,0,168,19,0,0,168,19,0,0,170,19,0,0,172,19,0,0,176,19,0,0,178,19,0,0,178,19,0,0,180,19,0,0,190,19,0,0,194,19,0,0,200,19,0,0,200,19,0,0,204,19,0,0,206,19,0,0,206,19,0,0,206,19,0,0,208,19,0,0,210,19,0,0,210,19,0,0,210,19,0,0,210,19,0,0,210,19,0,0,210,19,0,0,210,19,0,0,210,19,0,0,210,19,0,0,214,19,0,0,216,19,0,0,216,19,0,0,216,19,0,0,216,19,0,0,218,19,0,0,222,19,0,0,224,19,0,0,224,19,0,0,226,19,0,0,226,19,0,0,230,19,0,0,230,19,0,0,230,19,0,0,230,19,0,0,234,19,0,0,236,19,0,0,236,19,0,0,236,19,0,0,240,19,0,0,240,19,0,0,240,19,0,0,240,19,0,0,246,19,0,0,254,19,0,0,0,20,0,0,2,20,0,0,2,20,0,0,2,20,0,0,6,20,0,0,6,20,0,0,6,20,0,0,8,20,0,0,12,20,0,0,12,20,0,0,12,20,0,0,12,20,0,0,12,20,0,0,18,20,0,0,30,20,0,0,30,20,0,0,32,20,0,0,44,20,0,0,44,20,0,0,56,20,0,0,64,20,0,0,64,20,0,0,64,20,0,0,64,20,0,0,64,20,0,0,68,20,0,0,70,20,0,0,70,20,0,0,70,20,0,0,70,20,0,0,70,20,0,0,72,20,0,0,74,20,0,0,74,20,0,0,74,20,0,0,76,20,0,0,78,20,0,0,78,20,0,0,82,20,0,0,82,20,0,0,82,20,0,0,84,20,0,0,86,20,0,0,86,20,0,0,86,20,0,0,86,20,0,0,86,20,0,0,86,20,0,0,94,20,0,0,96,20,0,0,96,20,0,0,96,20,0,0,96,20,0,0,96,20,0,0,98,20,0,0,100,20,0,0,102,20,0,0,108,20,0,0,108,20,0,0,110,20,0,0,114,20,0,0,120,20,0,0,122,20,0,0,126,20,0,0,128,20,0,0,128,20,0,0,138,20,0,0,140,20,0,0,140,20,0,0,146,20,0,0,146,20,0,0,146,20,0,0,148,20,0,0,148,20,0,0,148,20,0,0,152,20,0,0,154,20,0,0,156,20,0,0,156,20,0,0,156,20,0,0,156,20,0,0,166,20,0,0,166,20,0,0,170,20,0,0,172,20,0,0,176,20,0,0,176,20,0,0,176,20,0,0,176,20,0,0,178,20,0,0,180,20,0,0,180,20,0,0,180,20,0,0,184,20,0,0,186,20,0,0,186,20,0,0,188,20,0,0,190,20,0,0,192,20,0,0,194,20,0,0,200,20,0,0,200,20,0,0,202,20,0,0,202,20,0,0,202,20,0,0,204,20,0,0,204,20,0,0,206,20,0,0,206,20,0,0,206,20,0,0,208,20,0,0,208,20,0,0,208,20,0,0,208,20,0,0,208,20,0,0,208,20,0,0,212,20,0,0,212,20,0,0,212,20,0,0,212,20,0,0,216,20,0,0,216,20,0,0,216,20,0,0,216,20,0,0,226,20,0,0,238,20,0,0,238,20,0,0,240,20,0,0,240,20,0,0,242,20,0,0,246,20,0,0,0,21,0,0,0,21,0,0,4,21,0,0,4,21,0,0,4,21,0,0,4,21,0,0,4,21,0,0,8,21,0,0,20,21,0,0,20,21,0,0,24,21,0,0,24,21,0,0,24,21,0,0,24,21,0,0,32,21,0,0,34,21,0,0,36,21,0,0,38,21,0,0,38,21,0,0,40,21,0,0,40,21,0,0,48,21,0,0,48,21,0,0,50,21,0,0,50,21,0,0,50,21,0,0,50,21,0,0,52,21,0,0,56,21,0,0,56,21,0,0,58,21,0,0,60,21,0,0,60,21,0,0,60,21,0,0,62,21,0,0,62,21,0,0,62,21,0,0,62,21,0,0,62,21,0,0,66,21,0,0,66,21,0,0,66,21,0,0,66,21,0,0,70,21,0,0,70,21,0,0,70,21,0,0,74,21,0,0,78,21,0,0,80,21,0,0,82,21,0,0,82,21,0,0,82,21,0,0,82,21,0,0,82,21,0,0,86,21,0,0,86,21,0,0,86,21,0,0,86,21,0,0,86,21,0,0,86,21,0,0,88,21,0,0,90,21,0,0,92,21,0,0,92,21,0,0,94,21,0,0,94,21,0,0,94,21,0,0,94,21,0,0,96,21,0,0,98,21,0,0,98,21,0,0,100,21,0,0,100,21,0,0,100,21,0,0,108,21,0,0,110,21,0,0,110,21,0,0,112,21,0,0,112,21,0,0,116,21,0,0,126,21,0,0,126,21,0,0,126,21,0,0,138,21,0,0,144,21,0,0,144,21,0,0,152,21,0,0,154,21,0,0,154,21,0,0,154,21,0,0,154,21,0,0,160,21,0,0,168,21,0,0,176,21,0,0,182,21,0,0,182,21,0,0,184,21,0,0,184,21,0,0,184,21,0,0,184,21,0,0,184,21,0,0,186,21,0,0,190,21,0,0,194,21,0,0,194,21,0,0,196,21,0,0,196,21,0,0,202,21,0,0,202,21,0,0,208,21,0,0,208,21,0,0,208,21,0,0,214,21,0,0,214,21,0,0,214,21,0,0,214,21,0,0,218,21,0,0,218,21,0,0,220,21,0,0,220,21,0,0,226,21,0,0,226,21,0,0,230,21,0,0,232,21,0,0,232,21,0,0,232,21,0,0,232,21,0,0,232,21,0,0,232,21,0,0,232,21,0,0,232,21,0,0,232,21,0,0,238,21,0,0,242,21,0,0,242,21,0,0,250,21,0,0,4,22,0,0,8,22,0,0,8,22,0,0,12,22,0,0,12,22,0,0,16,22,0,0,16,22,0,0,16,22,0,0,16,22,0,0,18,22,0,0,18,22,0,0,22,22,0,0,22,22,0,0,28,22,0,0,28,22,0,0,32,22,0,0,32,22,0,0,32,22,0,0,38,22,0,0,38,22,0,0,42,22,0,0,42,22,0,0,46,22,0,0,50,22,0,0,50,22,0,0,52,22,0,0,52,22,0,0,52,22,0,0,54,22,0,0,58,22,0,0,66,22,0,0,76,22,0,0,76,22,0,0,82,22,0,0,84,22,0,0,84,22,0,0,84,22,0,0,84,22,0,0,86,22,0,0,86,22,0,0,90,22,0,0,90,22,0,0,96,22,0,0,96,22,0,0,98,22,0,0,100,22,0,0,106,22,0,0,108,22,0,0,110,22,0,0,110,22,0,0,110,22,0,0,114,22,0,0,118,22,0,0,118,22,0,0,120,22,0,0,122,22,0,0,122,22,0,0,124,22,0,0,130,22,0,0,130,22,0,0,132,22,0,0,132,22,0,0,132,22,0,0,132,22,0,0,132,22,0,0,132,22,0,0,132,22,0,0,132,22,0,0,132,22,0,0,134,22,0,0,134,22,0,0,136,22,0,0,140,22,0,0,140,22,0,0,142,22,0,0,142,22,0,0,142,22,0,0,144,22,0,0,144,22,0,0,144,22,0,0,152,22,0,0,158,22,0,0,158,22,0,0,158,22,0,0,164,22,0,0,176,22,0,0,178,22,0,0,178,22,0,0,178,22,0,0,182,22,0,0,190,22,0,0,190,22,0,0,190,22,0,0,194,22,0,0,194,22,0,0,200,22,0,0,200,22,0,0,202,22,0,0,208,22,0,0,212,22,0,0,212,22,0,0,216,22,0,0,218,22,0,0,218,22,0,0,218,22,0,0,222,22,0,0,226,22,0,0,228,22,0,0,228,22,0,0,230,22,0,0,230,22,0,0,238,22,0,0,242,22,0,0,242,22,0,0,246,22,0,0,246,22,0,0,248,22,0,0,248,22,0,0,252,22,0,0,4,23,0,0,12,23,0,0,16,23,0,0,16,23,0,0,18,23,0,0,24,23,0,0,24,23,0,0,24,23,0,0,24,23,0,0,26,23,0,0,36,23,0,0,38,23,0,0,46,23,0,0,46,23,0,0,46,23,0,0,46,23,0,0,48,23,0,0,48,23,0,0,48,23,0,0,50,23,0,0,52,23,0,0,54,23,0,0,54,23,0,0,54,23,0,0,54,23,0,0,54,23,0,0,60,23,0,0,70,23,0,0,70,23,0,0,70,23,0,0,72,23,0,0,72,23,0,0,72,23,0,0,74,23,0,0,78,23,0,0,78,23,0,0,80,23,0,0,80,23,0,0,80,23,0,0,80,23,0,0,80,23,0,0,80,23,0,0,80,23,0,0,80,23,0,0,86,23,0,0,86,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,92,23,0,0,92,23,0,0,96,23,0,0,102,23,0,0,102,23,0,0,102,23,0,0,108,23,0,0,108,23,0,0,108,23,0,0,110,23,0,0,114,23,0,0,120,23,0,0,120,23,0,0,122,23,0,0,122,23,0,0,128,23,0,0,128,23,0,0,130,23,0,0,130,23,0,0,130,23,0,0,136,23,0,0,138,23,0,0,138,23,0,0,138,23,0,0,138,23,0,0,138,23,0,0,138,23,0,0,142,23,0,0,152,23,0,0,154,23,0,0,154,23,0,0,156,23,0,0,156,23,0,0,156,23,0,0,156,23,0,0,160,23,0,0,162,23,0,0,162,23,0,0,164,23,0,0,166,23,0,0,168,23,0,0,168,23,0,0,168,23,0,0,172,23,0,0,176,23,0,0,176,23,0,0,176,23,0,0,178,23,0,0,186,23,0,0,186,23,0,0,188,23,0,0,188,23,0,0,188,23,0,0,188,23,0,0,188,23,0,0,198,23,0,0,202,23,0,0,202,23,0,0,212,23,0,0,214,23,0,0,214,23,0,0,218,23,0,0,224,23,0,0,224,23,0,0,230,23,0,0,230,23,0,0,230,23,0,0,232,23,0,0,232,23,0,0,234,23,0,0,234,23,0,0,234,23,0,0,234,23,0,0,234,23,0,0,236,23,0,0,236,23,0,0,240,23,0,0,242,23,0,0,242,23,0,0,242,23,0,0,242,23,0,0,242,23,0,0,242,23,0,0,242,23,0,0,244,23,0,0,248,23,0,0,252,23,0,0,252,23,0,0,0,24,0,0,6,24,0,0,6,24,0,0,10,24,0,0,12,24,0,0,12,24,0,0,12,24,0,0,22,24,0,0,24,24,0,0,28,24,0,0,28,24,0,0,28,24,0,0,28,24,0,0,28,24,0,0,32,24,0,0,32,24,0,0,34,24,0,0,38,24,0,0,38,24,0,0,42,24,0,0,44,24,0,0,46,24,0,0,46,24,0,0,48,24,0,0,54,24,0,0,54,24,0,0,56,24,0,0,56,24,0,0,56,24,0,0,60,24,0,0,60,24,0,0,60,24,0,0,60,24,0,0,60,24,0,0,60,24,0,0,64,24,0,0,68,24,0,0,68,24,0,0,70,24,0,0,70,24,0,0,70,24,0,0,76,24,0,0,78,24,0,0,80,24,0,0,80,24,0,0,84,24,0,0,84,24,0,0,92,24,0,0,92,24,0,0,92,24,0,0,92,24,0,0,92,24,0,0,92,24,0,0,92,24,0,0,96,24,0,0,96,24,0,0,102,24,0,0,102,24,0,0,106,24,0,0,108,24,0,0,108,24,0,0,114,24,0,0,116,24,0,0,116,24,0,0,122,24,0,0,124,24,0,0,124,24,0,0,124,24,0,0,124,24,0,0,126,24,0,0,134,24,0,0,134,24,0,0,134,24,0,0,150,24,0,0,152,24,0,0,160,24,0,0,164,24,0,0,164,24,0,0,164,24,0,0,164,24,0,0,170,24,0,0,172,24,0,0,172,24,0,0,174,24,0,0,176,24,0,0,176,24,0,0,176,24,0,0,176,24,0,0,178,24,0,0,178,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,184,24,0,0,184,24,0,0,184,24,0,0,188,24,0,0,188,24,0,0,188,24,0,0,196,24,0,0,196,24,0,0,198,24,0,0,198,24,0,0,198,24,0,0,198,24,0,0,206,24,0,0,206,24,0,0,210,24,0,0,216,24,0,0,220,24,0,0,228,24,0,0,228,24,0,0,228,24,0,0,230,24,0,0,242,24,0,0,244,24,0,0,244,24,0,0,244,24,0,0,244,24,0,0,246,24,0,0,246,24,0,0,248,24,0,0,248,24,0,0,250,24,0,0,250,24,0,0,252,24,0,0,254,24,0,0,2,25,0,0,2,25,0,0,2,25,0,0,2,25,0,0,2,25,0,0,2,25,0,0,2,25,0,0,2,25,0,0,4,25,0,0,4,25,0,0,4,25,0,0,4,25,0,0,8,25,0,0,8,25,0,0,8,25,0,0,10,25,0,0,10,25,0,0,10,25,0,0,12,25,0,0,12,25,0,0,14,25,0,0,20,25,0,0,20,25,0,0,22,25,0,0,22,25,0,0,22,25,0,0,24,25,0,0,26,25,0,0,26,25,0,0,26,25,0,0,28,25,0,0,28,25,0,0,28,25,0,0,38,25,0,0,38,25,0,0,42,25,0,0,42,25,0,0,42,25,0,0,42,25,0,0,42,25,0,0,44,25,0,0,46,25,0,0,54,25,0,0,56,25,0,0,56,25,0,0,56,25,0,0,56,25,0,0,56,25,0,0,56,25,0,0,56,25,0,0,58,25,0,0,58,25,0,0,60,25,0,0,74,25,0,0,80,25,0,0,80,25,0,0,80,25,0,0,80,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,90,25,0,0,90,25,0,0,90,25,0,0,90,25,0,0,92,25,0,0,94,25,0,0,94,25,0,0,94,25,0,0,96,25,0,0,98,25,0,0,102,25,0,0,104,25,0,0,110,25,0,0,110,25,0,0,116,25,0,0,120,25,0,0,122,25,0,0,128,25,0,0,128,25,0,0,128,25,0,0,128,25,0,0,132,25,0,0,134,25,0,0,134,25,0,0,138,25,0,0,138,25,0,0,138,25,0,0,138,25,0,0,138,25,0,0,140,25,0,0,140,25,0,0,142,25,0,0,146,25,0,0,150,25,0,0,150,25,0,0,152,25,0,0,158,25,0,0,158,25,0,0,158,25,0,0,158,25,0,0,158,25,0,0,158,25,0,0,158,25,0,0,158,25,0,0,164,25,0,0,170,25,0,0,170,25,0,0,182,25,0,0,188,25,0,0,188,25,0,0,188,25,0,0,194,25,0,0,196,25,0,0,198,25,0,0,198,25,0,0,200,25,0,0,200,25,0,0,202,25,0,0,206,25,0,0,206,25,0,0,210,25,0,0,210,25,0,0,210,25,0,0,214,25,0,0,214,25,0,0,214,25,0,0,214,25,0,0,218,25,0,0,222,25,0,0,226,25,0,0,226,25,0,0,226,25,0,0,230,25,0,0,230,25,0,0,230,25,0,0,230,25,0,0,230,25,0,0,230,25,0,0,230,25,0,0,230,25,0,0,230,25,0,0,232,25,0,0,234,25,0,0,238,25,0,0,240,25,0,0,240,25,0,0,242,25,0,0,246,25,0,0,246,25,0,0,248,25,0,0,248,25,0,0,248,25,0,0,248,25,0,0,248,25,0,0,248,25,0,0,248,25,0,0,248,25,0,0,250,25,0,0,252,25,0,0,0,26,0,0,2,26,0,0,2,26,0,0,2,26,0,0,2,26,0,0,6,26,0,0,12,26,0,0,14,26,0,0,14,26,0,0,14,26,0,0,20,26,0,0,22,26,0,0,22,26,0,0,22,26,0,0,24,26,0,0,24,26,0,0,28,26,0,0,32,26,0,0,34,26,0,0,34,26,0,0,34,26,0,0,34,26,0,0,34,26,0,0,34,26,0,0,36,26,0,0,36,26,0,0,36,26,0,0,36,26,0,0,36,26,0,0,36,26,0,0,38,26,0,0,38,26,0,0,42,26,0,0,44,26,0,0,54,26,0,0,54,26,0,0,60,26,0,0,60,26,0,0,60,26,0,0,60,26,0,0,60,26,0,0,64,26,0,0,66,26,0,0,66,26,0,0,66,26,0,0,72,26,0,0,72,26,0,0,72,26,0,0,72,26,0,0,72,26,0,0,72,26,0,0,72,26,0,0,72,26,0,0,72,26,0,0,72,26,0,0,72,26,0,0,76,26,0,0,78,26,0,0,78,26,0,0,82,26,0,0,86,26,0,0,88,26,0,0,92,26,0,0,92,26,0,0,96,26,0,0,96,26,0,0,96,26,0,0,96,26,0,0,96,26,0,0,100,26,0,0,100,26,0,0,100,26,0,0,112,26,0,0,112,26,0,0,114,26,0,0,114,26,0,0,114,26,0,0,114,26,0,0,116,26,0,0,116,26,0,0,116,26,0,0,122,26,0,0,122,26,0,0,124,26,0,0,132,26,0,0,134,26,0,0,138,26,0,0,140,26,0,0,140,26,0,0,152,26,0,0,152,26,0,0,162,26,0,0,166,26,0,0,166,26,0,0,170,26,0,0,170,26,0,0,170,26,0,0,172,26,0,0,176,26,0,0,176,26,0,0,178,26,0,0,178,26,0,0,180,26,0,0,182,26,0,0,182,26,0,0,186,26,0,0,190,26,0,0,190,26,0,0,190,26,0,0,190,26,0,0,190,26,0,0,192,26,0,0,200,26,0,0,200,26,0,0,200,26,0,0,200,26,0,0,202,26,0,0,202,26,0,0,210,26,0,0,214,26,0,0,214,26,0,0,214,26,0,0,214,26,0,0,220,26,0,0,220,26,0,0,220,26,0,0,224,26,0,0,228,26,0,0,228,26,0,0,228,26,0,0,230,26,0,0,230,26,0,0,232,26,0,0,238,26,0,0,242,26,0,0,242,26,0,0,242,26,0,0,246,26,0,0,248,26,0,0,248,26,0,0,250,26,0,0,254,26,0,0,254,26,0,0,254,26,0,0,0,27,0,0,0,27,0,0,2,27,0,0,4,27,0,0,8,27,0,0,12,27,0,0,14,27,0,0,16,27,0,0,26,27,0,0,28,27,0,0,28,27,0,0,28,27,0,0,28,27,0,0,30,27,0,0,30,27,0,0,36,27,0,0,36,27,0,0,36,27,0,0,38,27,0,0,40,27,0,0,40,27,0,0,48,27,0,0,48,27,0,0,48,27,0,0,48,27,0,0,54,27,0,0,54,27,0,0,58,27,0,0,60,27,0,0,60,27,0,0,60,27,0,0,60,27,0,0,66,27,0,0,68,27,0,0,68,27,0,0,70,27,0,0,72,27,0,0,72,27,0,0,74,27,0,0,74,27,0,0,76,27,0,0,76,27,0,0,78,27,0,0,78,27,0,0,86,27,0,0,86,27,0,0,88,27,0,0,88,27,0,0,88,27,0,0,88,27,0,0,94,27,0,0,96,27,0,0,96,27,0,0,96,27,0,0,96,27,0,0,96,27,0,0,100,27,0,0,102,27,0,0,104,27,0,0,104,27,0,0,104,27,0,0,110,27,0,0,110,27,0,0,110,27,0,0,114,27,0,0,120,27,0,0,120,27,0,0,120,27,0,0,122,27,0,0,126,27,0,0,126,27,0,0,128,27,0,0,128,27,0,0,130,27,0,0,132,27,0,0,134,27,0,0,134,27,0,0,134,27,0,0,134,27,0,0,134,27,0,0,140,27,0,0,142,27,0,0,146,27,0,0,146,27,0,0,146,27,0,0,146,27,0,0,150,27,0,0,156,27,0,0,162,27,0,0,164,27,0,0,166,27,0,0,166,27,0,0,166,27,0,0,166,27,0,0,166,27,0,0,168,27,0,0,174,27,0,0,178,27,0,0,178,27,0,0,178,27,0,0,178,27,0,0,186,27,0,0,186,27,0,0,188,27,0,0,188,27,0,0,188,27,0,0,192,27,0,0,192,27,0,0,192,27,0,0,196,27,0,0,198,27,0,0,202,27,0,0,206,27,0,0,212,27,0,0,216,27,0,0,216,27,0,0,218,27,0,0,218,27,0,0,222,27,0,0,224,27,0,0,224,27,0,0,228,27,0,0,228,27,0,0,230,27,0,0,230,27,0,0,238,27,0,0,238,27,0,0,244,27,0,0,246,27,0,0,248,27,0,0,252,27,0,0,252,27,0,0,254,27,0,0,254,27,0,0,2,28,0,0,2,28,0,0,8,28,0,0,8,28,0,0,8,28,0,0,8,28,0,0,8,28,0,0,10,28,0,0,12,28,0,0,18,28,0,0,18,28,0,0,18,28,0,0,24,28,0,0,24,28,0,0,28,28,0,0,28,28,0,0,30,28,0,0,30,28,0,0,30,28,0,0,30,28,0,0,30,28,0,0,34,28,0,0,34,28,0,0,34,28,0,0,34,28,0,0,34,28,0,0,36,28,0,0,38,28,0,0,44,28,0,0,44,28,0,0,46,28,0,0,50,28,0,0,50,28,0,0,50,28,0,0,50,28,0,0,50,28,0,0,50,28,0,0,50,28,0,0,54,28,0,0,54,28,0,0,54,28,0,0,56,28,0,0,58,28,0,0,58,28,0,0,58,28,0,0,60,28,0,0,62,28,0,0,66,28,0,0,66,28,0,0,70,28,0,0,70,28,0,0,72,28,0,0,72,28,0,0,84,28,0,0,84,28,0,0,84,28,0,0,86,28,0,0,86,28,0,0,92,28,0,0,98,28,0,0,98,28,0,0,98,28,0,0,102,28,0,0,102,28,0,0,104,28,0,0,104,28,0,0,108,28,0,0,108,28,0,0,108,28,0,0,108,28,0,0,108,28,0,0,110,28,0,0,116,28,0,0,118,28,0,0,122,28,0,0,126,28,0,0,126,28,0,0,130,28,0,0,140,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,150,28,0,0,150,28,0,0,150,28,0,0,152,28,0,0,152,28,0,0,152,28,0,0,158,28,0,0,164,28,0,0,164,28,0,0,166,28,0,0,168,28,0,0,174,28,0,0,176,28,0,0,176,28,0,0,176,28,0,0,178,28,0,0,182,28,0,0,182,28,0,0,190,28,0,0,190,28,0,0,192,28,0,0,196,28,0,0,202,28,0,0,202,28,0,0,204,28,0,0,204,28,0,0,204,28,0,0,216,28,0,0,216,28,0,0,216,28,0,0,216,28,0,0,216,28,0,0,216,28,0,0,220,28,0,0,234,28,0,0,238,28,0,0,240,28,0,0,244,28,0,0,244,28,0,0,244,28,0,0,252,28,0,0,254,28,0,0,254,28,0,0,254,28,0,0,254,28,0,0,254,28,0,0,0,29,0,0,2,29,0,0,2,29,0,0,2,29,0,0,12,29,0,0,14,29,0,0,14,29,0,0,20,29,0,0,20,29,0,0,20,29,0,0,28,29,0,0,36,29,0,0,38,29,0,0,44,29,0,0,44,29,0,0,44,29,0,0,44,29,0,0,44,29,0,0,44,29,0,0,44,29,0,0,44,29,0,0,46,29,0,0,46,29,0,0,48,29,0,0,50,29,0,0,50,29,0,0,50,29,0,0,52,29,0,0,56,29,0,0,60,29,0,0,62,29,0,0,64,29,0,0,68,29,0,0,70,29,0,0,80,29,0,0,80,29,0,0,84,29,0,0,86,29,0,0,86,29,0,0,86,29,0,0,88,29,0,0,92,29,0,0,94,29,0,0,96,29,0,0,96,29,0,0,98,29,0,0,98,29,0,0,98,29,0,0,102,29,0,0,106,29,0,0,108,29,0,0,110,29,0,0,112,29,0,0,112,29,0,0,112,29,0,0,112,29,0,0,114,29,0,0,114,29,0,0,114,29,0,0,114,29,0,0,118,29,0,0,118,29,0,0,118,29,0,0,118,29,0,0,118,29,0,0,118,29,0,0,118,29,0,0,120,29,0,0,120,29,0,0,122,29,0,0,122,29,0,0,122,29,0,0,128,29,0,0,134,29,0,0,134,29,0,0,140,29,0,0,140,29,0,0,152,29,0,0,152,29,0,0,154,29,0,0,158,29,0,0,158,29,0,0,158,29,0,0,158,29,0,0,160,29,0,0,160,29,0,0,162,29,0,0,166,29,0,0,166,29,0,0,166,29,0,0,166,29,0,0,168,29,0,0,176,29,0,0,176,29,0,0,178,29,0,0,178,29,0,0,178,29,0,0,178,29,0,0,180,29,0,0,180,29,0,0,180,29,0,0,180,29,0,0,182,29,0,0,182,29,0,0,184,29,0,0,190,29,0,0,190,29,0,0,192,29,0,0,192,29,0,0,192,29,0,0,194,29,0,0,194,29,0,0,196,29,0,0,196,29,0,0,200,29,0,0,200,29,0,0,202,29,0,0,208,29,0,0,210,29,0,0,212,29,0,0,212,29,0,0,216,29,0,0,218,29,0,0,218,29,0,0,224,29,0,0,224,29,0,0,224,29,0,0,224,29,0,0,226,29,0,0,226,29,0,0,226,29,0,0,226,29,0,0,244,29,0,0,246,29,0,0,246,29,0,0,248,29,0,0,248,29,0,0,248,29,0,0,252,29,0,0,252,29,0,0,252,29,0,0,254,29,0,0,0,30,0,0,0,30,0,0,2,30,0,0,4,30,0,0,4,30,0,0,4,30,0,0,4,30,0,0,10,30,0,0,12,30,0,0,12,30,0,0,12,30,0,0,12,30,0,0,12,30,0,0,14,30,0,0,14,30,0,0,14,30,0,0,14,30,0,0,14,30,0,0,16,30,0,0,20,30,0,0,22,30,0,0,22,30,0,0,22,30,0,0,22,30,0,0,22,30,0,0,22,30,0,0,24,30,0,0,24,30,0,0,24,30,0,0,24,30,0,0,26,30,0,0,26,30,0,0,26,30,0,0,28,30,0,0,28,30,0,0,28,30,0,0,28,30,0,0,30,30,0,0,34,30,0,0,34,30,0,0,34,30,0,0,42,30,0,0,50,30,0,0,50,30,0,0,52,30,0,0,56,30,0,0,64,30,0,0,74,30,0,0,76,30,0,0,76,30,0,0,76,30,0,0,76,30,0,0,78,30,0,0,78,30,0,0,78,30,0,0,78,30,0,0,78,30,0,0,78,30,0,0,80,30,0,0,80,30,0,0,80,30,0,0,80,30,0,0,86,30,0,0,86,30,0,0,86,30,0,0,86,30,0,0,86,30,0,0,86,30,0,0,88,30,0,0,90,30,0,0,90,30,0,0,90,30,0,0,90,30,0,0,94,30,0,0,94,30,0,0,98,30,0,0,100,30,0,0,102,30,0,0,102,30,0,0,104,30,0,0,104,30,0,0,116,30,0,0,118,30,0,0,118,30,0,0,118,30,0,0,122,30,0,0,122,30,0,0,122,30,0,0,122,30,0,0,122,30,0,0,124,30,0,0,126,30,0,0,132,30,0,0,132,30,0,0,134,30,0,0,134,30,0,0,136,30,0,0,136,30,0,0,140,30,0,0,140,30,0,0,144,30,0,0,144,30,0,0,144,30,0,0,148,30,0,0,152,30,0,0,156,30,0,0,156,30,0,0,156,30,0,0,156,30,0,0,156,30,0,0,162,30,0,0,162,30,0,0,162,30,0,0,164,30,0,0,168,30,0,0,168,30,0,0,168,30,0,0,168,30,0,0,170,30,0,0,170,30,0,0,170,30,0,0,172,30,0,0,172,30,0,0,176,30,0,0,176,30,0,0,178,30,0,0,184,30,0,0,184,30,0,0,184,30,0,0,184,30,0,0,184,30,0,0,184,30,0,0,184,30,0,0,184,30,0,0,184,30,0,0,186,30,0,0,186,30,0,0,188,30,0,0,188,30,0,0,188,30,0,0,190,30,0,0,192,30,0,0,202,30,0,0,204,30,0,0,204,30,0,0,210,30,0,0,214,30,0,0,218,30,0,0,228,30,0,0,232,30,0,0,236,30,0,0,236,30,0,0,236,30,0,0,240,30,0,0,240,30,0,0,240,30,0,0,244,30,0,0,244,30,0,0,254,30,0,0,254,30,0,0,254,30,0,0,254,30,0,0,254,30,0,0,254,30,0,0,254,30,0,0,4,31,0,0,6,31,0,0,6,31,0,0,6,31,0,0,6,31,0,0,12,31,0,0,14,31,0,0,14,31,0,0,20,31,0,0,22,31,0,0,22,31,0,0,22,31,0,0,22,31,0,0,28,31,0,0,28,31,0,0,32,31,0,0,32,31,0,0,32,31,0,0,32,31,0,0,34,31,0,0,34,31,0,0,36,31,0,0,40,31,0,0,46,31,0,0,52,31,0,0,52,31,0,0,58,31,0,0,60,31,0,0,60,31,0,0,62,31,0,0,64,31,0,0,68,31,0,0,68,31,0,0,74,31,0,0,74,31,0,0,76,31,0,0,76,31,0,0,76,31,0,0,76,31,0,0,80,31,0,0,82,31,0,0,82,31,0,0,82,31,0,0,84,31,0,0,84,31,0,0,86,31,0,0,88,31,0,0,90,31,0,0,92,31,0,0,96,31,0,0,98,31,0,0,98,31,0,0,98,31,0,0,98,31,0,0,100,31,0,0,100,31,0,0,102,31,0,0,104,31,0,0,106,31,0,0,120,31,0,0,120,31,0,0,120,31,0,0,120,31,0,0,128,31,0,0,132,31,0,0,132,31,0,0,132,31,0,0,132,31,0,0,132,31,0,0,136,31,0,0,136,31,0,0,136,31,0,0,138,31,0,0,138,31,0,0,146,31,0,0,146,31,0,0,148,31,0,0,148,31,0,0,158,31,0,0,160,31,0,0,160,31,0,0,164,31,0,0,164,31,0,0,166,31,0,0,166,31,0,0,166,31,0,0,166,31,0,0,166,31,0,0,166,31,0,0,166,31,0,0,172,31,0,0,174,31,0,0,176,31,0,0,176,31,0,0,176,31,0,0,176,31,0,0,176,31,0,0,176,31,0,0,178,31,0,0,178,31,0,0,180,31,0,0,180,31,0,0,186,31,0,0,188,31,0,0,188,31,0,0,192,31,0,0,192,31,0,0,192,31,0,0,192,31,0,0,192,31,0,0,192,31,0,0,196,31,0,0,198,31,0,0,198,31,0,0,198,31,0,0,200,31,0,0,202,31,0,0,210,31,0,0,210,31,0,0,214,31,0,0,216,31,0,0,216,31,0,0,222,31,0,0,232,31,0,0,232,31,0,0,232,31,0,0,232,31,0,0,232,31,0,0,242,31,0,0,244,31,0,0,246,31,0,0,246,31,0,0,246,31,0,0,252,31,0,0,2,32,0,0,2,32,0,0,4,32,0,0,4,32,0,0,4,32,0,0,4,32,0,0,4,32,0,0,10,32,0,0,12,32,0,0,12,32,0,0,14,32,0,0,14,32,0,0,16,32,0,0,16,32,0,0,16,32,0,0,16,32,0,0,16,32,0,0,20,32,0,0,22,32,0,0,22,32,0,0,22,32,0,0,22,32,0,0,24,32,0,0,24,32,0,0,26,32,0,0,30,32,0,0,30,32,0,0,42,32,0,0,44,32,0,0,52,32,0,0,52,32,0,0,58,32,0,0,64,32,0,0,64,32,0,0,66,32,0,0,70,32,0,0,70,32,0,0,70,32,0,0,72,32,0,0,76,32,0,0,80,32,0,0,80,32,0,0,80,32,0,0,86,32,0,0,86,32,0,0,86,32,0,0,98,32,0,0,100,32,0,0,102,32,0,0,106,32,0,0,106,32,0,0,106,32,0,0,106,32,0,0,114,32,0,0,114,32,0,0,114,32,0,0,114,32,0,0,114,32,0,0,124,32,0,0,128,32,0,0,128,32,0,0,132,32,0,0,134,32,0,0,134,32,0,0,136,32,0,0,136,32,0,0,136,32,0,0,136,32,0,0,142,32,0,0,148,32,0,0,148,32,0,0,150,32,0,0,150,32,0,0,154,32,0,0,162,32,0,0,164,32,0,0,164,32,0,0,164,32,0,0,168,32,0,0,172,32,0,0,172,32,0,0,180,32,0,0,182,32,0,0,182,32,0,0,182,32,0,0,186,32,0,0,186,32,0,0,186,32,0,0,192,32,0,0,192,32,0,0,194,32,0,0,196,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,202,32,0,0,204,32,0,0,208,32,0,0,208,32,0,0,208,32,0,0,210,32,0,0,222,32,0,0,222,32,0,0,228,32,0,0,228,32,0,0,230,32,0,0,232,32,0,0,232,32,0,0,238,32,0,0,238,32,0,0,246,32,0,0,248,32,0,0,248,32,0,0,248,32,0,0,250,32,0,0,250,32,0,0,250,32,0,0,254,32,0,0,254,32,0,0,6,33,0,0,6,33,0,0,6,33,0,0,6,33,0,0,6,33,0,0,8,33,0,0,10,33,0,0,12,33,0,0,12,33,0,0,16,33,0,0,20,33,0,0,22,33,0,0,22,33,0,0,24,33,0,0,30,33,0,0,30,33,0,0,32,33,0,0,36,33,0,0,36,33,0,0,38,33,0,0,52,33,0,0,54,33,0,0,56,33,0,0,58,33,0,0,58,33,0,0,64,33,0,0,64,33,0,0,64,33,0,0,64,33,0,0,66,33,0,0,68,33,0,0,76,33,0,0,82,33,0,0,86,33,0,0,92,33,0,0,100,33,0,0,102,33,0,0,102,33,0,0,108,33,0,0,108,33,0,0,112,33,0,0,112,33,0,0,112,33,0,0,116,33,0,0,126,33,0,0,126,33,0,0,128,33,0,0,130,33,0,0,132,33,0,0,132,33,0,0,140,33,0,0,148,33,0,0,148,33,0,0,148,33,0,0,148,33,0,0,148,33,0,0,148,33,0,0,148,33,0,0,148,33,0,0,148,33,0,0,154,33,0,0,154,33,0,0,164,33,0,0,164,33,0,0,164,33,0,0,164,33,0,0,164,33,0,0,174,33,0,0,178,33,0,0,178,33,0,0,178,33,0,0,178,33,0,0,178,33,0,0,182,33,0,0,182,33,0,0,184,33,0,0,184,33,0,0,184,33,0,0,184,33,0,0,184,33,0,0,184,33,0,0,184,33,0,0,188,33,0,0,188,33,0,0,190,33,0,0,190,33,0,0,190,33,0,0,196,33,0,0,200,33,0,0,200,33,0,0,202,33,0,0,202,33,0,0,204,33,0,0,208,33,0,0,208,33,0,0,208,33,0,0,208,33,0,0,210,33,0,0,210,33,0,0,210,33,0,0,210,33,0,0,210,33,0,0,216,33,0,0,216,33,0,0,216,33,0,0,216,33,0,0,224,33,0,0,228,33,0,0,230,33,0,0,230,33,0,0,230,33,0,0,240,33,0,0,240,33,0,0,240,33,0,0,242,33,0,0,242,33,0,0,242,33,0,0,246,33,0,0,246,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,252,33,0,0,254,33,0,0,2,34,0,0,6,34,0,0,6,34,0,0,8,34,0,0,8,34,0,0,8,34,0,0,8,34,0,0,8,34,0,0,8,34,0,0,8,34,0,0,8,34,0,0,8,34,0,0,8,34,0,0,12,34,0,0,12,34,0,0,20,34,0,0,22,34,0,0,22,34,0,0,22,34,0,0,26,34,0,0,30,34,0,0,34,34,0,0,38,34,0,0,40,34,0,0,44,34,0,0,44,34,0,0,48,34,0,0,52,34,0,0,52,34,0,0,52,34,0,0,54,34,0,0,54,34,0,0,54,34,0,0,54,34,0,0,54,34,0,0,54,34,0,0,54,34,0,0,54,34,0,0,54,34,0,0,58,34,0,0,58,34,0,0,64,34,0,0,66,34,0,0,66,34,0,0,70,34,0,0,70,34,0,0,70,34,0,0,72,34,0,0,82,34,0,0,84,34,0,0,88,34,0,0,92,34,0,0,92,34,0,0,100,34,0,0,100,34,0,0,100,34,0,0,100,34,0,0,104,34,0,0,106,34,0,0,108,34,0,0,116,34,0,0,116,34,0,0,116,34,0,0,116,34,0,0,118,34,0,0,118,34,0,0,118,34,0,0,120,34,0,0,122,34,0,0,126,34,0,0,128,34,0,0,130,34,0,0,134,34,0,0,134,34,0,0,134,34,0,0,136,34,0,0,140,34,0,0,144,34,0,0,144,34,0,0,144,34,0,0,144,34,0,0,146,34,0,0,150,34,0,0,150,34,0,0,150,34,0,0,152,34,0,0,152,34,0,0,152,34,0,0,154,34,0,0,154,34,0,0,164,34,0,0,166,34,0,0,174,34,0,0,178,34,0,0,188,34,0,0,188,34,0,0,188,34,0,0,192,34,0,0,200,34,0,0,204,34,0,0,204,34,0,0,204,34,0,0,206,34,0,0,208,34,0,0,210,34,0,0,210,34,0,0,212,34,0,0,214,34,0,0,214,34,0,0,216,34,0,0,216,34,0,0,216,34,0,0,218,34,0,0,220,34,0,0,220,34,0,0,220,34,0,0,220,34,0,0,222,34,0,0,224,34,0,0,224,34,0,0,228,34,0,0,228,34,0,0,230,34,0,0,230,34,0,0,230,34,0,0,242,34,0,0,242,34,0,0,242,34,0,0,242,34,0,0,250,34,0,0,250,34,0,0,250,34,0,0,250,34,0,0,250,34,0,0,252,34,0,0,252,34,0,0,0,35,0,0,2,35,0,0,2,35,0,0,2,35,0,0,2,35,0,0,2,35,0,0,2,35,0,0,2,35,0,0,4,35,0,0,4,35,0,0,10,35,0,0,10,35,0,0,10,35,0,0,14,35,0,0,14,35,0,0,18,35,0,0,24,35,0,0,24,35,0,0,24,35,0,0,26,35,0,0,28,35,0,0,28,35,0,0,28,35,0,0,28,35,0,0,30,35,0,0,32,35,0,0,34,35,0,0,34,35,0,0,36,35,0,0,38,35,0,0,40,35,0,0,40,35,0,0,44,35,0,0,46,35,0,0,46,35,0,0,46,35,0,0,52,35,0,0,52,35,0,0,58,35,0,0,60,35,0,0,62,35,0,0,68,35,0,0,76,35,0,0,76,35,0,0,82,35,0,0,82,35,0,0,82,35,0,0,96,35,0,0,96,35,0,0,104,35,0,0,108,35,0,0,108,35,0,0,110,35,0,0,110,35,0,0,114,35,0,0,116,35,0,0,118,35,0,0,118,35,0,0,118,35,0,0,118,35,0,0,122,35,0,0,128,35,0,0,130,35,0,0,134,35,0,0,134,35,0,0,134,35,0,0,134,35,0,0,134,35,0,0,134,35,0,0,138,35,0,0,138,35,0,0,140,35,0,0,140,35,0,0,140,35,0,0,140,35,0,0,140,35,0,0,140,35,0,0,148,35,0,0,148,35,0,0,152,35,0,0,152,35,0,0,154,35,0,0,154,35,0,0,154,35,0,0,154,35,0,0,158,35,0,0,164,35,0,0,166,35,0,0,166,35,0,0,170,35,0,0,172,35,0,0,174,35,0,0,174,35,0,0,180,35,0,0,180,35,0,0,182,35,0,0,182,35,0,0,184,35,0,0,184,35,0,0,188,35,0,0,188,35,0,0,190,35,0,0,190,35,0,0,190,35,0,0,192,35,0,0,194,35,0,0,194,35,0,0,198,35,0,0,198,35,0,0,198,35,0,0,198,35,0,0,198,35,0,0,200,35,0,0,200,35,0,0,202,35,0,0,202,35,0,0,202,35,0,0,204,35,0,0,208,35,0,0,214,35,0,0,214,35,0,0,214,35,0,0,214,35,0,0,218,35,0,0,226,35,0,0,228,35,0,0,228,35,0,0,234,35,0,0,234,35,0,0,234,35,0,0,238,35,0,0,238,35,0,0,238,35,0,0,238,35,0,0,242,35,0,0,244,35,0,0,244,35,0,0,246,35,0,0,246,35,0,0,246,35,0,0,250,35,0,0,250,35,0,0,254,35,0,0,254,35,0,0,254,35,0,0,254,35,0,0,254,35,0,0,254,35,0,0,0,36,0,0,2,36,0,0,2,36,0,0,8,36,0,0,8,36,0,0,8,36,0,0,10,36,0,0,14,36,0,0,14,36,0,0,14,36,0,0,16,36,0,0,16,36,0,0,18,36,0,0,18,36,0,0,18,36,0,0,36,36,0,0,36,36,0,0,36,36,0,0,36,36,0,0,36,36,0,0,38,36,0,0,44,36,0,0,44,36,0,0,44,36,0,0,50,36,0,0,52,36,0,0,52,36,0,0,52,36,0,0,52,36,0,0,52,36,0,0,54,36,0,0,54,36,0,0,54,36,0,0,54,36,0,0,58,36,0,0,62,36,0,0,62,36,0,0,64,36,0,0,64,36,0,0,70,36,0,0,72,36,0,0,72,36,0,0,72,36,0,0,72,36,0,0,72,36,0,0,82,36,0,0,82,36,0,0,86,36,0,0,88,36,0,0,88,36,0,0,88,36,0,0,90,36,0,0,90,36,0,0,92,36,0,0,96,36,0,0,96,36,0,0,96,36,0,0,96,36,0,0,96,36,0,0,98,36,0,0,100,36,0,0,100,36,0,0,100,36,0,0,108,36,0,0,108,36,0,0,112,36,0,0,112,36,0,0,114,36,0,0,116,36,0,0,120,36,0,0,120,36,0,0,126,36,0,0,130,36,0,0,134,36,0,0,136,36,0,0,136,36,0,0,140,36,0,0,140,36,0,0,142,36,0,0,146,36,0,0,146,36,0,0,146,36,0,0,146,36,0,0,148,36,0,0,148,36,0,0,148,36,0,0,148,36,0,0,150,36,0,0,150,36,0,0,150,36,0,0,152,36,0,0,154,36,0,0,154,36,0,0,160,36,0,0,160,36,0,0,164,36,0,0,164,36,0,0,168,36,0,0,172,36,0,0,178,36,0,0,180,36,0,0,184,36,0,0,190,36,0,0,192,36,0,0,192,36,0,0,192,36,0,0,192,36,0,0,198,36,0,0,204,36,0,0,204,36,0,0,204,36,0,0,208,36,0,0,210,36,0,0,210,36,0,0,210,36,0,0,210,36,0,0,212,36,0,0,212,36,0,0,212,36,0,0,212,36,0,0,214,36,0,0,218,36,0,0,218,36,0,0,222,36,0,0,224,36,0,0,224,36,0,0,226,36,0,0,226,36,0,0,226,36,0,0,226,36,0,0,226,36,0,0,230,36,0,0,230,36,0,0,232,36,0,0,236,36,0,0,236,36,0,0,240,36,0,0,244,36,0,0,244,36,0,0,244,36,0,0,246,36,0,0,246,36,0,0,246,36,0,0,248,36,0,0,254,36,0,0,254,36,0,0,0,37,0,0,4,37,0,0,4,37,0,0,4,37,0,0,10,37,0,0,10,37,0,0,10,37,0,0,10,37,0,0,14,37,0,0,14,37,0,0,20,37,0,0,22,37,0,0,22,37,0,0,22,37,0,0,26,37,0,0,28,37,0,0,30,37,0,0,30,37,0,0,30,37,0,0,30,37,0,0,30,37,0,0,34,37,0,0,34,37,0,0,40,37,0,0,40,37,0,0,40,37,0,0,40,37,0,0,40,37,0,0,42,37,0,0,42,37,0,0,46,37,0,0,46,37,0,0,52,37,0,0,52,37,0,0,52,37,0,0,52,37,0,0,54,37,0,0,56,37,0,0,56,37,0,0,56,37,0,0,58,37,0,0,58,37,0,0,58,37,0,0,64,37,0,0,68,37,0,0,68,37,0,0,68,37,0,0,70,37,0,0,70,37,0,0,76,37,0,0,76,37,0,0,80,37,0,0,80,37,0,0,80,37,0,0,80,37,0,0,82,37,0,0,82,37,0,0,84,37,0,0,84,37,0,0,86,37,0,0,88,37,0,0,88,37,0,0,94,37,0,0,94,37,0,0,94,37,0,0,96,37,0,0,96,37,0,0,96,37,0,0,96,37,0,0,96,37,0,0,96,37,0,0,98,37,0,0,98,37,0,0,98,37,0,0,100,37,0,0,106,37,0,0,112,37,0,0,112,37,0,0,112,37,0,0,112,37,0,0,112,37,0,0,114,37,0,0,114,37,0,0,114,37,0,0,118,37,0,0,122,37,0,0,130,37,0,0,132,37,0,0,140,37,0,0,146,37,0,0,148,37,0,0,150,37,0,0,152,37,0,0,154,37,0,0,156,37,0,0,158,37,0,0,158,37,0,0,158,37,0,0,158,37,0,0,158,37,0,0,158,37,0,0,158,37,0,0,158,37,0,0,158,37,0,0,158,37,0,0,158,37,0,0,158,37,0,0,160,37,0,0,160,37,0,0,160,37,0,0,164,37,0,0,164,37,0,0,166,37,0,0,170,37,0,0,174,37,0,0,178,37,0,0,178,37,0,0,182,37,0,0,184,37,0,0,190,37,0,0,190,37,0,0,190,37,0,0,192,37,0,0,194,37,0,0,194,37,0,0,194,37,0,0,194,37,0,0,194,37,0,0,194,37,0,0,194,37,0,0,194,37,0,0,204,37,0,0,214,37,0,0,218,37,0,0,222,37,0,0,224,37,0,0,224,37,0,0,224,37,0,0,226,37,0,0,228,37,0,0,228,37,0,0,236,37,0,0,242,37,0,0,244,37,0,0,250,37,0,0,250,37,0,0,250,37,0,0,250,37,0,0,250,37,0,0,250,37,0,0,250,37,0,0,252,37,0,0,252,37,0,0,0,38,0,0,2,38,0,0,4,38,0,0,8,38,0,0,14,38,0,0,14,38,0,0,18,38,0,0,18,38,0,0,18,38,0,0,30,38,0,0,30,38,0,0,30,38,0,0,34,38,0,0,34,38,0,0,36,38,0,0,46,38,0,0,48,38,0,0,48,38,0,0,50,38,0,0,50,38,0,0,50,38,0,0,54,38,0,0,54,38,0,0,60,38,0,0,60,38,0,0,62,38,0,0,64,38,0,0,64,38,0,0,64,38,0,0,64,38,0,0,66,38,0,0,70,38,0,0,70,38,0,0,74,38,0,0,76,38,0,0,78,38,0,0,82,38,0,0,82,38,0,0,84,38,0,0,84,38,0,0,84,38,0,0,92,38,0,0,92,38,0,0,94,38,0,0,94,38,0,0,98,38,0,0,104,38,0,0,104,38,0,0,104,38,0,0,104,38,0,0,106,38,0,0,106,38,0,0,106,38,0,0,108,38,0,0,108,38,0,0,112,38,0,0,112,38,0,0,120,38,0,0,122,38,0,0,124,38,0,0,124,38,0,0,124,38,0,0,128,38,0,0,140,38,0,0,140,38,0,0,140,38,0,0,142,38,0,0,142,38,0,0,142,38,0,0,142,38,0,0,142,38,0,0,146,38,0,0,146,38,0,0,146,38,0,0,148,38,0,0,148,38,0,0,150,38,0,0,150,38,0,0,150,38,0,0,150,38,0,0,154,38,0,0,158,38,0,0,166,38,0,0,168,38,0,0,168,38,0,0,168,38,0,0,168,38,0,0,168,38,0,0,172,38,0,0,172,38,0,0,174,38,0,0,178,38,0,0,178,38,0,0,178,38,0,0,184,38,0,0,190,38,0,0,192,38,0,0,194,38,0,0,200,38,0,0,206,38,0,0,206,38,0,0,212,38,0,0,212,38,0,0,214,38,0,0,214,38,0,0,226,38,0,0,228,38,0,0,228,38,0,0,228,38,0,0,228,38,0,0,228,38,0,0,232,38,0,0,234,38,0,0,234,38,0,0,238,38,0,0,242,38,0,0,244,38,0,0,244,38,0,0,244,38,0,0,250,38,0,0,250,38,0,0,250,38,0,0,250,38,0,0,250,38,0,0,252,38,0,0,254,38,0,0,254,38,0,0,4,39,0,0,6,39,0,0,10,39,0,0,10,39,0,0,10,39,0,0,12,39,0,0,12,39,0,0,12,39,0,0,14,39,0,0,16,39,0,0,16,39,0,0,24,39,0,0,28,39,0,0,32,39,0,0,32,39,0,0,32,39,0,0,36,39,0,0,36,39,0,0,40,39,0,0,40,39,0,0,40,39,0,0,50,39,0,0,56,39,0,0,56,39,0,0,56,39,0,0,60,39,0,0,60,39,0,0,60,39,0,0,60,39,0,0,62,39,0,0,66,39,0,0,66,39,0,0,68,39,0,0,70,39,0,0,76,39,0,0,76,39,0,0,76,39,0,0,80,39,0,0,80,39,0,0,82,39,0,0,88,39,0,0,88,39,0,0,88,39,0,0,96,39,0,0,96,39,0,0,96,39,0,0,104,39,0,0,106,39,0,0,110,39,0,0,118,39,0,0,118,39,0,0,118,39,0,0,118,39,0,0,122,39,0,0,124,39,0,0,134,39,0,0,134,39,0,0,134,39,0,0,142,39,0,0,144,39,0,0,144,39,0,0,144,39,0,0,144,39,0,0,150,39,0,0,150,39,0,0,150,39,0,0,150,39,0,0,150,39,0,0,150,39,0,0,150,39,0,0,150,39,0,0,154,39,0,0,158,39,0,0,160,39,0,0,162,39,0,0,162,39,0,0,162,39,0,0,162,39,0,0,162,39,0,0,162,39,0,0,162,39,0,0,168,39,0,0,168,39,0,0,168,39,0,0,168,39,0,0,174,39,0,0,174,39,0,0,174,39,0,0,180,39,0,0,180,39,0,0,180,39,0,0,180,39,0,0,180,39,0,0,186,39,0,0,188,39,0,0,188,39,0,0,194,39,0,0,194,39,0,0,196,39,0,0,198,39,0,0,202,39,0,0,204,39,0,0,204,39,0,0,204,39,0,0,204,39,0,0,204,39,0,0,208,39,0,0,210,39,0,0,210,39,0,0,210,39,0,0,216,39,0,0,216,39,0,0,216,39,0,0,222,39,0,0,226,39,0,0,226,39,0,0,230,39,0,0,230,39,0,0,232,39,0,0,232,39,0,0,238,39,0,0,242,39,0,0,248,39,0,0,252,39,0,0,2,40,0,0,4,40,0,0,4,40,0,0,4,40,0,0,10,40,0,0,10,40,0,0,10,40,0,0,16,40,0,0,18,40,0,0,22,40,0,0,22,40,0,0,30,40,0,0,30,40,0,0,34,40,0,0,34,40,0,0,34,40,0,0,48,40,0,0,54,40,0,0,58,40,0,0,58,40,0,0,58,40,0,0,60,40,0,0,64,40,0,0,68,40,0,0,68,40,0,0,68,40,0,0,68,40,0,0,68,40,0,0,72,40,0,0,72,40,0,0,74,40,0,0,74,40,0,0,80,40,0,0,80,40,0,0,82,40,0,0,82,40,0,0,82,40,0,0,84,40,0,0,86,40,0,0,88,40,0,0,88,40,0,0,88,40,0,0,94,40,0,0,94,40,0,0,94,40,0,0,114,40,0,0,118,40,0,0,122,40,0,0,124,40,0,0,128,40,0,0,128,40,0,0,128,40,0,0,128,40,0,0,128,40,0,0,132,40,0,0,134,40,0,0,134,40,0,0,134,40,0,0,136,40,0,0,148,40,0,0,148,40,0,0,148,40,0,0,150,40,0,0,154,40,0,0,154,40,0,0,164,40,0,0,166,40,0,0,170,40,0,0,170,40,0,0,176,40,0,0,178,40,0,0,180,40,0,0,180,40,0,0,186,40,0,0,186,40,0,0,186,40,0,0,186,40,0,0,188,40,0,0,188,40,0,0,188,40,0,0,196,40,0,0,200,40,0,0,206,40,0,0,208,40,0,0,210,40,0,0,210,40,0,0,216,40,0,0,216,40,0,0,216,40,0,0,218,40,0,0,224,40,0,0,234,40,0,0,234,40,0,0,234,40,0,0,236,40,0,0,236,40,0,0,236,40,0,0,238,40,0,0,240,40,0,0,246,40,0,0,246,40,0,0,246,40,0,0,246,40,0,0,246,40,0,0,4,41,0,0,4,41,0,0,6,41,0,0,6,41,0,0,6,41,0,0,6,41,0,0,6,41,0,0,8,41,0,0,12,41,0,0,12,41,0,0,12,41,0,0,12,41,0,0,12,41,0,0,12,41,0,0,16,41,0,0,16,41,0,0,22,41,0,0,22,41,0,0,22,41,0,0,22,41,0,0,22,41,0,0,26,41,0,0,26,41,0,0,28,41,0,0,32,41,0,0,34,41,0,0,42,41,0,0,42,41,0,0,42,41,0,0,48,41,0,0,60,41,0,0,60,41,0,0,60,41,0,0,64,41,0,0,64,41,0,0,64,41,0,0,64,41,0,0,64,41,0,0,66,41,0,0,68,41,0,0,68,41,0,0,68,41,0,0,68,41,0,0,68,41,0,0,68,41,0,0,68,41,0,0,68,41,0,0,68,41,0,0,68,41,0,0,68,41,0,0,74,41,0,0,78,41,0,0,80,41,0,0,82,41,0,0,82,41,0,0,82,41,0,0,92,41,0,0,92,41,0,0,94,41,0,0,94,41,0,0,94,41,0,0,96,41,0,0,96,41,0,0,100,41,0,0,100,41,0,0,102,41,0,0,102,41,0,0,102,41,0,0,102,41,0,0,108,41,0,0,108,41,0,0,108,41,0,0,110,41,0,0,110,41,0,0,110,41,0,0,112,41,0,0,112,41,0,0,112,41,0,0,112,41,0,0,112,41,0,0,114,41,0,0,118,41,0,0,122,41,0,0,122,41,0,0,122,41,0,0,122,41,0,0,122,41,0,0,122,41,0,0,122,41,0,0,122,41,0,0,130,41,0,0,134,41,0,0,136,41,0,0,140,41,0,0,148,41,0,0,148,41,0,0,154,41,0,0,162,41,0,0,162,41,0,0,166,41,0,0,168,41,0,0,168,41,0,0,168,41,0,0,168,41,0,0,170,41,0,0,170,41,0,0,174,41,0,0,176,41,0,0,178,41,0,0,178,41,0,0,178,41,0,0,182,41,0,0,182,41,0,0,186,41,0,0,186,41,0,0,188,41,0,0,194,41,0,0,194,41,0,0,196,41,0,0,200,41,0,0,200,41,0,0,200,41,0,0,206,41,0,0,206,41,0,0,206,41,0,0,206,41,0,0,208,41,0,0,208,41,0,0,218,41,0,0,218,41,0,0,218,41,0,0,222,41,0,0,222,41,0,0,222,41,0,0,228,41,0,0,228,41,0,0,228,41,0,0,228,41,0,0,230,41,0,0,232,41,0,0,236,41,0,0,242,41,0,0,244,41,0,0,244,41,0,0,246,41,0,0,250,41,0,0,250,41,0,0,250,41,0,0,250,41,0,0,252,41,0,0,252,41,0,0,252,41,0,0,252,41,0,0,252,41,0,0,254,41,0,0,4,42,0,0,8,42,0,0,14,42,0,0,16,42,0,0,16,42,0,0,18,42,0,0,20,42,0,0,20,42,0,0,20,42,0,0,20,42,0,0,24,42,0,0,28,42,0,0,28,42,0,0,28,42,0,0,34,42,0,0,38,42,0,0,38,42,0,0,42,42,0,0,46,42,0,0,46,42,0,0,46,42,0,0,48,42,0,0,48,42,0,0,48,42,0,0,52,42,0,0,52,42,0,0,54,42,0,0,58,42,0,0,64,42,0,0,64,42,0,0,68,42,0,0,68,42,0,0,68,42,0,0,68,42,0,0,72,42,0,0,72,42,0,0,72,42,0,0,72,42,0,0,72,42,0,0,76,42,0,0,76,42,0,0,78,42,0,0,80,42,0,0,80,42,0,0,82,42,0,0,88,42,0,0,90,42,0,0,96,42,0,0,96,42,0,0,96,42,0,0,100,42,0,0,100,42,0,0,102,42,0,0,104,42,0,0,104,42,0,0,104,42,0,0,112,42,0,0,114,42,0,0,114,42,0,0,114,42,0,0,114,42,0,0,116,42,0,0,118,42,0,0,120,42,0,0,120,42,0,0,124,42,0,0,124,42,0,0,124,42,0,0,126,42,0,0,128,42,0,0,128,42,0,0,130,42,0,0,130,42,0,0,130,42,0,0,134,42,0,0,138,42,0,0,140,42,0,0,140,42,0,0,140,42,0,0,140,42,0,0,152,42,0,0,152,42,0,0,152,42,0,0,152,42,0,0,164,42,0,0,166,42,0,0,172,42,0,0,172,42,0,0,172,42,0,0,174,42,0,0,178,42,0,0,184,42,0,0,184,42,0,0,184,42,0,0,184,42,0,0,190,42,0,0,190,42,0,0,192,42,0,0,192,42,0,0,194,42,0,0,196,42,0,0,204,42,0,0,208,42,0,0,208,42,0,0,208,42,0,0,214,42,0,0,214,42,0,0,214,42,0,0,218,42,0,0,218,42,0,0,218,42,0,0,218,42,0,0,218,42,0,0,220,42,0,0,220,42,0,0,224,42,0,0,224,42,0,0,224,42,0,0,224,42,0,0,224,42,0,0,228,42,0,0,228,42,0,0,228,42,0,0,228,42,0,0,240,42,0,0,240,42,0,0,244,42,0,0,244,42,0,0,246,42,0,0,246,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,250,42,0,0,250,42,0,0,252,42,0,0,0,43,0,0,0,43,0,0,6,43,0,0,6,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,14,43,0,0,14,43,0,0,14,43,0,0,18,43,0,0,18,43,0,0,18,43,0,0,18,43,0,0,18,43,0,0,18,43,0,0,24,43,0,0,32,43,0,0,34,43,0,0,34,43,0,0,38,43,0,0,40,43,0,0,42,43,0,0,54,43,0,0,54,43,0,0,54,43,0,0,60,43,0,0,60,43,0,0,60,43,0,0,60,43,0,0,62,43,0,0,64,43,0,0,64,43,0,0,66,43,0,0,66,43,0,0,72,43,0,0,72,43,0,0,72,43,0,0,72,43,0,0,74,43,0,0,76,43,0,0,76,43,0,0,76,43,0,0,76,43,0,0,84,43,0,0,88,43,0,0,90,43,0,0,90,43,0,0,90,43,0,0,90,43,0,0,92,43,0,0,92,43,0,0,92,43,0,0,92,43,0,0,92,43,0,0,94,43,0,0,106,43,0,0,106,43,0,0,110,43,0,0,114,43,0,0,122,43,0,0,128,43,0,0,128,43,0,0,134,43,0,0,136,43,0,0,136,43,0,0,136,43,0,0,136,43,0,0,140,43,0,0,140,43,0,0,140,43,0,0,144,43,0,0,144,43,0,0,144,43,0,0,144,43,0,0,144,43,0,0,148,43,0,0,150,43,0,0,160,43,0,0,162,43,0,0,162,43,0,0,166,43,0,0,168,43,0,0,170,43,0,0,172,43,0,0,172,43,0,0,174,43,0,0,174,43,0,0,178,43,0,0,178,43,0,0,182,43,0,0,190,43,0,0,194,43,0,0,194,43,0,0,196,43,0,0,196,43,0,0,196,43,0,0,196,43,0,0,196,43,0,0,196,43,0,0,196,43,0,0,196,43,0,0,196,43,0,0,196,43,0,0,196,43,0,0,196,43,0,0,198,43,0,0,198,43,0,0,202,43,0,0,202,43,0,0,202,43,0,0,206,43,0,0,212,43,0,0,212,43,0,0,214,43,0,0,220,43,0,0,220,43,0,0,222,43,0,0,222,43,0,0,222,43,0,0,224,43,0,0,226,43,0,0,226,43,0,0,226,43,0,0,228,43,0,0,228,43,0,0,230,43,0,0,230,43,0,0,230,43,0,0,230,43,0,0,230,43,0,0,236,43,0,0,238,43,0,0,240,43,0,0,240,43,0,0,246,43,0,0,252,43,0,0,252,43,0,0,0,44,0,0,0,44,0,0,0,44,0,0,4,44,0,0,4,44,0,0,4,44,0,0,4,44,0,0,6,44,0,0,6,44,0,0,8,44,0,0,10,44,0,0,12,44,0,0,12,44,0,0,12,44,0,0,12,44,0,0,12,44,0,0,14,44,0,0,18,44,0,0,20,44,0,0,20,44,0,0,20,44,0,0,28,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,34,44,0,0,40,44,0,0,40,44,0,0,40,44,0,0,42,44,0,0,48,44,0,0,48,44,0,0,50,44,0,0,52,44,0,0,56,44,0,0,56,44,0,0,56,44,0,0,56,44,0,0,58,44,0,0,58,44,0,0,60,44,0,0,62,44,0,0,62,44,0,0,62,44,0,0,68,44,0,0,68,44,0,0,70,44,0,0,74,44,0,0,76,44,0,0,80,44,0,0,82,44,0,0,88,44,0,0,88,44,0,0,90,44,0,0,90,44,0,0,90,44,0,0,90,44,0,0,90,44,0,0,90,44,0,0,92,44,0,0,96,44,0,0,98,44,0,0,98,44,0,0,104,44,0,0,104,44,0,0,108,44,0,0,108,44,0,0,108,44,0,0,108,44,0,0,110,44,0,0,110,44,0,0,110,44,0,0,110,44,0,0,110,44,0,0,112,44,0,0,114,44,0,0,114,44,0,0,114,44,0,0,114,44,0,0,114,44,0,0,118,44,0,0,120,44,0,0,122,44,0,0,124,44,0,0,124,44,0,0,124,44,0,0,124,44,0,0,124,44,0,0,132,44,0,0,132,44,0,0,132,44,0,0,132,44,0,0,136,44,0,0,136,44,0,0,136,44,0,0,140,44,0,0,140,44,0,0,140,44,0,0,140,44,0,0,140,44,0,0,140,44,0,0,142,44,0,0,142,44,0,0,144,44,0,0,144,44,0,0,144,44,0,0,148,44,0,0,158,44,0,0,162,44,0,0,164,44,0,0,166,44,0,0,176,44,0,0,180,44,0,0,188,44,0,0,190,44,0,0,192,44,0,0,192,44,0,0,196,44,0,0,204,44,0,0,204,44,0,0,206,44,0,0,212,44,0,0,212,44,0,0,214,44,0,0,220,44,0,0,220,44,0,0,224,44,0,0,224,44,0,0,224,44,0,0,226,44,0,0,230,44,0,0,236,44,0,0,236,44,0,0,236,44,0,0,240,44,0,0,240,44,0,0,240,44,0,0,240,44,0,0,244,44,0,0,244,44,0,0,244,44,0,0,244,44,0,0,244,44,0,0,244,44,0,0,246,44,0,0,248,44,0,0,250,44,0,0,250,44,0,0,250,44,0,0,250,44,0,0,2,45,0,0,12,45,0,0,16,45,0,0,16,45,0,0,24,45,0,0,24,45,0,0,28,45,0,0,28,45,0,0,28,45,0,0,28,45,0,0,30,45,0,0,34,45,0,0,36,45,0,0,36,45,0,0,38,45,0,0,40,45,0,0,40,45,0,0,42,45,0,0,44,45,0,0,54,45,0,0,56,45,0,0,58,45,0,0,58,45,0,0,58,45,0,0,62,45,0,0,64,45,0,0,64,45,0,0,70,45,0,0,78,45,0,0,82,45,0,0,82,45,0,0,88,45,0,0,88,45,0,0,88,45,0,0,88,45,0,0,88,45,0,0,88,45,0,0,92,45,0,0,92,45,0,0,92,45,0,0,92,45,0,0,92,45,0,0,96,45,0,0,98,45,0,0,98,45,0,0,104,45,0,0,106,45,0,0,106,45,0,0,106,45,0,0,108,45,0,0,108,45,0,0,108,45,0,0,108,45,0,0,108,45,0,0,110,45,0,0,112,45,0,0,116,45,0,0,116,45,0,0,116,45,0,0,126,45,0,0,126,45,0,0,126,45,0,0,128,45,0,0,130,45,0,0,132,45,0,0,132,45,0,0,132,45,0,0,134,45,0,0,136,45,0,0,142,45,0,0,142,45,0,0,150,45,0,0,160,45,0,0,160,45,0,0,162,45,0,0,164,45,0,0,164,45,0,0,170,45,0,0,170,45,0,0,170,45,0,0,170,45,0,0,170,45,0,0,178,45,0,0,186,45,0,0,186,45,0,0,186,45,0,0,188,45,0,0,190,45,0,0,192,45,0,0,192,45,0,0,192,45,0,0,194,45,0,0,194,45,0,0,204,45,0,0,204,45,0,0,204,45,0,0,204,45,0,0,210,45,0,0,210,45,0,0,212,45,0,0,214,45,0,0,214,45,0,0,216,45,0,0,218,45,0,0,218,45,0,0,218,45,0,0,218,45,0,0,218,45,0,0,222,45,0,0,222,45,0,0,222,45,0,0,228,45,0,0,232,45,0,0,232,45,0,0,232,45,0,0,234,45,0,0,234,45,0,0,234,45,0,0,234,45,0,0,234,45,0,0,238,45,0,0,240,45,0,0,240,45,0,0,242,45,0,0,242,45,0,0,248,45,0,0,248,45,0,0,252,45,0,0,252,45,0,0,254,45,0,0,254,45,0,0,254,45,0,0,0,46,0,0,0,46,0,0,4,46,0,0,4,46,0,0,4,46,0,0,4,46,0,0,6,46,0,0,6,46,0,0,6,46,0,0,6,46,0,0,8,46,0,0,14,46,0,0,18,46,0,0,20,46,0,0,20,46,0,0,22,46,0,0,22,46,0,0,22,46,0,0,22,46,0,0,22,46,0,0,22,46,0,0,24,46,0,0,24,46,0,0,24,46,0,0,28,46,0,0,28,46,0,0,32,46,0,0,38,46,0,0,40,46,0,0,40,46,0,0,40,46,0,0,40,46,0,0,40,46,0,0,42,46,0,0,44,46,0,0,44,46,0,0,44,46,0,0,46,46,0,0,46,46,0,0,52,46,0,0,58,46,0,0,60,46,0,0,62,46,0,0,64,46,0,0,66,46,0,0,70,46,0,0,74,46,0,0,74,46,0,0,74,46,0,0,76,46,0,0,84,46,0,0,84,46,0,0,86,46,0,0,86,46,0,0,86,46,0,0,86,46,0,0,86,46,0,0,86,46,0,0,86,46,0,0,88,46,0,0,88,46,0,0,88,46,0,0,98,46,0,0,100,46,0,0,100,46,0,0,104,46,0,0,108,46,0,0,114,46,0,0,114,46,0,0,114,46,0,0,114,46,0,0,122,46,0,0,124,46,0,0,124,46,0,0,124,46,0,0,126,46,0,0,126,46,0,0,126,46,0,0,126,46,0,0,128,46,0,0,128,46,0,0,128,46,0,0,132,46,0,0,134,46,0,0,138,46,0,0,140,46,0,0,142,46,0,0,142,46,0,0,146,46,0,0,146,46,0,0,148,46,0,0,148,46,0,0,150,46,0,0,150,46,0,0,150,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,160,46,0,0,166,46,0,0,166,46,0,0,166,46,0,0,168,46,0,0,172,46,0,0,172,46,0,0,172,46,0,0,172,46,0,0,172,46,0,0,174,46,0,0,176,46,0,0,176,46,0,0,180,46,0,0,184,46,0,0,188,46,0,0,192,46,0,0,192,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,202,46,0,0,204,46,0,0,204,46,0,0,206,46,0,0,206,46,0,0,206,46,0,0,208,46,0,0,212,46,0,0,214,46,0,0,216,46,0,0,218,46,0,0,244,46,0,0,246,46,0,0,0,47,0,0,4,47,0,0,12,47,0,0,14,47,0,0,14,47,0,0,14,47,0,0,16,47,0,0,16,47,0,0,18,47,0,0,20,47,0,0,28,47,0,0,34,47,0,0,36,47,0,0,36,47,0,0,36,47,0,0,36,47,0,0,38,47,0,0,38,47,0,0,48,47,0,0,48,47,0,0,48,47,0,0,48,47,0,0,50,47,0,0,64,47,0,0,68,47,0,0,70,47,0,0,70,47,0,0,78,47,0,0,78,47,0,0,78,47,0,0,78,47,0,0,78,47,0,0,78,47,0,0,78,47,0,0,80,47,0,0,82,47,0,0,82,47,0,0,84,47,0,0,84,47,0,0,84,47,0,0,88,47,0,0,88,47,0,0,90,47,0,0,96,47,0,0,100,47,0,0,100,47,0,0,100,47,0,0,100,47,0,0,104,47,0,0,106,47,0,0,106,47,0,0,106,47,0,0,108,47,0,0,110,47,0,0,110,47,0,0,112,47,0,0,118,47,0,0,124,47,0,0,124,47,0,0,126,47,0,0,126,47,0,0,130,47,0,0,140,47,0,0,140,47,0,0,140,47,0,0,140,47,0,0,144,47,0,0,144,47,0,0,146,47,0,0,148,47,0,0,158,47,0,0,158,47,0,0,158,47,0,0,158,47,0,0,158,47,0,0,158,47,0,0,162,47,0,0,162,47,0,0,174,47,0,0,176,47,0,0,178,47,0,0,178,47,0,0,178,47,0,0,178,47,0,0,182,47,0,0,184,47,0,0,190,47,0,0,194,47,0,0,198,47,0,0,200,47,0,0,200,47,0,0,200,47,0,0,200,47,0,0,200,47,0,0,200,47,0,0,204,47,0,0,206,47,0,0,206,47,0,0,208,47,0,0,208,47,0,0,208,47,0,0,218,47,0,0,218,47,0,0,218,47,0,0,224,47,0,0,224,47,0,0,228,47,0,0,228,47,0,0,228,47,0,0,228,47,0,0,228,47,0,0,228,47,0,0,230,47,0,0,232,47,0,0,236,47,0,0,238,47,0,0,240,47,0,0,244,47,0,0,244,47,0,0,244,47,0,0,244,47,0,0,244,47,0,0,246,47,0,0,250,47,0,0,252,47,0,0,254,47,0,0,254,47,0,0,254,47,0,0,254,47,0,0,254,47,0,0,254,47,0,0,254,47,0,0,254,47,0,0,4,48,0,0,6,48,0,0,6,48,0,0,6,48,0,0,6,48,0,0,6,48,0,0,8,48,0,0,8,48,0,0,14,48,0,0,16,48,0,0,16,48,0,0,16,48,0,0,16,48,0,0,18,48,0,0,18,48,0,0,18,48,0,0,18,48,0,0,30,48,0,0,30,48,0,0,36,48,0,0,36,48,0,0,36,48,0,0,38,48,0,0,38,48,0,0,40,48,0,0,40,48,0,0,40,48,0,0,40,48,0,0,40,48,0,0,42,48,0,0,42,48,0,0,44,48,0,0,48,48,0,0,48,48,0,0,50,48,0,0,62,48,0,0,64,48,0,0,64,48,0,0,64,48,0,0,66,48,0,0,66,48,0,0,68,48,0,0,72,48,0,0,72,48,0,0,74,48,0,0,74,48,0,0,74,48,0,0,74,48,0,0,76,48,0,0,76,48,0,0,78,48,0,0,84,48,0,0,84,48,0,0,84,48,0,0,84,48,0,0,84,48,0,0,84,48,0,0,84,48,0,0,88,48,0,0,88,48,0,0,88,48,0,0,90,48,0,0,90,48,0,0,90,48,0,0,92,48,0,0,96,48,0,0,98,48,0,0,100,48,0,0,100,48,0,0,104,48,0,0,104,48,0,0,110,48,0,0,110,48,0,0,112,48,0,0,112,48,0,0,112,48,0,0,114,48,0,0,114,48,0,0,114,48,0,0,118,48,0,0,120,48,0,0,122,48,0,0,122,48,0,0,122,48,0,0,126,48,0,0,126,48,0,0,128,48,0,0,128,48,0,0,130,48,0,0,130,48,0,0,130,48,0,0,130,48,0,0,130,48,0,0,132,48,0,0,132,48,0,0,140,48,0,0,140,48,0,0,140,48,0,0,142,48,0,0,150,48,0,0,150,48,0,0,150,48,0,0,150,48,0,0,150,48,0,0,152,48,0,0,152,48,0,0,154,48,0,0,158,48,0,0,158,48,0,0,158,48,0,0,160,48,0,0,160,48,0,0,160,48,0,0,162,48,0,0,170,48,0,0,170,48,0,0,172,48,0,0,174,48,0,0,174,48,0,0,180,48,0,0,180,48,0,0,180,48,0,0,184,48,0,0,184,48,0,0,188,48,0,0,194,48,0,0,194,48,0,0,196,48,0,0,196,48,0,0,198,48,0,0,200,48,0,0,202,48,0,0,204,48,0,0,204,48,0,0,214,48,0,0,218,48,0,0,218,48,0,0,218,48,0,0,218,48,0,0,218,48,0,0,218,48,0,0,222,48,0,0,222,48,0,0,228,48,0,0,228,48,0,0,240,48,0,0,240,48,0,0,240,48,0,0,242,48,0,0,248,48,0,0,248,48,0,0,250,48,0,0,254,48,0,0,254,48,0,0,254,48,0,0,254,48,0,0,0,49,0,0,4,49,0,0,4,49,0,0,16,49,0,0,16,49,0,0,16,49,0,0,16,49,0,0,26,49,0,0,26,49,0,0,30,49,0,0,34,49,0,0,38,49,0,0,38,49,0,0,40,49,0,0,42,49,0,0,42,49,0,0,44,49,0,0,44,49,0,0,44,49,0,0,44,49,0,0,50,49,0,0,50,49,0,0,50,49,0,0,50,49,0,0,54,49,0,0,58,49,0,0,58,49,0,0,58,49,0,0,58,49,0,0,60,49,0,0,60,49,0,0,60,49,0,0,72,49,0,0,76,49,0,0,86,49,0,0,86,49,0,0,86,49,0,0,86,49,0,0,86,49,0,0,88,49,0,0,88,49,0,0,88,49,0,0,88,49,0,0,88,49,0,0,88,49,0,0,90,49,0,0,94,49,0,0,94,49,0,0,96,49,0,0,96,49,0,0,96,49,0,0,96,49,0,0,96,49,0,0,100,49,0,0,106,49,0,0,114,49,0,0,114,49,0,0,114,49,0,0,114,49,0,0,114,49,0,0,114,49,0,0,118,49,0,0,118,49,0,0,118,49,0,0,120,49,0,0,122,49,0,0,122,49,0,0,122,49,0,0,122,49,0,0,124,49,0,0,126,49,0,0,126,49,0,0,130,49,0,0,132,49,0,0,132,49,0,0,136,49,0,0,136,49,0,0,136,49,0,0,142,49,0,0,142,49,0,0,142,49,0,0,146,49,0,0,146,49,0,0,156,49,0,0,158,49,0,0,162,49,0,0,162,49,0,0,162,49,0,0,162,49,0,0,164,49,0,0,164,49,0,0,170,49,0,0,172,49,0,0,176,49,0,0,176,49,0,0,176,49,0,0,176,49,0,0,178,49,0,0,178,49,0,0,178,49,0,0,178,49,0,0,182,49,0,0,190,49,0,0,194,49,0,0,194,49,0,0,194,49,0,0,194,49,0,0,196,49,0,0,196,49,0,0,196,49,0,0,198,49,0,0,200,49,0,0,202,49,0,0,204,49,0,0,204,49,0,0,204,49,0,0,204,49,0,0,206,49,0,0,208,49,0,0,208,49,0,0,210,49,0,0,212,49,0,0,214,49,0,0,214,49,0,0,214,49,0,0,220,49,0,0,220,49,0,0,220,49,0,0,224,49,0,0,224,49,0,0,226,49,0,0,230,49,0,0,230,49,0,0,232,49,0,0,232,49,0,0,244,49,0,0,244,49,0,0,244,49,0,0,246,49,0,0,0,50,0,0,0,50,0,0,0,50,0,0,0,50,0,0,0,50,0,0,0,50,0,0,6,50,0,0,6,50,0,0,6,50,0,0,6,50,0,0,6,50,0,0,6,50,0,0,6,50,0,0,8,50,0,0,8,50,0,0,8,50,0,0,20,50,0,0,22,50,0,0,22,50,0,0,22,50,0,0,24,50,0,0,28,50,0,0,28,50,0,0,28,50,0,0,30,50,0,0,30,50,0,0,30,50,0,0,30,50,0,0,32,50,0,0,38,50,0,0,38,50,0,0,48,50,0,0,48,50,0,0,50,50,0,0,50,50,0,0,52,50,0,0,52,50,0,0,52,50,0,0,58,50,0,0,58,50,0,0,58,50,0,0,58,50,0,0,58,50,0,0,60,50,0,0,60,50,0,0,60,50,0,0,62,50,0,0,62,50,0,0,62,50,0,0,62,50,0,0,64,50,0,0,70,50,0,0,72,50,0,0,72,50,0,0,72,50,0,0,74,50,0,0,78,50,0,0,80,50,0,0,86,50,0,0,86,50,0,0,88,50,0,0,90,50,0,0,92,50,0,0,100,50,0,0,100,50,0,0,104,50,0,0,104,50,0,0,104,50,0,0,104,50,0,0,108,50,0,0,108,50,0,0,110,50,0,0,110,50,0,0,114,50,0,0,114,50,0,0,116,50,0,0,122,50,0,0,122,50,0,0,122,50,0,0,128,50,0,0,128,50,0,0,136,50,0,0,138,50,0,0,140,50,0,0,148,50,0,0,150,50,0,0,152,50,0,0,154,50,0,0,154,50,0,0,156,50,0,0,156,50,0,0,162,50,0,0,162,50,0,0,170,50,0,0,170,50,0,0,170,50,0,0,170,50,0,0,174,50,0,0,176,50,0,0,176,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,184,50,0,0,186,50,0,0,186,50,0,0,186,50,0,0,188,50,0,0,190,50,0,0,194,50,0,0,194,50,0,0,200,50,0,0,200,50,0,0,202,50,0,0,206,50,0,0,206,50,0,0,206,50,0,0,206,50,0,0,208,50,0,0,216,50,0,0,216,50,0,0,218,50,0,0,218,50,0,0,218,50,0,0,224,50,0,0,224,50,0,0,224,50,0,0,224,50,0,0,224,50,0,0,230,50,0,0,232,50,0,0,232,50,0,0,234,50,0,0,236,50,0,0,242,50,0,0,242,50,0,0,242,50,0,0,246,50,0,0,250,50,0,0,252,50,0,0,252,50,0,0,12,51,0,0,16,51,0,0,16,51,0,0,18,51,0,0,22,51,0,0,24,51,0,0,26,51,0,0,26,51,0,0,26,51,0,0,26,51,0,0,28,51,0,0,28,51,0,0,32,51,0,0,32,51,0,0,34,51,0,0,34,51,0,0,34,51,0,0,34,51,0,0,34,51,0,0,34,51,0,0,36,51,0,0,36,51,0,0,38,51,0,0,38,51,0,0,38,51,0,0,38,51,0,0,40,51,0,0,40,51,0,0,42,51,0,0,46,51,0,0,46,51,0,0,46,51,0,0,48,51,0,0,48,51,0,0,48,51,0,0,50,51,0,0,50,51,0,0,50,51,0,0,50,51,0,0,50,51,0,0,58,51,0,0,58,51,0,0,62,51,0,0,62,51,0,0,68,51,0,0,70,51,0,0,72,51,0,0,74,51,0,0,76,51,0,0,76,51,0,0,76,51,0,0,76,51,0,0,82,51,0,0,82,51,0,0,86,51,0,0,94,51,0,0,102,51,0,0,102,51,0,0,102,51,0,0,102,51,0,0,102,51,0,0,102,51,0,0,104,51,0,0,104,51,0,0,104,51,0,0,110,51,0,0,110,51,0,0,110,51,0,0,114,51,0,0,114,51,0,0,120,51,0,0,122,51,0,0,130,51,0,0,130,51,0,0,130,51,0,0,130,51,0,0,130,51,0,0,130,51,0,0,132,51,0,0,138,51,0,0,140,51,0,0,140,51,0,0,140,51,0,0,140,51,0,0,144,51,0,0,144,51,0,0,146,51,0,0,148,51,0,0,150,51,0,0,150,51,0,0,150,51,0,0,150,51,0,0,150,51,0,0,150,51,0,0,150,51,0,0,150,51,0,0,150,51,0,0,158,51,0,0,160,51,0,0,164,51,0,0,164,51,0,0,164,51,0,0,164,51,0,0,166,51,0,0,166,51,0,0,168,51,0,0,168,51,0,0,168,51,0,0,172,51,0,0,176,51,0,0,176,51,0,0,184,51,0,0,186,51,0,0,186,51,0,0,186,51,0,0,186,51,0,0,188,51,0,0,192,51,0,0,192,51,0,0,192,51,0,0,198,51,0,0,202,51,0,0,202,51,0,0,202,51,0,0,202,51,0,0,210,51,0,0,212,51,0,0,212,51,0,0,214,51,0,0,216,51,0,0,216,51,0,0,216,51,0,0,218,51,0,0,218,51,0,0,220,51,0,0,220,51,0,0,220,51,0,0,220,51,0,0,222,51,0,0,222,51,0,0,222,51,0,0,234,51,0,0,236,51,0,0,240,51,0,0,244,51,0,0,246,51,0,0,246,51,0,0,246,51,0,0,248,51,0,0,248,51,0,0,252,51,0,0,0,52,0,0,0,52,0,0,10,52,0,0,12,52,0,0,12,52,0,0,12,52,0,0,14,52,0,0,18,52,0,0,18,52,0,0,18,52,0,0,22,52,0,0,28,52,0,0,34,52,0,0,38,52,0,0,40,52,0,0,42,52,0,0,44,52,0,0,58,52,0,0,60,52,0,0,60,52,0,0,60,52,0,0,62,52,0,0,66,52,0,0,66,52,0,0,66,52,0,0,70,52,0,0,70,52,0,0,70,52,0,0,70,52,0,0,70,52,0,0,80,52,0,0,80,52,0,0,84,52,0,0,86,52,0,0,86,52,0,0,94,52,0,0,94,52,0,0,100,52,0,0,102,52,0,0,116,52,0,0,116,52,0,0,118,52,0,0,120,52,0,0,120,52,0,0,120,52,0,0,124,52,0,0,124,52,0,0,124,52,0,0,128,52,0,0,128,52,0,0,128,52,0,0,132,52,0,0,132,52,0,0,134,52,0,0,134,52,0,0,140,52,0,0,140,52,0,0,144,52,0,0,144,52,0,0,144,52,0,0,146,52,0,0,150,52,0,0,152,52,0,0,152,52,0,0,156,52,0,0,158,52,0,0,158,52,0,0,162,52,0,0,164,52,0,0,168,52,0,0,168,52,0,0,168,52,0,0,174,52,0,0,174,52,0,0,174,52,0,0,180,52,0,0,180,52,0,0,180,52,0,0,180,52,0,0,180,52,0,0,182,52,0,0,186,52,0,0,188,52,0,0,188,52,0,0,198,52,0,0,200,52,0,0,210,52,0,0,210,52,0,0,210,52,0,0,214,52,0,0,222,52,0,0,222,52,0,0,222,52,0,0,224,52,0,0,226,52,0,0,226,52,0,0,230,52,0,0,230,52,0,0,230,52,0,0,236,52,0,0,244,52,0,0,246,52,0,0,246,52,0,0,252,52,0,0,254,52,0,0,254,52,0,0,0,53,0,0,6,53,0,0,10,53,0,0,10,53,0,0,10,53,0,0,16,53,0,0,20,53,0,0,22,53,0,0,22,53,0,0,24,53,0,0,24,53,0,0,26,53,0,0,26,53,0,0,26,53,0,0,26,53,0,0,30,53,0,0,32,53,0,0,32,53,0,0,36,53,0,0,40,53,0,0,40,53,0,0,50,53,0,0,50,53,0,0,50,53,0,0,52,53,0,0,56,53,0,0,58,53,0,0,66,53,0,0,66,53,0,0,66,53,0,0,66,53,0,0,66,53,0,0,72,53,0,0,72,53,0,0,72,53,0,0,72,53,0,0,72,53,0,0,76,53,0,0,76,53,0,0,82,53,0,0,86,53,0,0,86,53,0,0,92,53,0,0,92,53,0,0,92,53,0,0,92,53,0,0,98,53,0,0,98,53,0,0,98,53,0,0,98,53,0,0,100,53,0,0,108,53,0,0,108,53,0,0,108,53,0,0,112,53,0,0,112,53,0,0,116,53,0,0,116,53,0,0,116,53,0,0,118,53,0,0,120,53,0,0,126,53,0,0,128,53,0,0,130,53,0,0,134,53,0,0,134,53,0,0,136,53,0,0,138,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,142,53,0,0,148,53,0,0,154,53,0,0,154,53,0,0,154,53,0,0,154,53,0,0,156,53,0,0,156,53,0,0,156,53,0,0,156,53,0,0,156,53,0,0,160,53,0,0,160,53,0,0,162,53,0,0,162,53,0,0,162,53,0,0,172,53,0,0,176,53,0,0,176,53,0,0,180,53,0,0,186,53,0,0,186,53,0,0,190,53,0,0,190,53,0,0,190,53,0,0,190,53,0,0,190,53,0,0,192,53,0,0,192,53,0,0,192,53,0,0,198,53,0,0,202,53,0,0,202,53,0,0,202,53,0,0,206,53,0,0,206,53,0,0,216,53,0,0,220,53,0,0,226,53,0,0,228,53,0,0,234,53,0,0,234,53,0,0,234,53,0,0,236,53,0,0,236,53,0,0,236,53,0,0,236,53,0,0,236,53,0,0,236,53,0,0,238,53,0,0,238,53,0,0,244,53,0,0,248,53,0,0,250,53,0,0,252,53,0,0,252,53,0,0,254,53,0,0,0,54,0,0,2,54,0,0,2,54,0,0,4,54,0,0,12,54,0,0,16,54,0,0,18,54,0,0,24,54,0,0,24,54,0,0,28,54,0,0,28,54,0,0,32,54,0,0,32,54,0,0,32,54,0,0,32,54,0,0,38,54,0,0,40,54,0,0,52,54,0,0,52,54,0,0,52,54,0,0,52,54,0,0,58,54,0,0,58,54,0,0,60,54,0,0,64,54,0,0,64,54,0,0,68,54,0,0,68,54,0,0,72,54,0,0,72,54,0,0,74,54,0,0,80,54,0,0,80,54,0,0,80,54,0,0,80,54,0,0,84,54,0,0,86,54,0,0,86,54,0,0,86,54,0,0,90,54,0,0,90,54,0,0,90,54,0,0,90,54,0,0,102,54,0,0,102,54,0,0,102,54,0,0,104,54,0,0,104,54,0,0,104,54,0,0,108,54,0,0,112,54,0,0,116,54,0,0,116,54,0,0,116,54,0,0,116,54,0,0,116,54,0,0,116,54,0,0,116,54,0,0,120,54,0,0,122,54,0,0,122,54,0,0,128,54,0,0,132,54,0,0,132,54,0,0,132,54,0,0,132,54,0,0,132,54,0,0,134,54,0,0,136,54,0,0,136,54,0,0,136,54,0,0,136,54,0,0,138,54,0,0,142,54,0,0,150,54,0,0,152,54,0,0,152,54,0,0,152,54,0,0,158,54,0,0,158,54,0,0,158,54,0,0,168,54,0,0,168,54,0,0,168,54,0,0,168,54,0,0,168,54,0,0,172,54,0,0,184,54,0,0,184,54,0,0,186,54,0,0,186,54,0,0,190,54,0,0,190,54,0,0,192,54,0,0,192,54,0,0,194,54,0,0,194,54,0,0,196,54,0,0,200,54,0,0,202,54,0,0,202,54,0,0,210,54,0,0,214,54,0,0,214,54,0,0,214,54,0,0,216,54,0,0,220,54,0,0,230,54,0,0,234,54,0,0,236,54,0,0,242,54,0,0,242,54,0,0,242,54,0,0,244,54,0,0,244,54,0,0,244,54,0,0,248,54,0,0,248,54,0,0,254,54,0,0,254,54,0,0,0,55,0,0,6,55,0,0,10,55,0,0,14,55,0,0,14,55,0,0,16,55,0,0,18,55,0,0,20,55,0,0,20,55,0,0,20,55,0,0,20,55,0,0,20,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,28,55,0,0,34,55,0,0,40,55,0,0,42,55,0,0,42,55,0,0,44,55,0,0,44,55,0,0,46,55,0,0,46,55,0,0,46,55,0,0,46,55,0,0,46,55,0,0,50,55,0,0,50,55,0,0,50,55,0,0,50,55,0,0,54,55,0,0,62,55,0,0,64,55,0,0,64,55,0,0,64,55,0,0,66,55,0,0,68,55,0,0,68,55,0,0,68,55,0,0,68,55,0,0,68,55,0,0,68,55,0,0,68,55,0,0,74,55,0,0,76,55,0,0,76,55,0,0,82,55,0,0,82,55,0,0,82,55,0,0,84,55,0,0,84,55,0,0,86,55,0,0,92,55,0,0,92,55,0,0,96,55,0,0,98,55,0,0,100,55,0,0,100,55,0,0,102,55,0,0,102,55,0,0,108,55,0,0,108,55,0,0,108,55,0,0,112,55,0,0,116,55,0,0,116,55,0,0,116,55,0,0,116,55,0,0,120,55,0,0,128,55,0,0,128,55,0,0,130,55,0,0,132,55,0,0,132,55,0,0,134,55,0,0,136,55,0,0,138,55,0,0,142,55,0,0,142,55,0,0,144,55,0,0,144,55,0,0,148,55,0,0,148,55,0,0,148,55,0,0,148,55,0,0,150,55,0,0,152,55,0,0,152,55,0,0,152,55,0,0,152,55,0,0,154,55,0,0,154,55,0,0,154,55,0,0,158,55,0,0,158,55,0,0,158,55,0,0,158,55,0,0,158,55,0,0,162,55,0,0,164,55,0,0,166,55,0,0,166,55,0,0,168,55,0,0,168,55,0,0,170,55,0,0,172,55,0,0,172,55,0,0,172,55,0,0,172,55,0,0,174,55,0,0,176,55,0,0,176,55,0,0,178,55,0,0,178,55,0,0,178,55,0,0,180,55,0,0,180,55,0,0,180,55,0,0,180,55,0,0,180,55,0,0,180,55,0,0,180,55,0,0,180,55,0,0,180,55,0,0,182,55,0,0,182,55,0,0,182,55,0,0,182,55,0,0,182,55,0,0,182,55,0,0,182,55,0,0,182,55,0,0,182,55,0,0,182,55,0,0,186,55,0,0,190,55,0,0,190,55,0,0,190,55,0,0,194,55,0,0,194,55,0,0,196,55,0,0,196,55,0,0,196,55,0,0,196,55,0,0,202,55,0,0,204,55,0,0,208,55,0,0,212,55,0,0,214,55,0,0,214,55,0,0,218,55,0,0,218,55,0,0,218,55,0,0,218,55,0,0,218,55,0,0,220,55,0,0,220,55,0,0,222,55,0,0,230,55,0,0,230,55,0,0,230,55,0,0,236,55,0,0,240,55,0,0,242,55,0,0,246,55,0,0,246,55,0,0,248,55,0,0,250,55,0,0,250,55,0,0,2,56,0,0,2,56,0,0,6,56,0,0,10,56,0,0,22,56,0,0,26,56,0,0,26,56,0,0,28,56,0,0,28,56,0,0,30,56,0,0,32,56,0,0,38,56,0,0,42,56,0,0,42,56,0,0,42,56,0,0,46,56,0,0,48,56,0,0,48,56,0,0,48,56,0,0,48,56,0,0,48,56,0,0,48,56,0,0,48,56,0,0,48,56,0,0,50,56,0,0,52,56,0,0,56,56,0,0,56,56,0,0,58,56,0,0,58,56,0,0,64,56,0,0,64,56,0,0,68,56,0,0,68,56,0,0,68,56,0,0,68,56,0,0,68,56,0,0,76,56,0,0,78,56,0,0,78,56,0,0,78,56,0,0,78,56,0,0,80,56,0,0,80,56,0,0,80,56,0,0,82,56,0,0,82,56,0,0,82,56,0,0,86,56,0,0,86,56,0,0,88,56,0,0,88,56,0,0,88,56,0,0,90,56,0,0,92,56,0,0,94,56,0,0,94,56,0,0,94,56,0,0,94,56,0,0,94,56,0,0,94,56,0,0,94,56,0,0,94,56,0,0,96,56,0,0,98,56,0,0,100,56,0,0,108,56,0,0,108,56,0,0,108,56,0,0,108,56,0,0,118,56,0,0,118,56,0,0,118,56,0,0,118,56,0,0,118,56,0,0,120,56,0,0,130,56,0,0,130,56,0,0,130,56,0,0,136,56,0,0,136,56,0,0,140,56,0,0,142,56,0,0,144,56,0,0,144,56,0,0,148,56,0,0,152,56,0,0,162,56,0,0,162,56,0,0,162,56,0,0,162,56,0,0,162,56,0,0,164,56,0,0,164,56,0,0,166,56,0,0,168,56,0,0,172,56,0,0,174,56,0,0,174,56,0,0,174,56,0,0,176,56,0,0,176,56,0,0,176,56,0,0,180,56,0,0,180,56,0,0,184,56,0,0,184,56,0,0,188,56,0,0,190,56,0,0,194,56,0,0,194,56,0,0,200,56,0,0,200,56,0,0,200,56,0,0,200,56,0,0,200,56,0,0,202,56,0,0,202,56,0,0,208,56,0,0,208,56,0,0,210,56,0,0,210,56,0,0,210,56,0,0,214,56,0,0,214,56,0,0,214,56,0,0,216,56,0,0,216,56,0,0,220,56,0,0,220,56,0,0,224,56,0,0,226,56,0,0,226,56,0,0,228,56,0,0,228,56,0,0,228,56,0,0,228,56,0,0,230,56,0,0,234,56,0,0,234,56,0,0,234,56,0,0,238,56,0,0,240,56,0,0,242,56,0,0,242,56,0,0,242,56,0,0,242,56,0,0,242,56,0,0,244,56,0,0,254,56,0,0,4,57,0,0,4,57,0,0,8,57,0,0,16,57,0,0,22,57,0,0,24,57,0,0,24,57,0,0,24,57,0,0,28,57,0,0,34,57,0,0,44,57,0,0,46,57,0,0,46,57,0,0,48,57,0,0,48,57,0,0,48,57,0,0,52,57,0,0,52,57,0,0,52,57,0,0,56,57,0,0,58,57,0,0,60,57,0,0,60,57,0,0,60,57,0,0,60,57,0,0,60,57,0,0,60,57,0,0,60,57,0,0,62,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,68,57,0,0,68,57,0,0,70,57,0,0,72,57,0,0,72,57,0,0,72,57,0,0,76,57,0,0,76,57,0,0,78,57,0,0,78,57,0,0,80,57,0,0,84,57,0,0,84,57,0,0,88,57,0,0,88,57,0,0,92,57,0,0,92,57,0,0,94,57,0,0,94,57,0,0,94,57,0,0,96,57,0,0,100,57,0,0,100,57,0,0,100,57,0,0,100,57,0,0,100,57,0,0,102,57,0,0,104,57,0,0,112,57,0,0,112,57,0,0,120,57,0,0,120,57,0,0,124,57,0,0,124,57,0,0,128,57,0,0,130,57,0,0,130,57,0,0,132,57,0,0,132,57,0,0,138,57,0,0,138,57,0,0,142,57,0,0,142,57,0,0,142,57,0,0,142,57,0,0,142,57,0,0,146,57,0,0,146,57,0,0,146,57,0,0,152,57,0,0,156,57,0,0,158,57,0,0,160,57,0,0,160,57,0,0,168,57,0,0,168,57,0,0,174,57,0,0,178,57,0,0,178,57,0,0,184,57,0,0,192,57,0,0,194,57,0,0,198,57,0,0,202,57,0,0,202,57,0,0,204,57,0,0,204,57,0,0,204,57,0,0,206,57,0,0,216,57,0,0,216,57,0,0,218,57,0,0,220,57,0,0,220,57,0,0,222,57,0,0,222,57,0,0,226,57,0,0,228,57,0,0,228,57,0,0,232,57,0,0,234,57,0,0,234,57,0,0,234,57,0,0,234,57,0,0,236,57,0,0,236,57,0,0,236,57,0,0,236,57,0,0,236,57,0,0,236,57,0,0,238,57,0,0,238,57,0,0,238,57,0,0,240,57,0,0,240,57,0,0,240,57,0,0,240,57,0,0,248,57,0,0,0,58,0,0,0,58,0,0,0,58,0,0,0,58,0,0,4,58,0,0,8,58,0,0,8,58,0,0,10,58,0,0,10,58,0,0,10,58,0,0,12,58,0,0,12,58,0,0,12,58,0,0,12,58,0,0,12,58,0,0,12,58,0,0,18,58,0,0,30,58,0,0,30,58,0,0,38,58,0,0,40,58,0,0,40,58,0,0,40,58,0,0,40,58,0,0,42,58,0,0,44,58,0,0,44,58,0,0,44,58,0,0,44,58,0,0,44,58,0,0,48,58,0,0,48,58,0,0,50,58,0,0,52,58,0,0,54,58,0,0,54,58,0,0,56,58,0,0,58,58,0,0,60,58,0,0,62,58,0,0,64,58,0,0,70,58,0,0,72,58,0,0,76,58,0,0,76,58,0,0,76,58,0,0,78,58,0,0,84,58,0,0,84,58,0,0,84,58,0,0,88,58,0,0,88,58,0,0,88,58,0,0,90,58,0,0,90,58,0,0,96,58,0,0,98,58,0,0,98,58,0,0,100,58,0,0,100,58,0,0,106,58,0,0,106,58,0,0,106,58,0,0,110,58,0,0,110,58,0,0,112,58,0,0,116,58,0,0,120,58,0,0,120,58,0,0,122,58,0,0,122,58,0,0,122,58,0,0,124,58,0,0,124,58,0,0,124,58,0,0,124,58,0,0,130,58,0,0,132,58,0,0,134,58,0,0,134,58,0,0,134,58,0,0,136,58,0,0,136,58,0,0,136,58,0,0,136,58,0,0,144,58,0,0,146,58,0,0,146,58,0,0,146,58,0,0,146,58,0,0,152,58,0,0,152,58,0,0,152,58,0,0,152,58,0,0,152,58,0,0,152,58,0,0,154,58,0,0,154,58,0,0,154,58,0,0,158,58,0,0,158,58,0,0,158,58,0,0,158,58,0,0,158,58,0,0,158,58,0,0,166,58,0,0,166,58,0,0,166,58,0,0,166,58,0,0,166,58,0,0,166,58,0,0,166,58,0,0,168,58,0,0,180,58,0,0,186,58,0,0,190,58,0,0,204,58,0,0,204,58,0,0,208,58,0,0,208,58,0,0,214,58,0,0,214,58,0,0,218,58,0,0,218,58,0,0,218,58,0,0,218,58,0,0,218,58,0,0,222,58,0,0,222,58,0,0,222,58,0,0,222,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,230,58,0,0,230,58,0,0,234,58,0,0,234,58,0,0,234,58,0,0,242,58,0,0,246,58,0,0,250,58,0,0,0,59,0,0,4,59,0,0,6,59,0,0,6,59,0,0,10,59,0,0,14,59,0,0,14,59,0,0,20,59,0,0,22,59,0,0,28,59,0,0,30,59,0,0,36,59,0,0,36,59,0,0,36,59,0,0,38,59,0,0,38,59,0,0,40,59,0,0,44,59,0,0,54,59,0,0,54,59,0,0,58,59,0,0,60,59,0,0,60,59,0,0,60,59,0,0,66,59,0,0,74,59,0,0,76,59,0,0,78,59,0,0,78,59,0,0,78,59,0,0,78,59,0,0,78,59,0,0,78,59,0,0,82,59,0,0,86,59,0,0,88,59,0,0,94,59,0,0,94,59,0,0,96,59,0,0,96,59,0,0,102,59,0,0,102,59,0,0,102,59,0,0,102,59,0,0,110,59,0,0,112,59,0,0,112,59,0,0,116,59,0,0,116,59,0,0,116,59,0,0,116,59,0,0,116,59,0,0,118,59,0,0,118,59,0,0,118,59,0,0,118,59,0,0,122,59,0,0,126,59,0,0,126,59,0,0,126,59,0,0,126,59,0,0,134,59,0,0,134,59,0,0,134,59,0,0,134,59,0,0,134,59,0,0,136,59,0,0,138,59,0,0,138,59,0,0,144,59,0,0,144,59,0,0,144,59,0,0,144,59,0,0,144,59,0,0,144,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,152,59,0,0,152,59,0,0,152,59,0,0,156,59,0,0,156,59,0,0,156,59,0,0,160,59,0,0,160,59,0,0,160,59,0,0,162,59,0,0,162,59,0,0,162,59,0,0,164,59,0,0,168,59,0,0,170,59,0,0,170,59,0,0,170,59,0,0,176,59,0,0,176,59,0,0,176,59,0,0,176,59,0,0,176,59,0,0,186,59,0,0,186,59,0,0,194,59,0,0,194,59,0,0,194,59,0,0,200,59,0,0,202,59,0,0,202,59,0,0,202,59,0,0,202,59,0,0,202,59,0,0,202,59,0,0,202,59,0,0,202,59,0,0,202,59,0,0,204,59,0,0,204,59,0,0,210,59,0,0,214,59,0,0,218,59,0,0,220,59,0,0,220,59,0,0,220,59,0,0,220,59,0,0,220,59,0,0,224,59,0,0,230,59,0,0,230,59,0,0,234,59,0,0,238,59,0,0,240,59,0,0,242,59,0,0,242,59,0,0,242,59,0,0,244,59,0,0,246,59,0,0,246,59,0,0,246,59,0,0,246,59,0,0,246,59,0,0,246,59,0,0,246,59,0,0,246,59,0,0,246,59,0,0,246,59,0,0,248,59,0,0,248,59,0,0,250,59,0,0,254,59,0,0,2,60,0,0,2,60,0,0,2,60,0,0,8,60,0,0,10,60,0,0,12,60,0,0,16,60,0,0,18,60,0,0,20,60,0,0,20,60,0,0,22,60,0,0,24,60,0,0,24,60,0,0,24,60,0,0,24,60,0,0,24,60,0,0,30,60,0,0,34,60,0,0,44,60,0,0,44,60,0,0,48,60,0,0,48,60,0,0,54,60,0,0,56,60,0,0,56,60,0,0,56,60,0,0,58,60,0,0,60,60,0,0,60,60,0,0,62,60,0,0,62,60,0,0,68,60,0,0,68,60,0,0,68,60,0,0,70,60,0,0,70,60,0,0,70,60,0,0,70,60,0,0,74,60,0,0,74,60,0,0,78,60,0,0,80,60,0,0,86,60,0,0,108,60,0,0,110,60,0,0,114,60,0,0,114,60,0,0,120,60,0,0,120,60,0,0,120,60,0,0,120,60,0,0,120,60,0,0,128,60,0,0,132,60,0,0,134,60,0,0,134,60,0,0,134,60,0,0,136,60,0,0,138,60,0,0,138,60,0,0,140,60,0,0,140,60,0,0,140,60,0,0,144,60,0,0,144,60,0,0,146,60,0,0,150,60,0,0,152,60,0,0,152,60,0,0,160,60,0,0,160,60,0,0,160,60,0,0,162,60,0,0,166,60,0,0,168,60,0,0,168,60,0,0,168,60,0,0,170,60,0,0,180,60,0,0,184,60,0,0,194,60,0,0,198,60,0,0,198,60,0,0,210,60,0,0,214,60,0,0,216,60,0,0,218,60,0,0,218,60,0,0,218,60,0,0,218,60,0,0,220,60,0,0,220,60,0,0,222,60,0,0,222,60,0,0,222,60,0,0,222,60,0,0,222,60,0,0,224,60,0,0,234,60,0,0,234,60,0,0,234,60,0,0,238,60,0,0,240,60,0,0,240,60,0,0,240,60,0,0,242,60,0,0,246,60,0,0,2,61,0,0,2,61,0,0,6,61,0,0,6,61,0,0,6,61,0,0,8,61,0,0,8,61,0,0,10,61,0,0,12,61,0,0,12,61,0,0,14,61,0,0,14,61,0,0,14,61,0,0,18,61,0,0,18,61,0,0,18,61,0,0,18,61,0,0,22,61,0,0,22,61,0,0,22,61,0,0,30,61,0,0,30,61,0,0,32,61,0,0,34,61,0,0,36,61,0,0,42,61,0,0,42,61,0,0,42,61,0,0,42,61,0,0,48,61,0,0,48,61,0,0,48,61,0,0,48,61,0,0,52,61,0,0,54,61,0,0,54,61,0,0,58,61,0,0,58,61,0,0,60,61,0,0,60,61,0,0,60,61,0,0,60,61,0,0,60,61,0,0,60,61,0,0,60,61,0,0,62,61,0,0,66,61,0,0,70,61,0,0,70,61,0,0,72,61,0,0,74,61,0,0,74,61,0,0,74,61,0,0,74,61,0,0,74,61,0,0,78,61,0,0,78,61,0,0,80,61,0,0,82,61,0,0,88,61,0,0,90,61,0,0,90,61,0,0,96,61,0,0,96,61,0,0,98,61,0,0,98,61,0,0,98,61,0,0,98,61,0,0,98,61,0,0,104,61,0,0,114,61,0,0,114,61,0,0,118,61,0,0,118,61,0,0,118,61,0,0,118,61,0,0,118,61,0,0,120,61,0,0,122,61,0,0,122,61,0,0,122,61,0,0,130,61,0,0,134,61,0,0,138,61,0,0,138,61,0,0,144,61,0,0,146,61,0,0,150,61,0,0,150,61,0,0,152,61,0,0,152,61,0,0,156,61,0,0,160,61,0,0,162,61,0,0,162,61,0,0,162,61,0,0,170,61,0,0,170,61,0,0,170,61,0,0,170,61,0,0,170,61,0,0,170,61,0,0,178,61,0,0,178,61,0,0,178,61,0,0,180,61,0,0,184,61,0,0,184,61,0,0,186,61,0,0,188,61,0,0,188,61,0,0,188,61,0,0,188,61,0,0,194,61,0,0,194,61,0,0,196,61,0,0,198,61,0,0,198,61,0,0,198,61,0,0,198,61,0,0,198,61,0,0,204,61,0,0,204,61,0,0,206,61,0,0,206,61,0,0,208,61,0,0,212,61,0,0,212,61,0,0,212,61,0,0,220,61,0,0,224,61,0,0,226,61,0,0,226,61,0,0,226,61,0,0,226,61,0,0,230,61,0,0,230,61,0,0,230,61,0,0,230,61,0,0,230,61,0,0,230,61,0,0,232,61,0,0,234,61,0,0,234,61,0,0,234,61,0,0,234,61,0,0,234,61,0,0,240,61,0,0,240,61,0,0,242,61,0,0,242,61,0,0,242,61,0,0,244,61,0,0,244,61,0,0,244,61,0,0,246,61,0,0,248,61,0,0,0,62,0,0,2,62,0,0,2,62,0,0,8,62,0,0,12,62,0,0,18,62,0,0,22,62,0,0,24,62,0,0,24,62,0,0,24,62,0,0,26,62,0,0,26,62,0,0,32,62,0,0,38,62,0,0,38,62,0,0,42,62,0,0,44,62,0,0,44,62,0,0,44,62,0,0,58,62,0,0,58,62,0,0,58,62,0,0,60,62,0,0,60,62,0,0,60,62,0,0,60,62,0,0,60,62,0,0,64,62,0,0,64,62,0,0,66,62,0,0,76,62,0,0,76,62,0,0,78,62,0,0,78,62,0,0,78,62,0,0,78,62,0,0,78,62,0,0,80,62,0,0,82,62,0,0,88,62,0,0,90,62,0,0,94,62,0,0,94,62,0,0,100,62,0,0,100,62,0,0,106,62,0,0,108,62,0,0,108,62,0,0,108,62,0,0,112,62,0,0,114,62,0,0,116,62,0,0,116,62,0,0,120,62,0,0,120,62,0,0,120,62,0,0,120,62,0,0,124,62,0,0,124,62,0,0,124,62,0,0,124,62,0,0,128,62,0,0,128,62,0,0,130,62,0,0,130,62,0,0,132,62,0,0,132,62,0,0,134,62,0,0,138,62,0,0,142,62,0,0,142,62,0,0,144,62,0,0,146,62,0,0,150,62,0,0,154,62,0,0,154,62,0,0,156,62,0,0,156,62,0,0,158,62,0,0,158,62,0,0,160,62,0,0,160,62,0,0,160,62,0,0,162,62,0,0,166,62,0,0,166,62,0,0,170,62,0,0,170,62,0,0,170,62,0,0,170,62,0,0,176,62,0,0,176,62,0,0,176,62,0,0,176,62,0,0,176,62,0,0,178,62,0,0,178,62,0,0,180,62,0,0,190,62,0,0,196,62,0,0,196,62,0,0,196,62,0,0,196,62,0,0,198,62,0,0,198,62,0,0,198,62,0,0,200,62,0,0,200,62,0,0,200,62,0,0,204,62,0,0,204,62,0,0,204,62,0,0,206,62,0,0,206,62,0,0,210,62,0,0,214,62,0,0,214,62,0,0,216,62,0,0,216,62,0,0,218,62,0,0,218,62,0,0,220,62,0,0,220,62,0,0,220,62,0,0,220,62,0,0,220,62,0,0,220,62,0,0,222,62,0,0,222,62,0,0,222,62,0,0,222,62,0,0,224,62,0,0,224,62,0,0,224,62,0,0,224,62,0,0,224,62,0,0,224,62,0,0,224,62,0,0,228,62,0,0,232,62,0,0,240,62,0,0,244,62,0,0,250,62,0,0,254,62,0,0,254,62,0,0,254,62,0,0,254,62,0,0,0,63,0,0,2,63,0,0,2,63,0,0,4,63,0,0,10,63,0,0,10,63,0,0,12,63,0,0,12,63,0,0,14,63,0,0,18,63,0,0,18,63,0,0,18,63,0,0,18,63,0,0,22,63,0,0,22,63,0,0,22,63,0,0,22,63,0,0,22,63,0,0,22,63,0,0,22,63,0,0,22,63,0,0,24,63,0,0,24,63,0,0,26,63,0,0,26,63,0,0,30,63,0,0,34,63,0,0,42,63,0,0,42,63,0,0,42,63,0,0,44,63,0,0,54,63,0,0,54,63,0,0,58,63,0,0,62,63,0,0,66,63,0,0,70,63,0,0,72,63,0,0,72,63,0,0,74,63,0,0,74,63,0,0,74,63,0,0,74,63,0,0,76,63,0,0,76,63,0,0,76,63,0,0,76,63,0,0,76,63,0,0,76,63,0,0,78,63,0,0,80,63,0,0,80,63,0,0,80,63,0,0,80,63,0,0,80,63,0,0,80,63,0,0,84,63,0,0,86,63,0,0,88,63,0,0,98,63,0,0,100,63,0,0,100,63,0,0,102,63,0,0,102,63,0,0,102,63,0,0,104,63,0,0,108,63,0,0,110,63,0,0,112,63,0,0,116,63,0,0,128,63,0,0,132,63,0,0,138,63,0,0,138,63,0,0,138,63,0,0,138,63,0,0,138,63,0,0,142,63,0,0,142,63,0,0,144,63,0,0,146,63,0,0,148,63,0,0,152,63,0,0,152,63,0,0,154,63,0,0,164,63,0,0,164,63,0,0,170,63,0,0,170,63,0,0,172,63,0,0,178,63,0,0,178,63,0,0,178,63,0,0,182,63,0,0,182,63,0,0,182,63,0,0,184,63,0,0,192,63,0,0,194,63,0,0,194,63,0,0,194,63,0,0,204,63,0,0,204,63,0,0,206,63,0,0,206,63,0,0,208,63,0,0,208,63,0,0,214,63,0,0,220,63,0,0,220,63,0,0,220,63,0,0,224,63,0,0,224,63,0,0,224,63,0,0,226,63,0,0,228,63,0,0,238,63,0,0,238,63,0,0,238,63,0,0,238,63,0,0,238,63,0,0,238,63,0,0,250,63,0,0,250,63,0,0,250,63,0,0,250,63,0,0,252,63,0,0,2,64,0,0,2,64,0,0,2,64,0,0,2,64,0,0,2,64,0,0,2,64,0,0,4,64,0,0,8,64,0,0,14,64,0,0,16,64,0,0,16,64,0,0,20,64,0,0,20,64,0,0,20,64,0,0,20,64,0,0,22,64,0,0,22,64,0,0,26,64,0,0,26,64,0,0,28,64,0,0,30,64,0,0,34,64,0,0,34,64,0,0,34,64,0,0,34,64,0,0,34,64,0,0,34,64,0,0,38,64,0,0,40,64,0,0,40,64,0,0,44,64,0,0,46,64,0,0,46,64,0,0,54,64,0,0,56,64,0,0,56,64,0,0,56,64,0,0,56,64,0,0,56,64,0,0,58,64,0,0,72,64,0,0,72,64,0,0,72,64,0,0,76,64,0,0,80,64,0,0,80,64,0,0,80,64,0,0,80,64,0,0,82,64,0,0,92,64,0,0,92,64,0,0,94,64,0,0,94,64,0,0,94,64,0,0,98,64,0,0,102,64,0,0,108,64,0,0,108,64,0,0,108,64,0,0,108,64,0,0,108,64,0,0,110,64,0,0,112,64,0,0,112,64,0,0,112,64,0,0,112,64,0,0,112,64,0,0,112,64,0,0,112,64,0,0,112,64,0,0,116,64,0,0,116,64,0,0,116,64,0,0,116,64,0,0,116,64,0,0,116,64,0,0,116,64,0,0,116,64,0,0,120,64,0,0,120,64,0,0,120,64,0,0,120,64,0,0,126,64,0,0,128,64,0,0,130,64,0,0,134,64,0,0,134,64,0,0,144,64,0,0,146,64,0,0,152,64,0,0,152,64,0,0,154,64,0,0,160,64,0,0,164,64,0,0,170,64,0,0,170,64,0,0,172,64,0,0,172,64,0,0,172,64,0,0,172,64,0,0,178,64,0,0,178,64,0,0,178,64,0,0,178,64,0,0,178,64,0,0,178,64,0,0,178,64,0,0,184,64,0,0,184,64,0,0,184,64,0,0,186,64,0,0,188,64,0,0,188,64,0,0,188,64,0,0,188,64,0,0,188,64,0,0,190,64,0,0,196,64,0,0,196,64,0,0,196,64,0,0,200,64,0,0,200,64,0,0,200,64,0,0,200,64,0,0,202,64,0,0,202,64,0,0,202,64,0,0,202,64,0,0,206,64,0,0,206,64,0,0,208,64,0,0,208,64,0,0,208,64,0,0,210,64,0,0,212,64,0,0,222,64,0,0,222,64,0,0,226,64,0,0,226,64,0,0,228,64,0,0,228,64,0,0,228,64,0,0,230,64,0,0,230,64,0,0,230,64,0,0,232,64,0,0,246,64,0,0,246,64,0,0,250,64,0,0,250,64,0,0,252,64,0,0,252,64,0,0,252,64,0,0,252,64,0,0,252,64,0,0,254,64,0,0,2,65,0,0,2,65,0,0,2,65,0,0,8,65,0,0,8,65,0,0,8,65,0,0,10,65,0,0,12,65,0,0,16,65,0,0,16,65,0,0,18,65,0,0,18,65,0,0,22,65,0,0,28,65,0,0,30,65,0,0,34,65,0,0,34,65,0,0,34,65,0,0,34,65,0,0,34,65,0,0,44,65,0,0,46,65,0,0,52,65,0,0,52,65,0,0,60,65,0,0,60,65,0,0,62,65,0,0,64,65,0,0,64,65,0,0,66,65,0,0,68,65,0,0,74,65,0,0,76,65,0,0,76,65,0,0,80,65,0,0,80,65,0,0,82,65,0,0,82,65,0,0,86,65,0,0,88,65,0,0,94,65,0,0,94,65,0,0,104,65,0,0,104,65,0,0,106,65,0,0,108,65,0,0,108,65,0,0,110,65,0,0,110,65,0,0,110,65,0,0,110,65,0,0,112,65,0,0,112,65,0,0,114,65,0,0,118,65,0,0,118,65,0,0,124,65,0,0,128,65,0,0,128,65,0,0,132,65,0,0,134,65,0,0,134,65,0,0,138,65,0,0,142,65,0,0,146,65,0,0,146,65,0,0,146,65,0,0,146,65,0,0,150,65,0,0,156,65,0,0,156,65,0,0,156,65,0,0,156,65,0,0,156,65,0,0,158,65,0,0,160,65,0,0,160,65,0,0,162,65,0,0,168,65,0,0,168,65,0,0,168,65,0,0,170,65,0,0,172,65,0,0,172,65,0,0,172,65,0,0,176,65,0,0,176,65,0,0,180,65,0,0,180,65,0,0,184,65,0,0,186,65,0,0,190,65,0,0,190,65,0,0,190,65,0,0,194,65,0,0,194,65,0,0,194,65,0,0,194,65,0,0,194,65,0,0,194,65,0,0,194,65,0,0,194,65,0,0,196,65,0,0,202,65,0,0,208,65,0,0,212,65,0,0,212,65,0,0,216,65,0,0,224,65,0,0,228,65,0,0,228,65,0,0,230,65,0,0,232,65,0,0,234,65,0,0,234,65,0,0,234,65,0,0,234,65,0,0,236,65,0,0,236,65,0,0,236,65,0,0,236,65,0,0,236,65,0,0,236,65,0,0,236,65,0,0,252,65,0,0,252,65,0,0,252,65,0,0,252,65,0,0,252,65,0,0,4,66,0,0,4,66,0,0,4,66,0,0,4,66,0,0,10,66,0,0,10,66,0,0,10,66,0,0,10,66,0,0,18,66,0,0,18,66,0,0,18,66,0,0,24,66,0,0,26,66,0,0,36,66,0,0,36,66,0,0,38,66,0,0,44,66,0,0,44,66,0,0,44,66,0,0,50,66,0,0,50,66,0,0,50,66,0,0,54,66,0,0,56,66,0,0,58,66,0,0,58,66,0,0,58,66,0,0,58,66,0,0,58,66,0,0,58,66,0,0,58,66,0,0,60,66,0,0,60,66,0,0,60,66,0,0,62,66,0,0,62,66,0,0,62,66,0,0,66,66,0,0,68,66,0,0,68,66,0,0,74,66,0,0,74,66,0,0,74,66,0,0,74,66,0,0,74,66,0,0,74,66,0,0,76,66,0,0,78,66,0,0,78,66,0,0,78,66,0,0,78,66,0,0,78,66,0,0,80,66,0,0,80,66,0,0,82,66,0,0,90,66,0,0,92,66,0,0,98,66,0,0,102,66,0,0,106,66,0,0,108,66,0,0,110,66,0,0,120,66,0,0,120,66,0,0,122,66,0,0,130,66,0,0,130,66,0,0,134,66,0,0,134,66,0,0,134,66,0,0,140,66,0,0,142,66,0,0,156,66,0,0,156,66,0,0,156,66,0,0,156,66,0,0,156,66,0,0,162,66,0,0,162,66,0,0,162,66,0,0,162,66,0,0,162,66,0,0,162,66,0,0,162,66,0,0,164,66,0,0,166,66,0,0,172,66,0,0,172,66,0,0,174,66,0,0,180,66,0,0,182,66,0,0,184,66,0,0,186,66,0,0,186,66,0,0,188,66,0,0,194,66,0,0,194,66,0,0,194,66,0,0,196,66,0,0,196,66,0,0,198,66,0,0,198,66,0,0,198,66,0,0,202,66,0,0,202,66,0,0,204,66,0,0,204,66,0,0,206,66,0,0,206,66,0,0,206,66,0,0,206,66,0,0,206,66,0,0,206,66,0,0,210,66,0,0,210,66,0,0,210,66,0,0,214,66,0,0,214,66,0,0,224,66,0,0,224,66,0,0,224,66,0,0,224,66,0,0,224,66,0,0,224,66,0,0,224,66,0,0,224,66,0,0,232,66,0,0,232,66,0,0,242,66,0,0,242,66,0,0,242,66,0,0,242,66,0,0,242,66,0,0,242,66,0,0,242,66,0,0,244,66,0,0,248,66,0,0,248,66,0,0,250,66,0,0,250,66,0,0,254,66,0,0,2,67,0,0,4,67,0,0,12,67,0,0,12,67,0,0,20,67,0,0,20,67,0,0,20,67,0,0,28,67,0,0,28,67,0,0,28,67,0,0,28,67,0,0,30,67,0,0,30,67,0,0,36,67,0,0,42,67,0,0,46,67,0,0,46,67,0,0,46,67,0,0,48,67,0,0,50,67,0,0,50,67,0,0,50,67,0,0,50,67,0,0,50,67,0,0,50,67,0,0,58,67,0,0,60,67,0,0,68,67,0,0,72,67,0,0,80,67,0,0,80,67,0,0,80,67,0,0,80,67,0,0,80,67,0,0,82,67,0,0,82,67,0,0,82,67,0,0,86,67,0,0,86,67,0,0,86,67,0,0,86,67,0,0,88,67,0,0,90,67,0,0,100,67,0,0,100,67,0,0,102,67,0,0,102,67,0,0,110,67,0,0,110,67,0,0,110,67,0,0,110,67,0,0,112,67,0,0,112,67,0,0,116,67,0,0,118,67,0,0,124,67,0,0,126,67,0,0,130,67,0,0,134,67,0,0,134,67,0,0,134,67,0,0,134,67,0,0,134,67,0,0,134,67,0,0,138,67,0,0,140,67,0,0,140,67,0,0,142,67,0,0,142,67,0,0,142,67,0,0,144,67,0,0,144,67,0,0,150,67,0,0,150,67,0,0,152,67,0,0,154,67,0,0,156,67,0,0,158,67,0,0,158,67,0,0,160,67,0,0,160,67,0,0,160,67,0,0,162,67,0,0,164,67,0,0,166,67,0,0,168,67,0,0,172,67,0,0,174,67,0,0,178,67,0,0,180,67,0,0,184,67,0,0,184,67,0,0,194,67,0,0,194,67,0,0,194,67,0,0,194,67,0,0,196,67,0,0,198,67,0,0,202,67,0,0,202,67,0,0,204,67,0,0,216,67,0,0,216,67,0,0,216,67,0,0,232,67,0,0,234,67,0,0,234,67,0,0,236,67,0,0,236,67,0,0,238,67,0,0,244,67,0,0,248,67,0,0,250,67,0,0,252,67,0,0,2,68,0,0,2,68,0,0,2,68,0,0,2,68,0,0,2,68,0,0,8,68,0,0,10,68,0,0,10,68,0,0,10,68,0,0,20,68,0,0,22,68,0,0,26,68,0,0,30,68,0,0,32,68,0,0,32,68,0,0,32,68,0,0,40,68,0,0,42,68,0,0,42,68,0,0,42,68,0,0,44,68,0,0,44,68,0,0,44,68,0,0,46,68,0,0,48,68,0,0,48,68,0,0,48,68,0,0,50,68,0,0,50,68,0,0,50,68,0,0,60,68,0,0,68,68,0,0,68,68,0,0,70,68,0,0,70,68,0,0,82,68,0,0,84,68,0,0,86,68,0,0,88,68,0,0,88,68,0,0,90,68,0,0,90,68,0,0,90,68,0,0,90,68,0,0,90,68,0,0,90,68,0,0,92,68,0,0,92,68,0,0,96,68,0,0,96,68,0,0,96,68,0,0,98,68,0,0,102,68,0,0,102,68,0,0,106,68,0,0,108,68,0,0,110,68,0,0,112,68,0,0,112,68,0,0,118,68,0,0,120,68,0,0,122,68,0,0,124,68,0,0,124,68,0,0,126,68,0,0,126,68,0,0,136,68,0,0,136,68,0,0,140,68,0,0,140,68,0,0,140,68,0,0,144,68,0,0,146,68,0,0,146,68,0,0,148,68,0,0,148,68,0,0,148,68,0,0,150,68,0,0,150,68,0,0,156,68,0,0,158,68,0,0,158,68,0,0,158,68,0,0,158,68,0,0,160,68,0,0,164,68,0,0,164,68,0,0,170,68,0,0,170,68,0,0,170,68,0,0,170,68,0,0,170,68,0,0,170,68,0,0,170,68,0,0,172,68,0,0,174,68,0,0,178,68,0,0,180,68,0,0,180,68,0,0,180,68,0,0,180,68,0,0,186,68,0,0,186,68,0,0,188,68,0,0,188,68,0,0,188,68,0,0,188,68,0,0,190,68,0,0,190,68,0,0,192,68,0,0,192,68,0,0,192,68,0,0,192,68,0,0,192,68,0,0,192,68,0,0,198,68,0,0,198,68,0,0,200,68,0,0,200,68,0,0,200,68,0,0,200,68,0,0,200,68,0,0,200,68,0,0,200,68,0,0,200,68,0,0,200,68,0,0,202,68,0,0,204,68,0,0,206,68,0,0,210,68,0,0,212,68,0,0,214,68,0,0,218,68,0,0,226,68,0,0,226,68,0,0,226,68,0,0,230,68,0,0,232,68,0,0,232,68,0,0,234,68,0,0,234,68,0,0,238,68,0,0,238,68,0,0,238,68,0,0,242,68,0,0,242,68,0,0,244,68,0,0,244,68,0,0,252,68,0,0,252,68,0,0,6,69,0,0,18,69,0,0,18,69,0,0,22,69,0,0,28,69,0,0,30,69,0,0,30,69,0,0,38,69,0,0,38,69,0,0,40,69,0,0,40,69,0,0,42,69,0,0,46,69,0,0,46,69,0,0,46,69,0,0,46,69,0,0,50,69,0,0,50,69,0,0,50,69,0,0,50,69,0,0,56,69,0,0,58,69,0,0,58,69,0,0,62,69,0,0,70,69,0,0,70,69,0,0,70,69,0,0,72,69,0,0,72,69,0,0,72,69,0,0,74,69,0,0,74,69,0,0,74,69,0,0,74,69,0,0,74,69,0,0,76,69,0,0,76,69,0,0,76,69,0,0,80,69,0,0,82,69,0,0,86,69,0,0,86,69,0,0,90,69,0,0,94,69,0,0,104,69,0,0,106,69,0,0,112,69,0,0,116,69,0,0,118,69,0,0,118,69,0,0,118,69,0,0,120,69,0,0,122,69,0,0,122,69,0,0,122,69,0,0,124,69,0,0,124,69,0,0,130,69,0,0,134,69,0,0,134,69,0,0,134,69,0,0,134,69,0,0,134,69,0,0,134,69,0,0,136,69,0,0,136,69,0,0,136,69,0,0,136,69,0,0,138,69,0,0,142,69,0,0,142,69,0,0,142,69,0,0,146,69,0,0,146,69,0,0,146,69,0,0,148,69,0,0,152,69,0,0,152,69,0,0,152,69,0,0,156,69,0,0,158,69,0,0,158,69,0,0,158,69,0,0,158,69,0,0,164,69,0,0,164,69,0,0,166,69,0,0,166,69,0,0,168,69,0,0,168,69,0,0,174,69,0,0,174,69,0,0,174,69,0,0,174,69,0,0,176,69,0,0,180,69,0,0,180,69,0,0,180,69,0,0,182,69,0,0,184,69,0,0,184,69,0,0,188,69,0,0,206,69,0,0,206,69,0,0,206,69,0,0,208,69,0,0,210,69,0,0,216,69,0,0,218,69,0,0,222,69,0,0,230,69,0,0,234,69,0,0,240,69,0,0,240,69,0,0,242,69,0,0,242,69,0,0,242,69,0,0,244,69,0,0,244,69,0,0,246,69,0,0,248,69,0,0,248,69,0,0,248,69,0,0,254,69,0,0,254,69,0,0,254,69,0,0,2,70,0,0,2,70,0,0,4,70,0,0,4,70,0,0,8,70,0,0,8,70,0,0,8,70,0,0,8,70,0,0,8,70,0,0,10,70,0,0,14,70,0,0,14,70,0,0,16,70,0,0,18,70,0,0,18,70,0,0,26,70,0,0,26,70,0,0,28,70,0,0,28,70,0,0,30,70,0,0,34,70,0,0,34,70,0,0,36,70,0,0,42,70,0,0,42,70,0,0,44,70,0,0,44,70,0,0,44,70,0,0,46,70,0,0,46,70,0,0,48,70,0,0,48,70,0,0,48,70,0,0,50,70,0,0,50,70,0,0,50,70,0,0,50,70,0,0,52,70,0,0,52,70,0,0,54,70,0,0,60,70,0,0,60,70,0,0,60,70,0,0,60,70,0,0,66,70,0,0,66,70,0,0,66,70,0,0,68,70,0,0,68,70,0,0,72,70,0,0,72,70,0,0,78,70,0,0,82,70,0,0,82,70,0,0,82,70,0,0,82,70,0,0,82,70,0,0,82,70,0,0,90,70,0,0,90,70,0,0,90,70,0,0,90,70,0,0,92,70,0,0,92,70,0,0,92,70,0,0,92,70,0,0,96,70,0,0,104,70,0,0,108,70,0,0,114,70,0,0,114,70,0,0,114,70,0,0,120,70,0,0,120,70,0,0,120,70,0,0,120,70,0,0,120,70,0,0,120,70,0,0,122,70,0,0,148,70,0,0,148,70,0,0,148,70,0,0,148,70,0,0,150,70,0,0,152,70,0,0,152,70,0,0,158,70,0,0,160,70,0,0,162,70,0,0,162,70,0,0,162,70,0,0,162,70,0,0,162,70,0,0,164,70,0,0,166,70,0,0,166,70,0,0,170,70,0,0,170,70,0,0,172,70,0,0,174,70,0,0,176,70,0,0,176,70,0,0,176,70,0,0,178,70,0,0,180,70,0,0,182,70,0,0,182,70,0,0,182,70,0,0,186,70,0,0,190,70,0,0,194,70,0,0,194,70,0,0,194,70,0,0,194,70,0,0,196,70,0,0,196,70,0,0,198,70,0,0,206,70,0,0,206,70,0,0,206,70,0,0,212,70,0,0,212,70,0,0,212,70,0,0,212,70,0,0,212,70,0,0,212,70,0,0,214,70,0,0,214,70,0,0,218,70,0,0,218,70,0,0,226,70,0,0,226,70,0,0,230,70,0,0,236,70,0,0,236,70,0,0,238,70,0,0,238,70,0,0,240,70,0,0,240,70,0,0,244,70,0,0,246,70,0,0,246,70,0,0,248,70,0,0,250,70,0,0,250,70,0,0,4,71,0,0,8,71,0,0,8,71,0,0,10,71,0,0,12,71,0,0,12,71,0,0,16,71,0,0,16,71,0,0,18,71,0,0,20,71,0,0,24,71,0,0,26,71,0,0,28,71,0,0,30,71,0,0,34,71,0,0,34,71,0,0,34,71,0,0,40,71,0,0,46,71,0,0,46,71,0,0,46,71,0,0,46,71,0,0,46,71,0,0,50,71,0,0,50,71,0,0,50,71,0,0,52,71,0,0,52,71,0,0,52,71,0,0,52,71,0,0,52,71,0,0,52,71,0,0,54,71,0,0,54,71,0,0,54,71,0,0,54,71,0,0,58,71,0,0,58,71,0,0,60,71,0,0,64,71,0,0,64,71,0,0,68,71,0,0,70,71,0,0,74,71,0,0,74,71,0,0,78,71,0,0,78,71,0,0,78,71,0,0,80,71,0,0,80,71,0,0,80,71,0,0,80,71,0,0,82,71,0,0,82,71,0,0,86,71,0,0,86,71,0,0,88,71,0,0,92,71,0,0,96,71,0,0,96,71,0,0,96,71,0,0,96,71,0,0,96,71,0,0,96,71,0,0,96,71,0,0,100,71,0,0,100,71,0,0,100,71,0,0,100,71,0,0,102,71,0,0,106,71,0,0,106,71,0,0,106,71,0,0,118,71,0,0,118,71,0,0,122,71,0,0,124,71,0,0,124,71,0,0,134,71,0,0,134,71,0,0,136,71,0,0,136,71,0,0,136,71,0,0,148,71,0,0,150,71,0,0,150,71,0,0,150,71,0,0,150,71,0,0,150,71,0,0,152,71,0,0,156,71,0,0,160,71,0,0,160,71,0,0,160,71,0,0,170,71,0,0,170,71,0,0,172,71,0,0,172,71,0,0,180,71,0,0,180,71,0,0,182,71,0,0,184,71,0,0,186,71,0,0,190,71,0,0,192,71,0,0,192,71,0,0,192,71,0,0,198,71,0,0,202,71,0,0,214,71,0,0,216,71,0,0,216,71,0,0,216,71,0,0,222,71,0,0,224,71,0,0,224,71,0,0,224,71,0,0,224,71,0,0,228,71,0,0,230,71,0,0,230,71,0,0,232,71,0,0,232,71,0,0,236,71,0,0,240,71,0,0,244,71,0,0,246,71,0,0,246,71,0,0,246,71,0,0,246,71,0,0,250,71,0,0,254,71,0,0,254,71,0,0,254,71,0,0,4,72,0,0,12,72,0,0,14,72,0,0,14,72,0,0,14,72,0,0,16,72,0,0,18,72,0,0,18,72,0,0,20,72,0,0,20,72,0,0,20,72,0,0,24,72,0,0,34,72,0,0,34,72,0,0,34,72,0,0,34,72,0,0,34,72,0,0,36,72,0,0,36,72,0,0,42,72,0,0,42,72,0,0,42,72,0,0,46,72,0,0,46,72,0,0,50,72,0,0,52,72,0,0,54,72,0,0,60,72,0,0,60,72,0,0,60,72,0,0,64,72,0,0,68,72,0,0,68,72,0,0,70,72,0,0,74,72,0,0,78,72,0,0,80,72,0,0,82,72,0,0,84,72,0,0,84,72,0,0,90,72,0,0,94,72,0,0,98,72,0,0,98,72,0,0,98,72,0,0,100,72,0,0,102,72,0,0,108,72,0,0,112,72,0,0,114,72,0,0,114,72,0,0,114,72,0,0,118,72,0,0,126,72,0,0,126,72,0,0,128,72,0,0,134,72,0,0,134,72,0,0,134,72,0,0,134,72,0,0,134,72,0,0,136,72,0,0,138,72,0,0,138,72,0,0,140,72,0,0,140,72,0,0,146,72,0,0,152,72,0,0,156,72,0,0,156,72,0,0,156,72,0,0,156,72,0,0,156,72,0,0,156,72,0,0,156,72,0,0,162,72,0,0,164,72,0,0,166,72,0,0,174,72,0,0,186,72,0,0,192,72,0,0,198,72,0,0,206,72,0,0,208,72,0,0,208,72,0,0,208,72,0,0,208,72,0,0,214,72,0,0,214,72,0,0,216,72,0,0,218,72,0,0,218,72,0,0,218,72,0,0,218,72,0,0,218,72,0,0,218,72,0,0,220,72,0,0,224,72,0,0,224,72,0,0,224,72,0,0,228,72,0,0,228,72,0,0,230,72,0,0,230,72,0,0,230,72,0,0,230,72,0,0,238,72,0,0,240,72,0,0,244,72,0,0,244,72,0,0,248,72,0,0,248,72,0,0,250,72,0,0,0,73,0,0,0,73,0,0,0,73,0,0,0,73,0,0,0,73,0,0,0,73,0,0,2,73,0,0,2,73,0,0,2,73,0,0,4,73,0,0,4,73,0,0,8,73,0,0,10,73,0,0,10,73,0,0,14,73,0,0,16,73,0,0,18,73,0,0,24,73,0,0,28,73,0,0,32,73,0,0,32,73,0,0,34,73,0,0,34,73,0,0,38,73,0,0,38,73,0,0,40,73,0,0,42,73,0,0,42,73,0,0,44,73,0,0,44,73,0,0,44,73,0,0,48,73,0,0,50,73,0,0,50,73,0,0,50,73,0,0,52,73,0,0,52,73,0,0,52,73,0,0,52,73,0,0,52,73,0,0,52,73,0,0,54,73,0,0,56,73,0,0,60,73,0,0,66,73,0,0,66,73,0,0,68,73,0,0,72,73,0,0,72,73,0,0,72,73,0,0,74,73,0,0,78,73,0,0,90,73,0,0,90,73,0,0,90,73,0,0,94,73,0,0,98,73,0,0,98,73,0,0,102,73,0,0,104,73,0,0,110,73,0,0,110,73,0,0,110,73,0,0,112,73,0,0,114,73,0,0,120,73,0,0,120,73,0,0,120,73,0,0,120,73,0,0,120,73,0,0,122,73,0,0,122,73,0,0,122,73,0,0,122,73,0,0,122,73,0,0,130,73,0,0,130,73,0,0,132,73,0,0,134,73,0,0,134,73,0,0,134,73,0,0,134,73,0,0,134,73,0,0,134,73,0,0,134,73,0,0,138,73,0,0,138,73,0,0,138,73,0,0,138,73,0,0,146,73,0,0,146,73,0,0,152,73,0,0,152,73,0,0,156,73,0,0,158,73,0,0,158,73,0,0,158,73,0,0,158,73,0,0,164,73,0,0,164,73,0,0,166,73,0,0,170,73,0,0,170,73,0,0,174,73,0,0,174,73,0,0,174,73,0,0,174,73,0,0,176,73,0,0,176,73,0,0,180,73,0,0,180,73,0,0,180,73,0,0,180,73,0,0,182,73,0,0,182,73,0,0,190,73,0,0,190,73,0,0,192,73,0,0,194,73,0,0,194,73,0,0,200,73,0,0,204,73,0,0,208,73,0,0,208,73,0,0,208,73,0,0,208,73,0,0,208,73,0,0,210,73,0,0,210,73,0,0,210,73,0,0,210,73,0,0,210,73,0,0,210,73,0,0,210,73,0,0,212,73,0,0,212,73,0,0,212,73,0,0,216,73,0,0,216,73,0,0,216,73,0,0,218,73,0,0,222,73,0,0,226,73,0,0,232,73,0,0,232,73,0,0,232,73,0,0,232,73,0,0,232,73,0,0,236,73,0,0,236,73,0,0,236,73,0,0,236,73,0,0,236,73,0,0,240,73,0,0,244,73,0,0,248,73,0,0,248,73,0,0,248,73,0,0,248,73,0,0,250,73,0,0,250,73,0,0,252,73,0,0,252,73,0,0,4,74,0,0,6,74,0,0,6,74,0,0,12,74,0,0,12,74,0,0,12,74,0,0,12,74,0,0,14,74,0,0,14,74,0,0,18,74,0,0,18,74,0,0,18,74,0,0,20,74,0,0,24,74,0,0,24,74,0,0,26,74,0,0,26,74,0,0,34,74,0,0,34,74,0,0,34,74,0,0,42,74,0,0,44,74,0,0,46,74,0,0,48,74,0,0,50,74,0,0,54,74,0,0,54,74,0,0,54,74,0,0,54,74,0,0,60,74,0,0,62,74,0,0,62,74,0,0,64,74,0,0,64,74,0,0,66,74,0,0,66,74,0,0,66,74,0,0,72,74,0,0,74,74,0,0,74,74,0,0,76,74,0,0,82,74,0,0,84,74,0,0,84,74,0,0,90,74,0,0,92,74,0,0,96,74,0,0,104,74,0,0,104,74,0,0,110,74,0,0,110,74,0,0,110,74,0,0,116,74,0,0,116,74,0,0,116,74,0,0,116,74,0,0,116,74,0,0,116,74,0,0,120,74,0,0,122,74,0,0,122,74,0,0,122,74,0,0,122,74,0,0,124,74,0,0,124,74,0,0,124,74,0,0,124,74,0,0,126,74,0,0,126,74,0,0,126,74,0,0,126,74,0,0,126,74,0,0,126,74,0,0,132,74,0,0,134,74,0,0,136,74,0,0,138,74,0,0,142,74,0,0,142,74,0,0,150,74,0,0,152,74,0,0,152,74,0,0,152,74,0,0,158,74,0,0,160,74,0,0,160,74,0,0,164,74,0,0,166,74,0,0,166,74,0,0,166,74,0,0,166,74,0,0,166,74,0,0,168,74,0,0,182,74,0,0,184,74,0,0,186,74,0,0,190,74,0,0,190,74,0,0,190,74,0,0,192,74,0,0,194,74,0,0,194,74,0,0,194,74,0,0,194,74,0,0,198,74,0,0,198,74,0,0,198,74,0,0,198,74,0,0,198,74,0,0,204,74,0,0,206,74,0,0,206,74,0,0,208,74,0,0,210,74,0,0,216,74,0,0,218,74,0,0,218,74,0,0,218,74,0,0,224,74,0,0,226,74,0,0,230,74,0,0,236,74,0,0,236,74,0,0,236,74,0,0,238,74,0,0,238,74,0,0,238,74,0,0,238,74,0,0,238,74,0,0,238,74,0,0,238,74,0,0,238,74,0,0,238,74,0,0,242,74,0,0,244,74,0,0,244,74,0,0,244,74,0,0,244,74,0,0,244,74,0,0,246,74,0,0,246,74,0,0,248,74,0,0,18,75,0,0,18,75,0,0,18,75,0,0,18,75,0,0,26,75,0,0,34,75,0,0,34,75,0,0,34,75,0,0,34,75,0,0,34,75,0,0,36,75,0,0,38,75,0,0,38,75,0,0,40,75,0,0,44,75,0,0,44,75,0,0,44,75,0,0,50,75,0,0,50,75,0,0,50,75,0,0,50,75,0,0,50,75,0,0,64,75,0,0,64,75,0,0,68,75,0,0,70,75,0,0,70,75,0,0,70,75,0,0,70,75,0,0,74,75,0,0,76,75,0,0,76,75,0,0,78,75,0,0,80,75,0,0,82,75,0,0,84,75,0,0,88,75,0,0,96,75,0,0,96,75,0,0,102,75,0,0,104,75,0,0,104,75,0,0,108,75,0,0,122,75,0,0,122,75,0,0,122,75,0,0,122,75,0,0,126,75,0,0,126,75,0,0,132,75,0,0,132,75,0,0,138,75,0,0,138,75,0,0,138,75,0,0,138,75,0,0,138,75,0,0,138,75,0,0,138,75,0,0,138,75,0,0,138,75,0,0,138,75,0,0,138,75,0,0,148,75,0,0,148,75,0,0,148,75,0,0,148,75,0,0,148,75,0,0,150,75,0,0,160,75,0,0,162,75,0,0,162,75,0,0,162,75,0,0,164,75,0,0,166,75,0,0,168,75,0,0,170,75,0,0,170,75,0,0,170,75,0,0,170,75,0,0,172,75,0,0,172,75,0,0,178,75,0,0,178,75,0,0,184,75,0,0,184,75,0,0,188,75,0,0,188,75,0,0,188,75,0,0,190,75,0,0,190,75,0,0,190,75,0,0,192,75,0,0,192,75,0,0,192,75,0,0,196,75,0,0,196,75,0,0,200,75,0,0,200,75,0,0,204,75,0,0,204,75,0,0,204,75,0,0,204,75,0,0,208,75,0,0,208,75,0,0,208,75,0,0,210,75,0,0,212,75,0,0,212,75,0,0,212,75,0,0,212,75,0,0,212,75,0,0,214,75,0,0,222,75,0,0,222,75,0,0,222,75,0,0,234,75,0,0,236,75,0,0,236,75,0,0,236,75,0,0,244,75,0,0,246,75,0,0,0,76,0,0,0,76,0,0,0,76,0,0,0,76,0,0,4,76,0,0,4,76,0,0,4,76,0,0,4,76,0,0,6,76,0,0,6,76,0,0,10,76,0,0,14,76,0,0,16,76,0,0,16,76,0,0,16,76,0,0,16,76,0,0,18,76,0,0,20,76,0,0,24,76,0,0,26,76,0,0,26,76,0,0,28,76,0,0,28,76,0,0,28,76,0,0,28,76,0,0,34,76,0,0,38,76,0,0,38,76,0,0,38,76,0,0,38,76,0,0,44,76,0,0,44,76,0,0,50,76,0,0,56,76,0,0,58,76,0,0,58,76,0,0,58,76,0,0,70,76,0,0,70,76,0,0,76,76,0,0,76,76,0,0,76,76,0,0,76,76,0,0,78,76,0,0,82,76,0,0,82,76,0,0,82,76,0,0,84,76,0,0,84,76,0,0,84,76,0,0,86,76,0,0,94,76,0,0,94,76,0,0,98,76,0,0,100,76,0,0,102,76,0,0,102,76,0,0,104,76,0,0,104,76,0,0,108,76,0,0,116,76,0,0,118,76,0,0,122,76,0,0,122,76,0,0,126,76,0,0,130,76,0,0,130,76,0,0,130,76,0,0,130,76,0,0,130,76,0,0,132,76,0,0,132,76,0,0,132,76,0,0,132,76,0,0,132,76,0,0,144,76,0,0,154,76,0,0,154,76,0,0,156,76,0,0,156,76,0,0,158,76,0,0,158,76,0,0,164,76,0,0,164,76,0,0,164,76,0,0,164,76,0,0,166,76,0,0,168,76,0,0,168,76,0,0,168,76,0,0,168,76,0,0,168,76,0,0,168,76,0,0,168,76,0,0,168,76,0,0,168,76,0,0,168,76,0,0,168,76,0,0,168,76,0,0,170,76,0,0,170,76,0,0,172,76,0,0,172,76,0,0,172,76,0,0,174,76,0,0,178,76,0,0,178,76,0,0,178,76,0,0,178,76,0,0,178,76,0,0,178,76,0,0,180,76,0,0,184,76,0,0,184,76,0,0,188,76,0,0,192,76,0,0,192,76,0,0,192,76,0,0,192,76,0,0,192,76,0,0,196,76,0,0,196,76,0,0,196,76,0,0,200,76,0,0,200,76,0,0,200,76,0,0,206,76,0,0,206,76,0,0,206,76,0,0,208,76,0,0,214,76,0,0,220,76,0,0,228,76,0,0,230,76,0,0,236,76,0,0,238,76,0,0,238,76,0,0,238,76,0,0,246,76,0,0,246,76,0,0,248,76,0,0,248,76,0,0,248,76,0,0,248,76,0,0,248,76,0,0,248,76,0,0,248,76,0,0,248,76,0,0,250,76,0,0,250,76,0,0,254,76,0,0,254,76,0,0,254,76,0,0,254,76,0,0,2,77,0,0,8,77,0,0,16,77,0,0,16,77,0,0,18,77,0,0,18,77,0,0,18,77,0,0,18,77,0,0,18,77,0,0,18,77,0,0,24,77,0,0,24,77,0,0,24,77,0,0,24,77,0,0,24,77,0,0,24,77,0,0,24,77,0,0,24,77,0,0,24,77,0,0,26,77,0,0,26,77,0,0,32,77,0,0,32,77,0,0,36,77,0,0,40,77,0,0,42,77,0,0,42,77,0,0,42,77,0,0,42,77,0,0,42,77,0,0,42,77,0,0,42,77,0,0,42,77,0,0,42,77,0,0,50,77,0,0,52,77,0,0,54,77,0,0,54,77,0,0,54,77,0,0,54,77,0,0,58,77,0,0,60,77,0,0,60,77,0,0,60,77,0,0,60,77,0,0,60,77,0,0,60,77,0,0,60,77,0,0,60,77,0,0,64,77,0,0,66,77,0,0,68,77,0,0,68,77,0,0,68,77,0,0,70,77,0,0,70,77,0,0,74,77,0,0,74,77,0,0,74,77,0,0,74,77,0,0,76,77,0,0,80,77,0,0,80,77,0,0,82,77,0,0,84,77,0,0,92,77,0,0,102,77,0,0,104,77,0,0,104,77,0,0,108,77,0,0,108,77,0,0,120,77,0,0,120,77,0,0,120,77,0,0,120,77,0,0,120,77,0,0,130,77,0,0,130,77,0,0,134,77,0,0,134,77,0,0,134,77,0,0,144,77,0,0,148,77,0,0,148,77,0,0,148,77,0,0,152,77,0,0,154,77,0,0,154,77,0,0,154,77,0,0,170,77,0,0,178,77,0,0,178,77,0,0,186,77,0,0,188,77,0,0,192,77,0,0,192,77,0,0,196,77,0,0,196,77,0,0,204,77,0,0,206,77,0,0,208,77,0,0,210,77,0,0,214,77,0,0,216,77,0,0,218,77,0,0,218,77,0,0,218,77,0,0,222,77,0,0,222,77,0,0,224,77,0,0,224,77,0,0,224,77,0,0,226,77,0,0,230,77,0,0,230,77,0,0,230,77,0,0,230,77,0,0,230,77,0,0,240,77,0,0,242,77,0,0,242,77,0,0,246,77,0,0,252,77,0,0,0,78,0,0,2,78,0,0,2,78,0,0,4,78,0,0,4,78,0,0,8,78,0,0,12,78,0,0,18,78,0,0,18,78,0,0,24,78,0,0,32,78,0,0,36,78,0,0,36,78,0,0,40,78,0,0,44,78,0,0,44,78,0,0,46,78,0,0,50,78,0,0,56,78,0,0,56,78,0,0,60,78,0,0,62,78,0,0,64,78,0,0,64,78,0,0,64,78,0,0,74,78,0,0,74,78,0,0,76,78,0,0,76,78,0,0,76,78,0,0,80,78,0,0,80,78,0,0,80,78,0,0,80,78,0,0,80,78,0,0,80,78,0,0,80,78,0,0,80,78,0,0,84,78,0,0,84,78,0,0,84,78,0,0,86,78,0,0,92,78,0,0,92,78,0,0,96,78,0,0,104,78,0,0,104,78,0,0,104,78,0,0,106,78,0,0,108,78,0,0,112,78,0,0,112,78,0,0,112,78,0,0,114,78,0,0,114,78,0,0,118,78,0,0,118,78,0,0,118,78,0,0,118,78,0,0,120,78,0,0,120,78,0,0,120,78,0,0,122,78,0,0,122,78,0,0,128,78,0,0,128,78,0,0,134,78,0,0,138,78,0,0,138,78,0,0,142,78,0,0,142,78,0,0,142,78,0,0,142,78,0,0,142,78,0,0,142,78,0,0,142,78,0,0,146,78,0,0,146,78,0,0,146,78,0,0,150,78,0,0,156,78,0,0,158,78,0,0,160,78,0,0,164,78,0,0,164,78,0,0,164,78,0,0,164,78,0,0,166,78,0,0,166,78,0,0,166,78,0,0,166,78,0,0,170,78,0,0,176,78,0,0,180,78,0,0,182,78,0,0,182,78,0,0,184,78,0,0,184,78,0,0,184,78,0,0,184,78,0,0,184,78,0,0,190,78,0,0,198,78,0,0,198,78,0,0,198,78,0,0,200,78,0,0,200,78,0,0,200,78,0,0,202,78,0,0,206,78,0,0,206,78,0,0,206,78,0,0,208,78,0,0,216,78,0,0,218,78,0,0,222,78,0,0,228,78,0,0,230,78,0,0,230,78,0,0,230,78,0,0,234,78,0,0,234,78,0,0,234,78,0,0,234,78,0,0,234,78,0,0,234,78,0,0,234,78,0,0,234,78,0,0,238,78,0,0,238,78,0,0,238,78,0,0,252,78,0,0,252,78,0,0,0,79,0,0,4,79,0,0,8,79,0,0,10,79,0,0,10,79,0,0,14,79,0,0,14,79,0,0,18,79,0,0,20,79,0,0,20,79,0,0,20,79,0,0,22,79,0,0,22,79,0,0,28,79,0,0,30,79,0,0,30,79,0,0,30,79,0,0,36,79,0,0,40,79,0,0,40,79,0,0,40,79,0,0,46,79,0,0,48,79,0,0,52,79,0,0,58,79,0,0,60,79,0,0,68,79,0,0,68,79,0,0,68,79,0,0,68,79,0,0,68,79,0,0,68,79,0,0,80,79,0,0,82,79,0,0,82,79,0,0,82,79,0,0,82,79,0,0,84,79,0,0,86,79,0,0,86,79,0,0,86,79,0,0,88,79,0,0,88,79,0,0,90,79,0,0,90,79,0,0,92,79,0,0,92,79,0,0,92,79,0,0,100,79,0,0,104,79,0,0,104,79,0,0,104,79,0,0,106,79,0,0,106,79,0,0,106,79,0,0,106,79,0,0,106,79,0,0,108,79,0,0,108,79,0,0,108,79,0,0,108,79,0,0,108,79,0,0,110,79,0,0,112,79,0,0,112,79,0,0,118,79,0,0,118,79,0,0,120,79,0,0,120,79,0,0,128,79,0,0,128,79,0,0,130,79,0,0,130,79,0,0,130,79,0,0,130,79,0,0,130,79,0,0,134,79,0,0,134,79,0,0,134,79,0,0,134,79,0,0,134,79,0,0,136,79,0,0,142,79,0,0,148,79,0,0,150,79,0,0,150,79,0,0,156,79,0,0,156,79,0,0,156,79,0,0,162,79,0,0,162,79,0,0,162,79,0,0,162,79,0,0,164,79,0,0,164,79,0,0,166,79,0,0,166,79,0,0,166,79,0,0,166,79,0,0,168,79,0,0,168,79,0,0,170,79,0,0,170,79,0,0,170,79,0,0,170,79,0,0,174,79,0,0,182,79,0,0,188,79,0,0,190,79,0,0,190,79,0,0,190,79,0,0,190,79,0,0,190,79,0,0,192,79,0,0,194,79,0,0,198,79,0,0,200,79,0,0,202,79,0,0,202,79,0,0,210,79,0,0,210,79,0,0,210,79,0,0,210,79,0,0,210,79,0,0,210,79,0,0,210,79,0,0,210,79,0,0,210,79,0,0,210,79,0,0,212,79,0,0,218,79,0,0,222,79,0,0,222,79,0,0,224,79,0,0,224,79,0,0,226,79,0,0,230,79,0,0,236,79,0,0,238,79,0,0,238,79,0,0,238,79,0,0,238,79,0,0,240,79,0,0,240,79,0,0,240,79,0,0,240,79,0,0,246,79,0,0,246,79,0,0,248,79,0,0,248,79,0,0,250,79,0,0,250,79,0,0,250,79,0,0,10,80,0,0,10,80,0,0,12,80,0,0,16,80,0,0,20,80,0,0,22,80,0,0,24,80,0,0,26,80,0,0,28,80,0,0,28,80,0,0,32,80,0,0,32,80,0,0,32,80,0,0,34,80,0,0,34,80,0,0,34,80,0,0,34,80,0,0,44,80,0,0,44,80,0,0,44,80,0,0,50,80,0,0,50,80,0,0,52,80,0,0,52,80,0,0,52,80,0,0,58,80,0,0,58,80,0,0,60,80,0,0,62,80,0,0,62,80,0,0,62,80,0,0,64,80,0,0,64,80,0,0,64,80,0,0,64,80,0,0,64,80,0,0,66,80,0,0,66,80,0,0,74,80,0,0,76,80,0,0,78,80,0,0,80,80,0,0,90,80,0,0,90,80,0,0,90,80,0,0,96,80,0,0,100,80,0,0,100,80,0,0,100,80,0,0,104,80,0,0,110,80,0,0,118,80,0,0,118,80,0,0,118,80,0,0,118,80,0,0,124,80,0,0,124,80,0,0,130,80,0,0,130,80,0,0,130,80,0,0,130,80,0,0,142,80,0,0,142,80,0,0,142,80,0,0,142,80,0,0,146,80,0,0,148,80,0,0,148,80,0,0,148,80,0,0,150,80,0,0,152,80,0,0,158,80,0,0,158,80,0,0,160,80,0,0,160,80,0,0,166,80,0,0,170,80,0,0,170,80,0,0,170,80,0,0,170,80,0,0,170,80,0,0,172,80,0,0,174,80,0,0,176,80,0,0,176,80,0,0,184,80,0,0,192,80,0,0,196,80,0,0,196,80,0,0,208,80,0,0,210,80,0,0,210,80,0,0,214,80,0,0,224,80,0,0,224,80,0,0,228,80,0,0,234,80,0,0,234,80,0,0,234,80,0,0,234,80,0,0,234,80,0,0,234,80,0,0,234,80,0,0,234,80,0,0,236,80,0,0,236,80,0,0,238,80,0,0,240,80,0,0,244,80,0,0,244,80,0,0,244,80,0,0,244,80,0,0,244,80,0,0,244,80,0,0,246,80,0,0,254,80,0,0,2,81,0,0,8,81,0,0,8,81,0,0,20,81,0,0,22,81,0,0,24,81,0,0,24,81,0,0,38,81,0,0,46,81,0,0,46,81,0,0,52,81,0,0,52,81,0,0,52,81,0,0,52,81,0,0,52,81,0,0,52,81,0,0,52,81,0,0,56,81,0,0,58,81,0,0,66,81,0,0,66,81,0,0,72,81,0,0,72,81,0,0,76,81,0,0,80,81,0,0,80,81,0,0,82,81,0,0,86,81,0,0,86,81,0,0,90,81,0,0,92,81,0,0,92,81,0,0,92,81,0,0,94,81,0,0,96,81,0,0,96,81,0,0,96,81,0,0,96,81,0,0,98,81,0,0,98,81,0,0,98,81,0,0,98,81,0,0,98,81,0,0,102,81,0,0,102,81,0,0,106,81,0,0,106,81,0,0,108,81,0,0,108,81,0,0,108,81,0,0,108,81,0,0,108,81,0,0,108,81,0,0,108,81,0,0,110,81,0,0,110,81,0,0,114,81,0,0,120,81,0,0,122,81,0,0,126,81,0,0,132,81,0,0,134,81,0,0,134,81,0,0,134,81,0,0,134,81,0,0,134,81,0,0,134,81,0,0,138,81,0,0,140,81,0,0,140,81,0,0,140,81,0,0,140,81,0,0,142,81,0,0,142,81,0,0,148,81,0,0,150,81,0,0,150,81,0,0,152,81,0,0,152,81,0,0,152,81,0,0,152,81,0,0,156,81,0,0,164,81,0,0,164,81,0,0,164,81,0,0,164,81,0,0,164,81,0,0,164,81,0,0,168,81,0,0,168,81,0,0,168,81,0,0,180,81,0,0,182,81,0,0,182,81,0,0,182,81,0,0,186,81,0,0,190,81,0,0,190,81,0,0,200,81,0,0,202,81,0,0,204,81,0,0,206,81,0,0,208,81,0,0,208,81,0,0,208,81,0,0,216,81,0,0,218,81,0,0,220,81,0,0,220,81,0,0,220,81,0,0,220,81,0,0,222,81,0,0,222,81,0,0,224,81,0,0,224,81,0,0,224,81,0,0,232,81,0,0,234,81,0,0,240,81,0,0,240,81,0,0,242,81,0,0,246,81,0,0,246,81,0,0,246,81,0,0,246,81,0,0,246,81,0,0,246,81,0,0,0,82,0,0,0,82,0,0,2,82,0,0,2,82,0,0,2,82,0,0,8,82,0,0,8,82,0,0,8,82,0,0,10,82,0,0,12,82,0,0,12,82,0,0,18,82,0,0,18,82,0,0,22,82,0,0,22,82,0,0,22,82,0,0,22,82,0,0,24,82,0,0,26,82,0,0,28,82,0,0,28,82,0,0,30,82,0,0,34,82,0,0,34,82,0,0,36,82,0,0,36,82,0,0,36,82,0,0,36,82,0,0,40,82,0,0,42,82,0,0,44,82,0,0,44,82,0,0,48,82,0,0,52,82,0,0,56,82,0,0,62,82,0,0,62,82,0,0,64,82,0,0,68,82,0,0,68,82,0,0,70,82,0,0,74,82,0,0,78,82,0,0,80,82,0,0,92,82,0,0,94,82,0,0,94,82,0,0,98,82,0,0,100,82,0,0,100,82,0,0,102,82,0,0,102,82,0,0,102,82,0,0,104,82,0,0,104,82,0,0,106,82,0,0,106,82,0,0,116,82,0,0,116,82,0,0,116,82,0,0,116,82,0,0,116,82,0,0,116,82,0,0,126,82,0,0,132,82,0,0,132,82,0,0,132,82,0,0,136,82,0,0,140,82,0,0,144,82,0,0,152,82,0,0,152,82,0,0,152,82,0,0,154,82,0,0,158,82,0,0,158,82,0,0,158,82,0,0,158,82,0,0,158,82,0,0,158,82,0,0,158,82,0,0,160,82,0,0,160,82,0,0,160,82,0,0,164,82,0,0,164,82,0,0,166,82,0,0,166,82,0,0,166,82,0,0,166,82,0,0,172,82,0,0,172,82,0,0,172,82,0,0,178,82,0,0,178,82,0,0,182,82,0,0,182,82,0,0,182,82,0,0,186,82,0,0,186,82,0,0,190,82,0,0,190,82,0,0,190,82,0,0,190,82,0,0,190,82,0,0,192,82,0,0,192,82,0,0,192,82,0,0,194,82,0,0,200,82,0,0,200,82,0,0,202,82,0,0,202,82,0,0,204,82,0,0,204,82,0,0,204,82,0,0,204,82,0,0,208,82,0,0,214,82,0,0,214,82,0,0,218,82,0,0,226,82,0,0,228,82,0,0,238,82,0,0,238,82,0,0,238,82,0,0,240,82,0,0,242,82,0,0,246,82,0,0,250,82,0,0,250,82,0,0,0,83,0,0,2,83,0,0,2,83,0,0,8,83,0,0,8,83,0,0,8,83,0,0,8,83,0,0,8,83,0,0,8,83,0,0,8,83,0,0,12,83,0,0,12,83,0,0,12,83,0,0,12,83,0,0,12,83,0,0,12,83,0,0,16,83,0,0,16,83,0,0,16,83,0,0,18,83,0,0,18,83,0,0,18,83,0,0,22,83,0,0,28,83,0,0,32,83,0,0,32,83,0,0,34,83,0,0,34,83,0,0,36,83,0,0,42,83,0,0,48,83,0,0,48,83,0,0,50,83,0,0,52,83,0,0,54,83,0,0,54,83,0,0,60,83,0,0,60,83,0,0,66,83,0,0,68,83,0,0,68,83,0,0,68,83,0,0,70,83,0,0,70,83,0,0,70,83,0,0,72,83,0,0,72,83,0,0,72,83,0,0,74,83,0,0,74,83,0,0,74,83,0,0,74,83,0,0,74,83,0,0,74,83,0,0,74,83,0,0,76,83,0,0,78,83,0,0,80,83,0,0,80,83,0,0,80,83,0,0,80,83,0,0,80,83,0,0,80,83,0,0,86,83,0,0,86,83,0,0,86,83,0,0,86,83,0,0,86,83,0,0,86,83,0,0,86,83,0,0,86,83,0,0,86,83,0,0,88,83,0,0,88,83,0,0,90,83,0,0,92,83,0,0,94,83,0,0,94,83,0,0,94,83,0,0,94,83,0,0,94,83,0,0,94,83,0,0,96,83,0,0,98,83,0,0,98,83,0,0,98,83,0,0,98,83,0,0,98,83,0,0,102,83,0,0,104,83,0,0,104,83,0,0,106,83,0,0,106,83,0,0,106,83,0,0,114,83,0,0,124,83,0,0,126,83,0,0,128,83,0,0,130,83,0,0,132,83,0,0,132,83,0,0,132,83,0,0,132,83,0,0,134,83,0,0,136,83,0,0,140,83,0,0,142,83,0,0,142,83,0,0,142,83,0,0,156,83,0,0,156,83,0,0,156,83,0,0,156,83,0,0,158,83,0,0,158,83,0,0,158,83,0,0,160,83,0,0,160,83,0,0,164,83,0,0,168,83,0,0,168,83,0,0,170,83,0,0,170,83,0,0,172,83,0,0,174,83,0,0,176,83,0,0,176,83,0,0,180,83,0,0,180,83,0,0,184,83,0,0,184,83,0,0,184,83,0,0,192,83,0,0,192,83,0,0,192,83,0,0,192,83,0,0,194,83,0,0,194,83,0,0,194,83,0,0,194,83,0,0,200,83,0,0,202,83,0,0,208,83,0,0,208,83,0,0,208,83,0,0,208,83,0,0,208,83,0,0,208,83,0,0,210,83,0,0,210,83,0,0,214,83,0,0,214,83,0,0,218,83,0,0,218,83,0,0,222,83,0,0,226,83,0,0,228,83,0,0,228,83,0,0,232,83,0,0,232,83,0,0,236,83,0,0,238,83,0,0,238,83,0,0,238,83,0,0,240,83,0,0,246,83,0,0,248,83,0,0,250,83,0,0,4,84,0,0,6,84,0,0,14,84,0,0,16,84,0,0,16,84,0,0,22,84,0,0,22,84,0,0,22,84,0,0,24,84,0,0,24,84,0,0,24,84,0,0,26,84,0,0,26,84,0,0,28,84,0,0,30,84,0,0,32,84,0,0,32,84,0,0,32,84,0,0,32,84,0,0,32,84,0,0,34,84,0,0,34,84,0,0,34,84,0,0,34,84,0,0,34,84,0,0,34,84,0,0,36,84,0,0,36,84,0,0,38,84,0,0,40,84,0,0,40,84,0,0,42,84,0,0,44,84,0,0,44,84,0,0,46,84,0,0,60,84,0,0,60,84,0,0,60,84,0,0,68,84,0,0,70,84,0,0,74,84,0,0,76,84,0,0,78,84,0,0,82,84,0,0,82,84,0,0,84,84,0,0,90,84,0,0,90,84,0,0,90,84,0,0,92,84,0,0,92,84,0,0,96,84,0,0,98,84,0,0,98,84,0,0,98,84,0,0,104,84,0,0,104,84,0,0,104,84,0,0,104,84,0,0,104,84,0,0,104,84,0,0,108,84,0,0,110,84,0,0,110,84,0,0,118,84,0,0,120,84,0,0,126,84,0,0,130,84,0,0,130,84,0,0,130,84,0,0,130,84,0,0,130,84,0,0,132,84,0,0,136,84,0,0,136,84,0,0,138,84,0,0,138,84,0,0,138,84,0,0,138,84,0,0,144,84,0,0,146,84,0,0,146,84,0,0,146,84,0,0,146,84,0,0,148,84,0,0,154,84,0,0,164,84,0,0,172,84,0,0,172,84,0,0,176,84,0,0,176,84,0,0,178,84,0,0,190,84,0,0,194,84,0,0,198,84,0,0,204,84,0,0,204,84,0,0,206,84,0,0,208,84,0,0,208,84,0,0,208,84,0,0,208,84,0,0,210,84,0,0,214,84,0,0,220,84,0,0,226,84,0,0,228,84,0,0,228,84,0,0,228,84,0,0,232,84,0,0,232,84,0,0,234,84,0,0,242,84,0,0,244,84,0,0,250,84,0,0,250,84,0,0,250,84,0,0,250,84,0,0,250,84,0,0,254,84,0,0,254,84,0,0,254,84,0,0,254,84,0,0,4,85,0,0,12,85,0,0,12,85,0,0,18,85,0,0,18,85,0,0,18,85,0,0,22,85,0,0,22,85,0,0,36,85,0,0,38,85,0,0,48,85,0,0,48,85,0,0,48,85,0,0,50,85,0,0,52,85,0,0,52,85,0,0,52,85,0,0,56,85,0,0,60,85,0,0,60,85,0,0,60,85,0,0,60,85,0,0,66,85,0,0,68,85,0,0,70,85,0,0,70,85,0,0,72,85,0,0,74,85,0,0,80,85,0,0,86,85,0,0,90,85,0,0,92,85,0,0,94,85,0,0,94,85,0,0,96,85,0,0,98,85,0,0,100,85,0,0,102,85,0,0,108,85,0,0,108,85,0,0,110,85,0,0,110,85,0,0,112,85,0,0,118,85,0,0,120,85,0,0,122,85,0,0,124,85,0,0,124,85,0,0,126,85,0,0,128,85,0,0,128,85,0,0,128,85,0,0,128,85,0,0,128,85,0,0,130,85,0,0,130,85,0,0,136,85,0,0,136,85,0,0,138,85,0,0,138,85,0,0,138,85,0,0,140,85,0,0,142,85,0,0,146,85,0,0,146,85,0,0,146,85,0,0,148,85,0,0,148,85,0,0,148,85,0,0,156,85,0,0,156,85,0,0,156,85,0,0,156,85,0,0,156,85,0,0,160,85,0,0,160,85,0,0,160,85,0,0,160,85,0,0,160,85,0,0,160,85,0,0,166,85,0,0,170,85,0,0,174,85,0,0,174,85,0,0,174,85,0,0,174,85,0,0,174,85,0,0,180,85,0,0,182,85,0,0,184,85,0,0,184,85,0,0,188,85,0,0,190,85,0,0,194,85,0,0,196,85,0,0,198,85,0,0,202,85,0,0,204,85,0,0,204,85,0,0,204,85,0,0,204,85,0,0,204,85,0,0,206,85,0,0,210,85,0,0,214,85,0,0,216,85,0,0,216,85,0,0,220,85,0,0,226,85,0,0,228,85,0,0,228,85,0,0,228,85,0,0,232,85,0,0,238,85,0,0,238,85,0,0,240,85,0,0,242,85,0,0,242,85,0,0,242,85,0,0,252,85,0,0,252,85,0,0,0,86,0,0,0,86,0,0,0,86,0,0,2,86,0,0,2,86,0,0,2,86,0,0,2,86,0,0,2,86,0,0,2,86,0,0,4,86,0,0,4,86,0,0,4,86,0,0,4,86,0,0,4,86,0,0,4,86,0,0,4,86,0,0,4,86,0,0,4,86,0,0,6,86,0,0,6,86,0,0,8,86,0,0,14,86,0,0,14,86,0,0,14,86,0,0,16,86,0,0,22,86,0,0,26,86,0,0,26,86,0,0,26,86,0,0,28,86,0,0,30,86,0,0,34,86,0,0,40,86,0,0,40,86,0,0,44,86,0,0,44,86,0,0,44,86,0,0,44,86,0,0,44,86,0,0,44,86,0,0,50,86,0,0,54,86,0,0,54,86,0,0,60,86,0,0,60,86,0,0,60,86,0,0,60,86,0,0,60,86,0,0,60,86,0,0,60,86,0,0,60,86,0,0,62,86,0,0,66,86,0,0,66,86,0,0,72,86,0,0,74,86,0,0,76,86,0,0,78,86,0,0,80,86,0,0,80,86,0,0,86,86,0,0,92,86,0,0,92,86,0,0,92,86,0,0,92,86,0,0,92,86,0,0,94,86,0,0,94,86,0,0,94,86,0,0,96,86,0,0,96,86,0,0,104,86,0,0,104,86,0,0,106,86,0,0,106,86,0,0,106,86,0,0,106,86,0,0,108,86,0,0,108,86,0,0,108,86,0,0,108,86,0,0,108,86,0,0,110,86,0,0,118,86,0,0,118,86,0,0,118,86,0,0,122,86,0,0,124,86,0,0,124,86,0,0,124,86,0,0,124,86,0,0,128,86,0,0,128,86,0,0,128,86,0,0,136,86,0,0,140,86,0,0,142,86,0,0,144,86,0,0,154,86,0,0,154,86,0,0,154,86,0,0,156,86,0,0,156,86,0,0,156,86,0,0,156,86,0,0,156,86,0,0,156,86,0,0,156,86,0,0,156,86,0,0,156,86,0,0,156,86,0,0,156,86,0,0,156,86,0,0,160,86,0,0,160,86,0,0,168,86,0,0,170,86,0,0,170,86,0,0,170,86,0,0,170,86,0,0,172,86,0,0,172,86,0,0,180,86,0,0,182,86,0,0,190,86,0,0,190,86,0,0,194,86,0,0,194,86,0,0,194,86,0,0,198,86,0,0,206,86,0,0,216,86,0,0,218,86,0,0,218,86,0,0,224,86,0,0,226,86,0,0,226,86,0,0,230,86,0,0,230,86,0,0,232,86,0,0,232,86,0,0,232,86,0,0,232,86,0,0,234,86,0,0,238,86,0,0,238,86,0,0,238,86,0,0,242,86,0,0,246,86,0,0,246,86,0,0,246,86,0,0,246,86,0,0,246,86,0,0,246,86,0,0,246,86,0,0,246,86,0,0,248,86,0,0,6,87,0,0,6,87,0,0,6,87,0,0,10,87,0,0,10,87,0,0,10,87,0,0,16,87,0,0,16,87,0,0,16,87,0,0,16,87,0,0,16,87,0,0,26,87,0,0,26,87,0,0,26,87,0,0,26,87,0,0,26,87,0,0,28,87,0,0,30,87,0,0,30,87,0,0,32,87,0,0,32,87,0,0,32,87,0,0,36,87,0,0,40,87,0,0,40,87,0,0,44,87,0,0,44,87,0,0,46,87,0,0,46,87,0,0,48,87,0,0,48,87,0,0,50,87,0,0,50,87,0,0,50,87,0,0,50,87,0,0,50,87,0,0,50,87,0,0,58,87,0,0,58,87,0,0,58,87,0,0,58,87,0,0,58,87,0,0,60,87,0,0,62,87,0,0,64,87,0,0,68,87,0,0,68,87,0,0,68,87,0,0,70,87,0,0,76,87,0,0,76,87,0,0,76,87,0,0,78,87,0,0,78,87,0,0,80,87,0,0,80,87,0,0,80,87,0,0,80,87,0,0,80,87,0,0,82,87,0,0,90,87,0,0,92,87,0,0,92,87,0,0,100,87,0,0,102,87,0,0,102,87,0,0,102,87,0,0,102,87,0,0,104,87,0,0,104,87,0,0,104,87,0,0,104,87,0,0,104,87,0,0,112,87,0,0,114,87,0,0,114,87,0,0,114,87,0,0,120,87,0,0,132,87,0,0,132,87,0,0,136,87,0,0,138,87,0,0,150,87,0,0,150,87,0,0,150,87,0,0,150,87,0,0,152,87,0,0,158,87,0,0,160,87,0,0,160,87,0,0,160,87,0,0,162,87,0,0,164,87,0,0,168,87,0,0,170,87,0,0,172,87,0,0,172,87,0,0,172,87,0,0,176,87,0,0,176,87,0,0,180,87,0,0,180,87,0,0,180,87,0,0,182,87,0,0,184,87,0,0,190,87,0,0,192,87,0,0,194,87,0,0,194,87,0,0,194,87,0,0,194,87,0,0,204,87,0,0,210,87,0,0,212,87,0,0,212,87,0,0,214,87,0,0,214,87,0,0,216,87,0,0,216,87,0,0,216,87,0,0,216,87,0,0,216,87,0,0,216,87,0,0,216,87,0,0,218,87,0,0,224,87,0,0,224,87,0,0,224,87,0,0,226,87,0,0,228,87,0,0,230,87,0,0,236,87,0,0,236,87,0,0,236,87,0,0,236,87,0,0,240,87,0,0,240,87,0,0,242,87,0,0,242,87,0,0,242,87,0,0,242,87,0,0,242,87,0,0,242,87,0,0,242,87,0,0,242,87,0,0,242,87,0,0,242,87,0,0,242,87,0,0,244,87,0,0,244,87,0,0,244,87,0,0,244,87,0,0,244,87,0,0,244,87,0,0,244,87,0,0,246,87,0,0,250,87,0,0,252,87,0,0,252,87,0,0,254,87,0,0,0,88,0,0,0,88,0,0,0,88,0,0,0,88,0,0,2,88,0,0,2,88,0,0,2,88,0,0,4,88,0,0,4,88,0,0,8,88,0,0,8,88,0,0,8,88,0,0,8,88,0,0,8,88,0,0,12,88,0,0,24,88,0,0,24,88,0,0,40,88,0,0,40,88,0,0,40,88,0,0,40,88,0,0,40,88,0,0,40,88,0,0,40,88,0,0,40,88,0,0,40,88,0,0,44,88,0,0,44,88,0,0,44,88,0,0,44,88,0,0,46,88,0,0,46,88,0,0,48,88,0,0,50,88,0,0,52,88,0,0,58,88,0,0,58,88,0,0,64,88,0,0,64,88,0,0,68,88,0,0,72,88,0,0,74,88,0,0,74,88,0,0,74,88,0,0,74,88,0,0,74,88,0,0,74,88,0,0,74,88,0,0,74,88,0,0,82,88,0,0,82,88,0,0,82,88,0,0,82,88,0,0,86,88,0,0,86,88,0,0,86,88,0,0,90,88,0,0,92,88,0,0,94,88,0,0,98,88,0,0,98,88,0,0,104,88,0,0,110,88,0,0,110,88,0,0,114,88,0,0,114,88,0,0,114,88,0,0,114,88,0,0,114,88,0,0,114,88,0,0,114,88,0,0,114,88,0,0,114,88,0,0,116,88,0,0,116,88,0,0,120,88,0,0,124,88,0,0,124,88,0,0,124,88,0,0,128,88,0,0,128,88,0,0,130,88,0,0,130,88,0,0,130,88,0,0,130,88,0,0,130,88,0,0,130,88,0,0,130,88,0,0,130,88,0,0,130,88,0,0,136,88,0,0,136,88,0,0,138,88,0,0,138,88,0,0,138,88,0,0,138,88,0,0,140,88,0,0,150,88,0,0,152,88,0,0,154,88,0,0,156,88,0,0,158,88,0,0,158,88,0,0,160,88,0,0,164,88,0,0,176,88,0,0,176,88,0,0,176,88,0,0,176,88,0,0,178,88,0,0,180,88,0,0,180,88,0,0,182,88,0,0,186,88,0,0,188,88,0,0,188,88,0,0,188,88,0,0,188,88,0,0,188,88,0,0,188,88,0,0,190,88,0,0,190,88,0,0,190,88,0,0,190,88,0,0,190,88,0,0,192,88,0,0,192,88,0,0,194,88,0,0,194,88,0,0,196,88,0,0,196,88,0,0,196,88,0,0,202,88,0,0,202,88,0,0,202,88,0,0,204,88,0,0,204,88,0,0,204,88,0,0,204,88,0,0,204,88,0,0,208,88,0,0,210,88,0,0,210,88,0,0,212,88,0,0,216,88,0,0,218,88,0,0,220,88,0,0,220,88,0,0,220,88,0,0,222,88,0,0,222,88,0,0,222,88,0,0,222,88,0,0,222,88,0,0,232,88,0,0,232,88,0,0,238,88,0,0,238,88,0,0,244,88,0,0,250,88,0,0,2,89,0,0,4,89,0,0,4,89,0,0,6,89,0,0,6,89,0,0,6,89,0,0,6,89,0,0,6,89,0,0,6,89,0,0,6,89,0,0,6,89,0,0,10,89,0,0,12,89,0,0,14,89,0,0,20,89,0,0,20,89,0,0,20,89,0,0,20,89,0,0,22,89,0,0,24,89,0,0,24,89,0,0,24,89,0,0,24,89,0,0,24,89,0,0,28,89,0,0,30,89,0,0,32,89,0,0,34,89,0,0,42,89,0,0,42,89,0,0,44,89,0,0,44,89,0,0,44,89,0,0,46,89,0,0,46,89,0,0,46,89,0,0,50,89,0,0,50,89,0,0,56,89,0,0,56,89,0,0,62,89,0,0,66,89,0,0,68,89,0,0,68,89,0,0,68,89,0,0,70,89,0,0,70,89,0,0,70,89,0,0,72,89,0,0,72,89,0,0,72,89,0,0,72,89,0,0,72,89,0,0,72,89,0,0,72,89,0,0,78,89,0,0,78,89,0,0,78,89,0,0,78,89,0,0,82,89,0,0,84,89,0,0,84,89,0,0,84,89,0,0,84,89,0,0,84,89,0,0,86,89,0,0,86,89,0,0,86,89,0,0,86,89,0,0,88,89,0,0,88,89,0,0,90,89,0,0,92,89,0,0,98,89,0,0,98,89,0,0,102,89,0,0,104,89,0,0,104,89,0,0,104,89,0,0,110,89,0,0,110,89,0,0,110,89,0,0,110,89,0,0,112,89,0,0,112,89,0,0,120,89,0,0,122,89,0,0,122,89,0,0,122,89,0,0,128,89,0,0,132,89,0,0,132,89,0,0,134,89,0,0,136,89,0,0,138,89,0,0,138,89,0,0,138,89,0,0,138,89,0,0,138,89,0,0,142,89,0,0,142,89,0,0,142,89,0,0,142,89,0,0,142,89,0,0,142,89,0,0,144,89,0,0,148,89,0,0,148,89,0,0,154,89,0,0,154,89,0,0,154,89,0,0,154,89,0,0,154,89,0,0,154,89,0,0,164,89,0,0,164,89,0,0,164,89,0,0,170,89,0,0,170,89,0,0,172,89,0,0,172,89,0,0,172,89,0,0,172,89,0,0,172,89,0,0,172,89,0,0,172,89,0,0,178,89,0,0,178,89,0,0,178,89,0,0,182,89,0,0,182,89,0,0,184,89,0,0,184,89,0,0,188,89,0,0,198,89,0,0,198,89,0,0,202,89,0,0,202,89,0,0,204,89,0,0,206,89,0,0,210,89,0,0,212,89,0,0,212,89,0,0,212,89,0,0,216,89,0,0,218,89,0,0,220,89,0,0,222,89,0,0,232,89,0,0,236,89,0,0,236,89,0,0,236,89,0,0,236,89,0,0,236,89,0,0,236,89,0,0,240,89,0,0,240,89,0,0,242,89,0,0,242,89,0,0,246,89,0,0,246,89,0,0,250,89,0,0,252,89,0,0,252,89,0,0,2,90,0,0,12,90,0,0,12,90,0,0,12,90,0,0,16,90,0,0,20,90,0,0,20,90,0,0,22,90,0,0,28,90,0,0,30,90,0,0,34,90,0,0,40,90,0,0,40,90,0,0,40,90,0,0,42,90,0,0,50,90,0,0,56,90,0,0,58,90,0,0,62,90,0,0,62,90,0,0,62,90,0,0,64,90,0,0,68,90,0,0,68,90,0,0,68,90,0,0,68,90,0,0,70,90,0,0,70,90,0,0,70,90,0,0,76,90,0,0,78,90,0,0,84,90,0,0,84,90,0,0,88,90,0,0,88,90,0,0,88,90,0,0,90,90,0,0,96,90,0,0,108,90,0,0,116,90,0,0,116,90,0,0,120,90,0,0,120,90,0,0,124,90,0,0,128,90,0,0,134,90,0,0,134,90,0,0,134,90,0,0,136,90,0,0,140,90,0,0,140,90,0,0,142,90,0,0,148,90,0,0,150,90,0,0,156,90,0,0,156,90,0,0,156,90,0,0,158,90,0,0,162,90,0,0,162,90,0,0,162,90,0,0,162,90,0,0,164,90,0,0,164,90,0,0,172,90,0,0,174,90,0,0,176,90,0,0,186,90,0,0,186,90,0,0,186,90,0,0,186,90,0,0,186,90,0,0,186,90,0,0,188,90,0,0,188,90,0,0,188,90,0,0,188,90,0,0,190,90,0,0,190,90,0,0,192,90,0,0,192,90,0,0,194,90,0,0,202,90,0,0,202,90,0,0,202,90,0,0,202,90,0,0,204,90,0,0,204,90,0,0,204,90,0,0,204,90,0,0,204,90,0,0,204,90,0,0,206,90,0,0,206,90,0,0,208,90,0,0,208,90,0,0,208,90,0,0,208,90,0,0,208,90,0,0,210,90,0,0,214,90,0,0,214,90,0,0,214,90,0,0,214,90,0,0,214,90,0,0,214,90,0,0,222,90,0,0,222,90,0,0,222,90,0,0,224,90,0,0,224,90,0,0,224,90,0,0,224,90,0,0,226,90,0,0,228,90,0,0,230,90,0,0,230,90,0,0,230,90,0,0,242,90,0,0,244,90,0,0,246,90,0,0,246,90,0,0,248,90,0,0,248,90,0,0,248,90,0,0,248,90,0,0,0,91,0,0,8,91,0,0,10,91,0,0,14,91,0,0,14,91,0,0,16,91,0,0,16,91,0,0,16,91,0,0,22,91,0,0,28,91,0,0,34,91,0,0,36,91,0,0,40,91,0,0,44,91,0,0,46,91,0,0,46,91,0,0,58,91,0,0,64,91,0,0,68,91,0,0,70,91,0,0,80,91,0,0,80,91,0,0,80,91,0,0,80,91,0,0,84,91,0,0,86,91,0,0,88,91,0,0,88,91,0,0,88,91,0,0,90,91,0,0,90,91,0,0,90,91,0,0,90,91,0,0,94,91,0,0,96,91,0,0,104,91,0,0,106,91,0,0,106,91,0,0,110,91,0,0,112,91,0,0,112,91,0,0,114,91,0,0,114,91,0,0,116,91,0,0,118,91,0,0,126,91,0,0,126,91,0,0,132,91,0,0,132,91,0,0,132,91,0,0,136,91,0,0,136,91,0,0,136,91,0,0,138,91,0,0,138,91,0,0,140,91,0,0,140,91,0,0,146,91,0,0,146,91,0,0,150,91,0,0,160,91,0,0,170,91,0,0,170,91,0,0,170,91,0,0,174,91,0,0,178,91,0,0,178,91,0,0,178,91,0,0,182,91,0,0,182,91,0,0,184,91,0,0,186,91,0,0,188,91,0,0,188,91,0,0,190,91,0,0,190,91,0,0,190,91,0,0,194,91,0,0,196,91,0,0,196,91,0,0,196,91,0,0,202,91,0,0,204,91,0,0,204,91,0,0,204,91,0,0,204,91,0,0,206,91,0,0,212,91,0,0,218,91,0,0,218,91,0,0,228,91,0,0,228,91,0,0,228,91,0,0,228,91,0,0,238,91,0,0,246,91,0,0,246,91,0,0,254,91,0,0,254,91,0,0,4,92,0,0,4,92,0,0,4,92,0,0,6,92,0,0,6,92,0,0,8,92,0,0,8,92,0,0,12,92,0,0,12,92,0,0,14,92,0,0,18,92,0,0,20,92,0,0,30,92,0,0,32,92,0,0,34,92,0,0,36,92,0,0,40,92,0,0,40,92,0,0,40,92,0,0,40,92,0,0,40,92,0,0,40,92,0,0,42,92,0,0,42,92,0,0,42,92,0,0,42,92,0,0,46,92,0,0,46,92,0,0,50,92,0,0,50,92,0,0,50,92,0,0,52,92,0,0,52,92,0,0,52,92,0,0,60,92,0,0,62,92,0,0,62,92,0,0,74,92,0,0,76,92,0,0,84,92,0,0,86,92,0,0,90,92,0,0,92,92,0,0,92,92,0,0,94,92,0,0,94,92,0,0,94,92,0,0,94,92,0,0,96,92,0,0,96,92,0,0,100,92,0,0,100,92,0,0,102,92,0,0,110,92,0,0,110,92,0,0,110,92,0,0,116,92,0,0,122,92,0,0,124,92,0,0,126,92,0,0,126,92,0,0,130,92,0,0,130,92,0,0,140,92,0,0,140,92,0,0,140,92,0,0,140,92,0,0,142,92,0,0,144,92,0,0,144,92,0,0,144,92,0,0,148,92,0,0,148,92,0,0,152,92,0,0,154,92,0,0,158,92,0,0,168,92,0,0,168,92,0,0,172,92,0,0,172,92,0,0,174,92,0,0,174,92,0,0,174,92,0,0,174,92,0,0,182,92,0,0,182,92,0,0,182,92,0,0,190,92,0,0,190,92,0,0,190,92,0,0,190,92,0,0,190,92,0,0,190,92,0,0,192,92,0,0,192,92,0,0,192,92,0,0,192,92,0,0,200,92,0,0,206,92,0,0,206,92,0,0,210,92,0,0,214,92,0,0,216,92,0,0,216,92,0,0,218,92,0,0,220,92,0,0,222,92,0,0,222,92,0,0,222,92,0,0,224,92,0,0,226,92,0,0,230,92,0,0,238,92,0,0,238,92,0,0,238,92,0,0,240,92,0,0,240,92,0,0,242,92,0,0,246,92,0,0,246,92,0,0,248,92,0,0,248,92,0,0,248,92,0,0,248,92,0,0,254,92,0,0,254,92,0,0,6,93,0,0,6,93,0,0,6,93,0,0,10,93,0,0,14,93,0,0,14,93,0,0,16,93,0,0,16,93,0,0,18,93,0,0,18,93,0,0,20,93,0,0,20,93,0,0,22,93,0,0,22,93,0,0,24,93,0,0,30,93,0,0,32,93,0,0,32,93,0,0,36,93,0,0,36,93,0,0,36,93,0,0,36,93,0,0,44,93,0,0,48,93,0,0,48,93,0,0,50,93,0,0,56,93,0,0,64,93,0,0,66,93,0,0,68,93,0,0,68,93,0,0,68,93,0,0,68,93,0,0,68,93,0,0,72,93,0,0,74,93,0,0,76,93,0,0,80,93,0,0,80,93,0,0,80,93,0,0,86,93,0,0,86,93,0,0,86,93,0,0,86,93,0,0,86,93,0,0,86,93,0,0,88,93,0,0,88,93,0,0,88,93,0,0,88,93,0,0,88,93,0,0,90,93,0,0,98,93,0,0,98,93,0,0,104,93,0,0,104,93,0,0,104,93,0,0,104,93,0,0,106,93,0,0,106,93,0,0,110,93,0,0,110,93,0,0,110,93,0,0,114,93,0,0,114,93,0,0,114,93,0,0,114,93,0,0,116,93,0,0,120,93,0,0,124,93,0,0,124,93,0,0,130,93,0,0,132,93,0,0,136,93,0,0,136,93,0,0,138,93,0,0,144,93,0,0,144,93,0,0,150,93,0,0,152,93,0,0,156,93,0,0,156,93,0,0,158,93,0,0,160,93,0,0,162,93,0,0,164,93,0,0,164,93,0,0,166,93,0,0,166,93,0,0,174,93,0,0,174,93,0,0,176,93,0,0,176,93,0,0,176,93,0,0,176,93,0,0,176,93,0,0,176,93,0,0,176,93,0,0,184,93,0,0,186,93,0,0,186,93,0,0,190,93,0,0,190,93,0,0,190,93,0,0,190,93,0,0,190,93,0,0,190,93,0,0,196,93,0,0,196,93,0,0,196,93,0,0,200,93,0,0,200,93,0,0,200,93,0,0,200,93,0,0,206,93,0,0,206,93,0,0,206,93,0,0,206,93,0,0,206,93,0,0,206,93,0,0,210,93,0,0,214,93,0,0,216,93,0,0,216,93,0,0,220,93,0,0,226,93,0,0,226,93,0,0,226,93,0,0,232,93,0,0,232,93,0,0,232,93,0,0,238,93,0,0,250,93,0,0,250,93,0,0,250,93,0,0,250,93,0,0,250,93,0,0,250,93,0,0,250,93,0,0,252,93,0,0,252,93,0,0,252,93,0,0,252,93,0,0,4,94,0,0,4,94,0,0,10,94,0,0,12,94,0,0,12,94,0,0,12,94,0,0,12,94,0,0,12,94,0,0,14,94,0,0,22,94,0,0,24,94,0,0,24,94,0,0,24,94,0,0,28,94,0,0,32,94,0,0,32,94,0,0,34,94,0,0,34,94,0,0,34,94,0,0,34,94,0,0,34,94,0,0,34,94,0,0,42,94,0,0,42,94,0,0,42,94,0,0,48,94,0,0,48,94,0,0,52,94,0,0,52,94,0,0,52,94,0,0,52,94,0,0,52,94,0,0,52,94,0,0,60,94,0,0,64,94,0,0,64,94,0,0,66,94,0,0,74,94,0,0,74,94,0,0,78,94,0,0,80,94,0,0,84,94,0,0,88,94,0,0,88,94,0,0,92,94,0,0,94,94,0,0,96,94,0,0,96,94,0,0,100,94,0,0,104,94,0,0,108,94,0,0,110,94,0,0,110,94,0,0,112,94,0,0,116,94,0,0,116,94,0,0,120,94,0,0,122,94,0,0,124,94,0,0,124,94,0,0,132,94,0,0,132,94,0,0,132,94,0,0,132,94,0,0,132,94,0,0,132,94,0,0,136,94,0,0,138,94,0,0,148,94,0,0,148,94,0,0,148,94,0,0,148,94,0,0,150,94,0,0,152,94,0,0,154,94,0,0,154,94,0,0,154,94,0,0,154,94,0,0,154,94,0,0,154,94,0,0,154,94,0,0,154,94,0,0,154,94,0,0,156,94,0,0,158,94,0,0,162,94,0,0,162,94,0,0,164,94,0,0,164,94,0,0,164,94,0,0,164,94,0,0,164,94,0,0,164,94,0,0,164,94,0,0,164,94,0,0,168,94,0,0,170,94,0,0,170,94,0,0,170,94,0,0,172,94,0,0,176,94,0,0,182,94,0,0,186,94,0,0,186,94,0,0,186,94,0,0,192,94,0,0,194,94,0,0,194,94,0,0,194,94,0,0,194,94,0,0,196,94,0,0,196,94,0,0,196,94,0,0,200,94,0,0,202,94,0,0,202,94,0,0,204,94,0,0,204,94,0,0,204,94,0,0,206,94,0,0,216,94,0,0,216,94,0,0,216,94,0,0,216,94,0,0,222,94,0,0,222,94,0,0,222,94,0,0,222,94,0,0,226,94,0,0,226,94,0,0,228,94,0,0,232,94,0,0,234,94,0,0,234,94,0,0,234,94,0,0,234,94,0,0,234,94,0,0,236,94,0,0,236,94,0,0,242,94,0,0,244,94,0,0,244,94,0,0,244,94,0,0,244,94,0,0,248,94,0,0,250,94,0,0,250,94,0,0,250,94,0,0,250,94,0,0,8,95,0,0,8,95,0,0,16,95,0,0,20,95,0,0,20,95,0,0,20,95,0,0,20,95,0,0,20,95,0,0,26,95,0,0,34,95,0,0,34,95,0,0,34,95,0,0,34,95,0,0,34,95,0,0,34,95,0,0,38,95,0,0,42,95,0,0,48,95,0,0,52,95,0,0,52,95,0,0,60,95,0,0,60,95,0,0,66,95,0,0,74,95,0,0,76,95,0,0,76,95,0,0,80,95,0,0,84,95,0,0,86,95,0,0,88,95,0,0,92,95,0,0,92,95,0,0,94,95,0,0,94,95,0,0,96,95,0,0,96,95,0,0,96,95,0,0,96,95,0,0,100,95,0,0,100,95,0,0,104,95,0,0,106,95,0,0,106,95,0,0,108,95,0,0,108,95,0,0,108,95,0,0,108,95,0,0,110,95,0,0,114,95,0,0,114,95,0,0,114,95,0,0,114,95,0,0,114,95,0,0,118,95,0,0,118,95,0,0,124,95,0,0,124,95,0,0,128,95,0,0,128,95,0,0,132,95,0,0,132,95,0,0,142,95,0,0,144,95,0,0,146,95,0,0,150,95,0,0,156,95,0,0,156,95,0,0,160,95,0,0,166,95,0,0,168,95,0,0,170,95,0,0,170,95,0,0,170,95,0,0,172,95,0,0,172,95,0,0,176,95,0,0,178,95,0,0,186,95,0,0,188,95,0,0,188,95,0,0,196,95,0,0,198,95,0,0,200,95,0,0,200,95,0,0,200,95,0,0,206,95,0,0,206,95,0,0,206,95,0,0,206,95,0,0,206,95,0,0,212,95,0,0,212,95,0,0,212,95,0,0,216,95,0,0,216,95,0,0,218,95,0,0,222,95,0,0,224,95,0,0,224,95,0,0,224,95,0,0,228,95,0,0,228,95,0,0,232,95,0,0,232,95,0,0,232,95,0,0,238,95,0,0,240,95,0,0,246,95,0,0,248,95,0,0,250,95,0,0,250,95,0,0,252,95,0,0,0,96,0,0,8,96,0,0,8,96,0,0,10,96,0,0,10,96,0,0,14,96,0,0,20,96,0,0,20,96,0,0,22,96,0,0,22,96,0,0,22,96,0,0,22,96,0,0,24,96,0,0,36,96,0,0,36,96,0,0,36,96,0,0,36,96,0,0,36,96,0,0,36,96,0,0,36,96,0,0,36,96,0,0,40,96,0,0,42,96,0,0,42,96,0,0,42,96,0,0,42,96,0,0,46,96,0,0,46,96,0,0,50,96,0,0,50,96,0,0,60,96,0,0,66,96,0,0,66,96,0,0,68,96,0,0,72,96,0,0,80,96,0,0,84,96,0,0,86,96,0,0,88,96,0,0,88,96,0,0,88,96,0,0,90,96,0,0,90,96,0,0,92,96,0,0,94,96,0,0,94,96,0,0,94,96,0,0,96,96,0,0,96,96,0,0,96,96,0,0,100,96,0,0,104,96,0,0,108,96,0,0,110,96,0,0,114,96,0,0,116,96,0,0,116,96,0,0,118,96,0,0,118,96,0,0,118,96,0,0,124,96,0,0,126,96,0,0,128,96,0,0,130,96,0,0,134,96,0,0,134,96,0,0,138,96,0,0,138,96,0,0,140,96,0,0,142,96,0,0,142,96,0,0,144,96,0,0,144,96,0,0,150,96,0,0,150,96,0,0,152,96,0,0,152,96,0,0,152,96,0,0,156,96,0,0,160,96,0,0,160,96,0,0,160,96,0,0,164,96,0,0,164,96,0,0,164,96,0,0,164,96,0,0,164,96,0,0,168,96,0,0,168,96,0,0,168,96,0,0,168,96,0,0,170,96,0,0,170,96,0,0,170,96,0,0,172,96,0,0,172,96,0,0,172,96,0,0,172,96,0,0,172,96,0,0,172,96,0,0,172,96,0,0,174,96,0,0,174,96,0,0,174,96,0,0,176,96,0,0,182,96,0,0,184,96,0,0,188,96,0,0,188,96,0,0,190,96,0,0,190,96,0,0,190,96,0,0,190,96,0,0,196,96,0,0,198,96,0,0,198,96,0,0,198,96,0,0,198,96,0,0,202,96,0,0,204,96,0,0,204,96,0,0,206,96,0,0,206,96,0,0,210,96,0,0,218,96,0,0,218,96,0,0,222,96,0,0,222,96,0,0,222,96,0,0,222,96,0,0,222,96,0,0,224,96,0,0,228,96,0,0,230,96,0,0,234,96,0,0,234,96,0,0,234,96,0,0,234,96,0,0,236,96,0,0,236,96,0,0,236,96,0,0,236,96,0,0,236,96,0,0,244,96,0,0,254,96,0,0,4,97,0,0,4,97,0,0,4,97,0,0,4,97,0,0,4,97,0,0,20,97,0,0,20,97,0,0,20,97,0,0,20,97,0,0,20,97,0,0,20,97,0,0,26,97,0,0,26,97,0,0,28,97,0,0,34,97,0,0,38,97,0,0,44,97,0,0,48,97,0,0,54,97,0,0,54,97,0,0,60,97,0,0,60,97,0,0,60,97,0,0,62,97,0,0,72,97,0,0,76,97,0,0,76,97,0,0,76,97,0,0,82,97,0,0,82,97,0,0,84,97,0,0,84,97,0,0,88,97,0,0,90,97,0,0,92,97,0,0,92,97,0,0,94,97,0,0,94,97,0,0,96,97,0,0,98,97,0,0,102,97,0,0,102,97,0,0,102,97,0,0,102,97,0,0,102,97,0,0,104,97,0,0,114,97,0,0,118,97,0,0,120,97,0,0,120,97,0,0,120,97,0,0,122,97,0,0,124,97,0,0,124,97,0,0,128,97,0,0,132,97,0,0,132,97,0,0,142,97,0,0,142,97,0,0,144,97,0,0,152,97,0,0,152,97,0,0,158,97,0,0,160,97,0,0,160,97,0,0,160,97,0,0,160,97,0,0,160,97,0,0,160,97,0,0,164,97,0,0,172,97,0,0,176,97,0,0,176,97,0,0,180,97,0,0,182,97,0,0,182,97,0,0,184,97,0,0,184,97,0,0,184,97,0,0,184,97,0,0,184,97,0,0,184,97,0,0,186,97,0,0,186,97,0,0,192,97,0,0,192,97,0,0,192,97,0,0,194,97,0,0,194,97,0,0,194,97,0,0,194,97,0,0,194,97,0,0,198,97,0,0,200,97,0,0,200,97,0,0,204,97,0,0,204,97,0,0,208,97,0,0,214,97,0,0,220,97,0,0,224,97,0,0,226,97,0,0,226,97,0,0,230,97,0,0,230,97,0,0,236,97,0,0,236,97,0,0,236,97,0,0,236,97,0,0,236,97,0,0,238,97,0,0,240,97,0,0,244,97,0,0,244,97,0,0,248,97,0,0,252,97,0,0,252,97,0,0,0,98,0,0,10,98,0,0,14,98,0,0,20,98,0,0,20,98,0,0,22,98,0,0,22,98,0,0,22,98,0,0,22,98,0,0,22,98,0,0,22,98,0,0,24,98,0,0,26,98,0,0,28,98,0,0,28,98,0,0,32,98,0,0,32,98,0,0,32,98,0,0,32,98,0,0,38,98,0,0,40,98,0,0,46,98,0,0,46,98,0,0,46,98,0,0,46,98,0,0,50,98,0,0,52,98,0,0,62,98,0,0,68,98,0,0,68,98,0,0,70,98,0,0,72,98,0,0,74,98,0,0,74,98,0,0,80,98,0,0,92,98,0,0,94,98,0,0,94,98,0,0,94,98,0,0,96,98,0,0,96,98,0,0,104,98,0,0,106,98,0,0,106,98,0,0,106,98,0,0,106,98,0,0,106,98,0,0,108,98,0,0,108,98,0,0,116,98,0,0,116,98,0,0,118,98,0,0,118,98,0,0,118,98,0,0,118,98,0,0,120,98,0,0,122,98,0,0,122,98,0,0,122,98,0,0,124,98,0,0,124,98,0,0,124,98,0,0,124,98,0,0,124,98,0,0,124,98,0,0,126,98,0,0,126,98,0,0,126,98,0,0,128,98,0,0,130,98,0,0,130,98,0,0,134,98,0,0,140,98,0,0,140,98,0,0,140,98,0,0,142,98,0,0,142,98,0,0,146,98,0,0,152,98,0,0,152,98,0,0,154,98,0,0,158,98,0,0,158,98,0,0,158,98,0,0,162,98,0,0,164,98,0,0,164,98,0,0,164,98,0,0,164,98,0,0,164,98,0,0,164,98,0,0,166,98,0,0,168,98,0,0,170,98,0,0,170,98,0,0,170,98,0,0,172,98,0,0,172,98,0,0,172,98,0,0,174,98,0,0,178,98,0,0,180,98,0,0,180,98,0,0,182,98,0,0,186,98,0,0,188,98,0,0,190,98,0,0,196,98,0,0,196,98,0,0,196,98,0,0,198,98,0,0,206,98,0,0,210,98,0,0,212,98,0,0,212,98,0,0,214,98,0,0,216,98,0,0,216,98,0,0,216,98,0,0,220,98,0,0,224,98,0,0,224,98,0,0,228,98,0,0,232,98,0,0,232,98,0,0,232,98,0,0,232,98,0,0,232,98,0,0,236,98,0,0,236,98,0,0,242,98,0,0,244,98,0,0,246,98,0,0,246,98,0,0,246,98,0,0,250,98,0,0,0,99,0,0,4,99,0,0,4,99,0,0,6,99,0,0,10,99,0,0,14,99,0,0,14,99,0,0,20,99,0,0,26,99,0,0,26,99,0,0,26,99,0,0,26,99,0,0,26,99,0,0,30,99,0,0,30,99,0,0,36,99,0,0,36,99,0,0,36,99,0,0,36,99,0,0,36,99,0,0,36,99,0,0,44,99,0,0,46,99,0,0,50,99,0,0,52,99,0,0,52,99,0,0,56,99,0,0,56,99,0,0,56,99,0,0,64,99,0,0,64,99,0,0,70,99,0,0,70,99,0,0,72,99,0,0,74,99,0,0,80,99,0,0,80,99,0,0,82,99,0,0,82,99,0,0,82,99,0,0,82,99,0,0,82,99,0,0,86,99,0,0,90,99,0,0,92,99,0,0,94,99,0,0,98,99,0,0,98,99,0,0,98,99,0,0,98,99,0,0,100,99,0,0,100,99,0,0,102,99,0,0,102,99,0,0,104,99,0,0,104,99,0,0,106,99,0,0,108,99,0,0,110,99,0,0,112,99,0,0,114,99,0,0,114,99,0,0,114,99,0,0,116,99,0,0,116,99,0,0,118,99,0,0,120,99,0,0,120,99,0,0,120,99,0,0,124,99,0,0,124,99,0,0,130,99,0,0,130,99,0,0,130,99,0,0,132,99,0,0,132,99,0,0,134,99,0,0,134,99,0,0,136,99,0,0,136,99,0,0,140,99,0,0,140,99,0,0,144,99,0,0,152,99,0,0,152,99,0,0,156,99,0,0,160,99,0,0,162,99,0,0,162,99,0,0,162,99,0,0,168,99,0,0,174,99,0,0,178,99,0,0,184,99,0,0,188,99,0,0,190,99,0,0,192,99,0,0,192,99,0,0,192,99,0,0,192,99,0,0,192,99,0,0,192,99,0,0,198,99,0,0,198,99,0,0,206,99,0,0,214,99,0,0,214,99,0,0,214,99,0,0,218,99,0,0,222,99,0,0,224,99,0,0,224,99,0,0,224,99,0,0,224,99,0,0,226,99,0,0,226,99,0,0,226,99,0,0,230,99,0,0,230,99,0,0,232,99,0,0,232,99,0,0,234,99,0,0,252,99,0,0,254,99,0,0,254,99,0,0,0,100,0,0,0,100,0,0,6,100,0,0,12,100,0,0,14,100,0,0,16,100,0,0,16,100,0,0,18,100,0,0,18,100,0,0,18,100,0,0,22,100,0,0,22,100,0,0,28,100,0,0,30,100,0,0,36,100,0,0,36,100,0,0,36,100,0,0,36,100,0,0,36,100,0,0,36,100,0,0,36,100,0,0,36,100,0,0,44,100,0,0,44,100,0,0,44,100,0,0,48,100,0,0,48,100,0,0,58,100,0,0,60,100,0,0,66,100,0,0,68,100,0,0,68,100,0,0,68,100,0,0,68,100,0,0,72,100,0,0,76,100,0,0,76,100,0,0,80,100,0,0,80,100,0,0,82,100,0,0,86,100,0,0,86,100,0,0,86,100,0,0,86,100,0,0,86,100,0,0,90,100,0,0,90,100,0,0,90,100,0,0,94,100,0,0,94,100,0,0,94,100,0,0,94,100,0,0,100,100,0,0,100,100,0,0,100,100,0,0,102,100,0,0,106,100,0,0,106,100,0,0,110,100,0,0,110,100,0,0,114,100,0,0,114,100,0,0,114,100,0,0,116,100,0,0,118,100,0,0,118,100,0,0,120,100,0,0,122,100,0,0,124,100,0,0,128,100,0,0,130,100,0,0,130,100,0,0,138,100,0,0,138,100,0,0,138,100,0,0,140,100,0,0,144,100,0,0,144,100,0,0,144,100,0,0,144,100,0,0,146,100,0,0,146,100,0,0,148,100,0,0,148,100,0,0,148,100,0,0,148,100,0,0,148,100,0,0,148,100,0,0,158,100,0,0,160,100,0,0,162,100,0,0,162,100,0,0,164,100,0,0,174,100,0,0,174,100,0,0,174,100,0,0,174,100,0,0,174,100,0,0,178,100,0,0,182,100,0,0,182,100,0,0,186,100,0,0,188,100,0,0,188,100,0,0,190,100,0,0,190,100,0,0,198,100,0,0,198,100,0,0,204,100,0,0,204,100,0,0,204,100,0,0,206,100,0,0,206,100,0,0,210,100,0,0,218,100,0,0,220,100,0,0,222,100,0,0,222,100,0,0,226,100,0,0,230,100,0,0,230,100,0,0,230,100,0,0,234,100,0,0,234,100,0,0,234,100,0,0,236,100,0,0,238,100,0,0,242,100,0,0,242,100,0,0,248,100,0,0,250,100,0,0,250,100,0,0,254,100,0,0,0,101,0,0,4,101,0,0,4,101,0,0,4,101,0,0,6,101,0,0,6,101,0,0,10,101,0,0,14,101,0,0,20,101,0,0,20,101,0,0,22,101,0,0,22,101,0,0,28,101,0,0,30,101,0,0,30,101,0,0,32,101,0,0,32,101,0,0,32,101,0,0,32,101,0,0,34,101,0,0,40,101,0,0,40,101,0,0,46,101,0,0,46,101,0,0,46,101,0,0,46,101,0,0,46,101,0,0,48,101,0,0,48,101,0,0,48,101,0,0,48,101,0,0,48,101,0,0,50,101,0,0,50,101,0,0,50,101,0,0,50,101,0,0,50,101,0,0,50,101,0,0,52,101,0,0,56,101,0,0,60,101,0,0,60,101,0,0,60,101,0,0,60,101,0,0,60,101,0,0,64,101,0,0,68,101,0,0,68,101,0,0,70,101,0,0,76,101,0,0,82,101,0,0,82,101,0,0,82,101,0,0,90,101,0,0,94,101,0,0,94,101,0,0,94,101,0,0,94,101,0,0,98,101,0,0,98,101,0,0,98,101,0,0,110,101,0,0,110,101,0,0,110,101,0,0,110,101,0,0,114,101,0,0,114,101,0,0,116,101,0,0,118,101,0,0,120,101,0,0,120,101,0,0,120,101,0,0,132,101,0,0,134,101,0,0,134,101,0,0,134,101,0,0,134,101,0,0,138,101,0,0,138,101,0,0,140,101,0,0,140,101,0,0,150,101,0,0,150,101,0,0,152,101,0,0,152,101,0,0,152,101,0,0,156,101,0,0,160,101,0,0,162,101,0,0,162,101,0,0,162,101,0,0,162,101,0,0,162,101,0,0,162,101,0,0,162,101,0,0,162,101,0,0,166,101,0,0,170,101,0,0,176,101,0,0,184,101,0,0,190,101,0,0,190,101,0,0,190,101,0,0,190,101,0,0,190,101,0,0,194,101,0,0,200,101,0,0,200,101,0,0,200,101,0,0,200,101,0,0,200,101,0,0,202,101,0,0,202,101,0,0,202,101,0,0,202,101,0,0,204,101,0,0,204,101,0,0,206,101,0,0,206,101,0,0,206,101,0,0,212,101,0,0,214,101,0,0,216,101,0,0,216,101,0,0,218,101,0,0,220,101,0,0,220,101,0,0,222,101,0,0,222,101,0,0,222,101,0,0,222,101,0,0,230,101,0,0,234,101,0,0,234,101,0,0,240,101,0,0,242,101,0,0,244,101,0,0,244,101,0,0,248,101,0,0,250,101,0,0,250,101,0,0,2,102,0,0,2,102,0,0,2,102,0,0,2,102,0,0,6,102,0,0,6,102,0,0,12,102,0,0,12,102,0,0,12,102,0,0,12,102,0,0,12,102,0,0,14,102,0,0,20,102,0,0,30,102,0,0,30,102,0,0,32,102,0,0,42,102,0,0,42,102,0,0,42,102,0,0,42,102,0,0,42,102,0,0,42,102,0,0,42,102,0,0,42,102,0,0,46,102,0,0,46,102,0,0,50,102,0,0,50,102,0,0,52,102,0,0,52,102,0,0,58,102,0,0,60,102,0,0,60,102,0,0,66,102,0,0,66,102,0,0,66,102,0,0,70,102,0,0,70,102,0,0,70,102,0,0,70,102,0,0,70,102,0,0,70,102,0,0,70,102,0,0,70,102,0,0,72,102,0,0,78,102,0,0,86,102,0,0,86,102,0,0,86,102,0,0,92,102,0,0,92,102,0,0,94,102,0,0,94,102,0,0,94,102,0,0,94,102,0,0,94,102,0,0,100,102,0,0,100,102,0,0,100,102,0,0,100,102,0,0,102,102,0,0,102,102,0,0,102,102,0,0,104,102,0,0,104,102,0,0,104,102,0,0,104,102,0,0,106,102,0,0,114,102,0,0,120,102,0,0,120,102,0,0,122,102,0,0,122,102,0,0,124,102,0,0,128,102,0,0,128,102,0,0,128,102,0,0,128,102,0,0,128,102,0,0,128,102,0,0,134,102,0,0,136,102,0,0,136,102,0,0,138,102,0,0,142,102,0,0,142,102,0,0,146,102,0,0,146,102,0,0,152,102,0,0,152,102,0,0,158,102,0,0,158,102,0,0,158,102,0,0,158,102,0,0,158,102,0,0,158,102,0,0,160,102,0,0,160,102,0,0,164,102,0,0,164,102,0,0,170,102,0,0,170,102,0,0,170,102,0,0,176,102,0,0,176,102,0,0,176,102,0,0,176,102,0,0,178,102,0,0,180,102,0,0,180,102,0,0,182,102,0,0,184,102,0,0,188,102,0,0,190,102,0,0,190,102,0,0,190,102,0,0,192,102,0,0,196,102,0,0,196,102,0,0,198,102,0,0,198,102,0,0,198,102,0,0,198,102,0,0,198,102,0,0,198,102,0,0,198,102,0,0,198,102,0,0,198,102,0,0,200,102,0,0,200,102,0,0,202,102,0,0,206,102,0,0,208,102,0,0,208,102,0,0,208,102,0,0,216,102,0,0,220,102,0,0,228,102,0,0,230,102,0,0,230,102,0,0,230,102,0,0,236,102,0,0,242,102,0,0,242,102,0,0,242,102,0,0,244,102,0,0,252,102,0,0,252,102,0,0,252,102,0,0,252,102,0,0,252,102,0,0,0,103,0,0,0,103,0,0,0,103,0,0,2,103,0,0,4,103,0,0,4,103,0,0,4,103,0,0,6,103,0,0,8,103,0,0,8,103,0,0,10,103,0,0,10,103,0,0,10,103,0,0,12,103,0,0,12,103,0,0,12,103,0,0,12,103,0,0,12,103,0,0,18,103,0,0,22,103,0,0,24,103,0,0,28,103,0,0,30,103,0,0,34,103,0,0,42,103,0,0,44,103,0,0,48,103,0,0,52,103,0,0,62,103,0,0,64,103,0,0,64,103,0,0,64,103,0,0,66,103,0,0,66,103,0,0,66,103,0,0,66,103,0,0,68,103,0,0,72,103,0,0,74,103,0,0,74,103,0,0,76,103,0,0,76,103,0,0,76,103,0,0,76,103,0,0,86,103,0,0,86,103,0,0,86,103,0,0,90,103,0,0,90,103,0,0,96,103,0,0,96,103,0,0,96,103,0,0,104,103,0,0,112,103,0,0,116,103,0,0,118,103,0,0,118,103,0,0,120,103,0,0,120,103,0,0,122,103,0,0,126,103,0,0,126,103,0,0,126,103,0,0,128,103,0,0,130,103,0,0,132,103,0,0,136,103,0,0,138,103,0,0,138,103,0,0,138,103,0,0,138,103,0,0,138,103,0,0,140,103,0,0,148,103,0,0,148,103,0,0,152,103,0,0,152,103,0,0,156,103,0,0,156,103,0,0,156,103,0,0,162,103,0,0,168,103,0,0,168,103,0,0,170,103,0,0,172,103,0,0,172,103,0,0,178,103,0,0,178,103,0,0,188,103,0,0,190,103,0,0,192,103,0,0,196,103,0,0,198,103,0,0,198,103,0,0,200,103,0,0,200,103,0,0,204,103,0,0,210,103,0,0,210,103,0,0,210,103,0,0,212,103,0,0,212,103,0,0,214,103,0,0,214,103,0,0,214,103,0,0,214,103,0,0,214,103,0,0,218,103,0,0,218,103,0,0,220,103,0,0,220,103,0,0,220,103,0,0,220,103,0,0,222,103,0,0,222,103,0,0,224,103,0,0,228,103,0,0,230,103,0,0,230,103,0,0,240,103,0,0,252,103,0,0,0,104,0,0,0,104,0,0,2,104,0,0,10,104,0,0,10,104,0,0,10,104,0,0,14,104,0,0,14,104,0,0,16,104,0,0,16,104,0,0,16,104,0,0,16,104,0,0,22,104,0,0,28,104,0,0,28,104,0,0,28,104,0,0,28,104,0,0,28,104,0,0,34,104,0,0,36,104,0,0,36,104,0,0,36,104,0,0,36,104,0,0,36,104,0,0,38,104,0,0,44,104,0,0,50,104,0,0,52,104,0,0,60,104,0,0,60,104,0,0,62,104,0,0,70,104,0,0,70,104,0,0,72,104,0,0,72,104,0,0,72,104,0,0,72,104,0,0,80,104,0,0,84,104,0,0,88,104,0,0,90,104,0,0,90,104,0,0,90,104,0,0,92,104,0,0,94,104,0,0,98,104,0,0,100,104,0,0,100,104,0,0,104,104,0,0,104,104,0,0,104,104,0,0,104,104,0,0,104,104,0,0,108,104,0,0,108,104,0,0,112,104,0,0,116,104,0,0,116,104,0,0,116,104,0,0,116,104,0,0,118,104,0,0,124,104,0,0,126,104,0,0,126,104,0,0,128,104,0,0,128,104,0,0,128,104,0,0,128,104,0,0,128,104,0,0,128,104,0,0,128,104,0,0,130,104,0,0,132,104,0,0,140,104,0,0,144,104,0,0,146,104,0,0,146,104,0,0,150,104,0,0,150,104,0,0,150,104,0,0,152,104,0,0,156,104,0,0,156,104,0,0,160,104,0,0,160,104,0,0,170,104,0,0,172,104,0,0,174,104,0,0,174,104,0,0,174,104,0,0,174,104,0,0,178,104,0,0,180,104,0,0,180,104,0,0,182,104,0,0,192,104,0,0,192,104,0,0,196,104,0,0,200,104,0,0,200,104,0,0,200,104,0,0,200,104,0,0,200,104,0,0,202,104,0,0,206,104,0,0,206,104,0,0,210,104,0,0,214,104,0,0,214,104,0,0,214,104,0,0,214,104,0,0,216,104,0,0,216,104,0,0,220,104,0,0,222,104,0,0,222,104,0,0,228,104,0,0,232,104,0,0,232,104,0,0,242,104,0,0,248,104,0,0,248,104,0,0,250,104,0,0,250,104,0,0,252,104,0,0,252,104,0,0,252,104,0,0,254,104,0,0,0,105,0,0,0,105,0,0,0,105,0,0,0,105,0,0,8,105,0,0,16,105,0,0,24,105,0,0,24,105,0,0,24,105,0,0,24,105,0,0,24,105,0,0,24,105,0,0,26,105,0,0,26,105,0,0,26,105,0,0,26,105,0,0,28,105,0,0,30,105,0,0,32,105,0,0,32,105,0,0,32,105,0,0,32,105,0,0,32,105,0,0,34,105,0,0,34,105,0,0,40,105,0,0,40,105,0,0,40,105,0,0,42,105,0,0,42,105,0,0,44,105,0,0,48,105,0,0,50,105,0,0,50,105,0,0,52,105,0,0,52,105,0,0,52,105,0,0,52,105,0,0,52,105,0,0,58,105,0,0,58,105,0,0,58,105,0,0,60,105,0,0,64,105,0,0,64,105,0,0,64,105,0,0,64,105,0,0,64,105,0,0,64,105,0,0,64,105,0,0,66,105,0,0,68,105,0,0,68,105,0,0,68,105,0,0,68,105,0,0,68,105,0,0,68,105,0,0,70,105,0,0,70,105,0,0,70,105,0,0,72,105,0,0,72,105,0,0,76,105,0,0,76,105,0,0,78,105,0,0,78,105,0,0,84,105,0,0,86,105,0,0,92,105,0,0,92,105,0,0,94,105,0,0,94,105,0,0,94,105,0,0,98,105,0,0,100,105,0,0,104,105,0,0,104,105,0,0,104,105,0,0,104,105,0,0,104,105,0,0,104,105,0,0,104,105,0,0,106,105,0,0,106,105,0,0,106,105,0,0,110,105,0,0,114,105,0,0,120,105,0,0,128,105,0,0,128,105,0,0,128,105,0,0,136,105,0,0,136,105,0,0,136,105,0,0,146,105,0,0,148,105,0,0,148,105,0,0,148,105,0,0,148,105,0,0,150,105,0,0,152,105,0,0,164,105,0,0,172,105,0,0,172,105,0,0,178,105,0,0,180,105,0,0,180,105,0,0,180,105,0,0,180,105,0,0,186,105,0,0,188,105,0,0,194,105,0,0,194,105,0,0,194,105,0,0,194,105,0,0,194,105,0,0,194,105,0,0,196,105,0,0,198,105,0,0,200,105,0,0,200,105,0,0,200,105,0,0,202,105,0,0,204,105,0,0,210,105,0,0,210,105,0,0,210,105,0,0,210,105,0,0,210,105,0,0,212,105,0,0,216,105,0,0,216,105,0,0,216,105,0,0,216,105,0,0,216,105,0,0,224,105,0,0,224,105,0,0,230,105,0,0,232,105,0,0,232,105,0,0,232,105,0,0,234,105,0,0,236,105,0,0,240,105,0,0,240,105,0,0,240,105,0,0,242,105,0,0,242,105,0,0,242,105,0,0,246,105,0,0,246,105,0,0,252,105,0,0,252,105,0,0,252,105,0,0,252,105,0,0,254,105,0,0,6,106,0,0,8,106,0,0,8,106,0,0,8,106,0,0,8,106,0,0,8,106,0,0,8,106,0,0,12,106,0,0,12,106,0,0,14,106,0,0,16,106,0,0,16,106,0,0,16,106,0,0,18,106,0,0,20,106,0,0,20,106,0,0,20,106,0,0,22,106,0,0,22,106,0,0,34,106,0,0,34,106,0,0,34,106,0,0,34,106,0,0,34,106,0,0,34,106,0,0,34,106,0,0,36,106,0,0,36,106,0,0,36,106,0,0,38,106,0,0,40,106,0,0,44,106,0,0,44,106,0,0,46,106,0,0,46,106,0,0,46,106,0,0,46,106,0,0,46,106,0,0,48,106,0,0,48,106,0,0,52,106,0,0,52,106,0,0,56,106,0,0,56,106,0,0,62,106,0,0,68,106,0,0,68,106,0,0,68,106,0,0,70,106,0,0,70,106,0,0,72,106,0,0,76,106,0,0,76,106,0,0,78,106,0,0,80,106,0,0,88,106,0,0,94,106,0,0,94,106,0,0,94,106,0,0,94,106,0,0,94,106,0,0,96,106,0,0,96,106,0,0,96,106,0,0,96,106,0,0,98,106,0,0,104,106,0,0,104,106,0,0,108,106,0,0,112,106,0,0,112,106,0,0,112,106,0,0,112,106,0,0,112,106,0,0,114,106,0,0,114,106,0,0,116,106,0,0,120,106,0,0,120,106,0,0,134,106,0,0,134,106,0,0,134,106,0,0,134,106,0,0,134,106,0,0,134,106,0,0,134,106,0,0,136,106,0,0,140,106,0,0,142,106,0,0,146,106,0,0,148,106,0,0,148,106,0,0,148,106,0,0,148,106,0,0,148,106,0,0,150,106,0,0,152,106,0,0,158,106,0,0,160,106,0,0,160,106,0,0,162,106,0,0,166,106,0,0,168,106,0,0,168,106,0,0,168,106,0,0,168,106,0,0,170,106,0,0,178,106,0,0,180,106,0,0,180,106,0,0,180,106,0,0,180,106,0,0,182,106,0,0,184,106,0,0,184,106,0,0,184,106,0,0,184,106,0,0,186,106,0,0,186,106,0,0,186,106,0,0,190,106,0,0,194,106,0,0,194,106,0,0,200,106,0,0,200,106,0,0,204,106,0,0,204,106,0,0,208,106,0,0,208,106,0,0,208,106,0,0,208,106,0,0,210,106,0,0,230,106,0,0,230,106,0,0,232,106,0,0,234,106,0,0,234,106,0,0,238,106,0,0,246,106,0,0,250,106,0,0,250,106,0,0,250,106,0,0,250,106,0,0,252,106,0,0,252,106,0,0,252,106,0,0,254,106,0,0,2,107,0,0,2,107,0,0,4,107,0,0,4,107,0,0,4,107,0,0,6,107,0,0,8,107,0,0,8,107,0,0,10,107,0,0,10,107,0,0,10,107,0,0,12,107,0,0,12,107,0,0,12,107,0,0,12,107,0,0,16,107,0,0,16,107,0,0,16,107,0,0,16,107,0,0,22,107,0,0,22,107,0,0,22,107,0,0,22,107,0,0,22,107,0,0,22,107,0,0,22,107,0,0,24,107,0,0,26,107,0,0,26,107,0,0,26,107,0,0,30,107,0,0,44,107,0,0,44,107,0,0,46,107,0,0,50,107,0,0,54,107,0,0,56,107,0,0,56,107,0,0,58,107,0,0,58,107,0,0,62,107,0,0,64,107,0,0,66,107,0,0,68,107,0,0,68,107,0,0,72,107,0,0,72,107,0,0,76,107,0,0,78,107,0,0,82,107,0,0,84,107,0,0,88,107,0,0,90,107,0,0,90,107,0,0,90,107,0,0,90,107,0,0,92,107,0,0,92,107,0,0,92,107,0,0,96,107,0,0,96,107,0,0,100,107,0,0,100,107,0,0,100,107,0,0,100,107,0,0,100,107,0,0,100,107,0,0,102,107,0,0,106,107,0,0,108,107,0,0,114,107,0,0,114,107,0,0,118,107,0,0,124,107,0,0,128,107,0,0,128,107,0,0,128,107,0,0,134,107,0,0,134,107,0,0,134,107,0,0,134,107,0,0,140,107,0,0,142,107,0,0,142,107,0,0,142,107,0,0,144,107,0,0,148,107,0,0,148,107,0,0,148,107,0,0,148,107,0,0,148,107,0,0,150,107,0,0,152,107,0,0,152,107,0,0,152,107,0,0,152,107,0,0,152,107,0,0,152,107,0,0,160,107,0,0,160,107,0,0,160,107,0,0,166,107,0,0,170,107,0,0,170,107,0,0,170,107,0,0,174,107,0,0,174,107,0,0,178,107,0,0,180,107,0,0,182,107,0,0,182,107,0,0,184,107,0,0,186,107,0,0,188,107,0,0,188,107,0,0,188,107,0,0,192,107,0,0,192,107,0,0,192,107,0,0,194,107,0,0,194,107,0,0,196,107,0,0,200,107,0,0,200,107,0,0,202,107,0,0,208,107,0,0,208,107,0,0,210,107,0,0,210,107,0,0,210,107,0,0,212,107,0,0,212,107,0,0,214,107,0,0,216,107,0,0,220,107,0,0,222,107,0,0,228,107,0,0,230,107,0,0,230,107,0,0,232,107,0,0,232,107,0,0,234,107,0,0,236,107,0,0,236,107,0,0,236,107,0,0,236,107,0,0,240,107,0,0,242,107,0,0,246,107,0,0,248,107,0,0,250,107,0,0,250,107,0,0,250,107,0,0,250,107,0,0,250,107,0,0,254,107,0,0,2,108,0,0,4,108,0,0,4,108,0,0,4,108,0,0,4,108,0,0,6,108,0,0,6,108,0,0,10,108,0,0,10,108,0,0,10,108,0,0,10,108,0,0,12,108,0,0,12,108,0,0,20,108,0,0,22,108,0,0,22,108,0,0,22,108,0,0,22,108,0,0,22,108,0,0,22,108,0,0,22,108,0,0,22,108,0,0,26,108,0,0,28,108,0,0,30,108,0,0,32,108,0,0,32,108,0,0,34,108,0,0,34,108,0,0,36,108,0,0,36,108,0,0,36,108,0,0,40,108,0,0,40,108,0,0,40,108,0,0,40,108,0,0,40,108,0,0,40,108,0,0,42,108,0,0,46,108,0,0,48,108,0,0,56,108,0,0,56,108,0,0,56,108,0,0,56,108,0,0,60,108,0,0,60,108,0,0,60,108,0,0,60,108,0,0,60,108,0,0,60,108,0,0,60,108,0,0,60,108,0,0,62,108,0,0,64,108,0,0,64,108,0,0,64,108,0,0,74,108,0,0,74,108,0,0,78,108,0,0,78,108,0,0,82,108,0,0,84,108,0,0,88,108,0,0,88,108,0,0,96,108,0,0,98,108,0,0,98,108,0,0,98,108,0,0,100,108,0,0,100,108,0,0,100,108,0,0,100,108,0,0,102,108,0,0,102,108,0,0,104,108,0,0,104,108,0,0,106,108,0,0,106,108,0,0,106,108,0,0,108,108,0,0,108,108,0,0,108,108,0,0,108,108,0,0,116,108,0,0,116,108,0,0,116,108,0,0,116,108,0,0,118,108,0,0,118,108,0,0,118,108,0,0,122,108,0,0,124,108,0,0,130,108,0,0,132,108,0,0,132,108,0,0,140,108,0,0,140,108,0,0,140,108,0,0,146,108,0,0,148,108,0,0,148,108,0,0,150,108,0,0,150,108,0,0,154,108,0,0,158,108,0,0,164,108,0,0,168,108,0,0,172,108,0,0,172,108,0,0,178,108,0,0,178,108,0,0,178,108,0,0,180,108,0,0,182,108,0,0,182,108,0,0,182,108,0,0,182,108,0,0,184,108,0,0,184,108,0,0,190,108,0,0,190,108,0,0,192,108,0,0,194,108,0,0,198,108,0,0,198,108,0,0,198,108,0,0,198,108,0,0,200,108,0,0,206,108,0,0,206,108,0,0,206,108,0,0,212,108,0,0,212,108,0,0,216,108,0,0,216,108,0,0,216,108,0,0,218,108,0,0,224,108,0,0,224,108,0,0,226,108,0,0,226,108,0,0,230,108,0,0,230,108,0,0,234,108,0,0,238,108,0,0,238,108,0,0,240,108,0,0,248,108,0,0,248,108,0,0,250,108,0,0,252,108,0,0,252,108,0,0,252,108,0,0,254,108,0,0,254,108,0,0,254,108,0,0,2,109,0,0,2,109,0,0,10,109,0,0,12,109,0,0,14,109,0,0,20,109,0,0,20,109,0,0,26,109,0,0,28,109,0,0,32,109,0,0,32,109,0,0,34,109,0,0,36,109,0,0,36,109,0,0,46,109,0,0,46,109,0,0,46,109,0,0,50,109,0,0,56,109,0,0,56,109,0,0,60,109,0,0,60,109,0,0,60,109,0,0,62,109,0,0,62,109,0,0,62,109,0,0,62,109,0,0,62,109,0,0,64,109,0,0,68,109,0,0,72,109,0,0,76,109,0,0,78,109,0,0,78,109,0,0,82,109,0,0,90,109,0,0,92,109,0,0,98,109,0,0,100,109,0,0,100,109,0,0,108,109,0,0,108,109,0,0,116,109,0,0,116,109,0,0,116,109,0,0,116,109,0,0,118,109,0,0,118,109,0,0,128,109,0,0,132,109,0,0,136,109,0,0,136,109,0,0,142,109,0,0,142,109,0,0,148,109,0,0,154,109,0,0,154,109,0,0,158,109,0,0,158,109,0,0,158,109,0,0,162,109,0,0,168,109,0,0,174,109,0,0,174,109,0,0,180,109,0,0,182,109,0,0,182,109,0,0,182,109,0,0,182,109,0,0,182,109,0,0,182,109,0,0,182,109,0,0,186,109,0,0,188,109,0,0,188,109,0,0,188,109,0,0,190,109,0,0,192,109,0,0,196,109,0,0,200,109,0,0,200,109,0,0,202,109,0,0,204,109,0,0,204,109,0,0,206,109,0,0,206,109,0,0,206,109,0,0,212,109,0,0,218,109,0,0,218,109,0,0,220,109,0,0,222,109,0,0,222,109,0,0,224,109,0,0,224,109,0,0,228,109,0,0,228,109,0,0,228,109,0,0,230,109,0,0,230,109,0,0,230,109,0,0,232,109,0,0,234,109,0,0,238,109,0,0,242,109,0,0,244,109,0,0,244,109,0,0,246,109,0,0,250,109,0,0,252,109,0,0,0,110,0,0,0,110,0,0,0,110,0,0,0,110,0,0,0,110,0,0,0,110,0,0,0,110,0,0,0,110,0,0,0,110,0,0,4,110,0,0,4,110,0,0,4,110,0,0,6,110,0,0,6,110,0,0,12,110,0,0,18,110,0,0,20,110,0,0,28,110,0,0,28,110,0,0,28,110,0,0,28,110,0,0,30,110,0,0,30,110,0,0,32,110,0,0,38,110,0,0,40,110,0,0,40,110,0,0,40,110,0,0,40,110,0,0,40,110,0,0,44,110,0,0,44,110,0,0,44,110,0,0,44,110,0,0,44,110,0,0,46,110,0,0,46,110,0,0,48,110,0,0,48,110,0,0,48,110,0,0,48,110,0,0,48,110,0,0,48,110,0,0,48,110,0,0,52,110,0,0,54,110,0,0,58,110,0,0,58,110,0,0,62,110,0,0,62,110,0,0,62,110,0,0,64,110,0,0,64,110,0,0,66,110,0,0,66,110,0,0,66,110,0,0,66,110,0,0,66,110,0,0,66,110,0,0,66,110,0,0,66,110,0,0,68,110,0,0,68,110,0,0,70,110,0,0,72,110,0,0,72,110,0,0,72,110,0,0,72,110,0,0,72,110,0,0,72,110,0,0,72,110,0,0,72,110,0,0,74,110,0,0,76,110,0,0,76,110,0,0,76,110,0,0,82,110,0,0,88,110,0,0,88,110,0,0,88,110,0,0,88,110,0,0,88,110,0,0,88,110,0,0,90,110,0,0,92,110,0,0,92,110,0,0,100,110,0,0,102,110,0,0,106,110,0,0,108,110,0,0,108,110,0,0,114,110,0,0,114,110,0,0,118,110,0,0,124,110,0,0,124,110,0,0,124,110,0,0,130,110,0,0,130,110,0,0,130,110,0,0,130,110,0,0,132,110,0,0,134,110,0,0,134,110,0,0,134,110,0,0,136,110,0,0,144,110,0,0,144,110,0,0,146,110,0,0,146,110,0,0,150,110,0,0,158,110,0,0,158,110,0,0,162,110,0,0,164,110,0,0,164,110,0,0,164,110,0,0,170,110,0,0,176,110,0,0,180,110,0,0,180,110,0,0,182,110,0,0,186,110,0,0,186,110,0,0,186,110,0,0,186,110,0,0,186,110,0,0,190,110,0,0,190,110,0,0,190,110,0,0,190,110,0,0,190,110,0,0,190,110,0,0,190,110,0,0,192,110,0,0,194,110,0,0,194,110,0,0,200,110,0,0,200,110,0,0,208,110,0,0,208,110,0,0,210,110,0,0,210,110,0,0,212,110,0,0,218,110,0,0,218,110,0,0,220,110,0,0,220,110,0,0,224,110,0,0,224,110,0,0,224,110,0,0,228,110,0,0,232,110,0,0,232,110,0,0,234,110,0,0,236,110,0,0,236,110,0,0,236,110,0,0,236,110,0,0,240,110,0,0,240,110,0,0,240,110,0,0,240,110,0,0,240,110,0,0,240,110,0,0,240,110,0,0,242,110,0,0,246,110,0,0,248,110,0,0,254,110,0,0,0,111,0,0,0,111,0,0,2,111,0,0,2,111,0,0,2,111,0,0,4,111,0,0,16,111,0,0,16,111,0,0,16,111,0,0,18,111,0,0,20,111,0,0,22,111,0,0,22,111,0,0,22,111,0,0,22,111,0,0,22,111,0,0,22,111,0,0,24,111,0,0,30,111,0,0,32,111,0,0,36,111,0,0,40,111,0,0,42,111,0,0,42,111,0,0,42,111,0,0,42,111,0,0,42,111,0,0,42,111,0,0,42,111,0,0,46,111,0,0,48,111,0,0,48,111,0,0,48,111,0,0,48,111,0,0,48,111,0,0,54,111,0,0,54,111,0,0,56,111,0,0,56,111,0,0,58,111,0,0,62,111,0,0,62,111,0,0,62,111,0,0,64,111,0,0,64,111,0,0,64,111,0,0,64,111,0,0,68,111,0,0,68,111,0,0,72,111,0,0,72,111,0,0,72,111,0,0,72,111,0,0,72,111,0,0,74,111,0,0,74,111,0,0,74,111,0,0,74,111,0,0,74,111,0,0,78,111,0,0,78,111,0,0,78,111,0,0,82,111,0,0,84,111,0,0,84,111,0,0,88,111,0,0,88,111,0,0,98,111,0,0,98,111,0,0,98,111,0,0,98,111,0,0,100,111,0,0,104,111,0,0,104,111,0,0,108,111,0,0,110,111,0,0,112,111,0,0,116,111,0,0,122,111,0,0,122,111,0,0,122,111,0,0,122,111,0,0,122,111,0,0,124,111,0,0,126,111,0,0,126,111,0,0,130,111,0,0,130,111,0,0,130,111,0,0,132,111,0,0,132,111,0,0,132,111,0,0,134,111,0,0,140,111,0,0,140,111,0,0,142,111,0,0,142,111,0,0,148,111,0,0,150,111,0,0,156,111,0,0,160,111,0,0,160,111,0,0,160,111,0,0,162,111,0,0,164,111,0,0,164,111,0,0,166,111,0,0,168,111,0,0,168,111,0,0,172,111,0,0,176,111,0,0,176,111,0,0,176,111,0,0,178,111,0,0,180,111,0,0,182,111,0,0,184,111,0,0,184,111,0,0,188,111,0,0,188,111,0,0,188,111,0,0,190,111,0,0,192,111,0,0,192,111,0,0,198,111,0,0,206,111,0,0,206,111,0,0,206,111,0,0,208,111,0,0,208,111,0,0,210,111,0,0,214,111,0,0,216,111,0,0,222,111,0,0,222,111,0,0,222,111,0,0,224,111,0,0,224,111,0,0,224,111,0,0,224,111,0,0,230,111,0,0,232,111,0,0,234,111,0,0,234,111,0,0,234,111,0,0,238,111,0,0,242,111,0,0,242,111,0,0,244,111,0,0,244,111,0,0,244,111,0,0,244,111,0,0,244,111,0,0,244,111,0,0,250,111,0,0,250,111,0,0,250,111,0,0,250,111,0,0,2,112,0,0,2,112,0,0,4,112,0,0,8,112,0,0,10,112,0,0,12,112,0,0,16,112,0,0,24,112,0,0,26,112,0,0,26,112,0,0,26,112,0,0,26,112,0,0,26,112,0,0,26,112,0,0,28,112,0,0,30,112,0,0,30,112,0,0,30,112,0,0,30,112,0,0,32,112,0,0,36,112,0,0,36,112,0,0,36,112,0,0,38,112,0,0,38,112,0,0,38,112,0,0,40,112,0,0,40,112,0,0,46,112,0,0,46,112,0,0,46,112,0,0,50,112,0,0,50,112,0,0,50,112,0,0,50,112,0,0,50,112,0,0,50,112,0,0,52,112,0,0,52,112,0,0,52,112,0,0,52,112,0,0,52,112,0,0,52,112,0,0,52,112,0,0,52,112,0,0,60,112,0,0,60,112,0,0,66,112,0,0,74,112,0,0,74,112,0,0,74,112,0,0,78,112,0,0,78,112,0,0,78,112,0,0,78,112,0,0,80,112,0,0,82,112,0,0,84,112,0,0,84,112,0,0,84,112,0,0,84,112,0,0,88,112,0,0,88,112,0,0,96,112,0,0,100,112,0,0,100,112,0,0,100,112,0,0,100,112,0,0,108,112,0,0,110,112,0,0,110,112,0,0,110,112,0,0,110,112,0,0,110,112,0,0,110,112,0,0,114,112,0,0,114,112,0,0,114,112,0,0,114,112,0,0,116,112,0,0,118,112,0,0,120,112,0,0,124,112,0,0,124,112,0,0,126,112,0,0,128,112,0,0,128,112,0,0,130,112,0,0,132,112,0,0,132,112,0,0,134,112,0,0,136,112,0,0,142,112,0,0,144,112,0,0,144,112,0,0,144,112,0,0,152,112,0,0,152,112,0,0,158,112,0,0,158,112,0,0,158,112,0,0,158,112,0,0,158,112,0,0,160,112,0,0,160,112,0,0,160,112,0,0,160,112,0,0,166,112,0,0,168,112,0,0,168,112,0,0,168,112,0,0,170,112,0,0,174,112,0,0,178,112,0,0,188,112,0,0,190,112,0,0,190,112,0,0,196,112,0,0,196,112,0,0,196,112,0,0,198,112,0,0,198,112,0,0,198,112,0,0,200,112,0,0,210,112,0,0,220,112,0,0,222,112,0,0,222,112,0,0,222,112,0,0,222,112,0,0,226,112,0,0,226,112,0,0,228,112,0,0,232,112,0,0,234,112,0,0,238,112,0,0,240,112,0,0,240,112,0,0,240,112,0,0,242,112,0,0,248,112,0,0,248,112,0,0,248,112,0,0,248,112,0,0,248,112,0,0,0,113,0,0,2,113,0,0,2,113,0,0,6,113,0,0,6,113,0,0,8,113,0,0,8,113,0,0,8,113,0,0,8,113,0,0,16,113,0,0,16,113,0,0,16,113,0,0,16,113,0,0,16,113,0,0,20,113,0,0,22,113,0,0,22,113,0,0,22,113,0,0,26,113,0,0,26,113,0,0,26,113,0,0,26,113,0,0,28,113,0,0,34,113,0,0,36,113,0,0,36,113,0,0,36,113,0,0,38,113,0,0,38,113,0,0,38,113,0,0,38,113,0,0,38,113,0,0,40,113,0,0,42,113,0,0,42,113,0,0,42,113,0,0,42,113,0,0,42,113,0,0,44,113,0,0,44,113,0,0,48,113,0,0,48,113,0,0,50,113,0,0,50,113,0,0,50,113,0,0,54,113,0,0,54,113,0,0,56,113,0,0,58,113,0,0,58,113,0,0,60,113,0,0,60,113,0,0,60,113,0,0,60,113,0,0,60,113,0,0,60,113,0,0,60,113,0,0,62,113,0,0,62,113,0,0,62,113,0,0,68,113,0,0,70,113,0,0,74,113,0,0,78,113,0,0,84,113,0,0,84,113,0,0,86,113,0,0,86,113,0,0,88,113,0,0,90,113,0,0,90,113,0,0,90,113,0,0,90,113,0,0,92,113,0,0,92,113,0,0,94,113,0,0,94,113,0,0,96,113,0,0,98,113,0,0,110,113,0,0,110,113,0,0,110,113,0,0,116,113,0,0,120,113,0,0,120,113,0,0,122,113,0,0,130,113,0,0,132,113,0,0,134,113,0,0,134,113,0,0,134,113,0,0,140,113,0,0,140,113,0,0,142,113,0,0,142,113,0,0,142,113,0,0,142,113,0,0,142,113,0,0,146,113,0,0,150,113,0,0,150,113,0,0,162,113,0,0,162,113,0,0,166,113,0,0,166,113,0,0,166,113,0,0,168,113,0,0,168,113,0,0,168,113,0,0,168,113,0,0,168,113,0,0,170,113,0,0,172,113,0,0,176,113,0,0,176,113,0,0,178,113,0,0,180,113,0,0,180,113,0,0,180,113,0,0,180,113,0,0,180,113,0,0,180,113,0,0,182,113,0,0,184,113,0,0,184,113,0,0,184,113,0,0,184,113,0,0,184,113,0,0,184,113,0,0,190,113,0,0,194,113,0,0,196,113,0,0,196,113,0,0,196,113,0,0,198,113,0,0,198,113,0,0,198,113,0,0,200,113,0,0,204,113,0,0,204,113,0,0,204,113,0,0,208,113,0,0,208,113,0,0,212,113,0,0,218,113,0,0,220,113,0,0,228,113,0,0,236,113,0,0,236,113,0,0,236,113,0,0,236,113,0,0,236,113,0,0,236,113,0,0,236,113,0,0,236,113,0,0,238,113,0,0,238,113,0,0,238,113,0,0,238,113,0,0,238,113,0,0,238,113,0,0,238,113,0,0,240,113,0,0,244,113,0,0,252,113,0,0,0,114,0,0,2,114,0,0,4,114,0,0,4,114,0,0,4,114,0,0,8,114,0,0,8,114,0,0,8,114,0,0,10,114,0,0,12,114,0,0,14,114,0,0,14,114,0,0,14,114,0,0,18,114,0,0,20,114,0,0,24,114,0,0,24,114,0,0,26,114,0,0,26,114,0,0,26,114,0,0,34,114,0,0,34,114,0,0,34,114,0,0,40,114,0,0,42,114,0,0,48,114,0,0,50,114,0,0,54,114,0,0,64,114,0,0,66,114,0,0,68,114,0,0,68,114,0,0,68,114,0,0,68,114,0,0,68,114,0,0,68,114,0,0,74,114,0,0,74,114,0,0,74,114,0,0,74,114,0,0,76,114,0,0,82,114,0,0,84,114,0,0,84,114,0,0,84,114,0,0,84,114,0,0,86,114,0,0,86,114,0,0,94,114,0,0,104,114,0,0,108,114,0,0,112,114,0,0,120,114,0,0,122,114,0,0,122,114,0,0,128,114,0,0,130,114,0,0,130,114,0,0,130,114,0,0,136,114,0,0,138,114,0,0,138,114,0,0,142,114,0,0,142,114,0,0,142,114,0,0,142,114,0,0,142,114,0,0,142,114,0,0,144,114,0,0,146,114,0,0,150,114,0,0,152,114,0,0,152,114,0,0,152,114,0,0,158,114,0,0,158,114,0,0,158,114,0,0,158,114,0,0,164,114,0,0,164,114,0,0,166,114,0,0,170,114,0,0,174,114,0,0,174,114,0,0,174,114,0,0,174,114,0,0,176,114,0,0,180,114,0,0,182,114,0,0,182,114,0,0,188,114,0,0,188,114,0,0,188,114,0,0,188,114,0,0,188,114,0,0,188,114,0,0,188,114,0,0,188,114,0,0,202,114,0,0,202,114,0,0,202,114,0,0,204,114,0,0,212,114,0,0,212,114,0,0,212,114,0,0,212,114,0,0,212,114,0,0,214,114,0,0,214,114,0,0,214,114,0,0,214,114,0,0,216,114,0,0,216,114,0,0,216,114,0,0,218,114,0,0,224,114,0,0,232,114,0,0,234,114,0,0,234,114,0,0,234,114,0,0,234,114,0,0,234,114,0,0,236,114,0,0,236,114,0,0,236,114,0,0,236,114,0,0,236,114,0,0,236,114,0,0,236,114,0,0,244,114,0,0,248,114,0,0,254,114,0,0,2,115,0,0,2,115,0,0,8,115,0,0,8,115,0,0,12,115,0,0,14,115,0,0,14,115,0,0,18,115,0,0,18,115,0,0,20,115,0,0,20,115,0,0,22,115,0,0,22,115,0,0,22,115,0,0,22,115,0,0,22,115,0,0,26,115,0,0,26,115,0,0,46,115,0,0,52,115,0,0,54,115,0,0,62,115,0,0,72,115,0,0,72,115,0,0,72,115,0,0,72,115,0,0,72,115,0,0,82,115,0,0,88,115,0,0,92,115,0,0,96,115,0,0,104,115,0,0,106,115,0,0,106,115,0,0,106,115,0,0,108,115,0,0,108,115,0,0,108,115,0,0,112,115,0,0,116,115,0,0,120,115,0,0,120,115,0,0,124,115,0,0,124,115,0,0,126,115,0,0,128,115,0,0,128,115,0,0,130,115,0,0,130,115,0,0,138,115,0,0,138,115,0,0,138,115,0,0,138,115,0,0,142,115,0,0,142,115,0,0,146,115,0,0,150,115,0,0,150,115,0,0,152,115,0,0,152,115,0,0,152,115,0,0,156,115,0,0,158,115,0,0,166,115,0,0,174,115,0,0,174,115,0,0,176,115,0,0,176,115,0,0,176,115,0,0,176,115,0,0,182,115,0,0,184,115,0,0,190,115,0,0,198,115,0,0,198,115,0,0,198,115,0,0,198,115,0,0,206,115,0,0,206,115,0,0,206,115,0,0,210,115,0,0,224,115,0,0,226,115,0,0,226,115,0,0,226,115,0,0,226,115,0,0,232,115,0,0,238,115,0,0,238,115,0,0,238,115,0,0,238,115,0,0,240,115,0,0,240,115,0,0,252,115,0,0,252,115,0,0,252,115,0,0,8,116,0,0,10,116,0,0,20,116,0,0,22,116,0,0,26,116,0,0,34,116,0,0,36,116,0,0,36,116,0,0,40,116,0,0,40,116,0,0,42,116,0,0,44,116,0,0,44,116,0,0,44,116,0,0,54,116,0,0,56,116,0,0,56,116,0,0,58,116,0,0,58,116,0,0,58,116,0,0,64,116,0,0,64,116,0,0,64,116,0,0,66,116,0,0,72,116,0,0,72,116,0,0,72,116,0,0,72,116,0,0,74,116,0,0,74,116,0,0,80,116,0,0,86,116,0,0,88,116,0,0,88,116,0,0,90,116,0,0,94,116,0,0,96,116,0,0,98,116,0,0,100,116,0,0,100,116,0,0,100,116,0,0,104,116,0,0,104,116,0,0,106,116,0,0,106,116,0,0,110,116,0,0,110,116,0,0,112,116,0,0,112,116,0,0,112,116,0,0,112,116,0,0,114,116,0,0,116,116,0,0,122,116,0,0,122,116,0,0,126,116,0,0,128,116,0,0,130,116,0,0,130,116,0,0,132,116,0,0,132,116,0,0,132,116,0,0,142,116,0,0,142,116,0,0,142,116,0,0,142,116,0,0,144,116,0,0,148,116,0,0,148,116,0,0,148,116,0,0,150,116,0,0,150,116,0,0,150,116,0,0,150,116,0,0,150,116,0,0,156,116,0,0,156,116,0,0,156,116,0,0,162,116,0,0,164,116,0,0,168,116,0,0,170,116,0,0,172,116,0,0,172,116,0,0,176,116,0,0,178,116,0,0,178,116,0,0,178,116,0,0,178,116,0,0,178,116,0,0,178,116,0,0,180,116,0,0,180,116,0,0,180,116,0,0,184,116,0,0,188,116,0,0,194,116,0,0,196,116,0,0,202,116,0,0,202,116,0,0,202,116,0,0,202,116,0,0,208,116,0,0,208,116,0,0,210,116,0,0,212,116,0,0,214,116,0,0,216,116,0,0,216,116,0,0,218,116,0,0,220,116,0,0,220,116,0,0,220,116,0,0,220,116,0,0,224,116,0,0,228,116,0,0,230,116,0,0,230,116,0,0,234,116,0,0,234,116,0,0,234,116,0,0,234,116,0,0,236,116,0,0,248,116,0,0,252,116,0,0,254,116,0,0,254,116,0,0,254,116,0,0,4,117,0,0,4,117,0,0,6,117,0,0,6,117,0,0,6,117,0,0,6,117,0,0,12,117,0,0,12,117,0,0,12,117,0,0,14,117,0,0,14,117,0,0,14,117,0,0,14,117,0,0,14,117,0,0,18,117,0,0,22,117,0,0,26,117,0,0,30,117,0,0,30,117,0,0,32,117,0,0,32,117,0,0,32,117,0,0,36,117,0,0,38,117,0,0,38,117,0,0,38,117,0,0,38,117,0,0,38,117,0,0,44,117,0,0,44,117,0,0,44,117,0,0,44,117,0,0,44,117,0,0,44,117,0,0,48,117,0,0,48,117,0,0,48,117,0,0,48,117,0,0,52,117,0,0,52,117,0,0,52,117,0,0,52,117,0,0,52,117,0,0,52,117,0,0,52,117,0,0,56,117,0,0,66,117,0,0,66,117,0,0,70,117,0,0,72,117,0,0,74,117,0,0,74,117,0,0,74,117,0,0,80,117,0,0,82,117,0,0,82,117,0,0,82,117,0,0,82,117,0,0,88,117,0,0,94,117,0,0,104,117,0,0,104,117,0,0,104,117,0,0,108,117,0,0,112,117,0,0,112,117,0,0,114,117,0,0,122,117,0,0,124,117,0,0,124,117,0,0,126,117,0,0,138,117,0,0,138,117,0,0,138,117,0,0,138,117,0,0,138,117,0,0,142,117,0,0,144,117,0,0,146,117,0,0,146,117,0,0,146,117,0,0,146,117,0,0,148,117,0,0,150,117,0,0,150,117,0,0,150,117,0,0,154,117,0,0,154,117,0,0,154,117,0,0,158,117,0,0,164,117,0,0,166,117,0,0,170,117,0,0,174,117,0,0,188,117,0,0,190,117,0,0,190,117,0,0,190,117,0,0,206,117,0,0,206,117,0,0,206,117,0,0,206,117,0,0,208,117,0,0,210,117,0,0,210,117,0,0,212,117,0,0,214,117,0,0,218,117,0,0,224,117,0,0,224,117,0,0,226,117,0,0,226,117,0,0,228,117,0,0,232,117,0,0,232,117,0,0,232,117,0,0,238,117,0,0,238,117,0,0,238,117,0,0,238,117,0,0,238,117,0,0,238,117,0,0,242,117,0,0,242,117,0,0,242,117,0,0,246,117,0,0,246,117,0,0,246,117,0,0,248,117,0,0,0,118,0,0,0,118,0,0,6,118,0,0,6,118,0,0,6,118,0,0,6,118,0,0,6,118,0,0,6,118,0,0,6,118,0,0,6,118,0,0,8,118,0,0,12,118,0,0,14,118,0,0,16,118,0,0,16,118,0,0,16,118,0,0,16,118,0,0,16,118,0,0,16,118,0,0,20,118,0,0,24,118,0,0,26,118,0,0,26,118,0,0,28,118,0,0,30,118,0,0,30,118,0,0,32,118,0,0,34,118,0,0,34,118,0,0,40,118,0,0,46,118,0,0,46,118,0,0,46,118,0,0,46,118,0,0,50,118,0,0,52,118,0,0,52,118,0,0,60,118,0,0,60,118,0,0,60,118,0,0,62,118,0,0,62,118,0,0,62,118,0,0,62,118,0,0,62,118,0,0,62,118,0,0,64,118,0,0,64,118,0,0,64,118,0,0,64,118,0,0,64,118,0,0,66,118,0,0,72,118,0,0,72,118,0,0,72,118,0,0,74,118,0,0,76,118,0,0,76,118,0,0,76,118,0,0,76,118,0,0,78,118,0,0,78,118,0,0,78,118,0,0,82,118,0,0,86,118,0,0,86,118,0,0,86,118,0,0,90,118,0,0,92,118,0,0,92,118,0,0,94,118,0,0,96,118,0,0,98,118,0,0,98,118,0,0,98,118,0,0,98,118,0,0,98,118,0,0,98,118,0,0,104,118,0,0,104,118,0,0,106,118,0,0,108,118,0,0,116,118,0,0,116,118,0,0,116,118,0,0,116,118,0,0,116,118,0,0,116,118,0,0,116,118,0,0,120,118,0,0,120,118,0,0,120,118,0,0,120,118,0,0,120,118,0,0,120,118,0,0,120,118,0,0,122,118,0,0,122,118,0,0,122,118,0,0,122,118,0,0,122,118,0,0,124,118,0,0,124,118,0,0,124,118,0,0,124,118,0,0,124,118,0,0,124,118,0,0,128,118,0,0,128,118,0,0,128,118,0,0,132,118,0,0,132,118,0,0,136,118,0,0,142,118,0,0,142,118,0,0,142,118,0,0,142,118,0,0,142,118,0,0,144,118,0,0,150,118,0,0,152,118,0,0,156,118,0,0,158,118,0,0,160,118,0,0,160,118,0,0,160,118,0,0,160,118,0,0,160,118,0,0,162,118,0,0,164,118,0,0,168,118,0,0,170,118,0,0,170,118,0,0,172,118,0,0,174,118,0,0,184,118,0,0,186,118,0,0,188,118,0,0,190,118,0,0,190,118,0,0,192,118,0,0,192,118,0,0,196,118,0,0,196,118,0,0,200,118,0,0,200,118,0,0,200,118,0,0,200,118,0,0,206,118,0,0,206,118,0,0,206,118,0,0,206,118,0,0,210,118,0,0,210,118,0,0,210,118,0,0,210,118,0,0,214,118,0,0,214,118,0,0,218,118,0,0,222,118,0,0,228,118,0,0,230,118,0,0,236,118,0,0,238,118,0,0,238,118,0,0,238,118,0,0,238,118,0,0,242,118,0,0,252,118,0,0,252,118,0,0,252,118,0,0,252,118,0,0,252,118,0,0,252,118,0,0,254,118,0,0,254,118,0,0,2,119,0,0,2,119,0,0,2,119,0,0,2,119,0,0,2,119,0,0,8,119,0,0,8,119,0,0,8,119,0,0,8,119,0,0,14,119,0,0,18,119,0,0,18,119,0,0,18,119,0,0,22,119,0,0,24,119,0,0,24,119,0,0,24,119,0,0,24,119,0,0,28,119,0,0,28,119,0,0,28,119,0,0,28,119,0,0,28,119,0,0,28,119,0,0,32,119,0,0,34,119,0,0,34,119,0,0,34,119,0,0,38,119,0,0,40,119,0,0,40,119,0,0,40,119,0,0,42,119,0,0,42,119,0,0,46,119,0,0,46,119,0,0,58,119,0,0,60,119,0,0,60,119,0,0,64,119,0,0,64,119,0,0,64,119,0,0,64,119,0,0,64,119,0,0,64,119,0,0,72,119,0,0,76,119,0,0,80,119,0,0,80,119,0,0,80,119,0,0,80,119,0,0,86,119,0,0,94,119,0,0,98,119,0,0,98,119,0,0,98,119,0,0,98,119,0,0,98,119,0,0,98,119,0,0,102,119,0,0,102,119,0,0,102,119,0,0,102,119,0,0,104,119,0,0,112,119,0,0,116,119,0,0,118,119,0,0,124,119,0,0,124,119,0,0,128,119,0,0,128,119,0,0,128,119,0,0,128,119,0,0,130,119,0,0,132,119,0,0,136,119,0,0,136,119,0,0,136,119,0,0,138,119,0,0,142,119,0,0,146,119,0,0,150,119,0,0,156,119,0,0,156,119,0,0,156,119,0,0,156,119,0,0,156,119,0,0,156,119,0,0,164,119,0,0,164,119,0,0,164,119,0,0,164,119,0,0,164,119,0,0,166,119,0,0,166,119,0,0,166,119,0,0,172,119,0,0,172,119,0,0,178,119,0,0,178,119,0,0,178,119,0,0,178,119,0,0,180,119,0,0,180,119,0,0,182,119,0,0,182,119,0,0,182,119,0,0,182,119,0,0,184,119,0,0,184,119,0,0,186,119,0,0,198,119,0,0,200,119,0,0,202,119,0,0,206,119,0,0,206,119,0,0,208,119,0,0,208,119,0,0,208,119,0,0,212,119,0,0,216,119,0,0,216,119,0,0,218,119,0,0,218,119,0,0,218,119,0,0,218,119,0,0,218,119,0,0,220,119,0,0,224,119,0,0,226,119,0,0,226,119,0,0,234,119,0,0,236,119,0,0,238,119,0,0,238,119,0,0,238,119,0,0,238,119,0,0,238,119,0,0,238,119,0,0,240,119,0,0,240,119,0,0,242,119,0,0,242,119,0,0,242,119,0,0,242,119,0,0,242,119,0,0,242,119,0,0,242,119,0,0,242,119,0,0,242,119,0,0,246,119,0,0,248,119,0,0,250,119,0,0,252,119,0,0,0,120,0,0,0,120,0,0,0,120,0,0,0,120,0,0,2,120,0,0,4,120,0,0,4,120,0,0,4,120,0,0,4,120,0,0,4,120,0,0,4,120,0,0,4,120,0,0,4,120,0,0,4,120,0,0,12,120,0,0,12,120,0,0,14,120,0,0,16,120,0,0,16,120,0,0,16,120,0,0,20,120,0,0,20,120,0,0,22,120,0,0,22,120,0,0,22,120,0,0,22,120,0,0,22,120,0,0,22,120,0,0,22,120,0,0,26,120,0,0,26,120,0,0,26,120,0,0,26,120,0,0,26,120,0,0,26,120,0,0,26,120,0,0,28,120,0,0,28,120,0,0,28,120,0,0,28,120,0,0,28,120,0,0,28,120,0,0,28,120,0,0,34,120,0,0,42,120,0,0,44,120,0,0,44,120,0,0,44,120,0,0,46,120,0,0,52,120,0,0,54,120,0,0,58,120,0,0,58,120,0,0,58,120,0,0,58,120,0,0,58,120,0,0,60,120,0,0,60,120,0,0,62,120,0,0,70,120,0,0,72,120,0,0,74,120,0,0,76,120,0,0,76,120,0,0,76,120,0,0,76,120,0,0,84,120,0,0,84,120,0,0,86,120,0,0,86,120,0,0,90,120,0,0,90,120,0,0,108,120,0,0,112,120,0,0,112,120,0,0,124,120,0,0,124,120,0,0,126,120,0,0,130,120,0,0,130,120,0,0,130,120,0,0,130,120,0,0,132,120,0,0,138,120,0,0,138,120,0,0,140,120,0,0,140,120,0,0,144,120,0,0,146,120,0,0,152,120,0,0,152,120,0,0,152,120,0,0,158,120,0,0,162,120,0,0,162,120,0,0,162,120,0,0,164,120,0,0,166,120,0,0,168,120,0,0,170,120,0,0,178,120,0,0,178,120,0,0,178,120,0,0,186,120,0,0,190,120,0,0,192,120,0,0,192,120,0,0,194,120,0,0,194,120,0,0,198,120,0,0,198,120,0,0,198,120,0,0,200,120,0,0,202,120,0,0,204,120,0,0,206,120,0,0,206,120,0,0,216,120,0,0,222,120,0,0,224,120,0,0,230,120,0,0,230,120,0,0,230,120,0,0,232,120,0,0,234,120,0,0,234,120,0,0,234,120,0,0,236,120,0,0,238,120,0,0,242,120,0,0,242,120,0,0,242,120,0,0,242,120,0,0,244,120,0,0,244,120,0,0,244,120,0,0,246,120,0,0,246,120,0,0,252,120,0,0,254,120,0,0,2,121,0,0,6,121,0,0,6,121,0,0,8,121,0,0,10,121,0,0,16,121,0,0,16,121,0,0,16,121,0,0,22,121,0,0,22,121,0,0,22,121,0,0,22,121,0,0,22,121,0,0,24,121,0,0,26,121,0,0,30,121,0,0,30,121,0,0,38,121,0,0,42,121,0,0,42,121,0,0,44,121,0,0,46,121,0,0,50,121,0,0,52,121,0,0,52,121,0,0,54,121,0,0,54,121,0,0,54,121,0,0,54,121,0,0,58,121,0,0,64,121,0,0,70,121,0,0,72,121,0,0,72,121,0,0,76,121,0,0,76,121,0,0,78,121,0,0,78,121,0,0,78,121,0,0,80,121,0,0,80,121,0,0,86,121,0,0,86,121,0,0,86,121,0,0,88,121,0,0,88,121,0,0,88,121,0,0,88,121,0,0,88,121,0,0,90,121,0,0,92,121,0,0,94,121,0,0,98,121,0,0,98,121,0,0,100,121,0,0,100,121,0,0,104,121,0,0,106,121,0,0,106,121,0,0,108,121,0,0,112,121,0,0,112,121,0,0,116,121,0,0,118,121,0,0,118,121,0,0,118,121,0,0,118,121,0,0,118,121,0,0,128,121,0,0,128,121,0,0,128,121,0,0,128,121,0,0,130,121,0,0,132,121,0,0,132,121,0,0,132,121,0,0,132,121,0,0,134,121,0,0,134,121,0,0,136,121,0,0,136,121,0,0,136,121,0,0,140,121,0,0,140,121,0,0,146,121,0,0,146,121,0,0,148,121,0,0,148,121,0,0,148,121,0,0,150,121,0,0,152,121,0,0,156,121,0,0,156,121,0,0,158,121,0,0,160,121,0,0,162,121,0,0,164,121,0,0,166,121,0,0,168,121,0,0,174,121,0,0,174,121,0,0,176,121,0,0,176,121,0,0,176,121,0,0,180,121,0,0,190,121,0,0,190,121,0,0,196,121,0,0,196,121,0,0,196,121,0,0,202,121,0,0,204,121,0,0,204,121,0,0,204,121,0,0,210,121,0,0,210,121,0,0,214,121,0,0,220,121,0,0,222,121,0,0,222,121,0,0,222,121,0,0,222,121,0,0,224,121,0,0,224,121,0,0,224,121,0,0,226,121,0,0,230,121,0,0,230,121,0,0,232,121,0,0,234,121,0,0,238,121,0,0,240,121,0,0,242,121,0,0,242,121,0,0,246,121,0,0,246,121,0,0,246,121,0,0,246,121,0,0,250,121,0,0,250,121,0,0,250,121,0,0,250,121,0,0,250,121,0,0,0,122,0,0,4,122,0,0,4,122,0,0,10,122,0,0,10,122,0,0,20,122,0,0,20,122,0,0,20,122,0,0,20,122,0,0,20,122,0,0,20,122,0,0,20,122,0,0,20,122,0,0,22,122,0,0,28,122,0,0,28,122,0,0,30,122,0,0,34,122,0,0,34,122,0,0,36,122,0,0,38,122,0,0,44,122,0,0,44,122,0,0,46,122,0,0,46,122,0,0,54,122,0,0,54,122,0,0,56,122,0,0,56,122,0,0,56,122,0,0,60,122,0,0,60,122,0,0,62,122,0,0,64,122,0,0,68,122,0,0,68,122,0,0,70,122,0,0,70,122,0,0,70,122,0,0,70,122,0,0,70,122,0,0,70,122,0,0,70,122,0,0,70,122,0,0,72,122,0,0,72,122,0,0,74,122,0,0,74,122,0,0,74,122,0,0,74,122,0,0,74,122,0,0,74,122,0,0,76,122,0,0,78,122,0,0,78,122,0,0,84,122,0,0,86,122,0,0,86,122,0,0,86,122,0,0,86,122,0,0,86,122,0,0,86,122,0,0,86,122,0,0,86,122,0,0,88,122,0,0,90,122,0,0,98,122,0,0,98,122,0,0,102,122,0,0,104,122,0,0,112,122,0,0,112,122,0,0,112,122,0,0,112,122,0,0,112,122,0,0,114,122,0,0,116,122,0,0,120,122,0,0,120,122,0,0,120,122,0,0,120,122,0,0,120,122,0,0,122,122,0,0,124,122,0,0,124,122,0,0,126,122,0,0,126,122,0,0,126,122,0,0,128,122,0,0,128,122,0,0,130,122,0,0,130,122,0,0,130,122,0,0,130,122,0,0,136,122,0,0,142,122,0,0,142,122,0,0,142,122,0,0,148,122,0,0,148,122,0,0,148,122,0,0,150,122,0,0,150,122,0,0,150,122,0,0,152,122,0,0,160,122,0,0,164,122,0,0,164,122,0,0,164,122,0,0,168,122,0,0,168,122,0,0,174,122,0,0,176,122,0,0,176,122,0,0,178,122,0,0,182,122,0,0,182,122,0,0,182,122,0,0,182,122,0,0,188,122,0,0,188,122,0,0,190,122,0,0,194,122,0,0,200,122,0,0,200,122,0,0,204,122,0,0,208,122,0,0,208,122,0,0,210,122,0,0,216,122,0,0,216,122,0,0,216,122,0,0,222,122,0,0,224,122,0,0,230,122,0,0,230,122,0,0,230,122,0,0,232,122,0,0,232,122,0,0,232,122,0,0,232,122,0,0,238,122,0,0,240,122,0,0,248,122,0,0,248,122,0,0,252,122,0,0,252,122,0,0,252,122,0,0,252,122,0,0,0,123,0,0,0,123,0,0,0,123,0,0,0,123,0,0,0,123,0,0,0,123,0,0,2,123,0,0,4,123,0,0,6,123,0,0,8,123,0,0,8,123,0,0,10,123,0,0,10,123,0,0,14,123,0,0,22,123,0,0,24,123,0,0,28,123,0,0,34,123,0,0,34,123,0,0,36,123,0,0,38,123,0,0,40,123,0,0,40,123,0,0,46,123,0,0,54,123,0,0,60,123,0,0,60,123,0,0,60,123,0,0,60,123,0,0,60,123,0,0,60,123,0,0,66,123,0,0,66,123,0,0,66,123,0,0,70,123,0,0,70,123,0,0,70,123,0,0,72,123,0,0,72,123,0,0,72,123,0,0,72,123,0,0,74,123,0,0,74,123,0,0,80,123,0,0,80,123,0,0,86,123,0,0,86,123,0,0,92,123,0,0,94,123,0,0,94,123,0,0,104,123,0,0,108,123,0,0,110,123,0,0,114,123,0,0,114,123,0,0,116,123,0,0,116,123,0,0,122,123,0,0,122,123,0,0,130,123,0,0,130,123,0,0,134,123,0,0,134,123,0,0,134,123,0,0,138,123,0,0,138,123,0,0,138,123,0,0,140,123,0,0,140,123,0,0,144,123,0,0,150,123,0,0,150,123,0,0,150,123,0,0,150,123,0,0,150,123,0,0,152,123,0,0,152,123,0,0,152,123,0,0,152,123,0,0,154,123,0,0,156,123,0,0,158,123,0,0,158,123,0,0,158,123,0,0,158,123,0,0,160,123,0,0,160,123,0,0,160,123,0,0,160,123,0,0,160,123,0,0,160,123,0,0,162,123,0,0,162,123,0,0,164,123,0,0,164,123,0,0,166,123,0,0,168,123,0,0,172,123,0,0,180,123,0,0,180,123,0,0,186,123,0,0,188,123,0,0,188,123,0,0,188,123,0,0,190,123,0,0,196,123,0,0,196,123,0,0,200,123,0,0,200,123,0,0,200,123,0,0,204,123,0,0,204,123,0,0,204,123,0,0,204,123,0,0,206,123,0,0,214,123,0,0,214,123,0,0,214,123,0,0,216,123,0,0,216,123,0,0,216,123,0,0,216,123,0,0,222,123,0,0,224,123,0,0,228,123,0,0,228,123,0,0,230,123,0,0,230,123,0,0,232,123,0,0,232,123,0,0,236,123,0,0,238,123,0,0,240,123,0,0,244,123,0,0,244,123,0,0,250,123,0,0,250,123,0,0,252,123,0,0,2,124,0,0,16,124,0,0,20,124,0,0,26,124,0,0,26,124,0,0,26,124,0,0,26,124,0,0,38,124,0,0,38,124,0,0,40,124,0,0,40,124,0,0,40,124,0,0,40,124,0,0,42,124,0,0,44,124,0,0,50,124,0,0,54,124,0,0,54,124,0,0,54,124,0,0,60,124,0,0,62,124,0,0,62,124,0,0,62,124,0,0,66,124,0,0,72,124,0,0,72,124,0,0,72,124,0,0,72,124,0,0,78,124,0,0,78,124,0,0,78,124,0,0,78,124,0,0,78,124,0,0,78,124,0,0,78,124,0,0,78,124,0,0,80,124,0,0,82,124,0,0,82,124,0,0,82,124,0,0,84,124,0,0,92,124,0,0,92,124,0,0,94,124,0,0,94,124,0,0,94,124,0,0,94,124,0,0,94,124,0,0,94,124,0,0,94,124,0,0,98,124,0,0,102,124,0,0,102,124,0,0,108,124,0,0,108,124,0,0,110,124,0,0,110,124,0,0,110,124,0,0,114,124,0,0,114,124,0,0,122,124,0,0,128,124,0,0,134,124,0,0,138,124,0,0,138,124,0,0,140,124,0,0,144,124,0,0,146,124,0,0,146,124,0,0,150,124,0,0,152,124,0,0,152,124,0,0,154,124,0,0,154,124,0,0,154,124,0,0,154,124,0,0,154,124,0,0,154,124,0,0,154,124,0,0,154,124,0,0,154,124,0,0,164,124,0,0,164,124,0,0,168,124,0,0,174,124,0,0,176,124,0,0,182,124,0,0,182,124,0,0,182,124,0,0,186,124,0,0,186,124,0,0,186,124,0,0,186,124,0,0,188,124,0,0,192,124,0,0,196,124,0,0,196,124,0,0,198,124,0,0,198,124,0,0,198,124,0,0,198,124,0,0,198,124,0,0,200,124,0,0,200,124,0,0,200,124,0,0,202,124,0,0,202,124,0,0,202,124,0,0,204,124,0,0,204,124,0,0,204,124,0,0,204,124,0,0,204,124,0,0,204,124,0,0,204,124,0,0,204,124,0,0,204,124,0,0,204,124,0,0,204,124,0,0,204,124,0,0,206,124,0,0,208,124,0,0,210,124,0,0,210,124,0,0,214,124,0,0,214,124,0,0,216,124,0,0,218,124,0,0,222,124,0,0,222,124,0,0,228,124,0,0,228,124,0,0,230,124,0,0,230,124,0,0,230,124,0,0,232,124,0,0,232,124,0,0,232,124,0,0,232,124,0,0,234,124,0,0,234,124,0,0,236,124,0,0,236,124,0,0,236,124,0,0,236,124,0,0,236,124,0,0,236,124,0,0,238,124,0,0,242,124,0,0,242,124,0,0,242,124,0,0,242,124,0,0,242,124,0,0,248,124,0,0,250,124,0,0,252,124,0,0,252,124,0,0,0,125,0,0,10,125,0,0,12,125,0,0,14,125,0,0,16,125,0,0,16,125,0,0,18,125,0,0,24,125,0,0,24,125,0,0,24,125,0,0,26,125,0,0,30,125,0,0,32,125,0,0,36,125,0,0,38,125,0,0,44,125,0,0,48,125,0,0,50,125,0,0,68,125,0,0,72,125,0,0,72,125,0,0,74,125,0,0,76,125,0,0,84,125,0,0,84,125,0,0,84,125,0,0,84,125,0,0,88,125,0,0,90,125,0,0,94,125,0,0,98,125,0,0,102,125,0,0,108,125,0,0,108,125,0,0,108,125,0,0,114,125,0,0,114,125,0,0,128,125,0,0,128,125,0,0,130,125,0,0,130,125,0,0,130,125,0,0,132,125,0,0,138,125,0,0,146,125,0,0,146,125,0,0,148,125,0,0,150,125,0,0,150,125,0,0,154,125,0,0,154,125,0,0,154,125,0,0,158,125,0,0,158,125,0,0,158,125,0,0,158,125,0,0,158,125,0,0,160,125,0,0,162,125,0,0,162,125,0,0,162,125,0,0,166,125,0,0,168,125,0,0,172,125,0,0,172,125,0,0,174,125,0,0,174,125,0,0,178,125,0,0,178,125,0,0,184,125,0,0,186,125,0,0,186,125,0,0,198,125,0,0,200,125,0,0,200,125,0,0,208,125,0,0,208,125,0,0,212,125,0,0,214,125,0,0,218,125,0,0,220,125,0,0,222,125,0,0,224,125,0,0,224,125,0,0,228,125,0,0,228,125,0,0,234,125,0,0,234,125,0,0,234,125,0,0,236,125,0,0,242,125,0,0,242,125,0,0,242,125,0,0,242,125,0,0,248,125,0,0,250,125,0,0,254,125,0,0,0,126,0,0,4,126,0,0,6,126,0,0,8,126,0,0,8,126,0,0,10,126,0,0,16,126,0,0,18,126,0,0,18,126,0,0,20,126,0,0,24,126,0,0,26,126,0,0,26,126,0,0,28,126,0,0,32,126,0,0,34,126,0,0,34,126,0,0,40,126,0,0,40,126,0,0,40,126,0,0,40,126,0,0,44,126,0,0,44,126,0,0,44,126,0,0,48,126,0,0,48,126,0,0,48,126,0,0,50,126,0,0,50,126,0,0,54,126,0,0,54,126,0,0,54,126,0,0,56,126,0,0,56,126,0,0,56,126,0,0,56,126,0,0,66,126,0,0,68,126,0,0,68,126,0,0,78,126,0,0,78,126,0,0,82,126,0,0,84,126,0,0,88,126,0,0,88,126,0,0,90,126,0,0,94,126,0,0,102,126,0,0,104,126,0,0,106,126,0,0,112,126,0,0,114,126,0,0,114,126,0,0,118,126,0,0,120,126,0,0,120,126,0,0,122,126,0,0,122,126,0,0,124,126,0,0,124,126,0,0,132,126,0,0,138,126,0,0,146,126,0,0,146,126,0,0,150,126,0,0,150,126,0,0,150,126,0,0,150,126,0,0,152,126,0,0,152,126,0,0,156,126,0,0,156,126,0,0,158,126,0,0,158,126,0,0,162,126,0,0,162,126,0,0,166,126,0,0,168,126,0,0,170,126,0,0,170,126,0,0,172,126,0,0,172,126,0,0,176,126,0,0,178,126,0,0,188,126,0,0,190,126,0,0,190,126,0,0,190,126,0,0,190,126,0,0,190,126,0,0,196,126,0,0,196,126,0,0,200,126,0,0,204,126,0,0,206,126,0,0,210,126,0,0,210,126,0,0,218,126,0,0,218,126,0,0,222,126,0,0,230,126,0,0,236,126,0,0,236,126,0,0,236,126,0,0,240,126,0,0,240,126,0,0,242,126,0,0,244,126,0,0,244,126,0,0,244,126,0,0,246,126,0,0,246,126,0,0,254,126,0,0,254,126,0,0,254,126,0,0,254,126,0,0,0,127,0,0,0,127,0,0,0,127,0,0,0,127,0,0,4,127,0,0,4,127,0,0,6,127,0,0,6,127,0,0,6,127,0,0,8,127,0,0,16,127,0,0,16,127,0,0,16,127,0,0,16,127,0,0,24,127,0,0,24,127,0,0,26,127,0,0,26,127,0,0,30,127,0,0,32,127,0,0,32,127,0,0,34,127,0,0,36,127,0,0,36,127,0,0,38,127,0,0,40,127,0,0,40,127,0,0,42,127,0,0,44,127,0,0,46,127,0,0,48,127,0,0,54,127,0,0,54,127,0,0,54,127,0,0,54,127,0,0,56,127,0,0,64,127,0,0,64,127,0,0,64,127,0,0,66,127,0,0,66,127,0,0,66,127,0,0,66,127,0,0,76,127,0,0,78,127,0,0,84,127,0,0,84,127,0,0,84,127,0,0,84,127,0,0,84,127,0,0,84,127,0,0,84,127,0,0,88,127,0,0,90,127,0,0,92,127,0,0,98,127,0,0,100,127,0,0,108,127,0,0,108,127,0,0,108,127,0,0,108,127,0,0,114,127,0,0,124,127,0,0,128,127,0,0,128,127,0,0,132,127,0,0,132,127,0,0,132,127,0,0,134,127,0,0,134,127,0,0,136,127,0,0,136,127,0,0,138,127,0,0,138,127,0,0,146,127,0,0,148,127,0,0,152,127,0,0,152,127,0,0,152,127,0,0,152,127,0,0,152,127,0,0,152,127,0,0,152,127,0,0,152,127,0,0,152,127,0,0,154,127,0,0,158,127,0,0,158,127,0,0,158,127,0,0,158,127,0,0,160,127,0,0,162,127,0,0,164,127,0,0,164,127,0,0,166,127,0,0,166,127,0,0,166,127,0,0,166,127,0,0,166,127,0,0,166,127,0,0,168,127,0,0,172,127,0,0,172,127,0,0,174,127,0,0,182,127,0,0,182,127,0,0,182,127,0,0,184,127,0,0,190,127,0,0,196,127,0,0,196,127,0,0,204,127,0,0,206,127,0,0,208,127,0,0,214,127,0,0,218,127,0,0,218,127,0,0,218,127,0,0,220,127,0,0,226,127,0,0,228,127,0,0,228,127,0,0,230,127,0,0,232,127,0,0,236,127,0,0,238,127,0,0,240,127,0,0,240,127,0,0,242,127,0,0,242,127,0,0,242,127,0,0,242,127,0,0,242,127,0,0,244,127,0,0,248,127,0,0,248,127,0,0,248,127,0,0,252,127,0,0,252,127,0,0,252,127,0,0,252,127,0,0,0,128,0,0,0,128,0,0,0,128,0,0,6,128,0,0,6,128,0,0,6,128,0,0,8,128,0,0,10,128,0,0,10,128,0,0,14,128,0,0,18,128,0,0,22,128,0,0,22,128,0,0,22,128,0,0,22,128,0,0,28,128,0,0,30,128,0,0,34,128,0,0,36,128,0,0,36,128,0,0,36,128,0,0,36,128,0,0,36,128,0,0,36,128,0,0,36,128,0,0,38,128,0,0,44,128,0,0,48,128,0,0,48,128,0,0,48,128,0,0,48,128,0,0,48,128,0,0,48,128,0,0,50,128,0,0,50,128,0,0,52,128,0,0,54,128,0,0,54,128,0,0,56,128,0,0,56,128,0,0,58,128,0,0,60,128,0,0,60,128,0,0,60,128,0,0,60,128,0,0,62,128,0,0,64,128,0,0,64,128,0,0,72,128,0,0,72,128,0,0,72,128,0,0,74,128,0,0,74,128,0,0,74,128,0,0,74,128,0,0,74,128,0,0,74,128,0,0,78,128,0,0,78,128,0,0,80,128,0,0,84,128,0,0,84,128,0,0,86,128,0,0,86,128,0,0,86,128,0,0,86,128,0,0,88,128,0,0,88,128,0,0,92,128,0,0,92,128,0,0,96,128,0,0,96,128,0,0,98,128,0,0,100,128,0,0,102,128,0,0,108,128,0,0,108,128,0,0,112,128,0,0,112,128,0,0,112,128,0,0,114,128,0,0,114,128,0,0,116,128,0,0,118,128,0,0,120,128,0,0,122,128,0,0,122,128,0,0,122,128,0,0,124,128,0,0,124,128,0,0,124,128,0,0,126,128,0,0,126,128,0,0,126,128,0,0,130,128,0,0,136,128,0,0,140,128,0,0,140,128,0,0,142,128,0,0,146,128,0,0,150,128,0,0,150,128,0,0,150,128,0,0,150,128,0,0,152,128,0,0,152,128,0,0,152,128,0,0,152,128,0,0,152,128,0,0,152,128,0,0,156,128,0,0,160,128,0,0,160,128,0,0,160,128,0,0,162,128,0,0,166,128,0,0,172,128,0,0,172,128,0,0,172,128,0,0,172,128,0,0,172,128,0,0,178,128,0,0,178,128,0,0,180,128,0,0,180,128,0,0,184,128,0,0,200,128,0,0,200,128,0,0,200,128,0,0,200,128,0,0,200,128,0,0,204,128,0,0,204,128,0,0,204,128,0,0,204,128,0,0,210,128,0,0,210,128,0,0,220,128,0,0,222,128,0,0,222,128,0,0,222,128,0,0,224,128,0,0,226,128,0,0,226,128,0,0,242,128,0,0,244,128,0,0,244,128,0,0,244,128,0,0,248,128,0,0,248,128,0,0,248,128,0,0,250,128,0,0,254,128,0,0,254,128,0,0,254,128,0,0,4,129,0,0,10,129,0,0,12,129,0,0,14,129,0,0,16,129,0,0,18,129,0,0,32,129,0,0,32,129,0,0,34,129,0,0,34,129,0,0,38,129,0,0,44,129,0,0,48,129,0,0,54,129,0,0,54,129,0,0,60,129,0,0,62,129,0,0,68,129,0,0,74,129,0,0,76,129,0,0,78,129,0,0,78,129,0,0,92,129,0,0,92,129,0,0,96,129,0,0,96,129,0,0,98,129,0,0,98,129,0,0,102,129,0,0,102,129,0,0,104,129,0,0,110,129,0,0,110,129,0,0,116,129,0,0,122,129,0,0,122,129,0,0,128,129,0,0,130,129,0,0,130,129,0,0,130,129,0,0,130,129,0,0,130,129,0,0,134,129,0,0,136,129,0,0,136,129,0,0,136,129,0,0,138,129,0,0,152,129,0,0,152,129,0,0,156,129,0,0,156,129,0,0,156,129,0,0,156,129,0,0,156,129,0,0,156,129,0,0,164,129,0,0,164,129,0,0,166,129,0,0,166,129,0,0,168,129,0,0,170,129,0,0,174,129,0,0,174,129,0,0,178,129,0,0,180,129,0,0,184,129,0,0,184,129,0,0,184,129,0,0,184,129,0,0,184,129,0,0,186,129,0,0,188,129,0,0,188,129,0,0,188,129,0,0,196,129,0,0,210,129,0,0,212,129,0,0,216,129,0,0,218,129,0,0,226,129,0,0,226,129,0,0,226,129,0,0,230,129,0,0,236,129,0,0,236,129,0,0,236,129,0,0,240,129,0,0,240,129,0,0,240,129,0,0,242,129,0,0,244,129,0,0,250,129,0,0,250,129,0,0,0,130,0,0,2,130,0,0,2,130,0,0,2,130,0,0,4,130,0,0,6,130,0,0,6,130,0,0,12,130,0,0,16,130,0,0,18,130,0,0,18,130,0,0,18,130,0,0,22,130,0,0,22,130,0,0,22,130,0,0,28,130,0,0,30,130,0,0,30,130,0,0,34,130,0,0,36,130,0,0,36,130,0,0,40,130,0,0,40,130,0,0,40,130,0,0,42,130,0,0,42,130,0,0,42,130,0,0,42,130,0,0,48,130,0,0,48,130,0,0,48,130,0,0,52,130,0,0,52,130,0,0,56,130,0,0,66,130,0,0,70,130,0,0,72,130,0,0,72,130,0,0,76,130,0,0,76,130,0,0,80,130,0,0,80,130,0,0,80,130,0,0,80,130,0,0,80,130,0,0,80,130,0,0,80,130,0,0,80,130,0,0,80,130,0,0,80,130,0,0,82,130,0,0,82,130,0,0,82,130,0,0,84,130,0,0,84,130,0,0,88,130,0,0,92,130,0,0,100,130,0,0,100,130,0,0,100,130,0,0,104,130,0,0,106,130,0,0,106,130,0,0,106,130,0,0,108,130,0,0,108,130,0,0,108,130,0,0,108,130,0,0,110,130,0,0,114,130,0,0,114,130,0,0,116,130,0,0,116,130,0,0,118,130,0,0,120,130,0,0,138,130,0,0,146,130,0,0,146,130,0,0,146,130,0,0,146,130,0,0,146,130,0,0,146,130,0,0,146,130,0,0,146,130,0,0,148,130,0,0,150,130,0,0,150,130,0,0,150,130,0,0,162,130,0,0,164,130,0,0,164,130,0,0,164,130,0,0,164,130,0,0,164,130,0,0,166,130,0,0,168,130,0,0,168,130,0,0,172,130,0,0,172,130,0,0,174,130,0,0,174,130,0,0,174,130,0,0,174,130,0,0,174,130,0,0,180,130,0,0,184,130,0,0,192,130,0,0,192,130,0,0,192,130,0,0,194,130,0,0,194,130,0,0,196,130,0,0,198,130,0,0,198,130,0,0,204,130,0,0,208,130,0,0,208,130,0,0,216,130,0,0,218,130,0,0,220,130,0,0,220,130,0,0,220,130,0,0,222,130,0,0,222,130,0,0,224,130,0,0,226,130,0,0,232,130,0,0,232,130,0,0,234,130,0,0,234,130,0,0,234,130,0,0,234,130,0,0,238,130,0,0,238,130,0,0,240,130,0,0,246,130,0,0,250,130,0,0,2,131,0,0,2,131,0,0,2,131,0,0,4,131,0,0,12,131,0,0,14,131,0,0,14,131,0,0,16,131,0,0,20,131,0,0,20,131,0,0,22,131,0,0,22,131,0,0,24,131,0,0,26,131,0,0,26,131,0,0,26,131,0,0,26,131,0,0,26,131,0,0,26,131,0,0,28,131,0,0,30,131,0,0,30,131,0,0,34,131,0,0,34,131,0,0,34,131,0,0,34,131,0,0,40,131,0,0,42,131,0,0,44,131,0,0,44,131,0,0,44,131,0,0,44,131,0,0,44,131,0,0,44,131,0,0,44,131,0,0,44,131,0,0,46,131,0,0,48,131,0,0,52,131,0,0,52,131,0,0,52,131,0,0,52,131,0,0,54,131,0,0,54,131,0,0,54,131,0,0,58,131,0,0,60,131,0,0,62,131,0,0,62,131,0,0,70,131,0,0,72,131,0,0,74,131,0,0,78,131,0,0,78,131,0,0,90,131,0,0,96,131,0,0,102,131,0,0,102,131,0,0,102,131,0,0,102,131,0,0,102,131,0,0,102,131,0,0,102,131,0,0,102,131,0,0,102,131,0,0,104,131,0,0,104,131,0,0,112,131,0,0,114,131,0,0,116,131,0,0,116,131,0,0,116,131,0,0,120,131,0,0,128,131,0,0,128,131,0,0,138,131,0,0,140,131,0,0,140,131,0,0,140,131,0,0,150,131,0,0,150,131,0,0,150,131,0,0,150,131,0,0,154,131,0,0,162,131,0,0,162,131,0,0,162,131,0,0,162,131,0,0,162,131,0,0,162,131,0,0,166,131,0,0,174,131,0,0,176,131,0,0,180,131,0,0,182,131,0,0,182,131,0,0,186,131,0,0,186,131,0,0,190,131,0,0,190,131,0,0,194,131,0,0,196,131,0,0,196,131,0,0,200,131,0,0,204,131,0,0,204,131,0,0,204,131,0,0,208,131,0,0,208,131,0,0,208,131,0,0,208,131,0,0,208,131,0,0,208,131,0,0,212,131,0,0,216,131,0,0,216,131,0,0,218,131,0,0,218,131,0,0,218,131,0,0,218,131,0,0,226,131,0,0,228,131,0,0,230,131,0,0,232,131,0,0,238,131,0,0,240,131,0,0,244,131,0,0,244,131,0,0,246,131,0,0,250,131,0,0,250,131,0,0,254,131,0,0,254,131,0,0,254,131,0,0,254,131,0,0,254,131,0,0,254,131,0,0,0,132,0,0,0,132,0,0,2,132,0,0,4,132,0,0,10,132,0,0,10,132,0,0,10,132,0,0,10,132,0,0,10,132,0,0,10,132,0,0,12,132,0,0,16,132,0,0,16,132,0,0,16,132,0,0,18,132,0,0,18,132,0,0,20,132,0,0,20,132,0,0,22,132,0,0,22,132,0,0,22,132,0,0,28,132,0,0,32,132,0,0,36,132,0,0,38,132,0,0,38,132,0,0,42,132,0,0,44,132,0,0,44,132,0,0,44,132,0,0,44,132,0,0,44,132,0,0,44,132,0,0,46,132,0,0,48,132,0,0,48,132,0,0,48,132,0,0,48,132,0,0,48,132,0,0,50,132,0,0,52,132,0,0,54,132,0,0,58,132,0,0,58,132,0,0,58,132,0,0,60,132,0,0,62,132,0,0,62,132,0,0,64,132,0,0,66,132,0,0,72,132,0,0,72,132,0,0,76,132,0,0,76,132,0,0,76,132,0,0,78,132,0,0,82,132,0,0,88,132,0,0,88,132,0,0,92,132,0,0,92,132,0,0,92,132,0,0,92,132,0,0,92,132,0,0,96,132,0,0,110,132,0,0,110,132,0,0,112,132,0,0,118,132,0,0,120,132,0,0,126,132,0,0,130,132,0,0,130,132,0,0,130,132,0,0,132,132,0,0,132,132,0,0,132,132,0,0,132,132,0,0,136,132,0,0,136,132,0,0,136,132,0,0,136,132,0,0,136,132,0,0,136,132,0,0,144,132,0,0,144,132,0,0,148,132,0,0,148,132,0,0,148,132,0,0,148,132,0,0,148,132,0,0,148,132,0,0,150,132,0,0,150,132,0,0,154,132,0,0,154,132,0,0,154,132,0,0,154,132,0,0,154,132,0,0,154,132,0,0,156,132,0,0,158,132,0,0,164,132,0,0,164,132,0,0,174,132,0,0,174,132,0,0,176,132,0,0,184,132,0,0,190,132,0,0,190,132,0,0,192,132,0,0,194,132,0,0,194,132,0,0,194,132,0,0,194,132,0,0,196,132,0,0,196,132,0,0,196,132,0,0,196,132,0,0,196,132,0,0,196,132,0,0,200,132,0,0,202,132,0,0,202,132,0,0,206,132,0,0,210,132,0,0,212,132,0,0,212,132,0,0,216,132,0,0,218,132,0,0,218,132,0,0,218,132,0,0,220,132,0,0,220,132,0,0,220,132,0,0,226,132,0,0,228,132,0,0,228,132,0,0,238,132,0,0,238,132,0,0,240,132,0,0,240,132,0,0,244,132,0,0,248,132,0,0,248,132,0,0,250,132,0,0,250,132,0,0,252,132,0,0,252,132,0,0,2,133,0,0,2,133,0,0,4,133,0,0,8,133,0,0,8,133,0,0,14,133,0,0,14,133,0,0,18,133,0,0,18,133,0,0,18,133,0,0,18,133,0,0,24,133,0,0,24,133,0,0,28,133,0,0,28,133,0,0,28,133,0,0,28,133,0,0,30,133,0,0,32,133,0,0,32,133,0,0,32,133,0,0,32,133,0,0,32,133,0,0,32,133,0,0,32,133,0,0,34,133,0,0,34,133,0,0,38,133,0,0,40,133,0,0,40,133,0,0,42,133,0,0,46,133,0,0,46,133,0,0,50,133,0,0,50,133,0,0,50,133,0,0,50,133,0,0,56,133,0,0,56,133,0,0,56,133,0,0,56,133,0,0,56,133,0,0,56,133,0,0,56,133,0,0,60,133,0,0,64,133,0,0,68,133,0,0,70,133,0,0,74,133,0,0,74,133,0,0,76,133,0,0,76,133,0,0,84,133,0,0,88,133,0,0,88,133,0,0,88,133,0,0,92,133,0,0,98,133,0,0,102,133,0,0,104,133,0,0,104,133,0,0,108,133,0,0,112,133,0,0,114,133,0,0,114,133,0,0,114,133,0,0,118,133,0,0,118,133,0,0,120,133,0,0,120,133,0,0,120,133,0,0,120,133,0,0,120,133,0,0,124,133,0,0,134,133,0,0,134,133,0,0,134,133,0,0,136,133,0,0,140,133,0,0,142,133,0,0,142,133,0,0,142,133,0,0,144,133,0,0,144,133,0,0,144,133,0,0,148,133,0,0,148,133,0,0,150,133,0,0,156,133,0,0,156,133,0,0,156,133,0,0,158,133,0,0,162,133,0,0,166,133,0,0,168,133,0,0,168,133,0,0,168,133,0,0,168,133,0,0,168,133,0,0,172,133,0,0,180,133,0,0,180,133,0,0,180,133,0,0,180,133,0,0,182,133,0,0,184,133,0,0,188,133,0,0,188,133,0,0,188,133,0,0,194,133,0,0,196,133,0,0,196,133,0,0,196,133,0,0,200,133,0,0,200,133,0,0,200,133,0,0,200,133,0,0,202,133,0,0,206,133,0,0,208,133,0,0,208,133,0,0,208,133,0,0,208,133,0,0,212,133,0,0,214,133,0,0,214,133,0,0,214,133,0,0,214,133,0,0,214,133,0,0,216,133,0,0,216,133,0,0,226,133,0,0,226,133,0,0,226,133,0,0,226,133,0,0,226,133,0,0,226,133,0,0,226,133,0,0,226,133,0,0,228,133,0,0,236,133,0,0,238,133,0,0,238,133,0,0,238,133,0,0,238,133,0,0,244,133,0,0,254,133,0,0,0,134,0,0,2,134,0,0,2,134,0,0,2,134,0,0,2,134,0,0,2,134,0,0,4,134,0,0,4,134,0,0,4,134,0,0,6,134,0,0,14,134,0,0,16,134,0,0,20,134,0,0,22,134,0,0,22,134,0,0,24,134,0,0,24,134,0,0,28,134,0,0,28,134,0,0,36,134,0,0,38,134,0,0,38,134,0,0,38,134,0,0,38,134,0,0,38,134,0,0,38,134,0,0,44,134,0,0,48,134,0,0,50,134,0,0,56,134,0,0,60,134,0,0,62,134,0,0,66,134,0,0,68,134,0,0,68,134,0,0,70,134,0,0,70,134,0,0,70,134,0,0,70,134,0,0,70,134,0,0,72,134,0,0,72,134,0,0,72,134,0,0,72,134,0,0,78,134,0,0,82,134,0,0,82,134,0,0,84,134,0,0,84,134,0,0,92,134,0,0,94,134,0,0,98,134,0,0,104,134,0,0,104,134,0,0,104,134,0,0,104,134,0,0,104,134,0,0,104,134,0,0,106,134,0,0,106,134,0,0,106,134,0,0,108,134,0,0,110,134,0,0,112,134,0,0,112,134,0,0,112,134,0,0,112,134,0,0,112,134,0,0,112,134,0,0,112,134,0,0,114,134,0,0,114,134,0,0,116,134,0,0,116,134,0,0,120,134,0,0,120,134,0,0,120,134,0,0,120,134,0,0,120,134,0,0,120,134,0,0,120,134,0,0,120,134,0,0,126,134,0,0,130,134,0,0,134,134,0,0,134,134,0,0,134,134,0,0,134,134,0,0,134,134,0,0,138,134,0,0,140,134,0,0,140,134,0,0,140,134,0,0,146,134,0,0,146,134,0,0,148,134,0,0,148,134,0,0,148,134,0,0,148,134,0,0,148,134,0,0,148,134,0,0,148,134,0,0,148,134,0,0,148,134,0,0,148,134,0,0,148,134,0,0,148,134,0,0,150,134,0,0,150,134,0,0,150,134,0,0,150,134,0,0,152,134,0,0,156,134,0,0,158,134,0,0,160,134,0,0,164,134,0,0,170,134,0,0,174,134,0,0,180,134,0,0,180,134,0,0,180,134,0,0,180,134,0,0,182,134,0,0,182,134,0,0,184,134,0,0,190,134,0,0,190,134,0,0,190,134,0,0,192,134,0,0,196,134,0,0,196,134,0,0,198,134,0,0,204,134,0,0,204,134,0,0,210,134,0,0,212,134,0,0,220,134,0,0,220,134,0,0,222,134,0,0,232,134,0,0,232,134,0,0,234,134,0,0,234,134,0,0,238,134,0,0,238,134,0,0,238,134,0,0,242,134,0,0,242,134,0,0,242,134,0,0,242,134,0,0,244,134,0,0,246,134,0,0,252,134,0,0,0,135,0,0,2,135,0,0,2,135,0,0,2,135,0,0,2,135,0,0,2,135,0,0,2,135,0,0,6,135,0,0,6,135,0,0,12,135,0,0,12,135,0,0,12,135,0,0,12,135,0,0,12,135,0,0,14,135,0,0,14,135,0,0,14,135,0,0,14,135,0,0,14,135,0,0,20,135,0,0,24,135,0,0,24,135,0,0,26,135,0,0,26,135,0,0,26,135,0,0,26,135,0,0,26,135,0,0,28,135,0,0,30,135,0,0,30,135,0,0,30,135,0,0,30,135,0,0,30,135,0,0,32,135,0,0,32,135,0,0,32,135,0,0,32,135,0,0,32,135,0,0,34,135,0,0,38,135,0,0,40,135,0,0,40,135,0,0,40,135,0,0,42,135,0,0,46,135,0,0,46,135,0,0,48,135,0,0,48,135,0,0,52,135,0,0,58,135,0,0,58,135,0,0,58,135,0,0,60,135,0,0,60,135,0,0,60,135,0,0,62,135,0,0,64,135,0,0,64,135,0,0,64,135,0,0,66,135,0,0,68,135,0,0,68,135,0,0,68,135,0,0,68,135,0,0,68,135,0,0,74,135,0,0,84,135,0,0,84,135,0,0,84,135,0,0,84,135,0,0,84,135,0,0,84,135,0,0,86,135,0,0,90,135,0,0,92,135,0,0,94,135,0,0,94,135,0,0,94,135,0,0,94,135,0,0,102,135,0,0,104,135,0,0,106,135,0,0,110,135,0,0,110,135,0,0,112,135,0,0,112,135,0,0,112,135,0,0,112,135,0,0,114,135,0,0,114,135,0,0,114,135,0,0,116,135,0,0,120,135,0,0,122,135,0,0,124,135,0,0,124,135,0,0,130,135,0,0,132,135,0,0,134,135,0,0,134,135,0,0,134,135,0,0,134,135,0,0,138,135,0,0,150,135,0,0,160,135,0,0,166,135,0,0,170,135,0,0,174,135,0,0,174,135,0,0,174,135,0,0,174,135,0,0,174,135,0,0,174,135,0,0,174,135,0,0,176,135,0,0,176,135,0,0,176,135,0,0,178,135,0,0,180,135,0,0,182,135,0,0,184,135,0,0,184,135,0,0,184,135,0,0,188,135,0,0,194,135,0,0,194,135,0,0,194,135,0,0,194,135,0,0,194,135,0,0,194,135,0,0,196,135,0,0,196,135,0,0,196,135,0,0,196,135,0,0,196,135,0,0,196,135,0,0,196,135,0,0,198,135,0,0,202,135,0,0,204,135,0,0,204,135,0,0,204,135,0,0,206,135,0,0,212,135,0,0,212,135,0,0,216,135,0,0,218,135,0,0,222,135,0,0,224,135,0,0,232,135,0,0,234,135,0,0,234,135,0,0,240,135,0,0,240,135,0,0,240,135,0,0,248,135,0,0,250,135,0,0,250,135,0,0,252,135,0,0,2,136,0,0,2,136,0,0,6,136,0,0,6,136,0,0,10,136,0,0,20,136,0,0,20,136,0,0,20,136,0,0,20,136,0,0,26,136,0,0,26,136,0,0,26,136,0,0,26,136,0,0,26,136,0,0,26,136,0,0,26,136,0,0,28,136,0,0,28,136,0,0,28,136,0,0,32,136,0,0,36,136,0,0,36,136,0,0,36,136,0,0,36,136,0,0,44,136,0,0,46,136,0,0,50,136,0,0,50,136,0,0,52,136,0,0,56,136,0,0,60,136,0,0,60,136,0,0,64,136,0,0,64,136,0,0,64,136,0,0,64,136,0,0,64,136,0,0,66,136,0,0,66,136,0,0,68,136,0,0,68,136,0,0,68,136,0,0,72,136,0,0,74,136,0,0,76,136,0,0,80,136,0,0,80,136,0,0,82,136,0,0,82,136,0,0,84,136,0,0,84,136,0,0,86,136,0,0,86,136,0,0,86,136,0,0,88,136,0,0,88,136,0,0,92,136,0,0,92,136,0,0,92,136,0,0,96,136,0,0,96,136,0,0,96,136,0,0,98,136,0,0,104,136,0,0,112,136,0,0,112,136,0,0,116,136,0,0,120,136,0,0,122,136,0,0,132,136,0,0,136,136,0,0,136,136,0,0,136,136,0,0,138,136,0,0,138,136,0,0,146,136,0,0,146,136,0,0,146,136,0,0,148,136,0,0,148,136,0,0,148,136,0,0,150,136,0,0,154,136,0,0,156,136,0,0,156,136,0,0,168,136,0,0,168,136,0,0,170,136,0,0,172,136,0,0,172,136,0,0,172,136,0,0,178,136,0,0,188,136,0,0,188,136,0,0,190,136,0,0,190,136,0,0,194,136,0,0,202,136,0,0,208,136,0,0,208,136,0,0,212,136,0,0,212,136,0,0,212,136,0,0,222,136,0,0,222,136,0,0,226,136,0,0,228,136,0,0,228,136,0,0,230,136,0,0,232,136,0,0,232,136,0,0,234,136,0,0,234,136,0,0,238,136,0,0,240,136,0,0,242,136,0,0,242,136,0,0,242,136,0,0,242,136,0,0,242,136,0,0,242,136,0,0,246,136,0,0,246,136,0,0,248,136,0,0,250,136,0,0,254,136,0,0,254,136,0,0,254,136,0,0,254,136,0,0,0,137,0,0,0,137,0,0,0,137,0,0,0,137,0,0,4,137,0,0,4,137,0,0,18,137,0,0,18,137,0,0,20,137,0,0,20,137,0,0,20,137,0,0,20,137,0,0,22,137,0,0,22,137,0,0,30,137,0,0,32,137,0,0,32,137,0,0,32,137,0,0,36,137,0,0,36,137,0,0,42,137,0,0,44,137,0,0,44,137,0,0,46,137,0,0,46,137,0,0,52,137,0,0,54,137,0,0,54,137,0,0,54,137,0,0,56,137,0,0,56,137,0,0,56,137,0,0,56,137,0,0,58,137,0,0,66,137,0,0,68,137,0,0,68,137,0,0,68,137,0,0,72,137,0,0,72,137,0,0,74,137,0,0,74,137,0,0,76,137,0,0,76,137,0,0,78,137,0,0,78,137,0,0,78,137,0,0,78,137,0,0,80,137,0,0,80,137,0,0,80,137,0,0,80,137,0,0,86,137,0,0,86,137,0,0,88,137,0,0,88,137,0,0,92,137,0,0,94,137,0,0,96,137,0,0,102,137,0,0,102,137,0,0,104,137,0,0,108,137,0,0,108,137,0,0,112,137,0,0,112,137,0,0,112,137,0,0,114,137,0,0,122,137,0,0,122,137,0,0,122,137,0,0,126,137,0,0,128,137,0,0,138,137,0,0,138,137,0,0,138,137,0,0,138,137,0,0,142,137,0,0,142,137,0,0,142,137,0,0,142,137,0,0,148,137,0,0,148,137,0,0,152,137,0,0,162,137,0,0,170,137,0,0,170,137,0,0,170,137,0,0,170,137,0,0,170,137,0,0,174,137,0,0,174,137,0,0,174,137,0,0,176,137,0,0,176,137,0,0,178,137,0,0,178,137,0,0,178,137,0,0,178,137,0,0,180,137,0,0,180,137,0,0,180,137,0,0,180,137,0,0,180,137,0,0,186,137,0,0,190,137,0,0,200,137,0,0,204,137,0,0,206,137,0,0,206,137,0,0,206,137,0,0,210,137,0,0,210,137,0,0,210,137,0,0,216,137,0,0,228,137,0,0,230,137,0,0,230,137,0,0,230,137,0,0,230,137,0,0,230,137,0,0,230,137,0,0,232,137,0,0,232,137,0,0,234,137,0,0,234,137,0,0,234,137,0,0,238,137,0,0,238,137,0,0,238,137,0,0,238,137,0,0,238,137,0,0,238,137,0,0,240,137,0,0,240,137,0,0,242,137,0,0,246,137,0,0,248,137,0,0,248,137,0,0,248,137,0,0,248,137,0,0,254,137,0,0,254,137,0,0,254,137,0,0,2,138,0,0,6,138,0,0,6,138,0,0,6,138,0,0,8,138,0,0,14,138,0,0,26,138,0,0,32,138,0,0,32,138,0,0,32,138,0,0,38,138,0,0,46,138,0,0,46,138,0,0,48,138,0,0,52,138,0,0,60,138,0,0,60,138,0,0,62,138,0,0,62,138,0,0,64,138,0,0,64,138,0,0,64,138,0,0,64,138,0,0,64,138,0,0,66,138,0,0,76,138,0,0,76,138,0,0,76,138,0,0,76,138,0,0,76,138,0,0,86,138,0,0,88,138,0,0,88,138,0,0,88,138,0,0,90,138,0,0,90,138,0,0,94,138,0,0,94,138,0,0,100,138,0,0,100,138,0,0,102,138,0,0,104,138,0,0,104,138,0,0,104,138,0,0,104,138,0,0,106,138,0,0,106,138,0,0,106,138,0,0,114,138,0,0,114,138,0,0,114,138,0,0,116,138,0,0,116,138,0,0,118,138,0,0,118,138,0,0,120,138,0,0,130,138,0,0,130,138,0,0,138,138,0,0,150,138,0,0,152,138,0,0,154,138,0,0,154,138,0,0,160,138,0,0,164,138,0,0,166,138,0,0,166,138,0,0,166,138,0,0,168,138,0,0,172,138,0,0,176,138,0,0,182,138,0,0,182,138,0,0,182,138,0,0,184,138,0,0,184,138,0,0,184,138,0,0,186,138,0,0,188,138,0,0,188,138,0,0,188,138,0,0,190,138,0,0,190,138,0,0,194,138,0,0,196,138,0,0,196,138,0,0,196,138,0,0,196,138,0,0,196,138,0,0,196,138,0,0,198,138,0,0,202,138,0,0,202,138,0,0,202,138,0,0,204,138,0,0,206,138,0,0,206,138,0,0,206,138,0,0,210,138,0,0,210,138,0,0,212,138,0,0,212,138,0,0,214,138,0,0,218,138,0,0,224,138,0,0,230,138,0,0,232,138,0,0,232,138,0,0,236,138,0,0,236,138,0,0,236,138,0,0,236,138,0,0,236,138,0,0,236,138,0,0,238,138,0,0,238,138,0,0,240,138,0,0,240,138,0,0,240,138,0,0,240,138,0,0,240,138,0,0,240,138,0,0,246,138,0,0,246,138,0,0,246,138,0,0,254,138,0,0,4,139,0,0,6,139,0,0,10,139,0,0,10,139,0,0,12,139,0,0,12,139,0,0,12,139,0,0,18,139,0,0,18,139,0,0,18,139,0,0,22,139,0,0,26,139,0,0,28,139,0,0,30,139,0,0,30,139,0,0,36,139,0,0,36,139,0,0,36,139,0,0,36,139,0,0,44,139,0,0,52,139,0,0,60,139,0,0,60,139,0,0,60,139,0,0,62,139,0,0,62,139,0,0,72,139,0,0,74,139,0,0,76,139,0,0,80,139,0,0,80,139,0,0,88,139,0,0,90,139,0,0,96,139,0,0,96,139,0,0,96,139,0,0,98,139,0,0,98,139,0,0,100,139,0,0,104,139,0,0,110,139,0,0,116,139,0,0,116,139,0,0,118,139,0,0,120,139,0,0,120,139,0,0,120,139,0,0,120,139,0,0,126,139,0,0,126,139,0,0,126,139,0,0,128,139,0,0,128,139,0,0,128,139,0,0,130,139,0,0,130,139,0,0,136,139,0,0,138,139,0,0,138,139,0,0,144,139,0,0,144,139,0,0,144,139,0,0,146,139,0,0,154,139,0,0,154,139,0,0,154,139,0,0,156,139,0,0,156,139,0,0,160,139,0,0,160,139,0,0,160,139,0,0,160,139,0,0,166,139,0,0,168,139,0,0,168,139,0,0,168,139,0,0,170,139,0,0,170,139,0,0,170,139,0,0,172,139,0,0,172,139,0,0,180,139,0,0,188,139,0,0,188,139,0,0,194,139,0,0,194,139,0,0,194,139,0,0,194,139,0,0,194,139,0,0,194,139,0,0,194,139,0,0,194,139,0,0,196,139,0,0,196,139,0,0,200,139,0,0,206,139,0,0,206,139,0,0,208,139,0,0,210,139,0,0,212,139,0,0,220,139,0,0,226,139,0,0,234,139,0,0,236,139,0,0,240,139,0,0,240,139,0,0,240,139,0,0,240,139,0,0,240,139,0,0,240,139,0,0,240,139,0,0,240,139,0,0,240,139,0,0,240,139,0,0,244,139,0,0,248,139,0,0,248,139,0,0,248,139,0,0,250,139,0,0,250,139,0,0,2,140,0,0,8,140,0,0,8,140,0,0,22,140,0,0,24,140,0,0,24,140,0,0,24,140,0,0,26,140,0,0,30,140,0,0,30,140,0,0,36,140,0,0,38,140,0,0,38,140,0,0,40,140,0,0,42,140,0,0,46,140,0,0,48,140,0,0,50,140,0,0,50,140,0,0,50,140,0,0,64,140,0,0,68,140,0,0,70,140,0,0,70,140,0,0,72,140,0,0,80,140,0,0,84,140,0,0,84,140,0,0,84,140,0,0,86,140,0,0,86,140,0,0,86,140,0,0,86,140,0,0,86,140,0,0,86,140,0,0,86,140,0,0,86,140,0,0,86,140,0,0,86,140,0,0,92,140,0,0,92,140,0,0,92,140,0,0,92,140,0,0,98,140,0,0,98,140,0,0,98,140,0,0,98,140,0,0,98,140,0,0,100,140,0,0,100,140,0,0,100,140,0,0,114,140,0,0,114,140,0,0,116,140,0,0,116,140,0,0,120,140,0,0,120,140,0,0,120,140,0,0,126,140,0,0,126,140,0,0,126,140,0,0,126,140,0,0,126,140,0,0,126,140,0,0,128,140,0,0,128,140,0,0,128,140,0,0,128,140,0,0,132,140,0,0,134,140,0,0,140,140,0,0,140,140,0,0,144,140,0,0,144,140,0,0,150,140,0,0,150,140,0,0,154,140,0,0,156,140,0,0,158,140,0,0,158,140,0,0,162,140,0,0,164,140,0,0,164,140,0,0,170,140,0,0,170,140,0,0,170,140,0,0,170,140,0,0,174,140,0,0,176,140,0,0,176,140,0,0,182,140,0,0,184,140,0,0,186,140,0,0,186,140,0,0,198,140,0,0,198,140,0,0,202,140,0,0,206,140,0,0,206,140,0,0,206,140,0,0,206,140,0,0,206,140,0,0,208,140,0,0,208,140,0,0,208,140,0,0,208,140,0,0,210,140,0,0,214,140,0,0,214,140,0,0,218,140,0,0,222,140,0,0,222,140,0,0,224,140,0,0,228,140,0,0,232,140,0,0,236,140,0,0,236,140,0,0,236,140,0,0,236,140,0,0,236,140,0,0,242,140,0,0,242,140,0,0,252,140,0,0,252,140,0,0,254,140,0,0,254,140,0,0,254,140,0,0,6,141,0,0,6,141,0,0,6,141,0,0,6,141,0,0,6,141,0,0,6,141,0,0,6,141,0,0,6,141,0,0,6,141,0,0,8,141,0,0,10,141,0,0,14,141,0,0,18,141,0,0,18,141,0,0,26,141,0,0,26,141,0,0,28,141,0,0,28,141,0,0,30,141,0,0,30,141,0,0,30,141,0,0,36,141,0,0,36,141,0,0,36,141,0,0,40,141,0,0,40,141,0,0,46,141,0,0,46,141,0,0,50,141,0,0,50,141,0,0,50,141,0,0,50,141,0,0,56,141,0,0,62,141,0,0,62,141,0,0,64,141,0,0,66,141,0,0,74,141,0,0,76,141,0,0,78,141,0,0,82,141,0,0,82,141,0,0,82,141,0,0,82,141,0,0,82,141,0,0,82,141,0,0,84,141,0,0,88,141,0,0,90,141,0,0,94,141,0,0,94,141,0,0,94,141,0,0,94,141,0,0,94,141,0,0,94,141,0,0,98,141,0,0,98,141,0,0,100,141,0,0,102,141,0,0,106,141,0,0,106,141,0,0,110,141,0,0,110,141,0,0,114,141,0,0,114,141,0,0,116,141,0,0,122,141,0,0,124,141,0,0,124,141,0,0,124,141,0,0,124,141,0,0,124,141,0,0,124,141,0,0,126,141,0,0,126,141,0,0,128,141,0,0,128,141,0,0,138,141,0,0,140,141,0,0,144,141,0,0,144,141,0,0,144,141,0,0,144,141,0,0,146,141,0,0,154,141,0,0,154,141,0,0,158,141,0,0,158,141,0,0,158,141,0,0,160,141,0,0,166,141,0,0,166,141,0,0,170,141,0,0,176,141,0,0,180,141,0,0,182,141,0,0,182,141,0,0,186,141,0,0,188,141,0,0,192,141,0,0,194,141,0,0,194,141,0,0,194,141,0,0,204,141,0,0,204,141,0,0,206,141,0,0,206,141,0,0,210,141,0,0,212,141,0,0,212,141,0,0,216,141,0,0,216,141,0,0,218,141,0,0,218,141,0,0,218,141,0,0,218,141,0,0,222,141,0,0,224,141,0,0,226,141,0,0,226,141,0,0,234,141,0,0,238,141,0,0,238,141,0,0,238,141,0,0,240,141,0,0,240,141,0,0,244,141,0,0,244,141,0,0,244,141,0,0,244,141,0,0,244,141,0,0,244,141,0,0,246,141,0,0,246,141,0,0,248,141,0,0,248,141,0,0,254,141,0,0,254,141,0,0,254,141,0,0,4,142,0,0,4,142,0,0,6,142,0,0,8,142,0,0,16,142,0,0,20,142,0,0,22,142,0,0,28,142,0,0,28,142,0,0,32,142,0,0,32,142,0,0,34,142,0,0,34,142,0,0,34,142,0,0,40,142,0,0,46,142,0,0,48,142,0,0,48,142,0,0,48,142,0,0,52,142,0,0,58,142,0,0,58,142,0,0,60,142,0,0,60,142,0,0,64,142,0,0,64,142,0,0,64,142,0,0,66,142,0,0,66,142,0,0,70,142,0,0,70,142,0,0,74,142,0,0,80,142,0,0,80,142,0,0,86,142,0,0,88,142,0,0,88,142,0,0,92,142,0,0,92,142,0,0,94,142,0,0,106,142,0,0,106,142,0,0,108,142,0,0,108,142,0,0,108,142,0,0,108,142,0,0,108,142,0,0,114,142,0,0,116,142,0,0,116,142,0,0,116,142,0,0,116,142,0,0,122,142,0,0,126,142,0,0,130,142,0,0,130,142,0,0,130,142,0,0,130,142,0,0,130,142,0,0,132,142,0,0,132,142,0,0,140,142,0,0,140,142,0,0,140,142,0,0,140,142,0,0,140,142,0,0,144,142,0,0,144,142,0,0,144,142,0,0,152,142,0,0,152,142,0,0,152,142,0,0,152,142,0,0,152,142,0,0,152,142,0,0,152,142,0,0,154,142,0,0,154,142,0,0,156,142,0,0,164,142,0,0,170,142,0,0,180,142,0,0,184,142,0,0,194,142,0,0,196,142,0,0,198,142,0,0,202,142,0,0,206,142,0,0,208,142,0,0,210,142,0,0,214,142,0,0,214,142,0,0,224,142,0,0,224,142,0,0,226,142,0,0,226,142,0,0,232,142,0,0,232,142,0,0,234,142,0,0,236,142,0,0,242,142,0,0,244,142,0,0,244,142,0,0,250,142,0,0,252,142,0,0,0,143,0,0,8,143,0,0,12,143,0,0,12,143,0,0,18,143,0,0,18,143,0,0,18,143,0,0,18,143,0,0,22,143,0,0,24,143,0,0,26,143,0,0,28,143,0,0,28,143,0,0,30,143,0,0,30,143,0,0,34,143,0,0,34,143,0,0,34,143,0,0,34,143,0,0,34,143,0,0,34,143,0,0,40,143,0,0,48,143,0,0,48,143,0,0,54,143,0,0,54,143,0,0,58,143,0,0,58,143,0,0,60,143,0,0,60,143,0,0,60,143,0,0,64,143,0,0,68,143,0,0,72,143,0,0,72,143,0,0,74,143,0,0,76,143,0,0,86,143,0,0,86,143,0,0,92,143,0,0,92,143,0,0,92,143,0,0,96,143,0,0,108,143,0,0,108,143,0,0,112,143,0,0,116,143,0,0,116,143,0,0,116,143,0,0,118,143,0,0,124,143,0,0,124,143,0,0,128,143,0,0,128,143,0,0,128,143,0,0,132,143,0,0,134,143,0,0,134,143,0,0,134,143,0,0,134,143,0,0,136,143,0,0,136,143,0,0,136,143,0,0,136,143,0,0,136,143,0,0,144,143,0,0,154,143,0,0,154,143,0,0,154,143,0,0,154,143,0,0,156,143,0,0,156,143,0,0,156,143,0,0,158,143,0,0,158,143,0,0,158,143,0,0,158,143,0,0,162,143,0,0,162,143,0,0,166,143,0,0,172,143,0,0,172,143,0,0,172,143,0,0,172,143,0,0,174,143,0,0,174,143,0,0,174,143,0,0,174,143,0,0,176,143,0,0,176,143,0,0,178,143,0,0,178,143,0,0,182,143,0,0,184,143,0,0,184,143,0,0,188,143,0,0,188,143,0,0,192,143,0,0,192,143,0,0,192,143,0,0,194,143,0,0,194,143,0,0,202,143,0,0,204,143,0,0,204,143,0,0,204,143,0,0,208,143,0,0,210,143,0,0,210,143,0,0,212,143,0,0,212,143,0,0,216,143,0,0,216,143,0,0,218,143,0,0,218,143,0,0,218,143,0,0,218,143,0,0,218,143,0,0,218,143,0,0,218,143,0,0,218,143,0,0,224,143,0,0,224,143,0,0,224,143,0,0,226,143,0,0,226,143,0,0,230,143,0,0,232,143,0,0,234,143,0,0,234,143,0,0,234,143,0,0,242,143,0,0,242,143,0,0,242,143,0,0,242,143,0,0,248,143,0,0,250,143,0,0,250,143,0,0,252,143,0,0,252,143,0,0,254,143,0,0,0,144,0,0,0,144,0,0,2,144,0,0,2,144,0,0,2,144,0,0,8,144,0,0,14,144,0,0,14,144,0,0,14,144,0,0,14,144,0,0,14,144,0,0,16,144,0,0,16,144,0,0,16,144,0,0,16,144,0,0,16,144,0,0,16,144,0,0,18,144,0,0,22,144,0,0,26,144,0,0,26,144,0,0,26,144,0,0,26,144,0,0,26,144,0,0,26,144,0,0,26,144,0,0,26,144,0,0,26,144,0,0,28,144,0,0,32,144,0,0,32,144,0,0,36,144,0,0,36,144,0,0,38,144,0,0,38,144,0,0,40,144,0,0,40,144,0,0,40,144,0,0,40,144,0,0,40,144,0,0,40,144,0,0,40,144,0,0,40,144,0,0,44,144,0,0,48,144,0,0,50,144,0,0,52,144,0,0,54,144,0,0,54,144,0,0,54,144,0,0,54,144,0,0,54,144,0,0,54,144,0,0,54,144,0,0,54,144,0,0,58,144,0,0,60,144,0,0,60,144,0,0,60,144,0,0,66,144,0,0,66,144,0,0,66,144,0,0,68,144,0,0,74,144,0,0,74,144,0,0,76,144,0,0,76,144,0,0,76,144,0,0,76,144,0,0,76,144,0,0,80,144,0,0,80,144,0,0,80,144,0,0,80,144,0,0,80,144,0,0,82,144,0,0,86,144,0,0,90,144,0,0,96,144,0,0,96,144,0,0,98,144,0,0,102,144,0,0,102,144,0,0,102,144,0,0,102,144,0,0,102,144,0,0,102,144,0,0,106,144,0,0,108,144,0,0,108,144,0,0,108,144,0,0,112,144,0,0,114,144,0,0,118,144,0,0,118,144,0,0,120,144,0,0,124,144,0,0,128,144,0,0,128,144,0,0,128,144,0,0,128,144,0,0,128,144,0,0,132,144,0,0,132,144,0,0,132,144,0,0,132,144,0,0,136,144,0,0,138,144,0,0,144,144,0,0,144,144,0,0,144,144,0,0,144,144,0,0,146,144,0,0,154,144,0,0,156,144,0,0,156,144,0,0,160,144,0,0,164,144,0,0,170,144,0,0,174,144,0,0,176,144,0,0,180,144,0,0,180,144,0,0,180,144,0,0,180,144,0,0,182,144,0,0,184,144,0,0,188,144,0,0,188,144,0,0,188,144,0,0,188,144,0,0,188,144,0,0,188,144,0,0,188,144,0,0,188,144,0,0,192,144,0,0,192,144,0,0,192,144,0,0,192,144,0,0,192,144,0,0,192,144,0,0,194,144,0,0,194,144,0,0,196,144,0,0,198,144,0,0,198,144,0,0,198,144,0,0,200,144,0,0,200,144,0,0,200,144,0,0,212,144,0,0,214,144,0,0,214,144,0,0,214,144,0,0,214,144,0,0,220,144,0,0,222,144,0,0,222,144,0,0,224,144,0,0,226,144,0,0,226,144,0,0,228,144,0,0,228,144,0,0,228,144,0,0,232,144,0,0,234,144,0,0,236,144,0,0,236,144,0,0,240,144,0,0,240,144,0,0,240,144,0,0,242,144,0,0,252,144,0,0,252,144,0,0,254,144,0,0,254,144,0,0,2,145,0,0,6,145,0,0,6,145,0,0,6,145,0,0,6,145,0,0,8,145,0,0,10,145,0,0,18,145,0,0,18,145,0,0,22,145,0,0,22,145,0,0,22,145,0,0,22,145,0,0,26,145,0,0,26,145,0,0,32,145,0,0,32,145,0,0,38,145,0,0,38,145,0,0,40,145,0,0,40,145,0,0,40,145,0,0,42,145,0,0,50,145,0,0,54,145,0,0,54,145,0,0,54,145,0,0,58,145,0,0,58,145,0,0,62,145,0,0,72,145,0,0,72,145,0,0,72,145,0,0,72,145,0,0,76,145,0,0,78,145,0,0,78,145,0,0,78,145,0,0,80,145,0,0,80,145,0,0,80,145,0,0,84,145,0,0,92,145,0,0,92,145,0,0,96,145,0,0,100,145,0,0,100,145,0,0,100,145,0,0,100,145,0,0,104,145,0,0,104,145,0,0,106,145,0,0,106,145,0,0,106,145,0,0,106,145,0,0,116,145,0,0,116,145,0,0,116,145,0,0,116,145,0,0,124,145,0,0,128,145,0,0,128,145,0,0,128,145,0,0,128,145,0,0,128,145,0,0,130,145,0,0,130,145,0,0,130,145,0,0,130,145,0,0,134,145,0,0,134,145,0,0,134,145,0,0,136,145,0,0,144,145,0,0,144,145,0,0,146,145,0,0,148,145,0,0,148,145,0,0,150,145,0,0,150,145,0,0,150,145,0,0,158,145,0,0,158,145,0,0,158,145,0,0,158,145,0,0,160,145,0,0,166,145,0,0,166,145,0,0,168,145,0,0,168,145,0,0,168,145,0,0,168,145,0,0,170,145,0,0,170,145,0,0,170,145,0,0,170,145,0,0,172,145,0,0,174,145,0,0,174,145,0,0,174,145,0,0,174,145,0,0,178,145,0,0,180,145,0,0,180,145,0,0,184,145,0,0,186,145,0,0,186,145,0,0,190,145,0,0,192,145,0,0,192,145,0,0,192,145,0,0,196,145,0,0,196,145,0,0,196,145,0,0,196,145,0,0,196,145,0,0,200,145,0,0,202,145,0,0,204,145,0,0,204,145,0,0,204,145,0,0,206,145,0,0,206,145,0,0,210,145,0,0,212,145,0,0,212,145,0,0,212,145,0,0,214,145,0,0,214,145,0,0,218,145,0,0,218,145,0,0,220,145,0,0,220,145,0,0,222,145,0,0,224,145,0,0,224,145,0,0,224,145,0,0,224,145,0,0,226,145,0,0,226,145,0,0,232,145,0,0,232,145,0,0,240,145,0,0,244,145,0,0,244,145,0,0,244,145,0,0,254,145,0,0,254,145,0,0,0,146,0,0,0,146,0,0,2,146,0,0,6,146,0,0,8,146,0,0,8,146,0,0,8,146,0,0,8,146,0,0,8,146,0,0,8,146,0,0,12,146,0,0,12,146,0,0,12,146,0,0,12,146,0,0,12,146,0,0,12,146,0,0,16,146,0,0,16,146,0,0,16,146,0,0,16,146,0,0,32,146,0,0,32,146,0,0,42,146,0,0,42,146,0,0,44,146,0,0,44,146,0,0,44,146,0,0,44,146,0,0,44,146,0,0,44,146,0,0,44,146,0,0,46,146,0,0,46,146,0,0,48,146,0,0,52,146,0,0,52,146,0,0,52,146,0,0,52,146,0,0,56,146,0,0,60,146,0,0,60,146,0,0,62,146,0,0,62,146,0,0,62,146,0,0,62,146,0,0,62,146,0,0,66,146,0,0,70,146,0,0,70,146,0,0,72,146,0,0,72,146,0,0,72,146,0,0,72,146,0,0,74,146,0,0,76,146,0,0,80,146,0,0,80,146,0,0,80,146,0,0,82,146,0,0,82,146,0,0,88,146,0,0,88,146,0,0,88,146,0,0,94,146,0,0,94,146,0,0,94,146,0,0,94,146,0,0,96,146,0,0,100,146,0,0,104,146,0,0,104,146,0,0,110,146,0,0,112,146,0,0,114,146,0,0,114,146,0,0,114,146,0,0,118,146,0,0,118,146,0,0,120,146,0,0,120,146,0,0,126,146,0,0,126,146,0,0,132,146,0,0,132,146,0,0,136,146,0,0,138,146,0,0,138,146,0,0,146,146,0,0,146,146,0,0,150,146,0,0,150,146,0,0,154,146,0,0,160,146,0,0,160,146,0,0,160,146,0,0,162,146,0,0,164,146,0,0,174,146,0,0,174,146,0,0,176,146,0,0,180,146,0,0,184,146,0,0,184,146,0,0,190,146,0,0,190,146,0,0,198,146,0,0,202,146,0,0,202,146,0,0,204,146,0,0,204,146,0,0,206,146,0,0,210,146,0,0,212,146,0,0,216,146,0,0,218,146,0,0,218,146,0,0,218,146,0,0,218,146,0,0,220,146,0,0,226,146,0,0,226,146,0,0,226,146,0,0,226,146,0,0,226,146,0,0,226,146,0,0,232,146,0,0,234,146,0,0,234,146,0,0,238,146,0,0,238,146,0,0,238,146,0,0,242,146,0,0,248,146,0,0,252,146,0,0,252,146,0,0,252,146,0,0,254,146,0,0,0,147,0,0,4,147,0,0,4,147,0,0,4,147,0,0,4,147,0,0,8,147,0,0,10,147,0,0,12,147,0,0,14,147,0,0,14,147,0,0,14,147,0,0,14,147,0,0,16,147,0,0,20,147,0,0,26,147,0,0,26,147,0,0,28,147,0,0,34,147,0,0,36,147,0,0,40,147,0,0,40,147,0,0,40,147,0,0,40,147,0,0,40,147,0,0,40,147,0,0,40,147,0,0,44,147,0,0,48,147,0,0,52,147,0,0,54,147,0,0,54,147,0,0,60,147,0,0,60,147,0,0,64,147,0,0,64,147,0,0,64,147,0,0,66,147,0,0,66,147,0,0,72,147,0,0,72,147,0,0,72,147,0,0,78,147,0,0,84,147,0,0,86,147,0,0,90,147,0,0,90,147,0,0,98,147,0,0,98,147,0,0,98,147,0,0,98,147,0,0,98,147,0,0,98,147,0,0,102,147,0,0,104,147,0,0,104,147,0,0,104,147,0,0,104,147,0,0,106,147,0,0,106,147,0,0,106,147,0,0,110,147,0,0,110,147,0,0,110,147,0,0,112,147,0,0,112,147,0,0,112,147,0,0,116,147,0,0,120,147,0,0,120,147,0,0,122,147,0,0,122,147,0,0,124,147,0,0,126,147,0,0,126,147,0,0,140,147,0,0,140,147,0,0,140,147,0,0,142,147,0,0,144,147,0,0,144,147,0,0,144,147,0,0,146,147,0,0,146,147,0,0,148,147,0,0,148,147,0,0,148,147,0,0,148,147,0,0,152,147,0,0,154,147,0,0,156,147,0,0,160,147,0,0,160,147,0,0,160,147,0,0,160,147,0,0,160,147,0,0,160,147,0,0,164,147,0,0,164,147,0,0,164,147,0,0,168,147,0,0,170,147,0,0,172,147,0,0,180,147,0,0,186,147,0,0,186,147,0,0,188,147,0,0,188,147,0,0,192,147,0,0,192,147,0,0,200,147,0,0,200,147,0,0,200,147,0,0,204,147,0,0,204,147,0,0,208,147,0,0,214,147,0,0,214,147,0,0,216,147,0,0,222,147,0,0,222,147,0,0,222,147,0,0,224,147,0,0,224,147,0,0,224,147,0,0,224,147,0,0,224,147,0,0,224,147,0,0,224,147,0,0,226,147,0,0,226,147,0,0,226,147,0,0,226,147,0,0,226,147,0,0,228,147,0,0,228,147,0,0,228,147,0,0,228,147,0,0,236,147,0,0,238,147,0,0,238,147,0,0,242,147,0,0,244,147,0,0,244,147,0,0,244,147,0,0,244,147,0,0,248,147,0,0,248,147,0,0,254,147,0,0,254,147,0,0,254,147,0,0,254,147,0,0,4,148,0,0,4,148,0,0,8,148,0,0,8,148,0,0,10,148,0,0,18,148,0,0,26,148,0,0,26,148,0,0,28,148,0,0,28,148,0,0,32,148,0,0,32,148,0,0,36,148,0,0,38,148,0,0,42,148,0,0,50,148,0,0,52,148,0,0,52,148,0,0,56,148,0,0,56,148,0,0,60,148,0,0,64,148,0,0,68,148,0,0,68,148,0,0,70,148,0,0,70,148,0,0,72,148,0,0,76,148,0,0,78,148,0,0,78,148,0,0,80,148,0,0,80,148,0,0,86,148,0,0,86,148,0,0,86,148,0,0,92,148,0,0,94,148,0,0,94,148,0,0,94,148,0,0,94,148,0,0,98,148,0,0,100,148,0,0,106,148,0,0,112,148,0,0,112,148,0,0,114,148,0,0,114,148,0,0,114,148,0,0,114,148,0,0,122,148,0,0,122,148,0,0,122,148,0,0,124,148,0,0,124,148,0,0,130,148,0,0,130,148,0,0,130,148,0,0,136,148,0,0,140,148,0,0,140,148,0,0,142,148,0,0,144,148,0,0,144,148,0,0,148,148,0,0,154,148,0,0,160,148,0,0,160,148,0,0,166,148,0,0,170,148,0,0,170,148,0,0,170,148,0,0,172,148,0,0,172,148,0,0,176,148,0,0,176,148,0,0,176,148,0,0,176,148,0,0,178,148,0,0,180,148,0,0,180,148,0,0,182,148,0,0,186,148,0,0,186,148,0,0,190,148,0,0,190,148,0,0,192,148,0,0,194,148,0,0,194,148,0,0,194,148,0,0,194,148,0,0,196,148,0,0,198,148,0,0,202,148,0,0,206,148,0,0,208,148,0,0,208,148,0,0,210,148,0,0,210,148,0,0,212,148,0,0,212,148,0,0,216,148,0,0,218,148,0,0,218,148,0,0,224,148,0,0,226,148,0,0,226,148,0,0,234,148,0,0,234,148,0,0,236,148,0,0,242,148,0,0,242,148,0,0,242,148,0,0,242,148,0,0,248,148,0,0,248,148,0,0,248,148,0,0,248,148,0,0,248,148,0,0,250,148,0,0,252,148,0,0,2,149,0,0,6,149,0,0,8,149,0,0,8,149,0,0,8,149,0,0,8,149,0,0,10,149,0,0,12,149,0,0,12,149,0,0,12,149,0,0,12,149,0,0,12,149,0,0,12,149,0,0,16,149,0,0,16,149,0,0,16,149,0,0,16,149,0,0,28,149,0,0,30,149,0,0,30,149,0,0,30,149,0,0,30,149,0,0,30,149,0,0,32,149,0,0,32,149,0,0,32,149,0,0,32,149,0,0,38,149,0,0,38,149,0,0,40,149,0,0,40,149,0,0,44,149,0,0,50,149,0,0,50,149,0,0,50,149,0,0,58,149,0,0,58,149,0,0,58,149,0,0,62,149,0,0,62,149,0,0,62,149,0,0,62,149,0,0,62,149,0,0,64,149,0,0,66,149,0,0,66,149,0,0,70,149,0,0,80,149,0,0,80,149,0,0,80,149,0,0,86,149,0,0,86,149,0,0,86,149,0,0,88,149,0,0,88,149,0,0,88,149,0,0,88,149,0,0,88,149,0,0,90,149,0,0,92,149,0,0,92,149,0,0,92,149,0,0,102,149,0,0,106,149,0,0,106,149,0,0,106,149,0,0,106,149,0,0,106,149,0,0,112,149,0,0,112,149,0,0,118,149,0,0,118,149,0,0,124,149,0,0,124,149,0,0,126,149,0,0,126,149,0,0,126,149,0,0,126,149,0,0,132,149,0,0,134,149,0,0,134,149,0,0,134,149,0,0,136,149,0,0,138,149,0,0,140,149,0,0,140,149,0,0,142,149,0,0,144,149,0,0,144,149,0,0,148,149,0,0,148,149,0,0,152,149,0,0,152,149,0,0,154,149,0,0,154,149,0,0,158,149,0,0,162,149,0,0,162,149,0,0,162,149,0,0,162,149,0,0,162,149,0,0,164,149,0,0,174,149,0,0,176,149,0,0,178,149,0,0,180,149,0,0,180,149,0,0,190,149,0,0,194,149,0,0,200,149,0,0,206,149,0,0,206,149,0,0,212,149,0,0,214,149,0,0,216,149,0,0,218,149,0,0,218,149,0,0,218,149,0,0,226,149,0,0,230,149,0,0,232,149,0,0,232,149,0,0,234,149,0,0,236,149,0,0,236,149,0,0,238,149,0,0,238,149,0,0,242,149,0,0,248,149,0,0,248,149,0,0,248,149,0,0,252,149,0,0,254,149,0,0,0,150,0,0,0,150,0,0,4,150,0,0,4,150,0,0,8,150,0,0,8,150,0,0,8,150,0,0,10,150,0,0,12,150,0,0,12,150,0,0,12,150,0,0,16,150,0,0,18,150,0,0,18,150,0,0,24,150,0,0,24,150,0,0,26,150,0,0,28,150,0,0,28,150,0,0,30,150,0,0,30,150,0,0,30,150,0,0,32,150,0,0,32,150,0,0,32,150,0,0,32,150,0,0,40,150,0,0,48,150,0,0,54,150,0,0,54,150,0,0,58,150,0,0,58,150,0,0,60,150,0,0,66,150,0,0,66,150,0,0,66,150,0,0,68,150,0,0,68,150,0,0,68,150,0,0,82,150,0,0,82,150,0,0,82,150,0,0,82,150,0,0,82,150,0,0,82,150,0,0,82,150,0,0,82,150,0,0,90,150,0,0,92,150,0,0,92,150,0,0,92,150,0,0,96,150,0,0,100,150,0,0,104,150,0,0,108,150,0,0,110,150,0,0,112,150,0,0,114,150,0,0,118,150,0,0,118,150,0,0,120,150,0,0,120,150,0,0,122,150,0,0,122,150,0,0,122,150,0,0,122,150,0,0,126,150,0,0,130,150,0,0,132,150,0,0,132,150,0,0,132,150,0,0,132,150,0,0,132,150,0,0,132,150,0,0,134,150,0,0,134,150,0,0,136,150,0,0,138,150,0,0,138,150,0,0,140,150,0,0,140,150,0,0,142,150,0,0,144,150,0,0,148,150,0,0,148,150,0,0,148,150,0,0,156,150,0,0,158,150,0,0,158,150,0,0,160,150,0,0,160,150,0,0,166,150,0,0,166,150,0,0,166,150,0,0,174,150,0,0,174,150,0,0,174,150,0,0,174,150,0,0,176,150,0,0,178,150,0,0,178,150,0,0,180,150,0,0,180,150,0,0,180,150,0,0,180,150,0,0,180,150,0,0,180,150,0,0,182,150,0,0,188,150,0,0,188,150,0,0,192,150,0,0,192,150,0,0,192,150,0,0,192,150,0,0,198,150,0,0,198,150,0,0,198,150,0,0,212,150,0,0,218,150,0,0,220,150,0,0,220,150,0,0,222,150,0,0,222,150,0,0,222,150,0,0,222,150,0,0,224,150,0,0,224,150,0,0,224,150,0,0,224,150,0,0,224,150,0,0,224,150,0,0,224,150,0,0,224,150,0,0,224,150,0,0,224,150,0,0,228,150,0,0,230,150,0,0,230,150,0,0,234,150,0,0,236,150,0,0,238,150,0,0,244,150,0,0,246,150,0,0,252,150,0,0,2,151,0,0,2,151,0,0,2,151,0,0,2,151,0,0,4,151,0,0,8,151,0,0,16,151,0,0,18,151,0,0,20,151,0,0,24,151,0,0,26,151,0,0,26,151,0,0,30,151,0,0,32,151,0,0,34,151,0,0,34,151,0,0,34,151,0,0,34,151,0,0,34,151,0,0,34,151,0,0,36,151,0,0,38,151,0,0,44,151,0,0,44,151,0,0,44,151,0,0,44,151,0,0,46,151,0,0,46,151,0,0,52,151,0,0,52,151,0,0,58,151,0,0,58,151,0,0,58,151,0,0,58,151,0,0,58,151,0,0,58,151,0,0,58,151,0,0,62,151,0,0,68,151,0,0,68,151,0,0,68,151,0,0,68,151,0,0,68,151,0,0,68,151,0,0,68,151,0,0,74,151,0,0,74,151,0,0,78,151,0,0,78,151,0,0,86,151,0,0,88,151,0,0,88,151,0,0,90,151,0,0,90,151,0,0,96,151,0,0,98,151,0,0,102,151,0,0,110,151,0,0,110,151,0,0,112,151,0,0,112,151,0,0,112,151,0,0,112,151,0,0,116,151,0,0,116,151,0,0,116,151,0,0,116,151,0,0,122,151,0,0,126,151,0,0,126,151,0,0,126,151,0,0,126,151,0,0,126,151,0,0,126,151,0,0,134,151,0,0,138,151,0,0,138,151,0,0,140,151,0,0,140,151,0,0,140,151,0,0,140,151,0,0,140,151,0,0,140,151,0,0,142,151,0,0,142,151,0,0,142,151,0,0,142,151,0,0,142,151,0,0,144,151,0,0,146,151,0,0,146,151,0,0,146,151,0,0,146,151,0,0,146,151,0,0,146,151,0,0,146,151,0,0,146,151,0,0,148,151,0,0,152,151,0,0,152,151,0,0,152,151,0,0,152,151,0,0,152,151,0,0,154,151,0,0,158,151,0,0,168,151,0,0,168,151,0,0,172,151,0,0,176,151,0,0,176,151,0,0,178,151,0,0,186,151,0,0,190,151,0,0,192,151,0,0,200,151,0,0,200,151,0,0,204,151,0,0,208,151,0,0,208,151,0,0,208,151,0,0,208,151,0,0,208,151,0,0,210,151,0,0,214,151,0,0,218,151,0,0,218,151,0,0,218,151,0,0,218,151,0,0,218,151,0,0,220,151,0,0,220,151,0,0,220,151,0,0,220,151,0,0,220,151,0,0,220,151,0,0,222,151,0,0,222,151,0,0,224,151,0,0,224,151,0,0,224,151,0,0,226,151,0,0,230,151,0,0,234,151,0,0,238,151,0,0,238,151,0,0,238,151,0,0,240,151,0,0,240,151,0,0,240,151,0,0,244,151,0,0,246,151,0,0,246,151,0,0,246,151,0,0,246,151,0,0,248,151,0,0,248,151,0,0,250,151,0,0,250,151,0,0,250,151,0,0,250,151,0,0,250,151,0,0,254,151,0,0,0,152,0,0,2,152,0,0,8,152,0,0,8,152,0,0,14,152,0,0,16,152,0,0,20,152,0,0,30,152,0,0,32,152,0,0,32,152,0,0,38,152,0,0,50,152,0,0,56,152,0,0,60,152,0,0,60,152,0,0,66,152,0,0,70,152,0,0,72,152,0,0,74,152,0,0,78,152,0,0,80,152,0,0,80,152,0,0,80,152,0,0,80,152,0,0,80,152,0,0,86,152,0,0,88,152,0,0,88,152,0,0,90,152,0,0,90,152,0,0,94,152,0,0,94,152,0,0,94,152,0,0,94,152,0,0,94,152,0,0,94,152,0,0,96,152,0,0,96,152,0,0,98,152,0,0,100,152,0,0,112,152,0,0,112,152,0,0,118,152,0,0,120,152,0,0,120,152,0,0,120,152,0,0,120,152,0,0,120,152,0,0,122,152,0,0,122,152,0,0,122,152,0,0,124,152,0,0,126,152,0,0,130,152,0,0,132,152,0,0,132,152,0,0,134,152,0,0,134,152,0,0,136,152,0,0,138,152,0,0,140,152,0,0,140,152,0,0,142,152,0,0,146,152,0,0,146,152,0,0,146,152,0,0,146,152,0,0,146,152,0,0,156,152,0,0,156,152,0,0,158,152,0,0,158,152,0,0,158,152,0,0,158,152,0,0,160,152,0,0,166,152,0,0,166,152,0,0,166,152,0,0,166,152,0,0,174,152,0,0,178,152,0,0,186,152,0,0,186,152,0,0,186,152,0,0,190,152,0,0,192,152,0,0,192,152,0,0,194,152,0,0,194,152,0,0,196,152,0,0,198,152,0,0,198,152,0,0,202,152,0,0,202,152,0,0,208,152,0,0,210,152,0,0,212,152,0,0,216,152,0,0,216,152,0,0,216,152,0,0,220,152,0,0,220,152,0,0,222,152,0,0,224,152,0,0,228,152,0,0,232,152,0,0,236,152,0,0,236,152,0,0,236,152,0,0,236,152,0,0,236,152,0,0,236,152,0,0,240,152,0,0,242,152,0,0,242,152,0,0,242,152,0,0,242,152,0,0,242,152,0,0,242,152,0,0,246,152,0,0,246,152,0,0,246,152,0,0,246,152,0,0,246,152,0,0,250,152,0,0,250,152,0,0,252,152,0,0,0,153,0,0,4,153,0,0,4,153,0,0,8,153,0,0,14,153,0,0,16,153,0,0,16,153,0,0,18,153,0,0,26,153,0,0,28,153,0,0,28,153,0,0,28,153,0,0,32,153,0,0,32,153,0,0,36,153,0,0,36,153,0,0,36,153,0,0,38,153,0,0,38,153,0,0,38,153,0,0,44,153,0,0,44,153,0,0,52,153,0,0,54,153,0,0,54,153,0,0,62,153,0,0,62,153,0,0,68,153,0,0,74,153,0,0,76,153,0,0,76,153,0,0,84,153,0,0,86,153,0,0,86,153,0,0,86,153,0,0,86,153,0,0,86,153,0,0,86,153,0,0,86,153,0,0,86,153,0,0,90,153,0,0,94,153,0,0,96,153,0,0,96,153,0,0,96,153,0,0,98,153,0,0,98,153,0,0,98,153,0,0,98,153,0,0,98,153,0,0,100,153,0,0,100,153,0,0,102,153,0,0,102,153,0,0,108,153,0,0,108,153,0,0,110,153,0,0,114,153,0,0,114,153,0,0,126,153,0,0,134,153,0,0,136,153,0,0,136,153,0,0,136,153,0,0,142,153,0,0,144,153,0,0,144,153,0,0,146,153,0,0,148,153,0,0,152,153,0,0,152,153,0,0,154,153,0,0,154,153,0,0,160,153,0,0,160,153,0,0,168,153,0,0,170,153,0,0,170,153,0,0,170,153,0,0,178,153,0,0,178,153,0,0,178,153,0,0,178,153,0,0,178,153,0,0,180,153,0,0,180,153,0,0,182,153,0,0,184,153,0,0,184,153,0,0,184,153,0,0,186,153,0,0,190,153,0,0,192,153,0,0,192,153,0,0,194,153,0,0,194,153,0,0,204,153,0,0,204,153,0,0,206,153,0,0,208,153,0,0,208,153,0,0,214,153,0,0,216,153,0,0,220,153,0,0,220,153,0,0,220,153,0,0,220,153,0,0,222,153,0,0,224,153,0,0,224,153,0,0,230,153,0,0,236,153,0,0,238,153,0,0,238,153,0,0,238,153,0,0,240,153,0,0,240,153,0,0,240,153,0,0,240,153,0,0,242,153,0,0,242,153,0,0,246,153,0,0,246,153,0,0,248,153,0,0,254,153,0,0,254,153,0,0,254,153,0,0,0,154,0,0,0,154,0,0,0,154,0,0,2,154,0,0,2,154,0,0,2,154,0,0,2,154,0,0,2,154,0,0,2,154,0,0,6,154,0,0,6,154,0,0,6,154,0,0,6,154,0,0,6,154,0,0,6,154,0,0,6,154,0,0,6,154,0,0,6,154,0,0,12,154,0,0,12,154,0,0,14,154,0,0,22,154,0,0,22,154,0,0,26,154,0,0,26,154,0,0,32,154,0,0,32,154,0,0,34,154,0,0,36,154,0,0,36,154,0,0,36,154,0,0,36,154,0,0,36,154,0,0,36,154,0,0,38,154,0,0,44,154,0,0,48,154,0,0,48,154,0,0,50,154,0,0,52,154,0,0,54,154,0,0,56,154,0,0,56,154,0,0,60,154,0,0,60,154,0,0,60,154,0,0,64,154,0,0,64,154,0,0,66,154,0,0,66,154,0,0,66,154,0,0,66,154,0,0,66,154,0,0,68,154,0,0,68,154,0,0,68,154,0,0,72,154,0,0,72,154,0,0,74,154,0,0,78,154,0,0,80,154,0,0,84,154,0,0,90,154,0,0,94,154,0,0,100,154,0,0,100,154,0,0,100,154,0,0,102,154,0,0,108,154,0,0,114,154,0,0,116,154,0,0,116,154,0,0,116,154,0,0,118,154,0,0,118,154,0,0,120,154,0,0,122,154,0,0,122,154,0,0,126,154,0,0,126,154,0,0,128,154,0,0,128,154,0,0,128,154,0,0,128,154,0,0,134,154,0,0,134,154,0,0,134,154,0,0,134,154,0,0,134,154,0,0,134,154,0,0,134,154,0,0,136,154,0,0,136,154,0,0,136,154,0,0,138,154,0,0,138,154,0,0,140,154,0,0,140,154,0,0,144,154,0,0,148,154,0,0,148,154,0,0,148,154,0,0,152,154,0,0,152,154,0,0,156,154,0,0,156,154,0,0,160,154,0,0,162,154,0,0,162,154,0,0,162,154,0,0,166,154,0,0,172,154,0,0,174,154,0,0,174,154,0,0,186,154,0,0,186,154,0,0,188,154,0,0,188,154,0,0,190,154,0,0,200,154,0,0,200,154,0,0,202,154,0,0,206,154,0,0,208,154,0,0,208,154,0,0,212,154,0,0,212,154,0,0,212,154,0,0,214,154,0,0,214,154,0,0,214,154,0,0,214,154,0,0,220,154,0,0,222,154,0,0,224,154,0,0,228,154,0,0,234,154,0,0,234,154,0,0,236,154,0,0,236,154,0,0,238,154,0,0,238,154,0,0,238,154,0,0,242,154,0,0,244,154,0,0,244,154,0,0,244,154,0,0,244,154,0,0,244,154,0,0,244,154,0,0,250,154,0,0,252,154,0,0,6,155,0,0,6,155,0,0,8,155,0,0,8,155,0,0,12,155,0,0,12,155,0,0,12,155,0,0,12,155,0,0,14,155,0,0,16,155,0,0,16,155,0,0,16,155,0,0,16,155,0,0,16,155,0,0,16,155,0,0,16,155,0,0,16,155,0,0,16,155,0,0,16,155,0,0,18,155,0,0,26,155,0,0,26,155,0,0,28,155,0,0,28,155,0,0,30,155,0,0,30,155,0,0,32,155,0,0,34,155,0,0,34,155,0,0,34,155,0,0,34,155,0,0,34,155,0,0,34,155,0,0,34,155,0,0,34,155,0,0,36,155,0,0,38,155,0,0,40,155,0,0,42,155,0,0,48,155,0,0,48,155,0,0,50,155,0,0,52,155,0,0,52,155,0,0,52,155,0,0,52,155,0,0,60,155,0,0,62,155,0,0,62,155,0,0,62,155,0,0,62,155,0,0,62,155,0,0,62,155,0,0,66,155,0,0,74,155,0,0,76,155,0,0,80,155,0,0,82,155,0,0,88,155,0,0,88,155,0,0,92,155,0,0,92,155,0,0,92,155,0,0,92,155,0,0,92,155,0,0,98,155,0,0,98,155,0,0,98,155,0,0,98,155,0,0,98,155,0,0,100,155,0,0,100,155,0,0,100,155,0,0,102,155,0,0,102,155,0,0,106,155,0,0,106,155,0,0,112,155,0,0,118,155,0,0,126,155,0,0,126,155,0,0,126,155,0,0,126,155,0,0,126,155,0,0,126,155,0,0,130,155,0,0,138,155,0,0,142,155,0,0,144,155,0,0,148,155,0,0,150,155,0,0,150,155,0,0,150,155,0,0,152,155,0,0,154,155,0,0,154,155,0,0,154,155,0,0,154,155,0,0,156,155,0,0,162,155,0,0,162,155,0,0,164,155,0,0,164,155,0,0,168,155,0,0,168,155,0,0,168,155,0,0,168,155,0,0,170,155,0,0,176,155,0,0,180,155,0,0,182,155,0,0,184,155,0,0,186,155,0,0,186,155,0,0,186,155,0,0,186,155,0,0,188,155,0,0,188,155,0,0,192,155,0,0,194,155,0,0,196,155,0,0,198,155,0,0,204,155,0,0,204,155,0,0,204,155,0,0,210,155,0,0,210,155,0,0,210,155,0,0,212,155,0,0,214,155,0,0,218,155,0,0,218,155,0,0,220,155,0,0,222,155,0,0,222,155,0,0,226,155,0,0,226,155,0,0,226,155,0,0,234,155,0,0,240,155,0,0,240,155,0,0,244,155,0,0,244,155,0,0,244,155,0,0,246,155,0,0,246,155,0,0,248,155,0,0,250,155,0,0,252,155,0,0,252,155,0,0,252,155,0,0,0,156,0,0,2,156,0,0,2,156,0,0,2,156,0,0,2,156,0,0,2,156,0,0,2,156,0,0,4,156,0,0,4,156,0,0,16,156,0,0,24,156,0,0,24,156,0,0,34,156,0,0,36,156,0,0,42,156,0,0,46,156,0,0,46,156,0,0,48,156,0,0,50,156,0,0,50,156,0,0,50,156,0,0,50,156,0,0,50,156,0,0,50,156,0,0,50,156,0,0,50,156,0,0,54,156,0,0,54,156,0,0,54,156,0,0,58,156,0,0,62,156,0,0,64,156,0,0,64,156,0,0,78,156,0,0,78,156,0,0,84,156,0,0,84,156,0,0,84,156,0,0,84,156,0,0,84,156,0,0,88,156,0,0,88,156,0,0,88,156,0,0,88,156,0,0,88,156,0,0,88,156,0,0,88,156,0,0,96,156,0,0,96,156,0,0,98,156,0,0,106,156,0,0,110,156,0,0,110,156,0,0,110,156,0,0,112,156,0,0,112,156,0,0,114,156,0,0,116,156,0,0,116,156,0,0,116,156,0,0,118,156,0,0,120,156,0,0,120,156,0,0,122,156,0,0,124,156,0,0,128,156,0,0,132,156,0,0,146,156,0,0,146,156,0,0,146,156,0,0,148,156,0,0,150,156,0,0,150,156,0,0,154,156,0,0,156,156,0,0,156,156,0,0,156,156,0,0,158,156,0,0,158,156,0,0,158,156,0,0,158,156,0,0,158,156,0,0,158,156,0,0,160,156,0,0,162,156,0,0,162,156,0,0,162,156,0,0,164,156,0,0,168,156,0,0,180,156,0,0,180,156,0,0,180,156,0,0,190,156,0,0,192,156,0,0,194,156,0,0,194,156,0,0,196,156,0,0,196,156,0,0,200,156,0,0,204,156,0,0,204,156,0,0,204,156,0,0,204,156,0,0,210,156,0,0,212,156,0,0,212,156,0,0,212,156,0,0,212,156,0,0,212,156,0,0,212,156,0,0,214,156,0,0,214,156,0,0,226,156,0,0,226,156,0,0,228,156,0,0,234,156,0,0,236,156,0,0,240,156,0,0,240,156,0,0,240,156,0,0,244,156,0,0,246,156,0,0,246,156,0,0,250,156,0,0,252,156,0,0,0,157,0,0,0,157,0,0,0,157,0,0,0,157,0,0,0,157,0,0,0,157,0,0,4,157,0,0,6,157,0,0,8,157,0,0,8,157,0,0,8,157,0,0,12,157,0,0,16,157,0,0,20,157,0,0,20,157,0,0,20,157,0,0,20,157,0,0,22,157,0,0,24,157,0,0,24,157,0,0,24,157,0,0,24,157,0,0,24,157,0,0,26,157,0,0,32,157,0,0,34,157,0,0,42,157,0,0,50,157,0,0,52,157,0,0,52,157,0,0,56,157,0,0,56,157,0,0,68,157,0,0,68,157,0,0,68,157,0,0,76,157,0,0,84,157,0,0,86,157,0,0,88,157,0,0,88,157,0,0,94,157,0,0,94,157,0,0,106,157,0,0,106,157,0,0,110,157,0,0,110,157,0,0,110,157,0,0,110,157,0,0,112,157,0,0,112,157,0,0,114,157,0,0,114,157,0,0,116,157,0,0,122,157,0,0,130,157,0,0,130,157,0,0,134,157,0,0,134,157,0,0,134,157,0,0,136,157,0,0,136,157,0,0,138,157,0,0,146,157,0,0,146,157,0,0,148,157,0,0,148,157,0,0,148,157,0,0,160,157,0,0,160,157,0,0,160,157,0,0,168,157,0,0,170,157,0,0,170,157,0,0,170,157,0,0,170,157,0,0,172,157,0,0,172,157,0,0,172,157,0,0,172,157,0,0,172,157,0,0,172,157,0,0,180,157,0,0,188,157,0,0,190,157,0,0,194,157,0,0,194,157,0,0,194,157,0,0,194,157,0,0,196,157,0,0,196,157,0,0,198,157,0,0,198,157,0,0,208,157,0,0,210,157,0,0,212,157,0,0,212,157,0,0,214,157,0,0,214,157,0,0,214,157,0,0,214,157,0,0,216,157,0,0,216,157,0,0,222,157,0,0,222,157,0,0,226,157,0,0,230,157,0,0,234,157,0,0,238,157,0,0,238,157,0,0,238,157,0,0,240,157,0,0,244,157,0,0,244,157,0,0,244,157,0,0,244,157,0,0,244,157,0,0,244,157,0,0,246,157,0,0,246,157,0,0,246,157,0,0,252,157,0,0,252,157,0,0,252,157,0,0,254,157,0,0,254,157,0,0,254,157,0,0,0,158,0,0,4,158,0,0,4,158,0,0,4,158,0,0,6,158,0,0,6,158,0,0,6,158,0,0,12,158,0,0,12,158,0,0,12,158,0,0,14,158,0,0,18,158,0,0,18,158,0,0,18,158,0,0,20,158,0,0,30,158,0,0,30,158,0,0,30,158,0,0,30,158,0,0,32,158,0,0,32,158,0,0,32,158,0,0,32,158,0,0,40,158,0,0,40,158,0,0,40,158,0,0,40,158,0,0,40,158,0,0,40,158,0,0,42,158,0,0,44,158,0,0,44,158,0,0,48,158,0,0,48,158,0,0,48,158,0,0,48,158,0,0,48,158,0,0,54,158,0,0,60,158,0,0,66,158,0,0,74,158,0,0,76,158,0,0,76,158,0,0,80,158,0,0,82,158,0,0,84,158,0,0,84,158,0,0,84,158,0,0,84,158,0,0,86,158,0,0,86,158,0,0,86,158,0,0,86,158,0,0,90,158,0,0,90,158,0,0,96,158,0,0,102,158,0,0,106,158,0,0,106,158,0,0,106,158,0,0,108,158,0,0,110,158,0,0,112,158,0,0,118,158,0,0,118,158,0,0,118,158,0,0,120,158,0,0,120,158,0,0,122,158,0,0,122,158,0,0,122,158,0,0,122,158,0,0,124,158,0,0,124,158,0,0,124,158,0,0,124,158,0,0,124,158,0,0,128,158,0,0,134,158,0,0,144,158,0,0,144,158,0,0,146,158,0,0,146,158,0,0,146,158,0,0,148,158,0,0,148,158,0,0,148,158,0,0,158,158,0,0,158,158,0,0,158,158,0,0,160,158,0,0,160,158,0,0,160,158,0,0,160,158,0,0,160,158,0,0,162,158,0,0,162,158,0,0,162,158,0,0,162,158,0,0,168,158,0,0,168,158,0,0,168,158,0,0,174,158,0,0,176,158,0,0,176,158,0,0,176,158,0,0,176,158,0,0,176,158,0,0,176,158,0,0,180,158,0,0,182,158,0,0,182,158,0,0,192,158,0,0,194,158,0,0,194,158,0,0,194,158,0,0,204,158,0,0,204,158,0,0,204,158,0,0,204,158,0,0,208,158,0,0,208,158,0,0,210,158,0,0,212,158,0,0,212,158,0,0,212,158,0,0,212,158,0,0,212,158,0,0,212,158,0,0,214,158,0,0,214,158,0,0,216,158,0,0,216,158,0,0,216,158,0,0,216,158,0,0,216,158,0,0,216,158,0,0,218,158,0,0,218,158,0,0,224,158,0,0,230,158,0,0,230,158,0,0,230,158,0,0,230,158,0,0,234,158,0,0,234,158,0,0,234,158,0,0,234,158,0,0,234,158,0,0,234,158,0,0,234,158,0,0,236,158,0,0,236,158,0,0,238,158,0,0,238,158,0,0,238,158,0,0,238,158,0,0,248,158,0,0,248,158,0,0,252,158,0,0,252,158,0,0,252,158,0,0,254,158,0,0,254,158,0,0,254,158,0,0,254,158,0,0,2,159,0,0,2,159,0,0,2,159,0,0,2,159,0,0,6,159,0,0,10,159,0,0,12,159,0,0,12,159,0,0,12,159,0,0,12,159,0,0,22,159,0,0,22,159,0,0,24,159,0,0,28,159,0,0,28,159,0,0,30,159,0,0,30,159,0,0,30,159,0,0,30,159,0,0,30,159,0,0,30,159,0,0,32,159,0,0,38,159,0,0,38,159,0,0,38,159,0,0,38,159,0,0,40,159,0,0,40,159,0,0,42,159,0,0,42,159,0,0,42,159,0,0,42,159,0,0,42,159,0,0,42,159,0,0,42,159,0,0,44,159,0,0,46,159,0,0,46,159,0,0,46,159,0,0,46,159,0,0,46,159,0,0,50,159,0,0,50,159,0,0,52,159,0,0,52,159,0,0,52,159,0,0,54,159,0,0,54,159,0,0,54,159,0,0,66,159,0,0,66,159,0,0,66,159,0,0,66,159,0,0,66,159,0,0,68,159,0,0,68,159,0,0,68,159,0,0,68,159,0,0,68,159,0,0,70,159,0,0,70,159,0,0,70,159,0,0,70,159,0,0,70,159,0,0,74,159,0,0,74,159,0,0,74,159,0,0,78,159,0,0,78,159,0,0,78,159,0,0,78,159,0,0,78,159,0,0,78,159,0,0,84,159,0,0,84,159,0,0,88,159,0,0,88,159,0,0,88,159,0,0,88,159,0,0,88,159,0,0,94,159,0,0,94,159,0,0,94,159,0,0,94,159,0,0,96,159,0,0,100,159,0,0,100,159,0,0,100,159,0,0,100,159,0,0,106,159,0,0,108,159,0,0,118,159,0,0,120,159,0,0,120,159,0,0,122,159,0,0,122,159,0,0,122,159,0,0,122,159,0,0,122,159,0,0,126,159,0,0,126,159,0,0,126,159,0,0,126,159,0,0,126,159,0,0,126,159,0,0,126,159,0,0,126,159,0,0,126,159,0,0,126,159,0,0,128,159,0,0,130,159,0,0,130,159,0,0,132,159,0,0,134,159,0,0,134,159,0,0,136,159,0,0,136,159,0,0,138,159,0,0,146,159,0,0,148,159,0,0,154,159,0,0,160,159,0,0,162,159,0,0,162,159,0,0,162,159,0,0,168,159,0,0,172,159,0,0,176,159,0,0,180,159,0,0,184,159,0,0,188,159,0,0,188,159,0,0,188,159,0,0,188,159,0,0,188,159,0,0,194,159,0,0,196,159,0,0,200,159,0,0,206,159,0,0,208,159,0,0,208,159,0,0,208,159,0,0,208,159,0,0,214,159,0,0,214,159,0,0,214,159,0,0,218,159,0,0,220,159,0,0,224,159,0,0,226,159,0,0,230,159,0,0,230,159,0,0,230,159,0,0,230,159,0,0,230,159,0,0,230,159,0,0,230,159,0,0,230,159,0,0,232,159,0,0,238,159,0,0,244,159,0,0,248,159,0,0,252,159,0,0,4,160,0,0,6,160,0,0,8,160,0,0,8,160,0,0,12,160,0,0,18,160,0,0,18,160,0,0,18,160,0,0,24,160,0,0,28,160,0,0,28,160,0,0,32,160,0,0,32,160,0,0,40,160,0,0,40,160,0,0,42,160,0,0,42,160,0,0,44,160,0,0,48,160,0,0,52,160,0,0,52,160,0,0,52,160,0,0,56,160,0,0,56,160,0,0,56,160,0,0,66,160,0,0,66,160,0,0,66,160,0,0,66,160,0,0,66,160,0,0,70,160,0,0,74,160,0,0,74,160,0,0,82,160,0,0,86,160,0,0,90,160,0,0,92,160,0,0,92,160,0,0,96,160,0,0,96,160,0,0,98,160,0,0,100,160,0,0,100,160,0,0,100,160,0,0,100,160,0,0,112,160,0,0,112,160,0,0,116,160,0,0,122,160,0,0,124,160,0,0,124,160,0,0,124,160,0,0,132,160,0,0,142,160,0,0,144,160,0,0,146,160,0,0,146,160,0,0,146,160,0,0,148,160,0,0,150,160,0,0,150,160,0,0,160,160,0,0,160,160,0,0,166,160,0,0,166,160,0,0,170,160,0,0,170,160,0,0,172,160,0,0,176,160,0,0,176,160,0,0,176,160,0,0,180,160,0,0,180,160,0,0,180,160,0,0,184,160,0,0,188,160,0,0,188,160,0,0,188,160,0,0,192,160,0,0,194,160,0,0,194,160,0,0,196,160,0,0,196,160,0,0,196,160,0,0,198,160,0,0,198,160,0,0,198,160,0,0,200,160,0,0,200,160,0,0,200,160,0,0,202,160,0,0,202,160,0,0,202,160,0,0,202,160,0,0,206,160,0,0,206,160,0,0,208,160,0,0,214,160,0,0,214,160,0,0,214,160,0,0,216,160,0,0,216,160,0,0,224,160,0,0,224,160,0,0,224,160,0,0,224,160,0,0,226,160,0,0,226,160,0,0,228,160,0,0,228,160,0,0,228,160,0,0,230,160,0,0,236,160,0,0,236,160,0,0,248,160,0,0,252,160,0,0,254,160,0,0,2,161,0,0,4,161,0,0,4,161,0,0,4,161,0,0,4,161,0,0,4,161,0,0,4,161,0,0,4,161,0,0,6,161,0,0,6,161,0,0,6,161,0,0,6,161,0,0,8,161,0,0,16,161,0,0,20,161,0,0,24,161,0,0,24,161,0,0,24,161,0,0,24,161,0,0,32,161,0,0,34,161,0,0,36,161,0,0,36,161,0,0,36,161,0,0,36,161,0,0,36,161,0,0,36,161,0,0,36,161,0,0,38,161,0,0,42,161,0,0,48,161,0,0,52,161,0,0,54,161,0,0,58,161,0,0,58,161,0,0,66,161,0,0,66,161,0,0,72,161,0,0,72,161,0,0,78,161,0,0,90,161,0,0,90,161,0,0,90,161,0,0,90,161,0,0,90,161,0,0,94,161,0,0,98,161,0,0,100,161,0,0,104,161,0,0,104,161,0,0,110,161,0,0,110,161,0,0,110,161,0,0,110,161,0,0,118,161,0,0,118,161,0,0,120,161,0,0,120,161,0,0,128,161,0,0,130,161,0,0,136,161,0,0,138,161,0,0,142,161,0,0,144,161,0,0,144,161,0,0,144,161,0,0,144,161,0,0,144,161,0,0,158,161,0,0,160,161,0,0,160,161,0,0,164,161,0,0,168,161,0,0,174,161,0,0,178,161,0,0,184,161,0,0,184,161,0,0,186,161,0,0,186,161,0,0,186,161,0,0,186,161,0,0,188,161,0,0,188,161,0,0,190,161,0,0,190,161,0,0,190,161,0,0,190,161,0,0,190,161,0,0,190,161,0,0,192,161,0,0,192,161,0,0,192,161,0,0,192,161,0,0,194,161,0,0,194,161,0,0,196,161,0,0,196,161,0,0,198,161,0,0,198,161,0,0,202,161,0,0,206,161,0,0,214,161,0,0,218,161,0,0,218,161,0,0,226,161,0,0,226,161,0,0,226,161,0,0,228,161,0,0,228,161,0,0,228,161,0,0,232,161,0,0,234,161,0,0,234,161,0,0,236,161,0,0,240,161,0,0,246,161,0,0,248,161,0,0,250,161,0,0,250,161,0,0,250,161,0,0,254,161,0,0,4,162,0,0,4,162,0,0,4,162,0,0,10,162,0,0,10,162,0,0,18,162,0,0,26,162,0,0,26,162,0,0,28,162,0,0,30,162,0,0,32,162,0,0,32,162,0,0,36,162,0,0,42,162,0,0,42,162,0,0,42,162,0,0,42,162,0,0,42,162,0,0,42,162,0,0,44,162,0,0,44,162,0,0,44,162,0,0,46,162,0,0,46,162,0,0,46,162,0,0,50,162,0,0,54,162,0,0,60,162,0,0,60,162,0,0,64,162,0,0,64,162,0,0,72,162,0,0,72,162,0,0,72,162,0,0,72,162,0,0,76,162,0,0,82,162,0,0,82,162,0,0,82,162,0,0,82,162,0,0,84,162,0,0,92,162,0,0,96,162,0,0,100,162,0,0,100,162,0,0,102,162,0,0,102,162,0,0,106,162,0,0,112,162,0,0,112,162,0,0,112,162,0,0,112,162,0,0,112,162,0,0,118,162,0,0,120,162,0,0,122,162,0,0,126,162,0,0,126,162,0,0,126,162,0,0,134,162,0,0,134,162,0,0,134,162,0,0,134,162,0,0,134,162,0,0,136,162,0,0,138,162,0,0,138,162,0,0,138,162,0,0,138,162,0,0,138,162,0,0,138,162,0,0,144,162,0,0,144,162,0,0,144,162,0,0,144,162,0,0,144,162,0,0,144,162,0,0,144,162,0,0,148,162,0,0,148,162,0,0,150,162,0,0,154,162,0,0,162,162,0,0,166,162,0,0,166,162,0,0,168,162,0,0,172,162,0,0,172,162,0,0,172,162,0,0,172,162,0,0,172,162,0,0,172,162,0,0,172,162,0,0,172,162,0,0,172,162,0,0,172,162,0,0,176,162,0,0,184,162,0,0,184,162,0,0,186,162,0,0,188,162,0,0,190,162,0,0,192,162,0,0,196,162,0,0,198,162,0,0,198,162,0,0,198,162,0,0,200,162,0,0,200,162,0,0,204,162,0,0,206,162,0,0,206,162,0,0,206,162,0,0,206,162,0,0,210,162,0,0,214,162,0,0,214,162,0,0,214,162,0,0,214,162,0,0,214,162,0,0,216,162,0,0,216,162,0,0,218,162,0,0,220,162,0,0,220,162,0,0,220,162,0,0,222,162,0,0,224,162,0,0,224,162,0,0,224,162,0,0,224,162,0,0,228,162,0,0,228,162,0,0,230,162,0,0,240,162,0,0,242,162,0,0,246,162,0,0,246,162,0,0,248,162,0,0,248,162,0,0,250,162,0,0,250,162,0,0,250,162,0,0,250,162,0,0,250,162,0,0,254,162,0,0,254,162,0,0,0,163,0,0,2,163,0,0,2,163,0,0,16,163,0,0,18,163,0,0,18,163,0,0,24,163,0,0,24,163,0,0,26,163,0,0,26,163,0,0,30,163,0,0,30,163,0,0,34,163,0,0,36,163,0,0,40,163,0,0,40,163,0,0,40,163,0,0,46,163,0,0,48,163,0,0,48,163,0,0,48,163,0,0,48,163,0,0,48,163,0,0,48,163,0,0,48,163,0,0,50,163,0,0,50,163,0,0,50,163,0,0,50,163,0,0,52,163,0,0,52,163,0,0,58,163,0,0,60,163,0,0,62,163,0,0,62,163,0,0,62,163,0,0,66,163,0,0,66,163,0,0,66,163,0,0,66,163,0,0,66,163,0,0,66,163,0,0,66,163,0,0,70,163,0,0,70,163,0,0,82,163,0,0,82,163,0,0,82,163,0,0,82,163,0,0,84,163,0,0,84,163,0,0,84,163,0,0,84,163,0,0,88,163,0,0,92,163,0,0,92,163,0,0,92,163,0,0,94,163,0,0,102,163,0,0,102,163,0,0,104,163,0,0,110,163,0,0,110,163,0,0,112,163,0,0,114,163,0,0,126,163,0,0,126,163,0,0,126,163,0,0,126,163,0,0,130,163,0,0,130,163,0,0,136,163,0,0,138,163,0,0,138,163,0,0,150,163,0,0,150,163,0,0,150,163,0,0,150,163,0,0,160,163,0,0,160,163,0,0,164,163,0,0,164,163,0,0,164,163,0,0,168,163,0,0,168,163,0,0,170,163,0,0,174,163,0,0,174,163,0,0,178,163,0,0,178,163,0,0,188,163,0,0,192,163,0,0,192,163,0,0,192,163,0,0,192,163,0,0,198,163,0,0,198,163,0,0,198,163,0,0,202,163,0,0,204,163,0,0,204,163,0,0,214,163,0,0,214,163,0,0,214,163,0,0,216,163,0,0,216,163,0,0,220,163,0,0,220,163,0,0,220,163,0,0,220,163,0,0,220,163,0,0,220,163,0,0,220,163,0,0,220,163,0,0,220,163,0,0,224,163,0,0,224,163,0,0,224,163,0,0,228,163,0,0,238,163,0,0,242,163,0,0,242,163,0,0,242,163,0,0,242,163,0,0,242,163,0,0,244,163,0,0,244,163,0,0,246,163,0,0,246,163,0,0,246,163,0,0,246,163,0,0,246,163,0,0,250,163,0,0,250,163,0,0,2,164,0,0,6,164,0,0,10,164,0,0,10,164,0,0,12,164,0,0,20,164,0,0,20,164,0,0,22,164,0,0,22,164,0,0,26,164,0,0,36,164,0,0,40,164,0,0,46,164,0,0,46,164,0,0,50,164,0,0,50,164,0,0,54,164,0,0,58,164,0,0,58,164,0,0,58,164,0,0,58,164,0,0,58,164,0,0,64,164,0,0,64,164,0,0,64,164,0,0,64,164,0,0,64,164,0,0,66,164,0,0,70,164,0,0,70,164,0,0,70,164,0,0,70,164,0,0,74,164,0,0,74,164,0,0,80,164,0,0,80,164,0,0,84,164,0,0,90,164,0,0,92,164,0,0,92,164,0,0,92,164,0,0,96,164,0,0,98,164,0,0,100,164,0,0,104,164,0,0,108,164,0,0,108,164,0,0,108,164,0,0,108,164,0,0,112,164,0,0,114,164,0,0,114,164,0,0,122,164,0,0,124,164,0,0,130,164,0,0,130,164,0,0,130,164,0,0,130,164,0,0,132,164,0,0,132,164,0,0,132,164,0,0,132,164,0,0,136,164,0,0,136,164,0,0,138,164,0,0,140,164,0,0,144,164,0,0,148,164,0,0,148,164,0,0,156,164,0,0,166,164,0,0,166,164,0,0,174,164,0,0,178,164,0,0,180,164,0,0,184,164,0,0,192,164,0,0,194,164,0,0,194,164,0,0,198,164,0,0,200,164,0,0,200,164,0,0,202,164,0,0,202,164,0,0,202,164,0,0,202,164,0,0,202,164,0,0,204,164,0,0,204,164,0,0,208,164,0,0,208,164,0,0,210,164,0,0,212,164,0,0,212,164,0,0,216,164,0,0,216,164,0,0,216,164,0,0,216,164,0,0,216,164,0,0,216,164,0,0,220,164,0,0,220,164,0,0,220,164,0,0,222,164,0,0,226,164,0,0,226,164,0,0,226,164,0,0,228,164,0,0,230,164,0,0,230,164,0,0,230,164,0,0,230,164,0,0,232,164,0,0,232,164,0,0,232,164,0,0,234,164,0,0,234,164,0,0,236,164,0,0,236,164,0,0,236,164,0,0,240,164,0,0,242,164,0,0,244,164,0,0,246,164,0,0,246,164,0,0,0,165,0,0,2,165,0,0,2,165,0,0,4,165,0,0,4,165,0,0,4,165,0,0,4,165,0,0,6,165,0,0,6,165,0,0,10,165,0,0,10,165,0,0,14,165,0,0,14,165,0,0,18,165,0,0,20,165,0,0,20,165,0,0,20,165,0,0,20,165,0,0,20,165,0,0,22,165,0,0,28,165,0,0,28,165,0,0,30,165,0,0,30,165,0,0,32,165,0,0,38,165,0,0,40,165,0,0,44,165,0,0,44,165,0,0,44,165,0,0,48,165,0,0,50,165,0,0,60,165,0,0,62,165,0,0,62,165,0,0,62,165,0,0,62,165,0,0,62,165,0,0,68,165,0,0,68,165,0,0,68,165,0,0,76,165,0,0,76,165,0,0,82,165,0,0,82,165,0,0,82,165,0,0,82,165,0,0,82,165,0,0,84,165,0,0,86,165,0,0,86,165,0,0,86,165,0,0,86,165,0,0,86,165,0,0,86,165,0,0,86,165,0,0,88,165,0,0,88,165,0,0,88,165,0,0,92,165,0,0,92,165,0,0,94,165,0,0,100,165,0,0,100,165,0,0,100,165,0,0,100,165,0,0,102,165,0,0,102,165,0,0,102,165,0,0,110,165,0,0,110,165,0,0,110,165,0,0,112,165,0,0,112,165,0,0,112,165,0,0,112,165,0,0,112,165,0,0,112,165,0,0,114,165,0,0,118,165,0,0,118,165,0,0,118,165,0,0,122,165,0,0,122,165,0,0,122,165,0,0,128,165,0,0,128,165,0,0,130,165,0,0,130,165,0,0,130,165,0,0,130,165,0,0,138,165,0,0,140,165,0,0,142,165,0,0,142,165,0,0,148,165,0,0,150,165,0,0,150,165,0,0,156,165,0,0,160,165,0,0,162,165,0,0,162,165,0,0,164,165,0,0,164,165,0,0,168,165,0,0,172,165,0,0,172,165,0,0,184,165,0,0,184,165,0,0,186,165,0,0,186,165,0,0,188,165,0,0,190,165,0,0,192,165,0,0,192,165,0,0,194,165,0,0,196,165,0,0,198,165,0,0,202,165,0,0,210,165,0,0,210,165,0,0,214,165,0,0,214,165,0,0,218,165,0,0,218,165,0,0,218,165,0,0,224,165,0,0,224,165,0,0,230,165,0,0,232,165,0,0,242,165,0,0,244,165,0,0,246,165,0,0,246,165,0,0,246,165,0,0,248,165,0,0,248,165,0,0,248,165,0,0,248,165,0,0,248,165,0,0,248,165,0,0,252,165,0,0,254,165,0,0,6,166,0,0,8,166,0,0,12,166,0,0,12,166,0,0,12,166,0,0,12,166,0,0,16,166,0,0,22,166,0,0,22,166,0,0,26,166,0,0,28,166,0,0,30,166,0,0,34,166,0,0,34,166,0,0,34,166,0,0,34,166,0,0,34,166,0,0,38,166,0,0,42,166,0,0,42,166,0,0,42,166,0,0,48,166,0,0,56,166,0,0,58,166,0,0,60,166,0,0,60,166,0,0,62,166,0,0,62,166,0,0,62,166,0,0,62,166,0,0,62,166,0,0,62,166,0,0,62,166,0,0,66,166,0,0,66,166,0,0,68,166,0,0,70,166,0,0,70,166,0,0,70,166,0,0,72,166,0,0,72,166,0,0,72,166,0,0,72,166,0,0,74,166,0,0,74,166,0,0,76,166,0,0,76,166,0,0,76,166,0,0,76,166,0,0,80,166,0,0,80,166,0,0,80,166,0,0,84,166,0,0,84,166,0,0,88,166,0,0,88,166,0,0,88,166,0,0,88,166,0,0,90,166,0,0,90,166,0,0,92,166,0,0,92,166,0,0,92,166,0,0,96,166,0,0,100,166,0,0,100,166,0,0,100,166,0,0,100,166,0,0,102,166,0,0,112,166,0,0,116,166,0,0,116,166,0,0,124,166,0,0,124,166,0,0,126,166,0,0,126,166,0,0,126,166,0,0,128,166,0,0,128,166,0,0,130,166,0,0,130,166,0,0,134,166,0,0,136,166,0,0,140,166,0,0,140,166,0,0,142,166,0,0,144,166,0,0,144,166,0,0,144,166,0,0,144,166,0,0,144,166,0,0,146,166,0,0,146,166,0,0,146,166,0,0,148,166,0,0,152,166,0,0,152,166,0,0,160,166,0,0,160,166,0,0,162,166,0,0,162,166,0,0,162,166,0,0,164,166,0,0,164,166,0,0,168,166,0,0,174,166,0,0,180,166,0,0,182,166,0,0,186,166,0,0,186,166,0,0,196,166,0,0,198,166,0,0,202,166,0,0,202,166,0,0,212,166,0,0,212,166,0,0,212,166,0,0,214,166,0,0,216,166,0,0,228,166,0,0,234,166,0,0,238,166,0,0,240,166,0,0,242,166,0,0,252,166,0,0,0,167,0,0,4,167,0,0,4,167,0,0,8,167,0,0,12,167,0,0,22,167,0,0,22,167,0,0,22,167,0,0,22,167,0,0,22,167,0,0,22,167,0,0,22,167,0,0,24,167,0,0,28,167,0,0,30,167,0,0,30,167,0,0,30,167,0,0,32,167,0,0,32,167,0,0,34,167,0,0,34,167,0,0,36,167,0,0,42,167,0,0,42,167,0,0,42,167,0,0,42,167,0,0,42,167,0,0,42,167,0,0,44,167,0,0,48,167,0,0,48,167,0,0,56,167,0,0,56,167,0,0,58,167,0,0,58,167,0,0,58,167,0,0,58,167,0,0,58,167,0,0,64,167,0,0,68,167,0,0,68,167,0,0,68,167,0,0,68,167,0,0,72,167,0,0,76,167,0,0,76,167,0,0,78,167,0,0,78,167,0,0,78,167,0,0,80,167,0,0,82,167,0,0,86,167,0,0,88,167,0,0,90,167,0,0,92,167,0,0,98,167,0,0,98,167,0,0,102,167,0,0,102,167,0,0,104,167,0,0,110,167,0,0,112,167,0,0,112,167,0,0,112,167,0,0,122,167,0,0,122,167,0,0,122,167,0,0,124,167,0,0,124,167,0,0,124,167,0,0,124,167,0,0,126,167,0,0,128,167,0,0,128,167,0,0,128,167,0,0,138,167,0,0,138,167,0,0,140,167,0,0,140,167,0,0,146,167,0,0,152,167,0,0,154,167,0,0,158,167,0,0,158,167,0,0,164,167,0,0,172,167,0,0,184,167,0,0,184,167,0,0,184,167,0,0,188,167,0,0,188,167,0,0,188,167,0,0,198,167,0,0,198,167,0,0,198,167,0,0,212,167,0,0,216,167,0,0,216,167,0,0,220,167,0,0,222,167,0,0,224,167,0,0,224,167,0,0,226,167,0,0,226,167,0,0,228,167,0,0,230,167,0,0,246,167,0,0,246,167,0,0,250,167,0,0,6,168,0,0,30,168,0,0,32,168,0,0,32,168,0,0,34,168,0,0,40,168,0,0,42,168,0,0,42,168,0,0,42,168,0,0,42,168,0,0,42,168,0,0,42,168,0,0,44,168,0,0,44,168,0,0,44,168,0,0,46,168,0,0,48,168,0,0,48,168,0,0,48,168,0,0,50,168,0,0,56,168,0,0,56,168,0,0,56,168,0,0,62,168,0,0,64,168,0,0,70,168,0,0,70,168,0,0,74,168,0,0,74,168,0,0,74,168,0,0,74,168,0,0,74,168,0,0,78,168,0,0,82,168,0,0,82,168,0,0,86,168,0,0,86,168,0,0,86,168,0,0,86,168,0,0,92,168,0,0,92,168,0,0,94,168,0,0,98,168,0,0,102,168,0,0,102,168,0,0,102,168,0,0,102,168,0,0,104,168,0,0,106,168,0,0,110,168,0,0,112,168,0,0,114,168,0,0,114,168,0,0,114,168,0,0,114,168,0,0,114,168,0,0,120,168,0,0,124,168,0,0,126,168,0,0,126,168,0,0,134,168,0,0,134,168,0,0,134,168,0,0,134,168,0,0,138,168,0,0,138,168,0,0,138,168,0,0,140,168,0,0,142,168,0,0,152,168,0,0,158,168,0,0,160,168,0,0,162,168,0,0,164,168,0,0,166,168,0,0,168,168,0,0,168,168,0,0,168,168,0,0,170,168,0,0,170,168,0,0,170,168,0,0,170,168,0,0,170,168,0,0,170,168,0,0,184,168,0,0,184,168,0,0,184,168,0,0,184,168,0,0,184,168,0,0,188,168,0,0,190,168,0,0,190,168,0,0,190,168,0,0,192,168,0,0,192,168,0,0,194,168,0,0,198,168,0,0,198,168,0,0,204,168,0,0,206,168,0,0,206,168,0,0,206,168,0,0,206,168,0,0,208,168,0,0,212,168,0,0,216,168,0,0,216,168,0,0,216,168,0,0,222,168,0,0,226,168,0,0,226,168,0,0,226,168,0,0,230,168,0,0,234,168,0,0,236,168,0,0,240,168,0,0,240,168,0,0,246,168,0,0,250,168,0,0,250,168,0,0,250,168,0,0,252,168,0,0,252,168,0,0,252,168,0,0,252,168,0,0,254,168,0,0,0,169,0,0,4,169,0,0,12,169,0,0,12,169,0,0,14,169,0,0,14,169,0,0,16,169,0,0,16,169,0,0,20,169,0,0,20,169,0,0,26,169,0,0,26,169,0,0,30,169,0,0,30,169,0,0,30,169,0,0,30,169,0,0,30,169,0,0,32,169,0,0,40,169,0,0,44,169,0,0,44,169,0,0,50,169,0,0,50,169,0,0,52,169,0,0,62,169,0,0,64,169,0,0,64,169,0,0,66,169,0,0,66,169,0,0,66,169,0,0,66,169,0,0,68,169,0,0,68,169,0,0,80,169,0,0,80,169,0,0,90,169,0,0,92,169,0,0,102,169,0,0,102,169,0,0,104,169,0,0,104,169,0,0,106,169,0,0,106,169,0,0,110,169,0,0,112,169,0,0,114,169,0,0,116,169,0,0,122,169,0,0,124,169,0,0,124,169,0,0,128,169,0,0,128,169,0,0,128,169,0,0,128,169,0,0,128,169,0,0,142,169,0,0,146,169,0,0,148,169,0,0,150,169,0,0,152,169,0,0,154,169,0,0,154,169,0,0,154,169,0,0,154,169,0,0,160,169,0,0,166,169,0,0,176,169,0,0,176,169,0,0,176,169,0,0,184,169,0,0,186,169,0,0,188,169,0,0,188,169,0,0,188,169,0,0,188,169,0,0,192,169,0,0,192,169,0,0,192,169,0,0,194,169,0,0,194,169,0,0,194,169,0,0,196,169,0,0,200,169,0,0,202,169,0,0,202,169,0,0,202,169,0,0,204,169,0,0,210,169,0,0,220,169,0,0,220,169,0,0,220,169,0,0,222,169,0,0,222,169,0,0,222,169,0,0,222,169,0,0,222,169,0,0,222,169,0,0,224,169,0,0,224,169,0,0,224,169,0,0,224,169,0,0,224,169,0,0,224,169,0,0,230,169,0,0,230,169,0,0,230,169,0,0,230,169,0,0,230,169,0,0,230,169,0,0,230,169,0,0,236,169,0,0,236,169,0,0,240,169,0,0,240,169,0,0,240,169,0,0,240,169,0,0,240,169,0,0,240,169,0,0,242,169,0,0,242,169,0,0,244,169,0,0,246,169,0,0,246,169,0,0,246,169,0,0,248,169,0,0,252,169,0,0,254,169,0,0,4,170,0,0,4,170,0,0,8,170,0,0,8,170,0,0,10,170,0,0,12,170,0,0,12,170,0,0,14,170,0,0,18,170,0,0,18,170,0,0,22,170,0,0,22,170,0,0,22,170,0,0,22,170,0,0,28,170,0,0,28,170,0,0,28,170,0,0,28,170,0,0,32,170,0,0,34,170,0,0,34,170,0,0,38,170,0,0,40,170,0,0,44,170,0,0,44,170,0,0,44,170,0,0,44,170,0,0,46,170,0,0,52,170,0,0,56,170,0,0,58,170,0,0,58,170,0,0,58,170,0,0,66,170,0,0,68,170,0,0,72,170,0,0,72,170,0,0,72,170,0,0,72,170,0,0,72,170,0,0,72,170,0,0,74,170,0,0,74,170,0,0,76,170,0,0,78,170,0,0,80,170,0,0,86,170,0,0,86,170,0,0,86,170,0,0,86,170,0,0,90,170,0,0,90,170,0,0,90,170,0,0,96,170,0,0,108,170,0,0,110,170,0,0,110,170,0,0,114,170,0,0,116,170,0,0,120,170,0,0,120,170,0,0,120,170,0,0,120,170,0,0,120,170,0,0,120,170,0,0,126,170,0,0,126,170,0,0,126,170,0,0,130,170,0,0,130,170,0,0,130,170,0,0,136,170,0,0,136,170,0,0,136,170,0,0,138,170,0,0,138,170,0,0,142,170,0,0,142,170,0,0,142,170,0,0,146,170,0,0,148,170,0,0,152,170,0,0,152,170,0,0,154,170,0,0,162,170,0,0,162,170,0,0,164,170,0,0,164,170,0,0,164,170,0,0,166,170,0,0,166,170,0,0,166,170,0,0,166,170,0,0,172,170,0,0,172,170,0,0,176,170,0,0,176,170,0,0,176,170,0,0,180,170,0,0,180,170,0,0,188,170,0,0,190,170,0,0,194,170,0,0,202,170,0,0,202,170,0,0,202,170,0,0,202,170,0,0,208,170,0,0,210,170,0,0,210,170,0,0,210,170,0,0,210,170,0,0,218,170,0,0,218,170,0,0,218,170,0,0,218,170,0,0,222,170,0,0,222,170,0,0,222,170,0,0,224,170,0,0,226,170,0,0,228,170,0,0,232,170,0,0,236,170,0,0,240,170,0,0,244,170,0,0,246,170,0,0,246,170,0,0,246,170,0,0,250,170,0,0,250,170,0,0,250,170,0,0,250,170,0,0,250,170,0,0,252,170,0,0,0,171,0,0,0,171,0,0,0,171,0,0,0,171,0,0,0,171,0,0,0,171,0,0,0,171,0,0,4,171,0,0,4,171,0,0,6,171,0,0,6,171,0,0,6,171,0,0,6,171,0,0,12,171,0,0,12,171,0,0,16,171,0,0,16,171,0,0,20,171,0,0,22,171,0,0,22,171,0,0,22,171,0,0,22,171,0,0,24,171,0,0,26,171,0,0,28,171,0,0,28,171,0,0,28,171,0,0,30,171,0,0,32,171,0,0,38,171,0,0,38,171,0,0,42,171,0,0,44,171,0,0,44,171,0,0,44,171,0,0,48,171,0,0,48,171,0,0,50,171,0,0,50,171,0,0,50,171,0,0,52,171,0,0,56,171,0,0,58,171,0,0,58,171,0,0,58,171,0,0,58,171,0,0,62,171,0,0,64,171,0,0,66,171,0,0,68,171,0,0,72,171,0,0,72,171,0,0,76,171,0,0,78,171,0,0,78,171,0,0,78,171,0,0,80,171,0,0,98,171,0,0,98,171,0,0,100,171,0,0,102,171,0,0,102,171,0,0,106,171,0,0,106,171,0,0,106,171,0,0,110,171,0,0,114,171,0,0,120,171,0,0,120,171,0,0,124,171,0,0,124,171,0,0,124,171,0,0,126,171,0,0,136,171,0,0,136,171,0,0,138,171,0,0,140,171,0,0,144,171,0,0,146,171,0,0,148,171,0,0,152,171,0,0,152,171,0,0,152,171,0,0,156,171,0,0,156,171,0,0,156,171,0,0,156,171,0,0,158,171,0,0,162,171,0,0,162,171,0,0,162,171,0,0,162,171,0,0,162,171,0,0,162,171,0,0,164,171,0,0,164,171,0,0,164,171,0,0,166,171,0,0,166,171,0,0,170,171,0,0,170,171,0,0,170,171,0,0,174,171,0,0,174,171,0,0,176,171,0,0,176,171,0,0,178,171,0,0,178,171,0,0,182,171,0,0,184,171,0,0,188,171,0,0,188,171,0,0,188,171,0,0,188,171,0,0,190,171,0,0,190,171,0,0,192,171,0,0,194,171,0,0,204,171,0,0,206,171,0,0,212,171,0,0,218,171,0,0,218,171,0,0,224,171,0,0,224,171,0,0,230,171,0,0,230,171,0,0,230,171,0,0,236,171,0,0,236,171,0,0,236,171,0,0,236,171,0,0,236,171,0,0,236,171,0,0,236,171,0,0,248,171,0,0,248,171,0,0,250,171,0,0,252,171,0,0,254,171,0,0,254,171,0,0,254,171,0,0,254,171,0,0,254,171,0,0,254,171,0,0,254,171,0,0,0,172,0,0,0,172,0,0,0,172,0,0,0,172,0,0,0,172,0,0,0,172,0,0,0,172,0,0,0,172,0,0,0,172,0,0,2,172,0,0,2,172,0,0,2,172,0,0,4,172,0,0,8,172,0,0,10,172,0,0,10,172,0,0,10,172,0,0,20,172,0,0,20,172,0,0,24,172,0,0,24,172,0,0,26,172,0,0,26,172,0,0,26,172,0,0,30,172,0,0,32,172,0,0,36,172,0,0,44,172,0,0,46,172,0,0,46,172,0,0,52,172,0,0,54,172,0,0,58,172,0,0,62,172,0,0,62,172,0,0,68,172,0,0,68,172,0,0,70,172,0,0,70,172,0,0,72,172,0,0,72,172,0,0,76,172,0,0,76,172,0,0,78,172,0,0,78,172,0,0,78,172,0,0,78,172,0,0,78,172,0,0,78,172,0,0,78,172,0,0,82,172,0,0,82,172,0,0,96,172,0,0,100,172,0,0,100,172,0,0,100,172,0,0,108,172,0,0,108,172,0,0,112,172,0,0,112,172,0,0,114,172,0,0,116,172,0,0,120,172,0,0,124,172,0,0,126,172,0,0,130,172,0,0,130,172,0,0,142,172,0,0,148,172,0,0,148,172,0,0,148,172,0,0,148,172,0,0,150,172,0,0,150,172,0,0,150,172,0,0,154,172,0,0,156,172,0,0,160,172,0,0,160,172,0,0,162,172,0,0,166,172,0,0,168,172,0,0,168,172,0,0,174,172,0,0,186,172,0,0,186,172,0,0,186,172,0,0,186,172,0,0,186,172,0,0,196,172,0,0,196,172,0,0,196,172,0,0,198,172,0,0,198,172,0,0,200,172,0,0,200,172,0,0,200,172,0,0,204,172,0,0,206,172,0,0,208,172,0,0,208,172,0,0,210,172,0,0,210,172,0,0,210,172,0,0,210,172,0,0,210,172,0,0,210,172,0,0,214,172,0,0,214,172,0,0,222,172,0,0,222,172,0,0,222,172,0,0,224,172,0,0,226,172,0,0,226,172,0,0,232,172,0,0,232,172,0,0,232,172,0,0,238,172,0,0,238,172,0,0,238,172,0,0,238,172,0,0,238,172,0,0,238,172,0,0,238,172,0,0,238,172,0,0,242,172,0,0,246,172,0,0,250,172,0,0,250,172,0,0,250,172,0,0,4,173,0,0,8,173,0,0,12,173,0,0,14,173,0,0,14,173,0,0,16,173,0,0,24,173,0,0,24,173,0,0,26,173,0,0,28,173,0,0,30,173,0,0,30,173,0,0,32,173,0,0,38,173,0,0,38,173,0,0,38,173,0,0,38,173,0,0,40,173,0,0,40,173,0,0,40,173,0,0,40,173,0,0,40,173,0,0,42,173,0,0,42,173,0,0,42,173,0,0,42,173,0,0,42,173,0,0,42,173,0,0,42,173,0,0,44,173,0,0,48,173,0,0,52,173,0,0,58,173,0,0,60,173,0,0,68,173,0,0,68,173,0,0,72,173,0,0,72,173,0,0,72,173,0,0,72,173,0,0,72,173,0,0,82,173,0,0,82,173,0,0,86,173,0,0,88,173,0,0,88,173,0,0,90,173,0,0,90,173,0,0,90,173,0,0,90,173,0,0,90,173,0,0,90,173,0,0,90,173,0,0,90,173,0,0,92,173,0,0,92,173,0,0,92,173,0,0,94,173,0,0,94,173,0,0,94,173,0,0,94,173,0,0,94,173,0,0,96,173,0,0,98,173,0,0,98,173,0,0,98,173,0,0,98,173,0,0,102,173,0,0,104,173,0,0,106,173,0,0,106,173,0,0,108,173,0,0,108,173,0,0,118,173,0,0,120,173,0,0,126,173,0,0,126,173,0,0,134,173,0,0,134,173,0,0,136,173,0,0,136,173,0,0,146,173,0,0,146,173,0,0,146,173,0,0,152,173,0,0,152,173,0,0,152,173,0,0,152,173,0,0,152,173,0,0,152,173,0,0,152,173,0,0,152,173,0,0,152,173,0,0,152,173,0,0,154,173,0,0,154,173,0,0,154,173,0,0,154,173,0,0,158,173,0,0,158,173,0,0,158,173,0,0,162,173,0,0,170,173,0,0,174,173,0,0,176,173,0,0,176,173,0,0,176,173,0,0,180,173,0,0,180,173,0,0,182,173,0,0,182,173,0,0,182,173,0,0,182,173,0,0,188,173,0,0,188,173,0,0,188,173,0,0,192,173,0,0,198,173,0,0,198,173,0,0,200,173,0,0,200,173,0,0,202,173,0,0,202,173,0,0,202,173,0,0,202,173,0,0,202,173,0,0,202,173,0,0,206,173,0,0,206,173,0,0,206,173,0,0,206,173,0,0,208,173,0,0,208,173,0,0,208,173,0,0,210,173,0,0,216,173,0,0,218,173,0,0,220,173,0,0,220,173,0,0,220,173,0,0,228,173,0,0,234,173,0,0,234,173,0,0,234,173,0,0,240,173,0,0,246,173,0,0,246,173,0,0,246,173,0,0,246,173,0,0,246,173,0,0,254,173,0,0,254,173,0,0,0,174,0,0,2,174,0,0,2,174,0,0,2,174,0,0,2,174,0,0,4,174,0,0,4,174,0,0,4,174,0,0,8,174,0,0,8,174,0,0,14,174,0,0,14,174,0,0,14,174,0,0,14,174,0,0,16,174,0,0,16,174,0,0,16,174,0,0,24,174,0,0,28,174,0,0,32,174,0,0,32,174,0,0,40,174,0,0,40,174,0,0,40,174,0,0,40,174,0,0,46,174,0,0,48,174,0,0,48,174,0,0,54,174,0,0,54,174,0,0,58,174,0,0,62,174,0,0,62,174,0,0,62,174,0,0,62,174,0,0,62,174,0,0,66,174,0,0,68,174,0,0,70,174,0,0,70,174,0,0,74,174,0,0,74,174,0,0,80,174,0,0,80,174,0,0,84,174,0,0,84,174,0,0,90,174,0,0,90,174,0,0,90,174,0,0,90,174,0,0,90,174,0,0,98,174,0,0,100,174,0,0,102,174,0,0,102,174,0,0,104,174,0,0,108,174,0,0,108,174,0,0,110,174,0,0,114,174,0,0,120,174,0,0,120,174,0,0,122,174,0,0,124,174,0,0,126,174,0,0,126,174,0,0,128,174,0,0,130,174,0,0,130,174,0,0,134,174,0,0,138,174,0,0,140,174,0,0,142,174,0,0,146,174,0,0,148,174,0,0,152,174,0,0,156,174,0,0,156,174,0,0,160,174,0,0,162,174,0,0,168,174,0,0,168,174,0,0,168,174,0,0,172,174,0,0,184,174,0,0,184,174,0,0,184,174,0,0,190,174,0,0,196,174,0,0,196,174,0,0,196,174,0,0,196,174,0,0,196,174,0,0,198,174,0,0,200,174,0,0,202,174,0,0,206,174,0,0,206,174,0,0,206,174,0,0,212,174,0,0,214,174,0,0,214,174,0,0,214,174,0,0,214,174,0,0,216,174,0,0,218,174,0,0,218,174,0,0,220,174,0,0,222,174,0,0,230,174,0,0,232,174,0,0,240,174,0,0,240,174,0,0,240,174,0,0,240,174,0,0,240,174,0,0,242,174,0,0,244,174,0,0,244,174,0,0,244,174,0,0,244,174,0,0,248,174,0,0,248,174,0,0,252,174,0,0,252,174,0,0,252,174,0,0,4,175,0,0,6,175,0,0,6,175,0,0,6,175,0,0,10,175,0,0,10,175,0,0,14,175,0,0,14,175,0,0,16,175,0,0,16,175,0,0,24,175,0,0,30,175,0,0,32,175,0,0,32,175,0,0,36,175,0,0,40,175,0,0,44,175,0,0,46,175,0,0,46,175,0,0,46,175,0,0,52,175,0,0,52,175,0,0,52,175,0,0,58,175,0,0,58,175,0,0,58,175,0,0,58,175,0,0,60,175,0,0,62,175,0,0,62,175,0,0,70,175,0,0,70,175,0,0,70,175,0,0,70,175,0,0,70,175,0,0,70,175,0,0,70,175,0,0,70,175,0,0,70,175,0,0,70,175,0,0,70,175,0,0,70,175,0,0,70,175,0,0,72,175,0,0,76,175,0,0,86,175,0,0,86,175,0,0,86,175,0,0,86,175,0,0,90,175,0,0,90,175,0,0,90,175,0,0,98,175,0,0,102,175,0,0,104,175,0,0,114,175,0,0,116,175,0,0,118,175,0,0,118,175,0,0,118,175,0,0,118,175,0,0,118,175,0,0,118,175,0,0,118,175,0,0,118,175,0,0,118,175,0,0,120,175,0,0,120,175,0,0,120,175,0,0,122,175,0,0,122,175,0,0,130,175,0,0,130,175,0,0,130,175,0,0,130,175,0,0,130,175,0,0,130,175,0,0,138,175,0,0,138,175,0,0,142,175,0,0,146,175,0,0,146,175,0,0,146,175,0,0,150,175,0,0,150,175,0,0,150,175,0,0,152,175,0,0,152,175,0,0,152,175,0,0,154,175,0,0,154,175,0,0,156,175,0,0,158,175,0,0,160,175,0,0,168,175,0,0,172,175,0,0,180,175,0,0,182,175,0,0,184,175,0,0,184,175,0,0,184,175,0,0,188,175,0,0,194,175,0,0,198,175,0,0,200,175,0,0,200,175,0,0,202,175,0,0,202,175,0,0,202,175,0,0,202,175,0,0,202,175,0,0,202,175,0,0,202,175,0,0,204,175,0,0,212,175,0,0,212,175,0,0,216,175,0,0,216,175,0,0,220,175,0,0,220,175,0,0,222,175,0,0,224,175,0,0,224,175,0,0,224,175,0,0,224,175,0,0,226,175,0,0,226,175,0,0,226,175,0,0,228,175,0,0,228,175,0,0,228,175,0,0,228,175,0,0,230,175,0,0,238,175,0,0,238,175,0,0,238,175,0,0,238,175,0,0,238,175,0,0,240,175,0,0,240,175,0,0,240,175,0,0,240,175,0,0,240,175,0,0,240,175,0,0,240,175,0,0,240,175,0,0,240,175,0,0,244,175,0,0,252,175,0,0,2,176,0,0,2,176,0,0,6,176,0,0,8,176,0,0,14,176,0,0,20,176,0,0,20,176,0,0,24,176,0,0,24,176,0,0,24,176,0,0,30,176,0,0,30,176,0,0,30,176,0,0,32,176,0,0,36,176,0,0,36,176,0,0,38,176,0,0,38,176,0,0,38,176,0,0,48,176,0,0,48,176,0,0,52,176,0,0,54,176,0,0,54,176,0,0,54,176,0,0,56,176,0,0,72,176,0,0,72,176,0,0,74,176,0,0,76,176,0,0,80,176,0,0,80,176,0,0,80,176,0,0,80,176,0,0,82,176,0,0,82,176,0,0,82,176,0,0,84,176,0,0,84,176,0,0,88,176,0,0,90,176,0,0,94,176,0,0,100,176,0,0,104,176,0,0,112,176,0,0,114,176,0,0,120,176,0,0,120,176,0,0,122,176,0,0,124,176,0,0,126,176,0,0,126,176,0,0,128,176,0,0,128,176,0,0,128,176,0,0,130,176,0,0,130,176,0,0,130,176,0,0,130,176,0,0,134,176,0,0,136,176,0,0,136,176,0,0,136,176,0,0,136,176,0,0,138,176,0,0,140,176,0,0,142,176,0,0,142,176,0,0,144,176,0,0,144,176,0,0,150,176,0,0,150,176,0,0,150,176,0,0,156,176,0,0,160,176,0,0,160,176,0,0,160,176,0,0,160,176,0,0,162,176,0,0,162,176,0,0,162,176,0,0,162,176,0,0,170,176,0,0,170,176,0,0,170,176,0,0,170,176,0,0,170,176,0,0,182,176,0,0,184,176,0,0,184,176,0,0,186,176,0,0,186,176,0,0,186,176,0,0,190,176,0,0,192,176,0,0,196,176,0,0,198,176,0,0,200,176,0,0,202,176,0,0,202,176,0,0,206,176,0,0,208,176,0,0,208,176,0,0,208,176,0,0,208,176,0,0,208,176,0,0,210,176,0,0,210,176,0,0,214,176,0,0,216,176,0,0,216,176,0,0,216,176,0,0,222,176,0,0,224,176,0,0,224,176,0,0,224,176,0,0,226,176,0,0,226,176,0,0,226,176,0,0,228,176,0,0,228,176,0,0,232,176,0,0,232,176,0,0,238,176,0,0,238,176,0,0,238,176,0,0,240,176,0,0,242,176,0,0,248,176,0,0,252,176,0,0,0,177,0,0,2,177,0,0,6,177,0,0,10,177,0,0,16,177,0,0,22,177,0,0,22,177,0,0,26,177,0,0,26,177,0,0,28,177,0,0,32,177,0,0,48,177,0,0,48,177,0,0,50,177,0,0,56,177,0,0,56,177,0,0,56,177,0,0,62,177,0,0,62,177,0,0,66,177,0,0,66,177,0,0,68,177,0,0,70,177,0,0,72,177,0,0,72,177,0,0,72,177,0,0,72,177,0,0,74,177,0,0,74,177,0,0,78,177,0,0,88,177,0,0,90,177,0,0,96,177,0,0,98,177,0,0,98,177,0,0,98,177,0,0,100,177,0,0,100,177,0,0,106,177,0,0,106,177,0,0,110,177,0,0,112,177,0,0,112,177,0,0,112,177,0,0,112,177,0,0,116,177,0,0,124,177,0,0,124,177,0,0,124,177,0,0,130,177,0,0,130,177,0,0,134,177,0,0,136,177,0,0,142,177,0,0,146,177,0,0,148,177,0,0,148,177,0,0,148,177,0,0,148,177,0,0,148,177,0,0,150,177,0,0,150,177,0,0,150,177,0,0,150,177,0,0,150,177,0,0,154,177,0,0,162,177,0,0,168,177,0,0,168,177,0,0,168,177,0,0,168,177,0,0,172,177,0,0,176,177,0,0,176,177,0,0,176,177,0,0,176,177,0,0,176,177,0,0,176,177,0,0,178,177,0,0,178,177,0,0,178,177,0,0,188,177,0,0,190,177,0,0,192,177,0,0,196,177,0,0,196,177,0,0,200,177,0,0,200,177,0,0,202,177,0,0,202,177,0,0,202,177,0,0,202,177,0,0,204,177,0,0,204,177,0,0,204,177,0,0,208,177,0,0,208,177,0,0,208,177,0,0,208,177,0,0,210,177,0,0,210,177,0,0,224,177,0,0,224,177,0,0,224,177,0,0,224,177,0,0,230,177,0,0,230,177,0,0,242,177,0,0,242,177,0,0,246,177,0,0,250,177,0,0,252,177,0,0,252,177,0,0,252,177,0,0,252,177,0,0,252,177,0,0,252,177,0,0,252,177,0,0,2,178,0,0,6,178,0,0,10,178,0,0,10,178,0,0,10,178,0,0,12,178,0,0,14,178,0,0,14,178,0,0,14,178,0,0,14,178,0,0,14,178,0,0,18,178,0,0,18,178,0,0,22,178,0,0,24,178,0,0,28,178,0,0,28,178,0,0,32,178,0,0,34,178,0,0,34,178,0,0,34,178,0,0,34,178,0,0,40,178,0,0,40,178,0,0,40,178,0,0,44,178,0,0,44,178,0,0,44,178,0,0,44,178,0,0,44,178,0,0,48,178,0,0,48,178,0,0,48,178,0,0,50,178,0,0,52,178,0,0,60,178,0,0,62,178,0,0,70,178,0,0,70,178,0,0,70,178,0,0,70,178,0,0,72,178,0,0,72,178,0,0,76,178,0,0,76,178,0,0,76,178,0,0,84,178,0,0,84,178,0,0,86,178,0,0,86,178,0,0,96,178,0,0,96,178,0,0,98,178,0,0,100,178,0,0,100,178,0,0,100,178,0,0,110,178,0,0,110,178,0,0,110,178,0,0,114,178,0,0,118,178,0,0,120,178,0,0,120,178,0,0,120,178,0,0,120,178,0,0,120,178,0,0,120,178,0,0,124,178,0,0,128,178,0,0,130,178,0,0,130,178,0,0,130,178,0,0,130,178,0,0,130,178,0,0,130,178,0,0,130,178,0,0,130,178,0,0,130,178,0,0,132,178,0,0,132,178,0,0,132,178,0,0,134,178,0,0,134,178,0,0,134,178,0,0,134,178,0,0,136,178,0,0,138,178,0,0,140,178,0,0,140,178,0,0,140,178,0,0,140,178,0,0,140,178,0,0,142,178,0,0,146,178,0,0,146,178,0,0,146,178,0,0,160,178,0,0,162,178,0,0,162,178,0,0,162,178,0,0,164,178,0,0,164,178,0,0,164,178,0,0,176,178,0,0,178,178,0,0,180,178,0,0,180,178,0,0,182,178,0,0,184,178,0,0,184,178,0,0,184,178,0,0,194,178,0,0,194,178,0,0,198,178,0,0,198,178,0,0,198,178,0,0,198,178,0,0,200,178,0,0,200,178,0,0,200,178,0,0,202,178,0,0,210,178,0,0,210,178,0,0,210,178,0,0,212,178,0,0,212,178,0,0,214,178,0,0,214,178,0,0,214,178,0,0,216,178,0,0,216,178,0,0,218,178,0,0,218,178,0,0,218,178,0,0,218,178,0,0,220,178,0,0,220,178,0,0,220,178,0,0,220,178,0,0,222,178,0,0,224,178,0,0,224,178,0,0,226,178,0,0,226,178,0,0,226,178,0,0,228,178,0,0,230,178,0,0,230,178,0,0,234,178,0,0,240,178,0,0,240,178,0,0,240,178,0,0,240,178,0,0,242,178,0,0,242,178,0,0,244,178,0,0,250,178,0,0,250,178,0,0,250,178,0,0,250,178,0,0,250,178,0,0,250,178,0,0,250,178,0,0,254,178,0,0,0,179,0,0,2,179,0,0,4,179,0,0,6,179,0,0,6,179,0,0,6,179,0,0,8,179,0,0,12,179,0,0,14,179,0,0,18,179,0,0,18,179,0,0,18,179,0,0,18,179,0,0,26,179,0,0,28,179,0,0,30,179,0,0,30,179,0,0,34,179,0,0,36,179,0,0,38,179,0,0,46,179,0,0,46,179,0,0,46,179,0,0,50,179,0,0,50,179,0,0,50,179,0,0,50,179,0,0,50,179,0,0,54,179,0,0,54,179,0,0,54,179,0,0,56,179,0,0,56,179,0,0,56,179,0,0,60,179,0,0,60,179,0,0,62,179,0,0,66,179,0,0,66,179,0,0,70,179,0,0,76,179,0,0,76,179,0,0,78,179,0,0,80,179,0,0,82,179,0,0,82,179,0,0,90,179,0,0,90,179,0,0,94,179,0,0,96,179,0,0,100,179,0,0,100,179,0,0,100,179,0,0,108,179,0,0,108,179,0,0,112,179,0,0,114,179,0,0,114,179,0,0,114,179,0,0,114,179,0,0,114,179,0,0,118,179,0,0,118,179,0,0,118,179,0,0,118,179,0,0,120,179,0,0,120,179,0,0,120,179,0,0,122,179,0,0,122,179,0,0,122,179,0,0,122,179,0,0,122,179,0,0,122,179,0,0,128,179,0,0,130,179,0,0,130,179,0,0,130,179,0,0,130,179,0,0,130,179,0,0,140,179,0,0,144,179,0,0,144,179,0,0,146,179,0,0,148,179,0,0,148,179,0,0,150,179,0,0,150,179,0,0,150,179,0,0,152,179,0,0,154,179,0,0,160,179,0,0,160,179,0,0,164,179,0,0,166,179,0,0,166,179,0,0,166,179,0,0,168,179,0,0,168,179,0,0,168,179,0,0,168,179,0,0,168,179,0,0,168,179,0,0,170,179,0,0,170,179,0,0,174,179,0,0,174,179,0,0,174,179,0,0,174,179,0,0,174,179,0,0,174,179,0,0,184,179,0,0,190,179,0,0,194,179,0,0,200,179,0,0,200,179,0,0,204,179,0,0,204,179,0,0,204,179,0,0,210,179,0,0,216,179,0,0,222,179,0,0,222,179,0,0,222,179,0,0,224,179,0,0,224,179,0,0,224,179,0,0,224,179,0,0,224,179,0,0,224,179,0,0,226,179,0,0,228,179,0,0,228,179,0,0,228,179,0,0,230,179,0,0,234,179,0,0,240,179,0,0,242,179,0,0,242,179,0,0,244,179,0,0,244,179,0,0,244,179,0,0,244,179,0,0,244,179,0,0,248,179,0,0,254,179,0,0,0,180,0,0,0,180,0,0,0,180,0,0,0,180,0,0,0,180,0,0,0,180,0,0,0,180,0,0,6,180,0,0,8,180,0,0,10,180,0,0,10,180,0,0,12,180,0,0,12,180,0,0,14,180,0,0,16,180,0,0,16,180,0,0,16,180,0,0,16,180,0,0,24,180,0,0,26,180,0,0,30,180,0,0,30,180,0,0,30,180,0,0,34,180,0,0,34,180,0,0,34,180,0,0,34,180,0,0,34,180,0,0,34,180,0,0,34,180,0,0,34,180,0,0,34,180,0,0,36,180,0,0,36,180,0,0,36,180,0,0,36,180,0,0,38,180,0,0,44,180,0,0,48,180,0,0,50,180,0,0,64,180,0,0,64,180,0,0,64,180,0,0,68,180,0,0,70,180,0,0,74,180,0,0,74,180,0,0,74,180,0,0,74,180,0,0,76,180,0,0,76,180,0,0,76,180,0,0,76,180,0,0,76,180,0,0,76,180,0,0,76,180,0,0,82,180,0,0,90,180,0,0,90,180,0,0,90,180,0,0,90,180,0,0,92,180,0,0,94,180,0,0,94,180,0,0,94,180,0,0,94,180,0,0,94,180,0,0,94,180,0,0,96,180,0,0,98,180,0,0,98,180,0,0,102,180,0,0,102,180,0,0,106,180,0,0,114,180,0,0,116,180,0,0,116,180,0,0,116,180,0,0,118,180,0,0,120,180,0,0,122,180,0,0,122,180,0,0,124,180,0,0,124,180,0,0,128,180,0,0,130,180,0,0,136,180,0,0,138,180,0,0,144,180,0,0,148,180,0,0,152,180,0,0,156,180,0,0,156,180,0,0,156,180,0,0,156,180,0,0,160,180,0,0,166,180,0,0,166,180,0,0,166,180,0,0,166,180,0,0,166,180,0,0,172,180,0,0,176,180,0,0,176,180,0,0,178,180,0,0,188,180,0,0,188,180,0,0,190,180,0,0,200,180,0,0,200,180,0,0,200,180,0,0,200,180,0,0,200,180,0,0,200,180,0,0,200,180,0,0,200,180,0,0,204,180,0,0,210,180,0,0,212,180,0,0,218,180,0,0,224,180,0,0,224,180,0,0,226,180,0,0,226,180,0,0,232,180,0,0,238,180,0,0,244,180,0,0,244,180,0,0,246,180,0,0,246,180,0,0,252,180,0,0,0,181,0,0,2,181,0,0,4,181,0,0,4,181,0,0,4,181,0,0,6,181,0,0,16,181,0,0,16,181,0,0,16,181,0,0,18,181,0,0,18,181,0,0,22,181,0,0,22,181,0,0,22,181,0,0,24,181,0,0,24,181,0,0,26,181,0,0,28,181,0,0,30,181,0,0,32,181,0,0,32,181,0,0,34,181,0,0,34,181,0,0,48,181,0,0,48,181,0,0,48,181,0,0,48,181,0,0,48,181,0,0,50,181,0,0,50,181,0,0,52,181,0,0,52,181,0,0,54,181,0,0,62,181,0,0,62,181,0,0,66,181,0,0,70,181,0,0,70,181,0,0,70,181,0,0,70,181,0,0,70,181,0,0,72,181,0,0,72,181,0,0,78,181,0,0,80,181,0,0,80,181,0,0,86,181,0,0,86,181,0,0,90,181,0,0,90,181,0,0,94,181,0,0,98,181,0,0,98,181,0,0,98,181,0,0,98,181,0,0,98,181,0,0,98,181,0,0,98,181,0,0,100,181,0,0,100,181,0,0,100,181,0,0,106,181,0,0,106,181,0,0,106,181,0,0,106,181,0,0,106,181,0,0,106,181,0,0,106,181,0,0,110,181,0,0,112,181,0,0,112,181,0,0,112,181,0,0,112,181,0,0,112,181,0,0,114,181,0,0,114,181,0,0,114,181,0,0,120,181,0,0,120,181,0,0,122,181,0,0,124,181,0,0,124,181,0,0,126,181,0,0,128,181,0,0,128,181,0,0,130,181,0,0,134,181,0,0,138,181,0,0,138,181,0,0,138,181,0,0,146,181,0,0,150,181,0,0,150,181,0,0,154,181,0,0,154,181,0,0,154,181,0,0,154,181,0,0,154,181,0,0,162,181,0,0,162,181,0,0,170,181,0,0,170,181,0,0,182,181,0,0,182,181,0,0,182,181,0,0,182,181,0,0,182,181,0,0,184,181,0,0,186,181,0,0,186,181,0,0,186,181,0,0,186,181,0,0,186,181,0,0,188,181,0,0,188,181,0,0,188,181,0,0,188,181,0,0,190,181,0,0,190,181,0,0,198,181,0,0,198,181,0,0,200,181,0,0,200,181,0,0,200,181,0,0,204,181,0,0,210,181,0,0,210,181,0,0,214,181,0,0,218,181,0,0,220,181,0,0,220,181,0,0,220,181,0,0,220,181,0,0,220,181,0,0,220,181,0,0,220,181,0,0,222,181,0,0,222,181,0,0,224,181,0,0,226,181,0,0,226,181,0,0,230,181,0,0,230,181,0,0,230,181,0,0,232,181,0,0,236,181,0,0,238,181,0,0,244,181,0,0,248,181,0,0,250,181,0,0,250,181,0,0,250,181,0,0,254,181,0,0,2,182,0,0,2,182,0,0,4,182,0,0,4,182,0,0,8,182,0,0,14,182,0,0,14,182,0,0,14,182,0,0,20,182,0,0,24,182,0,0,24,182,0,0,26,182,0,0,28,182,0,0,30,182,0,0,34,182,0,0,34,182,0,0,38,182,0,0,38,182,0,0,38,182,0,0,38,182,0,0,40,182,0,0,40,182,0,0,40,182,0,0,44,182,0,0,46,182,0,0,50,182,0,0,54,182,0,0,54,182,0,0,54,182,0,0,56,182,0,0,60,182,0,0,60,182,0,0,60,182,0,0,60,182,0,0,62,182,0,0,64,182,0,0,64,182,0,0,64,182,0,0,70,182,0,0,72,182,0,0,74,182,0,0,78,182,0,0,80,182,0,0,80,182,0,0,82,182,0,0,86,182,0,0,86,182,0,0,86,182,0,0,86,182,0,0,86,182,0,0,88,182,0,0,88,182,0,0,88,182,0,0,94,182,0,0,100,182,0,0,102,182,0,0,108,182,0,0,110,182,0,0,114,182,0,0,118,182,0,0,122,182,0,0,122,182,0,0,122,182,0,0,122,182,0,0,124,182,0,0,124,182,0,0,130,182,0,0,134,182,0,0,138,182,0,0,142,182,0,0,142,182,0,0,142,182,0,0,146,182,0,0,150,182,0,0,152,182,0,0,152,182,0,0,152,182,0,0,152,182,0,0,154,182,0,0,154,182,0,0,156,182,0,0,156,182,0,0,158,182,0,0,158,182,0,0,158,182,0,0,160,182,0,0,164,182,0,0,164,182,0,0,164,182,0,0,164,182,0,0,164,182,0,0,164,182,0,0,164,182,0,0,170,182,0,0,170,182,0,0,172,182,0,0,182,182,0,0,184,182,0,0,196,182,0,0,196,182,0,0,198,182,0,0,198,182,0,0,200,182,0,0,200,182,0,0,204,182,0,0,204,182,0,0,204,182,0,0,206,182,0,0,206,182,0,0,206,182,0,0,206,182,0,0,206,182,0,0,206,182,0,0,206,182,0,0,210,182,0,0,210,182,0,0,210,182,0,0,218,182,0,0,218,182,0,0,220,182,0,0,220,182,0,0,220,182,0,0,222,182,0,0,226,182,0,0,228,182,0,0,232,182,0,0,232,182,0,0,234,182,0,0,234,182,0,0,234,182,0,0,238,182,0,0,240,182,0,0,240,182,0,0,246,182,0,0,248,182,0,0,248,182,0,0,248,182,0,0,248,182,0,0,248,182,0,0,254,182,0,0,254,182,0,0,254,182,0,0,2,183,0,0,4,183,0,0,4,183,0,0,4,183,0,0,6,183,0,0,12,183,0,0,12,183,0,0,12,183,0,0,12,183,0,0,12,183,0,0,12,183,0,0,14,183,0,0,14,183,0,0,16,183,0,0,28,183,0,0,28,183,0,0,36,183,0,0,36,183,0,0,36,183,0,0,40,183,0,0,40,183,0,0,46,183,0,0,58,183,0,0,60,183,0,0,62,183,0,0,62,183,0,0,62,183,0,0,68,183,0,0,68,183,0,0,68,183,0,0,68,183,0,0,68,183,0,0,72,183,0,0,72,183,0,0,72,183,0,0,72,183,0,0,72,183,0,0,74,183,0,0,86,183,0,0,90,183,0,0,90,183,0,0,90,183,0,0,90,183,0,0,90,183,0,0,90,183,0,0,92,183,0,0,96,183,0,0,96,183,0,0,100,183,0,0,108,183,0,0,110,183,0,0,110,183,0,0,124,183,0,0,124,183,0,0,126,183,0,0,128,183,0,0,128,183,0,0,130,183,0,0,130,183,0,0,150,183,0,0,152,183,0,0,154,183,0,0,156,183,0,0,158,183,0,0,160,183,0,0,162,183,0,0,162,183,0,0,170,183,0,0,170,183,0,0,170,183,0,0,170,183,0,0,172,183,0,0,174,183,0,0,176,183,0,0,176,183,0,0,178,183,0,0,178,183,0,0,178,183,0,0,178,183,0,0,178,183,0,0,178,183,0,0,184,183,0,0,188,183,0,0,190,183,0,0,190,183,0,0,190,183,0,0,190,183,0,0,190,183,0,0,190,183,0,0,196,183,0,0,198,183,0,0,204,183,0,0,204,183,0,0,204,183,0,0,204,183,0,0,206,183,0,0,210,183,0,0,210,183,0,0,214,183,0,0,216,183,0,0,216,183,0,0,220,183,0,0,222,183,0,0,228,183,0,0,230,183,0,0,230,183,0,0,230,183,0,0,230,183,0,0,232,183,0,0,232,183,0,0,232,183,0,0,232,183,0,0,248,183,0,0,252,183,0,0,252,183,0,0,252,183,0,0,254,183,0,0,8,184,0,0,8,184,0,0,16,184,0,0,18,184,0,0,26,184,0,0,26,184,0,0,28,184,0,0,34,184,0,0,34,184,0,0,34,184,0,0,36,184,0,0,36,184,0,0,36,184,0,0,40,184,0,0,46,184,0,0,46,184,0,0,46,184,0,0,50,184,0,0,50,184,0,0,52,184,0,0,52,184,0,0,56,184,0,0,60,184,0,0,60,184,0,0,62,184,0,0,70,184,0,0,76,184,0,0,78,184,0,0,82,184,0,0,82,184,0,0,82,184,0,0,86,184,0,0,88,184,0,0,90,184,0,0,92,184,0,0,96,184,0,0,96,184,0,0,98,184,0,0,100,184,0,0,100,184,0,0,100,184,0,0,104,184,0,0,104,184,0,0,104,184,0,0,106,184,0,0,108,184,0,0,108,184,0,0,110,184,0,0,112,184,0,0,112,184,0,0,112,184,0,0,112,184,0,0,114,184,0,0,118,184,0,0,122,184,0,0,122,184,0,0,122,184,0,0,124,184,0,0,132,184,0,0,132,184,0,0,132,184,0,0,132,184,0,0,132,184,0,0,134,184,0,0,138,184,0,0,138,184,0,0,138,184,0,0,138,184,0,0,138,184,0,0,144,184,0,0,148,184,0,0,154,184,0,0,154,184,0,0,168,184,0,0,168,184,0,0,168,184,0,0,170,184,0,0,170,184,0,0,170,184,0,0,172,184,0,0,180,184,0,0,180,184,0,0,180,184,0,0,182,184,0,0,184,184,0,0,190,184,0,0,190,184,0,0,190,184,0,0,190,184,0,0,192,184,0,0,194,184,0,0,194,184,0,0,200,184,0,0,200,184,0,0,200,184,0,0,204,184,0,0,210,184,0,0,210,184,0,0,210,184,0,0,210,184,0,0,210,184,0,0,210,184,0,0,212,184,0,0,214,184,0,0,216,184,0,0,216,184,0,0,216,184,0,0,216,184,0,0,222,184,0,0,226,184,0,0,228,184,0,0,232,184,0,0,232,184,0,0,236,184,0,0,236,184,0,0,236,184,0,0,236,184,0,0,236,184,0,0,240,184,0,0,242,184,0,0,242,184,0,0,242,184,0,0,242,184,0,0,242,184,0,0,242,184,0,0,242,184,0,0,242,184,0,0,242,184,0,0,248,184,0,0,4,185,0,0,6,185,0,0,10,185,0,0,16,185,0,0,22,185,0,0,24,185,0,0,26,185,0,0,32,185,0,0,32,185,0,0,36,185,0,0,36,185,0,0,38,185,0,0,40,185,0,0,42,185,0,0,42,185,0,0,42,185,0,0,46,185,0,0,52,185,0,0,56,185,0,0,58,185,0,0,58,185,0,0,58,185,0,0,60,185,0,0,60,185,0,0,60,185,0,0,60,185,0,0,66,185,0,0,66,185,0,0,70,185,0,0,76,185,0,0,76,185,0,0,76,185,0,0,84,185,0,0,92,185,0,0,92,185,0,0,92,185,0,0,98,185,0,0,102,185,0,0,104,185,0,0,104,185,0,0,106,185,0,0,106,185,0,0,106,185,0,0,106,185,0,0,108,185,0,0,110,185,0,0,110,185,0,0,110,185,0,0,110,185,0,0,118,185,0,0,120,185,0,0,120,185,0,0,122,185,0,0,122,185,0,0,122,185,0,0,128,185,0,0,132,185,0,0,132,185,0,0,132,185,0,0,138,185,0,0,138,185,0,0,140,185,0,0,144,185,0,0,146,185,0,0,152,185,0,0,152,185,0,0,154,185,0,0,160,185,0,0,160,185,0,0,160,185,0,0,160,185,0,0,160,185,0,0,164,185,0,0,166,185,0,0,166,185,0,0,172,185,0,0,172,185,0,0,174,185,0,0,174,185,0,0,180,185,0,0,182,185,0,0,182,185,0,0,182,185,0,0,182,185,0,0,182,185,0,0,182,185,0,0,182,185,0,0,186,185,0,0,186,185,0,0,188,185,0,0,188,185,0,0,188,185,0,0,188,185,0,0,188,185,0,0,188,185,0,0,190,185,0,0,194,185,0,0,196,185,0,0,198,185,0,0,198,185,0,0,198,185,0,0,202,185,0,0,202,185,0,0,202,185,0,0,202,185,0,0,202,185,0,0,206,185,0,0,206,185,0,0,206,185,0,0,206,185,0,0,210,185,0,0,210,185,0,0,210,185,0,0,210,185,0,0,210,185,0,0,210,185,0,0,218,185,0,0,220,185,0,0,226,185,0,0,230,185,0,0,230,185,0,0,230,185,0,0,234,185,0,0,238,185,0,0,240,185,0,0,246,185,0,0,0,186,0,0,6,186,0,0,6,186,0,0,6,186,0,0,8,186,0,0,8,186,0,0,8,186,0,0,8,186,0,0,18,186,0,0,22,186,0,0,26,186,0,0,26,186,0,0,26,186,0,0,38,186,0,0,40,186,0,0,40,186,0,0,40,186,0,0,42,186,0,0,42,186,0,0,42,186,0,0,48,186,0,0,52,186,0,0,52,186,0,0,56,186,0,0,58,186,0,0,60,186,0,0,66,186,0,0,66,186,0,0,66,186,0,0,70,186,0,0,70,186,0,0,80,186,0,0,80,186,0,0,80,186,0,0,80,186,0,0,82,186,0,0,86,186,0,0,86,186,0,0,90,186,0,0,90,186,0,0,90,186,0,0,90,186,0,0,90,186,0,0,92,186,0,0,92,186,0,0,92,186,0,0,94,186,0,0,98,186,0,0,98,186,0,0,104,186,0,0,106,186,0,0,106,186,0,0,108,186,0,0,108,186,0,0,110,186,0,0,110,186,0,0,110,186,0,0,116,186,0,0,116,186,0,0,116,186,0,0,122,186,0,0,124,186,0,0,124,186,0,0,126,186,0,0,126,186,0,0,132,186,0,0,136,186,0,0,138,186,0,0,138,186,0,0,138,186,0,0,138,186,0,0,138,186,0,0,144,186,0,0,146,186,0,0,154,186,0,0,154,186,0,0,156,186,0,0,156,186,0,0,156,186,0,0,160,186,0,0,160,186,0,0,162,186,0,0,164,186,0,0,164,186,0,0,174,186,0,0,174,186,0,0,174,186,0,0,176,186,0,0,178,186,0,0,178,186,0,0,178,186,0,0,178,186,0,0,178,186,0,0,180,186,0,0,182,186,0,0,182,186,0,0,182,186,0,0,182,186,0,0,182,186,0,0,182,186,0,0,182,186,0,0,186,186,0,0,188,186,0,0,194,186,0,0,198,186,0,0,200,186,0,0,202,186,0,0,206,186,0,0,208,186,0,0,208,186,0,0,208,186,0,0,208,186,0,0,208,186,0,0,208,186,0,0,212,186,0,0,212,186,0,0,216,186,0,0,216,186,0,0,216,186,0,0,218,186,0,0,224,186,0,0,226,186,0,0,230,186,0,0,230,186,0,0,232,186,0,0,236,186,0,0,236,186,0,0,236,186,0,0,236,186,0,0,238,186,0,0,240,186,0,0,244,186,0,0,248,186,0,0,254,186,0,0,0,187,0,0,0,187,0,0,2,187,0,0,4,187,0,0,4,187,0,0,6,187,0,0,8,187,0,0,8,187,0,0,10,187,0,0,10,187,0,0,10,187,0,0,14,187,0,0,14,187,0,0,18,187,0,0,20,187,0,0,20,187,0,0,20,187,0,0,22,187,0,0,22,187,0,0,34,187,0,0,34,187,0,0,34,187,0,0,38,187,0,0,44,187,0,0,44,187,0,0,48,187,0,0,48,187,0,0,50,187,0,0,50,187,0,0,50,187,0,0,50,187,0,0,54,187,0,0,56,187,0,0,56,187,0,0,60,187,0,0,62,187,0,0,62,187,0,0,62,187,0,0,68,187,0,0,68,187,0,0,70,187,0,0,72,187,0,0,74,187,0,0,76,187,0,0,76,187,0,0,76,187,0,0,90,187,0,0,94,187,0,0,94,187,0,0,94,187,0,0,98,187,0,0,102,187,0,0,108,187,0,0,112,187,0,0,114,187,0,0,118,187,0,0,118,187,0,0,118,187,0,0,120,187,0,0,124,187,0,0,126,187,0,0,126,187,0,0,126,187,0,0,126,187,0,0,126,187,0,0,126,187,0,0,126,187,0,0,128,187,0,0,134,187,0,0,136,187,0,0,138,187,0,0,138,187,0,0,138,187,0,0,140,187,0,0,142,187,0,0,148,187,0,0,152,187,0,0,152,187,0,0,160,187,0,0,160,187,0,0,162,187,0,0,166,187,0,0,168,187,0,0,176,187,0,0,176,187,0,0,176,187,0,0,180,187,0,0,180,187,0,0,186,187,0,0,186,187,0,0,190,187,0,0,192,187,0,0,198,187,0,0,198,187,0,0,198,187,0,0,202,187,0,0,202,187,0,0,214,187,0,0,216,187,0,0,216,187,0,0,216,187,0,0,220,187,0,0,220,187,0,0,224,187,0,0,224,187,0,0,224,187,0,0,224,187,0,0,230,187,0,0,230,187,0,0,230,187,0,0,232,187,0,0,232,187,0,0,238,187,0,0,238,187,0,0,238,187,0,0,238,187,0,0,238,187,0,0,238,187,0,0,240,187,0,0,246,187,0,0,252,187,0,0,0,188,0,0,2,188,0,0,4,188,0,0,6,188,0,0,6,188,0,0,14,188,0,0,16,188,0,0,18,188,0,0,22,188,0,0,22,188,0,0,22,188,0,0,22,188,0,0,24,188,0,0,30,188,0,0,30,188,0,0,32,188,0,0,40,188,0,0,50,188,0,0,50,188,0,0,56,188,0,0,60,188,0,0,64,188,0,0,64,188,0,0,64,188,0,0,64,188,0,0,64,188,0,0,66,188,0,0,66,188,0,0,66,188,0,0,80,188,0,0,84,188,0,0,84,188,0,0,84,188,0,0,84,188,0,0,84,188,0,0,84,188,0,0,84,188,0,0,84,188,0,0,90,188,0,0,90,188,0,0,92,188,0,0,92,188,0,0,92,188,0,0,98,188,0,0,100,188,0,0,102,188,0,0,102,188,0,0,104,188,0,0,104,188,0,0,104,188,0,0,114,188,0,0,116,188,0,0,116,188,0,0,118,188,0,0,118,188,0,0,120,188,0,0,124,188,0,0,124,188,0,0,124,188,0,0,124,188,0,0,126,188,0,0,128,188,0,0,128,188,0,0,130,188,0,0,134,188,0,0,140,188,0,0,144,188,0,0,144,188,0,0,144,188,0,0,144,188,0,0,146,188,0,0,146,188,0,0,146,188,0,0,150,188,0,0,150,188,0,0,150,188,0,0,152,188,0,0,152,188,0,0,154,188,0,0,154,188,0,0,162,188,0,0,172,188,0,0,172,188,0,0,172,188,0,0,172,188,0,0,180,188,0,0,180,188,0,0,184,188,0,0,184,188,0,0,192,188,0,0,192,188,0,0,192,188,0,0,194,188,0,0,204,188,0,0,204,188,0,0,218,188,0,0,220,188,0,0,220,188,0,0,220,188,0,0,220,188,0,0,220,188,0,0,220,188,0,0,226,188,0,0,226,188,0,0,228,188,0,0,228,188,0,0,228,188,0,0,228,188,0,0,228,188,0,0,228,188,0,0,232,188,0,0,232,188,0,0,232,188,0,0,232,188,0,0,232,188,0,0,232,188,0,0,238,188,0,0,238,188,0,0,238,188,0,0,240,188,0,0,248,188,0,0,248,188,0,0,248,188,0,0,250,188,0,0,250,188,0,0,252,188,0,0,252,188,0,0,252,188,0,0,252,188,0,0,2,189,0,0,6,189,0,0,8,189,0,0,8,189,0,0,10,189,0,0,12,189,0,0,20,189,0,0,22,189,0,0,22,189,0,0,22,189,0,0,22,189,0,0,24,189,0,0,26,189,0,0,28,189,0,0,32,189,0,0,34,189,0,0,40,189,0,0,42,189,0,0,42,189,0,0,42,189,0,0,42,189,0,0,42,189,0,0,46,189,0,0,46,189,0,0,52,189,0,0,54,189,0,0,62,189,0,0,62,189,0,0,62,189,0,0,66,189,0,0,78,189,0,0,82,189,0,0,84,189,0,0,86,189,0,0,92,189,0,0,94,189,0,0,94,189,0,0,102,189,0,0,102,189,0,0,102,189,0,0,102,189,0,0,102,189,0,0,106,189,0,0,106,189,0,0,112,189,0,0,112,189,0,0,114,189,0,0,116,189,0,0,116,189,0,0,116,189,0,0,118,189,0,0,122,189,0,0,124,189,0,0,126,189,0,0,126,189,0,0,126,189,0,0,126,189,0,0,128,189,0,0,128,189,0,0,132,189,0,0,138,189,0,0,138,189,0,0,138,189,0,0,138,189,0,0,140,189,0,0,140,189,0,0,140,189,0,0,144,189,0,0,144,189,0,0,146,189,0,0,146,189,0,0,148,189,0,0,148,189,0,0,150,189,0,0,150,189,0,0,160,189,0,0,160,189,0,0,160,189,0,0,160,189,0,0,162,189,0,0,162,189,0,0,162,189,0,0,164,189,0,0,164,189,0,0,164,189,0,0,168,189,0,0,168,189,0,0,170,189,0,0,170,189,0,0,170,189,0,0,170,189,0,0,174,189,0,0,178,189,0,0,180,189,0,0,180,189,0,0,184,189,0,0,184,189,0,0,184,189,0,0,184,189,0,0,184,189,0,0,188,189,0,0,194,189,0,0,200,189,0,0,202,189,0,0,202,189,0,0,202,189,0,0,204,189,0,0,204,189,0,0,206,189,0,0,206,189,0,0,218,189,0,0,222,189,0,0,224,189,0,0,224,189,0,0,230,189,0,0,230,189,0,0,230,189,0,0,234,189,0,0,234,189,0,0,234,189,0,0,238,189,0,0,238,189,0,0,238,189,0,0,244,189,0,0,246,189,0,0,250,189,0,0,250,189,0,0,250,189,0,0,254,189,0,0,254,189,0,0,0,190,0,0,0,190,0,0,0,190,0,0,2,190,0,0,8,190,0,0,8,190,0,0,8,190,0,0,10,190,0,0,10,190,0,0,10,190,0,0,12,190,0,0,18,190,0,0,20,190,0,0,20,190,0,0,22,190,0,0,24,190,0,0,24,190,0,0,30,190,0,0,32,190,0,0,32,190,0,0,34,190,0,0,34,190,0,0,36,190,0,0,36,190,0,0,44,190,0,0,50,190,0,0,52,190,0,0,54,190,0,0,54,190,0,0,60,190,0,0,60,190,0,0,60,190,0,0,62,190,0,0,64,190,0,0,72,190,0,0,74,190,0,0,74,190,0,0,74,190,0,0,76,190,0,0,76,190,0,0,80,190,0,0,82,190,0,0,82,190,0,0,84,190,0,0,84,190,0,0,84,190,0,0,84,190,0,0,86,190,0,0,86,190,0,0,88,190,0,0,90,190,0,0,90,190,0,0,90,190,0,0,90,190,0,0,94,190,0,0,94,190,0,0,100,190,0,0,100,190,0,0,100,190,0,0,110,190,0,0,114,190,0,0,114,190,0,0,114,190,0,0,114,190,0,0,114,190,0,0,114,190,0,0,118,190,0,0,122,190,0,0,122,190,0,0,122,190,0,0,122,190,0,0,128,190,0,0,130,190,0,0,130,190,0,0,132,190,0,0,134,190,0,0,140,190,0,0,140,190,0,0,140,190,0,0,140,190,0,0,140,190,0,0,144,190,0,0,144,190,0,0,146,190,0,0,146,190,0,0,146,190,0,0,146,190,0,0,150,190,0,0,150,190,0,0,152,190,0,0,156,190,0,0,160,190,0,0,164,190,0,0,164,190,0,0,166,190,0,0,170,190,0,0,172,190,0,0,178,190,0,0,180,190,0,0,180,190,0,0,188,190,0,0,188,190,0,0,190,190,0,0,192,190,0,0,196,190,0,0,200,190,0,0,202,190,0,0,202,190,0,0,204,190,0,0,204,190,0,0,204,190,0,0,204,190,0,0,212,190,0,0,220,190,0,0,224,190,0,0,224,190,0,0,224,190,0,0,228,190,0,0,228,190,0,0,228,190,0,0,228,190,0,0,228,190,0,0,228,190,0,0,228,190,0,0,230,190,0,0,236,190,0,0,236,190,0,0,238,190,0,0,242,190,0,0,242,190,0,0,242,190,0,0,242,190,0,0,242,190,0,0,246,190,0,0,246,190,0,0,248,190,0,0,248,190,0,0,0,191,0,0,4,191,0,0,4,191,0,0,10,191,0,0,14,191,0,0,14,191,0,0,18,191,0,0,22,191,0,0,22,191,0,0,30,191,0,0,30,191,0,0,30,191,0,0,30,191,0,0,30,191,0,0,30,191,0,0,32,191,0,0,32,191,0,0,32,191,0,0,36,191,0,0,36,191,0,0,38,191,0,0,40,191,0,0,40,191,0,0,40,191,0,0,40,191,0,0,42,191,0,0,44,191,0,0,46,191,0,0,46,191,0,0,46,191,0,0,48,191,0,0,48,191,0,0,48,191,0,0,48,191,0,0,48,191,0,0,48,191,0,0,48,191,0,0,48,191,0,0,48,191,0,0,48,191,0,0,50,191,0,0,50,191,0,0,52,191,0,0,62,191,0,0,62,191,0,0,62,191,0,0,68,191,0,0,70,191,0,0,74,191,0,0,76,191,0,0,76,191,0,0,76,191,0,0,78,191,0,0,78,191,0,0,78,191,0,0,78,191,0,0,80,191,0,0,80,191,0,0,84,191,0,0,86,191,0,0,86,191,0,0,88,191,0,0,92,191,0,0,100,191,0,0,102,191,0,0,104,191,0,0,104,191,0,0,104,191,0,0,104,191,0,0,104,191,0,0,106,191,0,0,106,191,0,0,110,191,0,0,110,191,0,0,110,191,0,0,110,191,0,0,112,191,0,0,112,191,0,0,112,191,0,0,112,191,0,0,116,191,0,0,116,191,0,0,120,191,0,0,120,191,0,0,120,191,0,0,122,191,0,0,122,191,0,0,126,191,0,0,134,191,0,0,142,191,0,0,142,191,0,0,142,191,0,0,146,191,0,0,148,191,0,0,150,191,0,0,152,191,0,0,152,191,0,0,154,191,0,0,158,191,0,0,158,191,0,0,158,191,0,0,158,191,0,0,160,191,0,0,162,191,0,0,164,191,0,0,166,191,0,0,166,191,0,0,174,191,0,0,174,191,0,0,174,191,0,0,178,191,0,0,178,191,0,0,178,191,0,0,178,191,0,0,178,191,0,0,180,191,0,0,182,191,0,0,182,191,0,0,182,191,0,0,182,191,0,0,182,191,0,0,182,191,0,0,182,191,0,0,182,191,0,0,184,191,0,0,184,191,0,0,184,191,0,0,184,191,0,0,188,191,0,0,190,191,0,0,190,191,0,0,200,191,0,0,200,191,0,0,202,191,0,0,204,191,0,0,206,191,0,0,208,191,0,0,208,191,0,0,208,191,0,0,214,191,0,0,214,191,0,0,214,191,0,0,214,191,0,0,214,191,0,0,214,191,0,0,214,191,0,0,214,191,0,0,224,191,0,0,224,191,0,0,232,191,0,0,232,191,0,0,232,191,0,0,234,191,0,0,234,191,0,0,236,191,0,0,238,191,0,0,238,191,0,0,238,191,0,0,238,191,0,0,238,191,0,0,238,191,0,0,238,191,0,0,242,191,0,0,246,191,0,0,246,191,0,0,246,191,0,0,246,191,0,0,246,191,0,0,248,191,0,0,248,191,0,0,254,191,0,0,8,192,0,0,8,192,0,0,10,192,0,0,18,192,0,0,18,192,0,0,18,192,0,0,18,192,0,0,22,192,0,0,22,192,0,0,22,192,0,0,36,192,0,0,38,192,0,0,38,192,0,0,38,192,0,0,38,192,0,0,40,192,0,0,40,192,0,0,42,192,0,0,44,192,0,0,44,192,0,0,44,192,0,0,44,192,0,0,44,192,0,0,44,192,0,0,46,192,0,0,50,192,0,0,54,192,0,0,54,192,0,0,56,192,0,0,56,192,0,0,60,192,0,0,62,192,0,0,64,192,0,0,68,192,0,0,76,192,0,0,84,192,0,0,96,192,0,0,98,192,0,0,100,192,0,0,104,192,0,0,104,192,0,0,104,192,0,0,106,192,0,0,116,192,0,0,116,192,0,0,122,192,0,0,124,192,0,0,124,192,0,0,128,192,0,0,130,192,0,0,134,192,0,0,138,192,0,0,140,192,0,0,142,192,0,0,142,192,0,0,142,192,0,0,142,192,0,0,144,192,0,0,146,192,0,0,146,192,0,0,148,192,0,0,148,192,0,0,148,192,0,0,150,192,0,0,150,192,0,0,160,192,0,0,160,192,0,0,164,192,0,0,170,192,0,0,172,192,0,0,176,192,0,0,176,192,0,0,178,192,0,0,178,192,0,0,180,192,0,0,180,192,0,0,180,192,0,0,180,192,0,0,180,192,0,0,182,192,0,0,182,192,0,0,182,192,0,0,182,192,0,0,184,192,0,0,186,192,0,0,188,192,0,0,190,192,0,0,194,192,0,0,198,192,0,0,200,192,0,0,200,192,0,0,210,192,0,0,214,192,0,0,218,192,0,0,224,192,0,0,224,192,0,0,224,192,0,0,224,192,0,0,230,192,0,0,230,192,0,0,242,192,0,0,248,192,0,0,248,192,0,0,248,192,0,0,0,193,0,0,0,193,0,0,0,193,0,0,2,193,0,0,6,193,0,0,10,193,0,0,18,193,0,0,18,193,0,0,20,193,0,0,20,193,0,0,20,193,0,0,24,193,0,0,24,193,0,0,24,193,0,0,24,193,0,0,26,193,0,0,26,193,0,0,26,193,0,0,28,193,0,0,30,193,0,0,32,193,0,0,32,193,0,0,36,193,0,0,36,193,0,0,38,193,0,0,38,193,0,0,40,193,0,0,44,193,0,0,44,193,0,0,44,193,0,0,50,193,0,0,52,193,0,0,52,193,0,0,56,193,0,0,56,193,0,0,56,193,0,0,56,193,0,0,56,193,0,0,58,193,0,0,60,193,0,0,60,193,0,0,60,193,0,0,60,193,0,0,60,193,0,0,66,193,0,0,66,193,0,0,66,193,0,0,68,193,0,0,72,193,0,0,72,193,0,0,74,193,0,0,76,193,0,0,80,193,0,0,80,193,0,0,82,193,0,0,84,193,0,0,84,193,0,0,90,193,0,0,90,193,0,0,98,193,0,0,98,193,0,0,98,193,0,0,98,193,0,0,98,193,0,0,100,193,0,0,108,193,0,0,108,193,0,0,130,193,0,0,132,193,0,0,136,193,0,0,136,193,0,0,136,193,0,0,136,193,0,0,136,193,0,0,136,193,0,0,136,193,0,0,136,193,0,0,138,193,0,0,140,193,0,0,140,193,0,0,140,193,0,0,140,193,0,0,140,193,0,0,146,193,0,0,146,193,0,0,146,193,0,0,146,193,0,0,150,193,0,0,152,193,0,0,154,193,0,0,156,193,0,0,156,193,0,0,160,193,0,0,160,193,0,0,162,193,0,0,162,193,0,0,162,193,0,0,162,193,0,0,162,193,0,0,164,193,0,0,164,193,0,0,166,193,0,0,176,193,0,0,188,193,0,0,192,193,0,0,192,193,0,0,198,193,0,0,198,193,0,0,200,193,0,0,206,193,0,0,206,193,0,0,208,193,0,0,208,193,0,0,208,193,0,0,218,193,0,0,218,193,0,0,218,193,0,0,226,193,0,0,226,193,0,0,226,193,0,0,226,193,0,0,226,193,0,0,228,193,0,0,230,193,0,0,230,193,0,0,238,193,0,0,238,193,0,0,238,193,0,0,238,193,0,0,238,193,0,0,238,193,0,0,246,193,0,0,250,193,0,0,250,193,0,0,0,194,0,0,2,194,0,0,10,194,0,0,14,194,0,0,14,194,0,0,16,194,0,0,16,194,0,0,22,194,0,0,22,194,0,0,22,194,0,0,22,194,0,0,22,194,0,0,22,194,0,0,22,194,0,0,22,194,0,0,36,194,0,0,36,194,0,0,38,194,0,0,42,194,0,0,42,194,0,0,42,194,0,0,42,194,0,0,46,194,0,0,46,194,0,0,52,194,0,0,54,194,0,0,54,194,0,0,54,194,0,0,54,194,0,0,58,194,0,0,62,194,0,0,64,194,0,0,64,194,0,0,64,194,0,0,64,194,0,0,64,194,0,0,66,194,0,0,68,194,0,0,68,194,0,0,70,194,0,0,70,194,0,0,70,194,0,0,78,194,0,0,82,194,0,0,84,194,0,0,84,194,0,0,84,194,0,0,84,194,0,0,84,194,0,0,84,194,0,0,84,194,0,0,84,194,0,0,84,194,0,0,84,194,0,0,84,194,0,0,84,194,0,0,86,194,0,0,88,194,0,0,88,194,0,0,92,194,0,0,94,194,0,0,94,194,0,0,94,194,0,0,94,194,0,0,96,194,0,0,96,194,0,0,96,194,0,0,96,194,0,0,96,194,0,0,98,194,0,0,98,194,0,0,98,194,0,0,100,194,0,0,102,194,0,0,102,194,0,0,104,194,0,0,106,194,0,0,106,194,0,0,106,194,0,0,112,194,0,0,114,194,0,0,116,194,0,0,124,194,0,0,124,194,0,0,126,194,0,0,126,194,0,0,126,194,0,0,126,194,0,0,126,194,0,0,126,194,0,0,130,194,0,0,136,194,0,0,138,194,0,0,138,194,0,0,138,194,0,0,142,194,0,0,142,194,0,0,146,194,0,0,150,194,0,0,156,194,0,0,156,194,0,0,156,194,0,0,156,194,0,0,156,194,0,0,162,194,0,0,162,194,0,0,162,194,0,0,164,194,0,0,166,194,0,0,168,194,0,0,174,194,0,0,174,194,0,0,176,194,0,0,178,194,0,0,180,194,0,0,184,194,0,0,184,194,0,0,184,194,0,0,184,194,0,0,186,194,0,0,190,194,0,0,190,194,0,0,192,194,0,0,194,194,0,0,196,194,0,0,196,194,0,0,196,194,0,0,196,194,0,0,196,194,0,0,200,194,0,0,202,194,0,0,212,194,0,0,212,194,0,0,212,194,0,0,214,194,0,0,222,194,0,0,230,194,0,0,242,194,0,0,242,194,0,0,242,194,0,0,244,194,0,0,246,194,0,0,246,194,0,0,250,194,0,0,254,194,0,0,254,194,0,0,0,195,0,0,0,195,0,0,2,195,0,0,6,195,0,0,6,195,0,0,10,195,0,0,16,195,0,0,18,195,0,0,20,195,0,0,20,195,0,0,20,195,0,0,22,195,0,0,24,195,0,0,26,195,0,0,28,195,0,0,28,195,0,0,28,195,0,0,34,195,0,0,34,195,0,0,34,195,0,0,42,195,0,0,42,195,0,0,44,195,0,0,44,195,0,0,48,195,0,0,50,195,0,0,52,195,0,0,58,195,0,0,58,195,0,0,58,195,0,0,74,195,0,0,76,195,0,0,78,195,0,0,78,195,0,0,80,195,0,0,80,195,0,0,80,195,0,0,88,195,0,0,90,195,0,0,92,195,0,0,98,195,0,0,102,195,0,0,102,195,0,0,102,195,0,0,102,195,0,0,102,195,0,0,102,195,0,0,102,195,0,0,102,195,0,0,102,195,0,0,102,195,0,0,104,195,0,0,104,195,0,0,108,195,0,0,112,195,0,0,114,195,0,0,116,195,0,0,118,195,0,0,118,195,0,0,126,195,0,0,128,195,0,0,130,195,0,0,130,195,0,0,130,195,0,0,130,195,0,0,132,195,0,0,132,195,0,0,132,195,0,0,132,195,0,0,136,195,0,0,136,195,0,0,136,195,0,0,136,195,0,0,136,195,0,0,138,195,0,0,140,195,0,0,140,195,0,0,140,195,0,0,140,195,0,0,140,195,0,0,144,195,0,0,144,195,0,0,146,195,0,0,146,195,0,0,146,195,0,0,146,195,0,0,148,195,0,0,150,195,0,0,150,195,0,0,152,195,0,0,156,195,0,0,156,195,0,0,156,195,0,0,156,195,0,0,156,195,0,0,156,195,0,0,156,195,0,0,158,195,0,0,166,195,0,0,168,195,0,0,176,195,0,0,184,195,0,0,186,195,0,0,190,195,0,0,196,195,0,0,202,195,0,0,204,195,0,0,204,195,0,0,206,195,0,0,206,195,0,0,208,195,0,0,212,195,0,0,216,195,0,0,216,195,0,0,218,195,0,0,224,195,0,0,224,195,0,0,224,195,0,0,228,195,0,0,228,195,0,0,234,195,0,0,236,195,0,0,236,195,0,0,236,195,0,0,236,195,0,0,236,195,0,0,236,195,0,0,244,195,0,0,246,195,0,0,250,195,0,0,250,195,0,0,254,195,0,0,4,196,0,0,4,196,0,0,4,196,0,0,6,196,0,0,6,196,0,0,10,196,0,0,10,196,0,0,10,196,0,0,20,196,0,0,22,196,0,0,22,196,0,0,26,196,0,0,30,196,0,0,30,196,0,0,34,196,0,0,34,196,0,0,34,196,0,0,34,196,0,0,40,196,0,0,44,196,0,0,54,196,0,0,56,196,0,0,56,196,0,0,56,196,0,0,56,196,0,0,58,196,0,0,58,196,0,0,62,196,0,0,62,196,0,0,64,196,0,0,68,196,0,0,68,196,0,0,72,196,0,0,74,196,0,0,76,196,0,0,76,196,0,0,78,196,0,0,78,196,0,0,82,196,0,0,82,196,0,0,84,196,0,0,90,196,0,0,90,196,0,0,90,196,0,0,96,196,0,0,102,196,0,0,104,196,0,0,104,196,0,0,108,196,0,0,112,196,0,0,116,196,0,0,116,196,0,0,118,196,0,0,120,196,0,0,132,196,0,0,132,196,0,0,132,196,0,0,132,196,0,0,134,196,0,0,134,196,0,0,134,196,0,0,134,196,0,0,134,196,0,0,138,196,0,0,138,196,0,0,144,196,0,0,148,196,0,0,148,196,0,0,150,196,0,0,150,196,0,0,150,196,0,0,160,196,0,0,160,196,0,0,160,196,0,0,160,196,0,0,160,196,0,0,162,196,0,0,162,196,0,0,162,196,0,0,164,196,0,0,164,196,0,0,168,196,0,0,168,196,0,0,168,196,0,0,170,196,0,0,170,196,0,0,170,196,0,0,170,196,0,0,172,196,0,0,174,196,0,0,174,196,0,0,174,196,0,0,176,196,0,0,176,196,0,0,176,196,0,0,176,196,0,0,178,196,0,0,178,196,0,0,180,196,0,0,184,196,0,0,186,196,0,0,186,196,0,0,188,196,0,0,192,196,0,0,196,196,0,0,196,196,0,0,196,196,0,0,196,196,0,0,198,196,0,0,202,196,0,0,204,196,0,0,206,196,0,0,208,196,0,0,212,196,0,0,214,196,0,0,214,196,0,0,214,196,0,0,214,196,0,0,224,196,0,0,224,196,0,0,224,196,0,0,230,196,0,0,230,196,0,0,236,196,0,0,240,196,0,0,248,196,0,0,252,196,0,0,252,196,0,0,252,196,0,0,252,196,0,0,252,196,0,0,252,196,0,0,252,196,0,0,252,196,0,0,252,196,0,0,6,197,0,0,8,197,0,0,12,197,0,0,12,197,0,0,14,197,0,0,18,197,0,0,18,197,0,0,18,197,0,0,22,197,0,0,24,197,0,0,26,197,0,0,26,197,0,0,30,197,0,0,32,197,0,0,32,197,0,0,32,197,0,0,32,197,0,0,32,197,0,0,36,197,0,0,38,197,0,0,40,197,0,0,42,197,0,0,42,197,0,0,44,197,0,0,46,197,0,0,50,197,0,0,50,197,0,0,50,197,0,0,52,197,0,0,52,197,0,0,62,197,0,0,72,197,0,0,72,197,0,0,78,197,0,0,80,197,0,0,82,197,0,0,84,197,0,0,86,197,0,0,90,197,0,0,90,197,0,0,92,197,0,0,92,197,0,0,92,197,0,0,92,197,0,0,94,197,0,0,94,197,0,0,98,197,0,0,100,197,0,0,100,197,0,0,100,197,0,0,100,197,0,0,106,197,0,0,106,197,0,0,106,197,0,0,108,197,0,0,112,197,0,0,116,197,0,0,130,197,0,0,130,197,0,0,130,197,0,0,130,197,0,0,132,197,0,0,134,197,0,0,146,197,0,0,146,197,0,0,146,197,0,0,150,197,0,0,152,197,0,0,152,197,0,0,152,197,0,0,158,197,0,0,158,197,0,0,158,197,0,0,158,197,0,0,158,197,0,0,160,197,0,0,160,197,0,0,166,197,0,0,168,197,0,0,168,197,0,0,174,197,0,0,182,197,0,0,182,197,0,0,188,197,0,0,188,197,0,0,188,197,0,0,188,197,0,0,188,197,0,0,188,197,0,0,188,197,0,0,194,197,0,0,194,197,0,0,196,197,0,0,198,197,0,0,200,197,0,0,200,197,0,0,200,197,0,0,202,197,0,0,202,197,0,0,204,197,0,0,206,197,0,0,208,197,0,0,208,197,0,0,216,197,0,0,218,197,0,0,218,197,0,0,218,197,0,0,222,197,0,0,222,197,0,0,222,197,0,0,226,197,0,0,230,197,0,0,232,197,0,0,234,197,0,0,234,197,0,0,234,197,0,0,234,197,0,0,236,197,0,0,240,197,0,0,242,197,0,0,242,197,0,0,248,197,0,0,248,197,0,0,252,197,0,0,252,197,0,0,252,197,0,0,2,198,0,0,2,198,0,0,2,198,0,0,2,198,0,0,4,198,0,0,8,198,0,0,10,198,0,0,10,198,0,0,10,198,0,0,10,198,0,0,10,198,0,0,12,198,0,0,14,198,0,0,14,198,0,0,16,198,0,0,16,198,0,0,18,198,0,0,20,198,0,0,22,198,0,0,22,198,0,0,22,198,0,0,24,198,0,0,24,198,0,0,24,198,0,0,30,198,0,0,30,198,0,0,34,198,0,0,34,198,0,0,34,198,0,0,34,198,0,0,38,198,0,0,38,198,0,0,38,198,0,0,38,198,0,0,48,198,0,0,50,198,0,0,54,198,0,0,62,198,0,0,62,198,0,0,62,198,0,0,62,198,0,0,62,198,0,0,62,198,0,0,64,198,0,0,64,198,0,0,64,198,0,0,64,198,0,0,64,198,0,0,66,198,0,0,68,198,0,0,70,198,0,0,76,198,0,0,78,198,0,0,84,198,0,0,84,198,0,0,84,198,0,0,84,198,0,0,86,198,0,0,86,198,0,0,92,198,0,0,96,198,0,0,96,198,0,0,102,198,0,0,102,198,0,0,104,198,0,0,106,198,0,0,108,198,0,0,108,198,0,0,114,198,0,0,116,198,0,0,118,198,0,0,120,198,0,0,122,198,0,0,124,198,0,0,124,198,0,0,124,198,0,0,124,198,0,0,130,198,0,0,130,198,0,0,130,198,0,0,132,198,0,0,132,198,0,0,134,198,0,0,134,198,0,0,136,198,0,0,136,198,0,0,136,198,0,0,138,198,0,0,142,198,0,0,142,198,0,0,142,198,0,0,142,198,0,0,142,198,0,0,142,198,0,0,154,198,0,0,154,198,0,0,154,198,0,0,154,198,0,0,154,198,0,0,154,198,0,0,156,198,0,0,156,198,0,0,158,198,0,0,160,198,0,0,160,198,0,0,160,198,0,0,160,198,0,0,162,198,0,0,162,198,0,0,162,198,0,0,162,198,0,0,164,198,0,0,166,198,0,0,166,198,0,0,166,198,0,0,166,198,0,0,166,198,0,0,166,198,0,0,166,198,0,0,166,198,0,0,166,198,0,0,166,198,0,0,166,198,0,0,168,198,0,0,174,198,0,0,174,198,0,0,184,198,0,0,184,198,0,0,184,198,0,0,186,198,0,0,190,198,0,0,190,198,0,0,190,198,0,0,190,198,0,0,192,198,0,0,192,198,0,0,192,198,0,0,192,198,0,0,194,198,0,0,194,198,0,0,204,198,0,0,204,198,0,0,204,198,0,0,204,198,0,0,206,198,0,0,210,198,0,0,210,198,0,0,210,198,0,0,212,198,0,0,216,198,0,0,216,198,0,0,218,198,0,0,218,198,0,0,218,198,0,0,220,198,0,0,222,198,0,0,226,198,0,0,230,198,0,0,232,198,0,0,234,198,0,0,238,198,0,0,240,198,0,0,246,198,0,0,254,198,0,0,254,198,0,0,254,198,0,0,254,198,0,0,254,198,0,0,254,198,0,0,254,198,0,0,2,199,0,0,2,199,0,0,4,199,0,0,6,199,0,0,10,199,0,0,12,199,0,0,24,199,0,0,24,199,0,0,24,199,0,0,24,199,0,0,26,199,0,0,28,199,0,0,28,199,0,0,34,199,0,0,36,199,0,0,36,199,0,0,36,199,0,0,36,199,0,0,38,199,0,0,44,199,0,0,44,199,0,0,44,199,0,0,44,199,0,0,46,199,0,0,46,199,0,0,48,199,0,0,48,199,0,0,50,199,0,0,58,199,0,0,64,199,0,0,64,199,0,0,64,199,0,0,66,199,0,0,66,199,0,0,68,199,0,0,68,199,0,0,68,199,0,0,68,199,0,0,68,199,0,0,72,199,0,0,72,199,0,0,72,199,0,0,72,199,0,0,72,199,0,0,74,199,0,0,74,199,0,0,74,199,0,0,76,199,0,0,76,199,0,0,76,199,0,0,76,199,0,0,82,199,0,0,82,199,0,0,84,199,0,0,84,199,0,0,84,199,0,0,84,199,0,0,90,199,0,0,92,199,0,0,94,199,0,0,102,199,0,0,102,199,0,0,102,199,0,0,108,199,0,0,112,199,0,0,112,199,0,0,112,199,0,0,112,199,0,0,114,199,0,0,114,199,0,0,122,199,0,0,122,199,0,0,122,199,0,0,128,199,0,0,128,199,0,0,128,199,0,0,128,199,0,0,130,199,0,0,130,199,0,0,132,199,0,0,134,199,0,0,142,199,0,0,148,199,0,0,150,199,0,0,156,199,0,0,160,199,0,0,162,199,0,0,162,199,0,0,162,199,0,0,166,199,0,0,168,199,0,0,170,199,0,0,170,199,0,0,170,199,0,0,178,199,0,0,182,199,0,0,188,199,0,0,190,199,0,0,190,199,0,0,196,199,0,0,198,199,0,0,202,199,0,0,204,199,0,0,204,199,0,0,204,199,0,0,204,199,0,0,204,199,0,0,204,199,0,0,208,199,0,0,212,199,0,0,214,199,0,0,216,199,0,0,216,199,0,0,216,199,0,0,222,199,0,0,222,199,0,0,224,199,0,0,226,199,0,0,226,199,0,0,228,199,0,0,228,199,0,0,236,199,0,0,238,199,0,0,242,199,0,0,242,199,0,0,242,199,0,0,242,199,0,0,242,199,0,0,242,199,0,0,244,199,0,0,244,199,0,0,244,199,0,0,244,199,0,0,246,199,0,0,246,199,0,0,246,199,0,0,248,199,0,0,248,199,0,0,248,199,0,0,252,199,0,0,252,199,0,0,252,199,0,0,0,200,0,0,0,200,0,0,0,200,0,0,4,200,0,0,4,200,0,0,4,200,0,0,4,200,0,0,4,200,0,0,8,200,0,0,8,200,0,0,10,200,0,0,12,200,0,0,12,200,0,0,34,200,0,0,34,200,0,0,34,200,0,0,34,200,0,0,34,200,0,0,34,200,0,0,38,200,0,0,38,200,0,0,38,200,0,0,38,200,0,0,38,200,0,0,46,200,0,0,52,200,0,0,52,200,0,0,54,200,0,0,54,200,0,0,56,200,0,0,56,200,0,0,60,200,0,0,60,200,0,0,60,200,0,0,62,200,0,0,62,200,0,0,70,200,0,0,78,200,0,0,80,200,0,0,80,200,0,0,86,200,0,0,90,200,0,0,92,200,0,0,92,200,0,0,92,200,0,0,92,200,0,0,92,200,0,0,96,200,0,0,96,200,0,0,98,200,0,0,98,200,0,0,100,200,0,0,100,200,0,0,102,200,0,0,104,200,0,0,104,200,0,0,104,200,0,0,106,200,0,0,108,200,0,0,112,200,0,0,112,200,0,0,112,200,0,0,118,200,0,0,118,200,0,0,122,200,0,0,124,200,0,0,124,200,0,0,130,200,0,0,130,200,0,0,132,200,0,0,132,200,0,0,138,200,0,0,138,200,0,0,146,200,0,0,150,200,0,0,156,200,0,0,156,200,0,0,156,200,0,0,158,200,0,0,160,200,0,0,160,200,0,0,162,200,0,0,164,200,0,0,164,200,0,0,166,200,0,0,166,200,0,0,166,200,0,0,170,200,0,0,170,200,0,0,172,200,0,0,172,200,0,0,174,200,0,0,176,200,0,0,178,200,0,0,178,200,0,0,178,200,0,0,180,200,0,0,186,200,0,0,186,200,0,0,188,200,0,0,194,200,0,0,198,200,0,0,198,200,0,0,198,200,0,0,200,200,0,0,202,200,0,0,202,200,0,0,204,200,0,0,206,200,0,0,206,200,0,0,206,200,0,0,208,200,0,0,212,200,0,0,214,200,0,0,214,200,0,0,214,200,0,0,218,200,0,0,220,200,0,0,224,200,0,0,226,200,0,0,230,200,0,0,236,200,0,0,236,200,0,0,236,200,0,0,236,200,0,0,238,200,0,0,238,200,0,0,246,200,0,0,246,200,0,0,246,200,0,0,246,200,0,0,248,200,0,0,250,200,0,0,250,200,0,0,250,200,0,0,250,200,0,0,250,200,0,0,252,200,0,0,252,200,0,0,252,200,0,0,4,201,0,0,4,201,0,0,4,201,0,0,8,201,0,0,8,201,0,0,8,201,0,0,10,201,0,0,10,201,0,0,10,201,0,0,12,201,0,0,12,201,0,0,18,201,0,0,20,201,0,0,24,201,0,0,30,201,0,0,30,201,0,0,40,201,0,0,48,201,0,0,54,201,0,0,56,201,0,0,58,201,0,0,62,201,0,0,66,201,0,0,66,201,0,0,68,201,0,0,68,201,0,0,68,201,0,0,68,201,0,0,70,201,0,0,70,201,0,0,70,201,0,0,70,201,0,0,70,201,0,0,72,201,0,0,78,201,0,0,78,201,0,0,78,201,0,0,78,201,0,0,78,201,0,0,80,201,0,0,84,201,0,0,92,201,0,0,94,201,0,0,94,201,0,0,100,201,0,0,102,201,0,0,106,201,0,0,106,201,0,0,106,201,0,0,106,201,0,0,106,201,0,0,110,201,0,0,110,201,0,0,110,201,0,0,114,201,0,0,114,201,0,0,114,201,0,0,118,201,0,0,118,201,0,0,120,201,0,0,120,201,0,0,120,201,0,0,120,201,0,0,120,201,0,0,120,201,0,0,120,201,0,0,120,201,0,0,122,201,0,0,122,201,0,0,130,201,0,0,136,201,0,0,136,201,0,0,136,201,0,0,146,201,0,0,146,201,0,0,146,201,0,0,146,201,0,0,146,201,0,0,146,201,0,0,146,201,0,0,148,201,0,0,148,201,0,0,148,201,0,0,148,201,0,0,158,201,0,0,158,201,0,0,158,201,0,0,160,201,0,0,166,201,0,0,166,201,0,0,166,201,0,0,166,201,0,0,166,201,0,0,170,201,0,0,174,201,0,0,174,201,0,0,174,201,0,0,178,201,0,0,180,201,0,0,184,201,0,0,188,201,0,0,188,201,0,0,188,201,0,0,190,201,0,0,192,201,0,0,192,201,0,0,192,201,0,0,192,201,0,0,192,201,0,0,194,201,0,0,204,201,0,0,204,201,0,0,206,201,0,0,206,201,0,0,206,201,0,0,212,201,0,0,224,201,0,0,226,201,0,0,228,201,0,0,228,201,0,0,228,201,0,0,228,201,0,0,228,201,0,0,228,201,0,0,230,201,0,0,230,201,0,0,234,201,0,0,242,201,0,0,242,201,0,0,242,201,0,0,248,201,0,0,250,201,0,0,250,201,0,0,252,201,0,0,254,201,0,0,0,202,0,0,2,202,0,0,2,202,0,0,2,202,0,0,6,202,0,0,6,202,0,0,6,202,0,0,14,202,0,0,16,202,0,0,20,202,0,0,28,202,0,0,36,202,0,0,40,202,0,0,40,202,0,0,42,202,0,0,42,202,0,0,48,202,0,0,50,202,0,0,58,202,0,0,58,202,0,0,60,202,0,0,60,202,0,0,64,202,0,0,66,202,0,0,66,202,0,0,70,202,0,0,74,202,0,0,74,202,0,0,74,202,0,0,74,202,0,0,78,202,0,0,82,202,0,0,82,202,0,0,86,202,0,0,96,202,0,0,96,202,0,0,96,202,0,0,96,202,0,0,96,202,0,0,98,202,0,0,98,202,0,0,98,202,0,0,102,202,0,0,104,202,0,0,110,202,0,0,110,202,0,0,120,202,0,0,120,202,0,0,122,202,0,0,122,202,0,0,128,202,0,0,130,202,0,0,134,202,0,0,136,202,0,0,142,202,0,0,144,202,0,0,144,202,0,0,144,202,0,0,150,202,0,0,150,202,0,0,150,202,0,0,150,202,0,0,152,202,0,0,152,202,0,0,154,202,0,0,154,202,0,0,158,202,0,0,158,202,0,0,160,202,0,0,162,202,0,0,162,202,0,0,164,202,0,0,164,202,0,0,164,202,0,0,164,202,0,0,164,202,0,0,164,202,0,0,168,202,0,0,168,202,0,0,174,202,0,0,182,202,0,0,182,202,0,0,182,202,0,0,182,202,0,0,182,202,0,0,184,202,0,0,186,202,0,0,188,202,0,0,188,202,0,0,188,202,0,0,188,202,0,0,190,202,0,0,192,202,0,0,194,202,0,0,194,202,0,0,194,202,0,0,200,202,0,0,202,202,0,0,202,202,0,0,202,202,0,0,206,202,0,0,206,202,0,0,212,202,0,0,212,202,0,0,212,202,0,0,216,202,0,0,216,202,0,0,224,202,0,0,224,202,0,0,224,202,0,0,224,202,0,0,224,202,0,0,226,202,0,0,226,202,0,0,228,202,0,0,232,202,0,0,232,202,0,0,232,202,0,0,234,202,0,0,236,202,0,0,240,202,0,0,244,202,0,0,246,202,0,0,246,202,0,0,246,202,0,0,246,202,0,0,246,202,0,0,246,202,0,0,246,202,0,0,250,202,0,0,250,202,0,0,252,202,0,0,252,202,0,0,254,202,0,0,0,203,0,0,2,203,0,0,4,203,0,0,4,203,0,0,4,203,0,0,8,203,0,0,8,203,0,0,20,203,0,0,22,203,0,0,22,203,0,0,22,203,0,0,32,203,0,0,32,203,0,0,32,203,0,0,32,203,0,0,32,203,0,0,34,203,0,0,36,203,0,0,42,203,0,0,42,203,0,0,44,203,0,0,50,203,0,0,50,203,0,0,54,203,0,0,54,203,0,0,56,203,0,0,60,203,0,0,60,203,0,0,60,203,0,0,64,203,0,0,64,203,0,0,66,203,0,0,66,203,0,0,72,203,0,0,76,203,0,0,76,203,0,0,78,203,0,0,80,203,0,0,80,203,0,0,86,203,0,0,86,203,0,0,90,203,0,0,94,203,0,0,94,203,0,0,100,203,0,0,100,203,0,0,100,203,0,0,100,203,0,0,104,203,0,0,108,203,0,0,108,203,0,0,108,203,0,0,114,203,0,0,114,203,0,0,120,203,0,0,120,203,0,0,124,203,0,0,130,203,0,0,134,203,0,0,136,203,0,0,136,203,0,0,136,203,0,0,136,203,0,0,136,203,0,0,144,203,0,0,144,203,0,0,144,203,0,0,152,203,0,0,154,203,0,0,154,203,0,0,154,203,0,0,156,203,0,0,156,203,0,0,156,203,0,0,166,203,0,0,166,203,0,0,166,203,0,0,168,203,0,0,170,203,0,0,172,203,0,0,172,203,0,0,172,203,0,0,176,203,0,0,178,203,0,0,180,203,0,0,182,203,0,0,182,203,0,0,186,203,0,0,188,203,0,0,188,203,0,0,188,203,0,0,194,203,0,0,194,203,0,0,202,203,0,0,202,203,0,0,202,203,0,0,208,203,0,0,210,203,0,0,212,203,0,0,214,203,0,0,220,203,0,0,222,203,0,0,222,203,0,0,222,203,0,0,222,203,0,0,224,203,0,0,224,203,0,0,224,203,0,0,228,203,0,0,234,203,0,0,238,203,0,0,238,203,0,0,240,203,0,0,246,203,0,0,246,203,0,0,248,203,0,0,248,203,0,0,248,203,0,0,248,203,0,0,250,203,0,0,250,203,0,0,252,203,0,0,254,203,0,0,2,204,0,0,2,204,0,0,10,204,0,0,12,204,0,0,18,204,0,0,22,204,0,0,22,204,0,0,22,204,0,0,28,204,0,0,28,204,0,0,32,204,0,0,34,204,0,0,34,204,0,0,34,204,0,0,40,204,0,0,40,204,0,0,42,204,0,0,42,204,0,0,46,204,0,0,52,204,0,0,54,204,0,0,54,204,0,0,64,204,0,0,68,204,0,0,70,204,0,0,70,204,0,0,70,204,0,0,70,204,0,0,74,204,0,0,74,204,0,0,80,204,0,0,84,204,0,0,84,204,0,0,90,204,0,0,94,204,0,0,100,204,0,0,100,204,0,0,100,204,0,0,100,204,0,0,100,204,0,0,104,204,0,0,108,204,0,0,108,204,0,0,118,204,0,0,120,204,0,0,124,204,0,0,126,204,0,0,128,204,0,0,132,204,0,0,140,204,0,0,140,204,0,0,140,204,0,0,140,204,0,0,140,204,0,0,140,204,0,0,142,204,0,0,142,204,0,0,144,204,0,0,144,204,0,0,148,204,0,0,148,204,0,0,150,204,0,0,150,204,0,0,150,204,0,0,150,204,0,0,150,204,0,0,154,204,0,0,156,204,0,0,156,204,0,0,158,204,0,0,162,204,0,0,168,204,0,0,168,204,0,0,168,204,0,0,168,204,0,0,168,204,0,0,168,204,0,0,170,204,0,0,180,204,0,0,182,204,0,0,186,204,0,0,188,204,0,0,190,204,0,0,192,204,0,0,196,204,0,0,196,204,0,0,196,204,0,0,196,204,0,0,198,204,0,0,198,204,0,0,198,204,0,0,200,204,0,0,200,204,0,0,206,204,0,0,206,204,0,0,206,204,0,0,210,204,0,0,210,204,0,0,216,204,0,0,222,204,0,0,222,204,0,0,222,204,0,0,222,204,0,0,222,204,0,0,222,204,0,0,222,204,0,0,222,204,0,0,222,204,0,0,222,204,0,0,224,204,0,0,224,204,0,0,224,204,0,0,224,204,0,0,224,204,0,0,224,204,0,0,224,204,0,0,224,204,0,0,224,204,0,0,226,204,0,0,226,204,0,0,226,204,0,0,228,204,0,0,242,204,0,0,242,204,0,0,248,204,0,0,252,204,0,0,252,204,0,0,252,204,0,0,252,204,0,0,2,205,0,0,2,205,0,0,2,205,0,0,2,205,0,0,2,205,0,0,4,205,0,0,14,205,0,0,18,205,0,0,20,205,0,0,22,205,0,0,24,205,0,0,24,205,0,0,24,205,0,0,24,205,0,0,28,205,0,0,36,205,0,0,42,205,0,0,42,205,0,0,42,205,0,0,44,205,0,0,52,205,0,0,52,205,0,0,52,205,0,0,52,205,0,0,54,205,0,0,54,205,0,0,60,205,0,0,60,205,0,0,66,205,0,0,72,205,0,0,72,205,0,0,74,205,0,0,74,205,0,0,76,205,0,0,76,205,0,0,84,205,0,0,90,205,0,0,90,205,0,0,90,205,0,0,94,205,0,0,100,205,0,0,100,205,0,0,106,205,0,0,108,205,0,0,112,205,0,0,118,205,0,0,122,205,0,0,122,205,0,0,122,205,0,0,124,205,0,0,126,205,0,0,126,205,0,0,128,205,0,0,128,205,0,0,128,205,0,0,128,205,0,0,128,205,0,0,134,205,0,0,142,205,0,0,146,205,0,0,146,205,0,0,146,205,0,0,150,205,0,0,150,205,0,0,154,205,0,0,154,205,0,0,156,205,0,0,156,205,0,0,160,205,0,0,160,205,0,0,160,205,0,0,162,205,0,0,162,205,0,0,170,205,0,0,180,205,0,0,182,205,0,0,182,205,0,0,182,205,0,0,192,205,0,0,192,205,0,0,192,205,0,0,192,205,0,0,192,205,0,0,198,205,0,0,198,205,0,0,202,205,0,0,204,205,0,0,204,205,0,0,208,205,0,0,208,205,0,0,208,205,0,0,210,205,0,0,210,205,0,0,210,205,0,0,212,205,0,0,214,205,0,0,214,205,0,0,218,205,0,0,218,205,0,0,220,205,0,0,220,205,0,0,220,205,0,0,220,205,0,0,232,205,0,0,232,205,0,0,236,205,0,0,242,205,0,0,242,205,0,0,242,205,0,0,244,205,0,0,244,205,0,0,244,205,0,0,244,205,0,0,246,205,0,0,248,205,0,0,250,205,0,0,250,205,0,0,250,205,0,0,250,205,0,0,250,205,0,0,0,206,0,0,0,206,0,0,0,206,0,0,10,206,0,0,10,206,0,0,12,206,0,0,16,206,0,0,18,206,0,0,18,206,0,0,28,206,0,0,28,206,0,0,34,206,0,0,38,206,0,0,46,206,0,0,46,206,0,0,46,206,0,0,46,206,0,0,48,206,0,0,52,206,0,0,52,206,0,0,54,206,0,0,62,206,0,0,64,206,0,0,64,206,0,0,68,206,0,0,68,206,0,0,74,206,0,0,78,206,0,0,78,206,0,0,80,206,0,0,80,206,0,0,80,206,0,0,82,206,0,0,82,206,0,0,82,206,0,0,84,206,0,0,84,206,0,0,84,206,0,0,84,206,0,0,84,206,0,0,92,206,0,0,104,206,0,0,104,206,0,0,108,206,0,0,108,206,0,0,108,206,0,0,108,206,0,0,108,206,0,0,108,206,0,0,108,206,0,0,112,206,0,0,112,206,0,0,114,206,0,0,116,206,0,0,116,206,0,0,116,206,0,0,116,206,0,0,118,206,0,0,118,206,0,0,120,206,0,0,120,206,0,0,120,206,0,0,120,206,0,0,122,206,0,0,122,206,0,0,132,206,0,0,136,206,0,0,136,206,0,0,136,206,0,0,136,206,0,0,140,206,0,0,140,206,0,0,140,206,0,0,142,206,0,0,142,206,0,0,146,206,0,0,146,206,0,0,150,206,0,0,150,206,0,0,150,206,0,0,150,206,0,0,152,206,0,0,154,206,0,0,154,206,0,0,154,206,0,0,158,206,0,0,158,206,0,0,158,206,0,0,162,206,0,0,164,206,0,0,164,206,0,0,164,206,0,0,170,206,0,0,176,206,0,0,176,206,0,0,182,206,0,0,182,206,0,0,182,206,0,0,182,206,0,0,184,206,0,0,186,206,0,0,192,206,0,0,192,206,0,0,194,206,0,0,194,206,0,0,194,206,0,0,194,206,0,0,194,206,0,0,194,206,0,0,204,206,0,0,206,206,0,0,206,206,0,0,208,206,0,0,208,206,0,0,208,206,0,0,222,206,0,0,224,206,0,0,228,206,0,0,230,206,0,0,232,206,0,0,236,206,0,0,236,206,0,0,236,206,0,0,236,206,0,0,236,206,0,0,236,206,0,0,236,206,0,0,238,206,0,0,240,206,0,0,246,206,0,0,246,206,0,0,248,206,0,0,250,206,0,0,250,206,0,0,250,206,0,0,252,206,0,0,0,207,0,0,12,207,0,0,12,207,0,0,14,207,0,0,14,207,0,0,14,207,0,0,14,207,0,0,14,207,0,0,22,207,0,0,26,207,0,0,26,207,0,0,26,207,0,0,28,207,0,0,28,207,0,0,32,207,0,0,32,207,0,0,34,207,0,0,38,207,0,0,38,207,0,0,38,207,0,0,38,207,0,0,38,207,0,0,40,207,0,0,44,207,0,0,44,207,0,0,44,207,0,0,44,207,0,0,44,207,0,0,46,207,0,0,46,207,0,0,50,207,0,0,52,207,0,0,52,207,0,0,54,207,0,0,58,207,0,0,58,207,0,0,60,207,0,0,70,207,0,0,72,207,0,0,78,207,0,0,78,207,0,0,78,207,0,0,78,207,0,0,84,207,0,0,86,207,0,0,88,207,0,0,88,207,0,0,92,207,0,0,92,207,0,0,92,207,0,0,92,207,0,0,94,207,0,0,98,207,0,0,104,207,0,0,106,207,0,0,118,207,0,0,118,207,0,0,118,207,0,0,120,207,0,0,120,207,0,0,122,207,0,0,122,207,0,0,124,207,0,0,126,207,0,0,126,207,0,0,126,207,0,0,128,207,0,0,128,207,0,0,128,207,0,0,130,207,0,0,132,207,0,0,132,207,0,0,132,207,0,0,132,207,0,0,132,207,0,0,132,207,0,0,132,207,0,0,132,207,0,0,132,207,0,0,132,207,0,0,138,207,0,0,138,207,0,0,138,207,0,0,138,207,0,0,138,207,0,0,138,207,0,0,138,207,0,0,138,207,0,0,146,207,0,0,146,207,0,0,148,207,0,0,148,207,0,0,148,207,0,0,150,207,0,0,150,207,0,0,150,207,0,0,154,207,0,0,154,207,0,0,154,207,0,0,160,207,0,0,164,207,0,0,164,207,0,0,164,207,0,0,166,207,0,0,170,207,0,0,170,207,0,0,172,207,0,0,172,207,0,0,172,207,0,0,176,207,0,0,180,207,0,0,180,207,0,0,180,207,0,0,180,207,0,0,180,207,0,0,180,207,0,0,180,207,0,0,186,207,0,0,186,207,0,0,188,207,0,0,190,207,0,0,194,207,0,0,196,207,0,0,196,207,0,0,198,207,0,0,204,207,0,0,208,207,0,0,210,207,0,0,212,207,0,0,214,207,0,0,216,207,0,0,220,207,0,0,224,207,0,0,224,207,0,0,230,207,0,0,234,207,0,0,234,207,0,0,234,207,0,0,236,207,0,0,236,207,0,0,236,207,0,0,238,207,0,0,240,207,0,0,240,207,0,0,244,207,0,0,244,207,0,0,244,207,0,0,246,207,0,0,246,207,0,0,248,207,0,0,248,207,0,0,254,207,0,0,8,208,0,0,10,208,0,0,14,208,0,0,18,208,0,0,22,208,0,0,28,208,0,0,34,208,0,0,34,208,0,0,34,208,0,0,34,208,0,0,40,208,0,0,40,208,0,0,40,208,0,0,40,208,0,0,42,208,0,0,42,208,0,0,44,208,0,0,44,208,0,0,50,208,0,0,50,208,0,0,50,208,0,0,54,208,0,0,56,208,0,0,58,208,0,0,58,208,0,0,60,208,0,0,60,208,0,0,62,208,0,0,66,208,0,0,68,208,0,0,78,208,0,0,78,208,0,0,86,208,0,0,92,208,0,0,96,208,0,0,96,208,0,0,98,208,0,0,102,208,0,0,104,208,0,0,104,208,0,0,106,208,0,0,114,208,0,0,114,208,0,0,116,208,0,0,118,208,0,0,122,208,0,0,122,208,0,0,122,208,0,0,124,208,0,0,124,208,0,0,124,208,0,0,128,208,0,0,130,208,0,0,136,208,0,0,140,208,0,0,144,208,0,0,144,208,0,0,150,208,0,0,150,208,0,0,150,208,0,0,150,208,0,0,152,208,0,0,154,208,0,0,156,208,0,0,158,208,0,0,160,208,0,0,162,208,0,0,162,208,0,0,164,208,0,0,170,208,0,0,170,208,0,0,170,208,0,0,170,208,0,0,170,208,0,0,172,208,0,0,172,208,0,0,172,208,0,0,176,208,0,0,176,208,0,0,188,208,0,0,192,208,0,0,192,208,0,0,192,208,0,0,192,208,0,0,192,208,0,0,194,208,0,0,196,208,0,0,198,208,0,0,204,208,0,0,204,208,0,0,206,208,0,0,206,208,0,0,206,208,0,0,210,208,0,0,212,208,0,0,212,208,0,0,212,208,0,0,216,208,0,0,220,208,0,0,220,208,0,0,222,208,0,0,230,208,0,0,230,208,0,0,236,208,0,0,236,208,0,0,238,208,0,0,238,208,0,0,242,208,0,0,242,208,0,0,242,208,0,0,242,208,0,0,242,208,0,0,244,208,0,0,244,208,0,0,246,208,0,0,246,208,0,0,246,208,0,0,246,208,0,0,250,208,0,0,250,208,0,0,252,208,0,0,252,208,0,0,254,208,0,0,6,209,0,0,6,209,0,0,8,209,0,0,12,209,0,0,12,209,0,0,14,209,0,0,18,209,0,0,18,209,0,0,18,209,0,0,22,209,0,0,22,209,0,0,22,209,0,0,24,209,0,0,24,209,0,0,24,209,0,0,24,209,0,0,24,209,0,0,26,209,0,0,30,209,0,0,32,209,0,0,36,209,0,0,36,209,0,0,36,209,0,0,36,209,0,0,36,209,0,0,40,209,0,0,40,209,0,0,42,209,0,0,44,209,0,0,46,209,0,0,46,209,0,0,46,209,0,0,48,209,0,0,52,209,0,0,56,209,0,0,56,209,0,0,58,209,0,0,60,209,0,0,62,209,0,0,62,209,0,0,64,209,0,0,64,209,0,0,64,209,0,0,64,209,0,0,64,209,0,0,64,209,0,0,64,209,0,0,68,209,0,0,68,209,0,0,70,209,0,0,74,209,0,0,78,209,0,0,78,209,0,0,82,209,0,0,84,209,0,0,84,209,0,0,86,209,0,0,88,209,0,0,94,209,0,0,98,209,0,0,110,209,0,0,110,209,0,0,110,209,0,0,112,209,0,0,116,209,0,0,124,209,0,0,128,209,0,0,128,209,0,0,134,209,0,0,134,209,0,0,136,209,0,0,136,209,0,0,138,209,0,0,140,209,0,0,146,209,0,0,146,209,0,0,148,209,0,0,150,209,0,0,150,209,0,0,150,209,0,0,150,209,0,0,150,209,0,0,156,209,0,0,158,209,0,0,158,209,0,0,158,209,0,0,160,209,0,0,160,209,0,0,166,209,0,0,166,209,0,0,168,209,0,0,168,209,0,0,170,209,0,0,172,209,0,0,172,209,0,0,172,209,0,0,172,209,0,0,174,209,0,0,176,209,0,0,178,209,0,0,178,209,0,0,178,209,0,0,178,209,0,0,178,209,0,0,178,209,0,0,180,209,0,0,180,209,0,0,180,209,0,0,182,209,0,0,184,209,0,0,184,209,0,0,184,209,0,0,184,209,0,0,186,209,0,0,186,209,0,0,186,209,0,0,194,209,0,0,196,209,0,0,198,209,0,0,198,209,0,0,198,209,0,0,198,209,0,0,198,209,0,0,198,209,0,0,198,209,0,0,204,209,0,0,206,209,0,0,208,209,0,0,208,209,0,0,208,209,0,0,220,209,0,0,220,209,0,0,220,209,0,0,220,209,0,0,220,209,0,0,222,209,0,0,222,209,0,0,222,209,0,0,228,209,0,0,230,209,0,0,230,209,0,0,230,209,0,0,230,209,0,0,234,209,0,0,236,209,0,0,236,209,0,0,238,209,0,0,240,209,0,0,240,209,0,0,242,209,0,0,244,209,0,0,244,209,0,0,244,209,0,0,244,209,0,0,244,209,0,0,0,210,0,0,0,210,0,0,2,210,0,0,2,210,0,0,4,210,0,0,8,210,0,0,10,210,0,0,10,210,0,0,10,210,0,0,24,210,0,0,24,210,0,0,26,210,0,0,26,210,0,0,26,210,0,0,26,210,0,0,26,210,0,0,28,210,0,0,30,210,0,0,30,210,0,0,32,210,0,0,32,210,0,0,36,210,0,0,38,210,0,0,38,210,0,0,38,210,0,0,38,210,0,0,38,210,0,0,38,210,0,0,40,210,0,0,44,210,0,0,44,210,0,0,44,210,0,0,48,210,0,0,48,210,0,0,48,210,0,0,48,210,0,0,48,210,0,0,50,210,0,0,50,210,0,0,54,210,0,0,56,210,0,0,56,210,0,0,58,210,0,0,60,210,0,0,60,210,0,0,66,210,0,0,66,210,0,0,68,210,0,0,70,210,0,0,72,210,0,0,72,210,0,0,74,210,0,0,76,210,0,0,80,210,0,0,82,210,0,0,88,210,0,0,88,210,0,0,88,210,0,0,92,210,0,0,92,210,0,0,92,210,0,0,96,210,0,0,96,210,0,0,96,210,0,0,100,210,0,0,106,210,0,0,106,210,0,0,106,210,0,0,106,210,0,0,106,210,0,0,110,210,0,0,110,210,0,0,110,210,0,0,112,210,0,0,112,210,0,0,116,210,0,0,116,210,0,0,126,210,0,0,128,210,0,0,128,210,0,0,132,210,0,0,132,210,0,0,132,210,0,0,140,210,0,0,140,210,0,0,140,210,0,0,142,210,0,0,144,210,0,0,146,210,0,0,148,210,0,0,150,210,0,0,150,210,0,0,150,210,0,0,152,210,0,0,158,210,0,0,158,210,0,0,158,210,0,0,158,210,0,0,158,210,0,0,158,210,0,0,158,210,0,0,160,210,0,0,162,210,0,0,162,210,0,0,166,210,0,0,166,210,0,0,168,210,0,0,172,210,0,0,176,210,0,0,176,210,0,0,176,210,0,0,178,210,0,0,182,210,0,0,186,210,0,0,190,210,0,0,192,210,0,0,192,210,0,0,192,210,0,0,194,210,0,0,200,210,0,0,202,210,0,0,202,210,0,0,204,210,0,0,206,210,0,0,210,210,0,0,210,210,0,0,210,210,0,0,214,210,0,0,216,210,0,0,228,210,0,0,230,210,0,0,230,210,0,0,236,210,0,0,240,210,0,0,244,210,0,0,244,210,0,0,248,210,0,0,248,210,0,0,2,211,0,0,2,211,0,0,2,211,0,0,8,211,0,0,10,211,0,0,16,211,0,0,16,211,0,0,22,211,0,0,22,211,0,0,22,211,0,0,22,211,0,0,28,211,0,0,34,211,0,0,36,211,0,0,36,211,0,0,38,211,0,0,42,211,0,0,42,211,0,0,44,211,0,0,46,211,0,0,48,211,0,0,48,211,0,0,48,211,0,0,48,211,0,0,50,211,0,0,50,211,0,0,52,211,0,0,52,211,0,0,54,211,0,0,54,211,0,0,54,211,0,0,54,211,0,0,54,211,0,0,56,211,0,0,60,211,0,0,60,211,0,0,60,211,0,0,60,211,0,0,62,211,0,0,62,211,0,0,62,211,0,0,66,211,0,0,66,211,0,0,66,211,0,0,68,211,0,0,68,211,0,0,68,211,0,0,68,211,0,0,70,211,0,0,70,211,0,0,72,211,0,0,72,211,0,0,72,211,0,0,72,211,0,0,76,211,0,0,80,211,0,0,88,211,0,0,88,211,0,0,92,211,0,0,96,211,0,0,96,211,0,0,96,211,0,0,96,211,0,0,100,211,0,0,100,211,0,0,102,211,0,0,102,211,0,0,102,211,0,0,104,211,0,0,104,211,0,0,106,211,0,0,106,211,0,0,106,211,0,0,108,211,0,0,108,211,0,0,110,211,0,0,112,211,0,0,118,211,0,0,118,211,0,0,120,211,0,0,120,211,0,0,120,211,0,0,120,211,0,0,122,211,0,0,126,211,0,0,128,211,0,0,132,211,0,0,132,211,0,0,136,211,0,0,136,211,0,0,138,211,0,0,138,211,0,0,138,211,0,0,140,211,0,0,140,211,0,0,142,211,0,0,142,211,0,0,150,211,0,0,152,211,0,0,154,211,0,0,154,211,0,0,156,211,0,0,156,211,0,0,168,211,0,0,168,211,0,0,168,211,0,0,172,211,0,0,176,211,0,0,176,211,0,0,176,211,0,0,184,211,0,0,184,211,0,0,184,211,0,0,186,211,0,0,186,211,0,0,186,211,0,0,188,211,0,0,188,211,0,0,190,211,0,0,190,211,0,0,190,211,0,0,192,211,0,0,194,211,0,0,196,211,0,0,196,211,0,0,208,211,0,0,210,211,0,0,210,211,0,0,220,211,0,0,222,211,0,0,228,211,0,0,230,211,0,0,232,211,0,0,234,211,0,0,238,211,0,0,252,211,0,0,252,211,0,0,252,211,0,0,254,211,0,0,2,212,0,0,2,212,0,0,16,212,0,0,16,212,0,0,20,212,0,0,20,212,0,0,22,212,0,0,22,212,0,0,24,212,0,0,30,212,0,0,34,212,0,0,38,212,0,0,40,212,0,0,40,212,0,0,46,212,0,0,52,212,0,0,52,212,0,0,54,212,0,0,54,212,0,0,54,212,0,0,54,212,0,0,56,212,0,0,62,212,0,0,62,212,0,0,64,212,0,0,64,212,0,0,72,212,0,0,74,212,0,0,82,212,0,0,82,212,0,0,82,212,0,0,82,212,0,0,84,212,0,0,84,212,0,0,86,212,0,0,86,212,0,0,92,212,0,0,94,212,0,0,94,212,0,0,96,212,0,0,96,212,0,0,96,212,0,0,96,212,0,0,96,212,0,0,98,212,0,0,102,212,0,0,104,212,0,0,108,212,0,0,108,212,0,0,108,212,0,0,108,212,0,0,108,212,0,0,110,212,0,0,110,212,0,0,110,212,0,0,110,212,0,0,112,212,0,0,112,212,0,0,112,212,0,0,118,212,0,0,118,212,0,0,118,212,0,0,118,212,0,0,122,212,0,0,122,212,0,0,124,212,0,0,126,212,0,0,128,212,0,0,128,212,0,0,130,212,0,0,130,212,0,0,134,212,0,0,140,212,0,0,140,212,0,0,148,212,0,0,150,212,0,0,150,212,0,0,158,212,0,0,158,212,0,0,158,212,0,0,160,212,0,0,162,212,0,0,166,212,0,0,166,212,0,0,168,212,0,0,174,212,0,0,174,212,0,0,174,212,0,0,176,212,0,0,178,212,0,0,180,212,0,0,180,212,0,0,180,212,0,0,186,212,0,0,188,212,0,0,190,212,0,0,190,212,0,0,190,212,0,0,192,212,0,0,194,212,0,0,198,212,0,0,200,212,0,0,200,212,0,0,200,212,0,0,200,212,0,0,202,212,0,0,202,212,0,0,202,212,0,0,202,212,0,0,204,212,0,0,204,212,0,0,204,212,0,0,208,212,0,0,210,212,0,0,214,212,0,0,214,212,0,0,218,212,0,0,218,212,0,0,218,212,0,0,220,212,0,0,220,212,0,0,220,212,0,0,220,212,0,0,220,212,0,0,220,212,0,0,226,212,0,0,226,212,0,0,230,212,0,0,230,212,0,0,236,212,0,0,238,212,0,0,238,212,0,0,238,212,0,0,242,212,0,0,242,212,0,0,242,212,0,0,246,212,0,0,246,212,0,0,246,212,0,0,248,212,0,0,248,212,0,0,250,212,0,0,252,212,0,0,2,213,0,0,2,213,0,0,2,213,0,0,2,213,0,0,8,213,0,0,8,213,0,0,10,213,0,0,12,213,0,0,18,213,0,0,18,213,0,0,18,213,0,0,28,213,0,0,30,213,0,0,30,213,0,0,30,213,0,0,30,213,0,0,30,213,0,0,30,213,0,0,36,213,0,0,36,213,0,0,40,213,0,0,40,213,0,0,42,213,0,0,42,213,0,0,44,213,0,0,44,213,0,0,44,213,0,0,44,213,0,0,46,213,0,0,48,213,0,0,48,213,0,0,58,213,0,0,60,213,0,0,60,213,0,0,62,213,0,0,62,213,0,0,68,213,0,0,68,213,0,0,74,213,0,0,74,213,0,0,74,213,0,0,74,213,0,0,78,213,0,0,80,213,0,0,80,213,0,0,82,213,0,0,82,213,0,0,82,213,0,0,82,213,0,0,82,213,0,0,82,213,0,0,84,213,0,0,84,213,0,0,84,213,0,0,90,213,0,0,100,213,0,0,100,213,0,0,100,213,0,0,100,213,0,0,100,213,0,0,100,213,0,0,102,213,0,0,102,213,0,0,106,213,0,0,110,213,0,0,116,213,0,0,124,213,0,0,130,213,0,0,134,213,0,0,136,213,0,0,138,213,0,0,142,213,0,0,144,213,0,0,146,213,0,0,146,213,0,0,146,213,0,0,148,213,0,0,150,213,0,0,150,213,0,0,150,213,0,0,150,213,0,0,150,213,0,0,150,213,0,0,156,213,0,0,156,213,0,0,158,213,0,0,158,213,0,0,162,213,0,0,162,213,0,0,164,213,0,0,170,213,0,0,172,213,0,0,172,213,0,0,176,213,0,0,178,213,0,0,178,213,0,0,182,213,0,0,182,213,0,0,184,213,0,0,190,213,0,0,190,213,0,0,190,213,0,0,192,213,0,0,206,213,0,0,212,213,0,0,214,213,0,0,218,213,0,0,218,213,0,0,218,213,0,0,218,213,0,0,222,213,0,0,222,213,0,0,222,213,0,0,226,213,0,0,228,213,0,0,230,213,0,0,230,213,0,0,230,213,0,0,232,213,0,0,234,213,0,0,236,213,0,0,238,213,0,0,244,213,0,0,244,213,0,0,246,213,0,0,246,213,0,0,246,213,0,0,248,213,0,0,248,213,0,0,250,213,0,0,250,213,0,0,254,213,0,0,254,213,0,0,254,213,0,0,2,214,0,0,4,214,0,0,4,214,0,0,6,214,0,0,6,214,0,0,6,214,0,0,8,214,0,0,12,214,0,0,12,214,0,0,14,214,0,0,14,214,0,0,14,214,0,0,20,214,0,0,20,214,0,0,22,214,0,0,34,214,0,0,34,214,0,0,40,214,0,0,40,214,0,0,40,214,0,0,40,214,0,0,40,214,0,0,44,214,0,0,44,214,0,0,44,214,0,0,44,214,0,0,46,214,0,0,82,214,0,0,84,214,0,0,90,214,0,0,92,214,0,0,100,214,0,0,100,214,0,0,100,214,0,0,106,214,0,0,108,214,0,0,112,214,0,0,112,214,0,0,112,214,0,0,112,214,0,0,112,214,0,0,112,214,0,0,112,214,0,0,112,214,0,0,114,214,0,0,116,214,0,0,118,214,0,0,118,214,0,0,122,214,0,0,134,214,0,0,134,214,0,0,134,214,0,0,134,214,0,0,136,214,0,0,140,214,0,0,150,214,0,0,152,214,0,0,152,214,0,0,152,214,0,0,152,214,0,0,154,214,0,0,154,214,0,0,154,214,0,0,154,214,0,0,158,214,0,0,158,214,0,0,164,214,0,0,170,214,0,0,170,214,0,0,170,214,0,0,172,214,0,0,172,214,0,0,174,214,0,0,174,214,0,0,180,214,0,0,184,214,0,0,184,214,0,0,188,214,0,0,188,214,0,0,192,214,0,0,196,214,0,0,198,214,0,0,200,214,0,0,202,214,0,0,214,214,0,0,214,214,0,0,220,214,0,0,224,214,0,0,228,214,0,0,230,214,0,0,232,214,0,0,232,214,0,0,232,214,0,0,236,214,0,0,240,214,0,0,240,214,0,0,244,214,0,0,244,214,0,0,248,214,0,0,250,214,0,0,250,214,0,0,250,214,0,0,252,214,0,0,6,215,0,0,8,215,0,0,8,215,0,0,8,215,0,0,10,215,0,0,10,215,0,0,14,215,0,0,18,215,0,0,24,215,0,0,24,215,0,0,24,215,0,0,24,215,0,0,24,215,0,0,24,215,0,0,24,215,0,0,32,215,0,0,40,215,0,0,40,215,0,0,40,215,0,0,40,215,0,0,40,215,0,0,42,215,0,0,42,215,0,0,44,215,0,0,52,215,0,0,58,215,0,0,58,215,0,0,60,215,0,0,60,215,0,0,66,215,0,0,68,215,0,0,68,215,0,0,68,215,0,0,68,215,0,0,74,215,0,0,78,215,0,0,78,215,0,0,78,215,0,0,78,215,0,0,78,215,0,0,82,215,0,0,86,215,0,0,88,215,0,0,88,215,0,0,88,215,0,0,92,215,0,0,92,215,0,0,92,215,0,0,92,215,0,0,94,215,0,0,96,215,0,0,102,215,0,0,102,215,0,0,102,215,0,0,104,215,0,0,114,215,0,0,118,215,0,0,118,215,0,0,122,215,0,0,134,215,0,0,138,215,0,0,138,215,0,0,142,215,0,0,142,215,0,0,152,215,0,0,152,215,0,0,152,215,0,0,154,215,0,0,154,215,0,0,156,215,0,0,158,215,0,0,158,215,0,0,164,215,0,0,164,215,0,0,164,215,0,0,164,215,0,0,168,215,0,0,170,215,0,0,170,215,0,0,178,215,0,0,178,215,0,0,180,215,0,0,180,215,0,0,180,215,0,0,180,215,0,0,180,215,0,0,180,215,0,0,180,215,0,0,182,215,0,0,190,215,0,0,194,215,0,0,196,215,0,0,200,215,0,0,202,215,0,0,204,215,0,0,206,215,0,0,210,215,0,0,214,215,0,0,218,215,0,0,222,215,0,0,222,215,0,0,222,215,0,0,226,215,0,0,226,215,0,0,230,215,0,0,236,215,0,0,238,215,0,0,238,215,0,0,240,215,0,0,240,215,0,0,242,215,0,0,242,215,0,0,246,215,0,0,246,215,0,0,248,215,0,0,248,215,0,0,248,215,0,0,0,216,0,0,0,216,0,0,2,216,0,0,2,216,0,0,6,216,0,0,8,216,0,0,8,216,0,0,8,216,0,0,8,216,0,0,10,216,0,0,10,216,0,0,14,216,0,0,14,216,0,0,22,216,0,0,22,216,0,0,22,216,0,0,24,216,0,0,28,216,0,0,32,216,0,0,36,216,0,0,36,216,0,0,36,216,0,0,36,216,0,0,38,216,0,0,46,216,0,0,48,216,0,0,58,216,0,0,58,216,0,0,64,216,0,0,64,216,0,0,66,216,0,0,70,216,0,0,70,216,0,0,74,216,0,0,76,216,0,0,76,216,0,0,86,216,0,0,86,216,0,0,88,216,0,0,90,216,0,0,90,216,0,0,92,216,0,0,92,216,0,0,92,216,0,0,92,216,0,0,96,216,0,0,102,216,0,0,102,216,0,0,102,216,0,0,104,216,0,0,106,216,0,0,116,216,0,0,116,216,0,0,118,216,0,0,118,216,0,0,128,216,0,0,134,216,0,0,134,216,0,0,146,216,0,0,150,216,0,0,150,216,0,0,150,216,0,0,156,216,0,0,156,216,0,0,158,216,0,0,160,216,0,0,162,216,0,0,162,216,0,0,164,216,0,0,172,216,0,0,178,216,0,0,182,216,0,0,186,216,0,0,186,216,0,0,186,216,0,0,186,216,0,0,186,216,0,0,192,216,0,0,194,216,0,0,200,216,0,0,200,216,0,0,200,216,0,0,202,216,0,0,202,216,0,0,202,216,0,0,202,216,0,0,208,216,0,0,212,216,0,0,212,216,0,0,218,216,0,0,222,216,0,0,222,216,0,0,224,216,0,0,226,216,0,0,226,216,0,0,226,216,0,0,228,216,0,0,228,216,0,0,230,216,0,0,234,216,0,0,240,216,0,0,244,216,0,0,244,216,0,0,248,216,0,0,248,216,0,0,248,216,0,0,250,216,0,0,252,216,0,0,0,217,0,0,0,217,0,0,12,217,0,0,16,217,0,0,22,217,0,0,22,217,0,0,28,217,0,0,28,217,0,0,28,217,0,0,28,217,0,0,28,217,0,0,30,217,0,0,30,217,0,0,30,217,0,0,30,217,0,0,30,217,0,0,30,217,0,0,30,217,0,0,30,217,0,0,32,217,0,0,32,217,0,0,32,217,0,0,38,217,0,0,38,217,0,0,40,217,0,0,40,217,0,0,42,217,0,0,44,217,0,0,44,217,0,0,44,217,0,0,44,217,0,0,44,217,0,0,50,217,0,0,52,217,0,0,52,217,0,0,52,217,0,0,52,217,0,0,52,217,0,0,52,217,0,0,54,217,0,0,54,217,0,0,56,217,0,0,56,217,0,0,56,217,0,0,56,217,0,0,58,217,0,0,68,217,0,0,78,217,0,0,80,217,0,0,86,217,0,0,88,217,0,0,88,217,0,0,90,217,0,0,94,217,0,0,96,217,0,0,98,217,0,0,104,217,0,0,104,217,0,0,108,217,0,0,110,217,0,0,114,217,0,0,114,217,0,0,116,217,0,0,124,217,0,0,126,217,0,0,130,217,0,0,134,217,0,0,134,217,0,0,136,217,0,0,136,217,0,0,140,217,0,0,140,217,0,0,148,217,0,0,148,217,0,0,148,217,0,0,148,217,0,0,152,217,0,0,152,217,0,0,156,217,0,0,156,217,0,0,166,217,0,0,166,217,0,0,168,217,0,0,170,217,0,0,170,217,0,0,172,217,0,0,176,217,0,0,180,217,0,0,182,217,0,0,182,217,0,0,182,217,0,0,182,217,0,0,190,217,0,0,200,217,0,0,200,217,0,0,206,217,0,0,212,217,0,0,214,217,0,0,214,217,0,0,214,217,0,0,214,217,0,0,222,217,0,0,222,217,0,0,222,217,0,0,226,217,0,0,226,217,0,0,226,217,0,0,226,217,0,0,230,217,0,0,230,217,0,0,230,217,0,0,230,217,0,0,230,217,0,0,230,217,0,0,230,217,0,0,236,217,0,0,238,217,0,0,240,217,0,0,240,217,0,0,244,217,0,0,244,217,0,0,244,217,0,0,244,217,0,0,244,217,0,0,246,217,0,0,246,217,0,0,246,217,0,0,246,217,0,0,248,217,0,0,254,217,0,0,254,217,0,0,254,217,0,0,254,217,0,0,254,217,0,0,254,217,0,0,254,217,0,0,254,217,0,0,254,217,0,0,254,217,0,0,2,218,0,0,4,218,0,0,4,218,0,0,10,218,0,0,10,218,0,0,10,218,0,0,16,218,0,0,16,218,0,0,16,218,0,0,16,218,0,0,16,218,0,0,16,218,0,0,16,218,0,0,18,218,0,0,22,218,0,0,22,218,0,0,22,218,0,0,24,218,0,0,24,218,0,0,24,218,0,0,24,218,0,0,28,218,0,0,28,218,0,0,30,218,0,0,30,218,0,0,30,218,0,0,32,218,0,0,40,218,0,0,44,218,0,0,44,218,0,0,44,218,0,0,44,218,0,0,44,218,0,0,44,218,0,0,46,218,0,0,48,218,0,0,48,218,0,0,48,218,0,0,52,218,0,0,54,218,0,0,60,218,0,0,60,218,0,0,62,218,0,0,68,218,0,0,68,218,0,0,68,218,0,0,68,218,0,0,70,218,0,0,74,218,0,0,74,218,0,0,76,218,0,0,82,218,0,0,82,218,0,0,84,218,0,0,86,218,0,0,86,218,0,0,90,218,0,0,90,218,0,0,90,218,0,0,94,218,0,0,94,218,0,0,94,218,0,0,98,218,0,0,100,218,0,0,100,218,0,0,102,218,0,0,104,218,0,0,108,218,0,0,110,218,0,0,112,218,0,0,118,218,0,0,118,218,0,0,122,218,0,0,122,218,0,0,122,218,0,0,122,218,0,0,122,218,0,0,122,218,0,0,122,218,0,0,122,218,0,0,122,218,0,0,122,218,0,0,126,218,0,0,126,218,0,0,128,218,0,0,128,218,0,0,130,218,0,0,136,218,0,0,136,218,0,0,142,218,0,0,144,218,0,0,146,218,0,0,150,218,0,0,152,218,0,0,152,218,0,0,152,218,0,0,152,218,0,0,152,218,0,0,152,218,0,0,156,218,0,0,156,218,0,0,156,218,0,0,156,218,0,0,162,218,0,0,162,218,0,0,162,218,0,0,162,218,0,0,166,218,0,0,172,218,0,0,174,218,0,0,178,218,0,0,186,218,0,0,188,218,0,0,188,218,0,0,188,218,0,0,192,218,0,0,196,218,0,0,196,218,0,0,196,218,0,0,198,218,0,0,200,218,0,0,200,218,0,0,200,218,0,0,200,218,0,0,202,218,0,0,202,218,0,0,204,218,0,0,204,218,0,0,206,218,0,0,206,218,0,0,210,218,0,0,210,218,0,0,210,218,0,0,212,218,0,0,216,218,0,0,216,218,0,0,222,218,0,0,228,218,0,0,232,218,0,0,232,218,0,0,236,218,0,0,236,218,0,0,240,218,0,0,244,218,0,0,244,218,0,0,246,218,0,0,246,218,0,0,246,218,0,0,248,218,0,0,248,218,0,0,250,218,0,0,250,218,0,0,2,219,0,0,4,219,0,0,4,219,0,0,10,219,0,0,10,219,0,0,14,219,0,0,14,219,0,0,16,219,0,0,16,219,0,0,16,219,0,0,16,219,0,0,20,219,0,0,22,219,0,0,22,219,0,0,24,219,0,0,24,219,0,0,28,219,0,0,32,219,0,0,36,219,0,0,42,219,0,0,46,219,0,0,46,219,0,0,50,219,0,0,52,219,0,0,58,219,0,0,58,219,0,0,58,219,0,0,60,219,0,0,60,219,0,0,64,219,0,0,64,219,0,0,66,219,0,0,66,219,0,0,66,219,0,0,74,219,0,0,74,219,0,0,78,219,0,0,80,219,0,0,82,219,0,0,90,219,0,0,90,219,0,0,90,219,0,0,90,219,0,0,92,219,0,0,92,219,0,0,92,219,0,0,92,219,0,0,102,219,0,0,104,219,0,0,106,219,0,0,108,219,0,0,110,219,0,0,110,219,0,0,110,219,0,0,112,219,0,0,112,219,0,0,112,219,0,0,116,219,0,0,116,219,0,0,120,219,0,0,120,219,0,0,122,219,0,0,124,219,0,0,124,219,0,0,128,219,0,0,128,219,0,0,130,219,0,0,138,219,0,0,146,219,0,0,146,219,0,0,154,219,0,0,154,219,0,0,158,219,0,0,158,219,0,0,158,219,0,0,158,219,0,0,166,219,0,0,166,219,0,0,172,219,0,0,172,219,0,0,178,219,0,0,178,219,0,0,178,219,0,0,182,219,0,0,184,219,0,0,184,219,0,0,186,219,0,0,186,219,0,0,186,219,0,0,186,219,0,0,190,219,0,0,192,219,0,0,198,219,0,0,198,219,0,0,200,219,0,0,200,219,0,0,200,219,0,0,200,219,0,0,206,219,0,0,208,219,0,0,208,219,0,0,208,219,0,0,210,219,0,0,210,219,0,0,210,219,0,0,210,219,0,0,210,219,0,0,212,219,0,0,212,219,0,0,212,219,0,0,218,219,0,0,222,219,0,0,228,219,0,0,232,219,0,0,232,219,0,0,234,219,0,0,234,219,0,0,234,219,0,0,234,219,0,0,234,219,0,0,234,219,0,0,236,219,0,0,236,219,0,0,240,219,0,0,244,219,0,0,246,219,0,0,246,219,0,0,246,219,0,0,246,219,0,0,246,219,0,0,248,219,0,0,248,219,0,0,248,219,0,0,250,219,0,0,250,219,0,0,252,219,0,0,0,220,0,0,0,220,0,0,2,220,0,0,2,220,0,0,2,220,0,0,2,220,0,0,4,220,0,0,6,220,0,0,6,220,0,0,6,220,0,0,6,220,0,0,6,220,0,0,8,220,0,0,8,220,0,0,8,220,0,0,8,220,0,0,8,220,0,0,10,220,0,0,10,220,0,0,16,220,0,0,20,220,0,0,20,220,0,0,20,220,0,0,20,220,0,0,20,220,0,0,20,220,0,0,22,220,0,0,42,220,0,0,42,220,0,0,48,220,0,0,48,220,0,0,48,220,0,0,48,220,0,0,52,220,0,0,52,220,0,0,52,220,0,0,52,220,0,0,54,220,0,0,54,220,0,0,56,220,0,0,60,220,0,0,60,220,0,0,60,220,0,0,62,220,0,0,62,220,0,0,62,220,0,0,62,220,0,0,66,220,0,0,70,220,0,0,72,220,0,0,72,220,0,0,72,220,0,0,72,220,0,0,74,220,0,0,76,220,0,0,82,220,0,0,84,220,0,0,84,220,0,0,84,220,0,0,94,220,0,0,94,220,0,0,94,220,0,0,104,220,0,0,112,220,0,0,116,220,0,0,116,220,0,0,116,220,0,0,120,220,0,0,120,220,0,0,120,220,0,0,120,220,0,0,120,220,0,0,122,220,0,0,122,220,0,0,122,220,0,0,124,220,0,0,124,220,0,0,124,220,0,0,126,220,0,0,128,220,0,0,132,220,0,0,132,220,0,0,132,220,0,0,134,220,0,0,134,220,0,0,140,220,0,0,140,220,0,0,140,220,0,0,140,220,0,0,148,220,0,0,158,220,0,0,158,220,0,0,158,220,0,0,158,220,0,0,158,220,0,0,158,220,0,0,158,220,0,0,158,220,0,0,160,220,0,0,162,220,0,0,162,220,0,0,164,220,0,0,164,220,0,0,164,220,0,0,164,220,0,0,168,220,0,0,170,220,0,0,170,220,0,0,170,220,0,0,170,220,0,0,172,220,0,0,176,220,0,0,176,220,0,0,178,220,0,0,178,220,0,0,178,220,0,0,180,220,0,0,182,220,0,0,186,220,0,0,188,220,0,0,190,220,0,0,194,220,0,0,194,220,0,0,194,220,0,0,194,220,0,0,204,220,0,0,204,220,0,0,208,220,0,0,210,220,0,0,212,220,0,0,214,220,0,0,216,220,0,0,218,220,0,0,220,220,0,0,220,220,0,0,220,220,0,0,220,220,0,0,220,220,0,0,224,220,0,0,224,220,0,0,224,220,0,0,224,220,0,0,228,220,0,0,232,220,0,0,232,220,0,0,232,220,0,0,238,220,0,0,238,220,0,0,240,220,0,0,240,220,0,0,242,220,0,0,244,220,0,0,244,220,0,0,246,220,0,0,246,220,0,0,246,220,0,0,246,220,0,0,246,220,0,0,252,220,0,0,252,220,0,0,252,220,0,0,0,221,0,0,2,221,0,0,2,221,0,0,10,221,0,0,10,221,0,0,10,221,0,0,14,221,0,0,16,221,0,0,16,221,0,0,18,221,0,0,18,221,0,0,22,221,0,0,28,221,0,0,34,221,0,0,34,221,0,0,36,221,0,0,36,221,0,0,38,221,0,0,38,221,0,0,38,221,0,0,38,221,0,0,44,221,0,0,46,221,0,0,46,221,0,0,48,221,0,0,48,221,0,0,48,221,0,0,52,221,0,0,54,221,0,0,56,221,0,0,56,221,0,0,56,221,0,0,56,221,0,0,60,221,0,0,62,221,0,0,62,221,0,0,66,221,0,0,66,221,0,0,68,221,0,0,68,221,0,0,74,221,0,0,74,221,0,0,76,221,0,0,76,221,0,0,76,221,0,0,80,221,0,0,80,221,0,0,82,221,0,0,84,221,0,0,84,221,0,0,84,221,0,0,86,221,0,0,86,221,0,0,88,221,0,0,88,221,0,0,88,221,0,0,88,221,0,0,88,221,0,0,88,221,0,0,88,221,0,0,98,221,0,0,98,221,0,0,98,221,0,0,98,221,0,0,102,221,0,0,106,221,0,0,106,221,0,0,106,221,0,0,106,221,0,0,108,221,0,0,112,221,0,0,112,221,0,0,114,221,0,0,114,221,0,0,114,221,0,0,114,221,0,0,120,221,0,0,124,221,0,0,124,221,0,0,124,221,0,0,124,221,0,0,126,221,0,0,132,221,0,0,132,221,0,0,132,221,0,0,132,221,0,0,132,221,0,0,138,221,0,0,140,221,0,0,140,221,0,0,140,221,0,0,140,221,0,0,140,221,0,0,140,221,0,0,142,221,0,0,142,221,0,0,142,221,0,0,144,221,0,0,154,221,0,0,154,221,0,0,154,221,0,0,154,221,0,0,154,221,0,0,154,221,0,0,156,221,0,0,158,221,0,0,158,221,0,0,158,221,0,0,158,221,0,0,170,221,0,0,170,221,0,0,170,221,0,0,170,221,0,0,170,221,0,0,172,221,0,0,172,221,0,0,172,221,0,0,172,221,0,0,176,221,0,0,176,221,0,0,176,221,0,0,176,221,0,0,182,221,0,0,188,221,0,0,190,221,0,0,190,221,0,0,192,221,0,0,192,221,0,0,194,221,0,0,194,221,0,0,194,221,0,0,194,221,0,0,196,221,0,0,196,221,0,0,198,221,0,0,198,221,0,0,198,221,0,0,202,221,0,0,202,221,0,0,204,221,0,0,204,221,0,0,204,221,0,0,206,221,0,0,218,221,0,0,222,221,0,0,224,221,0,0,228,221,0,0,228,221,0,0,228,221,0,0,228,221,0,0,228,221,0,0,228,221,0,0,232,221,0,0,234,221,0,0,234,221,0,0,236,221,0,0,236,221,0,0,236,221,0,0,236,221,0,0,236,221,0,0,238,221,0,0,238,221,0,0,238,221,0,0,242,221,0,0,246,221,0,0,246,221,0,0,246,221,0,0,246,221,0,0,246,221,0,0,248,221,0,0,250,221,0,0,250,221,0,0,250,221,0,0,250,221,0,0,250,221,0,0,250,221,0,0,250,221,0,0,250,221,0,0,252,221,0,0,252,221,0,0,254,221,0,0,254,221,0,0,254,221,0,0,254,221,0,0,254,221,0,0,2,222,0,0,10,222,0,0,10,222,0,0,12,222,0,0,12,222,0,0,16,222,0,0,16,222,0,0,16,222,0,0,16,222,0,0,24,222,0,0,26,222,0,0,26,222,0,0,26,222,0,0,26,222,0,0,28,222,0,0,30,222,0,0,30,222,0,0,30,222,0,0,44,222,0,0,44,222,0,0,44,222,0,0,46,222,0,0,46,222,0,0,50,222,0,0,50,222,0,0,50,222,0,0,58,222,0,0,58,222,0,0,62,222,0,0,62,222,0,0,68,222,0,0,68,222,0,0,78,222,0,0,78,222,0,0,78,222,0,0,84,222,0,0,84,222,0,0,90,222,0,0,94,222,0,0,96,222,0,0,102,222,0,0,106,222,0,0,106,222,0,0,112,222,0,0,116,222,0,0,118,222,0,0,118,222,0,0,126,222,0,0,126,222,0,0,128,222,0,0,134,222,0,0,136,222,0,0,136,222,0,0,138,222,0,0,138,222,0,0,140,222,0,0,148,222,0,0,148,222,0,0,148,222,0,0,150,222,0,0,154,222,0,0,154,222,0,0,160,222,0,0,166,222,0,0,166,222,0,0,168,222,0,0,172,222,0,0,172,222,0,0,176,222,0,0,178,222,0,0,178,222,0,0,182,222,0,0,184,222,0,0,184,222,0,0,186,222,0,0,186,222,0,0,186,222,0,0,192,222,0,0,192,222,0,0,192,222,0,0,196,222,0,0,202,222,0,0,214,222,0,0,214,222,0,0,218,222,0,0,218,222,0,0,218,222,0,0,218,222,0,0,220,222,0,0,222,222,0,0,222,222,0,0,228,222,0,0,228,222,0,0,230,222,0,0,232,222,0,0,236,222,0,0,244,222,0,0,244,222,0,0,244,222,0,0,244,222,0,0,246,222,0,0,246,222,0,0,250,222,0,0,250,222,0,0,250,222,0,0,254,222,0,0,0,223,0,0,0,223,0,0,2,223,0,0,6,223,0,0,12,223,0,0,16,223,0,0,20,223,0,0,20,223,0,0,26,223,0,0,26,223,0,0,26,223,0,0,28,223,0,0,28,223,0,0,28,223,0,0,30,223,0,0,30,223,0,0,34,223,0,0,36,223,0,0,36,223,0,0,38,223,0,0,38,223,0,0,50,223,0,0,50,223,0,0,50,223,0,0,54,223,0,0,54,223,0,0,54,223,0,0,54,223,0,0,54,223,0,0,54,223,0,0,56,223,0,0,56,223,0,0,58,223,0,0,60,223,0,0,60,223,0,0,60,223,0,0,60,223,0,0,60,223,0,0,62,223,0,0,62,223,0,0,66,223,0,0,70,223,0,0,70,223,0,0,70,223,0,0,70,223,0,0,72,223,0,0,72,223,0,0,74,223,0,0,76,223,0,0,76,223,0,0,76,223,0,0,76,223,0,0,76,223,0,0,82,223,0,0,82,223,0,0,82,223,0,0,84,223,0,0,90,223,0,0,92,223,0,0,94,223,0,0,98,223,0,0,98,223,0,0,98,223,0,0,100,223,0,0,102,223,0,0,110,223,0,0,112,223,0,0,120,223,0,0,122,223,0,0,124,223,0,0,126,223,0,0,128,223,0,0,128,223,0,0,136,223,0,0,140,223,0,0,140,223,0,0,140,223,0,0,140,223,0,0,148,223,0,0,152,223,0,0,152,223,0,0,154,223,0,0,154,223,0,0,158,223,0,0,158,223,0,0,158,223,0,0,158,223,0,0,164,223,0,0,166,223,0,0,166,223,0,0,168,223,0,0,170,223,0,0,170,223,0,0,182,223,0,0,182,223,0,0,188,223,0,0,188,223,0,0,188,223,0,0,188,223,0,0,190,223,0,0,192,223,0,0,194,223,0,0,194,223,0,0,196,223,0,0,200,223,0,0,200,223,0,0,202,223,0,0,202,223,0,0,202,223,0,0,206,223,0,0,206,223,0,0,212,223,0,0,212,223,0,0,214,223,0,0,220,223,0,0,236,223,0,0,236,223,0,0,240,223,0,0,240,223,0,0,242,223,0,0,242,223,0,0,246,223,0,0,248,223,0,0,2,224,0,0,2,224,0,0,2,224,0,0,14,224,0,0,20,224,0,0,20,224,0,0,22,224,0,0,28,224,0,0,30,224,0,0,36,224,0,0,36,224,0,0,36,224,0,0,36,224,0,0,36,224,0,0,36,224,0,0,36,224,0,0,36,224,0,0,36,224,0,0,46,224,0,0,48,224,0,0,52,224,0,0,56,224,0,0,56,224,0,0,56,224,0,0,58,224,0,0,62,224,0,0,70,224,0,0,70,224,0,0,72,224,0,0,78,224,0,0,78,224,0,0,82,224,0,0,82,224,0,0,84,224,0,0,86,224,0,0,86,224,0,0,88,224,0,0,90,224,0,0,90,224,0,0,92,224,0,0,92,224,0,0,92,224,0,0,96,224,0,0,96,224,0,0,96,224,0,0,98,224,0,0,102,224,0,0,102,224,0,0,102,224,0,0,102,224,0,0,102,224,0,0,106,224,0,0,106,224,0,0,110,224,0,0,110,224,0,0,112,224,0,0,112,224,0,0,112,224,0,0,114,224,0,0,114,224,0,0,116,224,0,0,116,224,0,0,118,224,0,0,118,224,0,0,118,224,0,0,118,224,0,0,122,224,0,0,122,224,0,0,122,224,0,0,124,224,0,0,126,224,0,0,138,224,0,0,138,224,0,0,142,224,0,0,142,224,0,0,148,224,0,0,154,224,0,0,154,224,0,0,154,224,0,0,154,224,0,0,156,224,0,0,156,224,0,0,156,224,0,0,156,224,0,0,156,224,0,0,156,224,0,0,162,224,0,0,164,224,0,0,166,224,0,0,168,224,0,0,168,224,0,0,168,224,0,0,168,224,0,0,168,224,0,0,170,224,0,0,170,224,0,0,174,224,0,0,174,224,0,0,174,224,0,0,174,224,0,0,174,224,0,0,180,224,0,0,184,224,0,0,186,224,0,0,186,224,0,0,188,224,0,0,190,224,0,0,194,224,0,0,196,224,0,0,196,224,0,0,196,224,0,0,196,224,0,0,196,224,0,0,198,224,0,0,198,224,0,0,198,224,0,0,198,224,0,0,198,224,0,0,198,224,0,0,198,224,0,0,198,224,0,0,198,224,0,0,198,224,0,0,204,224,0,0,204,224,0,0,208,224,0,0,208,224,0,0,208,224,0,0,214,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,230,224,0,0,230,224,0,0,236,224,0,0,236,224,0,0,236,224,0,0,238,224,0,0,238,224,0,0,240,224,0,0,240,224,0,0,244,224,0,0,246,224,0,0,246,224,0,0,246,224,0,0,250,224,0,0,252,224,0,0,254,224,0,0,254,224,0,0,0,225,0,0,4,225,0,0,6,225,0,0,8,225,0,0,8,225,0,0,18,225,0,0,18,225,0,0,18,225,0,0,18,225,0,0,18,225,0,0,22,225,0,0,30,225,0,0,34,225,0,0,34,225,0,0,38,225,0,0,40,225,0,0,44,225,0,0,48,225,0,0,50,225,0,0,52,225,0,0,52,225,0,0,54,225,0,0,54,225,0,0,54,225,0,0,54,225,0,0,54,225,0,0,54,225,0,0,54,225,0,0,64,225,0,0,64,225,0,0,68,225,0,0,68,225,0,0,72,225,0,0,72,225,0,0,76,225,0,0,76,225,0,0,76,225,0,0,76,225,0,0,76,225,0,0,76,225,0,0,76,225,0,0,76,225,0,0,76,225,0,0,84,225,0,0,88,225,0,0,88,225,0,0,88,225,0,0,88,225,0,0,92,225,0,0,94,225,0,0,94,225,0,0,94,225,0,0,94,225,0,0,96,225,0,0,98,225,0,0,98,225,0,0,104,225,0,0,106,225,0,0,108,225,0,0,108,225,0,0,122,225,0,0,122,225,0,0,122,225,0,0,122,225,0,0,122,225,0,0,122,225,0,0,122,225,0,0,122,225,0,0,122,225,0,0,122,225,0,0,122,225,0,0,128,225,0,0,128,225,0,0,130,225,0,0,130,225,0,0,132,225,0,0,132,225,0,0,136,225,0,0,136,225,0,0,136,225,0,0,138,225,0,0,138,225,0,0,138,225,0,0,144,225,0,0,146,225,0,0,150,225,0,0,154,225,0,0,154,225,0,0,154,225,0,0,154,225,0,0,154,225,0,0,156,225,0,0,164,225,0,0,164,225,0,0,172,225,0,0,174,225,0,0,188,225,0,0,188,225,0,0,194,225,0,0,194,225,0,0,196,225,0,0,196,225,0,0,196,225,0,0,200,225,0,0,200,225,0,0,200,225,0,0,200,225,0,0,200,225,0,0,200,225,0,0,200,225,0,0,202,225,0,0,204,225,0,0,206,225,0,0,208,225,0,0,210,225,0,0,210,225,0,0,210,225,0,0,210,225,0,0,210,225,0,0,210,225,0,0,210,225,0,0,212,225,0,0,212,225,0,0,218,225,0,0,218,225,0,0,220,225,0,0,220,225,0,0,220,225,0,0,220,225,0,0,222,225,0,0,222,225,0,0,222,225,0,0,222,225,0,0,222,225,0,0,222,225,0,0,222,225,0,0,222,225,0,0,222,225,0,0,222,225,0,0,222,225,0,0,226,225,0,0,226,225,0,0,226,225,0,0,228,225,0,0,228,225,0,0,228,225,0,0,230,225,0,0,236,225,0,0,242,225,0,0,244,225,0,0,248,225,0,0,0,226,0,0,0,226,0,0,0,226,0,0,4,226,0,0,4,226,0,0,4,226,0,0,4,226,0,0,4,226,0,0,4,226,0,0,4,226,0,0,4,226,0,0,10,226,0,0,10,226,0,0,14,226,0,0,18,226,0,0,18,226,0,0,20,226,0,0,22,226,0,0,22,226,0,0,24,226,0,0,24,226,0,0,28,226,0,0,32,226,0,0,32,226,0,0,34,226,0,0,34,226,0,0,34,226,0,0,36,226,0,0,36,226,0,0,36,226,0,0,38,226,0,0,42,226,0,0,44,226,0,0,50,226,0,0,54,226,0,0,54,226,0,0,54,226,0,0,58,226,0,0,60,226,0,0,60,226,0,0,62,226,0,0,66,226,0,0,70,226,0,0,72,226,0,0,74,226,0,0,76,226,0,0,76,226,0,0,78,226,0,0,80,226,0,0,82,226,0,0,86,226,0,0,88,226,0,0,96,226,0,0,96,226,0,0,96,226,0,0,100,226,0,0,100,226,0,0,100,226,0,0,100,226,0,0,100,226,0,0,100,226,0,0,100,226,0,0,100,226,0,0,102,226,0,0,102,226,0,0,102,226,0,0,108,226,0,0,112,226,0,0,112,226,0,0,112,226,0,0,114,226,0,0,116,226,0,0,116,226,0,0,122,226,0,0,126,226,0,0,128,226,0,0,128,226,0,0,132,226,0,0,132,226,0,0,132,226,0,0,132,226,0,0,136,226,0,0,136,226,0,0,138,226,0,0,138,226,0,0,138,226,0,0,138,226,0,0,138,226,0,0,138,226,0,0,138,226,0,0,140,226,0,0,140,226,0,0,140,226,0,0,140,226,0,0,144,226,0,0,148,226,0,0,150,226,0,0,150,226,0,0,150,226,0,0,150,226,0,0,150,226,0,0,152,226,0,0,152,226,0,0,152,226,0,0,152,226,0,0,156,226,0,0,158,226,0,0,164,226,0,0,166,226,0,0,166,226,0,0,168,226,0,0,168,226,0,0,168,226,0,0,168,226,0,0,168,226,0,0,170,226,0,0,174,226,0,0,180,226,0,0,186,226,0,0,190,226,0,0,190,226,0,0,190,226,0,0,190,226,0,0,192,226,0,0,194,226,0,0,196,226,0,0,196,226,0,0,196,226,0,0,200,226,0,0,200,226,0,0,200,226,0,0,202,226,0,0,210,226,0,0,210,226,0,0,214,226,0,0,214,226,0,0,220,226,0,0,220,226,0,0,220,226,0,0,224,226,0,0,224,226,0,0,232,226,0,0,234,226,0,0,238,226,0,0,238,226,0,0,246,226,0,0,252,226,0,0,254,226,0,0,254,226,0,0,254,226,0,0,2,227,0,0,2,227,0,0,4,227,0,0,4,227,0,0,4,227,0,0,6,227,0,0,12,227,0,0,16,227,0,0,22,227,0,0,22,227,0,0,24,227,0,0,26,227,0,0,30,227,0,0,32,227,0,0,34,227,0,0,36,227,0,0,38,227,0,0,40,227,0,0,48,227,0,0,50,227,0,0,54,227,0,0,54,227,0,0,54,227,0,0,54,227,0,0,54,227,0,0,60,227,0,0,60,227,0,0,60,227,0,0,64,227,0,0,64,227,0,0,64,227,0,0,66,227,0,0,66,227,0,0,66,227,0,0,68,227,0,0,68,227,0,0,74,227,0,0,74,227,0,0,74,227,0,0,74,227,0,0,78,227,0,0,80,227,0,0,82,227,0,0,82,227,0,0,84,227,0,0,84,227,0,0,86,227,0,0,86,227,0,0,90,227,0,0,90,227,0,0,90,227,0,0,90,227,0,0,90,227,0,0,90,227,0,0,92,227,0,0,96,227,0,0,100,227,0,0,104,227,0,0,108,227,0,0,110,227,0,0,110,227,0,0,110,227,0,0,110,227,0,0,112,227,0,0,112,227,0,0,114,227,0,0,118,227,0,0,118,227,0,0,118,227,0,0,122,227,0,0,126,227,0,0,128,227,0,0,128,227,0,0,128,227,0,0,128,227,0,0,130,227,0,0,130,227,0,0,136,227,0,0,136,227,0,0,136,227,0,0,138,227,0,0,138,227,0,0,146,227,0,0,146,227,0,0,152,227,0,0,152,227,0,0,152,227,0,0,156,227,0,0,156,227,0,0,156,227,0,0,170,227,0,0,178,227,0,0,182,227,0,0,182,227,0,0,182,227,0,0,186,227,0,0,190,227,0,0,190,227,0,0,198,227,0,0,200,227,0,0,204,227,0,0,204,227,0,0,208,227,0,0,208,227,0,0,212,227,0,0,212,227,0,0,212,227,0,0,212,227,0,0,212,227,0,0,216,227,0,0,218,227,0,0,218,227,0,0,222,227,0,0,222,227,0,0,226,227,0,0,232,227,0,0,232,227,0,0,232,227,0,0,232,227,0,0,232,227,0,0,232,227,0,0,232,227,0,0,238,227,0,0,238,227,0,0,242,227,0,0,242,227,0,0,246,227,0,0,246,227,0,0,254,227,0,0,0,228,0,0,8,228,0,0,10,228,0,0,10,228,0,0,12,228,0,0,14,228,0,0,20,228,0,0,20,228,0,0,20,228,0,0,22,228,0,0,24,228,0,0,24,228,0,0,28,228,0,0,34,228,0,0,40,228,0,0,44,228,0,0,46,228,0,0,50,228,0,0,50,228,0,0,50,228,0,0,50,228,0,0,60,228,0,0,60,228,0,0,62,228,0,0,66,228,0,0,68,228,0,0,68,228,0,0,70,228,0,0,70,228,0,0,70,228,0,0,76,228,0,0,78,228,0,0,82,228,0,0,86,228,0,0,90,228,0,0,92,228,0,0,92,228,0,0,92,228,0,0,98,228,0,0,98,228,0,0,100,228,0,0,100,228,0,0,104,228,0,0,104,228,0,0,104,228,0,0,104,228,0,0,104,228,0,0,104,228,0,0,108,228,0,0,112,228,0,0,116,228,0,0,118,228,0,0,118,228,0,0,118,228,0,0,118,228,0,0,120,228,0,0,120,228,0,0,120,228,0,0,126,228,0,0,126,228,0,0,126,228,0,0,126,228,0,0,126,228,0,0,126,228,0,0,126,228,0,0,132,228,0,0,134,228,0,0,134,228,0,0,134,228,0,0,144,228,0,0,144,228,0,0,144,228,0,0,146,228,0,0,160,228,0,0,166,228,0,0,168,228,0,0,172,228,0,0,172,228,0,0,172,228,0,0,172,228,0,0,172,228,0,0,178,228,0,0,186,228,0,0,194,228,0,0,194,228,0,0,196,228,0,0,196,228,0,0,196,228,0,0,198,228,0,0,200,228,0,0,202,228,0,0,206,228,0,0,206,228,0,0,206,228,0,0,206,228,0,0,206,228,0,0,206,228,0,0,210,228,0,0,212,228,0,0,214,228,0,0,214,228,0,0,216,228,0,0,216,228,0,0,218,228,0,0,222,228,0,0,222,228,0,0,222,228,0,0,222,228,0,0,224,228,0,0,224,228,0,0,232,228,0,0,234,228,0,0,238,228,0,0,238,228,0,0,238,228,0,0,238,228,0,0,240,228,0,0,240,228,0,0,244,228,0,0,244,228,0,0,244,228,0,0,244,228,0,0,250,228,0,0,250,228,0,0,250,228,0,0,254,228,0,0,2,229,0,0,6,229,0,0,10,229,0,0,10,229,0,0,10,229,0,0,18,229,0,0,20,229,0,0,20,229,0,0,22,229,0,0,22,229,0,0,22,229,0,0,22,229,0,0,22,229,0,0,24,229,0,0,32,229,0,0,36,229,0,0,36,229,0,0,38,229,0,0,40,229,0,0,40,229,0,0,44,229,0,0,48,229,0,0,56,229,0,0,60,229,0,0,60,229,0,0,60,229,0,0,60,229,0,0,60,229,0,0,66,229,0,0,68,229,0,0,74,229,0,0,74,229,0,0,74,229,0,0,76,229,0,0,82,229,0,0,82,229,0,0,82,229,0,0,82,229,0,0,82,229,0,0,82,229,0,0,84,229,0,0,86,229,0,0,86,229,0,0,86,229,0,0,86,229,0,0,86,229,0,0,86,229,0,0,86,229,0,0,86,229,0,0,92,229,0,0,100,229,0,0,100,229,0,0,110,229,0,0,110,229,0,0,110,229,0,0,110,229,0,0,110,229,0,0,112,229,0,0,114,229,0,0,114,229,0,0,116,229,0,0,120,229,0,0,124,229,0,0,124,229,0,0,124,229,0,0,124,229,0,0,124,229,0,0,126,229,0,0,128,229,0,0,128,229,0,0,132,229,0,0,132,229,0,0,134,229,0,0,134,229,0,0,140,229,0,0,156,229,0,0,156,229,0,0,158,229,0,0,162,229,0,0,164,229,0,0,164,229,0,0,168,229,0,0,170,229,0,0,170,229,0,0,176,229,0,0,176,229,0,0,178,229,0,0,178,229,0,0,178,229,0,0,178,229,0,0,178,229,0,0,178,229,0,0,184,229,0,0,184,229,0,0,184,229,0,0,186,229,0,0,186,229,0,0,186,229,0,0,190,229,0,0,190,229,0,0,192,229,0,0,198,229,0,0,198,229,0,0,198,229,0,0,204,229,0,0,204,229,0,0,220,229,0,0,222,229,0,0,224,229,0,0,226,229,0,0,226,229,0,0,226,229,0,0,234,229,0,0,238,229,0,0,238,229,0,0,238,229,0,0,240,229,0,0,246,229,0,0,246,229,0,0,250,229,0,0,250,229,0,0,252,229,0,0,0,230,0,0,0,230,0,0,6,230,0,0,8,230,0,0,10,230,0,0,12,230,0,0,18,230,0,0,22,230,0,0,22,230,0,0,22,230,0,0,22,230,0,0,22,230,0,0,24,230,0,0,24,230,0,0,24,230,0,0,26,230,0,0,28,230,0,0,28,230,0,0,28,230,0,0,30,230,0,0,36,230,0,0,38,230,0,0,44,230,0,0,46,230,0,0,48,230,0,0,58,230,0,0,66,230,0,0,68,230,0,0,70,230,0,0,70,230,0,0,74,230,0,0,74,230,0,0,74,230,0,0,78,230,0,0,80,230,0,0,80,230,0,0,80,230,0,0,80,230,0,0,84,230,0,0,88,230,0,0,88,230,0,0,94,230,0,0,96,230,0,0,96,230,0,0,96,230,0,0,96,230,0,0,96,230,0,0,96,230,0,0,100,230,0,0,102,230,0,0,104,230,0,0,104,230,0,0,110,230,0,0,112,230,0,0,114,230,0,0,114,230,0,0,114,230,0,0,116,230,0,0,116,230,0,0,118,230,0,0,118,230,0,0,122,230,0,0,122,230,0,0,128,230,0,0,128,230,0,0,128,230,0,0,128,230,0,0,140,230,0,0,140,230,0,0,140,230,0,0,142,230,0,0,142,230,0,0,142,230,0,0,142,230,0,0,144,230,0,0,146,230,0,0,146,230,0,0,146,230,0,0,154,230,0,0,154,230,0,0,154,230,0,0,154,230,0,0,154,230,0,0,156,230,0,0,164,230,0,0,164,230,0,0,166,230,0,0,166,230,0,0,166,230,0,0,166,230,0,0,172,230,0,0,172,230,0,0,172,230,0,0,178,230,0,0,178,230,0,0,180,230,0,0,184,230,0,0,184,230,0,0,192,230,0,0,192,230,0,0,194,230,0,0,194,230,0,0,194,230,0,0,196,230,0,0,200,230,0,0,200,230,0,0,202,230,0,0,214,230,0,0,214,230,0,0,214,230,0,0,220,230,0,0,220,230,0,0,220,230,0,0,220,230,0,0,222,230,0,0,224,230,0,0,224,230,0,0,224,230,0,0,226,230,0,0,226,230,0,0,226,230,0,0,226,230,0,0,226,230,0,0,226,230,0,0,228,230,0,0,228,230,0,0,228,230,0,0,228,230,0,0,228,230,0,0,230,230,0,0,230,230,0,0,232,230,0,0,232,230,0,0,234,230,0,0,242,230,0,0,242,230,0,0,244,230,0,0,244,230,0,0,244,230,0,0,248,230,0,0,248,230,0,0,250,230,0,0,254,230,0,0,4,231,0,0,4,231,0,0,4,231,0,0,6,231,0,0,6,231,0,0,6,231,0,0,6,231,0,0,6,231,0,0,6,231,0,0,6,231,0,0,6,231,0,0,6,231,0,0,6,231,0,0,10,231,0,0,12,231,0,0,12,231,0,0,12,231,0,0,16,231,0,0,16,231,0,0,18,231,0,0,22,231,0,0,26,231,0,0,26,231,0,0,28,231,0,0,28,231,0,0,30,231,0,0,34,231,0,0,38,231,0,0,38,231,0,0,44,231,0,0,44,231,0,0,46,231,0,0,50,231,0,0,50,231,0,0,52,231,0,0,52,231,0,0,60,231,0,0,62,231,0,0,62,231,0,0,68,231,0,0,70,231,0,0,70,231,0,0,72,231,0,0,72,231,0,0,72,231,0,0,72,231,0,0,76,231,0,0,82,231,0,0,90,231,0,0,90,231,0,0,94,231,0,0,94,231,0,0,94,231,0,0,94,231,0,0,96,231,0,0,96,231,0,0,104,231,0,0,104,231,0,0,110,231,0,0,112,231,0,0,112,231,0,0,112,231,0,0,114,231,0,0,116,231,0,0,116,231,0,0,116,231,0,0,120,231,0,0,122,231,0,0,122,231,0,0,128,231,0,0,130,231,0,0,138,231,0,0,140,231,0,0,140,231,0,0,142,231,0,0,146,231,0,0,148,231,0,0,148,231,0,0,148,231,0,0,150,231,0,0,150,231,0,0,150,231,0,0,150,231,0,0,150,231,0,0,152,231,0,0,156,231,0,0,156,231,0,0,160,231,0,0,162,231,0,0,162,231,0,0,162,231,0,0,162,231,0,0,168,231,0,0,168,231,0,0,168,231,0,0,176,231,0,0,176,231,0,0,180,231,0,0,184,231,0,0,186,231,0,0,186,231,0,0,186,231,0,0,190,231,0,0,190,231,0,0,196,231,0,0,196,231,0,0,196,231,0,0,198,231,0,0,198,231,0,0,200,231,0,0,202,231,0,0,202,231,0,0,204,231,0,0,204,231,0,0,204,231,0,0,204,231,0,0,204,231,0,0,204,231,0,0,208,231,0,0,214,231,0,0,214,231,0,0,214,231,0,0,216,231,0,0,216,231,0,0,216,231,0,0,218,231,0,0,218,231,0,0,222,231,0,0,228,231,0,0,228,231,0,0,230,231,0,0,232,231,0,0,232,231,0,0,242,231,0,0,248,231,0,0,248,231,0,0,254,231,0,0,4,232,0,0,4,232,0,0,4,232,0,0,4,232,0,0,4,232,0,0,8,232,0,0,8,232,0,0,12,232,0,0,16,232,0,0,16,232,0,0,18,232,0,0,18,232,0,0,18,232,0,0,18,232,0,0,24,232,0,0,26,232,0,0,30,232,0,0,34,232,0,0,34,232,0,0,34,232,0,0,34,232,0,0,34,232,0,0,34,232,0,0,36,232,0,0,48,232,0,0,52,232,0,0,54,232,0,0,54,232,0,0,56,232,0,0,62,232,0,0,64,232,0,0,64,232,0,0,64,232,0,0,66,232,0,0,70,232,0,0,74,232,0,0,74,232,0,0,74,232,0,0,76,232,0,0,76,232,0,0,78,232,0,0,78,232,0,0,78,232,0,0,78,232,0,0,78,232,0,0,78,232,0,0,88,232,0,0,90,232,0,0,90,232,0,0,94,232,0,0,96,232,0,0,96,232,0,0,96,232,0,0,96,232,0,0,100,232,0,0,100,232,0,0,102,232,0,0,102,232,0,0,102,232,0,0,102,232,0,0,104,232,0,0,104,232,0,0,104,232,0,0,106,232,0,0,108,232,0,0,108,232,0,0,120,232,0,0,120,232,0,0,120,232,0,0,120,232,0,0,122,232,0,0,124,232,0,0,124,232,0,0,128,232,0,0,130,232,0,0,130,232,0,0,130,232,0,0,138,232,0,0,138,232,0,0,138,232,0,0,142,232,0,0,142,232,0,0,144,232,0,0,146,232,0,0,158,232,0,0,158,232,0,0,158,232,0,0,160,232,0,0,160,232,0,0,160,232,0,0,162,232,0,0,162,232,0,0,162,232,0,0,164,232,0,0,164,232,0,0,168,232,0,0,168,232,0,0,168,232,0,0,170,232,0,0,170,232,0,0,170,232,0,0,170,232,0,0,170,232,0,0,170,232,0,0,170,232,0,0,170,232,0,0,176,232,0,0,176,232,0,0,176,232,0,0,176,232,0,0,176,232,0,0,182,232,0,0,182,232,0,0,182,232,0,0,186,232,0,0,188,232,0,0,196,232,0,0,196,232,0,0,206,232,0,0,208,232,0,0,208,232,0,0,212,232,0,0,214,232,0,0,216,232,0,0,218,232,0,0,220,232,0,0,220,232,0,0,220,232,0,0,220,232,0,0,220,232,0,0,222,232,0,0,222,232,0,0,228,232,0,0,228,232,0,0,230,232,0,0,238,232,0,0,238,232,0,0,238,232,0,0,238,232,0,0,242,232,0,0,242,232,0,0,246,232,0,0,248,232,0,0,250,232,0,0,0,233,0,0,0,233,0,0,8,233,0,0,8,233,0,0,12,233,0,0,16,233,0,0,18,233,0,0,18,233,0,0,18,233,0,0,20,233,0,0,22,233,0,0,22,233,0,0,24,233,0,0,24,233,0,0,24,233,0,0,30,233,0,0,30,233,0,0,34,233,0,0,36,233,0,0,36,233,0,0,36,233,0,0,44,233,0,0,44,233,0,0,44,233,0,0,44,233,0,0,44,233,0,0,44,233,0,0,44,233,0,0,44,233,0,0,46,233,0,0,46,233,0,0,46,233,0,0,50,233,0,0,50,233,0,0,50,233,0,0,54,233,0,0,54,233,0,0,56,233,0,0,56,233,0,0,58,233,0,0,64,233,0,0,68,233,0,0,68,233,0,0,68,233,0,0,68,233,0,0,68,233,0,0,68,233,0,0,70,233,0,0,72,233,0,0,78,233,0,0,84,233,0,0,84,233,0,0,84,233,0,0,84,233,0,0,90,233,0,0,90,233,0,0,90,233,0,0,94,233,0,0,94,233,0,0,98,233,0,0,100,233,0,0,100,233,0,0,100,233,0,0,100,233,0,0,100,233,0,0,100,233,0,0,100,233,0,0,100,233,0,0,104,233,0,0,106,233,0,0,108,233,0,0,108,233,0,0,108,233,0,0,108,233,0,0,108,233,0,0,108,233,0,0,112,233,0,0,112,233,0,0,120,233,0,0,122,233,0,0,122,233,0,0,126,233,0,0,128,233,0,0,128,233,0,0,128,233,0,0,128,233,0,0,130,233,0,0,130,233,0,0,130,233,0,0,130,233,0,0,130,233,0,0,130,233,0,0,130,233,0,0,132,233,0,0,132,233,0,0,138,233,0,0,140,233,0,0,144,233,0,0,144,233,0,0,144,233,0,0,150,233,0,0,156,233,0,0,158,233,0,0,162,233,0,0,162,233,0,0,164,233,0,0,164,233,0,0,166,233,0,0,170,233,0,0,176,233,0,0,178,233,0,0,180,233,0,0,180,233,0,0,180,233,0,0,184,233,0,0,190,233,0,0,192,233,0,0,198,233,0,0,198,233,0,0,198,233,0,0,198,233,0,0,198,233,0,0,198,233,0,0,198,233,0,0,200,233,0,0,200,233,0,0,200,233,0,0,200,233,0,0,206,233,0,0,206,233,0,0,206,233,0,0,208,233,0,0,212,233,0,0,216,233,0,0,218,233,0,0,218,233,0,0,220,233,0,0,220,233,0,0,224,233,0,0,224,233,0,0,224,233,0,0,226,233,0,0,226,233,0,0,230,233,0,0,242,233,0,0,242,233,0,0,242,233,0,0,252,233,0,0,252,233,0,0,254,233,0,0,254,233,0,0,254,233,0,0,254,233,0,0,254,233,0,0,2,234,0,0,6,234,0,0,6,234,0,0,6,234,0,0,12,234,0,0,12,234,0,0,14,234,0,0,14,234,0,0,14,234,0,0,14,234,0,0,18,234,0,0,18,234,0,0,18,234,0,0,18,234,0,0,20,234,0,0,24,234,0,0,26,234,0,0,34,234,0,0,34,234,0,0,38,234,0,0,38,234,0,0,38,234,0,0,40,234,0,0,40,234,0,0,42,234,0,0,46,234,0,0,50,234,0,0,50,234,0,0,54,234,0,0,58,234,0,0,58,234,0,0,58,234,0,0,60,234,0,0,62,234,0,0,64,234,0,0,64,234,0,0,64,234,0,0,68,234,0,0,78,234,0,0,84,234,0,0,86,234,0,0,88,234,0,0,88,234,0,0,90,234,0,0,90,234,0,0,94,234,0,0,94,234,0,0,96,234,0,0,96,234,0,0,98,234,0,0,106,234,0,0,108,234,0,0,110,234,0,0,110,234,0,0,110,234,0,0,114,234,0,0,114,234,0,0,114,234,0,0,124,234,0,0,124,234,0,0,130,234,0,0,130,234,0,0,130,234,0,0,134,234,0,0,134,234,0,0,134,234,0,0,134,234,0,0,134,234,0,0,138,234,0,0,140,234,0,0,142,234,0,0,148,234,0,0,148,234,0,0,148,234,0,0,152,234,0,0,152,234,0,0,154,234,0,0,158,234,0,0,158,234,0,0,170,234,0,0,170,234,0,0,172,234,0,0,174,234,0,0,174,234,0,0,176,234,0,0,176,234,0,0,176,234,0,0,176,234,0,0,178,234,0,0,184,234,0,0,184,234,0,0,186,234,0,0,186,234,0,0,186,234,0,0,188,234,0,0,192,234,0,0,192,234,0,0,194,234,0,0,200,234,0,0,202,234,0,0,206,234,0,0,206,234,0,0,212,234,0,0,212,234,0,0,214,234,0,0,214,234,0,0,216,234,0,0,218,234,0,0,226,234,0,0,228,234,0,0,234,234,0,0,234,234,0,0,238,234,0,0,238,234,0,0,240,234,0,0,242,234,0,0,244,234,0,0,248,234,0,0,2,235,0,0,4,235,0,0,4,235,0,0,4,235,0,0,4,235,0,0,6,235,0,0,10,235,0,0,10,235,0,0,14,235,0,0,14,235,0,0,14,235,0,0,14,235,0,0,14,235,0,0,14,235,0,0,14,235,0,0,18,235,0,0,20,235,0,0,20,235,0,0,22,235,0,0,24,235,0,0,26,235,0,0,26,235,0,0,28,235,0,0,28,235,0,0,30,235,0,0,30,235,0,0,32,235,0,0,32,235,0,0,32,235,0,0,42,235,0,0,42,235,0,0,42,235,0,0,42,235,0,0,48,235,0,0,50,235,0,0,50,235,0,0,50,235,0,0,50,235,0,0,50,235,0,0,50,235,0,0,50,235,0,0,50,235,0,0,52,235,0,0,54,235,0,0,54,235,0,0,56,235,0,0,58,235,0,0,58,235,0,0,58,235,0,0,58,235,0,0,58,235,0,0,60,235,0,0,60,235,0,0,62,235,0,0,64,235,0,0,64,235,0,0,66,235,0,0,66,235,0,0,66,235,0,0,66,235,0,0,74,235,0,0,76,235,0,0,78,235,0,0,86,235,0,0,96,235,0,0,102,235,0,0,104,235,0,0,104,235,0,0,104,235,0,0,108,235,0,0,110,235,0,0,116,235,0,0,118,235,0,0,120,235,0,0,120,235,0,0,120,235,0,0,120,235,0,0,126,235,0,0,126,235,0,0,126,235,0,0,128,235,0,0,128,235,0,0,128,235,0,0,130,235,0,0,130,235,0,0,130,235,0,0,130,235,0,0,136,235,0,0,140,235,0,0,140,235,0,0,140,235,0,0,140,235,0,0,142,235,0,0,142,235,0,0,144,235,0,0,146,235,0,0,146,235,0,0,146,235,0,0,150,235,0,0,152,235,0,0,152,235,0,0,152,235,0,0,156,235,0,0,158,235,0,0,160,235,0,0,162,235,0,0,162,235,0,0,164,235,0,0,164,235,0,0,166,235,0,0,166,235,0,0,170,235,0,0,172,235,0,0,172,235,0,0,172,235,0,0,174,235,0,0,176,235,0,0,176,235,0,0,188,235,0,0,188,235,0,0,190,235,0,0,190,235,0,0,190,235,0,0,192,235,0,0,196,235,0,0,196,235,0,0,196,235,0,0,196,235,0,0,196,235,0,0,198,235,0,0,200,235,0,0,200,235,0,0,200,235,0,0,202,235,0,0,206,235,0,0,206,235,0,0,206,235,0,0,206,235,0,0,206,235,0,0,206,235,0,0,206,235,0,0,206,235,0,0,206,235,0,0,206,235,0,0,216,235,0,0,218,235,0,0,218,235,0,0,218,235,0,0,222,235,0,0,224,235,0,0,228,235,0,0,228,235,0,0,228,235,0,0,228,235,0,0,236,235,0,0,236,235,0,0,240,235,0,0,240,235,0,0,240,235,0,0,240,235,0,0,242,235,0,0,246,235,0,0,246,235,0,0,246,235,0,0,246,235,0,0,246,235,0,0,246,235,0,0,246,235,0,0,246,235,0,0,246,235,0,0,250,235,0,0,250,235,0,0,250,235,0,0,252,235,0,0,0,236,0,0,6,236,0,0,8,236,0,0,8,236,0,0,8,236,0,0,8,236,0,0,8,236,0,0,14,236,0,0,14,236,0,0,14,236,0,0,14,236,0,0,14,236,0,0,18,236,0,0,18,236,0,0,24,236,0,0,24,236,0,0,26,236,0,0,28,236,0,0,50,236,0,0,50,236,0,0,50,236,0,0,54,236,0,0,58,236,0,0,58,236,0,0,58,236,0,0,60,236,0,0,66,236,0,0,66,236,0,0,66,236,0,0,70,236,0,0,74,236,0,0,74,236,0,0,76,236,0,0,80,236,0,0,80,236,0,0,84,236,0,0,84,236,0,0,88,236,0,0,88,236,0,0,88,236,0,0,88,236,0,0,88,236,0,0,88,236,0,0,88,236,0,0,94,236,0,0,100,236,0,0,102,236,0,0,102,236,0,0,102,236,0,0,106,236,0,0,108,236,0,0,110,236,0,0,114,236,0,0,114,236,0,0,116,236,0,0,118,236,0,0,126,236,0,0,126,236,0,0,132,236,0,0,132,236,0,0,134,236,0,0,134,236,0,0,138,236,0,0,144,236,0,0,144,236,0,0,146,236,0,0,146,236,0,0,146,236,0,0,146,236,0,0,146,236,0,0,146,236,0,0,146,236,0,0,146,236,0,0,146,236,0,0,146,236,0,0,146,236,0,0,146,236,0,0,148,236,0,0,148,236,0,0,148,236,0,0,152,236,0,0,154,236,0,0,154,236,0,0,154,236,0,0,156,236,0,0,156,236,0,0,160,236,0,0,164,236,0,0,164,236,0,0,166,236,0,0,176,236,0,0,176,236,0,0,176,236,0,0,176,236,0,0,180,236,0,0,180,236,0,0,184,236,0,0,190,236,0,0,190,236,0,0,190,236,0,0,190,236,0,0,190,236,0,0,190,236,0,0,190,236,0,0,190,236,0,0,190,236,0,0,194,236,0,0,194,236,0,0,198,236,0,0,206,236,0,0,206,236,0,0,208,236,0,0,214,236,0,0,214,236,0,0,214,236,0,0,216,236,0,0,216,236,0,0,218,236,0,0,220,236,0,0,224,236,0,0,228,236,0,0,234,236,0,0,238,236,0,0,238,236,0,0,238,236,0,0,238,236,0,0,240,236,0,0,242,236,0,0,242,236,0,0,242,236,0,0,244,236,0,0,244,236,0,0,248,236,0,0,250,236,0,0,252,236,0,0,252,236,0,0,252,236,0,0,254,236,0,0,254,236,0,0,4,237,0,0,4,237,0,0,8,237,0,0,10,237,0,0,10,237,0,0,12,237,0,0,18,237,0,0,18,237,0,0,18,237,0,0,20,237,0,0,22,237,0,0,26,237,0,0,26,237,0,0,28,237,0,0,36,237,0,0,40,237,0,0,42,237,0,0,42,237,0,0,42,237,0,0,46,237,0,0,50,237,0,0,50,237,0,0,50,237,0,0,56,237,0,0,62,237,0,0,62,237,0,0,64,237,0,0,68,237,0,0,70,237,0,0,70,237,0,0,70,237,0,0,74,237,0,0,74,237,0,0,74,237,0,0,76,237,0,0,84,237,0,0,88,237,0,0,88,237,0,0,88,237,0,0,88,237,0,0,88,237,0,0,90,237,0,0,96,237,0,0,98,237,0,0,98,237,0,0,102,237,0,0,112,237,0,0,114,237,0,0,120,237,0,0,120,237,0,0,120,237,0,0,122,237,0,0,124,237,0,0,126,237,0,0,132,237,0,0,132,237,0,0,134,237,0,0,134,237,0,0,134,237,0,0,134,237,0,0,138,237,0,0,138,237,0,0,138,237,0,0,140,237,0,0,140,237,0,0,144,237,0,0,144,237,0,0,146,237,0,0,150,237,0,0,150,237,0,0,156,237,0,0,162,237,0,0,162,237,0,0,162,237,0,0,162,237,0,0,164,237,0,0,164,237,0,0,166,237,0,0,168,237,0,0,168,237,0,0,172,237,0,0,172,237,0,0,174,237,0,0,174,237,0,0,176,237,0,0,176,237,0,0,182,237,0,0,182,237,0,0,182,237,0,0,182,237,0,0,182,237,0,0,182,237,0,0,182,237,0,0,182,237,0,0,182,237,0,0,182,237,0,0,186,237,0,0,186,237,0,0,192,237,0,0,194,237,0,0,196,237,0,0,204,237,0,0,204,237,0,0,204,237,0,0,206,237,0,0,212,237,0,0,212,237,0,0,214,237,0,0,214,237,0,0,222,237,0,0,222,237,0,0,222,237,0,0,222,237,0,0,224,237,0,0,224,237,0,0,224,237,0,0,228,237,0,0,230,237,0,0,238,237,0,0,238,237,0,0,238,237,0,0,238,237,0,0,244,237,0,0,244,237,0,0,246,237,0,0,246,237,0,0,248,237,0,0,248,237,0,0,250,237,0,0,252,237,0,0,252,237,0,0,252,237,0,0,252,237,0,0,254,237,0,0,254,237,0,0,2,238,0,0,2,238,0,0,2,238,0,0,4,238,0,0,4,238,0,0,10,238,0,0,10,238,0,0,12,238,0,0,18,238,0,0,18,238,0,0,18,238,0,0,28,238,0,0,36,238,0,0,36,238,0,0,36,238,0,0,38,238,0,0,40,238,0,0,44,238,0,0,44,238,0,0,50,238,0,0,52,238,0,0,52,238,0,0,54,238,0,0,56,238,0,0,56,238,0,0,56,238,0,0,56,238,0,0,60,238,0,0,60,238,0,0,62,238,0,0,62,238,0,0,62,238,0,0,64,238,0,0,68,238,0,0,74,238,0,0,74,238,0,0,82,238,0,0,82,238,0,0,84,238,0,0,84,238,0,0,86,238,0,0,86,238,0,0,88,238,0,0,92,238,0,0,92,238,0,0,92,238,0,0,92,238,0,0,94,238,0,0,96,238,0,0,96,238,0,0,96,238,0,0,100,238,0,0,100,238,0,0,2,128,175,22,247,55,7,0,3,128,95,208,15,226,7,0,5,0,246,29,138,115,8,0,5,0,246,29,117,124,8,0,5,0,246,29,105,133,8,0,9,0,9,60,117,79,7,0,10,128,205,131,81,40,6,0,11,0,69,152,106,133,9,0,11,0,69,152,136,133,9,0,12,128,41,238,119,225,6,0,12,128,121,27,38,98,7,0,18,0,45,122,196,8,6,0,25,128,79,239,38,98,7,0,26,128,97,35,237,73,7,0,26,128,185,133,118,226,8,0,26,128,185,133,72,228,8,0,28,128,136,62,125,92,11,0,29,128,195,116,138,115,8,0,29,128,195,116,117,124,8,0,29,128,195,116,105,133,8,0,29,0,120,139,233,53,9,0,29,0,120,139,38,54,9,0,29,0,120,139,118,54,9,0,33,128,218,4,123,236,9,0,34,0,179,82,38,81,6,0,35,0,189,146,138,115,8,0,35,0,189,146,117,124,8,0,35,0,189,146,105,133,8,0,36,128,192,231,152,71,6,0,36,128,165,124,234,187,8,0,36,128,165,124,25,188,8,0,39,0,148,29,75,153,6,0,40,0,248,69,103,46,7,0,40,128,123,247,140,142,8,0,40,128,123,247,235,142,8,0,40,128,123,247,83,143,8,0,42,128,126,91,225,44,6,0,45,0,6,52,71,236,6,0,47,128,123,2,230,73,9,0,52,128,95,33,61,199,5,0,52,128,217,200,237,73,7,0,55,0,36,172,123,236,9,0,57,0,6,164,73,169,7,0,65,128,189,174,136,58,7,0,65,0,195,0,57,171,8,0,65,0,195,0,133,172,8,0,65,0,195,0,211,173,8,0,67,128,135,19,50,211,6,0,68,0,112,167,179,46,11,0,69,0,118,201,77,200,6,0,70,128,230,36,167,8,7,0,71,0,170,242,212,243,6,0,73,0,39,154,167,71,7,0,78,0,72,20,242,204,7,0,78,128,174,13,27,79,10,0,79,128,215,157,138,115,8,0,79,128,215,157,117,124,8,0,79,128,215,157,105,133,8,0,80,0,141,124,25,94,7,0,81,128,83,34,71,236,6,0,81,128,221,59,90,131,7,0,83,0,168,16,69,69,7,0,84,0,227,247,46,225,7,0,85,0,66,132,123,236,9,0,86,0,94,198,71,236,6,0,86,0,189,70,68,65,11,0,91,0,125,27,240,15,8,0,91,0,125,27,30,16,8,0,91,0,125,27,83,16,8,0,91,0,207,58,133,213,10,0,92,128,151,49,56,96,6,0,92,128,26,15,113,232,6,0,92,0,25,247,71,236,6,0,96,0,254,83,152,111,7,0,96,128,212,147,206,203,7,0,96,0,254,83,84,53,8,0,96,0,35,124,135,90,9,0,96,0,35,124,124,91,9,0,97,0,15,170,61,224,6,0,98,0,251,192,123,236,9,0,100,0,220,247,245,28,10,0,100,0,220,247,145,31,10,0,102,128,214,223,212,243,6,0,103,0,58,238,214,7,7,0,106,128,96,181,3,21,11,0,108,0,33,116,27,223,6,0,110,128,156,99,123,236,9,0,114,128,28,219,81,239,8,0,114,128,28,219,40,240,8,0,115,0,166,41,245,91,6,0,115,128,197,5,38,98,7,0,117,0,239,10,248,234,6,0,117,0,239,10,38,98,7,0,118,0,17,186,38,98,7,0,119,0,99,244,80,32,7,0,120,128,230,207,5,165,7,0,123,0,83,229,115,210,5,0,125,128,222,213,212,243,6,0,127,128,52,85,136,58,7,0,127,128,184,138,55,229,10,0,128,0,148,130,224,146,8,0,128,0,148,130,132,150,8,0,129,128,73,206,38,98,7,0,132,128,70,198,139,158,8,0,132,128,70,198,224,163,8,0,133,0,187,118,73,76,10,0,136,128,17,67,29,5,7,0,138,0,10,184,85,31,7,0,138,0,227,160,180,144,8,0,138,0,227,160,67,145,8,0,138,0,53,145,253,208,8,0,138,0,53,145,22,211,8,0,139,128,216,106,136,58,7,0,141,128,152,199,164,25,7,0,141,128,134,130,132,18,9,0,141,128,134,130,211,18,9,0,141,128,134,130,49,19,9,0,141,128,134,130,130,19,9,0,143,128,134,96,142,220,10,0,144,128,112,5,117,79,7,0,144,128,212,198,140,142,8,0,144,128,212,198,235,142,8,0,144,128,212,198,83,143,8,0,146,0,192,42,179,222,8,0,146,0,192,42,152,223,8,0,148,128,13,185,85,31,7,0,150,128,125,205,54,233,6,0,150,128,161,7,163,82,8,0,150,128,161,7,239,82,8,0,150,128,161,7,60,83,8,0,150,128,225,30,138,115,8,0,150,128,131,105,138,115,8,0,150,128,225,30,117,124,8,0,150,128,131,105,117,124,8,0,150,128,225,30,105,133,8,0,150,128,131,105,105,133,8,0,150,128,13,60,151,64,10,0,150,128,13,60,203,64,10,0,151,128,184,177,66,230,6,0,153,0,171,135,57,171,8,0,153,0,171,135,133,172,8,0,153,0,171,135,211,173,8,0,154,0,135,28,66,215,5,0,154,128,157,226,224,146,8,0,154,128,157,226,132,150,8,0,154,128,157,226,71,133,10,0,155,128,110,0,123,236,9,0,157,0,192,104,91,147,7,0,163,128,102,114,117,79,7,0,164,128,123,198,50,211,6,0,165,0,136,201,117,79,7,0,167,0,6,253,183,110,8,0,167,0,6,253,2,111,8,0,169,128,198,142,150,167,7,0,169,0,53,234,138,115,8,0,169,0,53,234,117,124,8,0,169,0,53,234,105,133,8,0,169,0,173,77,81,239,8,0,169,0,173,77,40,240,8,0,171,0,253,45,142,21,11,0,177,128,67,114,216,131,10,0,178,0,123,146,221,38,10,0,178,0,123,146,62,40,10,0,181,128,228,148,245,228,6,0,181,128,227,26,245,187,10,0,181,128,227,26,4,188,10,0,186,0,234,105,230,70,7,0,187,0,94,82,224,33,6,0,191,128,37,236,250,57,8,0,193,128,56,31,219,1,7,0,193,128,190,64,138,115,8,0,193,128,190,64,117,124,8,0,193,128,190,64,105,133,8,0,194,0,191,26,199,78,6,0,195,0,178,55,18,233,5,0,196,0,22,142,205,151,9,0,196,0,22,142,199,152,9,0,196,0,22,142,220,153,9,0,196,0,22,142,83,84,10,0,197,128,105,239,239,206,5,0,197,128,80,3,253,208,8,0,197,128,80,3,22,211,8,0,197,0,168,209,230,73,10,0,199,0,200,85,29,204,8,0,199,0,200,85,6,205,8,0,200,0,195,104,158,183,7,0,200,0,189,76,224,146,8,0,200,0,189,76,132,150,8,0,202,0,82,253,239,253,5,0,203,128,155,134,125,44,7,0,203,128,155,134,33,65,7,0,206,0,184,30,109,172,9,0,206,0,184,30,178,173,9,0,206,0,184,30,250,174,9,0,206,128,40,148,225,234,10,0,208,128,240,192,104,247,10,0,209,128,42,180,38,98,7,0,210,0,76,134,113,54,6,0,212,0,161,94,210,110,7,0,213,128,101,42,133,220,6,0,214,0,141,193,20,90,6,0,214,0,141,193,85,90,6,0,214,0,188,65,132,140,10,0,216,0,209,71,100,217,10,0,221,0,203,141,179,181,7,0,224,0,188,208,221,38,10,0,224,0,188,208,62,40,10,0,226,0,7,16,212,243,6,0,229,0,111,83,119,199,6,0,229,128,176,25,71,236,6,0,229,128,225,137,224,146,8,0,229,128,225,137,132,150,8,0,230,0,6,209,30,219,5,0,230,128,19,204,254,243,5,0,230,128,19,204,153,89,7,0,232,0,151,144,191,102,9,0,232,0,151,144,219,102,9,0,234,0,252,82,236,26,7,0,238,128,234,183,38,98,7,0,238,0,220,247,75,1,9,0,238,0,220,247,154,2,9,0,238,0,220,247,235,3,9,0,238,0,220,247,65,5,9,0,241,0,80,174,21,36,7,0,241,0,87,0,25,88,10,0,241,0,87,0,51,88,10,0,242,0,24,243,17,205,9,0,242,0,24,243,53,205,9,0,242,0,24,243,77,205,9,0,243,0,76,196,99,66,8,0,244,128,40,84,39,65,9,0,244,128,40,84,161,65,9,0,244,128,40,84,21,66,9,0,244,128,40,84,188,66,9,0,244,128,40,84,85,67,9,0,246,128,196,139,61,224,6,0,246,0,10,76,68,159,10,0,250,128,196,65,212,243,6,0,250,128,13,99,237,73,7,0,252,0,76,202,221,38,10,0,252,0,76,202,62,40,10,0,253,0,69,196,107,182,9,0,253,0,69,196,141,182,9,0,1,129,253,136,133,220,6,0,3,129,206,242,228,251,10,0,4,1,196,224,180,144,8,0,4,1,196,224,67,145,8,0,5,1,162,9,90,53,7,0,5,1,95,44,178,249,9,0,5,1,95,44,210,249,9,0,5,1,95,44,237,249,9,0,9,1,237,6,215,204,10,0,16,1,86,135,33,235,6,0,16,129,186,183,139,158,8,0,16,129,186,183,224,163,8,0,16,1,86,135,213,102,10,0,17,129,17,176,84,21,8,0,18,129,82,104,12,234,6,0,18,129,157,38,80,161,7,0,20,1,31,235,236,51,7,0,21,1,49,103,179,17,7,0,21,1,49,103,38,98,7,0,21,1,171,201,38,98,7,0,21,1,171,201,227,108,7,0,21,129,65,29,72,204,9,0,24,1,152,103,119,225,6,0,24,1,0,79,138,115,8,0,24,1,0,79,117,124,8,0,24,1,0,79,105,133,8,0,26,129,16,162,209,23,9,0,26,129,16,162,236,23,9,0,31,129,205,175,80,92,11,0,38,129,23,101,136,58,7,0,38,129,23,101,38,98,7,0,40,129,224,45,255,201,6,0,40,129,224,45,22,247,8,0,40,129,224,45,60,247,8,0,41,1,59,77,123,236,9,0,43,1,127,223,3,157,8,0,43,1,127,223,180,157,8,0,44,129,163,28,193,143,10,0,45,129,254,166,73,202,10,0,45,129,254,166,194,210,10,0,46,129,26,177,61,40,7,0,50,1,157,128,48,98,6,0,50,1,157,128,62,40,8,0,50,1,157,128,113,40,8,0,50,1,157,128,163,40,8,0,53,129,241,106,133,41,11,0,57,129,82,93,65,91,6,0,58,1,20,200,212,243,6,0,61,129,39,149,2,199,9,0,61,129,39,149,169,199,9,0,64,1,226,40,33,65,7,0,67,1,253,161,227,108,7,0,67,1,253,161,10,28,10,0,67,1,253,161,74,28,10,0,67,1,253,161,134,28,10,0,72,1,43,28,18,81,6,0,72,129,54,197,253,208,8,0,72,129,54,197,22,211,8,0,76,129,64,127,164,223,5,0,76,129,5,118,38,98,7,0,76,1,52,150,124,10,9,0,77,1,109,134,29,204,8,0,77,1,109,134,6,205,8,0,81,1,225,23,178,233,6,0,81,1,222,100,167,71,7,0,82,129,122,250,139,175,7,0,82,129,114,223,138,115,8,0,82,129,114,223,117,124,8,0,82,129,114,223,105,133,8,0,85,1,88,233,23,179,8,0,85,1,88,233,119,179,8,0,88,1,239,9,175,30,7,0,88,129,197,29,57,171,8,0,88,129,197,29,133,172,8,0,88,129,197,29,211,173,8,0,88,1,7,81,135,90,9,0,88,1,7,81,124,91,9,0,91,1,171,122,152,111,7,0,91,1,171,122,225,183,9,0,92,1,77,159,224,146,8,0,92,1,77,159,132,150,8,0,94,1,42,4,65,174,6,0,95,1,106,220,124,222,6,0,99,129,19,246,67,37,10,0,99,129,19,246,96,37,10,0,99,129,19,246,122,37,10,0,100,1,153,167,245,28,10,0,100,1,153,167,145,31,10,0,101,1,47,102,237,231,6,0,102,1,102,215,151,21,7,0,105,129,75,105,248,197,7,0,105,1,161,212,159,92,9,0,105,1,161,212,5,93,9,0,107,129,111,51,27,119,9,0,107,129,111,51,102,119,9,0,110,129,61,103,249,154,8,0,110,129,61,103,148,155,8,0,110,129,61,103,52,156,8,0,110,129,32,217,123,236,9,0,114,1,34,176,215,156,10,0,117,1,46,190,117,37,7,0,123,129,148,255,12,160,7,0,123,129,153,249,28,68,9,0,123,129,153,249,215,68,9,0,123,1,79,209,213,41,10,0,123,1,79,209,87,42,10,0,124,1,93,21,99,42,7,0,125,1,4,110,201,206,5,0,125,1,65,72,3,224,6,0,126,1,14,105,180,28,7,0,130,1,216,47,254,254,6,0,130,129,186,148,192,93,8,0,131,129,7,64,104,15,10,0,131,129,7,64,169,15,10,0,131,129,64,233,63,184,10,0,132,129,5,182,227,108,7,0,132,129,5,182,92,127,7,0,132,129,10,12,180,58,11,0,140,129,11,27,254,254,6,0,142,129,108,106,115,21,11,0,143,129,121,28,253,208,8,0,143,129,121,28,22,211,8,0,143,129,123,42,160,100,11,0,145,129,231,242,165,9,9,0,145,129,231,242,221,9,9,0,145,129,231,242,22,10,9,0,146,1,84,148,228,213,7,0,148,1,122,234,205,151,9,0,148,1,122,234,199,152,9,0,148,1,122,234,220,153,9,0,149,1,231,178,90,56,9,0,149,1,231,178,171,56,9,0,149,1,231,178,54,57,9,0,154,129,65,29,90,53,7,0,155,1,217,248,63,112,9,0,155,1,217,248,116,112,9,0,157,129,182,163,232,191,8,0,157,129,182,163,162,193,8,0,159,1,3,41,226,43,9,0,159,1,3,41,66,44,9,0,159,1,3,41,167,44,9,0,159,1,3,41,5,45,9,0,159,1,3,41,108,45,9,0,160,129,160,236,138,115,8,0,160,129,160,236,117,124,8,0,160,129,160,236,105,133,8,0,160,129,215,6,93,18,11,0,161,1,76,206,60,41,7,0,161,1,33,219,152,111,7,0,161,1,33,219,243,118,7,0,161,1,33,219,11,119,7,0,161,1,33,219,62,124,7,0,162,129,27,167,224,146,8,0,162,129,27,167,132,150,8,0,163,129,69,242,163,191,5,0,166,129,25,41,219,1,7,0,166,129,25,41,99,3,7,0,168,129,127,254,23,8,6,0,168,129,174,250,171,49,7,0,170,129,237,101,167,34,7,0,171,129,172,97,249,154,8,0,171,129,172,97,148,155,8,0,171,129,172,97,52,156,8,0,172,1,93,158,27,223,6,0,172,129,194,5,34,10,10,0,172,1,93,158,30,191,10,0,173,129,66,237,117,79,7,0,175,129,28,79,38,98,7,0,177,129,155,235,57,171,8,0,177,129,155,235,133,172,8,0,177,129,155,235,211,173,8,0,178,129,213,252,212,243,6,0,181,1,252,92,227,218,6,0,182,1,233,114,118,226,8,0,182,1,233,114,72,228,8,0,183,1,136,84,164,146,10,0,187,1,170,7,213,204,6,0,188,1,169,29,237,73,7,0,189,129,111,245,154,4,7,0,190,129,6,73,32,30,7,0,190,1,80,187,76,81,9,0,190,1,80,187,115,81,9,0,191,129,64,233,8,1,7,0,193,129,17,91,153,11,7,0,193,129,17,91,135,13,7,0,193,129,17,91,51,96,7,0,193,1,223,69,152,111,7,0,193,1,223,69,62,124,7,0,193,129,17,91,33,136,7,0,193,1,103,126,253,208,8,0,193,1,103,126,22,211,8,0,196,1,252,179,38,98,7,0,196,1,215,38,227,237,8,0,196,1,215,38,250,237,8,0,198,129,57,154,38,98,7,0,200,1,44,77,227,108,7,0,200,1,44,77,144,202,9,0,201,129,111,40,80,32,7,0,205,129,210,151,34,50,6,0,206,1,102,36,91,147,7,0,207,129,105,115,65,189,7,0,212,129,97,251,38,98,7,0,215,1,46,126,236,252,7,0,218,129,137,17,96,222,6,0,222,129,140,172,123,236,9,0,223,1,52,208,109,231,6,0,223,1,24,69,195,48,7,0,223,1,24,69,138,51,7,0,223,129,56,12,139,158,8,0,223,129,56,12,224,163,8,0,223,1,248,133,129,83,11,0,226,129,112,37,135,252,6,0,226,129,112,37,194,252,6,0,228,1,220,145,72,204,9,0,229,1,195,121,152,111,7,0,229,1,195,121,62,124,7,0,229,129,41,157,0,190,8,0,229,129,41,157,168,190,8,0,230,1,84,157,248,53,6,0,230,129,230,175,179,17,7,0,230,1,18,54,110,193,10,0,231,1,36,255,109,133,6,0,231,1,118,58,168,219,9,0,231,1,118,58,196,219,9,0,234,129,3,72,80,55,8,0,237,129,33,119,212,243,6,0,240,1,240,1,71,236,6,0,242,1,16,36,138,115,8,0,242,1,16,36,117,124,8,0,242,1,16,36,105,133,8,0,243,129,82,182,240,184,10,0,244,1,226,154,90,175,8,0,244,1,226,154,74,176,8,0,246,129,171,122,99,202,5,0,249,1,15,22,34,41,7,0,254,1,25,190,26,245,5,0,254,129,138,219,60,124,6,0,254,129,155,6,185,198,6,0,255,129,171,92,117,212,6,0,1,2,81,248,222,42,7,0,1,2,178,11,245,193,10,0,5,130,19,79,177,181,8,0,5,130,19,79,204,181,8,0,14,130,155,43,139,158,8,0,14,130,155,43,224,163,8,0,17,2,217,184,236,51,7,0,18,2,221,28,20,15,7,0,18,2,43,113,48,75,9,0,18,2,43,113,91,75,9,0,19,130,78,1,66,230,6,0,20,2,234,2,237,231,6,0,20,130,201,108,62,4,7,0,21,130,59,28,199,145,7,0,21,130,240,89,123,236,9,0,22,2,17,249,105,177,8,0,22,2,17,249,162,177,8,0,23,2,130,180,7,220,6,0,25,130,160,228,173,226,5,0,27,130,133,76,69,3,6,0,27,2,93,133,167,107,7,0,27,2,93,133,27,118,7,0,27,2,37,120,142,137,10,0,28,2,220,43,38,98,7,0,28,2,220,43,114,243,8,0,28,2,220,43,37,244,8,0,29,2,81,101,118,214,6,0,32,130,81,190,90,56,9,0,32,130,81,190,171,56,9,0,32,130,81,190,54,57,9,0,33,130,23,101,160,18,11,0,35,2,122,35,216,221,6,0,37,130,4,141,125,44,7,0,40,2,11,146,236,51,7,0,42,130,122,27,118,226,8,0,42,130,122,27,72,228,8,0,42,130,28,81,79,236,10,0,50,130,224,248,160,234,8,0,50,130,224,248,175,235,8,0,51,2,106,212,122,155,10,0,56,130,86,69,224,174,7,0,60,2,169,166,227,218,6,0,60,2,169,166,101,219,6,0,61,130,81,190,165,2,10,0,61,130,81,190,184,2,10,0,62,2,63,193,171,63,7,0,63,130,89,53,247,55,7,0,64,2,59,78,126,198,5,0,65,2,132,159,81,239,8,0,65,2,132,159,40,240,8,0,66,130,139,152,165,180,6,0,68,2,163,187,38,98,7,0,68,130,204,241,228,202,7,0,68,130,116,253,117,9,8,0,68,130,116,253,167,9,8,0,73,130,58,255,165,226,6,0,75,130,121,42,139,158,8,0,75,130,121,42,224,163,8,0,76,2,52,36,7,220,6,0,76,2,83,207,117,37,7,0,77,130,215,120,201,230,6,0,77,130,18,237,140,142,8,0,77,130,18,237,235,142,8,0,77,130,18,237,83,143,8,0,79,130,8,137,224,146,8,0,79,130,8,137,132,150,8,0,79,130,25,135,232,251,9,0,79,130,25,135,176,252,9,0,82,130,92,117,178,233,6,0,84,130,163,236,179,17,7,0,84,2,126,241,252,105,8,0,84,2,116,174,3,157,8,0,84,2,116,174,180,157,8,0,85,2,215,90,38,253,8,0,85,2,215,90,173,253,8,0,86,2,99,38,117,79,7,0,87,2,180,148,38,98,7,0,88,130,56,30,112,5,10,0,88,130,56,30,28,6,10,0,90,2,46,80,123,236,9,0,92,2,73,106,158,91,6,0,92,130,65,130,152,111,7,0,92,130,65,130,94,189,9,0,96,2,174,170,45,182,6,0,96,2,231,242,237,73,7,0,96,130,142,120,73,240,10,0,100,2,37,144,22,245,7,0,103,2,7,237,247,55,7,0,105,2,234,2,75,193,5,0,105,2,234,2,122,130,6,0,109,2,246,157,237,73,7,0,110,130,98,27,189,17,6,0,111,130,157,38,107,52,6,0,112,2,141,58,80,32,7,0,112,2,116,104,38,105,11,0,115,2,188,148,71,236,6,0,115,130,154,109,237,73,7,0,116,130,123,198,136,33,8,0,118,130,32,157,243,22,8,0,119,2,41,4,212,243,6,0,121,130,112,179,30,171,9,0,121,130,112,179,30,171,9,0,122,130,150,83,224,146,8,0,122,130,150,83,132,150,8,0,122,130,64,96,104,244,9,0,122,130,64,96,251,244,9,0,122,130,64,96,146,245,9,0,122,130,241,134,166,73,10,0,124,130,67,47,138,115,8,0,124,130,67,47,117,124,8,0,124,130,67,47,105,133,8,0,127,130,206,229,126,198,9,0,127,130,206,229,159,198,9,0,127,130,206,229,183,198,9,0,130,2,154,37,136,58,7,0,134,2,94,45,76,183,6,0,136,2,73,139,85,31,7,0,138,130,153,239,118,0,7,0,139,2,99,244,191,148,7,0,140,130,113,46,138,115,8,0,140,130,113,46,117,124,8,0,140,130,113,46,105,133,8,0,146,2,240,127,88,85,10,0,147,130,202,188,158,238,5,0,147,130,202,188,17,140,6,0,148,130,1,123,205,151,9,0,148,130,1,123,199,152,9,0,148,130,1,123,220,153,9,0,150,2,96,108,71,236,6,0,150,2,90,97,139,158,8,0,150,130,55,220,139,158,8,0,150,2,90,97,224,163,8,0,150,130,55,220,224,163,8,0,150,2,203,55,29,204,8,0,150,2,203,55,6,205,8,0,151,2,241,26,118,226,8,0,151,2,241,26,72,228,8,0,153,2,232,3,212,243,6,0,153,130,102,205,232,191,8,0,153,130,102,205,162,193,8,0,156,130,46,128,153,207,8,0,156,130,46,128,44,208,8,0,158,2,73,203,236,26,7,0,159,130,240,45,46,35,11,0,162,2,202,251,142,83,9,0,166,2,168,247,155,67,7,0,166,130,224,239,96,54,8,0,167,130,81,91,228,233,5,0,167,130,113,196,118,214,6,0,170,130,186,148,246,213,5,0,170,130,4,171,95,91,8,0,171,2,100,146,206,87,9,0,171,2,100,146,25,88,9,0,173,2,201,154,94,140,10,0,173,2,109,139,183,167,10,0,174,2,94,252,123,236,9,0,176,130,165,55,121,202,5,0,176,130,186,148,81,249,5,0,178,2,139,50,113,47,7,0,178,2,139,50,184,200,7,0,179,130,181,202,130,227,6,0,180,130,231,242,245,28,10,0,180,130,231,242,145,31,10,0,180,130,177,189,63,199,10,0,182,130,233,195,38,98,7,0,184,2,39,157,172,11,11,0,185,2,208,138,171,63,7,0,185,2,127,223,237,73,7,0,187,130,226,49,34,10,10,0,188,2,232,54,253,208,8,0,188,2,232,54,22,211,8,0,188,2,38,126,215,16,10,0,188,2,38,126,135,17,10,0,189,2,209,154,29,150,7,0,189,2,209,231,139,158,8,0,189,2,209,231,224,163,8,0,191,130,99,194,247,214,6,0,194,2,188,7,146,235,6,0,195,2,34,239,186,198,8,0,195,2,34,239,213,198,8,0,195,2,34,239,248,198,8,0,195,2,200,226,118,226,8,0,195,2,200,226,72,228,8,0,196,130,55,167,139,158,8,0,196,130,55,167,224,163,8,0,198,130,128,171,156,162,10,0,199,2,99,244,113,232,6,0,199,2,99,244,1,87,11,0,200,130,201,200,154,221,6,0,200,130,81,82,154,4,7,0,202,2,160,197,237,73,7,0,203,2,63,153,71,236,6,0,205,130,60,82,26,127,6,0,209,2,195,243,66,230,6,0,209,2,192,181,38,98,7,0,211,130,23,156,233,53,9,0,211,130,23,156,38,54,9,0,211,130,23,156,118,54,9,0,213,130,100,68,6,106,9,0,213,130,100,68,31,106,9,0,213,130,19,69,58,197,10,0,214,2,182,219,126,162,6,0,216,2,130,158,223,18,6,0,216,130,170,37,183,110,8,0,216,130,170,37,2,111,8,0,218,2,250,209,32,68,11,0,219,2,235,194,63,31,6,0,221,130,190,167,227,220,10,0,222,130,178,11,188,23,6,0,222,2,238,103,253,208,8,0,222,2,238,103,22,211,8,0,225,2,129,14,20,15,7,0,225,130,160,33,80,32,7,0,229,2,192,148,30,5,6,0,229,130,217,173,221,38,10,0,229,130,217,173,62,40,10,0,230,130,102,27,167,107,7,0,230,130,102,27,1,123,7,0,236,130,124,132,117,79,7,0,240,130,60,216,253,208,8,0,240,130,60,216,22,211,8,0,242,2,171,31,232,191,8,0,242,2,171,31,232,191,8,0,242,2,171,31,162,193,8,0,242,2,171,31,162,193,8,0,243,2,212,134,84,21,8,0,243,130,5,116,139,214,9,0,243,130,5,116,234,214,9,0,243,130,5,116,70,215,9,0,247,130,78,213,38,98,7,0,248,2,56,189,62,4,7,0,251,2,78,70,45,223,7,0,251,2,78,70,130,223,7,0,251,2,78,70,178,223,7,0,252,130,120,238,138,69,10,0,254,2,154,109,0,76,10,0,255,130,208,199,236,51,7,0,2,3,45,178,118,226,8,0,2,3,45,178,72,228,8,0,3,131,165,21,237,73,7,0,6,3,64,91,38,98,7,0,9,3,92,128,235,189,7,0,12,131,86,135,38,98,7,0,14,3,244,147,185,48,6,0,14,131,213,0,154,221,6,0,14,3,251,210,224,146,8,0,14,3,251,210,132,150,8,0,14,131,215,203,11,52,10,0,14,131,215,203,79,52,10,0,17,3,52,44,20,15,7,0,17,3,52,44,179,17,7,0,17,131,114,244,136,58,7,0,17,3,12,194,219,210,7,0,17,3,52,44,21,73,11,0,19,3,234,174,61,199,5,0,20,131,39,127,57,10,7,0,22,131,27,136,63,212,7,0,24,131,143,138,139,78,10,0,30,3,66,60,114,143,6,0,32,131,87,51,108,13,11,0,32,131,87,51,3,21,11,0,38,131,98,87,138,115,8,0,38,131,98,87,117,124,8,0,38,131,98,87,105,133,8,0,47,131,175,124,122,92,7,0,47,3,84,146,14,146,8,0,47,3,84,146,49,146,8,0,48,131,132,136,152,111,7,0,48,131,132,136,173,169,8,0,51,131,94,124,179,62,11,0,52,3,248,165,69,69,7,0,55,3,121,242,168,9,7,0,55,3,121,242,173,165,7,0,55,3,246,187,165,24,11,0,57,131,208,28,168,235,5,0,57,131,206,6,123,236,9,0,58,131,111,97,210,110,7,0,61,131,11,94,72,202,8,0,61,131,11,94,175,202,8,0,62,3,255,178,75,142,9,0,62,3,255,178,201,142,9,0,62,3,255,178,84,143,9,0,62,3,22,57,134,14,11,0,64,131,124,149,244,197,10,0,67,131,84,107,71,236,6,0,68,131,102,92,93,166,6,0,69,131,76,247,186,55,6,0,72,131,217,123,69,131,6,0,72,131,132,113,236,213,6,0,77,3,19,246,212,243,6,0,79,3,41,80,154,221,6,0,80,131,142,249,38,98,7,0,80,3,193,50,152,111,7,0,80,3,193,50,103,201,8,0,80,3,193,50,132,201,8,0,81,3,128,34,224,146,8,0,81,3,128,34,132,150,8,0,85,3,15,110,93,199,5,0,85,131,214,26,126,79,6,0,85,3,15,110,179,17,7,0,86,3,125,148,179,222,8,0,86,3,125,148,152,223,8,0,86,3,211,104,136,52,11,0,88,3,255,180,152,111,7,0,88,3,255,180,243,123,7,0,88,3,255,180,62,124,7,0,90,131,191,117,247,77,11,0,91,3,158,220,117,37,7,0,92,131,83,127,180,155,7,0,94,3,5,61,15,8,8,0,94,131,20,185,105,133,8,0,94,3,1,251,104,15,10,0,94,3,1,251,169,15,10,0,95,131,31,190,104,244,9,0,95,131,31,190,251,244,9,0,95,131,31,190,146,245,9,0,96,3,231,230,24,77,11,0,102,3,186,148,81,254,5,0,102,3,155,196,40,69,6,0,102,131,122,227,152,111,7,0,102,131,122,227,245,58,9,0,105,3,18,1,175,26,7,0,105,3,41,165,99,66,8,0,107,3,175,222,124,57,8,0,108,3,23,107,250,57,8,0,109,131,36,56,10,54,8,0,112,131,167,216,253,208,8,0,112,131,167,216,22,211,8,0,114,131,87,198,123,236,9,0,116,3,3,165,88,129,7,0,118,3,223,168,152,111,7,0,118,131,177,168,77,120,9,0,118,131,177,168,123,120,9,0,123,3,84,171,71,236,6,0,123,3,227,89,224,146,8,0,123,3,227,89,132,150,8,0,124,3,71,170,55,86,10,0,125,131,217,232,80,45,11,0,128,131,136,37,26,0,7,0,131,131,43,140,253,208,8,0,131,131,43,140,22,211,8,0,132,3,9,0,76,183,6,0,133,131,52,216,141,195,8,0,133,131,52,216,112,196,8,0,133,131,52,216,75,197,8,0,136,3,234,28,167,107,7,0,136,3,234,28,62,124,7,0,137,131,106,148,63,25,7,0,138,131,72,108,21,184,6,0,138,131,72,108,14,122,10,0,140,131,242,253,153,11,7,0,140,131,242,253,135,13,7,0,140,131,242,253,31,60,8,0,142,3,180,147,167,34,7,0,142,3,59,76,71,209,7,0,144,131,177,37,212,243,6,0,145,131,116,136,71,236,6,0,148,3,135,165,139,158,8,0,148,3,135,165,224,163,8,0,149,3,57,176,199,185,8,0,149,3,57,176,232,185,8,0,155,131,25,142,187,204,6,0,157,3,121,201,236,51,7,0,159,131,91,18,155,67,7,0,161,131,162,106,237,73,7,0,162,3,62,32,139,158,8,0,162,3,62,32,224,163,8,0,163,131,23,154,54,218,6,0,165,131,140,8,71,236,6,0,166,3,180,55,215,103,6,0,167,3,84,219,165,11,9,0,167,3,84,219,58,12,9,0,170,3,91,99,15,206,6,0,172,3,36,149,137,72,7,0,175,131,149,3,123,236,9,0,176,3,46,254,57,10,7,0,177,3,157,247,90,53,7,0,180,3,43,52,219,1,7,0,181,131,169,138,229,223,7,0,181,131,215,213,138,115,8,0,181,131,215,213,117,124,8,0,181,131,215,213,105,133,8,0,184,3,62,127,172,145,7,0,185,3,150,253,72,231,7,0,187,131,223,94,152,118,9,0,187,131,223,94,196,118,9,0,188,3,65,76,219,1,7,0,189,131,20,144,36,84,10,0,193,131,2,105,20,15,7,0,193,131,140,231,217,179,10,0,194,131,189,120,154,114,8,0,194,3,240,11,138,115,8,0,194,3,240,11,117,124,8,0,194,3,240,11,105,133,8,0,194,3,126,33,112,5,10,0,194,3,126,33,28,6,10,0,196,3,233,77,230,215,6,0,197,3,80,167,202,212,5,0,198,131,242,25,212,243,6,0,200,3,1,123,245,228,6,0,200,131,16,14,126,99,9,0,200,131,16,14,157,99,9,0,200,3,100,214,30,49,11,0,200,3,1,123,228,84,11,0,208,3,198,148,76,201,5,0,208,3,157,238,140,101,10,0,213,3,87,102,57,224,7,0,213,131,144,68,146,19,10,0,213,131,144,68,177,19,10,0,213,3,150,49,238,217,10,0,214,3,12,30,25,182,8,0,214,3,12,30,42,182,8,0,214,131,54,158,80,167,9,0,215,3,215,36,187,215,10,0,216,131,76,162,71,236,6,0,216,3,230,27,182,114,8,0,216,131,133,36,87,3,10,0,216,131,133,36,112,3,10,0,216,131,133,36,136,3,10,0,219,3,103,163,3,187,5,0,220,131,185,67,195,48,7,0,220,3,216,54,34,10,10,0,224,3,229,186,165,11,9,0,224,3,229,186,58,12,9,0,231,131,167,10,64,163,7,0,234,3,203,13,117,79,7,0,234,131,147,26,183,229,10,0,236,3,22,79,38,98,7,0,236,131,39,128,182,61,8,0,236,131,39,128,178,174,10,0,237,3,148,190,232,251,9,0,237,3,148,190,176,252,9,0,238,3,76,120,38,98,7,0,243,3,141,202,26,58,11,0,244,3,83,156,32,101,10,0,244,3,83,156,57,101,10,0,245,131,66,151,22,62,10,0,246,131,170,19,55,104,11,0,248,131,142,11,141,195,8,0,248,131,142,11,112,196,8,0,248,131,142,11,75,197,8,0,251,3,58,4,121,182,8,0,251,3,58,4,153,182,8,0,252,131,145,254,29,150,7,0,253,131,27,243,20,120,6,0,2,4,75,163,123,236,9,0,3,132,73,193,224,190,10,0,4,4,161,15,123,236,9,0,5,4,217,167,133,220,6,0,6,132,211,16,2,32,7,0,6,4,184,232,216,193,10,0,9,132,30,191,117,79,7,0,10,132,85,166,133,225,5,0,10,132,85,166,146,51,6,0,11,4,74,124,246,205,8,0,11,4,74,124,155,206,8,0,12,4,22,126,111,184,6,0,16,4,168,9,225,201,6,0,18,132,245,54,141,230,9,0,18,132,245,54,217,230,9,0,19,4,133,212,117,79,7,0,22,132,66,120,237,73,7,0,23,132,82,126,133,220,6,0,23,4,184,232,212,243,6,0,24,132,56,198,142,66,6,0,24,132,112,101,32,101,6,0,24,132,56,198,158,138,10,0,25,132,14,192,248,53,6,0,25,132,235,151,224,146,8,0,25,132,235,151,132,150,8,0,27,132,121,27,123,236,9,0,28,4,118,181,233,210,5,0,34,132,59,78,99,42,7,0,35,4,254,7,247,214,6,0,35,132,49,190,227,218,6,0,35,132,49,190,101,219,6,0,35,4,190,59,117,37,7,0,35,132,49,190,117,79,7,0,37,4,92,236,104,244,9,0,37,4,92,236,251,244,9,0,37,4,92,236,146,245,9,0,38,132,77,240,78,229,6,0,40,132,110,49,5,222,10,0,44,4,74,139,38,98,7,0,44,4,157,251,142,138,10,0,47,4,198,6,125,177,9,0,47,4,198,6,224,177,9,0,47,4,198,6,64,178,9,0,48,132,193,148,222,147,6,0,49,4,188,236,10,204,6,0,50,132,219,241,113,24,7,0,52,4,28,237,31,207,5,0,52,4,192,199,38,98,7,0,52,4,72,203,38,98,7,0,52,4,72,203,191,183,8,0,59,132,34,243,240,226,6,0,60,132,157,38,136,58,7,0,60,132,157,96,69,69,7,0,60,4,244,197,206,98,8,0,60,4,214,14,81,239,8,0,60,4,214,14,40,240,8,0,60,4,11,136,221,38,10,0,60,4,11,136,62,40,10,0,61,132,142,227,179,222,8,0,61,132,142,227,152,223,8,0,68,132,169,223,78,47,11,0,72,4,223,1,85,104,10,0,73,132,197,227,51,73,6,0,73,4,192,250,118,226,8,0,73,4,192,250,72,228,8,0,75,4,231,118,107,6,6,0,75,4,184,7,68,113,10,0,77,4,207,50,205,151,9,0,77,4,207,50,199,152,9,0,77,4,207,50,220,153,9,0,78,4,202,133,128,81,6,0,78,132,132,170,15,206,6,0,78,132,132,170,71,236,6,0,81,132,73,175,138,115,8,0,81,132,73,175,117,124,8,0,81,132,73,175,105,133,8,0,82,4,146,47,113,47,7,0,82,132,67,1,182,114,8,0,85,132,187,144,237,73,7,0,86,4,29,83,138,115,8,0,86,4,29,83,117,124,8,0,86,4,29,83,105,133,8,0,87,4,48,209,66,230,6,0,87,132,122,143,28,236,6,0,88,4,212,252,152,111,7,0,88,4,212,252,229,118,7,0,88,4,212,252,62,124,7,0,92,132,145,0,172,161,6,0,95,4,15,127,185,188,5,0,96,132,117,172,194,59,10,0,97,4,7,185,117,79,7,0,98,4,92,248,12,234,6,0,101,132,36,182,238,127,10,0,102,132,143,166,225,145,6,0,103,132,48,72,109,172,9,0,103,132,48,72,178,173,9,0,103,132,48,72,250,174,9,0,104,132,171,152,237,73,7,0,104,132,119,151,54,239,10,0,106,132,155,123,248,179,7,0,106,132,155,123,47,81,8,0,108,132,34,129,140,68,6,0,108,132,250,24,84,21,8,0,111,132,151,52,27,32,7,0,111,4,180,120,117,79,7,0,112,132,7,116,112,5,10,0,112,132,7,116,28,6,10,0,114,132,128,163,241,41,6,0,114,132,225,249,71,236,6,0,118,4,97,216,236,26,7,0,120,4,136,129,63,93,6,0,122,132,24,253,33,210,6,0,122,4,94,195,183,237,10,0,124,132,118,46,232,191,8,0,124,132,118,46,162,193,8,0,127,4,52,244,152,111,7,0,127,4,52,244,182,43,10,0,128,132,16,246,232,191,8,0,128,132,16,246,162,193,8,0,128,132,47,44,29,204,8,0,128,132,47,44,6,205,8,0,128,132,170,162,64,193,9,0,129,4,61,126,121,97,7,0,129,4,61,126,25,127,7,0,131,132,218,227,7,35,6,0,131,132,218,227,247,118,6,0,132,132,112,70,44,90,10,0,134,132,31,114,101,176,9,0,134,132,31,114,130,176,9,0,135,4,22,150,57,171,8,0,135,4,22,150,133,172,8,0,135,4,22,150,211,173,8,0,135,132,47,157,47,195,10,0,136,132,109,109,164,25,7,0,137,132,182,94,194,35,10,0,137,132,182,94,14,36,10,0,139,132,116,108,20,15,7,0,139,132,116,108,179,17,7,0,141,132,37,139,28,68,9,0,141,132,37,139,215,68,9,0,142,132,171,51,55,114,10,0,143,132,46,49,138,115,8,0,143,132,46,49,117,124,8,0,143,132,46,49,105,133,8,0,145,4,15,64,243,239,5,0,145,132,29,85,91,70,7,0,147,4,51,126,241,97,6,0,148,4,129,240,66,230,6,0,148,132,126,33,109,172,9,0,148,132,126,33,178,173,9,0,148,132,126,33,250,174,9,0,149,132,113,153,219,210,7,0,151,132,4,12,197,253,6,0,152,132,253,158,180,28,7,0,153,132,19,246,209,205,6,0,154,4,185,140,140,156,9,0,154,4,185,140,157,156,9,0,154,4,185,140,177,156,9,0,155,132,151,217,179,17,7,0,155,132,151,217,246,64,10,0,157,132,159,126,101,94,7,0,158,132,118,239,254,38,6,0,159,4,27,97,66,230,6,0,162,132,157,92,224,146,8,0,162,132,157,92,132,150,8,0,165,4,192,0,99,66,8,0,166,132,9,77,132,215,6,0,168,4,151,239,158,89,10,0,169,4,131,232,90,53,7,0,172,4,68,75,85,31,7,0,174,4,181,218,236,51,7,0,176,132,179,205,155,67,7,0,178,4,194,179,117,79,7,0,179,4,188,229,173,208,6,0,185,132,11,36,73,76,10,0,187,132,140,15,153,11,7,0,187,132,140,15,135,13,7,0,187,4,100,158,121,97,7,0,187,4,100,158,217,187,10,0,189,4,34,119,106,59,9,0,189,4,34,119,181,59,9,0,193,132,92,221,245,28,10,0,193,132,92,221,145,31,10,0,196,4,86,53,237,73,7,0,198,132,105,51,68,49,11,0,200,132,168,46,138,115,8,0,200,132,168,46,117,124,8,0,200,132,168,46,105,133,8,0,201,4,148,165,201,183,10,0,202,132,57,104,212,243,6,0,206,132,54,30,103,114,8,0,206,4,117,204,90,175,8,0,206,4,117,204,74,176,8,0,206,4,90,58,118,226,8,0,206,4,90,58,72,228,8,0,207,4,166,157,237,73,7,0,207,4,127,231,138,115,8,0,207,4,127,231,117,124,8,0,207,4,127,231,105,133,8,0,208,132,150,144,122,50,6,0,208,132,244,239,155,203,6,0,210,4,174,239,112,37,6,0,215,4,34,153,161,201,8,0,215,4,34,153,217,201,8,0,216,4,252,28,240,65,10,0,217,4,168,239,152,229,6,0,217,132,74,57,123,236,9,0,217,4,115,0,187,204,10,0,218,132,82,102,219,1,7,0,218,4,86,162,113,47,7,0,218,132,82,102,193,51,11,0,220,4,62,3,182,234,6,0,220,4,32,2,247,55,7,0,220,4,32,2,38,98,7,0,221,4,113,87,46,59,10,0,222,4,214,101,76,16,9,0,222,4,214,101,146,16,9,0,223,132,184,54,71,236,6,0,226,4,20,179,124,10,9,0,228,4,226,252,123,236,9,0,229,4,133,82,118,226,8,0,229,4,133,82,72,228,8,0,232,4,118,48,78,217,6,0,234,132,180,213,20,15,7,0,234,4,243,106,6,230,10,0,236,132,201,214,29,94,6,0,236,4,185,146,232,251,9,0,236,4,185,146,176,252,9,0,237,132,61,139,7,220,6,0,237,132,94,219,71,236,6,0,237,132,94,219,197,35,11,0,238,4,236,196,212,243,6,0,242,4,234,189,212,243,6,0,248,132,156,6,219,210,7,0,249,4,149,25,219,1,7,0,250,132,135,128,246,221,6,0,250,4,17,54,210,110,7,0,250,4,17,54,177,118,7,0,250,4,90,233,13,195,10,0,250,132,115,209,150,75,11,0,253,132,82,218,71,236,6,0,0,5,76,104,197,22,6,0,0,5,47,5,253,208,8,0,0,5,47,5,22,211,8,0,0,5,163,185,131,72,10,0,2,5,162,234,38,98,7,0,7,133,100,89,127,241,5,0,7,133,55,91,113,24,7,0,7,133,187,143,237,73,7,0,9,133,155,251,38,98,7,0,10,5,248,110,118,226,8,0,10,5,248,110,72,228,8,0,11,133,86,3,227,108,7,0,11,133,86,3,204,36,9,0,11,5,190,15,187,246,10,0,12,5,161,194,40,217,8,0,12,5,161,194,209,217,8,0,12,5,58,185,39,65,9,0,12,5,58,185,161,65,9,0,12,5,58,185,21,66,9,0,12,5,58,185,188,66,9,0,12,5,58,185,85,67,9,0,12,5,146,39,249,4,10,0,12,5,146,39,19,5,10,0,12,5,146,39,43,5,10,0,15,5,91,240,117,79,7,0,15,133,0,212,38,98,7,0,17,133,103,181,38,98,7,0,20,5,165,204,90,175,8,0,20,5,165,204,74,176,8,0,23,133,43,4,71,236,6,0,24,133,59,135,175,200,6,0,30,5,56,52,26,9,6,0,30,5,93,224,113,24,7,0,31,5,174,2,249,209,5,0,32,133,143,166,113,232,6,0,32,5,238,90,155,67,7,0,34,5,183,27,212,243,6,0,34,133,89,44,90,175,8,0,34,133,89,44,74,176,8,0,35,133,109,172,247,55,7,0,35,133,238,145,117,79,7,0,37,5,83,42,188,52,9,0,38,5,26,125,71,236,6,0,39,133,142,74,179,17,7,0,39,133,142,74,5,248,8,0,39,133,142,74,42,248,8,0,42,133,176,193,123,204,6,0,43,133,179,224,148,117,10,0,45,5,76,94,112,27,7,0,48,133,192,5,137,61,11,0,48,133,192,5,68,62,11,0,51,5,106,202,61,199,5,0,53,133,216,252,8,134,10,0,56,5,128,143,139,158,8,0,56,5,128,143,224,163,8,0,56,5,114,17,220,12,10,0,56,5,114,17,22,13,10,0,58,5,190,144,133,220,6,0,58,133,217,232,212,243,6,0,59,133,193,66,253,208,8,0,59,133,193,66,22,211,8,0,60,133,3,92,117,79,7,0,61,5,148,77,40,213,6,0,63,133,119,166,123,236,9,0,64,5,5,152,133,220,6,0,65,5,188,161,152,111,7,0,65,5,188,161,89,206,7,0,69,5,131,218,118,11,7,0,70,133,243,183,115,189,5,0,73,5,151,81,129,25,7,0,75,133,11,140,237,73,7,0,75,5,193,29,69,64,10,0,75,133,11,140,67,111,10,0,76,5,164,17,164,192,9,0,76,5,164,17,198,192,9,0,76,5,164,17,242,192,9,0,77,133,75,26,232,191,8,0,77,133,75,26,162,193,8,0,79,133,150,68,236,83,6,0,80,133,192,2,71,236,6,0,80,133,90,220,117,79,7,0,82,5,98,34,75,1,9,0,82,5,98,34,154,2,9,0,82,5,98,34,235,3,9,0,82,5,98,34,65,5,9,0,83,5,122,100,105,217,5,0,83,5,200,193,90,53,7,0,85,133,164,1,180,28,7,0,87,5,68,140,162,28,9,0,87,5,68,140,244,28,9,0,94,5,40,164,71,236,6,0,95,5,152,197,3,157,8,0,95,5,152,197,180,157,8,0,98,133,201,121,85,31,7,0,98,133,55,189,245,28,10,0,98,133,55,189,145,31,10,0,102,5,221,8,136,58,7,0,105,133,197,74,50,211,6,0,109,133,191,213,33,65,7,0,110,5,169,50,117,79,7,0,110,5,170,131,98,108,8,0,110,133,157,38,245,28,10,0,110,133,157,38,145,31,10,0,111,133,130,40,124,222,6,0,111,133,9,243,54,233,6,0,112,5,83,14,24,229,10,0,113,5,58,49,152,140,6,0,113,5,178,81,237,73,7,0,115,133,212,106,3,104,9,0,115,133,212,106,30,104,9,0,116,5,159,128,88,129,7,0,120,5,67,129,147,126,6,0,120,133,73,8,136,58,7,0,122,133,218,29,80,32,7,0,124,133,8,160,230,205,5,0,125,133,21,240,139,158,8,0,125,133,21,240,224,163,8,0,126,133,82,4,165,11,9,0,126,133,82,4,58,12,9,0,126,5,109,247,106,190,9,0,126,5,109,247,159,190,9,0,127,133,38,94,213,205,10,0,129,133,11,132,209,40,7,0,131,5,57,11,89,85,6,0,131,5,39,116,199,145,7,0,131,133,34,66,139,158,8,0,131,133,34,66,224,163,8,0,131,5,67,195,253,208,8,0,131,5,67,195,22,211,8,0,132,5,54,150,140,36,6,0,133,133,44,97,154,221,6,0,135,133,59,93,212,243,6,0,139,133,19,36,113,24,7,0,143,133,161,131,247,212,5,0,144,133,8,192,53,233,10,0,145,5,83,6,98,79,10,0,149,133,155,83,146,235,6,0,151,5,160,175,224,146,8,0,151,5,160,175,132,150,8,0,151,5,17,253,200,6,9,0,151,5,17,253,117,7,9,0,152,5,186,61,113,47,7,0,153,133,188,3,230,215,6,0,153,5,55,129,218,113,9,0,153,5,55,129,120,114,9,0,154,5,163,134,212,243,6,0,156,5,127,15,213,41,10,0,156,5,127,15,87,42,10,0,158,133,44,150,76,254,10,0,161,133,125,17,31,16,6,0,161,5,3,7,75,1,9,0,161,5,3,7,154,2,9,0,161,5,3,7,235,3,9,0,161,5,3,7,65,5,9,0,161,5,3,7,63,14,9,0,161,5,3,7,116,14,9,0,161,5,67,45,238,159,10,0,161,5,67,45,33,160,10,0,162,5,84,248,117,37,7,0,163,5,128,130,38,98,7,0,166,133,117,42,117,79,7,0,166,133,158,210,109,172,9,0,166,133,158,210,178,173,9,0,166,133,158,210,250,174,9,0,171,5,39,170,178,233,6,0,172,5,46,206,90,53,7,0,173,133,137,128,139,84,6,0,175,133,23,112,254,216,6,0,176,133,153,122,237,231,6,0,177,5,72,28,163,201,6,0,178,5,153,140,254,254,6,0,181,133,156,187,81,239,8,0,181,133,156,187,40,240,8,0,182,5,216,43,117,236,10,0,183,133,89,237,245,86,10,0,184,133,37,213,126,102,8,0,184,133,37,213,239,102,8,0,184,5,117,27,123,236,9,0,184,5,195,40,18,248,9,0,184,5,195,40,84,248,9,0,185,133,150,192,113,232,6,0,185,5,249,60,32,10,7,0,185,133,150,192,38,98,7,0,185,133,150,192,128,98,11,0,186,133,103,97,212,243,6,0,186,133,207,87,120,61,11,0,187,5,213,34,174,205,10,0,188,133,154,199,152,111,7,0,188,133,154,199,206,62,8,0,188,133,154,199,99,63,8,0,188,133,154,199,4,64,8,0,188,133,154,199,73,218,9,0,189,133,171,4,136,58,7,0,193,5,25,132,200,6,9,0,193,5,25,132,117,7,9,0,194,5,79,177,118,214,6,0,194,5,204,7,164,77,11,0,198,133,93,126,20,15,7,0,198,133,93,126,179,17,7,0,199,133,174,152,51,214,8,0,199,133,174,152,241,214,8,0,199,133,174,152,169,215,8,0,201,133,32,232,40,217,8,0,201,133,32,232,209,217,8,0,203,133,127,34,210,187,5,0,205,5,246,69,239,84,10,0,213,133,154,58,162,28,9,0,213,133,154,58,244,28,9,0,213,5,27,237,253,78,10,0,213,5,119,93,179,168,10,0,216,5,10,238,80,32,7,0,217,5,167,200,139,158,8,0,217,5,167,200,224,163,8,0,219,133,163,71,198,105,8,0,221,133,122,161,71,236,6,0,223,133,200,204,4,246,10,0,223,133,125,60,101,58,11,0,224,5,75,25,117,129,6,0,225,133,162,34,212,243,6,0,228,5,157,63,153,251,10,0,229,5,0,157,71,236,6,0,230,133,64,17,78,47,11,0,232,5,97,205,138,115,8,0,232,5,97,205,117,124,8,0,232,5,97,205,105,133,8,0,233,133,229,10,245,28,10,0,233,133,229,10,145,31,10,0,234,133,167,197,163,201,6,0,237,5,23,182,108,85,8,0,241,133,209,2,99,126,10,0,246,133,85,170,117,79,7,0,247,5,162,199,212,243,6,0,247,5,209,204,57,10,7,0,247,5,143,238,139,158,8,0,247,5,143,238,224,163,8,0,247,133,77,42,0,96,10,0,248,133,84,36,212,243,6,0,249,133,73,141,114,243,8,0,249,133,73,141,37,244,8,0,250,133,137,149,72,204,9,0,253,5,188,240,109,252,5,0,253,133,7,92,129,25,7,0,253,5,86,131,123,236,9,0,0,6,202,2,139,158,8,0,0,6,202,2,224,163,8,0,1,134,155,56,180,144,8,0,1,134,155,56,67,145,8,0,1,6,18,2,75,1,9,0,1,6,18,2,154,2,9,0,1,6,18,2,235,3,9,0,1,6,18,2,65,5,9,0,4,6,112,57,132,215,6,0,4,6,112,57,57,243,10,0,6,6,17,233,20,15,7,0,6,6,17,233,179,17,7,0,8,6,135,126,72,204,9,0,10,6,119,215,247,55,7,0,15,134,107,99,237,73,7,0,19,134,104,36,221,38,10,0,19,134,104,36,62,40,10,0,20,134,138,107,212,243,6,0,20,6,54,254,148,48,11,0,21,6,81,128,139,158,8,0,21,6,81,128,224,163,8,0,22,134,150,69,0,203,6,0,23,134,117,117,246,205,8,0,23,134,117,117,155,206,8,0,23,134,123,7,25,35,11,0,24,6,67,143,218,159,10,0,24,6,129,160,212,102,11,0,25,134,143,21,253,65,6,0,25,6,172,133,72,202,8,0,25,6,172,133,175,202,8,0,26,6,128,170,30,171,9,0,30,134,117,48,68,202,6,0,30,6,51,93,123,236,9,0,33,134,249,121,25,234,10,0,38,6,123,230,218,197,10,0,41,134,70,215,215,169,10,0,45,134,201,163,125,44,7,0,45,6,9,93,84,21,8,0,45,134,201,163,193,167,9,0,45,134,201,163,37,168,9,0,48,6,83,126,130,227,6,0,49,134,193,148,246,213,5,0,49,134,103,27,114,209,6,0,49,6,95,33,71,236,6,0,51,134,230,149,180,28,7,0,53,134,121,108,91,81,8,0,57,134,112,133,30,171,9,0,59,6,14,190,178,107,8,0,60,134,51,39,30,171,9,0,67,134,125,250,66,230,6,0,67,6,164,160,117,79,7,0,68,134,205,182,162,169,9,0,70,6,253,141,62,93,7,0,70,134,248,243,200,6,9,0,70,134,248,243,117,7,9,0,71,6,112,31,53,156,9,0,75,134,13,125,29,69,7,0,77,6,133,173,117,79,7,0,77,6,9,126,127,221,9,0,77,6,9,126,151,221,9,0,80,134,109,102,241,239,7,0,83,134,2,114,71,236,6,0,83,134,109,62,175,219,10,0,85,6,164,160,225,218,8,0,85,6,164,160,251,218,8,0,85,134,82,182,66,177,10,0,86,134,137,218,52,204,6,0,89,6,155,235,90,53,7,0,89,134,183,18,33,65,7,0,90,134,126,95,221,38,10,0,90,134,126,95,62,40,10,0,93,134,78,220,212,243,6,0,93,134,151,246,38,98,7,0,94,134,119,109,89,50,6,0,94,134,121,27,156,31,7,0,94,134,119,109,38,98,7,0,95,6,78,154,221,38,10,0,95,6,78,154,62,40,10,0,97,6,187,190,146,235,6,0,99,134,254,46,53,117,6,0,102,6,105,33,138,115,8,0,102,6,105,33,117,124,8,0,102,6,105,33,105,133,8,0,107,134,225,28,212,167,6,0,107,134,133,111,138,115,8,0,107,134,133,111,117,124,8,0,107,134,133,111,105,133,8,0,110,134,23,207,72,204,9,0,111,6,17,183,199,78,11,0,115,6,233,92,53,246,10,0,117,6,18,248,156,205,6,0,117,6,134,231,227,108,7,0,117,6,134,231,152,111,7,0,120,6,209,107,45,30,6,0,123,6,7,52,117,79,7,0,124,134,157,38,137,252,5,0,127,134,48,7,153,11,7,0,127,134,191,254,179,222,8,0,127,134,191,254,152,223,8,0,128,6,211,173,93,213,5,0,130,134,58,151,14,94,11,0,133,134,136,10,212,243,6,0,134,6,196,172,2,81,6,0,139,6,159,231,117,79,7,0,140,6,149,161,76,252,6,0,142,6,243,153,123,236,9,0,144,6,51,184,171,49,7,0,146,134,208,6,43,40,6,0,148,134,55,195,154,4,7,0,148,6,85,143,57,46,10,0,148,6,85,143,113,46,10,0,148,134,127,61,107,96,10,0,149,134,16,230,77,120,9,0,149,134,16,230,123,120,9,0,150,6,137,148,207,188,5,0,152,6,157,62,44,70,6,0,152,6,61,164,138,115,8,0,152,6,61,164,117,124,8,0,152,6,61,164,105,133,8,0,152,6,83,217,118,226,8,0,152,6,83,217,72,228,8,0,152,6,114,226,185,232,10,0,153,134,7,200,80,49,7,0,153,134,7,200,171,49,7,0,155,134,122,87,193,223,6,0,155,134,222,46,224,146,8,0,155,134,222,46,132,150,8,0,160,134,45,108,136,58,7,0,161,134,224,14,132,153,7,0,161,134,112,103,78,47,11,0,162,6,160,126,117,79,7,0,163,6,219,16,152,111,7,0,163,6,219,16,62,124,7,0,163,134,125,129,245,28,10,0,163,134,125,129,145,31,10,0,164,6,22,48,213,142,6,0,164,6,22,48,28,253,6,0,164,6,81,190,38,98,7,0,164,6,98,130,239,84,10,0,166,134,155,19,205,3,10,0,166,134,155,19,227,3,10,0,166,134,155,74,39,114,10,0,166,6,164,254,103,120,10,0,168,134,193,148,117,37,7,0,169,6,2,83,68,202,6,0,170,134,250,193,66,223,6,0,173,134,201,148,239,5,6,0,176,134,242,214,182,114,8,0,178,6,164,77,132,251,10,0,178,134,185,206,211,66,11,0,183,134,148,164,123,197,10,0,184,134,147,95,212,243,6,0,184,6,114,117,30,216,10,0,188,6,14,76,71,236,6,0,190,134,60,132,153,143,6,0,192,6,173,234,15,8,8,0,192,6,173,234,174,98,11,0,192,6,173,234,111,100,11,0,194,134,132,182,253,208,8,0,194,134,132,182,22,211,8,0,197,134,20,67,13,32,9,0,197,134,20,67,195,32,9,0,198,6,132,216,80,32,7,0,201,134,223,81,228,109,9,0,201,134,223,81,248,110,9,0,204,6,7,11,90,53,7,0,204,6,167,241,69,238,8,0,204,6,167,241,138,238,8,0,204,6,167,241,214,238,8,0,205,134,145,130,136,58,7,0,208,6,70,37,204,9,8,0,208,6,148,190,28,68,9,0,208,6,148,190,215,68,9,0,209,134,160,116,29,204,8,0,209,134,160,116,6,205,8,0,211,134,254,82,117,37,7,0,213,134,186,4,151,21,7,0,214,134,214,107,29,5,7,0,215,134,29,86,191,82,11,0,216,6,236,38,220,92,8,0,220,6,237,252,153,143,6,0,220,134,194,179,204,213,9,0,223,134,157,38,100,228,6,0,223,134,198,66,179,17,7,0,223,134,198,66,123,69,11,0,224,134,127,242,141,195,8,0,224,134,127,242,112,196,8,0,224,134,127,242,75,197,8,0,228,134,145,39,192,38,6,0,229,134,169,63,138,115,8,0,229,134,169,63,117,124,8,0,229,134,169,63,105,133,8,0,229,6,20,162,24,251,8,0,229,6,20,162,62,251,8,0,229,6,20,162,94,251,8,0,230,134,253,189,123,71,9,0,230,134,253,189,151,71,9,0,236,134,206,229,232,251,9,0,236,134,206,229,176,252,9,0,240,134,217,129,55,42,11,0,241,6,172,112,186,129,6,0,241,6,64,193,117,79,7,0,243,134,75,196,64,218,7,0,247,134,128,62,60,68,6,0,248,134,190,227,144,109,6,0,248,134,215,242,139,158,8,0,248,134,215,242,224,163,8,0,250,6,131,182,153,11,7,0,253,6,101,23,110,178,7,0,253,6,242,3,138,115,8,0,253,6,242,3,117,124,8,0,253,6,242,3,105,133,8,0,253,134,240,233,205,53,11,0,255,134,34,211,131,136,7,0,1,7,224,253,237,73,7,0,4,135,39,141,70,61,10,0,7,7,46,86,148,16,11,0,8,7,6,7,117,79,7,0,12,135,152,45,102,223,6,0,12,7,239,188,212,243,6,0,13,7,134,169,63,165,6,0,13,135,237,96,162,28,9,0,13,135,237,96,244,28,9,0,13,7,149,180,123,236,9,0,14,7,127,222,164,23,7,0,15,135,141,250,38,98,7,0,15,135,141,250,132,173,10,0,15,135,141,250,156,173,10,0,17,135,232,158,212,243,6,0,18,7,142,140,73,169,7,0,21,135,201,42,109,90,8,0,22,135,1,79,212,243,6,0,22,135,230,251,237,73,7,0,24,7,66,187,255,201,6,0,24,135,188,59,4,25,7,0,26,7,220,109,113,232,6,0,26,135,230,91,80,32,7,0,26,7,192,5,90,175,8,0,26,7,192,5,74,176,8,0,29,135,10,158,224,146,8,0,29,135,10,158,132,150,8,0,30,7,188,29,20,15,7,0,30,7,188,29,179,17,7,0,32,7,215,89,159,252,5,0,32,135,186,46,22,35,7,0,35,7,18,3,152,174,10,0,37,135,223,246,29,5,7,0,38,7,170,228,136,106,6,0,40,135,13,125,94,245,5,0,41,7,141,131,248,186,6,0,41,135,54,10,247,55,7,0,46,7,7,146,38,98,7,0,49,7,194,52,103,46,7,0,54,7,193,144,125,90,11,0,56,135,33,16,222,199,5,0,57,7,135,186,40,217,8,0,57,7,135,186,209,217,8,0,58,7,3,163,12,72,11,0,60,135,157,38,2,106,6,0,60,135,174,136,123,236,9,0,61,135,105,24,152,111,7,0,61,135,105,24,191,183,8,0,61,7,148,56,75,38,11,0,62,7,26,125,206,219,6,0,62,7,26,125,169,59,11,0,64,7,33,135,178,233,6,0,64,7,116,143,136,58,7,0,66,135,139,105,239,4,6,0,66,135,53,113,167,8,7,0,67,7,147,18,89,51,6,0,67,135,229,1,20,15,7,0,67,135,229,1,179,17,7,0,70,135,1,84,165,11,9,0,70,135,1,84,58,12,9,0,72,7,185,176,95,0,10,0,72,7,185,176,200,0,10,0,75,7,87,149,245,28,10,0,75,7,87,149,145,31,10,0,77,135,183,221,152,61,6,0,77,135,114,224,242,168,6,0,77,135,25,76,236,51,7,0,78,135,106,100,159,255,7,0,78,135,106,100,206,255,7,0,81,135,244,220,152,111,7,0,81,135,244,220,206,62,8,0,81,135,244,220,99,63,8,0,81,135,244,220,4,64,8,0,81,135,244,220,73,218,9,0,82,135,164,226,47,77,6,0,82,7,163,45,211,137,9,0,82,7,163,45,235,137,9,0,83,7,208,5,206,18,10,0,83,7,208,5,238,18,10,0,86,135,202,170,201,9,7,0,87,7,169,198,78,217,6,0,88,7,5,55,226,235,5,0,89,135,228,215,84,21,8,0,90,135,244,158,71,236,6,0,90,7,19,246,56,37,9,0,90,7,19,246,84,37,9,0,90,7,100,38,239,160,10,0,91,7,87,225,146,175,10,0,91,7,87,225,252,180,10,0,93,7,117,216,117,79,7,0,94,7,138,3,236,51,7,0,95,135,253,128,219,59,6,0,95,7,26,149,240,108,6,0,96,135,242,113,117,37,7,0,96,7,138,239,17,184,8,0,97,135,148,120,117,79,7,0,97,135,48,235,187,78,10,0,98,7,46,113,90,56,9,0,98,7,46,113,171,56,9,0,98,7,46,113,54,57,9,0,100,135,52,147,138,115,8,0,100,135,52,147,117,124,8,0,100,135,52,147,105,133,8,0,102,135,176,79,104,244,9,0,102,135,176,79,251,244,9,0,102,135,176,79,146,245,9,0,104,135,236,25,16,222,6,0,104,135,176,39,138,115,8,0,104,135,176,39,117,124,8,0,104,135,176,39,105,133,8,0,112,135,148,150,138,115,8,0,112,135,148,150,117,124,8,0,112,135,148,150,105,133,8,0,113,135,246,31,125,44,7,0,114,7,144,255,172,212,10,0,116,7,248,30,227,108,7,0,116,7,248,30,124,10,9,0,118,135,92,74,88,26,7,0,119,7,33,208,254,254,6,0,123,135,69,18,75,142,9,0,123,135,69,18,201,142,9,0,123,135,69,18,84,143,9,0,123,135,80,100,30,171,9,0,123,135,162,247,139,242,10,0,126,135,5,197,122,130,6,0,126,7,134,14,43,198,6,0,126,135,16,41,117,79,7,0,127,135,106,139,28,68,9,0,127,135,106,139,215,68,9,0,128,135,22,174,117,79,7,0,129,135,103,111,237,73,7,0,131,135,72,226,99,42,7,0,132,7,202,54,84,21,8,0,133,7,37,142,128,149,10,0,136,135,234,33,43,198,6,0,136,135,149,50,200,6,9,0,136,135,149,50,117,7,9,0,137,7,65,137,152,111,7,0,139,7,228,57,182,114,8,0,139,135,154,154,146,63,10,0,139,135,154,154,166,63,10,0,140,135,201,190,117,79,7,0,142,135,33,249,15,143,6,0,142,135,11,220,37,42,8,0,143,7,115,122,247,55,7,0,143,7,39,131,138,115,8,0,143,7,39,131,117,124,8,0,143,7,39,131,105,133,8,0,144,7,139,197,230,19,6,0,144,7,139,197,22,35,7,0,144,135,172,124,38,98,7,0,144,135,192,203,98,214,7,0,145,135,239,179,86,22,6,0,145,7,202,92,38,98,7,0,147,135,254,22,237,73,7,0,148,135,191,143,96,200,7,0,148,135,191,143,141,200,7,0,150,135,32,237,240,226,6,0,150,7,212,43,71,236,6,0,150,7,60,225,51,241,8,0,150,7,60,225,198,241,8,0,153,7,205,137,92,35,6,0,155,7,81,49,38,98,7,0,157,135,126,201,121,97,7,0,159,135,104,175,71,236,6,0,160,7,64,161,131,176,6,0,160,7,64,161,4,178,6,0,161,135,173,26,152,111,7,0,161,135,173,26,60,44,8,0,161,135,173,26,175,44,8,0,161,135,173,26,24,45,8,0,161,135,173,26,178,229,9,0,162,135,189,32,212,243,6,0,162,7,115,24,3,157,8,0,162,7,115,24,180,157,8,0,165,7,226,149,123,236,9,0,170,135,147,136,154,19,6,0,170,135,147,136,153,11,7,0,170,135,147,136,135,13,7,0,170,135,241,147,232,251,9,0,170,135,241,147,176,252,9,0,173,7,94,199,117,79,7,0,176,135,235,31,136,58,7,0,178,7,231,242,29,5,7,0,182,135,81,95,237,73,7,0,182,135,126,11,139,158,8,0,182,135,126,11,224,163,8,0,184,135,91,202,119,174,7,0,184,135,91,202,165,174,7,0,186,135,97,56,117,79,7,0,186,135,239,163,71,104,8,0,186,135,239,163,8,132,10,0,188,135,169,215,140,193,10,0,189,7,209,89,63,165,6,0,189,135,136,154,139,158,8,0,189,135,136,154,224,163,8,0,190,7,73,145,132,215,6,0,191,7,194,24,56,208,6,0,192,7,10,46,166,149,6,0,192,135,243,252,38,98,7,0,192,135,240,28,91,147,7,0,193,7,195,125,107,210,6,0,193,135,209,34,136,58,7,0,193,7,31,29,123,236,9,0,196,7,148,25,247,55,7,0,197,135,15,154,117,79,7,0,199,135,81,242,212,243,6,0,200,135,138,39,163,177,10,0,208,135,249,200,71,236,6,0,209,135,23,30,68,159,10,0,210,135,255,193,80,45,11,0,215,7,36,116,171,63,7,0,218,135,199,84,20,65,11,0,221,7,155,125,180,150,6,0,221,7,27,118,97,96,7,0,221,7,27,118,177,127,7,0,221,7,27,118,209,127,7,0,221,7,211,82,123,236,9,0,226,7,71,209,152,111,7,0,226,7,71,209,62,124,7,0,228,135,53,176,249,154,8,0,228,135,53,176,148,155,8,0,228,135,53,176,52,156,8,0,230,135,200,47,101,226,6,0,234,7,252,206,153,11,7,0,234,7,252,206,135,13,7,0,235,135,94,78,189,143,6,0,235,7,166,30,228,110,10,0,237,7,216,228,46,20,6,0,239,7,228,151,50,211,6,0,241,7,69,101,53,156,9,0,242,135,196,134,123,236,9,0,245,135,63,191,90,7,7,0,246,135,58,201,179,17,7,0,246,135,58,201,125,44,7,0,247,7,19,73,29,5,7,0,248,135,107,19,51,241,8,0,248,135,107,19,198,241,8,0,248,7,111,206,18,10,11,0,249,7,254,38,89,98,8,0,250,7,200,129,151,245,10,0,250,7,200,129,202,250,10,0,253,135,131,142,105,8,11,0,255,135,185,100,90,175,8,0,255,135,185,100,74,176,8,0,2,136,0,55,7,197,5,0,4,136,219,152,232,191,8,0,4,136,219,152,162,193,8,0,12,136,75,89,184,250,10,0,13,8,107,103,158,217,5,0,13,136,126,201,0,36,6,0,13,136,67,239,85,31,7,0,13,8,146,94,90,53,7,0,14,136,26,126,138,115,8,0,14,136,26,126,117,124,8,0,14,136,26,126,105,133,8,0,15,136,41,77,99,66,8,0,16,136,178,8,2,23,7,0,17,8,211,248,220,62,10,0,18,8,67,135,171,63,7,0,22,8,106,168,123,236,9,0,22,8,37,116,244,149,10,0,23,8,179,229,81,87,6,0,29,136,15,55,44,26,7,0,32,8,228,98,155,67,7,0,32,8,62,156,38,98,7,0,34,8,207,89,161,46,10,0,34,8,207,89,238,46,10,0,35,8,96,3,212,243,6,0,35,8,144,84,245,28,10,0,35,8,144,84,145,31,10,0,36,8,209,179,237,73,7,0,37,136,133,216,179,222,8,0,37,136,133,216,152,223,8,0,39,8,234,229,72,198,5,0,41,8,101,228,156,1,7,0,45,8,238,19,171,243,5,0,48,8,64,245,29,49,7,0,49,136,198,191,40,115,6,0,51,136,178,193,63,165,6,0,52,8,183,223,144,105,6,0,55,8,127,192,252,224,10,0,58,136,144,105,211,66,11,0,60,136,87,74,162,50,7,0,62,8,24,101,109,174,6,0,62,8,24,101,27,28,8,0,63,8,131,13,247,55,7,0,65,136,133,83,210,56,10,0,67,136,52,51,241,35,11,0,68,8,200,167,139,146,8,0,68,8,200,167,154,146,8,0,70,8,58,130,100,236,10,0,70,136,14,193,23,249,10,0,71,136,133,242,57,171,8,0,71,136,133,242,133,172,8,0,71,136,133,242,211,173,8,0,76,136,81,242,248,234,6,0,77,8,76,152,109,0,9,0,77,8,76,152,146,0,9,0,82,8,97,52,162,50,7,0,84,136,11,171,72,202,8,0,84,136,11,171,175,202,8,0,85,136,111,91,71,236,6,0,87,136,252,79,50,234,8,0,87,136,252,79,86,234,8,0,87,136,109,205,221,38,10,0,87,136,109,205,62,40,10,0,88,8,31,24,40,235,5,0,88,8,109,231,137,79,10,0,92,8,236,177,29,204,8,0,92,8,236,177,6,205,8,0,93,136,50,232,61,6,8,0,93,136,209,191,232,191,8,0,93,136,209,191,162,193,8,0,94,136,112,150,219,1,7,0,94,136,60,90,7,196,10,0,94,136,60,90,29,200,10,0,97,136,67,160,240,226,6,0,97,136,224,98,157,176,7,0,101,136,224,91,99,66,8,0,104,136,230,166,138,115,8,0,104,136,230,166,117,124,8,0,104,136,230,166,105,133,8,0,105,8,30,114,247,214,6,0,105,8,108,53,54,233,6,0,105,8,6,126,103,170,8,0,105,8,6,126,188,170,8,0,107,8,226,226,72,229,5,0,107,136,183,96,123,236,9,0,108,136,168,22,29,5,7,0,109,8,156,31,204,9,8,0,111,8,192,136,81,246,10,0,116,136,107,129,57,171,8,0,116,136,107,129,133,172,8,0,116,136,107,129,211,173,8,0,119,8,8,181,3,224,6,0,119,8,95,120,253,208,8,0,119,8,95,120,22,211,8,0,120,136,45,184,245,41,7,0,120,8,205,37,138,115,8,0,120,8,205,37,117,124,8,0,120,8,205,37,105,133,8,0,124,136,165,97,62,177,6,0,125,8,23,131,208,112,8,0,126,8,243,99,106,59,9,0,126,8,243,99,181,59,9,0,127,8,234,94,45,245,5,0,127,8,234,94,22,35,7,0,129,8,79,237,169,228,5,0,130,136,39,161,15,238,7,0,131,136,26,126,210,110,7,0,133,8,98,102,161,110,7,0,133,136,13,161,109,172,9,0,133,136,13,161,178,173,9,0,133,136,13,161,250,174,9,0,133,8,98,102,54,213,9,0,134,136,139,108,155,67,7,0,134,8,154,141,239,52,11,0,135,136,136,122,26,64,6,0,135,8,152,66,123,236,9,0,139,136,107,90,28,68,9,0,139,136,107,90,215,68,9,0,142,136,223,170,38,98,7,0,143,136,4,207,23,49,6,0,143,136,76,65,183,213,8,0,143,136,76,65,237,213,8,0,144,8,170,126,117,79,7,0,146,8,19,252,165,226,6,0,146,8,19,252,179,17,7,0,147,8,194,8,118,115,10,0,150,136,103,184,245,39,6,0,151,136,206,65,146,38,8,0,151,136,206,65,209,38,8,0,151,136,206,65,6,39,8,0,155,136,140,95,153,11,7,0,156,8,94,61,193,45,7,0,156,8,94,61,242,45,7,0,156,8,170,242,117,79,7,0,157,8,97,166,253,208,8,0,157,8,97,166,22,211,8,0,158,8,76,50,29,5,7,0,159,8,225,246,80,32,7,0,160,136,92,79,54,233,6,0,160,136,145,22,20,15,7,0,166,136,74,4,171,63,7,0,167,8,245,69,212,243,6,0,169,136,215,178,82,47,8,0,170,136,45,229,121,134,9,0,170,136,45,229,144,134,9,0,174,136,67,142,138,115,8,0,174,136,67,142,117,124,8,0,174,136,67,142,105,133,8,0,177,136,164,174,177,241,5,0,178,136,125,113,139,158,8,0,178,136,125,113,224,163,8,0,178,136,121,182,123,236,9,0,180,8,203,148,91,31,6,0,180,8,75,200,117,79,7,0,182,8,66,5,198,147,6,0,182,8,66,5,219,1,7,0,182,136,68,42,91,138,10,0,183,136,173,111,103,40,7,0,186,8,12,250,38,98,7,0,187,136,120,101,95,241,5,0,187,136,114,6,227,108,7,0,187,136,114,6,205,26,10,0,187,136,114,6,229,26,10,0,187,136,114,6,255,26,10,0,188,136,157,1,207,240,5,0,188,8,6,166,29,5,7,0,191,136,68,117,57,171,8,0,191,136,68,117,133,172,8,0,191,136,68,117,211,173,8,0,192,136,98,168,152,111,7,0,192,136,98,168,84,53,8,0,194,136,220,148,152,111,7,0,194,136,220,148,173,169,8,0,194,8,118,144,165,24,9,0,195,8,164,160,153,11,7,0,200,136,252,93,91,70,7,0,202,136,127,12,71,236,6,0,202,8,136,161,146,7,7,0,203,8,1,228,182,114,8,0,203,8,87,170,251,134,10,0,204,8,146,149,24,166,10,0,204,8,146,149,40,166,10,0,204,8,146,149,66,171,10,0,206,136,95,52,164,25,7,0,206,136,8,172,226,154,9,0,206,136,8,172,114,155,9,0,208,136,244,28,14,246,5,0,212,136,206,149,78,47,11,0,213,136,50,30,21,36,7,0,217,136,103,27,118,214,6,0,217,8,33,131,71,236,6,0,225,136,155,247,212,243,6,0,226,8,156,61,237,208,5,0,228,136,189,183,242,140,6,0,231,136,125,46,177,133,7,0,231,136,125,46,38,134,7,0,233,136,89,254,224,237,5,0,235,136,77,223,38,98,7,0,235,136,23,89,123,236,9,0,238,8,231,105,38,98,7,0,238,8,231,105,64,126,10,0,239,136,48,120,219,1,7,0,239,8,77,203,117,37,7,0,239,136,213,129,147,76,8,0,240,136,137,197,152,111,7,0,240,136,137,197,233,6,8,0,240,136,137,197,19,7,8,0,240,136,137,197,93,43,10,0,240,136,137,197,129,43,10,0,240,136,137,197,152,43,10,0,243,136,26,120,3,157,8,0,243,136,26,120,180,157,8,0,245,136,214,54,165,11,9,0,245,136,214,54,58,12,9,0,245,8,19,182,123,236,9,0,248,136,58,58,219,1,7,0,248,8,106,156,151,21,7,0,248,136,37,103,224,146,8,0,248,136,37,103,132,150,8,0,250,8,254,48,38,98,7,0,254,136,75,20,105,96,11,0,0,9,132,102,50,211,6,0,0,137,136,224,72,204,9,0,1,9,161,75,156,31,7,0,1,9,161,75,171,87,10,0,3,9,86,193,19,174,7,0,6,9,124,9,117,37,7,0,7,9,169,125,139,158,8,0,7,9,169,125,224,163,8,0,8,9,119,27,204,212,6,0,12,9,112,211,219,1,7,0,12,137,247,136,136,58,7,0,12,9,107,48,138,115,8,0,12,9,107,48,117,124,8,0,12,9,107,48,105,133,8,0,12,9,0,26,255,204,10,0,14,9,216,132,219,210,7,0,15,9,227,145,247,214,6,0,15,9,182,60,221,15,11,0,16,9,53,191,76,195,6,0,17,137,173,20,125,44,7,0,17,137,31,47,46,53,7,0,18,9,123,102,216,165,7,0,18,9,62,235,219,210,7,0,20,137,208,126,138,115,8,0,20,137,208,126,117,124,8,0,20,137,208,126,105,133,8,0,21,9,107,229,237,73,7,0,27,9,198,47,212,243,6,0,31,9,176,34,180,28,7,0,31,9,192,171,113,47,7,0,32,9,182,103,133,220,6,0,33,137,30,4,48,225,6,0,34,137,140,65,15,233,8,0,34,137,140,65,139,233,8,0,38,9,193,107,237,73,7,0,42,9,211,241,123,204,6,0,42,137,241,215,61,224,6,0,42,9,6,231,171,49,7,0,42,137,223,60,139,158,8,0,42,137,223,60,224,163,8,0,43,137,233,60,28,68,9,0,43,137,233,60,215,68,9,0,44,9,181,166,39,29,11,0,45,9,151,167,71,95,7,0,48,9,181,10,2,0,6,0,48,9,69,42,194,211,6,0,48,137,41,202,112,27,7,0,48,137,40,39,42,92,10,0,49,9,6,39,167,71,7,0,49,137,217,138,144,212,7,0,49,137,217,138,173,212,7,0,49,137,217,138,213,212,7,0,50,9,153,117,71,236,6,0,51,137,189,209,221,38,10,0,51,137,189,209,62,40,10,0,52,9,180,45,195,148,10,0,55,9,195,65,170,33,9,0,55,9,195,65,200,33,9,0,55,9,195,65,226,33,9,0,56,9,193,223,141,195,8,0,56,9,193,223,112,196,8,0,58,9,145,217,182,25,8,0,59,9,35,33,237,73,7,0,59,9,140,192,123,236,9,0,61,9,201,238,117,79,7,0,61,137,226,31,152,111,7,0,61,137,226,31,62,124,7,0,62,137,231,100,138,115,8,0,62,137,231,100,117,124,8,0,62,137,231,100,105,133,8,0,63,137,63,189,51,241,8,0,63,137,63,189,198,241,8,0,65,9,172,51,83,205,6,0,65,137,1,241,245,200,10,0,65,137,1,241,8,201,10,0,66,9,24,77,90,53,7,0,66,137,233,141,136,58,7,0,66,137,16,3,138,115,8,0,66,137,16,3,117,124,8,0,66,137,16,3,105,133,8,0,67,137,14,191,254,243,5,0,67,137,14,191,153,89,7,0,70,137,3,18,71,236,6,0,70,137,104,61,139,158,8,0,70,137,104,61,224,163,8,0,72,9,186,148,54,107,6,0,72,9,104,214,228,109,9,0,72,9,104,214,248,110,9,0,73,9,25,46,174,51,7,0,74,9,214,208,212,243,6,0,74,9,38,18,247,55,7,0,75,9,35,208,43,83,6,0,76,137,4,16,117,79,7,0,78,9,115,10,43,214,5,0,79,137,144,160,57,10,7,0,80,9,149,6,54,218,6,0,80,9,14,157,253,208,8,0,80,9,14,157,22,211,8,0,83,137,152,61,109,172,9,0,83,137,152,61,178,173,9,0,83,137,152,61,250,174,9,0,84,137,114,27,167,194,7,0,85,137,81,82,126,85,11,0,87,137,62,214,146,7,7,0,89,137,178,70,153,11,7,0,91,9,86,238,87,152,10,0,94,137,15,80,125,177,9,0,94,137,15,80,224,177,9,0,94,137,15,80,64,178,9,0,94,137,55,19,60,18,11,0,97,137,245,126,123,236,9,0,98,9,6,13,146,100,10,0,99,137,153,38,54,233,6,0,99,9,252,93,83,245,7,0,102,9,98,83,152,53,6,0,102,9,255,177,153,11,7,0,102,9,255,177,135,13,7,0,102,9,255,177,78,123,7,0,104,9,82,198,69,136,7,0,105,137,35,57,220,189,6,0,105,9,8,24,178,233,6,0,105,137,59,59,90,53,7,0,106,137,250,197,68,202,6,0,106,9,39,3,157,94,7,0,108,137,201,148,9,59,8,0,108,137,201,148,85,59,8,0,108,137,201,148,246,205,8,0,108,137,201,148,155,206,8,0,114,9,186,247,113,232,6,0,116,137,78,149,229,69,11,0,117,9,162,76,253,82,11,0,118,9,35,22,151,139,6,0,118,9,127,143,138,115,8,0,118,9,127,143,117,124,8,0,118,9,127,143,105,133,8,0,120,137,158,204,63,117,10,0,120,9,180,237,120,243,10,0,120,9,180,237,195,248,10,0,125,9,134,131,152,111,7,0,127,9,37,29,58,0,10,0,128,137,29,72,12,140,7,0,128,9,94,127,205,151,9,0,128,9,94,127,199,152,9,0,128,9,94,127,220,153,9,0,129,9,111,92,138,115,8,0,129,9,111,92,117,124,8,0,129,9,111,92,105,133,8,0,131,9,26,188,101,0,6,0,132,137,115,27,194,191,7,0,133,9,207,58,16,62,8,0,133,9,207,58,72,62,8,0,135,137,41,129,155,67,7,0,135,9,167,194,111,98,11,0,137,9,123,132,123,236,9,0,138,137,248,51,89,132,9,0,138,137,248,51,124,132,9,0,138,137,248,51,171,132,9,0,141,137,221,139,75,1,9,0,141,137,221,139,154,2,9,0,141,137,221,139,235,3,9,0,141,137,221,139,65,5,9,0,143,9,196,130,83,245,7,0,143,9,68,82,109,172,9,0,143,9,68,82,178,173,9,0,143,9,68,82,250,174,9,0,143,9,201,238,202,249,10,0,144,137,62,37,80,32,7,0,145,137,205,234,226,206,6,0,149,9,116,211,100,228,6,0,152,9,203,143,116,88,6,0,153,9,216,10,171,206,6,0,154,9,188,118,182,14,6,0,154,9,230,200,213,147,10,0,156,9,168,105,254,254,6,0,161,9,105,188,169,15,9,0,161,9,105,188,204,15,9,0,161,9,105,188,241,15,9,0,163,9,46,175,118,213,7,0,163,9,46,175,168,213,7,0,164,137,15,208,90,53,7,0,164,137,148,44,121,97,7,0,165,137,184,234,138,43,6,0,166,137,79,150,0,189,8,0,166,137,79,150,54,189,8,0,167,137,173,15,20,15,7,0,168,9,76,115,38,98,7,0,170,137,151,133,30,171,9,0,170,9,25,95,17,60,11,0,171,9,229,66,238,171,7,0,175,137,72,82,195,228,7,0,182,9,125,248,117,37,7,0,184,137,175,248,142,188,7,0,185,9,150,164,152,111,7,0,185,9,150,164,173,169,8,0,185,137,63,51,253,50,11,0,186,137,144,114,43,238,7,0,186,137,20,27,205,151,9,0,186,137,20,27,199,152,9,0,186,137,20,27,220,153,9,0,187,9,115,102,178,233,6,0,189,9,96,130,180,28,7,0,189,9,11,181,234,72,7,0,189,137,51,12,219,210,7,0,189,9,247,9,246,60,8,0,189,137,217,181,139,214,9,0,189,137,217,181,234,214,9,0,189,137,217,181,70,215,9,0,190,137,86,206,20,15,7,0,190,137,86,206,179,17,7,0,193,9,169,99,240,226,6,0,194,137,249,96,38,98,7,0,194,9,179,68,139,158,8,0,194,9,179,68,224,163,8,0,194,9,33,144,74,149,9,0,194,9,33,144,157,149,9,0,195,137,138,209,212,243,6,0,197,9,40,40,212,243,6,0,200,9,134,2,244,197,5,0,200,9,128,143,191,166,9,0,200,9,128,143,252,166,9,0,200,9,128,143,39,167,9,0,200,137,13,147,123,236,9,0,202,9,67,234,224,146,8,0,202,9,67,234,132,150,8,0,203,9,150,23,26,0,7,0,204,137,77,105,118,226,8,0,204,137,77,105,72,228,8,0,205,137,76,137,233,196,5,0,205,9,191,173,232,251,9,0,205,9,191,173,176,252,9,0,206,137,199,94,206,21,6,0,207,9,74,176,138,115,8,0,207,9,74,176,117,124,8,0,207,9,74,176,105,133,8,0,207,137,66,43,224,146,8,0,207,137,66,43,132,150,8,0,208,137,92,210,57,112,8,0,208,137,92,210,105,112,8,0,210,9,188,148,95,154,6,0,210,9,188,148,153,11,7,0,210,9,188,148,135,13,7,0,212,137,52,189,138,115,8,0,212,137,52,189,117,124,8,0,212,137,52,189,105,133,8,0,213,137,30,43,63,25,7,0,215,9,158,214,30,171,9,0,216,9,137,199,159,92,9,0,216,9,137,199,5,93,9,0,217,9,120,40,71,236,6,0,218,137,196,78,206,219,6,0,218,137,196,78,117,79,7,0,219,9,71,153,117,37,7,0,219,9,181,245,200,93,10,0,220,9,125,169,123,236,9,0,221,9,217,200,219,210,7,0,223,9,31,36,68,202,6,0,223,9,112,28,247,214,6,0,225,9,148,67,126,79,6,0,225,9,1,188,201,230,6,0,225,9,208,148,139,158,8,0,225,9,208,148,224,163,8,0,225,9,96,76,144,136,9,0,225,9,96,76,170,136,9,0,225,9,96,76,194,136,9,0,225,137,212,190,222,228,10,0,226,9,2,186,151,21,7,0,227,137,160,111,71,236,6,0,228,9,96,164,244,12,9,0,228,9,96,164,21,13,9,0,230,9,63,51,179,222,8,0,230,9,63,51,152,223,8,0,232,9,143,185,194,59,10,0,233,137,3,126,139,158,8,0,233,137,3,126,224,163,8,0,235,137,4,163,139,158,8,0,235,137,4,163,224,163,8,0,235,9,117,79,29,204,8,0,235,9,117,79,6,205,8,0,235,137,77,121,51,214,8,0,235,137,77,121,241,214,8,0,235,137,77,121,169,215,8,0,240,137,3,204,138,115,8,0,240,137,3,204,117,124,8,0,240,137,3,204,105,133,8,0,244,9,46,201,125,44,7,0,244,137,134,86,214,120,9,0,244,137,134,86,7,121,9,0,244,137,134,86,43,121,9,0,245,137,85,44,31,31,11,0,246,9,22,52,152,111,7,0,246,9,22,52,206,62,8,0,246,9,22,52,99,63,8,0,246,9,22,52,4,64,8,0,246,9,22,52,73,218,9,0,250,137,34,202,115,228,5,0,250,9,153,38,138,115,8,0,250,9,153,38,117,124,8,0,250,9,153,38,105,133,8,0,251,137,244,56,254,187,5,0,251,9,247,90,250,252,6,0,0,10,131,149,123,236,9,0,2,10,155,126,119,213,5,0,3,10,148,217,253,208,8,0,3,10,148,217,22,211,8,0,3,10,232,88,241,238,10,0,4,10,16,56,212,73,6,0,4,138,121,3,139,158,8,0,4,138,121,3,224,163,8,0,5,138,214,23,97,181,7,0,7,138,133,63,224,146,8,0,7,138,133,63,132,150,8,0,7,10,19,245,200,6,9,0,7,10,19,245,117,7,9,0,12,10,80,126,90,53,7,0,13,138,84,242,237,188,5,0,13,138,5,98,38,98,7,0,15,10,160,248,156,1,7,0,15,138,174,76,90,98,11,0,17,10,243,3,193,167,9,0,17,10,243,3,37,168,9,0,19,138,118,31,7,193,5,0,21,138,85,170,54,188,10,0,24,138,90,246,212,243,6,0,24,10,3,128,39,65,9,0,24,10,3,128,161,65,9,0,24,10,3,128,21,66,9,0,24,10,3,128,188,66,9,0,24,10,3,128,85,67,9,0,25,10,148,190,183,209,6,0,25,138,127,6,29,73,7,0,28,138,242,54,224,146,8,0,28,138,242,54,132,150,8,0,29,10,241,27,122,130,6,0,29,10,221,191,23,199,6,0,30,10,254,109,153,11,7,0,30,10,254,109,135,13,7,0,31,138,227,150,230,71,9,0,31,138,227,150,83,72,9,0,31,10,46,190,151,78,9,0,31,10,46,190,188,78,9,0,31,10,46,190,220,78,9,0,32,138,113,159,232,191,8,0,32,138,113,159,162,193,8,0,35,10,149,249,224,146,8,0,35,10,149,249,132,150,8,0,37,10,168,176,212,243,6,0,40,10,77,168,114,138,7,0,44,10,223,68,53,211,5,0,44,138,181,171,123,236,9,0,45,10,216,1,29,5,7,0,45,10,89,12,148,189,8,0,45,10,89,12,177,189,8,0,46,138,47,145,117,79,7,0,51,10,10,208,175,21,6,0,51,10,10,208,27,32,7,0,53,10,43,161,0,39,9,0,53,10,43,161,17,39,9,0,53,10,43,161,34,39,9,0,53,10,43,161,104,39,9,0,55,138,33,50,175,30,7,0,55,138,234,167,247,55,7,0,58,138,189,115,200,93,10,0,59,138,28,116,138,115,8,0,59,138,28,116,117,124,8,0,59,138,28,116,105,133,8,0,61,138,120,140,232,124,10,0,62,10,215,33,206,87,9,0,62,10,215,33,25,88,9,0,63,138,172,3,237,73,7,0,68,10,215,111,101,219,6,0,68,10,153,137,237,73,7,0,68,138,220,11,118,226,8,0,68,138,220,11,72,228,8,0,69,10,158,58,120,232,10,0,70,138,52,158,167,8,7,0,73,138,225,22,152,111,7,0,73,138,225,22,166,119,7,0,73,138,225,22,62,124,7,0,75,10,197,138,63,165,6,0,75,138,181,136,171,63,7,0,76,10,212,45,162,50,7,0,77,10,116,85,155,67,7,0,79,138,49,35,180,28,7,0,79,138,44,127,210,149,7,0,80,138,231,242,114,209,6,0,83,10,208,253,87,92,6,0,83,10,157,242,123,236,9,0,85,10,104,128,75,137,7,0,86,138,126,177,107,23,10,0,86,138,126,177,195,23,10,0,87,138,42,33,237,73,7,0,90,138,85,65,71,236,6,0,90,10,51,106,123,236,9,0,91,10,137,232,74,189,5,0,92,138,174,230,219,210,7,0,100,10,104,196,70,209,9,0,100,10,104,196,141,209,9,0,100,10,104,196,208,209,9,0,100,10,104,196,13,210,9,0,101,10,2,138,214,7,7,0,103,10,205,71,133,220,6,0,105,10,158,76,224,146,8,0,105,10,158,76,132,150,8,0,105,138,18,148,194,40,9,0,105,138,18,148,223,40,9,0,105,138,18,148,249,40,9,0,106,138,38,62,164,238,7,0,106,10,148,190,138,115,8,0,106,10,148,190,117,124,8,0,106,10,148,190,105,133,8,0,110,138,7,199,116,182,6,0,111,10,253,181,155,67,7,0,112,138,133,252,106,59,9,0,112,138,133,252,181,59,9,0,114,10,211,206,175,26,7,0,118,10,14,93,225,158,10,0,121,10,8,177,1,26,11,0,122,10,100,27,216,61,11,0,124,138,130,81,46,16,10,0,125,10,134,68,182,234,6,0,126,10,72,169,61,224,6,0,127,138,141,146,71,236,6,0,130,10,46,50,241,199,10,0,131,138,22,200,123,236,9,0,133,10,52,99,109,231,6,0,133,10,232,84,123,236,9,0,137,138,55,245,117,140,10,0,138,138,250,35,56,48,11,0,139,138,227,40,139,158,8,0,139,138,227,40,224,163,8,0,140,10,90,41,236,213,6,0,142,138,207,132,33,65,7,0,143,138,208,80,48,141,7,0,143,138,208,80,106,141,7,0,143,138,52,138,183,110,8,0,143,138,52,138,2,111,8,0,143,138,104,202,172,70,11,0,144,138,48,200,212,243,6,0,144,10,62,80,217,62,7,0,145,10,5,255,205,151,9,0,145,10,5,255,199,152,9,0,145,10,5,255,220,153,9,0,147,10,62,213,247,55,7,0,147,138,134,181,54,239,10,0,148,10,93,187,201,155,10,0,151,10,67,16,42,202,6,0,152,138,10,175,29,73,7,0,161,10,75,68,117,37,7,0,161,10,181,197,237,73,7,0,162,10,186,171,125,44,7,0,166,10,116,151,136,219,5,0,167,138,225,218,153,11,7,0,167,138,225,218,135,13,7,0,168,138,61,82,123,236,9,0,170,138,83,50,51,8,6,0,172,10,29,78,60,220,7,0,172,10,29,78,100,220,7,0,176,138,71,27,117,79,7,0,176,10,75,178,64,193,9,0,177,138,63,51,150,39,11,0,180,10,142,51,71,236,6,0,180,138,44,127,136,58,7,0,184,138,58,88,27,13,6,0,184,138,46,26,146,235,6,0,184,138,165,112,228,113,10,0,185,138,201,236,235,11,10,0,185,138,201,236,5,12,10,0,185,138,11,102,98,68,11,0,185,138,240,13,212,82,11,0,186,138,134,233,247,55,7,0,187,10,143,185,38,98,7,0,190,138,99,230,61,224,6,0,190,138,177,74,67,69,10,0,193,10,81,190,106,237,10,0,194,10,181,135,159,92,9,0,194,10,181,135,5,93,9,0,199,10,230,83,247,55,7,0,199,138,42,185,35,244,10,0,199,138,42,185,78,244,10,0,200,10,148,98,99,66,8,0,200,10,148,98,218,67,8,0,200,10,148,98,69,68,8,0,200,10,148,98,8,69,8,0,200,10,148,98,155,69,8,0,200,10,148,98,232,69,8,0,202,10,240,186,69,69,7,0,203,10,48,135,70,5,8,0,203,10,48,135,215,20,8,0,203,10,114,29,224,146,8,0,203,10,114,29,132,150,8,0,203,10,58,150,0,190,8,0,203,10,58,150,168,190,8,0,205,138,104,249,107,186,7,0,205,138,104,249,161,186,7,0,205,138,104,249,215,186,7,0,205,10,215,240,207,246,7,0,205,10,215,240,246,246,7,0,205,138,113,57,250,57,8,0,206,10,244,24,113,232,6,0,206,138,77,129,22,35,7,0,206,138,175,23,139,158,8,0,206,138,175,23,224,163,8,0,211,138,16,3,13,32,9,0,211,138,16,3,195,32,9,0,212,10,204,250,199,145,7,0,217,138,134,172,58,222,5,0,218,10,55,69,61,40,7,0,221,10,221,25,77,87,8,0,222,10,166,6,154,221,6,0,224,10,141,129,22,35,7,0,224,10,141,129,117,37,7,0,227,138,203,151,102,41,7,0,228,10,103,231,42,226,5,0,234,10,77,225,3,157,8,0,234,10,77,225,180,157,8,0,234,10,53,124,246,205,8,0,234,10,53,124,155,206,8,0,235,10,218,128,15,224,10,0,240,10,181,211,201,206,5,0,241,138,211,192,38,98,7,0,242,10,181,87,128,65,10,0,243,138,211,14,63,14,9,0,243,138,211,14,116,14,9,0,243,138,211,14,116,94,10,0,245,138,100,168,236,26,7,0,246,138,200,45,76,81,9,0,246,138,200,45,115,81,9,0,247,10,46,21,27,189,7,0,247,138,178,230,232,191,8,0,247,138,178,230,162,193,8,0,248,138,32,37,188,184,10,0,249,10,49,154,29,204,8,0,249,10,49,154,6,205,8,0,250,10,254,167,117,79,7,0,252,138,197,184,249,23,7,0,252,138,197,184,19,24,7,0,252,138,146,115,229,49,9,0,252,138,146,115,17,50,9,0,252,138,146,115,229,119,10,0,253,10,1,214,219,254,7,0,255,138,69,152,138,115,8,0,255,138,69,152,117,124,8,0,255,138,69,152,105,133,8,0,2,11,106,100,117,37,7,0,5,11,147,254,218,113,9,0,5,11,147,254,120,114,9,0,6,139,160,109,4,17,11,0,7,139,114,75,80,32,7,0,11,11,201,247,152,111,7,0,11,11,201,247,62,124,7,0,11,139,115,77,3,157,8,0,11,139,115,77,180,157,8,0,11,11,34,239,73,213,10,0,13,139,174,141,99,66,8,0,13,139,58,50,46,16,10,0,14,139,46,44,111,184,6,0,15,139,1,110,38,253,8,0,15,139,1,110,173,253,8,0,19,11,133,206,200,62,11,0,20,11,48,158,154,221,6,0,23,11,142,94,250,57,8,0,23,139,226,109,55,24,11,0,24,139,118,164,155,67,7,0,26,139,33,212,90,53,7,0,27,11,63,253,126,226,7,0,28,11,69,108,232,180,10,0,29,11,49,14,71,236,6,0,30,11,63,253,179,17,7,0,30,11,217,224,38,98,7,0,30,139,104,38,144,95,11,0,32,139,19,221,117,37,7,0,35,11,133,147,149,54,6,0,37,139,75,77,52,193,5,0,40,139,42,145,45,30,6,0,46,11,133,161,151,21,7,0,46,11,237,54,73,242,10,0,50,139,123,255,232,191,8,0,50,139,123,255,162,193,8,0,54,139,69,57,163,82,8,0,54,139,69,57,239,82,8,0,54,139,69,57,60,83,8,0,54,11,85,99,123,236,9,0,54,139,14,60,124,159,10,0,55,11,215,67,79,31,8,0,55,11,215,67,123,31,8,0,55,11,215,67,168,31,8,0,55,11,215,67,214,31,8,0,55,11,121,27,224,146,8,0,55,11,121,27,132,150,8,0,57,139,178,64,68,249,10,0,59,139,220,14,21,236,10,0,60,139,121,169,13,110,8,0,60,139,121,169,61,110,8,0,61,11,132,182,57,10,7,0,61,139,205,31,38,98,7,0,61,11,109,4,219,210,7,0,61,139,189,128,218,113,9,0,61,139,189,128,120,114,9,0,63,139,243,57,210,224,6,0,63,11,133,246,29,5,7,0,68,139,146,50,236,51,7,0,68,139,10,140,220,234,7,0,69,11,129,243,193,45,7,0,69,11,129,243,242,45,7,0,69,11,205,128,75,1,9,0,69,11,205,128,154,2,9,0,69,11,205,128,235,3,9,0,69,11,205,128,65,5,9,0,71,139,199,56,80,32,7,0,71,139,83,140,181,145,10,0,75,139,149,148,238,187,6,0,75,139,149,148,188,231,6,0,75,139,28,116,125,44,7,0,75,139,49,98,94,12,11,0,76,11,213,151,158,221,5,0,77,11,163,235,117,37,7,0,78,11,164,47,38,98,7,0,80,11,41,19,68,195,10,0,82,139,181,148,204,177,6,0,82,139,100,98,63,14,9,0,82,139,100,98,116,14,9,0,82,139,142,58,113,22,11,0,84,11,40,191,136,58,7,0,88,139,162,20,136,233,10,0,89,139,53,237,139,158,8,0,89,139,53,237,224,163,8,0,91,11,217,218,65,106,10,0,92,11,65,232,162,252,10,0,95,11,32,32,106,88,10,0,100,139,42,208,228,109,9,0,100,139,42,208,248,110,9,0,104,139,43,192,61,199,5,0,104,139,175,237,24,8,7,0,107,139,180,255,110,218,6,0,107,11,138,255,29,5,7,0,108,11,43,211,226,154,9,0,108,11,43,211,114,155,9,0,109,11,221,48,150,39,11,0,110,11,164,160,59,225,5,0,115,139,167,212,40,217,8,0,115,139,167,212,209,217,8,0,121,139,74,3,84,12,6,0,122,11,35,53,113,24,7,0,123,139,143,109,201,3,7,0,125,139,94,77,128,133,7,0,129,139,206,61,135,85,6,0,130,11,81,81,84,37,6,0,132,139,181,82,123,236,9,0,135,139,205,31,67,90,6,0,135,11,138,173,236,26,7,0,135,139,201,200,139,158,8,0,135,139,201,200,224,163,8,0,136,139,210,230,84,142,10,0,138,11,5,87,108,62,11,0,140,139,157,144,148,186,8,0,140,139,157,144,221,186,8,0,141,139,171,152,219,1,7,0,141,139,156,217,112,27,7,0,141,139,33,120,227,108,7,0,141,11,146,97,224,146,8,0,141,11,146,97,132,150,8,0,144,11,194,153,138,229,5,0,144,139,232,207,247,55,7,0,144,139,64,69,146,38,8,0,144,139,64,69,209,38,8,0,144,139,64,69,6,39,8,0,144,11,245,4,22,62,10,0,145,11,185,251,38,26,6,0,145,11,145,116,71,236,6,0,145,139,225,73,237,73,7,0,147,139,88,177,140,66,7,0,147,139,88,177,234,66,7,0,147,139,85,37,224,146,8,0,147,139,85,37,132,150,8,0,148,11,15,205,222,33,11,0,152,11,241,28,14,30,8,0,152,139,240,247,118,226,8,0,152,139,240,247,72,228,8,0,153,139,0,52,80,32,7,0,153,139,0,11,138,115,8,0,153,139,0,11,117,124,8,0,153,139,0,11,105,133,8,0,154,139,75,90,80,182,6,0,154,11,52,246,50,211,6,0,154,11,95,209,117,79,7,0,154,139,75,90,197,7,8,0,155,139,118,63,20,195,5,0,155,139,118,63,237,203,5,0,155,11,146,19,171,49,7,0,157,11,164,160,4,206,7,0,162,11,148,190,162,171,10,0,163,11,19,80,57,10,7,0,163,139,76,238,81,63,7,0,164,11,171,100,212,243,6,0,164,139,173,133,136,58,7,0,166,11,33,83,249,198,6,0,168,11,13,131,254,254,6,0,168,11,154,228,112,80,10,0,168,11,13,131,9,18,11,0,170,11,53,189,30,128,6,0,170,11,223,245,245,28,10,0,170,11,223,245,145,31,10,0,173,11,59,152,152,111,7,0,173,11,59,152,84,53,8,0,173,11,143,165,180,173,10,0,177,11,133,120,78,11,10,0,177,11,133,120,112,11,10,0,179,139,240,119,57,32,11,0,181,139,238,57,90,56,9,0,181,139,238,57,171,56,9,0,181,139,238,57,54,57,9,0,183,11,106,55,201,3,7,0,183,11,154,214,27,32,7,0,184,139,120,232,71,236,6,0,193,11,254,253,196,101,8,0,193,11,254,253,3,102,8,0,193,11,254,253,63,102,8,0,194,139,59,243,139,158,8,0,194,139,59,243,224,163,8,0,196,11,82,129,169,231,5,0,196,139,86,178,247,55,7,0,196,139,216,207,227,108,7,0,196,11,116,201,238,142,10,0,197,11,2,89,237,231,6,0,197,11,227,239,26,0,7,0,197,11,85,93,138,115,8,0,197,11,85,93,117,124,8,0,197,11,85,93,105,133,8,0,198,11,168,247,52,169,8,0,198,11,168,247,90,169,8,0,200,139,63,9,247,135,6,0,200,11,223,59,215,255,6,0,202,139,253,239,115,68,6,0,202,139,253,239,89,232,6,0,206,11,128,180,113,47,7,0,208,11,243,239,136,58,7,0,208,11,250,173,171,99,11,0,210,139,20,94,171,63,7,0,210,11,15,204,252,156,9,0,210,11,15,204,38,157,9,0,212,11,20,234,98,164,9,0,212,11,20,234,132,164,9,0,215,139,235,179,155,67,7,0,215,139,247,190,13,32,9,0,215,139,247,190,195,32,9,0,217,11,28,234,29,5,7,0,217,11,105,189,84,21,8,0,219,139,187,72,224,146,8,0,219,139,187,72,132,150,8,0,220,139,81,242,232,251,9,0,220,139,81,242,176,252,9,0,222,11,153,162,123,194,10,0,225,11,169,47,29,5,7,0,226,11,46,210,3,157,8,0,226,11,46,210,180,157,8,0,227,11,139,224,68,202,6,0,227,11,211,29,136,58,7,0,227,11,118,92,125,241,10,0,227,11,118,92,142,241,10,0,228,139,170,166,112,176,7,0,228,139,87,250,138,115,8,0,228,139,87,250,117,124,8,0,228,139,87,250,105,133,8,0,228,11,180,242,162,199,10,0,230,11,7,189,57,171,8,0,230,11,7,189,133,172,8,0,230,11,7,189,211,173,8,0,231,11,87,172,222,47,8,0,235,139,154,101,187,34,11,0,237,11,63,101,172,72,7,0,237,139,1,21,138,115,10,0,239,11,94,121,30,141,6,0,239,11,1,124,212,243,6,0,239,11,130,194,251,114,10,0,241,11,85,232,123,236,9,0,242,11,75,127,111,170,10,0,243,139,38,90,112,27,7,0,243,139,70,175,38,253,8,0,243,139,70,175,173,253,8,0,244,11,189,86,187,65,11,0,245,11,131,173,212,243,6,0,248,11,153,134,242,182,8,0,248,11,153,134,254,182,8,0,249,11,241,46,222,70,6,0,249,139,115,37,165,106,8,0,251,11,29,110,71,236,6,0,252,139,192,222,123,236,9,0,254,11,79,253,246,208,7,0,255,11,23,1,138,115,8,0,255,11,23,1,117,124,8,0,255,11,23,1,105,133,8,0,1,12,40,118,46,59,10,0,10,140,78,136,254,42,11,0,12,140,107,215,88,129,7,0,13,140,218,52,178,233,6,0,13,140,112,90,188,52,9,0,15,12,106,63,117,79,7,0,18,140,244,145,117,25,6,0,21,140,11,131,255,201,6,0,21,140,106,65,175,26,7,0,21,140,11,131,22,247,8,0,21,140,11,131,60,247,8,0,22,140,196,86,138,115,8,0,22,140,196,86,117,124,8,0,22,140,196,86,105,133,8,0,25,140,81,242,227,108,7,0,25,140,81,242,152,111,7,0,25,140,81,242,252,231,8,0,26,140,102,153,91,17,9,0,26,140,102,153,177,17,9,0,26,140,102,153,1,18,9,0,26,140,82,58,109,172,9,0,26,140,82,58,178,173,9,0,26,140,82,58,250,174,9,0,27,140,148,88,171,63,7,0,30,12,149,43,224,146,8,0,30,12,149,43,132,150,8,0,31,140,133,227,34,194,9,0,31,140,133,227,51,194,9,0,31,140,133,227,66,194,9,0,31,140,149,27,123,236,9,0,34,140,236,36,136,58,7,0,34,12,49,131,38,98,7,0,36,12,199,28,138,115,8,0,36,12,199,28,117,124,8,0,36,12,199,28,105,133,8,0,38,12,35,190,43,71,11,0,39,140,132,106,237,73,7,0,39,12,45,208,183,180,9,0,39,12,45,208,200,180,9,0,40,140,25,96,95,0,10,0,40,140,25,96,200,0,10,0,42,12,82,98,230,130,7,0,42,140,85,200,123,236,9,0,43,12,89,16,194,211,6,0,46,12,7,103,226,154,9,0,46,12,7,103,114,155,9,0,47,12,20,234,223,89,10,0,47,12,20,234,6,90,10,0,48,140,209,181,90,239,5,0,50,12,158,132,206,88,8,0,52,12,110,161,52,169,8,0,52,12,110,161,90,169,8,0,52,12,88,136,245,28,10,0,52,12,88,136,145,31,10,0,53,140,62,253,219,1,7,0,53,140,62,253,99,3,7,0,55,12,77,243,184,103,6,0,55,12,36,251,32,30,7,0,57,12,95,139,34,10,10,0,59,12,109,102,153,11,7,0,59,12,109,102,135,13,7,0,60,12,237,0,238,191,7,0,60,12,237,0,24,192,7,0,60,140,122,111,51,241,8,0,60,140,122,111,198,241,8,0,61,12,107,235,124,10,9,0,61,140,179,242,221,38,10,0,61,140,179,242,62,40,10,0,61,12,254,110,249,205,10,0,62,12,21,236,253,208,8,0,62,12,21,236,22,211,8,0,64,12,168,102,80,45,11,0,65,140,210,17,57,171,8,0,65,140,210,17,133,172,8,0,65,140,210,17,211,173,8,0,69,12,191,93,129,40,7,0,70,12,72,80,20,15,7,0,70,12,72,80,179,17,7,0,70,140,13,102,124,45,8,0,70,140,13,102,1,46,8,0,70,140,13,102,123,46,8,0,71,12,242,18,123,236,9,0,72,12,220,234,32,98,6,0,72,140,183,152,233,53,9,0,72,140,183,152,38,54,9,0,72,140,183,152,118,54,9,0,76,140,204,25,123,236,9,0,79,140,183,45,78,17,6,0,80,140,155,242,138,64,6,0,81,12,187,215,171,63,7,0,86,12,204,122,71,236,6,0,86,12,168,9,253,208,8,0,86,12,168,9,22,211,8,0,87,140,65,77,152,111,7,0,87,140,65,77,206,62,8,0,87,140,65,77,99,63,8,0,87,140,65,77,4,64,8,0,87,140,65,77,73,218,9,0,90,12,21,223,216,194,5,0,93,12,248,137,43,133,6,0,94,140,14,205,57,140,6,0,94,140,14,205,93,140,6,0,96,12,2,22,172,36,6,0,104,12,189,115,107,210,6,0,104,12,120,171,125,6,8,0,104,140,125,156,123,236,9,0,106,12,61,23,71,236,6,0,110,140,116,221,181,22,6,0,110,140,116,221,147,89,6,0,112,12,115,242,126,199,5,0,112,12,115,242,243,69,7,0,113,140,219,47,48,207,6,0,113,140,230,127,218,113,9,0,113,140,230,127,120,114,9,0,116,12,22,77,138,115,8,0,116,12,22,77,117,124,8,0,116,12,22,77,105,133,8,0,119,140,85,210,2,23,7,0,120,140,196,148,171,35,6,0,120,12,143,86,171,63,7,0,121,12,152,215,117,79,7,0,121,140,128,130,37,70,10,0,121,140,128,130,91,70,10,0,123,12,139,232,38,98,7,0,125,12,11,210,218,113,9,0,125,12,11,210,120,114,9,0,125,12,7,196,148,184,10,0,127,12,61,9,28,74,10,0,130,12,46,131,144,215,7,0,130,140,8,34,90,175,8,0,130,140,8,34,74,176,8,0,131,140,103,102,99,66,8,0,137,140,206,96,144,188,5,0,137,12,9,198,146,235,6,0,138,140,28,142,155,7,6,0,138,12,101,88,28,164,10,0,138,12,101,88,88,164,10,0,138,12,101,88,190,164,10,0,138,12,101,88,232,168,10,0,139,140,222,126,235,189,7,0,141,140,42,62,75,214,5,0,145,12,201,132,89,68,10,0,145,12,201,132,113,68,10,0,146,12,164,160,237,73,7,0,148,140,18,116,140,150,10,0,149,140,253,137,41,247,5,0,150,12,137,13,171,63,7,0,153,140,37,195,25,182,8,0,153,140,37,195,42,182,8,0,154,12,159,138,245,28,10,0,154,12,159,138,145,31,10,0,157,12,227,205,187,32,11,0,158,12,211,2,117,37,7,0,158,12,150,4,138,115,8,0,158,12,150,4,117,124,8,0,158,12,150,4,105,133,8,0,160,140,123,21,29,5,7,0,165,140,82,158,254,243,5,0,165,12,10,172,185,198,6,0,165,12,160,63,114,234,6,0,165,140,82,158,153,89,7,0,165,140,17,150,123,236,9,0,166,12,172,62,61,224,6,0,166,12,82,132,123,236,9,0,168,140,254,53,243,183,6,0,168,140,254,53,152,229,6,0,168,12,222,255,38,98,7,0,168,140,254,53,168,52,10,0,168,140,254,53,184,52,10,0,169,12,170,17,253,82,11,0,171,12,161,241,254,243,5,0,171,12,161,241,153,89,7,0,172,12,55,161,212,8,8,0,172,12,156,140,123,236,9,0,172,12,55,161,234,117,10,0,174,12,29,180,49,39,11,0,174,12,29,180,3,40,11,0,174,12,29,180,10,49,11,0,177,140,46,78,122,153,10,0,179,140,121,181,3,239,10,0,184,12,185,247,179,17,7,0,186,140,22,83,221,10,10,0,186,140,22,83,255,10,10,0,187,140,157,38,211,221,5,0,194,12,112,167,172,53,11,0,195,12,185,120,151,21,7,0,195,12,109,20,78,47,11,0,196,140,85,210,197,43,7,0,196,140,85,210,30,44,7,0,198,12,164,160,39,125,6,0,198,12,119,227,212,243,6,0,199,12,43,211,138,115,8,0,199,12,43,211,117,124,8,0,199,12,43,211,105,133,8,0,201,12,168,138,236,51,7,0,201,140,181,148,39,48,11,0,202,12,207,170,61,189,5,0,205,140,56,139,167,107,7,0,205,140,56,139,62,124,7,0,205,12,204,81,253,208,8,0,205,12,204,81,22,211,8,0,205,12,220,89,123,236,9,0,206,12,155,120,232,124,10,0,207,140,0,206,232,191,8,0,207,140,0,206,162,193,8,0,212,140,51,23,197,43,7,0,212,140,51,23,30,44,7,0,214,12,207,192,123,236,9,0,215,140,212,58,179,17,7,0,215,12,220,213,113,47,7,0,217,12,243,12,73,123,6,0,217,140,135,105,212,243,6,0,218,12,207,245,90,53,7,0,219,140,73,214,21,36,7,0,221,140,233,126,114,18,8,0,222,12,161,38,80,49,7,0,222,12,161,38,171,49,7,0,222,140,222,126,240,53,11,0,224,140,233,249,123,236,9,0,227,140,126,144,95,140,7,0,227,140,126,144,163,141,7,0,233,140,82,54,228,109,9,0,233,140,82,54,248,110,9,0,234,12,198,97,102,126,6,0,234,12,22,187,117,37,7,0,236,140,137,173,245,207,6,0,239,140,39,95,138,115,8,0,239,140,39,95,117,124,8,0,239,140,39,95,105,133,8,0,240,12,102,10,201,247,5,0,241,12,186,189,222,247,10,0,243,12,105,19,224,146,8,0,243,12,105,19,132,150,8,0,245,140,189,92,74,164,7,0,245,140,169,201,138,115,8,0,245,140,169,201,117,124,8,0,245,140,169,201,105,133,8,0,252,140,152,228,224,146,8,0,252,140,152,228,132,150,8,0,254,140,141,102,38,217,6,0,254,12,171,53,110,218,6,0,254,12,177,101,133,220,6,0,0,13,87,34,253,208,8,0,0,13,87,34,22,211,8,0,1,141,132,171,123,236,9,0,3,13,99,171,246,205,8,0,3,13,99,171,155,206,8,0,3,13,201,136,69,94,10,0,4,13,215,30,54,218,6,0,6,13,9,212,139,214,9,0,6,13,9,212,234,214,9,0,6,13,9,212,70,215,9,0,7,141,171,10,29,150,7,0,11,141,152,6,113,47,7,0,12,141,186,18,152,234,6,0,12,141,104,156,138,115,8,0,12,141,104,156,117,124,8,0,12,141,104,156,105,133,8,0,15,13,129,202,85,39,6,0,15,13,146,232,71,236,6,0,15,13,10,73,63,214,7,0,15,13,205,112,39,65,9,0,15,13,205,112,161,65,9,0,15,13,205,112,21,66,9,0,15,13,205,112,188,66,9,0,15,13,205,112,85,67,9,0,16,13,187,191,212,243,6,0,17,13,215,203,103,170,8,0,17,13,215,203,188,170,8,0,17,141,16,227,137,27,9,0,17,141,16,227,169,27,9,0,18,13,161,174,209,40,7,0,18,13,161,174,222,18,11,0,22,141,81,190,71,236,6,0,22,13,142,10,247,55,7,0,22,141,179,168,38,98,7,0,23,141,87,227,227,108,7,0,25,13,56,51,171,44,11,0,26,141,229,141,136,58,7,0,30,13,155,120,42,132,10,0,32,141,61,81,203,40,6,0,35,13,223,23,139,196,5,0,35,13,239,38,222,159,6,0,38,13,190,13,248,234,6,0,38,13,95,64,90,53,7,0,41,13,10,206,80,32,7,0,41,13,153,236,135,90,9,0,41,13,153,236,124,91,9,0,41,141,49,178,72,204,9,0,43,141,66,0,224,96,11,0,47,141,74,10,214,120,9,0,47,141,74,10,7,121,9,0,47,141,74,10,43,121,9,0,47,13,110,249,49,98,11,0,49,141,18,175,162,248,9,0,49,141,18,175,192,248,9,0,50,141,237,232,20,15,7,0,50,141,237,232,179,17,7,0,50,141,110,0,123,236,9,0,51,13,73,145,112,5,10,0,51,13,73,145,28,6,10,0,52,141,95,9,80,70,9,0,52,141,95,9,102,70,9,0,52,141,95,9,143,70,9,0,52,141,95,9,174,70,9,0,55,141,99,56,28,1,6,0,56,13,253,6,64,97,7,0,56,13,253,6,33,136,7,0,56,13,212,110,138,115,8,0,56,13,212,110,117,124,8,0,56,13,212,110,105,133,8,0,56,141,164,125,50,69,11,0,57,13,87,184,80,32,7,0,61,141,216,153,71,236,6,0,63,13,151,130,71,236,6,0,65,13,63,127,69,115,10,0,67,13,157,253,211,61,10,0,68,141,133,18,71,236,6,0,69,13,62,181,82,78,6,0,69,13,141,154,149,72,10,0,77,141,228,131,123,236,9,0,81,141,100,244,111,72,7,0,81,141,100,244,196,72,7,0,84,141,14,70,136,124,6,0,87,141,233,52,78,0,6,0,89,13,29,253,178,233,6,0,90,141,151,150,71,236,6,0,90,141,231,242,141,242,8,0,90,141,231,242,177,242,8,0,92,13,239,109,212,243,6,0,95,141,179,214,173,208,6,0,96,141,62,204,47,1,7,0,99,13,9,148,80,32,7,0,102,13,94,175,138,115,8,0,102,13,94,175,117,124,8,0,102,13,94,175,105,133,8,0,102,141,106,112,215,16,10,0,102,141,106,112,135,17,10,0,104,141,86,60,133,222,7,0,104,141,86,60,167,222,7,0,109,13,34,106,57,10,7,0,110,13,188,87,123,236,9,0,111,13,163,139,212,243,6,0,111,13,210,174,20,15,7,0,111,13,210,174,179,17,7,0,111,141,61,116,237,73,7,0,112,13,221,246,78,203,8,0,119,141,11,135,219,1,7,0,121,141,226,230,98,57,11,0,122,141,41,160,71,236,6,0,122,141,213,133,151,21,7,0,122,13,116,46,138,115,8,0,122,13,116,46,117,124,8,0,122,13,116,46,105,133,8,0,122,13,9,201,255,179,8,0,122,13,9,201,110,180,8,0,123,13,35,246,247,55,7,0,123,13,64,59,220,12,10,0,123,13,64,59,22,13,10,0,127,141,15,190,54,209,5,0,127,141,28,162,189,130,10,0,127,141,28,162,227,130,10,0,135,13,214,4,174,83,10,0,135,13,214,4,46,107,10,0,139,13,50,125,34,95,6,0,140,13,108,36,30,171,9,0,143,13,1,190,121,97,7,0,144,141,87,248,123,236,9,0,145,141,102,78,236,221,8,0,145,141,102,78,7,222,8,0,146,141,124,79,38,98,7,0,147,141,187,236,29,150,7,0,147,13,149,176,124,74,11,0,147,141,113,15,30,95,11,0,149,13,209,198,136,58,7,0,149,13,209,198,152,111,7,0,149,13,209,198,99,66,8,0,150,141,235,36,67,103,6,0,150,141,146,155,247,55,7,0,151,141,124,197,63,165,6,0,152,141,82,195,20,15,7,0,152,141,82,195,179,17,7,0,152,141,241,126,240,214,7,0,156,13,99,74,139,158,8,0,156,13,99,74,224,163,8,0,157,13,227,32,67,194,6,0,159,141,23,126,10,36,9,0,159,141,23,126,30,36,9,0,164,141,99,183,96,184,10,0,166,13,51,126,248,86,6,0,167,141,152,112,224,146,8,0,167,141,152,112,132,150,8,0,168,141,26,87,106,59,9,0,168,141,26,87,181,59,9,0,170,141,87,74,38,98,7,0,171,141,168,109,131,48,7,0,171,141,178,242,224,146,8,0,171,141,178,242,132,150,8,0,179,13,134,248,88,129,7,0,179,13,33,124,7,103,10,0,179,13,33,124,39,103,10,0,180,13,168,201,71,236,6,0,180,13,3,121,90,175,8,0,180,13,3,121,74,176,8,0,182,141,218,20,186,221,5,0,182,141,149,181,98,45,6,0,182,141,149,181,51,94,6,0,182,141,95,221,11,249,9,0,182,141,95,221,32,249,9,0,182,141,95,221,56,249,9,0,183,13,21,168,51,214,8,0,183,13,21,168,241,214,8,0,183,13,21,168,169,215,8,0,186,13,243,27,109,172,9,0,186,13,243,27,178,173,9,0,186,13,243,27,250,174,9,0,187,13,15,221,212,243,6,0,188,141,46,227,219,210,7,0,190,13,239,17,118,159,6,0,192,141,117,25,219,210,7,0,193,13,223,33,189,95,7,0,193,13,223,33,25,127,7,0,195,13,221,8,6,106,9,0,195,13,221,8,31,106,9,0,198,13,88,168,180,199,6,0,198,141,78,50,164,156,10,0,202,141,93,240,124,222,6,0,202,13,40,203,117,79,7,0,203,141,84,24,68,202,6,0,203,141,48,33,71,236,6,0,204,13,226,180,209,41,7,0,204,13,143,212,38,98,7,0,207,13,209,241,71,236,6,0,207,141,28,59,117,79,7,0,216,13,229,69,123,236,9,0,217,13,233,147,84,21,8,0,218,141,50,130,254,243,5,0,218,141,50,130,153,89,7,0,219,13,32,196,237,73,7,0,221,13,209,166,117,79,7,0,222,141,201,94,71,236,6,0,222,141,190,181,123,236,9,0,224,13,89,243,247,55,7,0,232,13,53,20,29,5,7,0,233,141,109,69,136,58,7,0,234,13,207,62,152,111,7,0,234,13,207,62,173,169,8,0,235,141,29,61,191,71,11,0,239,13,142,228,38,98,7,0,239,141,33,8,1,224,10,0,240,13,189,157,165,108,9,0,240,13,189,157,214,108,9,0,240,13,189,157,27,109,9,0,241,13,196,248,71,236,6,0,244,13,121,44,109,172,9,0,244,13,121,44,178,173,9,0,244,13,121,44,250,174,9,0,245,141,78,189,212,243,6,0,248,13,197,38,152,111,7,0,250,141,19,130,224,146,8,0,250,141,19,130,132,150,8,0,251,141,25,32,127,1,6,0,251,141,251,203,83,84,10,0,252,141,40,149,117,37,7,0,2,142,163,186,117,79,7,0,8,142,206,100,68,85,6,0,10,14,75,27,139,158,8,0,10,14,75,27,224,163,8,0,11,14,47,116,112,27,7,0,12,142,67,176,227,108,7,0,12,142,67,176,152,111,7,0,12,142,67,176,186,123,7,0,12,14,176,40,213,41,10,0,12,14,176,40,87,42,10,0,14,14,226,82,106,97,6,0,14,142,203,231,0,75,8,0,14,142,203,231,51,75,8,0,19,14,231,126,80,49,7,0,19,14,231,126,171,49,7,0,20,142,68,201,254,254,6,0,23,142,43,219,152,111,7,0,23,142,43,219,173,169,8,0,23,14,43,84,86,161,10,0,34,142,252,82,38,31,7,0,34,142,131,213,179,237,7,0,35,142,165,195,71,236,6,0,37,14,115,214,154,232,10,0,37,14,115,214,95,235,10,0,38,14,114,242,249,23,7,0,38,14,114,242,19,24,7,0,39,14,63,207,90,53,7,0,40,142,170,173,141,207,6,0,40,142,18,232,171,63,7,0,42,14,196,5,228,109,9,0,42,14,196,5,248,110,9,0,47,142,242,167,159,33,6,0,47,142,169,214,66,184,6,0,50,142,35,217,141,230,9,0,50,142,35,217,217,230,9,0,50,14,242,0,245,28,10,0,50,14,242,0,245,28,10,0,50,14,242,0,145,31,10,0,50,14,242,0,145,31,10,0,52,14,30,4,117,37,7,0,56,14,197,55,122,130,6,0,59,14,43,16,196,250,5,0,59,14,138,90,212,243,6,0,59,14,138,90,254,254,6,0,61,142,172,212,156,109,10,0,62,142,217,68,139,158,8,0,62,142,217,68,224,163,8,0,62,14,4,151,219,134,9,0,62,14,4,151,234,134,9,0,63,14,249,22,71,236,6,0,64,14,142,162,160,234,8,0,64,14,142,162,175,235,8,0,65,142,240,33,210,225,6,0,67,142,196,53,71,236,6,0,67,14,87,99,39,65,9,0,67,14,87,99,161,65,9,0,67,14,87,99,21,66,9,0,67,14,87,99,188,66,9,0,67,14,87,99,85,67,9,0,69,142,213,234,212,243,6,0,69,142,30,172,227,108,7,0,69,142,30,172,138,115,8,0,69,142,30,172,117,124,8,0,69,142,30,172,105,133,8,0,70,142,134,254,20,15,7,0,70,142,134,254,179,17,7,0,72,142,107,249,11,57,10,0,72,142,107,249,189,94,10,0,75,14,202,148,53,67,10,0,76,14,56,147,71,236,6,0,76,142,247,13,212,243,6,0,78,142,5,41,224,135,10,0,80,142,231,134,0,228,5,0,81,14,21,93,202,63,10,0,83,142,0,77,91,70,7,0,83,14,200,180,237,73,7,0,84,14,44,128,194,35,10,0,84,14,44,128,14,36,10,0,89,14,207,119,57,10,7,0,90,14,53,35,205,151,9,0,90,14,53,35,199,152,9,0,90,14,53,35,220,153,9,0,90,14,116,140,232,124,10,0,94,142,239,96,57,224,7,0,96,14,99,51,138,115,8,0,96,14,99,51,117,124,8,0,96,14,99,51,105,133,8,0,96,14,47,54,232,124,10,0,97,14,244,184,253,208,8,0,97,14,244,184,22,211,8,0,101,14,37,17,153,11,7,0,101,14,37,17,135,13,7,0,101,142,195,129,54,239,10,0,104,14,99,18,24,248,5,0,104,14,55,82,145,156,6,0,105,14,152,158,10,30,7,0,105,142,216,118,122,177,10,0,108,142,85,17,210,38,6,0,110,14,112,45,85,104,11,0,111,14,134,250,138,115,8,0,111,14,134,250,117,124,8,0,111,14,134,250,105,133,8,0,112,14,24,190,0,189,8,0,112,14,24,190,54,189,8,0,115,14,185,146,245,28,10,0,115,14,185,146,145,31,10,0,116,14,106,165,162,36,7,0,118,14,58,98,19,242,5,0,119,142,88,30,245,28,10,0,119,142,88,30,145,31,10,0,122,142,73,225,180,84,8,0,124,14,159,139,224,2,6,0,125,142,150,208,63,212,7,0,126,14,83,11,2,162,10,0,126,14,83,11,8,168,10,0,127,14,244,101,194,28,6,0,127,14,244,101,252,128,6,0,128,14,46,139,123,236,9,0,129,14,248,210,76,59,10,0,130,14,175,227,152,111,7,0,130,14,175,227,126,191,8,0,130,14,175,227,175,191,8,0,130,142,5,84,118,226,8,0,130,142,5,84,72,228,8,0,131,142,47,7,47,96,10,0,135,14,75,102,117,37,7,0,137,142,164,63,253,208,8,0,137,142,164,63,22,211,8,0,137,142,118,74,98,65,10,0,140,14,74,64,151,21,7,0,141,14,194,122,209,41,7,0,143,142,201,201,232,173,7,0,143,142,230,89,58,230,7,0,143,142,230,89,99,230,7,0,143,142,230,89,152,230,7,0,147,142,250,100,51,214,8,0,147,142,250,100,241,214,8,0,147,142,250,100,169,215,8,0,149,142,30,227,0,189,8,0,149,142,30,227,54,189,8,0,150,142,119,115,16,89,10,0,154,14,87,232,180,212,5,0,154,14,158,49,96,237,5,0,154,142,147,8,98,213,10,0,155,14,19,184,75,153,6,0,157,14,62,169,178,50,11,0,158,142,65,227,245,41,7,0,160,142,6,2,12,234,6,0,162,14,95,250,70,5,8,0,164,142,135,133,77,203,6,0,166,142,233,23,136,58,7,0,166,14,193,93,141,255,8,0,166,14,193,93,235,255,8,0,166,142,217,232,95,52,11,0,168,142,21,103,29,209,5,0,172,14,33,139,163,201,6,0,172,142,28,249,245,28,10,0,172,142,28,249,145,31,10,0,173,142,1,187,90,53,7,0,178,142,144,202,221,38,10,0,178,142,144,202,62,40,10,0,179,14,52,219,171,49,7,0,180,142,195,5,38,98,7,0,183,14,193,214,205,151,9,0,183,14,193,214,199,152,9,0,183,14,193,214,220,153,9,0,186,14,152,9,27,163,6,0,186,14,129,236,103,46,7,0,187,14,190,169,138,115,8,0,187,14,190,169,117,124,8,0,187,14,190,169,105,133,8,0,190,142,132,159,171,63,7,0,191,14,121,137,196,8,6,0,191,142,198,87,61,187,7,0,193,142,125,222,102,179,6,0,195,142,121,31,85,31,7,0,196,142,23,53,71,236,6,0,197,14,246,254,221,244,10,0,202,14,99,139,76,81,9,0,202,14,99,139,115,81,9,0,202,142,245,91,72,251,10,0,203,142,207,210,209,195,10,0,204,14,120,127,91,154,8,0,204,14,120,127,147,154,8,0,208,14,12,114,5,21,8,0,208,14,12,114,22,12,11,0,209,14,101,17,171,49,7,0,209,14,101,17,95,0,10,0,209,14,101,17,200,0,10,0,210,142,152,23,136,58,7,0,210,142,194,214,232,37,11,0,210,142,194,214,81,39,11,0,211,14,233,25,29,150,7,0,212,142,224,160,144,45,11,0,217,14,2,61,187,70,7,0,218,142,209,159,109,172,9,0,218,142,209,159,178,173,9,0,218,142,209,159,250,174,9,0,219,142,24,226,78,11,10,0,219,142,24,226,112,11,10,0,223,14,58,76,165,9,9,0,223,14,58,76,221,9,9,0,223,14,58,76,22,10,9,0,223,14,25,128,232,194,10,0,225,14,198,156,217,17,6,0,228,14,225,156,160,234,8,0,228,14,225,156,175,235,8,0,231,142,231,250,246,205,8,0,231,142,231,250,155,206,8,0,232,14,187,220,199,145,7,0,233,14,232,17,121,217,6,0,233,142,98,121,70,107,8,0,234,14,185,71,98,164,9,0,234,14,185,71,132,164,9,0,235,14,205,33,182,234,6,0,235,14,155,128,203,75,8,0,235,14,155,128,80,76,8,0,236,142,93,107,198,24,6,0,236,14,89,171,136,58,7,0,238,142,42,250,80,32,7,0,240,142,162,179,159,92,9,0,240,142,162,179,5,93,9,0,241,14,33,247,2,199,9,0,243,142,184,244,12,234,6,0,243,14,219,86,212,243,6,0,245,14,60,81,132,37,6,0,247,14,234,26,6,51,8,0,247,14,234,26,68,51,8,0,247,14,234,26,129,51,8,0,247,14,234,26,189,51,8,0,249,142,172,193,146,226,9,0,249,142,172,193,168,226,9,0,249,142,172,193,182,226,9,0,250,14,14,0,166,73,10,0,251,142,86,122,123,236,9,0,252,142,32,249,50,226,9,0,252,142,32,249,71,226,9,0,254,142,67,153,134,120,6,0,0,15,50,127,239,75,6,0,0,15,50,127,200,179,6,0,2,15,76,188,138,115,8,0,2,15,76,188,117,124,8,0,2,15,76,188,105,133,8,0,7,143,97,66,152,111,7,0,8,15,250,194,224,96,11,0,9,15,15,3,117,79,7,0,9,143,132,73,153,207,8,0,9,143,132,73,44,208,8,0,12,15,226,137,138,115,8,0,12,15,226,137,117,124,8,0,12,15,226,137,105,133,8,0,14,143,65,221,152,111,7,0,14,143,65,221,173,169,8,0,16,143,0,150,123,236,9,0,21,15,104,147,104,15,10,0,21,15,104,147,169,15,10,0,26,15,96,26,117,79,7,0,27,143,55,106,124,222,6,0,28,15,210,208,153,11,7,0,28,15,210,208,135,13,7,0,28,15,210,208,78,123,7,0,30,15,254,151,104,32,11,0,31,143,119,30,31,6,6,0,31,143,58,65,76,252,6,0,38,15,33,243,2,199,9,0,38,15,33,243,169,199,9,0,41,143,50,170,159,43,6,0,42,15,58,192,177,209,10,0,45,15,1,128,136,58,7,0,46,143,109,98,215,255,6,0,47,143,130,243,136,58,7,0,47,143,241,3,33,65,7,0,49,143,29,26,158,69,7,0,49,143,29,26,202,69,7,0,51,143,79,157,204,163,10,0,53,143,59,172,138,115,8,0,53,143,59,172,117,124,8,0,53,143,59,172,105,133,8,0,53,143,145,205,104,244,9,0,53,143,145,205,251,244,9,0,53,143,145,205,146,245,9,0,56,15,2,231,140,197,10,0,58,143,79,66,107,23,10,0,58,143,79,66,195,23,10,0,58,15,121,188,68,78,11,0,59,15,18,197,123,14,6,0,59,143,207,121,224,146,8,0,59,143,207,121,132,150,8,0,62,15,164,160,29,5,7,0,62,15,60,246,46,16,10,0,64,15,100,46,61,66,6,0,66,143,180,243,40,22,6,0,66,143,9,164,224,96,11,0,71,143,195,85,38,98,7,0,72,15,55,127,153,251,5,0,72,15,55,127,106,3,6,0,72,15,55,127,131,89,6,0,73,143,217,203,117,79,7,0,74,143,27,197,232,191,8,0,74,143,27,197,162,193,8,0,75,143,118,68,212,243,6,0,75,15,69,182,159,45,7,0,77,15,233,205,126,198,5,0,77,15,39,82,218,232,5,0,78,143,118,22,69,18,6,0,78,15,227,173,81,111,8,0,78,15,36,44,141,195,8,0,78,15,36,44,112,196,8,0,78,15,36,44,75,197,8,0,79,15,28,61,224,146,8,0,79,15,28,61,132,150,8,0,84,143,212,253,171,49,7,0,84,143,212,253,134,85,10,0,84,15,184,77,232,124,10,0,87,143,26,144,200,93,10,0,90,15,104,9,20,15,7,0,90,15,104,9,179,17,7,0,90,15,104,9,62,124,7,0,91,143,71,199,212,243,6,0,91,15,210,219,232,191,8,0,91,15,210,219,162,193,8,0,93,143,71,90,207,229,5,0,94,143,236,106,90,53,7,0,95,143,124,159,144,230,5,0,95,143,114,192,227,108,7,0,95,143,114,192,161,110,7,0,96,15,84,34,208,224,10,0,99,15,160,120,87,125,6,0,100,15,63,207,201,230,6,0,100,143,254,175,204,206,10,0,102,15,38,77,117,37,7,0,102,143,10,201,117,79,7,0,102,143,139,30,224,146,8,0,102,143,139,30,132,150,8,0,104,143,50,44,214,74,11,0,105,15,253,103,85,31,7,0,105,15,62,165,237,73,7,0,106,15,6,59,152,111,7,0,106,15,6,59,110,38,10,0,106,15,6,59,172,38,10,0,108,15,215,149,214,7,7,0,111,143,237,232,167,107,7,0,111,143,237,232,25,127,7,0,111,143,28,229,114,187,7,0,111,143,237,232,65,216,7,0,111,143,237,232,109,216,7,0,111,143,237,232,153,216,7,0,117,15,253,190,52,62,6,0,117,15,121,254,196,81,10,0,118,15,200,202,236,213,6,0,118,15,120,87,146,235,6,0,118,143,74,175,245,41,7,0,118,143,74,175,167,107,7,0,118,143,74,175,62,124,7,0,118,143,148,203,232,191,8,0,118,143,148,203,162,193,8,0,119,143,132,219,197,43,7,0,119,143,132,219,30,44,7,0,120,143,105,61,247,55,7,0,121,15,174,241,137,131,9,0,121,15,174,241,177,131,9,0,124,15,47,115,139,158,8,0,124,15,47,115,224,163,8,0,124,15,228,190,15,233,8,0,124,15,228,190,139,233,8,0,125,143,240,89,38,98,7,0,130,143,233,233,152,111,7,0,131,15,5,137,29,5,7,0,134,15,221,55,129,40,7,0,134,143,227,150,124,65,8,0,134,143,227,150,168,65,8,0,134,143,227,150,225,65,8,0,134,143,227,150,13,66,8,0,135,143,57,173,237,73,7,0,137,15,130,87,81,239,8,0,137,15,130,87,40,240,8,0,137,143,104,48,44,73,10,0,140,143,30,54,94,245,5,0,140,15,216,223,206,219,6,0,140,143,196,179,167,8,7,0,140,15,160,238,80,32,7,0,141,143,25,224,38,98,7,0,141,143,25,224,112,117,7,0,141,15,73,248,139,158,8,0,141,15,73,248,224,163,8,0,142,15,225,86,140,154,6,0,143,15,85,198,51,214,8,0,143,15,85,198,241,214,8,0,143,15,85,198,169,215,8,0,151,143,42,120,216,73,11,0,153,143,203,140,212,243,6,0,154,143,11,241,133,220,6,0,157,143,153,198,111,228,10,0,158,143,168,233,38,98,7,0,158,15,242,255,97,33,8,0,159,143,54,212,232,191,8,0,159,143,54,212,162,193,8,0,160,143,51,22,93,111,10,0,161,15,6,103,167,55,8,0,162,15,44,47,230,215,6,0,162,143,4,55,22,35,7,0,163,15,144,138,103,46,7,0,164,15,49,235,179,17,7,0,164,15,49,235,75,1,9,0,164,15,49,235,154,2,9,0,164,15,49,235,235,3,9,0,164,15,49,235,65,5,9,0,166,143,230,146,69,253,5,0,166,15,213,7,84,21,8,0,167,15,160,212,71,236,6,0,170,143,84,116,240,226,6,0,171,15,117,24,228,109,9,0,171,15,117,24,248,110,9,0,172,143,68,82,50,211,6,0,173,143,127,127,103,46,7,0,175,143,21,219,78,113,6,0,178,15,180,123,213,41,10,0,178,15,180,123,87,42,10,0,179,143,64,5,178,174,10,0,179,15,244,122,65,57,11,0,180,143,21,165,38,98,7,0,181,15,6,126,196,216,7,0,182,15,223,193,136,58,7,0,186,143,172,105,126,226,7,0,190,15,64,114,224,146,8,0,190,15,64,114,132,150,8,0,197,143,30,96,123,236,9,0,199,15,118,50,22,208,5,0,202,15,210,63,33,65,7,0,202,15,118,157,81,239,8,0,202,15,118,157,40,240,8,0,203,143,131,202,161,24,10,0,203,143,131,202,219,24,10,0,203,143,131,202,15,25,10,0,205,143,118,145,35,28,7,0,205,15,59,163,13,32,9,0,205,15,59,163,195,32,9,0,207,15,252,64,80,32,7,0,207,143,183,97,138,115,8,0,207,143,183,97,117,124,8,0,207,143,183,97,105,133,8,0,207,143,190,10,95,66,10,0,207,143,178,63,255,225,10,0,209,15,83,163,136,58,7,0,210,143,36,72,71,236,6,0,210,15,225,48,219,210,7,0,214,143,51,239,219,34,7,0,216,15,153,0,237,73,7,0,217,15,164,177,162,28,9,0,217,15,164,177,244,28,9,0,221,15,6,216,54,239,10,0,222,15,76,219,20,15,7,0,222,15,76,219,179,17,7,0,222,143,24,39,90,175,8,0,222,143,24,39,74,176,8,0,224,15,192,134,237,73,7,0,228,15,8,7,124,10,9,0,232,143,52,241,225,11,6,0,234,15,49,4,117,79,7,0,235,15,68,70,117,79,7,0,235,15,159,123,225,119,9,0,235,15,159,123,254,119,9,0,237,143,108,248,212,243,6,0,240,143,133,246,219,1,7,0,242,143,214,31,237,73,7,0,244,15,202,6,148,186,8,0,244,15,202,6,221,186,8,0,246,15,25,63,227,108,7,0,247,15,24,131,236,51,7,0,247,143,109,99,237,73,7,0,247,143,118,50,123,236,9,0,248,143,65,40,81,63,7,0,249,15,220,22,21,36,7,0,251,15,46,172,117,37,7,0,251,15,132,97,125,44,7,0,252,15,197,172,237,73,7,0,254,15,99,78,117,79,7,0,254,15,70,244,232,251,9,0,254,15,70,244,176,252,9,0,2,144,56,251,5,77,10,0,6,144,171,135,49,151,6,0,6,144,171,135,138,115,8,0,6,144,171,135,117,124,8,0,6,144,171,135,105,133,8,0,6,16,185,21,206,87,9,0,6,16,185,21,25,88,9,0,6,144,44,105,75,142,9,0,6,144,44,105,201,142,9,0,6,144,44,105,84,143,9,0,7,144,16,187,93,222,10,0,9,16,178,67,74,202,5,0,12,16,168,131,139,158,8,0,12,16,168,131,224,163,8,0,15,144,252,170,79,170,10,0,16,144,15,9,82,46,7,0,18,144,88,85,2,77,6,0,19,16,16,174,117,79,7,0,23,16,226,126,51,214,8,0,23,16,226,126,241,214,8,0,23,16,226,126,169,215,8,0,24,16,7,98,24,139,7,0,29,16,143,233,219,210,7,0,34,16,134,29,242,22,11,0,35,16,232,109,221,251,5,0,35,144,88,255,134,169,7,0,36,144,55,51,73,169,7,0,42,16,244,187,71,236,6,0,46,16,61,35,63,236,7,0,49,16,145,33,33,65,7,0,53,144,158,16,237,73,7,0,54,16,170,239,230,215,6,0,54,16,118,37,212,243,6,0,57,144,14,44,146,235,6,0,57,144,131,48,109,172,9,0,57,144,131,48,178,173,9,0,57,144,131,48,250,174,9,0,58,16,212,160,254,243,5,0,58,144,20,52,243,6,7,0,58,144,62,237,117,37,7,0,58,16,212,160,153,89,7,0,60,144,147,221,106,120,6,0,61,16,136,251,139,158,8,0,61,16,136,251,224,163,8,0,62,16,174,45,247,55,7,0,62,144,148,159,138,115,8,0,62,144,148,159,117,124,8,0,62,144,148,159,105,133,8,0,63,16,51,64,50,211,6,0,63,16,10,53,101,226,6,0,63,144,227,101,38,98,7,0,63,144,14,163,21,81,10,0,63,16,10,53,5,20,11,0,64,16,214,249,237,73,7,0,68,144,253,117,216,98,10,0,74,16,60,204,80,11,7,0,78,16,226,141,109,172,9,0,78,16,226,141,178,173,9,0,78,16,226,141,250,174,9,0,84,144,104,211,117,79,7,0,85,16,48,238,28,185,6,0,89,16,237,97,225,129,9,0,89,16,237,97,251,129,9,0,91,144,236,96,98,115,10,0,91,144,236,96,138,115,10,0,92,144,0,35,80,49,7,0,93,16,205,63,80,45,11,0,95,144,47,126,236,51,7,0,97,16,146,200,80,32,7,0,97,16,150,99,90,175,8,0,97,16,150,99,74,176,8,0,97,16,72,201,226,154,9,0,97,16,72,201,114,155,9,0,97,16,174,45,55,59,11,0,98,144,148,227,119,225,6,0,101,144,143,68,114,243,8,0,101,144,143,68,37,244,8,0,106,144,33,170,212,243,6,0,107,16,12,251,36,94,10,0,108,16,155,255,212,243,6,0,108,16,35,185,224,146,8,0,108,16,35,185,132,150,8,0,110,16,238,42,68,202,6,0,112,16,52,129,147,77,10,0,114,16,46,169,198,249,7,0,114,144,6,241,180,141,10,0,116,144,231,242,224,146,8,0,116,144,231,242,132,150,8,0,119,144,39,115,183,209,6,0,119,16,81,95,101,105,10,0,120,144,118,237,139,158,8,0,120,144,118,237,224,163,8,0,121,16,244,183,139,158,8,0,121,16,244,183,224,163,8,0,126,144,171,108,207,188,5,0,126,16,139,16,179,222,8,0,126,16,139,16,152,223,8,0,129,144,241,96,212,243,6,0,130,16,74,75,160,234,8,0,130,16,74,75,175,235,8,0,134,144,130,243,38,98,7,0,137,16,247,4,178,50,11,0,139,16,4,214,13,32,9,0,139,16,4,214,195,32,9,0,141,16,33,25,212,243,6,0,142,16,25,177,71,236,6,0,142,16,144,221,230,71,9,0,142,16,144,221,83,72,9,0,151,144,240,187,94,44,6,0,153,144,227,118,38,98,7,0,156,16,98,4,247,55,7,0,157,16,191,226,75,223,5,0,158,16,93,34,237,73,7,0,158,144,150,101,15,8,8,0,158,144,150,101,226,38,11,0,158,144,150,101,212,41,11,0,158,144,150,101,254,46,11,0,159,144,29,142,33,65,7,0,161,16,228,125,138,115,8,0,161,16,228,125,117,124,8,0,161,16,228,125,105,133,8,0,162,144,245,7,232,191,8,0,162,144,245,7,162,193,8,0,163,144,99,94,103,218,5,0,163,16,158,162,80,32,7,0,164,144,162,68,243,6,7,0,164,16,167,50,65,144,7,0,164,16,167,50,102,144,7,0,164,16,154,177,245,28,10,0,164,16,154,177,145,31,10,0,165,144,166,170,118,226,8,0,165,144,166,170,72,228,8,0,166,16,105,31,245,228,6,0,166,144,85,40,248,245,7,0,169,144,79,149,64,119,6,0,169,144,79,149,188,73,7,0,172,144,135,227,237,73,7,0,172,16,227,173,65,132,10,0,174,144,51,142,30,123,7,0,174,144,51,142,208,43,10,0,174,144,51,142,255,43,10,0,174,144,51,142,45,44,10,0,174,144,51,142,104,44,10,0,181,144,205,229,133,220,6,0,181,144,120,112,152,111,7,0,181,144,120,112,51,119,7,0,182,16,233,57,100,228,6,0,186,144,83,114,139,158,8,0,186,144,83,114,224,163,8,0,186,16,190,232,17,184,8,0,187,144,250,90,129,2,8,0,189,16,186,3,212,217,5,0,189,16,186,3,227,32,6,0,189,16,186,3,251,32,6,0,190,144,196,127,110,83,6,0,194,144,188,105,51,255,9,0,194,144,188,105,139,255,9,0,194,144,188,105,226,255,9,0,196,144,247,81,139,158,8,0,196,144,247,81,224,163,8,0,200,16,167,0,126,202,10,0,202,16,235,93,54,198,5,0,203,144,102,228,175,80,6,0,203,144,80,89,91,110,6,0,204,144,221,3,38,98,7,0,204,144,221,3,177,133,7,0,204,144,221,3,38,134,7,0,205,144,51,181,57,171,8,0,205,144,51,181,133,172,8,0,205,144,51,181,211,173,8,0,207,16,170,149,57,171,8,0,207,16,170,149,133,172,8,0,207,16,170,149,211,173,8,0,208,16,27,250,210,225,6,0,210,144,192,148,79,253,6,0,211,144,94,78,57,10,7,0,212,16,207,123,80,32,7,0,212,16,222,28,117,37,7,0,214,16,198,161,105,49,6,0,214,144,227,150,179,17,7,0,214,144,227,150,131,237,10,0,216,16,156,190,26,77,6,0,220,144,89,70,0,223,6,0,220,144,162,119,71,236,6,0,221,16,64,112,247,55,7,0,224,144,60,166,206,76,10,0,226,16,221,57,200,207,6,0,227,144,214,23,38,98,7,0,228,16,52,129,117,79,7,0,229,16,168,176,38,98,7,0,230,144,198,160,13,254,7,0,230,144,198,160,54,254,7,0,231,144,149,50,123,236,9,0,235,16,12,202,153,228,9,0,237,144,18,142,198,53,6,0,238,144,4,219,123,236,9,0,239,144,101,11,71,236,6,0,240,16,248,245,11,9,7,0,240,16,248,245,75,1,9,0,240,16,248,245,154,2,9,0,240,16,248,245,235,3,9,0,240,16,248,245,65,5,9,0,240,144,8,227,159,92,9,0,240,144,8,227,5,93,9,0,244,16,190,201,75,1,9,0,244,16,190,201,154,2,9,0,244,16,190,201,235,3,9,0,244,16,190,201,65,5,9,0,245,144,190,243,227,161,9,0,245,144,190,243,18,162,9,0,250,144,159,145,121,219,5,0,250,144,138,220,123,236,9,0,253,16,133,163,224,96,11,0,255,144,154,171,33,194,5,0,255,16,226,205,29,5,7,0,255,144,96,245,200,6,9,0,255,144,96,245,117,7,9,0,1,145,132,181,95,128,10,0,3,17,67,68,116,122,6,0,3,17,56,0,132,18,9,0,3,17,56,0,211,18,9,0,3,17,56,0,49,19,9,0,3,17,56,0,130,19,9,0,4,17,58,234,141,198,6,0,6,17,213,121,152,111,7,0,6,145,63,194,22,62,10,0,8,145,203,105,212,243,6,0,15,145,207,126,80,207,5,0,15,17,19,202,0,190,8,0,15,17,19,202,168,190,8,0,16,17,3,88,228,202,7,0,17,145,62,192,240,226,6,0,23,17,124,10,99,42,7,0,25,17,147,242,123,236,9,0,27,145,171,15,254,243,5,0,27,145,171,15,153,89,7,0,27,17,11,100,110,242,7,0,28,17,100,117,220,9,7,0,30,145,179,125,113,237,8,0,30,145,179,125,144,237,8,0,36,17,152,33,43,198,6,0,36,17,241,192,187,218,6,0,37,145,220,55,38,98,7,0,40,17,6,170,179,17,7,0,41,17,134,122,213,204,6,0,42,145,16,7,212,243,6,0,42,17,209,77,148,1,8,0,42,17,209,77,214,208,10,0,42,17,209,77,230,208,10,0,44,145,67,188,81,239,8,0,44,145,67,188,40,240,8,0,45,145,66,125,88,24,6,0,47,17,156,240,51,255,9,0,47,17,156,240,139,255,9,0,47,17,156,240,226,255,9,0,48,145,15,244,212,243,6,0,48,145,66,59,124,45,8,0,48,145,66,59,1,46,8,0,48,145,66,59,123,46,8,0,48,17,200,22,123,236,9,0,53,145,166,222,132,18,9,0,53,145,166,222,211,18,9,0,53,145,166,222,49,19,9,0,53,145,166,222,130,19,9,0,53,145,203,253,123,236,9,0,54,17,67,36,212,243,6,0,55,145,224,251,38,98,7,0,58,145,107,135,40,213,6,0,58,145,90,118,51,241,8,0,58,145,90,118,198,241,8,0,59,145,103,98,29,5,7,0,59,145,46,197,139,158,8,0,59,145,46,197,224,163,8,0,61,145,47,184,46,238,5,0,66,145,20,251,140,66,7,0,66,145,20,251,234,66,7,0,66,17,184,11,30,230,10,0,67,17,20,7,236,213,6,0,69,145,30,111,228,52,8,0,71,17,62,172,130,227,6,0,76,17,233,127,26,16,10,0,76,17,233,127,46,16,10,0,77,145,135,139,122,31,6,0,81,145,51,91,236,51,7,0,83,17,107,5,117,79,7,0,84,17,87,206,112,5,10,0,84,17,87,206,28,6,10,0,86,145,78,10,152,111,7,0,86,145,78,10,60,44,8,0,86,145,78,10,175,44,8,0,86,145,78,10,24,45,8,0,86,145,165,67,117,97,8,0,86,145,78,10,178,229,9,0,87,145,207,100,197,253,6,0,88,17,100,74,207,88,6,0,88,17,232,253,71,236,6,0,88,145,218,52,112,5,10,0,88,145,218,52,28,6,10,0,90,17,214,175,212,243,6,0,90,17,148,118,192,219,7,0,90,145,88,14,30,147,10,0,91,145,58,46,138,115,8,0,91,145,58,46,117,124,8,0,91,145,58,46,105,133,8,0,93,145,186,55,188,73,7,0,94,17,203,13,57,10,7,0,94,17,123,72,148,25,11,0,97,145,162,198,36,56,10,0,98,17,236,114,98,197,9,0,98,17,236,114,126,197,9,0,99,145,133,104,103,170,8,0,99,145,133,104,188,170,8,0,102,145,178,55,219,210,7,0,102,17,138,147,213,41,10,0,102,17,138,147,87,42,10,0,105,145,63,95,249,154,8,0,105,145,63,95,148,155,8,0,105,145,63,95,52,156,8,0,105,145,151,254,212,21,9,0,105,145,151,254,31,22,9,0,105,145,151,254,103,22,9,0,106,145,57,180,121,97,7,0,107,17,46,220,44,90,10,0,108,145,219,91,2,199,9,0,108,145,219,91,169,199,9,0,112,17,210,160,237,73,7,0,112,17,49,77,99,84,9,0,112,17,49,77,119,84,9,0,112,17,49,77,148,84,9,0,117,17,166,148,181,19,6,0,117,17,116,247,217,62,7,0,117,145,46,150,139,158,8,0,117,145,46,150,224,163,8,0,117,17,166,148,122,207,8,0,118,145,67,182,219,1,7,0,118,145,86,232,17,184,8,0,120,145,223,66,227,108,7,0,120,145,223,66,152,111,7,0,121,17,37,77,164,155,6,0,123,145,223,40,126,96,11,0,127,145,166,154,227,108,7,0,127,145,166,154,55,9,9,0,127,145,166,154,86,9,9,0,128,145,237,193,138,115,8,0,128,145,237,193,117,124,8,0,128,145,237,193,105,133,8,0,130,145,140,13,250,57,8,0,132,145,248,226,253,208,8,0,132,145,248,226,22,211,8,0,133,17,197,54,237,73,7,0,133,17,225,194,245,28,10,0,133,17,225,194,145,31,10,0,133,145,68,70,209,86,11,0,134,145,0,101,219,210,7,0,137,145,3,142,139,158,8,0,137,145,3,142,224,163,8,0,138,145,118,166,139,158,8,0,138,145,118,166,224,163,8,0,140,17,183,223,71,236,6,0,140,17,77,175,211,184,8,0,140,17,77,175,247,184,8,0,140,17,77,175,22,185,8,0,141,145,251,219,130,227,6,0,144,145,102,149,102,18,10,0,144,145,102,149,133,18,10,0,147,17,180,148,194,211,6,0,147,145,206,98,153,11,7,0,147,145,206,98,135,13,7,0,149,17,116,103,246,216,10,0,150,17,231,242,217,62,7,0,151,17,36,18,236,51,7,0,151,145,125,16,92,64,11,0,155,145,204,106,38,98,7,0,156,145,153,57,123,236,9,0,157,145,209,12,194,211,6,0,157,17,132,115,103,46,7,0,160,145,37,252,93,119,10,0,161,145,142,119,132,24,6,0,161,17,157,40,138,70,7,0,161,145,177,172,118,226,8,0,161,145,177,172,72,228,8,0,161,17,83,126,216,125,9,0,161,17,83,126,243,125,9,0,163,145,234,115,125,158,7,0,163,17,148,7,139,158,8,0,163,17,148,7,224,163,8,0,165,145,106,5,187,70,7,0,166,17,216,156,57,10,7,0,168,17,167,18,89,132,9,0,168,17,167,18,124,132,9,0,168,17,167,18,171,132,9,0,170,145,132,201,38,98,7,0,170,17,114,174,138,115,8,0,170,17,114,174,117,124,8,0,170,17,114,174,105,133,8,0,171,17,19,243,227,229,6,0,174,17,180,128,247,214,6,0,177,17,200,166,22,247,8,0,177,17,200,166,60,247,8,0,179,17,111,86,211,184,8,0,179,17,111,86,247,184,8,0,179,17,111,86,22,185,8,0,179,145,152,143,33,177,10,0,184,145,194,208,251,32,11,0,185,145,115,82,30,150,6,0,186,17,124,138,7,220,6,0,188,17,58,59,57,46,10,0,188,17,58,59,113,46,10,0,189,145,231,242,253,208,8,0,189,145,231,242,22,211,8,0,190,17,126,5,155,67,7,0,192,145,37,112,117,79,7,0,193,145,78,176,138,115,8,0,193,145,78,176,117,124,8,0,193,145,78,176,105,133,8,0,195,145,196,57,82,33,11,0,196,17,23,53,193,167,9,0,196,17,23,53,37,168,9,0,198,17,179,196,117,79,7,0,199,145,107,73,155,67,7,0,199,145,210,226,39,65,9,0,199,145,210,226,161,65,9,0,199,145,210,226,21,66,9,0,199,145,210,226,188,66,9,0,199,145,210,226,85,67,9,0,199,145,20,193,89,237,10,0,200,145,62,109,71,236,6,0,201,145,40,15,239,248,10,0,202,17,138,37,123,236,9,0,204,145,86,136,186,198,8,0,204,145,86,136,213,198,8,0,204,145,86,136,248,198,8,0,208,145,10,175,29,5,7,0,209,145,185,16,133,162,10,0,210,17,24,93,197,253,6,0,210,17,24,93,124,45,8,0,210,17,24,93,1,46,8,0,210,17,24,93,123,46,8,0,211,17,173,150,141,195,8,0,211,17,173,150,112,196,8,0,211,17,173,150,75,197,8,0,212,17,118,240,206,219,6,0,212,17,185,210,71,236,6,0,213,145,249,198,249,154,8,0,213,145,249,198,148,155,8,0,213,145,249,198,52,156,8,0,214,17,237,65,193,231,5,0,214,17,240,74,138,115,8,0,214,17,240,74,117,124,8,0,214,17,240,74,105,133,8,0,215,145,7,57,99,66,8,0,217,145,61,171,38,98,7,0,217,145,61,171,62,124,7,0,217,145,61,171,129,125,7,0,219,145,55,62,212,243,6,0,219,145,55,62,113,22,11,0,222,145,45,115,28,68,9,0,222,145,45,115,215,68,9,0,223,17,182,211,237,73,7,0,223,17,175,128,38,98,7,0,223,145,197,18,131,17,8,0,223,145,94,171,72,202,8,0,223,145,94,171,175,202,8,0,225,17,76,241,179,181,7,0,226,145,21,21,136,58,7,0,227,17,14,243,80,32,7,0,229,145,6,248,254,102,6,0,229,17,49,197,101,220,9,0,229,17,49,197,154,220,9,0,229,17,220,160,235,47,11,0,230,145,155,31,78,166,6,0,230,145,155,31,213,40,8,0,230,17,41,118,64,223,9,0,230,17,41,118,100,223,9,0,239,17,99,107,138,115,8,0,239,17,99,107,117,124,8,0,239,17,99,107,105,133,8,0,241,145,197,227,171,63,7,0,241,145,252,133,249,154,8,0,241,145,252,133,148,155,8,0,241,145,252,133,52,156,8,0,241,17,70,215,44,164,10,0,246,17,191,150,152,111,7,0,246,145,245,88,179,168,7,0,246,145,175,244,120,12,8,0,246,17,191,150,110,38,10,0,246,17,191,150,172,38,10,0,247,145,130,97,80,32,7,0,247,17,240,96,118,82,8,0,252,17,59,246,212,243,6,0,252,145,210,230,154,4,7,0,254,17,107,186,20,15,7,0,5,146,133,53,36,158,10,0,5,18,92,85,61,15,11,0,7,18,122,156,80,32,7,0,10,18,125,34,152,111,7,0,10,18,125,34,126,191,8,0,10,18,125,34,175,191,8,0,11,18,81,92,180,28,7,0,11,18,81,92,245,46,8,0,13,146,109,243,129,40,7,0,15,146,196,93,7,226,6,0,16,146,35,89,135,90,9,0,16,146,35,89,124,91,9,0,20,146,54,73,155,67,7,0,25,18,49,167,232,25,7,0,25,18,139,253,139,158,8,0,25,18,139,253,224,163,8,0,29,146,103,173,165,91,7,0,29,146,103,173,194,91,7,0,29,18,86,159,252,156,9,0,29,18,86,159,38,157,9,0,30,18,227,20,173,133,6,0,30,18,83,253,123,236,9,0,31,18,114,21,90,53,7,0,34,146,252,245,48,141,7,0,34,146,252,245,106,141,7,0,34,18,227,27,215,16,10,0,34,18,227,27,135,17,10,0,34,146,85,170,1,189,10,0,37,18,79,27,228,146,7,0,40,18,112,178,20,15,7,0,40,18,112,178,179,17,7,0,42,146,197,220,0,190,8,0,42,146,197,220,168,190,8,0,53,146,60,188,158,103,11,0,54,146,160,30,22,62,10,0,55,18,218,173,100,228,6,0,55,146,59,9,151,21,7,0,56,18,216,34,204,36,6,0,56,18,55,159,162,50,7,0,58,146,116,207,93,109,10,0,68,18,43,1,230,130,7,0,68,18,34,228,235,189,7,0,70,18,115,40,138,115,8,0,70,18,115,40,117,124,8,0,70,18,115,40,105,133,8,0,70,146,109,21,215,156,10,0,71,18,67,74,212,243,6,0,74,18,163,157,162,28,9,0,74,18,163,157,244,28,9,0,75,146,240,244,235,84,6,0,75,18,193,197,133,200,6,0,76,146,78,96,171,63,7,0,76,146,77,0,97,63,10,0,77,146,178,169,123,236,9,0,77,18,29,104,199,44,11,0,78,146,181,33,117,79,7,0,79,146,113,52,139,158,8,0,79,146,113,52,224,163,8,0,81,18,213,78,139,158,8,0,81,18,213,78,224,163,8,0,82,146,187,63,57,126,9,0,82,146,187,63,94,126,9,0,85,18,40,146,84,21,8,0,94,18,74,113,50,211,6,0,94,18,74,113,254,254,6,0,96,18,60,99,193,167,9,0,96,18,60,99,37,168,9,0,96,146,113,154,123,236,9,0,97,146,105,68,247,55,7,0,99,146,249,107,117,37,7,0,99,146,194,233,237,73,7,0,102,146,5,229,72,151,6,0,103,18,117,182,20,15,7,0,103,18,117,182,179,17,7,0,103,18,156,148,205,151,9,0,103,18,156,148,199,152,9,0,103,18,156,148,220,153,9,0,104,146,7,79,212,243,6,0,105,146,18,167,151,85,6,0,105,146,177,91,179,17,7,0,106,18,55,29,179,235,9,0,106,18,55,29,240,235,9,0,108,146,50,95,219,210,7,0,108,18,42,188,138,115,8,0,108,18,42,188,117,124,8,0,108,18,42,188,105,133,8,0,112,18,171,145,204,192,6,0,112,18,175,7,22,218,6,0,113,146,159,161,158,128,10,0,114,18,223,117,93,32,6,0,115,146,192,85,152,111,7,0,115,146,192,85,240,119,7,0,115,146,254,7,213,41,10,0,115,146,254,7,87,42,10,0,119,18,16,3,217,62,7,0,122,18,32,249,254,59,10,0,123,18,154,250,219,210,7,0,124,146,5,228,23,179,8,0,124,146,5,228,119,179,8,0,125,146,172,228,123,236,9,0,126,146,29,150,238,26,6,0,127,18,17,122,114,243,8,0,127,18,17,122,37,244,8,0,130,146,196,148,230,32,11,0,131,18,59,185,229,27,8,0,131,18,59,185,126,28,8,0,132,18,164,135,160,234,8,0,132,18,164,135,175,235,8,0,136,18,91,14,239,27,11,0,137,18,21,177,175,43,11,0,137,18,60,1,227,100,11,0,140,146,178,6,175,217,6,0,143,18,24,25,38,98,7,0,145,146,80,33,20,15,7,0,145,146,80,33,179,17,7,0,145,146,80,33,138,115,8,0,145,146,80,33,117,124,8,0,145,146,80,33,105,133,8,0,146,18,25,35,117,227,5,0,147,18,122,224,224,251,6,0,147,146,201,212,205,151,9,0,147,146,201,212,199,152,9,0,147,146,201,212,220,153,9,0,148,18,231,129,189,45,6,0,148,18,195,170,247,55,7,0,149,18,99,139,138,115,8,0,149,18,99,139,117,124,8,0,149,18,99,139,105,133,8,0,149,146,63,6,139,158,8,0,149,146,63,6,224,163,8,0,152,18,78,198,139,158,8,0,152,18,78,198,224,163,8,0,153,146,244,19,51,214,8,0,153,146,244,19,241,214,8,0,153,146,244,19,169,215,8,0,153,18,119,170,123,236,9,0,154,18,247,40,139,38,6,0,154,18,247,40,189,64,6,0,157,146,43,14,143,155,6,0,158,18,39,87,165,151,10,0,159,18,22,168,152,8,11,0,161,146,227,234,36,250,10,0,162,18,7,31,118,58,8,0,164,146,252,165,146,187,10,0,167,146,240,89,152,111,7,0,168,18,96,216,117,37,7,0,172,18,84,56,99,66,8,0,173,18,185,148,117,79,7,0,175,146,255,86,245,28,10,0,175,146,255,86,145,31,10,0,177,146,196,170,136,58,7,0,180,146,139,5,139,158,8,0,180,146,254,39,139,158,8,0,180,146,139,5,224,163,8,0,180,146,254,39,224,163,8,0,180,146,219,104,112,5,10,0,180,146,219,104,28,6,10,0,184,146,64,223,245,28,10,0,184,146,64,223,145,31,10,0,184,146,151,90,159,161,10,0,184,146,151,90,174,161,10,0,189,18,170,156,247,55,7,0,191,18,34,228,37,0,8,0,191,18,237,52,57,211,10,0,192,146,63,240,140,112,6,0,199,146,101,78,235,58,10,0,201,18,72,88,138,115,8,0,201,18,72,88,117,124,8,0,201,18,72,88,105,133,8,0,204,18,219,58,139,158,8,0,204,18,219,58,224,163,8,0,206,146,192,76,167,71,7,0,206,18,42,208,223,202,10,0,207,18,189,6,138,115,8,0,207,18,189,6,117,124,8,0,207,18,189,6,105,133,8,0,210,146,246,23,11,80,6,0,211,146,201,95,29,5,7,0,215,146,123,43,47,190,6,0,216,18,236,204,237,73,7,0,217,146,103,28,237,73,7,0,219,18,38,234,20,176,6,0,220,146,188,215,100,228,6,0,221,18,109,233,71,94,6,0,223,146,120,29,117,37,7,0,223,146,120,29,243,69,7,0,224,146,207,132,223,158,6,0,227,146,45,146,127,63,9,0,227,146,45,146,181,63,9,0,227,146,45,146,65,64,9,0,229,146,172,20,72,202,8,0,229,146,172,20,175,202,8,0,229,146,84,196,232,21,11,0,230,146,54,74,58,55,11,0,231,18,132,55,247,214,6,0,232,18,185,148,247,55,7,0,232,146,224,32,228,109,9,0,232,146,224,32,248,110,9,0,233,18,231,154,100,228,6,0,233,18,231,154,109,231,6,0,233,18,232,130,253,208,8,0,233,18,232,130,22,211,8,0,235,18,74,67,119,203,6,0,235,146,183,236,183,213,8,0,235,146,183,236,237,213,8,0,238,146,151,157,1,62,9,0,238,146,151,157,42,62,9,0,238,146,151,157,88,62,9,0,238,146,151,157,149,62,9,0,238,146,151,157,194,62,9,0,238,146,151,157,237,62,9,0,238,146,151,157,32,63,9,0,240,146,111,240,210,27,6,0,240,146,239,84,117,79,7,0,240,18,23,210,224,146,8,0,240,18,23,210,132,150,8,0,241,18,63,71,200,183,6,0,241,18,60,31,118,214,6,0,243,146,230,6,213,204,6,0,245,146,14,7,155,67,7,0,245,18,249,8,38,98,7,0,246,146,184,177,236,17,6,0,247,146,110,66,138,98,10,0,251,18,180,17,139,158,8,0,251,18,180,17,224,163,8,0,252,18,21,233,141,195,8,0,252,18,21,233,112,196,8,0,252,18,21,233,75,197,8,0,253,18,97,60,124,36,6,0,254,146,241,64,152,111,7,0,254,146,241,64,224,205,7,0,4,147,195,38,81,63,7,0,4,147,63,127,177,74,10,0,6,19,185,139,64,193,9,0,12,19,193,87,246,213,5,0,12,147,94,136,71,5,6,0,12,19,193,87,229,86,6,0,12,19,193,87,147,102,6,0,14,147,16,133,139,158,8,0,14,147,16,133,224,163,8,0,16,19,157,5,29,5,7,0,20,147,68,7,117,79,7,0,20,19,142,95,248,233,10,0,21,19,110,3,224,9,6,0,21,147,124,123,99,155,6,0,21,19,28,171,110,178,7,0,22,19,74,46,71,133,10,0,24,19,221,78,22,217,9,0,24,19,221,78,103,217,9,0,25,19,56,185,152,111,7,0,26,147,205,32,71,236,6,0,28,147,181,44,212,243,6,0,28,147,205,150,38,103,9,0,28,147,205,150,89,103,9,0,30,147,230,138,129,41,7,0,32,147,164,55,137,200,5,0,34,147,83,83,3,157,8,0,34,147,83,83,180,157,8,0,36,19,22,239,72,204,9,0,39,19,94,7,224,251,6,0,40,19,2,233,80,32,7,0,42,19,201,78,188,226,7,0,42,19,201,78,228,226,7,0,47,147,71,219,75,153,6,0,49,19,30,36,217,62,7,0,52,19,182,148,205,41,6,0,53,19,19,28,254,243,5,0,53,19,19,28,153,89,7,0,54,19,220,202,247,55,7,0,54,147,4,220,40,217,8,0,54,147,4,220,209,217,8,0,58,147,224,57,245,28,10,0,58,147,224,57,145,31,10,0,59,147,124,231,139,158,8,0,59,147,124,231,224,163,8,0,59,147,39,132,0,190,8,0,59,147,39,132,168,190,8,0,60,19,100,154,148,230,10,0,62,147,231,31,221,38,10,0,62,147,231,31,62,40,10,0,62,19,128,109,39,29,11,0,65,147,224,133,254,243,5,0,65,147,224,133,153,89,7,0,69,147,165,96,121,182,8,0,69,147,165,96,153,182,8,0,70,147,84,13,34,67,10,0,72,147,200,150,123,236,9,0,75,19,36,248,61,40,7,0,75,147,190,142,212,223,10,0,77,19,73,187,29,204,8,0,77,19,73,187,6,205,8,0,83,19,213,126,247,55,7,0,84,147,63,218,182,244,10,0,86,147,238,21,205,151,9,0,86,147,238,21,199,152,9,0,86,147,238,21,220,153,9,0,89,147,99,129,227,108,7,0,90,19,240,189,219,1,7,0,90,19,240,189,99,3,7,0,93,147,14,146,163,131,7,0,95,19,161,26,56,48,11,0,98,19,86,2,138,115,8,0,98,19,86,2,117,124,8,0,98,19,86,2,105,133,8,0,98,19,112,74,57,171,8,0,98,19,145,179,57,171,8,0,98,19,112,74,133,172,8,0,98,19,145,179,133,172,8,0,98,19,112,74,211,173,8,0,98,19,145,179,211,173,8,0,103,19,98,74,159,247,5,0,104,147,156,220,224,146,8,0,104,147,156,220,132,150,8,0,104,147,156,220,112,166,10,0,107,19,194,124,249,154,8,0,107,19,194,124,148,155,8,0,107,19,194,124,52,156,8,0,108,147,121,200,117,79,7,0,113,19,141,41,32,24,6,0,117,19,124,80,37,79,9,0,117,19,124,80,70,79,9,0,118,147,235,194,237,73,7,0,118,147,156,86,117,79,7,0,120,147,252,117,149,72,10,0,122,19,44,106,152,111,7,0,122,19,44,106,126,191,8,0,122,19,44,106,175,191,8,0,123,19,193,129,169,243,10,0,128,147,214,215,159,28,6,0,128,19,76,72,139,158,8,0,128,19,76,72,224,163,8,0,128,19,175,147,215,13,9,0,128,19,175,147,240,13,9,0,130,19,124,111,139,158,8,0,130,19,124,111,224,163,8,0,131,147,237,209,42,80,6,0,134,19,180,148,151,167,6,0,136,19,121,30,236,51,7,0,137,147,74,42,109,158,9,0,137,147,74,42,123,158,9,0,142,147,13,9,33,65,7,0,143,147,34,124,124,222,6,0,146,19,220,215,118,226,8,0,146,19,220,215,72,228,8,0,146,147,37,151,112,5,10,0,146,147,37,151,28,6,10,0,148,19,147,75,9,60,6,0,148,147,213,94,140,206,7,0,150,147,57,35,62,4,7,0,151,19,112,248,241,148,7,0,152,147,66,176,117,79,7,0,152,147,32,220,113,85,11,0,154,147,189,248,109,172,9,0,154,147,189,248,178,173,9,0,154,147,189,248,250,174,9,0,155,19,249,196,232,191,8,0,155,19,249,196,162,193,8,0,156,19,203,176,112,42,6,0,156,19,107,54,136,58,7,0,157,19,254,85,5,92,6,0,159,147,210,193,167,8,7,0,159,19,157,242,20,220,7,0,161,19,6,108,118,108,6,0,162,19,181,109,137,101,9,0,162,19,181,109,151,101,9,0,166,147,63,166,63,165,6,0,170,147,11,147,168,99,10,0,173,147,34,11,188,52,9,0,174,147,95,212,67,48,6,0,176,19,124,10,69,238,8,0,176,19,124,10,138,238,8,0,176,19,124,10,214,238,8,0,178,147,222,220,194,61,6,0,178,147,222,220,133,220,6,0,180,147,175,219,38,253,8,0,180,147,175,219,173,253,8,0,181,19,223,222,152,111,7,0,181,19,223,222,173,169,8,0,182,19,154,251,179,17,7,0,182,19,0,170,183,213,8,0,182,19,0,170,237,213,8,0,183,19,136,135,224,9,6,0,184,19,88,242,177,72,8,0,184,19,88,242,22,66,11,0,185,19,251,225,81,246,5,0,185,19,114,69,212,243,6,0,185,19,7,27,151,21,7,0,186,147,5,56,78,52,6,0,190,147,196,64,212,243,6,0,190,19,41,205,245,99,10,0,190,19,41,205,15,100,10,0,191,147,115,193,26,117,6,0,191,147,27,154,32,30,7,0,191,19,165,144,54,239,10,0,194,147,150,179,232,191,8,0,194,147,150,179,162,193,8,0,195,19,83,126,236,51,7,0,199,19,61,143,8,207,10,0,203,19,179,135,38,98,7,0,204,19,33,203,18,97,6,0,204,147,178,154,113,91,11,0,206,19,180,53,80,167,9,0,206,19,180,53,123,169,9,0,207,19,128,236,24,8,7,0,209,147,174,185,224,217,6,0,214,19,241,167,212,243,6,0,214,147,236,97,236,51,7,0,216,19,73,60,146,199,10,0,217,147,45,144,112,5,10,0,217,147,45,144,28,6,10,0,219,19,221,190,25,173,6,0,219,19,233,95,19,79,11,0,220,19,139,249,38,98,7,0,220,147,174,129,38,211,10,0,223,19,106,5,201,245,10,0,226,19,158,228,52,86,6,0,227,147,223,0,138,115,8,0,227,147,223,0,117,124,8,0,227,147,223,0,105,133,8,0,229,147,73,41,69,136,7,0,230,147,146,92,160,234,8,0,230,147,146,92,175,235,8,0,233,19,155,26,138,115,8,0,233,19,155,26,117,124,8,0,233,19,155,26,105,133,8,0,237,19,250,186,72,202,8,0,237,19,250,186,175,202,8,0,239,19,137,155,185,197,6,0,239,147,193,176,179,17,7,0,239,147,193,176,164,23,7,0,240,147,72,245,248,53,6,0,243,147,139,48,181,177,6,0,243,147,73,238,212,243,6,0,244,147,223,162,84,21,8,0,245,147,203,67,212,243,6,0,250,19,197,94,63,14,9,0,250,19,197,94,116,14,9,0,252,19,105,170,212,243,6,0,252,19,117,13,22,217,9,0,252,19,117,13,103,217,9,0,1,20,20,58,80,47,7,0,3,148,242,192,22,62,10,0,3,20,49,94,238,61,11,0,5,148,6,51,157,171,7,0,5,148,5,255,38,103,9,0,5,148,5,255,89,103,9,0,9,20,163,38,212,243,6,0,10,20,188,148,114,99,6,0,13,148,79,83,212,243,6,0,16,20,168,31,138,115,8,0,16,20,168,31,117,124,8,0,16,20,168,31,105,133,8,0,17,20,138,252,20,15,7,0,17,20,138,252,179,17,7,0,20,20,180,128,80,32,7,0,22,148,195,61,155,67,7,0,22,148,104,209,38,98,7,0,22,148,104,209,52,54,8,0,24,20,34,184,90,53,7,0,24,148,211,33,123,236,9,0,28,148,172,170,80,32,7,0,30,148,4,130,179,137,10,0,32,20,169,231,38,98,7,0,33,20,1,159,44,164,10,0,35,148,44,44,152,111,7,0,35,148,44,44,214,117,7,0,35,148,44,44,62,124,7,0,38,148,153,48,177,197,5,0,44,148,50,147,79,88,10,0,47,20,192,108,71,236,6,0,48,148,31,88,18,124,6,0,48,20,217,105,218,113,9,0,48,20,217,105,120,114,9,0,49,148,163,224,109,172,9,0,49,148,163,224,178,173,9,0,49,148,163,224,250,174,9,0,54,20,191,232,219,210,7,0,57,20,1,93,166,220,8,0,57,20,1,93,241,220,8,0,58,20,115,244,135,90,9,0,58,20,115,244,124,91,9,0,59,148,133,71,237,73,7,0,59,148,208,163,138,115,8,0,59,148,208,163,117,124,8,0,59,148,208,163,105,133,8,0,60,20,97,12,77,44,11,0,61,20,205,191,169,13,6,0,61,148,217,139,109,172,9,0,61,148,217,139,178,173,9,0,61,148,217,139,250,174,9,0,62,148,185,94,254,243,5,0,62,20,252,127,60,78,6,0,62,148,185,94,153,89,7,0,63,20,103,234,55,175,6,0,64,148,227,230,136,58,7,0,65,20,60,30,170,107,10,0,66,148,128,137,161,85,11,0,67,148,173,169,123,236,9,0,68,148,76,249,176,87,11,0,80,20,10,48,69,105,6,0,83,148,48,117,139,158,8,0,83,148,48,117,224,163,8,0,85,148,232,156,253,91,7,0,86,20,97,82,247,214,6,0,86,20,170,151,85,148,10,0,87,148,137,125,93,48,6,0,87,20,197,41,62,171,7,0,88,148,195,48,146,235,6,0,88,148,126,211,237,73,7,0,90,20,255,49,167,99,6,0,90,20,188,97,50,79,11,0,91,148,169,232,194,218,7,0,92,148,94,222,44,90,10,0,92,148,6,64,226,152,10,0,92,20,184,58,128,158,10,0,95,148,73,18,237,73,7,0,96,20,208,66,97,223,7,0,104,148,186,64,227,218,6,0,104,148,186,64,101,219,6,0,104,148,144,17,37,61,9,0,104,148,144,17,59,61,9,0,104,148,239,154,233,241,10,0,105,148,239,125,45,18,6,0,105,148,239,125,180,138,6,0,105,20,53,138,224,146,8,0,105,20,53,138,132,150,8,0,105,20,53,138,126,93,10,0,106,20,231,242,121,97,7,0,106,148,142,120,38,98,7,0,107,148,73,18,139,158,8,0,107,148,73,18,224,163,8,0,108,148,58,193,119,218,5,0,111,20,112,186,102,223,6,0,112,148,45,106,141,9,7,0,114,148,244,168,229,113,6,0,114,148,244,168,4,114,6,0,114,20,88,103,245,28,10,0,114,20,88,103,145,31,10,0,115,20,162,126,67,9,6,0,115,20,114,62,232,191,8,0,115,20,114,62,162,193,8,0,116,148,3,97,167,107,7,0,117,148,139,20,191,74,10,0,117,20,211,80,82,218,10,0,117,20,211,80,77,220,10,0,124,148,121,148,219,140,6,0,126,20,29,247,229,242,8,0,126,20,29,247,25,243,8,0,127,20,243,213,13,65,10,0,128,20,20,180,38,98,7,0,129,148,6,237,118,26,7,0,129,148,122,94,71,151,10,0,130,148,132,193,123,236,9,0,130,20,98,245,221,38,10,0,130,20,98,245,62,40,10,0,132,20,42,218,167,107,7,0,132,20,42,218,27,118,7,0,135,20,164,38,57,171,8,0,135,20,164,38,133,172,8,0,135,20,164,38,211,173,8,0,135,20,176,55,141,195,8,0,135,20,176,55,112,196,8,0,135,20,176,55,75,197,8,0,138,148,0,171,217,53,6,0,138,148,0,171,133,93,8,0,140,148,93,247,164,159,6,0,141,148,30,73,80,32,7,0,141,148,85,143,246,205,8,0,141,148,85,143,155,206,8,0,141,20,192,228,238,159,10,0,141,20,192,228,33,160,10,0,142,20,100,155,66,121,6,0,144,20,157,38,23,227,7,0,147,20,64,230,0,189,8,0,147,20,64,230,54,189,8,0,149,148,211,106,20,196,5,0,149,20,166,12,218,113,9,0,149,20,166,12,120,114,9,0,151,20,168,237,212,243,6,0,152,20,169,219,216,165,7,0,156,148,79,102,174,45,11,0,157,20,157,38,245,28,10,0,157,20,157,38,145,31,10,0,159,148,1,66,8,159,6,0,159,148,237,51,117,79,7,0,160,20,47,30,249,28,8,0,161,148,210,190,86,216,5,0,162,20,131,182,179,222,8,0,162,20,131,182,152,223,8,0,164,20,26,20,130,227,6,0,167,148,235,17,23,166,9,0,167,148,235,17,50,166,9,0,167,148,235,17,80,166,9,0,167,148,235,17,116,166,9,0,169,20,56,117,197,253,6,0,171,148,123,2,38,158,6,0,171,20,148,190,7,207,7,0,172,148,125,235,57,10,7,0,172,148,27,95,232,191,8,0,172,148,27,95,162,193,8,0,176,20,78,170,97,8,7,0,179,148,1,126,87,77,6,0,181,20,76,105,194,103,9,0,181,20,76,105,215,103,9,0,183,148,167,255,115,7,10,0,183,148,167,255,190,7,10,0,183,148,167,255,10,8,10,0,183,20,213,75,95,69,10,0,184,20,143,91,60,247,5,0,185,148,176,3,65,25,11,0,188,20,237,119,179,222,8,0,188,20,237,119,152,223,8,0,189,20,245,194,179,17,7,0,189,148,253,90,136,58,7,0,189,20,245,194,75,1,9,0,189,20,245,194,154,2,9,0,189,20,245,194,235,3,9,0,189,20,245,194,65,5,9,0,192,20,221,240,139,117,6,0,197,148,156,20,240,226,6,0,197,20,103,32,139,168,10,0,200,148,36,5,117,37,7,0,202,148,247,86,230,6,6,0,206,20,148,225,167,107,7,0,206,20,1,42,20,67,10,0,207,20,155,205,133,220,6,0,207,148,240,52,62,3,8,0,208,20,137,135,75,1,9,0,208,20,137,135,154,2,9,0,208,20,137,135,235,3,9,0,208,20,137,135,65,5,9,0,209,148,120,183,247,55,7,0,214,148,174,69,253,241,5,0,214,20,154,89,219,1,7,0,216,148,178,102,78,203,8,0,217,20,59,254,161,201,8,0,217,20,59,254,217,201,8,0,220,148,153,226,179,17,7,0,220,148,153,226,193,167,9,0,220,148,153,226,37,168,9,0,221,20,156,251,254,243,5,0,221,148,243,126,212,243,6,0,221,20,156,251,153,89,7,0,222,20,99,88,212,243,6,0,223,20,95,149,221,211,10,0,224,148,118,182,96,254,8,0,224,148,118,182,157,254,8,0,224,148,118,182,45,157,10,0,225,20,184,84,104,244,9,0,225,20,184,84,251,244,9,0,225,20,184,84,146,245,9,0,227,148,38,217,203,238,7,0,227,148,107,245,246,205,8,0,227,148,107,245,155,206,8,0,229,20,180,60,71,236,6,0,231,148,121,143,159,178,7,0,231,20,61,38,138,115,8,0,231,20,61,38,117,124,8,0,231,20,61,38,105,133,8,0,231,20,231,242,130,60,9,0,231,20,231,242,156,60,9,0,232,20,173,102,182,114,8,0,237,20,254,148,245,28,10,0,237,20,254,148,145,31,10,0,238,20,66,38,123,236,9,0,240,148,40,0,255,179,8,0,240,148,40,0,110,180,8,0,241,20,5,6,40,217,8,0,241,20,5,6,209,217,8,0,242,148,120,136,232,124,10,0,245,148,176,47,138,115,8,0,245,148,176,47,117,124,8,0,245,148,176,47,105,133,8,0,250,148,96,153,27,103,6,0,251,20,231,242,237,199,6,0,253,148,67,152,231,92,7,0,253,20,190,211,139,158,8,0,253,20,190,211,224,163,8,0,254,148,250,126,39,57,10,0,255,20,169,222,152,111,7,0,255,20,169,222,120,126,7,0,2,21,175,105,216,165,7,0,5,21,146,177,237,73,7,0,6,149,112,119,9,218,7,0,8,149,71,71,224,146,8,0,8,149,71,71,132,150,8,0,8,149,231,242,245,28,10,0,8,149,231,242,145,31,10,0,9,149,68,22,38,253,8,0,9,149,68,22,173,253,8,0,10,21,195,227,227,228,9,0,10,21,195,227,248,228,9,0,13,149,244,103,25,123,9,0,13,149,244,103,53,123,9,0,15,21,39,116,125,144,10,0,15,21,123,55,126,231,10,0,18,21,155,112,39,65,9,0,18,21,155,112,161,65,9,0,18,21,155,112,21,66,9,0,18,21,155,112,188,66,9,0,18,21,155,112,85,67,9,0,19,21,99,244,206,219,6,0,19,21,214,111,135,90,9,0,19,21,214,111,124,91,9,0,22,21,226,50,139,158,8,0,22,21,226,50,224,163,8,0,26,149,231,242,38,98,7,0,27,21,157,69,251,40,11,0,27,21,157,69,133,42,11,0,29,21,168,237,124,10,9,0,30,21,143,205,153,11,7,0,31,21,122,94,117,79,7,0,31,149,65,35,83,84,10,0,31,149,65,35,189,92,10,0,34,21,234,70,61,17,8,0,34,21,234,70,148,129,10,0,36,21,184,148,33,65,7,0,37,149,133,8,125,130,7,0,37,149,229,14,106,59,9,0,37,149,229,14,181,59,9,0,40,21,198,65,43,21,6,0,40,21,9,177,121,97,7,0,40,149,240,0,152,111,7,0,40,21,145,20,93,195,7,0,43,21,136,194,138,115,8,0,43,21,136,194,117,124,8,0,43,21,136,194,105,133,8,0,43,21,220,235,25,193,10,0,44,149,79,28,247,63,6,0,45,21,100,152,213,41,10,0,45,21,100,152,87,42,10,0,46,21,88,71,71,236,6,0,46,149,223,190,125,121,9,0,46,149,223,190,152,121,9,0,46,149,229,223,195,17,11,0,50,149,175,107,133,220,6,0,50,21,149,225,38,98,7,0,51,21,40,200,39,104,10,0,52,149,131,32,73,36,6,0,52,149,209,154,151,21,7,0,52,149,132,1,132,23,7,0,52,149,132,1,228,109,9,0,52,149,132,1,248,110,9,0,55,21,144,60,236,51,7,0,55,21,104,44,22,167,7,0,55,149,216,144,139,158,8,0,55,149,216,144,224,163,8,0,56,149,34,73,123,236,9,0,60,21,79,147,141,195,8,0,60,21,79,147,112,196,8,0,60,21,79,147,75,197,8,0,68,21,79,226,99,66,8,0,68,21,26,103,74,36,11,0,69,149,161,29,139,158,8,0,69,149,161,29,224,163,8,0,70,21,66,31,142,201,7,0,71,21,213,35,203,218,10,0,78,149,84,165,71,236,6,0,78,21,17,98,254,254,6,0,78,149,84,165,38,98,7,0,82,21,153,114,236,10,8,0,82,149,205,13,107,23,10,0,82,149,205,13,195,23,10,0,85,149,143,32,63,212,7,0,85,149,101,27,245,28,10,0,85,149,101,27,145,31,10,0,90,149,240,33,139,158,8,0,90,149,240,33,224,163,8,0,90,149,145,107,81,69,11,0,91,149,13,55,61,40,7,0,93,149,239,60,117,79,7,0,93,21,7,119,139,158,8,0,93,21,7,119,224,163,8,0,95,21,250,45,38,98,7,0,96,149,90,64,125,44,7,0,97,21,70,127,59,225,5,0,97,21,147,190,92,157,10,0,98,21,186,18,222,228,10,0,103,149,121,208,153,11,7,0,103,149,121,208,135,13,7,0,104,21,13,192,245,41,7,0,107,21,131,206,38,98,7,0,107,149,104,78,228,109,9,0,107,149,104,78,248,110,9,0,110,149,55,105,223,90,6,0,110,21,232,176,148,186,8,0,110,21,232,176,221,186,8,0,111,21,21,174,152,111,7,0,111,21,21,174,138,119,7,0,113,21,227,36,80,32,7,0,113,149,124,118,129,112,10,0,115,149,160,142,201,183,10,0,117,149,217,26,178,233,6,0,117,149,64,1,71,236,6,0,117,21,244,84,212,243,6,0,118,149,83,239,153,11,7,0,118,149,235,7,155,67,7,0,119,149,133,58,138,115,8,0,119,149,133,58,117,124,8,0,119,149,133,58,105,133,8,0,120,21,149,42,224,146,8,0,120,21,149,42,132,150,8,0,121,149,46,51,232,251,9,0,121,149,46,51,176,252,9,0,121,21,33,32,192,198,10,0,122,149,52,187,120,79,8,0,125,149,134,171,151,21,7,0,125,21,231,235,246,205,8,0,125,21,231,235,155,206,8,0,128,21,112,219,31,36,6,0,128,21,112,219,209,150,6,0,128,21,173,17,227,167,10,0,129,149,94,145,38,98,7,0,130,21,197,88,112,5,10,0,130,21,197,88,28,6,10,0,132,21,211,13,84,177,6,0,132,21,72,64,38,98,7,0,132,149,162,128,182,114,8,0,132,21,72,64,118,66,11,0,134,149,105,27,120,187,8,0,134,149,105,27,151,187,8,0,137,21,213,213,172,213,6,0,137,21,213,213,152,111,7,0,137,21,213,213,226,43,9,0,137,21,213,213,66,44,9,0,137,21,213,213,167,44,9,0,137,21,213,213,5,45,9,0,137,21,213,213,108,45,9,0,138,149,136,35,33,178,8,0,138,149,136,35,62,178,8,0,138,149,136,35,86,178,8,0,139,149,18,86,76,10,8,0,139,149,57,92,207,94,11,0,142,21,21,242,7,220,6,0,143,149,245,25,135,90,9,0,143,149,245,25,124,91,9,0,144,21,231,160,139,158,8,0,144,21,231,160,224,163,8,0,149,21,59,23,237,73,7,0,149,21,22,249,117,79,7,0,151,21,254,162,140,195,10,0,153,21,77,36,243,6,7,0,153,149,43,159,123,236,9,0,153,149,213,233,7,61,11,0,155,149,2,82,71,236,6,0,158,21,178,191,245,228,6,0,159,21,209,173,239,146,6,0,160,149,67,193,80,32,7,0,163,21,22,172,139,158,8,0,163,21,22,172,224,163,8,0,163,21,174,61,171,51,11,0,166,149,193,113,33,78,6,0,166,21,148,148,156,1,7,0,166,21,138,209,90,53,7,0,166,149,12,22,253,208,8,0,166,149,12,22,22,211,8,0,166,149,99,114,132,18,9,0,166,149,99,114,211,18,9,0,166,149,99,114,49,19,9,0,166,149,99,114,130,19,9,0,166,21,194,252,158,89,10,0,167,149,245,114,154,4,7,0,167,21,71,172,87,210,10,0,168,149,255,235,63,112,9,0,168,149,255,235,116,112,9,0,169,149,140,92,101,197,10,0,170,21,179,225,90,53,7,0,170,149,178,27,81,63,7,0,175,21,192,121,247,214,6,0,175,21,182,37,209,41,7,0,176,21,230,228,219,1,7,0,179,149,105,77,58,4,6,0,180,149,59,195,172,213,6,0,180,149,59,195,226,43,9,0,180,149,59,195,66,44,9,0,180,149,59,195,167,44,9,0,180,149,59,195,5,45,9,0,180,149,59,195,108,45,9,0,183,149,216,214,46,16,10,0,184,21,126,148,212,243,6,0,184,21,126,148,254,254,6,0,186,149,38,142,108,50,9,0,186,149,38,142,122,50,9,0,186,149,38,142,147,50,9,0,186,149,38,142,204,135,9,0,186,149,38,142,228,135,9,0,187,21,116,95,57,10,7,0,188,21,88,144,139,158,8,0,188,21,88,144,224,163,8,0,190,149,225,116,138,115,8,0,190,149,225,116,117,124,8,0,190,149,225,116,105,133,8,0,191,149,85,194,117,37,7,0,192,21,229,212,80,32,7,0,194,21,11,237,129,26,6,0,194,149,33,203,88,130,9,0,194,149,33,203,130,130,9,0,198,21,109,139,151,21,7,0,201,21,113,182,90,175,8,0,201,21,113,182,74,176,8,0,201,21,245,200,194,9,10,0,201,21,245,200,215,9,10,0,202,149,0,84,117,79,7,0,202,149,0,84,12,235,10,0,203,21,91,43,113,232,6,0,203,21,108,69,179,222,8,0,203,21,108,69,152,223,8,0,204,21,206,232,156,218,7,0,205,21,112,124,193,187,6,0,207,21,38,3,80,13,6,0,207,149,157,46,135,90,9,0,207,149,157,46,124,91,9,0,210,21,5,8,38,98,7,0,211,149,254,125,194,211,6,0,211,149,69,95,237,73,7,0,211,21,138,177,130,23,11,0,212,149,221,78,80,32,7,0,212,21,146,111,155,67,7,0,212,149,221,78,237,73,7,0,212,21,51,254,91,222,7,0,212,21,51,254,254,222,7,0,215,21,202,210,28,102,10,0,218,21,211,195,107,210,6,0,219,21,64,255,236,26,7,0,220,149,206,91,139,158,8,0,220,149,206,91,224,163,8,0,220,21,85,123,240,58,11,0,225,149,115,77,212,243,6,0,225,21,239,130,138,115,8,0,225,21,239,130,117,124,8,0,225,21,239,130,105,133,8,0,225,149,217,25,61,186,9,0,225,149,217,25,83,186,9,0,225,149,217,25,103,186,9,0,227,149,74,176,117,37,7,0,232,21,17,1,72,27,7,0,233,149,220,121,61,75,6,0,233,149,81,242,192,156,10,0,239,149,129,229,155,21,10,0,239,149,129,229,205,21,10,0,241,149,42,127,138,115,8,0,241,149,42,127,117,124,8,0,241,149,42,127,105,133,8,0,246,149,138,47,161,82,9,0,246,149,138,47,198,82,9,0,248,21,124,148,126,176,10,0,249,21,65,68,141,124,9,0,249,21,65,68,181,124,9,0,250,21,99,73,53,66,7,0,251,149,195,42,164,35,9,0,251,149,195,42,191,35,9,0,251,149,179,207,28,68,9,0,251,149,179,207,215,68,9,0,254,149,78,49,81,239,8,0,254,149,78,49,40,240,8,0,254,149,78,49,65,70,11,0,255,149,195,159,183,198,5,0,255,21,226,184,39,65,9,0,255,21,226,184,161,65,9,0,255,21,226,184,21,66,9,0,255,21,226,184,188,66,9,0,255,21,226,184,85,67,9,0,2,22,138,190,118,226,8,0,2,22,138,190,72,228,8,0,7,150,134,231,72,204,9,0,8,22,239,136,160,222,5,0,19,22,207,82,87,228,7,0,19,22,207,82,142,228,7,0,19,22,207,82,195,228,7,0,20,22,247,61,63,159,6,0,20,150,107,15,154,4,7,0,21,150,82,3,47,1,7,0,22,22,77,136,123,236,9,0,25,22,36,155,91,111,7,0,25,22,36,155,30,205,7,0,25,22,36,155,86,205,7,0,25,22,36,155,138,205,7,0,25,150,88,45,29,233,10,0,27,22,178,115,252,209,6,0,30,150,237,133,67,191,7,0,32,150,67,39,212,243,6,0,32,150,113,61,136,58,7,0,34,22,52,74,33,210,6,0,38,150,253,85,205,151,9,0,38,150,253,85,199,152,9,0,38,150,253,85,220,153,9,0,41,22,139,251,136,111,6,0,44,22,59,244,102,179,6,0,49,150,223,122,178,222,10,0,50,150,245,201,3,157,8,0,50,150,245,201,180,157,8,0,51,22,129,114,99,146,6,0,51,22,128,186,141,151,10,0,59,150,56,3,57,171,8,0,59,150,56,3,133,172,8,0,59,150,56,3,211,173,8,0,59,150,126,204,200,93,10,0,60,150,140,128,224,146,8,0,60,150,140,128,132,150,8,0,61,22,40,62,30,111,6,0,62,150,64,231,82,231,9,0,62,150,151,202,106,112,10,0,63,150,4,126,219,1,7,0,63,22,91,29,29,204,8,0,63,22,91,29,6,205,8,0,63,22,198,100,204,213,9,0,65,22,32,111,103,46,7,0,65,22,109,27,245,28,10,0,65,22,109,27,145,31,10,0,66,150,68,186,164,25,7,0,66,22,214,226,38,98,7,0,66,22,214,226,13,32,9,0,66,22,214,226,195,32,9,0,68,22,141,243,139,158,8,0,68,22,141,243,224,163,8,0,69,22,171,189,156,192,5,0,73,150,186,148,186,16,8,0,75,150,142,5,206,219,6,0,75,150,142,5,133,220,6,0,76,22,47,146,217,62,7,0,77,150,87,42,136,58,7,0,80,150,228,79,40,100,6,0,80,22,255,6,84,21,8,0,82,150,210,239,127,110,8,0,82,150,210,239,201,183,10,0,84,150,32,0,250,57,8,0,85,22,148,8,138,115,8,0,85,22,148,8,117,124,8,0,85,22,148,8,105,133,8,0,87,150,73,31,212,243,6,0,88,150,47,8,103,46,7,0,88,150,245,88,114,41,8,0,91,22,202,52,54,209,5,0,91,22,174,206,2,199,9,0,91,22,174,206,169,199,9,0,95,150,187,254,27,23,6,0,97,150,188,76,26,0,7,0,97,22,121,180,90,199,7,0,97,22,121,180,148,199,7,0,97,22,121,180,216,199,7,0,97,22,121,180,29,200,7,0,100,22,252,21,112,30,7,0,100,22,252,21,144,30,7,0,103,22,96,28,57,171,8,0,103,22,96,28,133,172,8,0,103,22,96,28,211,173,8,0,107,150,152,55,38,98,7,0,108,150,157,38,7,220,6,0,109,22,150,95,32,12,6,0,109,150,102,103,180,185,10,0,110,150,117,38,109,172,9,0,110,150,117,38,178,173,9,0,110,150,117,38,250,174,9,0,111,22,157,106,152,229,6,0,113,150,100,200,136,58,7,0,114,22,84,245,245,28,10,0,114,22,84,245,145,31,10,0,118,150,19,69,230,6,6,0,123,22,168,144,130,227,6,0,124,22,221,134,71,236,6,0,124,22,199,11,232,251,9,0,124,22,199,11,176,252,9,0,125,150,55,134,95,0,10,0,125,150,55,134,200,0,10,0,126,150,13,134,19,105,6,0,126,150,255,46,38,98,7,0,126,150,255,46,109,253,10,0,127,150,208,38,71,236,6,0,129,150,233,90,212,243,6,0,130,22,99,244,71,236,6,0,134,22,244,110,139,158,8,0,134,22,244,110,224,163,8,0,135,22,171,72,5,74,6,0,135,22,198,105,217,209,6,0,138,22,142,101,57,171,8,0,138,22,142,101,133,172,8,0,138,22,142,101,211,173,8,0,139,22,21,159,201,230,6,0,139,22,137,187,151,64,10,0,141,22,75,136,179,17,7,0,141,22,75,136,125,44,7,0,142,150,217,40,76,199,6,0,142,150,252,21,30,231,6,0,145,22,158,235,131,41,6,0,148,22,93,111,153,11,7,0,148,22,93,111,135,13,7,0,150,22,160,134,117,79,7,0,151,150,247,187,139,158,8,0,151,150,247,187,224,163,8,0,152,150,49,200,230,215,6,0,152,150,209,131,179,235,9,0,152,150,209,131,240,235,9,0,154,150,247,21,153,68,10,0,154,150,247,21,182,68,10,0,158,150,37,19,38,253,8,0,158,150,37,19,173,253,8,0,163,150,143,99,232,191,8,0,163,150,143,99,162,193,8,0,165,150,135,13,168,71,6,0,166,22,82,176,48,138,7,0,168,150,56,161,81,138,6,0,169,22,117,230,2,199,9,0,169,22,117,230,169,199,9,0,169,150,233,163,23,25,11,0,170,22,174,193,212,243,6,0,171,150,56,16,195,48,7,0,171,150,56,16,76,16,9,0,171,150,56,16,146,16,9,0,174,150,3,214,154,224,6,0,174,22,232,94,90,53,7,0,176,22,113,19,237,73,7,0,177,150,118,81,213,154,7,0,180,150,9,146,130,177,6,0,180,22,99,110,139,158,8,0,180,22,99,110,224,163,8,0,180,150,9,146,114,81,11,0,181,22,195,148,84,21,8,0,185,22,142,180,229,69,11,0,186,150,128,13,232,25,7,0,187,22,146,248,247,214,6,0,189,22,182,47,120,154,6,0,189,22,59,144,136,58,7,0,192,22,143,248,43,106,10,0,193,22,76,115,154,79,11,0,195,150,98,203,180,28,7,0,198,150,172,211,38,253,8,0,198,150,172,211,173,253,8,0,199,150,232,111,44,112,10,0,199,150,232,111,76,112,10,0,200,150,87,138,33,88,8,0,204,22,27,45,90,53,7,0,204,150,44,36,152,111,7,0,204,150,44,36,206,62,8,0,204,150,44,36,99,63,8,0,204,150,44,36,4,64,8,0,204,150,44,36,73,218,9,0,208,150,238,246,30,229,7,0,208,150,238,246,75,229,7,0,208,150,238,246,131,229,7,0,208,22,129,228,161,201,8,0,208,22,129,228,217,201,8,0,208,22,72,172,77,41,11,0,209,150,61,163,213,86,6,0,210,150,43,161,212,243,6,0,210,22,204,138,114,243,8,0,210,22,204,138,37,244,8,0,213,150,175,226,71,236,6,0,214,22,188,51,71,236,6,0,214,150,205,156,219,1,7,0,215,22,171,114,90,53,7,0,215,150,206,139,208,59,11,0,215,150,206,139,223,60,11,0,219,22,194,24,138,115,8,0,219,22,194,24,117,124,8,0,219,22,194,24,105,133,8,0,221,150,208,98,27,28,8,0,223,150,19,12,33,65,7,0,224,22,231,242,112,27,7,0,225,150,157,128,138,115,8,0,225,150,157,128,117,124,8,0,225,150,157,128,105,133,8,0,225,22,50,49,255,58,11,0,226,150,122,6,240,226,6,0,226,150,180,162,217,35,7,0,229,22,172,213,75,142,9,0,229,22,172,213,201,142,9,0,229,22,172,213,84,143,9,0,232,22,9,193,162,50,7,0,232,150,16,80,46,152,10,0,237,150,18,127,183,128,10,0,239,22,83,196,135,90,9,0,239,22,83,196,124,91,9,0,244,22,168,210,212,243,6,0,244,22,187,202,191,148,7,0,248,150,37,167,227,108,7,0,248,150,152,165,188,52,9,0,248,150,92,104,205,176,9,0,248,150,92,104,248,176,9,0,248,150,92,104,34,177,9,0,248,150,37,167,14,181,9,0,250,22,14,30,20,15,7,0,250,150,224,104,236,26,7,0,252,150,101,139,142,155,10,0,254,150,131,32,207,167,10,0,1,151,218,47,57,10,7,0,3,151,255,99,11,183,10,0,4,23,184,135,226,154,9,0,4,23,184,135,114,155,9,0,6,151,103,72,149,157,7,0,6,151,103,72,210,157,7,0,6,151,103,72,18,158,7,0,8,23,5,231,166,220,8,0,8,23,5,231,241,220,8,0,15,151,176,117,224,251,6,0,15,151,119,31,117,79,7,0,18,23,39,32,178,224,8,0,18,23,39,32,204,224,8,0,24,151,241,244,42,46,7,0,24,23,208,194,226,154,9,0,24,23,208,194,114,155,9,0,25,23,242,101,5,76,6,0,25,23,134,241,139,158,8,0,25,23,134,241,224,163,8,0,25,23,107,138,44,136,10,0,26,23,122,188,77,203,6,0,28,23,185,148,108,74,9,0,28,23,185,148,131,74,9,0,29,151,221,108,237,73,7,0,30,151,146,228,219,210,7,0,31,23,128,94,136,58,7,0,31,151,255,195,152,111,7,0,31,151,255,195,60,44,8,0,31,151,255,195,175,44,8,0,31,151,255,195,24,45,8,0,31,151,255,195,178,229,9,0,34,151,123,84,138,115,8,0,34,151,123,84,117,124,8,0,34,151,123,84,105,133,8,0,38,23,133,67,167,71,7,0,39,151,208,104,50,235,10,0,41,23,70,102,23,200,5,0,43,151,238,31,237,20,9,0,43,151,238,31,10,21,9,0,43,151,206,193,218,197,10,0,47,151,122,209,210,242,5,0,48,151,237,128,29,5,7,0,52,23,140,5,237,231,6,0,52,23,140,5,152,111,7,0,52,151,209,71,10,220,9,0,52,151,209,71,26,220,9,0,53,23,23,146,112,5,10,0,53,23,23,146,28,6,10,0,54,23,245,143,32,20,6,0,58,23,133,206,63,25,7,0,63,151,208,31,90,53,7,0,64,23,75,252,30,171,9,0,64,23,31,152,220,12,10,0,64,23,31,152,22,13,10,0,64,151,231,242,158,89,10,0,64,151,89,140,247,115,10,0,64,23,30,118,247,181,10,0,66,151,235,24,184,195,10,0,66,151,235,24,145,206,10,0,67,151,111,93,112,5,10,0,67,151,111,93,28,6,10,0,68,151,159,86,125,44,7,0,68,151,5,91,74,149,9,0,68,151,5,91,157,149,9,0,68,151,31,58,236,49,11,0,69,23,157,38,118,226,8,0,69,23,157,38,72,228,8,0,69,23,72,236,204,93,11,0,71,151,68,93,99,66,8,0,71,151,68,93,218,67,8,0,71,151,68,93,69,68,8,0,72,151,234,78,117,143,10,0,76,23,97,157,152,111,7,0,76,23,97,157,128,200,9,0,79,23,3,108,14,74,9,0,79,23,3,108,38,74,9,0,84,151,10,87,69,67,7,0,84,151,100,25,210,28,8,0,85,23,231,242,180,105,10,0,86,23,8,62,63,112,9,0,86,23,8,62,116,112,9,0,86,23,157,254,109,172,9,0,86,23,157,254,178,173,9,0,86,23,157,254,250,174,9,0,87,151,116,227,92,97,10,0,89,151,207,150,161,46,10,0,89,151,207,150,238,46,10,0,90,23,121,137,97,249,10,0,91,23,120,254,123,236,9,0,92,23,224,36,212,243,6,0,94,23,194,219,8,134,10,0,96,23,130,166,35,37,7,0,96,23,231,242,38,98,7,0,98,151,175,137,253,208,8,0,98,151,175,137,22,211,8,0,99,23,243,66,227,108,7,0,99,23,243,66,138,115,8,0,99,23,243,66,117,124,8,0,99,23,243,66,105,133,8,0,100,151,245,24,246,205,8,0,100,151,245,24,155,206,8,0,102,23,31,246,196,96,10,0,114,23,30,97,47,84,11,0,116,23,41,167,179,222,8,0,116,23,41,167,152,223,8,0,119,151,6,33,72,219,5,0,119,151,10,155,147,226,10,0,120,23,89,78,143,77,8,0,120,151,228,86,123,236,9,0,120,151,18,106,216,233,10,0,122,23,45,9,218,134,10,0,123,23,99,244,38,98,7,0,123,23,118,24,197,230,8,0,123,23,118,24,235,230,8,0,125,23,248,96,9,203,9,0,128,151,174,165,250,112,10,0,129,23,24,233,219,1,7,0,132,23,93,139,38,98,7,0,134,151,119,37,226,242,5,0,139,23,233,202,246,131,6,0,139,23,233,202,250,132,6,0,139,151,176,166,233,16,11,0,140,151,160,153,40,200,5,0,141,151,86,212,20,15,7,0,143,23,25,250,138,115,8,0,143,23,25,250,117,124,8,0,143,23,25,250,105,133,8,0,144,151,87,2,140,142,8,0,144,151,87,2,235,142,8,0,144,151,87,2,83,143,8,0,146,23,171,226,42,252,6,0,146,151,74,9,123,236,9,0,149,151,111,84,228,109,9,0,149,151,111,84,248,110,9,0,153,23,198,194,118,240,5,0,155,23,27,2,123,236,9,0,156,23,141,173,164,25,7,0,157,151,60,174,216,94,6,0,162,151,21,145,204,192,6,0,163,151,106,90,28,68,9,0,163,151,106,90,215,68,9,0,164,151,254,104,74,232,7,0,167,151,37,47,2,199,9,0,167,151,37,47,169,199,9,0,167,151,106,28,213,41,10,0,167,151,106,28,87,42,10,0,168,23,172,12,180,28,7,0,168,151,81,15,80,32,7,0,172,23,96,136,90,53,7,0,173,23,82,177,38,98,7,0,173,23,82,177,145,126,7,0,173,23,26,102,180,235,10,0,176,151,175,222,65,25,11,0,177,23,208,89,62,3,8,0,177,23,103,242,218,113,9,0,177,23,103,242,120,114,9,0,179,23,150,248,68,202,6,0,180,23,141,105,90,53,7,0,181,151,16,71,228,109,9,0,181,151,16,71,248,110,9,0,185,23,29,205,41,73,11,0,187,23,217,235,102,179,6,0,188,151,219,41,209,198,5,0,191,151,112,231,65,172,7,0,191,151,208,242,15,233,8,0,191,151,208,242,139,233,8,0,193,151,130,37,177,62,7,0,194,151,37,189,174,70,10,0,194,151,121,233,215,156,10,0,195,23,32,101,87,50,11,0,196,23,49,245,94,245,5,0,196,151,193,80,71,236,6,0,197,23,246,31,71,236,6,0,198,23,40,113,71,236,6,0,198,23,160,135,0,190,8,0,198,23,160,135,168,190,8,0,200,23,170,133,89,206,10,0,206,23,175,182,117,79,7,0,207,23,185,223,215,16,10,0,207,23,185,223,135,17,10,0,208,23,8,89,123,236,9,0,210,151,234,144,21,63,6,0,210,23,237,143,99,66,8,0,210,151,29,252,123,236,9,0,212,23,233,20,152,111,7,0,212,23,233,20,62,124,7,0,216,151,41,38,243,4,8,0,221,23,132,70,117,79,7,0,222,23,102,172,187,77,10,0,227,151,223,44,160,234,8,0,227,151,223,44,175,235,8,0,228,151,26,33,121,97,7,0,229,151,24,165,95,80,6,0,230,23,57,7,29,150,7,0,235,151,8,146,4,72,6,0,235,151,243,126,38,98,7,0,235,23,205,239,246,205,8,0,235,23,205,239,155,206,8,0,239,23,56,78,37,76,6,0,239,23,12,25,29,150,7,0,242,23,46,119,64,55,6,0,242,151,143,124,155,67,7,0,248,23,12,106,112,27,7,0,250,151,208,216,21,36,7,0,253,151,220,18,123,236,9,0,253,23,80,35,189,12,11,0,254,151,186,148,95,250,5,0,254,151,186,148,212,243,6,0,254,151,186,148,38,98,7,0,254,23,180,54,245,28,10,0,254,23,180,54,145,31,10,0,255,23,73,136,51,241,8,0,255,23,73,136,198,241,8,0,0,24,77,117,73,66,10,0,1,152,140,128,61,187,7,0,2,152,140,213,152,111,7,0,2,152,140,213,206,62,8,0,2,152,140,213,99,63,8,0,2,152,140,213,4,64,8,0,2,152,140,213,73,218,9,0,3,24,111,201,253,208,8,0,3,24,111,201,22,211,8,0,4,152,171,226,58,164,6,0,4,152,171,226,133,173,6,0,4,152,171,226,71,236,6,0,4,152,171,226,148,251,7,0,5,24,9,166,125,44,7,0,6,152,164,34,243,6,7,0,8,152,14,57,113,24,7,0,8,152,201,99,117,79,7,0,9,24,248,96,125,44,7,0,9,24,248,96,152,111,7,0,9,24,248,96,62,124,7,0,9,152,181,123,180,84,8,0,11,24,164,160,113,69,6,0,12,24,157,211,138,115,8,0,12,24,157,211,117,124,8,0,12,24,157,211,105,133,8,0,14,24,246,112,123,236,9,0,15,24,172,122,138,115,8,0,15,24,172,122,117,124,8,0,15,24,172,122,105,133,8,0,17,152,129,229,71,236,6,0,17,24,78,85,129,26,8,0,20,24,9,38,182,64,10,0,21,24,93,42,113,60,10,0,21,152,24,105,142,58,11,0,22,152,219,227,228,109,9,0,22,152,219,227,248,110,9,0,22,152,128,247,171,75,11,0,25,152,35,2,103,87,6,0,25,24,112,167,254,43,11,0,29,152,47,7,180,28,7,0,29,24,86,47,237,73,7,0,35,152,104,58,133,56,10,0,36,24,48,175,117,79,7,0,37,152,106,152,38,98,7,0,41,152,212,247,167,71,7,0,41,152,159,138,138,115,8,0,41,152,159,138,117,124,8,0,41,152,159,138,105,133,8,0,42,152,118,128,109,231,6,0,42,152,118,128,90,175,8,0,42,152,118,128,74,176,8,0,42,152,206,200,153,207,8,0,42,152,206,200,44,208,8,0,43,24,14,129,231,246,5,0,43,152,213,109,50,51,7,0,45,24,52,52,75,1,9,0,45,24,52,52,154,2,9,0,45,24,52,52,235,3,9,0,45,24,52,52,65,5,9,0,47,152,179,73,117,79,7,0,47,24,40,52,178,50,11,0,51,152,36,226,136,58,7,0,52,152,142,15,140,66,7,0,52,152,142,15,234,66,7,0,53,24,220,138,131,206,6,0,55,152,210,9,236,213,6,0,56,24,78,243,16,118,6,0,58,24,198,255,212,243,6,0,59,152,86,129,38,98,7,0,60,152,227,65,117,79,7,0,60,152,76,165,162,28,9,0,60,152,76,165,244,28,9,0,60,24,112,167,232,251,9,0,60,24,112,167,176,252,9,0,61,24,245,199,248,24,6,0,62,24,245,165,222,42,6,0,65,24,50,222,174,153,7,0,65,152,231,242,123,236,9,0,66,24,199,228,136,58,7,0,68,24,229,140,138,115,8,0,68,24,229,140,117,124,8,0,68,24,229,140,105,133,8,0,69,152,69,195,20,15,7,0,69,152,66,43,224,146,8,0,69,152,66,43,132,150,8,0,69,24,99,139,222,163,10,0,70,24,74,208,245,28,10,0,70,24,74,208,145,31,10,0,72,152,50,244,57,171,8,0,72,152,50,244,133,172,8,0,72,152,50,244,211,173,8,0,78,24,128,236,125,44,7,0,78,152,135,78,82,231,9,0,83,24,192,148,14,146,8,0,83,24,192,148,49,146,8,0,84,152,222,233,191,74,10,0,86,24,202,208,138,115,8,0,86,24,202,208,117,124,8,0,86,24,202,208,105,133,8,0,87,24,76,136,235,55,10,0,90,152,210,157,95,28,11,0,95,24,114,27,201,64,8,0,96,152,101,116,237,73,7,0,97,152,25,156,90,175,8,0,97,152,25,156,74,176,8,0,100,152,236,223,138,115,8,0,100,152,236,223,117,124,8,0,100,152,236,223,105,133,8,0,100,152,253,3,139,158,8,0,100,152,253,3,224,163,8,0,103,24,185,146,70,200,5,0,104,24,252,6,90,53,7,0,105,24,73,9,226,132,6,0,108,152,241,75,113,24,7,0,109,152,113,0,206,218,5,0,110,152,28,45,6,51,8,0,110,152,28,45,68,51,8,0,110,152,28,45,129,51,8,0,112,152,135,240,51,214,8,0,112,152,135,240,241,214,8,0,112,152,135,240,169,215,8,0,112,152,56,75,134,14,11,0,113,152,201,148,247,55,7,0,113,152,234,19,120,45,10,0,113,152,234,19,161,45,10,0,113,152,164,209,83,212,10,0,113,152,164,209,102,212,10,0,115,152,19,5,38,98,7,0,116,24,44,161,90,53,7,0,118,152,98,254,117,79,7,0,118,152,10,157,226,154,9,0,118,152,10,157,114,155,9,0,123,152,11,195,191,211,9,0,123,152,11,195,245,28,10,0,123,152,11,195,145,31,10,0,123,152,148,202,58,251,10,0,124,24,152,215,38,98,7,0,124,24,245,14,138,115,8,0,124,24,245,14,117,124,8,0,124,24,245,14,105,133,8,0,127,152,48,120,238,234,5,0,128,152,105,43,113,24,7,0,129,152,232,89,57,10,7,0,132,152,3,221,175,217,6,0,134,152,89,154,249,198,6,0,134,152,233,163,227,108,7,0,134,152,233,163,10,28,10,0,134,152,233,163,74,28,10,0,134,152,233,163,134,28,10,0,138,24,139,5,243,69,7,0,138,24,254,225,90,175,8,0,138,24,254,225,74,176,8,0,140,152,105,123,197,111,6,0,141,24,134,148,17,207,6,0,143,24,168,100,54,59,6,0,144,24,238,216,175,200,6,0,149,24,219,130,88,129,7,0,149,152,231,242,228,146,7,0,152,24,94,141,115,7,10,0,152,24,94,141,190,7,10,0,152,24,94,141,10,8,10,0,153,152,101,144,7,226,6,0,153,152,55,217,85,199,10,0,156,24,25,109,117,79,7,0,161,24,177,9,113,232,6,0,161,24,233,90,167,71,7,0,162,152,101,180,61,224,6,0,164,152,93,136,212,243,6,0,166,24,236,3,141,195,8,0,166,24,236,3,112,196,8,0,166,24,236,3,75,197,8,0,168,24,154,143,221,38,10,0,168,24,154,143,62,40,10,0,170,24,4,242,179,111,10,0,173,24,91,172,180,28,7,0,175,152,136,139,90,175,8,0,175,152,136,139,74,176,8,0,179,152,251,183,219,148,6,0,183,24,164,160,93,195,5,0,184,152,41,95,179,17,7,0,184,24,202,0,136,58,7,0,184,24,113,202,76,211,10,0,185,152,232,113,133,220,6,0,185,24,187,23,123,236,9,0,186,24,164,160,184,103,6,0,188,24,164,160,236,240,5,0,194,152,239,241,123,236,9,0,197,24,242,4,20,15,7,0,197,24,242,4,179,17,7,0,199,152,53,33,224,146,8,0,199,152,53,33,132,150,8,0,200,152,243,109,203,25,10,0,200,152,243,109,228,25,10,0,200,152,243,109,26,26,10,0,201,152,50,175,212,243,6,0,206,24,38,129,86,245,10,0,207,152,83,73,80,32,7,0,210,152,242,126,76,183,6,0,212,24,125,19,169,199,5,0,212,152,252,236,139,158,8,0,212,152,252,236,224,163,8,0,213,152,251,198,138,115,8,0,213,152,251,198,117,124,8,0,213,152,251,198,105,133,8,0,214,152,70,194,235,67,6,0,215,152,120,127,212,243,6,0,216,152,11,27,113,16,6,0,217,24,22,229,33,65,7,0,218,152,162,84,53,250,8,0,218,152,162,84,83,250,8,0,219,24,207,88,212,77,9,0,219,24,207,88,34,78,9,0,222,152,42,185,131,250,10,0,223,152,249,126,126,79,6,0,223,152,38,46,165,11,9,0,223,152,38,46,58,12,9,0,223,152,154,98,123,236,9,0,225,152,137,47,254,59,10,0,232,24,194,240,230,130,7,0,235,152,25,204,23,199,6,0,235,24,121,8,159,45,7,0,235,24,188,148,177,133,7,0,235,24,188,148,38,134,7,0,235,152,177,186,23,227,10,0,236,24,210,27,16,86,11,0,238,24,16,135,90,53,7,0,238,152,62,69,36,95,10,0,239,152,223,227,76,252,6,0,239,24,44,255,91,147,7,0,240,24,38,255,138,115,8,0,240,24,38,255,117,124,8,0,240,24,38,255,105,133,8,0,244,152,68,21,212,21,9,0,244,152,68,21,31,22,9,0,244,152,68,21,103,22,9,0,244,152,160,127,85,148,10,0,245,152,28,222,212,243,6,0,248,24,101,174,78,203,8,0,252,152,149,237,242,212,10,0,255,152,144,105,218,245,5,0,255,152,165,141,133,198,7,0,0,153,148,128,192,139,6,0,1,25,33,118,152,111,7,0,1,25,33,118,231,220,7,0,2,153,188,15,151,182,7,0,3,25,132,142,107,187,10,0,5,25,96,2,232,191,8,0,5,25,96,2,162,193,8,0,7,153,128,194,225,145,6,0,9,153,144,238,90,53,7,0,12,25,119,26,227,9,11,0,20,25,104,128,94,30,6,0,20,153,163,186,121,245,7,0,20,25,202,110,244,185,10,0,20,25,202,110,41,187,10,0,21,25,67,190,117,79,7,0,21,25,59,103,90,175,8,0,21,25,59,103,74,176,8,0,24,25,157,38,237,73,7,0,25,153,244,192,118,226,8,0,25,153,244,192,72,228,8,0,30,25,83,119,48,138,7,0,31,153,188,87,50,96,11,0,33,153,126,141,39,216,5,0,33,25,163,60,91,147,7,0,34,25,122,252,152,111,7,0,34,25,122,252,173,169,8,0,35,153,170,31,251,217,6,0,35,25,199,210,170,132,10,0,36,25,153,7,90,175,8,0,36,25,153,7,74,176,8,0,38,25,123,180,177,133,7,0,38,25,123,180,38,134,7,0,44,25,209,238,80,32,7,0,44,25,245,158,213,41,10,0,44,25,245,158,87,42,10,0,45,25,117,21,68,202,6,0,47,153,89,170,244,27,9,0,50,25,109,195,15,206,6,0,51,153,20,207,165,216,5,0,51,153,239,16,237,73,7,0,52,25,248,4,71,236,6,0,53,25,170,254,38,103,8,0,54,153,103,209,230,215,6,0,55,25,157,38,19,226,5,0,55,25,157,38,229,226,5,0,55,25,157,38,73,8,6,0,55,25,157,38,217,10,6,0,55,25,157,38,151,42,6,0,55,25,157,38,42,129,6,0,55,153,5,121,163,151,6,0,55,25,157,38,126,152,6,0,55,25,157,38,183,160,6,0,55,25,157,38,153,11,7,0,55,25,157,38,135,13,7,0,55,25,157,38,177,133,7,0,55,25,157,38,38,134,7,0,56,25,207,144,137,227,5,0,57,153,237,199,71,236,6,0,57,153,91,165,99,42,7,0,57,153,71,189,138,115,8,0,57,153,71,189,117,124,8,0,57,153,71,189,105,133,8,0,58,153,7,22,181,88,9,0,58,153,7,22,205,88,9,0,59,25,178,21,227,108,7,0,59,153,23,77,57,224,7,0,59,25,178,21,198,158,9,0,59,25,178,21,213,158,9,0,60,25,1,81,22,35,7,0,63,25,45,101,163,155,10,0,65,25,255,160,44,33,11,0,66,153,189,237,179,17,7,0,67,153,52,70,180,28,7,0,67,153,255,29,109,172,9,0,67,153,255,29,178,173,9,0,67,153,255,29,250,174,9,0,68,25,202,72,57,10,7,0,68,153,230,222,40,217,8,0,68,153,230,222,209,217,8,0,69,25,159,179,212,243,6,0,73,153,112,236,200,93,10,0,75,153,166,164,106,12,6,0,75,153,145,178,18,42,6,0,75,153,145,178,79,72,7,0,75,153,174,183,253,208,8,0,75,153,174,183,22,211,8,0,79,25,41,65,48,225,6,0,80,153,213,77,11,9,7,0,80,153,132,150,81,239,8,0,80,153,132,150,40,240,8,0,80,153,213,77,75,1,9,0,80,153,213,77,154,2,9,0,80,153,213,77,235,3,9,0,80,153,213,77,65,5,9,0,81,25,91,124,130,227,6,0,81,25,91,124,197,28,11,0,82,25,148,149,215,113,8,0,84,25,188,148,254,104,6,0,84,25,188,148,153,11,7,0,84,25,188,148,135,13,7,0,84,153,231,242,139,57,10,0,91,25,209,177,112,27,7,0,92,25,127,94,145,202,5,0,94,25,236,141,167,71,7,0,97,25,71,252,179,222,8,0,97,25,71,252,152,223,8,0,99,25,178,42,184,151,6,0,100,25,142,247,138,115,8,0,100,25,142,247,117,124,8,0,100,25,142,247,105,133,8,0,101,153,71,79,236,51,7,0,101,153,80,49,136,58,7,0,105,25,82,51,101,226,6,0,105,153,7,198,88,129,7,0,106,25,35,167,247,214,6,0,109,25,229,212,159,218,6,0,110,25,47,236,64,193,9,0,112,153,150,95,155,203,6,0,113,153,5,213,69,77,6,0,113,25,25,56,189,97,6,0,113,25,219,198,149,87,10,0,114,25,190,7,32,30,7,0,114,153,200,44,253,208,8,0,114,153,200,44,22,211,8,0,116,25,187,202,105,225,10,0,118,25,9,162,50,51,7,0,118,25,22,126,76,96,11,0,119,25,5,77,138,115,8,0,119,25,5,77,117,124,8,0,119,25,5,77,105,133,8,0,119,153,73,31,232,251,9,0,119,153,73,31,176,252,9,0,123,153,190,209,81,239,8,0,123,153,190,209,40,240,8,0,125,25,245,249,66,8,11,0,126,25,18,205,217,62,7,0,127,25,195,29,54,222,6,0,127,153,169,133,1,9,8,0,127,153,121,167,232,251,9,0,127,153,121,167,176,252,9,0,127,25,98,218,44,83,11,0,133,25,143,118,210,199,6,0,133,153,5,187,247,55,7,0,135,153,225,128,226,43,9,0,135,153,225,128,66,44,9,0,135,153,225,128,167,44,9,0,135,153,225,128,5,45,9,0,135,153,225,128,108,45,9,0,135,25,60,171,123,236,9,0,136,25,156,23,118,203,5,0,137,153,255,1,165,226,6,0,141,25,213,176,245,28,10,0,141,25,213,176,145,31,10,0,142,25,143,222,123,236,9,0,143,153,151,99,201,3,7,0,143,153,182,93,253,208,8,0,143,153,182,93,22,211,8,0,144,25,246,229,165,11,9,0,144,25,246,229,58,12,9,0,145,153,162,248,38,98,7,0,145,25,24,54,193,167,9,0,146,153,118,24,78,203,8,0,152,153,180,148,208,60,6,0,152,153,200,129,231,250,10,0,153,25,101,72,113,206,10,0,155,25,109,124,178,233,6,0,158,153,29,153,61,199,5,0,158,25,134,9,75,1,9,0,158,25,134,9,154,2,9,0,158,25,134,9,235,3,9,0,158,25,134,9,65,5,9,0,161,153,14,60,253,205,5,0,161,153,14,60,220,12,6,0,161,153,75,42,115,43,6,0,163,25,153,23,123,236,9,0,163,25,231,242,42,76,10,0,169,153,120,242,149,71,10,0,170,25,76,80,27,46,11,0,171,25,212,1,169,158,7,0,171,25,212,1,205,158,7,0,172,25,67,129,248,53,6,0,173,25,234,231,125,44,7,0,174,153,131,155,133,247,5,0,174,25,77,185,33,65,7,0,179,25,20,77,49,108,6,0,180,153,28,121,26,73,6,0,180,153,28,121,123,236,9,0,181,153,113,27,105,189,7,0,182,153,156,186,212,243,6,0,190,25,30,180,52,109,6,0,190,153,242,212,13,32,9,0,190,153,242,212,195,32,9,0,191,153,176,42,117,118,6,0,196,153,244,116,136,58,7,0,198,25,57,79,57,171,8,0,198,25,57,79,133,172,8,0,198,25,57,79,211,173,8,0,199,25,196,148,142,25,8,0,203,25,109,195,136,58,7,0,207,153,137,179,11,9,7,0,207,153,96,77,237,73,7,0,207,153,137,179,75,1,9,0,207,153,137,179,154,2,9,0,207,153,137,179,235,3,9,0,207,153,137,179,65,5,9,0,209,153,244,75,30,231,6,0,209,153,148,148,224,146,8,0,209,153,148,148,132,150,8,0,212,153,46,59,46,145,6,0,214,153,86,246,117,79,7,0,219,25,178,79,3,239,10,0,221,25,186,148,58,53,8,0,222,25,12,77,212,243,6,0,222,153,125,241,48,138,7,0,224,25,233,130,71,236,6,0,225,25,155,189,139,158,8,0,225,25,155,189,224,163,8,0,225,25,73,167,148,216,8,0,225,25,73,167,189,216,8,0,225,25,215,5,230,71,9,0,225,25,215,5,83,72,9,0,226,25,32,8,29,5,7,0,229,25,240,109,74,178,7,0,231,153,241,226,208,222,7,0,232,25,252,102,221,38,10,0,232,25,252,102,62,40,10,0,234,153,108,234,136,58,7,0,238,25,131,182,33,65,7,0,240,25,56,51,212,243,6,0,241,153,195,147,228,212,6,0,241,153,77,130,117,37,7,0,241,153,120,248,244,27,9,0,248,153,30,124,224,146,8,0,248,153,30,124,132,150,8,0,251,25,247,34,29,5,7,0,254,153,62,71,74,175,10,0,255,153,9,157,0,190,8,0,255,153,9,157,168,190,8,0,0,154,94,112,121,141,10,0,1,26,111,87,125,44,7,0,3,154,58,189,17,184,8,0,3,154,120,212,123,236,9,0,5,154,61,57,227,144,6,0,5,154,182,116,224,146,8,0,5,154,182,116,132,150,8,0,7,154,212,78,117,79,7,0,10,26,83,197,84,137,6,0,13,154,35,44,165,11,9,0,13,154,35,44,58,12,9,0,14,154,219,178,117,79,7,0,15,26,201,63,89,186,10,0,18,26,124,154,90,175,8,0,18,26,124,154,74,176,8,0,20,154,158,29,63,204,7,0,22,154,191,149,96,92,10,0,27,26,226,36,24,212,10,0,29,154,71,203,219,210,7,0,29,26,116,238,28,68,9,0,29,26,116,238,215,68,9,0,29,154,224,105,193,167,9,0,32,26,191,111,45,91,8,0,33,26,115,149,44,26,7,0,33,154,90,71,138,115,8,0,33,154,90,71,117,124,8,0,33,154,90,71,105,133,8,0,38,26,233,211,238,25,6,0,40,26,28,119,61,165,10,0,41,154,136,150,7,197,10,0,41,154,136,150,198,197,10,0,44,154,189,173,152,111,7,0,47,154,180,227,243,69,7,0,48,154,27,102,254,243,5,0,48,26,42,230,84,168,6,0,48,26,42,230,142,172,6,0,48,154,27,102,153,89,7,0,50,154,102,79,103,46,7,0,51,26,86,103,94,44,6,0,53,154,126,242,102,179,6,0,53,154,23,191,13,32,9,0,53,154,23,191,195,32,9,0,56,26,209,93,139,158,8,0,56,26,209,93,224,163,8,0,58,154,0,238,0,190,8,0,58,154,0,238,168,190,8,0,59,26,203,182,224,146,8,0,59,26,203,182,132,150,8,0,59,26,73,111,161,159,10,0,61,154,88,13,117,37,7,0,63,154,158,12,155,67,7,0,64,26,87,214,155,67,7,0,65,154,129,143,34,10,10,0,66,154,248,205,123,236,9,0,68,26,41,223,186,215,7,0,68,154,221,221,139,252,8,0,68,154,221,221,171,252,8,0,68,154,221,221,207,252,8,0,68,154,80,150,213,147,10,0,69,154,243,218,227,218,6,0,69,154,243,218,101,219,6,0,75,26,144,199,139,158,8,0,75,26,144,199,224,163,8,0,77,154,85,157,139,214,9,0,77,154,85,157,234,214,9,0,77,154,85,157,70,215,9,0,79,26,243,150,57,171,8,0,79,26,243,150,133,172,8,0,79,26,243,150,211,173,8,0,79,26,128,189,90,56,9,0,79,26,128,189,171,56,9,0,79,26,128,189,54,57,9,0,82,26,143,112,11,133,7,0,83,154,10,114,123,236,9,0,83,154,88,246,107,23,10,0,83,154,88,246,195,23,10,0,85,26,120,198,117,79,7,0,86,154,127,140,139,158,8,0,86,154,127,140,224,163,8,0,90,154,149,101,38,98,7,0,91,154,184,92,152,111,7,0,91,154,184,92,106,122,7,0,93,154,195,148,151,9,6,0,93,154,195,148,198,10,6,0,93,154,195,148,157,11,6,0,93,154,195,148,82,73,8,0,93,154,195,148,137,73,8,0,93,154,195,148,195,90,8,0,97,26,204,44,153,11,7,0,97,26,204,44,135,13,7,0,97,26,73,134,138,115,8,0,97,26,73,134,117,124,8,0,97,26,73,134,105,133,8,0,99,26,220,142,133,220,6,0,99,154,23,129,167,34,7,0,100,26,1,152,254,243,5,0,100,26,1,152,153,89,7,0,101,26,170,90,100,73,6,0,101,154,71,200,109,171,6,0,103,26,42,130,172,200,5,0,104,154,114,84,32,30,7,0,106,26,156,135,237,73,7,0,110,26,157,38,25,39,6,0,110,26,126,231,219,1,7,0,110,26,157,38,88,129,7,0,114,154,74,229,254,243,5,0,114,154,74,229,153,89,7,0,115,26,99,244,71,236,6,0,115,154,10,192,133,236,10,0,119,154,94,58,113,22,11,0,122,26,151,131,247,55,7,0,122,26,234,219,152,111,7,0,122,26,234,219,206,62,8,0,122,26,234,219,99,63,8,0,122,26,234,219,4,64,8,0,122,26,234,219,73,218,9,0,123,26,16,100,254,243,5,0,123,26,16,100,153,89,7,0,124,26,237,215,138,115,8,0,124,26,237,215,117,124,8,0,124,26,237,215,105,133,8,0,124,154,86,124,81,239,8,0,124,154,86,124,40,240,8,0,129,26,89,115,7,153,6,0,135,26,201,214,113,47,7,0,136,154,7,111,132,23,7,0,136,26,224,30,247,55,7,0,138,154,199,107,237,73,7,0,143,154,201,233,91,147,7,0,143,154,244,51,82,180,10,0,144,26,82,237,0,203,6,0,144,154,9,46,208,174,10,0,144,26,79,65,162,69,11,0,145,154,216,47,29,5,7,0,145,26,157,38,194,142,7,0,145,154,149,48,252,9,8,0,145,154,149,48,117,38,11,0,151,154,145,228,38,98,7,0,151,26,185,185,101,246,10,0,154,154,60,11,100,71,7,0,155,26,115,162,175,26,7,0,159,154,39,34,237,73,7,0,160,154,113,173,212,243,6,0,162,26,236,234,90,7,6,0,162,26,31,128,156,185,10,0,163,26,2,102,167,34,7,0,165,154,175,39,7,103,10,0,165,154,175,39,39,103,10,0,168,154,233,10,247,55,7,0,168,26,34,174,38,98,7,0,168,154,28,145,242,118,10,0,171,26,53,58,38,98,7,0,171,154,83,176,48,31,11,0,173,26,32,211,152,111,7,0,173,26,32,211,206,62,8,0,173,26,32,211,99,63,8,0,173,26,32,211,4,64,8,0,173,26,32,211,73,218,9,0,174,26,246,97,179,17,7,0,175,154,44,92,237,222,5,0,175,154,110,251,254,254,6,0,179,154,180,239,22,62,10,0,181,154,126,33,140,142,8,0,181,154,126,33,235,142,8,0,181,154,126,33,83,143,8,0,182,26,186,148,22,35,7,0,183,26,253,47,214,62,11,0,183,26,253,47,238,62,11,0,187,154,76,4,84,21,8,0,191,26,215,221,159,92,9,0,191,26,215,221,5,93,9,0,192,26,94,19,91,17,9,0,192,26,94,19,177,17,9,0,192,26,94,19,1,18,9,0,192,26,126,146,30,171,9,0,193,154,106,231,114,209,6,0,193,154,96,155,212,243,6,0,197,26,249,213,71,133,10,0,200,26,157,38,100,131,6,0,201,26,168,18,71,236,6,0,202,154,130,215,39,84,6,0,203,26,119,153,123,236,9,0,207,26,43,19,136,58,7,0,208,26,5,86,155,67,7,0,210,26,162,88,179,172,10,0,211,26,109,132,136,58,7,0,212,26,70,184,39,89,10,0,215,154,7,164,38,98,7,0,215,154,7,164,114,118,10,0,215,154,7,164,147,122,10,0,218,26,140,244,38,253,8,0,218,26,140,244,173,253,8,0,220,154,185,130,219,1,7,0,221,26,233,28,234,187,8,0,221,26,233,28,25,188,8,0,223,26,160,10,187,26,11,0,225,154,232,107,209,40,7,0,225,154,61,121,152,111,7,0,225,154,61,121,255,31,8,0,225,154,61,121,46,32,8,0,225,154,61,121,92,32,8,0,225,154,61,121,139,32,8,0,228,26,113,85,71,236,6,0,229,26,180,177,39,65,9,0,229,26,180,177,161,65,9,0,229,26,180,177,21,66,9,0,229,26,180,177,188,66,9,0,229,26,180,177,85,67,9,0,235,26,142,209,2,199,9,0,235,26,142,209,169,199,9,0,235,26,74,17,34,10,10,0,242,154,9,77,229,123,6,0,245,26,46,127,95,140,7,0,245,26,46,127,163,141,7,0,245,154,36,230,126,226,7,0,245,26,111,172,165,108,9,0,245,26,111,172,214,108,9,0,245,26,111,172,27,109,9,0,246,154,86,74,18,78,6,0,249,154,236,126,200,127,6,0,250,154,179,123,66,110,6,0,250,154,149,125,2,23,7,0,253,154,41,102,48,119,6,0,1,27,101,72,212,243,6,0,2,27,141,209,245,41,7,0,2,27,143,254,147,160,10,0,2,27,143,254,234,166,10,0,4,155,46,153,113,47,7,0,4,27,140,200,51,255,9,0,4,27,140,200,139,255,9,0,4,27,140,200,226,255,9,0,4,155,172,185,247,102,11,0,6,155,169,177,143,12,10,0,8,27,229,109,29,4,7,0,11,27,45,14,123,236,9,0,11,155,167,130,95,123,10,0,11,155,167,130,119,123,10,0,16,27,107,212,171,63,7,0,19,155,255,63,54,239,10,0,23,155,140,235,30,249,5,0,24,155,199,214,139,214,9,0,24,155,199,214,234,214,9,0,24,155,199,214,70,215,9,0,25,155,169,201,57,243,10,0,28,155,172,7,242,212,7,0,29,155,205,161,237,73,7,0,29,155,209,69,123,236,9,0,30,155,251,2,235,169,7,0,31,27,210,193,108,247,5,0,31,155,108,109,69,67,7,0,31,27,81,68,202,10,11,0,33,155,233,34,29,5,7,0,34,27,15,27,22,218,6,0,35,27,18,20,133,220,6,0,36,27,57,231,154,254,5,0,36,155,169,139,103,170,8,0,36,155,169,139,188,170,8,0,36,27,57,231,104,185,8,0,38,27,97,16,212,243,6,0,38,155,26,235,237,73,7,0,42,155,231,242,232,251,9,0,42,155,231,242,176,252,9,0,44,155,44,110,33,210,6,0,46,27,22,176,107,23,10,0,46,27,22,176,195,23,10,0,48,27,189,232,82,231,9,0,49,27,139,231,243,206,9,0,49,27,139,231,42,207,9,0,49,27,139,231,98,207,9,0,52,27,110,137,224,251,6,0,52,27,178,160,27,146,10,0,52,27,178,160,81,146,10,0,54,155,189,115,24,251,8,0,54,155,189,115,62,251,8,0,54,155,189,115,94,251,8,0,54,155,99,222,101,246,10,0,55,155,227,253,39,153,6,0,56,27,207,16,136,58,7,0,57,27,41,156,109,172,9,0,57,27,41,156,178,173,9,0,57,27,41,156,250,174,9,0,57,155,215,54,166,98,10,0,58,155,70,132,117,79,7,0,59,27,104,13,1,216,5,0,60,27,117,82,179,181,7,0,62,155,87,58,247,72,10,0,64,27,43,71,255,201,6,0,64,27,43,71,22,247,8,0,64,27,43,71,60,247,8,0,66,155,161,148,252,95,9,0,66,155,161,148,18,96,9,0,66,155,196,73,27,119,9,0,66,155,196,73,102,119,9,0,70,155,140,186,245,28,10,0,70,155,140,186,145,31,10,0,71,155,191,14,71,236,6,0,73,155,201,202,63,14,9,0,73,155,201,202,116,14,9,0,73,155,201,202,116,94,10,0,76,155,137,150,182,234,6,0,77,155,83,243,171,49,7,0,80,27,45,224,79,59,6,0,81,155,205,88,231,235,10,0,82,27,231,94,200,6,9,0,82,27,231,94,117,7,9,0,84,155,87,92,91,17,9,0,84,155,87,92,177,17,9,0,84,155,87,92,1,18,9,0,86,27,216,178,126,237,5,0,87,155,32,158,144,218,5,0,87,27,225,137,117,79,7,0,91,27,35,222,212,243,6,0,92,155,186,148,164,23,7,0,92,27,92,94,138,115,8,0,92,27,92,94,117,124,8,0,92,27,92,94,105,133,8,0,94,27,251,241,123,236,9,0,97,155,135,0,138,115,8,0,97,155,135,0,117,124,8,0,97,155,135,0,105,133,8,0,102,155,118,240,90,53,7,0,102,27,247,227,88,129,7,0,102,27,93,85,178,50,11,0,103,27,91,22,237,73,7,0,105,155,13,19,174,51,7,0,106,155,150,15,193,96,8,0,107,27,86,96,16,247,5,0,107,155,214,242,118,226,8,0,107,155,214,242,72,228,8,0,110,155,100,183,130,227,6,0,110,155,74,220,38,98,7,0,111,155,50,127,245,28,10,0,111,155,50,127,145,31,10,0,112,155,100,43,151,21,7,0,114,27,132,93,242,224,5,0,114,155,29,65,171,63,7,0,114,27,203,239,69,238,8,0,114,27,203,239,138,238,8,0,114,27,203,239,214,238,8,0,114,155,108,149,41,246,9,0,114,155,108,149,64,246,9,0,114,155,108,149,105,246,9,0,115,155,84,144,230,215,6,0,115,155,233,20,97,39,11,0,117,27,175,182,71,236,6,0,118,155,163,160,57,16,6,0,118,155,189,126,212,243,6,0,119,155,129,19,137,135,10,0,120,155,111,199,237,73,7,0,124,27,73,100,61,15,11,0,126,27,63,153,185,217,5,0,126,27,59,137,108,20,6,0,128,155,52,94,82,30,11,0,134,27,37,105,250,57,8,0,136,155,60,166,218,105,9,0,140,27,59,46,204,58,10,0,142,155,233,32,147,10,6,0,143,27,46,210,29,204,8,0,143,27,46,210,6,205,8,0,146,155,103,250,117,79,7,0,149,27,75,86,136,58,7,0,154,27,150,107,205,151,9,0,154,27,150,107,199,152,9,0,154,27,150,107,220,153,9,0,154,27,236,171,181,145,10,0,156,27,228,137,98,216,5,0,156,27,81,60,15,154,6,0,158,27,195,5,228,109,9,0,158,27,195,5,248,110,9,0,158,27,124,80,119,248,10,0,159,155,110,14,201,3,7,0,160,27,183,203,149,43,7,0,161,155,197,153,123,236,9,0,162,27,180,138,212,243,6,0,166,155,63,100,150,77,6,0,166,27,153,134,232,251,9,0,166,27,153,134,176,252,9,0,168,155,216,203,111,72,7,0,168,155,216,203,196,72,7,0,169,27,137,247,212,243,6,0,169,27,30,193,38,98,7,0,169,27,30,193,40,234,10,0,169,27,30,193,148,243,10,0,170,155,159,191,106,59,9,0,170,155,159,191,181,59,9,0,170,27,3,226,221,38,10,0,170,27,3,226,62,40,10,0,176,27,165,207,136,228,5,0,179,155,103,121,71,236,6,0,179,155,210,20,152,111,7,0,179,155,210,20,84,53,8,0,182,27,47,93,179,17,7,0,182,27,47,93,113,47,7,0,184,155,16,241,84,21,8,0,184,27,143,74,135,90,9,0,184,27,143,74,124,91,9,0,185,155,111,231,230,130,7,0,186,155,178,254,80,32,7,0,186,27,126,8,138,115,8,0,186,27,126,8,117,124,8,0,186,27,126,8,105,133,8,0,192,155,92,93,30,231,6,0,193,155,175,182,117,37,7,0,193,155,36,252,135,90,9,0,193,155,36,252,124,91,9,0,194,155,20,77,204,213,9,0,198,155,213,227,103,46,7,0,198,27,238,46,237,73,7,0,200,155,119,131,167,71,7,0,201,27,178,218,123,236,9,0,202,155,175,182,137,144,7,0,211,27,216,201,192,44,6,0,211,27,182,26,138,115,8,0,211,27,182,26,117,124,8,0,211,27,182,26,105,133,8,0,212,155,199,53,147,58,10,0,213,155,72,220,121,182,8,0,213,155,72,220,153,182,8,0,217,155,49,213,254,254,6,0,219,155,85,77,76,183,6,0,222,155,216,159,172,224,9,0,222,155,216,159,199,224,9,0,223,27,62,193,139,158,8,0,223,27,62,193,224,163,8,0,225,155,154,214,68,202,6,0,225,27,163,225,117,79,7,0,225,155,156,255,167,107,7,0,225,155,156,255,197,136,7,0,226,155,119,251,40,213,6,0,230,155,151,247,123,236,9,0,231,27,212,109,139,158,8,0,231,27,212,109,224,163,8,0,234,27,214,152,205,151,9,0,234,27,214,152,199,152,9,0,234,27,214,152,220,153,9,0,235,155,210,189,160,234,8,0,235,155,210,189,175,235,8,0,239,155,185,53,30,172,6,0,239,155,247,148,165,11,9,0,239,155,247,148,58,12,9,0,239,27,232,114,166,73,10,0,240,155,243,150,163,64,8,0,242,27,221,31,155,67,7,0,243,27,219,254,236,51,7,0,246,27,137,90,82,235,6,0,248,155,166,9,38,98,7,0,252,27,17,58,158,120,6,0,255,155,32,226,78,229,6,0,255,27,174,127,153,11,7,0,255,27,174,127,135,13,7,0,255,155,228,215,205,151,9,0,255,155,228,215,199,152,9,0,255,155,228,215,220,153,9,0,0,28,139,5,29,5,7,0,1,156,162,38,151,21,7,0,1,156,254,25,236,97,10,0,2,156,233,236,62,124,7,0,2,156,233,236,33,130,7,0,3,156,157,38,71,236,6,0,6,28,85,66,181,201,10,0,8,156,159,181,201,172,6,0,8,156,159,181,22,35,7,0,9,28,241,255,84,249,8,0,9,28,241,255,104,249,8,0,11,28,13,175,154,4,7,0,11,28,36,175,75,1,9,0,11,28,36,175,154,2,9,0,11,28,36,175,235,3,9,0,11,28,36,175,65,5,9,0,12,156,126,80,164,25,7,0,15,156,231,242,36,85,10,0,16,156,120,235,164,23,6,0,16,156,132,241,237,70,10,0,19,156,132,236,80,167,9,0,19,156,132,236,37,168,9,0,20,28,169,126,138,115,8,0,20,28,169,126,117,124,8,0,20,28,169,126,105,133,8,0,21,28,195,181,109,172,9,0,21,28,195,181,178,173,9,0,21,28,195,181,250,174,9,0,22,156,251,118,212,243,6,0,22,156,13,9,136,58,7,0,23,156,14,35,118,109,10,0,24,156,232,253,123,236,9,0,25,156,217,23,254,254,6,0,26,28,4,169,135,114,6,0,26,28,184,66,100,228,6,0,26,28,40,137,10,137,7,0,26,156,166,31,253,208,8,0,26,156,166,31,22,211,8,0,26,28,86,47,112,5,10,0,26,28,86,47,28,6,10,0,27,28,168,247,171,63,7,0,30,28,116,125,91,63,6,0,31,28,12,67,3,157,8,0,31,28,12,67,180,157,8,0,34,156,250,67,171,63,7,0,34,156,16,171,188,80,11,0,39,156,56,230,226,43,9,0,39,156,56,230,66,44,9,0,39,156,56,230,167,44,9,0,39,156,56,230,5,45,9,0,39,156,56,230,108,45,9,0,41,28,56,248,152,111,7,0,41,28,56,248,62,124,7,0,42,156,230,61,63,155,6,0,44,28,75,95,203,125,6,0,44,156,255,98,12,132,6,0,44,156,200,233,163,160,7,0,44,156,200,233,206,160,7,0,46,156,200,6,138,115,8,0,46,156,200,6,117,124,8,0,46,156,200,6,105,133,8,0,47,156,186,148,191,231,7,0,48,28,157,38,103,201,5,0,48,28,157,38,243,80,6,0,48,28,157,38,222,119,6,0,48,28,157,38,153,11,7,0,48,28,157,38,135,13,7,0,48,156,83,150,117,79,7,0,48,28,157,38,144,93,7,0,50,28,94,77,130,227,6,0,51,156,218,46,24,201,6,0,54,28,223,233,167,144,6,0,54,28,223,233,198,144,6,0,57,28,79,12,220,99,11,0,57,28,79,12,254,100,11,0,60,28,129,99,38,98,7,0,60,156,85,28,129,87,10,0,62,28,232,61,71,236,6,0,64,156,124,111,19,234,7,0,64,156,124,111,52,234,7,0,64,156,124,111,85,234,7,0,66,28,76,213,232,191,8,0,66,28,76,213,162,193,8,0,69,156,10,82,236,51,7,0,70,156,221,211,240,130,6,0,70,28,28,152,180,28,7,0,71,28,12,97,71,236,6,0,73,28,69,59,95,0,10,0,73,28,69,59,200,0,10,0,74,156,150,250,212,243,6,0,76,156,218,31,224,146,8,0,76,156,218,31,132,150,8,0,77,28,128,244,27,28,8,0,78,28,56,114,179,17,7,0,78,28,56,114,18,175,7,0,81,156,57,228,109,172,9,0,81,156,57,228,178,173,9,0,81,156,57,228,250,174,9,0,84,156,129,228,141,195,8,0,84,156,129,228,112,196,8,0,84,156,129,228,75,197,8,0,89,28,133,157,237,73,7,0,90,28,193,120,171,49,7,0,90,28,193,120,234,75,11,0,91,28,108,89,155,169,6,0,93,156,94,79,236,51,7,0,93,156,94,79,166,220,8,0,93,156,94,79,241,220,8,0,93,28,43,78,118,226,8,0,93,28,43,78,72,228,8,0,94,28,67,180,117,37,7,0,95,156,185,245,249,154,8,0,95,156,185,245,148,155,8,0,95,156,185,245,52,156,8,0,95,156,237,161,160,163,9,0,95,156,237,161,193,163,9,0,98,156,237,241,133,220,6,0,98,28,229,85,123,236,9,0,99,28,149,9,201,230,6,0,99,28,125,139,90,56,9,0,99,28,125,139,171,56,9,0,99,28,125,139,54,57,9,0,102,28,196,21,254,254,6,0,103,28,121,27,177,62,7,0,105,28,99,244,208,83,11,0,105,28,99,244,94,86,11,0,108,28,27,78,153,11,7,0,108,28,27,78,135,13,7,0,108,156,139,251,117,79,7,0,109,28,175,226,75,1,9,0,109,28,175,226,154,2,9,0,109,28,175,226,235,3,9,0,109,28,175,226,65,5,9,0,110,28,63,150,63,83,6,0,112,156,217,251,217,225,5,0,112,28,214,214,68,38,9,0,112,28,214,214,82,38,9,0,113,28,172,111,245,41,7,0,115,28,65,116,136,58,7,0,116,28,159,248,159,44,10,0,116,28,159,248,173,44,10,0,116,28,159,248,187,44,10,0,117,28,217,248,68,81,6,0,117,28,211,126,117,79,7,0,120,28,231,242,169,15,9,0,120,28,231,242,204,15,9,0,120,28,231,242,241,15,9,0,121,156,135,199,232,191,8,0,121,156,135,199,162,193,8,0,122,28,113,163,107,198,10,0,124,156,198,229,65,213,7,0,126,156,115,117,30,231,6,0,130,156,97,168,86,129,6,0,130,156,122,155,50,92,11,0,131,156,70,251,70,71,6,0,133,28,89,5,123,236,9,0,133,156,228,251,146,94,10,0,134,28,199,117,114,243,8,0,134,28,199,117,37,244,8,0,136,156,125,135,179,229,5,0,136,28,80,95,63,15,6,0,136,28,174,168,138,115,8,0,136,28,174,168,117,124,8,0,136,28,174,168,105,133,8,0,139,156,1,208,155,67,7,0,140,28,5,145,135,90,9,0,140,28,5,145,124,91,9,0,141,156,169,137,163,60,6,0,142,156,182,68,240,226,6,0,142,28,54,18,80,49,7,0,142,28,54,18,171,49,7,0,142,28,18,109,202,67,11,0,147,28,14,246,139,158,8,0,147,28,14,246,224,163,8,0,147,28,215,255,202,98,11,0,152,28,86,202,210,234,9,0,152,28,86,202,237,234,9,0,154,156,99,102,138,115,8,0,154,156,99,102,117,124,8,0,154,156,99,102,105,133,8,0,155,156,141,219,39,205,5,0,155,156,25,156,249,198,6,0,157,156,74,231,29,5,7,0,157,156,148,92,220,12,10,0,157,156,148,92,22,13,10,0,161,28,21,143,138,115,8,0,161,28,21,143,117,124,8,0,161,28,21,143,105,133,8,0,165,156,237,113,136,58,7,0,166,156,153,124,26,127,6,0,166,28,159,61,139,214,9,0,166,28,159,61,234,214,9,0,166,28,159,61,70,215,9,0,169,28,58,154,114,243,8,0,169,28,58,154,37,244,8,0,171,28,30,158,114,41,8,0,171,28,30,158,82,57,8,0,174,28,178,248,234,102,6,0,175,156,91,102,130,227,6,0,176,156,161,115,24,251,8,0,176,156,161,115,62,251,8,0,176,156,161,115,94,251,8,0,177,28,168,133,38,98,7,0,178,28,38,99,123,236,9,0,179,156,194,20,36,217,5,0,179,28,118,54,125,44,7,0,181,156,171,199,208,67,6,0,182,156,73,197,68,151,7,0,183,28,252,196,123,236,9,0,189,156,238,55,87,219,10,0,190,156,89,195,133,220,6,0,190,156,170,172,29,5,7,0,190,156,208,72,247,55,7,0,191,28,72,92,238,137,7,0,191,28,210,60,224,146,8,0,191,28,210,60,132,150,8,0,195,28,45,12,35,17,6,0,200,28,65,203,130,201,6,0,200,28,222,175,239,128,10,0,202,156,220,35,62,221,7,0,205,28,25,130,152,111,7,0,205,28,25,130,206,62,8,0,205,28,25,130,99,63,8,0,205,28,25,130,4,64,8,0,205,28,25,130,73,218,9,0,206,28,222,20,224,251,6,0,206,156,174,127,218,249,10,0,208,156,36,172,254,243,5,0,208,156,36,172,153,89,7,0,209,28,49,83,4,255,8,0,209,28,49,83,50,255,8,0,209,28,172,94,84,241,10,0,211,156,239,150,145,31,6,0,211,28,19,14,59,66,11,0,216,28,208,116,133,164,6,0,219,156,219,212,236,51,7,0,219,28,196,24,213,41,10,0,219,28,196,24,87,42,10,0,220,28,146,204,102,30,9,0,220,28,146,204,125,30,9,0,223,156,43,81,145,217,10,0,223,156,103,157,92,228,10,0,225,28,73,37,71,236,6,0,225,28,78,124,197,253,6,0,225,28,42,237,39,152,7,0,225,28,73,37,99,105,8,0,225,28,73,37,149,105,8,0,226,156,60,141,212,243,6,0,226,28,227,115,237,73,7,0,227,156,81,194,0,144,8,0,227,156,81,194,31,144,8,0,227,156,81,194,71,144,8,0,228,156,96,114,198,50,6,0,229,156,128,42,217,53,6,0,229,156,128,42,133,93,8,0,229,28,209,77,113,68,11,0,232,156,251,126,247,55,7,0,238,156,179,223,38,98,7,0,240,156,70,38,245,228,6,0,240,156,121,255,71,236,6,0,240,156,226,223,84,75,10,0,241,28,111,249,118,226,8,0,241,28,111,249,72,228,8,0,242,156,204,213,103,46,7,0,243,156,15,58,90,230,5,0,245,28,100,45,12,165,10,0,246,28,83,184,72,204,9,0,247,28,46,131,255,160,6,0,249,156,248,112,100,71,7,0,250,28,173,85,227,218,6,0,250,28,173,85,101,219,6,0,250,28,173,85,74,177,7,0,250,156,201,107,46,16,10,0,251,156,162,79,139,158,8,0,251,156,162,79,224,163,8,0,252,28,49,175,102,179,6,0,253,156,109,127,138,115,8,0,253,156,109,127,117,124,8,0,253,156,109,127,105,133,8,0,255,28,76,24,29,204,8,0,255,28,76,24,6,205,8,0,1,29,76,71,202,8,9,0,1,29,76,71,236,8,9,0,5,29,125,78,112,78,6,0,5,157,21,179,151,21,7,0,5,29,77,196,46,43,7,0,6,29,162,193,155,67,7,0,7,157,157,38,39,61,6,0,7,157,157,38,39,92,6,0,7,157,157,38,59,95,6,0,7,157,157,38,82,95,6,0,7,157,157,38,5,199,7,0,7,29,56,237,148,251,7,0,11,29,118,250,127,63,9,0,11,29,118,250,181,63,9,0,11,29,118,250,247,63,9,0,13,157,77,103,178,233,6,0,14,157,205,223,50,211,6,0,14,157,97,153,241,95,8,0,16,29,86,71,212,77,9,0,16,29,86,71,34,78,9,0,18,29,174,83,38,98,7,0,18,29,174,83,20,214,7,0,20,157,176,55,71,236,6,0,21,157,7,86,136,58,7,0,21,29,114,221,103,245,8,0,21,29,114,221,151,245,8,0,25,157,5,156,197,253,6,0,25,157,22,77,237,73,7,0,26,157,123,189,38,98,7,0,29,29,27,0,212,243,6,0,29,29,27,0,169,243,10,0,33,157,165,86,197,26,6,0,33,157,165,86,66,27,6,0,33,29,184,10,11,9,7,0,33,29,53,14,113,47,7,0,33,29,184,10,98,91,10,0,33,29,74,246,21,121,10,0,36,29,71,168,12,234,6,0,39,29,169,76,224,146,8,0,39,29,169,76,132,150,8,0,40,29,244,240,101,226,6,0,40,29,244,240,5,20,11,0,41,157,178,102,177,133,7,0,41,157,178,102,38,134,7,0,48,157,217,129,179,235,9,0,48,157,217,129,240,235,9,0,49,29,93,168,193,142,6,0,51,29,147,41,138,115,8,0,51,29,147,41,117,124,8,0,51,29,147,41,105,133,8,0,52,29,168,162,232,191,8,0,52,29,168,162,162,193,8,0,57,29,125,53,115,43,7,0,58,29,233,63,71,236,6,0,62,157,138,123,32,88,6,0,63,157,216,53,112,5,10,0,63,157,216,53,28,6,10,0,64,29,161,220,152,111,7,0,64,29,161,220,62,124,7,0,64,29,89,178,103,170,8,0,64,29,89,178,188,170,8,0,65,29,227,206,135,238,7,0,68,157,227,240,104,244,9,0,68,157,227,240,251,244,9,0,68,157,227,240,146,245,9,0,71,29,136,107,228,109,9,0,71,29,136,107,248,110,9,0,71,157,4,134,107,23,10,0,71,157,4,134,195,23,10,0,71,157,143,67,120,232,10,0,76,157,213,56,40,213,6,0,76,29,227,88,237,73,7,0,77,157,166,62,57,171,8,0,77,157,166,62,57,171,8,0,77,157,166,62,133,172,8,0,77,157,166,62,133,172,8,0,77,157,166,62,211,173,8,0,77,157,166,62,211,173,8,0,79,29,17,39,217,35,7,0,81,157,13,215,46,236,5,0,81,29,177,151,70,98,11,0,83,157,144,226,224,133,10,0,85,157,92,151,243,69,7,0,87,29,149,101,60,18,11,0,88,157,37,63,33,96,6,0,88,157,37,63,164,85,8,0,89,29,36,196,207,105,10,0,91,157,143,56,227,108,7,0,91,157,143,56,10,28,10,0,91,157,143,56,74,28,10,0,91,157,143,56,134,28,10,0,92,157,65,61,245,28,10,0,92,157,65,61,145,31,10,0,95,157,205,158,180,28,7,0,96,29,149,158,20,15,7,0,96,29,149,158,179,17,7,0,97,157,86,20,91,17,9,0,97,157,86,20,177,17,9,0,97,157,86,20,1,18,9,0,97,157,226,171,221,38,10,0,97,157,226,171,62,40,10,0,98,29,76,20,90,150,9,0,98,29,76,20,117,150,9,0,99,157,106,126,172,213,10,0,100,29,132,79,138,115,8,0,100,29,132,79,117,124,8,0,100,29,132,79,105,133,8,0,103,29,38,215,136,76,6,0,106,157,172,181,90,175,8,0,106,157,172,181,74,176,8,0,108,157,34,124,139,158,8,0,108,157,34,124,224,163,8,0,108,29,196,175,154,222,10,0,110,29,11,13,71,236,6,0,111,157,110,56,205,151,9,0,111,157,110,56,199,152,9,0,111,157,110,56,220,153,9,0,112,29,194,187,40,235,5,0,112,29,5,159,215,26,6,0,113,157,18,19,109,170,6,0,113,157,18,19,61,6,8,0,115,29,150,60,113,47,7,0,116,29,243,35,71,236,6,0,117,157,36,105,141,217,5,0,122,29,17,237,72,202,8,0,122,29,17,237,175,202,8,0,130,157,17,109,232,191,8,0,130,157,17,109,162,193,8,0,131,29,198,139,57,171,8,0,131,29,198,139,133,172,8,0,131,29,198,139,211,173,8,0,132,29,176,94,140,142,8,0,132,29,176,94,235,142,8,0,132,29,176,94,83,143,8,0,133,29,146,10,71,236,6,0,135,29,192,111,216,165,7,0,137,157,124,141,80,32,7,0,142,29,211,57,72,104,6,0,142,157,129,143,17,184,8,0,146,29,48,194,51,241,8,0,146,29,48,194,198,241,8,0,147,157,184,220,161,12,6,0,147,29,212,6,17,221,7,0,147,29,193,165,10,160,10,0,147,29,193,165,61,160,10,0,148,29,61,247,251,34,11,0,151,29,112,189,143,171,6,0,152,157,54,111,236,51,7,0,159,157,177,199,104,244,9,0,159,157,177,199,251,244,9,0,159,157,177,199,146,245,9,0,160,157,170,2,83,41,7,0,162,29,235,111,225,80,6,0,162,157,92,224,175,30,7,0,162,157,139,14,123,236,9,0,165,29,198,90,145,249,5,0,167,29,10,50,82,60,10,0,168,29,123,71,71,236,6,0,168,157,141,81,141,230,9,0,168,157,141,81,217,230,9,0,170,29,132,49,139,158,8,0,170,29,132,49,224,163,8,0,171,157,174,216,236,51,7,0,172,29,204,72,223,18,6,0,174,29,108,156,219,1,7,0,176,29,5,82,153,11,7,0,176,29,5,82,135,13,7,0,176,29,151,222,2,23,7,0,179,29,42,118,234,187,8,0,179,29,42,118,25,188,8,0,180,29,107,219,179,222,8,0,180,29,107,219,152,223,8,0,184,29,211,95,128,105,9,0,184,29,211,95,148,105,9,0,185,29,47,103,135,166,7,0,185,29,47,103,179,166,7,0,185,29,47,103,229,166,7,0,185,29,170,136,202,124,10,0,187,157,18,158,101,205,5,0,188,29,14,15,32,178,10,0,190,157,197,219,92,201,6,0,191,157,228,126,123,236,9,0,192,157,244,112,119,199,6,0,193,29,115,92,228,109,9,0,193,29,115,92,248,110,9,0,195,29,85,188,28,185,6,0,197,157,120,111,0,3,6,0,197,157,35,187,30,171,9,0,201,29,164,85,183,94,11,0,202,29,91,46,90,53,7,0,206,157,84,92,66,85,10,0,209,157,248,174,182,114,8,0,209,29,129,32,123,236,9,0,214,157,3,187,254,254,6,0,214,157,135,225,152,111,7,0,215,157,98,71,117,79,7,0,216,157,127,200,158,250,10,0,218,29,213,45,136,58,7,0,220,29,190,151,99,66,8,0,221,157,217,4,212,243,6,0,225,29,229,247,17,56,10,0,226,29,87,63,54,233,6,0,228,29,215,79,212,243,6,0,231,157,94,12,82,88,6,0,240,29,73,42,99,17,6,0,250,29,117,173,118,226,8,0,250,29,117,173,72,228,8,0,251,29,68,101,82,231,9,0,251,29,216,114,175,221,10,0,254,157,199,200,254,28,6,0,254,157,199,200,17,29,6,0,0,30,139,162,36,202,10,0,4,30,120,134,91,17,9,0,4,30,120,134,177,17,9,0,4,30,120,134,1,18,9,0,5,30,113,15,246,231,5,0,6,158,159,4,204,12,8,0,6,158,162,191,30,171,9,0,7,158,203,171,22,217,9,0,7,158,203,171,103,217,9,0,8,158,212,51,82,231,9,0,10,30,157,38,195,210,5,0,10,30,157,38,60,89,6,0,15,30,85,114,151,21,7,0,17,158,40,94,54,22,11,0,18,30,226,126,138,115,8,0,18,30,226,126,117,124,8,0,18,30,226,126,105,133,8,0,18,158,18,43,121,71,10,0,21,30,97,35,200,140,6,0,21,30,174,230,217,62,7,0,21,30,209,27,117,79,7,0,22,30,117,108,71,236,6,0,22,30,25,73,117,79,7,0,23,158,150,59,72,229,5,0,24,158,87,120,118,226,8,0,24,158,87,120,72,228,8,0,26,30,41,61,80,32,7,0,27,30,9,146,81,107,6,0,29,158,98,165,75,1,9,0,29,158,98,165,154,2,9,0,29,158,98,165,235,3,9,0,29,158,98,165,65,5,9,0,31,158,96,27,100,13,9,0,31,158,96,27,140,13,9,0,32,30,72,76,34,228,5,0,32,158,149,161,22,62,10,0,33,30,118,112,247,55,7,0,33,30,92,58,239,51,8,0,33,30,92,58,28,52,8,0,33,30,92,58,71,52,8,0,33,30,92,58,113,52,8,0,33,30,92,58,154,52,8,0,34,158,196,170,232,251,9,0,34,158,196,170,176,252,9,0,36,158,19,145,117,79,7,0,38,30,227,107,0,197,6,0,39,30,0,164,236,51,7,0,40,158,201,148,170,205,5,0,40,158,201,148,186,190,7,0,40,158,201,148,234,190,7,0,41,30,112,5,242,39,9,0,41,30,112,5,19,40,9,0,44,30,46,51,139,158,8,0,44,30,46,51,224,163,8,0,45,158,140,255,51,80,8,0,53,30,172,167,117,37,7,0,54,158,84,175,153,11,7,0,55,30,153,134,71,236,6,0,55,158,245,97,199,145,7,0,57,30,150,116,83,205,6,0,59,30,56,26,20,15,7,0,59,30,104,0,117,37,7,0,59,30,240,251,237,73,7,0,61,158,248,111,113,232,6,0,61,158,88,160,69,67,7,0,66,30,235,241,64,86,9,0,66,30,235,241,109,86,9,0,66,30,216,245,6,23,10,0,66,30,216,245,38,23,10,0,67,30,183,141,212,243,6,0,71,158,245,126,119,225,6,0,74,30,157,38,91,160,6,0,77,158,66,152,139,158,8,0,77,158,66,152,224,163,8,0,79,30,236,23,29,5,7,0,82,158,3,253,224,251,6,0,83,30,198,125,99,115,6,0,84,30,195,130,117,79,7,0,92,30,147,0,210,56,10,0,93,158,1,145,231,29,7,0,94,30,202,19,103,46,7,0,95,158,20,246,130,227,6,0,95,30,213,200,236,51,7,0,95,30,166,224,91,111,7,0,95,30,166,224,116,128,7,0,99,30,189,167,171,63,7,0,99,30,6,185,75,1,9,0,99,30,6,185,154,2,9,0,99,30,6,185,235,3,9,0,99,30,6,185,65,5,9,0,104,30,152,118,38,98,7,0,105,158,100,252,136,58,7,0,105,30,122,27,165,9,9,0,105,30,122,27,221,9,9,0,105,30,122,27,22,10,9,0,105,158,54,167,44,115,10,0,108,158,34,35,212,243,6,0,108,158,198,151,179,222,8,0,108,158,198,151,152,223,8,0,110,30,50,153,4,195,9,0,110,30,50,153,29,195,9,0,111,30,240,161,180,28,7,0,112,158,75,129,117,79,7,0,114,30,184,109,13,32,9,0,114,30,184,109,195,32,9,0,115,30,238,76,156,205,6,0,115,30,214,148,11,9,7,0,116,30,125,135,213,228,6,0,116,30,15,24,121,97,7,0,116,30,15,24,210,110,7,0,116,158,188,129,50,100,9,0,116,158,188,129,77,100,9,0,121,30,42,188,123,236,9,0,123,158,37,106,3,21,11,0,124,30,224,25,105,113,10,0,125,158,175,188,140,66,7,0,125,158,175,188,234,66,7,0,126,30,49,37,64,248,7,0,129,158,2,67,130,227,6,0,132,30,253,14,212,243,6,0,132,30,231,115,177,171,10,0,134,158,84,127,193,135,10,0,134,158,19,248,133,103,11,0,136,30,56,203,34,47,7,0,136,30,56,203,52,47,7,0,137,30,217,111,247,208,6,0,138,30,82,22,117,79,7,0,138,30,58,201,123,236,9,0,140,158,88,27,125,44,7,0,140,158,88,128,224,146,8,0,140,158,88,128,132,150,8,0,145,158,223,142,30,231,6,0,147,158,46,101,84,127,6,0,147,158,161,99,197,253,6,0,147,158,94,203,22,114,10,0,149,158,23,134,179,17,7,0,152,158,175,210,200,6,9,0,152,158,175,210,117,7,9,0,155,30,154,77,125,44,7,0,157,158,248,125,105,177,8,0,157,158,248,125,162,177,8,0,159,30,76,6,224,146,8,0,159,30,76,6,132,150,8,0,160,158,213,130,88,91,7,0,162,158,37,63,80,32,7,0,166,30,205,32,135,73,11,0,167,158,26,171,179,235,9,0,167,158,26,171,240,235,9,0,170,30,97,155,250,57,8,0,170,158,137,84,180,84,8,0,171,158,221,40,237,73,7,0,172,158,114,149,237,73,7,0,177,158,165,230,147,208,10,0,178,30,222,3,219,55,8,0,178,30,222,3,12,56,8,0,178,30,222,3,73,56,8,0,178,30,222,3,121,56,8,0,178,30,222,3,187,56,8,0,179,158,107,195,230,71,9,0,179,158,107,195,83,72,9,0,179,30,174,83,123,236,9,0,181,30,194,236,206,87,9,0,181,30,194,236,25,88,9,0,182,30,167,40,140,138,6,0,182,158,196,187,136,58,7,0,182,158,133,254,139,158,8,0,182,158,133,254,224,163,8,0,183,158,252,145,73,169,7,0,183,158,165,7,224,146,8,0,183,158,165,7,132,150,8,0,184,158,41,186,212,243,6,0,187,30,18,123,153,11,7,0,187,30,18,123,135,13,7,0,188,158,74,177,249,154,8,0,188,158,74,177,148,155,8,0,188,158,74,177,52,156,8,0,189,158,198,1,14,220,5,0,189,30,164,47,208,43,10,0,189,30,164,47,255,43,10,0,189,30,164,47,45,44,10,0,189,30,164,47,104,44,10,0,190,30,65,57,66,230,6,0,192,158,153,51,251,134,10,0,195,30,63,90,29,5,7,0,195,158,110,174,214,184,7,0,198,30,221,143,131,48,7,0,198,30,55,255,99,66,8,0,199,158,114,89,40,58,10,0,200,158,21,91,144,203,5,0,207,158,154,199,29,102,6,0,208,30,12,179,87,109,8,0,213,30,255,231,212,243,6,0,213,158,30,167,33,39,11,0,215,158,158,254,29,5,7,0,216,158,89,31,123,232,5,0,219,158,244,228,151,21,7,0,219,30,29,129,136,58,7,0,221,30,154,98,96,193,5,0,223,30,5,8,10,206,10,0,224,30,121,17,153,11,7,0,224,30,121,17,135,13,7,0,226,158,243,115,162,247,9,0,226,158,243,115,195,247,9,0,228,158,183,11,74,149,9,0,228,158,183,11,120,149,9,0,230,30,210,102,246,66,11,0,233,30,21,252,117,37,7,0,234,30,144,108,118,226,8,0,234,30,144,108,72,228,8,0,239,30,110,209,169,194,6,0,240,158,169,199,215,255,6,0,241,158,120,83,155,67,7,0,241,30,213,138,138,115,8,0,241,30,213,138,117,124,8,0,241,30,213,138,105,133,8,0,243,158,36,62,75,1,9,0,243,158,36,62,154,2,9,0,243,158,36,62,235,3,9,0,243,158,36,62,65,5,9,0,245,30,39,2,7,103,10,0,245,30,39,2,39,103,10,0,247,158,237,95,139,158,8,0,247,158,237,95,224,163,8,0,248,30,38,255,219,238,10,0,250,158,86,183,62,28,7,0,252,158,107,237,138,115,8,0,252,158,107,237,117,124,8,0,252,158,107,237,105,133,8,0,254,158,64,53,117,37,7,0,254,30,163,162,136,58,7,0,3,31,54,138,38,98,7,0,3,31,54,138,112,117,7,0,6,31,114,159,27,119,9,0,6,31,114,159,102,119,9,0,6,159,212,194,155,205,10,0,7,159,107,223,238,25,6,0,7,159,65,251,133,230,10,0,8,31,132,8,141,207,6,0,9,31,42,209,133,220,6,0,11,31,99,244,139,158,8,0,11,31,99,244,224,163,8,0,11,31,84,182,153,207,8,0,11,31,84,182,44,208,8,0,13,159,135,86,151,97,6,0,13,31,213,213,112,5,10,0,13,31,213,213,28,6,10,0,14,159,44,56,229,49,9,0,14,159,44,56,17,50,9,0,16,31,85,32,0,115,6,0,16,31,96,166,30,231,6,0,16,31,209,211,103,46,7,0,17,159,229,217,176,41,7,0,17,31,85,136,84,21,8,0,17,31,238,204,29,204,8,0,17,31,238,204,6,205,8,0,18,159,178,193,80,32,7,0,19,31,83,200,200,6,9,0,19,31,83,200,117,7,9,0,20,31,187,202,136,58,7,0,20,31,198,222,16,158,10,0,22,31,17,127,252,7,6,0,25,159,242,111,144,62,11,0,26,159,200,5,4,25,7,0,26,31,220,8,227,108,7,0,26,31,220,8,152,111,7,0,26,31,21,107,180,2,8,0,26,31,220,8,252,231,8,0,28,159,33,73,113,47,7,0,29,159,55,180,80,32,7,0,31,31,188,87,154,4,7,0,33,31,151,11,183,110,8,0,33,31,151,11,2,111,8,0,34,159,211,229,232,82,11,0,36,159,115,124,228,109,9,0,36,159,115,124,248,110,9,0,37,31,27,126,136,58,7,0,41,159,179,72,194,109,6,0,47,159,106,132,1,208,5,0,50,31,158,243,136,58,7,0,54,31,200,57,245,28,10,0,54,31,200,57,145,31,10,0,54,159,203,89,22,62,10,0,54,31,187,129,169,243,10,0,55,159,241,39,62,241,5,0,55,31,228,197,57,171,8,0,55,31,228,197,133,172,8,0,55,31,228,197,211,173,8,0,59,31,172,69,224,146,8,0,59,31,172,69,132,150,8,0,60,31,116,137,245,28,10,0,60,31,116,137,145,31,10,0,62,31,124,94,241,157,10,0,65,31,57,233,152,111,7,0,71,159,78,75,163,255,5,0,71,159,96,54,179,222,8,0,71,159,96,54,152,223,8,0,72,31,42,90,138,115,8,0,72,31,42,90,117,124,8,0,72,31,42,90,105,133,8,0,72,31,42,90,115,7,10,0,72,31,42,90,190,7,10,0,72,31,42,90,10,8,10,0,74,159,83,108,20,15,7,0,74,159,83,108,179,17,7,0,74,159,92,34,152,111,7,0,74,159,92,34,46,123,7,0,75,159,62,153,125,107,8,0,79,31,170,254,191,75,11,0,80,31,22,63,31,149,6,0,85,159,233,197,106,59,9,0,85,159,233,197,181,59,9,0,87,159,192,129,120,1,11,0,88,159,147,27,248,141,6,0,89,31,51,35,89,206,6,0,91,31,9,209,117,37,7,0,92,31,44,93,235,204,10,0,93,159,162,16,226,188,7,0,94,159,108,93,30,60,10,0,95,31,17,127,247,55,7,0,96,159,215,166,228,198,5,0,96,159,215,89,152,111,7,0,96,159,215,89,173,169,8,0,97,159,169,122,136,58,7,0,98,31,175,24,20,15,7,0,98,31,175,24,179,17,7,0,101,31,228,157,178,54,6,0,102,159,65,194,138,115,8,0,102,159,65,194,117,124,8,0,102,159,65,194,105,133,8,0,105,159,113,72,38,103,9,0,105,159,113,72,89,103,9,0,108,31,108,57,247,55,7,0,110,159,95,199,179,222,8,0,110,159,95,199,152,223,8,0,110,159,130,44,224,96,11,0,111,31,65,39,117,37,7,0,113,159,11,70,11,146,10,0,115,31,228,189,167,107,7,0,115,31,228,189,212,123,7,0,115,31,203,58,193,118,10,0,118,159,207,11,227,108,7,0,118,159,207,11,161,110,7,0,120,159,76,253,198,185,10,0,121,31,167,125,68,202,6,0,121,31,237,31,117,79,7,0,122,159,23,253,38,98,7,0,122,159,23,253,195,137,7,0,124,159,93,51,66,91,11,0,127,159,163,132,61,40,7,0,131,31,251,129,69,193,6,0,131,31,237,93,11,201,8,0,131,31,237,93,33,201,8,0,132,159,217,84,120,188,6,0,133,159,41,221,202,187,10,0,136,31,208,248,117,79,7,0,140,31,139,36,243,206,9,0,140,31,139,36,42,207,9,0,140,31,139,36,98,207,9,0,140,159,213,151,137,70,11,0,141,31,154,64,237,73,7,0,145,31,237,29,96,222,6,0,145,159,11,207,117,79,7,0,145,159,194,214,117,79,7,0,151,31,252,145,71,236,6,0,154,31,117,78,117,79,7,0,154,31,45,129,208,135,10,0,160,159,97,128,238,143,6,0,160,31,49,238,68,202,6,0,160,159,118,154,140,66,7,0,160,159,118,154,234,66,7,0,167,159,117,197,80,32,7,0,168,31,158,3,153,11,7,0,168,31,158,3,135,13,7,0,168,159,201,129,117,79,7,0,168,31,158,3,64,97,7,0,168,31,158,3,33,136,7,0,168,159,201,129,170,147,7,0,169,31,77,82,109,172,9,0,169,31,77,82,178,173,9,0,169,31,77,82,250,174,9,0,170,31,172,176,221,38,10,0,170,31,172,176,62,40,10,0,171,31,208,41,130,234,5,0,171,31,208,41,208,236,7,0,171,31,208,41,241,236,7,0,171,31,208,41,20,237,7,0,171,31,208,41,74,102,9,0,171,31,208,41,93,102,9,0,171,31,208,41,191,115,10,0,173,159,163,191,139,158,8,0,173,159,163,191,224,163,8,0,175,159,207,142,71,236,6,0,175,31,206,173,152,111,7,0,175,31,206,173,84,53,8,0,177,31,157,38,29,5,7,0,177,31,3,127,117,79,7,0,182,31,105,78,139,158,8,0,182,31,105,78,224,163,8,0,186,159,8,198,191,233,5,0,189,31,111,98,227,218,6,0,189,31,111,98,101,219,6,0,189,159,244,38,153,11,7,0,191,159,73,33,212,243,6,0,191,31,40,74,190,139,10,0,194,31,135,34,171,63,7,0,194,31,69,232,100,71,7,0,194,31,135,34,139,158,8,0,194,31,135,34,224,163,8,0,195,31,177,133,139,158,8,0,195,31,177,133,224,163,8,0,196,159,63,48,166,75,9,0,196,159,63,48,191,75,9,0,197,159,177,69,164,239,5,0,197,31,227,51,193,76,8,0,197,31,227,51,254,24,11,0,198,31,53,118,99,42,7,0,198,31,25,110,55,86,10,0,199,31,73,180,117,79,7,0,201,159,45,127,48,7,6,0,201,159,45,127,234,165,6,0,202,31,30,110,139,158,8,0,202,31,30,110,224,163,8,0,204,159,236,105,155,67,7,0,204,159,69,3,44,90,10,0,204,31,126,231,184,241,10,0,205,31,73,64,157,86,10,0,206,159,17,225,171,206,6,0,206,31,113,49,154,221,6,0,206,159,17,225,12,104,10,0,207,159,61,165,108,100,6,0,208,159,141,142,125,177,9,0,208,159,141,142,224,177,9,0,208,159,141,142,64,178,9,0,211,31,136,84,234,72,7,0,213,31,248,136,151,163,6,0,214,159,235,65,81,239,8,0,214,159,235,65,40,240,8,0,215,31,134,149,228,109,9,0,215,31,134,149,248,110,9,0,215,159,78,221,226,154,9,0,215,159,78,221,114,155,9,0,215,31,9,88,123,236,9,0,217,159,234,129,3,157,8,0,217,159,234,129,180,157,8,0,218,31,20,54,59,143,6,0,221,31,15,76,75,142,9,0,221,31,15,76,201,142,9,0,221,31,15,76,84,143,9,0,222,31,5,199,125,44,7,0,222,159,101,91,78,11,10,0,222,159,101,91,112,11,10,0,222,159,157,18,106,152,10,0,223,31,231,32,249,209,5,0,224,31,248,13,72,204,9,0,230,159,168,67,218,113,9,0,230,159,168,67,120,114,9,0,231,31,80,181,179,222,8,0,231,31,80,181,152,223,8,0,232,31,255,93,107,210,6,0,233,159,215,56,145,79,9,0,233,159,215,56,166,79,9,0,233,159,106,35,30,171,9,0,235,159,10,64,117,79,7,0,237,159,24,182,138,115,8,0,237,159,24,182,117,124,8,0,237,159,24,182,105,133,8,0,241,31,217,85,38,253,8,0,241,31,217,85,173,253,8,0,241,31,3,145,3,93,10,0,241,159,99,241,174,116,10,0,242,159,169,181,60,219,10,0,244,159,191,253,250,55,6,0,244,31,129,86,136,58,7,0,249,31,13,4,24,229,10,0,253,159,122,81,89,83,10,0,253,159,122,81,117,83,10,0,254,159,93,157,107,210,6,0,254,159,249,62,176,66,10,0,2,160,141,254,155,67,7,0,2,32,53,87,138,115,8,0,2,32,53,87,117,124,8,0,2,32,53,87,105,133,8,0,7,160,61,16,236,51,7,0,8,32,187,142,123,236,9,0,10,160,117,229,5,159,9,0,10,160,117,229,42,159,9,0,10,160,117,229,84,159,9,0,16,160,17,201,158,69,7,0,16,160,17,201,202,69,7,0,20,160,147,226,71,236,6,0,20,160,3,227,99,66,8,0,23,32,208,73,139,158,8,0,23,32,208,73,224,163,8,0,26,160,83,43,77,212,5,0,26,160,83,43,94,212,5,0,29,160,156,11,62,4,7,0,32,32,233,2,212,243,6,0,33,160,13,138,139,158,8,0,33,160,13,138,224,163,8,0,34,160,164,1,80,186,5,0,37,32,48,242,227,108,7,0,37,32,48,242,152,111,7,0,37,32,48,242,96,187,8,0,42,160,46,66,218,62,6,0,42,160,46,66,241,70,6,0,42,160,46,66,218,153,6,0,42,160,46,66,151,21,7,0,42,160,46,66,42,95,7,0,44,32,143,241,212,200,6,0,44,32,118,66,0,223,6,0,44,32,231,242,118,226,8,0,44,32,231,242,72,228,8,0,47,160,177,95,124,45,8,0,47,160,177,95,1,46,8,0,47,160,177,95,123,46,8,0,48,32,67,220,149,124,10,0,57,160,231,242,116,55,10,0,59,32,234,43,38,98,7,0,59,160,161,251,76,81,9,0,59,160,161,251,115,81,9,0,60,160,215,169,104,39,6,0,60,160,242,156,38,98,7,0,61,32,146,95,114,141,6,0,61,160,164,247,217,62,7,0,62,32,240,168,78,203,8,0,67,32,239,18,155,67,7,0,67,32,69,202,224,93,11,0,68,160,115,187,153,11,7,0,68,160,115,187,135,13,7,0,68,160,115,187,78,123,7,0,70,32,219,4,90,175,8,0,70,32,219,4,74,176,8,0,71,160,209,76,117,79,7,0,71,32,6,113,117,79,7,0,72,160,97,79,103,46,7,0,73,160,106,177,37,199,10,0,76,32,244,198,121,193,5,0,77,160,147,222,75,196,10,0,87,160,70,193,171,63,7,0,89,32,104,164,46,16,10,0,90,160,101,143,13,236,5,0,90,160,230,197,191,135,6,0,91,160,246,151,109,231,6,0,91,32,214,176,38,98,7,0,94,32,160,204,152,111,7,0,94,32,160,204,75,122,7,0,94,32,160,204,62,124,7,0,95,160,72,109,117,79,7,0,96,160,178,80,152,111,7,0,97,32,25,83,215,16,10,0,97,32,25,83,135,17,10,0,98,160,64,80,117,37,7,0,99,160,186,147,102,223,6,0,101,160,223,83,71,236,6,0,102,32,57,169,243,95,11,0,107,160,158,115,107,186,7,0,107,160,158,115,161,186,7,0,107,160,158,115,215,186,7,0,108,32,141,204,245,28,10,0,108,32,141,204,145,31,10,0,109,32,66,116,118,226,8,0,109,32,66,116,72,228,8,0,109,160,148,103,4,255,8,0,109,160,148,103,50,255,8,0,109,160,13,63,250,104,10,0,111,160,59,244,132,215,6,0,111,160,59,244,57,243,10,0,113,160,221,28,138,115,8,0,113,160,221,28,117,124,8,0,113,160,221,28,105,133,8,0,114,32,206,204,213,204,6,0,117,32,179,91,14,225,6,0,118,32,156,74,133,220,6,0,120,32,96,66,62,160,7,0,122,32,228,190,138,115,8,0,122,32,228,190,117,124,8,0,122,32,228,190,105,133,8,0,125,32,63,188,71,236,6,0,129,160,135,158,35,15,11,0,129,32,155,44,20,50,11,0,131,160,30,245,104,116,6,0,131,32,198,39,118,4,8,0,132,32,193,234,167,71,7,0,133,32,133,221,90,175,8,0,133,32,133,221,74,176,8,0,133,32,199,96,74,206,10,0,134,32,44,242,83,99,6,0,134,160,231,37,139,158,8,0,134,160,231,37,224,163,8,0,134,160,231,141,57,171,8,0,134,160,231,141,133,172,8,0,134,160,231,141,211,173,8,0,134,32,133,126,132,18,9,0,134,32,133,126,211,18,9,0,134,32,133,126,49,19,9,0,134,32,133,126,130,19,9,0,134,32,202,26,163,142,10,0,135,160,0,77,118,214,6,0,136,32,27,33,194,118,6,0,136,32,27,33,66,146,6,0,138,32,179,129,115,230,10,0,138,32,188,217,103,75,11,0,138,32,188,217,122,75,11,0,143,160,176,42,118,226,8,0,143,160,176,42,72,228,8,0,143,160,160,7,44,112,10,0,143,160,160,7,76,112,10,0,144,32,62,231,221,38,10,0,144,32,62,231,62,40,10,0,145,160,241,234,250,57,8,0,148,160,41,190,21,36,7,0,149,32,217,244,136,110,6,0,151,32,168,22,228,202,7,0,154,160,132,182,94,92,7,0,154,160,132,182,121,97,7,0,156,32,156,222,59,73,7,0,157,32,208,17,172,213,6,0,157,32,113,57,123,236,9,0,158,160,146,126,117,79,7,0,160,160,122,143,220,150,7,0,160,160,122,143,212,218,9,0,160,160,122,143,9,219,9,0,160,160,122,143,69,219,9,0,163,32,5,253,136,58,7,0,164,160,194,47,143,0,8,0,164,32,125,130,29,77,8,0,165,32,103,118,101,246,10,0,168,160,205,234,71,236,6,0,169,160,124,154,53,66,7,0,169,160,115,199,75,1,9,0,169,160,115,199,154,2,9,0,169,160,115,199,235,3,9,0,169,160,115,199,65,5,9,0,170,32,147,177,153,11,7,0,170,32,147,177,135,13,7,0,171,160,73,77,132,18,9,0,171,160,73,77,211,18,9,0,171,160,73,77,49,19,9,0,171,160,73,77,130,19,9,0,171,160,213,80,41,66,11,0,172,160,179,161,165,95,11,0,172,160,179,161,7,100,11,0,174,32,183,10,7,220,6,0,174,32,172,156,153,11,7,0,174,32,172,156,135,13,7,0,174,160,251,250,152,111,7,0,174,32,172,156,78,123,7,0,174,160,251,250,84,53,8,0,175,160,127,100,224,146,8,0,175,160,127,100,132,150,8,0,176,160,106,249,60,124,6,0,177,32,178,168,40,213,6,0,181,160,22,156,75,209,10,0,183,32,229,94,71,208,5,0,188,160,110,239,38,98,7,0,189,32,136,159,80,247,7,0,189,32,136,159,128,247,7,0,189,32,136,159,178,247,7,0,189,32,136,159,232,247,7,0,189,32,136,159,21,248,7,0,192,160,130,243,137,227,5,0,192,160,17,246,194,176,6,0,193,32,22,171,45,220,5,0,196,32,21,227,38,98,7,0,197,32,66,39,72,202,8,0,197,32,66,39,175,202,8,0,198,160,97,40,125,130,7,0,198,160,71,249,90,56,9,0,198,160,71,249,171,56,9,0,198,160,71,249,54,57,9,0,198,32,79,179,215,16,10,0,198,32,79,179,135,17,10,0,200,32,218,196,20,15,7,0,200,32,218,196,179,17,7,0,203,32,88,202,175,26,7,0,205,160,214,69,156,1,7,0,206,160,146,144,236,138,10,0,208,160,142,13,65,195,5,0,211,160,163,69,253,29,6,0,211,160,163,69,91,103,8,0,215,160,190,244,29,204,8,0,215,160,190,244,6,205,8,0,218,160,160,195,219,210,7,0,218,160,214,243,111,94,8,0,218,32,143,189,232,191,8,0,218,32,143,189,162,193,8,0,220,32,84,207,220,81,11,0,221,32,50,103,237,73,7,0,222,160,67,211,214,188,10,0,223,32,18,231,125,130,7,0,223,32,18,231,119,80,9,0,223,32,18,231,164,80,9,0,227,32,104,135,75,142,9,0,227,32,104,135,201,142,9,0,227,32,104,135,84,143,9,0,231,32,119,251,171,63,7,0,231,160,85,188,164,149,10,0,232,160,239,227,163,135,7,0,234,32,157,38,54,209,5,0,234,32,190,176,130,227,6,0,236,32,46,58,136,58,7,0,243,32,188,137,40,170,7,0,244,32,41,4,63,112,9,0,244,32,41,4,116,112,9,0,245,32,213,56,71,236,6,0,245,160,128,192,71,133,10,0,247,160,60,19,30,171,9,0,248,160,188,45,99,66,8,0,253,160,231,242,32,30,7,0,253,160,234,244,46,16,10,0,255,160,163,225,195,95,10,0,0,161,152,192,61,212,10,0,1,33,207,69,167,71,7,0,1,161,230,30,135,90,9,0,1,161,230,30,124,91,9,0,2,161,131,192,246,231,5,0,4,161,57,120,138,115,8,0,4,161,57,120,117,124,8,0,4,161,57,120,105,133,8,0,6,33,39,33,117,79,7,0,11,33,198,199,225,41,6,0,11,161,131,207,20,15,7,0,11,33,196,115,36,56,10,0,12,33,67,47,139,158,8,0,12,33,67,47,224,163,8,0,12,161,33,206,215,16,10,0,12,161,33,206,135,17,10,0,12,33,202,249,22,62,10,0,14,33,23,7,232,191,8,0,14,33,23,7,162,193,8,0,19,161,187,103,10,235,5,0,20,33,24,155,183,209,6,0,23,161,168,35,233,52,6,0,23,161,168,35,248,144,6,0,23,161,248,216,96,254,8,0,23,161,248,216,157,254,8,0,24,33,234,64,193,223,6,0,24,161,111,63,22,35,7,0,25,161,57,51,217,35,7,0,25,33,8,55,123,236,9,0,27,33,239,111,245,28,10,0,27,33,239,111,145,31,10,0,27,33,38,58,45,223,10,0,28,33,59,68,123,236,9,0,29,161,40,94,15,233,8,0,29,161,40,94,139,233,8,0,31,33,211,239,146,235,6,0,33,33,239,24,160,234,8,0,33,33,239,24,175,235,8,0,34,33,177,48,70,200,5,0,34,33,51,38,19,79,11,0,35,161,6,28,18,179,10,0,38,33,89,185,133,220,6,0,38,33,39,170,117,37,7,0,38,33,52,102,224,146,8,0,38,33,52,102,132,150,8,0,44,161,77,28,29,5,7,0,44,33,191,107,30,22,10,0,44,33,191,107,59,22,10,0,44,33,191,107,79,22,10,0,47,33,172,82,200,198,7,0,48,161,186,68,89,85,6,0,48,33,65,250,29,55,10,0,50,33,46,78,154,4,7,0,51,33,185,214,182,114,8,0,55,161,231,242,138,115,8,0,55,161,231,242,117,124,8,0,55,161,231,242,105,133,8,0,57,33,9,85,38,98,7,0,58,161,253,35,63,39,6,0,63,33,80,38,152,111,7,0,63,33,80,38,84,53,8,0,63,33,17,88,78,203,8,0,65,161,222,6,230,215,6,0,67,161,100,0,149,43,7,0,68,33,148,204,80,167,9,0,68,33,148,204,37,168,9,0,71,161,44,122,116,19,8,0,71,161,44,122,26,38,11,0,71,161,44,122,0,39,11,0,71,161,44,122,19,55,11,0,72,33,88,171,72,139,6,0,72,33,91,81,219,210,7,0,73,161,61,8,11,9,7,0,77,33,117,242,231,29,7,0,77,33,82,54,236,51,7,0,83,161,173,114,136,58,7,0,84,161,145,38,117,37,7,0,89,33,32,20,20,15,7,0,89,33,32,20,179,17,7,0,89,161,103,117,117,79,7,0,91,161,112,124,123,236,9,0,94,33,182,213,80,32,7,0,97,33,140,142,92,143,6,0,98,33,122,172,182,93,11,0,99,161,121,47,75,1,9,0,99,161,121,47,154,2,9,0,99,161,121,47,235,3,9,0,99,161,121,47,65,5,9,0,100,161,209,163,111,130,10,0,102,33,155,206,237,73,7,0,102,33,151,70,118,226,8,0,102,33,151,70,72,228,8,0,103,33,106,28,135,90,9,0,103,33,106,28,124,91,9,0,104,33,35,252,130,227,6,0,104,161,55,37,197,43,7,0,104,161,55,37,30,44,7,0,105,161,180,46,20,15,7,0,105,161,180,46,3,163,10,0,106,161,85,170,237,73,7,0,109,161,35,248,38,98,7,0,111,161,99,139,212,243,6,0,111,161,99,139,38,98,7,0,111,161,168,133,143,172,7,0,112,161,195,147,51,214,8,0,112,161,195,147,241,214,8,0,112,161,195,147,169,215,8,0,114,33,229,212,179,17,7,0,114,161,218,246,137,79,10,0,115,161,39,218,151,21,7,0,118,33,10,211,192,57,6,0,118,33,10,211,121,163,6,0,118,161,182,140,230,215,6,0,118,161,163,128,197,115,9,0,118,161,163,128,213,115,9,0,118,161,4,126,11,134,9,0,118,161,4,126,46,134,9,0,121,33,207,50,242,44,11,0,126,161,209,55,221,38,10,0,126,161,209,55,62,40,10,0,128,161,250,17,38,31,7,0,129,161,167,126,227,108,7,0,129,33,225,218,90,56,9,0,129,33,225,218,171,56,9,0,129,33,225,218,54,57,9,0,129,161,167,126,43,204,9,0,131,33,233,57,255,210,5,0,136,33,235,246,113,22,11,0,137,161,108,56,123,236,9,0,138,33,148,204,141,195,8,0,138,33,148,204,112,196,8,0,138,33,148,204,75,197,8,0,139,161,213,117,219,1,7,0,140,33,247,188,80,32,7,0,140,161,42,173,117,79,7,0,142,161,7,170,9,255,7,0,142,161,31,63,139,158,8,0,142,161,31,63,224,163,8,0,144,33,125,202,138,115,8,0,144,33,125,202,117,124,8,0,144,33,125,202,105,133,8,0,145,161,74,108,14,215,5,0,148,33,224,19,196,133,6,0,148,33,102,168,80,201,10,0,149,161,172,86,33,65,7,0,150,161,32,109,80,45,11,0,152,161,114,27,224,146,8,0,152,161,114,27,132,150,8,0,156,161,172,24,255,179,8,0,156,161,172,24,110,180,8,0,160,33,30,156,118,226,8,0,160,33,30,156,72,228,8,0,162,33,84,141,131,166,10,0,164,161,15,78,248,8,11,0,166,161,211,29,123,236,9,0,167,33,167,67,152,111,7,0,167,33,167,67,255,125,7,0,168,161,52,167,172,210,5,0,168,33,76,254,117,79,7,0,170,33,160,122,99,66,8,0,171,161,164,3,10,107,10,0,172,33,80,230,151,21,7,0,172,33,85,130,38,98,7,0,173,33,244,40,213,248,5,0,173,161,32,104,154,4,7,0,175,33,1,40,49,92,8,0,177,161,219,113,90,53,7,0,179,33,163,133,190,46,6,0,182,161,133,225,238,102,10,0,183,161,155,54,230,215,6,0,183,161,209,226,46,43,7,0,185,33,182,16,147,225,5,0,185,33,175,250,80,32,7,0,189,161,76,247,65,250,5,0,189,33,23,68,43,133,10,0,189,161,190,53,191,21,11,0,194,33,213,162,11,9,7,0,196,33,37,199,29,69,7,0,197,33,39,159,66,215,5,0,197,33,39,159,6,110,6,0,197,33,39,159,38,110,6,0,197,33,115,28,165,114,6,0,197,33,109,54,236,51,7,0,198,161,97,52,32,135,6,0,198,161,97,52,247,148,6,0,198,33,221,190,123,236,9,0,202,33,225,3,38,98,7,0,205,33,34,123,223,30,7,0,208,161,47,242,118,214,6,0,208,33,37,105,103,102,10,0,211,161,103,27,123,236,9,0,213,33,4,113,219,1,7,0,213,161,63,248,167,58,10,0,214,33,79,150,0,189,8,0,214,33,79,150,54,189,8,0,216,161,156,217,197,253,6,0,218,161,237,163,100,228,6,0,220,161,9,94,210,187,5,0,226,161,109,178,111,227,10,0,230,161,77,207,240,158,7,0,237,161,209,5,156,205,6,0,237,161,65,212,147,77,10,0,238,33,130,107,218,135,6,0,238,33,220,119,118,0,7,0,239,161,95,156,173,38,6,0,239,161,154,156,206,93,6,0,239,33,88,250,230,71,9,0,239,33,88,250,83,72,9,0,240,33,48,18,210,110,7,0,240,33,48,18,233,121,7,0,241,161,89,122,245,35,8,0,241,161,89,122,37,36,8,0,241,161,89,122,87,36,8,0,242,161,120,102,71,236,6,0,242,161,188,6,34,10,10,0,246,161,127,39,123,236,9,0,247,161,167,213,136,58,7,0,249,33,128,37,33,65,7,0,250,161,100,222,219,1,7,0,250,33,213,121,177,251,8,0,250,33,213,121,213,251,8,0,252,161,21,126,157,240,10,0,254,161,151,226,103,46,7,0,255,161,117,80,110,24,6,0,255,33,164,126,113,232,6,0,3,162,148,177,179,17,7,0,3,34,168,239,88,129,7,0,11,34,0,97,235,189,7,0,13,162,117,43,129,26,8,0,15,34,237,5,117,79,7,0,15,162,164,251,38,98,7,0,16,34,109,251,194,211,6,0,16,34,49,100,118,214,6,0,17,34,88,204,118,108,6,0,17,34,88,204,179,17,7,0,17,34,88,204,123,239,7,0,17,34,88,204,167,239,7,0,20,162,231,242,100,228,6,0,21,162,188,187,129,25,7,0,21,34,23,96,232,191,8,0,21,34,23,96,162,193,8,0,21,162,162,110,179,222,8,0,21,162,162,110,152,223,8,0,23,34,242,13,106,59,9,0,23,34,242,13,181,59,9,0,24,34,244,125,232,191,8,0,24,34,244,125,162,193,8,0,25,162,53,34,71,236,6,0,25,162,215,65,167,107,7,0,26,162,23,112,81,239,8,0,26,162,23,112,40,240,8,0,27,34,134,200,230,215,6,0,29,162,122,57,169,142,6,0,33,162,189,170,38,98,7,0,39,34,165,4,28,253,6,0,40,162,108,136,11,116,10,0,46,162,109,42,125,44,7,0,46,34,203,110,236,51,7,0,47,34,219,61,133,220,6,0,48,162,134,125,136,58,7,0,49,162,168,104,194,118,6,0,49,162,168,104,66,146,6,0,49,162,168,104,218,94,7,0,49,162,191,191,210,110,7,0,49,34,150,96,35,16,11,0,50,162,36,65,38,98,7,0,52,34,192,225,212,243,6,0,55,162,238,107,103,46,7,0,56,34,206,229,119,10,8,0,56,34,206,229,130,11,8,0,57,34,0,84,49,70,7,0,58,34,62,166,62,104,10,0,59,162,160,32,246,205,8,0,59,162,160,32,155,206,8,0,60,162,71,3,212,243,6,0,60,34,22,187,132,18,9,0,60,34,22,187,211,18,9,0,60,34,22,187,49,19,9,0,60,34,22,187,130,19,9,0,60,162,223,127,38,206,10,0,61,162,4,108,253,208,8,0,61,162,4,108,22,211,8,0,62,34,87,87,138,115,8,0,62,34,87,87,117,124,8,0,62,34,87,87,105,133,8,0,67,34,180,148,131,111,8,0,67,34,1,219,214,146,10,0,69,34,234,35,194,211,6,0,70,162,151,126,30,171,9,0,71,34,109,162,25,96,10,0,72,162,69,169,210,225,6,0,72,162,115,160,142,154,10,0,74,34,219,4,30,171,9,0,75,162,182,120,242,46,6,0,75,162,182,120,50,104,6,0,75,34,90,48,31,252,8,0,75,34,90,48,56,252,8,0,75,162,201,76,81,191,9,0,77,34,201,85,108,106,8,0,77,162,38,192,200,6,9,0,77,162,38,192,117,7,9,0,79,34,253,194,117,37,7,0,80,34,215,91,138,115,8,0,80,34,215,91,117,124,8,0,80,34,215,91,105,133,8,0,83,34,98,254,78,89,6,0,83,34,220,149,81,63,7,0,86,34,147,191,212,243,6,0,87,162,3,252,210,91,6,0,87,162,3,252,179,17,7,0,87,34,14,144,121,97,7,0,87,34,14,144,212,123,7,0,88,162,240,218,12,234,6,0,91,34,96,86,235,189,7,0,91,162,62,70,29,204,8,0,91,162,62,70,6,205,8,0,91,34,86,48,22,62,10,0,91,162,106,171,8,95,10,0,93,34,26,202,245,41,7,0,95,162,164,222,204,213,9,0,97,34,23,187,212,243,6,0,97,34,47,199,136,58,7,0,97,34,73,129,235,98,11,0,98,162,231,242,2,23,7,0,98,34,17,173,22,35,7,0,98,34,113,27,123,236,9,0,101,34,59,134,238,159,10,0,101,34,59,134,33,160,10,0,104,34,102,185,68,129,6,0,105,34,10,64,212,243,6,0,106,162,76,92,138,115,8,0,106,162,76,92,117,124,8,0,106,162,76,92,105,133,8,0,106,34,54,238,213,41,10,0,106,34,54,238,87,42,10,0,112,34,11,174,230,130,7,0,112,34,72,218,75,1,9,0,112,34,72,218,154,2,9,0,112,34,72,218,235,3,9,0,112,34,72,218,65,5,9,0,112,34,216,185,30,171,9,0,116,34,255,121,219,161,6,0,117,34,4,216,139,209,5,0,117,34,4,216,191,108,6,0,117,34,82,23,129,25,7,0,123,162,81,24,117,227,5,0,124,162,122,108,153,11,7,0,124,162,122,108,135,13,7,0,125,34,69,104,135,90,9,0,125,34,69,104,124,91,9,0,125,34,74,13,20,161,10,0,126,162,147,228,74,97,6,0,128,162,188,190,81,239,8,0,128,162,188,190,40,240,8,0,132,162,123,21,71,236,6,0,134,162,162,230,221,38,10,0,134,162,162,230,62,40,10,0,136,34,123,15,250,31,11,0,137,162,108,242,232,124,10,0,138,34,71,170,68,202,6,0,138,34,190,137,151,21,7,0,144,34,109,109,80,49,7,0,144,34,109,109,171,49,7,0,145,162,34,216,32,30,7,0,147,162,137,218,213,41,10,0,147,162,137,218,87,42,10,0,148,162,233,105,155,67,7,0,150,34,224,81,26,34,6,0,150,34,224,81,72,60,6,0,150,34,224,81,245,28,10,0,150,34,224,81,145,31,10,0,151,162,245,240,206,219,6,0,156,162,228,112,151,153,10,0,157,34,13,162,29,150,7,0,157,34,149,237,138,115,8,0,157,34,149,237,117,124,8,0,157,34,149,237,105,133,8,0,157,34,75,232,205,151,9,0,157,34,75,232,199,152,9,0,157,34,75,232,220,153,9,0,160,162,187,165,78,229,6,0,160,162,42,27,71,236,6,0,161,34,131,251,118,226,8,0,161,34,131,251,72,228,8,0,165,34,241,11,108,85,10,0,166,162,216,54,46,177,6,0,166,162,136,88,38,98,7,0,166,34,82,115,75,142,9,0,166,34,82,115,201,142,9,0,166,34,82,115,84,143,9,0,168,34,102,194,90,14,11,0,171,162,153,179,156,57,9,0,171,162,153,179,214,57,9,0,172,162,231,242,38,98,7,0,172,162,8,89,83,152,7,0,173,34,17,140,212,243,6,0,173,162,34,125,103,245,8,0,173,162,34,125,151,245,8,0,178,34,42,23,77,200,6,0,179,34,187,254,14,252,5,0,187,34,137,157,243,229,7,0,187,34,137,157,22,230,7,0,195,34,192,151,51,156,6,0,195,34,192,151,151,162,6,0,199,34,202,92,249,154,8,0,199,34,202,92,148,155,8,0,199,34,202,92,52,156,8,0,200,34,32,7,248,53,6,0,201,162,247,126,194,211,6,0,202,34,35,149,118,226,8,0,202,34,35,149,72,228,8,0,204,34,119,142,38,98,7,0,204,162,252,143,40,217,8,0,204,162,252,143,209,217,8,0,204,162,252,143,38,253,8,0,204,162,252,143,173,253,8,0,205,34,182,148,14,225,6,0,206,162,189,38,31,35,9,0,206,162,189,38,57,35,9,0,206,162,189,38,85,35,9,0,208,34,156,78,177,162,6,0,209,34,248,7,227,108,7,0,209,34,248,7,15,184,9,0,209,34,248,7,59,184,9,0,210,162,32,248,228,109,9,0,210,162,32,248,248,110,9,0,211,34,217,49,12,112,6,0,211,34,217,49,20,15,7,0,211,34,217,49,179,17,7,0,213,162,233,90,207,117,6,0,217,162,81,190,237,73,7,0,217,34,144,33,118,226,8,0,217,34,144,33,72,228,8,0,224,162,57,127,17,140,9,0,224,162,57,127,41,140,9,0,224,162,57,127,65,140,9,0,227,162,156,35,123,236,9,0,228,34,203,101,155,237,5,0,233,162,84,226,32,178,10,0,234,162,71,75,109,172,9,0,234,162,71,75,178,173,9,0,234,162,71,75,250,174,9,0,237,34,158,23,117,79,7,0,237,162,112,33,32,113,9,0,241,162,148,206,212,243,6,0,245,162,5,50,141,255,8,0,245,162,5,50,235,255,8,0,247,162,67,115,16,222,6,0,250,34,135,143,219,56,6,0,251,162,191,136,212,243,6,0,252,162,123,87,212,243,6,0,252,34,129,96,51,214,8,0,252,34,129,96,241,214,8,0,252,34,129,96,169,215,8,0,252,34,22,111,221,155,10,0,254,34,134,230,212,243,6,0,254,34,134,230,117,37,7,0,0,163,54,116,236,248,5,0,3,163,122,21,140,71,8,0,6,35,235,146,78,53,10,0,7,163,151,104,219,55,8,0,7,163,151,104,12,56,8,0,7,163,151,104,73,56,8,0,7,163,151,104,121,56,8,0,7,163,151,104,187,56,8,0,7,163,151,104,53,163,10,0,7,163,151,104,87,163,10,0,9,163,86,126,12,245,8,0,9,163,86,126,29,245,8,0,11,163,205,136,99,66,8,0,16,35,234,53,204,189,10,0,17,163,255,149,117,79,7,0,17,163,72,63,80,45,11,0,20,163,104,47,118,214,6,0,20,35,2,170,71,236,6,0,20,163,100,126,237,73,7,0,23,35,78,51,172,17,11,0,24,163,198,88,47,1,7,0,25,163,101,116,96,254,8,0,25,163,101,116,157,254,8,0,27,35,244,73,223,30,7,0,29,163,75,124,117,79,7,0,29,163,178,129,117,79,7,0,30,35,139,251,20,15,7,0,30,35,139,251,179,17,7,0,30,35,200,34,48,138,7,0,31,163,130,84,117,79,7,0,32,35,132,223,200,6,9,0,32,35,132,223,117,7,9,0,37,35,83,81,30,231,6,0,37,35,68,15,5,248,8,0,37,35,68,15,42,248,8,0,37,163,225,162,129,13,10,0,37,163,225,162,151,13,10,0,38,35,1,97,63,212,7,0,39,35,183,252,117,79,7,0,39,163,45,199,139,158,8,0,39,163,45,199,224,163,8,0,41,35,61,28,29,5,7,0,41,163,64,54,29,5,7,0,41,163,64,54,237,73,7,0,41,35,156,19,107,95,10,0,43,163,239,9,171,63,7,0,44,163,37,147,194,211,6,0,46,163,59,113,178,233,6,0,47,163,176,212,71,210,10,0,48,35,240,198,37,70,10,0,48,35,240,198,91,70,10,0,48,163,7,140,76,156,10,0,49,35,213,245,56,66,10,0,51,35,3,1,232,191,8,0,51,35,3,1,162,193,8,0,53,163,174,115,61,40,7,0,55,35,47,232,224,146,8,0,55,35,47,232,132,150,8,0,56,35,128,166,84,173,10,0,57,35,193,240,138,115,8,0,57,35,193,240,117,124,8,0,57,35,193,240,105,133,8,0,59,163,9,50,219,1,7,0,59,163,202,78,171,63,7,0,59,163,191,21,138,115,8,0,59,163,191,21,117,124,8,0,59,163,191,21,105,133,8,0,61,163,222,240,38,98,7,0,62,163,240,226,53,66,7,0,64,163,5,14,84,21,8,0,68,35,224,127,138,96,10,0,70,163,178,129,209,131,7,0,71,163,232,20,127,208,6,0,71,35,242,245,25,96,10,0,73,35,139,8,114,188,8,0,73,35,139,8,157,188,8,0,73,163,158,141,123,236,9,0,74,163,241,192,29,188,6,0,74,163,28,115,28,236,6,0,76,163,62,45,114,243,8,0,76,163,62,45,37,244,8,0,77,35,216,19,21,40,8,0,79,163,244,115,114,243,8,0,79,163,244,115,37,244,8,0,80,163,85,170,147,189,10,0,80,163,85,170,172,189,10,0,81,35,193,148,91,248,5,0,81,35,127,50,113,232,6,0,85,35,134,199,117,37,7,0,85,163,117,47,38,98,7,0,86,35,209,230,138,115,8,0,86,35,209,230,117,124,8,0,86,35,209,230,105,133,8,0,91,163,161,197,212,243,6,0,92,35,234,65,152,234,6,0,94,35,143,78,29,150,7,0,95,35,162,54,134,190,5,0,95,35,117,100,3,157,8,0,95,35,117,100,180,157,8,0,98,163,222,35,184,0,6,0,99,35,118,69,237,73,7,0,102,163,94,213,221,38,10,0,102,163,94,213,62,40,10,0,104,163,141,82,180,216,9,0,104,163,141,82,203,216,9,0,106,35,15,99,72,204,9,0,106,35,127,227,148,25,11,0,107,163,236,89,21,36,7,0,108,35,147,9,1,117,6,0,108,35,186,93,199,65,10,0,111,163,95,248,26,174,6,0,111,35,182,166,237,73,7,0,119,35,157,38,116,217,10,0,120,35,164,76,247,55,7,0,120,163,105,125,140,66,7,0,120,163,105,125,234,66,7,0,121,163,28,6,152,205,9,0,121,163,28,6,179,205,9,0,121,163,28,6,203,205,9,0,122,163,113,51,29,204,8,0,122,163,113,51,6,205,8,0,124,163,70,91,24,248,5,0,124,35,81,217,222,237,10,0,125,163,163,248,22,106,6,0,125,35,165,213,138,115,8,0,125,35,165,213,117,124,8,0,125,35,165,213,105,133,8,0,126,35,95,163,61,101,9,0,126,35,95,163,92,101,9,0,128,35,254,251,47,1,7,0,129,163,115,71,242,169,10,0,130,163,149,110,167,71,7,0,134,163,73,31,212,243,6,0,141,163,73,31,130,227,6,0,141,163,203,48,138,115,8,0,141,163,203,48,117,124,8,0,141,163,203,48,105,133,8,0,141,163,156,8,75,1,9,0,141,163,156,8,154,2,9,0,141,163,156,8,235,3,9,0,141,163,156,8,65,5,9,0,146,35,31,19,174,195,7,0,146,35,31,19,216,195,7,0,146,35,31,19,1,196,7,0,146,35,31,19,52,196,7,0,150,163,248,93,243,206,9,0,150,163,248,93,42,207,9,0,150,163,248,93,98,207,9,0,154,35,236,253,90,199,7,0,154,35,236,253,148,199,7,0,154,35,236,253,216,199,7,0,154,35,236,253,29,200,7,0,157,163,93,99,205,207,9,0,157,163,93,99,221,207,9,0,157,163,93,99,237,207,9,0,158,163,231,242,39,99,10,0,159,163,150,60,71,100,6,0,159,35,168,131,119,225,6,0,159,35,168,34,138,115,8,0,159,35,168,34,117,124,8,0,159,35,168,34,105,133,8,0,161,163,216,98,155,67,7,0,162,35,253,168,90,53,7,0,162,35,98,62,152,111,7,0,162,35,98,62,38,124,7,0,165,163,109,18,220,189,6,0,165,163,15,249,12,234,6,0,165,163,109,18,69,176,10,0,168,35,2,55,219,34,7,0,168,35,2,55,81,239,7,0,169,35,174,134,70,14,11,0,170,35,131,118,86,91,6,0,177,35,236,54,224,139,10,0,180,35,155,161,156,205,6,0,183,163,96,22,129,88,6,0,183,163,233,203,117,79,7,0,184,163,216,196,117,79,7,0,186,35,21,223,38,98,7,0,186,35,197,134,4,255,8,0,186,35,197,134,50,255,8,0,192,163,156,114,125,44,7,0,193,35,14,63,59,65,6,0,198,35,227,1,27,177,7,0,200,163,167,231,212,243,6,0,201,35,80,132,212,21,9,0,201,35,80,132,31,22,9,0,201,35,80,132,103,22,9,0,201,163,39,20,236,177,10,0,202,35,215,158,117,79,7,0,203,35,193,188,138,115,8,0,203,35,193,188,117,124,8,0,203,35,193,188,105,133,8,0,204,35,222,192,254,243,5,0,204,35,222,192,153,89,7,0,205,35,185,219,180,28,7,0,205,163,91,149,30,171,9,0,206,35,216,38,107,28,7,0,207,163,246,59,247,55,7,0,208,163,85,210,228,109,9,0,208,163,85,210,248,110,9,0,208,35,217,192,205,151,9,0,208,35,217,192,199,152,9,0,208,35,217,192,220,153,9,0,210,35,76,39,69,69,7,0,211,163,148,9,90,53,7,0,211,163,0,172,138,115,8,0,211,163,0,172,117,124,8,0,211,163,0,172,105,133,8,0,213,35,66,30,71,236,6,0,213,163,68,45,3,18,8,0,216,35,232,137,121,97,7,0,216,163,192,27,226,154,9,0,216,163,192,27,114,155,9,0,217,35,80,166,219,1,7,0,218,35,226,173,237,231,6,0,218,35,175,122,243,134,7,0,218,163,77,221,91,154,8,0,218,163,77,221,147,154,8,0,218,35,188,110,57,171,8,0,218,35,188,110,133,172,8,0,218,35,188,110,211,173,8,0,223,163,163,248,128,133,7,0,223,163,91,55,141,230,9,0,223,163,91,55,217,230,9,0,230,163,177,228,189,22,8,0,231,163,175,234,206,1,11,0,232,35,84,174,136,58,7,0,232,35,216,166,59,122,9,0,232,35,216,166,91,122,9,0,234,163,199,134,50,123,6,0,235,35,94,15,212,243,6,0,235,163,50,83,140,206,7,0,235,35,69,89,135,73,11,0,236,35,109,5,126,226,7,0,237,35,21,54,227,108,7,0,238,35,69,94,99,66,8,0,240,35,117,27,181,91,10,0,241,163,133,12,254,254,6,0,241,35,79,106,171,63,7,0,241,35,107,51,78,47,11,0,244,163,210,191,138,28,7,0,246,35,239,59,14,104,8,0,249,163,52,20,212,243,6,0,249,163,186,6,237,73,7,0,251,163,140,148,23,41,6,0,253,35,236,198,167,107,7,0,3,164,18,3,123,236,9,0,3,36,109,251,95,204,10,0,6,36,146,249,224,251,6,0,6,36,59,92,241,95,8,0,8,36,83,103,113,47,7,0,8,36,163,63,155,67,7,0,8,36,155,110,96,121,7,0,8,36,155,110,127,121,7,0,8,164,85,141,219,150,10,0,16,164,244,211,234,173,6,0,16,36,190,126,57,171,8,0,16,36,190,126,133,172,8,0,16,36,190,126,211,173,8,0,18,164,134,41,39,65,9,0,18,164,134,41,161,65,9,0,18,164,134,41,21,66,9,0,18,164,134,41,188,66,9,0,18,164,134,41,85,67,9,0,25,36,46,60,128,133,7,0,26,164,21,118,206,87,9,0,26,164,21,118,25,88,9,0,28,36,18,193,132,215,6,0,30,164,129,101,160,234,8,0,30,164,129,101,175,235,8,0,31,164,53,33,53,250,8,0,31,164,53,33,83,250,8,0,32,164,124,116,158,89,10,0,33,164,5,100,38,98,7,0,33,164,243,140,123,236,9,0,33,164,51,118,183,20,10,0,33,164,51,118,230,20,10,0,35,164,190,88,193,223,6,0,35,164,231,76,244,27,9,0,35,36,111,222,119,87,9,0,35,36,111,222,137,87,9,0,38,36,200,29,75,1,9,0,38,36,200,29,154,2,9,0,38,36,200,29,235,3,9,0,38,36,200,29,65,5,9,0,42,164,6,154,136,58,7,0,44,36,37,19,125,177,9,0,44,36,37,19,224,177,9,0,44,36,37,19,64,178,9,0,45,164,32,171,93,228,5,0,45,36,122,145,219,248,10,0,45,36,122,145,180,249,10,0,46,164,92,156,212,243,6,0,46,36,146,98,104,99,8,0,49,164,221,167,38,98,7,0,50,164,80,11,118,26,7,0,56,36,20,219,66,150,6,0,56,36,20,219,225,93,7,0,56,36,20,219,38,98,7,0,56,36,80,181,8,69,10,0,57,164,227,97,247,208,6,0,58,164,139,73,117,79,7,0,58,36,152,248,138,115,8,0,58,36,152,248,117,124,8,0,58,36,152,248,105,133,8,0,59,36,147,174,254,243,5,0,59,36,147,174,153,89,7,0,60,164,250,65,33,78,6,0,60,36,102,195,71,236,6,0,60,164,13,102,178,89,9,0,60,164,13,102,199,89,9,0,65,36,218,107,212,243,6,0,68,36,44,38,23,199,6,0,68,36,16,17,117,79,7,0,72,164,244,168,3,224,6,0,73,164,129,99,156,1,7,0,74,36,250,125,197,253,6,0,74,36,173,222,254,26,9,0,74,36,173,222,24,27,9,0,74,36,173,222,48,27,9,0,74,36,173,222,62,27,9,0,76,36,192,148,154,200,5,0,78,36,250,241,208,43,10,0,78,36,250,241,255,43,10,0,78,36,250,241,45,44,10,0,78,36,250,241,104,44,10,0,82,164,153,223,236,213,6,0,84,164,212,173,5,212,5,0,84,164,2,0,113,22,11,0,85,36,53,86,247,72,6,0,86,164,78,54,213,15,6,0,86,36,179,17,225,201,6,0,86,36,209,196,254,241,10,0,87,36,57,213,38,98,7,0,88,164,53,2,229,49,9,0,88,164,53,2,17,50,9,0,89,164,0,97,206,87,9,0,89,164,0,97,25,88,9,0,95,36,115,10,112,5,10,0,95,36,115,10,28,6,10,0,96,36,40,105,103,46,7,0,98,164,33,131,53,66,7,0,101,36,223,186,179,17,7,0,103,164,95,116,197,253,6,0,103,164,30,54,224,146,8,0,103,164,30,54,132,150,8,0,105,36,22,92,212,243,6,0,106,36,57,79,165,62,11,0,107,36,136,161,112,78,6,0,108,164,90,56,220,189,6,0,110,164,130,243,189,189,7,0,113,36,229,189,118,155,6,0,114,36,121,31,226,206,6,0,115,164,130,205,136,58,7,0,116,164,248,224,126,174,10,0,117,164,71,199,118,0,7,0,117,36,154,9,117,79,7,0,118,36,179,68,71,236,6,0,119,164,101,57,171,105,6,0,119,36,144,80,68,114,6,0,120,36,45,162,38,98,7,0,121,36,250,15,254,243,5,0,121,36,250,15,153,89,7,0,123,164,52,178,249,57,6,0,123,164,149,172,33,65,7,0,123,164,159,54,159,159,9,0,123,164,159,54,189,159,9,0,123,164,159,54,213,159,9,0,127,36,90,28,6,167,6,0,128,36,104,210,94,245,5,0,129,36,52,5,230,71,9,0,129,36,52,5,83,72,9,0,131,164,135,218,99,42,7,0,132,164,242,61,229,190,5,0,132,164,129,181,115,7,10,0,132,164,129,181,190,7,10,0,132,164,129,181,10,8,10,0,132,164,129,181,141,114,10,0,132,164,129,181,5,124,10,0,135,164,15,100,31,50,10,0,135,164,15,100,94,50,10,0,135,164,15,100,159,50,10,0,135,164,15,100,224,50,10,0,135,164,15,100,30,51,10,0,135,164,15,100,94,51,10,0,135,164,15,100,158,51,10,0,135,164,15,100,221,51,10,0,136,36,156,141,171,63,7,0,138,36,4,218,236,213,6,0,140,36,224,126,117,79,7,0,141,36,27,3,118,226,8,0,141,36,27,3,72,228,8,0,141,36,73,113,218,198,10,0,142,36,250,135,165,95,6,0,142,36,250,135,61,6,8,0,143,164,40,14,162,50,7,0,144,36,58,17,195,1,6,0,145,36,205,90,20,15,7,0,145,36,205,90,179,17,7,0,145,36,205,90,38,98,7,0,150,36,52,115,135,97,6,0,150,36,76,36,200,6,9,0,150,36,76,36,117,7,9,0,151,164,184,148,7,220,6,0,154,164,200,18,39,233,5,0,154,164,200,18,140,129,6,0,154,164,204,144,68,202,6,0,154,36,51,198,139,158,8,0,154,36,51,198,224,163,8,0,155,164,72,115,251,134,10,0,156,164,166,6,254,243,5,0,156,164,166,6,153,89,7,0,157,36,240,231,32,150,10,0,157,36,240,231,63,150,10,0,158,36,254,58,85,208,7,0,161,164,186,214,26,32,6,0,161,164,202,36,159,33,6,0,161,164,202,36,22,35,7,0,161,164,99,243,160,161,7,0,162,164,112,66,46,16,10,0,165,164,208,232,29,150,7,0,168,36,25,21,117,37,7,0,169,164,74,240,117,79,7,0,172,164,241,122,38,98,7,0,175,164,199,81,167,8,7,0,175,36,30,11,85,229,9,0,175,36,30,11,109,229,9,0,175,36,63,114,190,101,10,0,175,36,63,114,218,101,10,0,176,164,80,126,4,113,8,0,176,36,183,219,123,71,9,0,176,36,183,219,151,71,9,0,176,164,80,126,61,100,11,0,178,164,10,44,71,236,6,0,180,164,201,55,39,65,9,0,180,164,201,55,161,65,9,0,180,164,201,55,21,66,9,0,180,164,201,55,188,66,9,0,180,164,201,55,85,67,9,0,180,36,224,149,123,236,9,0,181,36,158,89,103,46,7,0,182,164,166,29,175,26,7,0,183,36,66,58,240,226,6,0,185,36,214,235,7,220,6,0,191,164,250,159,135,101,8,0,193,164,100,227,22,35,7,0,193,164,201,48,52,38,8,0,196,164,46,145,197,253,6,0,197,164,209,27,160,234,8,0,197,164,209,27,175,235,8,0,199,36,37,202,210,225,6,0,199,36,37,202,212,243,6,0,200,36,42,175,123,236,9,0,201,164,76,247,105,15,8,0,202,36,22,219,51,88,11,0,204,36,63,131,212,21,9,0,204,36,63,131,31,22,9,0,204,36,63,131,103,22,9,0,205,36,16,64,212,200,6,0,206,36,171,46,124,233,5,0,207,164,133,142,237,73,7,0,209,164,192,128,118,214,6,0,211,36,253,22,140,66,7,0,211,36,253,22,234,66,7,0,211,36,42,91,57,171,8,0,211,36,42,91,133,172,8,0,211,36,42,91,211,173,8,0,213,164,23,11,224,146,8,0,213,164,23,11,132,150,8,0,216,36,237,203,246,205,8,0,216,36,237,203,155,206,8,0,217,36,60,117,164,25,7,0,219,36,138,171,119,75,6,0,222,164,232,88,94,227,10,0,224,164,164,159,138,115,8,0,224,164,164,159,117,124,8,0,224,164,164,159,105,133,8,0,225,36,100,66,144,188,5,0,229,36,116,211,123,236,9,0,230,164,152,188,109,231,6,0,230,36,162,78,171,63,7,0,232,164,16,176,91,17,9,0,232,164,16,176,177,17,9,0,232,164,16,176,1,18,9,0,239,36,42,79,247,30,6,0,240,36,219,251,133,220,6,0,241,164,93,110,32,193,5,0,241,36,178,128,22,62,10,0,242,164,245,66,48,222,10,0,246,164,32,233,138,115,8,0,246,164,32,233,117,124,8,0,246,164,32,233,105,133,8,0,248,36,62,86,134,201,10,0,252,164,166,125,98,163,6,0,254,164,248,166,128,42,6,0,4,165,160,117,0,144,8,0,4,165,160,117,31,144,8,0,4,165,160,117,71,144,8,0,6,165,208,38,127,67,11,0,15,165,195,127,218,152,7,0,16,165,143,248,136,56,11,0,17,37,181,26,129,40,7,0,18,37,85,147,232,124,10,0,18,37,85,147,103,125,10,0,19,37,92,94,102,223,6,0,20,165,222,68,201,4,8,0,21,165,78,56,179,17,7,0,21,165,78,56,23,157,10,0,22,165,28,136,75,1,9,0,22,165,28,136,154,2,9,0,22,165,28,136,235,3,9,0,22,165,28,136,65,5,9,0,25,37,207,99,51,241,8,0,25,37,207,99,198,241,8,0,26,165,163,199,237,73,7,0,28,37,239,246,188,227,7,0,30,37,186,148,233,208,9,0,30,37,186,148,1,209,9,0,33,165,231,240,6,249,5,0,33,165,204,38,214,188,10,0,35,37,197,131,236,51,7,0,37,165,129,8,227,108,7,0,37,165,129,8,15,184,9,0,37,165,129,8,59,184,9,0,37,165,228,149,6,63,11,0,39,37,187,132,39,65,9,0,39,37,187,132,161,65,9,0,39,37,187,132,21,66,9,0,39,37,187,132,188,66,9,0,39,37,187,132,85,67,9,0,40,165,21,211,105,203,5,0,40,165,41,58,44,193,7,0,40,165,41,58,114,193,7,0,40,165,41,58,180,193,7,0,40,165,143,64,139,158,8,0,40,165,143,64,224,163,8,0,42,37,157,234,210,110,7,0,42,37,157,234,177,118,7,0,43,37,116,216,101,95,7,0,43,37,116,216,227,108,7,0,43,37,193,148,231,7,8,0,44,165,251,106,57,10,7,0,46,37,252,137,117,37,7,0,46,165,231,248,138,115,8,0,46,165,231,248,117,124,8,0,46,165,231,248,105,133,8,0,48,37,131,96,13,150,10,0,50,37,214,158,101,58,6,0,51,165,43,88,179,17,7,0,51,165,43,88,46,43,7,0,55,37,78,99,112,22,6,0,55,37,78,99,111,35,6,0,59,37,224,133,139,158,8,0,59,37,224,133,224,163,8,0,59,165,0,27,123,236,9,0,60,165,255,246,236,213,6,0,62,37,243,157,202,116,9,0,62,37,243,157,253,116,9,0,63,37,10,46,167,107,7,0,63,165,193,162,167,107,7,0,63,165,193,162,75,120,7,0,63,165,193,162,101,120,7,0,66,165,160,81,189,76,10,0,69,165,236,80,233,59,11,0,74,37,192,148,196,8,6,0,77,165,60,29,254,243,5,0,77,165,60,29,153,89,7,0,78,165,27,119,55,21,11,0,79,37,26,68,24,190,10,0,79,165,155,205,149,70,11,0,81,165,8,220,250,165,6,0,81,165,8,220,33,166,6,0,82,165,186,196,224,146,8,0,82,165,186,196,132,150,8,0,83,37,110,237,138,115,8,0,83,37,110,237,117,124,8,0,83,37,110,237,105,133,8,0,83,165,10,80,230,71,9,0,83,165,10,80,83,72,9,0,84,165,168,178,215,169,10,0,85,165,197,5,191,166,9,0,85,165,197,5,252,166,9,0,85,165,197,5,39,167,9,0,86,37,154,78,215,16,10,0,86,37,154,78,135,17,10,0,87,37,35,126,25,123,6,0,90,165,58,193,214,236,10,0,91,37,162,246,206,218,5,0,94,37,162,106,117,79,7,0,96,37,115,98,57,171,8,0,96,37,115,98,133,172,8,0,96,37,115,98,211,173,8,0,97,165,240,104,203,139,7,0,97,165,155,30,191,183,8,0,103,37,187,244,123,236,9,0,107,165,38,182,204,36,6,0,108,37,187,176,227,161,9,0,108,37,187,176,18,162,9,0,111,37,148,85,228,109,9,0,111,37,148,85,248,110,9,0,114,165,46,63,34,93,11,0,115,37,188,43,38,98,7,0,115,37,237,110,101,139,10,0,118,37,45,154,194,211,6,0,118,37,111,162,208,75,11,0,119,165,237,120,116,9,7,0,123,37,23,57,38,98,7,0,123,37,121,167,218,113,9,0,123,37,121,167,120,114,9,0,125,37,20,37,16,222,6,0,127,37,89,244,22,231,10,0,129,37,54,155,138,115,8,0,129,37,54,155,117,124,8,0,129,37,54,155,105,133,8,0,133,37,100,148,203,238,7,0,134,165,128,57,232,191,8,0,134,165,128,57,162,193,8,0,137,37,239,203,201,3,7,0,138,165,113,65,243,6,7,0,140,165,117,57,253,81,6,0,140,37,89,77,235,46,11,0,141,165,208,18,75,142,9,0,141,165,208,18,75,142,9,0,141,165,208,18,201,142,9,0,141,165,208,18,201,142,9,0,141,165,208,18,84,143,9,0,141,165,208,18,84,143,9,0,141,37,64,242,104,15,10,0,141,37,64,242,169,15,10,0,141,165,80,103,76,140,10,0,144,37,136,125,207,69,11,0,145,37,20,44,218,134,10,0,146,37,160,1,124,45,8,0,146,37,160,1,1,46,8,0,146,37,160,1,123,46,8,0,147,165,224,103,143,80,6,0,148,165,173,202,154,30,6,0,148,165,110,153,71,236,6,0,149,37,20,28,151,21,7,0,149,37,168,97,138,115,8,0,149,37,168,97,117,124,8,0,149,37,168,97,105,133,8,0,150,165,161,99,106,59,9,0,150,165,161,99,181,59,9,0,151,165,197,249,139,158,8,0,151,165,197,249,224,163,8,0,151,37,243,117,123,236,9,0,153,37,59,197,236,167,6,0,156,165,9,243,212,243,6,0,158,37,23,35,29,246,7,0,159,165,158,177,71,236,6,0,162,165,62,181,227,108,7,0,162,165,80,224,200,6,9,0,162,165,80,224,117,7,9,0,165,37,55,162,139,158,8,0,165,37,55,162,224,163,8,0,167,37,133,3,197,138,10,0,169,37,103,242,29,5,7,0,169,165,191,171,38,98,7,0,174,37,192,117,159,23,11,0,175,37,56,6,125,44,7,0,175,37,8,162,236,51,7,0,177,165,102,52,254,254,6,0,178,37,83,180,24,8,7,0,180,37,215,206,136,58,7,0,180,37,24,46,212,21,9,0,180,37,24,46,31,22,9,0,180,37,24,46,103,22,9,0,182,37,203,148,236,51,7,0,184,37,196,16,68,202,6,0,185,165,216,173,250,77,6,0,185,37,218,136,136,58,7,0,187,37,158,115,44,26,7,0,188,165,119,84,232,177,6,0,188,165,104,209,38,253,8,0,188,165,104,209,173,253,8,0,190,37,66,168,151,123,10,0,193,165,25,186,204,213,9,0,195,37,254,43,77,142,6,0,198,165,115,57,136,58,7,0,202,165,171,117,237,94,10,0,204,165,59,103,80,42,11,0,205,165,60,58,99,42,7,0,205,37,56,144,160,234,8,0,205,37,56,144,175,235,8,0,209,37,213,166,220,189,6,0,209,165,85,88,245,28,10,0,209,165,85,88,145,31,10,0,212,37,135,227,171,63,7,0,214,37,79,82,245,28,10,0,214,37,79,82,145,31,10,0,216,165,192,25,124,45,8,0,216,165,192,25,1,46,8,0,216,165,192,25,123,46,8,0,217,165,130,243,236,169,9,0,217,165,130,243,7,170,9,0,223,37,25,227,247,55,7,0,223,165,42,222,138,115,8,0,223,165,42,222,117,124,8,0,223,165,42,222,105,133,8,0,227,165,34,188,71,236,6,0,231,37,199,20,91,147,7,0,231,37,73,70,165,89,11,0,232,165,183,32,160,234,8,0,232,165,183,32,175,235,8,0,232,37,31,51,28,68,9,0,232,37,31,51,215,68,9,0,233,165,38,121,225,24,6,0,233,37,220,100,38,98,7,0,234,165,151,220,33,210,6,0,234,37,45,16,117,212,6,0,234,37,22,153,84,26,8,0,237,165,76,244,251,77,8,0,237,165,76,244,52,78,8,0,237,165,76,244,107,78,8,0,243,165,203,166,230,215,6,0,244,165,150,233,114,86,7,0,244,165,150,233,159,86,7,0,244,165,150,233,215,86,7,0,244,165,150,233,88,87,7,0,244,165,150,233,188,87,7,0,244,165,150,233,31,88,7,0,244,165,150,233,130,88,7,0,244,165,150,233,228,88,7,0,244,165,150,233,31,89,7,0,244,165,150,233,182,94,7,0,244,165,167,9,152,111,7,0,244,165,146,231,2,199,9,0,244,165,146,231,169,199,9,0,248,37,181,227,136,58,7,0,249,165,236,16,175,206,5,0,251,165,212,246,209,41,7,0,251,37,245,113,119,47,9,0,251,37,245,113,145,47,9,0,252,37,89,35,224,78,6,0,253,165,176,233,114,14,11,0,2,38,10,70,46,43,7,0,3,166,56,250,204,36,6,0,5,166,215,131,210,110,7,0,5,166,215,131,177,118,7,0,7,38,194,228,128,189,10,0,8,38,112,116,0,203,6,0,9,166,207,173,151,21,7,0,12,166,79,223,38,98,7,0,13,166,91,6,22,35,7,0,14,38,93,209,212,243,6,0,17,166,40,118,121,217,6,0,17,166,178,50,186,102,11,0,18,166,201,209,136,58,7,0,18,166,17,49,38,98,7,0,19,38,18,36,105,1,6,0,19,38,80,169,117,79,7,0,23,166,61,205,194,120,10,0,25,38,247,27,236,51,7,0,26,166,233,66,205,151,9,0,26,166,233,66,199,152,9,0,26,166,233,66,220,153,9,0,26,166,55,149,24,188,10,0,29,38,78,38,76,167,7,0,29,38,78,38,115,167,7,0,29,166,26,13,34,134,10,0,35,166,38,126,209,40,7,0,37,166,6,6,245,28,10,0,37,166,6,6,145,31,10,0,39,166,117,78,240,232,7,0,39,166,117,78,33,233,7,0,39,166,117,78,77,233,7,0,39,166,117,78,117,233,7,0,41,166,87,109,177,181,8,0,41,166,87,109,204,181,8,0,42,38,46,153,129,21,6,0,42,38,46,153,58,26,6,0,42,38,46,153,69,84,6,0,44,38,44,185,117,79,7,0,46,38,249,22,78,47,11,0,48,166,159,36,80,49,7,0,48,166,159,36,171,49,7,0,49,38,130,24,231,151,6,0,51,166,204,1,195,90,11,0,52,38,3,152,247,55,7,0,54,166,60,166,138,115,8,0,54,166,60,166,117,124,8,0,54,166,60,166,105,133,8,0,54,38,230,218,252,63,10,0,54,38,230,218,175,85,10,0,55,166,125,165,81,239,8,0,55,166,125,165,40,240,8,0,57,38,22,197,117,79,7,0,58,166,193,104,123,236,9,0,60,38,223,104,103,170,8,0,60,38,223,104,188,170,8,0,62,38,164,63,38,98,7,0,63,38,112,242,38,98,7,0,64,38,180,8,23,179,8,0,64,38,180,8,119,179,8,0,65,38,68,201,75,153,6,0,66,166,214,125,200,217,6,0,67,166,137,125,136,58,7,0,68,38,77,98,179,222,8,0,68,38,77,98,152,223,8,0,71,166,75,86,28,224,9,0,71,166,75,86,65,224,9,0,71,166,75,86,93,224,9,0,72,38,205,68,139,252,8,0,72,38,205,68,171,252,8,0,72,38,205,68,207,252,8,0,77,38,115,40,138,70,7,0,77,38,19,88,76,229,10,0,80,166,140,138,175,40,7,0,86,38,236,113,91,103,11,0,90,38,240,141,183,20,10,0,90,38,240,141,230,20,10,0,92,166,140,5,69,69,7,0,93,38,183,37,119,128,9,0,93,38,183,37,138,128,9,0,95,166,201,110,218,113,9,0,95,166,201,110,120,114,9,0,96,38,45,47,123,236,9,0,97,38,106,43,50,211,6,0,97,38,175,52,219,1,7,0,99,38,21,243,253,208,8,0,99,38,21,243,22,211,8,0,102,38,55,243,53,74,10,0,106,166,20,141,244,57,10,0,108,166,205,80,13,32,9,0,108,166,205,80,195,32,9,0,110,38,234,89,172,3,7,0,111,38,6,234,212,170,10,0,111,38,100,218,224,96,11,0,112,166,8,60,160,234,8,0,112,166,8,60,175,235,8,0,119,38,234,220,71,236,6,0,119,166,115,27,167,194,7,0,123,166,88,202,0,203,6,0,124,166,193,148,254,138,9,0,124,166,193,148,42,139,9,0,127,166,37,144,71,236,6,0,127,166,173,134,70,209,9,0,127,166,173,134,141,209,9,0,127,166,173,134,208,209,9,0,127,166,173,134,13,210,9,0,127,166,173,134,4,71,10,0,129,166,179,39,215,16,10,0,129,166,179,39,135,17,10,0,130,38,95,206,136,58,7,0,132,38,162,129,29,150,7,0,132,166,85,22,212,77,9,0,132,166,85,22,34,78,9,0,132,38,7,198,221,38,10,0,132,38,7,198,62,40,10,0,134,38,190,25,174,8,8,0,137,38,123,37,180,87,6,0,137,166,154,143,253,208,8,0,137,166,154,143,22,211,8,0,137,166,46,3,109,172,9,0,137,166,46,3,178,173,9,0,137,166,46,3,250,174,9,0,138,38,67,82,171,63,7,0,143,38,187,144,194,211,6,0,144,38,147,194,20,15,7,0,144,38,147,194,179,17,7,0,145,38,71,236,12,22,6,0,145,166,235,96,14,96,11,0,148,38,29,31,109,172,9,0,148,38,29,31,178,173,9,0,148,38,29,31,250,174,9,0,148,38,221,128,245,28,10,0,148,38,221,128,145,31,10,0,150,166,77,213,171,49,7,0,152,38,145,187,81,239,8,0,152,38,145,187,40,240,8,0,152,166,124,198,28,68,9,0,152,166,124,198,215,68,9,0,154,166,56,180,50,51,7,0,155,166,2,248,151,21,7,0,156,38,196,217,126,226,7,0,157,166,251,99,96,214,6,0,157,38,188,148,117,37,7,0,158,38,34,75,128,8,7,0,161,38,146,80,20,212,5,0,161,166,75,202,117,37,7,0,161,38,7,17,90,53,7,0,162,166,41,129,67,147,6,0,162,166,85,170,128,188,10,0,163,38,23,120,98,236,5,0,163,38,231,208,254,243,5,0,163,38,231,208,153,89,7,0,163,166,109,82,205,151,9,0,163,166,109,82,199,152,9,0,163,166,109,82,220,153,9,0,164,38,236,102,236,51,7,0,167,166,181,218,20,15,7,0,167,166,181,218,179,17,7,0,167,166,207,222,30,171,9,0,168,38,241,206,82,231,9,0,172,38,120,226,221,38,10,0,172,38,120,226,62,40,10,0,173,38,146,40,53,69,10,0,175,38,150,136,12,82,10,0,177,38,120,101,139,158,8,0,177,38,120,101,224,163,8,0,178,166,208,224,162,28,9,0,178,166,208,224,244,28,9,0,179,38,186,79,161,46,10,0,179,38,186,79,238,46,10,0,180,166,122,87,17,224,5,0,184,166,41,129,124,253,6,0,184,38,77,180,151,21,7,0,185,166,241,22,71,236,6,0,185,38,85,71,80,32,7,0,188,166,11,157,127,63,9,0,188,166,11,157,181,63,9,0,188,166,11,157,65,64,9,0,189,38,45,152,132,18,9,0,189,38,45,152,211,18,9,0,189,38,45,152,49,19,9,0,189,38,45,152,130,19,9,0,190,166,185,7,171,104,10,0,193,38,217,157,26,32,6,0,194,166,154,196,180,5,6,0,196,38,46,143,155,67,7,0,199,166,232,88,123,246,5,0,199,166,148,138,167,83,11,0,200,38,176,183,103,170,8,0,200,38,176,183,188,170,8,0,200,38,134,203,113,135,9,0,200,38,134,203,147,135,9,0,200,38,134,203,228,135,9,0,205,166,237,58,99,3,7,0,207,38,32,178,224,146,8,0,207,38,32,178,132,150,8,0,207,166,199,173,160,235,10,0,210,38,180,47,135,90,9,0,210,38,180,47,124,91,9,0,212,166,56,100,160,234,8,0,212,166,56,100,175,235,8,0,213,166,15,249,22,62,10,0,214,38,212,16,7,220,6,0,215,38,139,171,160,234,8,0,215,38,139,171,175,235,8,0,215,166,237,201,100,40,11,0,218,166,31,178,135,90,9,0,218,166,31,178,124,91,9,0,219,38,82,110,139,158,8,0,219,38,82,110,224,163,8,0,221,38,208,2,4,127,6,0,222,38,12,73,72,202,8,0,222,38,12,73,175,202,8,0,223,166,223,53,152,111,7,0,223,166,223,53,173,169,8,0,224,166,234,216,1,227,5,0,225,166,41,213,123,236,9,0,226,38,151,137,217,92,11,0,228,166,229,241,253,208,8,0,228,166,229,241,22,211,8,0,228,166,164,40,190,8,11,0,229,166,238,98,113,24,7,0,229,38,55,152,136,58,7,0,230,38,63,140,15,233,8,0,230,38,63,140,139,233,8,0,233,166,113,31,123,53,6,0,234,166,239,139,130,201,5,0,235,166,173,247,51,214,8,0,235,166,173,247,241,214,8,0,235,166,173,247,169,215,8,0,236,166,184,148,177,251,8,0,236,166,184,148,213,251,8,0,237,166,71,202,38,98,7,0,240,166,60,182,78,135,7,0,240,166,166,98,43,242,10,0,241,38,202,179,175,40,7,0,241,166,29,207,78,203,8,0,241,166,152,36,59,143,10,0,241,166,152,36,78,143,10,0,243,166,185,24,71,236,6,0,244,38,13,190,237,73,7,0,244,166,10,243,253,208,8,0,244,166,10,243,22,211,8,0,249,166,67,193,156,218,7,0,250,166,33,7,203,246,10,0,252,38,194,129,111,228,10,0,254,38,149,164,230,215,6,0,254,38,108,89,255,179,8,0,254,38,108,89,110,180,8,0,255,38,253,42,51,214,8,0,255,38,253,42,241,214,8,0,255,38,253,42,169,215,8,0,0,167,40,117,219,1,7,0,0,167,30,144,218,165,10,0,7,167,253,98,247,55,7,0,7,39,120,221,215,16,10,0,7,39,120,221,135,17,10,0,8,39,220,24,38,98,7,0,9,39,107,105,238,10,11,0,10,167,26,150,117,79,7,0,10,39,45,154,138,115,8,0,10,39,45,154,117,124,8,0,10,39,45,154,105,133,8,0,11,167,201,107,198,130,6,0,11,167,201,107,6,155,6,0,11,39,174,189,139,158,8,0,11,39,174,189,224,163,8,0,11,167,122,198,112,5,10,0,11,167,122,198,28,6,10,0,12,39,41,152,124,45,8,0,12,39,41,152,1,46,8,0,12,39,41,152,123,46,8,0,13,39,103,217,180,28,7,0,13,167,165,91,247,55,7,0,13,39,32,106,43,26,11,0,14,167,101,162,179,17,7,0,14,167,126,185,0,189,8,0,14,167,126,185,54,189,8,0,14,167,101,162,74,77,11,0,15,39,31,105,173,188,5,0,19,167,27,233,38,253,8,0,19,167,27,233,173,253,8,0,19,39,143,135,95,204,10,0,21,167,144,201,55,101,6,0,22,167,32,136,123,236,9,0,28,167,132,19,121,217,6,0,29,39,98,204,114,209,6,0,29,39,118,200,236,51,7,0,32,167,107,80,118,226,8,0,32,167,107,80,72,228,8,0,34,39,45,29,57,224,7,0,38,167,132,135,234,236,8,0,38,167,132,135,9,237,8,0,38,167,132,135,38,237,8,0,38,167,26,118,255,138,10,0,39,167,98,4,169,35,8,0,40,167,233,207,100,148,7,0,40,167,233,207,152,148,7,0,42,39,232,255,16,89,10,0,42,167,22,236,141,81,11,0,44,167,51,51,113,47,7,0,45,167,203,125,188,73,7,0,45,39,226,122,245,28,10,0,45,39,226,122,145,31,10,0,51,167,93,45,39,59,11,0,54,39,21,169,29,5,7,0,56,167,68,64,138,187,5,0,56,39,214,180,167,107,7,0,57,167,217,126,117,79,7,0,59,167,159,148,121,97,7,0,59,167,244,229,167,107,7,0,60,167,56,49,160,42,11,0,61,39,172,249,65,172,7,0,62,39,166,117,71,236,6,0,62,39,56,85,15,233,8,0,62,39,56,85,139,233,8,0,63,167,67,2,180,246,9,0,63,167,67,2,217,246,9,0,64,167,112,11,118,0,7,0,64,167,155,71,115,43,7,0,66,167,12,178,118,26,7,0,68,167,75,142,119,199,6,0,68,167,102,139,171,49,7,0,70,39,133,29,78,217,6,0,71,167,214,229,61,187,7,0,73,39,162,165,145,143,7,0,76,167,153,206,139,158,8,0,76,167,153,206,224,163,8,0,77,39,209,68,231,50,11,0,80,167,115,84,239,23,6,0,86,39,3,134,247,55,7,0,87,167,144,45,179,17,7,0,88,39,41,86,61,40,7,0,88,167,16,151,136,58,7,0,89,167,107,17,211,234,5,0,89,167,107,17,211,138,6,0,89,39,237,39,136,58,7,0,91,39,64,51,167,37,11,0,92,167,213,91,211,234,5,0,92,167,93,224,145,32,11,0,95,167,189,35,154,221,6,0,96,167,63,166,71,236,6,0,96,167,75,221,212,243,6,0,97,39,175,3,214,108,8,0,97,39,175,3,226,43,9,0,97,39,175,3,66,44,9,0,97,39,175,3,167,44,9,0,97,39,175,3,5,45,9,0,97,39,175,3,108,45,9,0,100,167,41,37,130,227,6,0,100,167,214,122,90,53,7,0,101,167,107,69,189,114,6,0,101,167,148,155,123,236,9,0,103,39,70,225,213,41,10,0,103,39,70,225,87,42,10,0,104,167,200,194,141,91,8,0,105,39,10,247,29,204,8,0,105,39,10,247,6,205,8,0,105,39,187,90,194,103,10,0,108,167,32,224,153,11,7,0,109,39,21,33,119,236,5,0,110,167,13,109,233,53,9,0,110,167,13,109,38,54,9,0,110,167,13,109,118,54,9,0,115,167,39,159,23,84,6,0,120,39,60,17,194,85,9,0,120,39,60,17,241,85,9,0,120,167,16,76,191,74,10,0,120,167,16,76,245,74,10,0,122,39,198,214,114,209,6,0,123,167,231,105,195,48,7,0,130,39,187,34,135,90,9,0,130,39,187,34,124,91,9,0,134,167,231,181,28,253,6,0,134,167,37,30,151,21,7,0,134,39,58,141,0,190,8,0,134,39,58,141,168,190,8,0,136,167,250,126,191,251,5,0,136,39,146,217,117,37,7,0,136,39,242,38,212,241,10,0,138,167,86,213,230,130,7,0,138,39,83,128,148,80,8,0,139,39,174,94,179,17,7,0,143,39,170,211,118,214,6,0,143,39,136,67,228,109,9,0,143,39,136,67,248,110,9,0,145,167,126,33,71,236,6,0,146,39,28,127,224,146,8,0,146,39,28,127,132,150,8,0,148,167,193,165,106,200,5,0,148,39,94,94,93,126,7,0,152,39,111,52,46,43,7,0,154,39,148,190,237,73,7,0,154,39,148,190,152,111,7,0,158,39,1,97,209,131,7,0,160,39,54,81,211,210,9,0,160,39,54,81,245,210,9,0,160,39,223,3,204,213,9,0,160,167,121,182,158,89,10,0,162,39,78,108,129,58,6,0,163,167,140,1,72,82,6,0,165,167,35,129,38,98,7,0,165,39,102,100,245,28,10,0,165,39,102,100,145,31,10,0,166,167,160,196,90,175,8,0,166,167,160,196,74,176,8,0,167,39,16,51,90,175,8,0,167,39,16,51,74,176,8,0,172,39,93,53,211,138,6,0,179,39,16,61,202,177,10,0,182,39,18,156,152,111,7,0,182,39,18,156,84,53,8,0,185,39,76,123,38,98,7,0,186,39,45,79,33,65,7,0,186,167,33,18,155,67,7,0,187,39,74,72,212,243,6,0,187,167,153,97,231,61,10,0,188,39,175,138,59,179,7,0,188,39,175,138,104,179,7,0,188,39,175,138,153,179,7,0,193,39,74,0,170,14,10,0,193,39,74,0,191,14,10,0,198,39,165,125,82,170,9,0,198,39,165,125,106,170,9,0,199,39,26,202,253,208,8,0,199,39,26,202,22,211,8,0,200,167,205,143,80,32,7,0,200,39,34,41,30,77,10,0,204,39,27,46,250,57,8,0,206,39,177,149,237,73,7,0,208,167,180,148,246,60,8,0,208,167,27,171,138,115,8,0,208,167,27,171,117,124,8,0,208,167,27,171,105,133,8,0,209,39,173,191,100,228,6,0,211,39,127,166,240,226,6,0,211,39,248,109,90,53,7,0,211,39,40,248,70,14,11,0,215,39,207,233,123,236,9,0,217,167,28,229,139,213,6,0,217,167,62,193,237,73,7,0,220,167,71,213,61,73,10,0,221,39,225,136,103,170,8,0,221,39,225,136,188,170,8,0,223,39,220,190,249,9,7,0,225,39,184,255,38,31,7,0,225,39,161,29,138,115,8,0,225,39,161,29,117,124,8,0,225,39,161,29,105,133,8,0,228,167,173,145,229,19,8,0,228,167,173,145,71,20,8,0,228,39,0,239,234,80,9,0,228,39,0,239,1,81,9,0,229,39,43,52,231,77,11,0,230,39,33,100,71,236,6,0,231,167,157,112,125,44,7,0,232,39,70,166,125,44,7,0,233,39,63,142,81,239,8,0,233,39,63,142,40,240,8,0,237,167,148,128,138,115,8,0,237,167,148,128,117,124,8,0,237,167,148,128,105,133,8,0,238,39,62,102,193,96,8,0,240,39,101,45,200,93,10,0,242,39,139,10,33,82,6,0,245,39,238,170,71,92,6,0,245,39,238,170,119,73,9,0,245,39,238,170,155,73,9,0,246,39,133,240,241,252,5,0,248,167,38,213,117,113,6,0,249,167,225,81,14,251,9,0,249,167,225,81,36,251,9,0,249,167,225,81,60,251,9,0,250,39,225,137,117,79,7,0,252,167,200,31,228,109,9,0,252,167,200,31,248,110,9,0,252,39,91,169,79,123,10,0,253,167,229,33,34,226,10,0,254,39,35,216,246,19,10,0,254,39,35,216,20,20,10,0,255,167,164,101,119,194,6,0,255,167,37,180,247,55,7,0,255,167,162,44,230,130,7,0,255,167,61,33,144,189,7,0,1,168,242,195,38,103,9,0,1,168,242,195,89,103,9,0,1,40,55,3,72,27,11,0,4,168,106,173,109,172,9,0,4,168,106,173,178,173,9,0,4,168,106,173,250,174,9,0,10,168,201,189,241,158,6,0,10,168,50,240,54,233,6,0,11,40,54,12,192,230,5,0,15,168,179,220,215,255,6,0,19,168,188,98,220,189,6,0,25,40,111,178,139,158,8,0,25,40,111,178,224,163,8,0,25,168,229,186,124,10,9,0,26,168,205,93,243,6,7,0,27,168,132,182,214,7,7,0,28,40,24,244,151,21,7,0,29,168,131,9,68,65,11,0,29,168,131,9,113,68,11,0,31,168,20,154,54,233,6,0,31,168,24,64,89,132,9,0,31,168,24,64,124,132,9,0,31,168,24,64,171,132,9,0,32,40,174,30,107,221,5,0,35,168,202,62,125,177,9,0,35,168,202,62,224,177,9,0,35,168,202,62,64,178,9,0,36,40,43,70,237,73,7,0,38,168,184,45,92,198,5,0,38,40,10,58,55,114,10,0,39,168,62,49,116,147,10,0,44,40,144,180,90,53,7,0,45,40,172,111,249,154,8,0,45,40,172,111,249,154,8,0,45,40,172,111,148,155,8,0,45,40,172,111,148,155,8,0,45,40,172,111,52,156,8,0,45,40,172,111,52,156,8,0,45,40,128,76,123,236,9,0,46,168,232,208,71,236,6,0,47,40,191,143,7,236,7,0,48,40,5,78,16,229,5,0,48,168,20,202,179,181,7,0,51,168,183,22,88,26,7,0,52,40,164,93,0,239,5,0,56,168,134,216,237,123,9,0,56,168,134,216,7,124,9,0,61,168,222,60,236,213,6,0,61,40,226,220,13,32,9,0,61,40,226,220,195,32,9,0,62,168,194,209,128,147,6,0,64,168,229,212,51,60,11,0,65,40,158,172,151,21,7,0,66,40,20,236,183,79,6,0,66,168,237,96,212,243,6,0,66,40,169,203,199,145,7,0,67,168,183,87,26,85,11,0,70,40,81,150,115,7,10,0,70,40,81,150,190,7,10,0,70,40,81,150,10,8,10,0,71,40,148,16,103,46,7,0,72,40,81,190,118,26,7,0,72,168,32,134,247,55,7,0,73,168,136,186,114,188,8,0,73,168,136,186,157,188,8,0,73,168,246,117,34,10,10,0,76,168,42,189,2,23,7,0,85,40,120,136,29,5,7,0,85,168,72,222,247,55,7,0,86,168,79,66,26,232,10,0,91,168,95,219,73,154,10,0,93,168,67,152,143,80,6,0,94,40,1,217,237,73,7,0,94,40,12,99,139,158,8,0,94,40,12,99,224,163,8,0,94,40,1,217,212,86,9,0,94,40,1,217,241,86,9,0,94,40,1,217,15,87,9,0,94,40,1,217,51,87,9,0,94,40,1,217,87,87,9,0,94,168,114,94,72,204,9,0,94,40,1,217,247,242,10,0,94,40,1,217,117,244,10,0,94,40,1,217,142,244,10,0,94,40,1,217,63,253,10,0,98,168,133,224,71,236,6,0,98,168,235,235,127,63,9,0,98,168,235,235,181,63,9,0,98,168,235,235,247,63,9,0,99,40,195,103,133,135,6,0,99,40,195,103,237,95,7,0,99,40,195,103,20,96,7,0,99,40,195,103,214,96,7,0,104,40,107,159,253,68,6,0,105,168,12,220,127,245,10,0,107,168,35,129,59,36,6,0,108,168,249,96,232,191,8,0,108,168,249,96,162,193,8,0,111,40,5,80,253,208,8,0,111,40,5,80,22,211,8,0,111,40,201,143,59,35,11,0,116,40,60,120,162,230,5,0,116,168,138,120,199,85,6,0,116,168,149,13,91,139,6,0,116,168,149,13,111,139,6,0,116,168,129,186,71,236,6,0,116,40,38,118,177,133,7,0,116,40,38,118,38,134,7,0,118,40,239,123,68,202,6,0,118,168,172,59,237,73,7,0,119,168,100,116,102,223,6,0,123,40,152,235,179,222,8,0,123,40,152,235,152,223,8,0,124,40,39,252,99,66,8,0,126,40,192,148,34,10,10,0,127,40,144,90,66,84,8,0,128,168,60,188,236,26,7,0,129,40,121,44,181,166,10,0,130,40,195,3,117,37,7,0,130,40,220,6,184,1,8,0,131,168,15,151,90,255,5,0,131,168,209,74,197,253,6,0,131,40,130,33,224,146,8,0,131,40,130,33,132,150,8,0,133,168,39,26,125,44,7,0,133,40,188,41,224,146,8,0,133,40,188,41,132,150,8,0,134,168,242,251,186,242,5,0,136,40,22,198,80,141,6,0,136,40,89,180,103,69,11,0,137,40,247,220,212,243,6,0,137,168,219,151,231,29,7,0,137,40,201,221,80,49,7,0,137,168,194,45,232,191,8,0,137,168,194,45,162,193,8,0,137,40,119,49,43,46,11,0,137,40,119,49,233,54,11,0,141,168,99,180,245,28,10,0,141,168,99,180,145,31,10,0,143,40,59,149,66,21,10,0,143,40,59,149,99,21,10,0,143,40,59,149,155,21,10,0,145,40,166,230,57,171,8,0,145,40,166,230,133,172,8,0,145,40,166,230,211,173,8,0,156,40,236,187,212,243,6,0,156,168,24,179,136,58,7,0,156,40,141,220,109,172,9,0,156,40,141,220,178,173,9,0,156,40,141,220,250,174,9,0,161,40,152,93,47,1,7,0,162,40,0,112,152,111,7,0,162,40,0,112,60,44,8,0,162,40,0,112,175,44,8,0,162,40,0,112,24,45,8,0,162,40,0,112,178,229,9,0,163,40,180,148,31,35,6,0,166,40,185,148,216,217,10,0,167,40,100,61,70,58,10,0,168,40,41,13,123,236,9,0,169,40,241,8,243,6,7,0,173,168,13,44,227,108,7,0,175,168,35,129,152,111,7,0,175,168,35,129,46,121,7,0,175,168,35,129,72,121,7,0,177,168,133,1,147,226,5,0,177,168,108,167,132,215,6,0,177,40,95,34,113,47,7,0,179,40,160,20,38,98,7,0,179,168,99,46,212,207,7,0,182,40,1,220,7,249,7,0,185,40,166,188,104,162,6,0,188,40,185,148,165,46,6,0,188,40,107,90,212,243,6,0,190,40,16,27,139,158,8,0,190,40,16,27,224,163,8,0,192,40,158,18,209,40,7,0,192,40,57,34,52,105,10,0,196,40,3,70,105,177,8,0,196,40,3,70,162,177,8,0,199,168,21,111,189,52,8,0,200,40,148,71,247,55,7,0,205,168,150,42,219,210,7,0,206,40,13,237,34,223,5,0,206,40,202,59,141,195,8,0,206,40,202,59,112,196,8,0,206,40,202,59,75,197,8,0,209,168,117,112,138,115,8,0,209,168,117,112,117,124,8,0,209,168,117,112,105,133,8,0,209,168,195,202,141,195,8,0,209,168,195,202,112,196,8,0,209,168,195,202,75,197,8,0,210,40,31,124,199,145,7,0,213,40,26,233,152,111,7,0,213,40,26,233,173,169,8,0,213,40,231,242,245,28,10,0,213,40,231,242,145,31,10,0,214,168,144,247,11,185,10,0,215,168,112,4,204,36,6,0,215,40,150,228,22,35,7,0,215,40,125,27,210,164,9,0,215,40,125,27,232,164,9,0,215,40,125,27,252,164,9,0,219,40,53,51,114,48,11,0,219,40,53,51,146,55,11,0,223,40,128,254,22,35,7,0,225,168,148,65,152,111,7,0,225,168,148,65,128,200,9,0,226,40,180,8,29,204,8,0,226,40,180,8,6,205,8,0,227,168,209,6,209,131,7,0,231,40,19,229,50,51,7,0,232,40,100,210,111,228,10,0,233,40,15,161,230,215,6,0,233,168,227,110,71,236,6,0,234,168,176,89,8,156,6,0,236,40,143,142,212,200,6,0,240,168,105,57,90,53,7,0,240,40,42,94,226,154,9,0,240,40,42,94,114,155,9,0,241,168,106,152,63,14,9,0,241,168,106,152,116,14,9,0,245,168,82,198,6,225,5,0,245,168,12,156,166,220,8,0,245,168,12,156,241,220,8,0,247,168,197,146,117,37,7,0,247,40,251,220,249,70,9,0,247,40,251,220,25,71,9,0,248,168,255,94,42,253,7,0,248,168,255,94,138,115,8,0,248,168,255,94,117,124,8,0,249,40,187,136,144,17,6,0,252,168,95,107,90,56,9,0,252,168,95,107,90,56,9,0,252,168,95,107,171,56,9,0,252,168,95,107,171,56,9,0,252,168,95,107,54,57,9,0,252,168,95,107,54,57,9,0,254,40,151,212,138,28,7,0,254,168,208,106,147,180,10,0,254,168,208,106,63,183,10,0,2,41,238,89,33,65,7,0,3,169,207,202,245,207,6,0,3,169,162,187,123,236,9,0,6,41,53,166,38,98,7,0,9,41,55,230,71,236,6,0,10,41,51,234,150,127,7,0,10,41,51,234,249,154,8,0,10,41,51,234,148,155,8,0,10,41,51,234,52,156,8,0,12,169,194,109,164,93,9,0,12,169,194,109,185,93,9,0,13,41,16,69,248,176,6,0,14,41,33,149,144,33,6,0,16,41,222,4,219,80,10,0,18,41,109,248,140,66,7,0,18,41,109,248,234,66,7,0,19,169,235,170,89,18,6,0,19,169,106,228,38,98,7,0,19,169,70,198,226,154,9,0,19,169,70,198,114,155,9,0,20,169,251,88,237,73,7,0,21,41,19,86,153,11,7,0,21,41,19,86,135,13,7,0,23,169,76,144,107,23,10,0,23,169,76,144,195,23,10,0,24,41,247,6,232,191,8,0,24,41,247,6,162,193,8,0,29,41,105,121,80,230,10,0,34,169,160,114,90,175,8,0,34,169,160,114,74,176,8,0,34,169,24,180,194,69,9,0,34,169,24,180,231,69,9,0,34,169,24,180,44,70,9,0,34,169,254,166,106,209,10,0,35,169,169,213,183,110,8,0,35,169,169,213,2,111,8,0,35,41,27,152,156,178,8,0,35,41,27,152,177,178,8,0,35,41,27,152,209,178,8,0,37,41,172,227,237,73,7,0,39,41,156,80,4,44,6,0,41,41,136,3,139,214,9,0,41,41,136,3,234,214,9,0,41,41,136,3,70,215,9,0,45,169,227,50,156,31,7,0,46,169,190,117,111,11,11,0,58,169,157,38,71,236,6,0,60,169,83,192,71,236,6,0,63,169,107,209,168,65,11,0,64,169,35,224,167,107,7,0,64,41,189,108,8,119,10,0,70,169,212,23,123,236,9,0,71,41,187,148,153,11,7,0,71,41,187,148,135,13,7,0,73,41,137,232,114,188,8,0,73,41,137,232,157,188,8,0,74,41,144,126,224,146,8,0,74,41,144,126,132,150,8,0,79,41,8,157,227,108,7,0,79,41,236,96,34,10,10,0,82,41,221,14,163,59,8,0,82,41,221,14,204,59,8,0,85,41,239,174,237,73,7,0,85,41,188,148,76,81,9,0,85,41,188,148,115,81,9,0,88,41,137,203,124,198,10,0,89,41,79,7,39,233,5,0,89,169,63,35,254,89,6,0,89,169,79,125,58,118,6,0,90,41,226,101,212,243,6,0,90,41,132,172,153,11,7,0,90,41,132,172,135,13,7,0,91,169,205,63,240,232,7,0,91,169,205,63,33,233,7,0,91,169,205,63,77,233,7,0,91,169,205,63,117,233,7,0,92,169,29,155,237,73,7,0,93,169,218,151,128,8,7,0,93,169,249,197,246,205,8,0,93,169,249,197,155,206,8,0,94,169,13,157,113,232,6,0,97,169,162,107,86,196,7,0,97,169,162,107,128,196,7,0,97,169,162,107,175,196,7,0,97,169,162,107,221,196,7,0,99,169,224,200,160,147,10,0,107,41,127,72,131,48,7,0,109,169,163,215,159,92,9,0,109,169,163,215,5,93,9,0,113,169,86,190,226,154,9,0,113,169,86,190,114,155,9,0,114,169,35,157,249,129,6,0,114,169,223,104,29,5,7,0,114,41,243,51,6,16,11,0,115,169,184,207,138,115,8,0,115,169,184,207,117,124,8,0,115,169,184,207,105,133,8,0,115,169,131,220,152,87,11,0,117,169,93,110,171,47,6,0,123,41,82,1,118,226,8,0,123,41,82,1,72,228,8,0,123,41,85,106,171,20,11,0,132,169,194,222,216,140,10,0,134,41,175,120,233,53,9,0,134,41,175,120,38,54,9,0,134,41,175,120,118,54,9,0,136,169,51,155,51,54,6,0,136,169,104,233,67,152,10,0,137,41,13,35,71,236,6,0,137,169,227,234,117,79,7,0,138,169,171,24,94,9,11,0,147,169,92,35,179,17,7,0,147,41,123,45,38,98,7,0,147,41,121,242,38,98,7,0,147,41,33,116,106,146,10,0,148,169,148,93,185,90,6,0,149,169,225,81,210,224,6,0,153,169,108,187,123,236,9,0,153,169,117,132,157,158,10,0,154,169,115,7,138,96,8,0,162,41,34,45,113,232,6,0,162,169,138,111,71,236,6,0,163,41,69,175,219,72,10,0,164,169,196,30,118,26,7,0,167,41,14,81,170,76,11,0,169,41,230,197,29,204,8,0,169,41,230,197,6,205,8,0,173,41,207,40,47,1,7,0,174,169,45,1,51,241,8,0,174,169,45,1,198,241,8,0,176,169,253,168,117,79,7,0,177,41,118,45,239,24,7,0,178,169,210,202,80,32,7,0,178,169,16,98,0,190,8,0,178,169,16,98,168,190,8,0,178,41,215,203,128,183,10,0,179,169,203,125,138,115,8,0,179,169,203,125,117,124,8,0,179,169,203,125,105,133,8,0,179,41,9,60,2,252,10,0,179,41,9,60,49,252,10,0,180,41,47,175,38,98,7,0,182,169,214,223,130,160,9,0,182,169,214,223,144,160,9,0,184,169,157,38,214,77,6,0,184,41,81,190,212,243,6,0,184,169,197,170,136,58,7,0,184,169,157,38,210,110,7,0,184,41,161,24,139,158,8,0,184,41,161,24,224,163,8,0,189,169,160,179,72,8,9,0,189,169,160,179,102,8,9,0,189,169,160,179,132,8,9,0,189,169,86,77,228,109,9,0,189,169,86,77,248,110,9,0,191,41,131,198,254,207,10,0,191,41,131,198,98,208,10,0,194,169,157,38,24,190,5,0,194,41,65,90,62,4,7,0,194,169,151,48,99,66,8,0,194,169,151,48,218,67,8,0,194,169,151,48,69,68,8,0,195,169,225,20,227,218,6,0,195,169,225,20,101,219,6,0,198,41,156,9,139,158,8,0,198,41,156,9,224,163,8,0,199,169,126,248,137,79,10,0,202,41,124,141,172,136,6,0,202,41,124,141,80,167,6,0,202,41,185,250,46,206,6,0,202,169,72,86,38,98,7,0,202,41,185,250,174,70,8,0,202,41,185,250,231,70,8,0,202,41,185,250,30,71,8,0,202,41,17,99,178,92,11,0,203,41,96,111,5,148,7,0,203,169,12,5,138,115,8,0,203,169,12,5,117,124,8,0,203,169,12,5,105,133,8,0,205,169,126,40,25,149,7,0,205,41,14,134,23,179,8,0,205,41,14,134,119,179,8,0,205,41,46,211,35,235,10,0,206,169,112,16,219,210,7,0,207,41,148,210,113,47,7,0,207,169,99,214,151,74,11,0,209,41,49,240,31,16,6,0,209,41,75,249,103,46,7,0,211,41,26,125,198,59,6,0,211,41,232,238,171,63,7,0,211,41,190,183,95,0,10,0,211,41,190,183,200,0,10,0,212,41,58,115,152,111,7,0,213,169,222,28,71,236,6,0,214,169,121,213,123,40,11,0,215,169,142,214,0,190,8,0,215,169,142,214,168,190,8,0,216,41,27,220,240,18,11,0,217,169,105,128,103,46,7,0,220,41,231,149,64,86,9,0,220,41,231,149,109,86,9,0,222,169,80,15,36,85,10,0,225,41,215,171,67,227,5,0,226,169,220,255,135,90,9,0,226,169,220,255,124,91,9,0,231,41,209,121,159,74,6,0,231,169,118,215,236,51,7,0,231,169,248,238,138,115,8,0,231,169,248,238,117,124,8,0,231,169,248,238,105,133,8,0,232,41,158,200,247,55,7,0,234,169,214,70,66,121,6,0,234,169,77,2,71,236,6,0,235,169,100,210,56,201,5,0,235,169,135,142,29,204,8,0,235,169,135,142,6,205,8,0,236,169,201,49,153,11,7,0,236,169,201,49,135,13,7,0,237,41,54,52,123,236,9,0,239,41,93,94,69,67,7,0,241,169,202,117,179,222,8,0,241,169,202,117,152,223,8,0,242,41,61,120,180,144,8,0,242,41,61,120,67,145,8,0,243,169,80,11,214,47,9,0,243,169,80,11,239,47,9,0,243,169,80,11,15,48,9,0,245,169,102,224,127,253,7,0,245,169,102,224,170,253,7,0,245,169,102,224,213,253,7,0,246,41,131,182,214,7,7,0,246,41,110,230,138,115,8,0,246,41,110,230,117,124,8,0,246,41,110,230,105,133,8,0,247,169,58,253,180,28,7,0,247,41,5,165,91,147,7,0,249,41,161,45,245,28,10,0,249,41,161,45,145,31,10,0,250,41,20,172,247,208,6,0,250,169,65,117,38,98,7,0,252,41,241,36,212,243,6,0,253,41,84,92,2,254,9,0,253,41,84,92,40,254,9,0,254,41,124,77,245,41,7,0,254,169,249,187,206,74,9,0,254,169,249,187,229,74,9,0,0,170,84,108,177,133,7,0,0,170,84,108,38,134,7,0,1,42,130,157,80,32,7,0,2,170,233,69,155,67,7,0,5,42,219,239,2,23,7,0,5,170,250,78,211,133,9,0,5,170,250,78,233,133,9,0,5,170,225,77,22,217,9,0,5,170,225,77,103,217,9,0,7,170,34,143,90,53,7,0,10,170,164,151,227,108,7,0,10,42,81,190,2,237,10,0,18,42,17,160,72,202,8,0,18,42,17,160,175,202,8,0,21,42,84,176,186,238,5,0,22,170,31,11,152,111,7,0,22,170,31,11,14,124,7,0,22,170,31,11,62,124,7,0,24,170,8,125,26,131,9,0,24,170,8,125,62,131,9,0,25,42,51,181,254,225,5,0,25,170,225,154,151,22,6,0,25,170,225,154,66,40,6,0,25,42,112,37,55,127,6,0,28,42,178,54,71,236,6,0,29,42,15,52,152,11,11,0,30,42,193,155,13,32,9,0,30,42,193,155,195,32,9,0,33,42,7,107,188,54,11,0,35,42,36,177,159,92,9,0,35,42,36,177,5,93,9,0,39,170,87,158,237,73,7,0,42,42,99,224,243,6,7,0,44,42,108,61,138,115,8,0,44,42,108,61,117,124,8,0,44,42,108,61,105,133,8,0,46,170,198,84,254,243,5,0,46,170,198,84,153,89,7,0,46,170,123,101,46,16,10,0,47,42,185,44,157,38,9,0,47,42,185,44,181,38,9,0,49,170,220,106,40,217,8,0,49,170,220,106,209,217,8,0,56,42,64,239,224,251,6,0,56,42,64,239,179,17,7,0,59,170,196,77,187,12,6,0,59,170,213,187,113,24,7,0,60,170,157,38,237,222,5,0,60,170,131,19,117,178,10,0,60,170,131,19,157,178,10,0,61,42,10,84,160,4,8,0,62,42,113,182,212,109,8,0,63,42,139,201,80,167,9,0,63,42,139,201,37,168,9,0,67,42,29,180,212,243,6,0,71,42,176,138,13,32,9,0,71,42,176,138,195,32,9,0,72,170,17,190,220,58,6,0,72,42,55,13,182,119,6,0,72,170,131,150,71,236,6,0,73,42,254,67,162,28,9,0,73,42,254,67,244,28,9,0,74,170,182,7,247,55,7,0,76,42,65,229,114,41,8,0,81,170,145,2,75,142,9,0,81,170,145,2,201,142,9,0,81,170,145,2,84,143,9,0,82,42,89,211,109,172,9,0,82,42,89,211,178,173,9,0,82,42,89,211,250,174,9,0,82,170,157,48,170,30,11,0,85,42,184,81,103,46,7,0,88,170,13,205,189,112,10,0,89,42,0,170,152,111,7,0,89,42,0,170,178,125,7,0,92,170,229,212,148,59,11,0,93,42,96,23,212,243,6,0,93,42,31,161,117,37,7,0,93,42,96,23,152,111,7,0,93,42,96,23,187,119,7,0,94,42,178,111,82,122,6,0,95,170,250,64,179,222,8,0,95,170,250,64,152,223,8,0,96,42,65,53,138,115,8,0,96,42,65,53,117,124,8,0,96,42,65,53,105,133,8,0,97,170,4,192,90,7,7,0,100,170,157,38,56,99,6,0,100,42,39,52,152,111,7,0,108,170,164,133,212,243,6,0,108,42,177,105,120,77,10,0,111,170,158,182,42,184,7,0,111,170,158,182,96,184,7,0,111,170,158,182,150,184,7,0,111,170,126,215,255,179,8,0,111,170,126,215,110,180,8,0,111,42,43,87,253,208,8,0,111,42,43,87,22,211,8,0,113,170,246,197,38,98,7,0,113,170,246,197,44,115,8,0,114,170,80,36,227,108,7,0,114,170,80,36,204,36,9,0,115,170,227,234,84,117,9,0,115,170,227,234,114,117,9,0,116,170,47,161,170,101,6,0,118,170,141,84,135,90,9,0,118,170,141,84,124,91,9,0,120,170,14,118,26,0,7,0,120,170,233,188,90,53,7,0,121,42,190,26,90,53,7,0,124,42,87,198,128,77,6,0,126,42,113,150,187,13,8,0,126,42,240,16,232,129,10,0,126,170,130,131,208,194,10,0,127,170,182,159,68,80,6,0,130,42,113,5,138,115,8,0,130,42,113,5,117,124,8,0,130,42,113,5,105,133,8,0,131,42,195,47,63,165,6,0,131,42,197,157,167,8,7,0,134,170,254,166,57,171,8,0,134,170,254,166,133,172,8,0,134,170,254,166,211,173,8,0,135,170,207,235,93,18,11,0,136,170,230,10,141,255,8,0,136,170,230,10,235,255,8,0,137,170,191,225,20,15,7,0,137,170,40,173,152,111,7,0,137,170,40,173,84,53,8,0,138,170,102,255,247,55,7,0,139,170,202,169,128,8,7,0,139,42,32,113,234,36,7,0,139,170,2,3,245,28,10,0,139,170,2,3,145,31,10,0,145,170,164,7,124,45,8,0,145,170,164,7,1,46,8,0,145,170,164,7,123,46,8,0,145,170,224,166,3,157,8,0,145,170,224,166,180,157,8,0,145,42,190,93,229,69,11,0,146,170,78,85,10,204,6,0,150,170,72,178,180,28,7,0,151,42,178,142,123,236,9,0,154,170,143,138,99,42,7,0,156,170,39,48,166,132,6,0,158,170,68,91,118,203,5,0,161,42,102,227,138,115,8,0,161,42,102,227,117,124,8,0,161,42,102,227,105,133,8,0,161,170,50,255,1,120,10,0,162,170,183,188,179,17,7,0,162,42,64,104,117,79,7,0,165,170,129,169,61,161,6,0,170,42,155,17,130,227,6,0,175,170,6,33,16,254,10,0,176,42,184,124,65,186,7,0,178,42,241,53,17,175,6,0,178,42,211,227,135,80,10,0,178,42,182,102,211,47,11,0,180,42,29,237,123,236,9,0,182,170,193,99,138,115,8,0,182,170,193,99,117,124,8,0,182,170,193,99,105,133,8,0,182,170,201,49,43,70,11,0,184,170,214,40,54,84,6,0,189,42,92,100,165,50,6,0,189,170,218,87,12,105,11,0,194,170,179,67,114,234,6,0,195,170,212,236,179,17,7,0,195,170,212,236,109,26,10,0,195,170,212,236,184,26,10,0,196,42,185,166,138,115,8,0,196,42,185,166,117,124,8,0,196,42,185,166,105,133,8,0,197,42,29,102,178,233,6,0,199,42,183,132,138,115,8,0,199,42,183,132,117,124,8,0,199,42,183,132,105,133,8,0,202,42,55,247,137,216,5,0,202,42,55,247,223,2,8,0,202,170,84,112,148,219,10,0,206,42,98,154,194,59,10,0,208,170,96,61,36,159,7,0,212,42,90,62,111,228,10,0,214,42,26,43,1,177,10,0,218,170,170,38,180,144,8,0,218,170,170,38,67,145,8,0,219,42,25,118,17,181,10,0,219,42,25,118,82,181,10,0,219,42,25,118,143,181,10,0,219,170,130,169,27,34,11,0,220,42,7,40,104,244,9,0,220,42,7,40,251,244,9,0,220,42,7,40,146,245,9,0,221,42,146,111,212,243,6,0,226,42,91,110,32,69,10,0,227,170,14,28,55,93,10,0,228,42,187,202,121,193,5,0,228,42,187,202,208,224,10,0,229,42,180,255,226,137,6,0,230,42,192,52,247,214,6,0,232,42,58,56,185,220,5,0,232,42,58,56,217,220,5,0,232,42,58,56,212,243,6,0,232,42,100,120,123,236,9,0,242,42,225,10,164,25,7,0,243,42,53,149,29,209,5,0,243,42,75,9,152,111,7,0,243,42,75,9,173,169,8,0,244,170,95,42,212,243,6,0,244,170,125,140,117,79,7,0,246,170,53,127,242,154,6,0,248,170,218,215,73,29,8,0,249,170,227,234,12,27,8,0,249,42,237,216,129,95,10,0,250,170,53,149,210,41,8,0,250,170,162,1,99,66,8,0,250,170,90,59,69,232,10,0,251,42,138,9,37,38,6,0,255,170,227,234,123,236,9,0,3,171,128,209,58,250,9,0,3,171,128,209,79,250,9,0,3,171,128,209,103,250,9,0,5,43,220,216,117,79,7,0,7,171,2,230,197,253,6,0,10,171,43,226,209,208,7,0,10,43,81,172,20,48,10,0,10,43,81,172,93,48,10,0,10,43,81,172,163,48,10,0,10,43,81,172,240,48,10,0,10,43,81,172,60,49,10,0,10,43,81,172,136,49,10,0,10,43,81,172,212,49,10,0,12,43,121,46,38,98,7,0,13,43,27,59,4,26,6,0,13,43,36,249,38,98,7,0,14,43,243,216,232,191,8,0,14,43,243,216,162,193,8,0,15,43,189,127,129,211,5,0,16,43,164,116,112,101,11,0,17,171,43,42,66,172,6,0,18,43,54,204,237,73,7,0,20,171,215,136,179,17,7,0,20,171,30,76,136,58,7,0,23,43,36,176,78,47,11,0,27,171,247,249,156,31,7,0,27,43,145,101,117,79,7,0,27,43,12,116,148,186,8,0,27,43,12,116,221,186,8,0,27,43,41,48,36,188,10,0,30,43,194,167,171,49,7,0,30,171,7,141,191,55,7,0,30,171,7,141,247,55,7,0,32,171,119,82,117,79,7,0,35,43,42,242,125,44,7,0,35,171,64,64,253,208,8,0,35,171,64,64,22,211,8,0,37,43,199,150,33,65,7,0,38,43,87,88,124,10,9,0,41,171,35,189,44,206,7,0,46,171,193,148,228,95,6,0,48,171,212,68,75,1,9,0,48,171,212,68,154,2,9,0,48,171,212,68,235,3,9,0,48,171,212,68,65,5,9,0,49,43,221,96,102,91,6,0,50,43,63,107,38,98,7,0,51,43,247,84,233,215,5,0,52,43,164,171,152,111,7,0,52,43,79,246,177,133,7,0,52,43,79,246,38,134,7,0,52,43,164,171,26,38,10,0,52,43,164,171,54,38,10,0,55,43,205,2,7,237,5,0,55,43,104,109,135,90,9,0,55,43,104,109,124,91,9,0,56,43,190,36,180,28,7,0,56,43,254,168,204,230,7,0,59,43,108,205,153,11,7,0,59,43,108,205,135,13,7,0,60,171,203,6,1,99,9,0,60,171,203,6,25,99,9,0,60,171,203,6,57,99,9,0,61,43,185,73,138,95,6,0,61,171,237,56,227,229,6,0,61,43,185,73,38,98,7,0,61,171,164,133,99,66,8,0,65,171,110,22,71,236,6,0,65,171,128,254,229,19,8,0,65,171,128,254,71,20,8,0,67,171,24,120,89,132,9,0,67,171,24,120,124,132,9,0,67,171,24,120,171,132,9,0,71,171,32,32,139,158,8,0,71,171,32,32,224,163,8,0,71,43,179,186,82,198,8,0,71,43,179,186,116,198,8,0,71,43,227,97,51,241,8,0,71,43,227,97,198,241,8,0,75,43,140,187,226,154,9,0,75,43,140,187,114,155,9,0,76,171,67,71,204,213,9,0,79,43,205,188,247,55,7,0,80,171,75,108,112,27,7,0,81,43,160,203,234,126,6,0,81,171,225,227,194,35,10,0,81,171,225,227,14,36,10,0,83,43,155,10,230,215,6,0,85,171,99,216,104,244,9,0,85,171,99,216,251,244,9,0,85,171,99,216,146,245,9,0,86,43,130,114,247,55,7,0,86,43,40,31,237,73,7,0,91,171,236,3,84,242,5,0,92,43,145,128,165,115,6,0,93,43,81,207,73,141,10,0,95,43,147,143,75,1,9,0,95,43,147,143,154,2,9,0,95,43,147,143,235,3,9,0,95,43,147,143,65,5,9,0,96,171,47,170,1,102,6,0,96,43,220,245,38,98,7,0,96,171,42,40,218,113,9,0,96,171,42,40,120,114,9,0,97,171,36,207,117,79,7,0,97,43,237,245,132,103,10,0,99,171,124,159,119,225,6,0,99,171,124,159,71,236,6,0,99,171,124,159,227,108,7,0,99,171,124,159,152,111,7,0,99,171,116,169,99,66,8,0,99,171,124,159,11,55,9,0,100,171,169,177,5,88,10,0,102,171,174,85,40,217,8,0,102,171,174,85,209,217,8,0,103,171,144,173,108,207,5,0,103,171,144,173,112,38,6,0,103,43,158,48,138,115,8,0,103,43,158,48,117,124,8,0,103,43,158,48,105,133,8,0,105,171,13,184,15,233,8,0,105,171,13,184,139,233,8,0,106,43,155,88,140,142,8,0,106,43,155,88,235,142,8,0,106,43,155,88,83,143,8,0,114,171,211,2,111,50,11,0,116,171,231,136,81,69,11,0,117,171,208,125,66,230,6,0,118,43,196,133,171,49,7,0,118,171,204,116,223,189,10,0,124,171,65,208,210,225,6,0,125,171,207,154,19,43,8,0,125,43,211,217,163,107,9,0,125,43,211,217,201,107,9,0,125,43,211,217,237,107,9,0,126,43,217,65,114,243,8,0,126,43,217,65,37,244,8,0,127,43,244,145,237,73,7,0,127,43,36,157,224,146,8,0,127,43,36,157,132,150,8,0,129,171,226,127,54,209,5,0,129,43,61,202,206,159,6,0,129,43,225,24,57,171,8,0,129,43,225,24,133,172,8,0,129,43,225,24,211,173,8,0,129,171,177,114,108,167,10,0,130,43,29,10,112,27,7,0,131,43,167,179,252,154,7,0,133,171,2,160,192,166,6,0,133,171,206,31,28,185,6,0,133,43,11,1,38,98,7,0,133,171,2,160,241,95,8,0,133,43,56,132,13,233,9,0,133,43,56,132,29,233,9,0,133,43,56,132,52,233,9,0,134,43,89,111,155,67,7,0,134,43,17,244,109,172,9,0,134,43,17,244,178,173,9,0,134,43,17,244,250,174,9,0,136,43,169,92,221,38,10,0,136,43,169,92,62,40,10,0,136,171,145,227,107,187,10,0,143,43,2,55,60,51,6,0,143,171,60,98,176,72,6,0,144,171,5,171,100,71,7,0,145,43,127,22,212,243,6,0,145,171,85,156,151,21,7,0,145,171,162,26,81,239,8,0,145,171,162,26,40,240,8,0,147,171,199,8,61,1,8,0,147,43,73,90,139,158,8,0,147,43,73,90,224,163,8,0,149,171,78,97,0,113,6,0,149,43,167,26,46,79,10,0,150,43,204,105,112,5,10,0,150,43,204,105,28,6,10,0,152,43,175,89,117,37,7,0,153,171,89,4,246,205,8,0,153,171,89,4,155,206,8,0,155,171,34,29,212,243,6,0,155,43,177,48,237,73,7,0,156,43,88,104,94,36,6,0,159,171,65,199,117,79,7,0,160,43,239,252,212,243,6,0,164,43,209,214,171,49,7,0,169,171,89,50,122,17,6,0,169,171,205,89,117,37,7,0,171,171,0,167,232,191,8,0,171,171,0,167,162,193,8,0,173,43,148,88,1,63,6,0,180,171,150,242,22,35,7,0,182,171,186,180,50,211,6,0,182,171,247,106,187,13,11,0,183,171,221,168,75,142,9,0,183,171,221,168,201,142,9,0,183,171,221,168,84,143,9,0,184,171,188,35,41,222,5,0,185,43,21,98,147,160,10,0,185,43,21,98,234,166,10,0,186,43,125,88,57,171,8,0,186,43,125,88,133,172,8,0,186,43,125,88,211,173,8,0,187,171,92,169,38,98,7,0,193,171,187,11,76,16,9,0,193,171,187,11,146,16,9,0,194,171,123,109,107,210,6,0,198,171,64,160,136,58,7,0,200,171,157,38,33,198,5,0,200,171,157,38,46,134,6,0,200,171,157,38,227,218,6,0,201,171,157,38,30,231,6,0,203,171,170,119,72,204,9,0,207,43,25,166,219,160,9,0,207,43,25,166,245,160,9,0,208,43,245,185,124,45,8,0,208,43,245,185,1,46,8,0,208,43,245,185,123,46,8,0,208,171,158,21,193,95,11,0,214,171,170,133,163,89,6,0,214,171,51,51,212,243,6,0,217,43,95,154,182,60,6,0,217,171,244,192,136,58,7,0,217,171,142,164,138,115,8,0,217,171,142,164,117,124,8,0,217,171,142,164,105,133,8,0,217,43,211,43,32,113,9,0,218,171,31,62,50,211,6,0,221,171,1,103,28,68,9,0,221,171,1,103,215,68,9,0,222,171,157,38,153,11,7,0,222,171,157,38,135,13,7,0,224,171,168,78,138,115,8,0,224,171,168,78,117,124,8,0,224,171,168,78,105,133,8,0,224,171,134,138,165,11,9,0,224,171,134,138,58,12,9,0,225,43,56,169,2,23,7,0,226,171,151,47,118,214,6,0,227,43,12,190,110,105,6,0,228,171,213,5,136,58,7,0,231,43,120,104,160,234,8,0,231,43,120,104,175,235,8,0,231,171,212,43,34,10,10,0,231,171,145,206,117,84,11,0,232,171,188,4,50,211,6,0,233,171,221,4,78,203,8,0,237,43,29,77,34,119,6,0,239,43,16,108,117,79,7,0,242,171,34,35,35,93,6,0,242,171,34,35,3,121,6,0,242,171,47,38,160,234,8,0,242,171,47,38,175,235,8,0,243,43,64,162,71,236,6,0,244,43,214,28,165,226,6,0,244,43,47,64,139,158,8,0,244,43,47,64,224,163,8,0,246,171,134,125,29,5,7,0,247,171,25,217,197,253,6,0,247,171,92,9,30,171,9,0,253,43,11,152,235,48,9,0,253,43,11,152,250,48,9,0,253,43,11,152,18,49,9,0,253,43,196,154,166,73,10,0,253,43,212,113,31,111,10,0,255,43,143,55,123,236,9,0,2,172,121,27,57,171,8,0,2,172,121,27,133,172,8,0,2,172,121,27,211,173,8,0,5,172,145,101,132,140,10,0,6,44,223,217,179,17,7,0,8,44,188,152,132,215,6,0,8,44,172,106,80,49,7,0,8,44,172,106,171,49,7,0,10,44,0,85,232,124,10,0,10,172,212,65,201,232,10,0,14,172,237,89,219,112,10,0,15,172,235,47,175,217,6,0,16,44,106,92,57,10,7,0,18,172,44,216,9,113,10,0,19,44,124,164,80,49,7,0,19,44,124,164,171,49,7,0,21,172,39,93,247,55,7,0,25,44,86,170,3,157,8,0,25,44,86,170,180,157,8,0,26,44,90,120,104,153,10,0,27,44,232,186,125,44,7,0,29,44,242,42,64,7,6,0,29,44,194,214,118,91,7,0,30,172,111,245,6,182,6,0,30,172,133,94,38,98,7,0,31,172,252,151,165,11,9,0,31,172,252,151,58,12,9,0,32,172,211,199,230,215,6,0,32,44,176,7,41,52,9,0,32,44,176,7,74,52,9,0,34,172,169,62,160,136,7,0,35,44,95,127,211,178,9,0,35,44,95,127,235,178,9,0,37,172,180,229,222,161,10,0,38,44,120,248,173,62,10,0,38,44,94,199,123,77,11,0,39,172,240,133,217,37,6,0,39,44,221,120,133,220,6,0,40,172,16,134,61,224,6,0,41,172,236,14,138,115,8,0,41,44,246,215,138,115,8,0,41,172,236,14,117,124,8,0,41,44,246,215,117,124,8,0,41,172,236,14,105,133,8,0,41,44,246,215,105,133,8,0,42,172,38,224,187,171,6,0,44,44,101,139,104,164,10,0,44,44,101,139,131,164,10,0,45,44,186,238,76,199,6,0,47,172,33,239,171,63,7,0,50,44,230,143,12,234,6,0,52,44,127,241,54,122,10,0,54,172,134,37,180,28,7,0,54,44,110,37,139,158,8,0,54,44,110,37,224,163,8,0,54,172,46,149,74,102,11,0,54,172,46,149,106,102,11,0,60,44,145,28,166,180,7,0,60,44,145,28,205,180,7,0,60,44,145,28,240,180,7,0,60,44,145,28,23,181,7,0,60,44,145,28,62,181,7,0,61,172,0,103,160,234,8,0,61,172,0,103,175,235,8,0,61,172,213,10,123,236,9,0,64,44,103,138,212,243,6,0,64,44,99,244,235,89,11,0,65,172,91,154,28,68,9,0,65,172,91,154,215,68,9,0,66,44,96,139,160,234,8,0,66,44,96,139,175,235,8,0,67,172,24,217,212,243,6,0,67,172,9,120,152,111,7,0,67,172,9,120,62,124,7,0,67,172,49,2,251,168,10,0,70,44,126,39,84,183,7,0,71,172,73,147,139,158,8,0,71,172,73,147,224,163,8,0,78,172,98,90,95,52,11,0,81,172,157,189,221,38,10,0,81,172,157,189,62,40,10,0,83,44,84,106,237,73,7,0,87,44,188,59,177,133,7,0,87,44,188,59,38,134,7,0,87,44,190,66,3,239,10,0,90,44,90,170,38,98,7,0,90,172,53,254,180,144,8,0,90,172,53,254,67,145,8,0,92,172,247,96,245,28,10,0,92,172,247,96,145,31,10,0,95,172,240,133,135,90,9,0,95,172,240,133,124,91,9,0,97,172,194,6,100,148,7,0,97,172,194,6,152,148,7,0,102,44,95,128,174,60,11,0,105,44,240,216,136,58,7,0,106,44,89,207,138,115,8,0,106,44,89,207,117,124,8,0,106,44,89,207,105,133,8,0,108,172,89,140,122,229,6,0,110,172,254,166,141,207,6,0,114,44,45,157,27,119,9,0,114,44,45,157,102,119,9,0,115,44,71,254,237,73,7,0,115,44,251,91,139,158,8,0,115,44,251,91,224,163,8,0,117,44,188,246,69,69,7,0,117,44,221,160,117,79,7,0,118,44,36,150,117,79,7,0,118,44,61,145,139,214,9,0,118,44,61,145,234,214,9,0,118,44,61,145,70,215,9,0,119,172,133,49,155,67,7,0,120,44,57,110,163,255,5,0,120,44,57,110,54,106,6,0,120,44,57,110,70,106,6,0,120,44,57,110,48,225,6,0,120,172,68,144,219,210,7,0,123,172,161,133,122,217,5,0,124,44,57,174,47,15,6,0,125,172,44,109,89,42,6,0,125,44,66,239,102,179,6,0,126,44,242,31,91,154,8,0,126,44,242,31,147,154,8,0,128,44,60,244,213,16,6,0,128,44,44,101,199,54,9,0,128,44,44,101,232,54,9,0,129,44,217,89,53,181,6,0,131,172,191,234,17,28,6,0,131,172,89,228,51,243,7,0,131,172,89,228,244,239,10,0,138,172,252,16,23,179,8,0,138,172,252,16,119,179,8,0,144,172,0,0,152,111,7,0,144,172,0,0,84,53,8,0,147,44,1,138,179,17,7,0,150,44,188,56,224,146,8,0,150,44,188,56,132,150,8,0,151,172,166,16,71,236,6,0,151,44,92,13,121,72,11,0,151,44,92,13,168,72,11,0,152,172,84,196,172,77,10,0,152,172,84,196,110,86,10,0,154,44,201,172,82,231,9,0,156,172,66,157,136,58,7,0,157,44,128,19,57,171,8,0,157,44,128,19,133,172,8,0,157,44,128,19,211,173,8,0,158,44,206,40,216,178,7,0,158,44,206,40,224,146,8,0,158,44,206,40,132,150,8,0,160,172,250,29,116,54,10,0,161,44,27,68,237,73,7,0,162,44,178,239,80,32,7,0,164,172,19,55,63,180,9,0,164,172,19,55,87,180,9,0,164,172,19,55,108,180,9,0,166,172,196,107,138,115,8,0,166,172,196,107,117,124,8,0,166,172,196,107,105,133,8,0,167,172,47,107,123,236,9,0,170,44,178,219,212,243,6,0,173,44,58,122,206,219,6,0,176,172,194,179,22,62,10,0,183,44,115,27,128,133,7,0,184,172,254,97,95,113,8,0,185,44,41,99,97,64,6,0,191,44,46,81,140,66,7,0,191,44,46,81,234,66,7,0,191,172,121,27,84,21,8,0,200,172,5,237,38,98,7,0,202,172,127,254,156,109,10,0,203,44,157,214,71,236,6,0,204,44,156,220,0,223,10,0,210,172,224,226,128,143,6,0,211,172,131,141,159,200,10,0,216,44,184,148,92,5,6,0,216,44,24,5,248,53,6,0,217,44,224,217,237,73,7,0,219,172,204,241,123,236,9,0,222,172,150,63,136,69,6,0,222,172,105,36,138,28,7,0,222,172,214,19,0,190,8,0,222,172,214,19,168,190,8,0,223,44,52,91,178,173,6,0,223,44,52,91,153,11,7,0,223,44,52,91,135,13,7,0,223,44,115,27,32,160,9,0,223,44,115,27,55,160,9,0,224,172,135,182,75,153,6,0,225,44,114,165,130,118,10,0,226,172,196,91,117,79,7,0,227,172,131,154,71,236,6,0,231,44,180,148,117,37,7,0,232,172,25,61,162,193,10,0,233,44,57,98,170,41,6,0,233,44,116,174,200,217,6,0,234,44,14,78,57,10,7,0,237,44,36,229,203,104,6,0,237,44,145,29,219,210,7,0,237,172,51,232,138,161,9,0,237,172,51,232,154,161,9,0,237,44,135,69,109,172,9,0,237,44,135,69,178,173,9,0,237,44,135,69,250,174,9,0,241,172,58,115,231,246,5,0,244,172,205,214,149,82,6,0,246,172,105,250,197,253,6,0,246,172,189,47,243,134,7,0,247,172,202,20,217,223,5,0,247,172,202,20,92,224,5,0,249,44,160,224,189,95,7,0,251,172,1,164,127,208,6,0,252,172,106,229,89,206,6,0,253,172,109,195,90,53,7,0,255,172,107,176,71,236,6,0,255,172,128,0,90,72,10,0,1,173,197,121,185,70,6,0,1,173,62,180,57,10,7,0,4,173,181,219,152,111,7,0,4,173,222,126,235,169,7,0,4,173,222,126,110,178,7,0,4,173,181,219,173,169,8,0,8,45,32,141,119,156,6,0,12,173,154,254,71,169,6,0,12,173,154,254,65,170,6,0,12,45,223,138,125,44,7,0,13,45,153,41,125,44,7,0,14,45,136,103,212,243,6,0,14,45,105,82,90,175,8,0,14,45,105,82,74,176,8,0,20,45,251,67,76,183,6,0,22,45,167,3,224,146,8,0,22,45,167,3,132,150,8,0,24,45,112,17,22,217,9,0,24,45,112,17,103,217,9,0,26,45,87,83,200,6,9,0,26,45,87,83,117,7,9,0,27,173,140,219,221,38,10,0,27,173,140,219,62,40,10,0,28,173,88,71,96,166,10,0,30,45,208,163,3,157,8,0,30,45,208,163,180,157,8,0,32,173,151,159,212,243,6,0,32,173,179,234,253,132,10,0,33,45,116,121,124,222,6,0,36,173,29,55,212,243,6,0,37,173,233,107,138,115,8,0,37,173,233,107,117,124,8,0,37,173,233,107,105,133,8,0,38,173,109,149,136,121,6,0,39,45,8,107,170,226,10,0,40,45,97,19,39,65,9,0,40,45,97,19,161,65,9,0,40,45,97,19,21,66,9,0,40,45,97,19,188,66,9,0,40,45,97,19,85,67,9,0,41,173,64,99,67,59,11,0,42,45,73,3,180,28,7,0,42,173,4,225,117,79,7,0,42,45,231,242,134,82,10,0,42,173,4,225,100,229,10,0,43,45,231,11,30,231,6,0,45,173,72,54,77,210,9,0,45,173,72,54,117,210,9,0,45,173,72,54,141,210,9,0,48,45,89,51,3,21,11,0,51,45,221,74,28,86,6,0,53,173,237,154,94,208,6,0,54,45,228,20,100,134,10,0,55,45,180,248,8,95,10,0,60,173,161,86,180,28,7,0,66,173,21,129,113,164,6,0,68,45,63,118,90,53,7,0,69,173,174,18,123,236,9,0,71,45,29,121,211,66,11,0,72,45,148,142,21,36,7,0,74,173,149,29,195,100,11,0,75,45,205,45,7,220,6,0,75,173,32,106,138,115,8,0,75,173,32,106,117,124,8,0,75,173,32,106,105,133,8,0,75,45,35,33,104,244,9,0,75,45,35,33,251,244,9,0,75,45,35,33,146,245,9,0,78,45,144,127,198,107,6,0,78,45,144,127,223,107,6,0,78,45,144,127,250,107,6,0,78,45,133,75,142,90,11,0,79,45,183,227,117,79,7,0,80,45,90,243,191,211,9,0,80,45,58,130,214,254,10,0,81,45,103,200,147,181,7,0,82,173,76,141,212,243,6,0,83,173,52,68,38,98,7,0,83,173,175,241,219,210,7,0,85,173,215,6,85,98,6,0,86,45,157,38,67,210,5,0,86,45,157,38,92,210,5,0,86,45,157,38,225,93,7,0,89,173,144,235,31,78,10,0,91,173,3,95,117,79,7,0,91,173,214,125,117,79,7,0,92,173,242,65,236,213,6,0,95,173,166,32,38,98,7,0,95,173,166,32,245,28,10,0,95,173,166,32,145,31,10,0,101,173,233,151,221,38,10,0,101,173,233,151,62,40,10,0,102,45,217,227,164,146,10,0,104,173,89,136,119,199,6,0,104,173,120,18,127,233,9,0,104,173,120,18,155,233,9,0,104,173,120,18,179,233,9,0,105,173,152,58,179,17,7,0,106,45,66,166,57,171,8,0,106,45,66,166,133,172,8,0,106,45,66,166,211,173,8,0,107,45,64,57,0,190,8,0,107,45,64,57,168,190,8,0,112,45,203,208,227,218,6,0,113,173,7,9,245,28,10,0,113,173,7,9,145,31,10,0,115,45,96,19,136,58,7,0,119,173,45,135,78,217,6,0,119,45,206,100,107,23,10,0,119,45,206,100,195,23,10,0,120,45,115,27,50,199,7,0,124,173,157,38,167,67,11,0,125,45,11,171,99,66,8,0,125,45,11,171,69,68,8,0,125,45,11,171,199,68,8,0,126,173,186,148,94,75,6,0,126,173,186,148,119,75,6,0,126,45,140,79,112,27,7,0,126,45,93,242,155,67,7,0,126,173,5,60,72,204,9,0,127,45,99,18,80,32,7,0,127,173,27,3,51,214,8,0,127,173,27,3,241,214,8,0,127,173,27,3,169,215,8,0,129,45,173,133,195,243,5,0,129,173,69,248,61,224,6,0,131,173,124,188,71,236,6,0,132,45,95,139,152,111,7,0,132,45,225,112,81,239,8,0,132,45,225,112,40,240,8,0,132,45,11,176,34,141,9,0,132,45,11,176,66,141,9,0,132,173,187,237,125,95,11,0,133,45,192,92,206,218,5,0,133,173,192,74,7,220,6,0,134,45,27,177,139,158,8,0,134,45,27,177,224,163,8,0,135,173,53,96,170,188,6,0,135,173,53,96,135,251,9,0,135,173,53,96,157,251,9,0,137,173,59,43,40,13,11,0,138,45,254,97,251,9,11,0,142,45,205,101,123,236,9,0,143,45,95,139,224,146,8,0,143,45,95,139,132,150,8,0,144,173,207,28,249,154,8,0,144,173,207,28,148,155,8,0,144,173,207,28,52,156,8,0,145,173,81,102,75,142,9,0,145,173,81,102,201,142,9,0,145,173,81,102,84,143,9,0,146,45,4,24,152,174,10,0,149,173,13,154,130,60,9,0,149,173,13,154,156,60,9,0,151,173,97,37,88,129,7,0,152,45,187,57,119,224,5,0,152,45,182,30,138,115,8,0,152,45,182,30,117,124,8,0,152,45,182,30,105,133,8,0,153,173,253,103,41,43,11,0,154,173,57,61,50,226,6,0,154,45,38,25,118,26,7,0,154,173,203,88,96,80,8,0,159,45,217,180,227,229,6,0,159,45,49,184,117,79,7,0,163,45,231,242,167,194,7,0,163,45,162,202,253,208,8,0,163,45,162,202,22,211,8,0,164,45,203,120,254,12,6,0,164,45,203,120,16,98,6,0,164,45,203,120,174,152,6,0,164,45,203,120,210,162,7,0,166,45,190,223,141,195,8,0,166,45,190,223,112,196,8,0,166,45,190,223,75,197,8,0,169,173,225,167,51,241,8,0,169,173,225,167,198,241,8,0,171,45,74,91,119,225,6,0,171,45,141,94,117,79,7,0,171,45,74,91,226,43,9,0,171,45,74,91,66,44,9,0,171,45,74,91,167,44,9,0,171,45,74,91,5,45,9,0,171,45,74,91,108,45,9,0,172,173,239,9,118,104,10,0,173,45,100,106,115,56,6,0,173,173,36,48,179,17,7,0,173,45,114,27,224,146,8,0,173,45,114,27,132,150,8,0,173,173,36,48,144,111,10,0,176,45,212,90,118,0,7,0,177,45,74,45,172,213,6,0,180,45,190,179,232,191,8,0,180,45,190,179,162,193,8,0,181,45,231,242,117,109,9,0,181,45,231,242,149,109,9,0,185,45,114,27,227,225,8,0,185,45,114,27,4,226,8,0,185,45,114,27,43,226,8,0,186,173,55,41,238,137,7,0,187,45,127,6,247,153,10,0,189,45,165,33,182,29,6,0,190,173,96,33,71,236,6,0,191,173,98,244,109,172,9,0,191,173,98,244,178,173,9,0,191,173,98,244,250,174,9,0,192,45,58,151,69,238,8,0,192,45,58,151,138,238,8,0,192,45,58,151,214,238,8,0,193,173,48,22,67,79,6,0,193,45,224,97,89,97,11,0,194,173,140,175,138,115,10,0,195,173,42,90,117,79,7,0,197,173,111,37,57,10,7,0,198,45,244,216,69,222,6,0,199,173,188,117,29,69,7,0,200,45,244,89,42,185,10,0,201,45,157,38,138,115,8,0,201,45,157,38,117,124,8,0,201,45,157,38,105,133,8,0,203,45,163,126,136,58,7,0,205,45,79,196,237,17,11,0,206,173,56,183,51,214,8,0,206,173,56,183,241,214,8,0,206,173,56,183,169,215,8,0,207,173,254,74,50,211,6,0,208,173,48,7,229,100,6,0,209,45,57,126,221,191,5,0,211,45,34,110,204,173,10,0,212,45,221,19,17,184,8,0,217,173,105,27,38,98,7,0,219,45,149,95,238,245,5,0,219,173,237,123,46,16,10,0,219,173,237,123,27,167,10,0,221,45,132,119,141,94,11,0,224,45,180,207,237,73,7,0,225,173,128,155,117,79,7,0,226,173,148,178,200,6,9,0,226,173,148,178,117,7,9,0,229,173,205,194,20,15,7,0,232,45,13,40,0,231,5,0,232,45,159,68,40,217,8,0,232,45,159,68,209,217,8,0,232,173,158,171,220,70,10,0,237,173,227,0,245,28,10,0,237,173,227,0,145,31,10,0,243,173,242,10,171,63,7,0,243,45,126,59,139,158,8,0,243,45,126,59,224,163,8,0,244,173,100,231,222,42,7,0,244,45,170,138,224,96,11,0,245,173,236,242,139,158,8,0,245,173,236,242,224,163,8,0,250,45,125,135,41,209,6,0,250,173,98,56,223,30,7,0,250,173,8,201,38,98,7,0,251,173,45,192,212,243,6,0,252,45,90,6,117,79,7,0,254,173,207,77,90,57,10,0,254,173,207,77,102,57,10,0,255,45,232,132,123,236,9,0,0,174,143,212,180,28,7,0,0,174,86,34,15,8,8,0,1,46,185,52,29,49,7,0,2,174,68,129,229,69,11,0,3,46,80,80,219,1,7,0,3,174,54,135,167,107,7,0,4,46,64,245,99,2,11,0,9,174,174,60,236,213,6,0,10,46,139,178,245,28,10,0,10,46,139,178,145,31,10,0,11,46,171,175,139,158,8,0,11,46,171,175,224,163,8,0,12,46,100,218,236,60,6,0,14,174,193,78,212,207,7,0,14,174,193,78,1,208,7,0,15,46,151,113,32,30,7,0,15,46,115,178,109,172,9,0,15,46,115,178,178,173,9,0,16,46,16,244,1,144,10,0,19,174,134,51,180,144,8,0,19,174,134,51,67,145,8,0,20,46,183,160,102,179,6,0,20,174,41,4,153,11,7,0,20,174,41,4,135,13,7,0,22,46,102,7,11,33,11,0,23,46,74,188,144,189,7,0,26,174,188,151,58,237,5,0,26,174,66,97,138,115,8,0,26,174,66,97,117,124,8,0,26,174,66,97,105,133,8,0,26,174,85,170,125,190,10,0,28,46,212,45,43,124,6,0,28,46,95,66,219,1,7,0,31,46,124,221,29,148,10,0,37,46,57,7,123,236,9,0,46,46,214,103,22,35,7,0,48,46,134,248,133,220,6,0,49,46,231,10,219,1,7,0,49,46,92,240,118,226,8,0,49,46,92,240,72,228,8,0,52,46,39,7,52,206,10,0,53,174,180,126,75,76,6,0,53,46,16,2,119,225,6,0,53,46,104,54,80,32,7,0,54,46,100,65,57,10,7,0,54,174,105,139,62,168,10,0,57,174,182,158,7,220,6,0,58,174,249,189,253,210,6,0,59,174,252,96,120,187,8,0,59,174,252,96,151,187,8,0,60,46,170,62,69,238,8,0,60,46,170,62,138,238,8,0,60,46,170,62,214,238,8,0,62,174,247,208,164,242,5,0,62,174,247,208,127,55,6,0,68,46,74,232,236,26,7,0,68,174,19,207,23,179,8,0,68,174,19,207,119,179,8,0,69,46,72,222,29,204,8,0,69,46,72,222,6,205,8,0,71,46,26,254,212,21,9,0,71,46,26,254,31,22,9,0,71,46,26,254,103,22,9,0,79,174,30,4,22,35,7,0,80,174,64,41,76,16,9,0,80,174,64,41,146,16,9,0,82,46,77,225,205,176,9,0,82,46,77,225,248,176,9,0,82,46,77,225,34,177,9,0,83,174,243,37,71,251,7,0,84,46,150,34,90,53,7,0,85,174,164,212,13,171,7,0,86,174,133,104,59,73,7,0,88,174,224,186,203,25,10,0,88,174,224,186,228,25,10,0,88,174,224,186,26,26,10,0,89,174,233,4,138,115,8,0,89,174,233,4,117,124,8,0,89,174,233,4,105,133,8,0,94,174,1,131,197,188,10,0,97,46,244,176,99,42,7,0,99,174,123,21,233,93,6,0,99,46,220,101,249,154,8,0,99,46,220,101,148,155,8,0,99,46,220,101,52,156,8,0,101,174,50,152,102,223,6,0,105,174,111,140,55,123,10,0,110,46,90,71,42,202,6,0,111,46,54,250,69,238,8,0,111,46,54,250,138,238,8,0,111,46,54,250,214,238,8,0,111,174,128,199,19,106,10,0,114,46,1,221,249,209,5,0,114,46,236,94,59,147,10,0,115,46,249,143,243,134,7,0,119,46,243,229,38,98,7,0,119,46,243,229,52,117,7,0,122,46,134,213,224,146,8,0,122,46,134,213,224,146,8,0,122,46,134,213,132,150,8,0,122,46,134,213,132,150,8,0,123,46,50,202,57,10,7,0,123,46,198,190,237,73,7,0,124,46,88,181,224,131,6,0,125,46,72,202,179,17,7,0,126,174,29,72,224,146,8,0,126,174,29,72,132,150,8,0,126,174,70,196,191,166,9,0,126,174,70,196,252,166,9,0,126,174,70,196,39,167,9,0,129,46,18,212,101,246,10,0,141,46,70,245,224,146,8,0,141,46,70,245,132,150,8,0,143,174,42,82,227,108,7,0,143,174,42,82,10,28,10,0,143,174,42,82,74,28,10,0,143,174,42,82,134,28,10,0,144,46,36,254,61,224,6,0,148,174,100,16,247,214,6,0,150,46,248,132,212,243,6,0,150,174,127,248,57,171,8,0,150,174,127,248,133,172,8,0,150,174,127,248,211,173,8,0,151,46,197,165,38,98,7,0,152,174,160,35,191,69,6,0,152,174,160,35,17,82,6,0,152,174,128,229,227,108,7,0,152,174,128,229,152,111,7,0,154,174,254,201,44,37,6,0,154,174,237,38,186,89,6,0,157,174,211,124,224,146,8,0,157,174,211,124,132,150,8,0,158,46,15,240,212,243,6,0,158,46,151,232,75,142,9,0,158,46,151,232,201,142,9,0,158,46,151,232,84,143,9,0,159,174,73,171,104,225,5,0,159,174,231,63,71,236,6,0,159,46,235,168,84,21,8,0,159,174,57,107,230,71,9,0,159,174,57,107,83,72,9,0,160,46,238,137,194,211,6,0,162,174,121,11,124,208,5,0,162,174,121,11,154,208,5,0,162,46,125,185,56,208,6,0,163,46,110,105,76,199,6,0,165,46,217,74,141,255,8,0,165,46,217,74,235,255,8,0,167,174,232,20,209,185,5,0,171,174,189,209,194,236,5,0,172,174,116,26,0,203,6,0,172,46,157,198,243,69,7,0,175,174,48,14,158,1,6,0,175,174,48,14,158,204,7,0,176,46,181,148,236,15,6,0,176,46,181,148,168,134,6,0,184,46,45,5,112,211,5,0,185,174,1,127,76,183,6,0,185,46,171,254,71,236,6,0,185,174,1,127,153,11,7,0,185,174,1,127,135,13,7,0,185,46,171,254,4,224,7,0,185,46,171,254,103,170,8,0,185,46,171,254,188,170,8,0,188,174,62,85,27,223,6,0,188,46,247,143,38,98,7,0,191,46,8,170,88,129,7,0,191,46,239,41,246,205,8,0,191,46,239,41,155,206,8,0,196,174,220,135,152,111,7,0,196,174,220,135,60,44,8,0,196,174,220,135,175,44,8,0,196,174,220,135,24,45,8,0,196,174,220,135,178,229,9,0,201,174,9,184,69,222,6,0,202,174,23,235,213,205,10,0,204,46,246,189,38,98,7,0,207,46,103,52,112,5,10,0,207,46,103,52,28,6,10,0,208,174,140,73,224,146,8,0,208,174,140,73,132,150,8,0,210,174,163,133,221,10,10,0,210,174,163,133,255,10,10,0,212,46,236,8,96,61,10,0,214,174,130,138,213,170,6,0,216,46,198,148,141,54,8,0,222,174,58,69,113,47,7,0,222,46,109,9,152,111,7,0,222,46,109,9,126,191,8,0,222,46,109,9,175,191,8,0,227,46,189,134,3,45,6,0,228,46,107,54,249,141,7,0,229,174,248,218,156,1,7,0,230,174,182,4,247,55,7,0,230,174,194,95,210,110,7,0,233,46,187,200,245,251,10,0,234,174,8,237,109,172,9,0,234,174,8,237,178,173,9,0,234,174,8,237,250,174,9,0,237,46,220,46,84,21,8,0,239,174,97,127,237,73,7,0,244,46,90,27,29,150,7,0,245,46,223,64,151,21,7,0,245,174,250,2,138,115,8,0,245,174,250,2,117,124,8,0,245,174,250,2,105,133,8,0,246,174,235,126,7,109,6,0,248,46,224,22,152,234,6,0,248,46,13,214,177,62,7,0,248,174,179,133,232,191,8,0,248,174,179,133,162,193,8,0,249,174,218,136,29,5,7,0,253,174,46,195,66,130,10,0,2,47,217,144,71,236,6,0,2,47,169,142,117,79,7,0,2,47,241,88,51,241,8,0,2,47,241,88,198,241,8,0,3,175,172,125,161,201,10,0,6,47,199,46,127,1,7,0,6,175,217,26,228,109,9,0,6,175,217,26,248,110,9,0,7,47,211,143,165,11,9,0,7,47,211,143,58,12,9,0,7,175,14,169,169,200,9,0,7,175,14,169,204,200,9,0,7,175,14,169,238,200,9,0,7,175,255,100,123,236,9,0,9,47,241,190,212,77,9,0,9,47,241,190,34,78,9,0,10,175,172,72,117,79,7,0,11,47,9,9,255,179,8,0,11,47,9,9,110,180,8,0,11,47,15,100,132,18,9,0,11,47,15,100,211,18,9,0,11,47,15,100,49,19,9,0,11,47,15,100,130,19,9,0,15,47,75,33,197,253,6,0,16,175,128,19,136,58,7,0,16,47,35,97,221,38,10,0,16,47,35,97,62,40,10,0,17,47,50,204,123,236,9,0,20,175,233,209,140,151,6,0,21,175,91,156,254,127,6,0,22,47,24,100,165,11,9,0,22,47,24,100,58,12,9,0,23,47,216,89,123,236,9,0,24,47,19,190,0,109,10,0,27,47,54,141,194,118,6,0,27,47,54,141,66,146,6,0,29,47,170,157,252,42,7,0,29,175,182,221,187,70,7,0,32,175,250,222,20,15,7,0,33,175,224,120,124,222,6,0,34,47,34,103,219,210,7,0,34,47,65,35,253,208,8,0,34,47,65,35,22,211,8,0,35,47,141,196,171,63,7,0,36,47,36,21,64,72,10,0,40,175,237,56,226,43,9,0,40,175,237,56,66,44,9,0,40,175,237,56,167,44,9,0,40,175,237,56,5,45,9,0,40,175,237,56,108,45,9,0,41,47,191,166,244,78,6,0,41,175,147,142,51,241,8,0,41,175,147,142,198,241,8,0,42,47,3,136,168,76,10,0,44,47,213,103,71,236,6,0,46,47,11,132,6,199,5,0,53,47,32,252,194,211,6,0,54,175,225,190,237,73,7,0,54,175,138,142,72,202,8,0,54,175,138,142,175,202,8,0,57,47,232,86,22,62,10,0,58,47,65,129,76,183,6,0,59,47,92,72,64,8,7,0,60,175,122,191,201,230,6,0,60,175,29,108,184,60,10,0,60,175,29,108,217,97,10,0,64,175,241,131,223,216,6,0,64,175,241,131,191,55,7,0,66,175,91,14,44,90,10,0,77,175,206,234,179,17,7,0,84,47,237,139,83,205,6,0,85,175,149,24,0,190,8,0,85,175,149,24,168,190,8,0,86,175,105,139,135,169,10,0,88,175,53,65,149,190,10,0,89,47,144,235,71,236,6,0,93,175,47,51,180,38,11,0,96,47,225,6,71,236,6,0,98,175,36,233,114,178,6,0,98,47,31,44,26,222,10,0,103,47,54,188,71,94,6,0,103,175,240,77,117,79,7,0,104,47,79,36,38,164,6,0,104,47,41,78,138,115,8,0,104,47,41,78,117,124,8,0,104,47,41,78,105,133,8,0,104,47,34,55,224,146,8,0,104,47,34,55,132,150,8,0,106,175,234,247,247,55,7,0,106,175,239,205,224,146,8,0,106,175,239,205,132,150,8,0,106,175,37,103,139,158,8,0,106,175,37,103,224,163,8,0,106,47,35,86,51,214,8,0,106,47,35,86,241,214,8,0,106,47,35,86,169,215,8,0,115,47,111,150,80,49,7,0,115,47,111,150,171,49,7,0,119,175,122,80,69,105,6,0,121,175,137,233,165,65,10,0,122,47,0,170,212,243,6,0,123,175,38,145,129,26,8,0,124,47,202,32,56,234,5,0,124,47,202,32,150,6,6,0,124,47,202,32,212,194,7,0,126,47,19,183,38,98,7,0,126,47,110,164,95,69,10,0,126,175,226,33,74,98,10,0,128,47,3,145,200,6,9,0,128,47,3,145,117,7,9,0,129,175,55,127,254,216,6,0,129,47,88,239,100,228,6,0,130,175,161,231,63,212,7,0,138,47,86,179,80,32,7,0,138,47,214,13,152,111,7,0,138,47,214,13,126,191,8,0,138,47,214,13,175,191,8,0,142,175,65,32,202,116,9,0,142,175,65,32,253,116,9,0,145,175,218,215,117,109,9,0,145,175,218,215,149,109,9,0,146,175,78,253,247,55,7,0,147,47,70,59,45,118,10,0,148,47,58,130,71,236,6,0,148,47,213,88,71,86,11,0,150,47,152,38,194,211,6,0,150,47,60,188,232,191,8,0,150,47,60,188,162,193,8,0,151,47,200,33,201,3,7,0,151,175,67,210,220,12,10,0,151,175,67,210,22,13,10,0,153,47,99,0,90,175,8,0,153,47,99,0,74,176,8,0,162,47,162,241,127,208,6,0,164,175,190,181,224,146,8,0,164,175,190,181,132,150,8,0,165,47,91,108,107,210,6,0,165,47,125,234,29,5,7,0,168,47,166,96,212,200,6,0,168,175,175,133,237,73,7,0,170,175,176,140,123,236,9,0,179,47,117,61,29,204,8,0,179,47,117,61,6,205,8,0,179,47,142,111,253,82,11,0,181,175,252,165,176,147,6,0,185,47,245,135,252,153,6,0,186,47,124,129,107,210,6,0,186,175,46,84,118,0,7,0,186,47,124,129,138,51,7,0,186,47,91,59,121,97,7,0,186,47,91,59,133,149,7,0,187,175,221,35,95,19,6,0,188,47,94,15,71,5,6,0,189,47,29,33,69,69,7,0,190,47,62,110,87,56,10,0,192,47,147,120,152,48,6,0,193,47,194,98,224,146,8,0,193,47,194,98,132,150,8,0,194,47,186,227,138,115,8,0,194,47,186,227,117,124,8,0,194,47,186,227,105,133,8,0,194,47,13,137,90,56,9,0,194,47,13,137,171,56,9,0,194,47,13,137,54,57,9,0,198,175,247,135,16,222,6,0,199,175,57,185,63,165,6,0,201,47,102,255,174,51,7,0,202,175,191,31,245,28,10,0,202,175,191,31,145,31,10,0,203,47,70,124,99,42,7,0,209,47,75,5,153,11,7,0,214,175,218,169,131,36,10,0,216,47,111,45,188,242,10,0,218,47,146,30,237,73,7,0,221,175,172,8,32,112,6,0,221,47,206,181,23,225,8,0,221,47,206,181,52,225,8,0,224,47,100,14,212,243,6,0,229,175,194,243,96,9,10,0,229,175,194,243,125,9,10,0,230,175,188,13,117,79,7,0,232,47,157,212,21,36,7,0,233,47,34,126,221,97,6,0,233,47,34,126,50,104,6,0,234,175,89,210,94,245,5,0,235,175,98,230,117,37,7,0,238,47,179,213,126,208,7,0,243,47,60,241,118,226,8,0,243,47,60,241,72,228,8,0,243,47,4,175,224,0,9,0,243,47,4,175,1,1,9,0,243,175,159,25,158,128,10,0,245,175,86,200,212,243,6,0,245,47,27,150,11,9,7,0,245,175,215,212,123,236,9,0,247,175,143,44,229,157,9,0,247,175,143,44,8,158,9,0,247,175,143,44,34,158,9,0,248,175,51,170,73,25,6,0,248,47,149,226,139,158,8,0,248,47,149,226,224,163,8,0,249,175,72,172,80,32,7,0,249,175,17,24,84,21,8,0,249,175,79,228,13,32,9,0,249,175,79,228,195,32,9,0,250,47,238,40,195,246,5,0,252,175,243,20,117,79,7,0,4,48,219,7,158,89,10,0,4,48,5,29,138,115,10,0,5,176,44,186,85,31,7,0,6,48,231,211,223,30,7,0,7,48,70,82,109,172,9,0,7,48,70,82,178,173,9,0,7,48,70,82,250,174,9,0,11,48,157,244,247,208,6,0,12,176,215,173,227,229,6,0,17,176,88,195,224,146,8,0,17,176,88,195,132,150,8,0,18,48,52,76,230,111,6,0,19,48,100,115,193,111,8,0,20,48,29,70,53,66,7,0,21,176,189,144,38,48,6,0,21,176,243,87,138,115,8,0,21,176,243,87,117,124,8,0,21,176,243,87,105,133,8,0,23,176,227,175,17,221,7,0,26,48,190,251,113,24,7,0,29,176,127,15,114,243,8,0,29,176,127,15,37,244,8,0,31,48,239,41,212,243,6,0,31,176,87,158,164,150,10,0,31,48,73,7,3,247,10,0,33,176,53,244,136,58,7,0,33,48,142,181,221,38,10,0,33,48,142,181,62,40,10,0,34,48,13,225,20,15,7,0,34,48,13,225,33,65,7,0,35,48,180,188,117,79,7,0,38,176,89,130,71,236,6,0,41,176,157,38,187,213,5,0,48,48,20,223,220,122,6,0,48,48,243,95,113,24,7,0,48,48,16,233,90,53,7,0,52,48,65,196,232,191,8,0,52,48,65,196,162,193,8,0,53,176,214,159,38,98,7,0,58,176,147,61,136,58,7,0,62,48,120,36,136,58,7,0,64,48,153,134,179,17,7,0,65,176,6,70,71,236,6,0,66,48,22,255,196,101,8,0,66,48,22,255,3,102,8,0,66,48,22,255,63,102,8,0,68,48,191,49,165,11,9,0,68,48,191,49,58,12,9,0,69,176,72,222,199,65,10,0,72,176,146,42,237,73,7,0,72,176,132,110,29,204,8,0,72,176,132,110,6,205,8,0,76,48,21,237,84,67,11,0,78,176,155,247,182,234,6,0,78,176,180,195,138,115,8,0,78,176,180,195,117,124,8,0,78,176,180,195,105,133,8,0,79,176,242,209,212,243,6,0,82,176,66,93,212,21,9,0,82,176,66,93,31,22,9,0,82,176,66,93,103,22,9,0,83,48,231,237,253,208,8,0,83,48,231,237,22,211,8,0,85,176,172,62,71,236,6,0,86,176,69,12,126,30,6,0,87,48,144,195,30,171,9,0,92,176,53,193,245,28,10,0,92,176,53,193,145,31,10,0,98,176,85,210,191,148,7,0,99,176,14,63,109,100,9,0,99,176,14,63,136,100,9,0,101,176,147,153,117,163,10,0,101,48,180,230,169,184,10,0,101,48,46,120,22,248,10,0,107,48,26,40,175,204,5,0,107,176,93,218,103,170,8,0,107,176,93,218,188,170,8,0,107,176,12,246,159,85,10,0,107,176,93,218,115,124,10,0,110,176,219,127,188,73,7,0,110,176,219,127,152,111,7,0,110,176,219,127,255,119,7,0,112,176,216,5,226,106,10,0,119,48,197,5,38,98,7,0,119,48,69,144,7,103,10,0,119,48,69,144,39,103,10,0,122,176,143,161,57,10,7,0,122,176,46,57,105,94,11,0,124,176,228,0,117,37,7,0,126,176,60,101,195,33,6,0,126,48,129,169,222,159,6,0,127,176,44,67,138,115,8,0,127,176,44,67,117,124,8,0,127,176,44,67,105,133,8,0,127,176,246,224,3,157,8,0,127,176,246,224,180,157,8,0,129,176,100,124,253,208,8,0,129,176,100,124,22,211,8,0,131,48,205,135,171,49,7,0,132,48,4,241,117,37,7,0,133,48,80,174,27,119,9,0,133,48,80,174,102,119,9,0,134,176,1,4,29,5,7,0,137,176,86,22,66,230,6,0,137,48,125,118,244,249,10,0,138,176,208,200,237,73,7,0,139,176,63,222,179,181,7,0,140,48,17,170,84,21,8,0,141,48,168,57,30,205,7,0,141,48,168,57,86,205,7,0,141,48,168,57,138,205,7,0,141,176,150,99,123,236,9,0,141,48,168,57,186,69,11,0,142,48,71,93,32,24,6,0,142,176,201,143,41,120,6,0,148,176,70,139,162,28,9,0,148,176,70,139,244,28,9,0,150,48,27,198,130,227,6,0,152,176,148,8,154,224,6,0,152,48,133,204,29,5,7,0,154,176,206,187,142,157,10,0,154,176,206,187,165,157,10,0,155,176,160,25,230,215,6,0,157,176,231,237,140,142,8,0,157,176,231,237,235,142,8,0,157,176,231,237,83,143,8,0,158,48,1,219,7,220,6,0,158,176,33,46,180,28,7,0,158,176,238,68,138,115,8,0,158,176,238,68,117,124,8,0,158,176,238,68,105,133,8,0,161,176,49,102,20,15,7,0,161,176,49,102,179,17,7,0,162,176,185,111,72,198,5,0,162,48,74,32,242,204,5,0,164,48,216,126,5,147,10,0,165,176,157,38,182,114,8,0,165,176,238,181,13,32,9,0,165,176,238,181,195,32,9,0,166,48,128,13,188,52,9,0,167,48,38,202,229,221,5,0,167,176,85,10,146,113,10,0,168,176,30,86,151,195,5,0,168,48,100,103,194,211,6,0,168,48,100,103,130,227,6,0,171,176,160,199,73,40,11,0,172,48,80,230,53,66,7,0,172,176,202,230,205,151,9,0,172,176,202,230,199,152,9,0,172,176,202,230,220,153,9,0,173,176,35,118,48,225,6,0,173,48,84,39,139,158,8,0,173,48,84,39,224,163,8,0,174,176,177,159,38,98,7,0,175,176,110,170,241,95,8,0,175,48,108,11,248,151,10,0,178,48,151,182,71,236,6,0,179,176,235,86,228,109,9,0,179,176,235,86,248,110,9,0,183,48,112,89,230,130,7,0,186,48,28,64,183,216,6,0,186,48,13,254,180,144,8,0,186,48,13,254,67,145,8,0,187,176,49,90,191,201,5,0,188,176,118,51,227,108,7,0,188,176,118,51,152,111,7,0,188,176,118,51,252,231,8,0,190,48,22,243,87,100,6,0,190,176,38,0,232,122,10,0,193,48,171,116,33,65,7,0,194,48,212,105,228,109,9,0,194,48,212,105,248,110,9,0,194,176,251,38,224,218,10,0,195,48,175,235,103,46,7,0,195,48,246,253,167,55,8,0,195,48,246,253,15,233,8,0,195,48,246,253,139,233,8,0,195,48,122,69,135,90,9,0,195,48,122,69,124,91,9,0,196,48,191,27,112,27,7,0,196,176,57,222,47,249,7,0,196,176,137,247,224,146,8,0,196,176,137,247,132,150,8,0,198,176,92,69,151,21,7,0,198,48,80,126,112,244,7,0,200,48,77,126,224,146,8,0,200,48,77,126,132,150,8,0,201,176,47,51,227,108,7,0,201,176,47,51,152,111,7,0,202,176,106,162,150,27,6,0,202,176,106,162,173,97,6,0,202,176,106,162,22,35,7,0,205,48,105,37,117,37,7,0,206,48,38,100,224,146,8,0,206,48,38,100,132,150,8,0,208,176,62,126,75,138,10,0,209,176,22,127,35,107,7,0,209,176,22,127,62,124,7,0,209,176,22,127,100,135,7,0,210,176,101,93,96,132,6,0,211,176,105,27,38,98,7,0,211,48,63,39,228,109,9,0,211,48,63,39,248,110,9,0,214,176,167,128,234,72,7,0,215,48,125,143,176,148,6,0,215,48,14,189,228,206,7,0,219,48,66,12,212,243,6,0,221,176,39,14,180,144,8,0,221,176,39,14,67,145,8,0,221,48,25,86,245,28,10,0,221,48,25,86,145,31,10,0,222,48,55,25,125,53,11,0,223,48,47,243,179,17,7,0,224,48,47,46,138,115,8,0,224,48,47,46,117,124,8,0,224,48,47,46,105,133,8,0,224,176,73,146,118,226,8,0,224,176,73,146,72,228,8,0,230,48,222,103,41,50,11,0,234,176,39,171,123,236,9,0,236,176,68,185,147,12,6,0,238,48,8,142,234,77,10,0,239,48,244,147,232,191,8,0,239,48,244,147,162,193,8,0,239,176,2,188,81,239,8,0,239,176,2,188,40,240,8,0,243,48,110,137,80,32,7,0,249,48,198,63,139,76,11,0,251,176,85,140,71,236,6,0,0,177,125,28,80,32,7,0,1,177,49,202,128,133,7,0,1,177,69,235,75,103,11,0,7,177,21,154,88,251,5,0,7,177,21,154,30,252,5,0,7,49,84,167,105,159,6,0,7,177,170,137,237,73,7,0,10,177,212,54,117,79,7,0,14,177,107,41,207,235,7,0,15,49,218,5,71,236,6,0,16,49,32,105,205,207,5,0,19,177,25,63,57,171,8,0,19,177,25,63,133,172,8,0,19,177,25,63,211,173,8,0,19,177,120,233,141,195,8,0,19,177,120,233,112,196,8,0,19,177,120,233,75,197,8,0,20,49,170,230,108,148,6,0,21,49,48,49,28,92,7,0,23,49,99,26,171,63,7,0,27,177,149,103,1,190,5,0,27,49,113,238,154,221,6,0,27,177,185,27,71,236,6,0,27,49,48,197,40,13,11,0,28,177,108,2,10,219,5,0,28,49,44,1,51,214,8,0,28,49,44,1,241,214,8,0,28,49,44,1,169,215,8,0,29,177,203,241,141,11,6,0,30,49,84,24,146,98,6,0,30,49,43,193,54,233,6,0,32,49,203,153,80,186,5,0,35,177,131,10,89,181,9,0,35,177,131,10,123,181,9,0,35,177,131,10,149,181,9,0,36,49,247,200,51,214,8,0,36,49,247,200,241,214,8,0,36,49,247,200,169,215,8,0,37,49,141,98,234,72,7,0,37,49,213,95,152,111,7,0,37,49,213,95,38,124,7,0,38,49,157,38,156,253,5,0,39,177,45,218,139,158,8,0,39,177,45,218,224,163,8,0,40,49,183,127,223,143,7,0,40,177,6,113,118,234,10,0,41,49,63,125,75,153,6,0,43,49,4,114,211,72,6,0,43,49,174,75,39,65,9,0,43,49,174,75,161,65,9,0,43,49,174,75,21,66,9,0,43,49,174,75,188,66,9,0,43,49,174,75,85,67,9,0,44,177,184,35,20,15,7,0,44,177,184,35,179,17,7,0,44,177,125,77,38,98,7,0,45,49,58,129,180,144,8,0,45,49,58,129,67,145,8,0,46,177,220,110,162,196,5,0,47,49,241,167,224,146,8,0,47,49,241,167,132,150,8,0,47,49,241,14,0,190,8,0,47,49,241,14,168,190,8,0,47,49,8,234,42,124,10,0,51,177,163,243,147,189,10,0,51,177,163,243,172,189,10,0,52,49,226,163,29,5,7,0,53,177,113,111,248,90,7,0,56,177,250,159,124,222,6,0,60,177,206,34,179,17,7,0,60,177,206,34,5,198,10,0,61,177,230,249,167,71,7,0,62,177,163,2,75,1,9,0,62,177,163,2,154,2,9,0,62,177,163,2,235,3,9,0,62,177,163,2,65,5,9,0,63,49,157,38,97,89,7,0,65,177,80,245,42,252,6,0,65,177,80,245,139,86,10,0,66,177,253,100,171,63,7,0,68,49,237,62,38,98,7,0,70,177,105,2,253,200,5,0,71,49,216,21,247,84,11,0,72,49,19,193,138,115,8,0,72,49,19,193,117,124,8,0,72,49,19,193,105,133,8,0,72,177,2,77,19,169,10,0,74,177,94,11,97,119,6,0,74,177,94,11,212,243,6,0,74,177,18,135,95,204,10,0,77,49,58,157,200,116,6,0,77,49,52,198,251,100,10,0,80,49,1,4,247,55,7,0,82,177,198,127,152,111,7,0,84,177,239,220,114,209,6,0,84,177,172,68,139,158,8,0,84,177,172,68,224,163,8,0,86,177,203,146,38,180,6,0,86,49,212,106,113,47,7,0,87,49,202,152,152,111,7,0,87,49,202,152,60,44,8,0,87,49,202,152,175,44,8,0,87,49,202,152,24,45,8,0,87,49,202,152,178,229,9,0,88,49,244,127,138,115,8,0,88,49,244,127,117,124,8,0,88,49,244,127,105,133,8,0,88,177,131,46,224,146,8,0,88,177,131,46,132,150,8,0,91,177,196,229,146,220,5,0,91,49,132,221,38,98,7,0,92,177,36,90,2,199,9,0,92,177,36,90,169,199,9,0,95,49,68,19,71,236,6,0,95,177,24,149,151,21,7,0,97,49,134,72,17,184,8,0,98,177,241,243,111,228,10,0,99,49,140,158,243,175,7,0,101,49,148,1,71,236,6,0,104,49,93,94,95,19,6,0,104,177,188,129,117,79,7,0,105,49,247,12,81,54,6,0,108,49,154,250,59,179,7,0,108,49,154,250,104,179,7,0,108,49,154,250,153,179,7,0,109,49,113,186,5,156,10,0,113,177,10,251,33,65,7,0,114,177,135,84,138,115,8,0,114,177,135,84,117,124,8,0,114,177,135,84,105,133,8,0,115,177,63,187,197,253,6,0,115,49,144,194,167,8,7,0,115,49,77,121,246,149,7,0,117,49,214,49,152,111,7,0,117,49,214,49,206,62,8,0,117,49,214,49,99,63,8,0,117,49,214,49,4,64,8,0,117,49,214,49,73,218,9,0,121,49,201,11,117,37,7,0,121,49,253,148,91,17,9,0,121,49,253,148,177,17,9,0,121,49,253,148,1,18,9,0,121,49,70,2,29,223,10,0,122,177,186,196,219,1,7,0,122,49,60,38,2,199,9,0,122,49,60,38,169,199,9,0,122,177,111,240,155,133,10,0,124,177,104,216,165,11,9,0,124,177,104,216,58,12,9,0,124,49,209,34,245,28,10,0,124,49,209,34,145,31,10,0,126,49,231,247,152,111,7,0,126,49,231,247,173,169,8,0,126,49,83,178,244,27,9,0,129,49,185,80,235,172,10,0,131,177,26,58,71,236,6,0,133,49,112,52,152,111,7,0,133,49,112,52,178,229,9,0,135,49,121,32,38,98,7,0,136,177,24,161,203,125,6,0,136,49,192,148,117,37,7,0,137,49,155,115,169,181,6,0,138,49,48,56,117,79,7,0,138,177,101,15,38,98,7,0,138,49,117,203,109,172,9,0,138,49,117,203,178,173,9,0,138,49,117,203,250,174,9,0,139,49,150,197,125,44,7,0,140,177,157,78,169,202,5,0,141,177,76,33,253,82,11,0,142,177,106,13,15,233,8,0,142,177,106,13,139,233,8,0,148,49,11,207,204,213,9,0,152,177,70,106,253,208,8,0,152,177,70,106,22,211,8,0,154,177,8,120,29,204,8,0,154,177,8,120,6,205,8,0,157,49,252,194,125,44,7,0,160,177,207,178,153,207,8,0,160,177,207,178,44,208,8,0,160,177,11,196,118,226,8,0,160,177,11,196,72,228,8,0,161,49,177,94,33,65,7,0,163,49,219,56,0,115,6,0,163,49,199,126,230,215,6,0,163,177,156,57,113,47,7,0,163,177,41,238,169,126,9,0,163,177,41,238,195,126,9,0,163,177,41,238,219,126,9,0,164,49,156,196,29,150,7,0,165,49,77,17,139,158,8,0,165,49,77,17,224,163,8,0,165,177,89,101,232,191,8,0,165,177,89,101,162,193,8,0,166,49,217,46,155,67,7,0,167,177,164,166,20,15,7,0,167,177,164,166,179,17,7,0,168,177,33,98,180,28,7,0,170,49,196,148,188,163,6,0,174,49,127,99,38,98,7,0,176,177,219,62,135,205,5,0,176,49,158,203,180,28,7,0,178,49,202,34,187,63,10,0,179,177,38,246,254,254,6,0,179,49,152,206,138,115,8,0,179,49,152,206,117,124,8,0,179,49,152,206,105,133,8,0,182,177,191,225,212,243,6,0,182,177,94,174,152,111,7,0,182,177,94,174,173,169,8,0,183,49,81,199,204,213,9,0,183,177,99,128,245,28,10,0,183,177,99,128,145,31,10,0,184,177,200,80,71,236,6,0,185,177,50,221,38,98,7,0,187,177,151,53,40,217,8,0,187,177,151,53,209,217,8,0,189,49,239,1,254,254,6,0,189,49,246,13,136,58,7,0,189,177,138,206,142,209,7,0,189,177,138,206,179,209,7,0,189,177,138,206,216,209,7,0,193,177,143,166,99,66,8,0,194,49,10,220,179,17,7,0,197,49,151,133,94,62,6,0,197,177,134,39,50,226,6,0,199,49,245,80,253,45,11,0,199,49,34,52,55,64,11,0,200,49,131,235,237,73,7,0,201,49,215,123,153,68,10,0,201,49,215,123,182,68,10,0,202,177,115,42,139,158,8,0,202,177,115,42,224,163,8,0,202,177,3,154,211,195,9,0,202,177,3,154,234,195,9,0,202,177,3,154,4,196,9,0,204,49,195,146,25,87,10,0,204,177,55,224,181,251,10,0,206,177,38,215,215,255,6,0,210,49,45,74,3,157,8,0,210,49,45,74,180,157,8,0,210,49,45,74,36,190,9,0,210,177,50,175,123,236,9,0,213,177,17,154,139,158,8,0,213,177,17,154,224,163,8,0,213,49,122,184,160,234,8,0,213,49,122,184,175,235,8,0,219,49,175,68,131,48,7,0,223,177,95,131,167,71,7,0,223,177,78,34,89,74,11,0,223,177,78,34,223,79,11,0,223,177,78,34,254,79,11,0,224,177,34,215,104,244,9,0,224,177,34,215,251,244,9,0,224,177,34,215,146,245,9,0,226,177,205,184,229,237,7,0,226,49,136,198,123,236,9,0,227,177,208,1,155,120,10,0,227,177,208,1,155,126,10,0,228,177,198,227,247,55,7,0,230,49,82,215,236,51,7,0,231,49,108,50,169,198,5,0,232,49,13,145,218,22,11,0,235,177,171,137,144,245,5,0,236,49,153,183,2,120,6,0,237,49,20,136,227,218,6,0,237,49,20,136,101,219,6,0,238,177,40,201,50,211,6,0,238,177,239,7,31,23,8,0,238,49,93,189,112,5,10,0,238,49,93,189,28,6,10,0,241,49,206,70,212,243,6,0,243,49,113,60,244,197,5,0,244,177,134,82,90,175,8,0,244,177,134,82,74,176,8,0,246,177,246,252,54,165,7,0,250,49,252,98,52,112,6,0,250,49,252,98,234,190,9,0,250,49,252,98,6,191,9,0,252,49,170,4,114,218,7,0,252,177,226,23,57,171,8,0,252,177,226,23,133,172,8,0,252,177,226,23,211,173,8,0,255,177,167,133,245,220,5,0,255,49,123,108,153,143,6,0,0,178,191,254,95,0,8,0,0,178,252,86,99,25,11,0,2,178,175,191,41,209,6,0,4,178,217,49,212,243,6,0,6,50,165,235,219,1,7,0,8,178,220,126,248,30,11,0,10,178,25,130,237,73,7,0,11,50,19,9,77,200,6,0,11,50,76,251,237,73,7,0,11,50,19,9,15,179,7,0,12,50,133,230,62,28,7,0,14,50,132,47,139,158,8,0,14,50,132,47,224,163,8,0,18,178,129,196,136,58,7,0,18,178,124,206,227,108,7,0,18,178,124,206,24,249,8,0,18,178,124,206,53,249,8,0,19,178,188,94,212,243,6,0,19,50,79,156,72,4,8,0,21,178,195,67,123,236,9,0,22,50,91,142,61,6,8,0,22,50,98,20,107,23,10,0,22,50,98,20,195,23,10,0,23,178,149,169,132,18,9,0,23,178,149,169,211,18,9,0,23,178,149,169,49,19,9,0,23,178,149,169,130,19,9,0,24,50,232,232,117,79,7,0,25,50,37,228,152,86,11,0,30,50,33,115,219,1,7,0,30,178,58,99,136,58,7,0,31,178,41,140,54,233,6,0,32,178,199,148,80,94,7,0,33,178,17,109,255,179,8,0,33,178,17,109,110,180,8,0,36,50,78,188,240,226,6,0,36,50,92,145,253,208,8,0,36,50,92,145,22,211,8,0,42,50,45,113,133,205,6,0,47,50,208,139,53,99,8,0,48,50,181,86,108,8,6,0,48,50,110,7,91,17,9,0,48,50,110,7,177,17,9,0,48,50,110,7,1,18,9,0,50,50,211,194,99,42,7,0,50,50,211,194,51,19,10,0,50,50,211,194,77,19,10,0,54,178,249,7,113,47,7,0,56,50,103,48,212,243,6,0,56,50,27,87,45,230,10,0,59,178,229,212,232,251,9,0,59,178,229,212,176,252,9,0,63,50,239,198,30,171,9,0,64,178,203,49,11,80,6,0,64,178,1,254,84,21,8,0,65,50,57,36,200,6,9,0,65,50,57,36,117,7,9,0,67,50,193,104,138,115,8,0,67,50,193,104,117,124,8,0,67,50,193,104,105,133,8,0,68,178,98,244,26,194,7,0,69,178,33,170,152,111,7,0,69,178,33,170,62,124,7,0,71,50,145,245,123,236,9,0,72,178,57,50,205,151,9,0,72,178,57,50,199,152,9,0,72,178,57,50,220,153,9,0,74,50,175,204,64,74,6,0,74,50,49,54,21,145,6,0,74,178,21,77,38,98,7,0,75,178,16,209,200,207,6,0,76,50,113,27,224,146,8,0,76,50,113,27,132,150,8,0,78,50,101,179,166,73,10,0,79,50,127,151,103,41,11,0,80,178,98,244,33,65,7,0,81,50,57,235,237,73,7,0,83,50,46,127,107,210,6,0,85,178,229,20,186,124,6,0,85,178,229,20,77,185,6,0,85,50,165,242,232,191,8,0,85,50,165,242,162,193,8,0,87,50,23,126,118,61,8,0,94,178,203,26,212,243,6,0,94,178,12,188,141,195,8,0,94,178,12,188,112,196,8,0,94,178,12,188,75,197,8,0,95,178,22,201,237,73,7,0,97,178,34,202,119,80,6,0,97,50,145,56,254,254,6,0,103,178,57,130,57,171,8,0,103,178,57,130,133,172,8,0,103,178,57,130,211,173,8,0,106,178,142,160,224,146,8,0,106,178,142,160,132,150,8,0,110,178,79,197,138,115,8,0,110,178,79,197,117,124,8,0,110,178,79,197,105,133,8,0,116,50,88,119,219,1,7,0,116,178,250,181,80,32,7,0,117,50,28,200,125,98,9,0,117,50,28,200,159,98,9,0,118,50,33,239,35,71,10,0,120,178,5,75,193,5,8,0,120,178,5,75,49,59,8,0,121,50,54,14,203,25,10,0,121,50,54,14,228,25,10,0,121,50,54,14,26,26,10,0,124,178,200,165,125,177,9,0,124,178,200,165,224,177,9,0,124,178,200,165,64,178,9,0,127,178,19,61,233,53,9,0,127,178,19,61,38,54,9,0,127,178,19,61,118,54,9,0,128,178,157,246,125,177,9,0,128,178,157,246,224,177,9,0,128,178,157,246,64,178,9,0,128,50,239,233,115,7,10,0,128,50,239,233,190,7,10,0,128,50,239,233,10,8,10,0,135,178,100,127,102,223,6,0,139,178,230,60,224,146,8,0,139,178,230,60,132,150,8,0,139,178,213,11,90,175,8,0,139,178,213,11,74,176,8,0,141,178,106,73,98,82,6,0,141,178,33,239,81,239,8,0,141,178,33,239,40,240,8,0,142,50,230,22,57,10,7,0,147,178,147,46,212,243,6,0,148,50,229,115,117,37,7,0,148,50,237,50,138,115,8,0,148,50,237,50,117,124,8,0,148,50,237,50,105,133,8,0,149,178,148,57,176,207,5,0,152,178,126,215,0,190,8,0,152,178,126,215,168,190,8,0,153,178,230,133,117,212,6,0,153,178,46,207,30,116,10,0,155,50,199,174,107,210,6,0,161,50,64,130,213,34,6,0,161,178,163,211,138,115,8,0,161,178,163,211,117,124,8,0,161,178,163,211,105,133,8,0,164,178,235,28,81,239,8,0,164,178,235,28,40,240,8,0,164,178,192,219,47,61,10,0,166,50,150,74,80,49,7,0,166,50,150,74,171,49,7,0,172,178,154,178,159,25,6,0,172,50,178,216,205,151,9,0,172,50,178,216,199,152,9,0,172,50,178,216,220,153,9,0,173,178,114,251,71,236,6,0,173,50,200,15,210,110,7,0,175,50,125,194,10,2,6,0,176,178,245,218,96,147,6,0,176,178,245,183,162,50,7,0,176,50,226,199,162,28,9,0,176,50,226,199,244,28,9,0,178,178,168,255,107,23,10,0,178,178,168,255,195,23,10,0,179,178,143,173,203,136,10,0,180,178,231,51,171,206,6,0,180,50,145,103,171,63,7,0,181,50,152,77,16,36,6,0,181,50,246,49,73,193,10,0,183,178,47,42,54,138,9,0,183,178,47,42,92,138,9,0,184,50,44,44,38,98,7,0,185,178,63,119,178,133,10,0,187,50,80,108,41,91,6,0,187,50,33,38,113,232,6,0,188,178,44,118,232,251,9,0,188,178,44,118,176,252,9,0,189,178,231,234,179,17,7,0,189,178,231,234,25,67,11,0,190,178,185,227,112,78,6,0,192,178,130,8,136,58,7,0,193,178,215,26,139,158,8,0,193,178,215,26,224,163,8,0,195,178,170,104,71,236,6,0,195,178,158,174,175,26,7,0,196,178,153,164,70,131,10,0,197,178,166,225,117,79,7,0,199,178,226,188,201,138,7,0,199,50,40,222,21,83,9,0,199,50,40,222,59,83,9,0,199,50,40,222,100,83,9,0,205,178,253,181,206,5,6,0,205,50,81,18,81,63,7,0,206,178,149,101,99,66,8,0,207,178,181,167,99,42,7,0,207,178,115,178,138,115,8,0,207,178,115,178,117,124,8,0,207,178,115,178,105,133,8,0,207,50,167,210,191,74,10,0,211,50,62,16,48,225,6,0,212,178,97,69,212,243,6,0,213,50,32,73,235,246,10,0,222,178,199,148,195,185,6,0,223,50,172,217,55,86,10,0,224,178,106,96,245,28,10,0,224,178,106,96,145,31,10,0,226,50,162,93,171,49,7,0,234,178,221,104,237,222,5,0,234,178,48,38,90,7,7,0,235,50,32,231,167,8,7,0,238,178,130,16,227,108,7,0,239,178,226,217,199,98,6,0,239,50,166,182,146,187,10,0,240,178,99,230,69,222,6,0,240,178,141,253,117,79,7,0,240,178,99,230,38,98,7,0,241,50,245,170,104,15,10,0,241,50,245,170,169,15,10,0,244,50,157,204,20,15,7,0,244,50,157,204,179,17,7,0,244,50,195,68,167,34,7,0,245,50,90,115,44,90,10,0,249,178,125,229,38,98,7,0,252,50,182,191,166,165,6,0,252,50,216,171,71,236,6,0,253,178,245,244,71,236,6,0,255,178,191,174,71,236,6,0,2,179,151,182,118,0,7,0,3,51,26,157,92,198,6,0,3,179,38,47,212,243,6,0,3,51,26,157,75,104,9,0,3,51,26,157,92,104,9,0,3,179,22,84,166,73,10,0,7,51,81,133,138,115,8,0,7,51,81,133,117,124,8,0,7,51,81,133,105,133,8,0,11,51,74,83,152,111,7,0,11,51,74,83,73,197,9,0,13,51,10,58,201,230,6,0,14,51,203,43,221,38,10,0,14,51,203,43,62,40,10,0,15,179,37,239,224,96,11,0,20,179,154,64,180,212,6,0,22,51,29,52,197,43,7,0,22,51,29,52,30,44,7,0,22,179,153,23,155,20,11,0,23,51,77,13,24,201,6,0,27,179,75,59,253,208,8,0,27,179,75,59,22,211,8,0,28,51,135,177,191,233,5,0,32,51,79,132,152,111,7,0,32,179,200,126,138,115,8,0,32,179,200,126,117,124,8,0,32,179,200,126,105,133,8,0,32,51,79,132,110,38,10,0,32,51,79,132,172,38,10,0,32,179,95,73,198,48,11,0,34,179,28,3,227,108,7,0,34,179,28,3,244,29,9,0,34,179,28,3,3,30,9,0,34,179,28,3,27,30,9,0,35,179,236,26,174,119,10,0,35,51,33,116,197,142,10,0,40,179,182,2,119,174,7,0,40,179,182,2,165,174,7,0,40,51,85,174,146,172,10,0,41,179,31,7,192,3,6,0,41,179,31,7,49,10,6,0,41,179,31,7,28,61,8,0,41,179,253,208,46,16,10,0,47,51,18,83,44,99,11,0,47,51,18,83,63,99,11,0,48,179,172,123,37,227,5,0,48,179,172,123,224,75,6,0,49,51,253,124,117,79,7,0,49,179,130,247,118,226,8,0,49,179,130,247,72,228,8,0,50,179,73,190,135,93,6,0,50,179,73,190,158,93,6,0,52,51,88,0,151,21,7,0,52,179,230,19,235,128,7,0,52,51,88,0,193,117,9,0,52,51,88,0,221,117,9,0,54,179,200,45,138,115,8,0,54,179,200,45,117,124,8,0,54,179,200,45,105,133,8,0,55,51,145,207,71,236,6,0,55,179,130,247,118,226,8,0,55,179,130,247,72,228,8,0,55,179,128,223,123,236,9,0,56,51,61,95,26,32,6,0,58,51,224,200,80,167,9,0,58,51,224,200,37,168,9,0,59,179,80,166,86,15,9,0,59,179,80,166,116,15,9,0,60,51,235,2,212,243,6,0,61,179,189,8,235,189,7,0,62,51,18,1,175,26,7,0,62,51,179,96,156,101,11,0,64,51,76,8,237,73,7,0,66,179,76,82,130,227,6,0,70,179,227,43,135,252,6,0,70,179,227,43,194,252,6,0,72,51,249,21,112,137,10,0,72,179,129,184,193,95,11,0,73,179,189,134,90,53,7,0,75,51,150,178,100,71,7,0,79,51,17,57,12,234,6,0,80,179,131,93,197,253,6,0,80,51,83,39,57,10,7,0,85,51,39,190,114,243,8,0,85,51,39,190,37,244,8,0,87,51,242,221,229,49,9,0,87,51,242,221,17,50,9,0,87,179,187,172,180,52,11,0,89,51,50,247,135,90,9,0,89,51,50,247,124,91,9,0,91,179,198,235,246,205,8,0,91,179,198,235,155,206,8,0,93,51,66,14,20,15,7,0,93,51,66,14,179,17,7,0,93,51,66,14,138,115,8,0,93,51,66,14,117,124,8,0,93,51,66,14,105,133,8,0,94,179,172,2,218,134,10,0,95,179,100,179,62,4,7,0,96,51,217,135,246,205,8,0,96,51,217,135,155,206,8,0,97,179,83,222,247,55,7,0,97,179,83,89,192,150,9,0,97,179,83,89,17,151,9,0,99,51,123,158,39,41,6,0,99,51,123,158,221,240,7,0,100,179,193,71,138,115,8,0,100,179,193,71,117,124,8,0,100,179,193,71,105,133,8,0,101,179,112,17,71,236,6,0,102,51,110,137,67,228,10,0,105,51,197,8,11,133,7,0,107,179,49,251,78,75,6,0,107,179,49,251,207,90,6,0,108,179,238,208,227,108,7,0,109,179,75,0,116,238,5,0,109,51,5,3,23,179,8,0,109,51,5,3,119,179,8,0,109,179,232,96,228,94,11,0,110,51,117,212,117,37,7,0,112,179,6,27,167,8,7,0,112,179,79,36,138,115,8,0,112,179,79,36,117,124,8,0,112,179,79,36,105,133,8,0,113,51,32,127,233,68,10,0,114,179,0,63,84,21,8,0,117,51,188,148,11,181,8,0,117,51,188,148,69,181,8,0,117,51,188,148,123,181,8,0,122,51,225,86,212,21,9,0,122,51,225,86,31,22,9,0,122,51,225,86,103,22,9,0,125,51,155,196,253,208,8,0,125,51,155,196,22,211,8,0,127,179,87,116,253,210,6,0,128,179,179,170,218,113,9,0,128,179,179,170,120,114,9,0,129,51,28,197,245,93,11,0,132,179,130,247,118,226,8,0,132,179,130,247,72,228,8,0,134,51,255,220,68,65,11,0,134,51,255,220,113,68,11,0,137,179,153,93,55,207,5,0,137,179,153,93,71,32,6,0,137,179,21,163,171,63,7,0,138,51,176,204,136,58,7,0,139,179,253,44,138,115,8,0,139,179,253,44,117,124,8,0,139,179,253,44,105,133,8,0,140,179,245,30,38,98,7,0,141,51,101,6,247,55,7,0,143,179,16,55,88,62,11,0,144,51,81,190,212,243,6,0,144,179,118,94,44,53,11,0,145,179,244,209,95,192,5,0,145,51,200,82,132,215,6,0,145,179,165,117,179,17,7,0,145,179,165,117,38,98,7,0,147,179,157,38,214,92,7,0,149,179,114,33,118,226,8,0,149,179,114,33,72,228,8,0,150,179,90,6,138,115,8,0,150,179,90,6,117,124,8,0,150,179,90,6,105,133,8,0,152,51,40,48,255,11,11,0,156,179,250,136,44,228,10,0,157,51,206,6,117,79,7,0,157,51,8,220,227,108,7,0,157,51,205,100,65,172,7,0,157,51,8,220,245,36,9,0,157,51,83,67,2,199,9,0,157,51,83,67,169,199,9,0,165,179,212,194,146,235,6,0,165,179,114,139,136,58,7,0,166,51,143,33,133,103,6,0,170,51,74,27,253,208,8,0,170,51,74,27,22,211,8,0,172,179,229,211,38,98,7,0,172,51,172,227,6,229,10,0,174,51,112,171,71,236,6,0,174,51,230,133,90,53,7,0,174,179,13,198,17,184,8,0,174,51,3,100,51,241,8,0,174,51,3,100,198,241,8,0,175,179,91,209,124,222,6,0,175,51,164,214,212,243,6,0,175,179,192,172,123,236,9,0,177,51,99,34,38,98,7,0,178,179,123,216,24,41,11,0,178,179,123,216,165,49,11,0,179,179,131,0,193,45,7,0,179,179,131,0,242,45,7,0,179,179,187,201,155,67,7,0,179,51,88,38,38,98,7,0,180,51,193,142,228,126,10,0,180,51,160,80,57,248,10,0,181,51,57,138,117,79,7,0,182,179,154,34,117,79,7,0,185,179,115,167,84,21,8,0,187,51,255,229,137,227,5,0,188,51,83,46,117,79,10,0,191,179,201,196,123,236,9,0,194,179,25,116,32,150,10,0,194,179,25,116,63,150,10,0,195,51,247,12,212,243,6,0,195,51,40,116,151,21,7,0,196,179,205,233,232,25,7,0,196,51,122,247,136,58,7,0,197,179,42,30,249,209,5,0,198,51,33,82,20,15,7,0,198,51,33,82,179,17,7,0,199,51,190,131,138,28,7,0,201,179,47,110,71,236,6,0,204,179,255,169,138,115,8,0,204,179,255,169,117,124,8,0,204,179,255,169,105,133,8,0,205,179,84,43,171,49,7,0,206,179,80,230,112,27,7,0,207,51,91,52,117,37,7,0,208,51,3,31,71,236,6,0,208,51,213,34,178,102,8,0,210,179,4,16,194,169,7,0,210,179,239,50,201,52,11,0,212,179,226,29,117,37,7,0,213,179,216,250,149,43,7,0,215,51,11,206,28,163,10,0,217,179,107,56,255,99,6,0,217,179,107,56,21,100,6,0,217,51,215,234,84,21,8,0,219,179,6,194,167,8,7,0,222,51,149,160,137,207,5,0,222,51,180,121,212,243,6,0,223,179,66,220,22,67,6,0,223,179,66,220,155,67,7,0,226,179,219,240,152,111,7,0,226,179,219,240,62,124,7,0,231,51,156,38,186,131,7,0,231,51,156,38,243,134,7,0,235,51,33,242,162,232,7,0,238,51,13,135,118,26,7,0,245,179,99,236,148,206,5,0,248,179,43,186,174,243,7,0,249,51,6,91,138,115,8,0,249,51,6,91,117,124,8,0,249,51,6,91,105,133,8,0,250,51,242,124,29,150,7,0,251,179,80,56,219,1,7,0,251,51,167,71,176,35,11,0,253,179,195,56,179,17,7,0,1,180,102,145,152,111,7,0,1,52,232,126,91,154,8,0,1,52,232,126,147,154,8,0,2,180,224,154,117,79,7,0,6,180,10,27,7,220,6,0,6,52,37,238,245,33,11,0,7,180,2,126,243,228,7,0,9,52,109,175,236,51,7,0,11,180,242,46,254,243,5,0,11,180,242,46,153,89,7,0,12,52,5,162,29,204,8,0,12,52,5,162,6,205,8,0,12,180,251,238,230,71,9,0,12,180,251,238,83,72,9,0,14,180,175,122,200,134,6,0,14,52,105,125,245,185,6,0,19,180,80,55,136,58,7,0,20,180,176,217,232,191,8,0,20,180,176,217,162,193,8,0,21,52,140,206,63,25,7,0,22,180,227,144,148,147,6,0,22,180,140,98,38,98,7,0,26,180,46,11,84,21,8,0,31,52,38,124,48,142,6,0,31,180,238,86,157,160,6,0,31,180,238,86,173,71,11,0,31,180,11,30,24,102,11,0,32,180,144,121,179,17,7,0,32,52,135,227,224,146,8,0,32,52,135,227,132,150,8,0,32,180,144,121,124,116,10,0,32,180,81,141,148,51,11,0,33,52,145,204,224,146,8,0,33,52,145,204,132,150,8,0,33,52,145,204,65,5,9,0,38,52,32,136,152,111,7,0,38,52,32,136,206,62,8,0,38,52,32,136,99,63,8,0,38,52,32,136,4,64,8,0,38,52,94,69,141,195,8,0,38,52,94,69,112,196,8,0,38,52,94,69,75,197,8,0,38,52,32,136,73,218,9,0,44,180,13,70,205,151,9,0,44,180,13,70,199,152,9,0,44,180,13,70,220,153,9,0,46,180,117,163,49,151,10,0,47,180,0,97,138,115,8,0,47,180,0,97,117,124,8,0,47,180,0,97,105,133,8,0,48,180,233,111,245,28,10,0,48,180,233,111,145,31,10,0,49,180,54,29,138,115,8,0,49,180,54,29,117,124,8,0,49,180,54,29,105,133,8,0,50,180,198,158,167,107,7,0,50,180,198,158,27,118,7,0,51,52,81,190,13,147,7,0,51,52,81,190,103,21,9,0,51,52,81,190,138,21,9,0,53,52,98,162,118,214,6,0,53,180,181,214,117,37,7,0,53,180,157,254,247,55,7,0,56,52,252,159,80,32,7,0,57,52,141,144,104,244,9,0,57,52,141,144,251,244,9,0,57,52,141,144,146,245,9,0,57,180,246,245,245,28,10,0,57,180,246,245,145,31,10,0,58,52,71,173,20,15,7,0,58,52,71,173,179,17,7,0,61,52,240,127,57,10,7,0,61,52,186,148,245,28,10,0,61,52,186,148,145,31,10,0,63,180,160,123,235,47,6,0,65,180,173,16,221,38,10,0,65,180,173,16,62,40,10,0,66,180,78,22,86,113,9,0,67,180,219,247,90,53,7,0,69,52,81,190,21,236,10,0,71,180,98,199,125,100,10,0,72,52,79,107,77,127,10,0,73,180,136,75,30,171,9,0,73,52,23,60,231,154,10,0,78,180,163,160,50,51,7,0,79,180,172,101,227,108,7,0,79,52,153,151,125,177,9,0,79,52,153,151,224,177,9,0,79,52,153,151,64,178,9,0,79,52,187,202,53,226,10,0,80,180,254,144,179,222,8,0,80,180,254,144,152,223,8,0,81,52,182,241,54,233,6,0,84,180,40,170,11,9,7,0,85,52,157,38,152,111,7,0,87,180,140,115,159,186,6,0,87,180,140,115,38,98,7,0,88,52,161,239,3,157,8,0,88,52,161,239,180,157,8,0,90,180,52,218,70,209,9,0,90,180,52,218,141,209,9,0,90,180,52,218,208,209,9,0,90,180,52,218,13,210,9,0,90,180,52,218,4,71,10,0,92,52,166,69,42,202,6,0,93,180,14,58,11,80,6,0,93,52,84,90,138,115,8,0,93,52,84,90,117,124,8,0,93,52,84,90,105,133,8,0,95,180,207,135,138,115,8,0,95,180,207,135,117,124,8,0,95,180,207,135,105,133,8,0,96,180,143,66,123,236,9,0,102,180,249,54,203,252,5,0,102,180,249,54,167,76,6,0,103,52,63,219,212,243,6,0,103,180,133,173,109,172,9,0,103,180,133,173,178,173,9,0,103,180,133,173,250,174,9,0,104,52,108,2,81,239,8,0,104,52,108,2,40,240,8,0,106,52,93,203,167,107,7,0,106,52,93,203,241,125,7,0,107,52,100,241,38,98,7,0,109,180,29,100,144,142,10,0,115,180,250,132,23,137,10,0,117,52,16,224,51,214,8,0,117,52,16,224,241,214,8,0,117,52,16,224,169,215,8,0,120,52,242,221,212,243,6,0,125,52,61,130,246,205,8,0,125,52,61,130,155,206,8,0,126,180,179,63,71,236,6,0,128,52,124,217,232,191,8,0,128,52,124,217,162,193,8,0,130,180,182,180,71,236,6,0,130,180,59,70,136,58,7,0,131,180,72,20,138,115,8,0,131,180,72,20,117,124,8,0,131,180,72,20,105,133,8,0,132,180,245,19,71,236,6,0,132,180,211,100,46,16,10,0,132,180,211,100,46,16,10,0,133,52,212,217,167,17,6,0,133,52,212,217,84,68,6,0,134,180,5,40,38,98,7,0,136,180,202,56,0,190,8,0,136,180,202,56,168,190,8,0,138,180,193,103,243,6,7,0,138,180,193,103,232,191,8,0,138,180,193,103,162,193,8,0,143,52,237,64,136,58,7,0,144,52,46,129,35,17,6,0,145,180,41,46,24,201,6,0,145,52,90,36,133,220,6,0,147,52,61,129,216,0,6,0,147,52,61,129,140,214,7,0,148,52,34,70,235,61,8,0,148,52,44,60,88,154,10,0,150,52,152,167,230,19,6,0,150,52,152,167,35,98,8,0,151,180,175,212,124,222,6,0,151,180,235,19,37,239,7,0,151,180,235,19,177,179,9,0,151,180,235,19,201,179,9,0,151,180,235,19,12,180,10,0,152,52,166,193,117,79,7,0,152,52,48,226,165,65,10,0,153,180,57,40,138,115,8,0,153,180,57,40,117,124,8,0,153,180,57,40,105,133,8,0,155,180,26,140,67,105,10,0,161,180,13,147,118,0,7,0,162,52,46,24,212,243,6,0,163,180,94,57,76,252,6,0,165,52,247,92,107,23,10,0,165,52,247,92,195,23,10,0,169,52,207,192,180,28,7,0,169,52,92,176,118,226,8,0,169,52,92,176,72,228,8,0,170,52,112,167,41,38,11,0,171,180,224,215,214,120,9,0,171,180,224,215,7,121,9,0,171,180,224,215,43,121,9,0,175,52,33,191,179,222,8,0,175,52,33,191,152,223,8,0,176,180,45,165,84,21,8,0,177,52,102,240,193,121,6,0,177,52,124,3,75,1,9,0,177,52,124,3,154,2,9,0,177,52,124,3,235,3,9,0,177,52,124,3,65,5,9,0,178,180,111,226,243,206,9,0,178,180,111,226,42,207,9,0,178,180,111,226,98,207,9,0,180,52,207,182,174,51,7,0,181,52,186,148,154,4,7,0,182,180,236,93,240,226,6,0,184,52,105,155,182,114,8,0,184,180,22,182,214,67,10,0,184,180,22,182,243,67,10,0,185,180,129,47,125,44,7,0,185,52,249,43,57,171,8,0,185,52,249,43,133,172,8,0,185,52,249,43,211,173,8,0,185,52,249,43,77,120,9,0,185,52,249,43,123,120,9,0,186,52,75,175,39,114,8,0,189,52,248,74,245,228,6,0,191,180,130,247,118,226,8,0,191,180,130,247,72,228,8,0,191,180,25,179,213,41,10,0,191,180,25,179,87,42,10,0,192,52,175,115,17,184,8,0,197,52,179,239,5,156,10,0,199,52,103,123,156,104,6,0,199,180,3,64,51,214,8,0,199,180,3,64,241,214,8,0,199,180,3,64,169,215,8,0,201,52,231,203,53,66,7,0,205,52,219,111,123,236,9,0,206,180,196,40,170,198,10,0,209,52,142,173,95,145,10,0,215,180,167,160,47,85,6,0,218,180,241,15,237,73,7,0,219,52,77,202,72,204,9,0,221,52,95,31,254,243,5,0,221,52,95,31,153,89,7,0,222,180,237,96,191,166,9,0,222,180,237,96,252,166,9,0,222,180,237,96,39,167,9,0,225,52,234,3,230,160,6,0,227,52,204,248,0,97,9,0,227,52,204,248,36,97,9,0,228,180,200,247,253,208,8,0,228,180,200,247,22,211,8,0,228,52,96,29,176,35,11,0,230,52,27,48,117,79,7,0,231,180,161,113,203,51,6,0,231,180,79,116,123,236,9,0,234,180,183,154,23,179,8,0,234,180,183,154,119,179,8,0,235,180,184,195,230,49,6,0,241,52,24,122,201,205,5,0,242,180,164,71,95,204,10,0,243,180,142,54,15,144,7,0,246,52,94,91,142,240,10,0,249,52,3,163,229,69,11,0,250,180,172,164,139,158,8,0,250,180,172,164,224,163,8,0,251,52,37,84,205,235,10,0,253,52,181,189,22,62,10,0,254,52,123,96,121,182,8,0,254,52,123,96,153,182,8,0,255,52,158,182,99,115,6,0,0,53,245,158,144,50,6,0,1,53,149,13,228,212,6,0,1,53,149,13,7,220,6,0,1,53,211,72,71,236,6,0,4,53,7,207,34,10,10,0,5,53,139,130,212,243,6,0,5,181,123,121,117,37,7,0,5,181,154,214,200,30,9,0,5,181,154,214,226,30,9,0,6,181,38,91,123,246,8,0,6,181,38,91,175,246,8,0,7,181,168,223,230,207,5,0,9,181,158,98,204,60,10,0,10,181,152,162,162,50,7,0,13,53,199,130,156,205,6,0,13,53,32,215,113,24,7,0,14,181,131,60,26,117,6,0,14,53,146,201,223,30,7,0,16,53,187,235,139,158,8,0,16,53,187,235,224,163,8,0,17,181,237,66,141,255,8,0,17,181,237,66,235,255,8,0,22,181,54,196,194,35,10,0,22,181,54,196,14,36,10,0,24,181,83,27,198,95,6,0,24,181,83,27,138,51,7,0,24,181,101,237,121,97,7,0,25,53,81,148,112,27,7,0,26,181,16,193,9,58,11,0,29,53,135,26,106,59,9,0,29,53,135,26,181,59,9,0,30,53,241,195,191,233,5,0,30,181,235,13,218,113,9,0,30,181,235,13,120,114,9,0,31,181,95,16,241,216,5,0,31,53,90,231,157,249,10,0,33,53,187,0,117,79,7,0,34,181,250,16,118,226,8,0,34,181,250,16,72,228,8,0,35,181,63,80,140,47,6,0,35,181,137,60,229,212,10,0,37,181,20,29,84,21,8,0,37,181,199,222,38,103,9,0,37,181,199,222,89,103,9,0,38,53,129,143,171,63,7,0,38,53,66,254,23,179,8,0,38,53,66,254,119,179,8,0,43,181,250,89,37,217,7,0,43,181,250,89,168,217,7,0,45,181,61,68,3,188,9,0,45,181,61,68,26,188,9,0,45,181,61,68,50,188,9,0,51,53,23,224,226,3,6,0,51,53,23,224,130,4,6,0,51,53,23,224,225,112,6,0,51,53,23,224,230,217,7,0,52,53,207,146,217,62,7,0,53,53,28,126,124,253,6,0,53,53,80,177,244,103,10,0,54,53,50,85,111,23,8,0,56,181,234,71,178,46,9,0,56,181,234,71,199,46,9,0,59,181,120,27,220,150,7,0,59,181,120,27,212,218,9,0,59,181,120,27,9,219,9,0,59,181,120,27,69,219,9,0,61,53,16,220,138,115,8,0,61,53,16,220,117,124,8,0,61,53,16,220,105,133,8,0,63,181,46,97,29,5,7,0,64,181,133,139,123,236,9,0,65,181,9,171,75,142,9,0,65,181,9,171,201,142,9,0,65,181,9,171,84,143,9,0,67,181,43,139,7,139,6,0,72,181,13,55,212,243,6,0,72,53,117,149,38,98,7,0,73,53,196,144,106,59,9,0,73,53,196,144,181,59,9,0,74,181,114,11,72,130,6,0,75,181,172,247,159,203,7,0,76,181,30,66,88,129,7,0,76,53,138,210,121,26,11,0,80,53,65,41,148,109,8,0,82,181,232,251,123,236,9,0,84,181,205,233,121,193,5,0,86,53,158,248,229,193,10,0,87,53,57,228,227,108,7,0,88,53,166,53,56,90,8,0,89,181,44,23,179,181,7,0,90,181,48,142,155,67,7,0,93,181,55,86,235,189,7,0,95,53,222,142,210,164,7,0,96,181,158,126,80,11,7,0,99,181,185,234,140,66,7,0,99,181,185,234,234,66,7,0,101,181,190,190,164,23,7,0,101,181,190,190,152,111,7,0,101,181,190,190,62,124,7,0,104,181,155,97,169,232,5,0,106,53,217,103,212,243,6,0,108,181,77,121,2,137,10,0,110,53,177,202,230,215,6,0,110,53,43,168,17,71,7,0,112,181,32,143,224,146,8,0,112,181,32,143,132,150,8,0,113,181,214,140,218,113,9,0,113,181,214,140,120,114,9,0,113,181,173,130,36,194,10,0,113,181,173,130,178,194,10,0,115,181,165,22,104,15,10,0,115,181,165,22,169,15,10,0,116,53,58,146,179,17,7,0,116,53,58,146,222,189,9,0,117,181,228,88,247,55,7,0,120,181,29,90,61,224,6,0,120,181,17,150,38,103,9,0,120,181,17,150,89,103,9,0,121,53,157,38,135,9,6,0,121,181,83,118,139,158,8,0,121,181,83,118,224,163,8,0,122,53,157,38,40,146,6,0,122,53,116,161,247,55,7,0,123,181,72,40,243,134,7,0,123,181,190,254,247,94,11,0,123,53,150,147,201,96,11,0,124,53,205,104,139,158,8,0,124,53,205,104,224,163,8,0,125,181,199,98,78,15,6,0,126,181,136,166,214,7,7,0,132,181,254,42,106,120,6,0,132,53,25,159,234,36,7,0,132,181,107,35,134,201,10,0,134,53,181,38,133,220,6,0,134,181,165,52,232,191,8,0,134,181,165,52,162,193,8,0,134,53,203,5,255,172,10,0,135,53,6,33,102,223,6,0,135,181,36,136,151,21,7,0,135,181,46,30,15,233,8,0,135,181,46,30,139,233,8,0,138,181,57,12,237,73,7,0,138,181,124,164,223,186,10,0,139,181,193,148,136,214,5,0,139,181,193,148,231,128,6,0,140,53,191,126,100,131,6,0,144,181,91,151,73,136,10,0,147,181,116,104,136,58,7,0,147,53,166,225,136,58,7,0,149,181,134,37,71,236,6,0,151,53,177,50,219,210,7,0,152,181,219,177,80,247,7,0,152,181,219,177,128,247,7,0,152,181,219,177,178,247,7,0,152,181,219,177,232,247,7,0,152,181,219,177,21,248,7,0,152,53,249,3,163,107,9,0,152,53,249,3,201,107,9,0,152,53,249,3,237,107,9,0,152,181,155,32,6,229,10,0,153,53,192,13,117,37,7,0,155,181,161,180,102,223,6,0,157,181,220,45,227,224,5,0,157,53,146,254,72,202,8,0,157,53,146,254,175,202,8,0,158,53,108,76,180,28,7,0,158,181,154,239,123,236,9,0,158,53,59,46,22,154,10,0,159,181,192,189,123,236,9,0,160,181,71,99,83,221,10,0,162,181,72,136,158,233,10,0,165,181,166,103,71,236,6,0,165,181,195,76,38,98,7,0,167,53,63,148,138,115,8,0,167,53,63,148,117,124,8,0,167,53,63,148,105,133,8,0,168,181,229,210,113,24,7,0,169,181,6,46,161,46,10,0,169,181,6,46,238,46,10,0,169,181,211,179,198,159,10,0,177,181,231,242,20,15,7,0,177,181,231,242,179,17,7,0,177,181,142,13,13,32,9,0,177,181,142,13,195,32,9,0,180,181,111,15,133,220,6,0,180,53,208,8,197,182,7,0,182,181,148,91,152,111,7,0,182,181,148,91,60,44,8,0,182,181,148,91,175,44,8,0,182,181,148,91,24,45,8,0,182,181,148,91,178,229,9,0,183,181,71,78,129,25,7,0,184,181,205,79,3,200,5,0,184,181,135,184,158,108,8,0,184,181,85,170,165,190,10,0,185,181,238,243,69,174,7,0,189,181,152,66,151,21,7,0,189,53,250,48,145,78,11,0,190,181,194,162,191,37,10,0,190,181,194,162,212,37,10,0,192,181,227,176,139,158,8,0,192,181,227,176,224,163,8,0,194,53,142,224,95,204,10,0,195,53,244,166,8,190,10,0,195,53,244,166,208,190,10,0,200,53,48,245,150,214,5,0,200,181,148,39,72,204,9,0,203,181,223,140,182,83,9,0,203,181,72,149,171,100,10,0,207,181,26,136,217,189,5,0,207,53,118,31,193,45,7,0,207,53,118,31,242,45,7,0,210,53,203,104,157,239,10,0,211,181,0,159,212,243,6,0,211,181,145,151,142,244,7,0,213,53,252,216,56,175,7,0,213,53,252,216,71,176,7,0,215,53,136,209,51,241,8,0,215,53,136,209,198,241,8,0,218,53,53,15,179,17,7,0,219,53,159,102,159,145,10,0,221,181,105,126,164,45,6,0,222,181,60,163,103,46,7,0,223,181,86,41,199,145,7,0,224,181,116,108,139,158,8,0,224,181,116,108,224,163,8,0,225,181,250,221,168,92,8,0,227,181,140,95,121,217,6,0,227,181,38,254,104,244,9,0,227,181,38,254,251,244,9,0,227,181,38,254,146,245,9,0,230,181,128,80,100,228,6,0,231,53,187,142,49,70,7,0,231,181,90,215,30,49,11,0,235,53,84,110,71,236,6,0,237,181,231,242,30,231,6,0,243,53,157,38,158,41,6,0,243,53,157,38,154,129,6,0,243,181,83,177,80,32,7,0,243,53,81,190,237,73,7,0,243,53,81,190,117,79,7,0,244,181,210,106,44,114,6,0,245,181,204,237,29,150,7,0,247,53,157,38,236,51,7,0,248,181,245,57,75,142,9,0,248,181,245,57,201,142,9,0,248,181,245,57,84,143,9,0,248,181,203,6,215,144,9,0,248,181,203,6,233,144,9,0,253,53,118,6,69,69,7,0,253,181,202,97,157,90,11,0,254,53,140,196,165,11,9,0,254,53,140,196,58,12,9,0,0,182,134,147,208,14,6,0,0,182,134,147,30,162,7,0,1,54,102,26,237,73,7,0,3,54,77,6,186,216,10,0,5,182,222,7,212,243,6,0,5,54,115,57,109,172,9,0,5,54,115,57,178,173,9,0,5,54,115,57,250,174,9,0,7,54,66,6,64,8,7,0,7,54,201,88,218,113,9,0,7,54,201,88,120,114,9,0,10,54,198,111,117,79,7,0,12,54,191,98,232,251,9,0,12,54,191,98,176,252,9,0,13,54,196,186,68,202,6,0,13,54,15,17,104,244,9,0,13,54,15,17,251,244,9,0,13,54,15,17,146,245,9,0,14,182,78,190,134,44,6,0,15,54,231,164,195,34,6,0,17,182,59,115,20,15,7,0,17,182,59,115,179,17,7,0,18,54,201,58,152,111,7,0,18,54,201,58,173,169,8,0,21,54,105,206,9,234,10,0,21,182,190,234,27,241,10,0,24,182,85,130,13,99,11,0,25,54,29,9,117,37,7,0,26,182,192,233,253,231,10,0,26,54,233,12,76,248,10,0,28,182,247,24,138,113,8,0,28,182,30,141,90,175,8,0,28,182,30,141,74,176,8,0,29,54,106,66,230,215,6,0,31,54,47,83,245,28,10,0,31,54,47,83,145,31,10,0,32,182,113,12,10,91,11,0,33,182,165,133,101,220,9,0,33,182,165,133,154,220,9,0,36,54,104,205,66,99,10,0,38,54,151,75,22,206,9,0,38,54,151,75,87,206,9,0,39,54,178,6,72,202,8,0,39,54,178,6,175,202,8,0,40,182,2,145,130,227,6,0,40,54,112,88,103,170,8,0,40,54,112,88,188,170,8,0,42,182,229,66,178,91,6,0,44,182,46,80,247,55,7,0,44,54,49,70,29,150,7,0,44,54,189,39,217,58,11,0,45,54,239,57,84,21,8,0,47,182,31,191,92,201,6,0,51,54,211,249,123,236,9,0,52,182,180,31,138,115,8,0,52,182,180,31,117,124,8,0,52,182,180,31,105,133,8,0,54,54,29,74,28,68,9,0,54,54,29,74,215,68,9,0,54,182,125,102,98,42,11,0,59,182,102,27,234,77,10,0,64,54,234,242,160,34,11,0,70,182,226,139,82,235,6,0,71,54,78,177,38,98,7,0,71,54,78,177,160,230,10,0,72,182,111,157,180,28,7,0,72,182,180,148,123,236,9,0,77,182,138,215,191,74,10,0,77,54,116,214,3,239,10,0,78,182,203,86,12,234,6,0,78,54,200,126,219,34,7,0,80,54,194,92,100,228,6,0,81,182,232,126,69,105,6,0,81,182,232,126,153,11,7,0,81,182,232,126,135,13,7,0,82,182,223,29,117,37,7,0,82,54,44,57,232,191,8,0,82,54,44,57,162,193,8,0,85,54,249,162,20,15,7,0,85,54,249,162,179,17,7,0,85,54,183,126,139,43,9,0,85,54,183,126,156,43,9,0,86,54,66,151,230,215,6,0,86,54,72,189,171,202,10,0,90,182,177,180,232,191,8,0,90,182,177,180,162,193,8,0,93,182,165,55,138,115,8,0,93,182,199,171,138,115,8,0,93,182,165,55,117,124,8,0,93,182,199,171,117,124,8,0,93,182,165,55,105,133,8,0,93,182,199,171,105,133,8,0,97,182,127,203,139,224,5,0,97,182,127,203,179,17,7,0,99,54,13,143,118,0,7,0,100,54,36,166,212,243,6,0,101,54,116,143,117,79,7,0,104,54,182,92,138,115,8,0,104,54,182,92,117,124,8,0,104,54,182,92,105,133,8,0,104,182,218,79,140,142,8,0,104,182,218,79,235,142,8,0,104,182,218,79,83,143,8,0,105,54,205,220,205,224,5,0,109,54,89,35,82,235,6,0,109,182,128,114,179,136,10,0,111,182,95,19,146,92,11,0,113,182,222,177,99,66,8,0,113,182,222,177,69,68,8,0,113,182,222,177,8,69,8,0,113,182,222,177,155,69,8,0,113,182,222,177,232,69,8,0,115,182,163,127,123,236,9,0,118,182,236,88,188,169,6,0,118,182,236,88,236,97,8,0,119,182,84,144,105,36,9,0,119,182,84,144,129,36,9,0,120,182,206,185,84,21,8,0,128,54,249,110,159,92,9,0,128,54,249,110,5,93,9,0,129,54,15,28,80,167,9,0,129,54,15,28,37,168,9,0,130,182,196,50,165,108,9,0,130,182,196,50,214,108,9,0,130,182,196,50,27,109,9,0,131,54,87,138,136,58,7,0,131,182,120,8,109,172,9,0,131,182,120,8,178,173,9,0,131,182,120,8,250,174,9,0,132,182,135,227,138,115,8,0,132,182,135,227,117,124,8,0,132,182,135,227,105,133,8,0,137,54,27,55,148,186,8,0,137,54,27,55,221,186,8,0,138,182,7,22,103,130,6,0,138,182,17,240,90,53,7,0,138,54,235,19,133,179,10,0,143,182,87,247,193,248,5,0,147,182,68,165,219,210,7,0,149,182,168,94,38,98,7,0,152,182,227,244,236,26,7,0,152,54,174,102,114,188,8,0,152,54,174,102,157,188,8,0,153,182,205,40,195,100,11,0,154,54,41,104,179,17,7,0,156,182,72,188,66,230,6,0,157,54,47,132,50,189,10,0,159,54,103,45,87,24,7,0,163,54,248,119,199,185,8,0,163,54,248,119,232,185,8,0,163,54,226,14,245,28,10,0,163,54,226,14,145,31,10,0,164,182,128,112,221,38,10,0,164,182,128,112,62,40,10,0,166,54,128,243,57,171,8,0,166,54,128,243,133,172,8,0,166,54,128,243,211,173,8,0,167,54,196,148,18,233,5,0,168,54,44,43,135,71,11,0,170,54,251,13,81,239,8,0,170,54,251,13,40,240,8,0,171,182,136,163,80,32,7,0,173,182,203,129,219,1,7,0,173,182,217,35,46,4,10,0,173,182,217,35,70,4,10,0,173,182,217,35,89,4,10,0,177,182,117,157,13,205,6,0,177,54,15,122,8,41,8,0,179,182,43,9,205,151,9,0,179,182,43,9,199,152,9,0,179,182,43,9,220,153,9,0,184,182,205,140,29,150,7,0,185,182,201,0,138,115,8,0,185,182,201,0,117,124,8,0,185,182,201,0,105,133,8,0,186,54,134,9,253,117,6,0,186,54,99,143,138,115,8,0,186,54,99,143,117,124,8,0,186,54,99,143,105,133,8,0,186,182,99,106,110,199,10,0,188,54,183,136,235,189,7,0,189,182,98,244,77,139,7,0,189,182,143,151,205,151,9,0,189,182,143,151,199,152,9,0,189,182,143,151,220,153,9,0,189,54,194,201,184,233,10,0,197,54,131,206,194,211,6,0,197,54,131,206,227,108,7,0,199,182,74,199,24,229,10,0,199,182,74,199,201,237,10,0,201,54,119,96,232,197,5,0,203,54,11,209,84,21,8,0,203,54,233,60,160,234,8,0,203,54,233,60,175,235,8,0,204,182,101,103,30,140,10,0,206,54,207,63,230,215,6,0,206,182,150,34,111,248,7,0,206,182,150,34,161,248,7,0,209,182,231,242,245,28,10,0,209,182,231,242,145,31,10,0,217,54,11,238,146,153,6,0,218,182,162,39,35,186,5,0,218,182,244,104,62,28,7,0,218,182,115,27,123,236,9,0,219,182,174,45,102,223,6,0,219,182,18,186,100,71,7,0,219,54,124,27,13,32,9,0,219,54,124,27,195,32,9,0,222,182,95,35,21,146,6,0,222,182,246,56,18,90,9,0,222,182,246,56,66,90,9,0,224,54,197,85,241,155,6,0,229,54,77,231,14,136,6,0,229,54,77,231,41,152,6,0,229,54,90,155,245,41,7,0,233,54,203,43,30,44,7,0,236,182,236,229,99,66,8,0,240,182,98,47,72,204,9,0,241,54,170,163,162,28,9,0,241,54,170,163,244,28,9,0,241,182,213,198,218,113,9,0,241,182,213,198,120,114,9,0,242,54,10,117,84,21,8,0,242,182,196,67,139,158,8,0,242,182,196,67,224,163,8,0,244,182,3,165,90,53,7,0,246,182,236,167,249,28,8,0,247,54,57,133,162,28,9,0,247,54,57,133,244,28,9,0,253,182,164,241,228,109,9,0,253,182,164,241,248,110,9,0,253,54,95,139,114,156,10,0,254,54,234,125,136,58,7,0,0,183,137,248,90,53,7,0,1,55,185,163,212,243,6,0,1,183,235,130,209,81,10,0,3,183,190,166,178,231,10,0,3,183,190,166,217,231,10,0,5,55,42,246,236,51,7,0,5,55,42,246,166,220,8,0,5,55,42,246,241,220,8,0,7,55,194,132,224,146,8,0,7,55,194,132,132,150,8,0,7,183,102,223,244,27,9,0,13,55,124,196,117,79,7,0,15,55,130,14,191,201,5,0,15,183,207,34,107,210,6,0,17,183,211,55,254,243,5,0,17,183,36,116,237,73,7,0,17,183,211,55,153,89,7,0,20,183,37,82,117,79,7,0,20,55,153,134,80,167,9,0,20,55,153,134,37,168,9,0,24,55,219,127,63,165,6,0,25,55,0,61,175,200,6,0,27,55,214,186,71,236,6,0,28,183,232,169,212,243,6,0,29,183,127,11,42,195,5,0,29,55,59,209,117,37,7,0,30,183,253,55,76,252,6,0,33,55,35,108,187,77,10,0,34,55,236,7,152,111,7,0,34,55,236,7,84,53,8,0,36,55,27,126,237,73,7,0,45,183,144,239,219,1,7,0,47,55,67,205,113,24,7,0,48,55,1,101,135,90,9,0,48,55,1,101,124,91,9,0,49,183,15,167,179,17,7,0,52,183,248,189,80,186,5,0,52,183,225,150,138,115,8,0,52,183,225,150,117,124,8,0,52,183,225,150,105,133,8,0,53,183,15,120,246,205,8,0,53,183,15,120,155,206,8,0,54,55,7,141,90,175,8,0,54,55,7,141,74,176,8,0,54,55,166,77,68,65,11,0,54,55,166,77,113,68,11,0,55,183,58,193,149,236,10,0,58,183,174,204,125,177,9,0,58,183,174,204,224,177,9,0,58,183,174,204,64,178,9,0,59,183,135,227,117,79,7,0,59,55,80,18,95,0,10,0,59,55,80,18,200,0,10,0,62,55,36,228,12,89,11,0,63,55,207,163,164,25,7,0,63,183,254,107,138,115,8,0,63,183,254,107,117,124,8,0,63,183,254,107,105,133,8,0,68,55,210,58,118,203,5,0,68,183,195,40,133,140,7,0,71,55,84,131,90,176,10,0,72,55,15,138,38,98,7,0,75,183,131,250,171,192,5,0,76,55,31,81,123,236,9,0,78,55,118,36,116,251,7,0,81,183,236,182,113,232,6,0,86,55,37,102,212,243,6,0,86,183,169,39,236,26,7,0,86,183,211,113,220,219,10,0,87,55,114,61,191,135,6,0,87,55,206,191,69,193,6,0,88,55,32,253,123,236,9,0,89,183,217,48,92,201,6,0,89,55,157,144,117,37,7,0,90,55,47,117,90,53,7,0,91,183,113,143,254,138,9,0,91,183,113,143,42,139,9,0,92,183,240,80,77,222,5,0,92,55,52,50,61,224,6,0,92,55,153,109,90,175,8,0,92,55,153,109,74,176,8,0,93,183,82,11,50,51,7,0,94,183,228,250,219,34,7,0,94,55,184,156,81,144,10,0,95,183,249,113,52,118,9,0,95,183,249,113,77,118,9,0,96,55,113,171,42,196,6,0,96,55,127,21,152,111,7,0,96,55,127,21,84,53,8,0,96,183,57,235,153,207,8,0,96,183,57,235,44,208,8,0,97,55,100,27,123,236,9,0,100,183,18,75,245,170,6,0,104,183,193,106,117,79,7,0,105,55,128,124,254,254,6,0,105,183,229,55,154,4,7,0,106,55,92,134,30,171,9,0,108,55,249,141,160,247,10,0,112,55,146,189,71,236,6,0,112,183,43,215,0,190,8,0,112,183,43,215,168,190,8,0,112,183,148,2,135,90,9,0,112,183,148,2,124,91,9,0,115,183,99,161,50,234,8,0,115,183,99,161,86,234,8,0,117,55,160,149,136,58,7,0,117,183,86,90,165,11,9,0,117,183,86,90,58,12,9,0,120,183,106,226,152,111,7,0,120,183,106,226,178,186,9,0,120,183,106,226,214,186,9,0,120,183,106,226,245,186,9,0,121,55,208,11,113,16,6,0,121,55,240,101,118,26,7,0,121,55,187,12,159,45,7,0,121,183,61,142,36,82,11,0,122,183,147,240,212,243,6,0,122,55,189,156,112,27,7,0,123,183,76,92,162,50,7,0,125,183,248,56,90,53,7,0,127,55,56,73,30,171,9,0,128,183,202,120,221,38,10,0,128,183,202,120,62,40,10,0,131,183,168,141,69,193,6,0,132,183,36,131,212,243,6,0,133,183,105,52,96,222,6,0,134,55,52,171,236,10,6,0,134,183,58,206,63,25,7,0,135,55,98,128,236,51,7,0,140,183,67,205,117,37,7,0,141,55,101,132,89,252,5,0,141,55,194,95,80,32,7,0,141,183,192,0,21,36,7,0,141,55,101,132,163,235,7,0,143,183,107,187,90,175,8,0,143,183,107,187,74,176,8,0,145,55,120,27,114,243,8,0,145,55,120,27,37,244,8,0,148,183,165,193,152,111,7,0,148,183,165,193,243,123,7,0,148,183,165,193,62,124,7,0,149,55,19,197,95,142,7,0,149,183,157,92,245,28,10,0,149,183,157,92,145,31,10,0,151,55,250,94,17,239,5,0,152,55,99,125,37,42,11,0,154,55,172,72,194,71,6,0,154,55,194,32,139,158,8,0,154,55,194,32,224,163,8,0,156,55,168,133,69,222,6,0,156,55,168,133,166,207,7,0,156,183,105,120,125,188,9,0,156,183,105,120,147,188,9,0,156,183,105,120,167,188,9,0,157,183,119,71,122,168,7,0,158,55,160,45,23,153,10,0,159,55,157,38,164,112,6,0,159,55,61,51,118,44,11,0,160,55,94,20,179,181,7,0,162,55,233,183,119,133,10,0,164,183,100,235,246,205,8,0,164,183,100,235,155,206,8,0,165,183,236,42,138,115,8,0,165,183,236,42,117,124,8,0,165,183,236,42,105,133,8,0,168,55,247,191,98,231,10,0,170,55,147,249,222,195,10,0,175,55,118,92,47,1,7,0,175,55,10,49,11,211,10,0,177,55,143,199,69,69,7,0,181,183,252,82,243,203,7,0,183,55,116,136,90,53,7,0,184,55,128,172,237,14,11,0,184,55,128,172,22,19,11,0,185,55,207,120,151,21,7,0,187,183,206,64,254,243,5,0,187,183,206,64,153,89,7,0,187,183,251,81,139,214,9,0,187,183,251,81,234,214,9,0,187,183,251,81,70,215,9,0,188,55,56,109,100,103,6,0,188,183,139,50,171,63,7,0,188,55,112,167,163,12,8,0,188,183,31,237,124,45,8,0,188,183,31,237,1,46,8,0,188,183,31,237,123,46,8,0,189,55,60,127,55,197,6,0,189,55,27,88,243,69,7,0,191,55,23,106,170,218,5,0,192,55,26,58,195,48,7,0,192,183,201,84,233,53,9,0,192,183,201,84,38,54,9,0,192,183,201,84,118,54,9,0,195,183,35,102,215,255,6,0,195,183,126,223,247,55,7,0,197,183,170,210,17,184,8,0,201,55,212,230,237,73,7,0,201,55,209,107,219,210,7,0,201,183,107,238,99,195,9,0,202,55,215,130,52,30,8,0,202,55,215,130,86,30,8,0,202,55,215,130,120,30,8,0,207,55,104,241,253,208,8,0,207,55,104,241,22,211,8,0,207,55,234,52,215,156,10,0,208,183,48,69,87,16,6,0,213,183,142,38,118,30,11,0,214,183,58,206,143,145,7,0,214,183,248,12,245,81,11,0,214,183,248,12,8,82,11,0,215,183,221,184,205,151,9,0,215,183,221,184,199,152,9,0,215,183,221,184,220,153,9,0,216,55,113,231,236,213,6,0,217,183,67,153,171,63,7,0,217,55,197,177,100,148,7,0,217,55,197,177,152,148,7,0,217,55,197,177,119,61,10,0,219,55,176,116,74,212,6,0,220,55,255,175,78,231,8,0,220,55,255,175,103,231,8,0,220,55,255,175,151,231,8,0,220,55,255,175,178,127,10,0,222,55,214,223,55,114,10,0,226,55,29,245,237,222,5,0,226,183,187,205,66,110,6,0,226,55,29,245,117,79,7,0,226,183,156,236,38,98,7,0,227,183,74,88,200,127,6,0,227,55,97,44,227,218,6,0,228,183,99,158,101,220,9,0,228,183,99,158,154,220,9,0,229,55,252,47,212,243,6,0,232,55,0,99,125,44,7,0,233,55,42,238,29,5,7,0,234,55,211,204,22,217,9,0,234,55,211,204,103,217,9,0,235,55,39,165,119,199,6,0,237,183,113,144,219,210,7,0,237,55,225,42,4,68,11,0,242,183,98,127,89,135,6,0,242,183,73,129,230,215,6,0,244,183,52,202,123,246,8,0,244,183,52,202,175,246,8,0,245,183,30,103,245,28,10,0,245,183,30,103,145,31,10,0,249,55,28,88,117,37,7,0,250,55,222,115,80,32,7,0,250,55,77,49,139,158,8,0,250,55,77,49,224,163,8,0,251,183,174,55,219,1,7,0,253,183,49,244,50,51,7,0,4,184,159,132,175,30,7,0,5,184,126,223,136,58,7,0,6,184,89,101,75,1,9,0,6,184,89,101,154,2,9,0,6,184,89,101,235,3,9,0,6,184,89,101,65,5,9,0,7,56,188,72,178,8,6,0,7,56,132,110,38,98,7,0,8,184,181,102,113,24,7,0,10,184,114,27,118,226,8,0,10,184,114,27,72,228,8,0,13,184,255,2,178,77,6,0,14,56,112,38,139,158,8,0,14,56,112,38,224,163,8,0,16,184,84,67,117,79,7,0,16,184,232,13,193,97,11,0,18,184,172,120,132,18,9,0,18,184,172,120,211,18,9,0,18,184,172,120,49,19,9,0,18,184,172,120,130,19,9,0,18,184,11,28,22,62,10,0,19,56,245,199,71,236,6,0,20,56,133,252,20,15,7,0,24,56,25,177,212,243,6,0,24,56,23,79,234,105,10,0,25,184,222,124,110,230,5,0,27,184,22,127,71,236,6,0,28,56,38,210,254,243,5,0,28,56,38,210,153,89,7,0,28,184,191,4,152,111,7,0,28,184,191,4,138,220,7,0,28,184,191,4,182,220,7,0,30,56,239,67,160,234,8,0,30,56,239,67,175,235,8,0,31,184,250,125,111,184,6,0,31,56,92,224,219,210,7,0,36,184,247,126,11,196,6,0,37,56,42,91,40,213,6,0,37,184,168,71,29,5,7,0,39,56,223,81,246,205,8,0,39,56,223,81,155,206,8,0,40,184,157,243,117,37,7,0,40,184,193,25,93,85,11,0,44,184,97,128,43,65,6,0,46,184,51,55,177,133,7,0,46,184,51,55,38,134,7,0,47,56,40,25,114,190,5,0,49,56,72,173,71,236,6,0,49,184,119,79,170,10,11,0,49,184,80,81,229,69,11,0,50,56,151,234,22,217,9,0,50,56,151,234,103,217,9,0,52,56,169,127,75,1,9,0,52,56,169,127,154,2,9,0,52,56,169,127,235,3,9,0,52,56,169,127,65,5,9,0,52,56,226,108,123,236,9,0,53,56,98,231,201,230,6,0,53,56,94,247,123,236,9,0,53,56,116,229,183,9,11,0,55,184,128,79,209,40,7,0,57,184,14,108,113,22,11,0,60,56,75,134,179,17,7,0,61,56,148,132,24,139,7,0,65,56,204,131,50,196,5,0,65,184,72,226,209,208,7,0,65,56,204,131,139,158,8,0,65,56,204,131,224,163,8,0,66,184,241,130,179,17,7,0,66,184,221,139,46,16,10,0,66,56,0,164,245,28,10,0,66,56,0,164,145,31,10,0,67,184,138,123,109,172,9,0,67,184,138,123,178,173,9,0,67,184,138,123,250,174,9,0,67,184,85,61,195,114,10,0,73,184,123,219,117,79,7,0,77,184,189,28,229,114,10,0,78,56,79,28,26,0,7,0,79,56,68,182,245,41,7,0,84,184,80,12,78,203,8,0,86,184,78,140,5,221,9,0,86,184,78,140,26,221,9,0,86,184,78,140,52,221,9,0,89,56,24,203,132,140,10,0,91,184,210,88,184,200,7,0,92,184,36,8,20,40,6,0,92,184,208,28,71,236,6,0,93,56,54,198,212,243,6,0,95,184,93,238,47,111,10,0,100,56,62,91,29,69,7,0,100,56,62,91,10,85,11,0,100,56,62,91,35,87,11,0,103,184,77,220,84,21,8,0,104,184,168,185,31,96,11,0,104,184,168,185,135,99,11,0,111,184,83,253,162,50,7,0,112,184,42,121,38,98,7,0,118,184,88,107,117,79,7,0,121,56,63,123,64,8,7,0,123,56,83,112,253,208,8,0,123,56,83,112,22,211,8,0,125,56,157,105,176,35,11,0,127,56,187,190,243,206,9,0,127,56,187,190,42,207,9,0,127,56,187,190,98,207,9,0,128,184,237,155,153,143,6,0,129,184,235,233,138,115,8,0,129,184,235,233,117,124,8,0,129,184,235,233,105,133,8,0,131,184,137,173,24,20,8,0,134,56,94,247,98,82,10,0,134,56,169,234,196,176,10,0,135,56,60,134,53,66,7,0,136,56,216,149,139,158,8,0,136,56,216,149,224,163,8,0,143,56,156,141,117,37,7,0,146,56,251,65,85,144,6,0,146,56,220,243,241,95,8,0,147,184,55,127,45,75,6,0,147,184,121,89,197,253,6,0,148,56,180,220,127,208,6,0,148,184,137,43,104,153,7,0,148,184,82,98,235,189,7,0,149,56,250,182,76,183,6,0,149,184,184,32,232,25,7,0,149,184,203,174,81,239,8,0,149,184,203,174,40,240,8,0,152,56,3,239,138,115,8,0,152,56,3,239,117,124,8,0,152,56,3,239,105,133,8,0,152,184,68,71,216,95,10,0,155,184,228,140,152,111,7,0,155,56,206,87,123,135,7,0,155,184,228,140,173,169,8,0,155,184,193,110,141,230,9,0,155,184,193,110,217,230,9,0,156,184,104,201,182,130,7,0,160,184,6,125,123,236,9,0,161,56,212,167,71,236,6,0,162,184,19,247,172,213,6,0,162,184,19,247,226,43,9,0,162,184,19,247,66,44,9,0,162,184,19,247,167,44,9,0,162,184,19,247,5,45,9,0,162,184,19,247,108,45,9,0,163,184,228,139,119,9,6,0,163,184,228,139,209,11,6,0,163,56,238,229,95,0,10,0,163,56,238,229,200,0,10,0,165,56,153,235,49,49,9,0,165,56,153,235,69,49,9,0,165,56,227,86,144,252,10,0,166,184,97,158,233,58,8,0,170,56,159,110,142,63,11,0,170,56,159,110,0,64,11,0,170,56,159,110,26,64,11,0,171,184,10,176,68,202,6,0,172,184,192,98,219,134,6,0,172,56,133,253,147,136,6,0,172,184,87,218,212,243,6,0,178,184,100,199,79,116,6,0,179,56,214,34,80,32,7,0,180,56,216,223,123,236,9,0,183,184,242,45,34,183,7,0,184,184,149,96,163,79,10,0,185,184,180,2,38,98,7,0,185,184,12,114,228,109,9,0,185,184,12,114,248,110,9,0,190,184,147,153,117,79,7,0,191,56,226,36,172,214,5,0,191,184,94,19,5,148,7,0,196,184,63,220,153,207,8,0,196,184,63,220,44,208,8,0,196,184,53,252,95,0,10,0,196,184,53,252,200,0,10,0,198,56,15,112,90,53,7,0,198,56,214,126,139,158,8,0,198,56,214,126,224,163,8,0,199,184,223,7,223,30,7,0,202,184,200,20,210,166,10,0,203,56,19,27,84,21,8,0,204,184,218,147,118,226,8,0,204,184,218,147,72,228,8,0,207,56,235,177,19,56,6,0,210,184,45,12,32,113,9,0,210,184,45,12,94,232,10,0,212,56,192,114,117,79,7,0,212,184,23,192,161,46,10,0,212,184,23,192,238,46,10,0,216,56,173,246,90,53,7,0,217,56,110,168,75,1,9,0,217,56,110,168,154,2,9,0,217,56,110,168,235,3,9,0,217,56,110,168,65,5,9,0,218,56,116,141,180,28,7,0,224,184,248,131,160,234,8,0,224,184,248,131,175,235,8,0,226,56,246,194,144,231,5,0,227,56,180,109,134,44,6,0,230,184,145,141,107,210,6,0,231,56,136,118,138,66,10,0,234,184,171,230,114,10,6,0,236,56,218,54,80,32,7,0,236,184,50,65,138,115,8,0,236,184,50,65,117,124,8,0,236,184,50,65,105,133,8,0,236,56,218,54,241,34,10,0,236,56,218,54,4,35,10,0,243,184,160,248,218,249,5,0,246,184,137,116,6,225,5,0,247,184,128,251,247,214,6,0,248,184,127,23,19,230,5,0,248,56,53,57,63,124,10,0,250,184,115,12,212,243,6,0,255,56,213,92,50,226,6,0,1,57,112,146,221,38,10,0,1,57,112,146,62,40,10,0,3,185,145,200,171,63,7,0,3,57,78,100,238,92,11,0,5,185,15,123,122,130,6,0,5,57,221,204,71,236,6,0,5,57,170,36,80,32,7,0,6,57,0,1,69,238,8,0,6,57,0,1,138,238,8,0,6,57,0,1,214,238,8,0,9,57,188,148,111,81,10,0,11,57,235,217,237,73,7,0,12,185,27,71,132,12,6,0,12,185,116,32,189,146,10,0,14,57,58,155,80,49,7,0,15,57,81,190,142,235,10,0,16,185,111,143,46,204,5,0,16,57,49,14,33,65,7,0,16,57,249,19,153,207,8,0,16,57,249,19,44,208,8,0,17,57,197,107,109,172,9,0,17,57,197,107,178,173,9,0,17,57,197,107,250,174,9,0,22,57,96,46,38,98,7,0,26,57,230,151,167,107,7,0,27,185,251,176,171,63,7,0,27,185,76,47,114,243,8,0,27,185,76,47,37,244,8,0,29,185,210,2,155,67,7,0,29,185,31,36,52,216,10,0,30,185,26,234,71,236,6,0,30,185,72,251,117,79,7,0,35,185,117,40,12,213,6,0,37,185,84,124,178,148,10,0,38,185,199,227,228,109,9,0,38,185,199,227,248,110,9,0,40,57,230,104,215,16,10,0,40,57,230,104,215,16,10,0,40,57,230,104,215,16,10,0,40,57,230,104,135,17,10,0,40,57,230,104,135,17,10,0,40,57,230,104,135,17,10,0,40,185,194,179,66,189,10,0,47,57,186,170,38,98,7,0,48,57,188,49,63,14,9,0,48,57,188,49,116,14,9,0,49,57,33,51,123,236,9,0,50,57,154,112,64,86,9,0,50,57,154,112,109,86,9,0,51,185,80,241,171,63,7,0,56,57,115,11,117,79,7,0,57,57,123,21,35,46,6,0,58,57,58,132,230,215,6,0,58,185,235,207,253,208,8,0,58,185,235,207,22,211,8,0,59,57,174,221,50,208,10,0,61,57,242,178,38,98,7,0,62,57,98,126,197,253,6,0,62,185,25,249,38,98,7,0,63,57,41,34,212,243,6,0,67,185,195,133,220,178,10,0,68,57,33,203,182,0,8,0,68,185,127,73,138,115,8,0,68,185,127,73,117,124,8,0,68,185,127,73,105,133,8,0,69,57,221,183,76,77,10,0,73,57,42,59,167,245,10,0,74,185,40,40,219,210,7,0,78,185,95,8,38,169,10,0,81,185,216,16,105,145,6,0,81,185,216,16,203,145,6,0,82,57,246,234,162,28,9,0,82,57,246,234,244,28,9,0,84,185,81,242,71,236,6,0,84,57,74,110,245,28,10,0,84,57,74,110,145,31,10,0,86,57,35,93,24,70,6,0,86,185,17,53,219,1,7,0,88,57,17,112,88,129,7,0,88,57,76,103,7,154,10,0,92,185,186,234,145,134,10,0,93,185,214,177,130,13,6,0,93,185,91,72,35,116,6,0,93,185,214,177,219,130,6,0,93,185,91,72,50,211,6,0,93,57,115,168,152,111,7,0,93,185,45,6,169,15,9,0,93,185,45,6,204,15,9,0,93,185,45,6,241,15,9,0,93,57,115,168,238,67,9,0,93,57,115,168,9,68,9,0,95,57,10,69,107,210,6,0,96,185,187,203,115,212,5,0,98,57,229,246,152,111,7,0,98,57,229,246,173,169,8,0,99,57,164,184,138,115,8,0,99,57,164,184,117,124,8,0,99,57,164,184,105,133,8,0,99,185,7,101,171,41,11,0,100,57,32,121,230,215,6,0,100,57,175,200,248,25,8,0,104,57,9,126,80,32,7,0,107,57,37,152,49,70,7,0,108,57,25,193,254,243,5,0,108,57,25,193,153,89,7,0,110,185,165,84,232,185,7,0,113,57,44,4,248,53,6,0,114,185,229,184,92,243,7,0,116,57,211,200,113,232,6,0,119,185,81,45,71,136,6,0,123,57,127,98,21,36,7,0,123,185,45,9,8,141,7,0,127,185,107,139,51,255,9,0,127,185,107,139,139,255,9,0,127,185,107,139,226,255,9,0,134,57,81,170,120,215,5,0,135,185,127,212,212,243,6,0,138,185,215,68,245,28,10,0,138,185,215,68,145,31,10,0,139,185,198,231,81,63,7,0,139,185,198,231,38,98,7,0,139,57,160,40,152,111,7,0,139,57,160,40,206,62,8,0,139,57,160,40,99,63,8,0,139,57,160,40,4,64,8,0,139,57,160,40,73,218,9,0,141,185,143,186,74,176,6,0,142,185,234,65,188,52,9,0,142,185,32,126,177,138,10,0,143,57,255,204,50,226,6,0,143,185,108,254,209,99,8,0,144,185,45,100,93,38,6,0,146,185,182,47,212,243,6,0,148,57,107,189,85,31,7,0,148,57,102,232,38,98,7,0,149,185,184,49,38,98,7,0,150,185,105,69,29,5,7,0,151,185,139,229,99,66,8,0,153,57,22,26,38,103,9,0,153,57,22,26,89,103,9,0,155,185,39,93,80,232,5,0,155,185,39,93,100,232,5,0,156,185,166,225,153,254,10,0,157,57,66,161,148,186,8,0,157,57,66,161,221,186,8,0,158,185,135,227,117,79,7,0,159,185,99,159,219,227,10,0,159,185,99,159,243,227,10,0,160,185,50,127,237,73,7,0,164,185,46,35,204,239,10,0,167,57,225,67,2,199,9,0,167,57,225,67,169,199,9,0,169,57,191,29,71,236,6,0,169,185,98,244,152,111,7,0,175,57,123,26,214,7,7,0,176,57,144,158,244,22,9,0,176,57,144,158,15,23,9,0,177,57,244,136,77,206,5,0,178,185,69,218,38,98,7,0,178,57,72,76,210,222,9,0,178,57,72,76,251,222,9,0,180,185,207,217,133,220,6,0,180,185,207,217,173,101,10,0,181,185,71,82,139,158,8,0,181,185,71,82,224,163,8,0,181,57,128,153,80,82,11,0,182,185,34,65,227,161,9,0,182,185,34,65,18,162,9,0,185,185,193,176,138,115,8,0,185,185,193,176,117,124,8,0,185,185,193,176,105,133,8,0,189,185,173,129,190,163,7,0,189,185,173,129,243,163,7,0,189,185,173,129,30,164,7,0,190,185,69,13,26,0,7,0,193,57,17,97,123,236,9,0,194,185,58,206,187,61,11,0,194,185,58,206,255,61,11,0,199,57,38,247,178,233,6,0,200,57,4,222,123,236,9,0,206,185,251,36,75,1,9,0,206,185,251,36,154,2,9,0,206,185,251,36,235,3,9,0,206,185,251,36,65,5,9,0,209,185,226,161,114,243,8,0,209,185,226,161,37,244,8,0,209,185,121,16,224,96,11,0,210,57,4,53,230,71,9,0,210,57,4,53,83,72,9,0,213,57,37,136,139,158,8,0,213,57,37,136,224,163,8,0,215,57,238,177,200,6,9,0,215,57,238,177,117,7,9,0,216,57,38,85,17,71,7,0,217,185,78,153,93,11,11,0,219,185,64,62,136,58,7,0,220,185,60,75,167,55,8,0,221,185,212,112,178,233,6,0,224,57,28,48,123,246,8,0,224,57,28,48,175,246,8,0,227,185,138,73,84,21,8,0,229,57,135,128,44,215,5,0,230,57,109,23,16,217,5,0,230,185,4,233,202,240,10,0,232,185,236,135,238,170,10,0,233,57,228,124,153,14,8,0,233,57,228,124,210,14,8,0,233,57,228,124,7,15,8,0,235,57,236,164,167,8,7,0,238,57,11,58,62,68,10,0,240,57,215,237,43,140,10,0,241,185,110,170,24,201,6,0,242,185,132,235,223,30,7,0,242,57,87,186,47,65,10,0,243,57,120,218,113,47,7,0,244,185,239,19,138,115,8,0,244,185,239,19,117,124,8,0,244,185,239,19,105,133,8,0,245,57,51,205,212,243,6,0,247,185,79,35,168,139,7,0,249,185,172,30,255,59,11,0,250,57,94,63,212,143,6,0,254,185,209,229,212,200,6,0,254,185,18,1,203,103,11,0,255,57,198,4,66,215,5,0,0,58,9,48,232,150,6,0,0,58,9,48,38,109,8,0,1,186,203,199,55,203,10,0,2,186,81,171,124,100,6,0,7,58,108,16,61,6,8,0,7,58,108,16,170,6,8,0,8,186,168,224,215,16,10,0,8,186,168,224,135,17,10,0,9,58,215,203,57,130,7,0,13,58,248,83,237,73,7,0,15,58,113,181,232,191,8,0,15,58,113,181,162,193,8,0,19,186,97,211,111,191,5,0,21,58,110,230,138,115,8,0,21,58,110,230,117,124,8,0,21,58,110,230,105,133,8,0,21,58,197,212,18,123,10,0,22,186,106,132,245,228,6,0,30,186,46,38,166,167,10,0,30,186,179,197,240,57,11,0,31,58,65,53,140,44,11,0,32,186,60,239,13,38,6,0,33,58,157,200,185,147,10,0,35,58,255,109,38,98,7,0,37,58,146,194,123,236,9,0,40,186,223,190,136,58,7,0,40,58,237,137,22,62,10,0,46,186,4,51,103,10,11,0,47,186,119,176,2,199,9,0,47,186,119,176,169,199,9,0,48,58,12,164,90,53,7,0,49,58,61,39,75,1,9,0,49,58,61,39,154,2,9,0,49,58,61,39,235,3,9,0,49,58,61,39,65,5,9,0,53,186,41,82,38,98,7,0,53,186,209,133,246,234,10,0,61,186,83,102,188,175,10,0,62,58,37,183,60,140,10,0,65,58,239,52,165,9,9,0,65,58,239,52,221,9,9,0,65,58,239,52,22,10,9,0,65,186,85,120,135,90,9,0,65,186,85,120,124,91,9,0,67,58,154,20,172,13,11,0,67,58,154,20,97,22,11,0,69,58,231,250,68,173,10,0,69,58,231,250,101,173,10,0,70,58,81,116,16,222,6,0,71,58,253,102,195,48,7,0,71,58,66,170,69,20,11,0,73,58,196,104,90,53,7,0,73,186,140,197,211,34,8,0,73,186,140,197,5,35,8,0,73,58,196,104,194,86,10,0,74,186,29,157,237,73,7,0,77,58,197,98,135,200,10,0,81,186,14,79,138,96,7,0,83,186,27,248,92,158,6,0,85,186,44,202,237,73,7,0,88,186,204,99,11,228,7,0,92,186,88,81,57,10,7,0,92,58,165,90,151,21,7,0,92,58,38,135,88,129,7,0,92,186,222,15,99,66,8,0,96,186,119,198,72,27,7,0,99,186,60,166,20,15,7,0,99,186,60,166,179,17,7,0,100,186,224,185,219,210,7,0,101,186,76,214,226,154,9,0,101,186,76,214,114,155,9,0,101,186,62,68,123,236,9,0,102,186,135,78,128,133,7,0,104,58,8,52,249,154,8,0,104,58,8,52,148,155,8,0,104,58,8,52,52,156,8,0,104,58,126,15,188,228,10,0,107,58,172,238,242,71,6,0,107,58,237,149,112,27,7,0,107,186,98,157,36,122,7,0,108,186,223,71,117,79,7,0,110,186,109,117,100,134,10,0,112,58,181,221,167,107,7,0,112,58,181,221,212,123,7,0,113,58,147,95,244,149,9,0,113,58,147,95,20,150,9,0,114,186,113,82,99,42,7,0,114,186,203,44,201,4,8,0,114,186,28,224,123,236,9,0,115,58,18,12,254,243,5,0,115,58,18,12,153,89,7,0,116,186,67,251,44,159,6,0,116,58,41,70,132,215,6,0,118,58,252,111,138,115,8,0,118,58,252,111,117,124,8,0,118,58,252,111,105,133,8,0,121,186,87,63,100,61,6,0,122,58,148,192,237,73,7,0,126,58,195,3,155,67,7,0,128,58,52,139,122,130,6,0,128,58,94,52,165,11,9,0,128,58,94,52,58,12,9,0,130,58,94,188,194,170,10,0,131,58,148,190,116,168,10,0,132,58,50,253,193,45,7,0,132,58,50,253,242,45,7,0,136,58,82,41,123,236,9,0,137,58,92,216,55,43,6,0,137,186,92,124,189,132,7,0,137,58,95,235,123,236,9,0,140,58,248,149,154,4,7,0,140,186,118,214,179,17,7,0,140,58,38,131,123,236,9,0,142,58,12,219,224,146,8,0,142,58,12,219,132,150,8,0,145,186,223,56,229,190,5,0,146,58,154,245,138,115,8,0,146,58,154,245,117,124,8,0,146,58,154,245,105,133,8,0,148,58,123,65,46,68,10,0,150,58,119,13,71,236,6,0,150,58,163,137,245,41,7,0,152,58,57,126,139,158,8,0,152,58,57,126,224,163,8,0,153,58,186,152,210,110,7,0,153,58,186,152,177,118,7,0,155,58,132,71,17,184,8,0,156,58,184,212,68,202,6,0,156,58,98,39,247,55,7,0,156,58,24,31,38,98,7,0,156,58,178,15,123,236,9,0,158,58,101,107,68,80,11,0,159,58,215,203,41,180,10,0,162,58,253,237,193,203,10,0,165,186,149,142,212,77,9,0,165,186,149,142,34,78,9,0,167,186,7,29,38,98,7,0,167,58,216,188,118,226,8,0,167,58,216,188,72,228,8,0,167,186,25,115,226,90,10,0,168,58,64,178,254,254,6,0,169,186,253,94,247,55,7,0,170,186,192,189,138,115,8,0,170,186,192,189,117,124,8,0,170,186,192,189,105,133,8,0,172,58,93,11,51,214,8,0,172,58,93,11,241,214,8,0,172,58,93,11,169,215,8,0,173,58,101,210,247,55,7,0,174,58,216,92,61,161,6,0,174,58,30,3,42,252,6,0,176,186,2,94,235,189,7,0,177,58,181,31,66,110,6,0,179,186,180,129,132,18,9,0,179,186,180,129,211,18,9,0,179,186,180,129,49,19,9,0,179,186,180,129,130,19,9,0,179,186,12,31,17,144,10,0,182,186,67,134,166,220,8,0,182,186,67,134,241,220,8,0,183,58,45,203,135,90,9,0,183,58,45,203,124,91,9,0,183,58,211,48,130,87,11,0,185,58,152,177,126,138,10,0,185,186,31,192,157,46,11,0,188,58,220,33,137,163,10,0,193,58,1,81,22,62,10,0,194,58,200,108,139,158,8,0,194,58,200,108,224,163,8,0,195,186,241,214,118,226,8,0,195,186,241,214,72,228,8,0,196,186,1,163,114,243,8,0,196,186,1,163,37,244,8,0,197,58,58,126,199,65,10,0,199,186,116,33,139,158,8,0,199,186,116,33,224,163,8,0,200,186,158,160,138,115,8,0,200,186,158,160,117,124,8,0,200,186,158,160,105,133,8,0,200,58,216,199,44,90,10,0,201,58,96,236,80,45,11,0,202,186,96,228,202,171,7,0,202,186,193,110,221,38,10,0,202,186,193,110,62,40,10,0,203,186,149,17,152,111,7,0,205,186,74,4,212,243,6,0,205,58,170,85,129,26,8,0,205,58,166,154,218,113,9,0,205,58,166,154,120,114,9,0,207,58,168,24,90,200,5,0,207,58,162,202,247,55,7,0,207,58,23,54,171,63,7,0,207,186,147,49,31,119,10,0,211,186,151,219,117,79,7,0,213,58,170,53,255,150,6,0,213,186,166,140,247,111,8,0,213,58,253,71,249,154,8,0,213,58,253,71,148,155,8,0,213,58,253,71,52,156,8,0,214,186,171,126,117,37,7,0,214,186,164,77,117,79,7,0,215,58,114,168,199,194,5,0,215,58,114,168,22,35,7,0,217,186,136,13,224,181,9,0,217,186,136,13,2,182,9,0,217,186,136,13,32,182,9,0,219,58,121,55,153,3,6,0,219,58,121,55,237,231,6,0,219,58,121,55,35,175,10,0,220,186,86,186,237,73,7,0,220,186,170,93,140,206,7,0,220,186,170,93,230,0,8,0,222,58,205,121,117,37,7,0,222,58,239,186,237,73,7,0,225,186,73,176,212,243,6,0,225,58,236,61,219,210,7,0,226,186,48,167,40,213,6,0,226,186,140,61,254,254,6,0,226,186,140,61,162,50,7,0,227,58,231,108,219,1,7,0,227,58,59,182,139,158,8,0,227,58,59,182,224,163,8,0,229,186,189,1,152,111,7,0,229,186,54,60,155,78,10,0,229,186,54,60,115,89,10,0,230,58,223,89,29,5,7,0,237,58,13,180,100,228,6,0,237,186,123,169,250,64,8,0,238,186,44,55,103,46,7,0,241,186,237,44,212,243,6,0,242,186,100,121,236,180,6,0,243,58,82,121,206,64,6,0,243,58,82,121,227,64,6,0,244,58,173,63,114,243,8,0,244,58,173,63,37,244,8,0,246,186,71,13,71,236,6,0,247,58,216,149,71,236,6,0,249,58,238,103,23,199,6,0,252,186,202,36,111,63,6,0,252,186,70,70,139,158,8,0,252,186,70,70,224,163,8,0,253,186,250,41,109,172,9,0,253,186,250,41,178,173,9,0,253,186,250,41,250,174,9,0,255,58,142,141,219,210,7,0,0,187,144,211,197,253,6,0,2,59,201,224,69,64,10,0,4,59,158,44,126,195,9,0,4,59,158,44,142,195,9,0,7,59,82,238,179,17,7,0,10,59,108,53,76,183,6,0,11,59,232,67,123,236,9,0,12,59,40,14,29,77,8,0,12,59,67,82,197,89,11,0,13,59,160,1,124,222,6,0,13,187,214,107,112,27,7,0,14,59,173,226,236,213,6,0,16,187,121,56,38,51,6,0,17,59,165,252,38,98,7,0,17,187,185,165,182,114,8,0,18,59,174,120,163,152,7,0,19,59,79,211,80,32,7,0,19,187,196,208,42,132,10,0,28,187,25,116,113,47,7,0,28,187,252,107,167,55,8,0,31,59,218,42,180,28,7,0,33,187,193,11,143,8,6,0,33,59,236,93,71,236,6,0,33,187,83,230,125,84,8,0,34,187,193,51,124,45,8,0,34,187,193,51,1,46,8,0,34,187,193,51,123,46,8,0,35,187,240,134,123,236,9,0,36,187,105,91,138,115,8,0,36,187,105,91,117,124,8,0,36,187,105,91,105,133,8,0,36,59,128,212,62,230,10,0,40,187,115,146,18,222,5,0,42,187,122,77,137,57,6,0,43,187,20,140,109,172,9,0,43,187,20,140,178,173,9,0,43,187,20,140,250,174,9,0,44,59,105,139,103,162,10,0,49,187,238,46,117,212,6,0,49,187,238,46,20,15,7,0,54,59,107,89,87,238,7,0,56,187,171,126,142,2,6,0,63,59,22,125,113,47,7,0,63,59,22,125,167,107,7,0,64,187,75,114,212,243,6,0,65,59,223,41,244,88,6,0,65,59,223,41,80,250,7,0,67,59,85,139,221,38,10,0,67,59,85,139,62,40,10,0,70,187,218,11,34,32,11,0,72,187,218,159,68,202,6,0,80,187,126,217,21,242,10,0,82,59,255,174,76,35,11,0,83,187,196,70,170,126,6,0,91,187,226,99,182,114,8,0,92,59,146,67,123,236,9,0,95,187,166,212,38,98,7,0,95,59,215,203,161,46,10,0,95,59,215,203,238,46,10,0,96,59,100,207,51,214,8,0,96,59,100,207,241,214,8,0,96,59,100,207,169,215,8,0,102,59,191,126,71,236,6,0,103,187,29,72,151,83,6,0,105,187,101,14,227,108,7,0,105,187,101,14,161,104,9,0,105,187,101,14,185,104,9,0,105,187,101,14,200,104,9,0,106,187,209,159,129,210,5,0,107,59,39,197,110,218,6,0,107,59,93,191,69,136,7,0,108,187,70,178,199,145,7,0,110,187,25,115,138,115,8,0,110,187,25,115,117,124,8,0,110,187,25,115,105,133,8,0,112,187,76,202,152,111,7,0,112,187,76,202,84,53,8,0,113,59,145,243,83,19,8,0,113,59,145,243,197,19,8,0,113,187,77,41,135,73,11,0,116,187,122,111,52,107,9,0,116,187,122,111,80,107,9,0,116,187,70,108,129,108,10,0,120,187,99,253,123,236,9,0,121,187,60,251,79,134,6,0,124,187,192,148,66,121,6,0,125,59,252,203,227,108,7,0,125,59,252,203,205,26,10,0,125,59,252,203,229,26,10,0,125,59,252,203,255,26,10,0,127,187,170,210,167,8,7,0,129,187,169,208,71,236,6,0,129,59,26,41,123,236,9,0,130,187,254,166,232,251,9,0,130,187,254,166,176,252,9,0,130,187,59,167,26,16,10,0,130,187,59,167,46,16,10,0,132,187,26,182,58,125,10,0,132,59,137,27,185,199,10,0,133,59,67,122,236,51,7,0,136,59,67,200,41,209,6,0,136,187,180,213,38,98,7,0,136,187,180,213,210,110,7,0,137,187,208,149,194,73,11,0,137,187,139,5,198,74,11,0,137,187,139,5,1,75,11,0,138,59,182,5,253,208,8,0,138,59,182,5,22,211,8,0,140,59,209,1,27,28,8,0,141,187,110,191,63,165,6,0,141,59,102,99,117,37,7,0,146,187,146,111,148,35,6,0,146,187,146,111,191,92,7,0,153,187,227,42,203,186,10,0,154,59,239,20,29,5,7,0,156,59,222,189,138,115,8,0,156,59,222,189,117,124,8,0,156,59,222,189,105,133,8,0,158,187,22,155,75,1,9,0,158,187,22,155,154,2,9,0,158,187,22,155,235,3,9,0,158,187,22,155,65,5,9,0,160,187,55,32,123,236,9,0,162,187,107,108,164,146,10,0,163,187,176,148,171,236,5,0,163,59,225,86,89,206,6,0,163,187,139,54,60,100,8,0,165,187,152,137,87,34,11,0,167,187,38,139,100,71,7,0,167,59,191,63,29,150,7,0,170,59,21,183,215,165,6,0,170,59,21,183,43,84,9,0,171,187,35,182,88,225,5,0,171,187,149,66,40,213,6,0,173,59,250,136,108,106,8,0,174,59,92,36,83,205,6,0,178,59,151,90,40,217,8,0,178,59,151,90,209,217,8,0,185,59,132,30,181,63,6,0,186,59,246,114,40,217,8,0,186,59,246,114,209,217,8,0,187,59,157,38,33,65,7,0,188,59,217,195,99,66,8,0,188,59,217,195,8,69,8,0,188,59,157,38,78,66,11,0,189,59,231,200,35,142,10,0,191,59,209,40,38,98,7,0,194,59,192,149,253,231,10,0,195,59,177,153,99,66,8,0,195,59,177,153,218,67,8,0,195,59,177,153,69,68,8,0,195,59,177,153,8,69,8,0,195,59,177,153,155,69,8,0,195,59,177,153,232,69,8,0,198,59,130,94,223,30,7,0,199,187,186,15,15,79,10,0,200,187,200,58,112,5,6,0,206,59,205,105,158,89,10,0,207,59,170,147,138,115,8,0,207,59,170,147,117,124,8,0,207,59,170,147,105,133,8,0,208,187,26,220,71,236,6,0,209,59,150,86,104,185,8,0,209,187,245,205,22,62,10,0,210,187,120,143,206,39,11,0,210,59,51,126,44,94,11,0,211,59,97,153,99,42,7,0,218,187,133,128,139,158,8,0,218,187,133,128,224,163,8,0,219,187,24,161,186,242,5,0,224,187,255,240,140,142,8,0,224,187,255,240,235,142,8,0,224,187,255,240,83,143,8,0,226,59,58,106,214,196,10,0,228,187,78,137,73,29,8,0,229,187,99,19,136,58,7,0,229,59,51,142,220,29,11,0,232,187,116,139,66,230,6,0,236,59,248,18,118,226,8,0,236,59,248,18,72,228,8,0,238,59,30,105,118,214,6,0,238,187,119,23,254,68,7,0,243,59,91,201,205,72,10,0,248,187,100,156,136,58,7,0,248,59,242,250,97,88,8,0,251,187,255,65,153,11,7,0,251,187,255,65,135,13,7,0,252,59,125,160,209,41,7,0,254,187,166,222,221,38,10,0,254,187,166,222,62,40,10,0,0,188,230,243,117,79,7,0,0,60,109,225,152,111,7,0,0,60,109,225,173,169,8,0,0,60,4,193,106,59,9,0,0,60,4,193,181,59,9,0,4,60,231,54,174,217,10,0,5,188,52,99,51,241,8,0,5,188,52,99,198,241,8,0,7,188,245,230,125,44,7,0,7,188,51,29,59,143,10,0,8,60,66,25,71,236,6,0,9,60,129,143,34,10,10,0,10,60,198,210,20,15,7,0,10,60,198,210,179,17,7,0,11,188,213,45,28,224,9,0,11,188,213,45,65,224,9,0,11,188,213,45,93,224,9,0,16,188,86,189,118,0,7,0,17,60,196,60,215,222,5,0,19,188,145,23,29,204,8,0,19,188,145,23,6,205,8,0,22,60,191,225,48,102,6,0,25,188,163,89,136,58,7,0,26,60,223,20,249,154,8,0,26,60,223,20,148,155,8,0,26,60,223,20,52,156,8,0,28,60,58,166,85,124,6,0,30,188,17,127,113,232,6,0,30,60,0,160,228,109,9,0,30,60,0,160,248,110,9,0,31,60,121,231,72,71,7,0,32,60,204,168,57,171,8,0,32,60,204,168,133,172,8,0,32,60,204,168,211,173,8,0,33,188,171,196,95,56,6,0,33,188,31,159,88,129,7,0,36,60,192,161,236,51,7,0,37,60,21,246,156,31,7,0,39,60,71,236,123,236,9,0,40,188,67,184,151,21,7,0,42,188,255,162,254,254,6,0,42,188,255,162,23,83,10,0,43,188,83,195,197,43,7,0,43,188,83,195,30,44,7,0,46,60,92,113,90,97,6,0,47,188,83,195,212,243,6,0,48,60,89,240,44,90,10,0,49,188,60,230,146,212,5,0,51,188,68,171,232,191,8,0,51,188,68,171,162,193,8,0,54,188,33,202,29,73,7,0,55,60,172,136,163,201,6,0,57,188,188,107,179,17,7,0,57,188,188,107,5,248,8,0,57,188,188,107,42,248,8,0,58,188,56,147,229,147,7,0,58,60,167,78,246,205,8,0,58,60,167,78,155,206,8,0,58,60,11,65,232,55,11,0,61,188,200,103,168,154,6,0,63,188,190,190,3,84,6,0,64,188,144,231,0,190,8,0,64,188,144,231,168,190,8,0,65,188,209,215,150,186,10,0,66,188,1,243,138,115,8,0,66,188,1,243,117,124,8,0,66,188,1,243,105,133,8,0,69,60,8,207,129,132,10,0,73,188,204,18,85,211,5,0,73,188,158,61,112,5,10,0,73,188,158,61,28,6,10,0,74,60,14,187,80,47,7,0,75,60,222,19,209,205,6,0,78,60,80,127,155,190,5,0,78,60,80,127,102,14,6,0,79,60,80,18,164,102,6,0,79,188,212,133,139,147,10,0,81,188,93,10,122,139,7,0,87,188,154,161,71,236,6,0,87,60,62,0,74,149,9,0,87,60,62,0,120,149,9,0,91,60,111,255,139,158,8,0,91,60,111,255,224,163,8,0,91,188,239,247,177,81,11,0,91,188,239,247,199,81,11,0,93,188,186,148,184,159,6,0,94,188,14,229,174,42,9,0,94,188,14,229,206,42,9,0,95,60,162,238,121,141,10,0,96,188,26,154,110,12,11,0,97,188,242,163,159,103,6,0,97,60,221,230,107,210,6,0,98,60,166,212,197,230,8,0,98,60,166,212,235,230,8,0,98,188,179,79,159,92,9,0,98,188,179,79,5,93,9,0,99,188,52,51,188,49,11,0,105,188,210,226,96,155,10,0,106,188,245,3,136,58,7,0,110,60,159,122,95,96,6,0,111,60,102,187,232,191,8,0,111,60,102,187,162,193,8,0,114,188,187,148,196,13,6,0,117,60,149,60,46,90,6,0,119,60,134,127,104,28,6,0,119,60,134,127,15,85,6,0,119,188,239,116,130,227,6,0,122,188,0,254,179,222,8,0,122,188,0,254,152,223,8,0,128,188,97,109,212,243,6,0,136,60,221,79,179,17,7,0,136,60,122,217,138,115,8,0,136,60,122,217,117,124,8,0,136,60,122,217,105,133,8,0,138,188,14,123,38,98,7,0,138,60,125,229,253,208,8,0,138,60,125,229,22,211,8,0,139,188,73,51,212,243,6,0,139,60,162,54,38,98,7,0,139,188,239,20,221,38,10,0,139,188,239,20,62,40,10,0,142,60,159,3,20,15,7,0,142,60,159,3,179,17,7,0,146,60,105,202,90,53,7,0,147,188,109,188,51,71,10,0,148,188,237,174,160,222,5,0,152,60,54,132,212,243,6,0,152,60,183,122,228,57,10,0,154,60,28,38,197,43,7,0,154,60,28,38,30,44,7,0,154,60,234,45,183,213,8,0,154,60,234,45,237,213,8,0,155,188,90,51,118,226,8,0,155,188,90,51,72,228,8,0,159,188,76,132,117,79,7,0,159,188,231,35,109,172,9,0,159,188,231,35,178,173,9,0,159,188,231,35,250,174,9,0,160,60,157,119,114,234,6,0,166,188,23,199,32,149,10,0,166,188,23,199,70,149,10,0,170,60,174,16,234,164,10,0,171,60,103,216,152,111,7,0,172,188,233,40,31,62,6,0,173,60,57,13,66,121,6,0,173,188,85,158,237,73,7,0,175,188,230,91,56,48,11,0,176,188,91,158,117,37,7,0,178,188,9,191,117,79,7,0,179,60,88,171,243,69,7,0,181,188,195,129,219,1,7,0,182,188,136,121,118,79,11,0,183,188,216,137,69,238,8,0,183,188,216,137,138,238,8,0,183,188,216,137,214,238,8,0,184,188,109,237,58,0,10,0,187,60,89,186,99,66,8,0,187,60,97,139,166,250,8,0,187,60,97,139,188,250,8,0,187,60,97,139,205,250,8,0,189,188,114,117,112,5,10,0,189,188,114,117,28,6,10,0,189,60,47,111,195,141,10,0,194,188,112,147,125,44,7,0,198,188,20,99,128,60,6,0,198,188,126,11,224,146,8,0,198,188,126,11,132,150,8,0,199,60,158,85,68,116,10,0,202,188,219,228,155,110,10,0,203,60,147,33,180,144,8,0,203,60,147,33,67,145,8,0,204,188,241,42,74,149,9,0,204,188,241,42,157,149,9,0,205,60,133,238,140,66,7,0,205,60,133,238,234,66,7,0,205,188,121,82,53,121,10,0,205,188,121,82,83,121,10,0,205,60,37,191,18,40,11,0,206,60,60,157,160,70,10,0,208,188,106,88,200,207,6,0,208,188,208,122,136,58,7,0,208,60,66,186,237,73,7,0,211,188,17,77,182,234,6,0,214,188,134,207,203,56,11,0,215,188,13,59,121,217,6,0,215,60,251,180,212,243,6,0,215,188,26,93,104,244,9,0,215,188,26,93,251,244,9,0,215,188,26,93,146,245,9,0,216,60,66,252,54,233,6,0,216,60,212,26,224,146,8,0,216,60,212,26,132,150,8,0,216,60,184,139,232,191,8,0,216,60,184,139,162,193,8,0,217,60,175,75,98,1,8,0,221,188,13,127,93,220,5,0,221,60,127,86,79,41,6,0,223,188,3,42,76,120,6,0,224,188,144,184,245,28,10,0,224,188,144,184,145,31,10,0,225,60,113,60,243,134,7,0,226,188,120,248,183,20,10,0,226,188,120,248,230,20,10,0,227,60,174,19,80,186,5,0,230,60,234,235,25,96,10,0,231,188,24,20,69,238,8,0,231,188,24,20,138,238,8,0,231,188,24,20,214,238,8,0,236,60,135,127,196,31,6,0,236,60,55,23,253,208,8,0,236,60,55,23,22,211,8,0,236,60,162,98,123,236,9,0,237,60,251,144,247,55,7,0,239,188,19,186,225,120,6,0,239,188,168,67,147,88,11,0,241,188,90,204,182,234,6,0,245,188,123,191,180,28,7,0,245,60,75,144,84,21,8,0,245,188,238,68,114,243,8,0,245,188,238,68,37,244,8,0,250,188,13,134,28,68,9,0,250,188,13,134,215,68,9,0,251,188,181,38,212,243,6,0,254,188,96,90,23,152,6,0,254,188,6,14,30,63,11,0,2,189,229,9,177,30,6,0,3,189,19,246,104,244,9,0,3,189,19,246,251,244,9,0,3,189,19,246,146,245,9,0,4,189,187,156,167,71,7,0,7,189,100,126,154,221,6,0,12,61,134,77,30,171,9,0,13,61,255,236,38,98,7,0,18,61,222,54,237,73,7,0,20,61,52,181,71,203,5,0,20,189,153,241,136,58,7,0,22,189,192,230,128,194,5,0,25,189,75,23,38,253,8,0,25,189,75,23,173,253,8,0,27,189,136,153,212,243,6,0,28,61,88,65,248,92,6,0,30,189,51,191,136,58,7,0,37,61,102,249,154,99,8,0,40,189,147,199,194,211,6,0,40,189,204,54,224,146,8,0,40,189,204,54,132,150,8,0,41,189,161,25,80,32,7,0,42,189,32,203,164,85,8,0,42,189,32,203,223,85,8,0,43,61,196,77,160,234,8,0,43,61,196,77,175,235,8,0,44,189,43,68,126,94,7,0,44,61,193,183,27,119,9,0,44,61,193,183,102,119,9,0,46,189,63,2,191,71,8,0,48,61,130,238,155,67,7,0,49,61,158,41,7,220,6,0,53,61,150,35,237,73,7,0,55,61,0,183,71,236,6,0,57,61,204,195,229,85,6,0,58,61,83,4,136,58,7,0,59,189,33,124,171,49,7,0,59,189,44,236,152,111,7,0,59,189,44,236,206,62,8,0,59,189,44,236,99,63,8,0,59,189,44,236,4,64,8,0,59,189,44,236,73,218,9,0,62,61,85,185,189,74,6,0,62,189,249,66,86,15,9,0,62,189,249,66,116,15,9,0,63,61,171,36,169,141,6,0,63,61,199,220,116,185,6,0,65,61,154,244,133,220,6,0,66,189,40,13,117,37,7,0,66,61,195,193,99,66,8,0,66,61,195,193,218,67,8,0,66,61,195,193,69,68,8,0,67,61,101,246,248,178,6,0,68,61,161,182,7,220,6,0,71,189,254,68,138,115,8,0,71,189,254,68,117,124,8,0,71,189,254,68,105,133,8,0,73,189,43,247,237,73,7,0,78,61,152,41,237,106,7,0,78,61,152,41,146,135,7,0,79,61,36,225,63,165,6,0,79,61,180,215,152,111,7,0,81,61,161,81,137,235,5,0,81,189,13,40,152,111,7,0,81,189,13,40,85,119,7,0,81,61,163,191,194,35,10,0,81,61,163,191,14,36,10,0,81,189,134,120,145,237,10,0,83,61,131,72,158,218,5,0,83,189,171,209,173,1,6,0,86,61,76,123,14,48,11,0,91,61,24,106,29,5,7,0,92,189,16,249,71,236,6,0,93,189,68,123,90,53,7,0,93,189,163,112,57,218,10,0,95,189,30,95,38,98,7,0,96,61,168,231,71,236,6,0,102,189,188,31,86,238,5,0,103,61,70,36,235,189,7,0,109,61,157,38,199,219,5,0,109,189,171,161,139,158,8,0,109,189,171,161,224,163,8,0,110,189,172,21,167,107,7,0,110,189,172,21,62,124,7,0,111,61,76,99,113,232,6,0,114,189,178,80,78,203,8,0,117,61,48,86,44,90,10,0,118,61,27,237,13,32,9,0,118,61,27,237,195,32,9,0,121,189,204,58,201,230,6,0,121,189,142,232,2,23,7,0,123,61,191,225,75,108,6,0,123,61,139,200,154,221,6,0,124,189,173,149,242,188,9,0,124,189,173,149,19,189,9,0,124,61,105,232,203,234,10,0,125,61,176,0,117,79,7,0,126,61,143,220,139,158,8,0,126,61,143,220,224,163,8,0,126,61,156,38,213,231,9,0,126,61,156,38,249,231,9,0,127,189,96,158,220,150,7,0,127,189,96,158,212,218,9,0,127,189,96,158,9,219,9,0,127,189,96,158,69,219,9,0,135,189,193,129,219,1,7,0,142,189,144,55,71,236,6,0,143,61,160,70,83,115,9,0,143,61,160,70,115,115,9,0,144,61,211,86,8,20,6,0,144,189,66,217,178,249,9,0,144,189,66,217,210,249,9,0,144,189,66,217,237,249,9,0,145,61,251,245,152,111,7,0,145,61,125,141,54,186,10,0,146,61,233,110,212,243,6,0,147,61,216,54,154,157,6,0,150,61,87,24,79,115,8,0,150,61,87,24,99,115,8,0,153,61,142,48,169,199,9,0,154,189,205,175,155,67,7,0,155,61,129,229,137,5,8,0,158,61,250,104,104,28,6,0,158,61,250,104,15,85,6,0,159,61,162,7,38,98,7,0,160,61,143,149,227,108,7,0,160,61,143,149,44,21,8,0,162,61,64,36,117,79,7,0,165,61,160,90,152,111,7,0,165,189,73,33,224,146,8,0,165,189,73,33,132,150,8,0,165,61,160,90,173,169,8,0,168,189,76,241,138,115,8,0,168,189,76,241,117,124,8,0,168,189,76,241,105,133,8,0,169,189,54,125,107,210,6,0,170,189,34,95,57,171,8,0,170,189,34,95,133,172,8,0,170,189,34,95,211,173,8,0,171,189,141,86,232,25,7,0,172,189,58,98,102,90,6,0,172,189,115,122,172,74,11,0,173,61,112,167,227,108,7,0,173,61,112,167,138,115,8,0,173,61,112,167,117,124,8,0,173,61,112,167,105,133,8,0,173,189,127,52,120,184,10,0,174,189,50,213,118,214,6,0,175,61,155,34,229,16,8,0,181,189,44,44,103,21,9,0,181,189,44,44,138,21,9,0,181,189,16,6,181,145,10,0,185,189,200,156,151,21,7,0,186,189,180,226,196,110,6,0,186,189,43,146,238,187,6,0,186,61,86,173,51,159,10,0,187,61,99,243,22,173,10,0,191,189,66,189,50,51,7,0,193,189,230,193,71,236,6,0,193,189,105,157,140,142,8,0,193,189,105,157,235,142,8,0,193,189,105,157,83,143,8,0,194,189,85,71,237,73,7,0,194,61,214,86,132,18,9,0,194,61,214,86,211,18,9,0,194,61,214,86,49,19,9,0,194,61,214,86,130,19,9,0,195,61,245,113,215,16,10,0,195,61,245,113,135,17,10,0,196,189,232,230,21,36,7,0,196,61,179,4,136,58,7,0,197,61,237,167,142,170,6,0,197,189,157,108,209,205,6,0,197,61,237,167,152,111,7,0,197,61,237,167,58,125,7,0,198,61,164,106,27,237,5,0,200,189,66,37,218,55,9,0,200,189,66,37,1,56,9,0,200,189,66,37,44,56,9,0,201,189,88,131,212,221,10,0,204,189,193,151,46,43,7,0,204,189,193,151,33,65,7,0,204,189,193,151,38,98,7,0,205,61,108,137,92,86,10,0,207,189,244,13,72,192,5,0,207,61,6,91,38,98,7,0,213,61,137,84,226,64,10,0,214,61,87,31,121,52,10,0,215,61,250,249,117,79,7,0,215,61,9,109,72,204,9,0,216,61,238,124,136,58,7,0,219,61,66,178,84,21,8,0,219,189,36,170,252,156,9,0,219,189,36,170,38,157,9,0,223,189,223,90,175,219,6,0,223,61,200,56,71,236,6,0,223,61,183,126,117,79,7,0,225,189,90,13,78,47,11,0,226,189,170,107,218,113,9,0,226,189,170,107,120,114,9,0,227,189,108,23,202,204,7,0,227,189,108,23,149,236,10,0,231,61,164,142,123,14,6,0,232,61,112,111,13,76,11,0,232,61,112,111,47,76,11,0,233,189,204,134,54,233,6,0,235,61,234,243,138,115,8,0,235,61,234,243,117,124,8,0,235,61,234,243,105,133,8,0,243,61,47,215,39,31,6,0,243,189,60,65,3,224,6,0,243,61,254,31,80,32,7,0,243,189,168,196,139,158,8,0,243,189,168,196,224,163,8,0,243,61,76,31,215,16,10,0,243,61,76,31,135,17,10,0,246,61,1,237,99,42,7,0,247,61,199,120,205,151,9,0,247,61,199,120,199,152,9,0,247,61,199,120,220,153,9,0,247,61,226,183,105,127,10,0,252,189,58,111,71,236,6,0,0,62,175,106,169,250,7,0,3,190,203,165,2,23,7,0,4,190,245,231,108,48,9,0,4,190,245,231,134,48,9,0,4,190,245,231,160,48,9,0,5,190,213,149,221,38,10,0,5,190,213,149,62,40,10,0,5,190,19,208,11,66,10,0,5,62,86,138,53,98,10,0,6,62,103,27,139,92,7,0,11,190,105,137,53,94,8,0,18,62,200,166,230,130,7,0,18,62,200,166,59,66,8,0,18,62,102,27,177,158,10,0,18,62,102,27,79,170,10,0,19,190,71,105,1,190,5,0,19,190,108,37,74,212,6,0,20,62,148,190,212,243,6,0,20,62,254,178,95,0,10,0,20,62,254,178,200,0,10,0,21,62,66,70,215,16,10,0,21,62,66,70,135,17,10,0,23,62,46,21,125,4,7,0,23,62,184,148,84,21,8,0,23,62,184,148,84,21,8,0,25,190,193,201,245,161,6,0,25,190,193,201,171,206,6,0,26,62,102,68,23,57,11,0,28,62,234,228,224,146,8,0,28,62,234,228,132,150,8,0,30,62,157,38,107,210,6,0,32,62,33,116,38,98,7,0,37,190,251,105,118,169,6,0,37,62,244,63,84,21,8,0,39,190,201,26,153,11,7,0,39,190,201,26,135,13,7,0,39,190,144,248,80,158,7,0,39,62,96,213,138,115,8,0,39,62,96,213,117,124,8,0,39,62,96,213,105,133,8,0,39,62,138,99,186,41,9,0,39,62,138,99,224,41,9,0,39,62,138,99,254,41,9,0,39,62,112,17,249,174,10,0,40,190,125,36,138,115,8,0,40,190,125,36,117,124,8,0,40,190,125,36,105,133,8,0,41,190,44,103,212,243,6,0,42,190,99,172,227,108,7,0,42,190,99,172,10,28,10,0,42,190,99,172,74,28,10,0,42,190,99,172,134,28,10,0,43,190,130,41,224,146,8,0,43,190,130,41,132,150,8,0,43,62,211,34,191,166,9,0,43,62,211,34,252,166,9,0,43,62,211,34,39,167,9,0,48,62,255,4,179,181,7,0,48,190,234,167,109,172,9,0,48,190,234,167,178,173,9,0,48,190,234,167,250,174,9,0,48,190,28,50,164,80,11,0,49,62,39,181,46,43,7,0,49,62,39,181,152,111,7,0,49,62,39,181,62,124,7,0,50,190,105,49,246,205,8,0,50,190,105,49,155,206,8,0,51,190,91,184,127,208,6,0,51,190,249,24,30,231,6,0,52,190,172,223,112,22,6,0,52,190,92,206,125,126,6,0,52,190,172,223,230,129,6,0,52,62,33,196,212,243,6,0,53,190,20,13,48,36,11,0,56,62,100,92,123,236,9,0,59,190,205,234,38,98,7,0,59,190,205,234,32,113,9,0,60,62,252,229,151,21,7,0,60,190,22,249,227,108,7,0,61,190,203,221,180,144,8,0,61,190,203,221,67,145,8,0,63,62,29,251,135,90,9,0,63,62,29,251,124,91,9,0,65,190,241,147,38,98,7,0,66,62,162,245,190,230,10,0,68,62,170,151,171,49,7,0,70,190,192,12,160,234,8,0,70,190,192,12,175,235,8,0,70,190,244,190,213,41,10,0,70,190,244,190,87,42,10,0,74,190,225,94,2,199,9,0,74,190,225,94,169,199,9,0,76,190,19,229,174,229,7,0,76,190,135,20,145,167,10,0,77,190,159,54,180,144,8,0,77,190,159,54,67,145,8,0,79,62,72,196,66,225,10,0,82,62,74,110,139,158,8,0,82,62,74,110,224,163,8,0,83,62,51,32,186,135,7,0,84,62,219,176,153,11,7,0,84,62,219,176,135,13,7,0,84,62,219,176,42,137,7,0,84,62,78,94,195,39,8,0,85,190,80,36,152,111,7,0,85,190,80,36,103,118,7,0,85,190,80,36,62,124,7,0,85,190,120,161,230,130,7,0,87,62,104,77,99,66,8,0,91,62,76,16,90,53,7,0,91,62,234,225,118,226,8,0,91,62,234,225,72,228,8,0,92,62,176,51,239,103,6,0,93,62,58,127,80,32,7,0,93,62,247,24,90,175,8,0,93,62,247,24,74,176,8,0,94,62,186,120,185,120,6,0,94,62,145,183,218,113,9,0,94,62,145,183,120,114,9,0,94,190,85,1,66,91,11,0,98,190,17,179,90,199,7,0,98,190,17,179,148,199,7,0,98,190,17,179,216,199,7,0,98,190,17,179,29,200,7,0,101,190,199,148,91,191,6,0,101,62,222,90,38,98,7,0,102,62,63,101,152,111,7,0,102,62,155,89,17,17,8,0,102,62,166,186,31,23,8,0,102,62,63,101,206,62,8,0,102,62,63,101,99,63,8,0,102,62,63,101,4,64,8,0,102,62,63,101,73,218,9,0,103,62,57,244,234,72,7,0,107,62,3,126,108,158,6,0,107,190,39,100,221,38,10,0,107,190,39,100,62,40,10,0,108,190,175,105,138,115,8,0,108,190,175,105,117,124,8,0,108,190,175,105,105,133,8,0,112,190,233,40,38,98,7,0,114,62,93,46,182,203,5,0,114,62,252,109,213,137,6,0,114,62,49,109,152,111,7,0,114,62,49,109,201,126,7,0,114,190,58,79,38,103,9,0,114,190,58,79,89,103,9,0,117,62,125,135,205,120,6,0,117,62,163,38,54,233,6,0,117,62,136,204,21,36,7,0,117,190,16,249,194,35,10,0,117,190,16,249,14,36,10,0,117,62,174,217,61,81,10,0,118,190,153,74,154,4,7,0,119,190,58,213,115,196,6,0,119,190,155,140,117,79,7,0,119,62,124,217,249,154,8,0,119,62,124,217,148,155,8,0,119,62,124,217,52,156,8,0,120,62,235,138,123,236,9,0,121,62,244,210,254,243,5,0,121,62,244,210,153,89,7,0,122,190,161,237,228,91,6,0,122,190,161,237,66,230,6,0,122,62,180,160,38,253,8,0,122,62,180,160,173,253,8,0,123,62,44,86,68,202,6,0,125,190,95,102,139,158,8,0,125,190,95,102,224,163,8,0,127,190,71,40,99,94,6,0,128,62,74,36,38,98,7,0,131,62,171,141,23,179,8,0,131,62,171,141,119,179,8,0,131,62,191,198,123,236,9,0,131,62,191,198,123,236,9,0,131,62,55,12,188,49,11,0,132,62,157,38,224,251,6,0,134,190,119,40,44,164,10,0,137,190,49,104,66,21,10,0,137,190,49,104,99,21,10,0,137,190,49,104,155,21,10,0,140,190,243,128,183,211,5,0,141,190,244,70,227,108,7,0,141,190,244,70,152,111,7,0,141,62,7,29,20,73,8,0,145,190,72,105,123,236,9,0,147,190,14,76,57,171,8,0,147,190,14,76,133,172,8,0,147,190,14,76,211,173,8,0,148,190,130,50,89,132,9,0,148,190,130,50,124,132,9,0,148,190,130,50,171,132,9,0,149,62,115,224,212,243,6,0,151,62,230,16,96,59,10,0,152,190,233,87,204,36,6,0,152,62,29,88,129,217,7,0,153,62,188,187,180,28,7,0,154,190,21,79,162,50,7,0,155,190,58,98,46,16,10,0,158,190,173,237,179,17,7,0,158,190,173,237,232,111,10,0,160,62,252,66,19,4,6,0,162,62,207,47,0,115,6,0,162,190,213,57,210,110,7,0,164,190,111,239,57,232,5,0,168,62,55,93,60,205,10,0,169,190,59,68,1,110,10,0,170,190,154,140,88,96,9,0,170,190,154,140,119,96,9,0,170,190,154,140,159,96,9,0,172,62,95,191,219,210,10,0,172,190,165,16,173,214,10,0,173,62,240,211,65,158,6,0,174,190,91,113,237,73,7,0,176,62,106,102,66,230,6,0,179,190,14,55,71,236,6,0,179,190,81,61,20,15,7,0,179,190,81,61,179,17,7,0,179,62,1,210,152,111,7,0,179,62,1,210,173,169,8,0,183,190,128,1,117,79,7,0,184,62,138,61,71,236,6,0,184,190,142,7,78,123,7,0,187,62,249,97,112,27,7,0,192,62,118,73,68,202,6,0,192,62,88,216,213,228,6,0,192,190,185,36,222,195,10,0,195,190,131,53,26,15,6,0,195,190,113,19,157,26,6,0,195,190,131,53,119,225,6,0,196,190,53,31,197,253,6,0,197,62,99,22,160,234,8,0,197,62,99,22,175,235,8,0,198,190,50,87,0,28,11,0,199,62,68,162,149,204,6,0,201,62,210,24,221,38,10,0,201,62,210,24,62,40,10,0,202,190,186,92,87,198,10,0,208,62,133,13,117,79,7,0,211,62,81,58,51,241,8,0,211,62,81,58,198,241,8,0,212,190,178,230,215,16,10,0,212,190,178,230,135,17,10,0,213,190,37,63,213,178,6,0,213,190,37,63,241,95,8,0,213,62,148,190,104,161,10,0,214,62,145,154,101,226,6,0,215,190,181,209,213,22,6,0,215,190,181,209,222,74,6,0,215,190,150,207,48,138,7,0,219,62,163,42,191,201,5,0,219,190,249,118,147,149,10,0,219,190,251,214,92,150,10,0,221,62,152,86,215,255,6,0,222,190,239,47,152,174,10,0,223,62,71,24,76,252,6,0,224,62,246,194,71,236,6,0,226,62,55,163,117,79,7,0,227,62,191,225,154,4,7,0,231,190,240,215,174,113,6,0,231,190,211,161,114,128,10,0,232,190,190,143,117,79,7,0,232,190,190,143,232,170,7,0,233,190,53,158,123,236,9,0,235,190,226,59,118,226,8,0,235,190,226,59,72,228,8,0,239,190,73,88,90,53,7,0,240,190,103,146,155,43,8,0,240,62,217,13,138,115,8,0,240,62,217,13,117,124,8,0,240,62,217,13,105,133,8,0,240,190,176,12,179,222,8,0,240,190,176,12,152,223,8,0,241,62,197,98,226,154,9,0,241,62,197,98,114,155,9,0,242,62,242,96,136,58,7,0,245,190,157,33,99,43,6,0,245,190,211,226,224,146,8,0,245,190,211,226,132,150,8,0,247,190,65,50,123,236,9,0,251,62,30,159,191,154,6,0,251,190,168,231,113,47,7,0,251,62,214,34,57,224,7,0,254,62,60,141,127,208,6,0,3,63,139,48,155,67,7,0,3,191,40,178,30,171,9,0,4,63,235,205,64,86,9,0,4,63,235,205,109,86,9,0,5,191,54,95,212,243,6,0,5,191,54,95,254,254,6,0,6,63,157,152,221,38,10,0,6,63,157,152,62,40,10,0,8,191,69,149,196,8,6,0,11,63,91,196,72,202,8,0,11,63,91,196,175,202,8,0,12,63,122,46,71,236,6,0,17,63,175,247,117,79,7,0,17,191,164,30,227,108,7,0,17,191,164,30,124,10,9,0,23,63,235,232,103,170,8,0,23,63,235,232,188,170,8,0,27,63,69,29,15,233,8,0,27,63,69,29,139,233,8,0,34,63,62,247,3,157,8,0,34,63,62,247,180,157,8,0,35,191,38,29,212,243,6,0,35,191,23,126,152,111,7,0,35,191,23,126,84,128,7,0,35,63,41,34,253,208,8,0,35,63,41,34,22,211,8,0,37,191,26,130,103,245,8,0,37,191,26,130,151,245,8,0,38,191,111,115,35,93,10,0,39,191,174,253,19,176,10,0,42,191,205,211,141,195,8,0,42,191,205,211,112,196,8,0,42,191,205,211,75,197,8,0,43,191,100,8,117,9,8,0,47,191,149,170,77,109,6,0,47,63,133,14,68,65,11,0,47,63,133,14,113,68,11,0,48,191,222,177,14,105,9,0,48,191,222,177,38,105,9,0,48,191,222,177,53,105,9,0,49,191,23,126,227,218,6,0,49,191,23,126,101,219,6,0,49,191,84,63,177,133,7,0,49,191,84,63,38,134,7,0,49,191,188,28,199,145,7,0,52,63,115,183,221,38,10,0,52,63,115,183,62,40,10,0,53,191,6,38,84,188,6,0,53,191,6,38,82,235,6,0,55,63,39,18,12,234,6,0,56,191,189,129,225,68,6,0,56,191,189,129,153,11,7,0,56,191,189,129,135,13,7,0,56,63,16,252,151,21,7,0,57,191,195,46,3,189,5,0,59,191,102,22,210,110,7,0,60,191,123,115,117,79,7,0,60,63,39,23,152,111,7,0,60,63,39,23,206,62,8,0,60,63,39,23,99,63,8,0,60,63,39,23,4,64,8,0,60,63,39,23,73,218,9,0,65,191,145,121,167,107,7,0,65,191,145,121,68,118,7,0,66,191,175,20,188,52,9,0,67,191,3,236,199,199,10,0,71,191,234,65,68,97,10,0,72,191,211,238,33,186,10,0,75,63,127,111,123,236,9,0,75,191,236,78,60,214,10,0,78,63,222,82,200,207,6,0,78,63,221,196,71,236,6,0,79,191,84,68,136,58,7,0,79,191,153,1,160,151,7,0,79,63,19,13,21,13,11,0,80,191,39,29,130,227,6,0,81,191,131,3,177,133,7,0,81,191,131,3,38,134,7,0,82,63,154,247,227,229,6,0,82,191,38,45,212,243,6,0,83,191,82,89,109,231,6,0,83,191,67,206,167,107,7,0,83,63,134,86,138,115,8,0,83,63,134,86,117,124,8,0,83,63,134,86,105,133,8,0,83,63,251,76,104,15,10,0,83,63,251,76,169,15,10,0,84,191,200,80,236,51,7,0,87,191,69,102,153,11,7,0,87,191,69,102,135,13,7,0,87,63,132,101,20,15,7,0,87,63,132,101,138,115,8,0,87,63,132,101,117,124,8,0,87,63,132,101,105,133,8,0,87,63,131,174,118,226,8,0,87,63,131,174,72,228,8,0,91,191,140,209,246,235,5,0,92,63,212,180,237,231,6,0,94,63,209,50,152,185,5,0,95,63,54,68,17,184,8,0,96,191,88,108,245,28,10,0,96,191,88,108,145,31,10,0,97,63,162,225,138,115,8,0,97,63,162,225,117,124,8,0,97,63,162,225,105,133,8,0,99,191,29,73,117,79,7,0,101,191,237,96,183,216,6,0,102,191,19,241,83,84,10,0,102,191,19,241,189,92,10,0,105,191,246,45,138,115,8,0,105,191,246,45,117,124,8,0,105,191,246,45,105,133,8,0,111,191,181,220,179,181,7,0,111,63,72,232,53,156,9,0,114,191,224,29,28,68,9,0,114,191,224,29,215,68,9,0,117,191,247,85,193,167,9,0,118,191,89,185,141,193,6,0,118,63,32,92,138,115,8,0,118,63,32,92,117,124,8,0,118,63,32,92,105,133,8,0,120,63,131,34,20,15,7,0,120,191,179,101,53,64,10,0,120,63,46,63,83,93,11,0,128,63,204,47,46,43,7,0,129,63,163,62,106,59,9,0,129,63,163,62,181,59,9,0,130,63,222,184,122,150,10,0,131,63,232,6,120,15,6,0,137,63,64,241,239,198,10,0,137,63,64,241,127,209,10,0,138,191,150,117,27,119,9,0,138,191,150,117,102,119,9,0,139,191,3,204,48,207,6,0,141,63,230,143,212,243,6,0,142,63,153,198,117,16,11,0,144,63,41,233,133,239,10,0,145,63,192,86,157,218,10,0,147,191,244,38,118,214,6,0,147,191,170,240,183,213,8,0,147,191,170,240,237,213,8,0,148,63,172,122,106,152,6,0,148,63,107,249,224,146,8,0,148,63,107,249,132,150,8,0,152,63,11,80,102,179,6,0,152,63,125,60,247,214,6,0,153,63,151,87,38,98,7,0,155,191,175,83,159,221,7,0,155,191,175,83,200,221,7,0,155,191,175,83,253,221,7,0,155,191,175,83,44,222,7,0,158,63,65,18,52,145,10,0,164,63,8,21,212,243,6,0,169,191,220,206,111,213,6,0,170,63,95,253,20,15,7,0,170,63,13,240,180,28,7,0,170,63,117,122,90,53,7,0,173,191,66,242,212,243,6,0,174,63,79,135,237,73,7,0,178,63,226,230,69,69,7,0,181,191,151,179,154,119,6,0,181,63,11,35,71,236,6,0,182,63,186,169,118,226,8,0,182,63,186,169,72,228,8,0,185,191,95,26,254,243,5,0,185,191,95,26,153,89,7,0,186,191,164,65,29,5,7,0,188,191,23,146,156,31,7,0,189,191,146,19,38,98,7,0,190,191,133,69,178,165,10,0,196,191,119,240,212,77,9,0,196,191,119,240,34,78,9,0,196,63,180,41,215,156,10,0,198,63,218,20,164,113,8,0,199,191,227,169,94,44,6,0,200,63,164,180,75,1,9,0,200,63,164,180,154,2,9,0,200,63,164,180,235,3,9,0,200,63,164,180,65,5,9,0,207,191,74,48,74,149,9,0,207,191,74,48,157,149,9,0,214,191,8,244,54,233,6,0,219,191,155,101,221,52,11,0,225,63,232,167,215,255,6,0,225,191,238,51,109,132,7,0,228,191,210,110,139,158,8,0,228,191,210,110,224,163,8,0,230,191,242,46,33,210,6,0,230,191,158,102,58,155,10,0,231,63,236,155,240,226,6,0,231,191,213,102,212,243,6,0,231,63,137,130,162,50,7,0,236,191,146,119,204,192,6,0,237,63,220,142,30,171,9,0,237,63,9,99,89,80,10,0,237,63,9,99,169,103,10,0,238,63,242,210,91,147,7,0,239,63,161,132,232,191,8,0,239,63,161,132,162,193,8,0,240,63,241,186,133,220,6,0,241,191,130,79,227,108,7,0,246,191,75,114,212,243,6,0,247,63,73,30,253,143,6,0,248,191,33,15,179,17,7,0,248,191,33,15,188,140,10,0,249,191,204,70,57,10,7,0,251,63,151,145,182,114,8,0,252,63,39,153,255,232,5,0,253,63,104,110,179,17,7,0,253,63,104,110,75,1,9,0,253,63,104,110,154,2,9,0,253,63,104,110,235,3,9,0,253,63,104,110,65,5,9,0,254,63,59,146,236,51,7,0,255,191,117,210,71,236,6,0,0,64,168,198,200,117,10,0,2,192,57,130,139,9,11,0,4,192,225,126,159,92,9,0,4,192,225,126,5,93,9,0,6,192,214,83,20,15,7,0,6,192,214,83,179,17,7,0,10,64,99,94,205,176,9,0,10,64,99,94,248,176,9,0,10,64,99,94,34,177,9,0,14,64,58,70,204,36,6,0,14,192,28,115,90,53,7,0,18,64,69,193,10,76,9,0,18,64,69,193,29,76,9,0,20,192,57,106,112,5,10,0,20,192,57,106,28,6,10,0,21,64,105,154,50,211,6,0,21,192,40,226,180,28,7,0,22,64,166,14,71,236,6,0,22,64,133,135,152,111,7,0,22,64,133,135,62,124,7,0,23,192,239,96,136,58,7,0,24,64,66,155,138,115,8,0,24,64,66,155,117,124,8,0,24,64,66,155,105,133,8,0,25,192,54,132,24,201,6,0,29,192,127,76,48,207,6,0,29,192,34,89,42,109,10,0,30,64,42,138,243,51,6,0,30,192,86,173,71,236,6,0,30,64,199,54,237,73,7,0,30,64,42,138,93,46,9,0,30,64,42,138,122,46,9,0,36,64,96,48,176,75,6,0,38,192,66,151,194,211,6,0,38,192,223,7,180,28,7,0,43,192,115,225,236,51,7,0,43,192,62,135,84,21,8,0,43,64,153,222,123,236,9,0,47,64,46,81,46,199,5,0,47,192,196,5,123,246,8,0,47,192,196,5,175,246,8,0,48,192,19,241,224,146,8,0,48,192,19,241,132,150,8,0,51,192,197,226,136,58,7,0,51,64,19,44,123,236,9,0,52,192,105,188,219,210,7,0,56,192,78,2,227,161,9,0,56,192,78,2,18,162,9,0,62,192,235,70,253,208,8,0,62,192,235,70,22,211,8,0,63,192,234,198,162,36,7,0,66,64,223,26,73,251,5,0,66,192,30,172,172,118,10,0,67,192,0,214,118,0,7,0,70,64,52,149,123,236,9,0,72,192,179,16,13,32,9,0,72,192,179,16,195,32,9,0,74,192,95,93,142,91,6,0,74,192,95,93,32,97,6,0,74,64,160,247,20,15,7,0,74,64,160,247,179,17,7,0,74,192,95,93,229,18,8,0,74,64,213,13,123,236,9,0,75,192,129,207,80,32,7,0,77,192,11,153,154,4,7,0,77,192,11,153,29,5,7,0,83,64,85,13,219,1,7,0,83,64,85,13,99,3,7,0,83,192,77,229,224,146,8,0,83,192,77,229,132,150,8,0,84,64,249,67,112,5,10,0,84,64,249,67,28,6,10,0,85,64,87,150,114,243,8,0,85,64,87,150,37,244,8,0,89,192,81,54,10,58,9,0,89,192,81,54,59,58,9,0,89,192,81,54,106,58,9,0,90,64,225,57,20,15,7,0,90,64,225,57,33,65,7,0,90,64,225,57,38,98,7,0,90,192,220,77,228,83,9,0,91,64,189,144,165,229,5,0,91,192,142,127,125,11,6,0,97,192,27,146,200,207,6,0,97,64,139,137,212,243,6,0,101,64,158,119,38,98,7,0,102,192,222,90,152,111,7,0,102,192,207,86,178,249,8,0,102,192,207,86,210,249,8,0,102,192,207,86,234,249,8,0,103,192,72,188,22,35,7,0,103,192,195,171,62,3,8,0,104,192,84,216,250,152,7,0,105,64,125,161,138,115,8,0,105,64,125,161,117,124,8,0,105,64,125,161,105,133,8,0,107,192,119,32,204,29,6,0,107,192,191,34,209,131,7,0,111,64,109,165,21,81,10,0,112,64,185,57,117,79,7,0,113,64,42,176,0,190,8,0,113,64,42,176,168,190,8,0,116,192,75,112,3,224,6,0,117,192,158,112,118,131,10,0,117,64,125,193,36,158,10,0,118,192,20,202,38,98,7,0,118,192,168,253,84,21,8,0,119,64,143,227,59,162,6,0,119,64,143,227,171,206,6,0,120,192,119,124,138,115,8,0,120,192,119,124,117,124,8,0,120,192,119,124,105,133,8,0,126,64,51,218,153,55,6,0,126,192,97,234,38,98,7,0,126,192,214,211,13,32,9,0,126,192,214,211,195,32,9,0,131,64,129,127,17,203,10,0,134,192,226,187,57,171,8,0,134,192,226,187,133,172,8,0,134,192,226,187,211,173,8,0,136,192,105,84,71,236,6,0,136,192,133,150,152,111,7,0,136,192,133,150,84,53,8,0,140,64,216,89,167,107,7,0,142,64,243,8,86,93,6,0,146,64,200,163,223,30,7,0,148,64,251,129,118,203,5,0,149,192,27,171,152,111,7,0,149,192,27,171,155,231,7,0,149,192,34,182,115,7,10,0,149,192,34,182,190,7,10,0,149,192,34,182,10,8,10,0,149,192,27,171,65,222,10,0,150,64,77,218,158,98,11,0,151,64,206,56,155,88,8,0,152,192,60,51,66,230,6,0,152,64,134,29,244,146,10,0,154,192,184,103,71,236,6,0,157,192,50,197,27,223,6,0,157,192,221,247,132,103,10,0,158,192,136,91,12,140,7,0,158,192,220,209,231,7,8,0,160,192,74,70,41,73,11,0,165,64,71,129,125,44,7,0,166,192,8,94,226,88,10,0,166,64,108,248,144,99,10,0,167,64,203,201,180,28,7,0,169,192,116,96,75,1,9,0,169,192,116,96,154,2,9,0,169,192,116,96,235,3,9,0,169,192,116,96,65,5,9,0,170,64,139,70,24,250,5,0,171,64,245,54,236,51,7,0,177,64,53,51,199,44,11,0,179,192,161,147,199,87,11,0,188,192,34,127,18,79,8,0,188,64,123,18,123,236,9,0,189,192,19,14,114,128,10,0,190,192,63,47,75,94,11,0,191,64,224,36,84,21,8,0,192,64,206,229,152,111,7,0,192,64,206,229,31,151,7,0,196,192,58,206,84,21,8,0,197,192,97,56,90,149,6,0,206,192,223,232,254,243,5,0,206,192,223,232,153,89,7,0,206,64,227,234,224,146,8,0,206,64,227,234,132,150,8,0,208,192,157,232,148,246,10,0,209,64,177,74,78,47,11,0,212,64,187,227,204,36,6,0,212,192,181,78,213,204,6,0,214,192,121,176,2,16,6,0,221,192,148,194,234,167,7,0,221,192,148,194,18,168,7,0,228,64,153,114,117,79,7,0,235,192,204,70,138,115,8,0,235,192,204,70,117,124,8,0,235,192,204,70,105,133,8,0,236,192,19,86,141,195,8,0,236,192,19,86,112,196,8,0,236,192,19,86,75,197,8,0,236,192,23,246,191,74,10,0,237,192,28,190,29,75,6,0,240,192,89,42,237,73,7,0,241,192,238,98,254,17,6,0,241,64,140,161,165,11,9,0,241,64,140,161,58,12,9,0,242,192,50,124,200,93,10,0,243,64,23,214,176,207,10,0,243,64,134,255,111,226,10,0,248,64,174,133,22,35,7,0,250,192,176,148,18,216,5,0,251,192,62,224,237,73,7,0,251,64,129,40,138,115,8,0,251,64,129,40,117,124,8,0,251,64,129,40,105,133,8,0,252,192,51,138,71,236,6,0,253,192,23,18,71,236,6,0,254,64,157,4,105,241,10,0,2,193,38,70,139,158,8,0,2,193,38,70,224,163,8,0,2,65,59,213,228,109,9,0,2,65,59,213,248,110,9,0,4,193,207,223,215,246,5,0,6,65,236,230,226,154,9,0,6,65,236,230,114,155,9,0,8,193,36,11,172,213,6,0,8,193,44,30,255,179,8,0,8,193,44,30,110,180,8,0,8,193,36,11,226,43,9,0,8,193,36,11,66,44,9,0,8,193,36,11,167,44,9,0,8,193,36,11,5,45,9,0,8,193,36,11,108,45,9,0,8,193,43,104,224,96,11,0,9,193,204,12,212,243,6,0,9,193,15,100,179,236,10,0,11,65,77,4,48,141,7,0,11,65,77,4,106,141,7,0,11,193,1,89,87,238,7,0,11,65,26,130,15,26,9,0,11,65,26,130,51,26,9,0,11,65,26,130,77,26,9,0,13,65,37,238,103,46,7,0,14,65,74,159,50,211,6,0,14,193,186,29,237,73,7,0,18,193,129,40,118,109,10,0,19,193,119,123,181,196,5,0,19,193,13,192,80,167,9,0,19,193,13,192,37,168,9,0,21,65,18,195,250,57,8,0,23,65,54,86,80,32,7,0,23,65,129,134,237,73,7,0,24,65,240,180,71,236,6,0,25,193,201,26,153,11,7,0,25,193,201,26,135,13,7,0,25,65,123,127,10,80,10,0,28,65,87,101,20,15,7,0,28,65,87,101,179,17,7,0,28,193,185,4,136,58,7,0,29,193,3,215,67,23,6,0,29,65,79,154,71,236,6,0,32,65,214,75,38,98,7,0,33,65,197,127,81,70,6,0,34,193,205,29,48,82,6,0,35,65,115,167,30,171,9,0,36,193,114,250,237,73,7,0,36,65,102,235,138,115,8,0,36,65,102,235,117,124,8,0,36,65,102,235,105,133,8,0,39,193,224,191,136,146,7,0,39,65,130,197,219,210,7,0,39,193,187,53,253,208,8,0,39,193,187,53,22,211,8,0,40,193,121,138,103,137,6,0,40,65,28,128,130,227,6,0,41,193,121,182,23,199,6,0,43,193,210,101,173,18,6,0,45,193,12,4,81,239,8,0,45,193,12,4,40,240,8,0,48,65,141,10,120,238,10,0,49,65,146,76,212,243,6,0,50,193,12,181,51,89,11,0,51,65,15,226,85,234,5,0,53,193,123,35,228,109,9,0,53,193,123,35,248,110,9,0,53,65,178,61,125,177,9,0,53,65,178,61,224,177,9,0,53,65,178,61,64,178,9,0,54,65,181,148,235,81,6,0,54,65,181,148,113,95,6,0,54,65,181,148,3,126,6,0,55,65,239,126,173,248,5,0,56,193,235,92,224,146,8,0,56,193,235,92,132,150,8,0,56,65,11,148,88,101,11,0,59,193,187,10,171,63,7,0,60,65,235,26,142,50,11,0,63,193,89,129,65,237,10,0,64,193,107,157,54,233,6,0,65,65,194,77,117,79,7,0,65,65,194,77,100,229,10,0,69,65,3,46,121,97,7,0,72,193,13,156,73,187,5,0,74,193,236,174,38,98,7,0,74,193,236,174,195,99,10,0,74,65,118,221,236,236,10,0,75,65,235,221,61,51,9,0,76,65,141,29,129,41,7,0,76,193,227,126,213,229,7,0,77,65,80,147,124,75,10,0,77,65,80,147,81,93,10,0,79,193,196,58,181,252,10,0,80,65,43,47,179,239,10,0,81,65,86,14,138,115,8,0,81,65,86,14,117,124,8,0,81,65,86,14,105,133,8,0,84,193,56,91,59,35,6,0,84,193,40,144,221,38,10,0,84,193,40,144,62,40,10,0,89,65,119,225,236,51,7,0,90,65,105,99,117,252,10,0,91,193,185,37,114,188,8,0,91,193,185,37,157,188,8,0,93,193,65,55,136,58,7,0,93,193,172,168,228,109,9,0,93,193,172,168,248,110,9,0,93,193,117,139,202,99,11,0,94,65,63,255,118,226,8,0,94,65,63,255,72,228,8,0,96,65,181,125,156,31,7,0,97,193,188,181,141,207,6,0,98,65,208,68,200,6,9,0,98,65,208,68,117,7,9,0,99,193,85,181,71,127,6,0,101,65,181,55,60,182,7,0,105,65,182,89,0,190,8,0,105,65,182,89,168,190,8,0,106,193,252,237,122,130,6,0,106,193,112,150,220,154,6,0,106,193,210,69,180,28,7,0,107,65,52,205,103,46,7,0,107,193,183,211,237,73,7,0,107,65,20,157,38,98,7,0,108,65,125,76,122,64,6,0,110,193,170,148,172,250,9,0,110,193,170,148,195,250,9,0,112,193,196,3,212,243,6,0,115,65,200,39,60,37,7,0,117,193,159,175,118,214,6,0,117,193,129,187,160,234,8,0,117,193,129,187,175,235,8,0,120,65,106,61,48,231,10,0,125,193,248,100,38,98,7,0,126,193,32,248,212,243,6,0,127,193,204,26,220,189,6,0,128,193,191,250,215,144,9,0,128,193,191,250,233,144,9,0,130,193,73,91,204,58,10,0,132,193,235,78,224,146,8,0,132,193,235,78,132,150,8,0,133,193,209,116,123,236,9,0,135,65,229,112,171,63,7,0,136,65,115,57,115,114,10,0,136,65,115,57,172,114,10,0,138,65,201,97,245,228,6,0,138,65,201,97,245,99,10,0,139,193,67,236,71,236,6,0,144,65,104,194,153,11,7,0,144,65,104,194,135,13,7,0,144,65,38,247,215,13,9,0,144,65,38,247,240,13,9,0,144,65,98,191,225,153,10,0,148,65,69,25,240,226,6,0,149,193,253,240,212,243,6,0,153,193,181,180,212,184,10,0,155,65,98,128,232,25,7,0,158,193,229,91,105,177,8,0,158,193,229,91,162,177,8,0,160,65,245,215,212,243,6,0,160,193,189,1,212,77,9,0,160,193,189,1,34,78,9,0,162,65,188,83,123,236,9,0,165,193,118,255,78,47,11,0,166,65,137,58,155,203,6,0,167,193,252,185,109,82,11,0,167,193,252,185,114,83,11,0,169,65,224,11,50,211,6,0,170,65,34,109,131,48,7,0,171,65,40,220,123,236,9,0,172,65,39,54,121,209,5,0,173,193,251,127,151,21,7,0,174,193,125,123,117,79,7,0,175,65,13,5,139,158,8,0,175,65,13,5,224,163,8,0,175,65,107,0,17,184,8,0,177,65,55,47,164,45,6,0,180,65,102,139,224,146,8,0,180,65,102,139,132,150,8,0,181,65,91,210,219,1,7,0,181,65,51,95,38,98,7,0,181,65,51,95,158,192,7,0,181,65,51,95,198,192,7,0,181,65,51,95,249,192,7,0,183,193,41,178,95,96,6,0,183,193,41,178,124,96,6,0,183,193,41,178,154,96,6,0,186,65,237,117,138,115,8,0,186,65,237,117,117,124,8,0,186,65,237,117,105,133,8,0,187,65,101,21,133,220,6,0,190,65,8,30,177,133,7,0,190,65,8,30,38,134,7,0,190,65,220,47,78,203,8,0,192,193,215,192,27,103,6,0,192,193,223,65,117,79,7,0,193,193,22,215,112,78,6,0,193,65,85,98,179,222,8,0,193,65,85,98,152,223,8,0,194,65,79,57,236,226,10,0,198,193,36,13,117,79,7,0,201,65,32,116,197,253,6,0,202,65,106,119,115,171,7,0,202,193,170,214,54,239,10,0,204,65,217,203,64,132,7,0,205,193,95,48,237,73,7,0,206,193,144,207,47,219,5,0,206,193,177,147,90,53,7,0,207,65,235,140,136,58,7,0,208,193,25,96,22,62,10,0,210,193,197,250,57,10,7,0,210,193,158,70,129,25,11,0,214,193,206,88,152,111,7,0,214,193,206,88,126,119,7,0,219,193,58,94,195,36,10,0,219,193,58,94,216,36,10,0,219,193,58,94,248,36,10,0,220,193,94,72,230,71,9,0,220,193,94,72,83,72,9,0,222,65,143,68,91,17,9,0,222,65,143,68,177,17,9,0,222,65,143,68,1,18,9,0,224,193,47,4,139,158,8,0,224,193,47,4,224,163,8,0,224,193,98,102,211,184,8,0,224,193,98,102,247,184,8,0,224,193,98,102,22,185,8,0,232,65,82,16,101,148,10,0,233,193,135,155,180,144,8,0,233,193,135,155,67,145,8,0,233,65,106,240,123,236,9,0,235,193,4,248,86,132,7,0,236,65,167,24,29,150,7,0,236,65,181,148,15,139,10,0,238,193,24,185,236,51,7,0,239,193,159,175,17,95,8,0,240,65,173,44,237,73,7,0,240,65,157,38,138,161,9,0,240,65,157,38,154,161,9,0,242,193,253,210,75,153,6,0,244,65,182,148,155,247,8,0,244,65,182,148,186,247,8,0,244,193,74,198,106,59,9,0,244,193,74,198,181,59,9,0,246,65,82,100,56,111,6,0,249,193,252,30,177,133,7,0,249,193,252,30,38,134,7,0,251,65,239,219,138,115,10,0,252,193,100,89,210,24,11,0,253,65,70,161,37,20,11,0,253,193,64,179,149,43,11,0,255,193,104,152,90,53,7,0,7,66,174,150,17,33,6,0,9,194,50,171,30,171,9,0,15,66,244,20,117,79,7,0,16,66,142,105,35,18,11,0,18,194,80,235,29,204,8,0,18,194,80,235,6,205,8,0,18,66,105,28,124,161,10,0,19,194,220,197,135,73,6,0,27,66,225,110,254,254,6,0,28,194,113,34,123,236,9,0,29,194,39,146,140,142,8,0,29,194,39,146,235,142,8,0,29,194,39,146,83,143,8,0,29,194,152,162,171,134,10,0,31,66,8,98,3,157,8,0,31,66,8,98,180,157,8,0,32,194,159,129,71,236,6,0,33,194,58,160,58,237,7,0,33,194,58,160,100,237,7,0,33,194,58,160,138,237,7,0,33,66,129,95,65,25,11,0,38,66,193,115,230,215,6,0,39,66,130,207,54,185,10,0,40,66,215,150,38,98,7,0,40,66,19,210,235,189,7,0,45,194,229,117,68,191,5,0,46,66,146,174,212,243,6,0,48,194,165,75,195,33,6,0,51,66,202,130,171,100,6,0,53,194,235,119,227,240,10,0,57,66,141,158,228,109,9,0,57,66,141,158,248,110,9,0,57,194,1,103,70,71,11,0,58,66,112,212,82,235,6,0,58,66,40,190,118,226,8,0,58,66,40,190,72,228,8,0,61,66,155,110,155,67,7,0,61,66,28,235,238,159,10,0,61,66,28,235,33,160,10,0,64,66,74,27,95,220,10,0,67,66,52,143,245,113,8,0,68,194,181,120,75,1,9,0,68,194,181,120,154,2,9,0,68,194,181,120,235,3,9,0,68,194,181,120,65,5,9,0,69,66,1,144,73,115,6,0,69,194,72,171,30,171,9,0,72,66,129,44,228,109,9,0,72,66,129,44,248,110,9,0,74,194,7,111,138,115,8,0,74,194,7,111,117,124,8,0,74,194,7,111,105,133,8,0,75,66,218,134,197,253,6,0,77,194,88,24,43,129,10,0,78,66,173,103,151,21,7,0,78,66,33,128,117,79,7,0,82,194,171,32,88,217,7,0,82,66,237,18,61,6,8,0,82,66,237,18,170,6,8,0,84,194,91,170,155,67,7,0,85,194,252,198,155,21,10,0,85,194,252,198,205,21,10,0,86,66,128,189,121,225,8,0,86,66,128,189,165,225,8,0,86,66,128,189,186,225,8,0,88,66,64,10,4,255,8,0,88,66,64,10,50,255,8,0,89,66,125,102,218,210,5,0,89,194,90,14,190,39,11,0,91,66,204,80,201,68,6,0,92,194,227,89,99,66,8,0,92,194,227,89,218,67,8,0,92,194,227,89,69,68,8,0,95,194,238,68,138,115,8,0,95,194,238,68,117,124,8,0,95,194,238,68,105,133,8,0,96,194,44,28,146,92,10,0,97,66,87,247,33,235,6,0,97,194,80,91,152,111,7,0,97,194,80,91,226,231,8,0,100,194,117,56,113,232,6,0,104,194,89,27,51,255,9,0,104,194,89,27,139,255,9,0,104,194,89,27,226,255,9,0,105,66,195,98,180,28,7,0,106,66,219,171,132,215,6,0,106,66,184,200,138,115,8,0,106,66,184,200,117,124,8,0,106,66,184,200,105,133,8,0,108,194,110,86,160,234,8,0,108,194,110,86,175,235,8,0,112,66,219,146,2,199,9,0,112,66,219,146,169,199,9,0,118,66,92,21,170,9,6,0,119,66,175,79,117,37,7,0,120,66,44,158,88,129,7,0,121,194,149,243,234,86,8,0,123,66,66,20,212,243,6,0,125,194,12,170,245,28,10,0,125,194,12,170,145,31,10,0,126,66,231,129,7,220,6,0,126,194,22,42,138,115,8,0,126,194,22,42,117,124,8,0,126,194,22,42,105,133,8,0,127,66,147,93,123,236,9,0,128,66,97,96,71,236,6,0,128,194,122,104,117,37,7,0,129,194,236,70,152,111,7,0,129,194,236,70,25,143,7,0,129,194,147,241,141,61,10,0,131,194,233,178,250,57,8,0,132,194,184,83,247,55,7,0,133,66,104,61,82,21,6,0,135,194,210,8,109,172,9,0,135,194,210,8,178,173,9,0,135,194,210,8,250,174,9,0,136,66,208,124,124,222,6,0,136,66,180,23,165,108,9,0,136,66,180,23,214,108,9,0,136,66,180,23,27,109,9,0,137,194,69,236,138,115,8,0,137,194,69,236,117,124,8,0,137,194,69,236,105,133,8,0,143,66,190,29,80,186,5,0,143,66,202,172,192,150,9,0,143,66,202,172,17,151,9,0,146,66,98,44,38,98,7,0,146,194,123,51,25,47,8,0,149,194,133,150,28,253,6,0,153,194,225,239,88,129,7,0,155,66,178,194,7,10,6,0,155,66,178,194,4,189,6,0,155,66,82,147,165,19,8,0,157,66,187,119,33,127,9,0,157,66,187,119,73,127,9,0,157,194,200,74,123,236,9,0,159,66,1,6,117,107,6,0,159,66,1,6,141,107,6,0,159,194,214,36,228,36,8,0,160,66,83,75,45,198,7,0,162,194,242,76,152,111,7,0,162,194,242,76,206,62,8,0,162,194,242,76,99,63,8,0,162,194,242,76,4,64,8,0,162,194,242,76,73,218,9,0,163,194,171,156,127,29,6,0,163,194,81,9,17,84,10,0,164,194,228,1,38,98,7,0,165,194,106,134,160,234,8,0,165,194,106,134,175,235,8,0,167,66,80,224,38,98,7,0,169,194,225,214,51,214,8,0,169,194,225,214,241,214,8,0,169,194,225,214,169,215,8,0,171,66,188,92,227,108,7,0,171,66,188,92,10,28,10,0,171,66,188,92,74,28,10,0,171,66,188,92,134,28,10,0,173,194,211,226,247,214,6,0,173,194,190,92,238,137,7,0,176,194,41,177,153,11,7,0,176,194,41,177,135,13,7,0,179,194,8,205,117,79,7,0,181,66,19,48,40,217,8,0,181,66,19,48,209,217,8,0,182,66,244,86,254,243,5,0,182,194,8,90,107,210,6,0,182,66,244,86,153,89,7,0,187,194,11,124,214,7,7,0,191,194,129,211,69,2,8,0,192,66,231,72,37,238,10,0,193,66,207,212,250,57,8,0,197,194,13,108,28,253,6,0,203,66,191,131,166,164,7,0,205,66,240,200,136,58,7,0,207,66,41,75,212,243,6,0,208,66,12,205,210,224,6,0,209,66,191,185,61,24,6,0,209,66,60,247,219,210,7,0,210,194,18,51,236,219,5,0,210,194,18,51,106,234,5,0,210,194,115,135,247,55,7,0,210,66,208,107,167,71,7,0,212,194,134,245,38,98,7,0,212,66,206,119,232,191,8,0,212,66,206,119,162,193,8,0,213,194,222,148,212,243,6,0,216,66,7,143,130,227,6,0,217,66,177,121,185,209,5,0,217,66,171,96,212,243,6,0,217,66,76,42,211,243,7,0,219,194,137,170,117,129,6,0,219,66,81,22,235,189,7,0,222,66,151,243,184,208,5,0,222,194,188,117,88,170,7,0,226,194,120,54,50,211,6,0,227,194,207,34,220,150,7,0,227,194,207,34,212,218,9,0,227,194,207,34,9,219,9,0,227,194,207,34,69,219,9,0,230,66,85,58,117,37,7,0,234,66,228,171,138,115,8,0,234,66,228,171,117,124,8,0,234,66,228,171,105,133,8,0,235,194,243,191,47,1,7,0,236,194,63,107,99,42,7,0,236,194,92,248,90,53,7,0,238,66,222,145,38,117,10,0,240,194,30,63,123,236,9,0,242,194,138,187,22,62,10,0,242,66,159,210,58,63,10,0,243,194,50,130,219,210,7,0,244,194,26,45,29,49,7,0,245,194,93,196,30,171,9,0,245,66,119,214,160,165,10,0,247,194,6,83,138,115,8,0,247,194,6,83,117,124,8,0,247,194,6,83,105,133,8,0,249,194,98,66,70,11,8,0,250,66,92,235,212,243,6,0,250,194,85,201,176,41,7,0,250,66,239,109,38,98,7,0,251,194,164,64,92,224,5,0,251,194,164,64,161,224,5,0,251,194,164,64,20,15,7,0,251,194,164,64,179,17,7,0,251,194,97,24,152,111,7,0,251,194,97,24,236,97,8,0,251,194,97,24,68,232,9,0,252,194,44,146,171,63,7,0,252,66,179,74,30,171,9,0,253,66,65,157,173,53,6,0,253,66,143,14,197,196,6,0,253,194,141,4,123,236,9,0,1,67,140,158,151,21,7,0,1,195,106,212,15,233,8,0,1,195,106,212,139,233,8,0,1,195,184,203,205,151,9,0,1,195,184,203,199,152,9,0,1,195,184,203,220,153,9,0,3,67,125,27,102,223,6,0,7,67,203,240,219,34,7,0,8,195,250,117,7,220,6,0,9,195,50,51,80,32,7,0,9,195,50,51,60,37,7,0,9,195,50,51,129,41,7,0,10,195,141,201,215,16,10,0,10,195,141,201,135,17,10,0,13,67,189,118,117,79,7,0,13,195,152,54,253,208,8,0,13,195,152,54,22,211,8,0,14,195,178,166,71,236,6,0,17,67,50,75,232,191,8,0,17,67,50,75,162,193,8,0,18,195,44,214,246,106,6,0,18,67,38,228,179,222,8,0,18,67,38,228,152,223,8,0,22,195,165,165,138,115,8,0,22,195,165,165,117,124,8,0,22,195,165,165,105,133,8,0,30,67,43,171,129,26,8,0,31,67,188,148,130,227,6,0,34,195,124,96,212,243,6,0,35,67,249,20,237,73,7,0,35,195,252,130,138,115,8,0,35,195,252,130,117,124,8,0,35,195,252,130,105,133,8,0,37,195,52,111,237,73,7,0,44,67,140,24,183,213,8,0,44,67,140,24,237,213,8,0,45,195,15,6,6,254,5,0,45,195,15,6,47,254,5,0,47,67,218,86,212,243,6,0,47,67,8,56,139,158,8,0,47,67,8,56,224,163,8,0,49,195,233,7,206,19,6,0,52,195,49,89,213,41,10,0,52,195,49,89,87,42,10,0,54,67,68,207,72,205,5,0,54,195,147,33,250,57,8,0,54,195,96,248,245,28,10,0,54,195,96,248,145,31,10,0,55,67,83,224,50,211,6,0,55,195,111,103,3,224,6,0,55,67,240,88,117,37,7,0,56,195,75,237,57,171,8,0,56,195,75,237,133,172,8,0,56,195,75,237,211,173,8,0,57,67,131,139,228,109,9,0,57,67,131,139,248,110,9,0,59,67,139,224,117,37,7,0,60,67,229,89,224,146,8,0,60,67,229,89,132,150,8,0,61,195,98,27,117,79,7,0,63,67,58,228,20,15,7,0,63,67,58,228,179,17,7,0,64,195,53,22,0,203,6,0,66,67,213,42,226,159,7,0,75,195,115,75,232,191,8,0,75,195,115,75,162,193,8,0,75,195,152,95,40,217,8,0,75,195,152,95,209,217,8,0,75,195,227,235,113,22,11,0,77,195,165,11,253,208,8,0,77,195,165,11,22,211,8,0,78,67,216,108,75,142,9,0,78,67,216,108,201,142,9,0,78,67,216,108,84,143,9,0,79,67,167,193,201,242,10,0,80,67,125,199,51,214,8,0,80,67,125,199,241,214,8,0,80,67,125,199,169,215,8,0,83,67,234,53,253,208,8,0,83,67,234,53,22,211,8,0,87,67,84,140,22,198,10,0,88,67,86,6,29,5,7,0,88,67,243,162,243,94,7,0,89,195,53,28,90,53,7,0,89,195,139,72,38,98,7,0,91,67,160,1,180,28,7,0,96,195,197,160,197,253,6,0,99,67,187,1,117,79,7,0,102,67,15,30,237,73,7,0,114,195,56,85,122,67,6,0,115,195,149,198,219,210,7,0,116,67,112,152,68,249,10,0,118,67,116,18,160,234,8,0,118,67,116,18,175,235,8,0,120,195,191,176,32,199,5,0,121,195,239,96,152,112,10,0,122,195,127,53,161,201,8,0,122,195,127,53,217,201,8,0,124,67,93,118,117,27,6,0,124,195,222,252,253,208,8,0,124,195,222,252,22,211,8,0,126,67,210,10,76,252,6,0,129,195,33,15,117,79,7,0,133,195,104,140,7,31,11,0,135,195,84,177,38,98,7,0,141,195,87,107,179,17,7,0,142,67,252,199,165,250,5,0,142,67,252,199,90,150,6,0,147,67,252,154,71,236,6,0,147,67,3,55,44,26,7,0,147,67,250,145,226,106,10,0,148,195,158,10,115,151,6,0,149,195,16,87,137,227,5,0,151,67,187,202,118,214,6,0,151,67,187,202,247,214,6,0,152,195,34,102,138,115,8,0,152,195,34,102,117,124,8,0,152,195,34,102,105,133,8,0,152,195,175,55,139,158,8,0,152,195,175,55,224,163,8,0,153,67,249,229,35,167,6,0,154,195,165,37,1,158,10,0,155,67,105,112,171,63,7,0,157,195,125,11,156,197,10,0,158,195,124,249,133,139,9,0,158,195,124,249,155,139,9,0,158,67,249,96,123,236,9,0,161,67,51,209,123,236,9,0,162,67,212,72,107,23,10,0,162,67,212,72,195,23,10,0,163,67,83,23,236,51,7,0,164,67,25,78,80,167,9,0,164,67,25,78,37,168,9,0,165,195,223,217,91,70,7,0,166,67,2,172,66,230,6,0,166,67,245,11,58,179,9,0,166,67,245,11,94,179,9,0,167,67,3,73,89,243,5,0,167,67,126,225,53,98,10,0,168,67,73,82,202,88,11,0,169,67,235,15,152,111,7,0,169,67,175,105,166,245,7,0,169,67,235,15,60,44,8,0,169,67,235,15,175,44,8,0,169,67,235,15,24,45,8,0,169,67,235,15,178,229,9,0,169,67,235,15,65,230,9,0,169,67,235,15,100,230,9,0,169,67,217,203,31,100,11,0,170,67,237,223,55,5,6,0,170,67,14,135,180,28,7,0,172,67,23,83,123,236,9,0,173,67,248,82,212,243,6,0,174,67,123,93,152,111,7,0,174,195,214,55,74,215,7,0,174,67,123,93,173,169,8,0,174,195,57,215,198,104,10,0,178,195,86,234,102,179,6,0,178,67,20,179,254,255,7,0,179,195,103,253,41,232,5,0,180,67,137,125,29,5,7,0,180,67,231,68,245,12,8,0,181,67,57,179,29,204,8,0,181,67,57,179,6,205,8,0,182,195,81,23,232,251,9,0,182,195,81,23,176,252,9,0,183,195,18,81,112,27,7,0,183,195,121,91,174,188,10,0,183,195,121,91,31,189,10,0,186,195,177,90,240,226,6,0,186,195,46,233,122,64,10,0,186,195,177,90,9,74,10,0,188,67,224,92,234,72,7,0,188,195,123,138,90,175,8,0,188,195,123,138,74,176,8,0,188,67,212,171,75,1,9,0,188,67,212,171,154,2,9,0,188,67,212,171,235,3,9,0,188,67,212,171,65,5,9,0,190,67,250,224,222,243,5,0,193,195,177,41,206,164,10,0,194,195,108,10,138,115,8,0,194,195,108,10,117,124,8,0,194,195,108,10,105,133,8,0,195,195,154,159,152,111,7,0,195,195,154,159,84,53,8,0,195,195,183,23,32,150,10,0,195,195,183,23,63,150,10,0,197,67,147,187,171,63,7,0,198,195,112,49,34,196,5,0,200,67,134,125,153,11,7,0,200,67,134,125,21,93,7,0,203,195,129,206,164,25,7,0,203,195,16,59,72,71,7,0,208,195,187,207,197,253,6,0,209,195,228,236,22,62,10,0,212,195,68,86,91,154,8,0,212,195,68,86,147,154,8,0,213,195,202,97,36,132,7,0,214,195,180,213,228,109,9,0,214,195,180,213,248,110,9,0,216,67,148,171,238,147,6,0,218,67,165,209,132,215,6,0,218,195,16,234,123,236,9,0,220,195,217,201,71,236,6,0,220,67,120,56,40,217,8,0,220,67,120,56,209,217,8,0,221,195,62,39,244,197,5,0,223,195,101,132,20,15,7,0,223,195,101,132,179,17,7,0,223,195,89,227,117,79,7,0,223,67,111,36,38,98,7,0,223,195,202,153,253,208,8,0,223,195,202,153,22,211,8,0,224,67,135,122,212,243,6,0,226,67,115,141,247,184,6,0,226,195,3,16,75,142,9,0,226,195,3,16,201,142,9,0,226,195,3,16,84,143,9,0,228,195,98,61,51,126,6,0,228,195,1,192,72,204,9,0,229,67,49,133,76,208,10,0,230,195,98,210,246,205,8,0,230,195,98,210,155,206,8,0,231,195,199,111,171,41,8,0,232,67,242,19,38,98,7,0,233,67,239,107,117,79,7,0,235,67,34,102,162,247,9,0,235,67,34,102,195,247,9,0,237,67,72,22,139,158,8,0,237,67,72,22,224,163,8,0,237,67,131,182,139,120,10,0,240,67,203,241,212,243,6,0,241,195,162,238,194,211,6,0,241,67,130,39,53,121,10,0,241,67,130,39,83,121,10,0,245,195,92,175,246,205,8,0,245,195,92,175,155,206,8,0,245,195,254,98,41,126,10,0,246,195,252,68,90,53,7,0,247,67,77,152,75,245,5,0,247,67,167,14,149,177,10,0,248,67,50,175,245,228,6,0,249,67,215,55,254,254,6,0,249,67,215,55,175,22,11,0,250,67,199,118,153,22,8,0,251,67,171,202,84,21,8,0,253,67,75,20,86,55,6,0,254,67,73,20,205,151,9,0,254,67,73,20,199,152,9,0,254,67,73,20,220,153,9,0,255,67,3,127,215,194,6,0,1,196,160,68,168,65,11,0,2,196,68,17,22,62,10,0,2,68,244,39,32,178,10,0,3,196,246,192,88,26,7,0,5,68,99,10,118,131,10,0,6,68,121,27,118,226,8,0,6,68,121,27,72,228,8,0,7,196,156,150,110,207,10,0,9,196,187,129,90,175,8,0,9,196,187,129,74,176,8,0,9,68,47,149,123,236,9,0,13,68,45,213,228,109,9,0,13,68,45,213,248,110,9,0,16,196,9,34,245,28,10,0,16,196,9,34,145,31,10,0,19,68,75,51,76,56,6,0,21,68,181,221,132,215,6,0,21,68,37,235,212,243,6,0,24,68,44,187,33,65,7,0,28,196,63,21,75,1,9,0,28,196,63,21,154,2,9,0,28,196,63,21,235,3,9,0,28,196,63,21,65,5,9,0,28,68,217,203,33,98,11,0,29,68,102,35,137,194,10,0,31,196,198,152,247,55,7,0,31,68,24,109,44,193,7,0,31,68,24,109,114,193,7,0,31,68,24,109,180,193,7,0,31,196,198,152,99,66,8,0,33,196,122,87,141,190,7,0,33,68,254,138,254,10,11,0,34,196,81,23,104,173,6,0,35,196,207,43,117,212,6,0,35,196,207,43,213,138,10,0,37,68,10,118,91,48,11,0,38,196,60,77,232,191,8,0,38,196,60,77,162,193,8,0,39,196,74,9,57,171,8,0,39,196,74,9,133,172,8,0,39,196,74,9,211,173,8,0,39,68,236,237,184,233,10,0,40,196,205,42,96,189,5,0,41,196,44,183,180,87,8,0,42,68,11,135,99,66,8,0,42,68,11,135,69,68,8,0,42,68,11,135,199,68,8,0,43,68,51,6,38,98,7,0,45,196,35,200,2,199,9,0,45,196,35,200,169,199,9,0,46,68,23,165,237,73,7,0,48,68,20,32,90,53,7,0,50,196,129,133,123,236,9,0,52,68,38,161,29,150,7,0,52,196,227,0,125,177,9,0,52,196,227,0,224,177,9,0,52,196,227,0,64,178,9,0,53,196,209,39,227,108,7,0,53,196,209,39,55,9,9,0,53,196,209,39,86,9,9,0,54,68,126,80,67,201,6,0,54,196,213,179,188,231,6,0,54,196,143,74,197,43,7,0,54,196,143,74,30,44,7,0,56,196,168,169,160,234,8,0,56,196,168,169,175,235,8,0,60,196,226,228,145,207,10,0,62,196,146,184,112,5,10,0,62,196,146,184,28,6,10,0,64,196,174,241,50,51,7,0,66,68,23,208,201,4,8,0,66,68,35,60,98,143,10,0,68,68,211,175,148,186,8,0,68,68,211,175,221,186,8,0,69,68,21,132,186,178,6,0,70,196,154,178,200,30,6,0,72,68,106,119,212,243,6,0,74,68,146,137,226,66,6,0,74,68,146,137,213,157,6,0,75,68,172,216,123,236,9,0,76,196,136,52,75,1,9,0,76,196,136,52,154,2,9,0,76,196,136,52,235,3,9,0,76,196,136,52,65,5,9,0,76,196,57,183,242,163,10,0,77,68,94,147,100,228,6,0,82,196,5,220,138,115,8,0,82,196,5,220,117,124,8,0,82,196,5,220,105,133,8,0,84,68,218,243,153,207,8,0,84,68,218,243,44,208,8,0,85,68,252,134,250,245,8,0,85,68,252,134,20,246,8,0,86,196,188,18,89,224,10,0,87,68,16,254,133,28,6,0,87,68,16,254,105,89,6,0,89,68,200,0,167,107,7,0,89,68,200,0,62,124,7,0,89,68,200,0,83,207,7,0,89,68,200,0,123,207,7,0,91,196,37,143,218,113,9,0,91,196,37,143,120,114,9,0,92,196,189,237,140,66,7,0,92,196,189,237,234,66,7,0,92,68,184,134,245,28,10,0,92,68,184,134,145,31,10,0,93,68,25,53,138,115,8,0,93,68,25,53,117,124,8,0,93,68,25,53,105,133,8,0,96,68,195,193,71,236,6,0,96,196,221,197,247,55,7,0,98,68,159,101,170,94,8,0,99,68,117,27,57,224,7,0,102,196,196,49,123,236,9,0,104,68,171,114,227,108,7,0,104,68,171,114,152,111,7,0,104,68,171,114,252,231,8,0,104,68,66,15,172,224,10,0,108,68,204,3,68,202,6,0,112,68,125,135,208,199,5,0,112,196,147,190,33,65,7,0,114,196,84,70,250,171,6,0,117,196,54,40,199,78,6,0,118,196,143,199,224,146,8,0,118,196,143,199,132,150,8,0,118,68,208,105,122,160,10,0,118,68,76,152,138,31,11,0,122,68,173,15,132,18,9,0,122,68,173,15,211,18,9,0,122,68,173,15,49,19,9,0,122,68,173,15,130,19,9,0,124,196,9,220,124,253,6,0,126,68,188,148,204,213,9,0,126,196,116,32,181,145,10,0,127,196,37,44,48,33,8,0,129,68,169,13,117,79,7,0,130,196,79,13,160,191,10,0,132,68,27,190,123,236,9,0,133,196,36,131,33,65,7,0,135,196,82,37,33,65,7,0,136,68,85,144,138,229,5,0,137,196,16,22,130,227,6,0,138,68,211,78,48,225,6,0,139,68,239,174,212,243,6,0,139,196,112,164,232,251,9,0,139,196,112,164,176,252,9,0,143,68,241,14,186,220,10,0,144,68,18,145,76,16,9,0,144,68,18,145,146,16,9,0,144,196,77,99,161,168,10,0,144,68,246,123,3,239,10,0,147,196,128,122,235,74,11,0,151,196,160,192,112,61,6,0,151,196,160,192,38,98,7,0,151,196,160,192,105,119,7,0,151,68,84,243,232,191,8,0,151,68,84,243,162,193,8,0,152,196,169,135,21,36,7,0,153,196,52,252,57,171,8,0,153,196,52,252,133,172,8,0,153,196,52,252,211,173,8,0,160,68,38,173,218,90,7,0,160,68,170,149,229,69,11,0,161,68,50,204,117,79,7,0,162,196,147,158,226,43,9,0,163,68,171,186,38,98,7,0,163,68,128,96,200,6,9,0,163,68,128,96,117,7,9,0,164,196,128,98,147,13,11,0,165,68,164,79,140,142,8,0,165,68,164,79,235,142,8,0,165,68,164,79,83,143,8,0,165,68,147,7,39,123,10,0,169,196,213,63,117,37,7,0,169,196,204,254,154,41,11,0,169,196,204,254,56,48,11,0,170,196,2,126,225,202,5,0,170,68,99,2,38,98,7,0,170,68,193,97,109,172,9,0,170,68,193,97,178,173,9,0,170,68,193,97,250,174,9,0,171,68,131,182,232,251,9,0,171,68,131,182,176,252,9,0,173,68,182,199,202,35,6,0,173,68,112,249,237,73,7,0,176,68,68,128,197,124,9,0,178,196,17,20,63,25,7,0,180,68,14,32,84,21,8,0,182,196,21,110,92,201,6,0,182,68,61,157,57,171,8,0,182,68,61,157,133,172,8,0,182,68,61,157,211,173,8,0,183,196,60,166,38,98,7,0,184,68,249,122,153,11,7,0,184,68,249,122,135,13,7,0,193,196,144,192,219,71,11,0,194,196,219,54,173,225,5,0,194,196,219,54,195,225,5,0,198,196,111,175,135,67,10,0,199,196,89,52,224,217,6,0,200,68,203,27,46,43,7,0,202,196,11,67,209,205,6,0,208,196,117,196,167,61,11,0,209,68,77,95,197,253,6,0,209,196,211,248,90,53,7,0,211,68,9,116,117,37,7,0,212,68,76,141,139,158,8,0,212,68,76,141,224,163,8,0,212,196,205,40,161,46,10,0,212,196,205,40,238,46,10,0,215,196,127,170,84,21,8,0,216,68,136,42,205,151,9,0,216,68,136,42,199,152,9,0,216,68,136,42,220,153,9,0,217,196,254,212,38,98,7,0,217,68,15,71,116,97,10,0,217,68,212,28,164,94,11,0,219,196,253,51,35,202,7,0,219,196,253,51,80,202,7,0,219,196,253,51,127,202,7,0,219,196,72,15,149,65,11,0,220,196,198,67,12,251,10,0,221,68,55,142,212,243,6,0,222,196,120,49,57,171,8,0,222,196,120,49,133,172,8,0,222,196,120,49,211,173,8,0,223,68,34,117,71,236,6,0,223,196,165,55,117,79,7,0,226,196,204,104,47,224,5,0,227,196,10,145,98,48,7,0,227,196,6,201,28,68,9,0,227,196,6,201,215,68,9,0,228,196,171,78,81,63,7,0,230,68,19,160,209,205,6,0,231,68,158,155,230,70,7,0,232,196,65,105,254,254,6,0,232,196,65,105,162,50,7,0,233,68,53,22,125,44,7,0,234,68,156,116,217,91,10,0,236,68,163,143,238,187,6,0,241,68,72,21,149,65,10,0,242,68,203,221,120,157,9,0,242,68,203,221,150,157,9,0,245,68,139,76,244,218,10,0,245,196,199,129,101,230,10,0,249,196,163,160,180,28,7,0,249,196,149,85,136,58,7,0,252,68,186,153,207,162,9,0,252,68,186,153,245,162,9,0,252,68,186,153,7,163,9,0,255,196,40,170,22,218,6,0,0,69,100,148,35,45,6,0,2,69,86,218,253,208,8,0,2,69,86,218,22,211,8,0,3,69,131,145,179,222,8,0,3,69,131,145,152,223,8,0,4,69,224,27,201,3,7,0,4,197,48,188,206,191,10,0,8,69,47,55,28,253,6,0,8,197,124,57,234,187,8,0,8,197,124,57,25,188,8,0,9,69,4,55,189,174,6,0,10,197,32,169,180,144,8,0,10,197,32,169,67,145,8,0,11,197,172,17,3,224,6,0,18,197,225,148,237,73,7,0,19,197,17,165,139,214,9,0,19,197,17,165,234,214,9,0,19,197,17,165,70,215,9,0,20,197,195,80,171,49,7,0,20,197,93,187,213,94,10,0,26,197,215,210,117,79,7,0,28,69,53,51,204,213,9,0,29,69,160,117,58,19,6,0,31,197,254,241,22,215,7,0,33,69,48,18,227,108,7,0,34,197,61,73,29,130,6,0,38,197,188,112,154,224,6,0,39,69,205,107,82,231,9,0,41,197,179,61,68,45,6,0,41,69,108,41,141,195,8,0,41,69,108,41,112,196,8,0,41,69,108,41,75,197,8,0,44,197,193,22,117,79,7,0,50,69,145,248,38,98,7,0,50,69,145,248,145,126,7,0,52,197,15,74,162,50,7,0,53,69,3,163,232,251,9,0,53,69,3,163,176,252,9,0,55,197,225,231,88,129,7,0,59,197,81,146,2,117,10,0,61,69,78,32,33,210,6,0,61,197,94,158,117,37,7,0,63,69,173,218,183,20,10,0,63,69,173,218,230,20,10,0,65,69,182,25,144,88,10,0,66,69,29,98,217,209,5,0,67,69,218,13,81,63,7,0,68,197,7,68,138,115,8,0,68,197,7,68,117,124,8,0,68,197,7,68,105,133,8,0,70,197,86,127,90,53,7,0,70,69,19,21,79,174,10,0,73,69,85,2,135,68,10,0,75,69,89,161,222,228,10,0,76,197,203,8,29,150,7,0,77,69,183,55,216,108,6,0,78,197,33,221,1,236,10,0,81,69,195,10,158,250,10,0,84,197,219,146,171,63,7,0,87,197,139,66,197,43,7,0,87,197,139,66,30,44,7,0,88,69,153,105,138,115,8,0,88,69,153,105,117,124,8,0,88,69,153,105,105,133,8,0,89,69,189,3,110,218,6,0,89,69,184,170,21,236,10,0,91,69,242,241,38,98,7,0,92,69,81,222,78,203,8,0,92,69,246,17,91,48,11,0,93,69,177,4,95,0,10,0,93,69,177,4,200,0,10,0,97,69,214,211,53,200,10,0,103,69,193,70,160,234,8,0,103,69,193,70,175,235,8,0,104,197,75,243,102,41,7,0,104,197,79,75,38,98,7,0,107,197,181,37,224,96,11,0,108,197,237,134,68,161,9,0,108,197,237,134,98,161,9,0,109,69,91,220,26,0,7,0,109,69,197,227,135,90,9,0,109,69,197,227,124,91,9,0,114,69,200,47,29,5,7,0,114,69,199,102,215,16,10,0,114,69,199,102,135,17,10,0,116,197,94,135,185,150,10,0,118,197,143,95,28,68,9,0,118,197,143,95,215,68,9,0,119,69,211,141,20,15,7,0,119,69,160,221,138,115,8,0,119,69,160,221,117,124,8,0,119,69,160,221,105,133,8,0,119,69,224,79,179,222,8,0,119,69,224,79,179,222,8,0,119,69,224,79,152,223,8,0,119,69,224,79,152,223,8,0,124,69,136,7,11,199,10,0,124,69,136,7,38,201,10,0,128,69,2,46,139,214,9,0,128,69,2,46,234,214,9,0,128,69,2,46,70,215,9,0,130,69,156,84,200,127,6,0,130,197,24,195,127,86,8,0,130,69,128,174,86,55,9,0,130,69,128,174,119,55,9,0,130,69,128,174,143,55,9,0,131,197,140,180,107,210,6,0,134,197,151,217,212,243,6,0,135,197,160,219,237,231,6,0,137,69,131,29,66,223,6,0,137,69,131,29,38,98,7,0,137,69,131,29,227,108,7,0,137,69,131,29,33,153,7,0,137,69,131,29,67,153,7,0,137,69,108,233,216,182,9,0,137,69,108,233,246,182,9,0,137,69,108,233,14,183,9,0,138,69,221,230,167,71,7,0,141,69,98,230,80,49,7,0,141,69,98,230,171,49,7,0,144,197,133,210,255,79,8,0,145,69,25,187,20,15,7,0,145,69,247,36,136,58,7,0,148,197,190,117,237,231,6,0,148,197,127,75,178,233,6,0,148,69,253,219,28,69,11,0,149,197,79,118,57,10,7,0,149,69,52,144,80,32,7,0,149,69,92,229,3,239,10,0,150,69,83,110,5,99,8,0,151,197,216,226,151,21,7,0,152,197,177,70,23,172,7,0,153,69,99,80,252,42,7,0,154,197,50,193,218,39,6,0,154,69,22,126,226,43,9,0,154,69,22,126,66,44,9,0,154,69,22,126,167,44,9,0,154,69,22,126,5,45,9,0,154,69,22,126,108,45,9,0,154,69,148,195,123,236,9,0,156,69,192,105,146,235,6,0,158,69,212,193,102,41,7,0,158,69,212,193,120,204,7,0,159,69,141,254,38,98,7,0,159,69,227,137,139,158,8,0,159,69,227,137,224,163,8,0,160,69,6,152,197,253,6,0,160,69,55,185,237,73,7,0,161,69,69,237,160,234,8,0,161,69,69,237,175,235,8,0,161,69,167,4,205,109,10,0,163,69,169,134,246,213,5,0,163,69,223,242,123,236,9,0,163,69,105,3,254,59,10,0,164,197,98,127,237,73,7,0,165,197,211,158,34,50,6,0,165,69,107,136,253,208,8,0,165,69,107,136,22,211,8,0,166,69,165,75,153,143,6,0,166,69,154,191,90,175,8,0,166,69,154,191,74,176,8,0,167,69,62,192,182,95,6,0,168,197,29,33,217,62,7,0,170,197,66,97,212,243,6,0,170,197,66,97,152,111,7,0,170,197,66,97,62,124,7,0,170,197,198,148,120,187,8,0,170,197,198,148,151,187,8,0,170,197,66,97,72,166,10,0,170,197,89,195,136,233,10,0,172,197,23,170,120,157,9,0,172,197,23,170,150,157,9,0,174,69,224,45,35,55,6,0,176,69,80,148,54,29,6,0,176,69,107,119,99,31,11,0,178,197,170,48,245,207,6,0,179,197,43,112,129,40,7,0,179,69,38,176,38,98,7,0,179,197,60,167,203,238,7,0,181,197,220,156,29,5,7,0,181,197,47,214,152,111,7,0,181,197,192,211,123,236,9,0,182,197,12,143,2,199,9,0,182,197,12,143,169,199,9,0,182,69,206,103,120,46,11,0,184,69,29,154,59,225,5,0,184,197,252,18,148,216,8,0,184,197,252,18,189,216,8,0,185,197,93,33,71,236,6,0,190,197,116,184,152,111,7,0,190,197,116,184,84,53,8,0,191,197,196,232,117,37,7,0,194,197,4,187,42,192,5,0,195,197,159,144,160,174,6,0,195,69,139,199,12,234,6,0,195,197,159,144,152,111,7,0,195,197,159,144,60,44,8,0,195,197,159,144,175,44,8,0,195,197,159,144,24,45,8,0,195,197,159,144,178,229,9,0,197,69,121,249,71,236,6,0,197,69,138,149,227,108,7,0,203,197,141,196,152,111,7,0,203,197,141,196,84,53,8,0,203,197,110,49,179,222,8,0,203,197,110,49,152,223,8,0,205,69,52,186,171,63,7,0,207,197,146,83,152,111,7,0,208,69,239,142,139,65,6,0,209,69,93,170,153,11,7,0,209,69,93,170,135,13,7,0,211,69,218,83,118,0,7,0,211,197,131,174,115,216,10,0,212,197,234,211,151,21,7,0,213,69,170,17,123,236,9,0,213,197,102,18,123,236,9,0,218,197,94,26,37,197,5,0,219,197,167,28,236,51,7,0,222,69,246,252,233,225,5,0,222,197,252,202,141,195,8,0,222,197,252,202,112,196,8,0,222,197,252,202,75,197,8,0,223,197,105,78,135,7,6,0,223,197,105,78,52,88,6,0,223,197,105,78,153,11,7,0,223,197,105,78,135,13,7,0,223,197,36,36,243,69,7,0,223,69,39,34,224,146,8,0,223,69,39,34,132,150,8,0,224,69,126,98,236,213,6,0,225,197,32,36,100,228,6,0,225,197,126,115,171,63,7,0,226,197,29,244,175,65,6,0,227,69,120,21,153,207,8,0,227,69,120,21,44,208,8,0,227,69,138,231,28,68,9,0,227,69,138,231,215,68,9,0,230,197,14,78,191,167,6,0,230,69,189,132,170,10,11,0,231,69,104,220,249,154,8,0,231,69,104,220,148,155,8,0,231,69,104,220,52,156,8,0,234,197,97,3,100,123,6,0,234,197,97,3,48,225,6,0,237,69,229,250,0,203,6,0,238,69,127,44,21,36,7,0,239,197,228,28,138,115,8,0,239,197,228,28,117,124,8,0,239,197,228,28,105,133,8,0,241,69,227,40,138,115,8,0,241,69,227,40,117,124,8,0,241,69,227,40,105,133,8,0,242,197,113,248,194,191,7,0,245,197,237,32,11,9,7,0,246,69,135,2,249,28,8,0,248,197,156,199,156,31,7,0,248,69,57,50,124,59,8,0,248,69,77,14,123,236,9,0,249,69,18,112,139,158,8,0,249,69,18,112,224,163,8,0,250,197,2,128,212,243,6,0,253,197,120,241,225,244,7,0,253,69,207,10,194,202,10,0,0,70,139,220,103,46,7,0,0,70,244,20,113,39,11,0,0,70,104,137,229,69,11,0,1,70,72,49,78,203,8,0,3,198,21,199,38,98,7,0,3,198,204,132,233,174,10,0,4,198,11,21,102,223,6,0,6,198,184,149,113,232,6,0,6,70,83,228,62,124,7,0,9,70,171,122,27,65,6,0,13,198,229,188,197,56,6,0,13,70,191,125,212,243,6,0,13,70,106,0,197,125,10,0,16,198,204,6,254,138,9,0,16,198,204,6,42,139,9,0,18,70,51,21,138,115,10,0,18,198,127,168,81,197,10,0,19,70,211,4,152,111,7,0,19,70,211,4,206,62,8,0,19,70,211,4,99,63,8,0,19,70,211,4,4,64,8,0,19,70,211,4,73,218,9,0,20,70,153,162,247,214,6,0,20,70,5,12,217,68,10,0,21,198,59,113,249,28,8,0,23,198,84,247,49,200,6,0,23,70,43,215,123,236,9,0,25,198,25,244,224,146,8,0,25,198,25,244,132,150,8,0,35,198,159,73,37,65,8,0,38,198,165,107,80,32,7,0,40,198,9,53,212,243,6,0,40,198,144,1,180,28,7,0,41,198,146,77,139,158,8,0,41,198,146,77,224,163,8,0,42,198,118,253,132,18,9,0,42,198,118,253,211,18,9,0,42,198,118,253,49,19,9,0,42,198,118,253,130,19,9,0,45,70,56,44,102,223,6,0,45,70,219,86,71,236,6,0,46,70,255,176,86,209,6,0,49,70,231,242,152,111,7,0,53,70,43,105,78,47,11,0,54,70,180,92,114,243,8,0,54,70,180,92,37,244,8,0,56,70,129,19,197,253,6,0,58,70,103,142,136,58,7,0,59,198,49,18,247,55,7,0,60,70,70,91,1,62,9,0,60,70,70,91,42,62,9,0,60,70,70,91,88,62,9,0,60,70,70,91,149,62,9,0,60,70,70,91,194,62,9,0,60,70,70,91,237,62,9,0,60,70,70,91,32,63,9,0,60,198,240,143,135,90,9,0,60,198,240,143,124,91,9,0,61,198,200,211,121,48,6,0,61,198,66,116,124,222,6,0,61,198,137,116,189,73,8,0,61,198,137,116,247,73,8,0,69,198,223,145,4,189,6,0,70,198,5,83,22,142,6,0,73,198,53,39,255,124,6,0,73,198,105,143,71,236,6,0,73,198,160,63,139,158,8,0,73,198,160,63,224,163,8,0,73,70,253,158,255,179,8,0,73,70,253,158,110,180,8,0,74,198,207,28,34,10,10,0,79,70,228,117,212,243,6,0,80,198,101,36,103,203,10,0,82,70,102,218,139,158,8,0,82,70,102,218,224,163,8,0,84,198,25,121,68,202,6,0,89,70,73,183,254,243,5,0,89,70,73,183,153,89,7,0,89,70,92,197,78,47,11,0,90,70,103,58,87,71,8,0,90,198,207,247,60,60,9,0,91,198,206,168,220,150,7,0,91,198,206,168,212,218,9,0,91,198,206,168,9,219,9,0,91,198,206,168,69,219,9,0,94,70,65,161,80,32,7,0,96,70,241,96,142,201,7,0,97,70,86,226,231,92,10,0,99,70,179,94,52,223,5,0,99,198,163,229,152,111,7,0,99,198,163,229,84,53,8,0,100,70,103,171,139,158,8,0,100,70,103,171,224,163,8,0,102,70,36,253,227,108,7,0,102,70,36,253,138,115,8,0,102,70,36,253,117,124,8,0,102,70,36,253,105,133,8,0,103,198,239,196,39,29,11,0,104,198,169,150,117,79,7,0,107,198,194,127,34,71,6,0,109,198,207,127,100,104,10,0,110,198,201,148,38,98,7,0,111,70,231,242,138,115,8,0,111,70,231,242,117,124,8,0,111,70,231,242,105,133,8,0,113,198,182,18,237,73,7,0,117,198,124,220,123,236,9,0,117,70,209,137,219,71,11,0,119,198,192,196,204,9,8,0,120,198,116,172,194,211,6,0,120,198,243,33,224,146,8,0,120,198,243,33,132,150,8,0,121,198,43,15,253,208,8,0,121,198,43,15,22,211,8,0,122,198,179,194,138,115,8,0,122,198,179,194,117,124,8,0,122,198,179,194,105,133,8,0,122,198,63,221,170,10,11,0,125,70,153,8,117,37,7,0,126,198,104,203,138,115,8,0,126,198,104,203,117,124,8,0,126,198,104,203,105,133,8,0,126,70,115,40,117,91,10,0,127,198,77,132,219,229,10,0,129,70,72,76,98,82,10,0,130,198,125,216,91,147,7,0,130,198,34,253,182,0,8,0,132,198,82,182,213,228,6,0,134,198,138,111,89,133,6,0,135,198,8,255,197,66,6,0,141,198,79,160,156,1,7,0,142,198,247,38,222,228,10,0,144,198,93,59,254,243,5,0,144,198,93,59,153,89,7,0,148,198,246,177,153,11,7,0,148,198,246,177,135,13,7,0,148,70,211,26,223,24,11,0,149,198,79,67,21,36,7,0,150,70,64,135,39,91,10,0,158,198,160,175,212,243,6,0,159,70,33,138,102,104,6,0,160,70,214,173,234,36,7,0,160,70,115,171,106,89,11,0,164,198,123,22,84,21,8,0,167,198,33,193,194,35,10,0,167,198,33,193,14,36,10,0,168,70,82,28,212,243,6,0,169,198,133,57,212,243,6,0,171,70,60,56,254,243,5,0,171,70,60,56,153,89,7,0,171,70,138,39,81,239,8,0,171,70,138,39,40,240,8,0,172,70,212,23,11,9,7,0,173,198,122,119,140,18,6,0,174,198,29,96,112,5,10,0,174,198,29,96,28,6,10,0,176,198,64,66,117,79,7,0,176,70,215,83,152,111,7,0,176,70,215,83,237,158,9,0,176,70,181,166,245,28,10,0,176,70,181,166,145,31,10,0,176,70,113,63,55,114,10,0,177,70,117,196,69,238,8,0,177,70,117,196,138,238,8,0,177,70,117,196,214,238,8,0,178,70,49,190,243,206,9,0,178,70,49,190,42,207,9,0,178,70,49,190,98,207,9,0,187,70,103,168,219,210,7,0,189,70,69,248,237,73,7,0,189,70,157,38,4,100,8,0,189,70,157,38,108,100,8,0,189,198,184,54,97,70,11,0,190,70,152,1,84,21,8,0,191,198,22,96,217,31,6,0,194,70,87,71,139,158,8,0,194,70,87,71,224,163,8,0,195,70,251,247,224,146,8,0,195,70,251,247,132,150,8,0,195,70,31,13,139,158,8,0,195,70,31,13,224,163,8,0,197,198,13,189,152,111,7,0,197,198,13,189,206,62,8,0,197,198,13,189,99,63,8,0,197,198,13,189,4,64,8,0,197,198,13,189,73,218,9,0,198,198,203,159,0,98,6,0,201,70,183,169,129,47,8,0,201,198,161,198,139,158,8,0,201,198,161,198,224,163,8,0,201,198,71,192,174,234,10,0,201,198,57,130,235,245,10,0,205,198,117,37,112,121,6,0,205,198,189,129,102,245,10,0,206,198,236,225,139,252,8,0,206,198,236,225,171,252,8,0,206,198,236,225,207,252,8,0,206,70,239,233,73,186,10,0,212,198,79,197,139,158,8,0,212,198,79,197,224,163,8,0,213,70,21,237,103,170,8,0,213,70,21,237,188,170,8,0,213,198,185,60,253,208,8,0,213,198,185,60,22,211,8,0,214,198,177,79,85,90,11,0,215,198,224,138,167,107,7,0,215,198,224,138,212,123,7,0,216,198,147,190,212,243,6,0,218,70,221,210,191,233,5,0,218,70,27,245,57,10,7,0,220,70,169,116,81,239,8,0,220,70,169,116,40,240,8,0,222,198,115,250,239,132,7,0,222,198,173,51,219,210,7,0,223,70,241,56,241,155,10,0,225,70,137,10,113,237,8,0,225,70,137,10,144,237,8,0,226,198,183,161,250,245,8,0,226,198,183,161,20,246,8,0,229,70,121,148,220,48,6,0,229,70,139,203,85,73,11,0,235,70,141,248,117,79,7,0,235,198,28,223,124,10,9,0,236,198,218,223,95,0,10,0,236,198,218,223,200,0,10,0,238,70,112,168,53,58,10,0,242,198,181,148,34,72,6,0,242,70,170,5,179,222,8,0,242,70,170,5,152,223,8,0,242,70,128,59,30,60,10,0,243,70,39,22,58,0,10,0,244,198,157,93,251,134,10,0,245,198,4,138,107,28,7,0,246,70,80,74,14,12,8,0,246,198,181,196,228,109,9,0,246,198,181,196,248,110,9,0,247,198,15,232,63,73,11,0,248,198,155,123,236,51,7,0,248,70,246,179,38,98,7,0,250,70,123,232,130,227,6,0,251,198,190,223,221,38,10,0,251,198,190,223,62,40,10,0,253,70,224,46,13,32,9,0,253,70,224,46,195,32,9,0,3,199,173,87,66,230,6,0,5,199,47,111,194,59,10,0,6,71,175,254,78,113,6,0,7,199,67,55,31,35,9,0,7,199,67,55,57,35,9,0,7,199,67,55,85,35,9,0,13,199,119,27,77,82,10,0,14,71,40,231,149,39,6,0,14,71,40,231,35,28,7,0,17,199,85,144,170,112,10,0,19,71,112,145,71,236,6,0,21,199,254,18,213,228,6,0,24,199,144,125,57,189,6,0,24,71,9,124,232,191,8,0,24,71,9,124,162,193,8,0,25,71,215,203,113,47,7,0,25,71,215,203,88,179,10,0,26,199,158,201,151,191,9,0,26,199,158,201,189,191,9,0,27,199,58,15,219,1,7,0,29,71,100,2,253,208,8,0,29,71,100,2,22,211,8,0,30,71,251,206,180,28,7,0,36,71,193,148,12,234,6,0,37,199,229,20,166,210,10,0,42,199,119,227,72,204,9,0,43,71,137,24,240,226,6,0,44,71,80,203,213,200,5,0,45,71,62,167,139,158,8,0,45,71,62,167,224,163,8,0,48,199,62,122,174,117,10,0,49,199,128,213,22,62,10,0,51,71,214,173,29,5,7,0,52,199,164,68,179,181,7,0,53,199,113,244,155,67,7,0,53,199,173,95,158,69,7,0,53,199,173,95,202,69,7,0,55,199,214,114,200,197,5,0,55,199,214,114,248,98,6,0,58,71,113,137,87,24,7,0,59,71,101,158,40,217,8,0,59,71,101,158,209,217,8,0,60,199,37,229,109,172,9,0,60,199,37,229,178,173,9,0,60,199,37,229,250,174,9,0,62,71,215,177,246,205,8,0,62,71,215,177,155,206,8,0,67,199,222,75,179,17,7,0,67,199,222,75,23,58,10,0,68,71,74,189,237,73,7,0,68,199,239,245,152,111,7,0,68,199,239,245,18,126,7,0,68,199,239,245,57,126,7,0,68,199,232,103,249,154,8,0,68,199,232,103,148,155,8,0,68,199,232,103,52,156,8,0,70,199,133,45,117,37,7,0,71,199,189,191,91,196,5,0,71,71,251,95,110,235,10,0,71,71,251,95,126,235,10,0,72,71,107,73,206,106,6,0,73,71,81,242,138,115,8,0,73,71,81,242,117,124,8,0,73,71,81,242,105,133,8,0,74,71,183,169,153,11,7,0,74,71,183,169,135,13,7,0,77,71,246,7,117,79,7,0,81,71,233,54,14,73,10,0,81,71,233,54,29,73,10,0,87,199,46,170,167,107,7,0,87,199,46,170,27,118,7,0,87,199,95,187,255,179,8,0,87,199,95,187,110,180,8,0,89,71,80,135,179,222,8,0,89,71,80,135,152,223,8,0,95,199,38,173,117,73,6,0,97,199,60,163,160,234,8,0,97,199,60,163,175,235,8,0,103,199,180,17,147,88,11,0,104,199,203,15,71,236,6,0,105,71,94,139,152,111,7,0,105,71,134,249,88,129,7,0,105,71,94,139,175,155,10,0,107,71,55,243,137,128,6,0,107,199,214,181,75,1,9,0,107,199,214,181,154,2,9,0,107,199,214,181,235,3,9,0,107,199,214,181,65,5,9,0,109,71,194,45,97,71,10,0,110,71,79,69,80,32,7,0,110,71,39,141,138,115,8,0,110,71,39,141,117,124,8,0,110,71,39,141,105,133,8,0,111,199,173,196,240,226,6,0,111,199,173,196,9,74,10,0,111,71,188,52,179,120,10,0,113,199,197,176,37,173,7,0,114,71,21,150,234,195,5,0,118,71,91,108,58,148,10,0,124,199,129,143,206,87,9,0,124,199,129,143,25,88,9,0,125,199,209,150,132,42,8,0,127,199,135,48,224,146,8,0,127,199,135,48,132,150,8,0,128,199,112,40,224,146,8,0,128,199,112,40,132,150,8,0,129,199,104,0,3,84,6,0,131,199,230,17,27,119,9,0,131,199,230,17,102,119,9,0,132,71,100,141,90,204,6,0,135,199,1,178,212,243,6,0,138,199,50,204,75,1,9,0,138,199,50,204,154,2,9,0,138,199,50,204,235,3,9,0,139,199,248,107,117,79,7,0,141,71,29,250,38,98,7,0,141,199,23,82,218,71,10,0,141,199,23,82,29,97,10,0,141,71,213,107,127,171,10,0,141,199,146,134,80,187,10,0,143,199,183,3,230,215,6,0,145,71,224,72,123,236,9,0,145,199,98,244,149,83,11,0,146,199,135,248,136,58,7,0,146,199,161,194,155,66,10,0,148,199,128,101,204,239,10,0,150,199,196,232,71,236,6,0,152,199,86,115,63,242,7,0,152,71,157,83,76,16,9,0,152,71,157,83,146,16,9,0,154,199,165,247,71,236,6,0,155,199,227,47,132,215,6,0,155,199,20,193,38,98,7,0,157,71,103,27,145,79,9,0,157,71,103,27,166,79,9,0,157,71,49,130,134,124,10,0,159,199,245,217,139,158,8,0,159,199,245,217,224,163,8,0,163,71,181,148,138,115,8,0,163,71,181,148,117,124,8,0,163,71,181,148,105,133,8,0,165,71,210,200,224,146,8,0,165,71,210,200,132,150,8,0,169,71,151,23,101,78,11,0,170,199,176,230,117,37,7,0,177,199,135,114,64,37,6,0,179,199,91,226,161,201,8,0,179,199,91,226,217,201,8,0,180,199,131,193,10,38,8,0,182,71,213,191,224,251,6,0,183,199,233,10,53,66,7,0,183,71,33,237,123,236,9,0,185,71,169,18,71,236,6,0,185,199,160,68,117,79,7,0,189,199,175,230,227,214,5,0,189,71,57,65,245,28,10,0,189,71,57,65,145,31,10,0,196,199,211,54,2,199,9,0,196,199,211,54,169,199,9,0,197,71,95,46,193,167,9,0,197,71,95,46,37,168,9,0,198,71,239,127,177,81,6,0,198,199,23,152,63,25,7,0,199,71,47,152,52,204,6,0,200,199,244,147,47,1,7,0,200,199,244,147,152,111,7,0,202,199,16,244,149,132,10,0,204,71,224,83,112,78,6,0,204,199,78,205,149,134,6,0,204,71,197,106,41,162,6,0,204,71,197,106,171,206,6,0,205,71,145,93,151,21,7,0,205,199,187,254,171,63,7,0,208,71,231,242,224,146,8,0,208,71,231,242,132,150,8,0,209,199,182,203,57,171,8,0,209,199,182,203,133,172,8,0,209,199,182,203,211,173,8,0,210,199,205,131,38,98,7,0,210,199,181,21,96,175,7,0,211,71,157,38,156,205,6,0,213,199,180,230,33,210,6,0,213,199,16,13,107,210,6,0,214,71,57,202,228,109,9,0,214,71,57,202,248,110,9,0,215,71,53,176,38,217,6,0,218,199,215,72,135,252,6,0,218,199,215,72,194,252,6,0,220,71,118,51,249,209,5,0,225,71,220,251,237,73,7,0,225,71,213,78,150,170,10,0,226,199,50,90,138,115,8,0,226,199,50,90,117,124,8,0,226,199,50,90,105,133,8,0,226,199,78,179,224,146,8,0,226,199,78,179,132,150,8,0,229,199,94,188,50,51,7,0,230,71,36,168,112,27,7,0,230,71,36,168,38,98,7,0,231,199,150,105,233,67,11,0,234,199,102,209,237,73,7,0,237,199,5,201,193,167,9,0,237,199,5,201,37,168,9,0,239,71,213,151,177,37,6,0,240,199,151,111,117,79,7,0,240,199,198,101,215,16,10,0,240,199,198,101,135,17,10,0,243,199,188,77,222,228,10,0,244,199,79,251,20,15,7,0,244,199,79,251,179,17,7,0,245,71,108,20,227,229,6,0,245,71,157,38,212,243,6,0,246,71,233,59,219,1,7,0,251,71,81,63,254,243,5,0,251,71,81,63,153,89,7,0,252,199,102,2,106,67,6,0,252,199,102,2,167,177,7,0,252,199,102,2,218,177,7,0,252,199,102,2,12,178,7,0,0,200,26,84,237,73,7,0,1,200,29,183,113,232,6,0,2,200,67,59,179,222,8,0,2,200,67,59,152,223,8,0,5,72,112,167,212,243,6,0,5,72,146,134,153,207,8,0,5,72,146,134,44,208,8,0,6,72,165,122,22,62,10,0,9,72,188,109,183,162,10,0,9,72,5,85,93,240,10,0,13,72,190,175,152,229,6,0,14,200,143,100,245,28,10,0,14,200,143,100,145,31,10,0,15,72,47,254,118,26,7,0,19,72,155,2,141,238,5,0,19,72,220,241,110,35,11,0,20,200,209,80,226,206,6,0,25,72,82,232,50,240,10,0,27,200,44,209,254,243,5,0,27,72,180,54,20,15,7,0,27,72,180,54,179,17,7,0,27,200,214,66,103,46,7,0,27,200,44,209,153,89,7,0,35,200,102,139,103,46,7,0,36,72,110,33,138,115,8,0,36,72,110,33,117,124,8,0,36,72,110,33,105,133,8,0,36,72,183,131,203,169,10,0,37,72,40,253,71,236,6,0,41,72,234,149,203,152,6,0,41,72,215,203,161,46,10,0,41,72,215,203,238,46,10,0,42,200,34,176,144,246,5,0,42,200,243,125,104,244,9,0,42,200,243,125,251,244,9,0,42,200,243,125,146,245,9,0,42,72,146,247,205,161,10,0,43,72,75,111,38,179,10,0,44,72,63,139,117,79,7,0,49,72,165,166,167,8,7,0,52,72,117,81,219,1,7,0,53,200,202,128,230,215,6,0,53,72,112,84,208,34,9,0,53,72,112,84,249,34,9,0,53,200,135,105,19,94,10,0,54,200,97,72,212,200,6,0,55,72,61,22,224,146,8,0,55,72,61,22,132,150,8,0,56,72,19,239,57,243,10,0,58,72,179,209,219,157,10,0,60,72,208,193,90,53,7,0,60,200,19,51,136,58,7,0,62,72,116,7,80,167,9,0,62,72,116,7,37,168,9,0,62,200,236,209,245,28,10,0,62,200,236,209,145,31,10,0,63,72,249,114,90,53,7,0,69,72,2,43,139,158,8,0,69,72,2,43,224,163,8,0,69,200,214,34,213,201,10,0,70,72,180,81,48,207,6,0,70,200,4,9,130,227,6,0,71,72,253,98,71,236,6,0,72,72,254,79,53,66,7,0,72,200,143,156,228,109,9,0,72,200,143,156,248,110,9,0,73,72,234,2,232,251,9,0,73,72,234,2,176,252,9,0,74,72,146,205,70,5,8,0,75,200,166,142,118,226,8,0,75,200,166,142,72,228,8,0,76,72,157,38,110,167,6,0,78,72,160,133,166,59,6,0,83,72,140,200,212,243,6,0,87,200,35,86,153,11,7,0,87,200,35,86,104,185,8,0,87,200,114,47,220,45,11,0,88,72,9,146,25,108,6,0,88,72,62,5,212,243,6,0,90,200,112,8,38,98,7,0,92,72,14,12,138,115,8,0,92,72,14,12,117,124,8,0,92,72,14,12,105,133,8,0,92,72,226,200,126,122,10,0,93,200,89,220,236,51,7,0,94,200,150,58,118,226,8,0,94,200,150,58,72,228,8,0,95,200,99,35,212,243,6,0,95,200,98,244,66,8,8,0,95,200,98,244,76,89,11,0,101,72,214,148,162,153,6,0,104,200,80,143,193,190,5,0,105,200,71,159,133,220,6,0,106,72,70,211,74,38,6,0,113,72,137,251,167,71,7,0,115,200,175,75,171,63,7,0,117,200,250,237,203,125,6,0,117,72,203,138,237,142,7,0,125,200,234,33,254,254,6,0,125,200,119,226,171,63,7,0,125,200,223,110,94,44,11,0,126,72,153,70,180,28,7,0,126,200,163,111,95,204,10,0,127,200,122,218,191,74,10,0,127,72,35,183,195,247,10,0,132,72,215,203,232,251,9,0,132,72,215,203,176,252,9,0,133,200,146,14,99,209,7,0,136,200,66,202,245,207,6,0,136,72,206,38,71,236,6,0,136,72,228,11,22,35,7,0,138,200,202,227,136,58,7,0,150,200,240,237,71,236,6,0,154,72,218,80,151,21,7,0,155,72,34,62,224,146,8,0,155,72,34,62,132,150,8,0,156,72,66,245,118,11,7,0,157,200,188,202,18,209,10,0,158,200,26,20,20,15,7,0,158,200,113,18,38,196,10,0,159,200,124,147,117,79,7,0,159,72,229,167,135,90,9,0,159,72,229,167,124,91,9,0,160,200,46,24,212,243,6,0,160,200,113,218,42,252,6,0,161,200,49,34,91,17,9,0,161,200,49,34,177,17,9,0,161,200,49,34,1,18,9,0,165,72,241,78,156,31,7,0,167,72,249,96,185,2,6,0,168,200,46,0,99,66,8,0,168,200,46,0,218,67,8,0,168,200,46,0,69,68,8,0,171,72,142,7,71,236,6,0,172,200,107,136,3,239,10,0,172,200,107,136,54,239,10,0,174,72,139,27,201,206,5,0,175,72,108,77,38,98,7,0,175,72,217,232,107,23,10,0,175,72,217,232,195,23,10,0,177,72,40,144,133,220,6,0,177,200,120,60,236,51,7,0,177,72,189,111,159,136,10,0,178,200,254,211,48,138,7,0,179,200,13,107,117,79,7,0,179,200,154,199,138,115,8,0,179,200,154,199,117,124,8,0,179,200,154,199,105,133,8,0,181,72,132,248,71,236,6,0,182,72,170,78,124,45,8,0,182,72,170,78,1,46,8,0,182,72,170,78,123,46,8,0,182,72,87,227,139,158,8,0,182,72,87,227,224,163,8,0,184,200,224,142,70,61,11,0,186,72,76,114,171,63,7,0,186,72,219,1,148,49,11,0,189,200,32,199,68,145,6,0,189,200,208,221,154,4,7,0,193,72,180,222,72,229,5,0,194,200,170,191,34,240,5,0,195,200,106,90,68,202,6,0,195,72,224,36,64,211,9,0,195,72,224,36,116,211,9,0,196,200,167,127,44,90,10,0,196,72,253,145,14,250,10,0,197,72,173,214,235,78,10,0,203,200,169,33,253,208,8,0,203,200,169,33,22,211,8,0,205,72,230,63,236,110,6,0,205,200,187,161,71,236,6,0,205,72,48,30,14,72,8,0,210,72,216,42,11,131,10,0,215,200,56,188,219,210,7,0,215,200,49,149,160,234,8,0,215,200,49,149,175,235,8,0,216,200,89,91,224,146,8,0,216,200,89,91,132,150,8,0,218,72,70,225,52,204,6,0,223,72,88,80,123,236,9,0,224,200,14,23,71,236,6,0,229,72,7,84,164,178,6,0,234,72,43,62,212,243,6,0,235,72,128,182,136,58,7,0,235,200,84,249,237,73,7,0,236,200,225,9,103,46,7,0,239,72,120,15,73,29,8,0,240,72,3,126,71,236,6,0,240,72,119,188,181,145,10,0,242,72,171,236,5,148,7,0,244,200,126,112,204,36,6,0,244,72,202,244,219,1,7,0,245,72,55,127,217,140,7,0,245,200,61,198,51,241,8,0,245,200,61,198,198,241,8,0,248,72,196,178,78,203,8,0,251,200,176,3,219,210,7,0,252,72,172,28,117,79,7,0,255,200,232,234,234,232,5,0,0,73,106,114,56,92,7,0,5,201,82,230,38,98,7,0,5,73,119,114,197,230,8,0,5,73,119,114,235,230,8,0,6,73,94,132,33,235,6,0,6,73,254,69,13,32,9,0,6,73,254,69,195,32,9,0,6,201,226,220,30,171,9,0,6,201,169,55,182,191,10,0,12,73,31,203,203,125,6,0,13,201,124,32,212,77,9,0,13,201,124,32,34,78,9,0,14,201,249,51,207,21,11,0,15,201,89,166,147,197,7,0,19,201,127,171,72,235,5,0,19,201,40,71,138,115,8,0,19,201,40,71,117,124,8,0,19,201,40,71,105,133,8,0,20,73,5,77,244,27,9,0,21,201,44,114,88,247,10,0,22,201,209,186,166,220,8,0,22,201,209,186,241,220,8,0,24,201,20,12,155,67,7,0,28,73,218,29,204,36,6,0,31,73,181,230,136,58,7,0,32,73,196,81,224,146,8,0,32,73,196,81,132,150,8,0,33,73,42,142,212,243,6,0,34,201,223,67,94,178,10,0,36,73,157,38,152,229,6,0,36,73,172,242,163,61,10,0,36,73,157,38,9,140,10,0,37,73,217,147,73,72,6,0,38,73,18,48,71,236,6,0,42,73,156,38,111,72,7,0,42,73,156,38,196,72,7,0,43,73,52,78,119,225,6,0,43,201,35,237,90,53,7,0,43,73,60,211,253,208,8,0,43,73,60,211,22,211,8,0,43,201,19,241,13,137,9,0,43,201,19,241,37,137,9,0,44,73,213,1,203,211,5,0,44,201,189,210,79,230,8,0,44,201,189,210,114,230,8,0,44,73,213,151,242,244,10,0,44,73,213,151,46,245,10,0,45,73,75,233,104,246,5,0,45,201,165,96,221,38,10,0,45,201,165,96,62,40,10,0,46,201,134,54,136,58,7,0,46,73,166,109,136,58,7,0,47,201,236,107,254,243,5,0,47,201,236,107,153,89,7,0,54,201,30,46,184,164,6,0,57,73,154,60,113,232,6,0,58,201,240,149,2,23,7,0,59,73,28,213,30,171,9,0,60,73,6,159,123,236,9,0,63,201,204,179,212,243,6,0,63,73,226,25,171,63,7,0,64,73,72,6,141,195,8,0,64,73,72,6,112,196,8,0,64,73,72,6,75,197,8,0,70,73,26,19,160,222,5,0,77,201,52,185,212,243,6,0,78,73,123,188,153,11,7,0,78,73,123,188,135,13,7,0,79,201,204,76,71,95,7,0,82,201,13,122,183,160,6,0,83,201,173,4,138,115,8,0,83,201,173,4,117,124,8,0,83,201,173,4,105,133,8,0,85,201,236,71,160,234,8,0,85,201,236,71,175,235,8,0,86,73,124,204,123,236,9,0,87,73,56,123,180,144,8,0,87,73,56,123,67,145,8,0,88,73,194,23,237,73,7,0,89,201,198,33,121,193,5,0,89,201,136,94,211,23,6,0,89,201,198,33,208,224,10,0,89,201,198,33,144,225,10,0,90,201,150,228,22,92,11,0,92,73,34,83,99,66,8,0,92,73,34,83,69,68,8,0,92,73,34,83,8,69,8,0,95,201,176,131,75,1,9,0,95,201,176,131,154,2,9,0,95,201,176,131,235,3,9,0,95,201,176,131,65,5,9,0,96,73,85,210,45,53,6,0,98,73,175,37,124,29,8,0,99,73,252,99,138,115,8,0,99,73,252,99,117,124,8,0,99,73,252,99,105,133,8,0,101,201,178,92,224,146,8,0,101,201,178,92,132,150,8,0,103,73,89,149,194,35,10,0,103,73,89,149,14,36,10,0,104,201,156,238,228,185,5,0,104,201,255,67,118,226,8,0,104,201,255,67,72,228,8,0,104,73,243,23,160,234,8,0,104,73,243,23,175,235,8,0,108,201,25,220,117,79,7,0,108,73,138,63,179,222,8,0,108,73,138,63,152,223,8,0,115,201,22,106,38,98,7,0,118,201,243,54,71,236,6,0,118,201,221,104,117,79,7,0,119,201,86,71,180,28,7,0,119,201,237,130,126,37,11,0,123,201,38,73,151,21,7,0,123,201,3,241,138,115,8,0,123,201,3,241,117,124,8,0,123,201,3,241,105,133,8,0,124,73,182,161,38,98,7,0,125,73,56,45,250,90,6,0,125,73,246,5,212,243,6,0,127,201,188,91,115,51,6,0,128,73,58,134,245,6,10,0,128,73,58,134,14,7,10,0,129,73,203,253,29,204,8,0,129,73,203,253,6,205,8,0,131,73,171,55,253,241,5,0,131,73,125,254,117,79,7,0,136,201,74,64,90,53,7,0,138,201,97,146,38,98,7,0,141,73,200,44,163,201,6,0,141,73,12,18,252,209,6,0,142,73,69,20,199,87,6,0,143,201,38,128,237,73,7,0,144,201,132,222,252,56,8,0,144,201,132,222,164,78,8,0,146,201,151,58,68,92,10,0,148,201,251,209,4,99,10,0,150,73,31,248,117,37,7,0,153,73,107,181,217,62,7,0,155,73,131,80,57,10,7,0,155,73,187,85,65,172,7,0,158,201,90,138,119,75,6,0,158,201,90,138,153,75,6,0,161,201,199,70,169,220,5,0,162,73,40,208,138,115,8,0,162,73,40,208,117,124,8,0,162,73,40,208,105,133,8,0,163,73,137,190,210,224,6,0,163,201,60,68,138,115,8,0,163,201,60,68,117,124,8,0,163,201,60,68,105,133,8,0,165,201,163,217,227,108,7,0,165,73,44,195,54,239,10,0,166,73,8,250,91,65,6,0,166,201,137,61,121,217,6,0,167,201,195,47,18,133,10,0,168,201,242,252,138,115,8,0,168,201,242,252,117,124,8,0,168,201,242,252,105,133,8,0,168,73,109,5,255,179,8,0,168,73,109,5,110,180,8,0,169,201,63,182,139,158,8,0,169,201,63,182,224,163,8,0,172,201,58,243,197,253,6,0,174,201,188,11,224,146,8,0,174,201,188,11,132,150,8,0,174,73,213,87,228,109,9,0,174,73,213,87,248,110,9,0,177,201,38,91,38,98,7,0,180,201,1,22,100,71,7,0,181,73,119,200,104,94,9,0,181,73,119,200,133,94,9,0,182,73,248,96,29,5,7,0,184,73,74,35,138,115,8,0,184,73,171,126,138,115,8,0,184,73,74,35,117,124,8,0,184,73,171,126,117,124,8,0,184,73,74,35,105,133,8,0,184,73,171,126,105,133,8,0,186,73,112,158,188,73,7,0,187,201,195,140,5,34,11,0,190,201,76,247,120,222,5,0,190,201,76,247,136,104,6,0,190,201,76,247,118,214,6,0,191,73,122,86,40,217,8,0,191,73,122,86,209,217,8,0,191,73,223,6,13,187,9,0,191,73,223,6,32,187,9,0,191,73,223,6,56,187,9,0,193,73,137,88,125,44,7,0,195,73,148,243,220,12,10,0,195,73,148,243,22,13,10,0,196,73,12,90,139,158,8,0,196,73,12,90,224,163,8,0,196,201,59,78,123,236,9,0,196,201,112,234,123,236,9,0,197,73,18,2,138,115,8,0,197,73,18,2,117,124,8,0,197,73,18,2,105,133,8,0,199,73,231,235,94,222,9,0,199,73,231,235,131,222,9,0,202,73,116,78,138,115,8,0,202,73,116,78,117,124,8,0,202,73,116,78,105,133,8,0,202,201,183,148,224,146,8,0,202,201,183,148,132,150,8,0,204,201,25,179,124,222,6,0,204,201,201,148,113,47,7,0,205,73,71,92,112,27,7,0,207,73,213,158,200,93,10,0,208,201,201,148,154,4,7,0,210,201,160,161,119,133,10,0,212,201,183,148,224,146,8,0,212,201,183,148,132,150,8,0,213,201,185,144,7,220,6,0,214,201,72,23,181,125,6,0,220,73,233,67,114,243,8,0,220,73,233,67,37,244,8,0,222,201,153,65,237,231,6,0,223,201,120,168,22,218,6,0,224,201,67,60,210,216,5,0,224,201,243,91,78,47,11,0,228,201,247,231,247,55,7,0,232,201,215,14,46,43,7,0,232,201,215,14,33,65,7,0,234,73,251,0,128,60,6,0,234,201,75,46,212,57,8,0,234,201,96,205,138,115,8,0,234,201,96,205,117,124,8,0,234,201,96,205,105,133,8,0,234,73,160,8,164,102,10,0,234,201,75,46,119,73,11,0,236,73,223,47,54,102,11,0,240,73,237,242,117,79,7,0,242,201,154,184,82,124,9,0,242,201,154,184,112,124,9,0,242,73,66,163,64,193,9,0,242,201,58,244,71,55,10,0,243,73,175,182,212,243,6,0,246,201,161,255,221,124,6,0,246,201,161,255,72,27,7,0,248,73,197,5,138,115,8,0,248,73,197,5,117,124,8,0,248,73,197,5,105,133,8,0,249,73,64,150,224,251,6,0,251,73,43,216,69,232,10,0,253,201,15,173,224,146,8,0,253,201,15,173,132,150,8,0,253,73,49,174,60,201,10,0,254,201,173,248,50,51,7,0,1,74,231,227,219,1,7,0,5,202,76,177,242,163,10,0,6,202,241,37,212,243,6,0,6,202,122,188,109,172,9,0,6,202,122,188,178,173,9,0,6,202,122,188,250,174,9,0,7,74,247,161,136,58,7,0,10,74,169,44,83,115,9,0,10,74,169,44,115,115,9,0,12,74,118,51,90,53,7,0,14,202,137,42,237,73,7,0,16,74,60,175,12,95,7,0,20,202,109,189,10,164,10,0,24,202,157,159,84,21,8,0,24,202,141,238,218,113,9,0,24,202,141,238,120,114,9,0,26,202,247,216,117,79,7,0,28,202,67,162,203,125,6,0,28,202,198,103,136,58,7,0,29,74,210,11,191,238,10,0,30,202,17,254,149,43,7,0,31,202,199,243,90,53,7,0,31,74,140,231,2,199,9,0,31,74,140,231,169,199,9,0,33,74,25,3,123,236,9,0,34,74,226,124,180,152,10,0,34,74,226,124,201,152,10,0,36,202,228,143,96,254,8,0,36,202,228,143,157,254,8,0,39,74,192,229,167,8,7,0,40,202,204,220,247,55,7,0,40,74,106,137,213,41,10,0,40,74,106,137,87,42,10,0,40,74,181,57,118,109,10,0,43,74,54,151,184,155,6,0,43,74,113,170,219,210,7,0,44,74,106,226,237,73,7,0,45,202,2,183,81,63,7,0,45,74,196,209,22,215,7,0,45,202,195,148,51,214,8,0,45,202,195,148,241,214,8,0,45,202,195,148,169,215,8,0,49,202,106,120,29,69,7,0,49,74,186,180,219,210,7,0,53,202,134,147,138,115,8,0,53,202,134,147,117,124,8,0,53,202,134,147,105,133,8,0,55,74,145,199,22,217,9,0,55,74,145,199,103,217,9,0,56,74,126,146,26,194,7,0,56,74,222,55,138,115,8,0,56,74,222,55,117,124,8,0,56,74,222,55,105,133,8,0,56,202,76,248,200,93,10,0,57,202,120,66,19,21,6,0,57,74,49,142,196,58,6,0,57,74,152,111,151,21,7,0,57,74,49,142,158,3,8,0,62,202,167,39,109,231,6,0,62,74,115,175,29,150,7,0,65,74,71,190,71,236,6,0,67,74,246,184,171,156,6,0,71,74,94,206,151,21,7,0,76,202,68,247,254,254,6,0,76,202,101,244,179,17,7,0,76,202,101,244,245,60,10,0,77,202,41,80,172,175,6,0,77,202,41,80,57,10,7,0,78,74,89,165,187,218,6,0,78,74,137,228,243,6,7,0,78,202,165,116,90,53,7,0,78,74,137,228,232,191,8,0,78,74,137,228,162,193,8,0,79,202,147,190,254,254,6,0,79,202,147,190,181,20,8,0,80,74,98,192,38,98,7,0,83,202,140,184,225,93,7,0,83,202,191,113,5,148,7,0,86,74,110,140,71,236,6,0,86,202,127,145,139,158,8,0,86,202,127,145,224,163,8,0,87,202,242,137,238,28,6,0,87,74,109,174,146,235,6,0,87,74,253,75,20,15,7,0,87,202,242,137,190,232,7,0,87,74,253,75,193,167,9,0,87,74,253,75,37,168,9,0,88,202,102,118,160,100,11,0,94,74,253,166,56,202,10,0,96,74,89,220,27,32,7,0,99,74,86,150,38,98,7,0,99,74,229,200,175,42,8,0,105,202,217,141,228,212,6,0,107,74,94,245,163,84,11,0,108,74,1,101,212,243,6,0,108,202,228,120,16,39,11,0,109,74,177,100,171,135,10,0,113,202,127,63,232,191,8,0,113,202,127,63,162,193,8,0,113,74,242,122,62,89,10,0,116,74,157,37,135,90,9,0,116,74,157,37,124,91,9,0,117,74,5,122,206,87,9,0,117,74,5,122,25,88,9,0,120,74,205,79,178,92,11,0,121,202,0,105,130,227,6,0,121,74,208,236,118,226,8,0,121,74,208,236,72,228,8,0,122,202,166,136,19,242,5,0,122,202,30,148,151,78,9,0,122,202,30,148,188,78,9,0,122,202,30,148,220,78,9,0,122,74,176,11,245,28,10,0,122,74,176,11,145,31,10,0,123,202,24,91,237,222,5,0,123,202,24,91,242,236,5,0,123,74,191,220,101,165,10,0,126,74,215,203,136,58,7,0,126,74,240,108,160,234,8,0,126,74,240,108,175,235,8,0,127,202,133,26,72,202,8,0,127,202,133,26,175,202,8,0,127,74,78,205,161,46,10,0,127,74,78,205,238,46,10,0,129,202,33,239,255,21,11,0,130,74,156,252,95,0,10,0,130,74,156,252,200,0,10,0,131,202,131,85,126,239,5,0,131,202,215,197,153,11,7,0,131,202,215,197,135,13,7,0,131,202,215,197,91,111,7,0,133,74,210,242,101,226,6,0,135,202,46,107,38,98,7,0,140,74,151,81,193,223,6,0,141,202,215,229,138,115,8,0,141,202,215,229,117,124,8,0,141,202,215,229,105,133,8,0,141,202,215,229,141,230,9,0,141,202,215,229,217,230,9,0,146,202,202,76,112,30,7,0,146,202,202,76,144,30,7,0,146,202,141,245,138,115,8,0,146,202,141,245,117,124,8,0,146,202,141,245,105,133,8,0,147,74,201,167,21,36,7,0,150,202,191,161,237,73,7,0,152,202,52,129,18,96,6,0,152,202,108,247,247,55,7,0,154,74,42,5,104,244,9,0,154,74,42,5,251,244,9,0,154,74,42,5,146,245,9,0,156,202,147,87,72,216,10,0,157,74,46,51,9,93,11,0,161,202,185,131,113,47,7,0,164,202,7,252,54,233,6,0,164,74,37,2,138,115,8,0,164,74,37,2,117,124,8,0,164,74,37,2,105,133,8,0,167,74,187,251,212,243,6,0,169,202,89,27,80,32,7,0,171,202,36,87,84,21,8,0,172,74,16,193,155,67,7,0,172,74,191,70,75,1,9,0,172,74,191,70,154,2,9,0,172,74,191,70,235,3,9,0,172,74,191,70,65,5,9,0,174,74,215,21,75,1,9,0,174,74,215,21,154,2,9,0,174,74,215,21,235,3,9,0,174,74,215,21,65,5,9,0,175,202,132,214,135,90,9,0,175,202,132,214,124,91,9,0,175,74,242,96,97,227,9,0,175,74,242,96,116,227,9,0,175,74,242,96,133,227,9,0,175,74,242,96,28,124,10,0,176,202,244,46,227,108,7,0,177,202,144,243,71,236,6,0,179,202,70,132,138,115,8,0,179,202,70,132,117,124,8,0,179,202,70,132,105,133,8,0,180,74,215,96,85,154,7,0,180,74,215,96,123,154,7,0,181,74,139,238,237,141,10,0,184,202,0,34,123,236,9,0,185,202,170,246,151,21,7,0,185,202,72,195,232,124,10,0,186,202,243,8,139,158,8,0,186,202,243,8,224,163,8,0,187,202,67,103,228,109,9,0,187,202,67,103,248,110,9,0,187,74,215,203,54,179,10,0,190,202,78,57,255,191,6,0,193,74,225,182,237,73,7,0,194,74,238,244,132,215,6,0,197,202,252,123,164,113,8,0,199,74,196,85,139,158,8,0,199,74,196,85,224,163,8,0,200,74,185,207,32,30,7,0,206,74,167,189,197,253,6,0,207,202,39,192,153,207,8,0,207,202,39,192,44,208,8,0,210,202,143,22,78,47,11,0,211,74,109,212,32,218,10,0,214,202,248,200,41,24,7,0,214,74,121,220,133,239,10,0,216,74,160,145,32,27,11,0,218,202,37,159,111,228,10,0,219,74,209,193,245,28,10,0,219,74,209,193,145,31,10,0,220,202,2,126,138,115,8,0,220,202,2,126,117,124,8,0,220,202,2,126,105,133,8,0,221,74,224,151,138,115,8,0,221,74,224,151,117,124,8,0,221,74,224,151,105,133,8,0,222,202,188,50,130,227,6,0,224,74,246,196,146,235,6,0,224,202,172,126,171,49,7,0,230,74,175,182,73,141,10,0,232,74,239,20,212,243,6,0,238,202,105,230,183,213,8,0,238,202,105,230,237,213,8,0,238,202,231,236,30,171,9,0,241,202,180,116,245,28,10,0,241,202,180,116,145,31,10,0,241,74,47,86,59,78,10,0,241,74,47,86,209,87,10,0,242,202,23,225,80,32,7,0,242,202,75,142,176,57,10,0,242,202,75,142,203,57,10,0,243,202,187,73,117,79,7,0,244,74,78,233,106,59,9,0,244,74,78,233,181,59,9,0,246,74,218,39,90,204,6,0,249,202,88,40,91,70,7,0,249,202,144,201,226,154,9,0,249,202,144,201,114,155,9,0,252,74,110,137,232,251,9,0,252,74,110,137,176,252,9,0,253,202,127,6,13,32,9,0,253,202,127,6,195,32,9,0,254,74,102,124,112,27,7,0,255,74,246,224,227,102,11,0,1,75,181,252,133,220,6,0,1,203,93,223,217,31,7,0,1,75,81,242,33,65,7,0,5,203,193,205,212,21,9,0,5,203,193,205,31,22,9,0,5,203,193,205,103,22,9,0,5,203,33,109,123,236,9,0,6,75,146,169,75,1,9,0,6,75,146,169,154,2,9,0,6,75,146,169,235,3,9,0,6,75,146,169,65,5,9,0,7,75,161,153,197,36,7,0,7,203,229,212,91,17,9,0,7,203,229,212,177,17,9,0,7,203,229,212,1,18,9,0,10,203,229,32,117,79,7,0,12,203,146,116,15,233,8,0,12,203,146,116,139,233,8,0,12,203,90,9,109,172,9,0,12,203,90,9,178,173,9,0,12,203,90,9,250,174,9,0,13,75,154,131,44,189,5,0,14,75,197,40,135,115,6,0,15,75,133,223,249,216,7,0,15,75,175,79,30,171,9,0,17,203,246,224,118,226,8,0,17,203,246,224,72,228,8,0,17,203,116,141,207,254,9,0,17,203,116,141,228,254,9,0,18,75,162,251,151,21,7,0,19,75,193,121,128,206,5,0,19,75,193,121,118,214,6,0,19,75,193,121,92,168,10,0,22,75,47,232,160,97,11,0,24,203,201,157,57,10,7,0,25,75,88,34,82,226,5,0,25,75,147,81,50,139,6,0,26,75,135,123,138,115,8,0,26,75,135,123,117,124,8,0,26,75,135,123,105,133,8,0,27,203,172,234,153,11,7,0,27,203,172,234,135,13,7,0,27,203,117,226,237,73,7,0,29,75,191,215,171,39,11,0,30,75,94,125,207,186,5,0,34,75,19,139,255,229,5,0,34,75,19,139,210,199,6,0,34,75,175,230,56,208,6,0,37,203,163,30,100,81,6,0,40,75,175,53,215,13,6,0,42,75,192,183,138,115,8,0,42,75,192,183,117,124,8,0,42,75,192,183,105,133,8,0,43,203,158,61,212,243,6,0,45,75,149,98,103,245,8,0,45,75,149,98,151,245,8,0,45,75,57,162,175,121,10,0,48,75,88,189,74,185,10,0,49,75,128,111,2,23,7,0,49,203,202,127,205,151,9,0,49,203,202,127,199,152,9,0,49,203,202,127,220,153,9,0,52,75,160,2,155,99,11,0,54,203,121,100,51,241,8,0,54,203,121,100,198,241,8,0,58,75,220,114,135,101,8,0,58,75,220,114,206,18,11,0,58,75,220,114,139,20,11,0,59,75,186,106,187,54,8,0,62,75,66,177,94,208,6,0,65,75,175,182,247,55,7,0,67,75,146,160,75,142,9,0,67,75,146,160,201,142,9,0,67,75,146,160,84,143,9,0,67,75,135,150,117,154,10,0,68,203,94,24,115,144,6,0,68,203,94,24,137,144,6,0,68,75,157,86,197,43,7,0,68,75,157,86,30,44,7,0,70,203,64,163,44,193,7,0,70,203,64,163,114,193,7,0,70,203,64,163,180,193,7,0,78,75,103,188,41,24,7,0,80,75,159,251,71,236,6,0,80,75,68,203,80,32,7,0,81,203,63,192,71,236,6,0,81,75,218,198,210,110,7,0,81,75,218,198,177,118,7,0,83,75,33,101,151,21,7,0,84,75,254,238,38,98,7,0,85,75,1,57,104,214,5,0,86,75,225,217,64,193,9,0,86,75,72,69,103,185,10,0,86,203,15,141,219,12,11,0,86,203,15,141,246,15,11,0,87,75,136,70,138,115,8,0,87,75,136,70,117,124,8,0,87,75,136,70,105,133,8,0,88,203,39,245,144,16,6,0,88,203,232,64,138,115,8,0,88,203,232,64,117,124,8,0,88,203,232,64,105,133,8,0,89,203,133,146,181,145,10,0,90,75,118,36,196,184,6,0,90,75,205,128,137,198,10,0,100,75,89,59,125,44,7,0,100,75,61,43,152,125,10,0,101,75,95,86,88,107,7,0,101,75,95,86,177,121,7,0,104,75,99,32,25,22,11,0,106,75,9,207,54,218,6,0,106,75,79,79,155,67,7,0,106,75,8,7,224,146,8,0,106,75,8,7,132,150,8,0,107,203,107,14,186,234,5,0,107,203,54,146,246,205,8,0,107,203,54,146,155,206,8,0,109,75,177,105,13,49,8,0,109,75,177,105,86,49,8,0,109,75,177,105,159,49,8,0,109,75,177,105,233,49,8,0,109,75,177,105,51,50,8,0,109,75,177,105,122,50,8,0,109,75,177,105,192,50,8,0,110,203,53,51,212,243,6,0,113,75,180,64,152,111,7,0,114,75,53,201,194,35,10,0,114,75,53,201,14,36,10,0,116,203,248,127,101,197,5,0,116,75,145,178,232,251,9,0,116,75,145,178,176,252,9,0,117,203,103,176,40,235,5,0,119,75,133,138,250,90,8,0,120,203,172,107,50,195,6,0,121,75,65,68,121,217,6,0,121,75,194,132,232,124,10,0,122,203,195,149,70,87,10,0,123,75,81,23,107,187,10,0,126,75,104,31,1,62,9,0,126,75,104,31,42,62,9,0,126,75,104,31,88,62,9,0,126,75,104,31,149,62,9,0,126,75,104,31,194,62,9,0,126,75,104,31,237,62,9,0,126,75,104,31,32,63,9,0,127,203,240,208,0,190,8,0,127,203,240,208,168,190,8,0,128,203,113,167,212,243,6,0,130,75,0,81,203,252,5,0,131,203,119,225,20,90,6,0,131,203,63,112,138,115,8,0,131,203,63,112,117,124,8,0,131,203,63,112,105,133,8,0,132,75,182,35,151,88,6,0,132,75,119,150,38,98,7,0,135,203,57,161,185,198,6,0,145,75,111,251,197,253,6,0,145,75,231,185,40,217,8,0,145,75,231,185,209,217,8,0,149,203,120,216,125,177,9,0,149,203,120,216,224,177,9,0,149,203,120,216,64,178,9,0,154,203,64,200,204,213,9,0,157,75,162,74,149,157,7,0,157,75,162,74,210,157,7,0,157,75,162,74,18,158,7,0,157,75,96,81,249,154,8,0,157,75,96,81,148,155,8,0,157,75,96,81,52,156,8,0,157,75,57,75,78,203,8,0,159,203,148,33,153,241,5,0,161,203,195,111,152,111,7,0,161,203,195,111,62,124,7,0,164,75,153,134,138,115,8,0,164,75,153,134,117,124,8,0,164,75,153,134,105,133,8,0,170,203,209,180,243,6,7,0,174,203,8,84,20,15,7,0,174,203,8,84,33,65,7,0,175,203,139,241,117,37,7,0,176,75,96,204,140,142,8,0,176,75,96,204,235,142,8,0,176,75,96,204,83,143,8,0,178,203,15,170,44,210,5,0,178,203,202,247,38,98,7,0,180,75,109,123,43,58,6,0,180,75,222,228,115,109,6,0,180,203,254,252,204,78,10,0,182,203,25,61,68,154,6,0,182,203,204,217,243,6,7,0,183,75,91,184,28,253,6,0,184,203,244,238,212,243,6,0,186,75,131,181,139,158,8,0,186,75,131,181,224,163,8,0,187,203,212,147,179,17,7,0,189,203,23,6,125,177,9,0,189,203,23,6,224,177,9,0,189,203,23,6,64,178,9,0,193,75,174,52,7,68,6,0,193,75,174,52,162,50,7,0,194,203,36,189,141,175,6,0,196,75,26,170,121,193,5,0,196,75,26,170,128,225,10,0,196,75,26,170,182,225,10,0,197,75,135,227,230,215,6,0,198,75,8,65,71,236,6,0,200,203,96,213,200,131,6,0,200,75,178,255,129,26,8,0,200,203,91,121,75,1,9,0,200,203,91,121,154,2,9,0,200,203,91,121,235,3,9,0,200,203,91,121,65,5,9,0,202,75,140,182,180,144,8,0,202,75,140,182,67,145,8,0,203,75,99,241,249,141,7,0,203,75,111,181,224,96,11,0,208,203,130,145,100,228,6,0,212,75,142,32,234,36,7,0,213,203,64,34,98,164,9,0,213,203,64,34,132,164,9,0,215,203,136,52,210,224,6,0,215,203,192,148,209,131,7,0,216,75,199,36,19,56,6,0,216,75,179,148,171,58,6,0,218,75,100,20,194,132,6,0,219,203,81,169,180,28,7,0,219,75,233,22,123,236,9,0,220,203,208,211,245,28,10,0,220,203,208,211,145,31,10,0,221,203,187,68,90,53,7,0,221,75,168,226,189,113,10,0,226,75,116,155,138,115,8,0,226,75,116,155,117,124,8,0,226,75,116,155,105,133,8,0,228,75,122,90,237,73,7,0,228,203,226,91,224,146,8,0,228,203,226,91,132,150,8,0,228,75,48,213,3,157,8,0,228,75,48,213,180,157,8,0,230,75,252,212,38,98,7,0,233,75,84,26,236,213,6,0,233,203,224,59,138,115,8,0,233,203,224,59,117,124,8,0,233,203,224,59,105,133,8,0,242,203,201,93,78,203,8,0,243,75,109,233,241,95,8,0,244,75,186,26,64,13,6,0,244,75,186,26,7,99,6,0,245,203,17,146,15,233,8,0,245,203,17,146,139,233,8,0,247,203,144,37,178,62,6,0,247,75,54,114,138,115,8,0,247,75,54,114,117,124,8,0,247,75,54,114,105,133,8,0,249,75,134,92,30,171,9,0,251,75,11,211,123,236,9,0,254,203,40,61,102,233,5,0,254,203,135,87,71,236,6,0,254,203,135,87,117,37,7,0,1,204,151,136,118,226,8,0,1,204,151,136,72,228,8,0,3,204,141,129,151,21,7,0,3,204,36,179,232,191,8,0,3,204,36,179,162,193,8,0,5,204,166,219,247,214,6,0,5,204,136,38,165,19,8,0,9,76,70,144,138,115,8,0,9,76,70,144,117,124,8,0,9,76,70,144,105,133,8,0,10,76,224,127,224,98,6,0,10,204,1,230,230,215,6,0,10,204,42,34,237,73,7,0,12,204,122,4,170,123,10,0,13,204,69,127,247,55,7,0,14,76,157,38,58,157,7,0,14,76,69,165,138,115,8,0,14,76,69,165,117,124,8,0,14,76,69,165,105,133,8,0,15,204,197,141,211,191,6,0,16,204,54,214,136,62,6,0,17,76,111,186,115,254,9,0,17,76,111,186,138,254,9,0,23,76,246,231,241,143,10,0,24,76,86,162,153,11,7,0,24,76,86,162,135,13,7,0,25,76,171,236,211,20,11,0,26,76,164,52,159,92,9,0,26,76,164,52,5,93,9,0,32,76,39,197,139,158,8,0,32,76,39,197,224,163,8,0,34,204,215,14,103,46,7,0,35,76,228,19,130,227,6,0,36,76,164,103,224,146,8,0,36,76,164,103,132,150,8,0,38,204,92,123,139,158,8,0,38,204,92,123,224,163,8,0,40,204,169,32,179,222,8,0,40,204,169,32,152,223,8,0,42,204,56,31,77,149,7,0,43,204,81,103,101,220,9,0,43,204,81,103,154,220,9,0,43,204,194,175,31,45,11,0,44,204,235,150,57,10,7,0,50,204,59,179,36,87,6,0,52,76,189,123,90,53,7,0,54,76,63,246,181,122,6,0,54,204,32,116,125,44,7,0,54,204,48,12,113,47,7,0,54,204,32,116,193,167,9,0,54,204,32,116,37,168,9,0,55,204,82,232,84,21,8,0,56,76,157,38,139,86,6,0,56,76,157,38,245,163,6,0,60,76,112,167,211,46,11,0,61,204,51,175,91,17,9,0,61,204,51,175,177,17,9,0,61,204,51,175,1,18,9,0,61,204,139,93,105,202,10,0,63,204,227,207,139,158,8,0,63,204,227,207,224,163,8,0,66,76,229,202,71,236,6,0,67,76,67,224,66,165,9,0,67,76,67,224,97,165,9,0,67,76,67,224,116,165,9,0,69,76,109,7,172,72,7,0,69,76,109,7,47,253,10,0,70,76,217,204,177,85,6,0,70,76,153,236,130,201,6,0,70,204,94,210,167,71,7,0,71,204,93,164,136,58,7,0,71,204,245,168,116,185,10,0,72,76,237,246,87,23,6,0,74,76,87,130,30,171,9,0,74,204,198,188,51,51,11,0,75,76,58,228,186,90,10,0,76,76,196,168,104,15,10,0,76,76,196,168,169,15,10,0,77,76,185,197,38,98,7,0,80,204,215,227,237,231,6,0,80,204,215,227,138,115,8,0,80,204,215,227,117,124,8,0,80,204,215,227,105,133,8,0,80,204,10,186,53,156,10,0,82,76,140,175,155,67,7,0,84,76,153,134,171,63,7,0,84,76,20,32,38,98,7,0,85,204,207,141,99,66,8,0,87,204,245,59,212,243,6,0,87,204,87,242,32,10,7,0,89,76,26,131,75,11,11,0,93,76,165,228,118,226,8,0,93,76,165,228,72,228,8,0,94,204,216,192,3,21,11,0,95,204,43,204,151,21,7,0,97,76,157,38,116,225,5,0,97,76,157,38,222,231,5,0,97,76,157,38,153,11,7,0,97,76,157,38,135,13,7,0,98,76,37,119,46,204,10,0,98,76,37,119,62,204,10,0,101,76,30,49,38,98,7,0,103,204,37,182,240,226,6,0,103,204,80,146,237,231,6,0,109,204,64,50,117,231,7,0,111,204,109,234,155,67,7,0,113,76,246,231,171,206,6,0,113,76,246,231,38,98,7,0,113,76,87,130,30,171,9,0,116,76,77,99,200,6,9,0,116,76,77,99,117,7,9,0,116,204,146,143,214,126,10,0,118,204,212,6,63,165,6,0,119,76,30,61,71,236,6,0,120,76,31,34,139,158,8,0,120,76,31,34,224,163,8,0,120,76,152,134,232,191,8,0,120,76,152,134,162,193,8,0,121,76,150,100,180,144,8,0,121,76,150,100,67,145,8,0,122,76,219,140,117,79,7,0,123,204,219,27,217,62,7,0,123,204,219,27,83,246,7,0,123,204,219,27,162,246,7,0,125,204,184,164,80,32,7,0,125,76,138,45,123,236,9,0,127,204,24,138,175,211,10,0,130,204,59,250,138,115,8,0,130,204,59,250,117,124,8,0,130,204,59,250,105,133,8,0,131,204,200,106,153,11,7,0,131,204,200,106,135,13,7,0,131,204,200,106,78,123,7,0,132,204,166,2,197,253,6,0,135,204,235,127,66,110,6,0,135,76,43,31,119,199,6,0,136,76,54,205,102,223,6,0,136,76,250,6,90,175,8,0,136,76,250,6,74,176,8,0,138,204,177,239,130,113,10,0,140,76,180,225,253,208,8,0,140,76,180,225,22,211,8,0,143,76,119,216,29,5,7,0,145,76,132,144,221,38,10,0,145,76,132,144,62,40,10,0,147,76,80,219,139,158,8,0,147,76,80,219,224,163,8,0,148,204,250,87,29,5,7,0,148,204,145,89,2,199,9,0,148,204,145,89,169,199,9,0,150,204,88,208,201,1,10,0,150,204,88,208,221,1,10,0,150,204,88,208,245,1,10,0,151,76,87,130,30,171,9,0,153,76,73,82,139,158,8,0,153,76,73,82,224,163,8,0,155,204,53,115,71,236,6,0,156,76,237,65,234,36,7,0,156,204,67,174,38,98,7,0,156,76,237,65,224,146,8,0,156,76,237,65,132,150,8,0,156,76,237,65,5,248,8,0,156,76,237,65,42,248,8,0,158,204,47,96,21,36,7,0,163,76,4,34,109,161,6,0,163,76,137,171,153,11,7,0,163,76,137,171,135,13,7,0,164,204,135,212,117,37,7,0,168,76,193,154,49,70,7,0,168,76,174,158,139,158,8,0,168,76,174,158,224,163,8,0,169,76,157,38,50,42,6,0,169,76,157,38,79,72,7,0,170,204,72,5,20,15,7,0,170,204,72,5,179,17,7,0,175,204,162,156,20,15,7,0,177,76,150,110,117,37,7,0,177,76,48,174,117,79,7,0,177,76,28,48,220,68,11,0,177,76,28,48,240,68,11,0,182,204,104,90,224,146,8,0,182,204,104,90,132,150,8,0,185,204,136,130,247,55,7,0,185,76,104,205,0,144,8,0,185,76,104,205,31,144,8,0,185,76,104,205,71,144,8,0,192,204,171,100,188,52,9,0,194,76,118,182,38,98,7,0,195,204,207,55,140,222,5,0,195,76,141,141,247,55,7,0,195,204,177,205,245,28,10,0,195,204,177,205,145,31,10,0,196,76,114,126,127,63,9,0,196,76,114,126,181,63,9,0,196,76,114,126,65,64,9,0,197,204,114,67,57,171,8,0,197,204,114,67,133,172,8,0,197,204,114,67,211,173,8,0,197,204,53,152,157,25,9,0,197,204,53,152,196,25,9,0,198,76,179,131,237,73,7,0,198,204,250,26,99,66,8,0,199,76,216,127,104,251,5,0,199,76,55,215,38,253,8,0,199,76,55,215,38,253,8,0,199,76,55,215,173,253,8,0,199,76,55,215,173,253,8,0,200,204,134,176,237,73,7,0,201,76,224,103,247,214,6,0,202,204,31,236,223,30,7,0,202,204,240,251,123,236,9,0,203,76,52,200,182,234,6,0,203,76,231,223,36,158,10,0,204,204,110,42,237,73,7,0,205,204,42,84,117,191,7,0,206,76,19,54,65,216,5,0,206,76,150,248,33,65,7,0,208,76,84,61,99,66,8,0,208,76,84,61,69,68,8,0,208,76,84,61,55,70,8,0,208,76,84,61,115,70,8,0,208,76,22,126,249,13,11,0,210,204,118,120,123,236,9,0,212,204,151,71,141,255,8,0,212,204,151,71,235,255,8,0,212,76,28,171,234,223,10,0,214,204,246,237,155,203,6,0,215,204,81,149,58,49,6,0,216,76,2,40,113,232,6,0,216,204,204,156,178,233,6,0,216,204,37,142,38,98,7,0,217,76,246,81,14,223,5,0,219,204,131,110,237,199,6,0,219,76,137,92,27,119,9,0,219,76,137,92,102,119,9,0,220,76,201,41,30,231,6,0,221,204,49,157,38,98,7,0,221,204,49,157,63,242,7,0,222,76,158,27,175,202,9,0,222,76,158,27,203,202,9,0,222,76,31,91,245,28,10,0,222,76,31,91,145,31,10,0,223,204,143,228,135,90,9,0,223,204,143,228,124,91,9,0,225,76,53,12,212,243,6,0,225,204,243,205,240,69,10,0,225,76,76,222,74,231,10,0,229,76,57,123,97,136,10,0,229,76,120,89,20,138,10,0,230,204,31,122,82,231,9,0,231,76,48,179,243,69,7,0,232,204,238,8,230,215,6,0,234,76,45,44,67,161,10,0,236,76,253,32,99,66,8,0,236,76,126,90,35,87,8,0,242,204,189,78,195,191,5,0,242,76,218,204,144,206,9,0,242,76,218,204,168,206,9,0,243,204,230,61,48,187,5,0,243,204,189,241,6,110,6,0,243,204,91,64,112,5,10,0,243,204,91,64,28,6,10,0,245,204,237,196,194,122,6,0,245,76,30,30,139,158,8,0,245,76,30,30,224,163,8,0,247,76,215,58,177,133,7,0,247,76,215,58,38,134,7,0,249,204,165,200,72,204,9,0,252,76,222,122,71,236,6,0,252,204,134,180,71,236,6,0,253,76,247,223,236,51,7,0,253,204,68,79,76,65,10,0,254,76,222,42,175,26,7,0,254,76,78,186,171,63,7,0,0,77,91,248,17,71,7,0,1,77,34,120,78,118,6,0,2,205,40,125,152,111,7,0,2,205,40,125,60,44,8,0,2,205,40,125,175,44,8,0,2,205,40,125,24,45,8,0,2,205,40,125,178,229,9,0,4,205,84,100,139,158,8,0,4,205,84,100,224,163,8,0,4,77,244,163,123,236,9,0,7,77,70,134,197,230,8,0,7,77,70,134,235,230,8,0,8,205,239,169,205,151,9,0,8,205,239,169,199,152,9,0,8,205,239,169,220,153,9,0,8,205,97,18,17,181,10,0,8,205,97,18,82,181,10,0,8,205,97,18,143,181,10,0,10,205,100,184,230,71,9,0,10,205,100,184,83,72,9,0,11,77,126,189,212,243,6,0,11,77,83,234,167,149,7,0,14,77,15,95,245,41,7,0,15,205,102,24,69,238,8,0,15,205,102,24,138,238,8,0,15,205,102,24,214,238,8,0,17,77,208,119,28,68,9,0,17,77,208,119,215,68,9,0,20,205,7,235,133,220,6,0,20,205,140,165,178,179,10,0,21,77,111,10,217,31,7,0,25,205,29,1,123,236,9,0,30,205,63,149,237,73,7,0,30,205,62,188,138,115,8,0,30,205,62,188,117,124,8,0,30,205,62,188,105,133,8,0,31,77,132,166,124,222,6,0,31,77,99,26,141,195,8,0,31,77,99,26,112,196,8,0,31,77,99,26,75,197,8,0,31,77,214,78,4,246,10,0,35,205,191,35,136,46,11,0,38,77,113,30,212,243,6,0,42,77,139,48,22,218,6,0,42,77,186,20,57,10,7,0,44,77,184,148,88,232,9,0,44,77,184,148,142,232,9,0,45,205,99,58,172,207,6,0,45,205,63,221,218,113,9,0,45,205,63,221,120,114,9,0,49,205,56,24,38,31,7,0,53,205,43,38,159,92,7,0,55,77,238,158,80,186,5,0,57,205,2,14,123,236,9,0,57,205,2,14,123,236,9,0,58,77,70,87,133,220,6,0,60,77,64,141,44,112,10,0,60,77,64,141,76,112,10,0,62,77,247,46,76,16,9,0,62,77,247,46,146,16,9,0,65,77,167,87,238,56,10,0,67,205,106,49,253,208,8,0,67,205,106,49,22,211,8,0,67,77,36,195,118,226,8,0,67,77,36,195,72,228,8,0,68,77,242,122,196,8,6,0,71,205,47,116,29,5,7,0,71,77,163,82,237,73,7,0,72,205,36,141,168,228,10,0,74,205,61,111,22,35,7,0,76,205,91,245,118,226,8,0,76,205,91,245,72,228,8,0,78,205,212,89,142,141,6,0,86,77,189,63,51,214,8,0,86,77,189,63,241,214,8,0,86,77,189,63,169,215,8,0,89,77,112,208,71,236,6,0,91,77,115,54,183,20,10,0,91,77,115,54,230,20,10,0,92,205,250,66,116,114,6,0,93,205,159,4,174,51,7,0,96,205,4,38,68,202,6,0,96,77,33,116,90,56,9,0,96,77,33,116,171,56,9,0,96,77,33,116,54,57,9,0,100,205,55,208,100,231,5,0,100,205,86,55,152,111,7,0,100,205,86,55,10,118,7,0,101,205,3,171,197,253,6,0,103,205,74,58,194,73,11,0,105,205,49,129,149,236,10,0,106,77,20,138,239,21,6,0,108,205,97,188,26,32,6,0,111,77,104,139,172,98,6,0,111,77,195,233,129,97,9,0,111,77,195,233,156,97,9,0,112,205,135,79,78,209,5,0,112,77,132,43,167,107,7,0,112,205,25,192,157,52,11,0,117,77,122,196,98,10,6,0,123,205,167,105,254,254,6,0,124,77,15,251,12,234,6,0,124,77,161,90,136,58,7,0,125,205,181,131,152,111,7,0,125,205,181,131,173,169,8,0,134,205,55,236,84,95,11,0,135,205,115,196,213,16,6,0,135,205,33,255,25,149,7,0,137,205,38,129,95,0,10,0,137,205,38,129,200,0,10,0,139,77,243,136,49,103,11,0,141,77,31,16,130,227,6,0,149,205,157,128,3,209,5,0,149,77,103,189,7,15,11,0,150,205,113,8,127,208,6,0,150,77,29,217,216,221,6,0,151,205,65,114,133,220,6,0,152,205,15,27,78,229,6,0,153,77,95,11,153,211,5,0,161,77,157,86,87,77,6,0,161,77,10,52,175,30,7,0,162,77,38,52,48,207,6,0,165,77,231,118,57,10,7,0,165,205,21,227,220,12,10,0,165,205,21,227,22,13,10,0,168,77,190,90,47,154,10,0,169,205,113,129,32,10,7,0,169,77,161,110,253,208,8,0,169,77,161,110,22,211,8,0,171,77,164,1,84,21,8,0,176,77,14,131,125,44,7,0,176,77,170,135,4,246,10,0,181,77,187,138,254,6,11,0,182,77,22,59,207,254,9,0,182,77,22,59,228,254,9,0,183,77,242,127,151,21,7,0,183,77,99,164,226,225,10,0,184,205,115,117,253,208,8,0,184,205,115,117,22,211,8,0,184,77,81,242,22,61,10,0,186,205,73,31,33,65,7,0,187,77,34,198,239,96,10,0,187,77,246,231,124,142,10,0,193,205,36,49,253,208,8,0,193,205,36,49,22,211,8,0,194,205,170,93,136,58,7,0,197,77,37,23,7,226,6,0,197,77,113,106,97,27,11,0,198,77,196,139,178,25,11,0,199,205,21,80,245,201,10,0,199,77,94,59,160,31,11,0,201,77,100,64,90,53,7,0,202,205,19,220,205,207,5,0,202,77,97,253,250,57,8,0,203,205,156,76,224,146,8,0,203,205,156,76,132,150,8,0,208,205,14,45,20,15,7,0,208,205,14,45,179,17,7,0,212,205,171,17,152,111,7,0,212,205,171,17,87,98,9,0,213,205,104,130,123,236,9,0,214,205,186,94,57,171,8,0,214,205,186,94,133,172,8,0,214,205,186,94,211,173,8,0,218,77,38,247,219,210,7,0,219,205,24,20,139,158,8,0,219,205,24,20,224,163,8,0,219,77,130,147,118,226,8,0,219,77,130,147,72,228,8,0,220,205,6,191,99,20,11,0,222,77,198,80,139,158,8,0,222,77,198,80,224,163,8,0,223,77,87,126,228,109,9,0,223,77,87,126,248,110,9,0,224,77,121,252,88,190,5,0,224,205,117,208,79,253,6,0,224,77,56,134,207,197,7,0,225,77,195,38,139,25,6,0,225,77,113,35,162,36,7,0,226,205,105,254,168,9,7,0,227,205,154,47,174,118,6,0,227,205,154,47,117,37,7,0,231,205,93,210,254,254,6,0,232,77,203,37,117,79,7,0,233,205,68,215,161,201,8,0,233,205,68,215,217,201,8,0,241,205,220,5,139,158,8,0,241,205,220,5,224,163,8,0,247,77,250,142,117,37,7,0,249,205,142,22,61,199,5,0,250,205,130,38,247,197,6,0,253,205,99,23,84,247,5,0,0,78,91,128,118,214,6,0,0,206,128,195,212,243,6,0,0,78,93,249,152,111,7,0,0,78,93,249,241,117,7,0,0,78,93,249,62,124,7,0,0,78,200,127,125,219,10,0,1,78,71,95,212,243,6,0,5,78,108,166,177,133,7,0,5,78,108,166,38,134,7,0,5,78,188,157,255,148,10,0,6,78,91,255,188,52,9,0,8,78,64,66,61,224,6,0,9,78,255,125,71,236,6,0,11,206,103,144,117,79,7,0,14,206,192,55,118,226,8,0,14,206,192,55,72,228,8,0,15,78,174,55,44,26,7,0,16,78,236,96,65,120,10,0,18,78,57,47,117,79,7,0,18,206,187,56,38,98,7,0,21,206,69,12,121,97,7,0,22,78,189,243,151,21,7,0,22,206,149,178,117,37,7,0,22,78,97,34,140,142,8,0,22,78,97,34,235,142,8,0,22,78,97,34,83,143,8,0,24,206,35,190,217,94,8,0,26,206,156,22,139,158,8,0,26,206,156,22,224,163,8,0,27,78,116,27,156,127,9,0,27,78,116,27,179,127,9,0,31,206,202,36,48,207,6,0,32,206,88,212,38,98,7,0,33,78,104,128,110,229,5,0,33,78,104,128,171,35,6,0,33,78,104,128,153,11,7,0,33,78,104,128,135,13,7,0,35,206,66,207,237,73,7,0,35,78,0,31,4,67,11,0,39,78,181,231,17,187,7,0,39,206,218,164,210,120,10,0,41,206,121,94,138,115,8,0,41,206,121,94,117,124,8,0,41,206,121,94,105,133,8,0,43,78,98,133,99,66,8,0,43,78,98,133,218,67,8,0,43,78,98,133,69,68,8,0,45,206,27,127,91,196,6,0,48,206,50,58,76,252,6,0,49,78,179,192,71,236,6,0,49,206,247,74,61,227,7,0,49,206,247,74,104,227,7,0,49,206,247,74,142,227,7,0,50,78,187,129,219,1,7,0,50,78,38,129,80,32,7,0,53,206,217,76,29,204,8,0,53,206,217,76,6,205,8,0,55,78,66,66,232,191,8,0,55,78,66,66,162,193,8,0,56,78,144,116,90,175,8,0,56,78,144,116,74,176,8,0,56,206,51,55,135,90,9,0,56,206,51,55,124,91,9,0,56,206,68,117,123,236,9,0,60,78,151,13,209,208,6,0,60,206,119,63,38,98,7,0,61,78,11,224,63,212,7,0,64,206,155,149,78,203,8,0,67,206,191,11,146,8,10,0,67,206,191,11,162,8,10,0,68,206,22,112,224,146,8,0,68,206,22,112,132,150,8,0,68,206,245,205,123,236,9,0,68,78,187,212,254,28,11,0,70,78,236,96,250,122,10,0,70,206,23,207,249,65,11,0,71,78,222,182,232,191,8,0,71,78,222,182,162,193,8,0,75,78,19,167,141,240,5,0,75,78,4,122,133,220,6,0,77,206,231,157,173,126,10,0,81,78,81,190,152,111,7,0,81,78,81,190,32,117,7,0,81,78,81,190,62,124,7,0,81,78,11,224,162,138,9,0,81,78,11,224,179,138,9,0,85,206,16,198,38,98,7,0,85,206,16,198,161,110,7,0,85,206,202,246,67,109,10,0,85,206,3,27,89,167,10,0,86,206,250,126,136,221,10,0,86,206,20,98,146,67,11,0,91,206,140,165,201,230,6,0,95,206,111,128,40,213,6,0,95,206,76,247,71,236,6,0,98,78,175,83,237,73,7,0,99,206,209,144,179,17,7,0,99,78,254,174,138,115,8,0,99,78,254,174,117,124,8,0,99,78,254,174,105,133,8,0,101,78,101,139,167,8,7,0,102,206,202,62,32,30,7,0,104,78,15,213,107,210,6,0,107,78,199,238,180,144,8,0,107,78,199,238,67,145,8,0,107,78,144,51,161,201,8,0,107,78,144,51,217,201,8,0,111,78,14,186,210,182,10,0,112,206,33,116,0,144,8,0,112,206,33,116,31,144,8,0,112,206,33,116,71,144,8,0,114,78,221,28,193,95,11,0,118,206,122,19,49,63,6,0,122,206,151,132,219,210,7,0,123,206,147,73,116,84,6,0,127,206,185,57,205,97,6,0,127,206,185,57,113,47,7,0,128,78,205,15,96,66,11,0,130,206,152,54,179,222,8,0,130,206,152,54,152,223,8,0,131,78,0,179,180,28,7,0,133,78,42,5,39,232,8,0,133,78,42,5,73,232,8,0,134,206,33,218,103,137,6,0,137,78,145,235,111,13,6,0,137,206,171,199,254,254,6,0,142,206,52,110,57,10,7,0,142,206,208,28,237,73,7,0,143,206,184,189,234,36,7,0,144,206,108,139,80,32,7,0,147,206,147,210,216,122,10,0,149,78,65,104,160,234,8,0,149,78,65,104,175,235,8,0,150,78,3,166,41,247,10,0,153,206,221,137,219,1,7,0,155,206,68,24,48,141,7,0,155,206,68,24,106,141,7,0,157,206,120,241,72,204,9,0,159,78,172,63,113,47,7,0,160,206,16,82,224,135,10,0,164,78,108,106,80,32,7,0,166,206,103,98,107,210,6,0,166,206,104,85,157,253,9,0,166,206,104,85,183,253,9,0,168,206,79,67,212,243,6,0,168,206,98,3,91,154,8,0,168,206,98,3,147,154,8,0,168,206,98,3,40,100,10,0,169,78,138,232,227,218,6,0,169,78,138,232,101,219,6,0,172,78,113,42,138,115,8,0,172,78,113,42,117,124,8,0,172,78,113,42,105,133,8,0,172,206,160,153,232,191,8,0,172,206,160,153,162,193,8,0,174,78,202,148,33,113,6,0,176,78,165,38,133,220,6,0,177,78,34,38,179,222,8,0,177,78,34,38,152,223,8,0,178,78,78,15,212,243,6,0,184,78,246,231,124,146,10,0,184,206,210,126,53,220,10,0,190,206,205,5,95,35,8,0,190,206,205,5,131,35,8,0,194,206,225,65,5,218,5,0,194,206,36,157,99,66,8,0,194,206,36,157,218,67,8,0,194,206,36,157,69,68,8,0,194,206,36,157,69,68,8,0,194,206,36,157,8,69,8,0,194,206,36,157,155,69,8,0,194,206,36,157,232,69,8,0,196,206,214,208,117,197,5,0,196,206,224,202,119,225,6,0,196,78,7,18,219,1,7,0,196,78,103,27,148,186,8,0,196,78,103,27,221,186,8,0,198,206,241,69,21,86,10,0,205,206,127,251,219,210,7,0,207,78,158,128,149,100,6,0,208,78,157,52,4,71,6,0,208,206,68,198,162,193,10,0,212,206,96,158,62,4,7,0,212,206,96,158,117,37,7,0,213,78,103,174,69,105,6,0,213,78,201,83,80,32,7,0,215,206,252,194,9,207,5,0,220,206,227,204,230,130,7,0,220,206,184,111,87,132,10,0,221,206,51,116,16,242,7,0,221,206,51,116,7,243,7,0,223,78,45,23,212,243,6,0,227,78,126,82,57,93,11,0,228,206,60,121,212,243,6,0,229,206,158,133,34,41,7,0,229,206,87,47,71,207,10,0,232,206,119,77,217,62,7,0,234,78,69,203,135,87,6,0,234,78,54,251,83,115,9,0,234,78,54,251,115,115,9,0,237,78,34,116,138,115,8,0,237,78,34,116,117,124,8,0,237,78,34,116,105,133,8,0,241,206,38,177,247,214,6,0,242,206,232,101,199,6,6,0,242,206,232,101,26,32,6,0,243,78,167,50,126,150,6,0,243,206,185,106,78,203,8,0,245,206,3,124,154,221,6,0,245,206,86,60,91,154,8,0,245,206,86,60,147,154,8,0,246,206,148,104,23,74,6,0,247,206,213,154,66,230,6,0,250,206,67,87,112,5,10,0,250,206,67,87,28,6,10,0,252,78,92,12,71,236,6,0,254,78,244,245,153,207,8,0,254,78,244,245,44,208,8,0,254,78,30,64,97,249,10,0,0,207,197,187,71,236,6,0,0,207,188,175,254,254,6,0,0,79,177,54,129,89,7,0,2,79,255,221,230,215,6,0,2,79,255,221,254,254,6,0,3,79,169,199,29,151,10,0,5,79,48,252,253,208,8,0,5,79,48,252,22,211,8,0,5,207,57,246,206,87,9,0,5,207,57,246,25,88,9,0,7,207,14,193,139,158,8,0,7,207,14,193,224,163,8,0,9,79,252,137,6,45,10,0,9,79,252,137,36,45,10,0,10,79,109,55,164,191,6,0,10,79,109,55,144,192,6,0,10,79,110,19,247,197,6,0,13,207,93,157,71,236,6,0,14,79,82,193,117,79,7,0,15,79,172,19,152,111,7,0,15,79,172,19,60,44,8,0,15,79,172,19,175,44,8,0,15,79,172,19,24,45,8,0,15,79,172,19,178,229,9,0,17,207,77,70,100,71,7,0,18,207,106,27,230,71,9,0,18,207,106,27,83,72,9,0,19,207,162,30,123,208,10,0,19,207,162,30,254,209,10,0,21,79,9,217,130,227,6,0,21,79,14,220,221,38,10,0,21,79,14,220,62,40,10,0,23,79,149,146,152,111,7,0,23,79,149,146,62,124,7,0,23,79,149,146,88,129,7,0,23,79,91,254,122,139,10,0,24,207,184,1,226,154,9,0,24,207,184,1,114,155,9,0,26,207,24,103,63,25,7,0,28,79,123,149,109,136,6,0,29,79,51,97,156,36,6,0,29,207,104,210,69,73,6,0,30,207,93,95,163,152,7,0,31,79,239,136,38,98,7,0,31,79,172,63,91,13,11,0,32,79,165,237,132,88,11,0,36,207,127,76,237,73,7,0,37,207,91,90,73,62,6,0,37,207,30,177,81,63,7,0,37,207,91,90,205,103,8,0,43,207,205,202,138,115,8,0,43,207,205,202,117,124,8,0,43,207,205,202,105,133,8,0,44,79,81,178,204,213,9,0,46,79,117,100,40,3,11,0,46,79,117,100,68,6,11,0,49,79,108,28,226,154,9,0,49,79,108,28,114,155,9,0,50,207,218,80,146,98,6,0,50,207,90,46,245,28,10,0,50,207,90,46,145,31,10,0,51,207,67,62,237,73,7,0,51,79,54,116,117,79,7,0,54,207,205,20,94,44,6,0,55,207,16,103,210,40,11,0,56,79,181,112,24,145,7,0,56,207,201,44,182,244,10,0,60,207,64,58,145,238,10,0,60,207,64,58,167,238,10,0,61,207,143,36,136,58,7,0,62,207,191,73,145,95,7,0,63,79,59,157,56,208,6,0,67,79,210,73,38,98,7,0,68,79,202,148,43,23,6,0,68,79,202,148,109,172,6,0,69,207,192,221,213,251,10,0,69,207,192,221,109,253,10,0,69,207,192,221,39,9,11,0,71,79,89,231,71,236,6,0,72,207,113,145,141,195,8,0,72,207,113,145,112,196,8,0,72,207,113,145,75,197,8,0,73,207,54,1,117,79,7,0,74,79,65,17,252,221,5,0,74,79,65,17,193,232,5,0,81,79,225,17,124,222,6,0,81,79,40,113,212,243,6,0,82,207,43,53,232,191,8,0,82,207,43,53,162,193,8,0,83,207,28,99,224,35,6,0,83,79,225,241,249,141,7,0,84,207,143,101,2,248,5,0,86,207,113,55,138,115,8,0,86,207,113,55,117,124,8,0,86,207,113,55,105,133,8,0,88,207,101,164,221,38,10,0,88,207,101,164,62,40,10,0,91,207,249,66,91,37,11,0,93,207,19,208,38,98,7,0,93,79,138,145,105,177,8,0,93,79,138,145,162,177,8,0,96,207,204,28,212,243,6,0,96,79,27,194,253,208,8,0,96,79,27,194,22,211,8,0,97,79,123,202,38,98,7,0,97,79,145,33,152,111,7,0,97,79,145,33,94,189,9,0,98,79,202,179,59,241,10,0,99,79,38,200,133,220,6,0,99,207,73,31,154,4,7,0,101,207,224,168,84,25,10,0,101,207,224,168,111,25,10,0,101,207,224,168,134,25,10,0,101,79,137,6,179,85,11,0,107,79,108,130,67,42,9,0,107,79,108,130,99,42,9,0,108,207,2,100,65,41,8,0,112,207,204,57,151,21,7,0,115,79,32,188,57,10,7,0,115,207,142,72,112,188,10,0,118,79,214,64,148,141,10,0,121,207,50,70,28,68,9,0,121,207,50,70,215,68,9,0,122,207,245,13,165,11,9,0,122,207,245,13,58,12,9,0,124,79,171,32,68,202,6,0,126,207,66,190,117,79,7,0,127,207,231,209,114,43,11,0,129,79,231,101,120,32,6,0,129,79,231,101,69,173,6,0,129,79,65,137,197,253,6,0,129,79,156,191,29,150,7,0,129,79,231,101,205,239,7,0,129,207,142,77,161,46,10,0,129,207,142,77,238,46,10,0,132,79,42,75,71,236,6,0,133,207,210,223,247,55,7,0,136,207,5,28,136,58,7,0,138,79,172,69,206,155,6,0,142,207,121,161,221,38,10,0,142,207,121,161,62,40,10,0,143,79,68,161,230,215,6,0,144,207,31,218,218,103,10,0,145,79,219,193,117,79,7,0,145,79,18,33,219,78,8,0,151,207,26,205,114,243,8,0,151,207,26,205,37,244,8,0,154,207,128,58,77,61,6,0,154,207,173,129,123,236,9,0,155,207,147,61,71,89,7,0,156,207,43,170,90,99,11,0,157,79,226,73,20,15,7,0,157,79,226,73,179,17,7,0,157,207,106,150,193,45,7,0,157,207,106,150,242,45,7,0,158,79,87,220,90,7,7,0,158,79,182,224,253,208,8,0,158,79,182,224,22,211,8,0,160,79,27,11,24,86,8,0,162,207,31,252,91,74,6,0,162,79,164,200,228,212,6,0,164,207,207,206,163,201,6,0,164,79,202,68,138,115,8,0,164,79,202,68,117,124,8,0,164,79,202,68,105,133,8,0,167,79,97,212,170,34,6,0,167,79,185,222,38,98,7,0,169,207,195,61,245,28,10,0,169,207,195,61,145,31,10,0,170,79,215,203,191,148,7,0,170,79,165,145,190,39,9,0,170,79,165,145,210,39,9,0,172,79,139,251,75,71,10,0,173,79,189,157,138,115,8,0,173,79,189,157,117,124,8,0,173,79,189,157,105,133,8,0,176,79,58,160,113,24,7,0,183,207,231,224,151,21,7,0,188,207,175,94,78,203,8,0,192,79,166,124,240,226,6,0,192,79,41,68,20,15,7,0,192,79,20,229,159,92,9,0,192,79,20,229,5,93,9,0,193,207,147,46,203,252,7,0,195,207,105,41,213,41,10,0,195,207,105,41,87,42,10,0,196,207,153,165,151,21,7,0,200,207,218,234,128,158,10,0,200,207,218,234,3,167,10,0,202,207,33,80,51,214,8,0,202,207,33,80,241,214,8,0,202,207,33,80,169,215,8,0,206,79,125,105,253,208,8,0,206,79,125,105,22,211,8,0,206,79,131,182,156,109,10,0,208,79,131,182,197,230,8,0,208,79,131,182,235,230,8,0,210,207,215,97,38,98,7,0,211,207,140,0,228,109,9,0,211,207,140,0,248,110,9,0,211,79,165,232,22,62,10,0,211,79,219,35,112,132,10,0,212,79,101,136,118,214,6,0,212,79,4,103,51,255,9,0,212,79,4,103,139,255,9,0,212,79,4,103,226,255,9,0,214,79,109,126,69,67,7,0,216,207,224,104,228,109,9,0,216,207,224,104,248,110,9,0,218,79,166,85,10,204,6,0,218,79,245,112,156,31,7,0,219,79,131,182,212,243,6,0,220,207,244,40,138,115,8,0,220,207,244,40,117,124,8,0,221,207,165,129,139,53,10,0,221,207,165,129,197,53,10,0,221,207,165,129,13,54,10,0,221,207,165,129,70,54,10,0,222,207,26,54,137,91,7,0,224,207,182,147,20,15,7,0,224,207,182,147,179,17,7,0,226,79,42,244,12,234,6,0,226,207,57,87,71,17,11,0,227,79,14,187,105,223,10,0,227,79,14,187,130,223,10,0,228,79,42,231,231,118,6,0,228,79,220,94,138,28,11,0,230,79,173,20,75,11,11,0,232,207,88,95,22,35,7,0,233,79,15,78,236,51,7,0,233,79,138,164,6,98,10,0,234,207,79,122,102,53,11,0,236,207,91,113,219,210,7,0,238,79,233,146,194,211,6,0,238,207,73,106,29,150,7,0,238,79,104,158,204,213,9,0,241,207,192,222,205,151,9,0,241,207,192,222,199,152,9,0,241,207,192,222,220,153,9,0,242,79,36,218,199,65,10,0,246,207,203,244,235,249,5,0,246,207,138,72,188,52,9,0,247,207,214,201,107,65,6,0,248,79,227,167,20,15,7,0,248,79,227,167,179,17,7,0,248,79,227,167,33,65,7,0,249,207,227,133,117,79,7,0,249,207,31,239,200,6,9,0,249,207,31,239,117,7,9,0,251,207,229,215,69,69,7,0,255,79,101,232,29,5,7,0,255,207,60,166,138,115,8,0,255,207,60,166,117,124,8,0,255,207,60,166,105,133,8,0,2,208,97,148,98,113,6,0,4,208,129,83,151,21,7,0,4,80,82,1,13,32,9,0,4,80,82,1,195,32,9,0,7,80,15,65,213,83,6,0,7,80,60,56,29,204,8,0,7,80,60,56,6,205,8,0,8,208,16,40,17,71,7,0,8,208,105,159,122,242,10,0,10,80,158,115,104,185,8,0,11,80,21,64,232,25,7,0,13,208,219,223,223,227,7,0,13,80,87,157,99,66,8,0,14,80,123,29,75,142,9,0,14,80,123,29,201,142,9,0,14,80,123,29,84,143,9,0,15,208,94,170,194,211,6,0,15,208,150,52,139,158,8,0,15,208,150,52,224,163,8,0,17,80,50,36,115,7,10,0,17,80,50,36,190,7,10,0,17,80,50,36,10,8,10,0,18,208,178,239,179,33,6,0,18,208,178,239,205,168,6,0,21,80,177,158,168,113,10,0,23,80,88,146,152,111,7,0,23,80,88,146,62,124,7,0,27,80,5,87,123,236,9,0,28,80,248,30,171,63,7,0,30,80,90,202,38,98,7,0,31,80,228,210,254,243,5,0,31,80,228,210,153,89,7,0,33,80,248,158,92,201,6,0,33,80,9,8,199,145,7,0,35,80,65,30,99,42,7,0,36,208,200,100,210,224,6,0,40,80,213,209,121,105,10,0,41,80,194,1,196,62,10,0,42,208,188,135,106,97,6,0,42,208,103,249,136,58,7,0,43,80,168,238,8,131,6,0,43,208,164,196,123,236,9,0,44,208,50,98,215,255,6,0,46,80,147,241,38,98,7,0,48,80,44,196,182,104,6,0,50,80,113,72,133,220,6,0,50,208,152,52,123,236,9,0,51,80,81,190,5,148,7,0,53,208,6,107,251,184,7,0,53,80,137,195,22,217,9,0,53,80,137,195,103,217,9,0,54,208,107,89,237,73,7,0,56,80,132,103,136,58,7,0,56,208,54,63,38,98,7,0,56,208,54,63,114,243,8,0,56,208,54,63,37,244,8,0,58,208,160,82,237,73,7,0,59,208,74,163,57,171,8,0,59,208,74,163,133,172,8,0,59,208,74,163,211,173,8,0,63,208,167,126,216,149,6,0,63,80,40,22,71,236,6,0,63,208,105,27,9,55,10,0,68,80,79,82,238,88,11,0,69,208,48,236,110,40,6,0,70,80,254,103,212,243,6,0,70,208,64,12,153,207,8,0,70,208,64,12,44,208,8,0,71,80,234,187,245,28,10,0,71,80,234,187,145,31,10,0,72,208,247,48,97,58,10,0,76,208,46,185,175,40,7,0,77,208,104,10,123,236,9,0,83,208,35,234,249,28,8,0,83,80,44,54,167,82,10,0,87,208,73,149,107,210,6,0,87,208,213,146,29,69,7,0,87,208,52,140,2,199,9,0,87,208,52,140,169,199,9,0,87,208,213,146,229,86,10,0,87,208,96,34,91,26,11,0,88,208,79,3,247,55,7,0,93,80,188,115,38,98,7,0,97,80,170,241,245,207,6,0,97,80,197,172,72,202,8,0,97,80,197,172,175,202,8,0,99,80,93,41,111,200,6,0,101,208,6,121,52,107,9,0,101,208,6,121,80,107,9,0,102,80,205,57,141,195,8,0,102,80,205,57,112,196,8,0,102,80,205,57,75,197,8,0,105,80,181,148,124,231,5,0,105,208,108,76,247,55,7,0,105,208,23,162,212,77,9,0,105,208,23,162,34,78,9,0,108,208,164,166,234,72,7,0,108,208,0,115,38,98,7,0,113,80,16,91,246,93,8,0,114,208,79,45,38,98,7,0,116,80,120,253,122,73,7,0,116,80,120,253,158,73,7,0,117,208,128,248,179,17,7,0,117,208,128,248,164,23,7,0,117,80,145,64,232,191,8,0,117,80,145,64,162,193,8,0,117,80,192,213,53,249,10,0,120,208,125,136,165,253,6,0,120,208,39,10,177,133,7,0,120,208,39,10,38,134,7,0,123,80,132,42,37,139,10,0,128,80,161,219,245,228,6,0,129,80,170,46,9,218,10,0,132,208,130,222,139,158,8,0,132,208,130,222,224,163,8,0,132,208,16,178,205,151,9,0,132,208,16,178,199,152,9,0,132,208,16,178,220,153,9,0,133,208,81,42,123,236,9,0,133,208,40,38,174,163,10,0,138,80,222,84,216,165,7,0,138,208,68,69,84,184,9,0,138,208,68,69,104,184,9,0,140,208,91,228,139,158,8,0,140,208,91,228,224,163,8,0,140,80,143,13,156,53,11,0,142,208,98,244,187,84,9,0,142,208,98,244,228,84,9,0,142,208,98,244,225,83,11,0,144,80,48,66,29,150,7,0,148,80,122,228,109,172,9,0,148,80,122,228,178,173,9,0,148,80,122,228,250,174,9,0,149,208,106,164,117,79,7,0,152,80,28,116,125,44,7,0,153,80,6,150,90,122,10,0,154,80,127,253,212,243,6,0,156,208,151,214,2,23,7,0,157,208,153,54,83,205,6,0,159,208,90,158,224,146,8,0,159,208,90,158,132,150,8,0,161,208,26,192,40,217,8,0,161,208,26,192,209,217,8,0,163,208,188,203,85,31,7,0,165,208,114,27,5,148,7,0,165,80,238,169,197,126,10,0,166,80,151,30,33,127,9,0,166,80,151,30,73,127,9,0,171,80,245,39,140,206,7,0,172,80,46,19,141,195,8,0,172,80,46,19,112,196,8,0,172,80,46,19,75,197,8,0,172,80,203,58,29,204,8,0,172,80,203,58,6,205,8,0,173,80,81,21,175,26,6,0,174,208,240,112,98,158,10,0,175,208,91,96,117,79,7,0,177,80,61,173,52,9,6,0,177,80,33,224,167,107,7,0,177,80,33,224,103,125,7,0,177,80,61,173,183,11,8,0,177,80,36,228,74,85,11,0,178,80,28,214,54,233,6,0,178,80,207,238,214,27,11,0,179,80,217,24,249,154,8,0,179,80,217,24,148,155,8,0,179,80,217,24,52,156,8,0,180,208,75,121,224,146,8,0,180,208,75,121,132,150,8,0,180,80,30,197,173,169,8,0,182,208,214,89,26,126,6,0,182,80,154,16,40,217,8,0,182,80,154,16,209,217,8,0,183,208,13,101,38,98,7,0,184,208,92,36,247,55,7,0,185,208,219,173,188,231,6,0,188,208,146,150,219,1,7,0,188,80,236,126,138,115,8,0,188,80,236,126,117,124,8,0,188,80,236,126,105,133,8,0,189,208,33,154,71,236,6,0,189,80,67,86,179,17,7,0,190,80,49,163,212,243,6,0,192,208,2,54,71,236,6,0,193,80,121,253,213,230,10,0,195,208,159,225,215,88,11,0,197,80,134,32,71,236,6,0,197,80,171,27,44,90,10,0,198,80,200,222,241,179,6,0,198,80,3,255,12,216,7,0,198,80,3,255,202,177,10,0,201,80,125,187,237,45,6,0,201,80,127,47,245,41,7,0,202,80,76,20,242,204,7,0,203,80,126,54,71,236,6,0,205,208,16,9,28,68,9,0,205,208,16,9,215,68,9,0,207,80,68,124,22,35,7,0,207,208,87,181,133,227,10,0,210,208,24,42,26,32,6,0,211,80,208,31,35,72,11,0,214,80,56,128,22,35,7,0,214,80,59,229,150,61,8,0,215,208,98,167,65,226,5,0,217,80,171,140,110,218,6,0,217,80,252,122,99,66,8,0,217,80,171,140,56,95,11,0,219,208,189,77,201,196,5,0,220,80,199,149,155,67,7,0,222,80,205,179,29,5,7,0,225,208,229,67,136,58,7,0,229,208,145,61,180,28,7,0,229,80,226,240,165,108,9,0,229,80,226,240,214,108,9,0,229,80,226,240,27,109,9,0,230,208,138,22,224,146,8,0,230,208,138,22,132,150,8,0,230,208,173,179,221,38,10,0,230,208,173,179,62,40,10,0,231,80,28,31,247,55,7,0,231,80,13,41,246,205,8,0,231,80,13,41,155,206,8,0,233,208,164,6,20,15,7,0,233,208,164,6,179,17,7,0,235,208,78,115,118,0,7,0,236,80,144,233,132,215,6,0,236,208,13,123,196,223,10,0,236,80,144,233,57,243,10,0,239,208,192,148,153,11,7,0,242,208,73,183,57,171,8,0,242,208,73,183,133,172,8,0,242,208,73,183,211,173,8,0,242,80,126,86,205,151,9,0,242,80,126,86,199,152,9,0,242,80,126,86,220,153,9,0,242,80,234,73,48,161,10,0,250,80,19,139,212,243,6,0,250,208,154,241,139,158,8,0,250,208,154,241,224,163,8,0,250,80,193,101,17,184,8,0,251,208,160,245,237,73,7,0,254,80,157,149,159,92,9,0,254,80,157,149,5,93,9,0,255,80,42,133,55,48,7,0,255,208,119,233,163,237,10,0,0,81,2,234,158,4,10,0,0,81,2,234,180,4,10,0,1,209,211,150,251,58,10,0,1,81,131,115,40,198,10,0,2,209,241,117,219,210,7,0,3,81,61,129,19,151,6,0,4,81,5,204,201,206,5,0,5,81,90,215,245,28,10,0,5,81,90,215,145,31,10,0,7,209,203,236,128,65,10,0,9,209,0,93,68,61,8,0,13,81,178,50,24,248,5,0,13,81,29,20,173,56,6,0,14,209,204,2,219,1,7,0,14,209,8,192,217,26,8,0,15,209,138,24,253,190,5,0,21,81,9,142,174,51,7,0,23,209,8,192,54,239,10,0,24,209,148,60,96,214,6,0,26,209,192,247,48,62,11,0,28,81,152,42,244,27,9,0,29,81,213,0,133,220,6,0,30,81,192,159,118,226,8,0,30,81,192,159,72,228,8,0,33,81,65,13,71,236,6,0,33,209,67,109,138,115,8,0,33,209,67,109,117,124,8,0,33,209,67,109,105,133,8,0,34,209,183,118,117,79,7,0,36,81,117,44,0,86,10,0,38,81,135,195,61,187,7,0,38,81,91,184,30,171,9,0,38,81,118,227,123,134,10,0,41,81,115,106,20,15,7,0,41,81,115,106,179,17,7,0,41,81,155,71,64,86,9,0,41,81,155,71,109,86,9,0,45,209,157,144,31,25,9,0,46,81,237,25,62,149,6,0,48,209,160,164,221,84,10,0,54,209,160,223,99,66,8,0,55,209,29,40,22,35,7,0,55,209,155,82,152,111,7,0,55,209,155,82,173,169,8,0,57,81,239,21,139,158,8,0,57,81,239,21,224,163,8,0,61,209,183,186,114,243,8,0,61,209,183,186,37,244,8,0,61,209,129,237,227,230,10,0,64,81,186,245,138,115,8,0,64,81,186,245,117,124,8,0,64,81,186,245,105,133,8,0,64,81,175,107,135,90,9,0,64,81,175,107,124,91,9,0,64,81,6,254,80,167,9,0,64,81,6,254,37,168,9,0,65,209,8,181,51,214,8,0,65,209,8,181,241,214,8,0,65,209,8,181,169,215,8,0,66,81,250,117,90,215,5,0,68,81,210,225,113,22,11,0,72,81,213,128,159,184,6,0,82,81,146,97,221,105,6,0,82,209,119,233,21,247,10,0,83,209,184,237,89,87,10,0,85,209,82,35,218,113,9,0,85,209,82,35,120,114,9,0,86,81,46,70,55,170,10,0,87,81,201,129,34,10,10,0,88,209,252,194,138,115,8,0,88,209,252,194,117,124,8,0,88,209,252,194,105,133,8,0,89,81,40,25,236,51,7,0,90,81,174,88,57,171,8,0,90,81,174,88,133,172,8,0,90,81,174,88,211,173,8,0,91,81,57,92,138,115,8,0,91,81,57,92,117,124,8,0,91,81,57,92,105,133,8,0,95,81,236,60,90,53,7,0,96,81,149,215,255,245,5,0,96,81,149,215,44,246,5,0,97,81,176,75,70,5,8,0,97,81,196,191,205,151,9,0,97,81,196,191,199,152,9,0,97,81,196,191,220,153,9,0,98,209,173,59,137,227,5,0,99,209,129,128,101,246,10,0,100,81,229,36,254,243,5,0,100,81,229,36,153,89,7,0,101,209,254,47,118,52,11,0,103,209,104,134,253,208,8,0,103,209,104,134,22,211,8,0,104,81,175,0,195,48,7,0,105,81,61,255,145,90,10,0,111,209,154,140,90,53,7,0,112,81,162,29,29,150,7,0,113,209,191,34,71,236,6,0,113,81,101,164,83,216,9,0,113,81,101,164,105,216,9,0,117,209,253,110,153,11,7,0,119,209,123,103,182,0,8,0,119,209,236,165,245,28,10,0,119,209,236,165,145,31,10,0,121,209,105,147,89,85,6,0,121,209,183,42,135,101,6,0,121,209,127,79,56,60,10,0,128,209,3,144,139,158,8,0,128,209,3,144,224,163,8,0,129,81,157,53,210,187,5,0,129,209,245,164,95,204,10,0,129,209,29,125,227,216,10,0,136,209,42,189,29,150,7,0,136,209,50,78,224,146,8,0,136,209,50,78,132,150,8,0,138,209,220,189,38,98,7,0,138,209,85,238,38,98,7,0,140,81,148,62,72,27,7,0,140,81,57,251,90,175,8,0,140,81,57,251,74,176,8,0,140,209,129,186,174,153,10,0,141,81,217,231,136,58,7,0,143,209,236,57,247,55,7,0,145,81,20,241,138,115,8,0,145,81,20,241,117,124,8,0,145,81,20,241,105,133,8,0,146,81,69,203,130,227,6,0,147,81,145,24,125,44,7,0,147,81,10,8,161,154,10,0,148,209,251,58,152,229,6,0,148,81,185,178,141,195,8,0,148,81,185,178,112,196,8,0,148,81,9,203,123,236,9,0,150,81,25,230,71,236,6,0,154,209,151,81,166,22,6,0,154,209,151,81,4,25,7,0,158,209,16,251,73,196,9,0,158,209,16,251,101,196,9,0,158,209,16,251,120,196,9,0,159,81,51,93,34,141,9,0,159,81,51,93,66,141,9,0,165,81,183,89,136,58,7,0,165,81,131,19,227,108,7,0,165,81,131,19,15,184,9,0,165,81,131,19,59,184,9,0,166,209,183,166,31,225,10,0,166,209,183,166,198,226,10,0,168,209,147,90,33,174,10,0,174,81,74,200,111,59,6,0,179,209,84,124,199,145,7,0,180,209,127,150,43,33,6,0,188,81,64,103,237,91,10,0,189,81,25,82,208,71,6,0,189,81,39,116,99,118,6,0,194,81,175,32,123,236,9,0,195,209,190,180,191,55,7,0,195,209,190,180,247,55,7,0,196,209,114,144,38,98,7,0,196,209,114,144,227,108,7,0,196,209,170,61,228,109,9,0,196,209,170,61,248,110,9,0,196,209,114,144,131,8,10,0,198,81,224,174,240,226,6,0,198,209,131,32,22,35,7,0,199,209,155,183,81,239,8,0,199,209,155,183,40,240,8,0,201,209,86,13,214,7,7,0,202,81,127,245,50,211,6,0,202,209,110,213,228,109,9,0,202,209,110,213,248,110,9,0,202,209,157,149,222,79,10,0,203,81,18,112,118,226,8,0,203,81,18,112,72,228,8,0,204,209,18,157,90,53,7,0,205,81,38,187,20,15,7,0,205,81,7,195,20,15,7,0,205,81,38,187,179,17,7,0,205,81,7,195,179,17,7,0,207,81,106,152,212,243,6,0,207,81,0,90,39,24,11,0,208,209,97,98,71,236,6,0,208,81,109,184,89,98,8,0,213,209,222,103,158,137,10,0,214,81,42,251,224,146,8,0,214,81,42,251,132,150,8,0,215,81,226,227,121,217,6,0,215,209,121,11,212,243,6,0,220,81,187,222,237,73,7,0,226,209,249,58,16,192,10,0,228,209,250,205,117,79,7,0,231,209,159,149,20,15,7,0,232,209,97,48,13,32,9,0,232,209,97,48,195,32,9,0,233,81,218,30,14,146,8,0,233,81,218,30,49,146,8,0,234,209,157,99,151,21,7,0,234,209,39,160,99,66,8,0,237,209,145,147,146,235,6,0,240,209,105,143,11,61,6,0,240,81,100,166,136,58,7,0,241,209,103,176,219,210,7,0,245,81,96,202,83,147,10,0,247,209,188,5,187,99,6,0,252,81,192,91,12,31,6,0,252,209,142,59,54,141,10,0,253,81,228,194,74,218,5,0,254,209,41,127,72,204,9,0,255,209,57,187,141,195,8,0,255,209,57,187,112,196,8,0,255,209,57,187,75,197,8,0,1,210,43,35,109,172,9,0,1,210,43,35,178,173,9,0,1,210,43,35,250,174,9,0,2,210,41,55,76,43,8,0,3,82,158,115,253,208,8,0,3,82,158,115,22,211,8,0,4,82,34,158,152,111,7,0,4,82,34,158,206,62,8,0,4,82,34,158,99,63,8,0,4,82,34,158,4,64,8,0,4,82,34,158,73,218,9,0,5,82,15,80,167,71,7,0,7,82,229,111,238,234,5,0,7,210,10,10,81,239,8,0,7,210,10,10,40,240,8,0,8,82,75,152,212,21,9,0,8,82,75,152,31,22,9,0,8,82,75,152,103,22,9,0,8,82,20,6,68,41,9,0,8,82,20,6,90,41,9,0,8,82,20,6,111,41,9,0,9,82,44,116,57,171,8,0,9,82,44,116,133,172,8,0,9,82,44,116,211,173,8,0,10,82,254,132,51,241,8,0,10,82,254,132,198,241,8,0,12,210,206,145,253,208,8,0,12,210,206,145,22,211,8,0,12,210,85,255,123,236,9,0,13,82,240,191,2,199,9,0,13,82,240,191,169,199,9,0,14,210,233,87,240,226,6,0,15,210,40,137,164,25,7,0,16,210,61,145,194,97,10,0,16,210,65,233,20,118,10,0,17,210,157,28,12,140,7,0,22,82,92,162,57,171,8,0,22,82,92,162,133,172,8,0,22,82,92,162,211,173,8,0,23,82,115,231,11,9,7,0,25,82,203,192,71,236,6,0,27,210,98,27,249,139,6,0,27,210,42,92,20,15,7,0,33,82,20,26,29,5,7,0,35,82,176,144,58,224,10,0,36,82,77,76,109,186,10,0,37,210,156,197,153,11,7,0,37,210,156,197,135,13,7,0,37,210,156,197,78,123,7,0,37,210,143,34,138,115,8,0,37,210,143,34,117,124,8,0,37,210,143,34,105,133,8,0,39,82,10,183,250,82,6,0,39,82,10,183,245,28,10,0,39,82,10,183,145,31,10,0,40,210,228,241,119,93,7,0,45,210,63,8,247,37,11,0,48,82,187,97,117,37,7,0,49,210,219,152,50,226,6,0,50,210,206,61,102,179,6,0,50,210,127,144,212,243,6,0,51,82,163,147,8,243,10,0,53,82,167,212,38,98,7,0,55,210,241,114,74,93,8,0,56,210,244,103,254,254,6,0,57,82,253,187,232,37,6,0,59,210,251,110,145,139,10,0,60,82,84,113,237,73,7,0,60,82,51,166,130,129,10,0,65,210,189,209,152,111,7,0,65,210,188,75,206,87,9,0,65,210,188,75,25,88,9,0,65,210,189,209,73,197,9,0,65,82,210,169,10,213,10,0,67,210,121,224,107,210,6,0,71,210,102,217,123,236,9,0,72,82,68,86,152,111,7,0,72,82,68,86,126,191,8,0,72,82,68,86,175,191,8,0,76,210,69,187,154,224,6,0,76,210,250,172,29,150,7,0,76,82,46,217,165,11,9,0,76,82,46,217,58,12,9,0,77,210,87,174,38,98,7,0,77,210,193,120,34,10,10,0,78,82,173,30,227,108,7,0,78,82,173,30,10,28,10,0,78,82,173,30,74,28,10,0,78,82,173,30,134,28,10,0,81,82,202,155,118,226,8,0,81,82,202,155,72,228,8,0,82,82,189,54,212,243,6,0,84,82,26,14,151,21,7,0,86,82,11,28,236,26,7,0,87,82,189,154,156,49,6,0,89,82,157,66,80,32,7,0,89,82,67,102,38,98,7,0,91,82,103,27,90,53,7,0,91,82,38,185,160,234,8,0,91,82,38,185,175,235,8,0,92,82,205,166,236,213,6,0,93,82,36,44,171,63,7,0,94,82,69,144,20,15,7,0,94,82,69,144,179,17,7,0,97,210,116,230,71,236,6,0,97,210,212,53,167,71,7,0,99,210,202,100,22,35,7,0,100,82,154,86,87,24,7,0,101,82,2,59,237,73,7,0,101,210,191,186,55,172,10,0,102,210,176,155,38,98,7,0,102,210,153,238,123,236,9,0,103,82,55,45,179,17,7,0,103,82,55,45,46,43,7,0,109,82,181,244,9,37,9,0,109,82,181,244,31,37,9,0,110,82,3,251,219,1,7,0,116,210,231,0,209,205,6,0,116,82,31,82,40,57,11,0,121,82,16,192,224,146,8,0,121,82,16,192,132,150,8,0,123,210,104,113,80,49,7,0,124,210,192,3,54,233,6,0,124,210,192,3,155,67,7,0,125,82,196,19,20,69,6,0,125,82,199,95,171,206,6,0,127,210,180,217,232,191,8,0,127,210,180,217,162,193,8,0,128,210,52,241,214,7,7,0,128,210,39,143,141,255,8,0,128,210,39,143,235,255,8,0,129,82,227,239,123,236,9,0,131,82,135,171,22,221,5,0,132,210,171,92,94,208,6,0,132,82,233,68,138,115,8,0,132,82,233,68,117,124,8,0,132,82,233,68,105,133,8,0,133,210,10,23,4,189,6,0,136,210,125,47,0,190,8,0,136,210,125,47,168,190,8,0,138,210,31,196,120,110,6,0,138,82,242,149,237,73,7,0,141,82,100,160,20,127,10,0,144,210,137,16,243,206,9,0,144,210,137,16,42,207,9,0,144,210,137,16,98,207,9,0,146,210,9,253,138,115,8,0,146,210,9,253,117,124,8,0,146,210,9,253,105,133,8,0,146,82,213,117,184,233,10,0,147,82,219,218,203,64,11,0,149,210,39,176,75,1,9,0,149,210,39,176,154,2,9,0,149,210,39,176,235,3,9,0,149,210,39,176,65,5,9,0,151,210,245,123,38,98,7,0,151,210,177,109,46,225,10,0,151,82,213,117,93,242,10,0,152,82,151,198,152,111,7,0,152,82,151,198,110,38,10,0,152,82,151,198,172,38,10,0,153,82,227,95,14,79,6,0,155,210,31,55,12,213,6,0,155,210,169,207,61,228,9,0,155,210,169,207,114,228,9,0,155,210,86,244,80,45,11,0,156,210,60,69,149,198,10,0,164,210,112,234,112,5,10,0,164,210,112,234,28,6,10,0,165,82,145,153,224,146,8,0,165,82,145,153,132,150,8,0,166,210,12,31,33,65,7,0,169,210,54,250,144,142,10,0,174,210,32,2,29,187,6,0,176,82,255,61,125,10,11,0,178,82,26,171,224,251,6,0,178,82,26,171,152,111,7,0,178,82,26,171,84,53,8,0,180,82,150,13,227,108,7,0,181,210,208,245,31,252,8,0,181,210,208,245,56,252,8,0,183,82,207,151,249,154,8,0,183,82,207,151,148,155,8,0,183,82,207,151,52,156,8,0,183,82,91,19,109,172,9,0,183,82,91,19,178,173,9,0,183,82,91,19,250,174,9,0,184,82,13,162,146,235,6,0,184,82,237,224,139,214,9,0,184,82,237,224,234,214,9,0,184,82,237,224,70,215,9,0,185,82,102,209,10,204,6,0,188,82,74,186,138,115,8,0,188,82,74,186,117,124,8,0,188,82,74,186,105,133,8,0,189,82,74,81,38,98,7,0,191,210,69,81,158,89,10,0,192,82,222,248,201,230,6,0,193,82,11,186,249,28,8,0,193,82,11,186,14,101,10,0,195,210,27,243,167,71,7,0,197,82,187,80,89,206,6,0,197,210,134,27,213,41,10,0,197,210,134,27,87,42,10,0,199,82,80,79,152,229,6,0,199,210,162,209,169,200,9,0,199,210,162,209,204,200,9,0,199,210,162,209,238,200,9,0,200,82,231,6,38,98,7,0,203,82,17,206,152,111,7,0,203,82,27,235,166,220,8,0,203,82,27,235,241,220,8,0,203,82,17,206,230,139,9,0,208,210,117,139,209,131,7,0,210,210,122,253,199,6,6,0,211,82,133,40,26,0,7,0,214,210,30,127,84,71,11,0,215,210,164,149,224,146,8,0,215,210,164,149,132,150,8,0,216,82,195,119,90,53,7,0,218,82,145,237,27,155,6,0,220,82,218,194,64,86,9,0,220,82,218,194,109,86,9,0,220,210,159,126,218,185,9,0,220,210,159,126,242,185,9,0,220,82,206,32,19,78,11,0,222,210,35,182,21,63,6,0,223,210,155,250,116,185,6,0,225,82,234,204,89,132,9,0,225,82,234,204,124,132,9,0,225,82,234,204,171,132,9,0,226,210,103,36,155,203,6,0,227,210,181,254,14,220,5,0,227,210,181,254,47,47,6,0,231,210,57,207,213,94,10,0,232,210,22,80,69,69,7,0,234,82,27,7,38,98,7,0,234,82,31,81,112,103,10,0,234,210,84,35,0,65,11,0,235,210,115,188,182,96,6,0,235,82,164,236,152,111,7,0,235,82,164,236,18,121,7,0,236,210,31,158,39,25,11,0,239,82,214,38,175,75,10,0,243,210,213,34,85,197,6,0,245,82,20,128,63,112,9,0,245,82,20,128,116,112,9,0,247,210,81,153,117,37,7,0,248,82,32,136,227,108,7,0,248,82,32,136,24,180,9,0,248,82,32,136,39,180,9,0,251,210,5,175,90,53,7,0,254,210,70,22,237,73,7,0,4,83,232,3,194,35,10,0,4,83,232,3,14,36,10,0,13,83,105,33,141,195,8,0,13,83,105,33,112,196,8,0,13,83,105,33,75,197,8,0,15,211,60,237,44,90,10,0,16,211,53,246,237,199,6,0,16,211,137,57,138,115,8,0,16,211,137,57,117,124,8,0,16,211,137,57,105,133,8,0,18,211,211,252,183,213,8,0,18,211,211,252,237,213,8,0,20,83,146,126,57,171,8,0,20,83,146,126,133,172,8,0,20,83,146,126,211,173,8,0,22,211,21,207,84,21,8,0,23,83,58,104,71,236,6,0,29,83,215,122,182,114,8,0,30,211,48,244,248,164,6,0,30,211,73,218,152,111,7,0,30,211,73,218,173,169,8,0,31,83,105,27,152,111,7,0,31,83,125,178,253,91,10,0,33,83,135,62,19,133,6,0,34,83,4,201,71,236,6,0,35,83,141,97,112,27,7,0,36,83,44,162,30,113,10,0,38,211,117,123,121,97,7,0,38,211,117,123,121,97,7,0,41,211,227,19,15,233,8,0,41,211,227,19,139,233,8,0,43,211,132,255,78,237,5,0,48,211,95,139,57,224,7,0,51,211,92,207,146,235,6,0,51,83,164,43,29,5,7,0,53,211,233,71,237,73,7,0,54,211,9,32,255,194,5,0,54,211,96,69,95,66,10,0,55,211,180,47,38,98,7,0,56,83,107,149,104,15,10,0,56,83,107,149,169,15,10,0,57,211,174,35,138,115,8,0,57,211,174,35,117,124,8,0,57,211,174,35,105,133,8,0,58,83,197,197,226,154,9,0,58,83,197,197,114,155,9,0,59,83,142,42,60,41,7,0,59,83,36,184,253,209,7,0,59,83,26,54,214,78,11,0,62,83,206,69,205,160,6,0,63,83,51,32,212,243,6,0,63,83,249,224,90,53,7,0,63,211,164,204,117,79,7,0,64,211,252,237,138,115,8,0,64,211,252,237,117,124,8,0,64,211,252,237,105,133,8,0,65,83,61,166,159,164,6,0,68,211,190,138,236,51,7,0,70,83,209,55,136,58,7,0,71,211,126,106,99,144,10,0,73,211,225,57,44,26,7,0,73,83,61,255,205,147,7,0,75,211,207,38,67,197,5,0,79,211,192,0,20,15,7,0,79,211,192,0,179,17,7,0,79,211,192,0,27,98,10,0,86,211,54,151,218,51,11,0,89,211,250,86,42,148,6,0,91,83,99,94,193,202,5,0,93,83,138,6,253,208,8,0,93,83,138,6,22,211,8,0,94,211,175,116,239,23,6,0,94,83,45,164,123,236,9,0,97,211,115,105,94,222,9,0,97,211,115,105,131,222,9,0,99,211,154,107,99,15,6,0,99,211,154,107,203,123,6,0,101,211,87,215,139,158,8,0,101,211,87,215,224,163,8,0,102,211,133,66,86,164,6,0,105,211,37,179,139,158,8,0,105,211,37,179,224,163,8,0,106,211,255,40,124,45,8,0,106,211,255,40,1,46,8,0,106,211,255,40,123,46,8,0,107,83,133,246,117,79,7,0,109,83,240,163,12,234,6,0,109,83,34,176,227,108,7,0,109,83,34,176,152,111,7,0,109,83,34,176,186,123,7,0,109,83,122,143,232,191,8,0,109,83,122,143,162,193,8,0,111,211,35,159,188,52,9,0,113,83,83,178,115,43,7,0,114,83,252,199,118,226,8,0,114,83,252,199,72,228,8,0,114,211,209,190,104,244,9,0,114,211,209,190,251,244,9,0,114,211,209,190,146,245,9,0,116,83,136,86,58,57,10,0,117,211,203,216,90,175,8,0,117,211,203,216,74,176,8,0,118,211,250,16,46,206,6,0,120,83,134,171,179,17,7,0,120,83,134,171,140,159,10,0,123,83,60,81,149,204,6,0,127,83,18,45,223,30,7,0,127,211,165,156,90,53,7,0,127,211,66,227,117,79,7,0,128,83,102,227,125,160,6,0,129,211,99,203,216,135,7,0,130,211,199,171,174,51,7,0,130,83,113,27,34,10,10,0,131,83,226,187,20,15,7,0,131,83,226,187,179,17,7,0,131,83,89,103,12,140,7,0,133,83,106,119,90,53,7,0,135,83,142,107,33,156,10,0,138,83,121,240,20,15,7,0,138,83,121,240,179,17,7,0,139,211,49,112,103,40,7,0,145,211,105,247,205,151,9,0,145,211,105,247,199,152,9,0,145,211,105,247,220,153,9,0,146,211,75,45,22,67,6,0,147,211,252,96,227,218,6,0,147,83,31,239,180,144,8,0,147,83,31,239,67,145,8,0,147,211,15,221,80,167,9,0,147,211,15,221,37,168,9,0,149,83,159,167,161,84,6,0,151,211,102,184,166,207,7,0,151,83,236,24,55,91,10,0,155,83,60,5,113,232,6,0,156,83,179,91,14,225,6,0,166,83,90,197,29,150,7,0,167,83,204,39,133,205,6,0,167,211,146,250,217,62,7,0,167,211,188,14,221,38,10,0,167,211,188,14,62,40,10,0,169,83,20,148,18,59,11,0,171,211,82,10,72,204,9,0,173,211,83,19,46,206,5,0,174,83,175,65,245,41,7,0,182,211,135,137,32,30,7,0,183,83,65,187,140,250,5,0,184,83,74,62,66,230,6,0,185,211,73,31,154,4,7,0,186,211,191,243,138,115,8,0,186,211,191,243,117,124,8,0,186,211,191,243,105,133,8,0,188,83,239,173,117,79,7,0,189,211,199,8,237,73,7,0,193,83,105,157,0,203,6,0,193,211,140,235,138,115,8,0,193,211,140,235,117,124,8,0,193,211,140,235,105,133,8,0,194,83,91,5,180,28,7,0,200,211,215,75,139,158,8,0,200,211,215,75,224,163,8,0,201,83,148,48,40,217,8,0,201,83,148,48,40,217,8,0,201,83,148,48,209,217,8,0,201,83,148,48,209,217,8,0,202,83,145,58,89,206,6,0,203,83,92,81,2,199,9,0,203,83,92,81,169,199,9,0,204,211,185,148,76,183,6,0,205,83,72,5,226,206,6,0,205,211,143,98,71,236,6,0,205,211,146,168,38,98,7,0,207,83,79,208,12,213,6,0,207,83,188,148,42,154,7,0,212,211,100,244,138,115,8,0,212,211,100,244,117,124,8,0,212,211,100,244,105,133,8,0,217,211,224,157,79,74,10,0,220,83,19,54,80,32,7,0,222,83,77,138,40,217,8,0,222,83,77,138,209,217,8,0,224,211,221,57,97,199,8,0,224,211,221,57,136,199,8,0,224,211,221,57,210,199,8,0,225,83,184,148,171,49,7,0,225,83,184,148,93,1,10,0,225,83,184,148,122,1,10,0,226,83,244,52,245,228,6,0,226,83,244,52,152,111,7,0,226,83,244,52,155,120,7,0,226,83,244,52,172,120,7,0,232,211,19,175,218,113,9,0,232,211,19,175,120,114,9,0,233,83,207,13,141,230,9,0,233,83,207,13,217,230,9,0,233,211,29,193,74,250,10,0,233,211,29,193,235,252,10,0,234,211,49,0,247,55,7,0,234,211,213,81,227,108,7,0,235,83,181,195,6,7,6,0,236,211,60,22,81,239,8,0,236,211,60,22,40,240,8,0,237,211,171,10,123,236,9,0,240,83,170,140,123,236,9,0,241,211,50,229,38,98,7,0,245,211,152,93,22,35,7,0,246,83,61,245,245,201,5,0,246,211,2,173,103,9,6,0,246,211,195,192,47,147,10,0,248,211,164,149,17,204,5,0,250,83,178,51,117,212,6,0,250,83,92,30,99,66,8,0,254,211,151,9,71,236,6,0,255,211,218,238,107,111,6,0,255,211,218,238,124,253,6,0,255,211,171,20,247,55,7,0,0,212,108,43,68,202,6,0,0,84,146,49,117,79,7,0,1,84,83,159,156,205,6,0,2,84,56,220,71,196,5,0,3,84,176,171,38,203,10,0,7,212,9,73,78,47,11,0,9,84,241,130,191,215,5,0,9,84,241,130,103,182,7,0,10,84,117,184,212,243,6,0,11,84,14,133,99,66,8,0,12,84,76,141,7,226,6,0,13,84,19,161,109,172,9,0,13,84,19,161,178,173,9,0,13,84,19,161,250,174,9,0,16,84,82,82,109,172,9,0,16,84,82,82,178,173,9,0,16,84,82,82,250,174,9,0,19,84,99,65,38,98,7,0,20,84,137,219,64,180,10,0,21,84,31,8,251,58,10,0,21,212,69,182,18,72,10,0,23,84,11,142,163,201,6,0,24,84,180,2,78,47,11,0,26,84,213,108,124,102,6,0,26,212,135,102,239,138,6,0,29,212,219,54,29,204,8,0,29,212,219,54,6,205,8,0,29,84,105,245,251,45,9,0,29,84,105,245,18,46,9,0,30,84,3,13,51,214,8,0,30,84,3,13,241,214,8,0,30,84,3,13,169,215,8,0,32,84,115,108,112,5,10,0,32,84,115,108,28,6,10,0,35,84,3,28,185,143,7,0,37,212,199,120,224,96,11,0,38,84,246,193,7,226,6,0,39,212,192,138,151,64,10,0,42,212,166,126,117,37,7,0,42,84,244,220,164,81,10,0,43,212,75,61,238,217,5,0,49,212,138,179,44,164,10,0,51,84,161,229,20,195,5,0,51,84,161,229,113,24,7,0,51,212,252,15,113,47,7,0,51,84,161,229,162,15,8,0,51,212,31,197,139,158,8,0,51,212,31,197,224,163,8,0,52,212,39,237,121,217,6,0,52,212,44,164,237,73,7,0,52,212,87,192,159,92,9,0,52,212,87,192,5,93,9,0,54,84,52,254,205,203,5,0,54,212,140,47,38,98,7,0,54,84,201,130,138,115,8,0,54,84,201,130,117,124,8,0,54,84,201,130,105,133,8,0,55,212,204,106,103,46,7,0,56,212,138,216,212,243,6,0,56,84,187,202,152,111,7,0,56,84,187,202,205,121,7,0,57,84,35,106,224,146,8,0,57,84,35,106,132,150,8,0,59,212,195,239,118,11,7,0,60,84,113,193,68,196,6,0,68,84,157,98,91,222,7,0,68,84,157,98,254,222,7,0,71,212,68,192,117,37,7,0,71,84,216,201,84,24,11,0,72,212,25,8,20,15,7,0,72,212,25,8,179,17,7,0,73,84,75,175,99,66,8,0,75,84,113,193,90,7,6,0,75,212,174,102,71,236,6,0,75,212,252,63,138,115,8,0,75,212,252,63,117,124,8,0,75,212,252,63,105,133,8,0,75,212,154,78,103,245,8,0,75,212,154,78,151,245,8,0,77,84,255,66,51,214,8,0,77,84,255,66,241,214,8,0,77,84,255,66,169,215,8,0,82,212,86,8,152,111,7,0,82,212,86,8,173,169,8,0,89,84,201,204,139,158,8,0,89,84,201,204,224,163,8,0,89,84,13,126,107,23,10,0,89,84,13,126,195,23,10,0,91,212,175,70,29,5,7,0,92,84,215,183,158,69,7,0,92,84,215,183,202,69,7,0,92,212,85,170,115,113,9,0,92,212,85,170,143,113,9,0,93,84,218,16,71,236,6,0,93,84,212,71,212,243,6,0,96,212,231,113,38,98,7,0,98,212,40,118,60,47,10,0,99,212,125,162,90,7,7,0,102,212,56,201,179,17,7,0,103,212,35,47,234,72,7,0,105,84,137,229,38,98,7,0,106,212,121,39,189,79,10,0,107,212,21,134,130,140,6,0,107,212,21,134,130,170,7,0,108,212,143,189,118,226,8,0,108,212,143,189,72,228,8,0,109,212,89,193,119,225,6,0,109,212,35,166,187,70,7,0,109,212,66,240,138,115,8,0,109,212,66,240,117,124,8,0,109,212,66,240,105,133,8,0,109,212,89,193,4,62,10,0,109,212,109,179,238,34,11,0,112,212,119,52,96,77,11,0,113,212,198,228,47,207,7,0,115,84,104,27,209,131,7,0,115,84,79,208,206,123,10,0,116,84,245,64,101,93,6,0,119,84,128,221,8,24,6,0,125,212,212,232,28,109,6,0,126,212,210,80,11,217,10,0,129,212,219,239,80,32,7,0,130,84,160,82,133,220,6,0,130,84,94,116,25,149,7,0,131,212,6,229,163,219,5,0,131,212,54,141,138,115,8,0,131,212,54,141,117,124,8,0,131,212,54,141,105,133,8,0,131,212,218,12,221,38,10,0,131,212,218,12,62,40,10,0,134,84,16,117,131,40,6,0,134,84,16,117,172,40,6,0,134,84,16,117,152,111,7,0,134,84,16,117,232,120,7,0,134,84,16,117,243,123,7,0,135,212,103,156,59,113,8,0,136,212,53,159,240,226,6,0,138,212,177,7,238,63,10,0,140,212,139,123,247,214,6,0,140,212,173,27,123,236,9,0,141,84,231,253,139,158,8,0,141,84,231,253,224,163,8,0,145,212,149,102,245,228,6,0,145,212,149,102,123,246,8,0,145,212,149,102,175,246,8,0,146,212,145,254,38,98,7,0,152,212,52,117,155,67,7,0,154,212,124,99,28,68,9,0,154,212,124,99,215,68,9,0,154,212,243,174,140,140,9,0,154,212,243,174,174,140,9,0,154,212,243,174,215,140,9,0,154,212,79,190,117,3,11,0,156,84,187,202,232,25,7,0,157,212,175,126,4,89,6,0,157,212,181,156,219,1,7,0,157,212,198,53,161,194,10,0,158,84,205,0,135,187,10,0,159,212,247,123,129,26,6,0,159,212,247,123,130,227,6,0,162,84,200,181,219,210,7,0,162,84,129,19,247,80,10,0,163,212,187,193,71,236,6,0,165,84,189,78,95,0,10,0,165,84,189,78,200,0,10,0,166,212,195,139,122,86,11,0,167,212,66,79,160,234,8,0,167,212,66,79,175,235,8,0,173,212,198,122,246,205,8,0,173,212,198,122,155,206,8,0,174,212,237,26,113,232,6,0,175,84,210,29,178,160,10,0,178,212,182,94,209,130,9,0,178,212,182,94,243,130,9,0,179,84,24,82,179,222,8,0,179,84,24,82,152,223,8,0,180,212,56,104,167,107,7,0,180,212,56,104,27,118,7,0,184,212,254,255,71,57,10,0,185,212,218,106,117,79,7,0,190,84,110,192,82,235,6,0,191,84,55,219,114,41,8,0,191,84,119,171,72,202,8,0,191,84,119,171,175,202,8,0,192,84,174,42,224,87,11,0,193,84,100,139,235,189,7,0,193,84,159,139,205,151,9,0,193,84,159,139,199,152,9,0,193,84,159,139,220,153,9,0,194,84,80,227,78,203,8,0,194,212,67,88,159,92,9,0,194,212,67,88,5,93,9,0,194,212,210,80,240,219,10,0,195,212,71,184,230,70,7,0,197,84,10,251,194,35,10,0,197,84,10,251,14,36,10,0,199,84,174,205,14,202,5,0,199,84,174,205,74,212,6,0,199,84,233,77,212,243,6,0,199,84,108,14,227,108,7,0,199,84,108,14,248,16,9,0,199,84,108,14,16,17,9,0,202,212,10,218,243,6,7,0,202,84,197,106,183,20,10,0,202,84,197,106,230,20,10,0,202,84,218,104,6,230,10,0,203,212,52,65,138,115,8,0,203,212,52,65,117,124,8,0,203,212,52,65,105,133,8,0,203,212,221,107,49,207,10,0,204,84,94,58,243,239,5,0,205,212,84,115,179,181,7,0,207,84,251,24,138,115,8,0,207,84,251,24,117,124,8,0,207,84,251,24,105,133,8,0,209,84,254,69,218,39,6,0,209,84,83,22,38,98,7,0,209,212,145,92,152,111,7,0,209,212,145,92,138,220,7,0,209,212,145,92,182,220,7,0,209,212,224,228,135,101,8,0,211,212,100,230,219,1,7,0,211,84,253,51,179,17,7,0,215,212,125,183,252,238,7,0,217,212,96,139,40,162,10,0,219,84,159,168,247,55,7,0,220,84,71,135,107,246,8,0,220,84,71,135,123,246,8,0,220,84,71,135,175,246,8,0,221,212,87,145,122,73,7,0,221,212,87,145,158,73,7,0,221,84,243,190,104,15,10,0,221,84,243,190,169,15,10,0,223,212,70,188,248,53,6,0,223,84,250,177,23,228,10,0,226,212,150,195,55,38,6,0,228,212,64,143,180,28,7,0,229,84,202,148,238,84,8,0,229,84,202,148,42,85,8,0,229,212,164,4,232,191,8,0,229,212,164,4,162,193,8,0,231,84,104,97,156,1,7,0,234,212,10,248,179,17,7,0,234,84,140,248,140,142,8,0,234,84,140,248,235,142,8,0,234,84,140,248,83,143,8,0,234,212,10,248,11,175,10,0,234,84,140,248,140,210,10,0,237,84,226,236,171,193,9,0,237,84,226,236,196,193,9,0,237,84,226,236,220,193,9,0,237,84,203,9,123,236,9,0,238,212,147,92,141,104,10,0,242,212,247,104,38,98,7,0,248,212,123,169,240,218,7,0,248,212,123,169,36,219,7,0,248,212,123,169,85,219,7,0,248,212,123,169,140,219,7,0,249,212,138,63,168,189,5,0,249,84,45,183,20,15,7,0,249,84,45,183,179,17,7,0,249,84,83,98,238,253,10,0,250,84,131,172,80,32,7,0,251,212,128,84,4,255,8,0,251,212,128,84,50,255,8,0,255,84,167,37,89,243,5,0,1,213,177,133,68,202,6,0,3,85,133,150,136,58,7,0,3,213,46,127,249,154,8,0,3,213,46,127,148,155,8,0,3,213,46,127,52,156,8,0,3,213,244,31,17,84,10,0,4,85,46,51,74,34,11,0,5,85,89,43,220,55,6,0,7,213,50,42,243,142,6,0,11,213,193,126,247,55,7,0,13,85,104,252,155,81,6,0,13,85,54,198,245,28,10,0,13,85,54,198,145,31,10,0,15,85,28,154,229,242,8,0,15,85,28,154,25,243,8,0,16,85,228,111,20,15,7,0,16,85,228,111,179,17,7,0,17,213,76,184,86,15,9,0,17,213,76,184,116,15,9,0,18,213,144,166,68,152,6,0,18,213,3,67,20,15,7,0,21,213,178,214,32,165,10,0,22,213,121,154,105,177,8,0,22,213,121,154,162,177,8,0,28,213,158,25,136,58,7,0,31,213,102,32,237,73,7,0,31,85,114,216,51,241,8,0,31,85,114,216,198,241,8,0,34,85,159,64,179,197,10,0,37,213,25,124,199,105,6,0,38,85,88,24,212,243,6,0,38,213,151,80,26,0,7,0,41,85,197,251,71,236,6,0,44,85,243,153,138,115,8,0,44,85,243,153,117,124,8,0,44,85,243,153,105,133,8,0,47,213,235,122,136,58,7,0,48,213,186,52,236,51,7,0,48,85,21,14,117,79,7,0,51,213,84,210,212,16,11,0,52,213,214,119,245,207,6,0,52,85,180,225,124,222,6,0,52,85,148,190,179,17,7,0,52,85,148,190,186,54,10,0,52,85,148,190,238,54,10,0,56,85,59,179,212,243,6,0,60,213,207,52,80,32,7,0,60,85,234,123,25,202,9,0,60,85,234,123,45,202,9,0,60,85,234,123,69,202,9,0,66,213,166,20,162,94,10,0,67,213,102,172,171,63,7,0,69,213,143,75,152,111,7,0,69,213,143,75,16,217,8,0,74,85,158,140,138,115,8,0,74,85,158,140,117,124,8,0,74,85,158,140,105,133,8,0,75,213,34,116,237,39,8,0,75,85,194,219,5,133,9,0,75,85,194,219,36,133,9,0,76,85,211,231,71,236,6,0,76,85,211,231,113,237,8,0,76,85,211,231,144,237,8,0,77,85,233,209,112,27,7,0,77,85,52,194,138,115,8,0,77,85,52,194,117,124,8,0,77,85,52,194,105,133,8,0,78,85,197,225,153,11,7,0,80,213,160,101,90,76,6,0,80,213,100,18,38,98,7,0,81,85,237,195,233,101,11,0,82,213,185,70,58,191,10,0,86,85,86,234,38,131,10,0,90,213,172,115,159,92,9,0,90,213,172,115,5,93,9,0,92,213,82,224,138,115,8,0,92,213,82,224,117,124,8,0,92,213,82,224,105,133,8,0,93,213,115,5,94,130,10,0,93,213,115,5,134,130,10,0,93,85,64,186,65,39,11,0,94,85,5,169,117,37,7,0,94,213,0,222,111,65,11,0,97,85,99,85,31,149,6,0,98,85,26,163,117,79,7,0,99,85,207,247,38,98,7,0,100,85,0,52,246,76,11,0,100,85,0,52,6,77,11,0,100,85,80,185,169,78,11,0,103,85,220,86,113,232,6,0,105,85,197,5,171,63,7,0,109,213,101,230,15,163,7,0,114,213,184,28,28,68,9,0,114,213,184,28,215,68,9,0,115,213,46,122,48,225,6,0,115,213,204,228,135,90,9,0,115,213,204,228,124,91,9,0,116,213,218,175,117,79,7,0,116,213,67,82,139,158,8,0,116,213,67,82,224,163,8,0,116,213,60,44,29,204,8,0,116,213,60,44,6,205,8,0,118,213,215,165,178,50,11,0,121,213,224,107,136,58,7,0,124,213,202,166,139,158,8,0,124,213,202,166,224,163,8,0,124,213,168,233,109,0,9,0,124,213,168,233,146,0,9,0,124,213,76,204,95,238,10,0,127,85,99,26,204,212,6,0,132,85,117,127,209,241,5,0,136,85,207,121,233,53,9,0,136,85,207,121,38,54,9,0,136,85,207,121,118,54,9,0,139,85,182,5,104,244,9,0,139,85,182,5,251,244,9,0,139,85,182,5,146,245,9,0,140,85,158,157,136,58,7,0,146,85,102,118,232,251,9,0,146,85,102,118,176,252,9,0,147,85,183,30,78,229,6,0,149,85,218,121,139,158,8,0,149,85,218,121,224,163,8,0,149,85,203,57,193,117,9,0,149,85,203,57,221,117,9,0,149,213,91,28,82,231,9,0,150,85,203,95,67,72,8,0,153,85,55,7,195,15,6,0,153,85,14,151,71,236,6,0,153,85,14,151,171,49,7,0,153,85,14,151,224,146,8,0,153,85,14,151,132,150,8,0,157,213,94,247,247,55,7,0,157,85,237,217,218,134,10,0,159,213,100,203,117,79,7,0,160,85,138,239,148,25,11,0,166,213,72,209,5,148,7,0,168,85,217,212,237,73,7,0,174,85,25,198,176,187,10,0,176,213,113,13,75,142,9,0,176,213,113,13,201,142,9,0,176,213,113,13,84,143,9,0,177,85,27,29,224,146,8,0,177,85,27,29,132,150,8,0,177,85,81,27,7,8,11,0,181,85,103,101,42,250,5,0,181,85,2,183,136,58,7,0,188,85,30,159,117,79,7,0,190,85,16,3,162,169,9,0,194,213,176,106,237,73,7,0,194,85,49,84,114,243,8,0,194,85,49,84,37,244,8,0,194,85,221,5,49,25,9,0,194,85,221,5,82,25,9,0,196,85,11,79,80,46,6,0,196,85,143,27,38,98,7,0,199,85,165,99,71,236,6,0,203,213,54,48,153,207,8,0,203,213,54,48,44,208,8,0,207,85,120,192,224,146,8,0,207,85,120,192,132,150,8,0,208,213,240,191,232,251,9,0,208,213,240,191,176,252,9,0,209,213,1,61,247,55,7,0,213,85,129,234,71,236,6,0,213,85,207,31,179,222,8,0,213,85,207,31,152,223,8,0,213,85,207,32,114,243,8,0,213,85,207,32,37,244,8,0,215,213,112,164,246,12,11,0,216,213,10,160,118,226,8,0,216,213,10,160,72,228,8,0,218,85,255,127,145,202,5,0,224,213,187,50,38,98,7,0,225,213,21,173,214,95,6,0,225,213,32,129,153,207,8,0,225,213,32,129,44,208,8,0,229,85,201,5,209,205,6,0,231,213,253,200,236,51,7,0,238,213,207,169,240,226,6,0,239,213,222,198,86,209,6,0,244,213,238,229,29,5,7,0,244,85,0,79,237,73,7,0,246,85,39,169,15,253,10,0,249,85,13,137,5,27,6,0,252,213,90,136,138,115,8,0,252,213,90,136,117,124,8,0,252,213,90,136,105,133,8,0,252,213,10,46,109,172,9,0,252,213,10,46,178,173,9,0,252,213,10,46,250,174,9,0,1,214,6,153,165,226,6,0,6,214,194,250,247,55,7,0,11,86,72,106,253,208,8,0,11,86,72,106,22,211,8,0,14,214,152,248,66,231,5,0,14,214,234,222,219,210,7,0,20,86,108,153,138,115,8,0,20,86,108,153,117,124,8,0,20,86,108,153,105,133,8,0,22,86,48,148,253,208,8,0,22,86,48,148,22,211,8,0,27,86,171,122,163,182,6,0,27,86,29,229,179,17,7,0,27,86,228,233,188,52,9,0,31,86,31,43,71,236,6,0,32,214,166,205,70,188,10,0,32,214,166,205,82,190,10,0,36,214,81,132,60,44,8,0,36,214,81,132,175,44,8,0,36,214,81,132,24,45,8,0,37,214,106,96,72,204,9,0,38,214,219,156,152,111,7,0,38,214,219,156,206,62,8,0,38,214,219,156,99,63,8,0,38,214,219,156,4,64,8,0,38,214,219,156,73,218,9,0,39,86,129,43,121,97,7,0,41,86,209,155,30,44,7,0,46,214,216,118,179,17,7,0,46,214,216,118,166,227,10,0,56,214,2,223,108,26,6,0,57,86,153,134,110,169,10,0,59,214,162,150,117,79,7,0,60,214,153,100,176,172,6,0,62,214,34,26,123,236,9,0,64,214,151,102,66,230,6,0,65,86,186,186,50,229,5,0,65,86,186,186,220,114,6,0,65,214,184,199,153,11,7,0,65,214,184,199,135,13,7,0,66,86,55,200,236,51,7,0,67,214,156,231,26,125,6,0,67,86,7,217,224,146,8,0,67,86,7,217,132,150,8,0,68,86,133,173,79,89,10,0,68,86,133,173,148,106,10,0,68,86,133,173,185,106,10,0,69,86,160,68,90,53,7,0,72,214,157,212,168,9,7,0,72,86,173,4,0,190,8,0,72,86,173,4,168,190,8,0,73,86,31,130,58,61,6,0,73,86,48,29,38,98,7,0,74,86,170,65,178,32,8,0,74,86,170,65,221,32,8,0,75,86,220,11,224,146,8,0,75,86,220,11,132,150,8,0,76,86,10,249,103,46,7,0,76,214,175,18,219,210,7,0,77,214,128,114,228,109,9,0,77,214,128,114,248,110,9,0,82,86,150,170,231,8,10,0,82,86,150,170,3,9,10,0,82,86,150,170,27,9,10,0,83,214,95,174,179,181,7,0,84,214,84,196,229,242,8,0,84,214,84,196,25,243,8,0,85,86,249,208,138,115,8,0,85,86,249,208,117,124,8,0,85,86,249,208,105,133,8,0,86,214,53,136,217,203,10,0,90,86,56,218,51,214,8,0,90,86,56,218,241,214,8,0,90,86,56,218,169,215,8,0,93,214,79,34,20,15,7,0,93,214,79,34,179,17,7,0,94,86,165,125,160,222,5,0,95,86,152,170,224,146,8,0,95,86,152,170,132,150,8,0,96,86,24,9,88,83,6,0,97,86,194,208,88,106,6,0,97,86,202,8,252,42,7,0,105,86,74,148,71,236,6,0,106,214,75,140,71,236,6,0,106,86,9,193,219,1,7,0,106,214,108,139,191,211,9,0,107,214,246,98,177,133,7,0,107,214,246,98,38,134,7,0,107,86,230,17,123,236,9,0,108,86,246,197,237,73,7,0,108,86,191,50,215,76,11,0,109,214,20,114,252,10,6,0,109,86,6,138,82,225,10,0,110,86,162,82,135,90,9,0,110,86,162,82,124,91,9,0,110,214,210,201,245,28,10,0,110,214,210,201,145,31,10,0,111,86,175,242,152,63,6,0,112,86,102,194,63,165,6,0,114,86,239,12,227,108,7,0,114,86,239,12,131,249,9,0,115,214,20,203,117,79,7,0,115,214,148,144,165,11,9,0,115,214,148,144,58,12,9,0,118,214,113,85,130,227,6,0,118,214,140,109,20,15,7,0,118,214,140,109,179,17,7,0,119,86,9,21,71,236,6,0,119,86,26,74,118,0,7,0,121,214,158,94,28,253,6,0,121,214,158,94,117,37,7,0,123,86,236,125,212,200,6,0,123,214,127,151,213,204,6,0,123,214,156,215,100,228,6,0,123,214,210,83,236,26,7,0,125,86,87,153,196,217,10,0,127,214,118,206,111,47,6,0,128,214,104,100,120,146,6,0,128,214,0,37,38,98,7,0,129,86,43,143,141,255,8,0,129,86,43,143,235,255,8,0,132,86,200,156,63,112,9,0,132,86,200,156,116,112,9,0,135,214,81,48,38,98,7,0,135,214,84,77,160,234,8,0,135,214,84,77,175,235,8,0,135,86,97,207,141,230,9,0,135,86,97,207,217,230,9,0,140,214,168,222,221,38,10,0,140,214,168,222,62,40,10,0,141,214,19,227,136,58,7,0,141,214,103,158,135,165,7,0,143,214,221,163,23,179,8,0,143,214,221,163,119,179,8,0,143,214,204,203,113,136,10,0,143,214,204,203,59,138,10,0,144,214,119,102,247,55,7,0,144,214,18,201,121,97,7,0,145,86,127,35,20,15,7,0,145,86,127,35,179,17,7,0,146,214,73,98,71,236,6,0,148,214,91,48,117,37,7,0,148,214,85,210,38,98,7,0,150,86,158,226,91,70,7,0,151,214,90,36,30,171,9,0,155,86,50,78,128,8,7,0,155,86,95,27,101,95,7,0,155,86,95,27,227,108,7,0,155,86,75,104,199,145,7,0,155,86,91,49,150,121,10,0,155,214,198,37,10,143,10,0,157,214,192,129,152,234,6,0,157,214,0,50,42,46,7,0,158,86,52,192,138,115,8,0,158,86,52,192,117,124,8,0,158,86,52,192,105,133,8,0,159,86,149,89,51,34,6,0,162,86,44,78,138,115,8,0,162,86,44,78,117,124,8,0,162,86,44,78,105,133,8,0,162,86,233,10,206,34,11,0,163,214,156,25,136,58,7,0,163,86,86,250,29,204,8,0,163,86,86,250,6,205,8,0,163,86,77,34,28,68,9,0,163,86,77,34,215,68,9,0,164,86,201,57,210,114,10,0,165,214,117,9,237,73,7,0,168,86,223,21,230,130,7,0,169,214,105,27,71,236,6,0,171,214,172,122,71,89,7,0,171,214,81,163,139,214,9,0,171,214,81,163,234,214,9,0,171,214,81,163,70,215,9,0,171,86,122,127,123,236,9,0,173,86,237,96,212,243,6,0,173,86,248,145,20,15,7,0,173,86,248,145,179,17,7,0,175,214,29,110,237,73,7,0,175,86,36,5,203,111,10,0,177,86,45,68,235,189,7,0,178,214,90,142,136,168,6,0,178,214,90,142,117,37,7,0,181,86,160,247,95,0,10,0,181,86,160,247,200,0,10,0,184,214,206,59,187,218,6,0,184,214,91,211,38,254,10,0,185,214,134,189,58,18,8,0,185,86,118,200,181,145,10,0,188,214,169,174,90,175,8,0,188,214,169,174,74,176,8,0,189,214,87,14,83,205,6,0,191,86,44,29,117,79,7,0,194,214,7,57,118,11,7,0,197,214,81,18,100,228,6,0,200,86,112,167,110,35,11,0,204,86,194,190,246,205,8,0,204,86,194,190,155,206,8,0,206,86,4,50,123,236,9,0,207,86,11,162,139,252,8,0,207,86,11,162,171,252,8,0,207,86,11,162,207,252,8,0,210,214,246,224,71,236,6,0,212,86,107,178,212,243,6,0,212,86,62,91,236,26,7,0,212,86,187,118,218,113,9,0,212,86,187,118,120,114,9,0,216,214,72,133,117,37,7,0,218,214,25,69,197,253,6,0,221,214,85,35,123,236,9,0,222,214,75,150,136,58,7,0,222,214,69,55,232,191,8,0,222,214,69,55,162,193,8,0,224,86,246,36,146,235,6,0,224,86,48,166,80,47,7,0,224,86,48,166,61,187,7,0,224,214,124,255,245,79,9,0,224,214,124,255,20,80,9,0,224,214,124,255,44,80,9,0,225,214,9,126,153,11,7,0,225,214,9,126,135,13,7,0,226,214,99,218,109,11,6,0,227,214,37,173,165,11,9,0,227,214,37,173,58,12,9,0,228,214,156,123,38,98,7,0,235,86,221,192,101,71,11,0,239,86,89,59,169,35,8,0,240,214,22,227,65,7,8,0,240,214,22,227,113,7,8,0,240,214,22,227,155,7,8,0,240,214,224,254,109,80,11,0,241,214,183,162,2,32,7,0,241,214,220,212,230,130,7,0,242,214,143,179,210,225,6,0,242,214,210,66,59,113,8,0,246,214,222,174,189,94,6,0,246,86,205,251,117,79,7,0,246,214,222,174,227,108,7,0,246,214,222,174,45,74,8,0,247,214,160,221,247,55,7,0,248,214,226,217,210,77,10,0,255,86,89,217,38,98,7,0,0,215,239,121,196,8,6,0,0,215,14,234,237,73,7,0,1,215,138,254,140,142,8,0,1,215,138,254,235,142,8,0,1,215,138,254,83,143,8,0,2,87,193,165,247,55,7,0,2,215,195,67,136,58,7,0,3,215,168,11,121,31,11,0,4,215,24,118,77,200,6,0,4,215,162,177,30,171,9,0,6,215,81,165,179,17,7,0,6,215,81,165,138,115,8,0,6,215,81,165,117,124,8,0,6,215,81,165,105,133,8,0,8,215,227,89,179,17,7,0,8,215,249,151,162,50,7,0,8,215,227,89,225,109,10,0,10,87,1,102,139,158,8,0,10,87,1,102,224,163,8,0,10,87,87,184,47,221,10,0,11,87,168,255,237,73,7,0,11,87,33,4,210,110,7,0,11,87,201,6,220,150,7,0,11,87,201,6,212,218,9,0,11,87,201,6,9,219,9,0,11,87,201,6,69,219,9,0,16,87,124,198,219,210,7,0,16,87,128,64,123,236,9,0,17,87,170,245,200,6,9,0,17,87,170,245,117,7,9,0,18,87,199,67,101,0,6,0,19,215,86,244,118,226,8,0,19,215,86,244,72,228,8,0,21,87,170,173,231,97,9,0,21,87,170,173,254,97,9,0,21,87,170,173,17,98,9,0,25,215,188,193,88,129,7,0,25,215,151,25,123,236,9,0,25,215,248,179,216,63,10,0,25,215,248,179,120,99,10,0,27,87,205,196,237,73,7,0,29,87,82,80,237,73,7,0,29,215,168,167,21,13,8,0,29,215,168,167,83,13,8,0,29,215,168,167,135,13,8,0,30,215,21,109,71,236,6,0,31,215,31,134,169,15,9,0,31,215,31,134,204,15,9,0,31,215,31,134,241,15,9,0,32,87,34,76,183,83,6,0,33,87,17,78,175,200,6,0,33,215,8,47,113,22,11,0,34,87,75,233,203,252,10,0,39,87,46,33,90,53,7,0,39,87,223,72,138,115,8,0,39,215,27,224,138,115,8,0,39,87,223,72,117,124,8,0,39,215,27,224,117,124,8,0,39,87,223,72,105,133,8,0,39,215,27,224,105,133,8,0,40,215,210,28,212,243,6,0,42,215,175,99,152,111,7,0,42,215,175,99,17,128,7,0,43,87,160,185,15,53,6,0,43,215,0,204,71,236,6,0,44,87,183,61,80,32,7,0,44,215,93,158,38,98,7,0,44,215,164,240,102,34,11,0,45,215,124,61,33,203,7,0,45,215,124,61,74,203,7,0,46,215,15,147,231,128,9,0,46,215,15,147,254,128,9,0,46,215,15,147,28,129,9,0,48,215,192,235,219,1,7,0,52,87,64,215,72,204,9,0,54,215,33,184,230,19,6,0,60,87,75,112,100,231,5,0,64,87,114,135,88,106,6,0,66,215,113,27,81,63,7,0,68,215,208,26,170,57,8,0,70,215,171,114,254,254,6,0,70,87,49,8,136,58,7,0,71,215,235,200,103,46,7,0,71,87,175,22,237,73,7,0,72,87,152,121,247,214,6,0,72,87,46,115,141,195,8,0,72,87,46,115,112,196,8,0,72,87,46,115,75,197,8,0,73,87,166,177,140,66,7,0,73,87,166,177,234,66,7,0,75,87,92,127,124,222,6,0,75,215,91,236,51,214,8,0,75,215,91,236,241,214,8,0,75,215,91,236,169,215,8,0,78,87,228,157,80,186,5,0,81,87,57,126,29,218,5,0,81,87,223,247,123,236,9,0,82,215,43,116,197,253,6,0,84,87,122,75,254,254,6,0,85,87,103,72,254,243,5,0,85,87,103,72,153,89,7,0,86,87,47,104,12,140,7,0,86,215,236,170,180,144,8,0,86,215,236,170,67,145,8,0,87,215,254,86,149,43,7,0,88,87,107,190,212,243,6,0,91,215,71,100,152,111,7,0,91,215,71,100,182,43,10,0,92,87,212,236,138,115,8,0,92,87,212,236,117,124,8,0,92,87,212,236,105,133,8,0,95,87,130,243,45,31,9,0,95,87,130,243,78,31,9,0,95,87,130,243,102,31,9,0,97,87,12,2,169,15,9,0,97,87,12,2,204,15,9,0,97,87,12,2,241,15,9,0,97,215,94,227,160,144,10,0,98,215,153,65,227,229,6,0,98,215,233,142,117,79,7,0,98,87,148,190,152,111,7,0,98,87,148,190,127,120,7,0,100,87,243,167,179,181,7,0,101,87,153,177,30,171,9,0,102,87,32,117,151,21,7,0,104,87,114,33,38,98,7,0,104,87,87,45,29,150,7,0,105,87,156,89,63,112,9,0,105,87,156,89,116,112,9,0,105,215,182,56,21,62,11,0,111,215,231,84,38,98,7,0,114,87,20,57,212,243,6,0,117,215,190,60,209,25,11,0,117,87,59,224,224,96,11,0,118,87,2,103,20,15,7,0,118,87,2,103,179,17,7,0,119,215,189,190,102,223,6,0,119,87,66,216,224,146,8,0,119,87,66,216,132,150,8,0,121,87,97,205,212,243,6,0,121,215,161,25,29,5,7,0,123,87,129,214,254,243,5,0,123,215,59,96,22,35,7,0,123,215,197,85,247,55,7,0,123,87,129,214,153,89,7,0,127,87,208,98,231,29,7,0,127,87,208,98,113,47,7,0,128,215,70,128,227,218,6,0,128,215,70,128,101,219,6,0,128,215,47,7,212,243,6,0,132,215,126,245,167,187,5,0,133,215,149,18,117,37,7,0,133,215,180,222,138,115,8,0,133,215,180,222,117,124,8,0,133,215,180,222,105,133,8,0,134,87,170,107,244,12,9,0,134,87,170,107,21,13,9,0,135,87,29,219,2,23,7,0,135,215,56,206,123,236,9,0,137,87,71,17,54,217,10,0,139,215,45,33,114,188,8,0,139,215,45,33,157,188,8,0,140,87,101,30,77,203,6,0,140,87,14,192,237,73,7,0,140,87,85,135,123,236,9,0,145,87,147,147,138,115,8,0,145,87,147,147,117,124,8,0,145,87,147,147,105,133,8,0,146,215,22,221,237,73,7,0,147,87,140,125,204,70,6,0,148,215,61,242,71,236,6,0,148,87,3,84,247,55,7,0,151,87,127,66,153,11,7,0,151,87,127,66,135,13,7,0,151,87,105,143,245,28,10,0,151,87,105,143,145,31,10,0,156,215,86,171,46,16,10,0,157,215,181,57,146,235,6,0,163,87,251,125,237,73,7,0,163,87,1,240,51,241,8,0,163,87,1,240,198,241,8,0,170,215,46,55,166,220,8,0,170,215,46,55,241,220,8,0,172,215,34,16,99,66,8,0,173,215,131,247,252,209,6,0,173,215,205,92,161,175,10,0,174,87,25,58,26,0,7,0,174,215,20,215,125,151,7,0,174,215,87,184,246,205,8,0,174,215,87,184,155,206,8,0,175,215,132,99,71,236,6,0,175,87,113,193,218,159,10,0,177,87,243,67,82,117,6,0,178,87,208,31,10,158,6,0,178,87,32,132,63,212,7,0,188,215,1,144,171,49,7,0,188,215,19,146,200,179,7,0,189,215,161,131,183,209,6,0,189,215,142,249,138,115,8,0,189,215,142,249,117,124,8,0,189,215,142,249,105,133,8,0,191,87,94,205,231,34,6,0,192,87,122,231,227,223,6,0,193,87,130,239,237,73,7,0,194,215,37,142,38,98,7,0,195,215,200,163,38,98,7,0,195,215,200,163,62,124,7,0,196,87,61,144,237,73,7,0,199,87,44,236,123,236,9,0,201,215,103,62,254,243,5,0,201,215,103,62,153,89,7,0,202,215,234,27,71,236,6,0,206,215,210,54,254,138,9,0,206,215,210,54,42,139,9,0,207,87,251,201,152,111,7,0,207,87,251,201,226,231,8,0,212,87,170,180,212,243,6,0,214,87,184,54,122,180,6,0,215,215,76,84,132,12,11,0,218,87,211,11,115,58,11,0,219,215,133,164,209,245,7,0,223,87,112,141,224,146,8,0,223,87,112,141,132,150,8,0,225,87,79,196,109,24,11,0,226,215,212,131,230,215,6,0,226,215,182,1,141,195,8,0,226,215,182,1,112,196,8,0,226,215,182,1,75,197,8,0,226,87,21,126,100,77,10,0,227,87,60,56,71,236,6,0,228,215,222,79,3,157,8,0,228,215,222,79,180,157,8,0,230,215,212,9,197,253,6,0,232,87,200,69,252,134,6,0,237,87,204,190,82,83,11,0,237,87,204,190,87,88,11,0,239,87,193,165,115,72,10,0,240,87,59,132,38,98,7,0,242,87,236,172,1,62,9,0,242,87,236,172,42,62,9,0,242,87,236,172,88,62,9,0,242,87,236,172,149,62,9,0,242,87,236,172,194,62,9,0,242,87,236,172,237,62,9,0,242,87,236,172,32,63,9,0,243,215,207,12,2,23,7,0,245,87,6,197,165,9,9,0,245,87,6,197,221,9,9,0,245,87,6,197,22,10,9,0,247,215,226,107,195,48,7,0,249,215,55,248,226,50,6,0,249,215,149,241,237,73,7,0,251,87,49,101,219,210,7,0,251,215,184,101,55,37,11,0,252,87,171,67,230,130,7,0,253,87,239,17,64,132,6,0,253,215,18,60,63,155,7,0,0,88,221,85,212,243,6,0,0,216,53,39,29,5,7,0,0,88,117,27,74,102,10,0,1,216,103,39,165,117,6,0,8,216,224,133,197,253,6,0,12,88,128,82,237,73,7,0,14,216,128,58,223,107,6,0,14,88,158,12,71,236,6,0,14,88,138,251,71,236,6,0,15,216,127,226,63,143,7,0,16,216,94,97,38,98,7,0,19,88,211,239,138,51,7,0,19,216,220,168,76,192,10,0,26,216,106,21,155,67,7,0,26,88,99,247,178,148,10,0,28,88,150,84,28,236,6,0,28,88,33,91,199,145,7,0,28,216,84,85,19,227,9,0,28,216,84,85,34,227,9,0,28,216,84,85,58,227,9,0,28,88,198,33,202,225,10,0,32,88,187,43,228,41,11,0,36,88,75,166,245,28,10,0,36,88,75,166,145,31,10,0,37,88,67,231,60,41,6,0,37,88,143,251,2,23,7,0,40,88,1,57,162,36,7,0,41,88,18,86,254,243,5,0,41,88,18,86,153,89,7,0,41,88,171,93,229,87,10,0,41,216,15,81,252,135,10,0,43,88,7,122,248,234,6,0,44,88,60,46,139,158,8,0,44,88,60,46,224,163,8,0,44,88,147,41,123,236,9,0,46,216,34,154,11,241,5,0,47,216,1,16,71,236,6,0,48,88,252,141,11,9,7,0,48,216,92,139,57,10,7,0,48,88,252,141,75,1,9,0,48,88,252,141,154,2,9,0,48,88,252,141,235,3,9,0,48,88,252,141,65,5,9,0,52,216,158,49,139,158,8,0,52,216,158,49,224,163,8,0,54,216,26,138,13,32,9,0,54,216,26,138,195,32,9,0,54,216,152,162,13,195,10,0,55,216,38,186,212,200,6,0,57,88,111,53,29,5,7,0,57,88,177,216,138,115,8,0,57,88,177,216,117,124,8,0,57,88,177,216,105,133,8,0,57,216,166,63,139,158,8,0,57,216,166,63,224,163,8,0,61,88,76,191,82,226,5,0,61,216,125,18,66,230,6,0,61,88,182,73,139,158,8,0,61,88,182,73,224,163,8,0,61,88,191,82,97,114,10,0,63,216,176,237,63,82,9,0,63,216,176,237,86,82,9,0,66,88,70,10,61,220,8,0,66,88,70,10,91,220,8,0,68,88,165,50,34,10,10,0,69,88,153,75,21,63,6,0,69,88,154,166,61,6,8,0,71,216,219,5,118,226,8,0,71,216,219,5,72,228,8,0,73,88,67,162,152,30,8,0,73,88,67,162,197,30,8,0,73,88,67,162,242,30,8,0,73,88,52,235,165,11,9,0,73,88,52,235,58,12,9,0,74,88,218,26,3,157,8,0,74,88,218,26,180,157,8,0,78,216,193,88,8,94,9,0,78,216,193,88,29,94,9,0,78,216,165,80,46,16,10,0,81,88,128,143,232,191,8,0,81,88,128,143,162,193,8,0,82,88,161,255,69,23,8,0,84,88,201,61,228,212,6,0,84,216,21,70,232,191,8,0,84,216,21,70,162,193,8,0,84,216,13,211,118,226,8,0,84,216,13,211,72,228,8,0,87,88,75,116,138,29,11,0,89,216,205,9,200,6,9,0,89,216,205,9,117,7,9,0,98,88,71,30,253,208,8,0,98,88,71,30,22,211,8,0,101,216,251,96,224,146,8,0,101,216,251,96,132,150,8,0,102,216,62,5,109,172,9,0,102,216,62,5,178,173,9,0,102,216,62,5,250,174,9,0,102,88,195,48,58,179,9,0,102,88,195,48,94,179,9,0,103,216,147,190,180,144,8,0,103,216,147,190,67,145,8,0,108,216,233,26,171,196,6,0,110,216,160,195,155,67,7,0,115,88,165,16,124,36,11,0,115,88,165,16,26,56,11,0,117,88,179,82,212,243,6,0,117,88,168,190,112,27,7,0,117,88,179,82,165,91,7,0,117,88,179,82,194,91,7,0,118,216,49,7,123,236,9,0,118,216,46,231,69,22,11,0,119,88,189,199,58,179,9,0,119,88,189,199,94,179,9,0,121,216,21,199,136,58,7,0,122,216,9,213,94,255,7,0,122,88,12,207,57,171,8,0,122,88,12,207,133,172,8,0,122,88,12,207,211,173,8,0,124,216,151,81,228,22,6,0,126,88,189,148,253,208,8,0,126,88,189,148,22,211,8,0,127,88,134,89,152,111,7,0,127,216,53,173,12,140,7,0,127,88,164,202,253,208,8,0,127,88,164,202,22,211,8,0,127,216,91,71,234,66,10,0,128,216,114,249,136,58,7,0,128,216,107,23,117,79,7,0,129,88,13,139,152,111,7,0,129,216,125,228,229,27,8,0,129,216,125,228,126,28,8,0,131,88,186,61,245,28,10,0,131,88,186,61,145,31,10,0,133,88,187,156,84,47,6,0,133,88,241,174,117,79,7,0,134,216,90,47,104,15,10,0,134,216,90,47,169,15,10,0,139,216,72,3,254,243,5,0,139,216,72,3,153,89,7,0,139,216,211,214,46,16,10,0,144,88,39,216,27,103,6,0,145,216,189,13,114,243,8,0,145,216,189,13,37,244,8,0,149,216,226,117,244,16,6,0,149,88,159,149,223,30,7,0,151,88,227,40,100,228,6,0,151,216,210,97,151,191,9,0,151,216,210,97,189,191,9,0,153,88,21,186,152,111,7,0,153,88,21,186,62,124,7,0,154,88,215,66,139,214,9,0,154,88,215,66,234,214,9,0,154,88,215,66,70,215,9,0,155,88,143,61,167,107,7,0,158,88,179,28,141,230,9,0,158,88,179,28,217,230,9,0,159,88,16,7,28,19,6,0,160,216,244,182,159,45,7,0,161,216,58,236,118,226,8,0,161,216,58,236,72,228,8,0,162,88,86,204,215,16,10,0,162,88,86,204,135,17,10,0,166,88,150,124,245,28,10,0,166,88,150,124,145,31,10,0,167,216,79,190,117,79,7,0,169,88,53,56,107,210,6,0,169,88,53,56,138,115,8,0,169,88,53,56,117,124,8,0,169,88,53,56,105,133,8,0,170,216,8,76,204,36,6,0,171,88,24,243,57,171,8,0,171,88,24,243,133,172,8,0,171,88,24,243,211,173,8,0,175,88,139,238,38,98,7,0,179,88,239,59,237,142,7,0,179,88,239,59,123,236,9,0,181,216,228,232,90,53,7,0,182,88,109,163,7,220,6,0,183,88,87,167,71,236,6,0,183,88,77,6,44,137,10,0,184,216,204,33,109,231,6,0,184,216,110,45,91,70,7,0,186,216,97,117,80,32,7,0,186,216,248,120,136,58,7,0,186,88,49,62,218,113,9,0,186,88,49,62,120,114,9,0,187,216,7,126,138,115,8,0,187,216,7,126,117,124,8,0,187,216,7,126,105,133,8,0,187,216,82,16,215,16,10,0,187,216,82,16,135,17,10,0,189,88,95,201,138,115,8,0,189,88,95,201,117,124,8,0,189,88,95,201,105,133,8,0,189,216,78,215,140,53,11,0,190,88,20,154,99,238,5,0,190,216,51,195,123,236,9,0,191,88,28,16,130,73,10,0,192,216,85,230,139,158,8,0,192,216,85,230,224,163,8,0,193,88,105,47,38,98,7,0,193,88,105,47,52,117,7,0,193,88,10,1,139,158,8,0,193,88,10,1,224,163,8,0,194,88,31,62,211,118,10,0,196,88,79,172,64,75,11,0,196,88,79,172,109,76,11,0,197,88,185,248,123,236,9,0,199,88,218,59,17,184,8,0,204,88,21,111,80,45,11,0,206,216,73,97,172,3,7,0,206,88,135,166,38,98,7,0,208,216,25,213,188,52,9,0,209,216,160,40,122,167,10,0,211,216,61,122,175,200,6,0,211,88,239,226,32,166,7,0,217,88,216,197,72,204,9,0,217,216,165,146,84,73,10,0,220,88,8,29,136,58,7,0,221,88,184,239,28,68,9,0,221,88,184,239,215,68,9,0,224,216,187,67,68,202,6,0,225,216,178,224,127,51,11,0,229,88,0,208,78,203,8,0,232,88,95,103,171,63,7,0,234,88,79,170,24,25,6,0,237,216,150,233,200,6,9,0,237,216,150,233,117,7,9,0,238,88,114,11,247,55,7,0,239,216,64,214,34,103,11,0,240,88,221,223,33,65,7,0,242,88,62,227,112,106,6,0,242,88,62,227,153,11,7,0,242,88,62,227,135,13,7,0,242,88,62,227,13,129,7,0,242,88,136,98,135,68,10,0,243,216,61,20,203,158,10,0,245,216,87,79,80,32,7,0,249,216,78,187,123,236,9,0,251,88,81,27,153,207,8,0,251,88,81,27,44,208,8,0,253,88,76,197,90,53,7,0,253,88,166,195,149,103,8,0,255,216,163,134,40,217,8,0,255,216,163,134,209,217,8,0,0,217,224,32,71,236,6,0,5,89,183,94,212,243,6,0,6,217,87,7,138,115,8,0,6,217,87,7,117,124,8,0,6,217,87,7,105,133,8,0,8,217,51,136,23,172,7,0,10,217,129,242,110,3,8,0,11,89,243,86,162,106,6,0,11,89,243,86,63,112,9,0,11,89,243,86,116,112,9,0,12,89,151,249,167,71,7,0,13,89,226,209,14,246,5,0,13,217,177,41,254,254,6,0,16,89,140,69,232,25,7,0,16,217,246,228,230,0,8,0,17,217,9,50,99,66,8,0,18,89,117,46,152,111,7,0,18,89,117,46,60,44,8,0,18,89,117,46,175,44,8,0,18,89,117,46,24,45,8,0,18,89,117,46,178,229,9,0,19,89,79,19,123,236,9,0,24,217,105,16,233,229,5,0,24,217,19,117,139,158,8,0,24,217,19,117,224,163,8,0,27,217,199,138,125,44,7,0,27,217,34,103,224,146,8,0,27,217,34,103,132,150,8,0,27,217,112,103,72,56,11,0,29,217,202,129,23,83,6,0,29,89,142,240,212,243,6,0,29,217,202,129,113,24,7,0,34,217,187,250,61,161,6,0,35,89,21,241,212,243,6,0,42,89,201,57,236,51,7,0,45,89,27,249,51,136,9,0,45,89,27,249,69,136,9,0,47,89,58,127,136,58,7,0,48,217,240,57,208,128,6,0,48,89,37,13,244,159,6,0,48,217,13,246,57,10,7,0,52,217,58,206,63,25,7,0,55,217,204,225,140,142,8,0,55,217,204,225,235,142,8,0,55,217,204,225,83,143,8,0,55,217,146,230,109,219,10,0,58,217,169,158,226,104,6,0,64,217,9,193,245,228,6,0,65,89,92,115,212,243,6,0,65,217,97,172,20,15,7,0,68,217,34,101,152,111,7,0,68,217,34,101,84,53,8,0,71,217,190,110,117,79,7,0,71,89,107,226,161,46,10,0,71,89,107,226,238,46,10,0,73,217,152,162,110,193,10,0,77,217,141,127,57,233,5,0,77,217,141,127,78,233,5,0,77,217,78,178,133,220,6,0,77,217,62,123,53,66,7,0,78,217,216,113,71,133,10,0,79,217,11,111,117,79,7,0,81,217,9,37,194,35,10,0,81,217,9,37,14,36,10,0,81,217,124,19,213,147,10,0,82,217,226,170,212,243,6,0,84,217,205,172,217,31,7,0,84,89,43,3,81,239,8,0,84,89,43,3,40,240,8,0,85,217,164,34,152,111,7,0,85,217,164,34,84,53,8,0,86,217,64,36,221,242,10,0,88,217,32,115,197,253,6,0,90,217,224,147,139,158,8,0,90,217,224,147,224,163,8,0,91,217,153,103,139,158,8,0,91,217,153,103,224,163,8,0,93,89,80,70,81,40,6,0,93,217,183,147,133,220,6,0,93,89,135,94,153,11,7,0,93,89,135,94,135,13,7,0,93,217,185,66,139,158,8,0,93,217,185,66,224,163,8,0,95,89,116,32,223,145,10,0,97,89,37,133,212,243,6,0,98,217,241,102,80,45,11,0,99,217,49,182,117,79,7,0,101,89,5,193,123,236,9,0,102,89,183,178,30,171,9,0,103,89,122,222,123,236,9,0,104,89,105,230,151,173,7,0,104,89,239,83,14,19,8,0,105,89,166,8,238,137,7,0,105,89,117,154,91,17,9,0,105,89,117,154,177,17,9,0,105,89,117,154,1,18,9,0,107,89,56,115,232,191,8,0,107,89,56,115,162,193,8,0,109,89,177,119,118,226,8,0,109,89,177,119,72,228,8,0,112,89,51,108,215,61,6,0,112,217,32,232,228,109,9,0,112,217,32,232,248,110,9,0,114,89,155,19,2,23,7,0,114,89,155,19,38,98,7,0,114,217,200,127,29,59,10,0,115,217,87,113,234,164,10,0,116,217,235,17,48,141,7,0,116,217,235,17,106,141,7,0,116,89,39,57,38,253,8,0,116,89,39,57,173,253,8,0,116,217,204,73,3,91,10,0,117,89,86,137,63,165,6,0,118,89,101,197,29,73,7,0,121,89,138,180,212,243,6,0,127,89,125,143,139,158,8,0,127,89,125,143,224,163,8,0,128,89,220,176,103,46,7,0,129,217,4,216,152,188,10,0,129,217,4,216,245,191,10,0,129,89,172,187,37,65,11,0,129,89,172,187,17,75,11,0,130,217,151,239,188,52,9,0,131,89,105,165,160,234,8,0,131,89,105,165,175,235,8,0,135,217,155,169,84,21,8,0,135,217,22,181,205,82,10,0,136,89,16,130,38,98,7,0,136,89,16,130,245,54,8,0,136,89,16,130,37,55,8,0,138,217,218,127,153,194,5,0,138,217,44,202,117,212,6,0,139,217,155,158,247,55,7,0,140,217,249,55,177,62,7,0,141,89,229,14,135,156,7,0,141,89,229,14,223,156,7,0,146,217,198,235,38,98,7,0,146,217,244,231,182,114,8,0,147,217,51,69,200,207,6,0,147,217,12,171,207,23,11,0,150,89,53,225,138,115,8,0,150,89,53,225,117,124,8,0,150,89,53,225,105,133,8,0,151,89,157,78,237,73,7,0,151,217,143,154,139,158,8,0,151,217,143,154,224,163,8,0,151,217,129,46,123,236,9,0,152,89,166,22,191,132,10,0,153,89,12,5,100,71,7,0,155,89,220,35,123,236,9,0,162,217,172,89,212,188,6,0,162,217,213,230,48,225,6,0,164,89,168,54,228,73,6,0,165,89,115,181,63,165,6,0,168,89,214,99,21,36,7,0,172,89,71,45,212,243,6,0,174,89,106,70,155,57,10,0,178,217,148,192,131,235,7,0,178,217,214,54,123,236,9,0,181,89,133,154,71,236,6,0,181,217,79,87,33,65,7,0,183,217,105,60,224,146,8,0,183,217,105,60,132,150,8,0,187,217,14,169,123,236,9,0,189,217,102,254,248,90,7,0,192,89,192,217,253,208,8,0,192,89,192,217,22,211,8,0,193,217,13,29,118,226,8,0,193,217,13,29,72,228,8,0,197,89,154,97,38,98,7,0,198,89,148,12,180,28,7,0,198,217,134,7,70,209,9,0,198,217,134,7,141,209,9,0,198,217,134,7,208,209,9,0,198,217,134,7,13,210,9,0,199,89,197,242,164,233,5,0,199,89,197,242,215,81,6,0,201,217,51,177,212,243,6,0,201,217,13,112,224,145,9,0,201,217,13,112,246,145,9,0,201,217,13,112,176,131,10,0,203,217,21,0,142,83,9,0,206,89,197,155,237,73,7,0,208,89,72,82,57,224,7,0,210,217,209,77,221,38,10,0,210,217,209,77,62,40,10,0,211,217,17,142,117,79,7,0,212,89,95,22,197,253,6,0,212,89,189,190,63,242,7,0,214,217,178,21,243,6,7,0,215,89,156,244,90,53,7,0,220,217,8,168,36,56,10,0,223,217,129,111,236,51,7,0,224,89,25,168,103,46,7,0,224,89,152,215,38,98,7,0,226,89,55,127,192,223,5,0,226,217,9,12,205,151,9,0,226,217,9,12,199,152,9,0,226,217,9,12,220,153,9,0,228,89,45,252,71,236,6,0,231,217,160,159,237,73,7,0,233,217,80,95,227,108,7,0,233,217,80,95,43,204,9,0,234,217,77,21,2,199,9,0,234,217,77,21,169,199,9,0,234,89,82,250,90,195,10,0,235,89,188,5,241,198,5,0,235,217,248,61,20,15,7,0,235,217,248,61,33,65,7,0,236,217,7,187,113,232,6,0,237,89,131,93,253,208,8,0,237,89,131,93,22,211,8,0,239,217,124,190,61,224,6,0,239,217,120,216,141,195,8,0,239,217,120,216,112,196,8,0,239,217,120,216,75,197,8,0,239,89,125,142,54,239,10,0,240,89,93,10,166,73,10,0,241,89,234,211,102,223,6,0,241,89,106,108,136,58,7,0,243,217,22,38,122,229,6,0,243,89,180,90,118,0,7,0,243,89,40,245,227,108,7,0,243,89,40,245,152,111,7,0,243,89,61,131,129,136,10,0,246,89,137,171,212,243,6,0,247,217,238,166,78,47,11,0,248,217,155,13,66,1,6,0,248,217,179,175,11,9,7,0,248,217,179,175,75,1,9,0,248,217,179,175,154,2,9,0,248,217,179,175,235,3,9,0,248,217,179,175,65,5,9,0,249,89,120,36,185,198,6,0,249,89,110,143,246,208,10,0,249,217,148,110,86,31,11,0,250,89,15,20,6,193,6,0,250,89,15,20,95,226,7,0,251,89,34,112,38,98,7,0,252,89,8,11,182,142,10,0,253,217,16,130,84,21,8,0,253,217,190,64,72,204,9,0,253,89,93,94,245,28,10,0,253,89,93,94,145,31,10,0,253,89,215,104,198,45,11,0,254,217,17,211,51,241,8,0,254,217,17,211,198,241,8,0,255,89,165,55,62,4,7,0,255,217,138,217,38,98,7,0,1,90,142,238,101,142,10,0,1,90,142,238,14,145,10,0,2,90,38,4,77,120,9,0,2,90,38,4,123,120,9,0,3,90,67,5,226,43,9,0,3,90,67,5,66,44,9,0,3,90,67,5,167,44,9,0,3,90,67,5,5,45,9,0,3,90,67,5,108,45,9,0,10,218,221,213,71,236,6,0,11,218,129,239,245,28,10,0,11,218,129,239,145,31,10,0,12,90,123,151,151,165,6,0,15,218,117,254,207,32,11,0,17,90,197,196,174,51,7,0,19,218,107,13,237,73,7,0,20,218,194,45,133,220,6,0,20,218,39,150,162,28,9,0,20,218,39,150,244,28,9,0,26,218,127,248,104,75,8,0,27,218,182,81,253,208,8,0,27,218,182,81,22,211,8,0,29,90,186,101,179,17,7,0,29,90,186,101,24,200,8,0,29,90,186,101,48,200,8,0,29,90,186,101,72,200,8,0,31,90,25,155,90,77,8,0,36,218,166,190,179,17,7,0,36,218,166,190,38,98,7,0,36,218,166,190,6,97,10,0,37,90,181,55,57,10,7,0,37,218,200,109,201,37,11,0,41,90,107,17,20,15,7,0,41,90,107,17,179,17,7,0,42,90,200,33,135,90,9,0,42,90,200,33,124,91,9,0,44,218,94,66,90,53,7,0,47,218,101,161,117,79,7,0,48,90,173,8,68,202,6,0,49,218,68,187,242,13,6,0,49,90,32,27,226,81,10,0,50,90,192,86,212,243,6,0,51,90,67,82,7,220,6,0,52,90,168,164,176,41,7,0,53,218,167,96,138,115,8,0,53,218,167,96,117,124,8,0,53,218,167,96,105,133,8,0,55,90,114,213,245,28,10,0,55,90,114,213,145,31,10,0,57,218,163,212,40,213,6,0,58,218,166,220,119,225,6,0,58,90,172,254,71,236,6,0,58,218,166,220,84,21,8,0,59,218,179,63,134,191,10,0,62,90,42,86,207,69,6,0,62,90,3,5,138,115,8,0,62,90,3,5,117,124,8,0,62,90,3,5,105,133,8,0,62,90,5,96,236,97,11,0,65,90,190,129,123,236,9,0,69,218,7,142,117,79,7,0,70,218,146,89,80,32,7,0,73,90,143,155,152,111,7,0,73,90,143,155,62,124,7,0,73,90,143,155,173,126,7,0,73,218,59,48,152,118,9,0,73,218,59,48,196,118,9,0,75,218,119,191,106,235,5,0,77,90,237,240,250,57,8,0,77,218,168,28,72,204,9,0,77,90,162,79,170,253,10,0,78,90,142,216,138,115,8,0,78,90,142,216,117,124,8,0,78,90,142,216,105,133,8,0,79,90,39,248,212,243,6,0,80,218,185,128,139,158,8,0,80,218,185,128,224,163,8,0,82,218,222,99,138,115,8,0,82,218,222,99,117,124,8,0,82,218,222,99,105,133,8,0,83,90,7,27,71,236,6,0,83,90,44,54,139,214,9,0,83,90,44,54,234,214,9,0,83,90,44,54,70,215,9,0,84,218,4,201,152,111,7,0,84,218,4,201,160,134,7,0,84,218,4,201,183,134,7,0,84,90,57,45,28,68,9,0,84,90,57,45,215,68,9,0,84,218,155,62,123,236,9,0,87,218,85,38,109,0,9,0,87,218,85,38,146,0,9,0,90,90,210,202,212,243,6,0,90,90,241,141,138,115,8,0,90,90,241,141,117,124,8,0,90,90,241,141,105,133,8,0,90,218,25,167,91,48,11,0,93,218,1,163,249,154,8,0,93,218,1,163,148,155,8,0,93,218,1,163,52,156,8,0,93,90,140,68,75,1,9,0,93,90,140,68,154,2,9,0,93,90,140,68,235,3,9,0,93,90,140,68,65,5,9,0,94,90,236,98,141,242,8,0,94,90,236,98,177,242,8,0,96,218,61,81,232,251,9,0,96,218,61,81,176,252,9,0,97,90,107,88,94,208,6,0,98,218,66,189,168,60,10,0,100,90,11,178,134,126,10,0,102,90,75,205,90,53,7,0,103,90,104,20,71,236,6,0,104,218,41,74,153,11,7,0,104,218,138,123,153,11,7,0,104,218,41,74,135,13,7,0,104,218,138,123,135,13,7,0,104,218,41,74,64,97,7,0,104,90,90,188,38,98,7,0,104,218,41,74,8,136,7,0,104,218,63,146,212,85,10,0,106,90,27,33,245,28,10,0,106,90,27,33,145,31,10,0,107,218,32,39,138,115,8,0,107,218,32,39,117,124,8,0,107,218,32,39,105,133,8,0,107,90,207,60,79,145,9,0,107,90,207,60,116,145,9,0,107,90,207,60,131,145,9,0,108,90,197,152,172,31,6,0,108,90,197,152,18,107,6,0,108,90,197,152,225,164,6,0,108,90,197,152,156,185,6,0,108,90,197,152,38,98,7,0,108,90,197,152,1,62,9,0,108,90,197,152,42,62,9,0,108,90,197,152,88,62,9,0,108,90,197,152,149,62,9,0,108,90,197,152,194,62,9,0,108,90,197,152,237,62,9,0,108,90,197,152,32,63,9,0,109,90,75,103,237,73,7,0,111,90,226,14,182,95,8,0,112,90,50,190,243,95,6,0,112,90,122,8,212,243,6,0,112,218,56,98,117,79,7,0,113,90,11,62,233,48,11,0,119,218,51,174,171,49,7,0,122,90,67,64,26,188,5,0,123,218,10,65,212,243,6,0,126,218,138,99,44,87,10,0,127,218,242,114,204,212,6,0,127,218,191,59,166,201,9,0,127,218,191,59,202,201,9,0,130,218,101,128,212,243,6,0,130,90,84,46,153,207,8,0,130,90,84,46,44,208,8,0,131,90,48,124,167,71,7,0,132,218,240,213,138,115,8,0,132,218,240,213,117,124,8,0,132,218,240,213,105,133,8,0,134,90,175,203,139,158,8,0,134,90,175,203,224,163,8,0,139,218,159,141,253,208,8,0,139,218,159,141,22,211,8,0,140,90,40,20,88,146,9,0,140,90,40,20,117,146,9,0,142,90,67,4,28,68,9,0,142,90,67,4,215,68,9,0,146,90,185,55,118,226,8,0,146,90,185,55,72,228,8,0,146,218,151,159,92,129,10,0,148,90,189,14,7,226,6,0,149,90,223,44,145,233,5,0,149,90,223,44,226,152,6,0,150,218,65,8,255,179,8,0,150,218,65,8,110,180,8,0,154,90,47,244,212,243,6,0,155,90,112,50,237,73,7,0,156,218,119,160,19,93,6,0,156,218,58,230,38,98,7,0,157,218,44,127,99,66,8,0,158,218,32,68,144,136,10,0,163,218,243,59,12,140,7,0,163,90,143,189,153,207,8,0,163,90,143,189,44,208,8,0,164,90,207,168,59,122,9,0,164,90,207,168,91,122,9,0,165,90,180,109,124,222,6,0,167,90,140,42,20,15,7,0,167,90,140,42,179,17,7,0,167,218,37,86,114,243,8,0,167,218,37,86,37,244,8,0,171,90,79,236,245,28,10,0,171,90,79,236,145,31,10,0,174,218,200,198,65,172,7,0,175,90,180,225,113,47,7,0,176,218,212,92,39,65,9,0,176,218,212,92,161,65,9,0,176,218,212,92,21,66,9,0,176,218,212,92,188,66,9,0,176,218,212,92,85,67,9,0,177,218,174,112,104,244,9,0,177,218,174,112,251,244,9,0,177,218,174,112,146,245,9,0,178,90,82,195,180,28,7,0,179,90,187,166,158,250,10,0,180,218,158,79,117,79,7,0,181,90,73,197,10,206,10,0,182,90,176,252,213,26,11,0,185,218,148,148,169,78,6,0,191,90,207,168,152,111,7,0,191,90,207,168,108,137,7,0,191,218,134,122,138,115,8,0,191,218,134,122,117,124,8,0,191,218,134,122,105,133,8,0,191,90,204,211,232,191,8,0,191,90,204,211,162,193,8,0,196,90,193,126,139,158,8,0,196,90,193,126,224,163,8,0,197,218,159,39,232,124,10,0,200,218,163,210,212,243,6,0,202,90,140,123,11,9,7,0,203,90,26,15,221,38,10,0,203,90,26,15,62,40,10,0,205,90,8,154,138,115,8,0,205,90,8,154,117,124,8,0,205,90,8,154,105,133,8,0,206,90,122,21,13,195,10,0,210,218,88,15,107,54,11,0,211,218,57,37,155,67,7,0,211,218,225,241,200,93,10,0,212,90,13,242,152,111,7,0,212,90,13,242,151,125,7,0,215,218,75,79,215,106,8,0,215,218,34,246,246,205,8,0,215,218,34,246,155,206,8,0,216,218,52,184,227,161,9,0,216,218,52,184,18,162,9,0,219,90,162,214,172,52,6,0,219,218,141,152,243,6,7,0,220,218,36,180,245,228,6,0,220,218,75,103,153,234,10,0,221,218,5,106,16,104,6,0,222,90,129,124,180,144,8,0,222,90,129,124,67,145,8,0,224,90,165,226,237,73,7,0,224,218,194,156,139,158,8,0,224,218,194,156,224,163,8,0,225,218,3,65,243,6,7,0,225,90,90,209,38,98,7,0,228,218,108,124,99,66,8,0,232,218,230,19,29,5,7,0,233,90,198,228,230,38,6,0,234,218,85,42,0,190,8,0,234,218,85,42,168,190,8,0,235,218,42,84,221,146,6,0,235,90,239,142,80,32,7,0,235,90,34,22,221,38,10,0,235,90,34,22,62,40,10,0,237,90,186,55,29,5,7,0,239,218,246,251,187,58,10,0,241,218,126,221,38,253,8,0,241,218,126,221,173,253,8,0,243,218,7,103,138,115,8,0,243,218,7,103,117,124,8,0,243,218,7,103,105,133,8,0,245,90,215,75,232,191,8,0,245,90,215,75,162,193,8,0,250,90,108,77,142,127,10,0,251,90,240,113,246,205,8,0,251,90,240,113,155,206,8,0,251,218,67,134,232,251,9,0,251,218,67,134,176,252,9,0,252,218,199,72,22,35,7,0,252,90,96,200,241,38,11,0,254,218,176,241,170,33,9,0,254,218,176,241,200,33,9,0,254,218,176,241,226,33,9,0,0,91,85,17,245,41,7,0,1,91,14,37,212,243,6,0,1,91,95,233,38,98,7,0,1,91,95,233,114,243,8,0,1,91,95,233,37,244,8,0,1,91,44,136,39,22,11,0,2,219,113,115,237,73,7,0,4,219,204,250,247,55,7,0,8,91,130,154,212,243,6,0,10,219,129,221,20,15,7,0,10,219,129,221,138,115,8,0,10,219,129,221,117,124,8,0,10,219,129,221,105,133,8,0,10,91,52,38,224,146,8,0,10,91,52,38,132,150,8,0,12,91,164,97,165,125,6,0,12,91,158,79,71,236,6,0,12,91,126,34,198,217,9,0,12,91,126,34,225,217,9,0,12,91,126,34,39,218,9,0,13,91,198,5,123,236,9,0,14,91,38,143,210,225,6,0,14,91,45,3,214,134,7,0,14,219,208,10,57,171,8,0,14,219,208,10,133,172,8,0,14,219,208,10,211,173,8,0,16,219,147,190,21,170,10,0,18,91,225,79,224,217,6,0,20,91,130,168,38,98,7,0,20,219,181,229,114,14,11,0,21,91,210,107,34,10,10,0,22,219,230,109,38,98,7,0,23,219,230,237,71,236,6,0,24,219,16,167,72,60,8,0,24,219,16,167,119,60,8,0,24,219,163,25,199,134,10,0,25,219,140,134,71,236,6,0,27,219,197,240,139,158,8,0,27,219,197,240,224,163,8,0,32,219,196,202,68,114,6,0,32,91,184,218,125,44,7,0,32,219,10,44,237,73,7,0,32,91,34,24,25,43,9,0,32,91,34,24,64,43,9,0,32,219,154,68,245,28,10,0,32,219,154,68,145,31,10,0,33,91,232,237,228,109,9,0,33,91,232,237,248,110,9,0,34,219,54,207,212,243,6,0,35,91,169,215,63,83,10,0,36,91,115,188,241,95,8,0,37,219,160,81,123,236,9,0,41,91,82,110,221,227,5,0,41,219,123,144,81,239,8,0,41,219,123,144,40,240,8,0,42,219,145,79,227,223,6,0,42,219,122,235,139,158,8,0,42,219,122,235,224,163,8,0,43,219,214,117,110,187,5,0,43,219,58,224,212,243,6,0,43,91,238,90,227,108,7,0,43,91,238,90,124,118,7,0,43,219,236,237,161,56,10,0,46,91,79,192,117,37,7,0,46,91,20,186,227,108,7,0,46,91,20,186,24,249,8,0,46,91,20,186,53,249,8,0,47,219,214,117,180,185,5,0,48,91,153,244,64,50,11,0,52,91,47,155,152,111,7,0,52,91,47,155,203,125,7,0,55,91,165,230,217,73,10,0,58,219,5,108,50,226,6,0,59,219,134,64,200,84,6,0,59,91,167,114,186,67,10,0,60,219,14,88,120,254,10,0,63,91,224,194,66,230,6,0,64,91,95,86,171,63,7,0,64,91,95,86,139,158,8,0,64,91,95,86,224,163,8,0,65,219,87,61,224,146,8,0,65,219,87,61,132,150,8,0,65,219,251,8,243,206,9,0,65,219,251,8,42,207,9,0,65,219,251,8,98,207,9,0,68,219,24,198,117,79,7,0,74,91,16,27,47,75,11,0,80,219,206,179,80,32,7,0,80,91,24,20,29,204,8,0,80,91,24,20,6,205,8,0,87,219,153,32,109,198,5,0,87,91,215,222,50,211,6,0,87,91,20,82,123,236,9,0,89,91,130,168,38,98,7,0,89,219,190,11,84,160,10,0,95,219,157,45,203,226,6,0,97,91,211,138,113,232,6,0,98,219,17,68,123,236,9,0,101,91,246,130,182,234,6,0,102,91,37,14,18,18,6,0,102,91,199,129,57,224,7,0,103,219,62,201,54,218,6,0,104,91,20,210,117,212,6,0,104,91,20,210,212,243,6,0,104,219,101,27,123,236,9,0,106,219,129,181,230,71,9,0,106,219,129,181,83,72,9,0,108,91,252,154,212,243,6,0,109,219,254,189,117,79,7,0,111,219,1,253,54,239,10,0,112,219,65,233,167,107,7,0,112,219,65,233,62,124,7,0,114,91,80,168,163,121,6,0,114,91,80,168,8,122,6,0,118,91,100,96,198,156,6,0,118,219,119,29,140,66,7,0,118,219,119,29,234,66,7,0,122,91,31,221,90,175,8,0,122,91,31,221,74,176,8,0,123,219,141,107,33,171,10,0,125,91,68,233,114,243,8,0,125,91,68,233,37,244,8,0,126,91,204,11,237,73,7,0,127,219,93,153,117,37,7,0,127,219,111,63,193,86,11,0,131,91,133,87,33,210,6,0,132,219,197,32,5,148,7,0,132,91,15,193,226,154,9,0,132,91,15,193,114,155,9,0,133,91,233,96,250,245,8,0,133,91,233,96,20,246,8,0,134,219,102,118,139,100,11,0,137,91,138,219,138,115,8,0,137,91,138,219,117,124,8,0,137,91,138,219,105,133,8,0,137,91,179,200,233,13,11,0,138,219,226,36,212,243,6,0,139,219,58,48,215,204,10,0,139,91,72,51,152,28,11,0,145,91,161,189,133,220,6,0,147,219,178,205,164,100,8,0,148,91,41,25,237,73,7,0,149,219,100,234,206,219,6,0,150,91,142,142,109,172,9,0,150,91,142,142,178,173,9,0,150,91,142,142,250,174,9,0,154,91,236,63,215,16,10,0,154,91,236,63,135,17,10,0,157,219,209,232,11,37,8,0,157,219,209,232,52,37,8,0,157,219,209,232,106,37,8,0,158,91,213,66,152,111,7,0,158,219,96,206,140,206,7,0,158,219,96,206,230,0,8,0,158,219,208,147,99,66,8,0,158,91,213,66,149,52,9,0,158,91,213,66,164,52,9,0,159,219,113,217,68,202,6,0,161,91,168,243,194,211,6,0,161,91,218,215,151,21,7,0,162,91,45,241,38,98,7,0,163,91,209,171,218,113,9,0,163,91,209,171,120,114,9,0,169,219,103,70,138,115,8,0,169,219,103,70,117,124,8,0,169,219,103,70,105,133,8,0,172,91,127,89,131,113,6,0,172,219,19,243,184,10,8,0,175,219,245,4,164,192,9,0,175,219,245,4,198,192,9,0,175,219,245,4,242,192,9,0,178,91,157,165,126,226,7,0,180,219,109,105,221,38,10,0,180,219,109,105,62,40,10,0,183,91,226,212,155,67,7,0,183,219,159,83,167,71,7,0,184,219,184,61,237,73,7,0,185,219,86,92,139,158,8,0,185,219,86,92,224,163,8,0,187,91,184,148,112,186,6,0,188,219,58,206,75,24,8,0,188,219,58,206,127,24,8,0,188,219,58,206,179,24,8,0,188,219,58,206,232,24,8,0,190,219,182,49,35,141,10,0,193,219,23,1,104,157,6,0,197,219,71,205,231,200,7,0,197,219,71,205,25,201,7,0,197,219,71,205,93,201,7,0,199,91,138,60,54,233,6,0,199,219,154,185,22,62,10,0,202,219,114,235,152,111,7,0,202,219,114,235,197,120,7,0,204,219,183,112,136,111,6,0,204,219,45,231,216,221,6,0,204,91,112,216,74,162,7,0,204,91,112,216,177,234,7,0,205,91,73,218,212,243,6,0,206,91,190,202,139,158,8,0,206,91,190,202,224,163,8,0,207,91,195,158,249,209,5,0,207,219,100,74,138,115,8,0,207,219,100,74,117,124,8,0,207,219,100,74,105,133,8,0,211,91,13,80,112,27,7,0,211,91,131,102,245,41,7,0,211,91,217,98,195,48,7,0,212,219,28,59,133,220,6,0,216,219,105,88,252,10,6,0,216,219,20,207,109,172,9,0,216,219,20,207,178,173,9,0,216,219,20,207,250,174,9,0,220,219,50,98,139,158,8,0,220,219,50,98,224,163,8,0,223,91,105,30,117,79,7,0,224,91,191,126,179,17,7,0,225,91,64,127,212,243,6,0,226,91,199,180,125,137,6,0,226,91,255,91,71,236,6,0,227,219,26,36,73,126,6,0,227,219,170,218,113,232,6,0,228,219,107,229,135,90,9,0,228,219,107,229,124,91,9,0,229,91,33,8,212,243,6,0,229,219,24,252,69,69,7,0,230,219,168,134,38,98,7,0,233,219,88,77,34,10,10,0,233,219,144,98,163,26,11,0,238,219,115,81,71,236,6,0,239,91,146,145,79,35,10,0,239,91,146,145,101,35,10,0,246,91,180,214,71,236,6,0,246,219,178,214,249,210,10,0,248,219,109,143,209,131,7,0,252,91,174,15,138,115,8,0,252,91,174,15,117,124,8,0,252,91,174,15,105,133,8,0,254,219,88,73,90,175,8,0,254,219,88,73,74,176,8,0,0,92,197,100,229,126,7,0,0,92,197,100,1,127,7,0,1,92,68,196,71,236,6,0,5,220,75,160,243,6,7,0,6,92,163,133,22,35,7,0,7,220,126,124,102,93,10,0,10,220,219,18,237,73,7,0,11,92,173,204,164,16,11,0,12,220,57,64,105,106,9,0,12,220,57,64,140,106,9,0,12,92,59,59,138,216,10,0,14,220,106,175,166,201,9,0,14,220,106,175,202,201,9,0,15,92,126,228,237,73,7,0,18,220,93,121,50,60,6,0,18,92,240,20,111,200,6,0,20,92,171,84,146,235,6,0,23,220,206,129,38,98,7,0,24,92,146,155,18,169,7,0,24,92,183,40,214,176,7,0,25,92,221,108,219,210,7,0,29,92,207,188,109,231,6,0,29,220,43,190,136,58,7,0,30,92,117,116,189,227,10,0,31,220,17,142,212,243,6,0,32,92,148,174,210,48,11,0,33,92,101,247,0,115,6,0,33,92,55,201,38,98,7,0,35,92,31,240,253,208,8,0,35,92,31,240,22,211,8,0,36,92,61,102,71,236,6,0,39,92,99,100,72,151,6,0,40,220,120,246,219,1,7,0,40,92,38,188,63,25,7,0,40,220,160,85,138,115,8,0,40,220,160,85,117,124,8,0,40,220,160,85,105,133,8,0,40,220,35,165,214,120,9,0,40,220,35,165,7,121,9,0,40,220,35,165,43,121,9,0,40,92,102,27,158,89,10,0,42,92,43,200,71,30,6,0,43,92,188,202,119,199,6,0,45,92,207,124,215,16,10,0,45,92,207,124,135,17,10,0,48,92,38,147,191,183,8,0,48,92,38,147,181,24,11,0,49,92,237,187,57,140,6,0,49,92,237,187,93,140,6,0,50,92,40,52,63,165,6,0,50,92,122,250,194,85,9,0,50,92,122,250,241,85,9,0,52,92,105,165,176,86,10,0,52,92,148,214,116,0,11,0,55,220,68,66,223,79,11,0,56,92,34,99,193,228,5,0,56,220,58,22,223,76,6,0,56,220,43,231,20,15,7,0,56,220,43,231,179,17,7,0,56,220,58,22,157,41,7,0,58,220,54,230,136,58,7,0,59,92,116,84,247,55,7,0,60,220,118,114,253,208,8,0,60,220,118,114,22,211,8,0,61,220,157,153,95,204,10,0,62,220,184,15,148,166,10,0,63,220,16,130,104,177,6,0,63,92,225,142,52,204,6,0,66,220,13,152,254,243,5,0,66,220,13,152,153,89,7,0,70,92,158,148,237,73,7,0,71,92,160,86,212,243,6,0,71,92,22,62,84,26,8,0,77,92,9,99,179,17,7,0,80,220,42,115,32,30,7,0,82,92,19,103,38,98,7,0,82,220,196,230,151,64,10,0,85,92,26,163,160,234,8,0,85,92,26,163,175,235,8,0,87,220,125,194,15,41,7,0,89,92,241,247,205,9,6,0,91,92,197,96,15,233,8,0,91,92,197,96,139,233,8,0,92,92,100,38,215,156,10,0,93,220,43,47,98,129,9,0,93,220,43,47,127,129,9,0,97,92,197,202,38,98,7,0,99,92,96,207,179,181,7,0,100,92,63,8,234,215,10,0,101,92,10,35,42,184,7,0,101,92,10,35,96,184,7,0,101,92,10,35,150,184,7,0,101,92,25,32,224,146,8,0,101,92,25,32,132,150,8,0,102,220,137,238,238,189,10,0,103,92,27,151,139,158,8,0,103,92,27,151,224,163,8,0,103,220,65,83,254,194,10,0,104,220,9,206,128,33,6,0,104,220,54,68,16,28,11,0,104,220,231,111,51,87,11,0,106,92,171,201,71,236,6,0,106,220,187,62,192,150,9,0,106,220,187,62,17,151,9,0,108,220,69,254,99,66,8,0,108,220,32,107,165,11,9,0,108,220,32,107,58,12,9,0,111,220,77,126,191,165,9,0,111,220,77,126,210,165,9,0,111,92,59,20,91,216,10,0,118,220,233,103,114,188,8,0,118,220,233,103,157,188,8,0,118,92,13,227,245,28,10,0,118,92,13,227,245,28,10,0,118,92,13,227,145,31,10,0,118,92,13,227,145,31,10,0,120,92,11,61,117,37,7,0,121,92,52,51,2,57,11,0,122,220,4,41,71,236,6,0,129,220,31,74,162,62,8,0,138,92,69,91,133,220,6,0,141,92,113,245,117,79,7,0,142,220,152,218,80,186,5,0,142,220,27,171,153,223,10,0,143,92,35,183,123,236,9,0,146,220,40,90,36,2,6,0,146,220,40,90,67,2,6,0,146,92,195,62,213,215,9,0,146,92,195,62,240,215,9,0,146,92,195,62,8,216,9,0,148,92,230,224,37,209,10,0,148,92,254,66,21,236,10,0,150,220,206,57,71,236,6,0,153,220,87,0,139,158,8,0,153,220,87,0,224,163,8,0,154,92,104,148,23,199,6,0,155,220,64,141,27,253,5,0,155,220,64,141,229,175,6,0,156,220,147,177,155,67,7,0,156,92,235,90,57,171,8,0,156,92,235,90,133,172,8,0,156,92,235,90,211,173,8,0,157,92,253,15,100,104,10,0,159,220,183,226,196,51,9,0,159,220,183,226,222,51,9,0,159,220,183,226,79,78,10,0,160,220,164,145,117,79,7,0,161,92,18,91,153,11,7,0,161,92,18,91,135,13,7,0,162,220,225,142,213,41,10,0,162,220,225,142,87,42,10,0,164,220,97,67,162,50,7,0,164,92,34,116,101,220,9,0,164,92,34,116,154,220,9,0,166,220,214,254,71,236,6,0,168,220,8,155,128,192,5,0,170,92,221,236,93,66,6,0,170,220,148,10,232,25,7,0,172,220,103,47,80,186,5,0,179,220,241,126,153,11,7,0,179,220,241,126,135,13,7,0,181,92,33,111,120,183,7,0,181,92,33,111,207,183,7,0,181,92,33,111,252,183,7,0,181,220,82,132,177,181,8,0,181,220,82,132,204,181,8,0,181,220,82,132,78,203,8,0,181,92,73,246,123,236,9,0,182,220,21,79,163,216,10,0,182,92,114,106,204,11,11,0,185,92,107,214,141,195,8,0,185,92,107,214,112,196,8,0,185,92,107,214,75,197,8,0,185,92,112,129,193,167,9,0,187,220,47,58,160,234,8,0,187,220,47,58,175,235,8,0,189,92,57,23,145,93,10,0,190,92,138,189,194,70,11,0,191,92,110,144,255,179,8,0,191,92,110,144,110,180,8,0,192,92,166,107,80,49,7,0,192,92,166,107,171,49,7,0,193,220,46,43,219,1,7,0,194,92,33,12,81,239,8,0,194,92,33,12,40,240,8,0,196,220,61,124,152,111,7,0,196,220,46,85,138,115,8,0,196,220,46,85,117,124,8,0,196,220,46,85,105,133,8,0,196,220,61,124,199,11,10,0,196,220,61,124,219,11,10,0,197,92,147,222,225,155,6,0,197,92,147,222,32,155,7,0,197,220,194,14,31,75,11,0,201,92,55,127,190,88,10,0,204,220,130,166,112,27,7,0,204,220,130,166,84,73,7,0,205,220,110,167,154,4,7,0,206,92,75,220,230,215,6,0,206,92,75,220,200,133,10,0,208,220,58,237,5,148,7,0,209,220,116,111,93,240,7,0,209,220,116,111,136,240,7,0,210,92,106,16,249,140,10,0,212,92,188,148,138,115,8,0,212,92,188,148,117,124,8,0,212,92,188,148,105,133,8,0,213,220,96,99,158,69,7,0,213,220,96,99,202,69,7,0,213,92,133,104,90,199,7,0,213,92,133,104,148,199,7,0,213,92,133,104,216,199,7,0,213,92,133,104,29,200,7,0,218,92,201,131,208,208,5,0,218,92,201,131,8,48,6,0,218,92,114,74,138,115,8,0,218,92,114,74,117,124,8,0,218,92,114,74,105,133,8,0,221,220,169,160,212,66,10,0,223,92,36,175,56,208,6,0,226,220,115,191,221,38,10,0,226,220,115,191,62,40,10,0,227,92,228,227,186,188,7,0,228,92,107,101,113,24,7,0,230,220,81,168,38,98,7,0,236,220,138,81,125,44,7,0,236,92,128,241,80,45,11,0,238,220,197,91,156,150,6,0,238,220,197,91,107,187,6,0,238,92,220,181,141,230,9,0,238,92,220,181,217,230,9,0,241,220,38,122,71,236,6,0,242,92,120,29,237,73,7,0,244,92,14,96,57,171,8,0,244,92,14,96,133,172,8,0,244,92,14,96,211,173,8,0,247,92,197,148,136,145,6,0,247,220,221,24,48,207,6,0,247,220,152,230,90,53,7,0,255,220,26,89,215,106,9,0,255,220,26,89,233,106,9,0,0,93,49,83,230,136,6,0,0,221,233,124,220,10,11,0,1,221,136,125,2,23,7,0,1,221,64,52,237,87,8,0,4,221,60,178,40,213,6,0,4,93,91,46,253,208,8,0,4,93,91,46,22,211,8,0,4,221,60,178,245,28,10,0,4,221,60,178,145,31,10,0,5,93,136,60,139,158,8,0,5,93,136,60,224,163,8,0,6,93,128,32,117,79,7,0,6,93,128,32,100,229,10,0,7,93,91,204,62,247,10,0,9,93,251,119,243,211,10,0,10,221,93,27,117,79,7,0,10,93,238,173,117,79,7,0,10,221,111,180,74,153,10,0,10,221,132,78,229,69,11,0,12,221,87,247,118,0,7,0,13,93,123,119,117,37,7,0,14,221,216,43,234,136,10,0,16,221,117,55,179,17,7,0,17,93,100,193,138,115,8,0,17,93,100,193,117,124,8,0,17,93,100,193,105,133,8,0,21,93,88,171,55,86,10,0,26,221,234,163,123,236,9,0,33,93,60,228,41,105,6,0,34,221,0,77,215,100,9,0,34,221,0,77,242,100,9,0,35,221,37,154,80,32,7,0,35,221,192,202,90,53,7,0,36,93,210,101,20,15,7,0,36,93,210,101,179,17,7,0,36,93,125,142,115,230,10,0,37,221,64,231,71,236,6,0,38,93,153,134,71,128,6,0,38,93,153,134,119,225,6,0,38,93,153,134,152,111,7,0,38,221,11,32,46,225,10,0,40,221,180,35,16,222,6,0,40,221,222,190,216,17,8,0,45,93,62,5,40,241,5,0,45,93,62,5,42,202,6,0,45,93,62,5,162,50,7,0,45,221,99,167,119,67,7,0,45,221,33,63,38,98,7,0,47,93,109,33,63,212,7,0,47,221,176,249,47,40,11,0,48,221,62,229,230,215,6,0,50,221,214,63,236,51,7,0,58,221,70,74,219,210,7,0,61,221,239,33,198,213,10,0,66,221,222,142,174,117,10,0,67,93,122,76,226,250,5,0,71,93,106,168,15,233,8,0,71,93,106,168,139,233,8,0,72,221,133,237,171,49,7,0,73,221,199,89,80,32,7,0,75,221,239,111,213,204,6,0,77,93,93,57,11,9,7,0,77,93,93,57,75,1,9,0,77,93,93,57,154,2,9,0,77,93,93,57,235,3,9,0,77,93,93,57,65,5,9,0,78,221,203,250,236,213,6,0,79,221,151,148,196,8,6,0,79,93,132,194,38,253,8,0,79,93,132,194,173,253,8,0,81,221,4,62,146,224,7,0,81,221,134,51,138,115,8,0,81,221,134,51,117,124,8,0,81,221,134,51,105,133,8,0,83,93,61,238,237,73,7,0,85,93,60,113,0,190,8,0,85,93,60,113,168,190,8,0,85,221,78,147,166,220,8,0,85,221,78,147,241,220,8,0,85,221,78,147,120,77,10,0,88,93,6,164,141,195,8,0,88,93,6,164,112,196,8,0,88,93,6,164,75,197,8,0,98,221,59,8,104,210,10,0,102,93,222,82,232,191,8,0,102,93,222,82,162,193,8,0,105,93,174,94,114,243,8,0,105,93,174,94,37,244,8,0,106,221,252,84,247,55,7,0,106,221,203,187,117,79,7,0,106,221,193,59,0,190,8,0,106,221,193,59,168,190,8,0,107,93,174,140,245,28,10,0,107,93,174,140,145,31,10,0,108,221,104,7,78,47,11,0,111,93,141,254,113,232,6,0,111,93,105,27,176,80,10,0,113,93,226,132,173,157,6,0,117,221,184,142,138,115,8,0,117,221,184,142,117,124,8,0,117,221,184,142,105,133,8,0,120,93,31,40,232,251,9,0,120,93,31,40,176,252,9,0,121,93,92,181,38,98,7,0,121,93,207,132,118,226,8,0,121,93,207,132,72,228,8,0,123,93,144,48,80,186,5,0,125,221,40,221,41,24,7,0,131,221,249,99,29,204,8,0,131,221,249,99,6,205,8,0,135,221,69,249,17,71,7,0,138,221,69,201,30,44,7,0,139,93,94,23,219,1,7,0,139,93,31,248,135,90,9,0,139,93,31,248,124,91,9,0,140,221,119,193,171,63,7,0,141,221,221,166,113,97,11,0,144,93,110,8,51,144,6,0,144,93,210,229,109,172,9,0,144,93,210,229,178,173,9,0,144,93,210,229,250,174,9,0,145,221,147,190,80,213,9,0,145,221,147,190,105,213,9,0,145,221,147,190,129,213,9,0,148,221,154,161,205,151,9,0,148,221,154,161,199,152,9,0,148,221,154,161,220,153,9,0,149,93,74,4,152,111,7,0,149,93,74,4,18,126,7,0,149,93,74,4,57,126,7,0,154,93,49,17,52,71,6,0,154,221,109,95,249,154,8,0,154,221,109,95,148,155,8,0,154,221,109,95,52,156,8,0,156,221,207,90,237,73,7,0,157,93,32,71,21,36,7,0,161,221,229,204,30,171,9,0,164,221,237,158,117,212,6,0,164,221,214,105,101,226,6,0,166,93,242,7,130,76,10,0,166,93,242,7,131,89,10,0,166,93,38,142,172,11,11,0,170,93,200,126,133,6,6,0,173,93,102,153,138,115,8,0,173,93,102,153,117,124,8,0,173,93,102,153,105,133,8,0,173,93,102,153,6,97,10,0,174,93,195,224,197,253,6,0,174,93,114,11,236,51,7,0,175,93,72,182,219,1,7,0,175,93,62,120,237,73,7,0,177,93,54,92,61,48,8,0,177,93,54,92,115,48,8,0,177,93,54,92,167,48,8,0,177,93,54,92,217,48,8,0,181,93,74,84,138,115,8,0,181,93,74,84,117,124,8,0,181,93,74,84,105,133,8,0,182,93,218,131,17,71,7,0,184,221,66,95,91,195,6,0,184,221,195,102,23,209,7,0,184,93,30,201,64,31,11,0,186,221,11,183,133,220,6,0,186,93,92,151,117,79,7,0,187,221,244,178,154,4,7,0,187,221,231,212,7,204,10,0,192,93,30,149,180,144,8,0,192,93,30,149,67,145,8,0,193,93,100,206,78,60,11,0,194,221,121,22,57,236,10,0,196,93,22,6,232,191,8,0,196,93,22,6,162,193,8,0,198,221,167,160,12,140,7,0,198,93,250,126,112,5,10,0,198,93,250,126,28,6,10,0,200,221,207,170,152,111,7,0,200,221,207,170,173,169,8,0,202,93,143,171,241,40,6,0,202,93,143,171,81,64,6,0,202,221,60,249,254,254,6,0,207,93,36,234,152,111,7,0,207,93,36,234,173,169,8,0,207,221,203,50,118,226,8,0,207,221,203,50,72,228,8,0,208,221,247,18,247,55,7,0,209,93,86,40,78,203,8,0,211,93,75,84,123,236,9,0,212,221,194,123,200,6,9,0,212,221,194,123,117,7,9,0,214,221,139,204,90,53,7,0,215,221,146,77,217,62,7,0,215,221,75,180,227,108,7,0,216,93,189,251,163,82,8,0,216,93,189,251,239,82,8,0,216,93,189,251,60,83,8,0,218,221,154,0,166,73,10,0,219,221,205,51,119,199,6,0,220,221,214,182,236,213,6,0,222,221,132,83,42,80,6,0,223,93,100,20,237,73,7,0,225,93,81,48,229,242,8,0,225,93,81,48,25,243,8,0,226,93,93,68,180,144,8,0,226,93,93,68,67,145,8,0,227,221,13,23,203,79,11,0,228,93,250,229,117,79,7,0,229,221,130,166,112,27,7,0,229,221,130,166,84,73,7,0,230,221,146,94,29,150,7,0,231,93,105,119,171,49,7,0,231,221,238,94,72,204,9,0,232,93,47,122,254,243,5,0,232,93,47,122,153,89,7,0,234,221,108,231,135,90,9,0,234,221,108,231,124,91,9,0,235,221,250,191,89,135,6,0,236,93,164,73,138,115,8,0,236,93,164,73,117,124,8,0,236,93,164,73,105,133,8,0,239,221,184,109,117,79,7,0,239,221,66,100,80,75,11,0,240,93,75,246,138,115,8,0,240,93,75,246,138,115,8,0,240,93,75,246,117,124,8,0,240,93,75,246,117,124,8,0,240,93,75,246,105,133,8,0,240,93,75,246,105,133,8,0,243,221,79,233,224,213,5,0,243,221,198,41,80,32,7,0,243,221,220,247,123,236,9,0,244,221,130,47,125,177,9,0,244,221,130,47,224,177,9,0,244,221,130,47,64,178,9,0,249,221,243,222,6,34,6,0,250,221,10,171,218,175,10,0,251,221,32,16,56,208,6,0,252,93,213,219,160,234,8,0,252,93,213,219,175,235,8,0,255,93,9,77,96,86,6,0,255,221,145,61,247,55,7,0,255,221,110,50,49,176,10,0,0,222,134,158,71,236,6,0,4,94,6,56,136,58,7,0,5,222,242,203,254,254,6,0,7,222,29,141,226,23,7,0,8,222,136,89,80,32,7,0,9,94,118,11,80,32,7,0,9,222,151,210,138,115,8,0,9,222,151,210,117,124,8,0,9,222,151,210,105,133,8,0,10,222,30,163,212,243,6,0,11,94,143,66,38,98,7,0,11,222,61,37,115,7,10,0,11,222,61,37,190,7,10,0,11,222,61,37,10,8,10,0,16,94,221,122,50,211,6,0,17,94,26,3,107,210,6,0,21,94,43,189,81,239,8,0,21,94,43,189,40,240,8,0,23,222,198,89,174,113,6,0,23,94,12,7,71,236,6,0,26,222,139,127,22,67,6,0,26,222,106,28,52,204,6,0,26,94,244,122,20,71,11,0,26,94,4,163,138,79,11,0,27,94,168,80,108,23,11,0,30,222,37,222,152,26,9,0,30,222,37,222,179,26,9,0,32,94,38,50,13,107,8,0,32,94,246,128,151,116,10,0,34,94,67,253,77,203,6,0,36,222,97,91,138,115,8,0,36,222,97,91,117,124,8,0,36,222,97,91,105,133,8,0,36,222,91,93,66,33,11,0,37,94,225,49,138,115,8,0,37,94,225,49,117,124,8,0,37,94,225,49,105,133,8,0,38,94,219,200,171,246,10,0,40,94,33,205,197,253,6,0,40,94,213,82,167,8,7,0,41,94,228,254,48,207,6,0,41,94,73,23,90,7,7,0,42,94,104,11,167,110,6,0,42,222,164,64,117,79,7,0,43,94,87,85,151,13,6,0,46,222,49,162,3,224,6,0,46,222,114,35,38,98,7,0,46,94,126,15,99,66,8,0,49,222,228,96,38,98,7,0,49,94,121,233,232,191,8,0,49,94,121,233,162,193,8,0,53,94,93,98,82,188,5,0,54,94,170,44,212,243,6,0,56,94,80,166,209,205,6,0,56,94,128,192,138,115,8,0,56,94,128,192,117,124,8,0,56,94,128,192,105,133,8,0,69,222,210,234,46,53,7,0,70,222,172,169,227,108,7,0,70,222,172,169,131,249,9,0,71,222,233,95,98,45,6,0,71,94,185,38,132,18,9,0,71,94,185,38,211,18,9,0,71,94,185,38,49,19,9,0,71,94,185,38,130,19,9,0,75,94,50,100,221,38,10,0,75,94,50,100,62,40,10,0,78,222,162,64,139,158,8,0,78,222,162,64,224,163,8,0,78,222,214,48,80,167,9,0,78,222,214,48,37,168,9,0,79,94,31,1,38,98,7,0,79,94,48,152,180,33,11,0,80,222,202,109,136,58,7,0,81,222,143,248,90,53,7,0,81,94,108,247,224,146,8,0,81,94,108,247,132,150,8,0,81,222,170,94,255,179,8,0,81,222,170,94,110,180,8,0,82,94,52,51,82,46,11,0,83,222,101,184,204,213,9,0,92,222,201,38,42,93,7,0,95,94,132,10,17,192,5,0,97,94,6,41,75,1,9,0,97,94,6,41,154,2,9,0,97,94,6,41,235,3,9,0,97,94,6,41,65,5,9,0,103,94,255,178,212,243,6,0,103,94,105,27,50,24,9,0,103,94,105,27,71,24,9,0,103,94,105,27,90,24,9,0,105,94,107,30,242,83,8,0,105,94,107,30,25,84,8,0,106,222,192,40,100,71,7,0,106,94,254,120,78,203,8,0,109,94,110,160,13,20,9,0,109,94,110,160,37,20,9,0,112,222,254,103,174,169,10,0,115,222,145,14,237,73,7,0,117,222,69,157,237,73,7,0,118,222,140,27,195,100,11,0,119,94,158,170,38,98,7,0,120,94,9,78,218,113,9,0,120,94,9,78,120,114,9,0,120,222,178,70,221,38,10,0,120,222,178,70,62,40,10,0,121,222,208,70,157,38,6,0,121,222,55,185,254,216,6,0,122,94,175,10,255,179,8,0,122,94,175,10,110,180,8,0,122,94,232,148,177,179,9,0,122,94,232,148,201,179,9,0,123,222,199,54,142,99,6,0,124,222,234,242,72,204,9,0,127,222,248,161,245,28,10,0,127,222,248,161,145,31,10,0,128,94,94,45,152,111,7,0,128,94,94,45,243,123,7,0,128,94,94,45,62,124,7,0,129,94,163,39,212,243,6,0,129,222,39,108,174,163,10,0,130,222,23,243,74,172,10,0,132,94,186,44,239,103,6,0,139,222,1,165,32,30,7,0,140,94,201,2,66,21,10,0,140,94,201,2,99,21,10,0,140,94,201,2,155,21,10,0,140,94,201,2,205,21,10,0,142,222,173,29,139,158,8,0,142,222,173,29,224,163,8,0,144,94,251,126,142,118,6,0,144,222,213,175,32,168,10,0,146,94,95,14,213,82,6,0,147,94,57,150,237,73,7,0,151,222,10,16,50,211,6,0,154,94,121,83,189,249,5,0,158,94,37,125,162,50,7,0,159,222,44,128,238,228,5,0,159,222,60,166,20,15,7,0,159,222,60,166,179,17,7,0,159,94,49,163,16,37,11,0,164,94,105,92,255,136,6,0,173,222,24,56,117,79,7,0,173,222,21,213,38,98,7,0,174,94,122,88,3,157,8,0,174,94,122,88,180,157,8,0,174,94,21,227,112,192,9,0,174,94,21,227,133,192,9,0,175,94,173,122,139,214,9,0,175,94,173,122,234,214,9,0,175,94,173,122,70,215,9,0,177,94,2,184,253,81,6,0,177,222,200,248,19,42,11,0,178,222,30,2,162,50,7,0,179,222,7,105,136,58,7,0,179,222,71,63,135,90,9,0,179,222,71,63,124,91,9,0,180,222,199,142,118,214,6,0,180,222,130,166,72,24,10,0,180,222,130,166,88,24,10,0,182,222,147,190,227,29,6,0,182,94,127,118,175,219,6,0,185,94,204,119,117,79,7,0,185,222,247,189,135,90,9,0,185,222,247,189,124,91,9,0,188,94,153,21,71,236,6,0,189,94,190,229,247,55,7,0,189,222,152,25,229,69,11,0,191,94,116,233,38,98,7,0,194,94,37,221,90,56,9,0,194,94,37,221,171,56,9,0,194,94,37,221,54,57,9,0,194,222,246,149,18,155,10,0,194,222,246,149,39,155,10,0,196,222,89,162,84,249,8,0,196,222,89,162,104,249,8,0,197,94,132,248,5,148,7,0,200,222,228,231,71,236,6,0,201,222,116,75,159,218,6,0,201,222,130,17,20,15,7,0,201,222,130,17,179,17,7,0,201,222,130,17,138,115,8,0,201,222,130,17,117,124,8,0,201,222,130,17,105,133,8,0,201,94,87,199,232,191,8,0,201,94,87,199,162,193,8,0,203,94,169,233,198,3,8,0,204,222,201,148,142,45,6,0,205,222,44,179,123,246,8,0,205,222,44,179,175,246,8,0,209,222,46,127,139,102,11,0,212,222,177,111,51,80,10,0,214,222,9,179,123,236,9,0,214,222,70,201,46,16,10,0,215,94,173,160,48,116,10,0,216,94,252,137,131,74,6,0,216,94,118,102,174,92,6,0,217,94,140,58,200,6,9,0,217,94,140,58,117,7,9,0,217,94,180,192,95,69,10,0,218,222,154,88,153,207,8,0,218,222,154,88,44,208,8,0,219,222,26,10,66,21,10,0,219,222,26,10,99,21,10,0,219,222,26,10,155,21,10,0,219,222,26,10,205,21,10,0,220,94,201,48,2,23,7,0,221,94,245,190,204,212,6,0,221,222,191,40,199,110,10,0,221,222,191,40,18,115,10,0,223,94,156,78,40,100,10,0,224,222,122,53,26,189,5,0,225,222,13,5,253,210,6,0,227,94,245,115,172,207,6,0,230,222,211,192,187,86,6,0,234,222,155,33,117,37,7,0,234,222,135,48,171,63,7,0,235,222,68,87,117,79,7,0,239,222,44,140,167,71,7,0,240,222,63,195,49,12,11,0,241,94,254,231,71,236,6,0,243,222,113,31,242,85,10,0,245,222,139,109,123,236,9,0,245,94,11,81,138,59,10,0,245,222,244,212,135,234,10,0,248,94,40,119,109,172,9,0,248,94,40,119,178,173,9,0,248,94,40,119,250,174,9,0,249,222,140,102,90,7,7,0,249,222,95,246,136,58,7,0,253,222,218,175,117,79,7,0,1,95,190,157,158,66,6,0,1,223,11,245,186,102,6,0,1,95,195,191,162,50,7,0,1,95,154,149,52,91,7,0,6,223,66,128,154,224,6,0,6,95,138,38,129,40,7,0,6,95,163,7,98,47,10,0,6,95,163,7,128,47,10,0,6,95,163,7,178,47,10,0,6,95,163,7,227,47,10,0,7,95,134,44,123,236,9,0,9,223,156,14,80,32,7,0,12,223,96,92,153,207,8,0,12,223,96,92,44,208,8,0,13,95,233,20,200,207,6,0,14,223,59,33,237,73,7,0,14,223,46,127,152,111,7,0,15,95,195,112,114,234,6,0,16,223,252,148,237,73,7,0,17,223,135,106,88,91,7,0,19,95,60,70,71,236,6,0,19,95,200,131,181,145,10,0,20,223,188,117,7,163,6,0,25,95,157,71,109,231,6,0,27,95,138,146,2,199,9,0,27,95,138,146,169,199,9,0,28,95,228,38,97,8,7,0,31,95,61,116,238,137,7,0,31,223,222,102,33,198,9,0,31,223,222,102,51,198,9,0,32,95,31,13,121,27,11,0,35,95,229,170,151,5,6,0,38,95,75,79,71,236,6,0,40,95,142,26,201,230,6,0,40,223,243,230,71,236,6,0,42,95,48,119,138,115,8,0,42,95,48,119,117,124,8,0,42,95,48,119,105,133,8,0,45,95,10,192,6,245,10,0,46,95,115,208,103,46,7,0,47,95,151,66,212,243,6,0,47,95,76,76,0,190,8,0,47,95,76,76,168,190,8,0,48,223,142,113,253,208,8,0,48,223,142,113,22,211,8,0,49,223,3,208,183,20,10,0,49,223,3,208,230,20,10,0,50,95,39,104,20,15,7,0,51,95,81,190,232,251,9,0,51,95,81,190,176,252,9,0,52,95,77,63,228,109,9,0,52,95,77,63,248,110,9,0,53,223,230,204,125,44,7,0,53,223,49,137,178,128,7,0,53,95,215,138,246,193,7,0,54,95,227,127,5,148,7,0,54,95,167,172,148,186,8,0,54,95,167,172,221,186,8,0,56,223,14,240,90,175,8,0,56,223,14,240,74,176,8,0,58,223,218,175,117,79,7,0,59,95,173,1,200,6,9,0,59,95,173,1,117,7,9,0,60,223,156,140,142,92,6,0,60,95,14,221,117,79,7,0,60,95,231,19,139,158,8,0,60,95,231,19,224,163,8,0,60,223,156,140,208,43,10,0,60,223,156,140,255,43,10,0,60,223,156,140,45,44,10,0,60,223,156,140,104,44,10,0,62,95,116,160,63,25,7,0,63,95,32,84,227,108,7,0,63,95,32,84,24,249,8,0,63,95,32,84,53,249,8,0,66,223,62,233,64,86,9,0,66,223,62,233,109,86,9,0,66,95,136,228,191,75,10,0,68,223,96,208,112,220,5,0,68,95,101,95,67,105,10,0,70,223,154,79,167,215,5,0,71,95,37,212,88,129,7,0,72,95,53,251,5,148,7,0,76,223,164,4,14,111,10,0,78,223,241,201,232,191,8,0,78,223,241,201,162,193,8,0,79,223,147,204,65,249,5,0,79,223,211,106,227,108,7,0,79,223,211,106,152,111,7,0,79,95,100,243,99,66,8,0,79,223,211,106,245,58,9,0,80,95,171,231,237,73,7,0,81,95,226,122,249,154,8,0,81,95,226,122,148,155,8,0,81,95,226,122,52,156,8,0,82,223,187,241,117,79,7,0,85,223,236,80,204,213,9,0,87,223,28,10,138,115,8,0,87,223,28,10,117,124,8,0,87,223,28,10,105,133,8,0,89,223,37,135,50,211,6,0,89,95,254,177,91,207,10,0,90,95,199,120,253,82,11,0,94,223,67,30,88,129,7,0,94,223,67,30,182,114,8,0,95,223,138,122,237,73,7,0,95,223,231,24,200,33,8,0,95,223,231,24,253,33,8,0,95,223,231,24,174,36,8,0,98,223,68,35,231,37,8,0,98,95,60,210,133,49,9,0,98,95,60,210,159,49,9,0,100,95,249,4,22,62,10,0,100,95,223,214,15,85,10,0,101,95,183,67,155,67,7,0,102,95,227,214,131,57,11,0,102,95,227,214,166,57,11,0,102,95,227,214,204,57,11,0,103,95,79,20,29,5,7,0,103,223,0,46,152,111,7,0,104,223,50,43,117,79,7,0,109,95,15,140,84,72,11,0,114,223,250,192,121,182,8,0,114,223,250,192,153,182,8,0,115,95,122,28,156,1,7,0,115,95,193,234,205,176,9,0,115,95,193,234,248,176,9,0,115,95,193,234,34,177,9,0,116,95,225,219,112,27,7,0,116,223,232,15,62,3,8,0,116,223,91,228,139,192,10,0,120,95,26,221,29,204,8,0,120,95,26,221,6,205,8,0,121,95,75,21,180,144,8,0,121,95,75,21,67,145,8,0,127,223,192,148,247,55,7,0,130,223,218,233,81,239,8,0,130,223,218,233,40,240,8,0,130,223,83,159,109,172,9,0,130,223,83,159,178,173,9,0,130,223,83,159,250,174,9,0,131,95,166,206,11,202,10,0,132,223,151,38,248,161,7,0,133,95,98,15,113,76,6,0,133,223,199,135,117,79,7,0,135,95,102,93,0,190,8,0,135,95,102,93,168,190,8,0,137,95,62,219,217,62,7,0,141,95,247,154,237,73,7,0,144,95,242,158,123,236,9,0,144,223,9,144,1,104,11,0,148,223,166,189,2,19,11,0,150,95,235,157,4,138,6,0,150,223,241,200,75,153,6,0,150,223,81,25,11,9,7,0,150,223,81,25,75,1,9,0,150,223,81,25,154,2,9,0,150,223,81,25,235,3,9,0,150,223,81,25,65,5,9,0,154,95,202,54,218,236,5,0,154,223,204,230,245,28,10,0,154,223,204,230,145,31,10,0,156,95,35,215,138,115,8,0,156,95,35,215,117,124,8,0,156,95,35,215,105,133,8,0,156,223,118,75,125,177,9,0,156,223,118,75,224,177,9,0,156,223,118,75,64,178,9,0,158,223,18,206,221,38,10,0,158,223,18,206,62,40,10,0,159,223,68,99,143,243,5,0,159,223,68,99,22,35,7,0,160,95,28,25,90,53,7,0,167,223,15,164,138,115,8,0,167,223,15,164,117,124,8,0,167,223,15,164,105,133,8,0,168,223,152,155,246,205,8,0,168,223,152,155,155,206,8,0,169,95,244,98,99,42,7,0,169,223,83,102,254,49,11,0,172,223,187,38,212,243,6,0,173,95,107,139,125,44,7,0,178,95,21,30,23,179,8,0,178,95,21,30,119,179,8,0,180,95,68,177,130,227,6,0,180,223,255,154,30,84,11,0,181,95,214,49,50,211,6,0,182,223,29,120,139,158,8,0,182,223,29,120,224,163,8,0,184,95,238,58,112,30,7,0,184,95,238,58,144,30,7,0,185,223,92,77,204,213,9,0,189,223,184,191,115,43,8,0,189,223,184,191,193,43,8,0,189,223,184,191,95,107,10,0,192,95,193,114,245,28,10,0,192,95,193,114,145,31,10,0,197,95,117,200,152,111,7,0,197,95,117,200,62,124,7,0,200,223,147,190,215,156,10,0,201,95,61,129,224,251,6,0,202,95,119,189,201,247,5,0,202,95,119,189,228,247,5,0,202,223,214,18,122,73,7,0,202,223,214,18,158,73,7,0,203,223,41,146,254,254,6,0,204,95,155,52,8,195,7,0,204,95,155,52,56,195,7,0,204,223,23,120,245,28,10,0,204,223,23,120,145,31,10,0,208,223,80,16,38,98,7,0,210,223,96,61,83,125,10,0,210,223,85,170,96,191,10,0,213,223,71,104,167,71,7,0,213,95,193,76,75,142,9,0,213,95,193,76,201,142,9,0,213,95,193,76,84,143,9,0,215,95,124,105,161,14,11,0,217,223,114,242,199,180,6,0,217,95,244,12,114,209,6,0,217,95,89,228,138,115,8,0,217,95,89,228,117,124,8,0,217,95,89,228,105,133,8,0,219,223,183,189,247,55,7,0,220,95,128,122,147,70,6,0,223,223,1,109,243,223,5,0,223,95,66,95,139,158,8,0,223,95,66,95,224,163,8,0,223,223,77,149,15,233,8,0,223,223,77,149,139,233,8,0,226,223,208,40,118,0,7,0,226,223,157,226,172,3,7,0,227,223,153,0,123,37,9,0,227,223,153,0,151,37,9,0,228,95,237,217,2,23,7,0,234,223,235,93,237,73,7,0,234,95,27,246,70,129,10,0,235,223,41,107,20,15,7,0,235,223,41,107,179,17,7,0,236,95,207,22,122,111,10,0,245,223,24,216,199,65,10,0,248,223,57,146,111,228,10,0,252,95,66,179,212,243,6,0,253,223,254,215,38,98,7,0,254,95,94,120,84,57,6,0,3,224,118,1,222,80,11,0,4,224,80,65,224,146,8,0,4,224,80,65,132,150,8,0,7,224,198,50,237,241,5,0,7,96,76,191,147,149,6,0,7,224,161,240,39,65,9,0,7,224,161,240,161,65,9,0,7,224,161,240,21,66,9,0,7,224,161,240,188,66,9,0,7,224,161,240,85,67,9,0,8,224,170,194,78,0,6,0,11,96,153,79,153,234,10,0,14,96,151,140,30,205,7,0,14,96,151,140,86,205,7,0,14,96,151,140,138,205,7,0,14,224,153,106,141,195,8,0,14,224,153,106,112,196,8,0,14,224,153,106,75,197,8,0,15,96,161,228,95,204,10,0,16,96,192,87,188,52,9,0,18,224,242,96,38,98,7,0,19,224,153,76,71,236,6,0,22,224,131,189,138,115,8,0,22,224,131,189,117,124,8,0,22,224,131,189,105,133,8,0,22,224,153,173,224,146,8,0,22,224,153,173,132,150,8,0,24,96,204,51,179,17,7,0,24,96,177,23,42,25,7,0,28,224,176,151,192,137,6,0,31,96,9,108,113,22,11,0,32,96,193,83,195,245,5,0,32,96,193,83,33,65,7,0,32,96,178,3,28,68,9,0,32,96,178,3,215,68,9,0,35,224,37,190,222,254,5,0,37,224,202,12,71,236,6,0,40,96,91,185,104,46,6,0,42,224,250,148,8,1,7,0,46,224,255,231,125,44,7,0,50,224,0,242,253,82,11,0,51,96,83,72,244,78,6,0,53,224,135,229,123,236,9,0,56,96,122,242,27,197,6,0,57,224,207,91,236,26,7,0,59,224,98,176,90,53,7,0,59,96,200,142,30,24,8,0,60,96,152,120,212,243,6,0,60,224,14,75,136,58,7,0,60,96,24,178,189,76,11,0,64,224,4,126,201,230,6,0,66,224,87,156,188,98,10,0,67,96,58,51,124,45,8,0,67,96,58,51,1,46,8,0,67,96,58,51,123,46,8,0,74,224,53,48,123,246,5,0,74,96,217,54,236,56,11,0,75,96,217,64,70,51,11,0,76,96,17,126,51,68,11,0,77,96,225,28,30,231,6,0,78,224,62,58,62,28,7,0,81,224,247,40,212,243,6,0,82,96,208,254,148,186,8,0,82,96,208,254,221,186,8,0,83,96,204,93,90,53,7,0,84,96,70,230,212,243,6,0,84,224,71,33,80,32,7,0,88,96,158,175,113,16,6,0,88,96,158,175,227,218,6,0,88,96,158,175,101,219,6,0,88,96,9,66,154,4,7,0,89,224,35,130,238,231,7,0,90,224,169,201,141,9,7,0,92,224,179,165,152,111,7,0,92,224,179,165,174,117,7,0,93,224,28,43,26,245,10,0,94,224,43,233,80,86,6,0,95,96,156,177,138,115,8,0,95,96,156,177,117,124,8,0,95,96,156,177,105,133,8,0,95,96,79,40,123,236,9,0,98,96,166,254,0,190,8,0,98,96,166,254,168,190,8,0,103,96,116,226,117,79,7,0,103,224,191,86,84,26,8,0,106,96,45,5,131,59,6,0,109,224,25,217,200,6,9,0,109,224,25,217,117,7,9,0,111,96,8,105,206,219,6,0,112,224,187,72,23,179,8,0,112,224,187,72,119,179,8,0,114,224,17,239,139,158,8,0,114,224,17,239,224,163,8,0,115,96,57,91,158,67,6,0,115,224,130,166,112,27,7,0,115,224,130,166,84,73,7,0,117,224,56,10,207,102,6,0,118,224,50,215,87,29,11,0,119,224,81,149,84,21,8,0,121,96,202,6,75,1,9,0,121,96,202,6,154,2,9,0,121,96,202,6,235,3,9,0,121,96,202,6,65,5,9,0,123,224,25,65,118,226,8,0,123,224,25,65,72,228,8,0,124,224,227,83,123,236,9,0,125,224,31,197,165,122,9,0,125,224,31,197,188,122,9,0,128,96,68,16,152,111,7,0,128,96,68,16,84,53,8,0,128,96,25,92,139,158,8,0,128,96,25,92,224,163,8,0,130,224,26,235,100,228,6,0,130,224,82,251,215,169,10,0,131,96,207,78,179,17,7,0,136,224,128,173,152,111,7,0,136,224,128,173,173,169,8,0,140,224,247,7,123,236,9,0,143,224,153,242,229,116,6,0,149,96,34,63,254,243,5,0,149,96,24,148,71,236,6,0,149,96,34,63,153,89,7,0,150,96,211,199,74,212,6,0,155,96,119,223,20,15,7,0,155,96,119,223,179,17,7,0,155,224,117,143,38,98,7,0,155,96,119,223,193,167,9,0,155,96,119,223,37,168,9,0,156,96,201,199,152,111,7,0,156,96,201,199,62,124,7,0,158,96,239,240,132,140,10,0,159,96,177,121,71,236,6,0,161,224,193,147,22,35,7,0,164,224,128,208,173,61,6,0,165,224,8,175,17,207,6,0,166,224,193,93,82,226,5,0,166,224,87,65,90,53,7,0,166,224,61,149,38,98,7,0,168,224,242,162,177,133,7,0,168,224,242,162,38,134,7,0,169,224,171,221,80,32,7,0,172,224,20,144,71,236,6,0,178,224,78,245,156,205,6,0,180,224,112,164,117,79,7,0,180,224,107,203,74,12,10,0,186,224,58,74,130,201,6,0,186,224,248,29,152,111,7,0,186,224,248,29,84,53,8,0,186,96,11,240,2,199,9,0,186,96,11,240,169,199,9,0,187,96,124,146,22,210,10,0,187,96,14,41,43,210,10,0,187,224,206,78,229,69,11,0,188,224,69,160,51,241,8,0,188,224,69,160,198,241,8,0,189,224,66,250,236,51,7,0,189,224,132,31,139,158,8,0,189,224,132,31,224,163,8,0,191,224,127,121,50,211,6,0,191,224,33,170,70,61,10,0,194,96,93,248,118,226,8,0,194,96,93,248,72,228,8,0,194,96,49,169,80,82,11,0,195,224,231,55,26,245,5,0,195,224,217,220,103,170,8,0,195,224,217,220,188,170,8,0,196,96,221,181,71,236,6,0,196,224,137,182,71,236,6,0,196,96,24,5,53,156,9,0,199,224,198,8,6,155,6,0,205,96,207,154,71,236,6,0,206,224,63,242,47,1,7,0,209,224,196,184,229,85,6,0,210,224,130,166,84,73,7,0,210,224,15,181,24,139,7,0,211,96,50,58,82,231,9,0,211,224,40,134,141,34,10,0,211,224,40,134,166,34,10,0,212,96,78,93,117,79,7,0,214,224,9,146,38,98,7,0,219,96,152,73,139,158,8,0,219,96,152,73,224,163,8,0,220,224,73,31,117,79,7,0,220,224,82,3,23,179,8,0,220,224,82,3,119,179,8,0,221,96,217,58,51,144,6,0,228,96,155,130,112,27,7,0,228,96,165,34,136,58,7,0,228,96,165,34,123,236,9,0,229,96,29,190,54,135,7,0,230,96,37,47,103,67,11,0,232,96,122,99,171,63,7,0,234,96,210,49,118,149,6,0,235,96,218,79,71,236,6,0,239,96,240,52,232,191,8,0,239,96,240,52,162,193,8,0,239,96,228,213,161,201,8,0,239,96,228,213,217,201,8,0,240,224,108,116,73,26,11,0,241,96,102,61,53,66,7,0,241,96,20,28,62,44,11,0,244,224,193,148,66,121,6,0,244,224,136,207,113,232,6,0,253,224,225,173,212,200,6,0,1,225,82,219,47,1,7,0,2,97,175,126,114,243,8,0,2,97,175,126,37,244,8,0,2,225,84,255,29,207,10,0,3,225,76,64,219,210,7,0,3,225,166,109,42,197,10,0,4,225,108,207,63,43,11,0,5,225,220,60,227,108,7,0,5,225,17,140,152,111,7,0,5,225,77,166,249,154,8,0,5,225,77,166,148,155,8,0,5,225,77,166,52,156,8,0,5,225,17,140,69,38,10,0,5,225,17,140,86,38,10,0,8,97,28,25,193,167,9,0,8,97,28,25,37,168,9,0,9,225,163,160,38,98,7,0,10,97,44,63,97,108,6,0,10,97,46,81,109,233,10,0,14,97,59,222,103,206,5,0,21,225,218,187,19,44,8,0,21,97,177,67,221,38,10,0,21,97,177,67,62,40,10,0,22,97,98,15,245,207,6,0,22,225,134,156,183,110,8,0,22,225,134,156,2,111,8,0,22,225,119,234,211,253,10,0,26,97,214,34,34,10,10,0,27,225,167,109,42,205,6,0,33,225,64,134,123,236,9,0,34,97,238,89,34,10,10,0,36,97,231,242,212,243,6,0,36,97,78,142,11,84,11,0,38,225,52,43,90,175,8,0,38,225,52,43,74,176,8,0,39,97,49,186,140,142,8,0,39,97,49,186,235,142,8,0,39,97,49,186,83,143,8,0,39,225,249,225,123,236,9,0,40,97,62,209,123,236,9,0,43,97,127,187,117,79,7,0,44,225,60,134,224,96,11,0,45,225,154,112,60,226,7,0,47,225,234,12,201,196,5,0,49,97,71,33,71,236,6,0,49,225,247,25,237,73,7,0,50,225,146,109,107,28,7,0,51,225,193,129,208,227,9,0,51,225,193,129,225,227,9,0,51,225,193,129,242,227,9,0,52,97,28,144,72,204,9,0,53,225,160,243,170,163,6,0,53,225,208,7,217,232,9,0,53,225,208,7,244,232,9,0,54,97,138,140,227,108,7,0,54,97,138,140,152,111,7,0,55,225,126,212,41,209,6,0,55,225,43,71,123,236,9,0,56,97,56,127,134,125,6,0,56,225,103,36,179,17,7,0,60,97,167,92,38,98,7,0,60,97,167,92,21,236,10,0,61,225,20,144,214,7,7,0,61,225,249,62,245,41,7,0,61,97,40,171,205,81,8,0,66,225,49,116,110,135,6,0,66,97,47,162,212,200,6,0,66,97,140,186,99,66,8,0,67,225,0,36,135,252,6,0,67,225,0,36,194,252,6,0,69,225,211,60,136,58,7,0,70,225,247,69,197,43,7,0,70,225,247,69,30,44,7,0,70,225,161,194,232,191,8,0,70,225,161,194,162,193,8,0,70,97,89,18,156,183,10,0,72,97,209,251,220,46,6,0,73,97,2,221,179,17,7,0,73,97,183,200,2,199,9,0,73,97,183,200,169,199,9,0,73,97,166,5,116,66,10,0,73,97,166,5,69,84,10,0,81,97,115,247,224,146,8,0,81,97,115,247,132,150,8,0,82,97,202,154,51,255,9,0,82,97,202,154,139,255,9,0,82,97,202,154,226,255,9,0,83,97,123,132,63,119,10,0,84,97,183,219,164,23,7,0,84,97,55,166,148,186,8,0,84,97,55,166,221,186,8,0,85,225,90,201,90,56,9,0,85,225,90,201,171,56,9,0,85,225,90,201,54,57,9,0,87,225,55,74,109,231,6,0,89,225,97,74,138,115,8,0,89,225,97,74,117,124,8,0,89,225,97,74,105,133,8,0,90,97,248,39,235,169,6,0,90,225,71,59,80,167,9,0,90,225,71,59,37,168,9,0,91,225,24,207,203,163,6,0,91,97,142,163,194,211,6,0,91,225,241,203,44,14,11,0,93,97,102,118,87,100,11,0,95,97,178,28,182,234,6,0,95,97,170,95,212,243,6,0,95,225,220,64,237,73,7,0,96,97,0,98,89,243,5,0,96,97,73,79,155,203,6,0,97,97,251,90,155,67,7,0,98,97,138,49,169,17,8,0,101,97,215,203,136,58,7,0,102,97,120,248,151,76,9,0,102,97,120,248,182,76,9,0,102,97,120,248,224,76,9,0,102,97,120,248,4,77,9,0,102,97,120,248,34,77,9,0,105,97,97,234,44,90,10,0,107,97,91,167,139,158,8,0,107,97,91,167,224,163,8,0,110,97,126,79,219,1,7,0,112,225,200,39,131,250,7,0,113,225,243,125,57,10,7,0,114,225,248,222,4,130,10,0,115,97,63,11,38,57,6,0,117,225,147,234,71,236,6,0,119,97,128,163,182,123,6,0,119,97,48,129,212,243,6,0,119,97,128,163,180,28,7,0,119,225,253,201,153,207,8,0,119,225,253,201,44,208,8,0,119,225,209,243,226,154,9,0,119,225,209,243,114,155,9,0,124,225,11,82,65,167,6,0,126,225,216,176,12,45,11,0,128,225,173,102,223,30,7,0,129,225,30,170,59,78,10,0,129,225,30,170,171,78,10,0,129,225,30,170,209,87,10,0,129,225,30,170,255,88,10,0,131,225,193,237,228,109,9,0,131,225,193,237,248,110,9,0,132,225,250,77,27,119,9,0,132,225,250,77,102,119,9,0,137,225,131,16,227,223,6,0,139,225,54,44,136,58,7,0,139,97,224,192,109,162,9,0,139,97,224,192,132,162,9,0,140,225,78,7,212,243,6,0,142,97,88,159,212,243,6,0,142,97,205,155,2,199,9,0,142,97,205,155,169,199,9,0,144,225,44,160,245,6,10,0,144,225,44,160,14,7,10,0,146,97,154,183,213,41,10,0,146,97,154,183,87,42,10,0,147,225,56,57,0,85,9,0,147,225,56,57,22,85,9,0,154,225,6,187,202,222,10,0,157,97,119,190,51,214,8,0,157,97,119,190,241,214,8,0,157,97,119,190,169,215,8,0,164,225,86,66,162,28,9,0,164,225,86,66,244,28,9,0,165,225,3,76,205,216,10,0,170,97,181,4,136,58,7,0,173,225,36,97,191,55,7,0,173,225,36,97,247,55,7,0,173,225,180,124,22,62,10,0,175,97,44,41,117,79,7,0,176,225,242,151,13,195,10,0,178,97,61,0,21,81,10,0,179,97,86,133,7,220,6,0,181,225,59,120,122,233,10,0,182,97,57,43,118,226,8,0,182,97,57,43,72,228,8,0,183,97,7,218,201,52,6,0,183,97,7,218,228,87,6,0,186,225,168,3,75,1,9,0,186,225,168,3,154,2,9,0,186,225,168,3,235,3,9,0,186,225,168,3,65,5,9,0,187,225,242,232,218,222,10,0,187,97,8,72,102,73,11,0,189,225,86,163,139,213,6,0,189,225,235,232,178,174,10,0,194,97,181,239,38,98,7,0,194,225,238,117,99,66,8,0,194,225,238,117,218,67,8,0,194,225,238,117,69,68,8,0,196,225,166,54,114,125,6,0,196,97,207,121,160,234,8,0,196,97,207,121,175,235,8,0,196,225,131,109,32,105,10,0,198,225,60,63,195,48,7,0,198,97,162,31,200,6,9,0,198,97,162,31,117,7,9,0,198,225,23,226,115,7,10,0,198,225,23,226,190,7,10,0,198,225,23,226,10,8,10,0,203,97,4,167,117,37,7,0,204,225,203,126,14,53,8,0,209,97,3,183,237,73,7,0,213,225,146,14,5,76,6,0,215,225,166,222,240,13,8,0,215,225,166,222,30,14,8,0,215,225,166,222,71,14,8,0,215,225,166,222,84,21,8,0,217,225,7,38,12,140,7,0,220,97,80,45,38,98,7,0,220,97,115,17,99,66,8,0,221,225,211,24,186,198,8,0,221,225,211,24,213,198,8,0,221,225,211,24,248,198,8,0,223,97,23,94,139,158,8,0,223,97,23,94,224,163,8,0,224,97,197,154,152,111,7,0,224,97,197,154,84,53,8,0,225,225,214,19,219,210,7,0,232,225,212,63,219,1,7,0,234,225,183,80,219,1,7,0,235,97,97,54,235,47,6,0,237,97,233,4,20,15,7,0,237,97,233,4,179,17,7,0,240,225,148,69,56,218,5,0,241,225,157,92,208,94,9,0,241,225,157,92,227,94,9,0,242,97,120,210,226,250,5,0,243,225,64,205,79,89,9,0,243,225,64,205,111,89,9,0,243,225,64,205,143,89,9,0,244,97,22,229,229,242,8,0,244,97,22,229,25,243,8,0,245,97,3,51,106,205,10,0,248,97,196,148,148,186,8,0,248,97,196,148,221,186,8,0,249,97,100,113,137,242,5,0,249,225,175,76,71,236,6,0,251,97,174,183,117,37,7,0,253,97,144,212,124,222,6,0,253,97,169,97,38,98,7,0,254,97,41,217,8,119,6,0,254,225,245,207,83,69,10,0,254,225,151,159,108,129,10,0,1,98,86,37,237,73,7,0,1,226,243,112,38,98,7,0,1,98,86,37,67,111,10,0,2,226,26,174,249,129,6,0,2,226,84,154,153,11,7,0,4,98,154,153,171,63,7,0,5,98,97,33,57,10,7,0,6,98,95,25,229,1,8,0,7,98,148,52,224,146,8,0,7,98,148,52,132,150,8,0,9,98,245,14,247,55,7,0,9,226,29,182,117,79,7,0,13,226,156,228,240,226,6,0,16,98,14,120,6,101,6,0,16,226,26,143,179,17,7,0,17,226,109,159,38,98,7,0,18,226,105,161,117,79,7,0,18,98,199,248,38,98,7,0,19,226,200,171,27,37,6,0,19,98,224,109,57,10,7,0,22,98,233,226,137,200,5,0,23,226,229,10,152,111,7,0,23,226,229,10,173,169,8,0,27,98,44,81,80,45,11,0,28,226,69,65,5,32,6,0,31,226,5,177,61,161,6,0,31,226,226,124,152,111,7,0,31,226,226,124,173,169,8,0,32,98,32,205,254,254,6,0,33,226,4,92,59,135,6,0,34,98,62,156,237,73,7,0,34,98,135,174,92,150,10,0,35,98,201,84,171,63,7,0,37,98,247,219,38,98,7,0,38,226,88,87,20,15,7,0,38,226,88,87,179,17,7,0,43,98,118,103,160,100,11,0,46,98,67,162,249,154,8,0,46,98,67,162,148,155,8,0,46,98,67,162,52,156,8,0,47,226,44,122,171,49,7,0,47,226,235,153,245,28,10,0,47,226,235,153,145,31,10,0,48,226,210,87,110,218,6,0,49,226,8,73,92,209,5,0,49,226,8,73,153,11,7,0,49,226,8,73,135,13,7,0,50,226,184,9,165,253,6,0,51,98,68,129,112,138,6,0,51,98,253,227,212,243,6,0,52,98,27,235,241,33,6,0,52,98,82,125,59,27,8,0,53,226,18,112,51,241,8,0,53,226,18,112,198,241,8,0,57,98,179,196,203,164,6,0,59,98,54,42,71,236,6,0,59,98,105,223,231,29,7,0,59,98,168,52,175,36,11,0,60,98,117,118,86,59,11,0,60,98,117,118,114,59,11,0,61,98,252,221,113,47,7,0,61,226,237,179,117,79,7,0,62,226,32,173,112,30,7,0,62,226,32,173,144,30,7,0,65,98,33,100,30,171,9,0,65,98,33,100,30,171,9,0,66,226,121,121,148,186,8,0,66,226,121,121,221,186,8,0,67,98,121,255,65,172,7,0,71,226,248,222,241,95,8,0,73,98,166,222,117,37,7,0,75,226,115,55,90,53,7,0,78,98,156,197,58,0,10,0,79,226,12,47,204,36,6,0,79,98,132,170,81,67,6,0,86,226,135,243,113,232,6,0,86,226,119,8,219,1,7,0,86,226,14,194,117,79,7,0,88,226,3,227,180,28,7,0,89,98,241,59,24,234,5,0,89,98,18,147,141,195,8,0,89,98,18,147,112,196,8,0,89,98,18,147,75,197,8,0,89,98,101,56,204,213,9,0,90,226,227,132,91,147,7,0,91,226,81,23,6,225,5,0,91,226,81,23,128,8,6,0,91,226,87,208,208,43,10,0,91,226,87,208,255,43,10,0,91,226,87,208,45,44,10,0,91,226,87,208,104,44,10,0,93,226,34,129,55,114,10,0,95,98,33,152,226,228,5,0,97,226,27,237,23,179,8,0,97,226,27,237,119,179,8,0,100,226,45,131,182,140,6,0,107,98,45,117,92,201,6,0,107,226,189,0,234,36,7,0,110,98,108,165,33,65,7,0,110,98,223,40,140,142,8,0,110,98,223,40,235,142,8,0,110,98,223,40,83,143,8,0,112,226,114,219,5,148,7,0,115,226,137,3,28,236,6,0,116,98,58,69,76,120,6,0,116,226,189,201,167,71,7,0,117,98,38,92,202,39,6,0,118,98,123,57,131,181,6,0,118,226,234,227,166,73,10,0,120,226,102,255,179,17,7,0,123,226,84,233,107,23,10,0,123,226,84,233,195,23,10,0,124,226,31,70,73,191,10,0,126,226,20,182,212,243,6,0,126,226,163,17,123,236,9,0,126,98,1,126,37,74,11,0,127,98,186,124,24,211,5,0,132,98,157,137,212,243,6,0,132,226,85,73,103,245,8,0,132,226,85,73,151,245,8,0,135,98,20,33,167,94,6,0,135,226,146,190,46,206,6,0,136,98,197,246,137,252,5,0,139,98,73,114,163,201,6,0,140,98,16,100,138,115,8,0,140,98,16,100,117,124,8,0,140,98,16,100,105,133,8,0,146,98,228,158,45,44,11,0,148,226,159,201,175,30,7,0,149,98,208,37,76,183,6,0,149,98,208,37,153,11,7,0,149,98,208,37,135,13,7,0,149,226,135,13,152,111,7,0,149,226,135,13,138,220,7,0,149,226,135,13,182,220,7,0,151,226,157,143,152,111,7,0,151,226,157,143,84,53,8,0,151,226,179,120,212,149,10,0,151,98,73,121,176,79,11,0,154,226,67,15,13,32,9,0,154,226,67,15,195,32,9,0,156,98,188,148,33,122,6,0,156,98,102,34,152,111,7,0,156,98,102,34,130,122,7,0,157,226,236,172,193,192,5,0,157,226,236,172,200,226,5,0,157,226,236,172,172,166,6,0,157,226,236,172,73,187,6,0,157,98,164,178,229,242,8,0,157,98,164,178,25,243,8,0,158,98,114,131,212,243,6,0,159,98,113,152,191,206,7,0,162,98,30,239,118,0,7,0,162,98,124,23,152,111,7,0,162,98,124,23,173,169,8,0,167,98,156,95,123,236,9,0,167,226,93,73,146,146,10,0,172,226,250,106,33,232,7,0,173,98,143,83,172,213,6,0,173,98,143,83,226,43,9,0,173,98,143,83,66,44,9,0,173,98,143,83,167,44,9,0,173,98,143,83,5,45,9,0,173,98,143,83,108,45,9,0,174,226,187,129,167,107,7,0,174,226,187,129,62,124,7,0,180,226,151,163,44,90,10,0,181,226,244,23,228,109,9,0,181,226,244,23,248,110,9,0,183,98,195,239,0,190,8,0,183,98,195,239,168,190,8,0,184,226,119,52,75,1,9,0,184,226,119,52,154,2,9,0,184,226,119,52,235,3,9,0,184,226,119,52,65,5,9,0,185,226,152,208,156,101,6,0,187,226,147,190,117,37,7,0,187,226,158,58,206,144,7,0,187,226,158,58,243,144,7,0,187,226,194,226,40,217,8,0,187,226,194,226,209,217,8,0,187,226,158,58,95,125,9,0,187,226,189,130,119,210,10,0,189,98,53,116,29,5,7,0,190,226,221,75,90,53,7,0,192,98,38,4,75,102,6,0,194,98,14,142,176,11,6,0,194,98,14,142,127,90,6,0,194,98,14,142,81,175,6,0,194,98,14,142,100,189,6,0,194,98,14,142,85,197,6,0,194,98,14,142,154,197,6,0,194,226,252,43,247,55,7,0,194,98,14,142,227,91,7,0,194,98,160,181,90,175,8,0,194,98,160,181,74,176,8,0,195,98,6,6,219,245,10,0,196,226,132,139,71,236,6,0,197,98,200,2,63,212,7,0,198,226,18,187,152,111,7,0,199,226,16,71,123,236,9,0,200,226,61,47,1,244,10,0,202,226,106,103,80,11,7,0,202,98,40,238,38,98,7,0,202,226,232,254,123,236,9,0,202,98,56,247,185,16,11,0,206,226,112,164,77,10,11,0,207,226,165,237,0,203,6,0,208,226,111,223,219,34,7,0,210,98,214,20,224,96,11,0,216,98,55,149,247,55,7,0,216,98,88,233,253,208,8,0,216,98,88,233,22,211,8,0,217,98,235,185,113,232,6,0,217,98,42,243,123,236,9,0,218,226,84,82,38,98,7,0,224,226,39,185,34,161,7,0,224,226,52,60,22,217,9,0,224,226,52,60,103,217,9,0,225,98,252,105,117,37,7,0,226,226,130,100,138,115,8,0,226,226,130,100,117,124,8,0,226,226,130,100,105,133,8,0,230,226,177,176,146,163,7,0,231,98,49,238,119,174,7,0,231,98,49,238,165,174,7,0,233,226,207,146,119,203,6,0,233,226,145,214,90,204,6,0,234,98,24,51,125,44,7,0,236,98,113,50,154,4,7,0,236,98,44,24,113,47,7,0,237,226,210,8,123,236,9,0,238,226,158,90,138,115,8,0,238,226,158,90,117,124,8,0,238,226,158,90,105,133,8,0,239,226,20,158,204,101,6,0,243,226,105,139,230,215,6,0,247,98,158,246,1,62,9,0,247,98,158,246,42,62,9,0,247,98,158,246,88,62,9,0,247,98,158,246,149,62,9,0,247,98,158,246,194,62,9,0,247,98,158,246,237,62,9,0,247,98,158,246,32,63,9,0,247,226,52,162,123,236,9,0,248,226,91,137,95,0,10,0,248,226,91,137,200,0,10,0,251,98,54,179,38,98,7,0,252,98,97,128,57,233,5,0,252,98,97,128,78,233,5,0,252,226,96,246,75,142,9,0,252,226,96,246,201,142,9,0,252,226,96,246,84,143,9,0,254,98,72,196,57,224,7,0,254,226,200,204,212,77,9,0,254,226,200,204,34,78,9,0,254,226,158,161,97,188,10,0,255,226,244,126,88,129,7,0,0,227,141,208,138,115,8,0,0,227,141,208,117,124,8,0,0,227,141,208,105,133,8,0,0,99,70,16,215,156,10,0,2,227,40,24,26,59,6,0,3,99,80,123,51,214,8,0,3,99,80,123,241,214,8,0,3,99,80,123,169,215,8,0,6,99,176,189,35,88,11,0,9,227,147,33,152,111,7,0,9,227,147,33,174,122,7,0,10,227,93,171,224,146,8,0,10,227,93,171,132,150,8,0,10,227,172,36,96,248,10,0,13,99,111,60,111,184,6,0,13,227,227,213,33,65,7,0,15,227,232,125,237,73,7,0,17,99,40,254,253,242,5,0,17,227,233,127,197,253,6,0,18,227,137,146,155,67,7,0,18,99,188,9,38,98,7,0,20,99,16,144,24,205,10,0,21,227,23,207,219,1,7,0,21,227,209,145,57,171,8,0,21,227,209,145,133,172,8,0,21,227,209,145,211,173,8,0,22,227,6,7,153,207,8,0,22,227,6,7,44,208,8,0,22,99,207,41,118,175,10,0,23,227,115,82,117,79,7,0,24,227,43,219,167,107,7,0,24,227,43,219,27,118,7,0,27,99,117,97,20,15,7,0,27,99,117,97,179,17,7,0,28,227,38,211,212,243,6,0,29,99,3,163,29,5,7,0,30,99,1,138,29,4,7,0,31,99,17,167,218,113,9,0,31,99,17,167,120,114,9,0,33,99,27,125,155,67,7,0,34,227,223,104,29,5,7,0,37,227,5,55,153,207,8,0,37,227,5,55,44,208,8,0,40,227,206,189,144,186,5,0,41,99,49,150,201,3,7,0,43,227,153,79,54,233,6,0,44,99,170,41,197,207,10,0,48,227,40,104,59,73,7,0,49,227,37,224,40,237,5,0,49,99,219,36,33,26,8,0,50,227,102,100,245,28,10,0,50,227,102,100,145,31,10,0,53,99,230,250,30,171,9,0,54,99,95,125,139,0,6,0,54,99,234,2,241,166,6,0,54,99,82,139,99,42,7,0,54,99,245,144,110,178,7,0,59,99,73,148,197,83,8,0,60,99,198,222,139,158,8,0,60,99,198,222,224,163,8,0,65,99,118,181,16,198,5,0,65,99,213,233,96,175,10,0,65,99,213,233,243,175,10,0,66,99,49,189,114,243,8,0,66,99,49,189,37,244,8,0,67,99,178,66,163,242,7,0,67,99,178,66,192,242,7,0,67,99,178,66,234,242,7,0,69,227,137,8,17,221,7,0,69,99,15,233,99,66,8,0,69,99,15,233,218,67,8,0,69,99,15,233,69,68,8,0,69,99,15,233,93,69,8,0,69,99,15,233,155,69,8,0,69,99,15,233,232,69,8,0,72,227,186,52,100,228,6,0,75,227,108,2,200,207,6,0,76,99,213,233,136,58,7,0,76,227,195,5,138,115,8,0,76,227,195,5,117,124,8,0,76,227,195,5,105,133,8,0,79,99,122,119,78,203,8,0,80,227,25,142,71,236,6,0,81,227,46,127,224,146,8,0,81,227,46,127,132,150,8,0,81,99,61,250,4,166,10,0,85,227,144,25,144,105,6,0,86,99,1,28,37,143,10,0,88,227,238,17,123,236,9,0,88,99,254,72,215,16,10,0,88,99,254,72,135,17,10,0,91,99,196,244,209,79,6,0,91,227,225,148,249,111,6,0,92,99,240,4,146,38,8,0,92,99,240,4,209,38,8,0,92,99,240,4,6,39,8,0,98,99,231,133,206,80,6,0,99,227,112,131,72,204,9,0,100,99,213,51,201,3,7,0,104,227,143,147,237,231,6,0,104,227,189,193,212,243,6,0,104,99,229,197,237,73,7,0,105,227,151,159,94,146,7,0,105,227,151,159,219,148,10,0,106,227,56,9,237,73,7,0,107,99,25,186,133,220,6,0,107,99,229,86,113,22,11,0,109,99,68,75,118,226,8,0,109,99,68,75,72,228,8,0,114,99,166,128,17,12,6,0,114,99,166,128,55,33,6,0,115,99,125,67,78,203,8,0,124,227,62,126,64,34,6,0,124,227,34,205,61,14,10,0,124,227,34,205,96,14,10,0,125,227,22,204,152,122,6,0,125,227,221,81,152,111,7,0,125,227,221,81,206,62,8,0,125,227,221,81,99,63,8,0,125,227,221,81,4,64,8,0,125,227,221,81,73,218,9,0,126,227,249,43,17,205,5,0,127,227,227,54,93,1,10,0,127,227,227,54,122,1,10,0,128,99,167,203,125,44,7,0,128,227,81,236,229,49,9,0,128,227,81,236,17,50,9,0,129,99,26,173,253,208,8,0,129,99,26,173,22,211,8,0,129,99,102,111,103,95,11,0,130,99,22,147,148,203,10,0,131,227,251,143,71,236,6,0,132,227,68,188,254,5,6,0,132,227,68,188,225,71,6,0,132,227,118,48,151,163,6,0,134,99,254,235,139,158,8,0,134,99,254,235,224,163,8,0,136,99,171,15,32,30,7,0,137,99,213,233,136,58,7,0,138,99,167,209,78,203,8,0,141,99,82,85,140,189,5,0,141,99,137,228,122,82,6,0,142,227,93,187,249,133,6,0,142,99,174,233,219,210,7,0,142,99,253,192,133,2,11,0,143,227,1,84,26,200,6,0,143,227,3,252,244,27,9,0,144,99,148,19,137,160,6,0,147,227,220,46,228,115,6,0,151,99,103,17,117,37,7,0,151,99,71,113,38,98,7,0,151,99,207,227,115,88,11,0,153,227,54,19,47,47,6,0,153,227,54,19,66,230,6,0,154,227,244,138,117,79,7,0,154,227,54,8,228,109,9,0,154,227,54,8,248,110,9,0,157,227,116,85,61,161,6,0,157,99,93,67,191,166,9,0,157,99,93,67,252,166,9,0,157,99,93,67,39,167,9,0,158,99,115,72,100,79,6,0,158,227,45,206,255,143,9,0,158,227,45,206,19,144,9,0,158,227,161,217,158,250,10,0,161,99,72,199,36,217,5,0,161,99,69,198,113,16,6,0,161,227,246,222,117,79,7,0,162,99,98,4,210,225,9,0,162,99,98,4,231,225,9,0,163,99,213,143,212,243,6,0,165,99,172,203,153,11,7,0,169,99,28,189,88,129,7,0,170,99,253,14,38,98,7,0,174,227,243,154,59,179,7,0,174,227,243,154,104,179,7,0,174,227,243,154,153,179,7,0,174,227,10,11,148,191,7,0,175,99,225,170,117,79,7,0,177,99,68,184,30,171,9,0,180,99,158,51,246,213,5,0,180,227,187,100,188,49,6,0,180,227,187,100,53,25,8,0,181,99,253,35,152,111,7,0,181,99,253,35,216,119,7,0,184,227,129,114,138,115,8,0,184,227,129,114,117,124,8,0,184,227,129,114,105,133,8,0,186,99,210,224,127,208,6,0,187,227,55,194,89,223,10,0,187,99,183,191,243,78,11,0,188,99,208,38,68,202,6,0,189,227,194,252,51,214,8,0,189,227,194,252,241,214,8,0,189,227,194,252,169,215,8,0,191,99,226,191,167,107,7,0,192,227,133,203,80,32,7,0,192,227,198,110,2,199,9,0,192,227,198,110,169,199,9,0,197,99,218,148,139,158,8,0,197,99,218,148,224,163,8,0,198,227,129,254,54,218,6,0,200,227,74,196,171,49,7,0,200,99,53,172,136,58,7,0,200,227,141,56,118,56,10,0,202,227,98,221,38,98,7,0,204,99,158,244,138,115,8,0,204,99,158,244,117,124,8,0,204,99,158,244,105,133,8,0,205,227,218,107,41,24,7,0,212,99,128,143,139,158,8,0,212,99,128,143,224,163,8,0,214,99,115,145,201,205,5,0,220,227,243,82,78,47,11,0,221,99,82,255,224,146,8,0,221,99,82,255,132,150,8,0,222,99,194,160,241,237,10,0,223,99,15,253,55,200,5,0,226,227,245,72,153,11,7,0,226,227,245,72,135,13,7,0,231,227,106,229,117,79,7,0,231,227,182,25,158,89,10,0,235,99,110,184,71,236,6,0,235,99,16,186,119,72,8,0,241,99,86,211,171,130,6,0,241,227,1,32,20,15,7,0,241,227,1,32,179,17,7,0,241,227,124,61,80,32,7,0,242,99,205,58,40,161,6,0,243,227,191,127,191,153,6,0,243,227,74,245,171,49,7,0,243,227,125,138,72,204,9,0,244,227,191,127,55,242,5,0,244,227,191,127,12,147,6,0,247,99,231,56,141,255,8,0,247,99,231,56,235,255,8,0,248,99,178,63,90,175,8,0,248,99,178,63,74,176,8,0,249,99,112,171,33,243,10,0,250,99,210,216,138,115,8,0,250,99,210,216,117,124,8,0,250,99,210,216,105,133,8,0,251,227,155,76,113,47,7,0,251,227,155,76,136,243,7,0,251,227,121,125,138,115,8,0,251,227,121,125,117,124,8,0,251,227,121,125,105,133,8,0,252,227,246,229,155,67,7,0,252,99,156,106,135,90,9,0,252,99,156,106,124,91,9,0,255,227,142,215,152,111,7,0,3,228,147,98,217,92,6,0,3,100,195,44,75,1,9,0,3,100,195,44,154,2,9,0,3,100,195,44,235,3,9,0,3,100,195,44,65,5,9,0,4,228,36,141,118,226,8,0,4,228,36,141,72,228,8,0,5,100,212,48,130,20,9,0,5,100,212,48,144,20,9,0,8,100,162,51,69,69,7,0,8,100,202,105,139,158,8,0,8,100,202,105,224,163,8,0,8,228,77,230,179,222,8,0,8,228,77,230,152,223,8,0,8,228,230,3,251,134,10,0,9,100,21,21,12,95,11,0,12,100,108,9,68,230,5,0,15,228,79,63,94,44,6,0,15,100,103,110,180,144,8,0,15,100,103,110,67,145,8,0,16,100,121,150,209,40,7,0,16,100,224,234,72,204,9,0,18,228,62,217,225,119,9,0,18,228,62,217,254,119,9,0,19,100,146,132,95,114,6,0,20,228,249,226,155,67,7,0,21,100,86,216,117,79,7,0,21,100,253,98,224,146,8,0,21,100,253,98,132,150,8,0,24,228,213,113,253,208,8,0,24,228,213,113,22,211,8,0,26,100,10,46,249,154,8,0,26,100,10,46,148,155,8,0,26,100,10,46,52,156,8,0,26,100,68,229,253,208,8,0,26,100,68,229,22,211,8,0,30,228,176,235,163,122,10,0,31,228,121,240,26,251,5,0,31,100,154,23,123,236,9,0,33,228,50,48,152,111,7,0,33,228,50,48,173,169,8,0,38,100,245,173,209,205,6,0,41,228,239,214,223,30,7,0,42,228,72,119,152,152,6,0,42,228,72,119,38,98,7,0,44,228,0,187,47,130,6,0,44,228,0,187,67,160,6,0,44,100,15,100,207,162,10,0,45,100,80,108,128,165,10,0,47,100,206,71,90,53,7,0,49,228,119,65,154,79,6,0,52,100,245,172,111,200,6,0,52,100,31,122,147,57,11,0,52,100,31,122,182,57,11,0,55,100,203,178,156,1,7,0,55,100,74,47,179,222,8,0,55,100,74,47,152,223,8,0,56,228,16,191,54,239,10,0,58,228,195,125,197,253,6,0,60,100,58,201,152,111,7,0,60,100,58,201,203,125,7,0,60,100,5,234,61,190,10,0,61,100,24,208,254,243,5,0,61,100,24,208,153,89,7,0,62,100,180,50,9,228,10,0,67,228,46,181,138,115,8,0,67,228,46,181,117,124,8,0,67,228,46,181,105,133,8,0,68,228,27,171,51,208,7,0,69,228,233,76,95,19,6,0,69,228,10,171,89,74,11,0,69,228,10,171,223,79,11,0,69,228,10,171,254,79,11,0,71,228,233,55,233,72,8,0,74,100,44,238,71,236,6,0,74,100,38,23,200,244,10,0,76,100,90,102,34,10,10,0,77,100,157,186,57,133,7,0,79,100,232,81,42,192,5,0,79,100,56,255,127,166,6,0,79,100,56,255,206,219,6,0,79,100,131,60,167,208,7,0,79,100,194,92,140,101,10,0,82,100,89,255,228,59,10,0,83,100,60,168,237,73,7,0,88,100,21,53,71,97,11,0,89,100,196,139,221,14,11,0,96,100,193,30,221,38,10,0,96,100,193,30,62,40,10,0,97,100,162,179,44,164,10,0,98,228,206,78,138,115,8,0,98,228,206,78,117,124,8,0,98,228,206,78,105,133,8,0,99,100,192,49,165,11,9,0,99,100,192,49,58,12,9,0,100,228,232,115,25,149,7,0,101,100,240,16,174,129,10,0,102,100,61,88,20,15,7,0,102,100,61,88,179,17,7,0,103,100,202,6,255,243,7,0,109,228,113,27,224,254,6,0,109,228,91,222,117,37,7,0,111,100,182,93,139,158,8,0,111,100,182,93,224,163,8,0,114,228,53,30,137,227,5,0,115,100,144,95,99,66,8,0,115,100,144,95,218,67,8,0,115,100,144,95,69,68,8,0,116,228,176,98,117,79,7,0,117,100,157,98,130,227,6,0,117,228,128,170,118,160,7,0,119,228,212,100,25,204,7,0,120,228,249,251,90,53,7,0,120,100,185,2,208,43,11,0,124,100,178,237,253,141,10,0,125,100,165,208,38,98,7,0,126,228,253,187,3,23,6,0,126,228,253,187,20,15,7,0,127,228,14,21,123,236,9,0,127,100,28,129,251,134,10,0,128,100,10,185,152,111,7,0,128,228,48,94,84,21,8,0,128,100,10,185,87,7,10,0,129,228,167,214,216,221,6,0,131,100,10,62,63,212,7,0,132,100,40,24,121,57,10,0,134,100,36,204,180,28,7,0,135,228,0,104,226,30,11,0,137,228,103,14,226,57,6,0,140,228,34,64,232,251,9,0,140,228,34,64,176,252,9,0,142,228,174,125,40,217,8,0,142,228,174,125,209,217,8,0,143,228,221,127,41,24,7,0,146,100,205,190,247,55,7,0,148,100,44,66,216,151,6,0,148,100,44,66,28,194,6,0,148,100,121,141,139,158,8,0,148,100,121,141,224,163,8,0,148,228,122,49,123,236,9,0,148,100,134,52,234,25,11,0,151,100,86,206,171,49,7,0,151,228,59,212,33,65,7,0,152,100,90,170,240,226,6,0,152,100,129,159,253,208,8,0,152,100,129,159,22,211,8,0,154,228,13,81,25,187,5,0,154,100,17,172,151,21,7,0,156,100,101,140,171,68,6,0,160,100,180,94,212,243,6,0,160,100,2,66,247,55,7,0,161,228,5,133,111,228,10,0,163,228,68,26,76,11,6,0,163,100,116,218,71,236,6,0,164,228,158,104,247,55,7,0,167,100,194,51,212,21,9,0,167,100,194,51,31,22,9,0,167,100,194,51,103,22,9,0,169,228,35,160,185,66,11,0,170,228,27,80,105,136,7,0,171,100,26,139,71,236,6,0,172,228,185,148,38,29,6,0,175,228,178,82,172,213,6,0,175,100,81,122,62,4,7,0,175,228,178,82,226,43,9,0,175,228,178,82,66,44,9,0,175,228,178,82,167,44,9,0,175,228,178,82,5,45,9,0,175,228,178,82,108,45,9,0,176,228,73,9,28,176,7,0,176,228,73,9,172,242,10,0,179,100,125,135,151,58,9,0,179,100,125,135,170,58,9,0,180,228,52,206,224,146,8,0,180,228,52,206,132,150,8,0,181,100,62,173,97,8,7,0,181,100,103,232,22,35,7,0,181,100,103,232,78,204,10,0,182,228,103,27,224,146,8,0,182,228,103,27,132,150,8,0,183,100,170,152,206,76,10,0,184,100,198,6,254,243,5,0,184,100,198,6,153,89,7,0,187,100,200,20,156,55,10,0,188,228,126,140,212,243,6,0,188,228,117,120,200,93,10,0,189,100,135,100,237,73,7,0,196,228,45,129,192,139,6,0,197,228,151,128,102,179,6,0,197,228,25,110,123,236,9,0,197,100,223,209,123,236,9,0,198,228,108,113,57,10,7,0,199,228,124,81,123,236,9,0,202,100,86,14,219,1,7,0,203,100,213,17,7,74,11,0,204,228,166,142,141,195,8,0,204,228,166,142,112,196,8,0,204,228,166,142,75,197,8,0,205,100,103,223,140,66,7,0,205,100,103,223,234,66,7,0,207,100,223,195,118,226,8,0,207,100,223,195,72,228,8,0,207,100,230,95,231,120,10,0,207,100,161,77,232,124,10,0,209,228,250,249,243,6,7,0,210,100,231,142,197,230,8,0,210,100,231,142,235,230,8,0,211,100,74,97,29,5,7,0,212,100,87,56,232,191,8,0,212,100,87,56,162,193,8,0,212,100,60,150,246,205,8,0,212,100,60,150,155,206,8,0,215,228,174,145,133,220,6,0,215,100,203,6,93,25,8,0,217,228,31,11,109,172,9,0,217,228,31,11,178,173,9,0,217,228,31,11,250,174,9,0,219,100,188,148,64,2,10,0,219,100,188,148,90,2,10,0,220,100,89,1,29,5,7,0,221,228,224,200,53,66,7,0,221,228,211,216,29,204,8,0,221,228,211,216,6,205,8,0,224,100,99,196,117,79,7,0,224,100,133,80,15,142,10,0,226,228,13,138,95,194,5,0,226,228,76,242,48,225,6,0,226,228,7,236,197,253,6,0,226,100,199,17,29,5,7,0,226,228,167,183,219,210,7,0,226,228,85,101,22,215,7,0,227,100,160,136,78,47,11,0,230,228,118,1,139,158,8,0,230,228,118,1,224,163,8,0,232,100,79,200,42,252,6,0,232,100,79,200,154,83,10,0,236,100,129,236,33,31,8,0,236,228,146,34,46,95,9,0,236,228,146,34,74,95,9,0,239,100,153,134,123,236,9,0,241,100,91,70,113,24,7,0,241,100,21,126,22,62,10,0,241,100,200,245,85,165,10,0,247,228,101,93,144,201,5,0,248,100,219,73,113,24,7,0,248,228,101,67,13,32,9,0,248,228,101,67,195,32,9,0,249,100,45,225,73,145,7,0,249,100,70,237,166,232,8,0,249,100,70,237,196,232,8,0,250,228,135,134,139,158,8,0,250,228,135,134,224,163,8,0,251,100,165,55,37,210,7,0,252,228,111,136,170,73,6,0,253,100,39,123,133,220,6,0,255,100,86,67,100,122,6,0,255,100,86,67,130,159,7,0,255,100,86,67,177,159,7,0,255,100,86,67,33,250,7,0,0,229,215,187,165,59,10,0,1,229,89,222,147,88,11,0,2,101,138,70,245,28,10,0,2,101,138,70,145,31,10,0,6,101,236,88,190,200,10,0,7,101,208,72,254,254,6,0,7,101,163,23,28,68,9,0,7,101,163,23,215,68,9,0,9,101,169,49,149,43,7,0,10,229,115,88,118,0,7,0,10,101,205,160,58,0,10,0,10,101,122,166,7,238,10,0,10,101,122,166,36,251,10,0,11,229,63,217,117,79,7,0,11,101,231,242,205,151,9,0,11,101,231,242,199,152,9,0,11,101,231,242,220,153,9,0,11,101,245,150,123,92,10,0,13,101,132,41,224,146,8,0,13,101,132,41,132,150,8,0,13,101,101,9,120,203,10,0,14,229,140,1,253,55,10,0,14,229,151,221,187,245,10,0,15,229,244,144,152,111,7,0,15,229,244,144,84,53,8,0,20,229,88,145,50,51,7,0,23,101,241,45,5,248,8,0,23,101,241,45,42,248,8,0,23,101,215,199,226,43,9,0,23,101,215,199,66,44,9,0,23,101,215,199,167,44,9,0,23,101,215,199,5,45,9,0,23,101,215,199,108,45,9,0,24,229,207,16,79,230,8,0,24,229,207,16,114,230,8,0,32,101,200,114,136,111,6,0,32,229,26,244,161,201,8,0,32,229,26,244,217,201,8,0,34,229,83,20,111,14,8,0,37,229,70,82,144,3,7,0,37,229,7,12,224,36,11,0,37,101,255,157,147,77,11,0,38,229,20,235,148,142,7,0,39,101,61,182,162,50,7,0,41,229,76,105,51,82,10,0,44,101,133,111,140,142,8,0,44,101,133,111,235,142,8,0,44,101,133,111,83,143,8,0,44,229,175,13,123,236,9,0,44,229,166,87,196,172,10,0,45,101,146,22,30,171,9,0,47,101,180,173,201,183,10,0,49,229,6,190,71,64,11,0,50,101,156,95,245,28,10,0,50,101,156,95,145,31,10,0,54,229,95,193,136,58,7,0,55,229,74,5,204,36,6,0,57,229,122,22,237,73,7,0,58,229,119,211,249,42,6,0,58,101,85,7,249,141,7,0,59,229,81,128,91,17,9,0,59,229,81,128,177,17,9,0,59,229,81,128,1,18,9,0,60,101,139,207,75,153,6,0,60,229,196,109,57,10,7,0,64,101,6,26,49,70,7,0,67,101,206,76,114,243,8,0,67,101,206,76,37,244,8,0,70,229,238,25,88,210,7,0,72,101,166,124,29,150,7,0,74,229,151,84,90,199,7,0,74,229,151,84,148,199,7,0,74,229,151,84,216,199,7,0,74,229,151,84,29,200,7,0,75,229,175,144,13,32,9,0,75,229,175,144,195,32,9,0,75,229,141,191,51,255,9,0,75,229,141,191,139,255,9,0,75,229,141,191,226,255,9,0,79,229,229,19,20,43,6,0,79,101,2,130,212,243,6,0,79,229,137,150,139,158,8,0,79,229,137,150,224,163,8,0,81,229,236,156,144,188,5,0,81,101,125,206,212,243,6,0,83,101,98,84,222,42,7,0,83,229,142,92,88,96,9,0,83,229,142,92,119,96,9,0,83,229,142,92,159,96,9,0,86,229,56,211,102,143,7,0,87,229,109,20,53,122,6,0,87,229,109,20,160,127,6,0,87,101,82,209,210,110,7,0,87,229,24,90,118,226,8,0,87,229,24,90,72,228,8,0,89,229,91,180,138,115,8,0,89,229,91,180,117,124,8,0,89,229,91,180,105,133,8,0,89,229,2,146,224,146,8,0,89,229,2,146,132,150,8,0,89,101,71,64,253,208,8,0,89,101,71,64,22,211,8,0,90,101,223,25,123,236,9,0,96,101,183,187,57,171,8,0,96,101,183,187,133,172,8,0,96,101,183,187,211,173,8,0,98,101,202,54,241,33,6,0,104,101,21,212,7,220,6,0,104,229,191,195,114,218,10,0,110,101,93,207,125,177,9,0,110,101,93,207,224,177,9,0,110,101,93,207,64,178,9,0,113,101,45,57,186,240,7,0,114,101,182,200,138,115,8,0,114,101,182,200,117,124,8,0,114,101,182,200,105,133,8,0,114,101,238,33,24,64,10,0,117,229,70,82,218,91,11,0,119,101,232,68,101,165,10,0,123,101,147,183,165,11,9,0,123,101,147,183,58,12,9,0,123,101,140,77,214,188,10,0,124,229,222,127,191,233,5,0,124,101,182,147,10,62,6,0,125,229,222,127,42,231,5,0,127,229,59,113,71,236,6,0,128,101,128,76,167,71,7,0,129,101,150,69,153,207,8,0,129,101,150,69,44,208,8,0,129,101,9,231,212,212,9,0,129,101,9,231,235,212,9,0,130,101,211,34,204,213,9,0,134,229,226,155,123,236,9,0,135,229,240,17,49,177,10,0,136,229,40,247,71,236,6,0,137,229,85,140,89,213,8,0,137,229,85,140,108,213,8,0,138,101,39,237,80,32,7,0,139,101,250,251,219,210,7,0,139,229,98,110,90,175,8,0,139,229,98,110,74,176,8,0,140,101,247,6,166,73,10,0,145,101,162,75,179,17,7,0,145,229,27,31,115,92,8,0,147,229,195,65,133,248,8,0,147,229,195,65,161,248,8,0,147,229,195,65,205,248,8,0,148,101,239,212,11,9,7,0,149,229,156,95,109,204,5,0,149,101,4,41,167,71,7,0,149,229,156,95,255,93,7,0,149,101,58,201,193,144,10,0,152,101,164,56,224,146,8,0,152,101,164,56,132,150,8,0,153,229,237,62,28,168,6,0,153,229,192,174,205,151,9,0,153,229,192,174,199,152,9,0,153,229,192,174,220,153,9,0,153,229,50,248,123,236,9,0,153,101,243,42,253,231,10,0,154,101,151,253,20,15,7,0,154,101,151,253,179,17,7,0,155,101,132,42,52,252,5,0,156,101,161,222,230,215,6,0,157,229,158,249,123,236,9,0,157,229,57,59,57,46,10,0,157,229,57,59,113,46,10,0,158,101,78,47,66,223,6,0,160,101,248,171,149,95,9,0,160,101,248,171,177,95,9,0,160,101,206,34,101,220,9,0,160,101,206,34,154,220,9,0,165,101,203,166,165,91,7,0,165,101,203,166,194,91,7,0,167,229,86,108,98,236,7,0,167,229,86,108,134,236,7,0,167,229,86,108,174,236,7,0,169,229,58,227,133,220,6,0,170,101,2,114,218,117,10,0,173,101,151,159,93,131,10,0,174,229,46,135,193,45,7,0,174,229,46,135,242,45,7,0,175,101,166,116,207,90,10,0,176,101,189,174,80,32,7,0,180,101,72,148,125,50,11,0,182,101,163,249,28,68,9,0,182,101,163,249,215,68,9,0,183,229,111,66,138,115,8,0,183,229,111,66,117,124,8,0,183,229,111,66,105,133,8,0,187,101,222,69,247,54,6,0,190,229,24,89,28,68,9,0,190,229,24,89,215,68,9,0,192,101,174,64,107,210,6,0,194,101,182,148,29,51,11,0,196,101,213,232,212,243,6,0,198,229,82,126,33,186,6,0,198,101,135,1,237,73,7,0,198,101,134,175,138,115,8,0,198,101,134,175,117,124,8,0,198,101,134,175,105,133,8,0,202,101,208,109,117,79,7,0,205,101,97,198,234,40,11,0,208,229,216,150,1,65,6,0,208,229,216,150,48,97,6,0,210,229,80,183,237,73,7,0,214,101,50,143,90,204,6,0,214,229,133,252,171,63,7,0,215,229,188,85,82,222,8,0,215,229,188,85,110,222,8,0,216,101,99,150,60,87,6,0,218,229,82,227,29,5,7,0,218,229,233,221,17,184,8,0,223,229,62,24,96,254,8,0,223,229,62,24,157,254,8,0,224,229,99,110,164,192,9,0,224,229,99,110,198,192,9,0,224,229,99,110,242,192,9,0,225,229,107,20,118,214,6,0,225,229,248,252,232,191,8,0,225,229,248,252,162,193,8,0,226,101,10,146,232,124,10,0,229,101,231,247,212,243,6,0,231,229,70,82,113,232,6,0,233,229,168,241,246,231,5,0,233,229,250,239,138,115,8,0,233,229,250,239,117,124,8,0,233,229,250,239,105,133,8,0,233,229,43,50,224,146,8,0,233,229,43,50,132,150,8,0,234,229,215,233,29,204,8,0,234,229,215,233,6,205,8,0,235,229,33,88,113,232,6,0,237,229,155,90,122,123,6,0,237,101,30,103,139,158,8,0,237,101,30,103,224,163,8,0,240,101,167,23,254,254,6,0,240,101,109,249,179,17,7,0,243,101,158,86,64,98,6,0,243,229,128,72,212,243,6,0,246,101,198,183,80,32,7,0,246,229,213,153,224,146,8,0,246,229,213,153,132,150,8,0,247,101,5,109,80,32,7,0,248,229,31,61,219,1,7,0,248,229,31,61,99,3,7,0,251,229,128,186,124,253,6,0,251,229,128,186,117,37,7,0,253,229,219,5,237,73,7,0,0,230,67,189,202,89,6,0,1,102,209,184,163,82,8,0,1,102,209,184,239,82,8,0,1,102,209,184,60,83,8,0,4,102,84,87,53,98,10,0,7,102,209,78,123,236,9,0,8,102,252,49,211,127,9,0,8,102,252,49,240,127,9,0,8,102,252,49,36,128,9,0,9,102,98,222,218,39,6,0,11,102,214,90,71,236,6,0,12,102,185,125,4,246,10,0,14,102,84,230,71,236,6,0,14,102,238,78,169,35,8,0,14,102,144,71,34,182,10,0,15,102,113,107,50,211,6,0,17,230,54,96,184,123,10,0,19,102,211,116,21,58,6,0,21,230,193,174,23,199,6,0,21,230,13,8,69,238,8,0,21,230,13,8,138,238,8,0,21,230,13,8,214,238,8,0,22,230,40,47,52,141,9,0,22,230,40,47,66,141,9,0,22,230,40,47,153,141,9,0,23,230,169,39,130,83,6,0,24,102,2,116,171,63,7,0,26,230,164,139,211,23,6,0,26,230,167,129,224,146,8,0,26,230,167,129,132,150,8,0,29,230,73,31,185,128,6,0,30,102,45,239,77,41,11,0,31,102,60,66,17,71,7,0,31,230,80,83,141,195,8,0,31,230,80,83,112,196,8,0,31,230,80,83,75,197,8,0,32,102,34,129,230,29,8,0,35,230,151,53,80,186,5,0,37,102,166,125,160,234,8,0,37,102,166,125,175,235,8,0,38,102,31,5,136,58,7,0,40,102,67,16,117,79,7,0,44,230,108,73,201,209,10,0,46,230,110,27,151,21,7,0,47,230,25,123,29,5,7,0,51,102,66,162,139,158,8,0,51,102,66,162,224,163,8,0,53,230,120,71,138,115,8,0,53,230,120,71,117,124,8,0,53,230,120,71,105,133,8,0,56,230,247,217,0,94,6,0,56,102,147,51,40,217,8,0,56,102,147,51,209,217,8,0,56,230,247,217,245,28,10,0,56,230,247,217,145,31,10,0,57,230,242,171,114,234,6,0,57,102,59,56,224,251,6,0,63,102,182,119,139,158,8,0,63,102,182,119,224,163,8,0,64,102,129,29,139,158,8,0,64,102,129,29,224,163,8,0,68,102,143,228,138,115,8,0,68,102,143,228,117,124,8,0,68,102,143,228,105,133,8,0,69,230,118,69,164,25,7,0,71,102,72,216,109,160,10,0,72,102,58,163,255,246,5,0,73,230,186,247,252,168,9,0,73,230,186,247,24,169,9,0,73,230,186,247,48,169,9,0,78,230,171,182,117,37,7,0,78,230,18,86,33,65,7,0,80,102,51,220,71,236,6,0,84,230,167,183,199,145,7,0,84,230,167,183,199,145,7,0,86,102,189,216,143,81,8,0,87,102,239,20,35,27,6,0,87,230,46,46,71,236,6,0,88,102,179,193,57,10,7,0,88,102,179,193,184,244,7,0,89,102,116,92,136,58,7,0,89,102,43,24,243,247,10,0,91,230,196,127,162,73,11,0,92,230,180,28,230,71,9,0,92,230,180,28,83,72,9,0,93,230,12,184,153,11,7,0,94,230,100,25,138,115,8,0,94,230,100,25,117,124,8,0,94,230,100,25,105,133,8,0,95,230,1,164,212,243,6,0,97,102,255,20,141,200,8,0,97,102,255,20,166,200,8,0,97,102,255,20,191,200,8,0,97,102,255,20,222,200,8,0,99,102,137,142,20,219,10,0,100,102,192,119,15,134,6,0,101,230,29,211,2,199,9,0,101,230,29,211,169,199,9,0,102,230,58,180,153,11,7,0,102,230,58,180,135,13,7,0,103,102,246,190,176,27,8,0,105,230,255,19,123,236,9,0,109,102,22,60,46,34,10,0,109,102,22,60,66,34,10,0,109,230,94,93,194,35,10,0,109,230,94,93,14,36,10,0,110,102,85,71,153,11,7,0,110,102,85,71,135,13,7,0,110,230,18,142,139,158,8,0,110,230,18,142,224,163,8,0,111,102,60,224,20,15,7,0,111,102,60,224,33,65,7,0,114,230,160,49,224,146,8,0,114,230,160,49,132,150,8,0,121,230,229,158,117,37,7,0,122,102,248,110,51,214,8,0,122,102,248,110,241,214,8,0,122,102,248,110,169,215,8,0,124,102,254,54,212,243,6,0,125,102,230,57,224,146,8,0,125,102,230,57,132,150,8,0,130,102,69,230,124,222,6,0,130,102,154,170,247,55,7,0,132,230,80,76,38,98,7,0,134,102,116,14,68,151,7,0,134,102,247,88,51,214,8,0,134,102,247,88,241,214,8,0,134,102,247,88,169,215,8,0,135,102,139,151,119,225,6,0,135,230,44,158,50,226,6,0,137,102,75,132,230,117,6,0,137,230,183,29,206,87,9,0,137,230,183,29,25,88,9,0,138,230,230,251,224,230,5,0,138,230,230,251,231,69,6,0,140,102,123,6,240,226,6,0,140,102,11,80,136,58,7,0,141,102,183,132,245,28,10,0,141,102,183,132,145,31,10,0,143,230,244,22,210,110,7,0,143,102,6,244,131,187,9,0,143,102,6,244,160,187,9,0,143,102,6,244,184,187,9,0,149,102,69,237,59,17,6,0,152,230,185,26,224,146,8,0,152,230,185,26,132,150,8,0,154,102,238,182,199,65,10,0,155,230,184,33,47,203,5,0,159,102,237,24,101,207,6,0,160,230,9,83,247,55,7,0,161,102,100,95,152,229,6,0,164,230,247,129,38,98,7,0,174,230,189,11,63,165,6,0,176,230,221,156,13,75,10,0,177,102,21,35,128,123,9,0,177,102,21,35,162,123,9,0,177,230,144,247,245,28,10,0,177,230,144,247,145,31,10,0,177,102,219,27,107,194,10,0,180,230,226,235,138,115,8,0,180,230,226,235,117,124,8,0,180,230,226,235,105,133,8,0,181,230,35,231,54,239,10,0,182,230,137,171,32,30,7,0,182,102,202,214,117,37,7,0,183,230,126,216,63,165,6,0,186,102,224,188,179,181,7,0,190,230,156,139,15,8,8,0,192,230,61,131,139,158,8,0,192,230,61,131,224,163,8,0,193,230,58,23,10,213,10,0,195,102,125,118,247,55,7,0,196,230,157,155,67,183,8,0,196,230,157,155,105,183,8,0,197,230,34,202,43,191,5,0,197,230,34,202,138,158,6,0,197,102,184,223,89,20,10,0,197,102,184,223,158,20,10,0,198,102,221,205,23,172,7,0,199,230,58,14,215,156,10,0,204,230,143,131,11,9,7,0,206,230,81,9,253,208,8,0,206,230,81,9,22,211,8,0,210,102,41,135,38,98,7,0,214,102,131,182,225,125,10,0,214,102,131,182,13,126,10,0,216,230,184,21,90,175,8,0,216,230,184,21,74,176,8,0,219,102,9,126,197,253,6,0,221,102,75,137,110,218,6,0,221,102,75,137,56,95,11,0,222,102,6,189,173,1,6,0,222,230,101,187,80,49,7,0,222,230,101,187,171,49,7,0,222,230,243,10,155,44,11,0,223,230,49,221,163,107,9,0,223,230,49,221,201,107,9,0,223,230,49,221,237,107,9,0,223,230,143,71,95,204,10,0,226,102,26,191,4,15,10,0,226,102,26,191,35,15,10,0,227,230,117,130,125,130,7,0,228,230,166,249,125,44,7,0,229,102,158,61,190,124,10,0,231,230,179,139,31,135,7,0,232,230,205,234,250,57,8,0,232,230,157,170,90,87,11,0,236,230,177,21,90,53,7,0,237,230,62,126,140,116,6,0,238,230,177,229,177,72,10,0,239,102,250,88,91,70,7,0,241,230,129,243,223,153,7,0,241,230,93,252,81,159,7,0,241,230,143,224,234,187,8,0,241,230,143,224,25,188,8,0,244,102,196,5,119,203,6,0,244,102,80,161,21,36,7,0,249,230,136,164,77,28,6,0,250,102,237,97,102,38,8,0,2,231,7,105,30,171,9,0,6,231,93,152,171,63,7,0,6,103,199,193,59,77,10,0,7,103,197,206,189,91,8,0,9,103,28,136,141,195,8,0,9,103,28,136,112,196,8,0,9,103,28,136,75,197,8,0,9,103,72,115,13,32,9,0,9,103,72,115,195,32,9,0,11,103,52,193,29,150,7,0,12,103,195,138,123,236,9,0,13,103,126,179,237,73,7,0,14,231,59,159,136,58,7,0,17,103,189,211,237,73,7,0,17,231,154,98,107,23,10,0,17,231,154,98,195,23,10,0,25,103,190,140,167,107,7,0,25,103,190,140,62,124,7,0,25,231,214,144,80,167,9,0,25,231,214,144,37,168,9,0,25,231,38,226,47,232,10,0,27,231,149,164,149,43,7,0,27,103,74,21,0,83,10,0,27,103,74,21,238,98,10,0,27,103,74,21,51,102,10,0,30,103,249,26,38,98,7,0,32,231,158,232,114,234,6,0,33,103,10,207,68,202,6,0,40,231,170,230,224,40,6,0,40,103,115,42,124,222,6,0,41,103,169,83,206,42,6,0,41,103,79,128,110,179,10,0,46,103,131,182,38,98,7,0,48,231,65,186,141,195,8,0,48,231,65,186,112,196,8,0,48,231,65,186,75,197,8,0,49,231,179,222,80,32,7,0,49,231,18,227,75,1,9,0,49,231,18,227,154,2,9,0,49,231,18,227,235,3,9,0,49,231,18,227,65,5,9,0,51,103,11,122,232,200,5,0,52,103,1,126,207,100,6,0,52,103,1,126,251,151,6,0,52,103,1,126,218,166,6,0,52,103,1,126,22,179,6,0,56,231,231,109,206,218,5,0,56,103,152,20,7,220,6,0,59,103,171,252,124,45,8,0,59,103,171,252,124,45,8,0,59,103,171,252,1,46,8,0,59,103,171,252,1,46,8,0,59,103,171,252,123,46,8,0,59,103,171,252,123,46,8,0,59,103,88,10,234,222,10,0,60,231,24,197,46,146,10,0,64,103,37,118,144,3,7,0,66,231,186,158,169,35,8,0,67,103,155,253,151,21,7,0,73,103,30,166,242,178,10,0,74,103,56,62,82,226,5,0,74,103,231,242,11,9,7,0,75,103,129,191,161,82,9,0,75,103,129,191,198,82,9,0,77,103,180,145,38,98,7,0,79,231,233,210,206,146,6,0,79,231,125,81,117,79,7,0,80,103,101,37,160,100,11,0,81,103,249,149,63,25,7,0,82,103,200,131,185,214,7,0,82,103,243,103,234,148,10,0,83,103,81,62,128,70,6,0,83,103,238,219,212,243,6,0,83,103,81,62,152,111,7,0,83,103,96,100,151,153,10,0,84,103,85,170,212,243,6,0,84,103,4,139,128,107,10,0,84,103,217,79,253,110,10,0,84,103,217,79,6,114,10,0,85,103,62,31,152,111,7,0,85,103,34,169,138,115,8,0,85,103,34,169,117,124,8,0,85,103,34,169,105,133,8,0,85,103,62,31,126,191,8,0,85,103,62,31,175,191,8,0,86,103,155,34,82,177,10,0,87,231,242,19,227,229,6,0,88,103,242,127,242,157,6,0,88,231,201,26,35,80,10,0,91,231,1,127,71,236,6,0,92,231,239,51,152,111,7,0,92,231,239,51,206,62,8,0,92,231,239,51,99,63,8,0,92,231,239,51,4,64,8,0,92,231,239,51,73,218,9,0,94,231,76,126,153,11,7,0,94,231,76,126,135,13,7,0,94,231,34,230,123,236,9,0,95,231,78,181,188,56,11,0,97,103,167,255,70,219,8,0,97,103,167,255,107,219,8,0,98,103,243,119,106,149,10,0,99,231,12,230,103,46,7,0,99,231,198,155,209,55,10,0,100,103,183,214,20,15,7,0,100,103,183,214,179,17,7,0,101,231,206,78,210,149,7,0,102,231,73,31,169,135,6,0,106,103,161,101,186,187,5,0,107,103,185,176,123,236,9,0,109,231,187,129,113,47,7,0,112,103,113,3,180,152,10,0,114,231,123,81,35,107,7,0,114,231,123,81,62,124,7,0,114,231,123,81,88,133,7,0,114,231,0,202,255,179,8,0,114,231,0,202,110,180,8,0,116,231,255,65,15,55,6,0,116,231,167,209,193,113,8,0,117,103,194,60,94,128,6,0,117,231,236,1,79,230,8,0,117,231,236,1,114,230,8,0,118,231,224,247,196,84,10,0,119,231,47,228,20,15,7,0,119,231,47,228,179,17,7,0,121,103,183,99,151,21,7,0,123,103,145,200,234,72,7,0,128,103,111,236,36,85,10,0,132,231,220,86,177,7,7,0,133,103,188,230,123,236,9,0,134,231,192,34,133,220,6,0,135,103,4,144,123,236,9,0,136,231,98,51,20,15,7,0,136,231,98,51,179,17,7,0,137,103,237,107,139,158,8,0,137,103,237,107,224,163,8,0,138,103,10,202,78,203,8,0,140,231,10,195,178,233,6,0,140,231,17,224,80,167,9,0,140,231,17,224,37,168,9,0,140,103,238,50,123,236,9,0,140,103,111,92,255,77,10,0,141,103,232,17,245,28,10,0,141,103,232,17,145,31,10,0,142,231,56,207,101,207,6,0,142,231,26,233,141,96,11,0,143,103,191,28,123,246,8,0,143,103,191,28,175,246,8,0,143,231,69,128,30,171,9,0,147,231,127,151,248,53,6,0,147,103,153,198,162,87,6,0,147,231,163,29,124,222,6,0,149,103,157,38,105,60,6,0,149,231,37,119,118,214,6,0,149,103,157,38,71,236,6,0,149,103,209,136,247,55,7,0,149,231,128,185,162,28,9,0,149,231,128,185,244,28,9,0,150,103,67,180,28,68,9,0,150,103,67,180,215,68,9,0,150,103,47,160,63,72,11,0,153,103,24,117,99,66,8,0,153,231,125,237,118,226,8,0,153,231,125,237,72,228,8,0,153,231,19,246,123,236,9,0,156,103,233,175,71,236,6,0,157,231,233,202,255,179,8,0,157,231,233,202,110,180,8,0,158,103,53,171,248,218,5,0,158,231,167,38,81,63,7,0,159,231,90,231,164,23,7,0,159,231,90,231,152,111,7,0,159,231,90,231,151,125,7,0,159,231,56,127,230,172,7,0,161,231,91,103,71,236,6,0,164,103,95,194,166,220,8,0,164,103,95,194,241,220,8,0,168,103,146,163,230,215,6,0,171,231,243,126,166,249,5,0,172,103,178,253,45,198,7,0,173,231,60,128,236,89,6,0,175,103,165,84,77,120,9,0,175,103,165,84,123,120,9,0,177,103,176,124,179,17,7,0,179,231,51,206,123,236,9,0,180,103,195,241,155,76,11,0,180,103,195,241,23,80,11,0,183,103,97,7,30,4,8,0,183,103,50,233,105,177,8,0,183,103,50,233,162,177,8,0,184,231,159,43,47,64,6,0,186,103,134,236,204,36,6,0,186,103,96,47,41,165,6,0,191,231,252,201,130,227,6,0,192,231,11,246,212,243,6,0,197,231,19,97,138,115,8,0,197,231,19,97,117,124,8,0,197,231,19,97,105,133,8,0,200,231,145,18,167,8,7,0,201,231,84,124,213,41,10,0,201,231,84,124,87,42,10,0,203,231,168,153,86,198,7,0,204,103,168,26,216,226,10,0,205,103,188,148,80,32,7,0,205,103,168,190,88,226,10,0,207,231,175,152,33,210,6,0,208,103,223,173,113,47,7,0,210,231,255,212,33,210,6,0,210,103,169,177,3,157,8,0,210,103,169,177,180,157,8,0,212,231,250,126,130,227,6,0,212,103,248,47,136,58,7,0,212,103,161,174,237,73,7,0,212,103,248,47,38,98,7,0,217,103,88,110,166,111,6,0,218,103,96,123,179,17,7,0,218,103,213,78,179,222,8,0,218,103,213,78,152,223,8,0,218,103,96,123,22,68,10,0,220,231,169,147,189,251,7,0,220,231,169,147,236,251,7,0,220,231,169,147,29,252,7,0,220,231,169,147,70,252,7,0,220,231,169,147,114,252,7,0,220,231,169,147,154,252,7,0,220,231,169,147,226,100,8,0,220,231,83,118,141,195,8,0,220,231,83,118,112,196,8,0,220,231,83,118,75,197,8,0,220,103,61,43,144,26,11,0,221,103,192,119,123,236,9,0,222,231,93,213,219,210,7,0,222,231,242,226,119,224,10,0,230,103,113,101,46,39,6,0,231,103,104,112,50,211,6,0,236,103,53,112,214,45,6,0,236,103,53,112,174,107,6,0,236,231,104,228,230,215,6,0,240,231,242,3,169,27,10,0,240,231,242,3,191,27,10,0,241,103,206,229,240,151,7,0,242,231,212,121,89,25,6,0,243,231,255,101,27,32,7,0,245,231,41,134,71,236,6,0,245,103,233,103,212,243,6,0,247,231,106,159,119,234,7,0,252,231,59,193,133,239,10,0,254,231,81,115,177,197,5,0,255,103,105,54,136,58,7,0,255,103,184,248,117,79,7,0,255,103,176,18,139,158,8,0,255,103,176,18,224,163,8,0,255,231,113,204,154,4,11,0,0,232,201,198,253,208,8,0,0,232,201,198,22,211,8,0,0,232,185,6,219,160,9,0,0,232,185,6,245,160,9,0,0,104,28,116,32,236,9,0,0,104,28,116,48,236,9,0,1,104,187,87,167,34,7,0,1,104,147,162,92,150,10,0,3,104,174,55,224,146,8,0,3,104,174,55,132,150,8,0,3,232,113,188,63,69,11,0,5,104,171,182,180,28,7,0,6,104,14,185,94,144,9,0,6,104,14,185,116,144,9,0,6,104,14,185,136,144,9,0,8,232,190,171,33,208,6,0,11,232,46,199,138,115,8,0,11,232,46,199,117,124,8,0,11,232,46,199,105,133,8,0,11,104,47,201,40,217,8,0,11,104,47,201,209,217,8,0,14,104,98,69,51,241,8,0,14,104,98,69,198,241,8,0,14,232,232,215,83,84,10,0,14,232,232,215,189,92,10,0,19,104,126,129,224,96,11,0,20,232,69,82,251,89,11,0,22,104,156,81,91,111,7,0,22,104,39,141,152,111,7,0,22,104,156,81,190,205,7,0,22,104,39,141,84,53,8,0,28,232,78,59,71,236,6,0,28,232,165,117,139,158,8,0,28,232,165,117,224,163,8,0,28,232,17,68,198,70,10,0,29,104,244,153,232,191,8,0,29,104,244,153,162,193,8,0,31,232,41,210,195,48,7,0,31,232,41,210,76,16,9,0,31,232,41,210,146,16,9,0,32,232,83,139,135,73,11,0,33,104,228,232,71,236,6,0,33,104,24,156,97,85,9,0,33,104,24,156,119,85,9,0,33,104,228,232,243,20,11,0,34,104,204,138,141,255,8,0,34,104,204,138,235,255,8,0,36,232,73,110,73,236,5,0,38,104,85,210,178,249,9,0,38,104,85,210,210,249,9,0,38,104,85,210,237,249,9,0,46,232,183,250,71,236,6,0,46,232,29,118,136,58,7,0,46,232,183,250,199,145,7,0,46,232,246,67,70,209,9,0,46,232,246,67,141,209,9,0,46,232,246,67,208,209,9,0,46,232,246,67,13,210,9,0,48,232,13,210,125,44,7,0,49,232,216,103,172,145,6,0,49,232,127,203,168,97,10,0,53,232,198,139,84,21,8,0,53,232,69,37,82,231,9,0,55,104,51,168,215,146,9,0,55,104,51,168,242,146,9,0,55,104,51,168,10,147,9,0,56,232,137,185,108,76,10,0,60,232,96,15,255,233,5,0,60,232,217,150,136,58,7,0,61,232,243,86,250,245,8,0,61,232,243,86,20,246,8,0,62,232,117,138,90,53,7,0,67,104,181,233,69,193,6,0,68,104,138,157,36,86,10,0,70,232,70,236,88,129,7,0,73,104,206,216,233,229,5,0,73,232,195,158,138,115,8,0,73,232,195,158,117,124,8,0,73,232,195,158,105,133,8,0,74,232,72,110,245,28,10,0,74,232,72,110,145,31,10,0,75,104,171,203,71,236,6,0,87,232,60,57,191,154,6,0,88,232,73,31,173,1,6,0,90,104,7,112,196,37,8,0,90,232,187,201,230,76,8,0,91,104,128,237,150,73,6,0,95,104,240,3,245,69,6,0,100,104,162,47,30,231,6,0,103,232,138,20,224,96,11,0,104,232,47,64,117,79,7,0,106,232,175,64,163,124,6,0,107,232,73,31,136,58,7,0,110,232,38,190,217,62,7,0,110,104,187,202,38,98,7,0,110,232,134,3,72,204,9,0,111,104,131,182,235,189,7,0,112,104,157,38,130,227,6,0,113,104,112,167,134,61,9,0,113,104,112,167,159,61,9,0,113,104,112,167,182,61,9,0,113,104,165,13,114,222,10,0,115,104,219,65,239,84,10,0,121,104,67,102,118,42,11,0,121,104,246,102,180,48,11,0,122,104,236,202,240,15,8,0,122,104,236,202,30,16,8,0,122,104,236,202,83,16,8,0,123,232,133,173,154,0,6,0,126,104,220,211,221,38,10,0,126,104,220,211,62,40,10,0,128,232,187,2,249,209,5,0,128,232,20,147,16,59,10,0,129,232,164,201,243,69,7,0,129,232,33,207,191,102,10,0,130,104,242,205,67,194,7,0,130,104,172,248,148,40,11,0,130,104,172,248,170,40,11,0,135,104,193,165,136,58,7,0,135,232,166,117,230,71,9,0,135,232,166,117,83,72,9,0,138,104,0,0,82,231,5,0,139,104,236,154,162,50,7,0,140,232,124,153,101,4,6,0,141,104,144,247,56,235,9,0,141,104,144,247,80,235,9,0,141,104,144,247,104,235,9,0,143,104,69,22,125,89,11,0,144,104,47,241,136,58,7,0,145,232,142,103,218,35,11,0,146,104,151,2,139,158,8,0,146,104,151,2,224,163,8,0,150,232,254,31,71,236,6,0,151,104,169,19,255,179,8,0,151,104,169,19,110,180,8,0,153,104,204,129,32,230,6,0,154,104,244,48,71,236,6,0,155,232,216,1,164,23,7,0,160,232,1,72,55,186,8,0,160,232,1,72,73,186,8,0,161,232,58,149,240,226,6,0,162,104,96,30,20,15,7,0,162,232,43,197,99,42,7,0,162,104,96,30,33,65,7,0,162,232,10,6,152,111,7,0,162,232,10,6,84,53,8,0,165,104,42,254,215,255,6,0,166,104,231,242,29,5,7,0,166,232,52,199,138,115,8,0,166,232,52,199,117,124,8,0,166,232,52,199,105,133,8,0,167,232,4,177,191,16,6,0,167,232,144,37,182,88,6,0,167,232,4,177,121,189,9,0,167,232,4,177,147,189,9,0,168,104,110,163,152,111,7,0,168,104,110,163,129,123,7,0,168,104,110,163,145,123,7,0,168,104,81,0,202,116,9,0,168,104,81,0,253,116,9,0,168,104,87,198,123,236,9,0,171,104,83,154,142,88,9,0,172,104,167,237,119,225,6,0,174,104,44,202,139,158,8,0,174,104,44,202,224,163,8,0,175,104,250,16,224,24,9,0,175,104,250,16,246,24,9,0,177,104,23,182,71,236,6,0,179,232,108,225,156,205,6,0,180,232,98,191,69,69,7,0,180,232,227,216,117,79,7,0,182,104,136,254,231,29,7,0,182,232,61,231,62,82,11,0,183,104,57,172,169,200,9,0,183,104,57,172,204,200,9,0,183,104,57,172,238,200,9,0,184,232,23,71,16,165,6,0,185,104,226,101,162,50,7,0,188,104,140,190,31,136,6,0,189,232,203,210,216,94,6,0,190,104,72,185,214,63,6,0,191,104,97,2,100,71,7,0,194,232,183,182,230,60,9,0,194,232,183,182,1,61,9,0,194,232,79,253,214,69,10,0,197,104,207,103,138,115,8,0,197,104,207,103,117,124,8,0,197,104,207,103,105,133,8,0,197,232,174,44,137,80,11,0,199,232,48,70,29,5,7,0,201,232,252,82,38,98,7,0,201,232,244,180,123,236,9,0,202,104,116,207,184,237,5,0,203,232,71,22,30,231,7,0,204,104,73,59,209,40,7,0,204,232,251,73,224,146,8,0,204,232,251,73,132,150,8,0,207,104,157,38,182,20,6,0,207,104,157,38,53,25,6,0,207,104,157,38,80,69,6,0,207,104,157,38,166,70,6,0,207,104,157,38,55,72,6,0,207,104,157,38,152,111,7,0,207,104,157,38,232,122,7,0,207,104,157,38,249,80,8,0,208,232,244,138,156,138,7,0,209,232,189,149,197,253,6,0,211,104,233,5,25,47,8,0,214,232,113,156,226,13,10,0,214,232,113,156,248,13,10,0,214,104,79,192,213,41,10,0,214,104,79,192,87,42,10,0,215,104,121,69,107,210,6,0,216,104,67,249,123,236,9,0,217,104,231,169,205,151,9,0,217,104,231,169,199,152,9,0,217,104,231,169,220,153,9,0,218,104,57,91,21,36,7,0,218,232,242,251,171,63,7,0,228,104,108,38,117,79,7,0,230,232,73,112,179,17,7,0,230,232,73,112,157,68,11,0,231,104,170,0,159,92,9,0,231,104,170,0,5,93,9,0,232,232,243,175,253,41,11,0,233,104,147,61,149,236,5,0,234,232,67,201,179,17,7,0,236,104,30,116,100,151,9,0,236,104,30,116,126,151,9,0,236,232,171,175,87,135,10,0,236,232,137,121,69,232,10,0,237,232,8,99,228,11,11,0,238,104,141,190,247,85,11,0,242,232,98,139,163,164,10,0,246,104,129,27,135,90,9,0,246,104,129,27,124,91,9,0,251,104,40,198,124,10,9,0,252,104,230,61,68,202,6,0,1,233,203,106,178,84,11,0,1,233,203,106,48,90,11,0,3,233,58,215,243,230,7,0,7,233,36,92,59,46,6,0,8,233,236,69,216,233,10,0,10,105,198,168,240,31,6,0,11,233,115,247,253,208,8,0,11,233,115,247,22,211,8,0,18,105,248,126,248,91,8,0,19,105,101,22,138,115,8,0,19,105,101,22,117,124,8,0,19,105,101,22,105,133,8,0,19,105,76,118,30,171,9,0,20,233,123,197,80,32,7,0,21,233,78,94,171,63,7,0,21,233,245,186,75,142,9,0,21,233,245,186,201,142,9,0,21,233,245,186,84,143,9,0,22,105,216,142,50,228,7,0,22,105,13,55,254,233,9,0,22,105,13,55,23,234,9,0,22,105,13,55,47,234,9,0,23,105,137,110,237,73,7,0,24,105,52,117,152,111,7,0,24,105,52,117,173,169,8,0,25,233,185,148,153,11,7,0,25,233,185,148,135,13,7,0,25,105,226,85,36,122,7,0,26,105,12,5,205,176,9,0,26,105,12,5,248,176,9,0,26,105,12,5,34,177,9,0,27,105,123,46,29,150,7,0,29,105,125,27,0,76,10,0,31,105,217,181,130,108,7,0,32,105,184,237,68,100,10,0,32,105,184,237,154,105,10,0,33,105,18,98,117,79,7,0,33,105,201,54,118,109,10,0,35,105,183,27,55,17,11,0,36,233,233,5,138,115,8,0,36,233,233,5,117,124,8,0,36,233,233,5,105,133,8,0,39,105,74,111,152,111,7,0,39,105,74,111,118,127,7,0,41,233,191,187,138,115,8,0,41,233,191,187,117,124,8,0,41,233,191,187,105,133,8,0,42,105,97,238,220,75,10,0,48,233,193,184,133,220,6,0,48,105,48,2,138,115,8,0,48,105,48,2,117,124,8,0,48,105,48,2,105,133,8,0,49,233,152,205,227,223,6,0,50,105,246,183,200,6,9,0,50,105,246,183,117,7,9,0,52,105,149,55,116,232,7,0,52,105,149,121,171,184,8,0,53,233,122,231,178,233,6,0,53,105,247,195,224,146,8,0,53,105,247,195,132,150,8,0,56,105,226,168,119,199,6,0,58,105,128,23,29,5,7,0,58,233,146,43,59,95,10,0,61,105,241,150,39,65,9,0,61,105,241,150,161,65,9,0,61,105,241,150,21,66,9,0,61,105,241,150,188,66,9,0,61,105,241,150,85,67,9,0,62,233,186,76,71,236,6,0,64,233,136,220,152,111,7,0,64,233,136,220,173,169,8,0,65,233,68,171,232,191,8,0,65,233,68,171,162,193,8,0,67,233,166,22,232,191,8,0,67,233,166,22,162,193,8,0,71,105,70,124,138,115,8,0,71,105,70,124,117,124,8,0,71,105,70,124,105,133,8,0,72,105,68,83,222,121,9,0,72,105,68,83,245,121,9,0,73,105,143,152,69,238,8,0,73,105,143,152,138,238,8,0,73,105,143,152,214,238,8,0,73,233,37,195,71,203,9,0,73,233,37,195,96,203,9,0,74,105,41,169,248,87,11,0,78,105,130,174,95,204,10,0,80,105,97,128,220,171,6,0,80,233,127,54,29,5,7,0,82,233,245,4,38,98,7,0,83,105,104,72,224,35,6,0,83,233,50,127,75,65,6,0,85,105,202,151,252,42,7,0,85,233,38,209,131,24,11,0,86,233,123,250,48,225,6,0,87,105,111,139,255,232,10,0,89,233,86,175,117,37,7,0,91,105,120,179,226,101,9,0,91,105,120,179,255,101,9,0,93,105,81,242,100,228,6,0,94,233,111,140,90,53,7,0,94,233,110,85,63,12,8,0,94,233,110,85,193,87,10,0,97,105,233,20,52,82,8,0,97,105,233,20,78,11,10,0,97,105,233,20,112,11,10,0,98,105,159,34,95,27,6,0,98,105,194,98,22,139,6,0,98,233,238,164,212,243,6,0,99,105,156,128,217,62,7,0,101,233,157,133,148,186,8,0,101,233,157,133,221,186,8,0,102,105,159,42,201,3,7,0,102,233,20,7,26,110,10,0,103,233,107,15,213,41,10,0,103,233,107,15,87,42,10,0,105,233,18,246,72,224,5,0,106,105,218,215,162,50,7,0,107,105,245,235,69,69,7,0,107,105,89,94,152,111,7,0,107,105,89,94,206,62,8,0,107,105,89,94,99,63,8,0,107,105,89,94,4,64,8,0,107,105,89,94,73,218,9,0,111,233,162,12,38,98,7,0,116,233,131,91,224,0,9,0,116,233,131,91,1,1,9,0,118,233,180,190,56,137,6,0,118,233,203,99,224,146,8,0,118,233,203,99,132,150,8,0,119,233,244,124,11,86,6,0,119,105,203,67,112,62,8,0,121,105,247,88,76,199,6,0,124,233,116,135,196,47,6,0,124,233,112,254,237,73,7,0,124,105,123,140,205,151,9,0,124,105,123,140,199,152,9,0,124,105,123,140,220,153,9,0,129,105,97,204,229,0,7,0,132,233,229,86,109,231,6,0,134,233,242,232,133,200,6,0,134,105,123,21,212,243,6,0,137,105,255,170,235,189,7,0,141,233,108,222,117,79,7,0,142,105,231,215,208,13,11,0,145,105,194,117,142,23,6,0,149,105,163,226,46,43,7,0,151,105,147,153,113,24,7,0,152,105,243,97,62,4,7,0,152,105,243,97,117,37,7,0,153,105,188,218,212,243,6,0,155,233,195,249,217,62,7,0,156,105,0,188,38,98,7,0,156,105,139,205,38,98,7,0,157,105,79,4,245,28,10,0,157,105,79,4,145,31,10,0,161,233,109,231,5,70,10,0,162,233,164,191,38,253,8,0,162,233,164,191,173,253,8,0,163,105,166,252,235,189,7,0,164,233,124,96,169,35,8,0,165,105,6,101,65,172,7,0,166,105,169,11,20,15,7,0,166,105,169,11,179,17,7,0,167,233,114,80,212,243,6,0,171,105,241,144,227,108,7,0,171,105,241,144,109,77,9,0,171,105,241,144,143,77,9,0,171,233,46,215,100,17,11,0,171,233,46,215,141,17,11,0,174,105,164,80,217,62,7,0,174,233,109,231,226,154,9,0,174,233,109,231,114,155,9,0,176,105,175,214,117,79,7,0,176,105,93,119,105,116,9,0,176,105,93,119,127,116,9,0,177,105,144,37,57,10,7,0,177,233,247,75,117,37,7,0,178,233,237,234,237,73,7,0,178,233,237,234,109,172,9,0,178,233,237,234,178,173,9,0,178,233,237,234,250,174,9,0,179,233,205,136,139,158,8,0,179,233,205,136,224,163,8,0,188,105,199,91,224,146,8,0,188,105,199,91,132,150,8,0,188,105,215,230,104,244,9,0,188,105,215,230,251,244,9,0,188,105,215,230,146,245,9,0,189,105,79,209,156,1,7,0,190,105,43,182,226,154,9,0,190,105,43,182,114,155,9,0,192,233,30,144,123,236,9,0,193,105,246,153,183,20,10,0,193,105,246,153,230,20,10,0,196,233,218,104,247,55,7,0,196,233,105,76,225,199,10,0,197,105,57,91,167,107,7,0,198,105,194,146,155,67,7,0,200,105,47,68,212,77,9,0,200,105,47,68,34,78,9,0,201,105,177,38,213,147,10,0,206,105,144,139,81,239,8,0,206,105,144,139,40,240,8,0,207,105,205,94,197,229,10,0,208,233,36,101,237,73,7,0,209,105,153,208,29,208,10,0,211,233,42,101,149,112,8,0,212,233,172,231,200,93,10,0,213,233,6,152,81,239,8,0,213,233,6,152,40,240,8,0,216,233,180,148,46,43,7,0,218,105,106,253,245,14,6,0,218,233,231,57,247,55,7,0,218,233,3,24,138,115,8,0,218,233,3,24,117,124,8,0,218,233,3,24,105,133,8,0,219,233,177,100,215,255,6,0,219,105,226,101,20,15,7,0,219,105,226,101,179,17,7,0,219,105,239,196,179,17,7,0,219,105,239,196,232,111,10,0,221,105,133,13,38,98,7,0,221,105,107,95,179,222,8,0,221,105,107,95,152,223,8,0,222,105,42,62,78,47,11,0,223,233,193,99,124,10,9,0,224,233,162,133,130,227,6,0,225,233,106,210,204,93,11,0,226,233,2,148,152,111,7,0,226,233,2,148,138,119,7,0,228,105,218,153,119,225,6,0,232,105,200,162,219,1,7,0,234,105,206,235,212,243,6,0,234,233,49,51,48,41,11,0,235,233,246,251,123,236,9,0,239,233,37,209,125,177,9,0,239,233,37,209,224,177,9,0,239,233,37,209,64,178,9,0,242,233,93,205,34,32,11,0,243,233,162,241,71,236,6,0,243,105,246,76,80,32,7,0,244,233,109,127,152,111,7,0,244,233,109,127,84,53,8,0,245,233,179,18,172,213,6,0,245,233,57,122,113,232,6,0,245,233,179,18,226,43,9,0,245,233,179,18,66,44,9,0,245,233,179,18,167,44,9,0,245,233,179,18,5,45,9,0,245,233,179,18,108,45,9,0,249,233,228,108,13,205,6,0,250,105,139,155,203,226,6,0,251,233,57,193,70,209,9,0,251,233,57,193,141,209,9,0,251,233,57,193,208,209,9,0,251,233,57,193,13,210,9,0,251,233,57,193,68,238,10,0,251,233,57,193,177,248,10,0,254,233,43,161,237,73,7,0,254,105,238,199,38,98,7,0,255,233,239,248,212,243,6,0,2,106,226,238,138,115,8,0,2,106,226,238,117,124,8,0,2,106,226,238,105,133,8,0,7,106,45,55,161,152,10,0,9,234,227,159,198,96,6,0,9,234,227,159,217,96,6,0,9,234,227,159,245,96,6,0,10,234,9,67,171,63,7,0,12,106,73,31,62,4,7,0,12,234,90,129,255,179,8,0,12,234,90,129,110,180,8,0,13,234,59,19,79,96,6,0,13,106,104,196,241,172,6,0,13,234,59,19,118,214,6,0,13,106,104,196,129,40,7,0,15,234,194,188,188,52,9,0,15,234,43,74,128,158,10,0,15,234,43,74,3,167,10,0,22,106,16,108,91,17,9,0,22,106,16,108,177,17,9,0,22,106,16,108,1,18,9,0,24,106,88,127,118,214,6,0,25,106,157,126,72,204,9,0,26,106,56,248,88,129,7,0,29,106,102,72,153,11,7,0,31,234,253,30,255,195,5,0,32,106,242,216,223,30,7,0,33,106,54,91,243,134,7,0,35,234,187,88,94,44,6,0,35,106,245,202,90,53,7,0,35,106,153,134,80,167,9,0,35,106,153,134,37,168,9,0,36,234,55,220,117,79,7,0,39,106,55,38,180,28,7,0,39,106,93,33,7,220,10,0,42,106,219,53,38,98,7,0,42,234,52,95,38,98,7,0,43,106,1,127,71,236,6,0,43,106,1,127,212,243,6,0,44,106,118,32,169,243,10,0,45,106,193,165,97,88,8,0,49,106,17,35,161,57,6,0,50,106,78,55,208,237,5,0,50,106,161,55,0,223,6,0,51,106,13,171,180,224,5,0,53,234,12,93,230,215,6,0,53,106,216,10,71,236,6,0,53,234,209,9,53,67,11,0,55,234,98,35,171,206,6,0,55,234,98,35,75,53,11,0,58,106,54,167,165,253,6,0,58,234,147,224,215,16,10,0,58,234,147,224,135,17,10,0,62,106,110,40,9,141,10,0,63,106,195,123,60,125,6,0,63,234,28,176,38,98,7,0,64,106,181,148,33,131,6,0,69,234,188,186,61,250,10,0,70,106,53,89,101,41,6,0,72,234,170,37,196,110,6,0,74,106,208,50,117,79,7,0,75,234,9,145,40,239,5,0,76,234,72,246,123,236,9,0,79,234,217,95,159,218,6,0,82,234,119,137,138,115,8,0,82,234,119,137,117,124,8,0,82,234,119,137,105,133,8,0,84,234,176,42,135,90,9,0,84,234,176,42,124,91,9,0,88,106,186,148,182,254,5,0,88,234,59,78,237,73,7,0,92,106,186,148,117,37,7,0,92,106,4,55,209,161,7,0,92,234,212,3,135,90,9,0,92,234,212,3,124,91,9,0,92,106,123,143,241,73,11,0,93,234,187,52,194,101,11,0,94,234,183,98,33,171,6,0,94,234,76,104,118,0,7,0,95,106,133,228,109,172,9,0,95,106,133,228,178,173,9,0,95,106,133,228,250,174,9,0,95,234,143,246,123,236,9,0,101,106,205,132,227,11,8,0,106,234,226,51,229,191,10,0,107,234,110,39,152,111,7,0,108,234,65,117,125,44,7,0,109,234,231,134,127,255,5,0,109,234,98,121,228,115,6,0,109,106,162,220,129,25,7,0,110,106,210,123,78,47,11,0,111,106,81,208,107,78,10,0,111,234,30,10,56,166,10,0,111,234,30,10,206,168,10,0,115,106,57,127,238,74,6,0,117,234,112,231,165,9,9,0,117,234,112,231,221,9,9,0,117,234,112,231,22,10,9,0,118,106,60,181,227,218,6,0,118,106,60,181,101,219,6,0,120,234,164,18,105,127,6,0,120,106,16,84,224,146,8,0,120,106,16,84,132,150,8,0,122,234,92,165,219,1,7,0,123,106,160,7,117,79,7,0,124,234,134,96,56,106,8,0,126,106,128,183,228,219,7,0,126,234,53,126,14,135,9,0,126,234,53,126,38,135,9,0,127,234,16,164,107,98,10,0,128,106,223,100,91,189,10,0,129,106,198,36,121,127,6,0,130,234,205,80,117,79,7,0,131,106,195,182,20,15,7,0,135,234,230,56,99,66,8,0,135,106,45,223,118,226,8,0,135,106,45,223,72,228,8,0,138,106,19,81,71,236,6,0,140,106,194,168,20,15,7,0,142,106,111,182,237,73,7,0,145,234,155,54,99,72,11,0,146,106,46,40,65,192,7,0,146,106,46,40,108,192,7,0,152,106,211,189,171,49,7,0,152,234,55,105,39,65,9,0,152,234,55,105,161,65,9,0,152,234,55,105,21,66,9,0,152,234,55,105,188,66,9,0,152,234,55,105,85,67,9,0,158,234,245,55,29,5,7,0,160,234,172,105,79,88,10,0,161,234,144,199,88,129,7,0,165,234,66,140,214,77,6,0,169,234,172,105,19,56,6,0,170,234,237,234,160,91,11,0,181,234,25,92,123,236,9,0,182,106,195,130,71,236,6,0,182,234,178,132,232,191,8,0,182,234,178,132,162,193,8,0,184,234,227,28,121,217,6,0,184,106,78,18,224,146,8,0,184,106,78,18,132,150,8,0,184,234,101,27,148,189,8,0,184,234,101,27,177,189,8,0,187,234,41,95,64,178,10,0,188,234,116,27,86,15,9,0,188,234,116,27,116,15,9,0,192,106,197,247,63,23,11,0,196,234,237,234,195,84,11,0,198,234,112,6,141,195,8,0,198,234,112,6,112,196,8,0,198,234,112,6,75,197,8,0,198,106,159,11,245,28,10,0,198,106,159,11,145,31,10,0,202,234,3,142,137,131,7,0,203,106,73,31,191,117,6,0,203,234,200,55,33,65,7,0,206,234,234,209,38,98,7,0,207,106,117,225,91,222,7,0,207,106,117,225,254,222,7,0,209,106,124,96,133,220,6,0,212,106,231,102,212,181,6,0,213,106,91,139,119,157,10,0,214,234,114,208,197,43,7,0,214,234,114,208,30,44,7,0,215,106,244,207,212,243,6,0,215,106,32,237,111,221,10,0,216,106,58,62,182,56,10,0,217,234,238,54,100,71,9,0,218,106,174,13,35,247,7,0,218,234,103,27,123,236,9,0,219,106,106,61,54,141,6,0,220,106,239,212,51,214,8,0,220,106,239,212,241,214,8,0,220,106,239,212,169,215,8,0,221,106,145,225,188,231,6,0,221,234,213,151,57,171,8,0,221,234,213,151,133,172,8,0,221,234,213,151,211,173,8,0,228,234,83,173,213,41,10,0,228,234,83,173,87,42,10,0,230,106,1,55,161,12,11,0,231,106,169,99,71,236,6,0,232,106,59,119,171,69,6,0,232,106,59,119,215,129,6,0,233,234,95,6,146,92,10,0,234,106,7,219,180,28,7,0,234,106,123,134,39,65,9,0,234,106,123,134,161,65,9,0,234,106,123,134,21,66,9,0,234,106,123,134,188,66,9,0,234,106,123,134,85,67,9,0,238,234,221,39,249,28,8,0,239,234,107,189,132,215,6,0,241,234,98,179,71,236,6,0,241,106,11,148,117,37,7,0,241,234,98,179,16,52,11,0,242,234,116,146,211,28,6,0,246,106,104,72,136,71,6,0,247,106,64,183,138,115,8,0,247,106,64,183,117,124,8,0,247,106,64,183,105,133,8,0,251,234,224,236,251,217,6,0,253,106,33,118,57,224,7,0,255,234,154,145,149,108,6,0,0,107,196,241,219,1,7,0,0,235,22,132,127,95,8,0,0,235,22,132,53,250,8,0,0,235,22,132,83,250,8,0,1,107,152,96,38,98,7,0,1,107,188,166,224,155,7,0,1,107,188,166,50,156,7,0,4,107,59,76,27,103,6,0,6,107,179,13,27,65,10,0,11,235,37,68,81,239,8,0,11,235,37,68,40,240,8,0,16,235,16,93,117,154,10,0,19,235,11,136,176,139,6,0,23,235,241,250,117,212,6,0,23,235,241,250,95,172,10,0,23,235,241,250,121,172,10,0,25,107,252,32,114,209,6,0,29,107,72,245,48,202,5,0,29,107,72,245,153,11,7,0,29,107,72,245,135,13,7,0,30,235,162,74,247,55,7,0,31,107,81,213,49,12,11,0,32,107,231,242,13,32,9,0,32,107,231,242,13,32,9,0,32,107,231,242,195,32,9,0,32,107,231,242,195,32,9,0,35,235,237,234,109,172,9,0,35,235,237,234,178,173,9,0,35,235,237,234,250,174,9,0,36,235,190,202,20,15,7,0,36,235,190,202,33,65,7,0,40,107,13,29,78,203,8,0,42,235,239,75,117,79,7,0,42,107,216,23,124,45,8,0,42,107,216,23,1,46,8,0,42,107,216,23,123,46,8,0,45,235,25,46,227,218,6,0,45,107,231,242,88,94,10,0,45,235,25,46,196,196,10,0,49,107,10,254,247,55,7,0,51,235,72,58,237,73,7,0,52,235,90,184,92,35,6,0,53,107,48,14,159,186,5,0,53,107,24,34,212,243,6,0,53,235,65,43,29,204,8,0,53,235,65,43,6,205,8,0,54,107,240,33,57,171,8,0,54,107,240,33,133,172,8,0,54,107,240,33,211,173,8,0,55,107,252,100,102,211,10,0,56,235,237,234,109,172,9,0,56,235,237,234,178,173,9,0,56,235,237,234,250,174,9,0,57,107,26,48,12,93,8,0,57,235,95,42,149,229,10,0,58,235,226,227,1,189,10,0,61,235,133,42,218,113,9,0,61,235,133,42,120,114,9,0,62,107,119,172,125,44,7,0,63,107,6,177,232,127,6,0,66,107,121,151,136,58,7,0,66,107,63,139,141,195,8,0,66,107,63,139,112,196,8,0,66,107,63,139,75,197,8,0,67,107,237,44,121,217,6,0,67,235,191,57,179,17,7,0,68,107,154,187,226,206,6,0,68,107,89,209,255,179,8,0,68,107,89,209,110,180,8,0,69,107,251,208,237,73,7,0,71,107,167,126,7,235,7,0,71,107,167,126,49,235,7,0,71,107,167,126,92,235,7,0,72,107,69,171,118,0,7,0,73,107,221,127,245,28,10,0,73,107,221,127,145,31,10,0,74,235,95,227,154,4,7,0,80,107,23,80,173,225,5,0,80,107,23,80,195,225,5,0,81,107,154,44,15,160,6,0,81,107,154,44,36,160,6,0,82,107,65,180,237,73,7,0,83,235,49,250,123,236,9,0,86,235,252,151,70,186,6,0,86,107,68,180,200,6,9,0,86,107,68,180,117,7,9,0,88,235,94,249,183,227,5,0,89,107,183,20,135,178,6,0,91,235,159,6,234,27,6,0,93,235,14,55,151,21,7,0,93,235,14,55,237,95,7,0,93,235,14,55,20,96,7,0,93,235,14,55,214,96,7,0,94,107,124,81,196,22,11,0,95,235,137,172,68,202,6,0,95,235,137,172,78,67,10,0,101,235,250,89,38,98,7,0,105,107,218,87,234,104,11,0,108,235,32,136,87,135,10,0,111,107,142,211,38,98,7,0,111,235,80,190,43,248,10,0,114,235,237,234,78,27,10,0,114,235,237,234,99,27,10,0,117,235,191,85,99,42,7,0,117,107,186,251,214,49,11,0,122,107,30,8,179,223,9,0,122,107,30,8,205,223,9,0,124,107,74,211,164,23,7,0,125,107,24,28,72,204,9,0,127,107,237,147,152,111,7,0,127,107,237,147,60,44,8,0,127,107,237,147,60,44,8,0,127,107,237,147,175,44,8,0,127,107,237,147,175,44,8,0,127,107,237,147,24,45,8,0,127,107,237,147,24,45,8,0,127,107,237,147,178,229,9,0,127,107,237,147,254,229,9,0,127,107,237,147,17,230,9,0,127,107,237,147,35,230,9,0,133,107,57,250,224,146,8,0,133,107,57,250,132,150,8,0,138,235,26,168,228,212,6,0,138,235,66,22,153,11,7,0,138,235,73,226,232,191,8,0,138,235,73,226,162,193,8,0,139,235,198,31,227,108,7,0,139,235,198,31,56,208,9,0,139,235,198,31,91,208,9,0,141,235,164,18,219,210,7,0,143,235,36,163,155,67,7,0,145,235,88,126,72,204,9,0,145,107,218,236,196,157,10,0,148,235,217,207,114,162,7,0,150,107,243,92,79,157,6,0,150,235,150,141,91,154,8,0,150,235,150,141,147,154,8,0,150,235,147,190,102,171,10,0,151,235,7,39,192,73,6,0,151,107,77,173,18,212,9,0,151,107,77,173,40,212,9,0,151,107,77,173,61,212,9,0,152,235,229,101,35,224,10,0,154,107,19,124,53,66,7,0,154,107,44,44,96,254,8,0,154,107,44,44,157,254,8,0,155,235,193,203,64,168,7,0,155,107,218,88,123,236,9,0,156,107,115,27,247,55,7,0,161,107,95,64,32,30,7,0,161,107,88,223,103,46,7,0,163,107,3,120,152,56,6,0,165,107,97,128,33,78,6,0,167,107,79,203,33,65,7,0,168,235,219,11,120,247,10,0,171,107,232,30,237,73,7,0,172,107,195,78,109,231,6,0,173,107,183,126,124,148,9,0,173,107,183,126,157,148,9,0,176,235,4,141,90,225,7,0,176,235,4,141,150,225,7,0,176,235,4,141,212,225,7,0,178,107,129,64,215,16,10,0,178,107,129,64,135,17,10,0,179,235,56,205,208,160,10,0,181,235,62,188,138,115,8,0,181,235,62,188,117,124,8,0,181,235,62,188,105,133,8,0,183,235,250,188,237,73,7,0,185,107,157,38,152,229,6,0,185,235,87,211,166,220,8,0,185,235,87,211,241,220,8,0,187,107,43,254,62,39,8,0,187,107,43,254,115,39,8,0,187,107,43,254,154,39,8,0,187,235,95,65,247,80,10,0,188,107,238,90,20,15,7,0,188,107,238,90,33,65,7,0,189,235,249,185,95,0,10,0,189,235,249,185,200,0,10,0,189,235,237,234,83,84,11,0,192,235,130,146,96,79,11,0,193,235,211,247,123,236,9,0,195,235,30,194,113,47,7,0,196,235,160,44,153,248,10,0,198,107,19,49,30,171,9,0,201,235,98,139,204,213,9,0,201,235,178,172,242,195,10,0,203,235,201,87,38,98,7,0,205,107,196,254,69,20,11,0,206,235,21,91,117,79,7,0,207,235,167,56,80,32,7,0,210,107,24,144,122,229,6,0,211,235,248,207,157,62,6,0,211,235,248,207,235,174,6,0,211,235,196,144,117,79,7,0,213,107,101,209,179,181,7,0,214,235,51,51,57,171,8,0,214,235,51,51,133,172,8,0,214,235,51,51,211,173,8,0,215,235,237,234,12,234,6,0,215,235,87,189,80,32,7,0,218,235,119,231,12,140,7,0,219,235,225,7,71,236,6,0,221,235,26,209,247,55,7,0,222,107,78,82,212,243,6,0,225,235,70,211,90,53,7,0,226,107,249,184,224,146,8,0,226,107,249,184,132,150,8,0,227,107,254,214,117,37,7,0,230,107,16,43,20,15,7,0,230,107,16,43,179,17,7,0,231,107,39,187,91,147,7,0,232,235,158,52,14,47,11,0,232,235,158,52,47,47,11,0,233,107,45,177,177,28,8,0,234,107,120,218,173,208,10,0,234,107,120,218,191,208,10,0,235,235,162,131,204,36,6,0,235,107,12,104,212,243,6,0,235,235,19,209,212,243,6,0,239,235,215,197,66,230,6,0,241,235,158,146,148,216,8,0,241,235,158,146,189,216,8,0,241,235,221,123,15,192,9,0,241,235,221,123,37,192,9,0,245,235,157,159,247,55,7,0,246,235,0,97,117,79,7,0,251,107,37,123,105,194,7,0,254,235,157,176,71,236,6,0,254,235,131,164,38,98,7,0,254,235,111,26,139,158,8,0,254,235,111,26,224,163,8,0,1,236,66,87,136,58,7,0,1,108,34,112,238,221,10,0,4,236,4,1,150,232,5,0,7,108,123,237,218,134,10,0,9,108,204,226,136,58,7,0,9,108,28,116,210,142,10,0,9,108,28,116,236,150,10,0,10,236,13,160,224,96,11,0,11,108,187,1,51,241,8,0,11,108,187,1,198,241,8,0,12,108,56,252,112,175,6,0,12,236,221,194,245,28,10,0,12,236,221,194,145,31,10,0,14,108,64,82,237,73,7,0,14,236,30,21,139,158,8,0,14,236,30,21,224,163,8,0,14,108,69,188,245,28,10,0,14,108,69,188,145,31,10,0,15,236,98,108,117,79,7,0,15,108,42,5,148,22,10,0,15,108,42,5,164,22,10,0,15,108,42,5,193,22,10,0,16,236,125,179,138,115,8,0,16,236,125,179,117,124,8,0,16,236,125,179,105,133,8,0,17,108,34,119,175,26,7,0,18,108,236,205,38,103,8,0,19,236,59,60,29,204,8,0,19,236,59,60,6,205,8,0,20,108,127,101,20,15,7,0,20,108,127,101,179,17,7,0,22,108,46,180,175,40,7,0,26,236,96,174,117,37,7,0,31,236,97,235,250,57,8,0,32,236,203,79,205,151,9,0,32,236,203,79,199,152,9,0,32,236,203,79,220,153,9,0,37,236,90,210,167,244,10,0,38,236,195,125,139,158,8,0,38,236,195,125,224,163,8,0,39,108,12,171,38,98,7,0,39,236,134,92,199,145,7,0,39,108,216,213,139,158,8,0,39,108,216,213,224,163,8,0,40,236,30,177,126,79,6,0,42,108,10,158,138,115,8,0,42,108,10,158,117,124,8,0,42,108,10,158,105,133,8,0,43,236,67,66,179,17,7,0,44,236,3,63,138,208,9,0,44,236,3,63,158,208,9,0,49,108,97,211,71,236,6,0,49,108,87,229,138,115,10,0,52,108,175,161,253,208,8,0,52,108,175,161,22,211,8,0,55,236,8,192,119,131,7,0,55,108,240,89,185,186,10,0,57,108,157,38,92,222,5,0,65,236,125,193,98,84,11,0,67,236,96,100,253,208,8,0,67,108,255,163,253,208,8,0,67,236,96,100,22,211,8,0,67,108,255,163,22,211,8,0,68,236,2,103,138,115,8,0,68,236,2,103,117,124,8,0,68,236,2,103,105,133,8,0,71,236,12,208,232,191,8,0,71,236,12,208,162,193,8,0,71,236,168,10,226,221,9,0,71,236,168,10,251,221,9,0,71,236,168,10,19,222,9,0,78,236,42,255,123,236,9,0,82,236,107,89,219,55,8,0,82,236,107,89,12,56,8,0,82,236,107,89,73,56,8,0,82,236,107,89,121,56,8,0,82,236,107,89,187,56,8,0,85,236,56,87,194,40,11,0,86,236,220,13,57,10,7,0,86,236,131,141,221,38,10,0,86,236,131,141,62,40,10,0,91,236,169,49,28,68,9,0,91,236,169,49,215,68,9,0,92,108,22,70,187,54,8,0,92,108,72,70,4,130,10,0,95,236,218,172,252,131,9,0,95,236,218,172,19,132,9,0,96,108,248,249,237,73,7,0,97,108,98,97,152,111,7,0,97,108,98,97,62,124,7,0,98,108,127,71,82,81,10,0,98,236,179,137,242,186,10,0,101,236,16,246,239,79,10,0,102,108,4,222,167,107,7,0,107,108,58,99,1,191,10,0,108,236,155,24,152,111,7,0,108,236,155,24,60,44,8,0,108,236,155,24,175,44,8,0,108,236,155,24,24,45,8,0,108,236,155,24,178,229,9,0,110,108,77,39,183,11,8,0,113,108,236,243,138,115,8,0,113,108,236,243,117,124,8,0,113,108,236,243,105,133,8,0,114,236,246,6,240,138,7,0,114,108,106,212,177,141,9,0,114,108,106,212,205,141,9,0,114,108,106,212,245,141,9,0,114,108,106,212,34,142,9,0,114,108,131,182,196,122,10,0,115,236,57,207,123,236,9,0,116,236,255,85,117,79,7,0,122,108,157,119,237,73,7,0,124,236,183,250,100,134,6,0,124,236,155,48,128,63,10,0,125,236,200,85,212,243,6,0,125,236,99,235,127,63,9,0,125,236,99,235,181,63,9,0,125,236,99,235,65,64,9,0,128,108,105,27,254,138,9,0,128,108,105,27,42,139,9,0,128,236,56,108,123,236,9,0,129,236,173,75,169,35,8,0,131,108,15,52,34,32,11,0,132,108,189,44,84,21,8,0,133,236,57,84,227,54,6,0,134,236,141,65,40,244,7,0,137,236,163,160,80,20,6,0,137,236,163,160,159,21,6,0,140,108,46,210,14,157,6,0,140,108,46,210,43,157,6,0,140,108,80,234,132,215,6,0,140,108,98,196,38,98,7,0,141,108,80,215,219,210,7,0,142,236,123,140,125,44,7,0,142,236,27,97,38,98,7,0,143,236,113,239,113,47,7,0,143,108,171,216,44,193,7,0,143,108,171,216,114,193,7,0,143,108,171,216,180,193,7,0,144,236,173,66,47,1,7,0,144,108,121,236,177,133,7,0,144,108,121,236,38,134,7,0,144,108,121,236,239,135,7,0,145,108,44,116,139,158,8,0,145,108,44,116,224,163,8,0,147,108,130,5,204,213,9,0,149,108,207,154,245,41,7,0,149,236,224,135,212,77,9,0,149,236,224,135,34,78,9,0,150,236,145,61,33,210,6,0,151,108,121,27,138,115,8,0,151,108,121,27,117,124,8,0,151,108,121,27,105,133,8,0,151,108,177,249,123,236,9,0,153,108,209,156,201,230,6,0,155,236,171,253,209,141,7,0,155,108,128,186,64,193,9,0,156,236,150,210,197,253,6,0,158,108,116,85,245,28,10,0,158,108,116,85,145,31,10,0,159,108,23,228,57,10,7,0,159,108,23,228,209,40,7,0,163,108,236,201,119,225,6,0,163,108,236,201,71,236,6,0,164,236,47,147,12,234,6,0,164,236,247,149,212,243,6,0,166,108,108,184,143,137,6,0,166,236,118,68,38,98,7,0,167,108,186,187,133,210,7,0,167,108,186,187,178,210,7,0,167,108,122,39,205,151,9,0,167,108,122,39,199,152,9,0,167,108,122,39,220,153,9,0,172,108,99,206,117,79,7,0,175,236,17,151,28,68,9,0,175,236,17,151,215,68,9,0,176,108,80,198,33,65,7,0,177,108,123,169,71,236,6,0,177,236,115,228,224,146,8,0,177,236,115,228,132,150,8,0,179,236,221,13,245,41,7,0,179,108,79,82,101,220,9,0,179,108,79,82,154,220,9,0,179,108,94,238,166,140,10,0,179,236,221,13,65,235,10,0,181,108,146,28,4,111,6,0,183,236,102,112,71,236,6,0,183,236,102,112,71,104,8,0,183,236,102,112,31,130,10,0,184,236,1,72,99,42,7,0,185,236,234,59,137,177,7,0,185,236,234,59,0,67,10,0,186,108,102,197,181,206,10,0,187,108,62,2,133,220,6,0,187,108,119,244,15,174,10,0,187,108,169,16,78,47,11,0,188,108,85,205,38,98,7,0,191,236,246,6,152,111,7,0,191,236,246,6,110,38,10,0,191,236,246,6,172,38,10,0,195,236,255,118,59,46,11,0,197,236,241,89,136,58,7,0,199,108,61,49,88,129,7,0,199,108,86,167,78,47,11,0,201,108,68,146,219,1,7,0,202,108,122,122,78,101,10,0,204,108,179,129,244,182,6,0,210,236,20,40,118,226,8,0,210,236,20,40,72,228,8,0,212,108,231,242,118,26,7,0,212,108,231,242,167,194,7,0,212,108,54,216,220,116,10,0,213,236,249,85,195,27,6,0,213,108,145,81,114,209,6,0,213,108,145,81,20,15,7,0,213,108,145,81,179,17,7,0,218,236,11,196,222,30,6,0,219,236,35,21,179,17,7,0,220,236,141,97,63,25,7,0,224,108,222,151,77,162,10,0,225,108,191,93,29,150,7,0,226,108,68,221,117,37,7,0,229,236,105,223,138,115,8,0,229,236,105,223,117,124,8,0,229,236,105,223,105,133,8,0,230,236,204,199,117,79,7,0,233,108,241,56,67,53,6,0,233,108,241,56,251,145,6,0,235,108,185,124,138,115,8,0,235,108,185,124,117,124,8,0,235,108,185,124,105,133,8,0,238,236,15,207,224,146,8,0,238,236,15,207,132,150,8,0,240,236,201,219,80,49,7,0,240,236,201,219,171,49,7,0,240,108,101,221,224,146,8,0,240,108,101,221,132,150,8,0,245,236,241,57,0,203,6,0,247,108,242,127,145,161,6,0,248,236,174,57,232,191,8,0,248,236,174,57,162,193,8,0,251,236,188,153,30,171,9,0,252,236,245,149,99,42,7,0,253,236,174,129,117,79,7,0,253,236,9,176,123,236,9,0,254,108,35,13,255,179,8,0,254,108,35,13,110,180,8,0,255,108,253,46,90,53,7,0,6,237,251,78,245,74,10,0,6,237,251,78,64,75,10,0,8,109,202,180,53,66,7,0,10,109,143,205,129,131,6,0,11,109,189,186,212,243,6,0,12,109,52,248,90,53,7,0,13,109,8,32,123,236,9,0,16,237,13,95,20,15,7,0,16,237,13,95,179,17,7,0,18,237,224,126,246,156,6,0,18,237,220,30,154,221,6,0,18,109,189,174,205,151,9,0,18,109,189,174,199,152,9,0,18,109,189,174,220,153,9,0,18,109,133,178,30,171,9,0,19,237,119,106,83,233,10,0,22,237,159,60,253,208,8,0,22,237,159,60,22,211,8,0,22,109,111,123,121,225,8,0,22,109,111,123,165,225,8,0,22,109,111,123,186,225,8,0,27,237,194,27,215,95,11,0,28,109,15,190,114,234,6,0,29,109,25,181,138,115,8,0,29,109,25,181,117,124,8,0,29,109,25,181,105,133,8,0,31,237,239,33,123,236,9,0,32,109,100,217,194,211,6,0,32,109,72,102,133,180,7,0,32,109,135,102,82,86,8,0,34,237,98,244,139,158,8,0,34,237,98,244,224,163,8,0,36,237,137,249,241,220,8,0,37,237,98,42,228,109,9,0,37,237,98,42,248,110,9,0,40,109,122,28,214,62,11,0,40,109,122,28,238,62,11,0,42,237,97,209,72,27,7,0,44,109,233,60,71,236,6,0,44,237,47,71,160,234,8,0,44,237,47,71,175,235,8,0,45,109,80,198,229,107,8,0,45,109,80,198,36,108,8,0,47,237,251,49,236,51,7,0,48,109,112,167,109,36,11,0,50,237,188,118,138,115,8,0,50,237,188,118,117,124,8,0,50,237,188,118,105,133,8,0,52,109,59,77,27,119,9,0,52,109,59,77,102,119,9,0,53,237,103,87,72,202,8,0,53,237,103,87,175,202,8,0,55,109,212,94,175,26,7,0,55,109,36,106,123,236,9,0,55,237,237,234,55,85,11,0,59,237,180,87,236,51,7,0,59,237,98,244,221,85,11,0,60,109,155,200,227,108,7,0,60,109,155,200,152,111,7,0,63,237,68,136,38,98,7,0,63,237,142,73,131,152,10,0,63,237,142,73,38,153,10,0,65,237,158,186,44,193,7,0,65,237,158,186,114,193,7,0,65,237,158,186,180,193,7,0,67,237,214,54,121,59,10,0,67,109,76,47,118,52,11,0,68,109,154,135,138,115,8,0,68,109,154,135,117,124,8,0,68,109,154,135,105,133,8,0,69,109,184,38,48,141,7,0,69,109,184,38,106,141,7,0,70,109,51,151,34,41,7,0,75,237,59,86,172,72,7,0,75,109,52,203,127,63,9,0,75,109,52,203,181,63,9,0,75,109,52,203,65,64,9,0,78,109,13,32,75,1,9,0,78,109,13,32,154,2,9,0,78,109,13,32,235,3,9,0,78,109,13,32,65,5,9,0,79,109,84,157,123,236,9,0,82,109,246,225,94,165,7,0,85,109,70,23,50,34,8,0,85,109,70,23,106,34,8,0,85,109,70,23,159,34,8,0,85,237,132,150,52,169,8,0,85,237,132,150,90,169,8,0,88,237,254,19,212,243,6,0,89,109,215,122,58,139,10,0,90,109,156,152,71,236,6,0,93,109,99,5,112,5,10,0,93,109,99,5,28,6,10,0,94,109,75,55,212,200,6,0,95,109,47,60,68,58,6,0,96,237,112,119,199,37,6,0,98,237,85,138,29,5,7,0,98,237,39,133,247,37,11,0,99,237,120,144,160,225,10,0,102,109,6,100,138,115,8,0,102,109,6,100,117,124,8,0,102,109,6,100,105,133,8,0,104,237,97,36,97,2,6,0,104,109,72,55,205,151,9,0,104,109,72,55,199,152,9,0,104,109,72,55,220,153,9,0,107,109,192,148,122,130,6,0,107,109,192,148,86,162,6,0,107,237,235,214,237,73,7,0,108,109,37,109,174,51,7,0,109,109,72,185,204,213,9,0,110,109,121,49,25,201,10,0,111,237,83,34,179,17,7,0,111,237,63,239,113,125,9,0,111,237,63,239,141,125,9,0,112,237,32,173,15,3,8,0,116,237,205,109,26,126,6,0,119,237,180,226,237,73,7,0,119,237,242,3,111,228,10,0,120,109,107,158,170,33,9,0,120,109,107,158,200,33,9,0,120,109,107,158,226,33,9,0,121,109,123,32,100,151,9,0,121,109,123,32,126,151,9,0,123,237,138,115,214,139,6,0,124,109,181,217,117,37,7,0,124,109,198,59,237,73,7,0,124,109,181,217,152,111,7,0,126,109,180,22,133,36,8,0,130,109,131,59,90,53,7,0,132,109,251,218,123,236,9,0,133,237,55,206,204,33,11,0,134,109,46,129,129,133,6,0,134,237,10,59,224,251,6,0,136,109,155,42,139,158,8,0,136,109,155,42,224,163,8,0,136,237,93,89,13,32,9,0,136,237,93,89,195,32,9,0,137,109,7,106,132,39,11,0,138,237,136,50,94,144,9,0,138,237,136,50,116,144,9,0,138,237,136,50,136,144,9,0,139,109,250,57,212,243,6,0,139,109,9,188,117,37,7,0,142,237,22,215,76,34,9,0,142,237,22,215,110,34,9,0,142,237,67,250,115,135,10,0,144,237,84,54,166,220,8,0,144,237,84,54,241,220,8,0,145,109,32,52,49,70,7,0,148,109,192,143,215,16,10,0,148,109,192,143,135,17,10,0,148,109,112,167,18,36,11,0,150,109,235,114,219,210,7,0,152,109,51,55,3,23,6,0,152,109,51,55,202,65,6,0,153,237,197,64,120,226,5,0,153,237,35,78,212,243,6,0,153,109,151,141,212,243,6,0,154,109,69,160,212,243,6,0,156,109,85,85,254,243,5,0,156,109,85,85,153,89,7,0,156,237,96,116,138,115,8,0,156,237,96,116,117,124,8,0,156,237,96,116,105,133,8,0,157,237,158,8,148,18,8,0,157,237,158,8,196,18,8,0,158,109,194,6,53,66,7,0,162,237,87,176,0,203,6,0,162,109,24,212,117,79,7,0,164,109,227,254,5,148,7,0,164,109,97,239,105,177,8,0,164,109,97,239,162,177,8,0,165,109,32,174,149,14,6,0,165,109,32,174,186,16,8,0,167,237,90,113,95,192,6,0,167,109,215,9,151,191,9,0,167,109,215,9,189,191,9,0,168,109,125,85,80,234,10,0,168,109,125,85,101,234,10,0,169,109,190,106,123,236,9,0,169,237,91,248,123,236,9,0,169,109,137,133,44,90,10,0,174,109,182,5,90,175,8,0,174,109,182,5,74,176,8,0,175,109,35,129,80,49,7,0,175,109,35,129,171,49,7,0,177,109,65,179,20,15,7,0,177,109,65,179,179,17,7,0,177,237,220,105,115,7,10,0,177,237,220,105,190,7,10,0,177,237,220,105,10,8,10,0,178,237,114,66,146,235,6,0,179,109,86,42,29,204,8,0,179,109,86,42,6,205,8,0,180,109,251,77,154,4,7,0,181,109,41,114,171,49,7,0,182,109,49,35,179,222,8,0,182,109,49,35,152,223,8,0,183,109,113,249,224,146,8,0,183,109,113,249,132,150,8,0,183,109,221,118,165,11,9,0,183,109,221,118,58,12,9,0,189,109,39,104,223,201,5,0,191,109,79,180,216,233,10,0,193,109,61,199,210,110,7,0,193,109,61,199,177,118,7,0,195,109,139,53,58,118,6,0,200,237,145,236,152,111,7,0,200,237,145,236,118,127,7,0,201,109,184,16,236,213,6,0,203,109,168,54,136,58,7,0,204,237,103,143,131,81,10,0,204,109,104,247,123,20,11,0,205,109,58,69,138,115,8,0,205,109,58,69,117,124,8,0,205,109,58,69,105,133,8,0,211,109,128,180,84,21,8,0,212,109,239,127,227,108,7,0,212,109,239,127,171,203,9,0,212,109,239,127,200,203,9,0,212,109,239,127,224,203,9,0,212,109,220,19,203,154,10,0,213,237,175,133,170,245,5,0,214,237,154,224,162,50,7,0,214,109,149,37,181,23,11,0,215,109,238,3,248,234,6,0,216,237,122,150,71,236,6,0,217,109,71,82,34,10,10,0,218,109,243,211,103,170,8,0,218,109,243,211,188,170,8,0,222,109,239,122,187,54,8,0,225,109,196,152,229,69,11,0,227,109,56,127,136,58,7,0,227,109,214,40,237,73,7,0,227,109,56,127,38,98,7,0,230,109,223,114,212,243,6,0,230,109,155,255,36,158,10,0,232,237,177,230,33,11,6,0,232,109,67,129,153,11,7,0,232,109,67,129,135,13,7,0,233,237,89,218,141,195,8,0,233,237,89,218,112,196,8,0,233,237,89,218,75,197,8,0,243,109,38,236,124,253,6,0,252,237,81,97,212,243,6,0,255,237,231,36,245,81,10,0,0,110,170,226,255,201,6,0,0,110,170,226,22,247,8,0,0,110,170,226,60,247,8,0,0,110,198,212,75,1,9,0,0,110,198,212,154,2,9,0,0,110,198,212,235,3,9,0,0,110,198,212,65,5,9,0,2,238,226,188,152,234,6,0,2,238,194,24,108,23,9,0,2,238,194,24,130,23,9,0,3,238,197,69,224,146,8,0,3,238,197,69,132,150,8,0,7,238,122,42,135,90,9,0,7,238,122,42,124,91,9,0,7,110,242,124,113,22,11,0,12,110,232,242,46,59,10,0,13,238,197,158,141,195,8,0,13,238,197,158,112,196,8,0,13,238,197,158,75,197,8,0,13,238,84,177,218,113,9,0,13,238,84,177,120,114,9,0,14,238,194,251,71,236,6,0,14,238,133,242,237,73,7,0,15,238,235,51,41,243,5,0,16,238,19,76,129,87,8,0,17,238,183,227,38,98,7,0,21,238,42,231,179,235,9,0,21,238,42,231,240,235,9,0,22,238,219,57,18,231,5,0,22,238,219,57,231,106,6,0,22,238,219,57,100,71,7,0,22,110,177,244,123,236,9,0,23,238,67,251,123,204,6,0,23,110,221,126,12,59,9,0,23,110,221,126,37,59,9,0,26,110,99,43,171,49,7,0,27,110,39,35,15,148,6,0,27,110,211,166,132,211,10,0,27,110,211,166,155,211,10,0,27,110,249,16,251,98,11,0,31,110,32,14,219,210,7,0,33,238,16,64,197,253,6,0,33,238,132,249,29,5,7,0,33,110,102,102,168,9,7,0,35,238,105,24,90,14,6,0,35,238,105,24,38,137,6,0,35,238,105,24,31,5,8,0,36,238,238,137,101,226,6,0,36,238,201,6,38,98,7,0,36,238,238,137,99,55,11,0,38,110,43,245,155,67,7,0,40,110,84,204,146,235,6,0,42,238,100,57,253,237,5,0,42,238,117,211,254,243,5,0,42,238,117,211,153,89,7,0,42,238,154,138,129,55,10,0,43,110,26,228,139,158,8,0,43,110,26,228,224,163,8,0,43,110,98,210,85,113,10,0,46,238,248,105,229,193,6,0,46,238,232,108,117,79,7,0,47,110,67,182,138,115,8,0,47,110,67,182,117,124,8,0,47,110,67,182,105,133,8,0,49,110,68,15,112,5,10,0,49,110,68,15,28,6,10,0,49,110,139,62,42,190,10,0,50,110,249,83,237,73,7,0,51,110,198,23,0,189,8,0,51,110,198,23,54,189,8,0,52,110,183,37,138,115,8,0,52,110,183,37,117,124,8,0,52,110,183,37,105,133,8,0,53,238,1,226,64,86,9,0,53,238,1,226,109,86,9,0,56,238,67,138,38,98,7,0,57,238,218,59,88,129,7,0,59,238,194,183,217,62,7,0,64,110,228,195,205,151,9,0,64,110,228,195,199,152,9,0,64,110,228,195,220,153,9,0,65,110,188,164,132,215,6,0,65,238,93,139,4,161,10,0,65,238,93,139,189,161,10,0,65,110,188,164,57,243,10,0,66,110,14,198,224,146,8,0,66,110,14,198,132,150,8,0,69,238,106,0,38,98,7,0,69,110,220,213,224,96,11,0,71,110,53,136,161,54,11,0,71,238,53,143,130,65,11,0,73,238,43,144,193,167,9,0,75,110,237,112,212,243,6,0,75,238,13,0,247,55,7,0,78,238,28,210,107,210,6,0,80,238,244,35,232,25,7,0,80,238,196,162,205,151,9,0,80,238,196,162,199,152,9,0,80,238,196,162,220,153,9,0,81,110,130,243,57,171,8,0,81,110,130,243,133,172,8,0,81,110,130,243,211,173,8,0,81,110,29,72,252,156,9,0,81,110,29,72,38,157,9,0,82,238,233,153,219,210,7,0,85,110,251,253,204,36,6,0,85,238,88,111,21,145,6,0,85,238,110,98,117,79,7,0,85,110,85,199,38,98,7,0,85,110,85,199,64,193,9,0,90,110,6,29,138,115,8,0,90,110,6,29,117,124,8,0,90,110,6,29,105,133,8,0,92,238,205,238,193,167,9,0,92,238,205,238,37,168,9,0,93,238,96,221,213,204,6,0,95,110,103,46,13,32,9,0,95,110,103,46,195,32,9,0,98,238,35,210,29,5,7,0,101,110,174,102,90,53,7,0,102,238,238,170,87,120,10,0,104,110,157,65,247,55,7,0,104,110,249,8,136,58,7,0,106,238,194,68,212,243,6,0,110,110,212,186,136,58,7,0,110,110,170,190,227,108,7,0,110,238,127,3,152,111,7,0,110,238,127,3,84,53,8,0,110,110,35,200,224,146,8,0,110,110,35,200,132,150,8,0,112,110,244,14,189,201,7,0,112,110,244,14,242,201,7,0,113,238,156,71,171,90,7,0,113,238,174,38,3,157,8,0,113,238,174,38,180,157,8,0,116,110,91,38,132,215,6,0,120,238,18,254,210,110,7,0,121,110,242,91,92,55,10,0,122,238,108,114,99,66,8,0,127,110,152,192,253,208,8,0,127,110,152,192,22,211,8,0,127,110,197,182,178,101,11,0,130,110,188,127,224,146,8,0,130,110,188,127,132,150,8,0,130,238,97,80,206,81,9,0,130,238,97,80,230,81,9,0,130,238,97,80,249,81,9,0,132,238,40,118,204,213,9,0,133,238,28,162,221,38,10,0,133,238,28,162,62,40,10,0,134,238,76,204,26,73,6,0,136,110,193,2,249,154,8,0,136,110,193,2,148,155,8,0,136,110,193,2,52,156,8,0,136,110,44,125,139,158,8,0,136,110,44,125,224,163,8,0,138,238,245,220,212,126,6,0,138,238,118,149,81,239,8,0,138,238,118,149,40,240,8,0,139,110,130,68,245,28,10,0,139,110,130,68,145,31,10,0,140,110,34,36,255,201,6,0,140,110,146,251,167,71,7,0,140,110,34,36,22,247,8,0,140,110,34,36,60,247,8,0,144,238,118,88,215,169,10,0,145,110,93,47,69,105,6,0,145,110,93,47,98,141,6,0,147,238,201,210,156,123,6,0,148,110,44,105,38,98,7,0,148,110,157,71,112,5,10,0,148,110,157,71,28,6,10,0,148,110,192,44,136,97,11,0,149,110,166,74,91,84,6,0,151,110,160,127,141,255,8,0,151,110,160,127,235,255,8,0,153,110,51,71,155,234,5,0,153,110,139,195,248,72,9,0,153,110,139,195,26,73,9,0,154,238,38,215,253,208,8,0,154,238,38,215,22,211,8,0,156,110,95,218,167,8,7,0,159,110,70,235,117,37,7,0,162,110,209,78,123,236,9,0,167,110,71,129,181,125,6,0,167,238,64,232,212,243,6,0,167,238,93,202,81,239,8,0,167,238,93,202,40,240,8,0,168,110,227,57,171,63,7,0,168,238,223,227,226,43,9,0,168,238,223,227,66,44,9,0,168,238,223,227,167,44,9,0,168,238,223,227,5,45,9,0,168,238,223,227,108,45,9,0,170,238,218,39,20,121,6,0,170,238,218,39,232,121,6,0,177,110,100,95,197,230,8,0,177,110,100,95,235,230,8,0,179,238,234,55,38,98,7,0,180,110,191,229,219,210,7,0,184,238,156,168,39,114,8,0,186,238,66,77,38,98,7,0,190,110,125,56,247,55,7,0,192,238,60,166,114,209,6,0,192,238,60,166,237,43,8,0,192,238,60,166,165,9,9,0,192,238,60,166,221,9,9,0,192,238,60,166,22,10,9,0,193,110,116,216,109,231,6,0,193,110,116,216,38,98,7,0,197,238,169,74,13,32,9,0,197,238,169,74,195,32,9,0,200,110,117,127,100,231,5,0,202,238,133,59,135,90,9,0,202,238,133,59,124,91,9,0,204,110,74,201,224,146,8,0,204,110,74,201,132,150,8,0,208,110,238,26,70,13,11,0,209,238,137,173,57,94,7,0,212,238,99,228,226,154,9,0,212,238,99,228,114,155,9,0,215,110,108,110,245,207,6,0,215,110,114,97,127,152,7,0,216,110,65,114,80,139,10,0,219,110,89,236,243,69,7,0,219,110,48,62,181,170,9,0,219,110,48,62,211,170,9,0,220,238,110,238,138,115,8,0,220,238,110,238,117,124,8,0,220,238,110,238,105,133,8,0,222,238,69,169,130,227,6,0,222,110,5,211,38,253,8,0,222,110,5,211,173,253,8,0,226,238,222,189,123,236,9,0,227,110,169,16,88,91,7,0,228,110,12,193,136,58,7,0,228,110,37,226,29,204,8,0,228,110,37,226,6,205,8,0,230,238,40,215,215,99,10,0,236,110,114,143,20,161,6,0,236,238,35,242,135,252,6,0,236,238,35,242,194,252,6,0,236,238,156,40,159,92,9,0,236,238,156,40,5,93,9,0,237,110,167,116,114,41,8,0,239,238,62,97,187,9,6,0,242,238,136,125,177,133,7,0,242,238,136,125,38,134,7,0,242,238,82,212,3,157,8,0,242,238,82,212,180,157,8,0,242,110,84,192,51,214,8,0,242,110,84,192,241,214,8,0,242,110,84,192,169,215,8,0,243,110,109,131,80,32,7,0,244,238,13,49,153,11,7,0,244,238,13,49,135,13,7,0,245,110,196,157,90,53,7,0,246,110,55,51,68,202,6,0,247,238,73,180,140,66,7,0,247,238,73,180,234,66,7,0,254,110,56,130,117,79,7,0,255,238,229,13,38,98,7,0,0,111,9,117,254,243,5,0,0,239,35,66,217,35,7,0,0,111,9,117,153,89,7,0,2,239,181,78,212,243,6,0,3,111,145,175,60,238,5,0,6,111,232,252,123,236,9,0,7,111,71,120,171,63,7,0,7,111,14,239,182,55,11,0,8,239,8,250,138,115,8,0,8,239,8,250,117,124,8,0,8,239,8,250,105,133,8,0,8,239,219,225,90,56,9,0,8,239,219,225,171,56,9,0,8,239,219,225,54,57,9,0,10,111,208,86,247,55,7,0,15,239,62,17,237,73,7,0,15,111,255,182,221,38,10,0,15,111,255,182,62,40,10,0,15,239,25,22,121,34,11,0,16,111,176,215,180,144,8,0,16,111,176,215,67,145,8,0,19,111,236,7,65,222,10,0,21,111,75,121,55,48,7,0,21,239,55,8,95,69,10,0,23,239,240,185,99,66,8,0,24,111,136,94,212,243,6,0,24,111,62,141,55,114,10,0,29,239,196,173,34,10,10,0,30,111,220,179,212,243,6,0,30,239,87,182,179,17,7,0,35,239,248,187,171,49,7,0,37,239,17,25,237,73,7,0,37,111,175,182,117,79,7,0,38,111,182,108,123,236,9,0,40,111,53,34,117,79,7,0,41,111,172,30,129,40,7,0,41,111,108,148,185,88,11,0,43,111,209,182,71,236,6,0,44,239,184,110,155,67,7,0,44,239,221,20,224,146,8,0,44,239,221,20,132,150,8,0,44,111,151,91,96,254,8,0,44,111,151,91,157,254,8,0,45,239,74,2,86,74,8,0,46,239,23,195,211,184,8,0,46,239,23,195,247,184,8,0,46,239,23,195,22,185,8,0,50,111,179,110,254,243,5,0,50,239,73,31,237,73,7,0,50,111,179,110,153,89,7,0,51,111,236,237,219,232,10,0,52,239,94,177,253,83,10,0,54,239,123,53,114,243,8,0,54,239,123,53,37,244,8,0,58,111,77,107,117,37,7,0,59,111,162,152,20,15,7,0,59,111,162,152,179,17,7,0,60,239,132,238,138,115,8,0,60,239,132,238,117,124,8,0,60,239,132,238,105,133,8,0,61,239,120,27,123,236,9,0,62,111,35,178,146,235,6,0,62,111,40,7,152,111,7,0,62,239,53,42,138,115,8,0,62,239,53,42,117,124,8,0,62,239,53,42,105,133,8,0,62,111,40,7,173,169,8,0,65,111,142,191,130,227,6,0,67,111,161,248,200,93,10,0,69,111,170,164,165,44,6,0,70,111,69,209,235,58,10,0,73,239,49,169,151,21,7,0,76,111,112,167,50,51,7,0,77,111,195,45,230,215,6,0,87,239,75,101,138,115,8,0,87,239,75,101,117,124,8,0,87,239,75,101,105,133,8,0,95,111,54,44,26,10,6,0,95,239,117,26,247,55,7,0,95,239,22,155,235,189,7,0,95,239,76,51,172,29,11,0,97,239,217,87,83,95,10,0,100,111,225,36,219,1,7,0,103,239,172,77,153,11,7,0,103,239,172,77,135,13,7,0,106,239,115,135,90,53,7,0,106,239,110,58,40,217,8,0,106,239,110,58,209,217,8,0,107,111,130,143,68,65,11,0,107,111,130,143,113,68,11,0,110,111,198,123,54,218,6,0,111,111,20,122,209,243,10,0,111,111,20,122,229,243,10,0,113,239,93,51,207,188,5,0,116,239,100,216,223,216,6,0,116,239,100,216,191,55,7,0,117,111,134,93,3,157,8,0,117,111,134,93,180,157,8,0,124,239,107,148,152,111,7,0,124,239,107,148,110,38,10,0,124,239,107,148,172,38,10,0,126,111,14,186,46,16,10,0,127,239,249,1,117,37,7,0,128,239,34,126,120,98,6,0,128,111,161,219,123,236,9,0,129,239,223,187,80,32,7,0,131,111,23,41,250,194,6,0,132,111,148,120,205,151,9,0,132,111,148,120,199,152,9,0,132,111,148,120,220,153,9,0,133,239,207,234,88,130,9,0,133,239,207,234,130,130,9,0,134,111,197,71,23,169,6,0,135,111,185,70,155,67,7,0,136,111,152,113,179,17,7,0,137,239,4,89,120,70,11,0,138,239,198,161,20,15,7,0,138,239,198,161,179,17,7,0,139,239,149,97,12,234,6,0,139,239,190,45,29,5,7,0,141,239,18,222,138,115,8,0,141,239,18,222,117,124,8,0,141,239,18,222,105,133,8,0,142,239,100,94,153,11,7,0,142,239,100,94,135,13,7,0,145,111,1,76,29,4,7,0,148,239,113,98,212,243,6,0,149,239,137,149,150,198,5,0,151,239,69,14,218,113,9,0,151,239,69,14,120,114,9,0,154,239,42,38,171,63,7,0,156,111,239,106,80,32,7,0,158,111,113,8,0,144,8,0,158,111,113,8,31,144,8,0,158,111,113,8,71,144,8,0,159,111,80,142,152,113,6,0,159,111,218,148,212,243,6,0,159,239,69,81,138,115,8,0,159,239,69,81,117,124,8,0,159,239,69,81,105,133,8,0,160,111,99,16,190,165,6,0,161,239,32,100,232,251,9,0,161,239,32,100,176,252,9,0,162,111,221,113,232,251,9,0,162,111,221,113,176,252,9,0,163,239,206,35,30,231,6,0,163,111,12,1,113,22,11,0,164,111,225,58,138,115,8,0,164,111,225,58,117,124,8,0,164,111,225,58,105,133,8,0,165,111,92,73,94,227,5,0,165,111,92,73,113,24,7,0,165,111,198,135,123,236,9,0,169,239,67,82,109,172,9,0,169,239,67,82,178,173,9,0,169,239,67,82,250,174,9,0,173,239,142,232,107,100,10,0,175,111,146,169,222,133,6,0,177,239,179,148,7,220,6,0,177,239,179,148,164,93,9,0,177,239,179,148,185,93,9,0,180,111,253,64,153,11,7,0,180,111,253,64,135,13,7,0,181,239,73,138,24,251,7,0,182,111,173,252,82,226,5,0,184,239,20,99,155,67,7,0,186,239,195,34,217,62,7,0,187,111,208,210,200,219,8,0,187,111,208,210,242,219,8,0,188,111,98,127,220,189,6,0,189,111,156,149,11,9,7,0,189,111,156,149,75,1,9,0,189,111,156,149,154,2,9,0,189,111,156,149,235,3,9,0,189,111,156,149,65,5,9,0,191,239,138,37,18,76,8,0,191,111,220,82,165,9,9,0,191,111,220,82,221,9,9,0,191,111,220,82,22,10,9,0,192,111,25,166,176,131,6,0,192,111,90,14,151,21,7,0,192,111,230,231,21,36,7,0,193,239,17,168,76,16,9,0,193,239,17,168,146,16,9,0,195,111,224,16,187,86,8,0,196,239,135,206,51,63,11,0,196,239,135,206,98,63,11,0,197,239,209,30,197,253,6,0,199,111,71,45,125,76,11,0,200,111,199,248,163,128,6,0,200,111,57,108,8,1,7,0,200,239,69,81,245,28,10,0,200,239,69,81,145,31,10,0,202,239,195,231,237,73,7,0,203,111,78,64,123,236,9,0,204,239,102,87,224,146,8,0,204,239,102,87,132,150,8,0,207,239,83,57,22,218,6,0,210,239,71,121,119,203,6,0,210,239,71,121,44,164,10,0,211,239,246,133,29,5,7,0,212,239,225,183,136,159,6,0,212,111,152,216,226,154,9,0,212,111,152,216,114,155,9,0,213,111,29,166,139,158,8,0,213,111,29,166,224,163,8,0,214,111,130,135,136,58,7,0,214,111,89,133,123,236,9,0,216,111,127,191,118,226,8,0,216,111,127,191,72,228,8,0,216,111,8,12,38,145,10,0,220,111,240,198,133,103,11,0,221,239,140,93,125,44,7,0,222,239,35,25,212,243,6,0,223,111,175,143,212,243,6,0,224,111,148,214,29,5,7,0,225,111,145,67,71,236,6,0,227,111,165,22,23,215,10,0,228,239,14,197,176,170,6,0,228,239,25,197,152,118,9,0,228,239,25,197,196,118,9,0,233,239,194,68,95,155,7,0,236,239,143,237,41,138,6,0,236,239,143,237,125,44,7,0,238,239,6,132,110,242,5,0,238,239,6,132,40,147,6,0,238,239,6,132,70,209,9,0,238,239,6,132,141,209,9,0,238,239,6,132,208,209,9,0,238,239,6,132,13,210,9,0,239,239,23,147,139,158,8,0,239,239,23,147,224,163,8,0,244,239,254,229,212,243,6,0,245,111,187,126,247,80,10,0,246,239,50,86,50,104,6,0,247,239,197,63,212,243,6,0,247,239,178,11,135,252,6,0,247,239,178,11,194,252,6,0,249,239,198,199,247,208,6,0,252,239,138,210,247,55,7,0,252,239,48,216,117,79,7,0,253,239,43,116,54,218,6,0,0,112,114,145,15,233,8,0,0,112,114,145,139,233,8,0,1,240,119,247,227,108,7,0,1,240,119,247,131,249,9,0,3,240,54,22,25,186,7,0,4,112,175,182,212,243,6,0,4,112,248,82,167,8,7,0,4,240,70,188,245,28,10,0,4,240,70,188,145,31,10,0,6,112,10,33,124,45,8,0,6,112,10,33,1,46,8,0,6,112,10,33,123,46,8,0,8,240,31,228,78,203,8,0,10,112,117,204,24,11,11,0,10,112,117,204,50,11,11,0,15,112,119,199,61,224,6,0,17,240,147,110,35,132,6,0,21,240,208,165,38,98,7,0,21,240,208,165,81,32,11,0,23,112,206,11,90,53,7,0,25,240,47,194,32,128,10,0,26,240,168,114,4,241,7,0,26,240,168,114,56,241,7,0,26,112,248,245,118,226,8,0,26,112,248,245,72,228,8,0,28,112,66,229,180,28,7,0,29,240,41,100,82,231,9,0,29,240,185,248,46,16,10,0,31,240,223,164,133,22,6,0,32,240,236,10,159,92,9,0,32,240,236,10,5,93,9,0,35,112,42,84,212,243,6,0,35,240,22,79,113,47,7,0,38,112,144,120,18,206,5,0,43,112,62,67,38,217,6,0,44,112,151,14,153,11,7,0,44,112,151,14,135,13,7,0,45,112,120,52,78,47,11,0,46,112,200,10,155,203,6,0,46,112,240,38,34,10,10,0,51,240,194,234,130,227,6,0,51,240,9,9,164,206,10,0,53,112,51,196,150,59,6,0,54,240,224,44,153,118,10,0,55,240,0,83,36,56,10,0,58,240,102,174,107,87,10,0,59,240,139,104,220,12,10,0,59,240,139,104,22,13,10,0,60,112,1,198,51,243,7,0,60,112,1,198,244,239,10,0,62,112,169,112,90,7,7,0,63,240,236,177,236,213,6,0,64,240,201,155,106,250,10,0,66,240,7,45,113,232,6,0,73,112,153,218,101,98,6,0,73,112,191,169,244,27,9,0,75,240,189,132,212,200,6,0,76,112,244,15,29,204,8,0,76,112,244,15,6,205,8,0,77,240,178,73,152,111,7,0,77,240,178,73,84,53,8,0,79,240,238,6,51,241,8,0,79,240,238,6,198,241,8,0,80,240,255,47,24,248,5,0,82,112,136,34,5,48,8,0,83,240,140,124,151,21,7,0,84,240,163,48,197,18,6,0,84,240,131,203,230,71,9,0,84,240,131,203,83,72,9,0,85,240,32,149,42,225,5,0,85,240,35,59,105,163,7,0,86,112,141,238,71,236,6,0,86,112,132,238,107,23,10,0,86,112,132,238,195,23,10,0,86,240,62,253,143,97,10,0,86,240,62,253,226,108,10,0,86,240,62,253,19,109,10,0,89,112,109,130,32,113,9,0,90,112,211,117,50,211,6,0,90,112,142,131,169,35,8,0,91,112,14,84,161,187,7,0,91,112,14,84,221,187,7,0,91,112,14,84,26,188,7,0,91,112,14,84,85,188,7,0,92,112,250,0,71,236,6,0,92,240,131,12,92,157,7,0,94,240,227,132,212,243,6,0,94,240,63,235,24,8,7,0,94,240,63,235,243,173,10,0,96,112,83,80,29,150,7,0,98,112,8,195,22,35,7,0,99,240,196,112,117,37,7,0,100,112,251,36,124,45,8,0,100,112,251,36,1,46,8,0,100,112,251,36,123,46,8,0,102,240,245,244,212,243,6,0,103,112,4,238,60,65,10,0,108,112,254,58,195,10,9,0,108,112,254,58,224,10,9,0,108,112,254,58,255,10,9,0,109,112,231,242,227,76,10,0,112,240,189,132,46,16,10,0,114,112,104,218,38,98,7,0,114,112,104,218,129,132,7,0,114,112,104,218,159,132,7,0,116,112,107,114,201,183,10,0,118,240,234,187,237,59,6,0,119,240,30,160,62,28,7,0,123,240,80,121,29,150,7,0,124,112,112,167,146,38,11,0,125,112,234,166,155,209,10,0,131,112,125,118,38,98,7,0,134,112,106,99,201,151,7,0,135,240,41,79,116,67,10,0,139,240,112,123,71,236,6,0,142,240,76,8,29,150,7,0,142,240,247,39,90,56,9,0,142,240,247,39,171,56,9,0,142,240,247,39,54,57,9,0,143,112,15,146,117,79,7,0,144,112,27,45,187,70,7,0,151,112,154,183,139,158,8,0,151,112,154,183,224,163,8,0,151,112,3,241,188,61,10,0,152,112,14,248,226,238,5,0,153,240,14,113,219,210,7,0,156,240,18,157,61,187,7,0,156,240,138,246,138,115,8,0,156,240,138,246,117,124,8,0,156,240,138,246,105,133,8,0,156,240,8,130,139,158,8,0,156,240,8,130,224,163,8,0,161,112,104,81,110,229,5,0,164,112,1,182,138,115,8,0,164,112,1,182,117,124,8,0,164,112,1,182,105,133,8,0,165,240,0,223,71,236,6,0,169,112,116,91,117,37,7,0,169,112,212,110,252,42,7,0,170,240,200,165,123,236,9,0,172,240,108,202,125,44,7,0,173,112,178,243,123,236,9,0,175,112,69,165,162,201,5,0,176,240,171,86,71,236,6,0,181,240,118,140,2,23,7,0,181,112,150,40,29,150,7,0,181,240,54,132,2,154,7,0,181,112,215,60,252,182,7,0,181,112,16,30,153,207,8,0,181,112,16,30,44,208,8,0,183,240,177,243,89,159,10,0,185,112,56,40,252,42,7,0,186,240,187,81,118,226,8,0,186,240,187,81,72,228,8,0,187,240,113,33,84,49,6,0,190,240,80,196,230,5,8,0,190,240,80,196,20,6,8,0,190,112,6,139,138,115,8,0,190,112,6,139,117,124,8,0,190,112,6,139,105,133,8,0,190,240,239,206,104,185,8,0,190,240,80,196,181,24,11,0,192,240,151,199,13,32,11,0,197,240,111,164,38,98,7,0,198,240,114,207,167,107,7,0,200,240,66,177,144,91,10,0,202,240,47,211,38,98,7,0,202,240,47,211,130,195,7,0,203,112,217,217,167,32,11,0,209,240,187,129,237,73,7,0,210,240,8,126,61,243,5,0,210,240,8,126,13,66,6,0,213,112,208,162,218,113,9,0,213,112,208,162,120,114,9,0,218,112,70,153,102,179,6,0,220,240,206,11,71,236,6,0,220,112,151,159,247,131,10,0,221,240,34,42,78,47,11,0,223,112,190,226,80,32,7,0,224,112,115,236,201,230,6,0,226,112,210,248,136,58,7,0,226,240,241,130,237,73,7,0,226,112,48,112,117,79,7,0,228,240,254,234,237,73,7,0,229,112,91,93,148,197,5,0,230,240,250,159,179,17,7,0,232,112,170,149,132,23,7,0,233,240,116,24,197,253,6,0,234,240,150,98,209,40,7,0,234,112,202,78,97,173,7,0,235,112,206,124,50,211,6,0,236,112,91,138,117,79,7,0,236,240,75,161,253,208,8,0,236,240,75,161,22,211,8,0,239,112,50,150,117,37,7,0,239,112,192,15,123,236,9,0,242,240,208,38,245,228,6,0,242,240,23,203,38,98,7,0,245,112,34,250,13,32,9,0,245,112,34,250,195,32,9,0,246,112,78,15,138,115,8,0,246,112,78,15,117,124,8,0,246,112,78,15,105,133,8,0,251,112,109,3,21,121,10,0,251,240,136,194,116,240,10,0,254,240,209,159,236,26,7,0,0,241,123,233,47,1,7,0,0,241,123,233,57,10,7,0,2,241,70,145,13,201,5,0,2,113,213,57,38,253,8,0,2,113,213,57,173,253,8,0,2,241,114,97,176,128,9,0,2,241,114,97,196,128,9,0,3,113,127,226,189,170,7,0,5,113,109,136,131,139,6,0,5,113,117,49,125,44,7,0,8,241,31,202,193,45,7,0,8,241,31,202,242,45,7,0,8,113,89,105,122,234,9,0,8,113,89,105,135,234,9,0,11,113,122,58,143,80,6,0,12,241,34,76,117,37,7,0,13,241,21,131,80,32,7,0,14,241,143,6,117,79,7,0,15,113,163,4,123,236,9,0,18,241,128,82,247,55,7,0,19,113,213,44,212,77,9,0,19,113,213,44,34,78,9,0,19,241,4,168,83,84,10,0,26,241,102,188,107,103,11,0,27,113,248,127,155,67,7,0,29,113,18,60,160,234,8,0,29,113,18,60,175,235,8,0,31,241,30,34,12,234,6,0,32,241,81,87,50,51,7,0,32,241,217,55,118,8,8,0,33,241,137,62,119,225,6,0,33,241,41,129,42,19,8,0,36,241,224,62,113,117,6,0,37,113,83,212,141,255,8,0,37,113,83,212,235,255,8,0,38,113,148,118,218,113,9,0,38,113,148,118,120,114,9,0,39,241,90,215,100,228,6,0,39,113,58,166,247,55,7,0,40,241,208,134,123,236,9,0,43,113,132,4,11,46,6,0,44,113,23,22,197,43,7,0,44,113,23,22,30,44,7,0,44,113,9,224,188,184,10,0,45,241,237,41,117,37,7,0,47,241,110,215,172,145,6,0,48,241,217,144,217,35,7,0,49,241,216,129,171,240,5,0,49,113,44,122,99,66,8,0,52,113,243,228,174,51,7,0,52,113,227,77,165,59,10,0,53,113,251,64,204,213,9,0,54,113,247,96,220,150,7,0,54,113,215,8,118,226,8,0,54,113,215,8,72,228,8,0,54,113,247,96,212,218,9,0,54,113,247,96,9,219,9,0,54,113,247,96,69,219,9,0,55,241,225,195,212,243,6,0,57,113,126,24,254,243,5,0,57,113,231,242,179,17,7,0,57,113,126,24,153,89,7,0,58,113,5,56,152,111,7,0,58,113,5,56,200,122,7,0,59,113,181,148,32,68,6,0,59,113,181,148,129,41,7,0,61,113,73,91,28,68,9,0,61,113,73,91,215,68,9,0,63,113,129,184,17,71,7,0,63,113,205,22,224,146,8,0,63,113,205,22,132,150,8,0,63,113,68,16,160,234,8,0,63,113,68,16,175,235,8,0,66,113,18,175,141,255,8,0,66,113,18,175,235,255,8,0,66,113,212,12,64,56,10,0,67,113,30,37,71,236,6,0,68,241,119,84,15,233,8,0,68,241,119,84,139,233,8,0,68,241,25,30,177,156,10,0,70,113,62,15,90,175,8,0,70,113,62,15,74,176,8,0,70,241,73,187,123,236,9,0,74,113,190,37,38,98,7,0,74,113,81,117,112,5,10,0,74,113,81,117,28,6,10,0,75,241,10,80,185,55,10,0,75,241,171,77,145,238,10,0,75,241,171,77,167,238,10,0,76,241,159,219,175,103,11,0,78,241,139,36,136,58,7,0,79,241,228,209,10,204,6,0,79,241,84,187,210,101,11,0,81,241,39,60,240,226,6,0,82,113,128,151,71,236,6,0,83,113,164,177,82,235,6,0,87,241,166,40,112,27,7,0,89,113,234,223,65,16,11,0,91,241,213,48,123,236,9,0,96,113,17,125,167,71,7,0,97,241,240,12,197,43,7,0,97,241,240,12,30,44,7,0,101,241,202,208,131,11,11,0,104,241,164,112,38,253,8,0,104,241,164,112,173,253,8,0,107,113,225,18,38,98,7,0,111,241,159,28,136,58,7,0,113,241,8,112,119,243,5,0,117,113,59,127,224,146,8,0,117,113,59,127,132,150,8,0,118,113,98,229,224,146,8,0,118,113,98,229,132,150,8,0,119,241,177,94,135,90,9,0,119,241,177,94,124,91,9,0,119,241,80,32,213,41,10,0,119,241,80,32,87,42,10,0,121,241,2,22,139,158,8,0,121,241,2,22,224,163,8,0,122,241,189,246,118,226,8,0,122,241,189,246,72,228,8,0,126,113,10,174,245,28,10,0,126,113,10,174,145,31,10,0,128,241,135,239,230,215,6,0,131,113,230,223,123,236,9,0,133,113,26,174,2,73,11,0,136,113,58,150,130,251,5,0,138,113,157,38,35,9,8,0,139,241,246,24,136,58,7,0,140,113,189,5,142,166,6,0,140,113,242,47,81,239,8,0,140,113,242,47,40,240,8,0,142,241,229,14,123,236,9,0,146,113,199,227,117,37,7,0,147,241,185,13,254,243,5,0,147,241,185,13,153,89,7,0,148,241,77,122,71,236,6,0,149,113,83,197,171,49,7,0,149,241,179,52,38,98,7,0,151,241,204,254,84,21,8,0,151,241,54,66,164,92,11,0,153,113,42,128,36,30,11,0,156,241,107,158,152,111,7,0,158,113,185,178,162,50,7,0,160,113,135,218,194,211,6,0,160,113,14,190,152,111,7,0,160,113,14,190,62,124,7,0,160,241,52,178,201,80,8,0,161,241,0,175,171,49,7,0,162,241,163,172,54,35,8,0,164,241,168,135,247,55,7,0,166,241,121,196,165,9,9,0,166,241,121,196,221,9,9,0,166,241,121,196,22,10,9,0,166,241,189,28,135,90,9,0,166,241,189,28,124,91,9,0,166,241,99,153,214,196,10,0,169,241,192,148,78,156,6,0,169,113,226,223,212,243,6,0,170,113,33,14,117,37,7,0,170,241,0,93,254,68,7,0,173,113,223,247,71,236,6,0,173,113,97,210,139,158,8,0,173,113,97,210,224,163,8,0,173,113,255,4,211,171,10,0,176,113,88,108,179,62,11,0,179,113,56,61,128,8,7,0,181,241,107,50,117,37,7,0,184,113,93,117,117,37,7,0,185,241,113,2,235,72,11,0,186,113,62,145,171,63,7,0,188,241,171,71,222,163,6,0,188,241,96,180,138,115,8,0,188,241,96,180,117,124,8,0,188,241,96,180,105,133,8,0,188,241,96,180,3,157,8,0,188,241,96,180,180,157,8,0,189,113,122,213,100,71,7,0,191,113,132,149,39,65,9,0,191,113,132,149,161,65,9,0,191,113,132,149,21,66,9,0,191,113,132,149,188,66,9,0,191,113,132,149,85,67,9,0,192,241,48,125,136,58,7,0,193,241,116,27,57,171,8,0,193,241,116,27,133,172,8,0,193,241,116,27,211,173,8,0,194,113,72,219,232,124,10,0,195,113,227,101,71,236,6,0,196,113,41,236,20,103,11,0,197,113,243,0,212,243,6,0,197,113,153,95,219,1,7,0,198,113,248,123,138,115,8,0,198,113,248,123,117,124,8,0,198,113,248,123,105,133,8,0,198,241,148,66,40,217,8,0,198,241,148,66,209,217,8,0,198,241,225,80,32,135,10,0,198,241,225,80,231,137,10,0,201,113,103,160,117,79,7,0,202,241,78,197,237,231,6,0,202,241,182,109,179,181,7,0,204,241,165,36,175,42,6,0,204,241,87,117,172,213,6,0,204,241,87,117,226,43,9,0,204,241,87,117,66,44,9,0,204,241,87,117,167,44,9,0,204,241,87,117,5,45,9,0,204,241,87,117,108,45,9,0,206,113,194,32,77,217,5,0,206,113,194,32,83,81,11,0,208,241,147,202,219,1,7,0,210,113,180,148,191,43,6,0,211,113,11,185,102,179,6,0,211,241,106,45,179,222,8,0,211,241,106,45,152,223,8,0,212,113,128,192,118,226,8,0,212,113,128,192,72,228,8,0,213,113,175,212,5,59,6,0,213,241,185,133,136,58,7,0,214,113,230,61,90,7,7,0,216,241,200,120,135,252,6,0,216,241,200,120,194,252,6,0,216,113,127,205,65,16,11,0,217,113,17,150,74,204,5,0,217,113,17,150,140,204,5,0,217,241,63,51,86,43,11,0,219,241,29,232,159,65,6,0,223,113,22,130,111,228,10,0,224,113,236,70,205,151,9,0,224,113,236,70,199,152,9,0,224,113,236,70,220,153,9,0,226,113,167,201,90,7,7,0,228,241,86,82,237,73,7,0,228,241,86,82,220,12,10,0,228,241,86,82,22,13,10,0,228,113,151,41,175,96,11,0,229,113,151,97,237,73,7,0,230,113,224,93,227,108,7,0,230,113,224,93,10,28,10,0,230,113,224,93,74,28,10,0,230,113,224,93,134,28,10,0,234,241,30,194,38,98,7,0,236,113,73,129,32,78,11,0,238,241,210,28,224,146,8,0,238,241,210,28,132,150,8,0,238,241,16,103,99,156,10,0,239,113,5,138,237,73,7,0,241,113,25,102,56,190,5,0,246,113,44,230,146,235,6,0,247,241,180,41,230,215,6,0,247,113,103,194,123,121,10,0,248,241,64,225,237,73,7,0,249,241,77,251,154,210,5,0,249,241,252,7,66,245,10,0,254,113,30,86,180,193,5,0,2,242,197,97,191,55,7,0,5,242,60,247,215,38,11,0,5,242,60,247,12,41,11,0,5,242,60,247,60,54,11,0,9,242,149,129,20,90,6,0,9,242,58,206,71,236,6,0,11,114,217,49,117,37,7,0,12,242,141,178,155,84,10,0,13,242,233,13,66,230,6,0,15,242,151,153,195,48,7,0,17,114,236,198,118,226,8,0,17,114,236,198,72,228,8,0,18,242,104,101,215,16,10,0,18,242,104,101,135,17,10,0,18,114,8,123,200,93,10,0,20,114,5,49,125,44,7,0,20,114,5,49,193,167,9,0,20,114,5,49,37,168,9,0,20,114,5,49,37,168,9,0,21,114,147,241,54,218,6,0,23,242,0,4,71,236,6,0,23,242,229,223,138,115,8,0,23,242,229,223,117,124,8,0,23,242,229,223,105,133,8,0,26,114,163,126,252,220,10,0,27,242,91,15,90,53,7,0,28,242,215,241,123,236,9,0,28,242,195,139,3,21,11,0,30,114,156,255,146,235,6,0,31,114,134,101,247,55,7,0,31,114,10,186,160,234,8,0,31,114,10,186,175,235,8,0,34,114,215,58,64,193,9,0,35,114,197,127,110,220,10,0,36,242,43,109,71,21,11,0,39,114,121,225,115,86,6,0,39,114,77,230,232,191,8,0,39,114,77,230,162,193,8,0,40,242,187,186,136,58,7,0,41,114,86,219,40,115,6,0,44,114,133,94,154,131,6,0,45,114,110,211,237,73,7,0,46,242,126,133,29,5,7,0,46,242,147,179,199,145,7,0,47,242,216,96,237,73,7,0,51,242,167,193,68,249,10,0,55,114,123,143,71,236,6,0,58,242,22,242,247,55,7,0,58,242,6,240,237,73,7,0,59,114,157,38,131,197,5,0,60,114,108,129,139,158,8,0,60,114,108,129,224,163,8,0,62,242,140,194,197,43,7,0,62,242,140,194,30,44,7,0,65,242,136,4,180,28,7,0,71,114,13,50,165,108,9,0,71,114,13,50,214,108,9,0,71,114,13,50,27,109,9,0,73,242,96,111,165,11,9,0,73,242,96,111,58,12,9,0,75,242,147,146,212,243,6,0,75,242,166,108,223,143,7,0,75,242,166,108,41,57,8,0,76,242,180,214,9,255,7,0,79,114,209,43,20,15,7,0,79,114,209,43,179,17,7,0,82,114,81,28,232,191,8,0,82,114,81,28,162,193,8,0,85,114,175,171,151,21,7,0,87,242,143,219,228,59,10,0,88,114,125,150,11,170,6,0,89,242,59,198,138,115,8,0,89,242,59,198,117,124,8,0,89,242,59,198,105,133,8,0,93,242,80,190,235,189,7,0,93,114,149,12,221,38,10,0,93,114,149,12,62,40,10,0,95,242,38,240,155,67,7,0,96,242,155,201,105,129,6,0,97,242,75,43,212,21,9,0,97,242,75,43,31,22,9,0,97,242,75,43,103,22,9,0,100,242,250,3,247,214,6,0,100,242,252,244,237,73,7,0,100,242,102,65,232,251,9,0,100,242,102,65,176,252,9,0,100,114,14,41,65,101,11,0,101,242,44,8,44,90,10,0,107,114,183,22,171,63,7,0,107,114,239,127,3,157,8,0,107,114,239,127,180,157,8,0,109,242,83,120,247,55,7,0,109,242,53,26,123,236,9,0,111,242,56,98,113,24,7,0,113,114,196,148,163,201,6,0,117,242,183,6,152,133,6,0,118,114,166,221,180,28,7,0,120,114,120,55,160,203,5,0,120,242,217,24,36,14,6,0,120,242,250,126,63,83,6,0,120,242,226,135,123,236,9,0,120,242,5,136,24,117,10,0,121,242,249,241,155,67,7,0,123,114,204,106,88,154,10,0,125,114,61,126,139,158,8,0,125,114,61,126,224,163,8,0,125,114,158,101,150,227,10,0,127,114,123,204,197,253,6,0,127,242,35,227,139,158,8,0,127,242,35,227,224,163,8,0,131,114,207,187,80,32,7,0,131,114,207,187,94,151,10,0,132,114,150,155,136,58,7,0,134,242,181,72,68,202,6,0,140,242,202,114,54,233,6,0,143,242,35,231,20,15,7,0,143,242,35,231,179,17,7,0,143,242,40,76,72,204,9,0,144,114,101,185,152,111,7,0,144,114,101,185,84,53,8,0,144,242,25,101,51,214,8,0,144,242,25,101,241,214,8,0,144,242,25,101,169,215,8,0,150,114,28,231,38,98,7,0,152,242,151,21,55,188,5,0,152,114,213,146,221,168,7,0,153,114,171,55,68,151,7,0,153,242,244,57,123,236,9,0,154,242,122,85,71,236,6,0,154,242,212,155,117,79,7,0,154,114,168,198,123,236,9,0,155,242,114,86,254,243,5,0,155,242,114,86,153,89,7,0,155,242,13,154,215,16,10,0,155,242,13,154,135,17,10,0,156,242,39,117,96,254,8,0,156,242,39,117,157,254,8,0,156,114,77,249,90,76,11,0,157,114,181,17,139,158,8,0,157,114,181,17,224,163,8,0,158,114,60,51,245,51,11,0,159,242,178,118,59,76,6,0,160,242,148,244,81,239,8,0,160,242,148,244,40,240,8,0,161,242,94,59,212,243,6,0,162,242,219,218,97,196,10,0,165,242,146,103,191,75,10,0,166,114,110,61,148,35,11,0,172,114,87,157,47,180,7,0,172,114,230,218,29,204,8,0,172,114,230,218,6,205,8,0,174,114,44,116,204,213,9,0,176,114,225,120,29,204,8,0,176,114,225,120,6,205,8,0,178,114,6,195,237,73,7,0,179,114,222,64,13,162,6,0,179,242,100,141,185,198,6,0,179,114,148,127,38,98,7,0,180,242,148,18,23,101,11,0,182,114,114,147,202,116,9,0,182,114,114,147,253,116,9,0,183,242,161,254,246,152,10,0,185,242,232,56,33,65,7,0,185,242,91,155,88,129,7,0,187,114,119,103,215,246,10,0,188,114,108,74,138,115,8,0,188,114,108,74,117,124,8,0,188,114,108,74,105,133,8,0,191,242,60,144,88,94,10,0,192,242,181,179,180,28,7,0,192,242,26,73,191,55,7,0,192,114,69,99,117,79,7,0,192,242,26,73,152,111,7,0,192,242,26,73,238,127,7,0,192,114,34,115,28,68,9,0,192,114,34,115,215,68,9,0,193,242,198,95,51,255,9,0,193,242,198,95,139,255,9,0,193,242,198,95,226,255,9,0,194,242,173,125,41,72,10,0,195,114,178,111,51,241,8,0,195,114,178,111,198,241,8,0,199,242,2,126,152,229,6,0,199,242,167,140,149,236,10,0,202,114,123,240,60,182,7,0,202,242,73,97,204,213,9,0,203,114,117,60,117,37,7,0,204,242,103,67,29,5,7,0,207,242,53,222,123,236,9,0,208,114,81,242,38,98,7,0,209,114,72,58,134,201,10,0,210,242,48,157,28,185,6,0,211,242,229,233,138,115,8,0,211,242,229,233,117,124,8,0,211,242,229,233,105,133,8,0,213,242,165,100,250,154,10,0,216,114,54,162,71,236,6,0,218,114,47,193,199,112,6,0,220,114,114,83,253,208,8,0,220,114,114,83,22,211,8,0,223,114,52,27,90,53,7,0,223,242,82,202,33,104,11,0,224,242,176,152,17,105,10,0,226,114,147,145,99,42,7,0,229,242,12,123,250,66,6,0,230,242,127,86,254,216,6,0,230,242,21,142,160,247,10,0,232,114,105,34,145,31,6,0,235,114,69,145,71,236,6,0,235,114,170,101,224,146,8,0,235,114,170,101,132,150,8,0,237,242,165,122,71,236,6,0,238,242,62,220,116,128,6,0,238,114,128,165,117,79,7,0,238,114,11,42,152,111,7,0,238,114,11,42,103,201,8,0,238,114,11,42,132,201,8,0,238,114,128,165,100,229,10,0,240,242,82,121,115,7,10,0,240,242,82,121,190,7,10,0,240,242,82,121,10,8,10,0,245,242,13,234,117,79,7,0,245,114,62,104,121,97,7,0,249,114,93,138,254,254,6,0,250,114,154,107,179,17,7,0,250,114,54,131,99,66,8,0,250,114,154,107,75,1,9,0,250,114,154,107,75,1,9,0,250,114,154,107,75,1,9,0,250,114,154,107,75,1,9,0,250,114,154,107,154,2,9,0,250,114,154,107,154,2,9,0,250,114,154,107,154,2,9,0,250,114,154,107,154,2,9,0,250,114,154,107,235,3,9,0,250,114,154,107,235,3,9,0,250,114,154,107,235,3,9,0,250,114,154,107,235,3,9,0,250,114,154,107,65,5,9,0,250,114,154,107,65,5,9,0,250,114,154,107,65,5,9,0,250,114,154,107,65,5,9,0,251,242,60,48,236,51,7,0,252,242,195,113,224,146,8,0,252,242,195,113,132,150,8,0,252,114,131,25,111,228,10,0,253,114,218,150,45,120,10,0,254,242,51,54,152,111,7,0,254,114,192,229,123,236,9,0,254,242,51,54,10,43,10,0,254,242,51,54,39,43,10,0,1,115,53,41,146,38,8,0,1,115,53,41,209,38,8,0,1,115,53,41,6,39,8,0,2,115,148,19,171,63,7,0,3,243,5,169,0,203,6,0,3,115,71,105,243,6,7,0,11,243,150,159,66,144,10,0,12,243,198,207,117,79,7,0,13,243,70,136,71,236,6,0,15,243,225,92,180,144,8,0,15,243,225,92,67,145,8,0,16,243,100,66,129,254,5,0,16,243,105,24,38,98,7,0,16,243,233,45,141,230,9,0,16,243,233,45,141,230,9,0,16,243,233,45,217,230,9,0,16,243,233,45,217,230,9,0,20,243,141,149,142,161,10,0,21,115,151,60,160,234,8,0,21,115,151,60,175,235,8,0,22,115,231,54,193,82,6,0,22,115,20,141,109,231,6,0,22,243,73,97,71,236,6,0,22,115,255,250,159,92,9,0,22,115,255,250,5,93,9,0,23,115,11,55,57,10,7,0,27,243,171,171,197,253,6,0,31,115,181,148,166,233,7,0,31,115,181,148,226,233,7,0,33,115,132,89,135,74,8,0,33,243,202,205,103,245,8,0,33,243,202,205,151,245,8,0,34,243,15,109,117,79,7,0,34,243,113,223,139,158,8,0,34,243,113,223,224,163,8,0,37,115,94,56,28,217,10,0,39,115,9,231,79,9,8,0,41,115,167,172,138,115,8,0,41,115,167,172,117,124,8,0,41,115,167,172,105,133,8,0,42,243,28,221,0,190,8,0,42,243,28,221,168,190,8,0,44,243,81,171,141,230,9,0,44,243,81,171,217,230,9,0,46,115,210,144,245,28,10,0,46,115,210,144,145,31,10,0,47,243,247,115,224,146,8,0,47,243,247,115,132,150,8,0,48,115,15,108,255,87,6,0,49,243,233,247,179,17,7,0,50,243,156,124,22,2,8,0,51,243,184,163,80,32,7,0,51,243,147,124,39,65,9,0,51,243,147,124,161,65,9,0,51,243,147,124,21,66,9,0,51,243,147,124,188,66,9,0,51,243,147,124,85,67,9,0,53,115,203,6,138,115,8,0,53,115,203,6,117,124,8,0,53,115,203,6,105,133,8,0,54,243,7,229,112,27,7,0,54,115,111,168,117,79,7,0,55,115,85,23,216,221,6,0,55,243,15,126,166,93,7,0,56,243,7,229,112,27,7,0,57,243,123,45,66,230,6,0,60,243,48,204,2,23,7,0,60,115,201,224,123,236,9,0,61,115,134,91,107,210,6,0,61,243,106,144,244,196,10,0,63,115,195,148,183,213,8,0,63,115,195,148,237,213,8,0,65,243,187,148,185,195,5,0,65,243,187,148,28,156,6,0,66,243,210,251,71,236,6,0,69,115,216,55,117,37,7,0,70,115,193,87,39,65,9,0,70,115,193,87,161,65,9,0,70,115,193,87,21,66,9,0,70,115,193,87,188,66,9,0,70,115,193,87,85,67,9,0,71,115,197,41,38,98,7,0,74,115,214,99,50,28,11,0,76,115,154,86,61,161,6,0,76,243,158,38,247,55,7,0,77,115,242,89,113,24,7,0,77,115,22,139,38,98,7,0,78,243,80,95,180,10,6,0,78,243,80,95,26,101,8,0,78,243,80,95,81,101,8,0,85,115,28,71,255,179,8,0,85,115,28,71,110,180,8,0,85,115,200,147,15,233,8,0,85,115,200,147,139,233,8,0,86,243,225,84,152,111,7,0,86,243,225,84,62,124,7,0,86,243,121,52,253,208,8,0,86,243,121,52,22,211,8,0,91,115,205,220,213,147,10,0,93,115,243,160,117,79,7,0,94,243,163,234,115,43,7,0,94,243,10,172,138,115,8,0,94,243,10,172,117,124,8,0,94,243,10,172,105,133,8,0,95,115,113,220,212,21,9,0,95,115,113,220,31,22,9,0,95,115,113,220,103,22,9,0,97,243,180,3,117,79,7,0,99,115,97,159,138,115,8,0,99,115,97,159,117,124,8,0,99,115,97,159,105,133,8,0,100,243,111,167,71,236,6,0,104,115,231,242,121,97,7,0,104,115,239,174,118,226,8,0,104,115,239,174,72,228,8,0,105,243,151,229,112,5,10,0,105,243,151,229,28,6,10,0,110,243,66,129,66,230,6,0,110,243,29,149,236,51,7,0,111,243,140,129,249,23,7,0,111,243,140,129,19,24,7,0,112,115,15,219,65,135,10,0,115,115,245,53,117,79,7,0,115,115,30,62,250,57,8,0,119,115,110,221,30,171,9,0,120,243,243,37,71,236,6,0,121,115,136,50,38,98,7,0,121,115,25,129,152,111,7,0,121,115,25,129,84,53,8,0,124,115,226,244,187,200,5,0,125,243,113,89,19,129,6,0,125,243,59,111,169,35,8,0,125,115,130,215,51,214,8,0,125,115,130,215,241,214,8,0,125,115,130,215,169,215,8,0,126,243,127,124,194,7,6,0,126,243,127,124,130,227,6,0,128,115,217,34,189,221,10,0,128,115,161,30,128,101,11,0,129,115,80,203,204,214,5,0,129,115,80,203,202,136,6,0,129,115,80,203,27,183,6,0,129,243,64,135,230,130,7,0,129,115,80,203,95,28,9,0,129,115,80,203,122,28,9,0,130,115,226,212,117,79,7,0,130,115,234,126,0,200,10,0,132,243,192,252,179,17,7,0,132,243,192,252,164,25,7,0,134,243,250,223,63,14,9,0,134,243,250,223,116,14,9,0,134,243,59,51,104,244,9,0,134,243,59,51,251,244,9,0,134,243,59,51,146,245,9,0,137,115,111,149,152,111,7,0,139,115,2,140,94,208,6,0,140,115,145,25,31,178,6,0,142,243,97,250,13,205,6,0,142,243,97,250,247,214,6,0,142,243,149,248,123,236,9,0,146,115,169,44,224,146,8,0,146,115,169,44,132,150,8,0,147,243,76,32,165,154,7,0,149,243,25,97,167,71,7,0,149,115,52,163,138,115,8,0,149,115,52,163,117,124,8,0,149,115,52,163,105,133,8,0,151,243,83,77,212,243,6,0,158,115,168,111,117,79,7,0,159,243,173,189,3,157,8,0,159,243,173,189,180,157,8,0,159,243,234,59,90,175,8,0,159,243,234,59,74,176,8,0,160,115,162,114,60,246,5,0,160,243,5,211,136,146,7,0,161,115,233,26,123,236,9,0,162,243,173,185,33,65,7,0,162,243,18,49,150,27,11,0,163,115,144,144,188,52,9,0,164,243,53,85,236,213,6,0,165,243,217,137,232,79,6,0,166,243,218,122,226,154,9,0,166,243,218,122,114,155,9,0,167,243,144,16,97,102,6,0,167,243,139,170,125,44,7,0,168,115,81,242,197,167,7,0,168,243,93,243,30,171,9,0,169,115,199,83,71,236,6,0,169,243,206,88,227,108,7,0,172,115,0,128,122,73,7,0,172,115,0,128,158,73,7,0,174,243,39,159,179,17,7,0,174,243,39,159,125,44,7,0,175,243,131,103,206,87,9,0,175,243,131,103,25,88,9,0,175,115,199,213,61,223,10,0,176,115,132,174,185,198,6,0,178,243,133,128,158,177,6,0,180,243,103,205,38,98,7,0,182,243,114,140,65,201,9,0,182,243,114,140,91,201,9,0,184,243,36,230,80,32,7,0,187,243,34,34,231,211,5,0,187,243,9,208,186,106,6,0,187,243,34,34,20,15,7,0,187,243,34,34,179,17,7,0,189,115,183,243,71,236,6,0,191,243,217,88,255,179,8,0,191,243,217,88,110,180,8,0,192,115,48,99,136,58,7,0,196,115,22,126,38,98,7,0,198,115,251,15,0,190,8,0,198,115,251,15,168,190,8,0,200,243,39,142,144,127,6,0,200,243,216,204,179,222,8,0,200,243,216,204,152,223,8,0,200,115,211,91,123,236,9,0,203,243,12,163,170,125,10,0,204,243,94,19,254,254,6,0,204,243,94,19,23,83,10,0,205,115,74,239,94,166,7,0,205,115,68,250,100,134,10,0,206,115,166,17,132,215,6,0,206,115,166,17,237,73,7,0,210,243,236,197,212,243,6,0,211,115,192,191,29,191,7,0,211,243,113,22,205,151,9,0,211,243,113,22,199,152,9,0,211,243,113,22,220,153,9,0,212,243,53,174,232,25,7,0,213,115,15,179,85,221,5,0,213,115,115,50,75,1,9,0,213,115,115,50,154,2,9,0,213,115,115,50,235,3,9,0,213,115,115,50,65,5,9,0,215,115,66,10,138,115,8,0,215,115,66,10,117,124,8,0,215,115,66,10,105,133,8,0,217,115,19,68,106,200,10,0,218,243,229,7,165,11,9,0,218,243,229,7,58,12,9,0,220,243,70,50,46,44,6,0,220,243,70,50,66,44,6,0,221,115,88,83,194,170,10,0,223,115,82,217,171,86,6,0,223,115,82,217,228,88,6,0,223,115,82,217,94,249,7,0,223,115,82,217,128,249,7,0,223,115,82,217,164,249,7,0,225,243,29,248,9,255,5,0,226,243,12,171,90,53,7,0,228,243,95,78,49,120,7,0,232,243,85,170,57,10,7,0,232,115,136,93,237,73,7,0,233,243,134,154,138,115,8,0,233,243,134,154,117,124,8,0,233,243,134,154,105,133,8,0,236,115,213,26,29,5,7,0,237,243,242,55,133,220,6,0,238,243,185,80,195,39,8,0,238,243,22,242,81,239,8,0,238,243,22,242,40,240,8,0,238,243,185,80,112,64,11,0,238,243,185,80,126,64,11,0,240,115,137,42,123,236,9,0,242,243,74,45,0,190,8,0,242,243,74,45,168,190,8,0,242,243,42,68,215,16,10,0,242,243,42,68,135,17,10,0,242,243,242,59,195,83,10,0,243,115,247,242,80,207,5,0,243,115,19,151,58,21,6,0,243,243,192,148,187,218,6,0,245,115,239,199,2,23,7,0,245,243,49,19,180,144,8,0,245,243,49,19,67,145,8,0,245,115,8,31,211,127,9,0,245,115,8,31,240,127,9,0,245,115,8,31,36,128,9,0,246,243,43,204,200,6,9,0,246,243,43,204,117,7,9,0,249,115,152,113,212,162,6,0,249,243,80,60,197,253,6,0,249,115,125,143,240,23,8,0,251,243,143,54,230,70,7,0,252,243,95,78,34,182,10,0,253,243,208,169,38,98,7,0,255,243,204,248,117,79,7,0,0,244,127,162,152,111,7,0,0,244,127,162,84,53,8,0,0,116,119,14,77,217,10,0,0,116,119,14,199,219,10,0,1,116,148,190,152,111,7,0,1,116,148,190,173,169,8,0,1,244,105,167,93,118,10,0,2,244,218,7,245,28,10,0,2,244,218,7,145,31,10,0,3,116,207,110,118,214,6,0,3,244,134,35,109,251,10,0,8,116,234,244,94,40,9,0,8,116,234,244,119,40,9,0,8,244,114,69,180,149,10,0,9,244,46,215,117,37,7,0,10,244,192,1,123,236,9,0,10,116,184,168,196,62,10,0,10,116,120,129,253,147,10,0,13,244,243,54,180,28,7,0,17,244,194,121,138,115,8,0,17,244,194,121,117,124,8,0,17,244,194,121,105,133,8,0,18,116,17,249,13,32,9,0,18,116,17,249,195,32,9,0,20,244,18,197,57,171,8,0,20,244,18,197,133,172,8,0,20,244,18,197,211,173,8,0,21,116,71,102,208,137,10,0,21,244,10,29,245,202,10,0,23,116,125,153,212,243,6,0,24,116,116,178,165,65,10,0,27,116,252,181,30,171,9,0,29,244,47,249,220,215,7,0,30,244,249,111,245,220,5,0,30,244,212,154,204,58,10,0,31,116,128,243,131,61,6,0,31,116,128,243,198,62,6,0,31,116,128,243,128,55,8,0,32,116,101,210,245,28,10,0,32,116,101,210,145,31,10,0,34,116,148,21,239,198,10,0,34,116,148,21,127,209,10,0,37,116,186,148,112,250,5,0,38,244,184,146,237,73,7,0,39,116,205,128,28,68,9,0,39,116,205,128,215,68,9,0,41,116,220,16,63,39,6,0,41,244,228,211,117,37,7,0,41,244,223,224,75,1,9,0,41,244,223,224,154,2,9,0,41,244,223,224,235,3,9,0,41,244,223,224,65,5,9,0,42,116,86,213,237,73,7,0,42,244,203,208,218,200,10,0,43,244,113,27,118,226,8,0,43,244,113,27,72,228,8,0,43,116,196,148,59,46,11,0,45,244,162,23,80,167,9,0,45,244,162,23,37,168,9,0,45,244,138,248,227,42,11,0,50,116,123,50,88,129,7,0,58,116,110,154,237,73,7,0,61,244,1,189,63,25,7,0,61,116,222,40,3,157,8,0,61,116,222,40,180,157,8,0,63,116,223,124,237,3,8,0,65,116,140,129,38,98,7,0,66,244,0,3,186,77,11,0,71,244,97,153,152,111,7,0,71,244,97,153,131,117,7,0,71,244,97,153,148,117,7,0,72,116,149,131,45,44,11,0,78,244,219,130,212,243,6,0,80,244,237,250,136,58,7,0,84,244,56,118,70,33,6,0,85,244,232,190,236,51,7,0,85,116,198,160,141,195,8,0,85,116,198,160,112,196,8,0,85,116,198,160,75,197,8,0,85,116,186,46,123,236,9,0,86,244,49,95,90,53,7,0,86,244,220,221,160,234,8,0,86,244,220,221,175,235,8,0,86,116,142,28,112,137,9,0,86,116,142,28,136,137,9,0,87,116,101,70,143,75,10,0,88,244,27,126,212,243,6,0,88,244,50,204,151,64,10,0,88,244,10,214,169,21,11,0,89,116,67,143,22,62,10,0,91,116,174,133,34,10,10,0,92,116,243,126,246,213,5,0,92,244,4,179,183,127,6,0,93,116,171,145,28,163,10,0,94,244,25,204,29,5,7,0,95,244,193,41,38,98,7,0,95,244,209,208,38,98,7,0,95,244,91,113,157,60,8,0,97,244,130,215,212,243,6,0,97,244,21,99,26,0,7,0,98,116,197,111,242,195,6,0,99,116,10,31,29,204,8,0,99,116,10,31,6,205,8,0,101,116,210,241,99,42,7,0,102,116,244,52,49,56,6,0,102,244,111,150,240,226,6,0,102,116,239,184,123,236,9,0,102,244,114,75,249,120,10,0,103,116,3,163,38,98,7,0,104,244,79,29,245,28,10,0,104,244,79,29,145,31,10,0,105,116,233,170,245,28,10,0,105,116,233,170,145,31,10,0,107,244,219,128,215,195,5,0,109,244,118,246,114,209,6,0,109,116,244,53,212,243,6,0,111,116,17,2,253,208,8,0,111,116,17,2,22,211,8,0,111,116,183,248,128,158,10,0,111,116,183,248,3,167,10,0,115,244,19,60,153,11,7,0,115,116,165,15,50,51,7,0,117,244,197,194,107,15,11,0,117,244,197,194,179,27,11,0,119,116,11,251,152,111,7,0,119,116,11,251,206,62,8,0,119,116,11,251,99,63,8,0,119,116,11,251,4,64,8,0,119,116,11,251,73,218,9,0,121,244,239,31,237,73,7,0,122,116,7,216,133,218,10,0,124,244,106,134,117,37,7,0,125,116,108,252,5,47,6,0,125,244,252,249,153,11,7,0,126,116,130,217,234,187,8,0,126,116,130,217,25,188,8,0,127,116,37,33,237,73,7,0,131,244,177,72,65,240,5,0,131,244,177,72,89,240,5,0,131,116,226,89,152,111,7,0,131,116,226,89,173,169,8,0,132,244,33,227,31,213,5,0,132,244,161,76,226,154,9,0,132,244,161,76,114,155,9,0,132,116,40,41,119,18,11,0,132,116,40,41,140,18,11,0,134,244,249,3,138,115,8,0,134,244,249,3,117,124,8,0,134,244,249,3,105,133,8,0,135,116,9,156,212,243,6,0,135,116,71,246,117,37,7,0,135,116,71,246,209,40,7,0,136,244,77,248,38,98,7,0,140,116,216,50,38,98,7,0,140,116,43,36,81,253,7,0,140,244,189,251,245,28,10,0,140,244,189,251,145,31,10,0,143,244,46,101,113,232,6,0,143,116,163,186,117,79,7,0,147,116,113,204,70,118,10,0,147,116,113,204,94,124,10,0,154,116,80,230,109,172,9,0,154,116,80,230,178,173,9,0,154,116,80,230,250,174,9,0,155,244,142,89,135,164,7,0,156,116,179,9,174,202,7,0,158,116,215,221,135,252,6,0,158,116,215,221,194,252,6,0,163,244,87,128,38,98,7,0,167,116,177,26,33,235,6,0,168,244,233,254,138,115,8,0,168,244,233,254,117,124,8,0,168,244,233,254,105,133,8,0,178,116,139,121,153,190,6,0,178,244,202,71,197,253,6,0,179,116,148,88,109,249,5,0,181,116,140,151,179,17,7,0,181,116,247,142,245,74,10,0,181,116,247,142,64,75,10,0,184,116,43,215,14,95,6,0,184,244,12,125,153,11,7,0,184,244,12,125,135,13,7,0,191,244,8,181,57,10,7,0,192,244,221,173,250,202,5,0,192,116,13,229,54,233,6,0,195,116,81,242,27,32,7,0,199,116,57,34,122,130,6,0,199,116,0,60,129,26,8,0,201,116,41,122,164,113,8,0,204,116,210,176,136,58,7,0,205,116,255,137,152,111,7,0,205,116,255,137,215,120,7,0,205,116,214,98,180,144,8,0,205,116,214,98,67,145,8,0,206,244,193,193,49,200,6,0,206,116,45,139,123,236,9,0,212,244,181,127,152,111,7,0,213,244,78,137,179,17,7,0,216,244,158,11,15,206,6,0,216,244,123,181,35,133,7,0,217,244,45,214,210,224,6,0,218,116,25,40,12,213,6,0,218,116,81,242,228,109,9,0,218,116,81,242,248,110,9,0,220,244,186,2,172,82,6,0,221,244,229,50,138,115,8,0,221,244,229,50,117,124,8,0,221,244,229,50,105,133,8,0,225,244,207,86,117,79,7,0,226,116,184,165,207,3,6,0,226,116,143,61,138,115,10,0,228,244,235,118,71,236,6,0,229,116,42,40,112,27,7,0,229,244,192,167,80,32,7,0,229,116,42,40,88,24,10,0,231,244,173,67,84,21,8,0,232,116,34,176,54,218,6,0,234,116,210,233,104,71,6,0,234,116,210,233,155,86,6,0,237,244,159,30,63,39,6,0,237,244,214,2,227,108,7,0,240,244,209,54,135,90,9,0,240,244,209,54,124,91,9,0,241,244,182,183,219,1,7,0,243,244,111,251,184,233,10,0,244,116,224,85,4,138,6,0,245,116,156,94,197,43,7,0,245,116,156,94,30,44,7,0,246,116,173,150,152,111,7,0,247,244,100,34,162,50,7,0,248,116,113,143,117,79,7,0,248,244,211,252,245,28,10,0,248,244,211,252,145,31,10,0,250,116,102,209,35,244,10,0,250,116,102,209,78,244,10,0,4,117,208,118,151,191,9,0,4,117,208,118,189,191,9,0,6,245,153,65,74,102,10,0,8,245,44,221,199,145,7,0,9,245,34,202,243,11,6,0,9,245,34,202,52,12,6,0,9,117,30,182,159,162,7,0,11,117,78,103,27,223,6,0,11,245,76,172,71,236,6,0,11,117,2,146,144,3,7,0,12,245,83,219,126,39,6,0,13,245,224,224,195,99,10,0,14,245,108,175,77,96,10,0,14,245,108,175,91,99,10,0,15,245,74,210,235,136,7,0,21,117,124,1,23,232,5,0,21,117,60,207,180,28,7,0,25,245,130,218,22,99,6,0,25,245,7,105,0,190,8,0,25,245,7,105,168,190,8,0,29,245,200,6,180,144,8,0,29,245,200,6,67,145,8,0,30,245,13,208,221,38,10,0,30,245,13,208,62,40,10,0,30,117,31,7,237,203,10,0,31,117,152,210,164,69,10,0,32,245,254,166,119,20,8,0,32,245,254,166,150,20,8,0,33,245,244,205,138,115,8,0,33,245,244,205,117,124,8,0,33,245,244,205,105,133,8,0,33,117,80,18,4,138,10,0,34,117,76,231,206,218,5,0,37,117,251,3,102,179,6,0,37,117,60,56,97,64,10,0,38,117,229,12,71,236,6,0,38,117,158,13,214,7,7,0,41,245,178,180,29,69,7,0,42,117,234,222,120,71,6,0,46,117,53,12,219,210,7,0,48,245,98,51,136,58,7,0,50,245,157,167,212,243,6,0,52,245,73,55,194,253,5,0,52,245,227,57,71,236,6,0,55,117,85,218,95,204,10,0,56,245,182,201,179,17,7,0,56,117,247,33,136,58,7,0,58,245,208,195,138,115,8,0,58,245,208,195,117,124,8,0,58,245,208,195,105,133,8,0,59,117,187,129,117,212,6,0,59,117,204,197,179,17,7,0,59,245,201,148,80,32,7,0,60,117,241,231,239,138,6,0,60,245,207,41,123,236,9,0,62,245,254,32,246,205,8,0,62,245,254,32,155,206,8,0,64,245,146,22,72,202,8,0,64,245,146,22,175,202,8,0,65,117,104,43,3,157,8,0,65,117,104,43,180,157,8,0,67,245,162,27,117,37,7,0,70,117,144,86,113,24,7,0,72,245,55,127,123,236,9,0,74,117,245,9,137,52,6,0,74,117,245,9,84,21,8,0,74,245,10,131,114,243,8,0,74,245,10,131,37,244,8,0,75,117,59,240,219,1,7,0,77,245,131,68,63,14,9,0,77,245,131,68,116,14,9,0,77,245,52,1,194,236,10,0,79,245,218,107,113,232,6,0,79,117,22,71,167,71,7,0,81,117,99,158,191,233,5,0,85,245,180,214,226,37,9,0,85,245,180,214,249,37,9,0,86,245,245,80,218,22,11,0,88,245,160,207,236,95,10,0,90,245,178,229,133,220,6,0,90,117,223,47,103,49,11,0,91,245,172,195,105,21,6,0,91,117,213,159,217,62,7,0,92,117,98,0,245,59,8,0,92,245,151,253,30,171,9,0,93,245,88,165,138,115,8,0,93,245,88,165,117,124,8,0,93,245,88,165,105,133,8,0,94,117,177,59,15,91,6,0,94,117,177,59,243,69,7,0,96,245,78,104,171,247,5,0,96,245,78,104,191,90,7,0,97,117,98,171,123,236,9,0,98,117,222,150,234,187,5,0,98,245,142,172,163,15,6,0,98,245,232,127,212,243,6,0,101,245,246,121,192,126,6,0,103,245,175,158,224,146,8,0,103,245,175,158,132,150,8,0,105,117,218,203,38,98,7,0,108,117,21,91,138,115,8,0,108,117,21,91,117,124,8,0,108,117,21,91,105,133,8,0,108,245,42,216,243,179,10,0,110,245,37,215,226,154,9,0,110,245,37,215,114,155,9,0,111,245,118,87,133,220,6,0,112,245,148,30,167,71,7,0,113,245,201,71,29,5,7,0,113,117,146,115,117,79,7,0,113,117,33,90,253,124,9,0,113,117,33,90,20,125,9,0,117,245,13,86,185,198,6,0,121,245,71,109,20,15,7,0,121,245,71,109,179,17,7,0,121,117,171,58,189,196,9,0,121,117,171,58,223,196,9,0,121,117,171,58,254,196,9,0,122,245,5,90,38,98,7,0,123,117,245,37,107,201,10,0,124,245,3,243,17,184,10,0,125,117,188,55,151,21,7,0,128,245,55,176,71,236,6,0,131,117,76,117,226,154,9,0,131,117,76,117,114,155,9,0,133,117,84,151,219,1,7,0,133,117,219,20,117,37,7,0,135,245,245,129,237,73,7,0,136,245,153,79,38,98,7,0,138,245,127,84,20,15,7,0,138,245,127,84,179,17,7,0,140,117,17,126,117,37,7,0,141,117,53,28,90,199,7,0,141,117,53,28,148,199,7,0,141,117,53,28,216,199,7,0,141,117,53,28,29,200,7,0,142,117,246,217,212,243,6,0,142,117,230,32,91,111,7,0,142,117,230,32,122,248,9,0,142,117,230,32,144,248,9,0,144,117,127,12,78,203,8,0,144,117,4,178,3,148,9,0,144,117,4,178,24,148,9,0,144,117,4,178,49,148,9,0,146,245,134,193,12,245,8,0,146,245,134,193,29,245,8,0,150,245,169,151,122,180,6,0,150,245,254,252,115,7,10,0,150,245,254,252,190,7,10,0,150,245,254,252,10,8,10,0,152,245,96,237,136,58,7,0,152,117,118,14,104,15,10,0,152,117,118,14,169,15,10,0,154,117,114,148,103,46,7,0,154,117,158,168,141,255,8,0,154,117,158,168,235,255,8,0,157,117,94,122,2,199,9,0,157,117,94,122,169,199,9,0,158,245,204,85,36,118,6,0,160,245,22,21,110,221,7,0,164,117,222,87,27,119,9,0,164,117,222,87,102,119,9,0,165,117,109,151,114,209,6,0,166,117,100,27,32,30,7,0,166,117,252,105,159,218,8,0,166,117,252,105,187,218,8,0,168,245,247,89,72,204,9,0,172,245,194,159,253,210,6,0,172,245,118,61,245,28,10,0,172,245,118,61,145,31,10,0,173,117,106,219,84,21,8,0,176,245,184,117,249,230,10,0,181,117,42,254,170,203,10,0,184,245,39,160,57,171,8,0,184,245,39,160,133,172,8,0,184,245,39,160,211,173,8,0,185,117,226,104,71,236,6,0,185,117,21,85,152,74,10,0,186,117,116,120,138,115,8,0,186,117,116,120,117,124,8,0,186,117,116,120,105,133,8,0,187,245,250,137,114,18,6,0,187,245,250,137,155,67,7,0,189,245,171,11,136,49,6,0,195,117,206,192,218,203,6,0,197,245,159,124,23,179,8,0,197,245,159,124,119,179,8,0,198,117,30,118,245,28,10,0,198,117,30,118,145,31,10,0,199,117,179,55,123,236,9,0,204,117,91,21,53,221,5,0,207,117,191,191,96,110,10,0,209,117,120,79,149,66,11,0,210,245,22,50,68,213,5,0,210,117,160,219,104,145,7,0,212,245,47,93,229,69,11,0,216,117,46,245,80,32,7,0,217,245,12,98,238,137,7,0,222,117,94,69,71,236,6,0,227,245,6,148,237,231,6,0,229,117,101,20,139,214,9,0,229,117,101,20,234,214,9,0,229,117,101,20,70,215,9,0,230,117,197,39,180,144,8,0,230,117,197,39,67,145,8,0,236,245,25,187,175,26,7,0,237,245,191,85,138,115,8,0,237,245,191,85,117,124,8,0,237,245,191,85,105,133,8,0,237,245,65,202,75,1,9,0,237,245,65,202,154,2,9,0,237,245,65,202,235,3,9,0,237,245,65,202,65,5,9,0,237,245,118,126,36,247,9,0,237,245,118,126,62,247,9,0,237,245,118,126,87,247,9,0,239,245,31,171,143,215,5,0,239,117,183,131,140,66,7,0,239,117,183,131,234,66,7,0,243,245,78,139,254,254,6,0,243,117,229,114,38,98,7,0,247,245,0,44,40,213,6,0,249,245,182,114,152,111,7,0,250,245,40,129,153,207,8,0,250,245,40,129,44,208,8,0,253,117,250,55,66,230,6,0,1,118,121,134,217,62,7,0,1,246,239,211,237,73,7,0,2,246,140,125,201,92,6,0,2,118,5,199,142,176,10,0,3,118,215,22,161,146,6,0,7,246,175,236,38,98,7,0,8,246,246,33,50,51,7,0,9,246,254,110,72,202,8,0,9,246,254,110,175,202,8,0,9,246,119,101,75,58,11,0,10,246,254,193,136,58,7,0,13,246,75,203,179,181,7,0,13,118,39,189,253,208,8,0,13,118,39,189,22,211,8,0,13,246,39,189,51,241,8,0,13,246,39,189,198,241,8,0,16,246,116,200,138,115,8,0,16,246,116,200,117,124,8,0,16,246,116,200,105,133,8,0,16,118,186,225,84,117,9,0,16,118,186,225,114,117,9,0,17,246,97,191,179,17,7,0,17,246,97,191,51,214,8,0,17,246,97,191,241,214,8,0,17,246,97,191,169,215,8,0,18,246,203,142,117,79,7,0,18,246,32,150,224,96,11,0,21,246,112,109,13,32,9,0,21,246,112,109,195,32,9,0,26,246,205,184,146,235,6,0,29,246,179,151,27,197,10,0,32,246,128,94,68,95,8,0,33,118,120,75,90,53,7,0,34,246,167,196,253,208,8,0,34,246,167,196,22,211,8,0,37,246,164,112,71,236,6,0,39,118,228,172,80,32,7,0,39,246,24,175,177,31,9,0,39,246,24,175,200,31,9,0,43,118,100,173,212,243,6,0,43,246,116,112,138,115,8,0,43,246,116,112,117,124,8,0,43,246,116,112,105,133,8,0,44,118,169,143,136,58,7,0,44,118,72,48,38,98,7,0,44,118,60,166,138,115,8,0,44,118,60,166,117,124,8,0,44,118,60,166,105,133,8,0,52,118,176,55,4,189,6,0,53,246,95,195,237,73,7,0,55,118,72,235,232,124,10,0,59,246,106,148,170,73,6,0,59,118,255,52,234,164,10,0,60,118,107,137,6,101,6,0,64,118,220,49,130,227,6,0,65,118,197,79,179,17,7,0,65,118,197,79,86,180,7,0,67,246,211,227,30,220,10,0,70,246,226,195,95,69,10,0,71,118,74,136,38,98,7,0,72,118,83,55,167,107,7,0,72,118,83,55,252,120,7,0,73,246,172,6,65,15,8,0,74,246,60,129,97,156,6,0,75,246,242,112,83,205,6,0,75,118,252,162,53,84,10,0,79,246,153,79,90,53,7,0,79,118,243,1,61,14,10,0,79,118,243,1,96,14,10,0,79,118,35,25,221,38,10,0,79,118,35,25,62,40,10,0,81,246,104,188,88,181,6,0,81,118,45,108,4,69,11,0,82,246,174,250,69,105,6,0,83,246,16,47,117,79,7,0,84,118,166,174,217,35,7,0,85,246,22,236,212,243,6,0,86,118,132,59,14,164,6,0,87,246,7,3,123,236,9,0,92,246,47,7,9,51,6,0,92,246,152,157,212,243,6,0,96,118,183,60,112,5,10,0,96,118,183,60,28,6,10,0,97,246,76,157,118,108,6,0,97,246,103,44,11,141,6,0,100,118,167,195,156,64,9,0,100,118,167,195,196,64,9,0,100,118,167,195,220,64,9,0,102,246,251,60,65,172,7,0,104,118,190,36,71,236,6,0,105,246,92,133,136,58,7,0,107,118,61,173,145,156,10,0,112,246,191,126,237,73,7,0,112,246,165,122,104,190,10,0,112,246,165,122,182,190,10,0,115,246,145,199,221,38,10,0,115,246,145,199,62,40,10,0,116,118,153,38,44,0,6,0,118,118,146,182,40,230,5,0,118,118,151,159,138,115,8,0,118,118,151,159,117,124,8,0,118,118,151,159,105,133,8,0,121,118,120,236,212,243,6,0,121,118,246,117,197,253,6,0,122,118,148,42,30,171,9,0,124,246,235,19,199,181,10,0,126,118,253,225,179,17,7,0,126,118,253,225,33,65,7,0,127,246,29,182,113,232,6,0,127,246,228,228,117,37,7,0,127,118,49,216,117,79,7,0,128,246,189,57,219,210,7,0,128,118,195,239,129,82,11,0,128,118,195,239,160,82,11,0,130,118,32,224,164,23,7,0,132,246,135,219,117,79,7,0,136,246,133,67,141,195,8,0,136,246,133,67,112,196,8,0,136,246,133,67,75,197,8,0,137,246,244,223,137,155,7,0,139,118,247,19,19,242,5,0,142,118,234,2,25,243,5,0,142,118,77,188,187,173,7,0,143,118,198,129,204,213,9,0,144,246,123,123,136,58,7,0,148,118,102,6,16,194,10,0,148,118,102,6,88,194,10,0,149,246,37,136,237,73,7,0,151,118,141,21,224,146,8,0,151,118,141,21,132,150,8,0,153,118,207,229,146,235,6,0,155,118,229,42,104,244,9,0,155,118,229,42,251,244,9,0,155,118,229,42,146,245,9,0,157,246,73,72,200,133,10,0,160,246,46,183,215,16,10,0,160,246,46,183,135,17,10,0,162,118,151,122,212,243,6,0,163,118,87,62,212,243,6,0,166,246,130,67,95,116,10,0,168,246,163,37,22,62,10,0,175,246,127,177,243,239,5,0,175,246,118,136,226,154,9,0,175,246,118,136,114,155,9,0,175,246,3,162,214,67,10,0,175,246,3,162,243,67,10,0,179,118,61,217,160,234,8,0,179,118,61,217,175,235,8,0,180,246,249,43,232,191,8,0,180,246,249,43,162,193,8,0,184,118,22,44,224,254,6,0,185,118,124,240,206,74,6,0,185,118,79,22,136,58,7,0,187,118,99,200,245,228,6,0,191,118,39,98,138,115,8,0,191,118,39,98,117,124,8,0,191,118,39,98,105,133,8,0,192,246,65,203,121,182,8,0,192,246,65,203,153,182,8,0,196,246,0,70,117,79,7,0,197,246,51,173,20,15,7,0,197,246,51,173,179,17,7,0,197,118,79,106,227,20,11,0,202,246,217,95,29,204,8,0,202,246,217,95,6,205,8,0,202,118,252,134,105,93,11,0,203,246,187,158,146,98,8,0,209,118,73,31,237,73,7,0,212,246,70,82,44,86,11,0,213,118,105,202,80,32,7,0,213,246,43,118,138,115,8,0,213,246,43,118,117,124,8,0,213,246,43,118,105,133,8,0,213,118,220,97,85,200,10,0,219,118,228,160,190,222,5,0,220,246,35,6,249,101,10,0,224,118,246,133,138,115,8,0,224,118,246,133,117,124,8,0,224,118,246,133,105,133,8,0,224,246,108,9,139,158,8,0,224,246,108,9,224,163,8,0,224,118,26,238,193,153,10,0,229,118,201,55,10,187,10,0,233,246,100,234,139,158,8,0,233,246,100,234,224,163,8,0,237,246,203,91,139,158,8,0,237,246,203,91,224,163,8,0,237,246,24,192,123,236,9,0,238,118,75,181,212,243,6,0,238,118,152,199,232,251,9,0,238,118,152,199,176,252,9,0,239,118,130,164,155,203,6,0,241,246,212,0,29,5,7,0,243,118,70,172,72,84,11,0,247,246,150,90,225,43,6,0,249,246,43,10,170,116,6,0,252,246,10,201,169,16,6,0,252,118,41,141,179,181,7,0,254,246,185,37,240,99,11,0,1,247,170,150,177,25,6,0,2,119,34,172,99,66,8,0,2,119,34,172,218,67,8,0,2,119,34,172,69,68,8,0,2,119,34,172,8,69,8,0,2,119,34,172,155,69,8,0,2,119,34,172,232,69,8,0,3,119,210,158,228,82,10,0,3,119,210,158,222,107,10,0,4,119,71,230,38,98,7,0,5,119,227,218,218,203,6,0,5,119,80,237,7,220,6,0,11,119,232,149,30,171,9,0,11,119,30,118,224,176,10,0,12,247,150,75,75,153,6,0,14,119,200,33,29,5,7,0,19,119,6,102,30,77,10,0,22,247,50,234,121,97,7,0,22,247,31,71,72,204,9,0,23,247,34,65,166,220,8,0,23,247,34,65,241,220,8,0,28,119,16,181,212,243,6,0,29,247,126,207,197,253,6,0,37,119,49,135,224,96,11,0,39,119,175,15,230,215,6,0,44,247,65,28,209,131,7,0,44,247,101,24,219,210,7,0,45,247,114,156,172,213,6,0,45,119,46,202,100,228,6,0,45,119,171,15,21,36,7,0,45,119,47,10,38,98,7,0,47,119,144,234,80,32,7,0,49,119,17,126,18,181,6,0,49,119,17,126,22,35,7,0,53,119,141,32,125,177,9,0,53,119,141,32,224,177,9,0,53,119,141,32,64,178,9,0,53,119,115,112,69,232,10,0,54,247,53,178,38,98,7,0,58,119,187,148,88,71,6,0,59,119,165,92,107,6,6,0,62,247,121,249,161,110,7,0,62,119,239,124,34,185,7,0,62,119,239,124,86,185,7,0,62,119,239,124,129,185,7,0,62,119,239,124,179,185,7,0,62,119,239,124,211,178,9,0,62,119,239,124,235,178,9,0,65,247,65,155,84,21,8,0,67,247,129,193,215,16,10,0,67,247,129,193,135,17,10,0,70,247,195,144,153,11,7,0,70,247,195,144,135,13,7,0,70,247,200,87,152,111,7,0,70,247,200,87,84,53,8,0,72,119,152,194,116,221,8,0,72,119,152,194,161,221,8,0,74,119,41,101,132,104,8,0,74,119,41,101,181,104,8,0,74,119,41,101,242,104,8,0,76,119,33,36,212,243,6,0,76,247,234,101,38,98,7,0,76,247,157,219,138,115,8,0,76,247,157,219,117,124,8,0,76,247,157,219,105,133,8,0,79,119,167,194,215,255,6,0,79,247,8,143,245,28,10,0,79,247,8,143,145,31,10,0,81,247,13,142,138,115,8,0,81,247,13,142,117,124,8,0,81,247,13,142,105,133,8,0,82,247,1,90,123,65,6,0,82,247,111,147,224,251,6,0,83,119,148,64,232,124,10,0,84,119,200,31,136,58,7,0,84,119,66,13,228,109,9,0,84,119,66,13,248,110,9,0,85,247,143,204,78,203,8,0,85,247,14,68,186,69,10,0,87,119,121,142,132,215,6,0,87,119,145,124,155,67,7,0,87,247,248,113,123,236,9,0,88,119,61,117,201,235,5,0,88,119,65,238,123,236,9,0,89,119,176,102,212,243,6,0,91,247,204,4,152,137,7,0,91,247,204,4,168,144,7,0,91,119,138,170,80,167,9,0,91,119,138,170,37,168,9,0,93,119,222,150,117,79,7,0,94,247,134,75,186,198,8,0,94,247,134,75,213,198,8,0,94,247,134,75,248,198,8,0,95,119,66,108,87,34,6,0,97,119,156,19,231,132,10,0,99,119,66,70,241,86,11,0,100,119,34,170,61,161,6,0,100,247,192,149,141,195,8,0,100,247,192,149,112,196,8,0,100,247,192,149,75,197,8,0,103,247,34,147,218,42,8,0,104,119,230,228,32,113,9,0,104,119,98,30,133,84,10,0,106,119,226,128,146,235,6,0,106,247,106,179,139,158,8,0,106,247,106,179,224,163,8,0,107,119,50,23,214,7,7,0,107,247,95,2,161,58,8,0,107,119,50,23,75,110,10,0,109,247,150,43,212,243,6,0,110,119,166,118,29,5,7,0,110,247,200,209,117,79,7,0,112,247,30,138,71,236,6,0,112,247,120,58,92,67,10,0,113,247,140,206,123,236,9,0,115,247,40,11,245,41,7,0,115,247,84,236,34,89,11,0,116,247,148,189,251,160,7,0,118,247,101,37,71,236,6,0,121,247,192,72,200,189,5,0,121,119,206,108,50,163,6,0,121,247,152,134,142,145,10,0,124,119,29,160,130,227,6,0,124,247,31,59,205,220,10,0,125,119,173,55,102,253,5,0,125,119,112,34,38,98,7,0,125,247,46,141,25,120,10,0,126,119,239,245,179,17,7,0,126,247,254,219,90,53,7,0,126,119,219,236,247,55,7,0,126,119,36,55,38,98,7,0,126,119,174,74,123,236,9,0,126,119,239,245,5,87,10,0,128,247,47,185,179,17,7,0,128,247,47,185,232,111,10,0,132,119,155,78,55,48,7,0,133,119,32,94,81,137,10,0,135,119,80,77,162,50,7,0,135,247,42,165,216,165,7,0,135,119,0,116,125,6,8,0,137,247,50,209,152,111,7,0,138,247,188,119,126,206,10,0,139,247,245,130,198,59,6,0,139,247,84,129,49,192,6,0,140,119,115,209,151,195,5,0,140,119,115,209,223,141,6,0,140,247,103,153,29,204,8,0,140,247,103,153,6,205,8,0,144,247,245,88,70,5,8,0,146,247,184,235,20,15,7,0,146,247,184,235,179,17,7,0,149,247,91,229,180,31,11,0,149,247,91,229,211,31,11,0,150,119,131,162,187,70,7,0,152,119,33,166,237,73,7,0,153,119,240,235,38,103,9,0,153,119,240,235,89,103,9,0,154,119,182,162,117,79,7,0,154,247,135,94,80,167,9,0,154,247,135,94,37,168,9,0,155,119,66,123,158,138,6,0,155,119,66,123,245,228,6,0,156,247,227,228,90,175,8,0,156,247,227,228,74,176,8,0,158,119,80,203,153,11,7,0,158,119,80,203,247,55,7,0,158,247,76,158,237,73,7,0,161,119,248,72,214,7,7,0,164,119,30,150,199,65,10,0,166,247,222,121,83,84,10,0,166,247,222,121,171,92,10,0,167,119,7,36,117,79,7,0,169,119,63,216,80,32,7,0,171,119,166,153,149,82,6,0,171,247,230,188,152,111,7,0,171,247,230,188,206,62,8,0,171,247,230,188,99,63,8,0,171,247,230,188,4,64,8,0,171,247,230,188,73,218,9,0,174,119,88,12,14,146,8,0,174,119,88,12,49,146,8,0,180,119,157,168,71,68,11,0,182,247,23,195,171,63,7,0,183,247,218,114,117,79,7,0,188,247,236,160,247,214,6,0,190,119,24,209,162,50,7,0,190,119,19,97,247,55,7,0,191,119,95,234,81,239,8,0,191,119,95,234,40,240,8,0,195,247,172,44,236,97,10,0,197,247,111,167,199,44,11,0,198,247,220,192,71,236,6,0,203,247,60,19,138,115,8,0,203,247,60,19,117,124,8,0,203,247,60,19,105,133,8,0,206,119,61,129,203,125,6,0,207,119,36,203,212,243,6,0,207,247,250,59,3,157,8,0,207,247,250,59,180,157,8,0,208,247,159,126,38,98,7,0,209,247,240,127,74,135,6,0,210,119,200,107,201,3,7,0,210,247,10,251,191,183,8,0,213,247,141,149,237,231,6,0,214,119,177,179,194,211,6,0,215,119,143,33,127,29,9,0,215,119,143,33,152,29,9,0,215,119,143,33,199,29,9,0,215,119,21,20,195,100,11,0,216,119,88,75,212,243,6,0,217,247,253,16,135,223,5,0,217,247,126,245,51,255,9,0,217,247,126,245,139,255,9,0,217,247,126,245,226,255,9,0,218,247,252,70,132,222,10,0,219,119,185,229,219,210,7,0,220,247,14,100,81,180,6,0,221,119,32,211,254,79,10,0,223,247,136,189,38,98,7,0,223,119,144,234,51,255,9,0,223,119,144,234,139,255,9,0,223,119,144,234,226,255,9,0,224,119,207,172,20,15,7,0,224,119,207,172,179,17,7,0,228,247,8,156,236,213,6,0,228,119,189,25,30,231,6,0,228,247,151,43,2,199,9,0,228,247,151,43,169,199,9,0,229,247,252,60,139,158,8,0,229,247,252,60,224,163,8,0,231,119,150,213,38,98,7,0,233,247,254,202,152,111,7,0,233,247,254,202,84,53,8,0,237,119,195,79,223,14,9,0,237,119,195,79,246,14,9,0,237,119,195,79,11,15,9,0,238,247,30,239,20,15,7,0,240,119,0,67,140,150,10,0,241,119,159,191,201,3,7,0,243,247,189,139,118,196,5,0,243,119,12,154,212,243,6,0,243,247,5,204,227,108,7,0,243,247,5,204,10,28,10,0,243,247,5,204,74,28,10,0,243,247,5,204,134,28,10,0,245,119,218,185,119,225,6,0,245,247,234,13,160,234,8,0,245,247,234,13,175,235,8,0,249,119,155,10,21,53,11,0,250,119,183,197,212,243,6,0,251,247,81,9,151,21,7,0,253,247,147,190,91,111,7,0,254,119,214,218,82,231,9,0,254,247,183,106,167,245,10,0,0,120,170,196,195,93,7,0,3,248,122,244,2,23,7,0,3,248,236,89,57,224,7,0,5,120,231,242,138,115,8,0,5,120,231,242,117,124,8,0,5,120,231,242,105,133,8,0,7,248,35,151,41,209,6,0,8,120,234,109,112,62,8,0,8,120,35,101,27,119,9,0,8,120,35,101,102,119,9,0,9,120,77,1,255,129,7,0,9,120,231,233,39,65,9,0,9,120,231,233,161,65,9,0,9,120,231,233,21,66,9,0,9,120,231,233,188,66,9,0,9,120,231,233,85,67,9,0,9,248,5,158,135,90,9,0,9,248,5,158,124,91,9,0,11,248,105,91,113,225,9,0,11,248,105,91,135,225,9,0,13,120,140,150,99,66,8,0,15,120,135,52,254,243,5,0,15,120,135,52,153,89,7,0,16,248,171,149,126,49,11,0,17,120,4,126,29,4,7,0,17,120,216,146,119,174,7,0,17,120,216,146,165,174,7,0,17,120,4,126,253,2,10,0,17,120,4,126,18,3,10,0,20,248,154,193,71,236,6,0,20,120,224,213,10,89,8,0,20,120,224,213,110,89,8,0,20,120,224,213,212,89,8,0,20,248,144,26,118,226,8,0,20,248,144,26,72,228,8,0,21,120,53,11,152,111,7,0,21,120,53,11,152,118,7,0,21,120,53,11,62,124,7,0,23,120,176,42,189,74,8,0,24,120,176,70,212,243,6,0,24,120,3,236,249,62,10,0,24,120,3,236,27,63,10,0,25,248,131,78,151,21,7,0,26,120,107,38,71,236,6,0,26,120,140,198,50,51,7,0,26,120,78,68,183,110,10,0,35,120,70,172,71,236,6,0,35,248,205,80,180,28,7,0,35,248,185,25,138,115,8,0,35,248,185,25,117,124,8,0,35,248,185,25,105,133,8,0,36,120,36,5,32,113,9,0,37,248,79,250,38,253,8,0,37,248,79,250,173,253,8,0,38,248,182,192,231,193,5,0,38,120,165,62,255,75,11,0,41,248,175,101,100,92,11,0,42,120,109,176,71,236,6,0,42,120,150,88,220,57,11,0,43,248,8,46,75,1,9,0,43,248,8,46,154,2,9,0,43,248,8,46,235,3,9,0,43,248,8,46,65,5,9,0,45,120,164,50,21,90,11,0,46,120,227,206,221,38,10,0,46,120,227,206,62,40,10,0,46,120,252,212,125,125,10,0,48,248,123,193,90,53,7,0,48,248,25,7,169,243,10,0,50,120,110,249,103,99,11,0,51,120,4,165,48,255,5,0,53,120,87,209,123,236,9,0,54,120,78,95,109,166,6,0,56,120,6,126,164,183,6,0,59,248,119,163,164,194,9,0,59,248,119,163,190,194,9,0,62,120,88,12,175,246,5,0,63,248,36,203,139,158,8,0,63,248,36,203,224,163,8,0,68,248,93,243,147,189,6,0,68,248,93,243,57,10,7,0,70,248,228,7,102,179,6,0,70,120,47,137,123,236,9,0,72,120,196,30,38,98,7,0,75,248,65,100,78,203,8,0,77,248,49,65,243,90,10,0,79,120,3,254,123,236,9,0,83,120,193,6,129,26,8,0,83,120,177,55,79,12,11,0,86,248,12,161,80,186,5,0,87,120,157,151,24,144,6,0,88,120,0,103,154,4,7,0,88,248,187,5,117,79,7,0,88,120,55,216,152,111,7,0,88,120,55,216,110,38,10,0,88,120,55,216,172,38,10,0,88,120,236,139,173,63,11,0,90,248,177,179,74,11,9,0,90,248,177,179,95,11,9,0,92,120,83,229,63,212,7,0,92,248,195,139,232,251,9,0,92,248,195,139,176,252,9,0,93,120,192,94,255,249,5,0,93,120,141,178,82,235,6,0,93,120,141,178,41,241,10,0,97,120,230,86,3,96,6,0,103,248,109,97,34,89,6,0,103,120,174,107,219,1,7,0,103,120,174,107,99,3,7,0,104,120,244,235,165,65,10,0,105,120,147,56,163,213,5,0,106,248,41,192,16,149,10,0,111,248,56,26,123,236,9,0,113,120,107,55,245,28,10,0,113,120,107,55,145,31,10,0,118,248,243,187,138,115,8,0,118,248,243,187,117,124,8,0,118,248,243,187,105,133,8,0,119,120,40,222,117,79,7,0,119,120,131,182,35,9,8,0,120,248,254,56,69,69,7,0,122,248,100,11,38,98,7,0,123,248,133,217,212,243,6,0,124,120,106,105,202,239,5,0,124,120,106,105,179,109,6,0,125,248,85,63,71,236,6,0,130,120,138,204,117,79,7,0,140,248,200,42,16,11,8,0,140,120,233,119,189,130,10,0,140,120,233,119,227,130,10,0,142,120,188,180,114,243,8,0,142,120,188,180,37,244,8,0,145,248,228,209,66,228,5,0,145,120,14,125,80,32,7,0,145,120,31,254,152,111,7,0,146,248,130,55,108,147,9,0,146,248,130,55,136,147,9,0,146,248,130,55,161,147,9,0,146,248,155,147,123,236,9,0,146,120,163,55,139,57,10,0,155,120,216,48,116,124,6,0,155,248,98,199,253,208,8,0,155,248,98,199,22,211,8,0,157,120,95,40,2,23,7,0,157,248,64,75,139,158,8,0,157,248,64,75,224,163,8,0,160,248,62,11,123,236,9,0,162,248,11,4,80,32,7,0,164,248,88,25,176,194,5,0,164,248,71,249,117,79,7,0,165,120,117,226,21,1,8,0,168,120,15,100,139,158,8,0,168,120,15,100,224,163,8,0,169,248,57,189,219,1,7,0,170,120,2,55,71,236,6,0,172,120,15,16,102,179,6,0,173,120,25,83,51,241,8,0,173,120,25,83,198,241,8,0,174,248,27,20,245,240,10,0,175,248,51,228,80,45,11,0,177,120,52,90,107,210,6,0,177,120,23,250,137,72,7,0,177,120,112,53,162,28,9,0,177,120,112,53,244,28,9,0,177,120,226,93,123,236,9,0,182,248,125,174,0,190,8,0,182,248,125,174,168,190,8,0,183,248,47,128,121,97,7,0,183,248,47,128,164,47,8,0,183,120,134,3,215,16,10,0,183,120,134,3,135,17,10,0,184,248,45,44,212,243,6,0,184,120,66,97,123,236,9,0,186,248,195,252,180,28,7,0,186,120,153,219,224,135,10,0,187,248,163,84,167,8,7,0,188,120,77,34,200,6,9,0,188,120,77,34,117,7,9,0,189,120,63,136,128,161,7,0,189,120,63,136,120,195,10,0,190,248,102,123,130,94,6,0,191,120,96,138,145,64,11,0,193,120,155,218,251,162,6,0,200,120,196,64,123,252,5,0,200,248,86,35,179,222,8,0,200,248,86,35,152,223,8,0,200,248,222,8,68,108,9,0,200,248,222,8,90,108,9,0,202,120,23,14,230,215,6,0,202,248,62,1,40,198,10,0,204,248,60,76,80,32,7,0,204,120,180,61,50,240,7,0,206,120,87,20,44,90,10,0,206,120,170,84,201,183,10,0,215,120,184,148,238,20,6,0,215,120,184,148,115,62,6,0,215,120,184,148,91,72,6,0,215,120,184,148,79,28,8,0,216,120,197,154,253,208,8,0,216,120,197,154,22,211,8,0,220,120,240,89,152,111,7,0,220,120,240,89,128,200,9,0,221,120,60,1,237,73,7,0,225,120,97,98,51,186,5,0,226,120,137,166,212,243,6,0,228,120,16,16,230,130,7,0,228,248,197,112,239,115,9,0,228,248,197,112,7,116,9,0,229,248,109,164,80,186,5,0,230,248,34,78,224,135,10,0,232,248,111,81,75,1,9,0,232,248,111,81,154,2,9,0,232,248,111,81,235,3,9,0,232,248,111,81,65,5,9,0,232,248,110,106,109,172,9,0,232,248,110,106,178,173,9,0,232,248,110,106,250,174,9,0,243,248,75,45,125,177,9,0,243,248,75,45,224,177,9,0,243,248,75,45,64,178,9,0,245,248,85,74,209,41,7,0,247,248,104,5,72,204,9,0,249,120,214,10,237,73,7,0,249,120,205,20,151,73,10,0,252,120,3,163,246,70,11,0,255,120,139,176,138,115,8,0,255,120,139,176,117,124,8,0,255,120,139,176,105,133,8,0,0,249,162,150,191,75,10,0,1,249,138,111,90,53,7,0,1,249,197,194,88,129,7,0,2,121,211,56,215,16,10,0,2,121,211,56,135,17,10,0,7,249,49,167,237,73,7,0,8,249,249,115,94,208,6,0,8,249,49,80,159,92,9,0,8,249,49,80,5,93,9,0,8,249,204,102,94,46,11,0,10,121,142,46,116,112,6,0,10,121,142,46,95,254,7,0,10,121,142,46,135,254,7,0,10,121,142,46,177,254,7,0,11,121,200,28,71,236,6,0,12,121,78,102,29,5,7,0,12,121,161,19,245,41,7,0,12,249,254,64,204,9,8,0,12,121,111,212,179,184,9,0,12,121,111,212,208,184,9,0,12,121,111,212,230,184,9,0,12,121,111,212,8,185,9,0,14,249,180,44,138,115,8,0,14,249,180,44,117,124,8,0,14,249,180,44,105,133,8,0,16,249,112,45,237,73,7,0,19,121,231,193,52,107,9,0,19,121,231,193,80,107,9,0,26,121,136,71,54,233,6,0,27,121,5,51,236,51,7,0,28,121,98,226,63,10,11,0,29,121,120,67,171,63,7,0,30,249,34,196,136,58,7,0,37,249,14,213,212,243,6,0,39,249,108,102,205,151,9,0,39,249,108,102,199,152,9,0,39,249,108,102,220,153,9,0,41,249,97,124,117,79,7,0,45,249,187,142,151,21,7,0,56,121,6,78,152,118,9,0,56,121,6,78,196,118,9,0,59,121,193,165,66,8,8,0,62,249,75,217,171,49,7,0,63,249,39,55,48,202,5,0,63,121,203,227,13,32,9,0,63,121,203,227,195,32,9,0,64,249,233,214,178,24,6,0,64,249,161,104,114,243,8,0,64,249,161,104,37,244,8,0,65,249,249,216,110,229,5,0,66,249,17,34,153,207,8,0,66,249,17,34,44,208,8,0,67,249,181,148,122,123,6,0,67,249,254,67,138,115,8,0,67,249,254,67,117,124,8,0,67,249,254,67,105,133,8,0,70,249,181,148,117,37,7,0,70,249,181,148,79,96,8,0,78,121,28,0,89,219,5,0,78,121,172,245,135,252,6,0,78,121,172,245,194,252,6,0,80,249,179,148,75,171,6,0,80,121,149,68,90,53,7,0,81,121,9,215,232,99,9,0,81,121,9,215,9,100,9,0,83,121,163,92,154,19,6,0,84,249,8,241,33,201,5,0,86,121,118,186,71,236,6,0,88,249,215,65,20,15,7,0,88,249,215,65,179,17,7,0,89,121,155,209,224,146,8,0,89,121,155,209,132,150,8,0,91,121,82,107,188,80,11,0,94,249,33,176,196,186,6,0,97,121,179,107,66,230,6,0,98,121,48,154,29,204,8,0,98,121,48,154,6,205,8,0,99,249,211,183,71,236,6,0,100,249,149,218,249,154,8,0,100,249,149,218,148,155,8,0,100,249,149,218,52,156,8,0,101,121,40,65,139,158,8,0,101,121,40,65,224,163,8,0,104,121,225,99,223,216,6,0,104,121,225,99,191,55,7,0,105,249,51,232,136,58,7,0,107,121,12,123,116,23,6,0,108,249,209,38,80,32,7,0,108,249,118,62,90,53,7,0,109,121,103,113,109,72,6,0,109,249,58,89,119,199,6,0,110,249,52,242,149,190,10,0,111,249,21,37,123,236,9,0,112,121,128,43,220,99,11,0,114,121,178,205,194,211,6,0,115,121,181,5,180,28,7,0,116,121,223,200,1,27,11,0,117,121,160,148,200,6,9,0,117,121,160,148,117,7,9,0,118,121,68,82,67,88,11,0,119,121,48,22,75,1,9,0,119,121,48,22,154,2,9,0,119,121,48,22,235,3,9,0,119,121,48,22,65,5,9,0,122,121,254,57,252,42,7,0,122,121,65,0,135,67,10,0,130,249,62,242,174,168,6,0,133,121,109,148,180,28,7,0,133,249,126,125,136,58,7,0,133,249,126,125,117,79,7,0,134,249,148,254,20,15,7,0,134,249,148,254,179,17,7,0,137,249,79,100,247,55,7,0,138,121,85,156,71,236,6,0,140,121,2,146,212,243,6,0,140,249,17,79,223,52,10,0,140,249,17,79,7,53,10,0,141,249,157,27,179,17,7,0,141,249,157,27,232,111,10,0,142,121,172,192,162,50,7,0,144,249,10,0,110,218,6,0,144,249,10,0,56,95,11,0,148,121,122,58,237,73,7,0,148,249,133,23,117,79,7,0,150,121,67,100,153,11,7,0,157,121,11,174,68,151,7,0,161,121,17,48,64,146,7,0,161,249,206,73,184,200,7,0,162,121,112,183,102,179,6,0,162,121,62,165,117,79,7,0,163,121,156,238,38,98,7,0,168,249,144,38,123,236,9,0,172,121,214,80,138,146,6,0,172,121,54,230,144,85,11,0,173,121,45,58,71,236,6,0,174,249,197,194,206,193,5,0,174,121,89,194,54,218,6,0,174,249,253,7,5,33,8,0,175,121,81,190,244,229,10,0,177,249,144,95,236,51,7,0,182,121,202,3,57,10,7,0,183,121,87,139,123,236,9,0,183,249,107,90,65,169,10,0,184,121,186,148,57,171,8,0,184,121,186,148,133,172,8,0,184,121,186,148,211,173,8,0,185,121,198,76,20,15,7,0,185,121,7,199,117,37,7,0,185,121,198,76,33,65,7,0,186,121,204,204,47,1,7,0,186,249,70,115,140,232,10,0,190,249,23,129,123,236,9,0,191,249,43,206,133,56,10,0,192,249,101,27,124,222,6,0,195,121,248,197,221,38,10,0,195,121,248,197,62,40,10,0,198,121,76,127,113,24,7,0,199,121,89,180,46,16,10,0,199,249,120,136,245,28,10,0,199,249,120,136,145,31,10,0,199,249,197,172,58,167,10,0,201,121,219,89,81,29,6,0,201,249,99,103,212,243,6,0,203,249,74,210,90,175,8,0,203,249,74,210,74,176,8,0,203,121,81,190,236,236,10,0,206,249,139,156,139,158,8,0,206,249,139,156,224,163,8,0,208,249,206,127,140,66,7,0,208,249,206,127,234,66,7,0,208,121,175,160,218,113,9,0,208,121,175,160,120,114,9,0,209,121,165,70,99,66,8,0,210,121,68,78,213,41,10,0,210,121,68,78,87,42,10,0,212,121,54,98,112,78,6,0,212,249,179,61,29,5,7,0,212,121,56,127,136,58,7,0,212,121,22,79,53,66,7,0,213,121,68,31,148,248,5,0,213,249,73,113,132,205,10,0,213,249,73,113,149,212,10,0,214,249,240,4,140,72,6,0,217,249,183,198,1,41,6,0,217,249,54,66,159,93,11,0,219,249,117,208,212,255,5,0,222,121,57,174,217,35,7,0,223,121,185,39,90,53,7,0,223,121,27,220,108,74,10,0,223,121,27,220,31,75,10,0,224,121,38,141,251,96,8,0,224,121,38,141,57,97,8,0,225,121,50,229,109,172,9,0,225,121,50,229,178,173,9,0,225,121,50,229,250,174,9,0,227,249,70,222,171,100,6,0,228,249,54,62,198,76,6,0,229,249,142,119,141,195,8,0,229,249,142,119,112,196,8,0,230,249,208,34,41,213,10,0,231,121,222,215,84,21,8,0,232,249,246,231,212,243,6,0,233,121,230,230,215,255,6,0,234,121,180,228,151,5,6,0,235,121,204,140,249,214,5,0,235,249,24,45,61,224,6,0,235,249,5,126,152,111,7,0,235,249,5,126,157,128,7,0,236,249,73,84,121,249,10,0,237,249,197,194,153,11,7,0,237,249,197,194,135,13,7,0,242,249,67,121,187,218,6,0,242,249,237,74,221,38,10,0,242,249,237,74,62,40,10,0,245,249,19,172,69,79,8,0,245,249,19,172,77,96,10,0,248,249,171,102,170,10,11,0,251,249,128,159,114,34,6,0,253,249,197,194,138,115,8,0,253,249,197,194,117,124,8,0,253,249,197,194,105,133,8,0,1,250,184,96,0,190,8,0,1,250,184,96,168,190,8,0,2,122,205,8,245,202,10,0,3,122,106,173,102,223,6,0,5,122,7,83,71,133,10,0,7,250,246,67,124,222,6,0,9,250,69,50,118,101,10,0,9,250,22,82,170,220,10,0,15,250,60,63,38,98,7,0,16,250,216,224,247,55,7,0,16,250,147,190,124,10,9,0,17,250,197,194,57,140,6,0,17,250,197,194,93,140,6,0,18,122,96,218,24,52,6,0,18,122,90,183,218,105,9,0,19,250,71,11,212,243,6,0,19,122,33,240,219,1,7,0,20,250,122,88,40,213,6,0,24,122,182,191,51,136,6,0,26,122,249,3,118,117,10,0,27,122,117,24,31,149,6,0,27,250,23,108,155,67,7,0,30,250,95,226,212,243,6,0,30,122,65,240,37,138,10,0,31,122,158,230,245,28,10,0,31,122,158,230,145,31,10,0,32,250,4,173,137,16,8,0,36,250,138,249,219,1,7,0,38,122,236,30,82,235,6,0,38,250,242,252,152,111,7,0,38,250,242,252,230,139,9,0,41,122,27,208,159,58,11,0,43,122,63,128,169,108,6,0,43,122,198,34,20,15,7,0,43,122,143,157,161,46,10,0,43,122,143,157,238,46,10,0,45,250,165,8,37,10,8,0,45,250,35,4,139,158,8,0,45,250,35,4,224,163,8,0,48,250,101,1,121,195,5,0,48,250,84,231,236,51,7,0,51,122,62,161,109,77,6,0,51,250,15,237,179,181,7,0,51,250,128,242,138,115,8,0,51,250,128,242,117,124,8,0,51,250,128,242,105,133,8,0,51,250,155,211,224,146,8,0,51,250,155,211,132,150,8,0,52,122,171,203,152,111,7,0,52,122,179,23,155,37,8,0,52,122,171,203,230,139,9,0,52,122,154,123,186,154,10,0,53,250,89,161,221,38,10,0,53,250,89,161,62,40,10,0,56,122,125,143,139,158,8,0,56,122,125,143,224,163,8,0,57,250,47,148,3,157,8,0,57,250,47,148,180,157,8,0,59,250,57,146,15,144,7,0,59,122,52,211,138,115,8,0,59,122,52,211,117,124,8,0,59,122,52,211,105,133,8,0,60,122,5,111,20,15,7,0,61,122,88,22,232,191,8,0,61,122,88,22,162,193,8,0,63,122,149,96,139,158,8,0,63,122,149,96,224,163,8,0,65,250,161,133,53,194,5,0,65,250,161,133,152,111,7,0,70,122,7,20,124,222,6,0,70,250,207,239,91,147,7,0,71,122,248,254,61,67,6,0,73,122,128,222,179,222,8,0,73,122,128,222,152,223,8,0,75,122,194,86,80,32,7,0,75,250,129,20,171,49,7,0,76,250,46,16,219,1,7,0,76,122,143,217,227,108,7,0,76,122,160,126,96,60,11,0,83,250,213,89,139,158,8,0,83,250,213,89,224,163,8,0,83,250,248,131,217,129,10,0,85,250,255,146,245,28,10,0,85,250,255,146,145,31,10,0,87,122,119,247,118,226,8,0,87,122,119,247,72,228,8,0,89,122,128,122,198,59,6,0,89,122,31,190,57,171,8,0,89,122,31,190,133,172,8,0,89,122,31,190,211,173,8,0,90,250,95,178,219,34,7,0,91,122,61,129,175,40,7,0,91,122,182,231,109,172,9,0,91,122,182,231,178,173,9,0,91,122,182,231,250,174,9,0,92,122,65,19,253,210,6,0,94,250,41,56,251,217,6,0,95,250,192,93,199,105,6,0,96,250,163,126,80,197,5,0,96,122,209,168,164,23,7,0,96,122,80,195,136,58,7,0,99,250,116,27,123,236,9,0,100,250,225,182,23,199,6,0,102,122,149,145,254,243,5,0,102,122,149,145,153,89,7,0,103,250,116,27,139,92,7,0,103,250,116,27,245,28,10,0,103,250,116,27,145,31,10,0,104,122,239,84,117,79,7,0,104,250,19,57,105,51,9,0,104,250,19,57,127,51,9,0,105,122,55,87,229,0,7,0,105,250,192,88,222,115,10,0,106,122,242,142,22,62,10,0,107,250,183,218,153,11,7,0,107,250,183,218,135,13,7,0,111,250,177,90,38,98,7,0,111,122,107,75,51,76,9,0,111,122,107,75,76,76,9,0,111,122,117,179,50,173,10,0,111,122,208,126,21,221,10,0,113,250,197,194,241,22,6,0,114,250,156,133,209,131,7,0,114,122,138,240,167,83,11,0,115,250,207,114,103,46,7,0,117,122,60,166,129,26,8,0,120,250,103,86,40,212,5,0,120,250,103,86,246,213,5,0,120,250,103,86,198,75,6,0,121,250,208,37,171,206,6,0,122,250,70,66,64,223,9,0,122,250,70,66,100,223,9,0,123,250,121,135,219,1,7,0,123,250,26,107,171,28,11,0,124,250,222,110,247,214,6,0,124,250,46,5,117,79,7,0,125,250,17,208,193,167,9,0,128,122,40,119,109,172,9,0,128,122,40,119,178,173,9,0,128,122,40,119,250,174,9,0,130,250,194,253,29,5,7,0,132,122,81,190,14,146,8,0,132,122,81,190,49,146,8,0,138,250,17,199,212,243,6,0,138,250,136,179,44,90,10,0,139,250,65,209,210,110,7,0,139,250,65,209,177,118,7,0,140,122,102,244,161,201,8,0,140,122,102,244,217,201,8,0,141,250,197,253,215,156,10,0,145,250,241,40,136,58,7,0,148,250,160,138,38,98,7,0,148,250,160,138,23,179,8,0,148,250,160,138,119,179,8,0,155,250,197,194,12,164,9,0,155,250,197,194,28,164,9,0,155,122,36,206,13,240,10,0,156,250,156,121,117,37,7,0,159,122,152,120,75,1,9,0,159,122,152,120,154,2,9,0,159,122,152,120,235,3,9,0,159,122,152,120,65,5,9,0,159,122,144,226,31,53,10,0,162,250,192,238,15,3,6,0,163,122,189,121,196,8,6,0,163,122,45,113,75,1,9,0,163,122,45,113,154,2,9,0,163,122,45,113,235,3,9,0,163,122,45,113,65,5,9,0,163,122,69,29,83,115,9,0,163,122,69,29,115,115,9,0,164,122,171,29,121,97,7,0,164,122,171,29,161,123,7,0,164,122,171,29,62,124,7,0,165,250,102,90,110,121,10,0,166,250,248,86,51,241,8,0,166,250,248,86,198,241,8,0,171,250,248,12,112,27,7,0,171,250,240,218,199,15,8,0,171,250,60,166,19,93,10,0,172,122,97,128,113,92,6,0,172,250,88,129,69,136,7,0,172,122,157,160,237,94,10,0,172,250,12,228,16,112,10,0,173,250,247,54,132,18,9,0,173,250,247,54,211,18,9,0,173,250,247,54,49,19,9,0,173,250,247,54,130,19,9,0,175,122,88,225,212,243,6,0,178,250,218,127,201,230,6,0,179,122,216,173,136,221,5,0,180,122,66,62,238,123,10,0,181,122,188,148,69,190,5,0,181,250,124,225,16,222,6,0,187,122,3,163,40,217,8,0,187,122,3,163,209,217,8,0,188,250,54,164,212,243,6,0,189,122,39,94,48,225,6,0,191,250,196,193,143,12,10,0,193,122,228,28,71,236,6,0,194,122,4,126,71,236,6,0,194,250,126,233,212,243,6,0,198,122,244,101,121,148,10,0,200,122,197,121,152,111,7,0,200,122,197,121,245,58,9,0,200,122,243,5,228,109,9,0,200,122,243,5,248,110,9,0,201,250,71,112,237,73,7,0,202,250,62,134,38,253,8,0,202,250,62,134,173,253,8,0,206,250,18,246,80,32,7,0,208,250,160,199,60,127,7,0,208,250,160,199,180,176,10,0,212,250,44,213,75,142,9,0,212,250,44,213,201,142,9,0,212,250,44,213,84,143,9,0,215,122,28,130,82,231,9,0,215,122,28,130,204,228,10,0,216,250,205,87,254,243,5,0,216,250,205,87,153,89,7,0,217,122,192,64,66,223,6,0,217,250,197,194,38,98,7,0,218,122,232,180,4,50,6,0,218,122,232,180,130,227,6,0,221,250,151,62,172,64,6,0,221,122,61,41,227,218,6,0,221,250,155,187,139,158,8,0,221,250,155,187,224,163,8,0,222,122,110,143,180,28,7,0,224,250,71,35,212,243,6,0,229,250,174,55,38,98,7,0,230,122,79,235,197,253,6,0,230,250,59,235,115,7,10,0,230,250,59,235,190,7,10,0,230,250,59,235,10,8,10,0,231,250,208,101,232,251,9,0,231,250,208,101,176,252,9,0,233,122,177,94,22,35,7,0,234,122,4,127,56,217,5,0,236,250,43,207,17,91,7,0,236,250,119,159,227,108,7,0,237,250,56,162,20,15,7,0,237,122,20,139,117,79,7,0,238,250,40,129,38,253,8,0,238,250,40,129,173,253,8,0,238,250,126,22,33,127,9,0,238,250,126,22,73,127,9,0,239,122,198,255,20,15,7,0,239,122,198,255,179,17,7,0,244,122,65,85,12,135,6,0,244,122,211,41,151,21,7,0,244,250,195,219,38,98,7,0,245,122,239,53,167,107,7,0,246,122,61,84,65,10,6,0,246,122,73,129,153,207,8,0,246,122,73,129,44,208,8,0,249,250,29,128,216,20,6,0,250,122,182,200,80,186,5,0,250,122,78,228,152,111,7,0,250,122,78,228,62,124,7,0,0,251,89,54,146,7,7,0,1,251,193,180,54,218,6,0,9,123,53,234,50,142,7,0,9,251,218,168,219,210,7,0,9,123,53,234,95,42,8,0,10,251,186,202,232,25,7,0,10,251,62,60,90,56,9,0,10,251,62,60,171,56,9,0,10,251,62,60,54,57,9,0,12,123,228,249,144,231,5,0,12,251,4,106,117,79,7,0,12,251,3,85,224,146,8,0,12,251,3,85,132,150,8,0,12,251,182,29,123,236,9,0,17,251,56,89,107,210,6,0,18,251,100,154,237,73,7,0,20,251,60,78,72,204,9,0,21,123,150,213,0,229,5,0,21,123,27,102,109,24,11,0,22,251,21,65,72,202,8,0,22,251,21,65,175,202,8,0,27,251,205,154,243,6,7,0,28,123,166,91,119,199,6,0,30,251,219,145,38,98,7,0,30,251,188,127,44,90,10,0,32,251,197,194,20,177,6,0,34,123,75,71,138,115,8,0,34,123,75,71,117,124,8,0,34,123,75,71,105,133,8,0,35,123,206,229,216,165,7,0,35,251,197,194,13,49,8,0,35,251,197,194,86,49,8,0,35,251,197,194,159,49,8,0,35,251,197,194,233,49,8,0,35,251,197,194,51,50,8,0,35,251,197,194,122,50,8,0,35,251,197,194,192,50,8,0,37,123,102,240,17,71,7,0,38,251,243,135,224,146,8,0,38,251,243,135,132,150,8,0,39,123,130,67,103,40,7,0,41,251,34,91,172,11,11,0,41,123,194,211,45,34,11,0,42,251,232,207,59,212,5,0,44,123,221,244,138,15,6,0,44,123,7,22,38,253,8,0,44,123,7,22,173,253,8,0,46,251,6,83,192,161,6,0,52,123,39,56,117,37,7,0,52,123,163,215,218,113,9,0,52,123,163,215,120,114,9,0,55,123,129,171,74,198,10,0,58,123,115,158,29,210,5,0,58,251,110,237,130,227,6,0,60,251,184,59,212,243,6,0,61,123,42,225,117,79,7,0,61,123,92,203,17,184,8,0,61,251,255,243,24,237,10,0,64,251,129,143,139,158,8,0,64,251,129,143,224,163,8,0,64,123,118,10,137,102,10,0,66,123,133,93,117,37,7,0,66,123,214,58,171,49,7,0,66,251,173,32,138,115,8,0,66,251,173,32,117,124,8,0,66,251,173,32,105,133,8,0,66,123,137,86,2,199,9,0,66,123,137,86,169,199,9,0,66,123,57,138,250,250,10,0,67,123,83,108,38,98,7,0,68,123,208,197,13,25,8,0,69,251,234,24,230,215,6,0,72,123,190,189,20,15,7,0,72,123,190,189,179,17,7,0,72,123,200,58,136,58,7,0,72,251,253,93,191,148,7,0,73,251,252,47,210,110,7,0,73,251,252,47,177,118,7,0,76,251,171,189,2,23,11,0,77,123,184,215,138,115,8,0,77,123,184,215,117,124,8,0,77,123,184,215,105,133,8,0,79,123,236,20,68,65,11,0,79,123,236,20,113,68,11,0,81,123,127,29,44,90,10,0,82,123,67,168,227,108,7,0,82,123,67,168,56,147,7,0,84,123,224,186,104,244,9,0,84,123,224,186,251,244,9,0,84,123,224,186,146,245,9,0,85,251,249,145,181,93,6,0,86,123,243,249,175,103,11,0,87,123,252,12,29,5,7,0,88,123,190,142,138,115,8,0,88,123,190,142,117,124,8,0,88,123,190,142,105,133,8,0,89,123,32,67,108,23,9,0,89,123,32,67,130,23,9,0,94,251,222,58,123,236,9,0,97,123,62,72,85,103,10,0,98,123,176,29,172,195,10,0,101,123,239,71,62,239,5,0,102,251,38,247,138,115,8,0,102,251,38,247,117,124,8,0,102,251,38,247,105,133,8,0,103,123,93,94,123,236,9,0,104,251,59,27,71,236,6,0,104,123,244,178,71,236,6,0,104,251,246,252,250,117,10,0,105,123,246,163,46,154,6,0,106,123,67,47,244,165,10,0,107,123,154,233,94,245,5,0,107,123,137,201,57,10,7,0,107,251,126,48,138,115,8,0,107,251,126,48,117,124,8,0,107,251,126,48,105,133,8,0,108,123,255,12,66,141,9,0,108,123,255,12,153,141,9,0,108,123,104,213,80,167,9,0,108,123,104,213,37,168,9,0,109,123,208,240,61,224,6,0,110,251,108,243,130,229,10,0,112,123,225,36,234,126,6,0,112,251,228,234,133,200,6,0,115,251,131,85,226,1,6,0,115,251,74,100,122,134,6,0,116,251,144,86,51,167,6,0,120,251,52,128,158,67,6,0,120,123,177,29,78,229,6,0,121,123,179,239,222,101,6,0,121,123,154,228,2,32,7,0,123,251,110,1,156,31,7,0,123,123,28,200,13,32,9,0,123,123,28,200,195,32,9,0,124,123,243,42,123,236,9,0,130,123,129,137,217,209,6,0,130,123,198,17,129,26,8,0,131,123,114,27,67,80,10,0,132,123,103,51,127,119,6,0,134,123,81,45,131,46,6,0,134,123,234,222,22,198,6,0,134,123,87,67,219,1,7,0,135,123,101,17,139,93,11,0,136,123,65,225,99,3,7,0,139,123,165,32,29,5,7,0,141,251,148,227,123,236,9,0,143,123,69,227,91,154,8,0,143,123,69,227,147,154,8,0,145,123,88,73,224,146,8,0,145,123,88,73,132,150,8,0,145,251,200,103,208,9,11,0,149,251,69,237,227,218,6,0,149,251,69,237,80,219,6,0,149,251,247,71,212,243,6,0,149,251,241,65,191,148,9,0,149,251,241,65,29,149,9,0,149,251,241,65,56,149,9,0,152,251,211,142,75,92,7,0,156,251,216,153,163,201,6,0,157,251,120,163,10,132,7,0,160,123,12,57,136,58,7,0,160,123,180,252,75,142,9,0,160,123,180,252,201,142,9,0,160,123,180,252,84,143,9,0,165,251,112,27,116,63,10,0,166,123,70,249,152,111,7,0,166,123,70,249,1,122,7,0,166,123,72,243,179,223,9,0,166,123,72,243,205,223,9,0,168,251,1,59,39,152,7,0,172,251,66,129,241,8,6,0,172,123,89,69,112,78,6,0,172,251,151,50,68,202,6,0,175,123,248,127,248,234,6,0,175,251,44,33,109,100,9,0,175,251,44,33,136,100,9,0,177,251,82,12,199,65,10,0,178,123,66,62,236,26,7,0,178,251,201,95,50,96,11,0,180,123,99,152,51,208,5,0,180,251,78,197,131,63,6,0,180,251,253,164,254,254,6,0,180,251,253,164,23,83,10,0,182,123,44,35,157,204,10,0,185,251,21,246,212,243,6,0,186,251,113,141,118,226,8,0,186,251,113,141,72,228,8,0,188,123,197,146,79,194,5,0,189,123,161,172,231,92,7,0,189,123,215,182,227,108,7,0,189,123,251,104,201,175,7,0,189,123,215,182,10,28,10,0,189,123,215,182,74,28,10,0,189,123,215,182,134,28,10,0,192,123,53,13,81,239,8,0,192,123,53,13,40,240,8,0,192,123,252,22,33,98,11,0,196,251,76,8,152,111,7,0,197,123,107,63,71,236,6,0,200,123,212,51,205,204,5,0,206,251,242,75,122,200,10,0,211,123,164,56,98,177,10,0,213,251,137,35,80,32,7,0,215,251,156,38,248,53,6,0,216,251,247,55,224,146,8,0,216,251,247,55,132,150,8,0,216,123,97,7,245,28,10,0,216,123,97,7,145,31,10,0,218,123,206,200,197,253,6,0,221,123,193,129,101,220,9,0,221,123,193,129,154,220,9,0,223,123,113,68,90,53,7,0,224,251,143,244,127,208,6,0,224,251,0,234,194,191,7,0,225,251,33,121,253,208,8,0,225,251,33,121,22,211,8,0,225,251,129,71,201,183,10,0,228,123,2,179,118,119,10,0,238,251,244,145,123,236,9,0,238,123,20,176,44,144,10,0,239,251,65,90,80,32,7,0,242,251,205,118,98,53,6,0,242,123,223,185,73,76,10,0,244,123,216,46,48,55,10,0,245,123,142,78,139,158,8,0,245,123,142,78,224,163,8,0,246,123,225,161,139,158,8,0,246,123,225,161,224,163,8,0,248,251,197,194,254,102,6,0,250,251,76,218,209,40,7,0,251,251,31,188,247,214,6,0,251,251,94,208,71,236,6,0,252,251,55,179,212,243,6,0,252,251,55,179,80,32,7,0,254,123,44,93,155,23,8,0,254,123,140,4,228,109,9,0,254,123,140,4,248,110,9,0,0,124,167,246,212,243,6,0,1,124,138,199,24,60,6,0,1,124,126,18,220,9,7,0,3,124,235,128,137,128,10,0,5,124,64,38,145,187,6,0,5,252,199,199,205,151,9,0,5,252,199,199,199,152,9,0,5,252,199,199,220,153,9,0,6,124,244,250,138,83,8,0,8,124,197,159,90,53,7,0,8,124,201,127,152,111,7,0,8,124,201,127,62,124,7,0,9,124,230,61,252,41,8,0,11,252,81,79,117,79,7,0,15,124,118,149,15,233,8,0,15,124,118,149,139,233,8,0,16,124,66,250,239,125,6,0,16,252,211,28,136,58,7,0,16,252,88,77,136,58,7,0,17,252,51,4,112,27,7,0,17,252,51,4,130,108,7,0,17,252,53,244,118,226,8,0,17,252,53,244,72,228,8,0,19,124,171,78,94,208,5,0,19,252,55,132,151,21,7,0,23,252,134,90,228,65,6,0,25,124,189,83,178,233,6,0,25,252,147,190,10,197,7,0,25,252,147,190,57,197,7,0,25,252,147,190,99,197,7,0,27,252,75,131,138,115,8,0,27,252,75,131,117,124,8,0,27,252,75,131,105,133,8,0,28,252,80,7,71,236,6,0,31,124,48,202,151,21,7,0,32,124,101,176,203,68,11,0,35,252,67,250,232,251,9,0,35,252,67,250,176,252,9,0,36,252,26,15,73,76,10,0,38,124,172,140,212,243,6,0,38,124,68,246,40,217,8,0,38,124,68,246,209,217,8,0,39,124,53,68,141,20,6,0,40,124,69,212,72,71,7,0,40,124,253,69,253,208,8,0,40,124,253,69,22,211,8,0,40,124,210,24,123,236,9,0,41,252,197,194,221,248,7,0,43,124,35,159,133,185,10,0,44,124,134,172,179,17,7,0,44,124,134,172,218,65,11,0,45,252,55,89,248,249,7,0,48,252,74,215,177,109,10,0,53,252,117,222,15,206,6,0,54,124,58,86,22,217,9,0,54,124,58,86,103,217,9,0,56,124,85,2,136,58,7,0,56,252,149,65,68,151,7,0,57,124,18,160,152,111,7,0,61,124,106,205,138,115,8,0,61,124,106,205,117,124,8,0,61,124,106,205,105,133,8,0,64,252,176,115,138,115,8,0,64,252,176,115,117,124,8,0,64,252,176,115,105,133,8,0,64,124,26,100,34,159,10,0,66,124,61,227,195,224,7,0,66,124,61,227,246,224,7,0,67,252,215,153,119,110,10,0,67,252,215,153,233,112,10,0,68,252,225,57,123,236,9,0,71,124,45,147,139,158,8,0,71,124,45,147,224,163,8,0,73,252,199,95,160,234,8,0,73,252,199,95,175,235,8,0,73,124,24,247,65,25,11,0,76,252,216,74,247,55,7,0,78,252,90,29,14,225,6,0,79,252,69,59,80,32,7,0,81,124,136,33,81,112,6,0,87,252,141,152,114,243,8,0,87,252,141,152,37,244,8,0,88,124,91,255,211,127,9,0,88,124,91,255,240,127,9,0,88,124,91,255,36,128,9,0,91,252,118,5,229,69,11,0,94,252,91,68,123,236,9,0,96,124,61,198,245,28,10,0,96,124,61,198,145,31,10,0,97,252,212,67,138,115,8,0,97,252,212,67,117,124,8,0,97,252,212,67,105,133,8,0,99,252,177,19,69,105,6,0,100,124,124,15,112,27,7,0,102,252,77,197,125,19,6,0,102,252,124,181,71,53,9,0,102,252,124,181,107,53,9,0,102,252,124,181,149,53,9,0,102,252,124,181,191,53,9,0,103,124,175,30,117,79,7,0,103,252,61,191,139,158,8,0,103,252,61,191,224,163,8,0,105,124,93,127,38,98,7,0,105,124,110,38,148,186,8,0,105,124,110,38,221,186,8,0,106,252,123,107,117,79,7,0,106,252,65,10,230,71,9,0,106,252,65,10,83,72,9,0,111,124,202,205,221,38,10,0,111,124,202,205,62,40,10,0,113,124,68,164,114,243,8,0,113,124,68,164,37,244,8,0,114,124,21,46,131,206,6,0,114,252,162,182,57,10,7,0,116,124,246,0,83,84,10,0,120,124,189,0,20,15,7,0,120,124,189,0,33,65,7,0,120,252,54,167,84,21,8,0,121,124,194,47,35,105,8,0,122,124,230,127,95,0,10,0,122,124,230,127,200,0,10,0,123,124,215,6,52,113,6,0,123,252,245,135,117,79,7,0,129,252,176,112,38,98,7,0,130,252,236,59,205,203,5,0,130,124,175,195,119,45,6,0,130,124,73,167,81,239,8,0,130,124,73,167,40,240,8,0,130,124,99,193,196,96,10,0,130,124,38,188,53,20,11,0,131,252,241,253,95,0,10,0,131,252,241,253,200,0,10,0,132,124,71,255,113,232,6,0,134,124,255,152,101,16,11,0,135,124,95,150,15,233,8,0,135,124,95,150,139,233,8,0,135,252,183,188,167,241,10,0,136,124,160,106,236,139,7,0,139,124,169,170,228,149,10,0,140,124,148,93,247,214,6,0,140,124,196,164,36,237,10,0,141,252,76,128,76,120,6,0,141,252,240,29,76,252,6,0,144,124,35,198,117,79,7,0,146,252,252,4,250,68,10,0,152,124,28,131,117,241,7,0,152,124,28,131,167,241,7,0,152,124,28,131,218,241,7,0,152,124,244,166,215,16,10,0,152,124,244,166,135,17,10,0,153,252,22,87,237,73,7,0,155,252,164,205,193,167,9,0,155,252,164,205,37,168,9,0,156,124,194,184,68,202,6,0,160,252,56,132,237,231,6,0,160,124,45,127,228,250,7,0,162,252,62,152,123,236,9,0,166,252,52,51,62,52,11,0,169,252,167,173,11,33,11,0,170,252,197,194,119,203,7,0,172,252,60,51,133,220,6,0,172,252,149,212,139,158,8,0,172,252,149,212,224,163,8,0,172,124,15,217,101,220,9,0,172,124,15,217,154,220,9,0,172,124,181,9,129,212,10,0,176,124,48,144,117,79,7,0,177,252,167,29,242,48,6,0,179,124,89,97,141,255,8,0,179,124,89,97,235,255,8,0,180,252,157,241,148,197,5,0,183,124,142,135,138,115,8,0,183,124,142,135,117,124,8,0,183,124,142,135,105,133,8,0,183,124,163,146,121,58,10,0,186,252,219,219,198,50,6,0,186,252,22,9,83,203,10,0,188,124,211,135,30,44,7,0,189,124,22,112,254,92,7,0,190,252,197,194,81,111,6,0,190,252,197,194,230,215,6,0,190,124,37,80,219,1,7,0,190,124,31,58,155,67,7,0,190,252,197,194,213,132,7,0,190,124,250,18,5,58,10,0,193,124,149,48,94,232,10,0,196,252,94,106,117,79,7,0,199,124,88,77,38,98,7,0,201,124,81,128,117,79,7,0,201,124,95,54,123,236,9,0,204,124,49,210,123,236,9,0,212,252,201,8,117,79,7,0,212,252,166,20,130,118,10,0,212,124,184,241,173,86,11,0,217,124,252,54,42,205,6,0,217,252,196,19,219,1,7,0,217,252,196,19,218,70,11,0,220,124,42,25,40,217,8,0,220,124,42,25,209,217,8,0,221,252,151,147,210,224,6,0,222,124,116,192,90,53,7,0,222,252,31,20,167,71,7,0,222,124,238,251,117,79,7,0,222,124,102,110,38,98,7,0,224,252,88,74,129,26,8,0,224,252,130,17,98,47,10,0,224,252,130,17,128,47,10,0,224,252,130,17,178,47,10,0,224,252,130,17,227,47,10,0,225,252,253,21,180,28,7,0,227,124,222,231,50,226,6,0,227,252,186,128,22,213,7,0,228,252,1,202,219,34,7,0,229,252,162,223,237,73,7,0,230,124,9,195,147,231,10,0,231,124,70,198,38,98,7,0,236,124,212,145,117,79,7,0,238,124,83,154,177,7,7,0,238,124,254,166,9,178,8,0,238,252,175,112,42,219,10,0,240,124,125,206,118,26,7,0,241,252,150,205,11,9,7,0,241,124,220,177,138,115,8,0,241,124,220,177,117,124,8,0,241,124,220,177,105,133,8,0,245,252,55,125,118,0,7,0,245,124,248,21,20,15,7,0,247,124,221,90,15,233,8,0,247,124,221,90,139,233,8,0,248,124,52,182,97,223,5,0,249,252,146,164,34,10,10,0,250,252,170,247,139,214,9,0,250,252,170,247,234,214,9,0,250,252,170,247,70,215,9,0,252,124,226,5,141,195,8,0,252,124,226,5,112,196,8,0,252,124,226,5,75,197,8,0,252,124,56,237,123,236,9,0,254,124,250,70,139,158,8,0,254,124,250,70,224,163,8,0,255,124,119,7,71,236,6,0,255,252,166,155,123,236,9,0,0,253,226,89,208,119,10,0,3,253,198,180,152,24,6,0,4,125,221,104,28,236,6,0,6,125,98,128,42,28,6,0,9,253,109,126,117,79,7,0,9,125,255,106,152,95,10,0,9,253,196,194,190,68,11,0,11,253,148,65,253,208,8,0,11,253,148,65,22,211,8,0,12,253,205,98,137,72,7,0,15,253,197,194,153,11,7,0,15,253,197,194,135,13,7,0,15,253,20,239,221,38,10,0,15,253,20,239,62,40,10,0,23,125,208,111,103,147,10,0,26,253,131,154,160,234,8,0,26,253,131,154,175,235,8,0,29,125,178,200,207,113,6,0,29,253,194,201,80,32,7,0,31,125,155,153,69,131,6,0,33,125,201,52,245,41,7,0,34,253,197,194,153,11,7,0,34,253,197,194,135,13,7,0,34,253,197,194,104,185,8,0,35,253,166,159,33,210,6,0,35,253,197,194,212,243,6,0,41,125,24,239,49,110,10,0,42,125,120,246,212,243,6,0,43,253,158,255,71,101,6,0,43,253,158,255,104,101,6,0,43,253,91,138,128,88,10,0,44,253,197,194,51,3,6,0,44,125,221,99,245,28,10,0,44,125,221,99,145,31,10,0,48,125,55,201,138,115,8,0,48,125,55,201,117,124,8,0,48,125,55,201,105,133,8,0,51,125,36,87,136,212,9,0,51,125,36,87,161,212,9,0,53,125,138,116,214,132,10,0,53,125,138,116,247,133,10,0,54,125,220,133,212,243,6,0,62,253,50,156,68,202,6,0,62,125,40,83,165,65,10,0,63,125,136,21,68,65,11,0,64,125,24,199,130,227,6,0,70,253,167,87,232,191,8,0,70,253,167,87,162,193,8,0,72,253,57,188,158,92,6,0,72,125,29,120,212,243,6,0,72,125,213,68,28,68,9,0,72,125,213,68,215,68,9,0,73,125,54,242,47,1,7,0,75,125,107,249,179,222,8,0,75,125,107,249,152,223,8,0,76,253,102,53,250,81,8,0,80,125,192,42,123,236,9,0,87,125,112,250,63,22,6,0,89,253,254,148,67,201,6,0,89,125,192,103,21,36,7,0,89,253,132,48,90,37,7,0,90,125,139,122,107,187,10,0,91,125,238,55,63,143,7,0,91,125,39,178,89,27,8,0,94,253,65,143,125,44,7,0,94,253,43,179,22,217,9,0,94,253,43,179,103,217,9,0,95,253,228,93,83,185,9,0,95,253,228,93,110,185,9,0,95,253,228,93,143,185,9,0,96,253,176,205,215,255,6,0,97,253,78,45,131,206,6,0,97,253,111,167,33,65,7,0,99,253,248,141,180,28,7,0,101,253,178,45,123,236,9,0,102,125,42,143,72,202,8,0,102,125,42,143,175,202,8,0,103,125,78,160,81,63,7,0,103,125,186,94,2,199,9,0,103,125,186,94,169,199,9,0,104,253,2,146,38,98,7,0,105,253,125,102,247,55,7,0,108,253,255,79,224,146,8,0,108,253,255,79,132,150,8,0,109,253,8,99,117,79,7,0,109,125,219,198,160,234,8,0,109,125,219,198,175,235,8,0,110,125,254,140,237,231,6,0,111,125,195,150,212,197,6,0,111,125,195,150,236,51,7,0,111,125,195,150,72,65,8,0,118,125,167,181,36,85,10,0,122,253,91,93,243,206,9,0,122,253,91,93,42,207,9,0,122,253,91,93,98,207,9,0,125,253,213,251,251,123,6,0,126,253,70,4,139,158,8,0,126,253,70,4,224,163,8,0,127,253,54,184,133,220,6,0,127,253,54,184,38,98,7,0,128,253,219,251,212,243,6,0,130,253,96,220,38,81,6,0,132,125,33,183,70,5,8,0,132,253,250,32,30,171,9,0,135,253,221,66,63,227,10,0,137,253,30,22,73,220,5,0,137,253,120,33,41,10,11,0,138,125,147,241,152,111,7,0,138,125,147,241,206,62,8,0,138,125,147,241,99,63,8,0,138,125,147,241,4,64,8,0,138,125,147,241,73,218,9,0,138,253,185,206,123,236,9,0,141,253,185,65,179,222,8,0,141,253,185,65,152,223,8,0,141,125,238,248,205,151,9,0,141,125,238,248,199,152,9,0,141,125,238,248,220,153,9,0,143,253,143,39,219,1,7,0,148,125,8,197,152,111,7,0,148,125,8,197,173,169,8,0,149,253,171,245,221,38,10,0,149,253,171,245,62,40,10,0,152,253,77,70,92,93,7,0,152,125,233,118,228,109,9,0,152,125,233,118,248,110,9,0,154,125,2,195,71,236,6,0,158,253,193,185,98,33,6,0,158,125,101,32,245,41,7,0,162,253,223,156,90,53,7,0,163,125,138,44,23,179,8,0,163,125,138,44,119,179,8,0,164,125,144,37,131,48,7,0,165,125,54,116,71,236,6,0,165,125,209,88,138,115,8,0,165,125,209,88,117,124,8,0,165,125,209,88,105,133,8,0,167,253,37,108,250,66,6,0,167,125,208,152,117,79,7,0,170,253,243,47,204,36,6,0,172,253,216,97,48,225,6,0,173,125,137,39,250,252,6,0,173,253,207,246,42,46,7,0,174,253,122,78,107,210,6,0,174,253,42,116,34,10,10,0,176,253,156,38,153,11,7,0,176,253,156,38,135,13,7,0,177,125,68,107,59,225,5,0,177,125,68,107,33,65,7,0,180,253,31,187,191,74,10,0,181,253,144,88,107,190,7,0,182,253,236,76,163,201,6,0,185,253,227,28,237,73,7,0,185,253,233,177,3,98,11,0,186,253,28,163,253,210,6,0,186,253,33,235,117,79,7,0,186,253,197,194,63,112,9,0,186,253,197,194,116,112,9,0,186,253,197,194,175,64,11,0,187,253,156,38,183,172,7,0,187,253,63,121,106,59,9,0,187,253,63,121,181,59,9,0,188,253,21,206,245,87,10,0,189,253,197,194,212,243,6,0,191,253,70,33,227,223,6,0,193,125,165,55,194,211,6,0,193,253,82,12,117,79,7,0,195,125,104,65,237,73,7,0,197,125,155,40,189,71,10,0,198,253,202,44,71,236,6,0,198,253,56,211,237,73,7,0,198,253,205,106,177,133,7,0,198,253,205,106,38,134,7,0,199,125,8,163,117,173,10,0,200,125,151,53,95,243,10,0,203,125,82,200,247,214,6,0,203,253,127,119,212,243,6,0,206,253,194,123,151,34,6,0,206,125,167,162,71,163,9,0,206,125,167,162,91,163,9,0,206,253,18,28,221,38,10,0,206,253,18,28,62,40,10,0,208,253,233,174,138,115,8,0,208,253,233,174,117,124,8,0,208,253,233,174,105,133,8,0,211,253,46,127,187,200,5,0,211,125,208,120,71,236,6,0,216,125,67,121,193,117,9,0,216,125,67,121,221,117,9,0,217,253,204,226,123,236,9,0,218,253,131,28,179,181,7,0,219,125,7,64,71,163,6,0,219,125,79,199,20,15,7,0,219,253,175,231,123,236,9,0,222,253,61,217,197,63,6,0,222,253,61,217,136,58,7,0,224,253,70,155,212,243,6,0,225,253,163,160,5,213,5,0,225,253,163,160,8,57,6,0,227,125,215,240,249,149,6,0,227,253,146,99,39,65,9,0,227,253,146,99,161,65,9,0,227,253,146,99,21,66,9,0,227,253,146,99,188,66,9,0,227,253,146,99,85,67,9,0,229,253,110,49,90,53,7,0,230,125,103,51,118,214,6,0,232,125,226,170,248,122,6,0,236,125,231,23,6,116,6,0,237,253,232,232,251,94,6,0,237,253,131,191,57,10,7,0,237,253,132,216,213,77,11,0,239,253,200,123,57,10,7,0,242,253,155,66,50,51,7,0,243,253,139,80,33,65,7,0,243,253,129,181,215,86,10,0,245,253,24,181,12,234,6,0,246,253,197,194,76,183,6,0,246,253,234,9,21,36,7,0,246,125,146,63,163,88,10,0,247,253,121,232,217,62,7,0,248,253,197,194,210,225,6,0,248,253,148,247,152,229,6,0,250,125,27,238,97,142,6,0,250,125,27,238,141,142,6,0,250,125,71,223,38,122,10,0,252,125,197,5,204,213,9,0,254,253,147,190,193,146,7,0,255,253,178,27,112,78,6,0,0,126,37,155,4,50,6,0,0,126,240,48,118,226,8,0,0,126,240,48,72,228,8,0,0,254,112,255,123,236,9,0,1,254,179,64,80,32,7,0,2,254,195,231,227,218,6,0,2,254,195,231,101,219,6,0,2,126,120,122,212,243,6,0,4,254,35,24,245,28,10,0,4,254,35,24,145,31,10,0,6,126,237,241,244,9,6,0,7,254,224,233,117,79,7,0,8,126,120,157,156,54,10,0,9,126,81,190,152,111,7,0,9,126,81,190,154,121,7,0,10,254,252,126,136,58,7,0,10,126,208,125,237,73,7,0,10,126,89,221,71,79,10,0,10,254,116,106,230,23,11,0,10,254,116,106,1,24,11,0,11,254,231,54,106,209,10,0,15,126,241,65,228,156,6,0,16,254,64,31,241,239,7,0,16,254,64,31,169,35,8,0,18,254,232,62,224,146,8,0,18,254,232,62,132,150,8,0,25,126,230,49,245,28,10,0,25,126,230,49,145,31,10,0,26,254,103,227,136,58,7,0,28,254,215,199,182,114,8,0,29,126,234,19,136,58,7,0,30,254,46,175,73,29,8,0,32,254,34,250,230,215,6,0,34,254,83,60,212,243,6,0,36,254,230,115,204,213,9,0,39,126,34,57,152,111,7,0,39,126,34,57,206,62,8,0,39,126,34,57,99,63,8,0,39,126,34,57,4,64,8,0,39,126,34,57,73,218,9,0,43,254,58,203,12,234,6,0,43,254,130,53,196,197,9,0,43,254,130,53,214,197,9,0,44,126,113,22,194,211,6,0,52,126,219,70,230,130,7,0,53,126,165,216,212,243,6,0,55,254,116,10,123,236,9,0,56,254,199,154,192,115,6,0,61,254,156,148,201,206,5,0,63,254,246,139,124,10,9,0,64,254,52,90,212,243,6,0,66,254,179,11,197,253,6,0,70,254,156,38,255,250,5,0,70,254,206,16,113,24,7,0,70,254,156,38,38,134,7,0,70,254,40,107,199,42,11,0,71,254,102,70,237,109,6,0,72,254,210,193,70,158,10,0,73,254,136,41,1,192,5,0,73,126,213,15,61,224,6,0,73,126,237,96,18,225,9,0,73,126,237,96,38,225,9,0,74,254,146,155,138,115,8,0,74,254,146,155,117,124,8,0,74,254,146,155,105,133,8,0,74,254,74,187,124,10,9,0,74,126,105,136,13,54,11,0,75,254,144,247,68,202,6,0,75,254,35,128,57,10,7,0,75,254,200,15,113,47,7,0,76,254,156,38,125,66,6,0,79,254,226,70,230,71,9,0,79,254,226,70,83,72,9,0,80,126,207,188,237,73,7,0,81,126,159,245,138,115,8,0,81,126,159,245,117,124,8,0,81,126,159,245,105,133,8,0,82,254,112,151,221,185,10,0,83,126,12,188,187,146,6,0,87,254,121,69,138,115,8,0,87,254,121,69,117,124,8,0,87,254,121,69,105,133,8,0,90,254,173,140,111,188,5,0,93,126,187,123,162,90,6,0,97,254,38,151,212,243,6,0,97,126,86,31,173,124,10,0,97,254,42,69,221,141,10,0,98,254,230,242,32,30,7,0,98,126,43,113,117,79,7,0,102,126,158,53,182,140,7,0,104,254,11,224,188,36,6,0,105,254,123,10,209,25,6,0,108,126,69,66,224,146,8,0,108,126,69,66,132,150,8,0,109,254,122,84,192,23,8,0,112,254,50,98,254,243,5,0,112,254,50,98,153,89,7,0,113,254,41,129,0,203,6,0,114,254,29,6,180,18,11,0,115,254,27,34,236,213,6,0,117,254,220,20,117,79,7,0,119,254,185,67,197,253,6,0,121,126,112,119,102,18,10,0,121,126,112,119,133,18,10,0,122,254,98,218,225,201,6,0,125,254,64,225,204,36,6,0,126,254,57,102,143,12,10,0,128,126,106,223,237,73,7,0,128,254,254,208,117,79,7,0,128,126,109,6,138,115,8,0,128,126,109,6,117,124,8,0,128,126,109,6,105,133,8,0,128,126,106,223,150,202,10,0,130,126,189,3,158,193,5,0,133,126,136,86,81,63,7,0,134,126,63,115,136,58,7,0,134,254,249,226,226,83,10,0,139,126,103,92,146,148,10,0,140,254,36,132,189,193,10,0,143,254,73,231,182,97,8,0,144,254,253,10,64,34,6,0,144,126,121,243,212,243,6,0,154,254,205,99,210,215,5,0,154,254,215,84,117,79,7,0,154,254,129,131,224,146,8,0,154,254,129,131,132,150,8,0,154,254,205,99,208,17,11,0,155,126,208,54,154,4,7,0,158,126,157,201,23,179,8,0,158,126,157,201,119,179,8,0,159,254,209,238,224,96,11,0,160,254,207,158,29,5,7,0,160,254,172,36,38,98,7,0,164,254,143,253,38,98,7,0,164,126,133,143,189,77,8,0,164,254,99,102,139,158,8,0,164,254,99,102,224,163,8,0,166,254,51,90,123,236,9,0,166,254,156,210,43,242,10,0,170,254,167,230,237,73,7,0,171,254,0,190,227,108,7,0,171,254,0,190,92,127,7,0,180,126,247,31,246,205,8,0,180,126,247,31,155,206,8,0,183,126,161,67,15,84,9,0,184,126,158,117,228,109,9,0,184,126,158,117,248,110,9,0,185,254,110,69,204,192,6,0,185,254,245,2,140,206,7,0,185,254,153,114,123,236,9,0,186,254,232,240,117,79,7,0,191,254,5,225,20,15,7,0,191,254,186,145,179,17,7,0,191,254,5,225,179,17,7,0,196,126,194,66,20,15,7,0,196,126,194,66,179,17,7,0,198,126,144,248,171,49,7,0,198,254,176,236,139,158,8,0,198,254,176,236,224,163,8,0,200,126,39,195,167,71,7,0,201,126,61,209,22,14,11,0,202,254,165,222,199,6,6,0,202,254,165,222,26,32,6,0,202,254,102,32,138,115,8,0,202,254,102,32,117,124,8,0,202,254,102,32,105,133,8,0,202,126,135,102,75,1,9,0,202,126,135,102,154,2,9,0,202,126,135,102,235,3,9,0,202,126,135,102,65,5,9,0,202,126,167,168,228,109,9,0,202,126,167,168,248,110,9,0,205,254,47,208,14,146,8,0,205,254,47,208,49,146,8,0,206,126,243,23,179,222,8,0,206,126,243,23,152,223,8,0,209,254,80,23,20,44,11,0,210,126,37,42,117,79,7,0,210,126,235,201,17,184,8,0,210,254,228,209,21,43,11,0,213,254,194,230,212,243,6,0,213,126,157,14,101,75,10,0,214,254,156,38,232,251,9,0,214,254,156,38,176,252,9,0,216,254,236,181,63,212,7,0,217,254,173,67,38,103,9,0,217,254,173,67,89,103,9,0,219,254,174,246,232,191,8,0,219,254,174,246,162,193,8,0,221,254,185,158,183,67,6,0,221,254,88,248,228,212,6,0,228,254,3,9,13,47,9,0,228,254,3,9,49,47,9,0,228,126,190,7,225,209,10,0,229,254,198,213,179,17,7,0,229,254,198,213,167,107,7,0,229,254,198,213,146,122,7,0,230,254,72,194,1,194,5,0,233,126,183,52,240,226,6,0,233,254,198,64,171,63,7,0,234,126,211,28,66,121,6,0,235,254,174,91,78,203,8,0,236,126,234,170,232,191,8,0,236,126,234,170,162,193,8,0,238,254,237,150,80,32,7,0,239,126,228,131,43,124,6,0,240,254,243,219,75,1,9,0,240,254,243,219,154,2,9,0,240,254,243,219,235,3,9,0,240,254,243,219,65,5,9,0,242,126,217,217,253,208,8,0,242,126,217,217,22,211,8,0,242,126,224,16,202,129,10,0,244,126,121,121,125,44,7,0,246,254,28,251,224,146,8,0,246,254,28,251,132,150,8,0,247,254,119,2,138,115,8,0,247,254,119,2,117,124,8,0,247,254,119,2,105,133,8,0,249,254,172,242,75,6,6,0,5,255,15,183,191,60,8,0,8,255,65,45,81,239,8,0,8,255,65,45,40,240,8,0,9,255,114,117,194,211,6,0,12,255,68,69,106,87,11,0,14,127,102,53,221,38,10,0,14,127,102,53,62,40,10,0,15,255,208,249,253,210,6,0,15,255,41,117,179,62,11,0,17,255,130,67,4,249,10,0,18,255,172,133,34,50,6,0,18,127,57,231,146,235,6,0,18,255,215,197,152,111,7,0,18,255,215,197,110,38,10,0,18,255,215,197,172,38,10,0,22,127,64,185,81,63,7,0,22,127,205,34,198,66,10,0,24,127,222,229,241,239,7,0,24,127,222,229,169,35,8,0,25,255,151,199,163,107,9,0,25,255,151,199,201,107,9,0,25,255,151,199,237,107,9,0,34,127,6,16,152,111,7,0,34,127,6,16,73,197,9,0,36,127,5,204,210,182,6,0,36,127,36,195,123,236,9,0,37,127,16,144,71,236,6,0,37,255,7,253,35,202,7,0,37,255,7,253,80,202,7,0,37,255,7,253,127,202,7,0,39,127,50,99,237,73,7,0,40,255,57,228,31,252,8,0,40,255,57,228,56,252,8,0,40,127,199,172,228,64,11,0,43,127,81,190,131,5,11,0,45,255,170,145,62,28,7,0,46,255,22,102,209,205,6,0,47,255,146,139,154,224,6,0,47,255,112,187,5,156,10,0,48,127,155,237,112,5,10,0,48,127,155,237,28,6,10,0,49,255,72,94,57,10,7,0,49,255,39,11,160,234,8,0,49,255,39,11,175,235,8,0,50,255,236,240,215,16,10,0,50,255,236,240,135,17,10,0,54,127,213,202,246,221,6,0,55,127,156,248,237,73,7,0,58,127,144,47,57,10,7,0,60,127,122,196,245,28,10,0,60,127,122,196,145,31,10,0,61,127,236,238,68,202,6,0,62,255,32,31,123,236,9,0,65,127,102,68,71,236,6,0,67,127,138,81,212,243,6,0,67,127,150,119,80,167,9,0,67,127,150,119,37,168,9,0,69,255,37,224,153,11,7,0,69,255,37,224,135,13,7,0,70,255,230,242,174,93,10,0,72,127,227,113,99,66,8,0,73,127,204,207,182,234,6,0,73,255,102,121,139,158,8,0,73,255,102,121,224,163,8,0,76,127,29,234,173,190,5,0,77,255,213,243,237,73,7,0,78,255,36,58,48,225,6,0,78,127,145,16,218,143,10,0,80,127,64,245,24,229,10,0,81,255,62,99,136,58,7,0,81,127,73,113,51,255,9,0,81,127,73,113,139,255,9,0,81,127,73,113,226,255,9,0,82,127,230,201,82,235,6,0,82,255,166,207,204,213,9,0,83,127,173,241,101,141,10,0,86,127,178,7,28,68,9,0,86,127,178,7,215,68,9,0,87,127,201,210,182,234,6,0,87,127,94,89,237,73,7,0,90,255,147,212,38,98,7,0,90,127,169,206,141,255,8,0,90,127,169,206,235,255,8,0,91,127,86,6,138,115,8,0,91,127,86,6,117,124,8,0,91,127,86,6,105,133,8,0,93,255,162,147,126,186,10,0,94,127,82,90,222,50,9,0,94,127,82,90,242,50,9,0,95,255,63,0,99,66,8,0,98,255,177,36,95,0,10,0,98,255,177,36,200,0,10,0,101,127,73,130,90,53,7,0,102,255,83,24,104,246,5,0,102,255,83,24,89,183,9,0,102,255,83,24,132,183,9,0,102,127,88,47,46,16,10,0,103,127,209,134,193,117,9,0,103,127,209,134,221,117,9,0,108,255,244,95,199,141,6,0,109,255,115,106,110,89,7,0,109,255,47,126,245,28,10,0,109,255,47,126,145,31,10,0,110,127,61,238,252,18,6,0,112,255,161,9,142,196,6,0,112,127,5,102,236,39,11,0,113,255,13,174,146,235,6,0,113,127,188,129,71,236,6,0,113,127,221,26,136,58,7,0,113,255,45,127,53,255,7,0,113,127,239,58,226,44,11,0,114,127,128,111,247,55,7,0,115,255,206,80,151,21,7,0,115,255,241,193,117,79,7,0,115,127,98,176,93,240,10,0,118,127,150,171,171,63,7,0,119,255,155,51,241,95,8,0,120,255,166,98,117,37,7,0,121,255,163,160,251,3,6,0,121,255,163,160,236,61,6,0,121,255,156,9,237,73,7,0,123,127,151,250,29,5,7,0,127,127,82,19,231,196,6,0,127,255,91,167,38,98,7,0,130,255,249,44,171,198,7,0,132,127,46,139,206,87,9,0,132,127,46,139,25,88,9,0,134,127,69,213,136,58,7,0,135,127,16,246,232,191,8,0,135,127,16,246,162,193,8,0,137,255,89,196,57,171,8,0,137,255,89,196,133,172,8,0,137,255,89,196,211,173,8,0,138,127,155,121,113,47,7,0,138,255,219,126,224,146,8,0,138,255,219,126,132,150,8,0,142,127,238,181,123,236,9,0,144,127,94,182,215,156,10,0,145,127,226,141,4,246,10,0,147,255,46,57,161,29,8,0,147,255,46,57,189,29,8,0,149,255,189,184,46,236,5,0,151,255,12,122,235,99,6,0,153,127,139,253,182,61,8,0,153,255,163,87,166,139,10,0,153,127,139,253,178,174,10,0,163,255,88,116,2,199,9,0,163,255,88,116,169,199,9,0,165,127,116,29,8,1,7,0,165,127,116,40,132,27,8,0,165,127,116,29,182,114,8,0,166,255,149,205,212,243,6,0,167,127,109,196,84,21,8,0,168,127,246,63,138,115,8,0,168,127,246,63,117,124,8,0,168,127,246,63,105,133,8,0,168,127,233,181,109,189,10,0,171,255,188,79,27,214,5,0,172,127,253,27,249,154,8,0,172,127,253,27,148,155,8,0,172,127,253,27,52,156,8,0,174,255,237,63,237,73,7,0,176,127,65,237,24,195,6,0,176,255,55,200,57,171,8,0,176,255,55,200,133,172,8,0,176,255,55,200,211,173,8,0,180,255,77,221,145,131,10,0,183,255,138,40,221,38,10,0,183,255,138,40,62,40,10,0,184,255,86,112,90,53,7,0,185,127,206,133,201,3,7,0,185,127,125,34,251,158,10,0,185,127,125,34,14,159,10,0,185,127,125,34,93,169,10,0,189,127,222,199,228,212,5,0,189,127,35,96,232,124,10,0,189,255,162,113,127,220,10,0,191,255,201,148,188,73,7,0,193,127,45,127,236,26,7,0,195,255,205,81,30,231,6,0,196,127,92,115,178,79,8,0,200,255,15,233,150,224,10,0,202,127,234,254,69,50,6,0,202,127,255,164,80,32,7,0,205,255,22,228,12,234,6,0,207,255,188,167,57,171,8,0,207,255,188,167,133,172,8,0,207,255,188,167,211,173,8,0,209,127,125,120,222,96,10,0,210,127,148,209,240,71,11,0,210,127,148,209,62,74,11,0,210,127,148,209,72,79,11,0,213,255,191,200,124,45,8,0,213,255,191,200,1,46,8,0,213,255,191,200,123,46,8,0,213,255,184,44,153,207,8,0,213,255,184,44,44,208,8,0,214,127,248,233,68,133,6,0,214,255,200,52,75,153,6,0,214,255,99,154,141,230,9,0,214,255,99,154,217,230,9,0,217,127,35,118,178,50,11,0,218,255,206,34,136,58,7,0,219,127,230,121,2,23,7,0,219,255,43,173,38,98,7,0,221,255,188,185,227,218,6,0,221,127,60,92,238,88,9,0,221,127,60,92,4,89,9,0,222,127,160,177,123,78,11,0,224,255,13,24,197,253,6,0,225,255,192,190,123,236,9,0,229,127,12,36,254,243,5,0,229,127,12,36,153,89,7,0,231,255,16,145,151,21,7,0,234,255,55,208,117,79,7,0,235,127,245,28,16,191,5,0,235,255,201,148,136,58,7,0,236,255,93,97,109,172,9,0,236,255,93,97,178,173,9,0,236,255,93,97,250,174,9,0,238,255,10,159,75,1,9,0,238,255,10,159,154,2,9,0,238,255,10,159,235,3,9,0,238,255,10,159,65,5,9,0,240,255,203,80,235,189,7,0,242,127,215,18,117,79,7,0,244,255,32,120,236,213,6,0,245,127,51,98,179,222,8,0,245,127,51,98,152,223,8,0,249,255,248,131,161,130,10,0,250,127,22,126,117,37,7,0,253,127,213,246,179,17,7,0,253,255,31,27,219,210,7,0,255,127,81,190,237,73,7,0,16,1,19,35,65,67,67,108,97,121,101,114,66,97,99,107,103,114,111,117,110,100,2,1,50,209,63,94,16,1,20,35,65,68,79,67,80,85,66,95,99,111,111,107,105,101,95,98,111,120,120,2,1,117,214,219,47,16,1,10,35,65,99,116,105,111,110,66,97,114,2,1,20,232,174,167,16,1,54,35,65,117,116,111,107,101,116,105,110,103,45,83,112,117,95,95,99,111,111,107,105,101,66,97,110,110,101,114,45,109,111,100,117,108,101,95,95,119,114,97,112,67,111,111,107,105,101,66,97,110,110,101,114,2,1,238,156,201,104,16,1,7,35,67,67,95,66,97,114,2,1,39,162,182,218,16,1,20,35,67,79,69,75,73,78,70,79,95,99,111,111,107,105,101,95,98,111,120,2,1,98,97,120,225,16,1,3,35,67,81,2,14,1,164,160,34,19,174,60,227,29,190,66,143,47,103,220,172,48,144,93,123,53,151,230,35,153,203,49,32,157,228,87,78,158,238,77,55,161,12,248,86,164,109,248,229,189,248,183,52,200,182,122,250,218,152,220,142,16,1,6,35,67,111,67,111,110,2,1,189,206,227,40,16,1,39,35,67,111,110,116,101,110,116,112,108,97,99,101,104,111,108,100,101,114,49,95,84,65,69,66,51,56,49,53,65,48,53,49,95,67,111,108,48,48,2,1,14,48,107,53,16,1,43,35,67,111,111,107,105,101,65,99,99,101,112,116,83,117,98,76,97,121,111,117,116,49,95,99,111,111,107,105,101,115,109,101,115,115,97,103,101,115,104,111,119,110,2,1,125,94,75,30,16,1,13,35,67,111,111,107,105,101,66,97,110,110,101,114,2,1,163,103,3,219,16,1,14,35,67,111,111,107,105,101,67,111,110,116,114,111,108,2,1,81,13,228,154,16,1,16,35,67,111,111,107,105,101,115,45,119,114,97,112,112,101,114,2,1,61,230,204,243,16,1,28,35,67,121,98,111,116,67,111,111,107,105,101,98,111,116,68,105,97,108,111,103,87,114,97,112,112,101,114,2,1,156,13,193,72,16,1,19,35,69,68,79,67,80,85,66,95,99,111,111,107,105,101,95,98,111,120,2,1,117,214,219,43,16,1,20,35,69,80,68,70,84,73,80,83,95,99,111,111,107,105,101,95,98,111,120,2,1,64,68,167,56,16,1,10,35,69,85,87,97,114,110,105,110,103,2,1,245,126,215,132,16,1,15,35,69,99,117,102,105,108,101,115,67,111,111,107,105,101,2,1,101,161,103,106,16,1,7,35,70,73,83,76,67,67,2,3,34,127,133,203,53,157,81,129,94,9,161,220,16,1,11,35,71,66,95,111,118,101,114,108,97,121,2,1,150,222,117,98,16,1,19,35,71,84,77,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,56,244,137,251,16,1,20,35,73,68,79,67,84,73,80,83,95,99,111,111,107,105,101,95,98,111,120,2,1,64,67,90,122,16,1,18,35,76,101,103,97,108,67,111,111,107,105,101,78,111,116,105,99,101,2,1,21,151,242,152,16,1,20,35,77,79,65,77,73,78,70,79,95,99,111,111,107,105,101,95,98,111,120,2,1,98,93,94,53,16,1,24,35,80,68,70,67,79,70,70,69,69,67,79,77,95,99,111,111,107,105,101,95,98,111,120,2,1,140,173,254,90,16,1,12,35,80,79,80,85,80,83,95,82,79,79,84,2,3,66,100,36,225,96,206,140,137,156,236,229,81,16,1,3,35,80,80,2,1,105,31,39,15,16,1,13,35,80,111,108,105,99,121,78,111,116,105,99,101,2,1,127,15,4,95,16,1,13,35,80,111,112,117,112,77,101,115,115,97,103,101,2,3,51,93,239,113,108,171,144,126,148,137,6,150,16,1,13,35,80,114,105,118,97,99,121,65,108,101,114,116,2,1,242,84,138,13,16,1,14,35,80,114,105,118,97,99,121,78,111,116,105,99,101,2,1,46,195,191,57,16,1,9,35,82,101,103,67,84,66,87,70,2,1,53,122,222,224,16,1,8,35,83,67,65,104,108,100,114,2,1,131,154,75,13,16,1,4,35,83,67,75,2,1,170,207,12,202,16,1,13,35,83,116,105,99,107,121,70,111,111,116,101,114,2,1,232,137,10,91,16,1,10,35,84,79,85,77,115,103,67,111,110,2,1,42,205,196,40,16,1,16,35,84,119,71,105,48,112,79,110,88,98,45,112,97,103,101,2,1,183,243,133,70,16,1,19,35,87,66,45,102,108,111,97,116,105,110,103,45,110,111,116,105,99,101,2,1,85,82,99,141,16,1,23,35,87,87,70,67,111,111,107,105,101,80,114,105,118,97,99,121,78,111,116,105,99,101,2,1,63,138,212,249,0,1,8,35,92,53,102,32,105,67,68,2,1,72,192,247,121,16,1,31,35,95,95,77,82,67,85,84,79,85,84,95,65,78,65,76,89,84,73,67,83,95,65,71,82,69,69,77,69,78,84,2,1,136,26,181,207,16,1,10,35,95,95,99,111,110,115,101,110,116,2,2,103,149,177,27,105,71,190,19,16,1,23,35,95,95,116,101,97,108,105,117,109,73,109,112,108,105,99,105,116,109,111,100,97,108,2,1,38,157,169,194,16,1,4,35,95,112,99,2,1,102,25,113,241,16,1,10,35,95,116,104,45,116,114,117,115,116,2,1,148,188,122,181,16,1,17,35,97,98,114,95,99,111,111,107,105,101,95,109,111,100,97,108,2,1,252,121,77,224,16,1,11,35,97,99,45,119,114,97,112,112,101,114,2,1,25,40,56,47,16,1,12,35,97,99,98,45,119,114,97,112,112,101,114,2,1,54,162,35,95,16,1,9,35,97,99,98,77,111,100,97,108,2,1,127,80,60,78,16,1,11,35,97,99,99,45,98,111,116,116,111,109,2,1,234,29,127,76,16,1,27,35,97,99,99,101,112,116,45,115,105,112,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,143,80,200,104,16,1,11,35,97,99,99,101,112,116,97,110,99,101,2,2,56,223,186,145,61,242,164,132,16,1,10,35,97,99,99,101,112,116,98,97,114,2,1,24,138,209,15,16,1,18,35,97,99,102,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,28,245,127,235,16,1,16,35,97,99,104,116,117,110,103,45,111,118,101,114,108,97,121,2,1,202,34,230,197,16,1,34,35,97,99,107,110,111,119,108,101,100,103,101,67,111,111,107,105,101,115,65,110,100,80,114,105,118,97,99,121,77,111,100,97,108,2,1,117,229,194,45,16,1,43,35,97,100,101,118,105,110,116,97,95,99,111,110,115,101,110,116,115,95,99,111,111,107,105,101,115,95,117,110,105,118,101,114,115,97,108,95,119,105,100,103,101,116,2,1,211,97,186,19,16,1,23,35,97,100,110,115,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,2,1,242,69,129,163,16,1,17,35,97,100,117,108,116,119,97,114,110,105,110,103,109,97,115,107,2,1,78,189,204,242,16,1,27,35,97,101,99,111,109,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,2,1,126,57,45,209,16,1,7,35,97,103,114,101,101,67,2,1,41,136,254,73,16,1,16,35,97,103,114,101,101,109,101,110,116,45,97,108,101,114,116,2,1,10,132,94,95,16,1,17,35,97,103,114,101,101,109,101,110,116,77,101,115,115,97,103,101,2,2,81,232,100,79,187,4,197,194,16,1,14,35,97,103,114,101,101,109,101,110,116,80,97,110,101,2,1,13,244,189,207,16,1,24,35,97,105,114,95,99,111,111,107,105,101,108,97,119,95,99,111,110,116,97,105,110,101,114,2,1,209,244,179,145,16,1,19,35,97,106,45,112,114,105,118,97,99,121,45,109,101,115,115,97,103,101,2,1,155,8,220,168,16,1,6,35,97,108,101,114,116,2,1,189,171,22,69,16,1,13,35,97,108,101,114,116,45,98,97,110,110,101,114,2,1,250,131,183,75,16,1,61,35,97,108,101,114,116,45,98,97,110,110,101,114,32,62,32,46,121,116,100,45,98,114,111,119,115,101,32,62,32,46,121,116,45,97,108,101,114,116,45,119,105,116,104,45,97,99,116,105,111,110,115,45,114,101,110,100,101,114,101,114,2,1,172,236,226,157,16,1,16,35,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,2,1,31,118,138,19,16,1,11,35,97,108,101,114,116,45,110,108,112,100,2,1,110,93,164,241,16,1,14,35,97,108,101,114,116,95,109,101,115,115,97,103,101,2,1,77,75,139,37,16,1,12,35,97,108,101,114,116,95,109,111,100,97,108,2,1,2,234,2,105,16,1,16,35,97,108,101,114,116,109,101,115,115,97,103,101,119,114,112,2,1,98,154,30,221,16,1,12,35,97,109,45,98,114,97,110,100,105,110,103,2,5,33,198,201,89,170,26,75,196,198,244,32,76,202,187,42,228,233,205,181,84,16,1,13,35,97,110,97,108,121,116,105,99,115,45,105,100,2,1,3,189,126,130,16,1,17,35,97,110,97,108,121,116,105,99,115,45,112,114,111,109,112,116,2,1,86,30,113,254,16,1,16,35,97,111,77,101,115,115,97,103,101,72,111,108,100,101,114,2,1,194,197,249,174,16,1,17,35,97,111,115,45,67,111,111,107,105,101,45,77,111,100,97,108,2,1,192,182,248,38,16,1,23,35,97,114,121,111,115,121,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,194,72,254,230,16,1,11,35,97,115,107,112,114,105,118,97,99,121,2,1,171,154,144,255,16,1,17,35,98,97,99,107,45,116,111,45,111,108,100,45,115,105,116,101,2,1,133,161,250,65,16,1,7,35,98,97,110,110,101,114,2,1,146,197,123,188,16,1,24,35,98,97,110,110,101,114,45,111,118,101,114,108,97,121,45,116,111,112,45,112,97,103,101,2,1,138,13,228,226,16,1,16,35,98,97,110,110,101,114,45,112,111,108,105,99,105,101,115,2,1,230,192,189,22,16,1,14,35,98,97,110,110,101,114,45,115,112,97,99,101,114,2,1,127,218,217,138,16,1,14,35,98,97,110,110,101,114,79,118,101,114,108,97,121,2,1,25,88,248,164,16,1,8,35,98,97,110,110,101,114,115,2,1,168,114,58,215,16,1,30,35,98,97,110,110,105,101,114,101,45,99,111,110,115,101,110,116,101,109,101,110,116,45,116,101,109,111,105,110,115,2,1,223,21,12,90,16,1,12,35,98,99,109,112,95,102,111,111,116,101,114,2,1,32,9,211,54,16,1,9,35,98,108,97,99,107,111,117,116,2,2,63,118,139,155,229,161,84,51,16,1,14,35,98,108,111,99,107,45,98,108,111,99,107,45,54,2,1,11,127,183,29,16,1,19,35,98,108,111,99,107,45,99,111,111,107,105,101,110,111,116,105,99,101,2,1,13,142,160,208,16,1,19,35,98,108,111,99,107,45,99,111,111,107,105,101,112,111,108,105,99,121,2,1,160,164,24,183,16,1,21,35,98,108,111,99,107,45,108,111,110,100,111,110,45,99,111,111,107,105,101,115,2,1,1,101,250,48,16,1,21,35,98,108,111,99,107,45,115,101,99,117,114,105,116,121,45,98,108,111,99,107,2,2,86,30,176,168,209,115,119,140,16,1,21,35,98,108,111,99,107,45,116,101,114,109,115,111,102,115,101,114,118,105,99,101,2,1,148,187,243,65,16,1,10,35,98,108,111,99,107,83,99,114,110,2,1,128,219,244,107,16,1,12,35,98,108,111,99,107,115,112,108,97,115,104,2,1,150,21,71,114,16,1,12,35,98,108,111,113,117,97,114,95,119,101,98,2,1,30,253,234,31,16,1,5,35,98,108,117,114,2,1,106,211,148,149,16,1,7,35,98,111,116,110,111,116,2,1,49,112,195,198,16,1,12,35,98,111,116,111,110,102,111,111,116,101,114,2,1,131,204,56,65,16,1,11,35,98,111,116,116,111,109,45,98,97,114,2,1,220,56,84,2,16,1,18,35,98,111,116,116,111,109,45,108,101,102,116,45,109,111,100,97,108,2,1,191,189,199,71,16,1,12,35,98,111,116,116,111,109,65,108,101,114,116,2,1,139,189,247,243,16,1,14,35,98,111,116,116,111,109,95,110,111,116,105,99,101,2,1,23,223,13,35,16,1,10,35,98,111,116,116,111,109,98,97,114,2,1,110,220,177,46,16,1,11,35,98,111,120,45,115,104,97,100,111,119,2,1,123,119,193,19,16,1,19,35,98,115,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,2,2,12,234,225,47,77,189,208,219,16,1,21,35,98,115,103,45,119,105,100,103,101,116,45,99,111,110,116,97,105,110,101,114,2,1,137,76,137,205,16,1,21,35,98,116,110,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,2,1,55,0,136,2,16,1,21,35,98,119,45,99,111,111,107,105,101,45,115,121,115,45,97,99,116,105,118,101,2,1,26,94,197,218,16,1,4,35,99,45,50,2,1,38,207,211,75,16,1,12,35,99,45,104,111,109,101,45,116,105,112,115,2,1,126,163,250,96,16,1,7,35,99,67,73,110,102,111,2,1,127,248,203,116,16,1,5,35,99,78,97,103,2,1,208,214,206,196,16,1,8,35,99,78,111,116,105,99,101,2,1,38,157,114,59,16,1,16,35,99,97,45,99,111,110,115,101,110,116,45,114,111,111,116,2,2,93,91,112,229,241,157,252,180,16,1,10,35,99,97,95,98,97,110,110,101,114,2,2,48,153,148,38,115,81,231,254,16,1,23,35,99,97,109,112,102,105,114,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,114,214,199,55,16,1,3,35,99,98,2,1,96,119,54,201,16,1,11,35,99,98,45,119,114,97,112,112,101,114,2,3,2,134,9,200,39,62,195,221,60,113,49,243,16,1,8,35,99,98,97,110,110,101,114,2,1,181,118,99,65,16,1,12,35,99,98,111,120,67,111,110,116,101,110,116,2,1,38,157,171,200,16,1,9,35,99,99,45,97,108,101,114,116,2,1,93,235,16,202,16,1,7,35,99,99,45,98,97,114,2,2,111,185,176,162,229,234,8,39,16,1,8,35,99,99,45,99,97,114,100,2,1,45,184,168,38,16,1,8,35,99,99,45,99,111,110,116,2,1,32,153,219,87,16,1,11,35,99,99,45,111,118,101,114,108,97,121,2,2,78,59,2,64,205,233,15,77,16,1,10,35,99,99,45,119,105,110,100,111,119,2,1,149,137,239,149,16,1,5,35,99,99,95,98,2,1,50,108,49,231,16,1,17,35,99,99,95,99,111,111,107,105,101,95,98,97,110,110,101,114,2,1,159,195,149,255,16,1,10,35,99,99,95,100,105,97,108,111,103,2,1,41,219,151,188,16,1,4,35,99,99,99,2,1,166,215,159,96,16,1,12,35,99,99,110,115,116,95,95,109,97,105,110,2,1,5,188,89,235,16,1,17,35,99,99,111,110,115,101,110,116,45,115,101,99,116,105,111,110,2,1,132,11,47,46,16,1,5,35,99,99,112,97,2,1,176,191,195,120,16,1,6,35,99,99,112,111,112,2,1,81,46,64,47,16,1,3,35,99,100,2,6,22,142,205,249,33,95,128,52,153,29,153,158,174,234,3,19,192,43,139,104,202,106,5,51,16,1,24,35,99,104,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,110,15,3,85,16,1,34,35,99,104,97,107,114,97,45,116,111,97,115,116,45,109,97,110,97,103,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,2,1,242,115,12,112,16,1,30,35,99,105,103,105,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,19,125,24,212,16,1,5,35,99,105,112,97,2,1,135,125,68,112,16,1,28,35,99,105,115,105,111,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,2,1,16,33,135,56,16,1,11,35,99,107,45,99,111,110,115,101,110,116,2,1,79,205,181,184,16,1,8,35,99,107,45,110,111,116,101,2,1,102,70,23,41,16,1,6,35,99,107,87,114,112,2,1,153,160,151,140,16,1,6,35,99,107,103,114,101,2,1,253,15,99,223,16,1,7,35,99,107,110,100,105,118,2,2,48,177,33,34,146,185,24,103,16,1,7,35,99,108,98,95,119,114,2,1,24,168,58,207,16,1,22,35,99,109,101,80,101,114,109,105,115,115,105,111,110,81,117,101,115,116,105,111,110,2,1,165,193,167,148,16,1,4,35,99,110,98,2,2,55,164,147,32,226,233,98,22,16,1,9,35,99,110,98,99,103,100,112,114,2,1,148,192,36,76,16,1,6,35,99,110,101,116,99,2,1,130,42,26,103,16,1,13,35,99,111,45,99,111,110,116,97,105,110,101,114,2,2,127,46,253,211,244,226,115,124,16,1,10,35,99,111,67,111,110,115,101,110,116,2,1,203,80,71,44,16,1,12,35,99,111,99,99,45,98,97,110,110,101,114,2,1,122,11,103,51,16,1,7,35,99,111,107,105,54,49,2,1,2,105,177,70,16,1,11,35,99,111,109,105,110,103,115,111,111,110,2,1,145,70,241,2,16,1,14,35,99,111,109,112,45,106,104,115,112,119,109,57,102,2,1,241,8,249,84,16,1,11,35,99,111,109,112,108,105,97,110,99,101,2,1,210,100,169,235,16,1,18,35,99,111,109,112,108,105,97,110,99,101,45,110,111,116,105,99,101,2,1,148,198,3,208,16,1,18,35,99,111,110,100,105,116,105,111,110,97,108,98,97,110,110,101,114,2,1,38,157,28,48,16,1,5,35,99,111,110,115,2,1,139,239,166,234,16,1,9,35,99,111,110,115,45,112,111,112,2,1,93,101,228,247,16,1,20,35,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,109,97,105,110,2,1,165,69,112,175,16,1,15,35,99,111,110,115,101,110,116,45,100,105,97,108,111,103,2,3,14,130,55,15,42,163,62,219,90,49,176,187,16,1,13,35,99,111,110,115,101,110,116,45,102,111,114,109,2,1,104,39,109,189,16,1,16,35,99,111,110,115,101,110,116,45,114,101,113,117,101,115,116,2,1,245,61,83,246,16,1,25,35,99,111,110,115,101,110,116,45,119,105,100,103,101,116,45,99,111,110,116,97,105,110,101,114,2,1,205,174,84,199,16,1,13,35,99,111,110,115,101,110,116,66,108,111,99,107,2,2,55,39,249,63,245,72,107,29,16,1,16,35,99,111,110,115,101,110,116,84,114,97,99,107,105,110,103,2,1,67,178,16,9,16,1,13,35,99,111,110,115,101,110,116,95,99,111,110,116,2,1,122,171,129,246,16,1,15,35,99,111,110,115,101,110,116,95,110,111,116,105,99,101,2,1,55,165,130,176,16,1,11,35,99,111,110,115,101,110,116,100,105,118,2,2,94,127,25,92,127,255,85,218,16,1,15,35,99,111,110,115,101,110,116,109,97,110,97,103,101,114,2,1,78,157,177,140,16,1,23,35,99,111,110,116,97,105,110,101,114,32,62,32,35,116,111,111,108,115,46,95,104,52,2,1,94,99,83,91,16,1,16,35,99,111,110,116,97,105,110,101,114,32,62,32,46,100,100,2,1,126,2,196,170,16,1,44,35,99,111,110,116,101,110,116,32,62,32,115,112,97,110,32,62,32,46,65,112,112,32,62,32,100,105,118,91,99,108,97,115,115,42,61,34,83,116,97,114,116,34,93,2,1,173,221,244,192,16,1,15,35,99,111,110,116,101,110,116,45,112,111,108,105,99,121,2,1,33,184,230,155,16,1,25,35,99,111,110,118,101,114,116,114,105,45,115,99,114,105,112,116,45,99,111,110,115,101,110,116,2,1,181,52,61,20,16,1,4,35,99,111,111,2,1,211,21,165,40,16,1,5,35,99,111,111,107,2,4,23,156,25,136,58,210,55,68,91,68,170,158,129,251,64,148,16,1,7,35,99,111,111,107,79,75,2,1,91,21,158,200,16,1,13,35,99,111,111,107,105,99,101,45,116,101,120,116,2,1,55,120,114,120,16,1,14,35,99,111,111,107,105,101,45,45,77,111,100,97,108,2,1,46,93,62,114,16,1,19,35,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,99,101,2,2,59,236,252,130,254,52,84,54,16,1,27,35,99,111,111,107,105,101,45,97,112,112,108,105,97,110,99,101,45,112,111,112,117,112,45,98,111,120,2,1,63,118,139,155,16,1,20,35,99,111,111,107,105,101,45,98,97,114,45,116,101,109,112,108,97,116,101,2,1,149,164,211,248,16,1,19,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,112,112,2,1,143,111,185,16,16,1,26,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,99,107,103,114,111,117,110,100,2,1,150,17,113,217,16,1,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,95,156,229,149,16,1,26,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,102,111,114,101,103,114,111,117,110,100,2,1,150,17,113,217,16,1,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,40,26,48,107,16,1,28,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,51,212,123,200,16,1,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,109,111,100,97,108,2,1,32,74,48,162,16,1,13,35,99,111,111,107,105,101,45,99,111,118,101,114,2,1,43,249,227,126,16,1,24,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,115,108,105,100,101,45,105,110,2,1,219,141,156,155,16,1,20,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,109,111,100,97,108,2,1,207,68,67,54,16,1,25,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,109,97,115,107,2,1,158,18,157,187,16,1,26,35,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,115,45,102,111,111,116,101,114,2,1,62,219,177,176,16,1,22,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,105,110,102,111,45,98,103,2,1,148,201,158,40,16,1,16,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,2,2,122,24,52,241,145,115,99,214,16,1,14,35,99,111,111,107,105,101,45,115,116,97,116,117,115,2,1,160,8,133,124,16,1,12,35,99,111,111,107,105,101,45,119,97,108,108,2,1,60,14,153,161,16,1,19,35,99,111,111,107,105,101,66,97,110,110,101,114,72,111,108,100,101,114,2,1,120,144,112,38,16,1,22,35,99,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,117,101,2,1,19,83,211,173,16,1,17,35,99,111,111,107,105,101,67,111,110,115,101,110,116,100,105,118,2,1,136,244,57,177,16,1,16,35,99,111,111,107,105,101,70,111,111,116,101,114,77,115,103,2,1,222,59,97,14,16,1,11,35,99,111,111,107,105,101,70,111,114,109,2,1,121,193,75,19,16,1,18,35,99,111,111,107,105,101,77,111,100,117,108,101,77,111,100,97,108,2,1,236,99,179,245,16,1,17,35,99,111,111,107,105,101,78,111,116,105,99,101,83,111,119,119,2,1,16,236,165,249,16,1,13,35,99,111,111,107,105,101,80,111,108,105,99,121,2,5,27,139,72,174,110,4,1,125,148,156,254,61,204,5,81,4,211,181,10,240,16,1,17,35,99,111,111,107,105,101,80,111,108,105,99,121,87,114,97,112,2,1,239,105,128,197,16,1,13,35,99,111,111,107,105,101,82,105,98,98,111,110,2,1,194,252,206,215,16,1,15,35,99,111,111,107,105,101,95,98,97,114,95,110,101,119,2,1,237,28,4,52,16,1,16,35,99,111,111,107,105,101,95,100,105,115,97,98,108,101,100,2,1,93,153,179,137,16,1,15,35,99,111,111,107,105,101,95,109,97,110,97,103,101,114,2,2,126,207,145,15,242,247,115,243,0,1,20,35,99,111,111,107,105,101,99,111,110,115,101,110,116,92,58,100,101,115,99,2,1,173,144,171,103,16,1,30,35,99,111,111,107,105,101,99,111,110,115,101,110,116,119,97,114,110,105,110,103,99,111,110,116,97,105,110,101,114,2,1,160,149,51,222,16,1,20,35,99,111,111,107,105,101,110,111,116,105,99,101,95,110,111,116,105,99,101,2,1,57,148,178,149,16,1,12,35,99,111,111,107,105,101,112,108,97,116,101,2,2,105,32,49,16,220,19,205,202,16,1,18,35,99,111,111,107,105,101,115,45,99,111,109,112,111,110,101,110,116,2,1,223,168,181,7,16,1,12,35,99,111,111,107,105,101,115,45,108,97,119,2,1,132,106,159,47,16,1,20,35,99,111,111,107,105,101,115,45,115,116,97,114,116,45,109,111,100,97,108,2,1,50,118,15,199,16,1,11,35,99,111,111,107,105,101,115,65,100,118,2,1,152,99,123,180,16,1,14,35,99,111,111,107,105,101,115,66,97,110,110,101,114,2,1,94,229,32,183,16,1,21,35,99,111,111,107,105,101,115,70,111,114,109,67,111,110,116,97,105,110,101,114,2,1,78,171,124,19,16,1,21,35,99,111,111,107,105,101,115,79,112,116,105,111,110,115,50,48,50,50,49,50,2,1,11,121,174,162,16,1,21,35,99,111,111,107,105,101,115,79,118,101,114,108,97,121,50,48,50,50,49,50,2,1,11,121,174,162,16,1,15,35,99,111,111,107,105,101,115,95,111,112,116,95,105,110,2,1,243,151,66,222,16,1,20,35,99,111,111,107,105,101,115,95,118,50,95,98,97,99,107,100,114,111,112,2,1,131,201,92,218,16,1,13,35,99,111,111,107,105,101,115,108,97,121,101,114,2,1,61,156,8,226,16,1,17,35,99,111,111,107,105,101,119,97,108,108,45,109,111,100,97,108,2,1,128,157,205,149,16,1,12,35,99,111,112,121,114,105,103,104,116,45,50,2,2,103,21,142,168,149,53,42,243,16,1,3,35,99,112,2,4,38,157,32,234,52,202,22,91,127,226,171,129,190,15,141,127,16,1,5,35,99,112,111,112,2,1,79,135,205,112,16,1,20,35,99,112,115,45,115,104,97,109,97,110,45,110,111,116,105,102,105,101,114,2,1,73,8,226,49,16,1,9,35,99,115,45,112,111,112,117,112,2,1,54,39,65,172,16,1,37,35,99,116,108,48,48,95,112,114,105,118,97,99,121,98,97,110,110,101,114,95,112,110,108,80,114,105,118,97,99,121,80,111,108,105,99,121,2,1,216,4,34,117,16,1,23,35,99,117,115,116,111,109,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,2,1,121,177,66,217,16,1,23,35,99,117,115,116,111,109,105,122,101,100,45,99,111,110,115,101,110,116,45,115,100,107,2,1,98,29,69,66,16,1,3,35,99,119,2,7,2,174,5,31,2,187,232,128,30,42,179,197,32,231,31,223,51,118,71,220,158,195,91,207,221,1,46,114,16,1,6,35,99,119,97,114,110,2,1,158,115,123,58,16,1,14,35,99,119,97,114,110,105,110,103,112,111,112,117,112,2,1,170,15,203,178,16,1,16,35,99,120,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,38,157,45,86,16,1,14,35,99,120,45,116,99,45,119,114,97,112,112,101,114,2,1,38,157,45,86,16,1,5,35,99,120,99,120,2,1,229,83,0,123,16,1,16,35,100,97,45,102,108,111,97,116,45,99,111,111,107,105,101,2,1,159,209,187,106,16,1,9,35,100,97,114,107,66,97,99,107,2,1,251,77,241,249,16,1,14,35,100,97,116,97,95,112,114,105,118,95,98,97,114,2,1,167,52,161,168,16,1,14,35,100,98,100,109,45,45,109,101,115,115,97,103,101,2,1,38,157,30,10,16,1,6,35,100,100,100,104,104,2,1,102,125,66,89,16,1,13,35,100,101,109,111,45,111,118,101,114,108,97,121,2,1,181,118,4,28,16,1,16,35,100,101,115,105,103,110,45,115,119,105,116,99,104,101,114,2,1,57,233,33,131,16,1,20,35,100,105,97,108,111,103,95,110,111,116,105,102,105,99,97,116,105,111,110,2,1,124,186,98,127,16,1,23,35,100,105,97,108,111,103,98,111,120,95,99,111,111,107,105,101,112,111,108,105,99,121,2,1,68,223,10,44,16,1,18,35,100,105,115,97,98,108,101,66,97,99,107,103,114,111,117,110,100,2,1,18,204,188,73,16,1,8,35,100,105,115,99,45,98,103,2,1,5,45,46,184,16,1,15,35,100,105,115,99,108,97,105,109,101,114,45,98,97,114,2,1,127,189,43,15,16,1,21,35,100,105,115,99,108,97,105,109,101,114,45,99,111,110,116,97,105,110,101,114,2,1,11,95,77,153,16,1,11,35,100,105,115,110,101,121,45,116,111,117,2,1,128,243,190,140,16,1,19,35,100,105,118,45,97,108,101,114,116,115,45,119,114,97,112,112,101,114,2,1,1,213,73,44,16,1,21,35,100,105,118,66,111,116,116,111,109,83,116,105,99,107,121,76,97,121,101,114,2,1,34,34,243,187,16,1,6,35,100,105,118,67,77,2,1,173,212,164,84,16,1,11,35,100,105,118,77,101,115,115,97,103,101,2,1,80,146,38,161,16,1,10,35,100,105,118,78,82,77,97,105,110,2,1,86,103,250,120,16,1,9,35,100,105,118,80,111,112,117,112,2,1,207,232,251,42,16,1,8,35,100,109,80,111,112,117,112,2,1,43,83,160,26,16,1,12,35,100,109,80,111,112,117,112,77,97,115,107,2,1,43,83,160,26,16,1,22,35,100,111,98,98,105,101,115,95,99,111,111,107,105,101,95,119,105,100,103,101,116,2,1,203,187,185,96,16,1,25,35,100,114,117,112,97,108,111,114,103,45,99,114,111,115,115,115,105,116,101,45,103,100,112,114,2,1,230,60,188,49,16,1,13,35,101,97,112,112,115,45,99,111,111,107,105,101,2,1,232,87,14,154,16,1,17,35,101,97,115,121,78,111,116,105,102,105,99,97,116,105,111,110,2,1,167,80,3,197,16,1,10,35,101,99,108,95,111,117,116,101,114,2,1,199,222,127,189,16,1,5,35,101,99,109,114,2,1,131,161,133,143,16,1,17,35,101,105,98,45,112,111,112,117,112,45,112,111,108,105,99,121,2,1,160,163,253,225,16,1,28,35,101,108,101,109,101,110,116,111,114,45,112,111,112,117,112,45,109,111,100,97,108,45,49,54,55,56,49,2,1,227,33,244,132,16,1,16,35,101,109,67,111,111,107,105,101,87,114,97,112,112,101,114,2,1,50,22,245,210,16,1,17,35,101,110,106,111,121,83,111,109,101,67,111,111,107,105,101,115,2,1,173,211,6,128,16,1,35,35,101,110,108,105,118,121,45,107,105,116,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,2,1,126,155,10,2,16,1,15,35,101,110,116,101,114,83,105,116,101,77,111,100,97,108,2,1,56,147,120,105,16,1,28,35,101,110,116,114,121,45,99,111,110,116,101,110,116,95,95,102,111,111,116,101,114,45,112,111,112,117,112,2,1,38,157,176,41,16,1,13,35,101,112,45,99,111,110,116,97,105,110,101,114,2,1,233,79,221,243,16,1,4,35,101,112,98,2,7,51,158,99,180,86,103,250,120,87,193,19,12,126,243,116,92,134,169,69,163,148,186,130,170,148,193,134,49,16,1,7,35,101,116,114,112,111,112,2,1,79,188,255,171,16,1,23,35,101,117,95,99,111,111,107,105,101,95,105,110,115,116,114,117,99,116,105,111,110,115,2,1,10,115,9,78,16,1,20,35,101,117,114,111,112,101,95,99,111,111,107,105,101,115,95,115,105,104,116,2,1,62,42,140,141,16,1,23,35,101,120,112,97,110,100,101,114,45,104,101,97,100,101,114,45,116,101,97,115,101,114,2,1,57,1,75,85,16,1,5,35,102,97,100,101,2,1,148,193,181,139,16,1,13,35,102,101,101,100,98,97,99,107,45,98,97,114,2,1,245,48,53,200,16,1,23,35,102,105,100,101,115,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,36,226,56,191,16,1,14,35,102,105,100,101,115,45,111,118,101,114,108,97,121,2,1,203,80,115,129,16,1,13,35,102,105,120,101,100,45,102,111,111,116,101,114,2,1,230,175,199,189,16,1,12,35,102,105,120,101,100,70,111,111,116,101,114,2,1,140,204,121,235,16,1,21,35,102,108,111,97,116,45,118,101,114,116,105,99,97,108,45,112,97,110,101,108,2,1,108,74,161,145,16,1,13,35,102,111,111,116,77,115,103,89,111,100,105,122,2,1,128,135,57,229,16,1,7,35,102,111,111,116,101,114,2,3,4,198,57,255,28,135,0,154,159,39,33,197,16,1,21,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,117,250,81,66,16,1,14,35,102,111,111,116,101,114,45,109,97,105,108,101,114,2,1,170,81,57,134,16,1,15,35,102,111,111,116,101,114,45,109,101,115,115,97,103,101,2,1,171,31,245,239,16,1,15,35,102,111,111,116,101,114,45,111,118,101,114,108,97,121,2,1,79,154,223,70,16,1,10,35,102,111,111,116,101,114,68,79,77,2,1,130,241,84,9,16,1,14,35,102,111,111,116,101,114,87,105,100,103,101,116,115,2,1,99,205,254,154,16,1,15,35,102,111,111,116,101,114,95,103,111,111,100,95,105,100,2,1,84,247,43,51,16,1,8,35,102,111,111,116,101,114,114,2,1,13,104,27,59,16,1,12,35,102,111,114,109,45,112,111,112,117,112,115,2,1,148,176,192,250,16,1,17,35,102,114,101,95,99,111,111,107,105,101,95,109,111,100,97,108,2,1,141,126,153,33,16,1,12,35,102,114,111,115,109,111,80,111,112,117,112,2,1,54,19,76,206,16,1,3,35,102,116,2,1,190,210,148,161,16,1,30,35,102,117,108,108,95,115,99,114,101,101,110,95,100,105,118,95,99,111,111,107,105,101,115,95,108,97,121,101,114,2,1,137,228,27,156,16,1,19,35,102,117,108,108,115,99,114,101,101,110,45,111,118,101,114,108,97,121,2,1,247,55,42,202,16,1,36,35,103,98,32,62,32,100,105,118,91,115,116,121,108,101,42,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,34,93,2,1,207,20,153,51,16,1,22,35,103,100,112,114,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,2,1,60,67,201,224,16,1,22,35,103,100,112,114,95,99,111,111,107,105,101,45,109,97,105,110,87,114,97,112,112,2,1,16,95,181,31,16,1,11,35,103,100,112,114,95,110,111,116,101,115,2,1,23,109,57,230,16,1,7,35,103,100,112,114,98,120,2,2,20,194,156,179,199,72,99,161,16,1,12,35,103,108,111,98,97,108,101,114,114,111,114,2,1,127,4,122,234,16,1,19,35,103,108,111,98,97,108,110,111,116,105,102,105,99,97,116,105,111,110,2,1,32,194,113,206,16,1,8,35,103,114,101,121,111,117,116,2,1,100,122,5,83,16,1,10,35,103,114,111,119,108,115,45,98,114,2,1,133,161,172,123,16,1,8,35,103,117,97,99,66,103,50,2,1,105,36,157,117,16,1,18,35,103,117,105,95,99,111,111,107,105,101,95,112,111,108,105,99,121,2,1,103,107,8,13,16,1,18,35,104,101,97,100,101,114,45,112,111,112,117,112,45,105,110,102,111,2,1,153,63,27,126,16,1,17,35,104,101,97,100,101,114,49,95,111,118,101,114,108,97,121,50,2,1,3,186,16,189,16,1,14,35,104,101,97,100,101,114,95,104,105,103,104,101,114,2,1,61,75,212,43,16,1,15,35,104,101,97,100,101,114,95,109,101,115,115,97,103,101,2,1,65,225,206,194,16,1,18,35,104,101,97,100,101,114,98,97,114,95,112,114,105,118,97,99,121,2,1,126,57,87,81,16,1,9,35,104,101,108,108,111,98,97,114,2,1,69,148,225,240,16,1,20,35,104,101,114,111,101,115,112,114,111,102,105,108,101,45,97,108,101,114,116,2,1,194,228,81,253,16,1,7,35,104,105,100,101,109,101,2,1,94,99,144,163,16,1,16,35,104,119,45,99,111,111,107,105,101,45,97,108,101,114,116,2,1,193,58,148,108,16,1,5,35,105,98,111,120,2,1,158,32,155,87,16,1,3,35,105,99,2,1,72,131,61,83,16,1,27,35,105,99,101,103,114,97,109,95,109,101,115,115,97,103,101,115,95,99,111,110,116,97,105,110,101,114,2,1,106,23,55,191,16,1,17,35,105,109,112,111,114,116,97,110,116,45,110,111,116,105,99,101,2,5,0,113,152,109,92,192,45,133,109,231,231,56,231,76,117,34,246,162,37,91,16,1,9,35,105,110,102,111,45,98,97,114,2,1,171,53,103,158,16,1,11,35,105,110,102,111,45,109,111,100,97,108,2,1,2,108,177,28,16,1,8,35,105,110,102,111,66,97,114,2,1,209,6,0,230,16,1,16,35,105,110,102,111,95,49,54,53,54,55,49,56,54,50,54,2,1,207,144,193,206,16,1,8,35,105,110,102,111,98,97,114,2,1,33,6,151,119,16,1,23,35,105,110,106,101,99,116,101,100,95,99,111,111,107,105,101,95,110,111,116,105,99,101,2,1,0,28,121,78,16,1,6,35,105,110,110,101,114,2,1,145,159,144,250,16,1,18,35,105,117,98,101,110,100,97,45,99,115,45,98,97,110,110,101,114,2,1,151,116,10,166,16,1,27,35,106,98,45,110,111,116,105,102,105,99,97,116,105,111,110,115,45,99,111,110,116,97,105,110,101,114,2,1,229,6,212,131,16,1,28,35,106,109,115,95,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,115,99,114,101,101,110,2,1,38,157,61,109,16,1,25,35,106,115,45,83,73,69,87,83,49,108,105,98,45,104,101,97,100,101,114,45,66,97,115,101,2,1,51,18,194,210,16,1,18,35,106,115,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,2,1,198,158,189,254,181,210,227,16,1,19,35,106,115,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,2,1,171,22,32,193,16,1,11,35,106,115,45,99,111,111,107,105,101,115,2,1,22,30,253,137,16,1,10,35,106,115,45,102,111,111,116,101,114,2,1,127,13,188,221,16,1,25,35,106,115,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,110,110,101,114,2,1,208,96,223,68,16,1,14,35,106,115,45,115,116,105,99,107,121,104,101,97,100,2,1,229,196,177,91,16,1,7,35,106,115,71,68,82,80,2,1,70,199,201,161,16,1,23,35,106,115,95,100,97,116,97,78,110,111,116,105,99,101,66,97,99,107,100,114,111,112,2,1,56,58,42,232,16,1,19,35,106,115,95,100,97,116,97,78,110,111,116,105,99,101,66,116,110,115,2,1,56,58,42,232,16,1,20,35,106,117,110,111,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,2,111,249,244,30,133,167,177,255,16,1,22,35,107,101,116,99,104,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,2,1,171,135,82,131,16,1,23,35,107,116,45,108,97,121,111,117,116,45,105,100,95,101,51,99,52,56,101,45,101,52,2,1,21,91,117,204,16,1,13,35,108,97,110,121,97,114,100,95,114,111,111,116,2,1,179,15,115,213,16,1,20,35,108,98,103,97,110,97,108,121,116,105,99,115,67,111,111,107,105,101,115,2,1,30,174,40,32,16,1,13,35,108,101,103,97,108,45,110,111,116,105,99,101,2,1,173,216,122,179,16,1,19,35,108,101,103,97,108,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,151,213,11,76,16,1,16,35,108,101,103,97,108,76,105,103,104,116,66,108,111,99,107,2,1,20,218,141,182,16,1,9,35,108,101,103,97,108,98,97,114,2,1,38,157,140,187,16,1,14,35,108,101,103,97,108,99,111,110,99,101,114,110,115,2,1,202,38,48,167,16,1,13,35,108,105,115,116,45,98,117,105,108,100,101,114,2,1,17,65,79,74,16,1,14,35,108,105,120,88,79,45,99,111,111,107,105,101,115,2,1,146,115,187,40,16,1,8,35,108,111,97,100,105,110,103,2,1,35,188,171,184,16,1,10,35,108,111,103,103,101,100,98,97,114,2,1,172,134,138,217,16,1,6,35,108,121,99,111,107,2,1,80,240,183,92,16,1,19,35,109,97,115,116,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,38,157,108,57,16,1,11,35,109,98,99,45,112,111,108,105,99,121,2,1,247,76,201,190,16,1,11,35,109,99,95,116,111,112,95,98,97,114,2,1,55,207,204,195,16,1,9,35,109,99,98,45,119,114,97,112,2,4,19,26,73,70,125,165,86,94,136,239,22,8,174,237,188,148,16,1,16,35,109,100,45,99,111,111,107,105,101,110,111,116,105,99,101,2,1,160,228,118,219,16,1,13,35,109,101,101,114,107,97,116,45,119,114,97,112,2,1,60,196,60,17,16,1,8,35,109,101,115,115,97,103,101,2,5,38,157,170,60,91,24,202,123,92,44,154,175,104,221,178,234,245,29,55,226,16,1,11,35,109,101,115,115,97,103,101,66,97,114,2,1,81,246,76,217,16,1,9,35,109,101,115,115,97,103,101,115,2,1,237,13,40,206,16,1,14,35,109,101,115,115,97,103,101,115,45,99,111,110,116,2,1,94,179,70,99,16,1,13,35,109,105,45,99,111,110,116,97,105,110,101,114,2,1,226,191,16,157,16,1,29,35,109,105,115,115,107,101,121,45,103,97,45,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,97,114,2,1,182,52,124,248,16,1,20,35,109,109,95,99,99,95,109,111,100,97,108,95,111,118,101,114,108,97,121,2,1,16,253,247,217,16,1,19,35,109,111,100,97,108,45,51,118,117,102,104,101,49,56,122,48,107,100,2,1,127,64,129,76,16,1,16,35,109,111,100,97,108,45,97,103,114,101,101,109,101,110,116,2,1,127,55,89,226,16,1,17,35,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,2,1,20,202,172,247,16,1,21,35,109,111,100,97,108,45,99,97,99,104,101,95,95,111,118,101,114,108,97,121,2,1,109,1,223,223,16,1,21,35,109,111,100,97,108,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,87,122,166,180,16,1,16,35,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,104,204,196,226,16,1,11,35,109,111,100,97,108,45,109,97,115,107,2,1,246,18,233,105,16,1,14,35,109,111,100,97,108,45,111,118,101,114,108,97,121,2,2,20,202,172,247,64,164,194,251,16,1,11,35,109,111,100,97,108,45,114,111,111,116,2,1,57,187,45,152,16,1,13,35,109,111,100,97,108,67,111,110,115,101,110,116,2,1,203,127,182,97,16,1,10,35,109,111,100,97,108,77,97,105,110,2,1,64,164,194,251,16,1,16,35,109,111,100,97,108,95,99,111,110,116,97,105,110,101,114,2,1,171,13,106,51,16,1,13,35,109,115,103,66,111,120,95,101,114,114,111,114,2,1,220,205,54,105,16,1,6,35,109,115,103,98,103,2,1,45,220,181,157,16,1,11,35,109,115,103,119,114,97,112,112,101,114,2,1,93,132,27,114,16,1,19,35,109,121,45,119,101,108,99,111,109,101,45,109,101,115,115,97,103,101,2,3,23,81,226,91,116,137,184,246,198,82,168,245,16,1,8,35,109,121,65,108,101,114,116,2,1,149,32,240,85,16,1,8,35,109,121,77,111,100,97,108,2,4,107,68,125,177,127,70,21,97,154,29,69,184,160,164,11,110,16,1,7,35,110,97,118,98,97,114,2,1,182,35,187,171,16,1,3,35,110,98,2,1,171,73,174,159,16,1,8,35,110,98,97,95,116,111,115,2,1,38,157,76,97,16,1,5,35,110,101,119,115,2,1,166,85,132,10,16,1,17,35,110,101,120,116,99,114,101,66,111,116,68,105,97,108,111,103,2,1,16,182,33,185,16,1,9,35,110,102,97,77,111,100,97,108,2,2,54,219,196,194,80,23,107,80,16,1,9,35,110,102,97,80,111,112,117,112,2,2,54,219,196,194,80,23,107,80,16,1,7,35,110,111,109,110,111,109,2,1,251,217,156,112,16,1,12,35,110,111,116,105,99,101,77,111,100,97,108,2,1,252,246,69,222,16,1,12,35,110,111,116,105,99,101,80,97,110,101,108,2,1,181,51,42,25,16,1,14,35,110,111,116,105,99,101,95,98,97,110,110,101,114,2,1,38,157,25,55,16,1,14,35,110,111,116,105,99,101,100,105,118,119,114,97,112,2,1,231,103,10,228,16,1,8,35,110,111,116,105,99,101,115,2,1,167,98,208,215,16,1,13,35,110,111,116,105,102,105,99,97,116,105,111,110,2,5,34,88,75,25,62,56,103,74,93,193,224,166,191,76,88,61,252,173,111,182,16,1,18,35,110,111,116,105,102,105,99,97,116,105,111,110,45,97,114,101,97,2,1,64,197,237,153,16,1,17,35,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,2,1,1,133,168,177,16,1,18,35,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,2,1,228,160,130,25,16,1,20,35,110,111,116,105,102,105,99,97,116,105,111,110,45,102,111,111,116,101,114,2,1,172,236,226,157,16,1,19,35,110,111,116,105,102,105,99,97,116,105,111,110,45,108,101,103,97,108,2,1,38,157,25,55,16,1,27,35,110,111,116,105,102,105,99,97,116,105,111,110,45,109,115,103,45,99,111,110,116,97,105,110,101,114,2,1,216,234,166,224,16,1,21,35,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,2,1,123,172,179,48,16,1,18,35,110,111,116,105,102,105,99,97,116,105,111,110,80,111,112,117,112,2,1,171,215,41,225,16,1,14,35,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,73,92,111,165,16,1,7,35,110,111,116,105,102,121,2,2,24,81,162,123,35,25,18,146,16,1,17,35,110,111,116,105,102,121,45,99,111,110,116,97,105,110,101,114,2,6,30,53,228,114,59,173,209,98,87,16,195,149,144,207,25,56,229,255,51,187,243,130,160,192,16,1,29,35,110,111,116,121,95,98,111,116,116,111,109,95,108,97,121,111,117,116,95,99,111,110,116,97,105,110,101,114,2,1,249,94,235,88,16,1,26,35,110,111,116,121,95,108,97,121,111,117,116,95,95,98,111,116,116,111,109,67,101,110,116,101,114,2,1,110,82,91,41,16,1,25,35,110,111,116,121,95,108,97,121,111,117,116,95,95,98,111,116,116,111,109,82,105,103,104,116,2,1,134,231,142,80,16,1,23,35,110,111,118,97,112,100,102,95,97,99,99,101,112,116,95,99,111,111,107,105,101,115,2,1,76,72,30,32,16,1,18,35,110,115,99,109,115,98,111,120,98,111,120,115,105,109,112,108,101,2,1,209,228,248,145,16,1,13,35,110,116,95,99,111,110,116,97,105,110,101,114,2,1,171,32,164,45,16,1,12,35,110,118,117,45,99,111,110,115,101,110,116,2,1,202,34,137,250,16,1,24,35,110,119,104,95,102,111,111,116,101,114,95,98,97,110,110,101,114,95,108,101,103,97,108,2,1,207,165,27,176,16,1,15,35,111,98,108,105,103,97,116,105,111,110,45,98,97,114,2,1,237,79,8,129,16,1,24,35,111,102,102,99,97,110,118,97,115,67,111,111,107,105,101,115,67,111,110,115,101,110,116,2,1,99,34,92,56,16,1,3,35,111,108,2,1,152,33,98,95,16,1,9,35,111,112,116,45,102,111,114,109,2,1,128,44,222,159,16,1,7,35,111,112,116,45,105,110,2,1,213,150,123,21,16,1,25,35,111,112,116,97,110,111,110,45,109,105,110,105,109,105,122,101,45,119,114,97,112,112,101,114,2,1,78,5,40,48,16,1,13,35,111,112,116,105,110,45,111,112,116,111,117,116,2,1,186,186,86,65,16,1,21,35,111,115,97,110,111,67,117,115,116,111,109,68,105,97,108,111,103,68,105,118,2,3,59,150,158,23,222,180,72,193,226,226,8,107,16,1,11,35,111,116,45,115,100,107,45,98,116,110,2,3,81,104,112,161,128,104,78,33,216,249,249,65,16,1,14,35,111,117,116,101,114,45,99,111,110,115,101,110,116,2,2,144,85,68,136,153,194,11,144,16,1,5,35,111,118,101,114,2,1,144,189,64,91,16,1,19,35,111,118,101,114,97,108,121,95,100,121,95,109,101,115,115,97,103,101,2,1,135,125,156,136,16,1,17,35,111,118,101,114,98,111,120,45,112,111,108,105,116,105,99,97,2,1,90,71,143,93,16,1,9,35,111,118,101,114,98,111,120,51,2,2,16,105,217,24,216,206,104,73,16,1,11,35,111,118,101,114,108,97,121,45,98,103,2,1,139,19,75,34,16,1,12,35,111,118,101,114,108,97,121,77,97,115,107,2,1,23,127,184,248,16,1,19,35,112,97,103,101,45,45,97,114,101,97,95,95,98,111,116,116,111,109,2,1,182,146,118,118,16,1,13,35,112,97,103,101,45,100,105,115,97,98,108,101,2,1,9,108,100,12,16,1,11,35,112,97,103,101,98,97,110,110,101,114,2,1,58,15,156,243,16,1,25,35,112,98,45,110,97,118,98,97,114,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,2,1,124,222,184,25,16,1,9,35,112,100,102,101,95,99,109,112,2,1,159,124,143,95,16,1,21,35,112,104,111,98,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,120,60,40,116,16,1,23,35,112,105,95,116,114,97,99,107,105,110,103,95,111,112,116,95,105,110,95,100,105,118,2,1,12,54,40,11,16,1,23,35,112,105,101,110,115,97,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,2,1,251,230,230,138,16,1,9,35,112,105,120,101,108,112,111,112,2,1,40,13,45,232,16,1,15,35,112,108,100,110,45,100,101,101,112,45,108,105,110,107,2,1,57,219,238,22,16,1,15,35,112,108,117,103,105,110,45,99,111,110,115,101,110,116,2,1,127,222,229,125,16,1,7,35,112,111,108,103,112,114,2,1,248,152,214,14,16,1,9,35,112,111,108,105,99,105,101,115,2,1,0,0,104,138,16,1,7,35,112,111,108,105,99,121,2,3,112,75,87,60,127,117,110,200,208,55,205,100,16,1,11,35,112,111,108,105,99,121,45,98,97,114,2,1,148,181,80,105,16,1,12,35,112,111,108,105,99,121,45,105,110,102,111,2,2,194,246,56,226,249,228,123,12,16,1,15,35,112,111,108,105,99,121,45,109,101,115,115,97,103,101,2,1,129,82,11,196,16,1,20,35,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,65,237,17,214,16,1,15,35,112,111,108,105,99,121,95,119,114,97,112,112,101,114,2,1,38,157,76,97,16,1,16,35,112,111,108,105,99,121,99,111,110,116,97,105,110,101,114,2,3,15,113,30,5,192,131,161,2,241,168,229,233,16,1,9,35,112,111,108,105,116,105,99,97,2,1,1,124,117,21,16,1,7,35,112,111,112,45,117,112,2,1,253,103,195,179,16,1,14,35,112,111,112,45,117,112,45,102,111,111,116,101,114,2,1,239,111,190,164,16,1,11,35,112,111,112,95,119,104,111,108,101,115,2,1,93,39,185,155,16,1,14,35,112,111,112,95,119,104,111,108,101,115,95,98,103,2,1,93,39,185,155,16,1,18,35,112,111,112,105,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,31,89,158,216,16,1,10,35,112,111,112,105,65,108,101,114,116,2,1,1,4,236,4,16,1,15,35,112,111,112,109,97,107,101,45,51,55,56,49,52,57,2,1,97,155,181,104,16,1,16,35,112,111,112,117,112,45,98,111,120,45,116,101,114,109,115,2,1,17,65,79,74,16,1,7,35,112,111,112,117,112,49,2,1,82,39,15,77,16,1,12,35,112,111,112,117,112,98,97,110,110,101,114,2,1,234,232,200,255,16,1,10,35,112,112,45,102,111,111,116,101,114,2,1,153,39,63,252,16,1,8,35,112,112,45,105,110,102,111,2,2,55,178,0,195,148,196,54,167,16,1,5,35,112,112,95,98,2,2,7,79,41,89,18,200,164,154,16,1,8,35,112,112,95,105,110,102,111,2,2,127,141,217,77,128,97,98,252,16,1,11,35,112,112,95,111,118,101,114,108,97,121,2,2,127,141,217,77,128,97,98,252,16,1,13,35,112,112,116,111,117,45,115,116,105,99,107,121,2,1,61,40,203,254,16,1,12,35,112,114,97,106,105,116,117,114,101,108,101,2,1,46,171,36,206,16,1,10,35,112,114,101,108,111,97,100,101,114,2,1,44,223,90,149,16,1,18,35,112,114,101,115,116,105,116,105,97,108,45,104,97,110,100,108,101,2,1,242,197,89,199,16,1,8,35,112,114,105,118,97,99,121,2,6,127,222,229,124,158,99,117,81,177,135,51,28,195,241,53,30,198,8,159,186,210,221,70,218,16,1,18,35,112,114,105,118,97,99,121,45,97,103,114,101,101,109,101,110,116,2,1,91,81,130,167,16,1,16,35,112,114,105,118,97,99,121,45,99,104,111,105,99,101,115,2,1,15,96,232,60,16,1,23,35,112,114,105,118,97,99,121,45,99,104,111,105,99,101,115,45,98,97,110,110,101,114,2,1,59,241,98,89,16,1,20,35,112,114,105,118,97,99,121,45,100,97,116,97,45,110,111,116,105,99,101,2,1,32,202,47,124,16,1,12,35,112,114,105,118,97,99,121,45,100,105,118,2,1,226,15,65,51,16,1,15,35,112,114,105,118,97,99,121,45,104,101,97,100,101,114,2,1,51,18,194,210,16,1,16,35,112,114,105,118,97,99,121,45,109,97,110,97,103,101,114,2,1,41,208,31,171,16,1,22,35,112,114,105,118,97,99,121,45,109,97,110,97,103,101,114,45,112,111,112,105,110,2,1,71,51,110,153,16,1,16,35,112,114,105,118,97,99,121,45,109,101,115,115,97,103,101,2,1,14,107,203,107,16,1,14,35,112,114,105,118,97,99,121,45,109,111,100,97,108,2,2,17,107,167,89,91,213,167,92,16,1,15,35,112,114,105,118,97,99,121,45,110,111,116,105,99,101,2,2,111,229,82,7,120,48,152,127,16,1,21,35,112,114,105,118,97,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,103,187,161,19,16,1,15,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,2,3,24,31,8,88,176,103,203,117,187,194,29,112,16,1,25,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,2,1,171,127,201,19,16,1,22,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,114,111,109,112,116,2,1,191,119,218,75,16,1,22,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,115,116,105,99,107,121,2,1,81,161,61,81,16,1,24,35,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,45,112,114,111,109,112,116,2,1,28,208,131,57,16,1,16,35,112,114,105,118,97,99,121,45,119,97,114,110,105,110,103,2,1,117,61,119,88,16,1,11,35,112,114,105,118,97,99,121,68,105,118,2,1,55,5,7,88,16,1,14,35,112,114,105,118,97,99,121,78,111,116,105,99,101,2,1,209,140,191,91,16,1,24,35,112,114,105,118,97,99,121,80,111,108,105,99,121,65,99,99,101,112,116,70,111,114,109,2,1,143,101,160,90,16,1,14,35,112,114,105,118,97,99,121,85,112,100,97,116,101,2,2,184,189,255,149,215,13,157,81,16,1,16,35,112,114,105,118,97,99,121,95,99,111,110,116,101,110,116,2,1,110,73,232,36,16,1,12,35,112,114,105,118,97,99,121,95,109,115,103,2,1,120,23,38,163,16,1,21,35,112,114,105,118,97,99,121,95,110,111,116,105,102,105,99,97,116,105,111,110,2,1,33,21,39,109,16,1,13,35,112,114,105,118,97,99,121,99,104,101,99,107,2,1,61,147,104,233,16,1,14,35,112,114,105,118,97,99,121,109,111,100,117,108,101,2,1,148,176,187,163,16,1,15,35,112,114,105,118,97,99,121,111,118,101,114,108,97,121,2,1,209,189,174,171,16,1,15,35,112,114,105,118,97,99,121,119,97,114,110,105,110,103,2,1,54,202,95,154,16,1,12,35,112,114,105,118,109,101,115,115,97,103,101,2,1,91,24,202,123,16,1,11,35,112,114,111,45,98,97,110,110,101,114,2,1,2,205,43,55,16,1,4,35,112,114,118,2,1,106,164,61,198,16,1,9,35,112,114,118,99,121,112,111,112,2,1,224,37,227,49,16,1,11,35,112,114,118,99,121,112,111,112,95,52,2,1,151,188,174,26,16,1,9,35,114,99,68,114,97,119,101,114,2,1,255,132,211,43,16,1,21,35,114,101,97,99,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,49,158,14,154,16,1,20,35,114,101,97,100,101,100,95,99,111,110,116,114,97,99,116,95,114,111,119,2,1,178,216,27,86,16,1,20,35,114,103,45,117,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,101,203,34,228,16,1,15,35,114,103,112,100,45,97,115,107,45,112,111,112,105,110,2,1,207,116,104,202,16,1,7,35,114,105,98,98,111,110,2,1,55,78,106,50,16,1,20,35,114,105,99,111,99,104,101,116,45,99,111,111,107,105,101,45,98,97,114,2,1,254,89,136,233,16,1,40,35,114,111,111,116,32,62,32,100,105,118,58,102,105,114,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,2,1,57,100,238,42,16,1,5,35,114,112,99,109,2,1,184,47,145,61,16,1,17,35,114,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,175,145,111,3,16,1,4,35,114,115,112,2,1,31,188,189,102,16,1,8,35,114,119,116,104,45,99,98,2,1,154,20,88,190,16,1,16,35,115,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,0,75,179,109,16,1,8,35,115,45,109,111,100,97,108,2,1,2,155,72,19,16,1,19,35,115,97,110,105,116,97,115,67,111,111,107,105,101,65,108,101,114,116,2,1,188,202,130,147,16,1,31,35,115,101,99,116,105,111,110,115,45,102,111,111,116,101,114,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,176,84,42,21,16,1,21,35,115,101,101,71,100,112,114,67,111,111,107,105,101,67,111,110,115,101,110,116,2,1,248,14,112,152,16,1,8,35,115,102,119,45,109,115,103,2,1,93,164,40,52,16,1,14,35,115,103,99,98,111,120,87,114,97,112,112,101,114,2,1,94,250,55,151,16,1,13,35,115,104,101,110,103,109,105,110,103,84,105,112,2,1,145,9,234,75,16,1,19,35,115,104,111,112,105,102,121,45,112,99,95,95,98,97,110,110,101,114,2,1,71,239,123,101,16,1,27,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,45,98,97,114,2,1,181,209,140,48,16,1,29,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,45,109,111,100,97,108,2,1,85,131,202,131,16,1,29,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,69,177,159,197,16,1,32,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,2,1,105,106,120,124,16,1,30,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,102,105,120,101,100,45,109,101,115,115,97,103,101,2,3,58,94,84,204,64,15,4,145,177,127,246,175,16,1,22,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,112,111,112,117,112,2,1,191,170,200,194,16,1,15,35,115,104,111,119,70,84,67,77,101,115,115,97,103,101,2,1,72,177,244,131,16,1,20,35,115,104,111,119,70,84,67,77,101,115,115,97,103,101,45,98,97,99,107,2,1,72,177,244,131,16,1,14,35,115,105,100,45,99,111,110,116,97,105,110,101,114,2,1,194,198,23,153,16,1,21,35,115,105,100,101,78,111,116,105,102,105,99,97,116,105,111,110,90,111,110,101,2,1,167,19,78,75,16,1,27,35,115,105,109,112,108,101,45,110,111,116,105,99,101,45,119,114,97,112,45,99,111,110,116,101,110,116,2,1,129,216,241,49,16,1,20,35,115,105,109,112,108,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,1,157,136,188,16,1,22,35,115,105,109,112,108,101,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,160,164,24,188,16,1,20,35,115,105,109,112,108,101,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,154,34,216,46,16,1,13,35,115,105,116,101,45,111,118,101,114,108,97,121,2,1,5,62,93,45,16,1,24,35,115,105,116,101,45,119,105,100,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,39,241,159,55,16,1,23,35,115,105,116,101,45,119,105,100,101,45,108,101,103,97,108,45,110,111,116,105,99,101,2,1,101,120,136,187,16,1,17,35,115,105,116,101,77,115,103,83,108,105,100,101,85,112,66,71,2,1,89,100,133,7,16,1,15,35,115,106,98,45,117,101,45,99,111,111,107,105,101,115,2,1,33,148,203,159,16,1,23,35,115,107,99,109,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,2,1,174,164,136,177,16,1,19,35,115,108,105,100,101,45,117,112,45,99,111,110,116,97,105,110,101,114,2,1,127,117,85,132,16,1,7,35,115,108,105,100,101,114,2,1,50,198,224,7,16,1,9,35,115,110,97,99,107,98,97,114,2,2,55,171,73,131,69,174,148,214,16,1,19,35,115,110,97,99,107,98,97,114,45,99,111,110,116,97,105,110,101,114,2,3,19,247,118,139,98,58,14,118,136,166,202,122,16,1,20,35,115,110,99,45,100,97,116,97,45,100,105,115,99,108,111,115,117,114,101,2,1,127,191,227,244,16,1,17,35,115,110,112,112,111,112,117,112,45,119,101,108,99,111,109,101,2,1,3,236,171,91,16,1,18,35,115,111,102,116,77,101,115,115,97,103,101,115,45,108,105,115,116,2,1,132,6,239,238,16,1,18,35,115,111,114,116,105,110,103,80,114,101,102,101,114,101,110,99,101,2,1,113,100,97,249,16,1,13,35,115,112,108,97,115,104,115,99,114,101,101,110,2,1,208,247,174,62,16,1,11,35,115,112,111,112,117,112,67,111,110,116,2,2,161,24,187,219,251,242,168,134,16,1,7,35,115,115,111,98,97,114,2,1,209,122,151,47,16,1,18,35,115,116,97,116,105,99,45,99,111,111,107,105,101,45,98,97,114,2,1,37,119,151,134,16,1,19,35,115,116,105,99,107,45,102,111,111,116,101,114,45,112,97,110,101,108,2,1,254,40,99,17,16,1,7,35,115,116,105,99,107,121,2,1,2,234,118,142,16,1,11,35,115,116,105,99,107,121,45,98,97,114,2,1,51,235,238,15,16,1,19,35,115,116,105,99,107,121,45,98,97,114,45,119,114,97,112,112,101,114,2,1,126,8,240,210,16,1,13,35,115,116,105,99,107,121,45,112,111,112,117,112,2,3,37,167,84,255,73,3,67,167,98,0,97,96,16,1,15,35,115,116,111,114,97,103,101,45,110,111,116,105,99,101,2,1,112,8,241,113,16,1,19,35,115,116,114,97,118,97,67,111,111,107,105,101,66,97,110,110,101,114,2,1,99,68,223,159,16,1,15,35,115,116,114,101,97,109,105,102,121,45,103,100,112,114,2,1,19,238,8,45,16,1,18,35,116,97,114,116,101,97,117,99,105,116,114,111,110,82,111,111,116,2,1,133,173,45,129,16,1,23,35,116,97,116,115,117,45,104,101,97,100,101,114,45,99,111,110,116,97,105,110,101,114,2,1,224,250,67,190,16,1,23,35,116,97,119,32,62,32,100,105,118,32,62,32,91,100,97,116,97,45,118,101,100,93,2,64,3,72,216,139,6,166,164,156,6,198,100,184,12,18,58,115,13,185,241,147,15,171,145,27,15,250,36,121,24,126,113,57,26,95,191,185,28,19,19,53,29,60,165,77,31,95,52,221,36,12,127,229,36,229,81,100,46,242,180,11,52,135,120,15,55,211,183,17,56,60,70,171,59,93,198,144,62,103,215,201,63,34,96,149,63,81,71,251,64,206,183,187,72,103,87,85,84,198,170,46,85,85,109,156,86,18,88,41,86,114,242,155,86,244,66,182,87,205,250,216,94,185,148,62,98,50,254,112,100,16,26,123,102,27,154,48,107,236,201,47,110,179,111,50,117,9,111,0,122,47,93,232,130,50,141,218,133,224,147,65,145,149,122,102,152,1,26,100,152,13,220,66,158,82,140,165,160,212,16,58,172,36,156,208,174,147,36,59,183,73,70,89,191,14,137,67,192,222,35,204,193,25,57,108,204,19,128,230,208,24,100,61,208,231,38,163,209,44,200,27,210,38,56,28,210,228,80,31,210,244,62,121,211,117,238,42,214,129,87,123,229,74,154,114,232,223,192,206,241,161,12,171,251,156,20,221,16,1,6,35,116,101,114,109,115,2,2,55,231,224,195,190,25,1,254,16,1,21,35,116,101,114,109,115,45,97,110,100,45,99,111,110,100,105,116,105,111,110,115,2,1,94,234,8,127,16,1,10,35,116,101,114,109,115,45,98,97,114,2,1,152,77,67,247,16,1,21,35,116,101,114,109,115,45,109,101,115,115,97,103,101,45,114,101,103,105,111,110,2,6,54,30,143,140,125,13,135,40,210,89,175,234,210,104,36,128,233,154,123,107,245,49,23,196,16,1,17,35,116,101,114,109,115,45,119,114,97,112,112,101,114,45,105,100,2,1,137,171,177,235,16,1,16,35,116,101,114,109,115,95,99,111,110,116,97,105,110,101,114,2,1,133,175,237,213,16,1,14,35,116,101,114,109,115,97,110,100,99,111,110,100,115,2,1,83,193,96,32,16,1,11,35,116,101,115,116,95,97,108,101,114,116,2,1,105,144,152,255,16,1,8,35,116,101,120,116,66,111,120,2,1,95,149,45,219,16,1,6,35,116,102,97,100,101,2,1,215,149,81,96,16,1,17,35,116,105,108,101,45,103,100,112,114,45,98,97,110,110,101,114,2,2,28,244,136,208,209,226,89,13,16,1,7,35,116,108,105,103,104,116,2,1,215,149,81,96,16,1,12,35,116,109,112,95,99,111,111,107,105,101,115,2,1,114,162,115,160,16,1,14,35,116,109,112,95,108,111,99,97,108,95,98,97,114,2,1,225,251,19,185,16,1,6,35,116,111,97,115,116,2,2,24,83,255,102,233,75,73,45,16,1,8,35,116,111,111,108,98,97,114,2,2,48,53,224,74,88,232,166,199,16,1,22,35,116,111,112,45,98,97,110,110,101,114,45,105,110,45,99,111,110,116,101,110,116,2,1,176,34,200,42,16,1,11,35,116,111,112,45,110,111,116,105,99,101,2,1,12,88,120,62,16,1,11,35,116,111,112,95,110,111,116,105,99,101,2,1,40,238,47,250,16,1,7,35,116,111,112,98,97,114,2,1,223,207,193,4,16,1,11,35,116,111,115,45,98,97,110,110,101,114,2,2,115,58,172,241,129,14,24,43,16,1,8,35,116,111,115,45,98,97,114,2,1,163,58,102,72,16,1,16,35,116,111,115,95,117,112,100,97,116,101,95,98,97,110,100,2,1,96,86,27,107,16,1,10,35,116,112,45,99,111,111,107,105,101,2,1,137,253,140,149,16,1,15,35,116,114,97,99,107,105,110,103,45,109,111,100,97,108,2,1,91,143,20,184,16,1,15,35,116,114,97,99,107,105,110,103,45,112,111,112,117,112,2,1,23,99,205,253,16,1,16,35,116,114,97,99,107,105,110,103,109,101,115,115,97,103,101,2,1,193,210,27,31,16,1,17,35,117,99,110,45,103,100,112,114,45,111,118,101,114,108,97,121,2,1,155,131,153,174,16,1,3,35,117,101,2,1,74,98,19,103,16,1,21,35,117,109,97,32,62,32,100,105,118,32,62,32,46,109,101,115,115,97,103,101,2,1,104,78,245,96,16,1,14,35,117,115,97,103,101,45,109,101,116,114,105,99,115,2,2,10,102,12,240,189,119,95,202,16,1,21,35,117,115,97,103,101,45,109,101,116,114,105,99,115,45,110,111,116,105,99,101,2,1,189,119,95,202,16,1,13,35,117,115,97,103,101,95,110,111,116,105,99,101,2,1,101,143,207,84,16,1,46,35,117,115,101,114,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,45,98,105,110,97,114,121,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,2,4,18,99,14,104,47,255,240,80,50,178,81,13,91,70,163,124,16,1,48,35,117,115,101,114,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,45,103,114,97,110,117,108,97,114,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,2,1,148,193,35,81,16,1,16,35,117,115,101,114,95,100,105,115,99,108,97,105,109,101,114,2,1,31,68,121,213,16,1,11,35,117,115,101,114,95,112,111,112,117,112,2,1,126,239,65,55,16,1,11,35,117,115,101,114,112,114,111,109,112,116,2,1,247,87,182,143,16,1,14,35,117,115,105,110,103,45,99,111,111,107,105,101,115,2,1,40,244,33,173,16,1,17,35,118,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,116,54,163,0,16,1,15,35,118,99,118,45,116,111,112,45,98,97,110,110,101,114,2,1,240,231,165,33,16,1,26,35,118,101,114,115,105,111,110,105,122,101,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,235,140,155,23,16,1,7,35,118,102,45,112,111,112,2,1,204,147,223,79,16,1,19,35,118,105,118,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,148,186,130,176,16,1,27,35,118,117,101,45,97,112,112,32,62,32,46,118,95,98,103,92,58,112,101,97,99,104,45,51,48,48,2,1,88,148,116,179,16,1,12,35,119,97,114,110,105,110,103,45,98,97,114,2,1,90,198,29,165,16,1,14,35,119,97,114,110,105,110,103,45,112,111,112,117,112,2,1,126,243,231,171,16,1,20,35,119,101,98,115,105,116,101,95,99,111,111,107,105,101,115,95,98,97,114,2,1,83,121,94,154,16,1,8,35,119,101,108,99,111,109,101,2,1,248,160,184,243,16,1,11,35,119,101,108,99,111,109,101,77,115,103,2,1,244,203,207,246,16,1,16,35,119,112,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,94,192,120,93,16,1,9,35,119,112,99,103,45,98,111,120,2,1,70,139,64,170,16,1,14,35,119,112,116,98,104,101,97,100,108,105,110,101,49,2,1,101,103,85,181,16,1,21,35,119,112,120,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,2,1,247,76,161,189,16,1,8,35,119,114,97,112,112,101,114,2,1,148,186,151,254,16,1,19,35,119,121,122,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,148,186,116,37,16,1,16,35,120,114,105,95,71,111,111,103,67,111,110,115,101,110,116,2,1,187,65,83,183,16,1,22,35,122,100,112,114,105,118,97,99,121,45,99,111,110,116,101,110,116,45,110,101,119,2,1,199,252,67,142,8,1,21,46,45,97,108,101,114,116,46,45,102,105,120,101,100,46,110,111,116,105,99,101,2,1,16,43,14,59,8,1,16,46,45,102,111,111,116,101,114,95,95,110,111,116,105,99,101,2,2,76,122,93,67,210,120,97,242,8,1,18,46,45,108,101,102,116,46,110,104,108,45,99,45,116,111,97,115,116,2,1,38,156,254,70,8,1,38,46,65,103,114,101,101,67,111,111,107,105,101,80,111,108,105,99,121,95,99,111,111,107,105,101,80,111,108,105,99,121,95,95,79,85,98,101,85,2,1,240,121,228,31,8,1,6,46,65,108,101,114,116,2,1,26,223,64,66,8,1,7,46,66,97,110,110,101,114,2,1,154,21,177,7,8,1,17,46,66,97,110,110,101,114,45,115,99,45,105,111,112,111,106,114,2,1,127,216,76,199,8,1,14,46,66,97,110,110,101,114,77,97,110,97,103,101,114,2,1,150,58,113,136,8,1,29,46,66,97,110,110,101,114,95,95,95,83,116,121,108,101,100,70,108,101,120,45,115,102,57,103,51,100,45,48,2,1,127,55,15,72,8,1,21,46,66,97,110,110,101,114,95,98,97,110,110,101,114,95,95,68,54,88,90,57,2,1,126,250,167,136,8,1,40,46,66,97,110,110,101,114,95,99,111,111,107,105,101,115,66,97,110,110,101,114,77,111,100,97,108,79,118,101,114,108,97,121,95,95,121,52,117,67,56,2,1,109,232,16,35,8,1,7,46,66,109,117,50,54,122,2,1,254,187,34,179,8,1,13,46,66,111,116,116,111,109,66,97,110,110,101,114,2,1,154,21,177,7,8,1,28,46,66,111,116,116,111,109,70,105,120,101,100,66,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,42,132,101,155,8,1,11,46,67,66,51,57,51,95,111,112,116,115,2,1,132,101,55,141,8,1,5,46,67,67,80,65,2,1,240,188,5,253,8,1,5,46,67,100,105,118,2,1,64,196,120,200,8,1,9,46,67,111,90,57,78,117,56,90,2,2,38,157,134,124,246,197,98,136,8,1,35,46,67,111,110,115,101,110,116,66,97,110,110,101,114,95,99,111,110,115,101,110,116,66,97,110,110,101,114,95,95,98,76,101,120,86,2,1,89,215,7,32,8,1,25,46,67,111,110,115,101,110,116,87,105,100,103,101,116,95,95,99,111,110,116,97,105,110,101,114,2,2,54,249,180,102,81,0,75,130,8,1,33,46,67,111,111,107,105,101,65,103,114,101,101,86,105,101,119,95,99,111,110,116,97,105,110,101,114,95,95,113,89,97,75,51,2,1,240,133,39,246,8,1,33,46,67,111,111,107,105,101,66,97,110,110,101,114,45,109,111,100,117,108,101,95,95,119,114,97,112,45,45,49,81,75,57,116,2,1,141,64,220,155,8,1,24,46,67,111,111,107,105,101,66,111,120,95,115,97,102,101,116,121,95,95,112,116,53,65,72,2,1,146,230,143,166,8,1,45,46,67,111,111,107,105,101,67,111,109,112,111,110,101,110,116,95,95,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,45,115,99,45,116,104,102,53,108,114,45,48,2,1,55,173,119,125,8,1,29,46,67,111,111,107,105,101,67,111,110,115,101,110,116,32,62,32,46,111,45,99,111,110,116,97,105,110,101,114,2,1,38,157,49,38,8,1,36,46,67,111,111,107,105,101,67,111,110,115,101,110,116,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,110,117,76,117,73,2,1,55,73,245,52,8,1,14,46,67,111,111,107,105,101,67,111,110,116,114,111,108,2,1,253,82,0,202,8,1,32,46,67,111,111,107,105,101,77,111,100,97,108,95,109,111,100,97,108,79,118,101,114,108,97,121,95,95,85,111,98,103,79,2,1,6,15,195,45,8,1,25,46,67,111,111,107,105,101,77,111,100,97,108,95,109,111,100,97,108,95,95,107,104,88,69,121,2,1,6,15,195,45,8,1,39,46,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,95,110,111,116,105,102,105,99,97,116,105,111,110,95,95,48,78,107,114,107,2,1,148,186,3,102,8,1,16,46,67,111,111,107,105,101,80,108,97,99,101,109,101,110,116,2,1,66,100,243,16,8,1,19,46,67,111,111,107,105,101,80,111,108,105,99,121,66,97,110,110,101,114,2,1,231,57,27,36,8,1,31,46,67,111,111,107,105,101,80,111,112,85,112,95,99,111,111,107,105,101,80,111,112,85,112,95,95,50,109,66,56,81,2,1,148,186,106,88,8,1,34,46,67,111,111,107,105,101,87,105,110,100,111,119,95,95,87,114,97,112,112,101,114,45,115,99,45,117,104,100,108,112,107,45,48,2,1,190,37,224,35,8,1,30,46,67,111,111,107,105,101,115,45,109,111,100,117,108,101,45,45,99,111,111,107,105,101,45,45,50,121,100,82,51,2,1,248,29,243,225,8,1,33,46,67,111,111,107,105,101,115,65,108,101,114,116,95,99,111,111,107,105,101,115,65,108,101,114,116,95,95,51,113,83,108,49,2,1,165,4,120,51,8,1,28,46,67,111,111,107,105,101,115,65,108,101,114,116,95,119,114,97,112,112,101,114,95,95,65,108,48,104,50,2,1,151,15,168,131,8,1,27,46,67,111,111,107,105,101,115,71,68,80,82,95,105,110,105,116,105,97,108,95,95,50,101,80,78,70,2,1,134,231,234,109,8,1,36,46,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,66,116,109,79,118,101,114,108,97,121,83,116,105,99,107,121,2,2,75,78,159,71,110,57,44,120,8,1,37,46,67,111,111,107,105,101,115,80,111,108,105,99,121,45,109,111,100,117,108,101,45,45,119,114,97,112,112,101,114,45,45,56,112,72,99,97,2,1,208,117,249,219,8,1,33,46,67,111,111,107,105,101,115,80,111,112,85,112,95,67,111,111,107,105,101,115,80,111,112,85,112,95,95,122,55,98,72,118,2,1,10,181,9,48,8,1,25,46,67,111,111,107,105,101,115,80,111,112,117,112,95,114,111,111,116,95,95,104,95,109,52,106,2,1,38,153,118,116,8,1,10,46,67,121,98,111,116,69,100,103,101,2,2,52,233,141,87,194,170,224,8,8,1,25,46,68,105,115,99,108,111,115,117,114,101,80,111,112,117,112,67,111,110,116,97,105,110,101,114,2,2,67,199,87,18,188,26,9,131,8,1,6,46,69,81,82,108,106,2,1,125,95,99,54,8,1,21,46,69,106,85,85,79,76,89,111,51,116,67,114,99,54,106,55,77,97,112,118,2,1,173,133,232,123,8,1,23,46,70,101,97,116,117,114,101,66,97,114,95,114,111,111,116,95,95,95,73,78,85,56,2,1,35,222,163,98,8,1,59,46,70,101,97,116,117,114,101,66,97,114,95,114,111,111,116,95,95,103,89,113,105,49,46,116,114,97,110,115,102,111,114,109,46,116,114,97,110,115,108,97,116,101,45,121,45,48,46,111,112,97,99,105,116,121,45,49,48,48,2,1,129,61,52,147,8,1,29,46,70,108,111,97,116,105,110,103,66,111,120,101,115,67,111,110,116,97,105,110,101,114,66,111,116,116,111,109,2,1,56,99,141,55,8,1,30,46,70,111,111,116,101,114,45,109,111,100,117,108,101,45,45,99,111,110,115,101,110,116,45,45,97,53,48,101,50,2,1,13,155,217,248,8,1,13,46,70,111,111,116,101,114,78,111,116,105,99,101,2,1,36,18,38,19,8,1,22,46,70,111,111,116,101,114,95,99,111,111,107,105,101,115,95,95,51,95,103,69,104,2,1,32,25,141,251,8,1,6,46,70,113,86,101,65,2,1,14,48,174,175,8,1,5,46,71,68,80,82,2,3,31,73,232,88,189,6,102,222,209,171,189,83,8,1,22,46,71,68,80,82,80,97,110,101,108,95,114,111,111,116,95,95,77,104,99,106,66,2,1,17,58,36,144,8,1,31,46,71,68,80,82,80,111,112,117,112,45,109,111,100,117,108,101,45,45,112,111,112,117,112,45,45,51,99,104,106,109,2,1,85,131,251,115,8,1,17,46,71,68,80,82,95,109,97,105,110,95,95,102,120,109,70,102,2,1,194,125,50,175,8,1,22,46,71,100,112,114,79,102,102,101,114,95,98,108,111,99,107,95,73,114,52,107,74,2,1,90,40,220,146,8,1,21,46,71,100,112,114,79,102,102,101,114,95,114,111,111,116,95,112,67,117,79,79,2,1,90,40,220,146,8,1,36,46,71,100,112,114,95,95,71,100,112,114,80,97,114,101,110,116,87,114,97,112,112,101,114,45,115,99,45,122,51,48,109,99,108,45,48,2,1,36,97,237,104,8,1,34,46,72,65,83,72,95,67,79,79,75,73,69,95,65,76,69,82,84,95,71,82,73,68,95,73,84,69,77,95,70,73,88,69,68,2,1,126,171,187,56,8,1,30,46,72,101,97,100,101,114,77,101,110,117,95,67,111,111,107,105,101,65,108,101,114,116,95,95,105,112,69,102,75,2,1,96,249,72,167,8,1,23,46,72,111,109,101,112,97,103,101,95,98,97,110,110,101,114,95,95,66,111,50,81,73,2,1,139,159,14,124,8,1,6,46,72,122,80,104,78,2,1,111,120,157,197,0,1,27,46,74,55,53,82,105,86,74,84,120,103,66,106,71,119,120,103,69,49,122,45,76,103,92,61,92,61,2,1,238,192,250,162,8,1,9,46,75,87,66,97,110,110,101,114,2,1,194,197,253,44,8,1,28,46,76,97,121,111,117,116,95,109,97,105,110,67,111,111,107,105,101,68,105,118,95,95,110,102,54,80,84,2,1,76,133,130,27,8,1,38,46,76,111,97,100,105,110,103,68,111,116,115,95,95,95,83,116,121,108,101,100,70,108,101,120,45,115,99,45,49,114,55,119,121,119,104,45,49,2,1,127,55,15,72,8,1,30,46,77,111,100,97,108,83,117,98,77,111,100,117,108,101,95,111,118,101,114,108,97,121,95,95,51,80,109,87,81,2,1,55,121,58,219,8,1,6,46,77,113,115,80,119,2,1,7,31,179,41,8,1,10,46,77,114,107,117,49,49,53,48,50,2,1,165,184,116,226,8,1,16,46,77,117,105,68,114,97,119,101,114,45,109,111,100,97,108,2,1,224,23,53,51,8,1,15,46,77,117,105,68,114,97,119,101,114,45,114,111,111,116,2,1,160,163,255,121,8,1,30,46,77,117,105,71,114,105,100,45,97,108,105,103,110,45,105,116,101,109,115,45,120,115,45,99,101,110,116,101,114,2,1,66,252,62,160,8,1,34,46,77,117,105,80,97,112,101,114,45,101,108,101,118,97,116,105,111,110,54,91,114,111,108,101,61,34,97,108,101,114,116,34,93,2,1,77,105,149,179,8,1,20,46,77,117,105,80,97,112,101,114,45,101,108,101,118,97,116,105,111,110,55,2,1,153,124,232,140,8,1,100,46,77,117,105,80,97,112,101,114,45,114,111,111,116,91,115,116,121,108,101,61,34,116,114,97,110,115,102,111,114,109,58,32,110,111,110,101,59,32,116,114,97,110,115,105,116,105,111,110,58,32,116,114,97,110,115,102,111,114,109,32,50,50,53,109,115,32,99,117,98,105,99,45,98,101,122,105,101,114,40,48,44,32,48,44,32,48,46,50,44,32,49,41,32,48,109,115,59,34,93,2,1,224,23,53,51,8,1,38,46,77,117,105,83,110,97,99,107,98,97,114,67,111,110,116,101,110,116,45,114,111,111,116,91,114,111,108,101,61,34,97,108,101,114,116,34,93,2,1,105,139,135,66,8,1,16,46,77,121,67,111,110,115,101,110,116,95,79,117,116,101,114,2,1,148,192,2,229,8,1,7,46,78,111,116,105,99,101,2,1,223,237,67,170,8,1,8,46,78,111,116,105,99,101,115,2,2,15,94,47,188,136,94,147,12,8,1,11,46,78,111,116,105,99,101,115,66,111,120,2,1,148,184,44,216,8,1,30,46,78,111,116,105,102,105,99,97,116,105,111,110,66,97,110,110,101,114,95,115,104,111,119,66,97,110,110,101,114,2,1,58,200,187,200,8,1,16,46,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,2,2,170,229,95,35,228,180,121,234,8,1,17,46,78,111,116,105,102,105,99,97,116,105,111,110,76,105,110,101,2,1,196,154,166,194,8,1,24,46,80,97,103,101,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,2,1,181,253,178,205,8,1,6,46,80,110,121,71,111,2,1,148,201,134,173,8,1,24,46,80,111,112,67,111,111,107,105,101,95,97,99,116,105,118,101,95,95,85,87,105,55,69,2,1,188,68,227,132,8,1,35,46,80,111,112,105,66,97,110,110,101,114,95,95,80,111,112,105,67,111,110,116,97,105,110,101,114,45,105,103,104,97,114,109,45,49,2,1,30,119,143,31,8,1,23,46,80,111,112,111,118,101,114,95,119,114,97,112,112,101,114,95,95,102,101,67,120,116,2,1,242,172,254,249,8,1,13,46,80,111,112,117,112,79,118,101,114,97,108,108,2,2,92,165,119,59,118,231,4,75,8,1,8,46,80,114,105,118,97,99,121,2,1,126,200,93,170,8,1,40,46,80,114,105,118,97,99,121,70,101,101,100,67,97,114,100,45,45,80,114,105,118,97,99,121,70,101,101,100,67,97,114,100,45,45,51,95,70,107,53,2,1,32,202,47,124,8,1,14,46,80,114,105,118,97,99,121,78,111,116,105,99,101,2,3,101,232,206,242,222,165,254,202,253,122,210,210,8,1,19,46,80,114,111,109,111,116,105,111,110,97,108,45,99,111,114,110,101,114,2,2,69,19,150,118,86,247,148,202,8,1,33,46,81,49,77,78,107,46,114,69,53,115,45,46,95,57,99,117,82,114,46,95,49,97,67,115,76,46,95,51,68,81,88,73,2,1,195,181,83,235,8,1,7,46,82,48,53,99,85,111,2,1,127,45,159,201,8,1,17,46,82,101,97,99,116,77,111,100,97,108,80,111,114,116,97,108,2,1,42,242,44,29,8,1,32,46,82,101,97,99,116,77,111,100,97,108,95,95,79,118,101,114,108,97,121,45,45,97,102,116,101,114,45,111,112,101,110,2,2,193,113,84,75,234,236,26,162,8,1,11,46,82,101,97,100,80,111,108,105,99,121,2,1,78,105,197,223,8,1,30,46,82,103,112,100,68,114,97,119,101,114,95,114,103,112,100,95,100,114,97,119,101,114,95,95,50,86,67,85,48,2,1,142,28,140,138,8,1,49,46,82,105,111,116,87,114,97,112,112,101,114,45,118,105,115,111,114,45,97,108,101,114,116,45,82,105,111,116,87,114,97,112,112,101,114,45,118,105,115,111,114,45,97,108,101,114,116,53,2,1,124,127,243,126,8,1,18,46,83,72,79,87,73,84,45,109,115,103,95,115,104,111,119,101,100,2,1,127,17,31,22,8,1,19,46,83,104,101,108,108,45,99,111,111,107,105,101,78,111,116,105,99,101,2,1,254,127,129,168,8,1,13,46,83,105,116,101,45,99,111,111,107,105,101,115,2,1,50,83,138,170,8,1,26,46,84,101,114,109,115,79,102,83,101,114,118,105,99,101,95,95,99,111,109,112,111,110,101,110,116,2,1,38,157,25,55,8,1,11,46,84,104,101,67,111,110,115,101,110,116,2,1,86,181,50,48,8,1,6,46,84,111,97,115,116,2,1,23,81,226,91,8,1,26,46,84,111,97,115,116,71,100,112,114,95,95,119,114,97,112,112,101,114,95,95,55,108,112,98,80,2,1,11,193,187,33,8,1,9,46,84,111,97,115,116,105,102,121,2,1,72,188,56,7,8,1,8,46,84,111,111,108,116,105,112,2,8,121,189,122,163,121,239,215,0,122,45,0,18,122,242,77,68,137,121,14,191,148,151,221,79,148,192,37,74,149,69,191,8,8,1,32,46,85,115,101,67,111,111,107,105,101,95,117,115,101,67,111,111,107,105,101,77,111,100,108,101,95,95,54,100,52,107,122,2,1,129,66,251,172,8,1,17,46,86,67,83,67,111,111,107,105,101,67,111,110,116,114,111,108,2,1,52,56,5,30,8,1,6,46,88,108,111,118,113,2,1,173,61,80,177,0,1,27,46,92,33,98,111,116,116,111,109,45,48,46,108,103,92,58,111,112,97,99,105,116,121,45,49,48,48,2,1,126,162,20,115,8,1,7,46,95,49,65,115,72,107,2,1,173,2,211,246,8,1,7,46,95,49,67,73,98,67,2,1,139,228,184,163,8,1,7,46,95,49,72,111,67,100,2,1,38,157,53,121,8,1,10,46,95,49,85,100,66,85,119,110,105,2,1,148,195,154,93,8,1,8,46,95,49,98,104,77,81,83,2,1,21,92,66,118,8,1,9,46,95,49,104,121,119,101,116,102,2,1,97,62,238,239,8,1,10,46,95,49,106,106,119,52,55,104,51,2,1,247,241,92,89,8,1,7,46,95,49,112,111,66,90,2,2,3,110,19,21,135,136,19,183,8,1,10,46,95,49,117,55,65,107,84,106,121,2,1,241,237,126,6,8,1,10,46,95,49,119,122,48,121,106,112,48,2,1,194,178,66,155,8,1,14,46,95,50,49,98,57,57,49,51,49,56,52,52,52,2,1,44,54,111,95,8,1,7,46,95,50,51,76,107,77,2,1,7,31,179,41,8,1,24,46,95,50,57,103,81,102,85,122,45,98,122,95,78,121,87,104,80,82,112,106,79,83,101,2,1,84,61,122,246,8,1,7,46,95,50,57,118,45,116,2,1,196,122,77,117,8,1,24,46,95,50,73,73,105,101,120,45,67,115,120,116,117,87,55,81,71,90,95,111,79,53,122,2,1,230,171,184,234,8,1,24,46,95,50,80,102,66,73,54,75,55,74,119,109,87,80,105,112,68,85,113,48,57,120,53,2,1,32,233,155,142,8,1,9,46,95,50,86,75,54,87,80,72,2,1,95,80,243,78,8,1,10,46,95,50,100,45,56,118,113,45,87,2,1,148,195,154,93,8,1,10,46,95,50,100,99,55,100,48,50,48,2,1,38,157,25,55,8,1,7,46,95,50,104,71,74,108,2,1,171,52,55,134,8,1,24,46,95,50,120,106,85,81,111,54,52,110,89,57,72,113,104,97,69,111,66,90,122,81,121,2,2,88,105,219,216,114,20,214,109,8,1,34,46,95,51,56,55,54,50,51,100,56,56,101,54,56,97,101,102,98,48,101,101,98,100,53,97,102,53,50,50,97,101,48,54,50,2,1,230,177,237,232,8,1,24,46,95,51,70,77,106,90,87,114,107,116,102,110,117,99,90,118,77,77,71,84,111,79,120,2,1,26,68,228,163,8,1,7,46,95,51,86,50,114,71,2,1,218,99,214,226,8,1,7,46,95,51,102,99,72,71,2,1,127,142,192,91,8,1,7,46,95,51,106,111,87,116,2,1,241,203,177,29,8,1,10,46,95,51,106,120,54,120,117,50,57,2,1,148,195,154,93,8,1,24,46,95,51,113,45,88,83,74,50,118,111,107,68,81,114,118,100,71,54,109,82,95,95,107,2,1,142,14,98,194,8,1,7,46,95,52,104,119,99,49,2,1,139,228,184,163,8,1,9,46,95,54,114,110,98,107,112,48,2,1,241,52,143,232,8,1,21,46,95,67,111,111,107,105,101,66,97,110,110,101,114,95,49,107,54,97,119,57,2,1,202,34,245,9,8,1,6,46,95,68,101,51,106,2,1,128,166,99,114,8,1,11,46,95,95,67,67,95,112,111,112,117,112,2,1,95,150,22,109,8,1,23,46,95,95,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,50,97,56,49,98,2,1,202,34,245,9,8,1,13,46,95,95,99,115,115,45,99,70,113,119,115,80,2,1,3,74,139,121,8,1,17,46,95,95,103,100,112,114,45,99,111,110,116,97,105,110,101,114,2,1,164,166,153,75,8,1,6,46,95,97,95,121,98,2,1,71,27,185,12,8,1,5,46,95,97,106,117,2,1,185,68,176,236,8,1,17,46,95,99,111,110,116,97,105,110,95,49,98,50,109,107,95,49,2,1,220,184,157,147,8,1,24,46,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,116,112,99,55,50,95,49,2,1,77,196,170,59,8,1,25,46,95,99,111,111,107,105,101,80,114,101,115,101,110,116,101,114,95,105,115,106,107,108,95,49,2,1,60,14,153,161,8,1,20,46,95,103,100,112,114,45,110,111,116,105,102,121,45,104,101,97,100,101,114,2,1,120,203,45,164,8,1,28,46,95,103,100,112,114,45,110,111,116,105,102,121,45,104,101,97,100,101,114,95,114,101,112,108,97,99,101,2,1,88,58,138,184,8,1,7,46,95,104,101,52,48,50,2,1,26,186,75,244,8,1,22,46,95,110,111,116,105,102,105,99,97,116,105,111,110,95,113,112,98,49,122,95,49,2,1,3,38,21,207,8,1,10,46,95,112,95,112,111,108,105,99,121,2,1,235,145,78,137,8,1,12,46,95,118,103,83,108,48,99,120,52,97,111,2,1,177,214,185,93,8,1,9,46,95,119,113,110,118,120,104,107,2,1,85,87,94,43,8,1,18,46,95,119,114,97,112,112,101,114,95,49,117,52,51,98,95,49,55,2,1,191,205,20,61,8,1,10,46,97,45,119,97,114,110,105,110,103,2,1,148,187,188,114,8,1,18,46,97,56,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,53,175,75,40,8,1,41,46,97,95,99,111,111,107,105,101,45,97,110,100,45,99,111,110,118,101,114,115,105,111,110,45,98,97,110,110,101,114,95,99,111,109,112,111,110,101,110,116,2,1,187,68,218,49,8,1,45,46,97,98,111,118,101,45,112,97,103,101,115,45,99,111,110,116,97,105,110,101,114,32,62,32,46,97,110,105,109,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,2,1,24,217,242,120,8,1,3,46,97,99,2,1,24,105,238,35,8,1,12,46,97,99,98,66,97,99,107,100,114,111,112,2,1,127,80,60,78,8,1,13,46,97,99,99,101,112,116,45,97,108,101,114,116,2,2,142,164,61,231,197,18,15,59,8,1,24,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,115,110,97,99,107,98,97,114,2,1,174,32,109,165,8,1,17,46,97,99,99,101,112,116,97,110,99,101,45,112,111,112,117,112,2,1,118,188,9,154,8,1,28,46,97,99,99,101,112,116,99,111,111,107,105,101,95,99,111,110,116,97,105,110,95,95,74,86,118,99,85,2,1,147,134,182,0,8,1,28,46,97,99,113,117,105,115,105,116,105,111,110,45,102,111,111,116,101,114,45,114,111,119,45,119,114,97,112,2,1,253,106,105,218,8,1,12,46,97,99,116,105,118,101,46,109,97,115,107,2,1,53,131,190,195,8,1,7,46,97,100,118,98,111,120,2,1,174,57,44,124,8,1,6,46,97,103,114,101,101,2,1,95,80,28,136,8,1,12,46,97,103,114,101,101,45,112,111,112,117,112,2,1,98,199,181,125,8,1,12,46,97,103,114,101,101,45,116,101,114,109,115,2,1,107,154,211,99,8,1,9,46,97,103,114,101,101,100,80,80,2,1,6,232,63,131,8,1,16,46,97,103,114,101,101,109,101,110,116,45,112,111,112,117,112,2,1,244,221,123,44,8,1,23,46,97,103,114,101,101,109,101,110,116,45,116,111,45,108,97,115,116,45,116,101,114,109,2,1,172,142,245,98,8,1,9,46,97,103,114,101,101,116,111,112,2,1,7,55,85,153,8,1,14,46,97,108,101,114,116,45,45,97,99,116,105,118,101,2,1,54,78,164,86,8,1,13,46,97,108,101,114,116,45,45,102,105,120,101,100,2,1,148,181,46,176,8,1,20,46,97,108,101,114,116,45,45,115,116,114,105,112,101,46,97,108,101,114,116,2,1,176,121,192,214,8,1,13,46,97,108,101,114,116,45,98,97,110,110,101,114,2,2,17,125,133,161,240,49,41,209,8,1,21,46,97,108,101,114,116,45,98,97,110,110,101,114,95,95,99,111,111,107,105,101,2,1,160,163,155,118,8,1,17,46,97,108,101,114,116,45,98,97,114,45,102,111,111,116,101,114,2,1,69,48,183,208,8,1,10,46,97,108,101,114,116,45,98,111,120,2,4,11,208,55,121,27,11,152,216,175,158,96,88,198,69,99,161,8,1,16,46,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,2,1,245,39,203,88,8,1,13,46,97,108,101,114,116,45,99,111,111,107,105,101,2,1,201,10,246,252,8,1,13,46,97,108,101,114,116,45,100,97,110,103,101,114,2,1,177,4,232,167,8,1,18,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,2,2,196,115,205,135,244,60,44,128,8,1,38,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,58,110,111,116,40,46,97,108,101,114,116,45,115,117,99,99,101,115,115,41,2,1,117,226,216,149,8,1,11,46,97,108,101,114,116,45,105,110,102,111,2,2,12,45,28,195,129,46,52,144,8,1,10,46,97,108,101,114,116,45,112,97,100,2,1,237,69,102,149,8,1,12,46,97,108,101,114,116,45,112,111,112,117,112,2,1,45,183,140,79,8,1,14,46,97,108,101,114,116,45,115,101,99,116,105,111,110,2,1,42,73,29,240,8,1,13,46,97,108,101,114,116,45,115,101,114,118,101,114,2,1,50,89,171,169,8,1,14,46,97,108,101,114,116,45,119,114,97,112,112,101,114,2,1,136,187,40,249,8,1,13,46,97,108,101,114,116,46,104,115,116,97,99,107,2,1,217,212,52,133,8,1,19,46,97,108,101,114,116,70,111,111,116,101,114,67,111,110,116,101,110,116,2,1,27,98,130,110,8,1,10,46,97,108,101,114,116,95,98,111,120,2,1,156,198,14,225,8,1,9,46,97,108,101,114,116,98,97,114,2,1,177,184,146,246,8,1,11,46,97,108,101,114,116,115,45,116,111,112,2,1,98,238,192,241,8,1,18,46,97,108,105,101,120,112,114,101,115,115,45,110,111,116,105,99,101,2,1,14,37,91,102,8,1,15,46,97,108,116,45,111,112,116,45,115,101,99,117,114,101,2,1,125,239,148,105,8,1,11,46,97,108,116,99,109,45,122,45,53,48,2,1,22,118,143,78,8,1,16,46,97,108,116,101,114,110,105,115,45,99,111,111,107,105,101,2,1,170,235,169,19,8,1,17,46,97,110,97,108,121,116,105,99,115,45,98,97,110,110,101,114,2,1,137,250,245,187,8,1,24,46,97,110,97,108,121,116,105,99,115,45,99,111,110,115,101,110,116,45,112,111,112,117,112,2,1,119,122,198,173,8,1,15,46,97,110,97,108,121,116,105,99,115,45,105,110,102,111,2,1,101,210,193,43,8,1,17,46,97,110,99,104,111,114,98,111,116,116,111,109,76,101,102,116,2,1,48,163,240,84,8,1,16,46,97,110,99,114,45,112,111,115,45,98,111,116,116,111,109,2,2,72,204,29,172,158,130,2,216,8,1,23,46,97,110,105,109,45,98,97,110,110,101,114,45,101,110,116,101,114,45,100,111,110,101,2,1,238,61,127,110,8,1,21,46,97,110,105,109,95,95,99,111,111,107,105,101,95,95,98,111,120,45,98,103,2,1,7,16,88,159,8,1,28,46,97,110,105,109,97,116,101,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,115,104,111,119,2,1,117,160,69,29,8,1,13,46,97,110,110,111,117,110,99,101,109,101,110,116,2,3,35,221,175,187,76,233,228,69,94,93,49,104,8,1,20,46,97,110,110,111,117,110,99,101,109,101,110,116,45,98,97,110,110,101,114,2,1,197,77,252,102,8,1,14,46,97,110,110,111,117,110,99,101,109,101,110,116,115,2,2,92,163,121,83,136,147,135,170,8,1,16,46,97,110,116,45,98,111,116,116,111,109,45,108,101,102,116,2,1,148,166,17,117,8,1,15,46,97,110,116,45,109,111,100,97,108,45,114,111,111,116,2,1,7,233,195,49,8,1,17,46,97,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,2,3,167,152,52,150,184,33,215,54,197,139,7,144,8,1,15,46,97,110,116,45,114,111,119,45,99,101,110,116,101,114,2,1,86,211,61,144,8,1,5,46,97,112,102,49,2,1,143,245,23,54,8,1,25,46,97,112,112,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,228,216,7,237,8,1,19,46,97,112,112,45,102,111,111,116,101,114,45,99,111,110,116,101,110,116,2,1,160,163,236,137,8,1,24,46,97,112,112,45,108,101,118,101,108,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,137,59,27,126,8,1,32,46,97,112,112,45,108,105,103,104,116,32,62,32,100,105,118,91,115,116,121,108,101,42,61,34,102,105,120,101,100,34,93,2,1,68,53,124,39,8,1,25,46,97,112,112,95,95,100,111,109,101,115,116,105,99,45,100,105,115,99,108,97,105,109,101,114,2,1,38,157,104,207,8,1,13,46,97,112,112,95,95,109,101,115,115,97,103,101,2,1,128,29,250,249,8,1,28,46,97,112,112,101,97,114,45,101,110,116,101,114,45,100,111,110,101,46,101,49,121,118,110,122,53,99,48,2,1,148,184,120,215,8,1,15,46,97,112,112,105,102,121,95,114,99,99,95,114,111,119,2,1,66,120,202,57,8,1,6,46,97,114,45,99,112,2,1,65,198,21,40,8,1,15,46,97,114,45,110,101,119,115,45,102,111,111,116,101,114,2,1,151,19,115,243,8,1,14,46,97,114,103,97,97,109,45,112,111,108,105,99,121,2,1,61,104,66,133,8,1,15,46,97,114,103,101,110,116,95,99,111,110,115,101,110,116,2,1,195,172,245,91,8,1,21,46,97,114,116,100,101,99,111,45,103,108,111,98,97,108,45,97,108,101,114,116,2,1,153,46,38,42,8,1,7,46,97,115,45,111,105,108,2,1,160,163,236,137,8,1,22,46,97,115,85,104,120,72,86,71,82,106,77,57,81,78,87,77,76,101,108,79,53,2,1,208,10,10,51,8,1,24,46,97,115,115,101,116,115,95,99,111,110,116,97,105,110,101,114,95,95,51,69,69,112,51,2,1,94,199,137,206,8,1,20,46,97,116,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,138,20,77,106,8,1,19,46,97,116,112,95,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,236,71,38,145,8,1,14,46,97,116,116,101,110,116,105,111,110,45,109,115,103,2,1,243,180,143,66,8,1,14,46,97,120,101,112,116,105,111,95,109,111,117,110,116,2,1,250,112,125,87,8,1,17,46,98,45,104,101,97,100,101,114,45,109,101,115,115,97,103,101,2,1,179,239,135,145,8,1,8,46,98,45,109,111,100,97,108,2,2,99,78,37,55,223,172,190,52,8,1,9,46,98,45,118,115,114,82,56,87,2,1,164,223,240,31,8,1,6,46,98,75,95,109,86,2,1,154,225,170,25,8,1,6,46,98,81,95,107,98,2,1,81,151,209,154,8,1,7,46,98,85,87,83,108,90,2,1,221,116,140,110,8,1,7,46,98,89,84,100,105,65,2,1,104,76,5,0,8,1,6,46,98,90,114,66,122,2,1,209,181,190,215,8,1,4,46,98,95,103,2,1,81,151,216,124,8,1,9,46,98,97,99,107,68,114,111,112,2,1,194,197,250,113,8,1,11,46,98,97,99,107,103,114,111,117,110,100,2,2,55,51,109,152,187,253,228,126,8,1,7,46,98,97,110,110,101,114,2,1,254,187,150,95,8,1,15,46,98,97,110,110,101,114,45,45,98,111,116,116,111,109,2,1,148,202,79,68,8,1,11,46,98,97,110,110,101,114,45,50,49,55,2,1,215,3,193,29,8,1,20,46,98,97,110,110,101,114,45,98,108,111,99,107,45,115,99,114,101,101,110,2,1,246,237,76,72,8,1,17,46,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,123,12,121,107,8,1,13,46,98,97,110,110,101,114,45,104,105,110,116,115,2,1,117,194,105,145,8,1,15,46,98,97,110,110,101,114,45,109,101,115,115,97,103,101,2,1,235,120,156,16,8,1,14,46,98,97,110,110,101,114,45,110,111,116,105,99,101,2,1,11,178,130,222,8,1,15,46,98,97,110,110,101,114,45,111,118,101,114,108,97,121,2,2,94,136,201,89,139,164,230,26,8,1,12,46,98,97,110,110,101,114,45,119,114,97,112,2,2,84,115,167,80,116,175,211,94,8,1,15,46,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,1,221,128,84,119,8,1,16,46,98,97,110,110,101,114,67,111,110,116,97,105,110,101,114,2,2,41,141,19,113,93,71,48,142,8,1,18,46,98,97,110,110,101,114,95,95,99,111,110,116,97,105,110,101,114,2,1,185,191,66,209,8,1,13,46,98,97,110,110,101,114,95,95,114,111,111,116,2,1,125,66,145,45,8,1,13,46,98,97,110,110,101,114,95,97,108,101,114,116,2,1,80,117,161,255,8,1,11,46,98,97,110,110,101,114,95,98,111,120,2,1,119,142,145,161,8,1,17,46,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,2,1,180,198,253,3,8,1,11,46,98,97,115,101,45,109,111,100,97,108,2,1,214,233,249,64,8,1,18,46,98,97,115,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,107,93,142,236,8,1,14,46,98,97,115,105,99,76,105,103,104,116,98,111,120,2,1,121,38,165,233,8,1,23,46,98,97,116,99,104,103,101,111,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,199,245,24,61,8,1,20,46,98,98,45,98,111,111,116,115,116,114,97,112,45,97,108,101,114,116,115,2,1,170,79,88,234,8,1,11,46,98,98,99,45,98,109,120,109,50,98,2,1,38,157,104,207,8,1,7,46,98,100,56,48,97,99,2,1,170,51,175,248,8,1,19,46,98,101,111,110,111,45,102,108,97,115,104,109,101,115,115,97,103,101,2,1,121,212,231,242,8,1,13,46,98,101,115,116,45,99,111,111,107,105,101,115,2,1,145,244,140,18,8,1,11,46,98,102,45,116,111,97,115,116,101,114,2,1,38,195,77,225,8,1,9,46,98,103,45,97,108,101,114,116,2,1,178,154,178,172,8,1,23,46,98,103,45,97,114,110,111,116,116,115,45,99,111,110,115,101,110,116,45,114,101,100,2,1,150,170,247,1,8,1,20,46,98,103,45,98,97,99,107,103,114,111,117,110,100,83,116,114,111,110,103,2,1,10,123,254,105,8,1,9,46,98,103,45,98,108,97,99,107,2,2,211,233,26,38,223,107,159,7,8,1,25,46,98,103,45,98,108,97,99,107,45,100,101,101,112,46,114,111,117,110,100,101,100,45,109,100,2,1,59,27,43,13,8,1,11,46,98,103,45,98,108,117,101,45,114,49,2,1,251,185,11,145,8,1,41,46,98,103,45,99,111,108,111,114,45,98,97,99,107,103,114,111,117,110,100,45,99,111,110,116,97,105,110,101,114,45,116,105,110,116,46,116,111,112,45,50,2,1,153,46,38,42,8,1,12,46,98,103,45,100,97,114,107,71,114,97,121,2,1,223,2,214,56,8,1,15,46,98,103,45,100,97,114,107,101,114,45,103,114,97,121,2,2,123,247,212,159,237,11,21,194,8,1,9,46,98,103,45,103,114,101,101,110,2,1,19,113,190,195,8,1,13,46,98,103,45,103,114,101,101,110,45,50,48,48,2,1,21,81,80,173,8,1,9,46,98,103,45,109,111,100,97,108,2,1,86,165,157,33,8,1,14,46,98,103,45,111,112,97,99,105,116,121,45,55,53,2,1,159,5,29,112,8,1,14,46,98,103,45,112,105,110,107,45,98,114,97,110,100,2,1,150,29,146,126,8,1,21,46,98,103,45,116,114,97,110,115,45,102,117,108,108,45,99,111,111,107,105,101,2,1,137,13,85,249,8,1,22,46,98,103,45,119,104,105,116,101,46,119,45,102,117,108,108,46,102,105,120,101,100,2,1,20,239,102,87,8,1,20,46,98,104,45,109,111,100,97,108,73,110,102,111,67,111,111,107,105,101,115,2,1,86,165,157,33,8,1,13,46,98,105,99,97,45,99,111,110,116,101,110,116,2,1,34,159,105,98,8,1,24,46,98,105,103,109,97,107,101,114,45,99,103,45,99,111,111,107,105,101,115,45,98,111,120,2,1,118,93,67,124,8,1,36,46,98,105,108,108,98,111,97,114,100,95,95,66,105,108,108,98,111,97,114,100,83,116,121,108,101,100,45,112,120,115,100,49,98,45,48,2,1,162,106,176,202,8,1,6,46,98,107,51,111,113,2,1,85,249,236,213,8,1,15,46,98,108,107,45,68,105,115,99,108,97,105,109,101,114,2,1,240,111,146,240,8,1,30,46,98,108,111,99,107,45,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,98,108,111,99,107,2,1,6,159,235,91,8,1,16,46,98,108,111,99,107,45,102,115,45,99,111,111,107,105,101,2,1,234,191,172,131,8,1,26,46,98,108,111,99,107,45,110,111,116,105,102,105,99,97,116,105,111,110,115,45,98,108,111,99,107,2,1,128,98,125,6,8,1,18,46,98,108,111,99,107,95,97,118,103,95,112,114,105,118,97,99,121,2,1,164,136,230,249,8,1,16,46,98,108,111,99,107,105,110,103,79,118,101,114,108,97,121,2,2,104,250,61,158,127,134,60,119,8,1,17,46,98,108,111,99,107,114,111,108,108,105,110,103,116,101,120,116,2,1,254,16,68,87,8,1,26,46,98,108,116,101,45,97,108,101,114,116,98,97,110,110,101,114,95,95,119,114,97,112,112,101,114,2,1,215,214,147,128,8,1,8,46,98,108,117,114,45,98,103,2,1,101,244,14,127,8,1,18,46,98,108,117,114,114,121,45,98,97,99,107,103,114,111,117,110,100,2,1,146,116,234,242,8,1,7,46,98,109,87,86,80,98,2,1,137,242,202,87,8,1,10,46,98,109,95,100,105,97,108,111,103,2,1,200,199,157,254,8,1,12,46,98,109,95,100,105,97,108,111,103,66,103,2,1,200,199,157,254,8,1,7,46,98,110,106,82,109,86,2,1,148,185,228,172,8,1,18,46,98,110,112,95,99,111,111,107,105,101,95,98,97,110,110,101,114,2,1,148,80,69,176,8,1,37,46,98,111,114,100,101,114,45,100,97,114,107,45,49,48,46,98,111,114,100,101,114,46,114,111,117,110,100,101,100,46,115,104,97,100,111,119,2,1,89,219,121,201,8,1,46,46,98,111,114,100,101,114,45,112,114,105,109,97,114,121,45,108,105,103,104,116,80,49,46,98,111,114,100,101,114,45,116,46,102,108,101,120,45,99,111,108,46,102,108,101,120,2,1,156,171,194,163,8,1,13,46,98,111,116,45,48,46,108,101,102,116,45,48,2,1,33,165,45,189,8,1,14,46,98,111,116,45,97,108,101,114,116,45,98,111,120,2,1,32,119,192,107,8,1,17,46,98,111,116,116,111,109,45,48,46,111,118,101,114,108,97,121,2,1,190,147,222,182,8,1,39,46,98,111,116,116,111,109,45,48,46,112,104,51,45,104,100,107,112,46,110,97,118,45,99,108,105,99,107,97,98,108,101,45,112,97,100,100,101,100,2,1,69,163,160,211,8,1,13,46,98,111,116,116,111,109,45,97,108,101,114,116,2,2,107,209,6,120,145,42,139,40,8,1,14,46,98,111,116,116,111,109,45,98,97,110,110,101,114,2,1,200,43,92,42,8,1,23,46,98,111,116,116,111,109,45,102,105,120,101,100,45,99,111,110,116,97,105,110,101,114,2,1,128,104,25,20,8,1,19,46,98,111,116,116,111,109,45,102,114,101,101,122,101,100,45,98,97,114,2,1,12,69,176,86,8,1,14,46,98,111,116,116,111,109,45,110,97,118,98,97,114,2,1,202,173,165,148,8,1,14,46,98,111,116,116,111,109,45,110,111,116,105,99,101,2,1,9,229,189,2,8,1,13,46,98,111,116,116,111,109,45,114,105,103,104,116,2,1,178,154,196,70,8,1,16,46,98,111,116,116,111,109,45,115,109,46,102,105,120,101,100,2,1,196,11,236,218,8,1,12,46,98,111,116,116,111,109,45,122,111,110,101,2,1,79,42,36,239,8,1,18,46,98,111,116,116,111,109,76,101,102,116,95,95,79,48,72,77,116,2,1,91,192,81,252,8,1,15,46,98,111,116,116,111,109,77,101,115,115,97,103,101,115,2,1,215,47,61,243,8,1,19,46,98,111,116,116,111,109,82,105,103,104,116,95,95,87,69,74,79,89,2,1,194,235,2,219,8,1,22,46,98,111,116,116,111,109,84,105,112,66,97,114,67,111,110,116,97,105,110,101,114,2,1,148,203,8,180,8,1,14,46,98,111,116,116,111,109,95,80,111,108,105,99,121,2,1,139,135,145,77,8,1,14,46,98,111,116,116,111,109,95,95,79,118,112,89,65,2,2,34,105,114,232,150,239,156,211,8,1,15,46,98,111,116,116,111,109,95,109,101,115,115,97,103,101,2,1,152,197,90,108,8,1,12,46,98,111,116,116,111,109,95,116,101,120,116,2,1,127,135,60,236,8,1,14,46,98,111,116,116,111,109,99,111,110,116,101,110,116,2,1,96,22,198,191,8,1,12,46,98,111,116,116,111,109,102,108,111,97,116,2,1,168,198,105,10,8,1,12,46,98,111,116,116,111,109,109,111,100,97,108,2,1,65,69,226,28,8,1,12,46,98,111,116,116,111,109,112,111,112,117,112,2,7,42,24,208,210,95,61,51,56,101,232,206,242,157,217,38,193,188,97,205,108,214,186,164,161,222,165,254,202,8,1,13,46,98,111,117,110,99,101,73,110,76,101,102,116,2,1,93,153,179,137,8,1,18,46,98,111,120,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,117,223,18,114,8,1,98,46,98,111,120,91,115,116,121,108,101,61,34,119,105,100,116,104,58,32,50,52,51,112,120,59,32,104,101,105,103,104,116,58,32,51,48,112,120,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,40,51,57,44,32,51,57,44,32,51,57,41,59,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,48,48,112,120,59,34,93,2,1,101,231,79,129,8,1,15,46,98,111,120,95,98,97,99,107,103,114,111,117,110,100,2,1,3,186,16,189,8,1,13,46,98,111,120,95,99,111,110,116,101,110,116,115,2,1,3,186,16,189,8,1,17,46,98,111,120,95,114,105,103,104,116,95,98,111,116,116,111,109,2,1,150,174,66,7,8,1,3,46,98,112,2,1,150,127,209,180,8,1,6,46,98,112,69,86,106,2,1,128,166,99,114,8,1,19,46,98,114,101,97,107,105,110,103,45,99,111,110,116,97,105,110,101,114,2,1,118,56,244,84,8,1,21,46,98,114,111,119,115,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,185,193,253,158,8,1,7,46,98,116,110,99,110,50,2,1,206,9,220,104,8,1,6,46,98,117,103,109,101,2,1,149,33,41,14,8,1,7,46,98,120,85,71,88,83,2,2,36,202,164,161,167,242,142,47,8,1,7,46,98,122,71,73,72,118,2,1,239,178,208,18,8,1,16,46,99,45,67,111,111,107,105,101,67,111,110,115,101,110,116,2,2,75,165,194,48,101,60,176,126,8,1,8,46,99,45,97,103,114,101,101,2,1,82,94,0,187,8,1,8,46,99,45,97,108,101,114,116,2,2,54,202,101,98,235,27,98,52,8,1,11,46,99,45,98,97,99,107,100,114,111,112,2,1,222,243,221,249,8,1,16,46,99,45,98,97,110,110,101,114,45,115,104,97,100,111,119,2,1,81,224,34,150,8,1,4,46,99,45,99,2,1,89,149,86,159,8,1,10,46,99,45,99,97,108,108,111,117,116,2,2,10,253,254,144,126,62,227,124,8,1,18,46,99,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,2,1,108,66,119,95,8,1,28,46,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,99,107,103,114,111,117,110,100,2,1,159,128,249,251,8,1,10,46,99,45,99,111,111,107,105,101,115,2,1,123,194,253,206,8,1,16,46,99,45,100,105,97,108,111,103,45,99,111,111,107,105,101,2,1,212,97,79,167,8,1,9,46,99,45,103,106,72,118,90,65,2,1,164,231,54,15,8,1,9,46,99,45,104,85,75,82,89,81,2,1,130,64,50,161,8,1,23,46,99,45,105,110,102,111,45,112,97,110,101,95,95,99,111,110,116,97,105,110,101,114,2,1,205,94,87,191,8,1,15,46,99,45,109,111,100,97,108,45,99,111,111,107,105,101,2,1,227,218,132,131,8,1,19,46,99,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,2,1,148,180,40,163,8,1,24,46,99,45,110,111,116,105,102,105,99,97,116,105,111,110,115,45,119,114,97,112,112,101,114,2,1,91,56,193,84,8,1,6,46,99,45,111,45,45,2,2,137,205,7,153,184,90,235,52,8,1,28,46,99,45,114,105,109,112,111,112,105,110,45,119,114,97,112,112,101,114,45,45,112,114,105,118,97,99,121,2,1,99,78,37,55,8,1,14,46,99,45,115,105,116,101,45,97,108,101,114,116,115,2,1,111,146,187,146,8,1,18,46,99,45,115,105,116,101,84,101,114,109,115,66,97,110,110,101,114,2,2,128,104,78,33,148,196,140,120,8,1,13,46,99,45,116,111,112,45,98,97,110,110,101,114,2,1,199,182,68,173,8,1,19,46,99,45,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,2,2,72,104,105,83,99,28,207,83,8,1,7,46,99,48,49,49,57,52,2,1,201,126,136,13,8,1,6,46,99,48,50,49,49,2,1,77,152,50,181,8,1,19,46,99,49,119,110,104,113,51,56,46,99,111,110,116,97,105,110,101,114,2,1,219,112,21,128,8,1,5,46,99,50,48,54,2,1,129,35,168,107,8,1,12,46,99,50,54,57,54,51,55,50,56,50,55,2,1,32,131,149,52,8,1,21,46,99,65,110,110,111,117,110,99,101,109,101,110,116,80,97,103,101,84,111,112,2,1,104,88,43,156,8,1,7,46,99,67,72,72,98,122,2,1,60,97,18,253,8,1,7,46,99,77,102,117,65,74,2,1,150,54,5,132,8,1,7,46,99,80,111,70,119,85,2,1,97,51,79,29,8,1,7,46,99,82,88,66,102,108,2,1,22,2,12,96,8,1,7,46,99,87,101,73,98,72,2,1,224,11,254,104,8,1,6,46,99,95,49,50,56,2,17,4,112,168,215,5,74,229,55,29,218,73,28,34,216,18,56,47,12,226,79,47,243,253,170,70,58,64,14,76,8,216,170,87,233,190,152,112,126,200,244,131,162,235,235,182,38,165,107,225,64,254,125,227,187,64,212,236,134,103,186,250,56,166,3,253,251,110,85,8,1,8,46,99,95,95,99,97,107,101,2,1,171,200,226,19,8,1,11,46,99,95,105,110,110,101,114,98,111,120,2,1,201,254,174,154,8,1,11,46,99,97,99,104,101,80,111,112,117,112,2,1,114,135,199,177,8,1,19,46,99,97,114,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,81,81,11,130,8,1,11,46,99,97,115,45,99,111,111,107,105,101,2,1,239,174,4,210,8,1,36,46,99,97,122,111,111,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,95,95,115,99,45,49,108,121,52,113,55,120,45,48,2,1,81,60,14,245,8,1,13,46,99,98,45,99,111,110,116,97,105,110,101,114,2,1,151,213,71,239,8,1,9,46,99,98,95,109,111,100,97,108,2,1,119,112,237,96,8,1,6,46,99,98,97,110,110,2,1,133,240,172,39,8,1,28,46,99,98,97,110,110,101,114,45,103,111,118,117,107,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,187,253,82,57,8,1,15,46,99,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,239,60,186,32,8,1,9,46,99,99,45,97,108,101,114,116,2,1,9,138,42,251,8,1,10,46,99,99,45,98,97,110,110,101,114,2,1,195,150,212,226,8,1,10,46,99,99,45,98,111,116,116,111,109,2,1,211,70,72,106,8,1,10,46,99,99,45,100,105,97,108,111,103,2,1,100,45,185,144,8,1,18,46,99,99,45,100,105,115,109,105,115,115,46,99,99,45,98,116,110,2,1,173,144,171,103,8,1,9,46,99,99,45,109,111,100,97,108,2,1,40,247,18,154,8,1,7,46,99,99,45,112,111,112,2,1,70,208,222,121,8,1,10,46,99,99,45,115,105,109,112,108,101,2,1,156,95,161,239,8,1,9,46,99,99,95,109,111,100,97,108,2,1,39,145,134,228,8,1,11,46,99,99,99,45,119,105,100,103,101,116,2,1,17,85,142,108,8,1,15,46,99,99,100,95,99,111,111,107,105,101,95,98,97,114,2,1,228,198,90,233,8,1,18,46,99,99,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,239,118,132,158,8,1,12,46,99,99,110,45,99,111,110,115,101,110,116,2,1,38,157,26,110,8,1,8,46,99,99,112,45,112,111,112,2,1,101,113,103,230,8,1,5,46,99,99,112,97,2,3,16,220,116,41,30,159,244,237,35,253,161,58,8,1,10,46,99,99,112,97,45,99,111,110,116,2,1,202,129,13,15,8,1,13,46,99,100,45,99,111,110,116,97,105,110,101,114,2,1,169,215,160,60,8,1,14,46,99,100,99,45,99,111,110,116,97,105,110,101,114,2,1,219,83,245,12,8,1,44,46,99,100,107,45,111,118,101,114,108,97,121,45,112,97,110,101,32,62,32,46,109,97,116,45,115,110,97,99,107,45,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,231,40,71,14,8,1,7,46,99,100,117,97,112,78,2,1,92,38,98,117,8,1,10,46,99,101,45,98,97,110,110,101,114,2,3,69,254,84,209,193,50,197,154,222,98,102,9,8,1,22,46,99,102,45,98,97,99,107,103,114,111,117,110,100,45,111,118,101,114,108,97,121,2,1,184,103,136,150,8,1,14,46,99,102,46,104,101,97,100,101,114,45,98,97,114,2,1,8,36,184,92,8,1,14,46,99,103,117,45,99,111,110,116,97,105,110,101,114,2,1,6,208,134,146,8,1,6,46,99,104,95,106,90,2,1,154,225,170,25,8,1,16,46,99,104,97,107,114,97,45,99,111,108,108,97,112,115,101,2,2,70,80,89,93,131,205,128,10,8,1,12,46,99,104,97,107,114,97,45,102,97,100,101,2,1,236,48,208,69,8,1,32,46,99,104,97,107,114,97,45,109,111,100,97,108,95,95,99,111,110,116,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,117,16,84,134,8,1,22,46,99,104,97,107,114,97,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,2,1,117,16,84,134,8,1,12,46,99,104,114,111,109,101,95,112,105,99,107,2,1,81,61,141,32,8,1,8,46,99,105,97,115,116,107,111,2,1,230,170,231,40,8,1,7,46,99,106,66,119,75,118,2,1,171,143,93,202,8,1,13,46,99,107,45,99,111,110,116,97,105,110,101,114,2,1,198,183,249,217,8,1,7,46,99,107,87,114,97,112,2,1,148,140,163,251,8,1,12,46,99,107,101,45,111,118,101,114,108,97,121,2,1,158,123,51,99,8,1,10,46,99,107,101,50,48,50,50,102,114,2,1,231,67,88,37,8,1,13,46,99,107,105,110,102,111,45,112,97,110,101,108,2,1,86,127,60,221,8,1,21,46,99,108,105,110,101,118,97,45,99,111,111,107,105,101,115,45,105,110,102,111,2,1,89,53,106,70,8,1,18,46,99,108,115,80,111,112,117,112,67,111,110,116,97,105,110,101,114,2,1,235,158,22,145,8,1,3,46,99,109,2,1,38,157,53,243,8,1,26,46,99,109,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,2,1,98,57,44,233,8,1,11,46,99,109,45,111,118,101,114,108,97,121,2,1,148,182,19,52,8,1,7,46,99,109,45,122,45,52,2,1,199,198,33,11,8,1,24,46,99,109,111,110,45,112,114,105,118,97,99,121,45,100,105,115,99,108,97,105,109,101,114,2,1,163,128,132,114,8,1,23,46,99,109,112,45,101,120,112,101,114,105,101,110,99,101,102,114,97,103,109,101,110,116,2,1,178,145,153,75,8,1,30,46,99,109,112,45,110,111,116,105,102,105,99,97,116,105,111,110,45,97,99,116,105,111,110,45,112,97,110,101,108,2,1,38,157,76,169,8,1,14,46,99,109,112,45,110,116,102,98,97,110,110,101,114,2,1,109,44,172,125,8,1,7,46,99,109,112,98,111,120,2,1,176,203,19,156,8,1,14,46,99,110,99,45,99,111,110,116,97,105,110,101,114,2,1,166,248,164,254,8,1,15,46,99,110,110,45,116,111,97,115,116,45,45,116,111,115,2,1,38,157,25,55,8,1,22,46,99,110,115,45,99,103,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,2,1,36,165,241,204,8,1,7,46,99,110,116,50,50,51,2,1,83,169,103,41,8,1,18,46,99,111,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,165,245,24,62,8,1,18,46,99,111,100,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,211,119,229,58,8,1,26,46,99,111,101,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,112,111,112,117,112,2,1,19,229,229,79,8,1,35,46,99,111,104,45,99,101,45,99,112,116,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,45,100,48,48,52,49,50,52,101,2,1,216,92,58,137,8,1,7,46,99,111,107,105,101,115,2,1,33,157,190,245,8,1,14,46,99,111,107,107,105,101,45,98,97,110,110,101,114,2,1,42,75,153,161,8,1,12,46,99,111,109,109,97,110,100,45,98,97,114,2,1,234,184,137,165,8,1,23,46,99,111,109,109,101,110,116,45,112,111,108,105,99,121,45,114,101,102,114,101,115,104,2,1,170,50,143,41,8,1,25,46,99,111,109,109,111,110,95,112,114,111,109,112,116,45,112,114,105,118,97,99,121,45,98,103,2,1,148,180,113,210,8,1,26,46,99,111,109,112,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,112,111,112,117,112,2,1,90,150,246,247,8,1,33,46,99,111,109,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,95,99,111,111,107,105,101,95,95,83,110,115,110,90,2,1,80,156,41,39,8,1,11,46,99,111,109,112,97,114,101,45,98,103,2,1,50,70,243,220,8,1,19,46,99,111,109,112,97,114,101,80,114,111,77,105,110,105,86,105,101,119,2,1,50,70,243,220,8,1,11,46,99,111,109,112,108,105,97,110,99,101,2,6,20,205,207,54,63,79,228,15,88,187,234,35,103,86,26,51,169,227,191,199,187,240,144,151,8,1,18,46,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,2,2,109,180,56,227,190,78,182,14,8,1,18,46,99,111,109,112,108,105,97,110,99,101,46,98,97,110,110,101,114,2,1,164,170,111,69,8,1,24,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,201,216,27,211,8,1,25,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,91,126,128,42,8,1,23,46,99,111,109,112,111,110,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,134,189,46,227,8,1,24,46,99,111,109,112,111,110,101,110,116,45,115,116,105,99,107,121,45,100,105,97,108,111,103,2,1,148,100,69,0,8,1,21,46,99,111,110,100,117,99,116,111,114,45,99,115,45,99,111,110,116,101,110,116,2,1,61,179,197,41,8,1,8,46,99,111,110,102,105,114,109,2,2,95,233,222,71,181,149,141,182,8,1,14,46,99,111,110,115,101,110,116,45,98,108,111,99,107,2,1,195,175,124,130,8,1,13,46,99,111,110,115,101,110,116,45,99,116,110,114,2,1,148,201,222,204,8,1,12,46,99,111,110,115,101,110,116,45,100,105,118,2,2,47,55,65,177,126,105,181,221,8,1,16,46,99,111,110,115,101,110,116,45,109,101,115,115,97,103,101,2,1,129,231,18,148,8,1,14,46,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,112,53,103,236,8,1,21,46,99,111,110,115,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,187,125,80,201,8,1,15,46,99,111,110,115,101,110,116,45,112,111,112,45,117,112,2,1,4,132,113,43,8,1,15,46,99,111,110,115,101,110,116,45,115,119,105,116,99,104,2,1,21,123,57,57,8,1,12,46,99,111,110,115,101,110,116,67,97,114,100,2,1,92,36,233,7,8,1,15,46,99,111,110,115,101,110,116,95,95,112,111,112,117,112,2,1,79,11,85,196,8,1,18,46,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,2,1,185,91,96,40,8,1,25,46,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,95,95,89,85,69,109,49,2,1,45,81,123,134,8,1,16,46,99,111,110,115,101,110,116,95,119,114,97,112,112,101,114,2,1,148,185,40,188,8,1,21,46,99,111,110,115,101,110,116,109,97,105,110,99,111,110,116,97,105,110,101,114,2,1,133,163,33,179,8,1,13,46,99,111,110,116,45,45,99,111,111,107,105,101,2,1,251,209,97,72,8,1,10,46,99,111,110,116,97,105,110,101,114,2,1,120,182,162,75,8,1,33,46,99,111,110,116,97,105,110,101,114,45,102,108,111,97,116,105,110,103,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,252,108,116,125,8,1,24,46,99,111,110,116,97,105,110,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,2,19,54,227,153,254,181,210,227,8,1,18,46,99,111,110,116,97,105,110,101,114,45,111,118,101,114,108,97,121,2,1,156,187,88,133,8,1,20,46,99,111,110,116,97,105,110,101,114,46,112,98,45,52,46,112,116,45,52,2,1,206,118,214,127,8,1,22,46,99,111,110,116,97,105,110,101,114,68,101,102,97,117,108,116,67,108,97,115,115,2,1,80,63,181,35,8,1,16,46,99,111,110,116,97,105,110,101,114,95,104,80,54,105,72,2,1,110,93,169,117,8,1,30,46,99,111,110,116,97,105,110,101,114,118,50,45,45,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,2,1,135,116,233,124,8,1,16,46,99,111,111,99,107,105,101,95,119,97,114,110,105,110,103,2,2,54,97,97,235,123,160,180,63,8,1,21,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,97,114,45,118,50,2,1,131,201,92,218,8,1,20,46,99,111,111,107,105,101,45,97,108,101,114,116,45,98,97,110,110,101,114,2,1,144,189,176,21,8,1,17,46,99,111,111,107,105,101,45,97,117,116,104,111,114,105,116,121,2,1,212,95,147,174,8,1,19,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,2,1,125,137,148,87,8,1,22,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,100,105,109,109,101,114,2,1,211,200,198,61,8,1,24,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,99,111,109,112,111,110,101,110,116,2,1,120,147,47,192,8,1,26,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,114,111,111,116,95,95,118,101,74,98,86,2,1,147,244,3,14,8,1,13,46,99,111,111,107,105,101,45,98,97,114,45,109,2,1,148,121,70,229,8,1,28,46,99,111,111,107,105,101,45,98,97,114,95,99,111,111,107,105,101,66,97,114,95,95,72,50,53,104,52,2,1,29,167,252,177,8,1,26,46,99,111,111,107,105,101,45,98,97,114,95,111,118,101,114,108,97,121,95,95,48,121,52,57,88,2,1,207,4,136,143,8,1,17,46,99,111,111,107,105,101,45,98,111,120,45,112,111,112,117,112,2,1,149,81,204,215,8,1,12,46,99,111,111,107,105,101,45,99,97,114,100,2,1,33,113,240,187,8,1,22,46,99,111,111,107,105,101,45,99,97,114,100,95,99,111,110,116,97,105,110,101,114,2,1,161,198,16,214,8,1,11,46,99,111,111,107,105,101,45,99,111,110,2,1,11,171,245,189,8,1,23,46,99,111,111,107,105,101,45,99,111,110,99,101,114,110,45,119,114,97,112,112,101,114,2,1,154,189,82,87,8,1,33,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,45,99,111,110,116,97,105,110,101,114,2,1,100,187,227,180,8,1,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,105,110,110,101,114,2,1,195,184,180,235,8,1,17,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,2,155,37,126,0,180,232,122,218,8,1,18,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,2,3,133,172,255,18,151,210,129,205,158,211,197,165,8,1,11,46,99,111,111,107,105,101,45,101,120,112,2,1,254,234,127,202,8,1,24,46,99,111,111,107,105,101,45,102,105,110,111,109,95,95,99,111,110,116,97,105,110,101,114,2,1,109,119,134,94,8,1,13,46,99,111,111,107,105,101,45,102,111,99,117,115,2,1,144,150,132,208,8,1,12,46,99,111,111,107,105,101,45,109,97,105,110,2,1,158,245,53,0,8,1,24,46,99,111,111,107,105,101,45,109,97,110,97,103,101,109,101,110,116,45,105,110,116,114,111,2,1,100,92,42,189,8,1,15,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,2,2,114,96,156,228,219,219,252,186,8,1,30,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,109,97,105,110,45,99,111,110,116,97,105,110,101,114,2,1,248,55,215,249,8,1,20,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,112,97,103,101,2,1,7,47,246,92,8,1,13,46,99,111,111,107,105,101,45,110,111,110,101,117,2,1,56,121,187,16,8,1,20,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,111,117,116,101,114,2,1,55,2,43,143,8,1,17,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,118,50,2,1,18,147,7,67,8,1,22,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,118,105,115,105,98,108,101,2,1,91,188,201,127,8,1,48,46,99,111,111,107,105,101,45,110,111,116,105,99,101,95,95,67,111,111,107,105,101,78,111,116,105,99,101,87,114,97,112,112,101,114,45,115,99,45,49,56,54,112,55,53,53,45,48,2,1,166,85,132,10,8,1,31,46,99,111,111,107,105,101,45,110,111,116,105,99,101,95,99,111,110,116,97,105,110,101,114,95,95,100,74,85,65,65,2,1,113,161,180,231,8,1,28,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,109,105,110,105,109,97,108,2,1,138,42,64,30,8,1,45,46,99,111,111,107,105,101,45,111,118,101,114,108,97,121,95,99,111,111,107,105,101,79,118,101,114,108,97,121,67,111,110,116,97,105,110,101,114,95,95,86,55,71,108,122,2,1,218,96,122,18,8,1,20,46,99,111,111,107,105,101,45,112,97,103,101,45,111,118,101,114,108,97,121,2,1,56,5,147,186,8,1,21,46,99,111,111,107,105,101,45,112,97,110,101,108,45,119,114,97,112,112,101,114,2,1,38,157,130,111,8,1,26,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,111,118,101,114,108,97,121,2,1,9,245,117,74,8,1,20,46,99,111,111,107,105,101,45,112,111,112,117,112,45,100,105,97,108,111,103,2,1,214,162,90,219,8,1,23,46,99,111,111,107,105,101,45,112,111,112,117,112,95,99,111,109,112,111,110,101,110,116,2,1,218,7,97,183,8,1,29,46,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,45,99,111,110,116,97,105,110,101,114,2,1,35,168,161,23,8,1,21,46,99,111,111,107,105,101,45,112,114,101,102,115,45,119,114,97,112,112,101,114,2,1,185,160,87,43,8,1,13,46,99,111,111,107,105,101,45,112,114,111,109,116,2,1,210,85,73,96,8,1,22,46,99,111,111,107,105,101,45,114,101,109,105,110,100,45,119,97,114,112,112,101,114,2,1,56,241,108,233,8,1,16,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,2,1,118,205,251,242,8,1,20,46,99,111,111,107,105,101,45,117,115,97,103,101,45,98,97,110,110,101,114,2,1,31,113,166,233,8,1,12,46,99,111,111,107,105,101,45,119,97,108,108,2,1,83,98,9,102,8,1,16,46,99,111,111,107,105,101,65,99,101,112,116,97,110,99,101,2,1,157,65,66,253,8,1,10,46,99,111,111,107,105,101,66,97,114,2,1,142,18,144,237,8,1,18,46,99,111,111,107,105,101,66,111,120,95,95,95,50,79,65,83,115,2,2,42,128,156,229,171,0,148,138,8,1,14,46,99,111,111,107,105,101,67,111,110,102,105,114,109,2,10,4,44,57,113,5,24,44,216,7,32,34,200,38,156,251,215,129,67,25,172,151,127,231,147,157,84,1,230,188,70,212,223,192,14,132,25,245,72,147,240,8,1,21,46,99,111,111,107,105,101,67,111,110,102,105,114,109,80,97,100,100,105,110,103,2,1,155,51,169,136,8,1,23,46,99,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,2,1,12,247,49,105,8,1,27,46,99,111,111,107,105,101,80,111,112,117,112,95,101,110,116,101,114,101,100,95,95,50,114,115,54,55,2,1,134,76,0,210,8,1,20,46,99,111,111,107,105,101,83,99,114,101,101,110,79,118,101,114,108,97,121,2,1,147,133,11,35,8,1,40,46,99,111,111,107,105,101,83,101,116,116,105,110,103,115,95,95,99,111,110,116,101,110,116,67,111,110,116,97,105,110,101,114,95,95,105,90,88,77,71,2,1,157,228,31,101,8,1,11,46,99,111,111,107,105,101,83,104,105,116,2,1,84,57,236,133,8,1,15,46,99,111,111,107,105,101,84,101,120,116,65,114,101,97,2,1,69,222,101,187,8,1,11,46,99,111,111,107,105,101,84,105,112,115,2,1,65,255,231,116,8,1,20,46,99,111,111,107,105,101,87,97,108,108,67,111,110,116,97,105,110,101,114,2,1,45,224,69,174,8,1,13,46,99,111,111,107,105,101,95,76,82,98,53,65,2,1,119,46,23,242,8,1,32,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,95,95,120,102,56,84,52,2,1,20,75,67,253,8,1,17,46,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,2,1,208,247,174,62,8,1,24,46,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,95,95,119,54,81,104,49,2,1,218,51,64,126,8,1,25,46,99,111,111,107,105,101,95,100,105,115,109,105,115,115,95,99,111,110,116,97,105,110,101,114,2,1,247,76,131,69,8,1,21,46,99,111,111,107,105,101,95,115,101,116,116,105,110,103,95,112,111,112,117,112,2,1,43,89,85,5,8,1,16,46,99,111,111,107,105,101,97,103,114,101,101,109,101,110,116,2,1,253,191,159,244,8,1,13,46,99,111,111,107,105,101,98,97,110,110,101,114,2,3,36,199,75,216,105,172,234,169,177,235,56,207,8,1,18,46,99,111,111,107,105,101,98,97,114,45,111,118,101,114,108,97,121,2,1,52,244,116,102,8,1,10,46,99,111,111,107,105,101,98,116,110,2,1,51,75,68,19,8,1,11,46,99,111,111,107,105,101,105,110,102,111,2,1,196,171,188,33,8,1,28,46,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,106,100,45,173,8,1,12,46,99,111,111,107,105,101,115,45,97,115,107,2,1,120,3,107,163,8,1,15,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,20,29,81,13,8,1,13,46,99,111,111,107,105,101,115,45,98,111,100,121,2,1,188,229,198,13,8,1,36,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,101,100,105,116,45,108,105,110,107,45,99,111,110,116,97,105,110,101,114,2,1,143,135,34,250,8,1,21,46,99,111,111,107,105,101,115,45,104,111,109,101,95,111,118,101,114,108,97,121,2,1,160,163,253,225,8,1,37,46,99,111,111,107,105,101,115,45,109,111,100,97,108,45,109,111,100,117,108,101,45,45,119,114,97,112,112,101,114,45,45,49,55,87,74,82,2,1,11,63,97,115,8,1,44,46,99,111,111,107,105,101,115,45,110,111,116,105,99,101,95,95,83,116,121,108,101,100,67,111,111,107,105,101,78,111,116,105,99,101,45,117,98,51,105,102,122,45,48,2,1,120,94,95,254,8,1,15,46,99,111,111,107,105,101,115,45,111,118,101,114,108,121,2,1,77,122,187,42,8,1,22,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,104,111,108,100,101,114,2,1,35,17,106,49,8,1,25,46,99,111,111,107,105,101,115,45,112,111,108,105,116,105,99,95,95,115,101,99,116,105,111,110,2,1,211,10,33,118,8,1,14,46,99,111,111,107,105,101,115,45,112,111,112,117,112,2,1,14,103,228,137,8,1,19,46,99,111,111,107,105,101,115,45,114,101,103,117,108,97,116,105,111,110,2,1,178,52,164,123,8,1,13,46,99,111,111,107,105,101,115,45,115,104,111,119,2,1,116,211,102,19,8,1,16,46,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,2,1,123,109,75,180,8,1,24,46,99,111,111,107,105,101,115,67,111,110,115,101,110,116,95,95,119,114,97,112,112,101,114,2,1,60,47,109,95,8,1,19,46,99,111,111,107,105,101,115,79,112,116,73,110,66,97,110,110,101,114,2,1,158,214,37,50,8,1,33,46,99,111,111,107,105,101,115,80,111,108,105,99,121,95,99,111,111,107,105,101,95,119,97,114,112,95,95,55,54,86,119,79,2,1,108,78,39,162,8,1,16,46,99,111,111,107,105,101,115,95,95,98,97,110,110,101,114,2,1,148,179,75,216,8,1,15,46,99,111,111,107,105,101,115,95,95,99,111,118,101,114,2,1,142,49,74,57,8,1,32,46,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,67,108,97,115,115,101,115,95,95,85,88,110,119,77,2,1,190,17,170,72,8,1,12,46,99,111,111,107,105,101,115,95,110,116,102,2,1,212,175,113,213,8,1,19,46,99,111,111,107,105,101,115,95,112,114,111,99,101,115,115,105,110,103,2,1,24,40,227,2,8,1,16,46,99,111,111,107,105,101,115,95,115,101,99,116,105,111,110,2,1,100,168,24,143,8,1,23,46,99,111,111,107,105,101,115,95,119,114,97,112,112,101,114,95,95,95,122,73,101,67,2,1,224,45,27,80,8,1,11,46,99,111,111,107,105,101,115,104,111,119,2,1,200,74,81,174,8,1,10,46,99,111,111,107,105,101,116,105,112,2,1,5,45,96,106,8,1,7,46,99,111,111,107,105,115,2,1,196,51,112,53,8,1,23,46,99,111,111,112,115,115,110,45,99,45,99,111,111,107,105,101,110,111,116,105,99,101,2,1,133,160,72,78,8,1,4,46,99,111,112,2,3,122,128,122,89,125,26,41,211,130,245,247,139,8,1,9,46,99,111,112,95,100,109,99,97,2,1,128,253,135,95,8,1,19,46,99,111,112,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,187,234,240,118,8,1,6,46,99,111,112,114,111,2,1,75,147,19,148,8,1,17,46,99,111,112,121,114,105,103,104,116,45,98,97,110,110,101,114,2,1,199,138,124,1,8,1,13,46,99,111,114,112,45,98,97,110,110,101,114,115,2,1,121,93,220,18,8,1,24,46,99,111,114,112,111,114,97,116,101,45,110,111,116,105,99,101,45,98,97,110,110,101,114,2,1,81,224,34,150,8,1,14,46,99,111,117,110,116,114,121,45,112,111,112,117,112,2,1,38,157,103,149,8,1,22,46,99,111,117,114,105,101,114,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,2,0,251,73,234,99,20,188,198,8,1,10,46,99,111,118,101,114,83,104,111,119,2,1,137,169,156,141,8,1,17,46,99,112,45,97,108,101,114,116,45,109,101,115,115,97,103,101,2,1,154,95,43,217,8,1,19,46,99,112,45,99,111,111,107,105,101,45,116,105,112,45,101,117,114,111,2,1,148,180,153,152,8,1,22,46,99,112,45,105,110,102,111,45,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,218,100,46,12,8,1,19,46,99,112,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,143,105,209,240,8,1,10,46,99,112,95,100,105,97,108,111,103,2,1,38,157,157,7,8,1,10,46,99,112,99,45,102,108,111,97,116,2,1,130,31,86,73,8,1,14,46,99,114,117,109,98,115,45,98,97,110,110,101,114,2,1,58,128,207,154,8,1,3,46,99,115,2,1,63,87,186,121,8,1,10,46,99,115,95,98,97,110,110,101,114,2,1,192,160,196,151,8,1,12,46,99,115,115,45,49,49,108,57,102,101,122,2,1,243,128,116,31,8,1,12,46,99,115,115,45,49,51,120,119,106,109,111,2,1,221,183,135,77,8,1,12,46,99,115,115,45,49,52,103,50,101,110,56,2,1,208,128,224,164,8,1,12,46,99,115,115,45,49,54,113,118,112,50,55,2,1,220,222,147,178,8,1,12,46,99,115,115,45,49,103,120,55,111,50,106,2,1,108,51,89,112,8,1,21,46,99,115,115,45,49,107,122,115,118,99,104,46,101,53,117,107,113,49,49,48,2,1,160,163,255,121,8,1,12,46,99,115,115,45,49,108,104,102,54,51,103,2,1,147,182,101,124,8,1,12,46,99,115,115,45,49,108,120,122,110,109,112,2,1,40,233,188,172,8,1,12,46,99,115,115,45,49,109,55,118,101,53,115,2,1,190,253,15,117,8,1,12,46,99,115,115,45,49,112,49,54,53,50,105,2,1,90,91,207,37,8,1,12,46,99,115,115,45,49,116,103,49,116,108,100,2,1,133,151,49,197,8,1,12,46,99,115,115,45,49,117,115,110,108,121,102,2,1,148,184,120,215,8,1,12,46,99,115,115,45,49,119,48,121,50,101,115,2,1,214,54,204,16,8,1,12,46,99,115,115,45,49,119,56,56,49,101,109,2,1,207,248,235,211,8,1,11,46,99,115,115,45,52,54,98,115,115,53,2,1,37,144,203,247,8,1,11,46,99,115,115,45,52,120,121,116,48,117,2,1,243,128,116,31,8,1,30,46,99,115,115,45,98,117,56,119,104,120,45,68,105,118,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,2,1,66,46,160,42,8,1,11,46,99,115,115,45,100,106,105,55,114,119,2,1,88,148,43,173,8,1,11,46,99,115,115,45,104,53,50,114,99,56,2,3,75,153,88,69,144,234,151,210,182,35,210,222,8,1,33,46,99,115,115,45,109,117,120,122,110,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,80,97,110,101,108,2,1,19,122,206,118,8,1,11,46,99,115,115,45,118,108,111,117,108,102,2,1,125,116,28,30,8,1,11,46,99,115,115,45,119,122,118,105,113,110,2,1,36,202,186,252,8,1,12,46,99,115,115,95,95,111,105,97,115,115,102,2,1,197,78,251,180,8,1,20,46,99,117,95,107,95,109,111,100,97,108,95,109,97,105,110,95,98,111,120,2,1,242,175,86,111,8,1,7,46,99,117,112,106,109,97,2,1,30,132,59,185,8,1,8,46,99,117,114,116,97,105,110,2,1,217,61,253,222,8,1,24,46,99,117,115,116,111,109,99,111,111,107,105,101,45,45,98,97,110,101,114,109,97,105,110,2,1,185,72,104,190,8,1,26,46,99,117,115,116,111,109,101,114,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,28,79,149,44,8,1,12,46,99,118,50,45,119,114,97,112,112,101,114,2,1,122,136,136,135,8,1,25,46,99,119,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,98,97,110,110,101,114,2,1,43,159,231,184,8,1,7,46,99,119,74,87,109,101,2,1,171,143,93,202,8,1,16,46,99,121,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,99,41,44,185,8,1,7,46,99,122,97,98,114,98,2,1,76,125,65,108,8,1,25,46,99,122,116,45,99,111,111,107,105,101,45,98,97,114,95,95,98,97,99,107,100,114,111,112,2,1,242,155,140,80,8,1,8,46,99,122,117,102,112,121,106,2,1,62,151,250,221,8,1,8,46,100,45,98,108,111,99,107,2,1,40,247,18,154,8,1,12,46,100,45,99,99,45,45,109,111,100,97,108,2,1,121,82,58,243,8,1,21,46,100,45,99,99,45,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,121,82,58,243,8,1,17,46,100,65,80,110,101,77,46,115,99,45,102,70,71,106,72,73,2,1,150,216,229,208,8,1,7,46,100,69,73,109,74,89,2,1,122,171,70,9,8,1,7,46,100,76,67,108,119,76,2,1,128,97,184,44,8,1,7,46,100,80,121,76,107,90,2,1,63,14,35,193,8,1,7,46,100,83,68,72,112,121,2,1,127,50,233,83,8,1,7,46,100,83,69,114,79,72,2,1,250,8,73,166,8,1,7,46,100,83,109,71,78,70,2,1,201,214,207,247,8,1,7,46,100,88,68,88,100,66,2,1,90,1,247,82,8,1,11,46,100,97,114,107,83,99,114,101,101,110,2,1,142,239,69,208,8,1,7,46,100,97,114,107,101,110,2,1,232,29,241,219,8,1,18,46,100,97,116,97,45,99,111,110,115,101,110,116,45,101,100,103,101,2,1,244,29,197,226,8,1,17,46,100,97,116,97,67,111,110,115,101,110,116,77,111,100,97,108,2,1,55,51,109,152,8,1,16,46,100,98,45,67,111,111,107,105,101,66,97,110,110,101,114,2,1,90,134,252,23,8,1,7,46,100,100,89,72,81,86,2,1,21,143,134,25,8,1,39,46,100,100,115,119,101,98,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,99,111,110,116,97,105,110,101,114,2,1,126,8,240,210,8,1,23,46,100,101,118,115,105,116,101,45,102,111,111,116,101,114,45,117,116,105,108,105,116,121,2,1,46,100,15,64,8,1,23,46,100,101,118,115,105,116,101,45,115,110,97,99,107,98,97,114,45,105,110,110,101,114,2,1,236,221,92,170,8,1,8,46,100,104,108,45,99,103,107,2,1,38,156,254,76,8,1,7,46,100,105,97,108,111,103,2,1,198,56,132,24,8,1,30,46,100,105,97,108,111,103,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,114,111,109,112,116,2,1,157,190,95,1,8,1,20,46,100,105,97,108,111,103,45,97,112,112,95,95,98,108,111,99,107,101,114,2,1,255,8,198,135,8,1,15,46,100,105,97,108,111,103,45,109,97,110,97,103,101,114,2,1,137,146,68,74,8,1,15,46,100,105,97,108,111,103,45,109,101,115,115,97,103,101,2,2,108,37,253,167,123,12,242,229,8,1,22,46,100,105,97,108,111,103,45,119,105,100,103,101,116,45,99,111,110,116,101,110,116,2,3,45,75,211,146,127,139,222,26,220,66,179,223,8,1,11,46,100,105,97,108,111,103,66,111,100,121,2,1,254,248,122,71,8,1,16,46,100,105,97,108,111,103,67,111,110,116,97,105,110,101,114,2,1,170,132,98,79,8,1,7,46,100,105,101,72,86,78,2,1,2,102,199,252,8,1,27,46,100,105,103,45,83,110,97,99,107,98,97,114,91,114,111,108,101,61,34,97,108,101,114,116,34,93,2,1,85,56,195,114,8,1,12,46,100,105,115,95,109,101,115,115,97,103,101,2,2,91,57,96,115,128,52,251,120,8,1,16,46,100,105,115,99,108,97,105,109,101,114,45,110,111,116,101,2,1,158,185,254,221,8,1,18,46,100,105,115,99,108,97,105,109,101,114,45,110,111,116,105,99,101,2,1,199,171,156,181,8,1,19,46,100,105,115,99,108,97,105,109,101,114,45,111,118,101,114,108,97,121,2,1,194,70,152,214,8,1,16,46,100,105,115,99,108,97,105,109,101,114,45,116,101,120,116,2,1,52,174,75,193,8,1,19,46,100,105,115,99,108,97,105,109,101,114,95,95,95,122,50,68,76,74,2,1,148,181,113,59,8,1,15,46,100,105,115,99,108,97,105,109,101,114,95,119,101,98,2,1,62,128,134,247,8,1,22,46,100,105,115,99,108,97,105,109,101,114,115,45,99,111,110,116,97,105,110,101,114,2,1,217,212,52,133,8,1,16,46,100,105,115,99,108,111,115,117,114,101,45,99,97,114,100,2,1,239,253,139,202,8,1,22,46,100,105,115,99,108,111,115,117,114,101,45,102,105,120,101,100,45,115,108,97,98,2,1,129,34,132,108,8,1,21,46,100,105,115,99,108,111,115,117,114,101,45,109,111,100,97,108,45,100,105,118,2,1,140,101,100,156,8,1,15,46,100,105,115,99,114,101,101,116,45,97,108,101,114,116,2,1,80,204,66,91,8,1,19,46,100,105,115,109,105,115,115,105,98,108,101,45,98,97,110,110,101,114,2,1,129,189,191,56,8,1,14,46,100,105,118,45,98,108,111,99,107,45,50,49,55,2,1,159,107,40,104,8,1,11,46,100,105,118,95,115,116,105,99,107,121,2,1,19,196,82,125,8,1,31,46,100,109,98,45,110,111,116,105,102,105,99,97,116,105,111,110,115,45,97,106,97,120,45,119,114,97,112,112,101,114,2,1,196,155,3,102,8,1,24,46,100,111,109,101,115,116,105,99,45,104,101,97,100,101,114,45,119,114,97,112,112,101,114,2,1,38,157,104,207,8,1,14,46,100,111,110,97,116,101,45,98,97,110,110,101,114,2,1,160,164,24,11,8,1,26,46,100,111,116,118,118,109,45,99,111,110,116,114,105,98,45,99,111,111,107,105,101,45,98,97,114,2,1,63,150,172,222,8,1,11,46,100,111,119,110,102,111,111,116,101,114,2,1,119,59,106,232,8,1,7,46,100,113,103,111,89,110,2,1,35,160,174,152,8,1,15,46,100,114,97,119,101,114,45,119,114,97,112,112,101,114,2,1,86,42,90,62,8,1,5,46,100,114,111,112,2,1,251,230,230,138,8,1,26,46,100,115,103,118,111,119,112,112,108,117,103,105,110,45,103,108,111,98,97,108,111,112,116,105,110,2,1,3,240,104,95,8,1,11,46,100,117,109,109,121,45,116,101,120,116,2,1,93,35,57,86,8,1,28,46,100,119,99,45,45,83,105,97,67,111,111,107,105,101,95,95,80,111,112,117,112,67,111,111,107,105,101,2,1,62,157,6,152,8,1,38,46,100,121,95,102,117,108,108,95,119,105,100,116,104,95,110,111,116,105,102,105,99,97,116,105,111,110,115,95,99,111,110,116,97,105,110,101,114,2,1,127,197,65,33,8,1,10,46,101,49,51,113,53,57,48,110,49,2,1,62,81,103,83,8,1,10,46,101,49,106,111,54,48,99,101,48,2,1,122,128,95,220,8,1,10,46,101,49,110,98,115,105,57,108,48,2,1,38,157,104,207,8,1,10,46,101,49,116,98,120,111,106,107,48,2,1,121,197,173,1,8,1,9,46,101,49,118,101,54,51,114,50,2,1,125,140,87,147,8,1,10,46,101,49,119,98,100,119,53,122,48,2,1,46,241,11,249,8,1,10,46,101,49,121,110,104,113,98,105,49,2,1,66,46,160,42,8,1,21,46,101,52,51,100,51,98,57,57,100,51,52,102,102,102,55,56,48,99,56,57,2,1,52,157,78,208,8,1,9,46,101,52,98,113,52,52,111,50,2,1,127,194,198,107,8,1,9,46,101,52,120,98,108,116,51,48,2,1,17,49,93,154,8,1,9,46,101,56,112,120,119,57,105,48,2,1,251,70,156,131,8,1,7,46,101,67,113,65,106,73,2,1,148,187,119,58,8,1,7,46,101,72,80,84,118,70,2,1,233,210,116,234,8,1,7,46,101,74,87,80,90,79,2,1,222,234,117,42,8,1,7,46,101,80,84,100,77,89,2,1,72,104,106,246,8,1,7,46,101,83,74,81,111,78,2,1,231,192,128,36,8,1,17,46,101,83,105,118,104,98,46,115,99,45,107,65,100,88,101,68,2,1,13,135,150,165,8,1,5,46,101,98,45,49,2,1,72,172,55,154,8,1,8,46,101,98,45,115,104,100,49,2,1,82,25,81,189,8,1,8,46,101,101,97,45,112,111,112,2,1,188,68,227,132,8,1,9,46,101,101,115,48,118,56,105,49,2,1,238,172,58,107,8,1,21,46,101,102,105,108,108,105,45,108,97,121,111,117,116,45,108,101,103,97,99,121,2,1,146,8,151,235,8,1,12,46,101,103,121,109,45,112,114,111,109,112,116,2,1,148,181,198,242,8,1,9,46,101,104,51,104,115,48,97,53,2,1,38,157,104,207,8,1,9,46,101,107,101,114,103,110,116,51,2,1,147,217,73,37,8,1,9,46,101,108,51,56,102,50,98,48,2,1,148,184,120,215,8,1,22,46,101,108,97,115,116,105,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,113,103,121,109,8,1,27,46,101,108,101,109,101,110,116,111,114,45,101,108,101,109,101,110,116,45,49,48,102,102,51,100,99,55,2,1,4,240,249,214,8,1,26,46,101,108,101,109,101,110,116,111,114,45,101,108,101,109,101,110,116,45,51,102,48,54,52,48,49,2,1,98,60,171,143,8,1,27,46,101,108,101,109,101,110,116,111,114,45,101,108,101,109,101,110,116,45,55,98,102,54,102,99,97,98,2,1,114,4,49,43,8,1,26,46,101,108,101,109,101,110,116,111,114,45,108,111,99,97,116,105,111,110,45,102,111,111,116,101,114,2,1,86,53,36,85,8,1,12,46,101,108,101,118,97,116,105,111,110,45,56,2,2,121,28,153,180,204,76,238,134,8,1,9,46,101,110,55,121,109,102,101,48,2,1,227,197,132,73,8,1,22,46,101,110,103,97,103,101,98,97,121,45,103,100,112,114,45,100,105,97,108,111,103,2,1,210,104,207,29,8,1,8,46,101,110,113,50,101,108,48,2,1,90,170,26,101,8,1,9,46,101,116,116,111,102,54,104,52,2,1,173,38,199,95,8,1,6,46,101,117,45,100,112,2,1,197,220,194,19,8,1,11,46,101,117,45,109,101,115,115,97,103,101,2,1,237,128,104,91,8,1,9,46,101,117,45,112,111,112,117,112,2,2,136,111,228,252,148,106,246,59,8,1,11,46,101,117,45,112,114,105,118,97,99,121,2,1,39,7,235,151,8,1,7,46,101,117,112,111,117,89,2,1,56,16,10,4,8,1,24,46,101,118,116,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,111,116,116,111,109,2,1,54,168,89,164,8,1,9,46,101,119,55,55,54,54,57,54,2,1,72,171,22,135,8,1,32,46,101,120,105,100,101,45,103,116,109,45,115,99,114,105,112,116,115,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,104,148,206,246,8,1,18,46,101,120,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,204,175,50,74,8,1,31,46,101,120,112,108,105,99,105,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,1,252,31,207,162,8,1,19,46,101,120,112,108,111,114,101,114,45,110,45,112,114,105,118,97,99,121,2,1,137,252,94,216,8,1,21,46,102,45,99,109,112,45,102,108,121,111,117,116,45,119,114,97,112,112,101,114,2,1,121,209,41,231,8,1,8,46,102,52,108,112,118,119,100,2,1,185,85,61,62,8,1,7,46,102,67,116,66,105,69,2,1,240,124,118,185,8,1,7,46,102,68,117,70,69,118,2,1,209,181,190,215,8,1,38,46,102,70,79,105,76,81,46,69,107,108,50,70,65,46,82,78,70,78,73,65,46,95,57,121,45,66,89,81,46,95,49,67,122,121,71,104,98,2,1,127,57,106,115,8,1,7,46,102,86,73,109,83,76,2,1,190,28,192,237,8,1,7,46,102,90,105,80,65,71,2,1,127,55,184,147,8,1,8,46,102,97,100,101,45,105,110,2,1,121,220,149,233,8,1,7,46,102,97,100,101,77,101,2,1,251,49,179,107,8,1,16,46,102,97,110,99,121,98,111,120,45,111,112,101,110,101,100,2,1,148,186,173,126,8,1,17,46,102,97,110,99,121,98,111,120,45,111,118,101,114,108,97,121,2,3,138,90,201,158,148,186,173,126,171,138,36,219,8,1,14,46,102,97,110,99,121,98,111,120,45,119,114,97,112,2,1,138,90,201,158,8,1,13,46,102,101,97,116,104,101,114,108,105,103,104,116,2,1,48,96,64,36,8,1,17,46,102,101,101,100,98,97,99,107,45,118,105,115,105,98,108,101,2,1,86,103,250,120,8,1,6,46,102,103,95,110,51,2,1,123,172,179,48,8,1,13,46,102,105,103,109,97,45,98,57,55,48,107,120,2,1,127,50,15,0,8,1,19,46,102,105,114,115,116,45,116,105,109,101,45,118,105,115,105,116,111,114,2,2,14,146,225,213,101,242,23,25,8,1,13,46,102,105,114,115,116,84,105,109,101,84,105,112,2,1,78,56,23,239,8,1,7,46,102,105,120,66,97,114,2,1,118,178,242,159,8,1,6,46,102,105,120,101,100,2,1,126,180,174,53,8,1,14,46,102,105,120,101,100,45,111,118,101,114,108,97,121,2,1,101,160,213,80,8,1,14,46,102,105,120,101,100,45,119,97,114,110,105,110,103,2,1,15,98,95,133,8,1,22,46,102,105,120,101,100,46,98,103,45,103,112,45,103,114,101,101,110,45,49,48,48,2,1,215,38,29,103,8,1,22,46,102,105,120,101,100,46,98,103,45,103,114,101,121,45,100,97,114,107,101,115,116,2,1,54,249,180,102,8,1,16,46,102,105,120,101,100,46,98,111,116,116,111,109,45,50,52,2,1,62,54,249,228,8,1,26,46,102,105,120,101,100,46,114,111,117,110,100,101,100,45,108,103,46,98,111,116,116,111,109,45,48,2,1,22,58,220,56,8,1,15,46,102,105,120,101,100,80,111,108,105,99,121,66,111,120,2,1,85,88,144,18,8,1,12,46,102,105,120,101,100,82,101,103,105,111,110,2,1,190,156,16,216,8,1,13,46,102,105,120,101,100,95,98,116,109,95,98,103,2,1,226,164,135,82,8,1,9,46,102,105,120,101,100,98,97,114,2,1,213,5,153,113,8,1,9,46,102,105,120,101,100,98,111,116,2,2,86,157,77,161,126,1,148,179,8,1,10,46,102,108,45,97,99,99,101,112,116,2,1,161,62,122,51,8,1,13,46,102,108,97,115,104,45,98,111,116,116,111,109,2,1,198,87,42,124,8,1,19,46,102,108,97,115,104,45,102,105,120,101,100,45,98,111,116,116,111,109,2,1,100,63,155,166,8,1,27,46,102,108,97,115,104,45,109,101,115,115,97,103,101,45,97,110,110,111,117,110,99,101,109,101,110,116,2,1,2,255,184,13,8,1,23,46,102,108,97,115,104,45,109,101,115,115,97,103,101,95,95,119,114,97,112,112,101,114,2,2,38,157,169,184,140,66,234,165,8,1,15,46,102,108,101,120,45,99,111,110,116,97,105,110,101,114,2,1,173,216,165,185,8,1,6,46,102,108,111,97,116,2,1,74,86,154,246,8,1,10,46,102,108,111,97,116,45,98,97,114,2,3,65,250,164,60,113,193,149,166,128,97,107,165,8,1,13,46,102,108,111,97,116,45,98,111,116,116,111,109,2,1,127,252,20,62,8,1,21,46,102,108,111,97,116,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,181,62,13,69,8,1,20,46,102,108,111,97,116,45,109,101,115,115,97,103,101,95,95,119,114,97,112,2,8,27,178,253,255,69,89,123,172,78,125,29,5,83,224,71,204,98,54,121,212,161,136,36,107,215,22,193,193,227,185,178,190,8,1,21,46,102,108,111,97,116,45,118,101,114,116,105,99,97,108,45,112,97,110,101,108,2,1,148,148,218,185,8,1,12,46,102,108,111,97,116,70,111,111,116,101,114,2,2,26,191,0,194,40,54,196,117,8,1,11,46,102,108,111,97,116,80,111,112,117,112,2,1,35,89,37,252,8,1,13,46,102,108,111,97,116,105,110,103,45,98,97,114,2,2,72,83,96,51,166,191,47,41,8,1,44,46,102,108,111,97,116,105,110,103,45,103,114,111,117,112,46,70,108,111,97,116,105,110,103,71,114,111,117,112,46,98,117,98,98,108,101,45,101,108,101,109,101,110,116,2,1,95,227,82,153,8,1,24,46,102,108,111,119,97,112,112,122,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,22,48,173,193,8,1,17,46,102,111,111,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,72,115,99,158,8,1,7,46,102,111,111,116,101,114,2,4,26,214,131,85,67,148,9,225,126,249,152,223,177,30,236,40,8,1,20,46,102,111,111,116,101,114,45,97,110,110,111,117,110,99,101,109,101,110,116,2,1,65,119,228,49,8,1,17,46,102,111,111,116,101,114,45,102,105,120,101,100,45,98,97,114,2,1,236,20,40,66,8,1,14,46,102,111,111,116,101,114,45,110,111,116,105,99,101,2,1,244,196,99,91,8,1,26,46,102,111,111,116,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,45,112,111,112,117,112,2,1,137,217,243,165,8,1,14,46,102,111,111,116,101,114,45,112,111,108,105,99,121,2,3,23,246,146,210,49,203,178,64,58,14,180,93,8,1,13,46,102,111,111,116,101,114,45,112,111,112,117,112,2,2,83,132,221,222,209,237,147,131,8,1,18,46,102,111,111,116,101,114,45,115,116,97,116,101,109,101,110,116,115,2,1,159,182,170,127,8,1,15,46,102,111,111,116,101,114,45,119,114,97,112,112,101,114,2,1,165,24,151,229,8,1,15,46,102,111,111,116,101,114,95,95,98,97,110,110,101,114,2,1,202,34,178,97,8,1,15,46,102,111,111,116,101,114,95,95,110,111,116,105,99,101,2,3,58,122,113,11,103,224,165,147,152,67,168,93,8,1,22,46,102,111,111,116,101,114,95,112,114,105,118,97,99,121,95,112,111,108,105,99,121,2,1,228,102,144,203,8,1,10,46,102,111,111,116,101,114,109,115,103,2,1,133,231,99,98,8,1,9,46,102,111,116,45,102,105,120,100,2,1,111,235,29,162,8,1,6,46,102,112,67,100,109,2,1,38,157,28,48,8,1,7,46,102,114,117,98,71,88,2,1,172,196,6,134,8,1,11,46,102,115,45,99,111,110,115,101,110,116,2,1,28,43,1,72,8,1,17,46,102,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,2,82,179,0,34,220,96,253,130,8,1,23,46,102,115,95,99,99,45,98,97,110,110,101,114,95,99,111,109,112,111,110,101,110,116,2,1,248,217,28,117,8,1,19,46,102,115,105,45,108,97,121,111,117,116,45,110,111,116,105,99,101,115,2,1,30,163,203,37,8,1,18,46,102,115,110,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,133,202,4,78,8,1,13,46,102,117,108,108,45,111,118,101,114,108,97,121,2,1,252,104,85,13,8,1,29,46,102,120,103,45,97,108,101,114,116,95,95,102,100,120,95,99,111,111,107,105,101,95,110,111,116,105,99,101,2,1,127,239,71,198,8,1,11,46,102,120,115,95,102,111,111,116,101,114,2,1,242,197,89,199,8,1,9,46,103,45,100,105,97,108,111,103,2,1,148,181,65,54,8,1,7,46,103,69,81,119,118,79,2,2,57,117,165,140,184,2,94,177,8,1,7,46,103,81,73,68,99,79,2,1,35,160,174,152,8,1,6,46,103,97,111,111,112,2,1,10,139,39,242,8,1,15,46,103,97,115,45,99,111,111,107,105,101,45,98,97,114,2,1,29,205,193,34,8,1,17,46,103,97,116,101,119,97,121,67,111,110,116,97,105,110,101,114,2,1,1,140,167,163,8,1,15,46,103,98,95,99,111,111,107,105,101,95,105,110,102,111,2,1,73,106,178,141,8,1,18,46,103,98,99,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,228,137,99,141,8,1,10,46,103,99,98,95,51,53,53,53,54,2,2,153,166,119,171,214,205,172,244,8,1,12,46,103,100,112,114,45,45,109,111,100,97,108,2,1,2,186,244,220,8,1,11,46,103,100,112,114,45,99,104,101,99,107,2,1,54,231,115,22,8,1,28,46,103,100,112,114,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,119,114,97,112,112,101,114,2,1,14,95,94,146,8,1,20,46,103,100,112,114,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,183,10,82,39,8,1,11,46,103,100,112,114,45,105,110,110,101,114,2,1,129,202,217,29,8,1,11,46,103,100,112,114,45,109,111,100,97,108,2,1,208,35,9,75,8,1,12,46,103,100,112,114,45,119,105,110,100,111,119,2,2,126,250,242,120,150,63,28,110,8,1,13,46,103,100,112,114,95,95,104,111,108,100,101,114,2,1,9,24,86,96,8,1,11,46,103,100,112,114,95,98,108,111,99,107,2,1,127,196,144,190,8,1,12,46,103,100,112,114,95,104,111,108,100,101,114,2,1,39,169,230,23,8,1,23,46,103,101,110,101,115,105,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,72,29,187,103,8,1,21,46,103,102,117,45,102,108,111,97,116,105,110,103,45,109,101,115,115,97,103,101,2,1,76,34,87,32,8,1,14,46,103,103,45,99,115,115,45,55,55,105,117,57,111,2,1,65,15,80,7,8,1,14,46,103,105,110,103,101,114,95,98,97,110,110,101,114,2,1,68,150,133,79,8,1,7,46,103,107,72,103,99,80,2,2,0,104,199,129,190,190,188,63,8,1,7,46,103,107,90,99,103,122,2,1,159,39,167,115,8,1,6,46,103,108,45,99,109,2,1,215,130,154,202,8,1,6,46,103,108,65,102,105,2,1,40,214,170,184,8,1,13,46,103,108,111,98,97,108,45,97,108,101,114,116,2,1,153,46,38,42,8,1,16,46,103,108,111,98,97,108,45,109,101,115,115,97,103,101,115,2,1,74,166,110,149,8,1,14,46,103,108,111,98,97,108,45,110,111,116,105,99,101,2,1,73,147,206,123,8,1,13,46,103,108,111,98,97,108,45,110,111,116,105,102,2,1,128,137,133,173,8,1,30,46,103,108,111,98,97,108,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,2,1,167,159,83,149,8,1,26,46,103,108,111,98,97,108,45,111,118,101,114,108,97,121,45,98,97,99,107,103,114,111,117,110,100,2,1,64,134,219,59,8,1,27,46,103,108,111,98,97,108,45,116,111,97,115,116,45,45,99,111,111,107,105,101,45,116,111,97,115,116,2,1,244,240,146,75,8,1,19,46,103,108,111,98,97,108,65,110,110,111,117,110,99,101,109,101,110,116,2,2,104,250,61,158,127,134,60,119,8,1,12,46,103,108,111,98,97,108,79,112,116,73,110,2,1,160,167,180,215,8,1,12,46,103,108,111,119,45,98,97,110,110,101,114,2,1,100,206,142,8,8,1,29,46,103,108,117,101,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,2,3,11,57,5,131,68,186,161,48,147,105,209,121,8,1,7,46,103,109,69,119,87,97,2,1,61,206,139,129,8,1,17,46,103,109,116,95,98,108,111,99,107,95,115,99,114,101,101,110,2,1,167,18,146,105,8,1,13,46,103,111,50,48,55,50,52,48,56,53,53,49,2,1,204,217,76,70,8,1,21,46,103,111,111,117,116,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,120,138,168,116,8,1,25,46,103,114,97,110,105,102,121,45,119,105,100,103,101,116,45,99,111,110,116,97,105,110,101,114,2,2,184,196,224,209,195,204,61,57,8,1,8,46,103,114,101,121,45,98,103,2,1,124,244,233,119,8,1,15,46,103,115,45,99,111,111,107,105,101,45,119,97,108,108,2,1,74,221,45,51,8,1,19,46,103,115,99,45,99,111,111,107,105,101,45,115,101,99,116,105,111,110,2,1,228,158,19,226,8,1,7,46,103,117,84,105,108,121,2,1,233,43,224,94,8,1,10,46,103,117,101,115,116,119,97,114,110,2,1,77,9,93,255,8,1,15,46,103,117,103,103,101,110,45,99,111,110,115,101,110,116,2,1,225,121,114,39,8,1,7,46,103,121,104,79,112,107,2,1,38,157,76,56,8,1,7,46,104,65,80,76,79,65,2,1,233,210,116,234,8,1,7,46,104,67,84,79,69,109,2,1,217,82,115,223,8,1,17,46,104,97,115,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,192,211,222,230,8,1,7,46,104,99,71,77,85,117,2,1,163,61,150,209,8,1,10,46,104,101,97,100,80,111,112,117,112,2,1,87,193,19,12,8,1,35,46,104,101,97,100,101,114,45,99,111,109,112,111,110,101,110,116,95,95,109,101,115,115,97,103,101,115,45,111,118,101,114,108,97,121,2,1,126,51,13,166,8,1,15,46,104,101,97,100,101,114,45,109,101,115,115,97,103,101,2,1,179,59,204,50,8,1,12,46,104,101,97,100,101,114,45,112,101,114,109,2,1,150,99,101,216,8,1,13,46,104,101,97,100,101,114,45,115,104,101,101,116,2,1,229,179,8,23,8,1,23,46,104,101,97,100,101,114,45,115,116,97,99,107,101,100,45,109,101,115,115,97,103,101,2,1,2,35,152,25,8,1,18,46,104,101,97,100,101,114,45,116,111,112,45,98,97,110,110,101,114,2,1,203,69,78,234,8,1,9,46,104,101,97,100,110,111,116,101,2,1,198,153,103,147,8,1,10,46,104,101,108,108,111,45,98,97,114,2,1,37,123,38,137,8,1,20,46,104,105,108,108,97,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,20,69,73,142,8,1,18,46,104,111,109,101,45,97,110,110,111,117,110,99,101,109,101,110,116,2,1,218,7,97,183,8,1,24,46,104,116,45,110,111,116,105,102,105,99,97,116,105,111,110,45,115,101,99,116,105,111,110,2,1,108,15,115,48,8,1,11,46,104,117,45,119,114,97,112,112,101,114,2,1,123,138,157,62,8,1,21,46,104,117,97,119,101,105,45,98,111,111,116,111,109,45,99,111,111,107,105,101,2,1,78,105,197,223,8,1,25,46,104,117,97,119,101,105,45,99,111,110,118,101,114,103,101,110,116,45,99,111,111,107,105,101,2,1,12,94,157,231,8,1,4,46,104,117,100,2,1,143,203,9,152,8,1,13,46,104,117,115,116,108,101,45,112,111,112,117,112,2,1,22,96,163,183,8,1,22,46,104,119,105,100,45,98,97,110,110,101,114,66,111,120,45,112,111,114,116,97,108,2,1,35,182,75,132,8,1,16,46,104,121,45,109,117,115,107,45,119,114,97,112,112,101,114,2,1,37,144,232,167,8,1,12,46,105,65,103,114,101,101,80,111,112,117,112,2,1,74,100,17,88,8,1,7,46,105,85,83,118,73,121,2,1,217,82,115,223,8,1,7,46,105,90,79,79,79,75,2,1,41,223,59,65,8,1,21,46,105,97,97,119,103,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,126,175,212,157,8,1,17,46,105,98,99,68,67,115,46,115,99,45,100,104,75,100,99,66,2,1,97,109,248,103,8,1,9,46,105,98,109,45,115,104,111,119,2,1,38,157,30,10,8,1,18,46,105,99,110,45,115,116,105,99,107,121,45,102,111,111,116,101,114,2,1,254,98,34,83,8,1,17,46,105,99,111,110,95,114,111,108,108,105,110,103,116,101,120,116,2,1,254,16,68,87,8,1,7,46,105,100,69,84,97,78,2,1,127,55,15,72,8,1,7,46,105,102,115,66,66,68,2,1,221,116,140,110,8,1,14,46,105,103,95,97,99,116,105,111,110,95,98,97,114,2,1,133,170,171,214,8,1,7,46,105,108,100,105,69,114,2,1,38,237,174,154,8,1,25,46,105,109,112,111,114,116,97,110,116,45,109,101,115,115,97,103,101,45,98,97,110,110,101,114,2,1,189,67,230,0,8,1,9,46,105,110,102,111,45,98,97,114,2,1,128,60,231,173,8,1,13,46,105,110,102,111,45,109,101,115,115,97,103,101,2,1,35,63,169,89,8,1,9,46,105,110,102,111,45,109,115,103,2,3,129,149,242,9,193,141,0,214,225,119,203,131,8,1,12,46,105,110,102,111,95,98,97,110,110,101,114,2,1,60,149,60,117,8,1,9,46,105,110,102,111,95,98,111,120,2,1,31,205,139,135,8,1,8,46,105,110,102,111,98,97,114,2,1,193,141,0,214,8,1,16,46,105,110,102,111,98,97,114,45,109,101,115,115,97,103,101,2,1,98,58,189,172,8,1,26,46,105,110,102,111,98,97,114,45,116,111,97,115,116,101,114,45,99,111,110,116,97,105,110,101,114,2,1,142,14,98,194,8,1,14,46,105,110,102,111,98,111,120,72,111,108,100,101,114,2,1,123,187,126,93,8,1,13,46,105,110,105,116,95,109,101,115,115,97,103,101,2,1,93,148,169,148,8,1,7,46,105,110,105,116,97,108,2,1,251,49,179,107,8,1,18,46,105,110,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,105,55,149,110,8,1,12,46,105,110,115,45,110,111,116,105,99,101,115,2,1,45,56,73,125,8,1,17,46,105,110,115,101,116,45,48,46,97,98,115,111,108,117,116,101,2,1,59,177,117,94,8,1,15,46,105,110,116,101,114,105,109,45,98,97,110,110,101,114,2,1,108,80,50,187,8,1,12,46,105,112,117,98,45,99,111,111,107,105,101,2,1,93,82,129,57,8,1,7,46,105,113,121,115,120,115,2,1,118,131,35,170,8,1,31,46,105,114,111,110,117,115,97,45,99,111,111,107,105,101,45,109,111,100,97,108,45,48,45,120,45,109,111,100,97,108,2,1,96,221,43,49,8,1,7,46,105,114,121,112,120,71,2,1,93,95,192,74,8,1,11,46,105,115,45,99,111,110,115,101,110,116,2,1,106,73,2,92,8,1,23,46,105,115,45,102,105,120,101,100,45,98,111,116,116,111,109,46,110,97,118,98,97,114,2,1,66,229,182,42,8,1,9,46,105,115,45,109,111,100,97,108,2,1,252,3,162,87,8,1,8,46,105,115,45,111,112,101,110,2,1,237,161,190,122,8,1,7,46,105,116,99,45,99,99,2,1,41,166,0,115,8,1,25,46,105,116,101,109,115,45,115,116,97,114,116,46,102,108,101,120,46,114,111,117,110,100,101,100,2,1,85,254,19,157,8,1,23,46,105,116,118,45,103,108,111,98,45,102,111,111,116,95,95,99,111,111,107,105,101,115,2,1,38,157,157,7,8,1,7,46,105,119,73,89,67,71,2,1,170,238,39,245,8,1,17,46,105,122,105,84,111,97,115,116,45,119,114,97,112,112,101,114,2,1,253,208,10,83,8,1,20,46,106,45,116,111,115,45,117,112,100,97,116,101,45,98,97,110,110,101,114,2,1,128,97,122,172,8,1,7,46,106,79,83,87,90,97,2,1,140,156,223,60,8,1,7,46,106,97,69,103,102,120,2,1,188,57,253,72,8,1,18,46,106,98,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,102,118,94,216,8,1,7,46,106,100,98,101,76,84,2,1,125,140,246,2,8,1,22,46,106,101,118,101,110,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,98,147,228,3,8,1,18,46,106,102,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,65,88,61,28,8,1,7,46,106,105,73,69,103,116,2,1,160,119,218,156,8,1,19,46,106,105,109,117,45,119,105,100,103,101,116,45,115,112,108,97,115,104,2,1,35,34,171,242,8,1,14,46,106,109,45,99,111,111,107,105,101,45,98,97,114,2,1,129,136,4,120,8,1,6,46,106,110,111,116,101,2,1,8,243,64,142,8,1,25,46,106,111,117,114,110,97,108,45,104,101,97,100,101,114,45,110,111,116,105,99,101,45,55,51,2,1,64,245,84,116,8,1,14,46,106,112,105,119,105,107,71,114,111,119,108,101,114,2,1,190,73,179,50,8,1,14,46,106,112,105,119,105,107,79,118,101,114,108,97,121,2,1,190,73,179,50,8,1,16,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,2,1,145,249,251,85,8,1,18,46,106,113,117,101,114,121,45,110,111,116,105,102,121,45,98,97,114,2,1,156,154,161,239,8,1,14,46,106,115,45,97,99,116,105,111,110,45,98,97,114,2,1,21,123,174,99,8,1,20,46,106,115,45,97,108,101,114,116,115,45,99,111,110,116,97,105,110,101,114,2,1,217,247,230,56,8,1,13,46,106,115,45,99,98,45,112,111,108,105,99,121,2,1,214,201,132,236,8,1,11,46,106,115,45,99,111,110,102,105,114,109,2,1,181,149,141,182,8,1,15,46,106,115,45,99,111,110,115,101,110,116,45,98,111,120,2,2,188,54,47,103,233,109,18,221,8,1,22,46,106,115,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,2,1,40,71,190,127,8,1,28,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,95,95,98,103,2,1,123,102,248,190,8,1,13,46,106,115,45,99,111,111,107,105,101,98,111,116,2,1,33,20,98,135,8,1,18,46,106,115,45,100,105,97,108,111,103,45,45,99,111,111,107,105,101,2,1,174,222,214,246,8,1,22,46,106,115,45,102,105,114,115,116,45,118,105,115,105,116,45,98,97,110,110,101,114,2,2,174,60,151,157,210,203,232,189,8,1,10,46,106,115,45,110,111,116,105,99,101,2,1,232,232,253,237,8,1,11,46,106,115,45,110,111,116,105,99,101,115,2,1,215,43,116,184,8,1,16,46,106,115,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,125,50,13,139,8,1,14,46,106,115,45,115,105,116,101,45,97,108,101,114,116,2,1,38,157,157,7,8,1,22,46,106,115,45,115,105,116,101,45,97,108,101,114,116,45,99,111,110,116,101,110,116,2,1,38,157,157,7,8,1,16,46,106,115,45,116,111,111,108,115,45,100,105,97,108,111,103,2,1,148,181,65,54,8,1,18,46,106,115,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,73,185,43,61,8,1,8,46,106,115,115,49,48,57,55,2,1,135,250,36,142,8,1,7,46,106,115,115,49,52,52,2,1,192,62,69,167,8,1,7,46,106,115,115,51,48,50,2,1,27,83,181,24,8,1,5,46,106,115,115,52,2,1,173,21,213,225,8,1,6,46,106,115,115,52,54,2,1,148,193,171,46,8,1,7,46,106,115,115,52,54,56,2,1,190,50,90,112,8,1,6,46,106,115,115,54,51,2,1,86,230,120,97,8,1,6,46,106,115,115,54,55,2,1,129,52,202,152,8,1,14,46,106,115,120,45,51,53,50,49,57,55,51,50,52,2,1,63,37,157,88,8,1,14,46,106,115,120,45,53,51,57,56,48,57,48,56,48,2,1,49,151,128,92,8,1,7,46,106,116,71,110,109,120,2,1,19,59,234,13,8,1,16,46,106,116,112,45,115,107,105,110,110,121,45,103,100,112,114,2,2,122,159,60,110,178,41,193,183,8,1,21,46,106,116,112,115,100,107,45,98,111,100,121,45,98,108,97,99,107,111,117,116,2,1,178,41,193,183,8,1,19,46,106,116,112,115,100,107,45,112,111,112,117,112,45,109,111,100,97,108,2,1,178,41,193,183,8,1,7,46,106,117,95,67,111,110,2,1,188,115,210,235,8,1,10,46,106,119,45,112,111,112,117,112,115,2,1,159,227,234,9,8,1,19,46,106,119,45,112,111,112,117,112,115,45,98,97,99,107,100,114,111,112,2,1,159,227,234,9,8,1,20,46,106,119,45,112,111,112,117,112,115,45,99,111,110,116,97,105,110,101,114,2,1,159,227,234,9,8,1,5,46,107,52,119,54,2,1,203,33,19,204,8,1,7,46,107,67,115,73,78,77,2,1,93,95,192,74,8,1,17,46,107,71,108,118,78,65,46,115,99,45,103,120,89,74,101,76,2,1,150,216,229,208,8,1,7,46,107,85,120,73,115,66,2,1,228,147,162,126,8,1,7,46,107,86,84,101,107,119,2,1,113,92,60,46,8,1,16,46,107,95,95,99,111,111,107,105,101,45,112,111,112,117,112,2,2,82,226,14,14,135,188,208,42,8,1,7,46,107,97,78,83,81,68,2,1,115,52,36,150,8,1,13,46,107,98,45,99,111,110,116,97,105,110,101,114,2,1,86,135,159,13,8,1,7,46,107,99,84,119,65,103,2,1,162,106,176,202,8,1,7,46,107,99,109,72,71,100,2,1,56,25,25,113,8,1,7,46,107,100,78,67,78,101,2,1,57,185,206,127,8,1,11,46,107,100,107,45,99,111,111,107,105,101,2,1,126,34,47,233,8,1,6,46,107,104,90,73,105,2,1,126,51,4,147,8,1,7,46,107,105,110,76,86,89,2,1,159,203,198,198,8,1,7,46,107,106,118,73,113,104,2,1,120,203,45,164,8,1,7,46,107,107,115,105,75,117,2,1,234,220,12,72,8,1,7,46,107,108,73,118,69,117,2,1,128,157,1,50,8,1,12,46,107,111,101,107,106,101,115,98,97,108,107,2,1,86,158,101,243,8,1,7,46,107,114,72,71,119,85,2,1,6,215,173,85,8,1,10,46,107,116,104,45,116,111,97,115,116,2,1,218,153,112,73,8,1,17,46,108,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,2,1,126,34,239,128,8,1,13,46,108,45,100,105,115,99,108,97,105,109,101,114,2,2,24,84,49,30,80,218,207,50,8,1,18,46,108,45,100,105,115,109,105,115,115,105,98,108,101,45,109,115,103,2,1,139,104,77,111,8,1,16,46,108,45,102,105,120,101,100,45,45,98,111,116,116,111,109,2,1,217,226,178,239,8,1,15,46,108,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,127,224,76,10,8,1,6,46,108,68,99,120,117,2,1,114,214,199,55,8,1,6,46,108,79,80,67,56,2,1,26,186,75,244,8,1,25,46,108,97,110,100,105,110,103,95,112,114,111,109,111,95,98,97,110,110,101,114,95,116,111,112,2,1,218,130,245,25,8,1,18,46,108,97,110,103,117,97,103,101,45,115,119,105,116,99,104,101,114,2,1,38,157,170,100,8,1,22,46,108,97,119,50,53,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,242,44,32,134,8,1,19,46,108,97,121,101,114,45,109,111,100,97,108,45,102,111,111,116,101,114,2,1,148,188,20,10,8,1,16,46,108,97,121,111,117,116,45,109,101,115,115,97,103,101,115,2,1,54,199,222,123,8,1,11,46,108,97,121,111,117,116,45,114,111,119,2,1,49,255,20,90,8,1,39,46,108,97,121,111,117,116,72,101,97,100,101,114,45,105,110,102,111,114,109,97,116,105,111,110,77,101,115,115,97,103,101,87,114,97,112,112,101,114,2,1,5,188,209,247,8,1,11,46,108,98,95,111,118,101,114,108,97,121,2,1,122,12,255,151,8,1,13,46,108,99,99,45,98,97,99,107,100,114,111,112,2,1,56,107,179,217,8,1,10,46,108,99,99,45,109,111,100,97,108,2,1,56,107,179,217,8,1,22,46,108,101,97,100,101,114,98,111,97,114,100,95,99,111,110,116,97,105,110,101,114,2,1,79,228,150,80,8,1,7,46,108,101,102,116,45,51,2,1,60,150,163,159,8,1,12,46,108,101,102,116,46,100,105,97,108,111,103,2,1,243,22,48,190,8,1,7,46,108,101,103,97,99,121,2,1,165,61,159,207,8,1,16,46,108,101,103,97,108,45,97,103,114,101,101,109,101,110,116,2,1,171,81,186,2,8,1,13,46,108,101,103,97,108,45,98,97,110,110,101,114,2,1,128,158,78,207,8,1,23,46,108,101,103,97,108,45,98,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,2,2,130,202,66,51,222,70,249,227,8,1,13,46,108,101,103,97,108,45,102,111,111,116,101,114,2,1,126,1,103,52,8,1,24,46,108,101,103,97,108,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,2,1,7,48,173,208,8,1,13,46,108,101,103,97,108,45,110,111,116,105,99,101,2,2,120,14,98,16,137,107,118,60,8,1,14,46,108,101,103,97,108,45,119,97,114,110,105,110,103,2,1,101,112,132,24,8,1,7,46,108,101,105,75,79,76,2,1,201,144,167,21,8,1,24,46,108,101,112,111,112,117,112,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,255,158,253,43,8,1,22,46,108,101,112,111,112,117,112,45,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,255,158,253,43,8,1,12,46,108,103,45,98,97,99,107,100,114,111,112,2,1,42,183,209,121,8,1,5,46,108,103,112,100,2,1,208,152,226,185,8,1,25,46,108,105,103,104,116,45,98,108,117,101,45,98,111,114,100,101,114,101,100,45,99,97,114,100,2,1,161,47,170,116,8,1,9,46,108,105,103,104,116,98,111,120,2,1,158,20,226,239,8,1,26,46,108,105,110,107,102,108,121,45,99,116,120,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,239,179,123,121,8,1,19,46,108,105,110,107,115,45,97,114,101,45,114,101,118,101,114,115,101,100,2,1,170,47,171,96,8,1,10,46,108,108,95,98,97,110,110,101,114,2,1,199,154,158,207,8,1,18,46,108,110,99,45,102,105,114,115,116,82,117,110,80,111,112,117,112,2,1,225,191,60,22,8,1,13,46,108,111,99,107,45,99,111,111,107,105,101,115,2,1,4,38,98,192,8,1,18,46,108,111,103,105,110,45,99,111,111,107,105,101,45,116,105,112,115,2,1,16,144,243,167,8,1,14,46,108,111,103,105,110,45,119,114,97,112,112,101,114,2,1,108,213,84,26,8,1,8,46,109,45,97,108,101,114,116,2,1,87,193,19,12,8,1,13,46,109,45,98,111,120,45,112,111,108,105,99,121,2,1,18,80,60,79,8,1,12,46,109,45,110,111,116,105,99,101,66,97,114,2,1,245,11,223,1,8,1,18,46,109,45,112,114,105,118,97,99,121,45,111,112,116,105,111,110,115,2,1,10,56,224,117,8,1,11,46,109,45,115,116,114,101,97,109,101,114,2,1,248,178,28,174,8,1,16,46,109,45,119,97,114,110,105,110,103,45,97,108,101,114,116,2,2,194,197,251,248,248,6,145,229,8,1,19,46,109,49,45,102,111,111,116,101,114,45,109,101,115,115,97,103,101,115,2,4,76,59,107,4,153,96,148,250,192,215,193,192,216,39,88,144,8,1,24,46,109,97,103,105,99,112,108,97,110,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,36,235,141,150,8,1,24,46,109,97,105,108,112,111,101,116,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,2,1,109,56,55,188,8,1,17,46,109,97,105,110,45,99,111,111,107,105,101,115,45,49,77,45,2,1,33,143,51,166,8,1,16,46,109,97,105,110,45,115,105,116,101,45,110,111,116,101,115,2,1,163,242,188,97,8,1,18,46,109,97,105,110,116,101,110,97,110,99,101,45,112,111,112,117,112,2,2,160,164,24,186,243,77,12,55,8,1,15,46,109,97,110,116,105,110,101,45,55,55,50,54,121,115,2,1,55,180,3,166,8,1,20,46,109,97,110,116,105,110,101,45,68,105,97,108,111,103,45,114,111,111,116,2,2,44,186,94,132,51,176,62,92,8,1,25,46,109,97,114,107,101,116,105,110,103,45,111,112,116,45,105,110,45,101,110,97,98,108,101,100,2,1,106,5,218,221,8,1,5,46,109,97,115,107,2,3,86,50,239,246,120,182,162,75,126,34,47,233,8,1,21,46,109,97,120,45,119,45,115,99,114,101,101,110,45,109,100,46,122,45,52,48,2,1,57,211,29,142,8,1,25,46,109,98,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,138,33,70,159,8,1,11,46,109,98,99,45,112,111,108,105,99,121,2,1,247,76,201,190,8,1,17,46,109,99,101,82,111,119,45,45,114,101,108,97,116,105,118,101,2,1,123,103,52,199,8,1,12,46,109,99,104,112,45,99,111,111,107,105,101,2,1,196,44,80,48,8,1,14,46,109,100,45,109,111,100,97,108,45,119,114,97,112,2,1,229,36,44,237,8,1,19,46,109,100,108,45,106,115,45,98,105,103,115,110,97,99,107,98,97,114,2,1,158,169,217,58,8,1,12,46,109,100,108,45,111,118,101,114,108,97,121,2,1,148,188,25,84,8,1,13,46,109,100,108,45,115,110,97,99,107,98,97,114,2,1,134,13,150,126,8,1,19,46,109,101,114,99,117,115,121,115,45,99,111,111,107,105,101,45,101,117,2,1,228,60,93,33,8,1,8,46,109,101,115,115,97,103,101,2,7,19,177,252,99,47,93,110,145,48,10,20,80,80,122,175,119,126,232,182,81,174,103,78,213,250,174,246,82,8,1,25,46,109,101,115,115,97,103,101,45,97,99,99,101,112,116,45,99,111,110,116,97,105,110,101,114,2,1,190,12,43,227,8,1,14,46,109,101,115,115,97,103,101,45,97,108,101,114,116,2,2,25,144,227,85,223,183,8,52,8,1,19,46,109,101,115,115,97,103,101,95,95,99,111,110,116,97,105,110,101,114,2,1,57,101,164,119,8,1,9,46,109,101,115,115,97,103,101,115,2,2,93,192,250,95,124,25,213,37,8,1,28,46,109,101,115,115,97,103,101,115,45,45,99,111,110,116,97,105,110,101,114,45,45,98,111,116,116,111,109,2,1,97,146,81,82,8,1,11,46,109,101,116,45,99,111,111,107,105,101,2,1,38,157,135,60,8,1,23,46,109,101,116,114,111,45,99,111,111,107,105,101,98,97,114,95,95,98,108,111,99,107,2,1,248,163,163,125,8,1,7,46,109,102,112,45,98,103,2,1,110,57,44,120,8,1,9,46,109,102,112,45,119,114,97,112,2,1,110,57,44,120,8,1,11,46,109,103,115,45,99,111,111,107,105,101,2,2,135,114,87,64,208,194,86,97,8,1,15,46,109,104,45,109,101,115,115,97,103,101,45,98,97,114,2,1,227,62,88,242,8,1,17,46,109,105,45,99,111,110,115,101,110,116,45,108,97,121,101,114,2,1,228,170,7,38,8,1,15,46,109,105,116,101,108,101,45,99,111,110,115,101,110,116,2,1,86,243,89,11,8,1,11,46,109,107,45,99,45,109,111,100,97,108,2,1,208,9,243,187,8,1,16,46,109,108,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,73,107,71,72,8,1,6,46,109,111,45,119,112,2,1,57,219,238,22,8,1,19,46,109,111,98,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,214,44,195,18,8,1,27,46,109,111,98,105,108,101,45,52,52,56,56,102,46,119,114,97,112,112,101,114,45,52,52,56,56,102,2,1,152,197,90,108,8,1,18,46,109,111,98,105,108,101,45,97,112,112,45,104,105,100,100,101,110,2,1,148,186,9,72,8,1,27,46,109,111,100,95,99,111,111,107,105,101,98,97,114,95,111,112,116,105,110,95,109,101,100,105,117,109,2,1,146,9,30,27,8,1,15,46,109,111,100,97,108,45,45,99,111,111,107,105,101,115,2,1,6,1,66,159,8,1,24,46,109,111,100,97,108,45,45,99,111,111,107,105,101,115,45,98,97,99,107,100,114,111,112,2,1,6,1,66,159,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,112,53,103,236,8,1,16,46,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,127,144,45,78,8,1,14,46,109,111,100,97,108,45,99,111,110,116,101,110,116,2,2,58,128,216,14,127,144,45,78,8,1,22,46,109,111,100,97,108,45,99,111,110,116,101,110,116,45,111,118,101,114,108,97,121,2,1,127,144,45,78,8,1,15,46,109,111,100,97,108,45,99,111,111,99,107,105,101,115,2,1,146,9,72,88,8,1,17,46,109,111,100,97,108,45,101,110,116,101,114,45,100,111,110,101,2,1,77,20,25,179,8,1,13,46,109,111,100,97,108,45,102,111,111,116,101,114,2,1,225,191,61,123,8,1,12,46,109,111,100,97,108,45,105,110,110,101,114,2,1,63,44,97,10,8,1,14,46,109,111,100,97,108,45,111,118,101,114,108,97,121,2,3,108,6,19,161,157,76,246,97,204,88,34,17,8,1,11,46,109,111,100,97,108,45,112,101,99,114,2,1,145,154,234,255,8,1,13,46,109,111,100,97,108,45,119,105,110,100,111,119,2,1,128,63,122,43,8,1,16,46,109,111,100,97,108,66,97,99,107,103,114,111,117,110,100,2,1,216,4,34,117,8,1,15,46,109,111,100,97,108,95,95,111,118,101,114,108,97,121,2,1,55,183,69,77,8,1,14,46,109,111,100,97,108,95,95,112,111,108,105,99,121,2,1,149,26,7,95,8,1,12,46,109,111,100,97,108,95,116,101,114,109,115,2,1,126,235,174,246,8,1,15,46,109,111,100,97,108,115,45,119,114,97,112,112,101,114,2,1,232,212,212,125,8,1,16,46,109,111,100,117,108,101,45,97,98,111,118,101,98,111,120,2,1,180,30,25,190,8,1,29,46,109,111,100,117,108,101,95,103,108,111,98,97,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,170,149,191,47,8,1,20,46,109,111,108,101,99,117,108,101,45,99,111,111,107,105,101,45,98,111,120,2,1,228,222,75,180,8,1,26,46,109,111,116,104,101,114,108,101,115,115,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,227,190,134,248,8,1,6,46,109,111,117,110,116,2,1,105,106,120,124,8,1,34,46,109,112,112,45,99,111,110,116,97,105,110,101,114,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,45,98,97,114,2,1,72,179,159,41,8,1,16,46,109,114,99,95,103,100,112,114,95,98,97,110,110,101,114,2,1,70,102,254,71,8,1,19,46,109,115,45,102,111,111,116,101,114,45,109,101,115,115,97,103,101,115,2,2,159,39,33,197,241,189,204,243,8,1,19,46,109,115,45,104,101,97,100,101,114,45,109,101,115,115,97,103,101,115,2,1,159,39,33,197,8,1,4,46,109,115,103,2,4,31,181,58,177,123,179,154,250,127,235,204,135,205,187,183,226,8,1,20,46,109,115,103,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,89,80,144,203,8,1,7,46,109,115,103,66,111,120,2,1,196,31,210,138,8,1,22,46,109,116,118,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,2,1,244,217,32,149,8,1,20,46,109,117,114,97,45,99,116,97,95,95,99,111,110,116,97,105,110,101,114,2,1,11,104,94,42,8,1,27,46,109,119,45,99,111,111,107,105,101,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,2,2,37,170,234,72,226,180,189,186,8,1,15,46,109,120,45,48,46,119,45,49,48,48,46,114,111,119,2,1,63,230,72,205,8,1,17,46,109,120,95,77,97,116,114,105,120,84,111,111,108,98,97,114,2,1,28,146,108,181,8,1,17,46,109,121,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,62,40,22,61,8,1,16,46,109,121,103,111,118,105,100,45,111,118,101,114,108,97,121,2,1,100,82,65,246,8,1,17,46,110,45,109,101,115,115,97,103,105,110,103,45,115,108,111,116,2,1,194,197,252,190,8,1,20,46,110,97,118,98,97,114,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,238,218,211,255,8,1,13,46,110,97,118,98,97,114,45,113,97,114,100,115,2,3,112,183,219,204,114,200,101,32,251,139,22,41,8,1,22,46,110,97,118,105,45,116,101,114,109,115,45,111,102,45,115,101,114,118,105,99,101,2,1,110,88,103,217,8,1,24,46,110,98,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,123,105,152,140,8,1,10,46,110,98,45,112,97,114,101,110,116,2,1,76,52,48,18,8,1,10,46,110,99,109,45,114,101,97,100,121,2,1,148,225,227,91,8,1,11,46,110,99,116,111,118,101,114,108,97,121,2,1,49,217,34,211,8,1,11,46,110,101,101,100,115,99,108,105,99,107,2,1,8,172,175,221,8,1,20,46,110,101,108,105,111,45,112,111,112,117,112,45,119,114,97,112,112,101,114,2,1,98,252,49,250,8,1,26,46,110,101,119,45,99,111,110,115,101,110,116,45,112,111,112,117,112,45,119,114,97,112,112,101,114,2,1,33,136,124,81,8,1,15,46,110,101,119,99,111,111,107,105,101,108,97,121,101,114,2,1,46,142,121,10,8,1,15,46,110,103,45,99,111,110,102,105,114,109,45,98,111,120,2,1,240,63,146,192,8,1,26,46,110,103,45,115,99,111,112,101,46,95,102,108,111,97,116,105,110,103,45,98,97,110,110,101,114,2,1,38,157,55,159,8,1,17,46,110,103,45,116,111,97,115,116,45,45,98,111,116,116,111,109,2,1,193,47,114,218,8,1,22,46,110,103,45,116,114,105,103,103,101,114,46,97,99,116,105,111,110,45,98,97,114,2,1,224,23,53,51,8,1,24,46,110,103,45,116,114,105,103,103,101,114,46,110,103,45,116,110,115,45,99,51,53,45,48,2,1,97,78,171,149,8,1,10,46,110,105,110,101,45,103,100,112,114,2,1,148,202,78,174,8,1,17,46,110,106,45,104,101,97,100,101,114,45,112,114,111,109,112,116,2,1,6,215,124,123,8,1,7,46,110,108,45,99,112,98,2,2,219,21,143,175,254,175,71,6,8,1,10,46,110,111,45,99,111,111,107,105,101,2,1,148,97,208,2,8,1,5,46,110,111,116,101,2,1,213,38,167,248,8,1,12,46,110,111,116,101,45,112,111,108,105,99,121,2,1,89,127,91,172,8,1,13,46,110,111,116,105,99,101,45,98,111,97,114,100,2,1,142,80,111,159,8,1,20,46,110,111,116,105,99,101,45,105,116,101,109,45,115,117,99,99,101,115,115,2,2,89,198,222,23,215,240,190,231,8,1,13,46,110,111,116,105,99,101,45,109,111,100,97,108,2,1,200,178,125,29,8,1,22,46,110,111,116,105,99,101,45,109,111,100,97,108,45,45,99,111,111,107,105,101,115,2,1,168,244,148,114,8,1,31,46,110,111,116,105,99,101,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,45,45,99,111,111,107,105,101,115,2,1,168,244,148,114,8,1,15,46,110,111,116,105,99,101,45,115,101,99,116,105,111,110,2,1,106,210,181,244,8,1,14,46,110,111,116,105,99,101,45,119,105,110,100,111,119,2,2,80,144,36,119,202,196,219,32,8,1,12,46,110,111,116,105,99,101,45,119,114,97,112,2,1,132,146,100,19,8,1,10,46,110,111,116,105,99,101,95,45,49,2,1,66,250,205,92,8,1,21,46,110,111,116,105,99,101,95,78,111,116,105,99,101,115,95,50,57,116,82,81,2,1,169,4,28,26,8,1,15,46,110,111,116,105,99,101,95,95,98,97,110,110,101,114,2,1,28,115,33,197,8,1,22,46,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,110,116,101,110,116,2,1,69,107,167,101,8,1,27,46,110,111,116,105,102,105,99,97,116,105,111,110,45,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,186,186,86,65,8,1,19,46,110,111,116,105,102,105,99,97,116,105,111,110,45,97,108,101,114,116,2,4,32,85,31,16,47,207,62,162,56,219,49,163,247,101,92,33,8,1,20,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,2,2,191,198,136,49,219,86,114,41,8,1,17,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,111,120,2,1,144,1,66,69,8,1,23,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,2,2,125,198,30,83,182,158,52,255,8,1,21,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,115,2,1,40,197,75,14,8,1,18,46,110,111,116,105,102,105,99,97,116,105,111,110,45,108,105,115,116,2,1,128,145,43,92,8,1,27,46,110,111,116,105,102,105,99,97,116,105,111,110,45,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,154,199,254,56,8,1,21,46,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,2,2,46,220,227,147,121,98,234,109,8,1,20,46,110,111,116,105,102,105,99,97,116,105,111,110,46,111,114,97,110,103,101,2,1,23,231,125,236,8,1,35,46,110,111,116,105,102,105,99,97,116,105,111,110,66,97,110,110,101,114,95,95,98,97,110,110,101,114,95,95,95,51,56,103,120,56,2,1,72,91,185,93,8,1,16,46,110,111,116,105,102,105,99,97,116,105,111,110,66,97,114,2,1,199,100,184,178,8,1,27,46,110,111,116,105,102,105,99,97,116,105,111,110,87,114,97,112,112,101,114,45,45,50,108,121,86,87,2,1,245,30,160,131,8,1,21,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,98,97,110,110,101,114,2,1,126,62,230,237,8,1,21,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,99,111,111,107,105,101,2,1,10,43,246,249,8,1,20,46,110,111,116,105,102,105,99,97,116,105,111,110,95,98,97,110,110,101,114,2,1,157,58,49,77,8,1,19,46,110,111,116,105,102,105,99,97,116,105,111,110,95,115,116,114,105,112,2,1,242,153,224,143,8,1,16,46,110,111,116,105,102,105,99,97,116,105,111,110,98,97,114,2,1,9,147,35,108,8,1,14,46,110,111,116,105,102,105,99,97,116,105,111,110,115,2,2,60,131,181,14,193,115,147,191,8,1,20,46,110,111,116,105,102,105,99,97,116,105,111,110,115,45,111,117,116,101,114,2,1,46,254,134,99,8,1,22,46,110,111,116,105,102,105,99,97,116,105,111,110,115,45,119,114,97,112,112,101,114,2,1,67,243,87,177,8,1,17,46,110,111,116,105,102,105,101,114,45,109,101,115,115,97,103,101,2,1,62,224,241,36,8,1,17,46,110,111,116,105,102,105,101,114,45,119,114,97,112,112,101,114,2,1,240,221,20,192,8,1,17,46,110,111,116,105,102,105,101,114,95,100,109,99,97,95,106,115,2,1,39,103,216,1,8,1,7,46,110,111,116,105,102,121,2,1,31,73,106,203,8,1,14,46,110,111,116,105,102,121,45,101,110,115,117,114,101,2,1,90,233,162,213,8,1,14,46,110,111,116,105,102,121,67,111,111,107,105,101,115,2,1,132,75,102,137,8,1,10,46,110,111,116,105,102,121,98,97,114,2,1,9,134,54,186,8,1,11,46,110,111,116,105,112,111,112,95,98,103,2,1,243,78,24,56,8,1,13,46,110,111,116,105,122,87,114,97,112,112,101,114,2,1,85,204,245,158,8,1,7,46,110,115,45,98,111,120,2,2,53,139,109,195,125,79,169,89,8,1,12,46,110,115,45,105,110,102,111,45,98,97,114,2,1,120,34,77,1,8,1,9,46,110,116,102,99,45,98,97,114,2,1,116,39,81,189,8,1,16,46,110,117,97,45,103,100,112,114,45,98,97,110,110,101,114,2,1,42,176,153,191,8,1,23,46,110,118,45,110,111,116,105,102,105,99,97,116,105,111,110,45,104,101,97,100,101,114,2,1,126,251,94,144,8,1,11,46,110,120,45,49,101,53,99,54,55,99,2,1,47,154,205,227,8,1,20,46,110,121,112,45,115,105,116,101,119,105,100,101,45,110,111,116,105,99,101,2,3,33,27,32,136,104,168,162,49,141,54,47,27,8,1,7,46,111,45,100,97,116,97,2,1,231,42,79,228,8,1,8,46,111,45,109,111,100,97,108,2,1,227,218,132,131,8,1,17,46,111,45,112,111,112,117,112,45,45,99,111,111,107,105,101,115,2,1,217,41,97,254,8,1,5,46,111,55,101,53,2,1,77,29,43,237,8,1,7,46,111,90,109,119,50,101,2,1,102,41,154,253,8,1,24,46,111,98,45,99,111,111,107,105,101,115,111,118,101,114,108,97,121,45,109,111,100,97,108,2,1,149,79,144,169,8,1,21,46,111,99,99,114,112,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,11,94,177,74,8,1,18,46,111,109,119,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,51,103,123,132,8,1,19,46,111,110,45,115,99,114,101,101,110,45,109,101,115,115,97,103,101,115,2,1,179,151,191,181,8,1,31,46,111,110,101,45,112,105,120,101,108,45,109,97,114,103,105,110,45,98,111,116,116,111,109,46,115,103,45,66,111,120,2,1,13,55,42,72,8,1,27,46,111,110,101,70,111,111,116,101,114,45,68,83,45,69,110,116,114,121,80,111,105,110,116,49,45,49,2,1,38,157,28,48,8,1,9,46,111,110,101,116,114,117,115,116,2,1,183,153,49,236,8,1,12,46,111,112,97,99,105,116,121,45,49,48,48,2,1,243,27,131,253,8,1,26,46,111,112,97,99,105,116,121,45,49,48,48,46,116,114,97,110,115,108,97,116,101,45,121,45,48,2,1,143,201,176,142,8,1,13,46,111,112,116,45,105,110,45,109,111,100,97,108,2,3,42,3,188,223,69,58,98,116,128,76,252,141,8,1,15,46,111,112,116,105,110,45,115,100,107,45,114,111,111,116,2,2,42,254,181,132,221,147,144,60,8,1,15,46,111,114,101,106,105,109,101,45,78,111,116,105,99,101,2,1,153,67,142,254,8,1,18,46,111,114,105,103,105,110,45,115,105,116,101,115,116,114,105,112,101,2,1,58,17,27,252,8,1,11,46,111,116,45,99,111,111,107,105,101,115,2,1,120,186,62,94,8,1,11,46,111,116,45,102,97,100,101,45,105,110,2,1,135,125,62,117,8,1,25,46,111,118,95,98,111,116,116,111,109,95,102,108,111,97,116,105,110,103,95,112,97,110,101,108,2,1,186,19,188,239,8,1,8,46,111,118,101,114,108,97,121,2,1,35,34,171,242,8,1,37,46,111,118,101,114,108,97,121,45,45,99,111,111,107,105,101,95,98,97,110,110,101,114,95,119,105,116,104,111,117,116,95,105,99,111,110,115,2,1,39,218,238,170,8,1,17,46,111,118,101,114,108,97,121,45,98,97,99,107,100,114,111,112,2,6,13,57,60,173,28,211,126,234,70,214,169,234,148,192,187,124,148,193,224,244,155,100,20,142,8,1,15,46,111,118,101,114,108,97,121,45,98,97,110,110,101,114,2,1,37,117,198,205,8,1,18,46,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,2,1,149,109,173,38,8,1,21,46,111,118,101,114,108,97,121,45,103,100,112,114,45,99,111,110,115,101,110,116,2,1,168,80,91,114,8,1,30,46,111,118,101,114,108,97,121,45,109,111,98,105,108,101,45,115,116,121,108,101,115,45,101,110,97,98,108,101,100,2,1,240,102,52,177,8,1,23,46,111,118,101,114,108,97,121,45,109,111,100,97,108,115,45,119,114,97,112,112,101,114,2,1,39,218,238,170,8,1,16,46,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,2,1,168,80,91,114,8,1,11,46,111,118,101,114,108,97,121,80,111,112,2,1,148,188,98,156,8,1,20,46,111,118,101,114,108,97,121,95,102,117,108,108,95,115,99,114,101,101,110,2,1,20,109,229,87,8,1,9,46,111,118,101,114,108,97,121,115,2,1,111,178,42,94,8,1,7,46,111,119,114,97,45,100,2,1,67,86,100,255,8,1,27,46,112,45,48,46,111,118,101,114,102,108,111,119,45,97,117,116,111,46,102,108,101,120,45,99,111,108,2,1,68,67,17,3,8,1,20,46,112,45,100,105,97,108,111,103,45,101,110,116,101,114,45,100,111,110,101,2,1,204,22,227,125,8,1,4,46,112,49,53,2,1,246,63,76,54,8,1,17,46,112,95,100,114,97,119,101,114,95,119,114,97,112,112,101,114,2,1,196,237,204,245,8,1,19,46,112,97,103,101,45,98,103,32,62,32,46,119,114,97,112,112,101,114,2,1,223,20,48,48,8,1,24,46,112,97,103,101,45,98,111,116,116,111,109,45,109,101,115,115,97,103,101,45,98,111,120,2,1,170,226,125,232,8,1,16,46,112,97,103,101,45,99,111,111,107,105,101,45,98,97,114,2,1,126,35,37,87,8,1,14,46,112,97,103,101,45,104,105,110,116,45,98,111,120,2,1,134,199,163,234,8,1,18,46,112,97,103,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,12,243,12,217,8,1,13,46,112,97,103,101,45,111,118,101,114,108,97,121,2,1,3,97,197,234,8,1,21,46,112,97,103,101,45,111,118,101,114,108,97,121,95,119,114,97,112,112,101,114,2,2,90,155,229,237,148,181,249,67,8,1,17,46,112,97,103,101,78,111,116,105,102,105,99,97,116,105,111,110,2,1,210,201,238,147,8,1,12,46,112,97,103,101,79,118,101,114,108,97,121,2,1,163,128,97,119,8,1,17,46,112,97,103,101,95,95,108,101,103,97,108,45,108,105,110,107,2,1,107,154,211,99,8,1,13,46,112,97,103,101,95,119,97,114,110,105,110,103,2,1,77,9,154,242,8,1,14,46,112,97,110,101,108,95,99,111,111,107,105,101,115,2,1,251,213,253,125,8,1,16,46,112,98,45,115,109,46,99,111,110,116,97,105,110,101,114,2,1,88,31,148,48,8,1,4,46,112,99,98,2,2,45,212,46,28,131,228,126,239,8,1,12,46,112,99,98,95,95,98,97,110,110,101,114,2,2,219,138,129,254,249,106,160,176,8,1,22,46,112,99,104,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,114,2,1,166,58,60,28,8,1,11,46,112,100,112,97,45,112,111,112,117,112,2,1,48,216,120,155,8,1,18,46,112,101,114,115,105,115,116,101,110,116,77,101,115,115,97,103,101,2,1,70,14,141,84,8,1,14,46,112,101,114,115,111,110,97,108,45,100,97,116,97,2,1,64,175,232,106,8,1,26,46,112,102,45,104,101,97,100,101,114,45,99,111,111,107,105,101,115,116,97,116,101,109,101,110,116,2,1,20,229,178,85,8,1,25,46,112,102,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,110,111,116,105,99,101,2,1,255,161,201,246,8,1,18,46,112,103,45,109,111,100,97,108,45,98,108,97,99,107,111,117,116,2,1,39,53,198,73,8,1,4,46,112,103,112,2,1,231,156,214,67,8,1,12,46,112,105,110,45,98,46,102,105,120,101,100,2,1,160,164,12,198,8,1,18,46,112,105,110,45,98,46,112,105,110,45,108,46,102,105,120,101,100,2,1,123,195,106,63,8,1,18,46,112,105,110,45,114,46,112,105,110,45,98,46,102,105,120,101,100,2,1,120,160,15,99,8,1,11,46,112,105,120,45,99,111,111,107,105,101,2,1,54,166,225,196,8,1,22,46,112,105,120,112,97,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,2,1,127,56,97,56,8,1,7,46,112,111,108,105,99,101,2,1,97,164,91,12,8,1,9,46,112,111,108,105,99,105,101,115,2,2,23,72,201,214,129,71,110,167,8,1,7,46,112,111,108,105,99,121,2,6,95,75,28,44,129,61,119,206,161,24,177,136,162,67,202,28,203,31,73,12,237,250,200,117,8,1,11,46,112,111,108,105,99,121,45,98,97,114,2,1,250,66,124,16,8,1,14,46,112,111,108,105,99,121,45,100,105,97,108,111,103,2,1,148,181,65,54,8,1,12,46,112,111,108,105,99,121,45,105,110,102,111,2,2,89,214,208,182,109,205,237,116,8,1,13,46,112,111,108,105,99,121,45,108,97,98,101,108,2,1,61,98,195,228,8,1,20,46,112,111,108,105,99,121,45,109,97,105,110,45,119,114,114,97,112,101,114,2,1,36,26,219,227,8,1,14,46,112,111,108,105,99,121,45,110,111,116,105,99,101,2,1,97,198,12,234,8,1,13,46,112,111,108,105,99,121,45,112,97,110,101,108,2,1,206,92,190,52,8,1,14,46,112,111,108,105,99,121,45,112,111,112,45,117,112,2,1,129,67,5,120,8,1,13,46,112,111,108,105,99,121,45,112,111,112,117,112,2,1,70,196,187,83,8,1,11,46,112,111,108,105,99,121,78,111,116,101,2,1,121,246,245,101,8,1,13,46,112,111,108,105,99,121,95,95,97,114,101,97,2,1,220,245,238,138,8,1,13,46,112,111,108,105,99,121,95,112,111,112,117,112,2,2,36,225,123,112,203,160,43,81,8,1,13,46,112,111,108,105,99,121,98,97,110,110,101,114,2,1,2,208,38,221,8,1,16,46,112,111,108,105,116,105,99,97,82,101,119,97,114,100,115,2,2,82,60,130,205,124,153,156,166,8,1,7,46,112,111,111,107,105,101,2,1,37,112,42,25,8,1,4,46,112,111,112,2,1,181,85,193,99,8,1,12,46,112,111,112,45,99,111,110,116,101,110,116,2,1,101,46,158,147,8,1,7,46,112,111,112,45,117,112,2,1,18,164,234,120,8,1,14,46,112,111,112,45,117,112,45,98,97,110,110,101,114,2,1,36,198,106,129,8,1,7,46,112,111,112,98,111,120,2,1,142,39,243,200,8,1,14,46,112,111,112,105,110,95,99,111,110,115,101,110,116,2,1,20,109,229,87,8,1,8,46,112,111,112,109,97,107,101,2,1,179,4,244,92,8,1,15,46,112,111,112,117,112,45,45,99,111,111,107,105,101,115,2,3,84,156,69,130,88,74,183,227,126,236,154,249,8,1,13,46,112,111,112,117,112,45,97,99,99,101,115,115,2,1,177,6,107,63,8,1,23,46,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,45,98,111,116,116,111,109,2,1,156,91,175,21,8,1,32,46,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,45,99,111,110,102,105,100,101,110,116,105,97,108,105,116,121,2,1,189,53,11,170,8,1,14,46,112,111,112,117,112,45,99,111,110,116,101,110,116,2,1,134,153,93,38,8,1,13,46,112,111,112,117,112,45,100,105,97,108,111,103,2,1,60,194,103,117,8,1,12,46,112,111,112,117,112,45,105,110,110,101,114,2,1,220,62,242,238,8,1,17,46,112,111,112,117,112,45,111,118,101,114,108,97,121,80,111,112,2,1,243,55,71,107,8,1,13,46,112,111,112,117,112,45,119,105,110,100,111,119,2,1,248,199,111,200,8,1,14,46,112,111,112,117,112,45,119,114,97,112,112,101,114,2,1,31,73,230,29,8,1,14,46,112,111,112,117,112,80,111,108,105,99,105,101,115,2,1,57,240,217,48,8,1,12,46,112,111,112,117,112,95,98,108,111,99,107,2,1,148,193,181,139,8,1,14,46,112,111,112,117,112,95,100,101,115,107,116,111,112,2,1,101,244,14,127,8,1,14,46,112,111,112,117,112,95,112,114,105,118,97,99,121,2,1,89,113,243,125,8,1,17,46,112,111,112,117,112,95,116,111,115,69,100,105,116,105,111,110,2,1,38,157,25,55,8,1,9,46,112,111,112,117,112,98,111,120,2,1,185,102,34,104,8,1,10,46,112,111,112,117,112,104,111,109,101,2,1,168,97,156,130,8,1,3,46,112,112,2,1,201,155,242,96,8,1,10,46,112,112,45,102,111,111,116,101,114,2,2,25,75,5,224,170,137,194,219,8,1,5,46,112,112,45,112,2,1,18,200,164,154,8,1,23,46,112,112,103,45,99,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,38,157,53,243,8,1,20,46,112,112,114,101,108,111,97,100,101,100,95,108,105,103,104,116,98,111,120,2,1,112,172,6,241,8,1,6,46,112,112,114,101,109,2,1,119,59,106,232,8,1,10,46,112,112,115,45,112,111,112,117,112,2,1,223,172,190,52,8,1,23,46,112,114,45,99,111,111,107,105,101,45,109,111,100,97,108,45,98,111,116,116,111,109,2,2,157,35,169,114,174,26,226,2,8,1,9,46,112,114,100,45,119,114,97,112,2,1,73,61,197,34,8,1,16,46,112,114,101,102,101,114,101,110,99,101,115,45,98,97,114,2,1,187,0,228,44,8,1,22,46,112,114,101,118,105,101,119,45,99,111,111,107,105,101,115,45,97,108,101,114,116,2,1,11,114,181,74,8,1,10,46,112,114,105,118,45,116,105,112,115,2,1,22,7,182,138,8,1,8,46,112,114,105,118,97,99,121,2,9,2,234,2,105,27,241,10,29,34,57,116,199,55,197,14,56,123,15,185,5,139,52,58,128,148,192,109,107,197,5,135,126,237,252,193,106,8,1,18,46,112,114,105,118,97,99,121,45,97,103,114,101,101,109,101,110,116,2,1,211,86,99,241,8,1,12,46,112,114,105,118,97,99,121,45,98,97,114,2,1,107,201,167,11,8,1,12,46,112,114,105,118,97,99,121,45,98,111,120,2,1,177,214,185,93,8,1,15,46,112,114,105,118,97,99,121,45,98,117,116,116,111,110,2,1,211,221,156,70,8,1,16,46,112,114,105,118,97,99,121,45,99,97,108,108,111,117,116,2,1,238,168,80,43,8,1,27,46,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,45,101,110,116,101,114,45,100,111,110,101,2,1,148,181,106,64,8,1,18,46,112,114,105,118,97,99,121,45,99,111,110,116,97,105,110,101,114,2,2,123,217,131,72,153,155,125,31,8,1,16,46,112,114,105,118,97,99,121,45,99,111,110,116,101,110,116,2,2,38,157,26,200,126,191,53,140,8,1,16,46,112,114,105,118,97,99,121,45,99,111,110,116,114,111,108,2,1,205,143,109,10,8,1,13,46,112,114,105,118,97,99,121,45,100,97,116,97,2,1,94,133,114,44,8,1,15,46,112,114,105,118,97,99,121,45,100,105,97,108,111,103,2,1,166,25,111,192,8,1,15,46,112,114,105,118,97,99,121,45,104,111,108,100,101,114,2,1,213,96,203,200,8,1,13,46,112,114,105,118,97,99,121,45,108,105,110,107,2,1,181,88,46,124,8,1,13,46,112,114,105,118,97,99,121,45,109,101,110,117,2,1,202,233,23,139,8,1,14,46,112,114,105,118,97,99,121,45,112,97,110,101,108,2,1,98,255,156,44,8,1,20,46,112,114,105,118,97,99,121,45,112,111,108,105,99,116,121,45,98,97,114,2,1,110,147,240,17,8,1,23,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,100,101,115,107,116,111,112,2,1,17,239,87,253,8,1,61,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,95,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,45,109,111,100,97,108,95,95,119,97,115,121,79,2,1,93,101,176,210,8,1,19,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,111,112,2,1,48,39,170,156,8,1,23,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,115,108,105,100,101,117,112,2,1,20,100,75,218,8,1,15,46,112,114,105,118,97,99,121,45,114,105,103,104,116,115,2,1,9,73,24,105,8,1,16,46,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,2,1,202,233,23,139,8,1,15,46,112,114,105,118,97,99,121,45,119,105,100,103,101,116,2,1,62,135,83,33,8,1,16,46,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,2,1,137,248,12,93,8,1,12,46,112,114,105,118,97,99,121,65,114,101,97,2,1,233,248,127,214,8,1,11,46,112,114,105,118,97,99,121,66,111,120,2,1,111,138,198,134,8,1,11,46,112,114,105,118,97,99,121,76,97,119,2,1,255,36,1,231,8,1,14,46,112,114,105,118,97,99,121,80,114,111,109,112,116,2,1,129,46,109,134,8,1,12,46,112,114,105,118,97,99,121,95,98,111,120,2,1,6,183,242,117,8,1,14,46,112,114,105,118,97,99,121,95,99,104,101,99,107,2,1,20,227,18,30,8,1,17,46,112,114,105,118,97,99,121,95,112,111,108,105,99,105,101,115,2,1,19,224,33,148,8,1,18,46,112,114,105,118,97,99,121,95,115,116,97,116,101,109,101,110,116,2,1,169,146,111,175,8,1,13,46,112,114,105,118,97,99,121,95,116,105,112,115,2,1,187,93,227,142,8,1,22,46,112,114,105,118,97,99,121,111,112,116,105,111,110,95,111,118,101,114,108,97,121,2,1,119,192,102,100,8,1,24,46,112,114,105,118,97,99,121,115,101,116,116,105,110,103,115,95,95,98,97,110,110,101,114,2,1,38,157,171,200,8,1,12,46,112,114,105,118,97,99,121,119,114,97,112,2,1,251,60,187,121,8,1,13,46,112,114,105,118,97,114,121,67,108,97,115,115,2,1,250,183,236,124,8,1,18,46,112,114,111,106,101,99,116,115,45,116,97,107,101,111,118,101,114,2,1,100,74,251,115,8,1,10,46,112,114,111,109,105,110,101,110,116,2,1,205,78,199,204,8,1,23,46,112,114,111,109,111,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,148,181,46,176,8,1,10,46,112,114,111,109,111,116,105,111,110,2,1,122,175,180,14,8,1,24,46,112,114,111,109,111,116,105,111,110,45,115,116,114,105,112,45,119,114,97,112,112,101,114,2,1,98,192,184,172,8,1,7,46,112,114,111,109,112,116,2,1,69,200,87,232,8,1,11,46,112,114,111,109,112,116,45,98,111,120,2,1,85,65,122,244,8,1,18,46,112,114,111,118,105,110,99,101,45,115,101,108,101,99,116,111,114,2,1,52,97,161,198,8,1,6,46,112,114,121,99,107,2,1,92,4,226,33,8,1,6,46,112,116,45,49,48,2,1,127,240,247,209,8,1,8,46,112,117,98,45,116,105,112,2,2,127,98,183,242,191,250,221,235,8,1,14,46,112,117,98,108,105,99,45,99,111,111,107,105,101,2,1,116,49,225,66,8,1,27,46,112,117,98,108,105,99,45,115,101,114,118,105,99,101,45,97,110,111,117,110,99,101,109,101,110,116,2,1,103,195,40,99,8,1,13,46,112,117,108,115,101,45,98,97,110,110,101,114,2,1,31,73,231,102,8,1,14,46,112,117,109,45,99,111,110,116,97,105,110,101,114,2,2,61,114,55,87,197,230,160,90,8,1,20,46,112,117,115,104,45,98,97,110,110,101,114,45,99,111,110,115,101,110,116,2,1,107,130,33,238,8,1,14,46,112,117,115,104,45,100,111,119,110,45,99,116,97,2,1,9,63,139,200,8,1,8,46,112,117,115,104,45,109,101,2,1,231,77,54,229,8,1,11,46,112,119,97,45,112,114,111,109,112,116,2,1,190,140,104,188,8,1,11,46,112,120,45,49,50,46,112,121,45,51,2,1,191,182,122,24,8,1,29,46,112,120,95,45,104,45,97,117,116,111,46,112,120,95,45,122,45,105,110,100,101,120,45,49,48,48,48,48,2,1,45,81,185,119,8,1,29,46,112,121,45,49,54,46,104,45,102,117,108,108,46,119,45,102,117,108,108,46,109,97,120,45,119,45,115,109,2,1,149,123,79,28,8,1,16,46,112,121,45,51,46,109,97,120,45,119,45,102,117,108,108,2,1,253,133,56,172,8,1,21,46,112,121,107,71,110,86,88,81,73,100,55,82,48,95,105,83,56,89,48,82,2,1,141,124,41,202,8,1,19,46,112,122,45,104,105,100,101,45,110,101,119,115,114,101,97,100,101,114,2,1,203,80,115,129,8,1,16,46,113,45,99,97,114,100,95,95,115,101,99,116,105,111,110,2,1,83,49,93,0,8,1,30,46,113,45,110,111,116,105,102,105,99,97,116,105,111,110,115,95,95,108,105,115,116,45,45,98,111,116,116,111,109,2,1,92,105,94,164,8,1,9,46,113,107,46,113,106,46,113,105,2,1,24,105,238,35,8,1,19,46,114,45,49,52,53,100,98,108,109,46,114,45,110,99,52,97,51,48,2,1,190,180,233,118,8,1,10,46,114,45,49,112,48,100,116,97,105,2,1,197,83,26,10,8,1,9,46,114,45,108,49,51,100,112,121,2,2,138,121,193,40,218,33,206,134,8,1,9,46,114,45,109,118,99,102,101,106,2,1,180,199,91,226,8,1,40,46,114,45,117,56,115,49,100,46,114,45,49,114,55,52,104,57,52,46,114,45,49,110,108,119,48,105,109,46,99,115,115,45,49,100,98,106,99,52,110,2,1,184,108,108,166,8,1,12,46,114,97,121,65,108,101,114,116,66,111,120,2,1,151,176,224,28,8,1,4,46,114,99,99,2,1,109,252,62,114,8,1,25,46,114,100,109,45,100,97,97,99,45,110,111,116,105,99,101,45,116,101,109,112,108,97,116,101,2,1,255,180,42,229,8,1,24,46,114,101,97,99,116,45,99,111,111,107,105,101,110,111,116,105,99,101,45,114,111,111,116,2,2,85,224,116,244,157,235,95,150,8,1,31,46,114,101,99,111,109,109,101,110,100,97,116,105,111,110,45,109,111,100,97,108,95,95,98,97,99,107,100,114,111,112,2,1,237,143,239,236,8,1,22,46,114,101,103,105,111,110,45,109,97,115,116,104,101,97,100,45,105,110,110,101,114,2,1,161,56,150,168,8,1,19,46,114,101,109,97,114,107,101,116,105,110,103,45,98,97,110,110,101,114,2,1,129,68,98,51,8,1,9,46,114,101,109,105,110,100,101,114,2,1,40,167,30,182,8,1,13,46,114,101,118,101,97,108,45,109,111,100,97,108,2,1,123,66,119,155,8,1,22,46,114,101,118,101,97,108,45,109,111,100,97,108,45,98,103,45,119,104,105,116,101,2,1,125,239,148,105,8,1,15,46,114,101,118,101,97,108,45,111,118,101,114,108,97,121,2,2,17,107,167,89,53,93,39,172,8,1,11,46,114,104,99,45,98,97,110,110,101,114,2,2,102,135,212,26,231,241,117,60,8,1,6,46,114,104,118,81,97,2,1,139,43,181,67,8,1,19,46,114,105,99,111,108,97,45,99,111,111,107,105,101,45,105,110,102,111,2,1,98,194,105,98,8,1,13,46,114,109,113,45,100,54,48,98,56,52,100,54,2,1,81,147,75,25,8,1,10,46,114,111,97,114,45,98,111,100,121,2,1,171,88,33,72,8,1,11,46,114,111,111,116,45,56,97,98,98,52,2,1,13,149,168,116,8,1,11,46,114,111,111,116,45,98,99,97,48,57,2,1,13,149,168,116,8,1,11,46,114,112,108,109,45,97,108,101,114,116,2,1,136,109,113,5,8,1,16,46,114,115,45,109,101,115,115,97,103,101,45,105,110,102,111,2,1,22,35,9,118,8,1,7,46,114,115,116,98,111,120,2,1,136,11,235,19,8,1,9,46,114,115,116,98,111,120,101,115,2,2,128,148,153,0,129,45,228,196,8,1,26,46,114,119,100,45,104,101,97,100,101,114,45,99,111,111,107,105,101,45,115,101,99,116,105,111,110,2,1,115,138,237,123,8,1,15,46,115,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,27,98,210,27,8,1,31,46,115,97,110,105,116,97,115,45,99,111,111,107,105,101,45,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,2,1,188,202,130,147,8,1,19,46,115,99,45,49,103,110,109,115,50,48,45,48,46,86,112,99,103,122,2,3,187,237,92,49,194,197,250,17,205,14,140,94,8,1,20,46,115,99,45,49,108,100,103,109,117,103,45,48,46,99,75,112,108,73,83,2,3,187,237,92,49,194,197,250,17,205,14,140,94,8,1,13,46,115,99,45,49,113,118,102,52,104,98,45,48,2,1,134,21,212,107,8,1,21,46,115,99,45,51,102,51,55,50,52,52,99,45,48,46,106,77,75,114,74,119,2,1,49,58,5,113,8,1,9,46,115,99,45,69,72,79,106,101,2,1,131,45,226,100,8,1,10,46,115,99,45,99,111,111,73,88,75,2,1,35,97,30,21,8,1,14,46,115,99,45,99,111,111,107,105,101,45,112,111,112,2,1,148,121,148,124,8,1,16,46,115,99,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,183,189,136,228,8,1,10,46,115,99,45,101,100,76,79,104,109,2,1,44,103,246,97,8,1,15,46,115,99,45,110,111,116,105,45,98,97,110,110,101,114,2,1,121,94,11,239,8,1,17,46,115,99,45,117,45,112,97,100,100,105,110,103,45,121,45,109,2,1,61,106,106,219,8,1,9,46,115,99,45,121,119,70,122,65,2,1,198,22,40,136,8,1,7,46,115,99,114,101,101,110,2,1,47,93,110,145,8,1,19,46,115,99,114,101,101,110,66,108,111,99,107,79,118,101,114,108,97,121,2,1,95,146,32,61,8,1,18,46,115,100,115,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,89,212,205,78,8,1,21,46,115,101,99,116,105,111,110,45,45,97,108,101,114,116,45,112,97,110,101,108,2,1,36,171,61,63,8,1,15,46,115,101,99,116,105,111,110,45,112,114,111,109,112,116,2,1,95,244,255,108,8,1,16,46,115,101,99,117,114,105,116,121,45,112,111,108,105,99,121,2,1,209,115,119,140,8,1,21,46,115,101,108,101,99,116,45,115,99,104,111,111,108,45,102,111,111,116,101,114,2,1,27,147,159,88,8,1,17,46,115,101,112,45,99,111,111,107,105,101,115,45,98,111,120,115,2,1,83,5,198,70,8,1,20,46,115,101,115,115,105,111,110,110,111,116,105,102,105,99,97,116,105,111,110,2,1,124,38,52,31,8,1,11,46,115,101,116,112,114,105,118,97,99,121,2,1,43,254,37,195,8,1,35,46,115,103,112,98,45,112,111,112,117,112,45,100,105,97,108,111,103,45,109,97,105,110,45,100,105,118,45,119,114,97,112,112,101,114,2,1,238,27,125,250,8,1,19,46,115,103,112,98,45,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,238,27,125,250,8,1,15,46,115,104,45,112,97,103,101,45,110,111,116,105,99,101,2,1,57,122,162,29,8,1,11,46,115,104,97,100,111,119,45,51,120,108,2,1,168,93,29,49,8,1,21,46,115,104,97,100,111,119,45,99,111,111,107,105,101,115,98,97,110,110,101,114,2,1,48,22,6,164,8,1,19,46,115,104,97,100,111,119,45,115,109,46,98,103,45,119,104,105,116,101,2,1,42,50,213,7,8,1,35,46,115,104,97,100,111,119,46,116,101,120,116,45,119,104,105,116,101,46,98,103,45,103,114,97,121,45,100,97,114,107,45,109,105,100,2,1,249,33,135,142,8,1,24,46,115,104,97,114,101,100,95,99,111,110,116,97,105,110,101,114,95,95,79,90,110,102,95,2,1,54,20,31,218,8,1,13,46,115,104,101,108,108,67,111,111,107,105,101,115,2,1,142,140,33,97,8,1,5,46,115,104,111,119,2,1,60,66,3,30,8,1,16,46,115,104,111,119,45,99,111,111,107,105,101,45,100,105,118,2,1,226,224,172,210,8,1,11,46,115,104,111,119,66,97,110,110,101,114,2,5,75,165,69,166,108,123,49,255,132,60,134,190,155,237,184,128,252,237,6,220,8,1,14,46,115,104,111,119,95,115,49,111,121,57,99,120,101,2,1,78,94,135,235,8,1,17,46,115,104,111,119,99,111,111,107,105,101,100,105,97,108,111,103,2,1,63,94,57,250,8,1,6,46,115,104,111,119,110,2,1,128,97,159,160,8,1,18,46,115,105,103,110,117,112,45,99,116,97,95,95,102,105,120,101,100,2,1,30,73,63,247,8,1,18,46,115,105,109,45,99,111,111,107,105,101,115,45,112,111,112,117,112,2,1,151,157,120,87,8,1,21,46,115,105,109,112,108,101,45,99,111,111,107,105,101,45,119,105,100,103,101,116,2,2,8,110,93,144,58,217,96,221,8,1,21,46,115,105,109,112,108,101,45,100,105,115,109,105,115,115,45,97,108,101,114,116,2,1,65,251,56,146,8,1,13,46,115,105,109,112,108,101,45,109,111,100,97,108,2,1,24,94,203,68,8,1,21,46,115,105,109,112,108,101,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,24,94,203,68,8,1,22,46,115,105,109,112,108,101,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,233,223,28,54,8,1,20,46,115,105,109,112,108,101,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,233,223,28,54,8,1,12,46,115,105,116,101,45,98,97,110,110,101,114,2,1,57,61,154,5,8,1,20,46,115,105,116,101,45,98,108,117,114,45,99,111,110,116,97,105,110,101,114,2,1,35,168,161,23,8,1,12,46,115,105,116,101,45,102,111,111,116,101,114,2,2,54,49,50,74,111,88,238,85,8,1,13,46,115,105,116,101,45,109,101,115,115,97,103,101,2,1,59,46,153,212,8,1,28,46,115,105,116,101,45,109,101,115,115,97,103,101,45,98,97,110,110,101,114,45,119,97,114,110,105,110,103,2,1,199,32,200,189,8,1,22,46,115,105,116,101,45,109,111,100,97,108,115,45,99,111,110,116,97,105,110,101,114,2,1,16,216,185,81,8,1,27,46,115,105,116,101,45,109,111,100,97,108,115,95,95,109,111,100,97,108,45,45,99,111,111,107,105,101,2,1,148,197,92,247,8,1,18,46,115,105,116,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,2,103,216,232,49,215,110,241,47,8,1,13,46,115,105,116,101,45,111,118,101,114,108,97,121,2,1,16,216,185,81,8,1,13,46,115,105,116,101,45,119,97,114,110,105,110,103,2,2,166,143,132,102,194,128,153,7,8,1,17,46,115,105,116,101,65,108,101,114,116,77,101,115,115,97,103,101,2,1,56,241,108,233,8,1,10,46,115,105,116,101,97,108,101,114,116,2,1,35,95,182,222,8,1,17,46,115,105,116,101,99,111,111,107,105,101,112,111,108,105,99,121,2,1,38,157,53,122,8,1,16,46,115,105,116,101,119,105,100,101,45,110,111,116,105,99,101,2,3,33,27,32,136,104,168,162,49,141,54,47,27,8,1,12,46,115,107,105,110,45,111,112,116,105,111,110,2,1,114,129,22,51,8,1,9,46,115,108,105,100,101,45,117,112,2,1,100,104,214,128,8,1,14,46,115,108,105,100,105,110,103,45,112,111,112,117,112,2,1,80,214,121,172,8,1,17,46,115,109,67,111,110,116,97,105,110,101,114,73,110,110,101,114,2,1,22,215,118,3,8,1,10,46,115,109,99,111,111,107,105,101,115,2,1,188,12,126,83,8,1,6,46,115,110,97,99,107,2,1,210,233,231,79,8,1,9,46,115,110,97,99,107,98,97,114,2,1,84,42,218,235,8,1,20,46,115,110,97,99,107,98,97,114,45,101,110,116,101,114,45,100,111,110,101,2,1,173,209,21,159,8,1,19,46,115,110,99,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,127,191,227,244,8,1,18,46,115,111,102,116,77,101,115,115,97,103,101,115,45,105,116,101,109,2,1,132,6,239,238,8,1,20,46,115,111,110,111,115,99,111,110,116,101,110,116,45,98,97,110,110,101,114,2,1,129,41,166,162,8,1,23,46,115,112,97,99,101,45,121,45,52,46,105,116,101,109,115,45,99,101,110,116,101,114,2,1,218,245,178,176,8,1,11,46,115,112,101,99,105,97,108,77,115,103,2,1,209,194,168,62,8,1,19,46,115,112,105,110,45,97,105,45,103,116,109,45,98,97,110,110,101,114,2,1,144,227,180,22,8,1,13,46,115,112,114,100,45,99,111,110,115,101,110,116,2,1,165,252,175,181,8,1,15,46,115,112,117,45,98,111,116,116,111,109,45,98,97,114,2,1,5,66,8,182,8,1,7,46,115,112,120,99,105,98,2,1,148,193,132,48,8,1,24,46,115,113,115,45,115,108,105,100,101,45,108,97,121,101,114,45,99,111,110,116,101,110,116,2,1,171,148,67,216,8,1,18,46,115,113,115,45,115,108,105,100,101,45,119,114,97,112,112,101,114,2,1,35,39,110,27,8,1,57,46,115,114,99,45,99,111,109,112,111,110,101,110,116,115,45,99,111,110,110,101,99,116,101,100,45,100,105,97,108,111,103,45,100,105,97,108,111,103,95,95,114,111,111,116,95,111,112,101,110,45,45,49,74,122,114,78,2,1,86,250,211,89,8,1,59,46,115,114,99,45,99,111,109,112,111,110,101,110,116,115,45,117,116,105,108,115,45,95,95,95,77,111,100,97,108,79,118,101,114,108,97,121,95,95,122,105,103,122,97,103,45,109,111,100,97,108,95,95,95,50,112,79,88,109,2,1,230,170,49,20,8,1,34,46,115,114,99,45,117,105,45,67,111,111,107,105,101,45,67,111,111,107,105,101,95,95,114,111,111,116,45,45,51,76,109,108,52,2,1,143,125,48,215,8,1,19,46,115,116,105,99,107,45,102,111,111,116,101,114,45,112,97,110,101,108,2,1,183,251,152,179,8,1,31,46,115,116,105,99,107,121,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,2,1,52,97,161,198,8,1,14,46,115,116,105,99,107,121,45,102,111,111,116,101,114,2,3,24,117,122,27,63,22,31,80,85,99,85,97,8,1,19,46,115,116,105,99,107,121,45,110,111,116,105,99,101,45,119,114,97,112,2,1,25,237,81,46,8,1,19,46,115,116,105,99,107,121,95,98,111,116,116,111,109,95,119,114,97,112,2,1,56,97,192,197,8,1,20,46,115,116,114,97,112,108,105,110,101,45,99,111,110,116,97,105,110,101,114,2,1,49,210,96,234,8,1,10,46,115,116,119,45,97,108,101,114,116,2,1,191,76,96,7,8,1,41,46,115,116,121,108,101,115,95,95,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,45,115,99,45,49,99,109,115,51,56,118,45,57,2,1,46,10,7,192,8,1,24,46,115,116,121,108,101,115,95,99,111,110,116,97,105,110,101,114,95,95,95,103,97,50,75,2,1,126,167,208,63,8,1,28,46,115,116,121,108,101,115,95,99,111,111,107,105,101,115,66,97,110,110,101,114,95,95,50,83,52,69,49,2,1,240,215,125,227,8,1,27,46,115,116,121,108,101,115,95,119,101,85,115,101,67,111,111,107,105,101,115,95,95,90,103,95,121,98,2,1,82,115,145,185,8,1,15,46,115,117,99,99,101,115,115,77,101,115,115,97,103,101,2,1,219,20,36,56,8,1,27,46,115,117,105,45,115,105,116,101,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,2,1,199,252,67,142,8,1,21,46,115,118,45,99,111,111,107,105,101,45,109,97,110,97,103,101,109,101,110,116,2,1,50,167,78,243,8,1,15,46,115,118,101,108,116,101,45,49,55,108,56,105,108,110,2,1,91,197,220,238,8,1,20,46,115,118,101,108,116,101,45,49,120,104,105,52,54,99,46,119,114,97,112,2,1,125,155,7,221,8,1,14,46,115,118,101,108,116,101,45,100,120,48,108,51,105,2,1,219,112,21,128,8,1,14,46,115,118,101,108,116,101,45,102,110,118,97,117,50,2,1,48,9,58,0,8,1,11,46,115,119,97,108,50,45,115,104,111,119,2,1,53,170,58,213,8,1,21,46,115,119,105,112,101,114,45,115,108,105,100,101,45,105,109,103,45,116,120,116,2,1,129,61,81,3,8,1,14,46,115,119,105,116,99,104,45,112,114,111,109,112,116,2,1,135,171,144,6,8,1,30,46,115,121,115,116,101,109,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,2,2,100,99,92,39,229,5,146,102,8,1,16,46,116,45,99,111,110,115,101,110,116,80,114,111,109,112,116,2,1,10,158,195,148,8,1,14,46,116,97,110,100,99,45,119,114,97,112,112,101,114,2,1,209,233,175,20,8,1,12,46,116,98,108,114,45,98,111,116,116,111,109,2,1,121,5,153,55,8,1,23,46,116,99,95,95,99,111,111,107,105,101,45,119,114,97,112,45,45,111,117,116,101,114,2,1,42,178,25,99,8,1,6,46,116,99,101,108,108,2,1,66,44,100,148,8,1,11,46,116,100,114,45,114,105,98,98,111,110,2,1,24,130,38,49,8,1,19,46,116,100,118,50,45,97,112,112,108,101,116,45,110,97,103,98,97,114,2,1,126,1,103,52,8,1,9,46,116,101,97,45,110,101,119,115,2,1,90,96,188,254,8,1,18,46,116,101,114,109,115,45,97,108,101,114,116,45,102,105,120,101,100,2,1,231,77,54,229,8,1,29,46,116,101,114,109,115,45,97,110,100,45,99,111,110,100,105,116,105,111,110,115,45,119,114,97,112,112,101,114,2,1,166,144,213,18,8,1,11,46,116,101,114,109,115,45,99,111,110,100,2,1,122,172,63,148,8,1,17,46,116,101,114,109,115,45,111,102,45,115,101,114,118,105,99,101,2,1,38,157,25,55,8,1,13,46,116,101,114,109,115,45,111,102,45,117,115,101,2,1,119,72,228,42,8,1,20,46,116,101,114,109,115,45,111,102,45,117,115,101,45,104,101,97,100,101,114,2,1,120,203,45,164,8,1,14,46,116,101,114,109,115,45,112,114,105,118,97,99,121,2,1,149,234,72,41,8,1,28,46,116,101,114,109,115,102,101,101,100,45,112,99,49,45,110,111,116,105,99,101,45,98,97,110,110,101,114,2,1,44,223,90,149,8,1,23,46,116,101,115,116,45,110,111,116,105,102,105,99,97,116,105,111,110,80,111,112,117,112,2,1,115,89,26,129,8,1,27,46,116,102,45,102,117,108,108,45,115,99,114,101,101,110,45,115,101,97,114,99,104,45,119,114,97,112,2,1,253,227,155,55,8,1,22,46,116,103,99,45,102,111,111,116,101,114,95,100,105,115,99,108,97,105,109,101,114,2,11,29,148,0,39,52,200,255,214,75,150,247,12,125,63,49,41,182,135,172,224,184,19,14,155,200,241,223,150,201,68,38,65,207,139,101,60,210,253,193,242,219,71,147,47,8,1,7,46,116,104,45,99,99,98,2,1,238,11,54,217,8,1,20,46,116,105,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,148,214,72,101,8,1,18,46,116,105,45,112,97,115,116,114,121,45,45,98,97,110,110,101,114,2,1,127,191,227,243,8,1,25,46,116,105,107,116,111,107,45,115,100,107,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,66,46,160,42,8,1,10,46,116,107,45,70,111,111,116,101,114,2,1,135,245,47,185,8,1,22,46,116,109,45,99,111,111,107,105,101,45,100,105,97,108,111,103,45,114,111,111,116,2,1,60,81,27,156,8,1,13,46,116,110,105,45,116,114,97,99,107,101,114,115,2,1,163,246,123,105,8,1,18,46,116,111,97,115,116,45,98,111,116,116,111,109,45,108,101,102,116,2,1,61,25,203,182,8,1,16,46,116,111,97,115,116,45,99,111,110,116,97,105,110,101,114,2,1,148,188,9,210,8,1,11,46,116,111,97,115,116,45,105,110,102,111,2,1,47,182,22,189,8,1,19,46,116,111,97,115,116,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,86,225,15,142,8,1,14,46,116,111,97,115,116,45,119,114,97,112,112,101,114,2,1,103,200,188,61,8,1,16,46,116,111,97,115,116,105,102,121,45,98,111,116,116,111,109,2,2,57,60,232,87,159,30,62,251,8,1,13,46,116,111,112,45,48,46,115,116,105,99,107,121,2,1,150,112,193,106,8,1,11,46,116,111,112,45,98,97,110,110,101,114,2,1,127,53,170,246,8,1,8,46,116,111,112,45,98,97,114,2,2,8,198,224,199,107,201,167,11,8,1,27,46,116,111,112,45,98,97,114,45,99,111,110,116,97,105,110,101,114,45,45,45,110,111,116,105,99,101,2,1,237,145,82,218,8,1,27,46,116,111,112,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,2,1,61,230,156,42,8,1,10,46,116,111,112,45,112,114,111,109,111,2,1,123,124,147,21,8,1,16,46,116,111,112,45,119,114,97,112,112,101,114,45,98,111,120,2,1,189,229,36,113,8,1,12,46,116,111,112,95,101,112,95,119,114,97,112,2,1,14,43,146,157,8,1,11,46,116,111,112,95,110,111,116,105,99,101,2,1,77,37,17,121,8,1,13,46,116,111,112,95,116,105,112,95,119,114,97,112,2,1,151,54,74,43,8,1,10,46,116,111,112,98,97,114,66,111,120,2,1,69,172,79,138,8,1,7,46,116,111,112,100,105,118,2,1,222,147,92,197,8,1,14,46,116,111,115,45,97,103,114,101,101,109,101,110,116,2,1,85,197,54,224,8,1,11,46,116,111,115,45,98,97,110,110,101,114,2,1,89,176,168,234,8,1,14,46,116,111,115,45,99,111,110,116,97,105,110,101,114,2,1,148,187,243,65,8,1,18,46,116,111,115,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,151,192,34,195,8,1,10,46,116,111,115,45,112,111,112,117,112,2,1,148,192,241,169,8,1,13,46,116,111,115,45,114,97,122,101,114,45,106,115,2,1,129,60,246,74,8,1,17,46,116,111,118,97,116,116,45,103,100,112,114,112,111,112,117,112,2,1,141,32,45,8,8,1,17,46,116,112,45,112,111,112,105,110,45,99,111,111,107,105,101,115,2,1,82,55,14,104,8,1,18,46,116,112,104,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,184,246,74,67,8,1,21,46,116,114,45,68,105,115,109,105,115,115,105,98,108,101,66,97,110,110,101,114,2,1,96,100,91,118,8,1,9,46,116,114,97,99,107,105,110,103,2,1,65,241,126,15,8,1,15,46,116,114,97,99,107,105,110,103,45,97,108,101,114,116,2,1,126,224,237,18,8,1,20,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,118,50,2,1,210,46,108,140,8,1,27,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,118,50,95,95,109,111,100,97,108,2,1,210,46,108,140,8,1,16,46,116,114,97,99,107,105,110,103,45,110,111,116,105,99,101,2,1,92,243,107,150,8,1,41,46,116,114,97,99,107,105,110,103,95,98,97,110,110,101,114,45,45,45,116,114,97,99,107,105,110,103,66,97,110,110,101,114,45,45,45,51,103,107,95,83,2,1,1,23,219,193,8,1,10,46,116,114,97,110,115,98,111,120,49,2,1,54,216,61,147,8,1,31,46,116,114,97,110,115,105,116,105,111,110,45,97,108,108,46,114,111,117,110,100,101,100,45,116,46,102,105,120,101,100,2,1,132,226,93,113,8,1,20,46,116,114,97,110,115,112,97,114,101,110,116,45,111,118,101,114,108,97,121,2,1,137,146,68,74,8,1,15,46,116,114,111,97,120,45,109,101,115,115,97,103,101,115,2,1,127,242,103,88,8,1,19,46,116,114,111,112,116,101,114,45,99,111,111,107,105,101,115,98,97,114,2,1,31,208,87,178,8,1,18,46,116,114,117,101,110,100,111,95,99,111,110,116,97,105,110,101,114,2,1,2,123,148,171,8,1,18,46,116,115,45,104,101,97,100,101,114,45,109,101,115,115,97,103,101,2,1,211,240,62,173,8,1,7,46,116,115,45,109,115,103,2,1,248,27,186,83,8,1,21,46,116,116,95,112,111,112,111,118,101,114,95,99,111,110,116,97,105,110,101,114,2,1,126,3,62,107,8,1,76,46,116,119,45,98,111,114,100,101,114,45,50,46,116,119,45,114,111,117,110,100,101,100,46,116,119,45,98,111,114,100,101,114,45,112,114,105,109,97,114,121,46,116,119,45,112,45,52,46,116,119,45,98,103,45,116,104,101,109,101,45,49,46,116,119,45,116,101,120,116,45,116,104,101,109,101,2,1,202,34,230,197,8,1,9,46,116,119,45,102,105,120,101,100,2,1,132,207,146,224,8,1,14,46,116,120,95,97,109,102,99,111,111,107,105,101,115,2,1,189,201,168,10,8,1,27,46,117,45,98,97,99,107,103,114,111,117,110,100,45,45,100,101,102,97,117,108,116,45,100,97,114,107,2,1,66,1,148,159,8,1,10,46,117,45,98,103,45,112,97,100,100,2,1,251,67,186,116,8,1,33,46,117,49,50,45,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,110,111,116,105,99,101,95,95,105,116,101,109,2,1,61,247,22,20,8,1,4,46,117,99,98,2,1,167,84,49,7,8,1,9,46,117,105,45,97,108,101,114,116,2,1,17,239,13,190,8,1,19,46,117,105,45,110,111,116,105,102,105,99,97,116,105,111,110,98,97,114,2,1,183,225,239,212,8,1,11,46,117,105,45,112,114,105,118,97,99,121,2,1,247,93,148,140,8,1,13,46,117,105,45,114,101,115,105,122,97,98,108,101,2,1,148,186,188,93,8,1,7,46,117,105,108,111,99,107,2,1,202,61,43,129,8,1,9,46,117,107,45,97,108,101,114,116,2,2,38,239,13,35,169,129,48,126,8,1,18,46,117,107,45,112,111,115,105,116,105,111,110,45,102,105,120,101,100,2,1,13,37,89,48,8,1,12,46,117,108,112,45,111,118,101,114,108,97,121,2,1,44,154,107,81,8,1,22,46,117,108,112,45,119,105,110,100,111,119,45,116,111,112,45,99,101,110,116,101,114,2,1,44,154,107,81,8,1,15,46,117,109,45,99,111,110,115,101,110,116,45,98,97,114,2,1,187,0,228,44,8,1,25,46,117,110,105,118,101,114,115,97,108,45,102,111,111,116,101,114,95,95,114,105,98,98,111,110,2,1,38,157,30,74,8,1,3,46,117,112,2,1,227,102,83,128,8,1,11,46,117,114,103,101,110,116,45,109,115,103,2,1,19,148,99,144,8,1,17,46,117,114,108,115,108,97,98,45,115,107,105,112,45,97,108,108,2,1,86,238,180,31,8,1,9,46,117,115,101,114,45,109,115,103,2,2,38,157,25,55,122,13,201,82,8,1,16,46,117,115,101,114,45,112,101,114,109,105,115,115,105,111,110,2,1,69,206,83,62,8,1,16,46,117,115,101,114,45,116,101,114,109,115,45,104,105,110,116,2,1,3,234,52,225,8,1,12,46,117,115,101,114,77,101,115,115,97,103,101,2,1,131,46,28,247,8,1,11,46,117,115,101,114,78,111,116,105,99,101,2,1,143,114,110,236,8,1,12,46,117,115,101,114,95,110,111,116,105,99,101,2,1,58,205,99,242,8,1,15,46,117,115,101,114,110,111,116,105,99,101,95,112,111,112,2,7,85,116,227,157,86,154,115,76,92,216,58,174,169,129,170,165,170,34,119,100,177,5,226,31,250,187,217,34,8,1,27,46,117,116,105,108,105,116,105,101,115,95,103,114,97,110,116,95,112,97,110,101,108,95,115,104,111,119,2,1,34,4,76,163,8,1,18,46,117,116,105,108,105,116,121,45,99,111,110,116,97,105,110,101,114,2,1,127,242,108,247,8,1,11,46,117,116,105,108,105,116,121,66,97,114,2,1,0,145,132,92,8,1,18,46,117,120,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,83,6,251,46,8,1,17,46,118,45,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,121,255,34,116,8,1,15,46,118,45,98,111,116,116,111,109,45,115,104,101,101,116,2,1,201,193,190,25,8,1,19,46,118,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,64,222,114,179,8,1,9,46,118,45,100,105,97,108,111,103,2,1,106,197,71,204,8,1,18,46,118,45,100,105,97,108,111,103,95,95,99,111,110,116,101,110,116,2,1,227,143,64,119,8,1,9,46,118,45,102,111,111,116,101,114,2,1,148,192,109,107,8,1,13,46,118,45,109,100,117,45,110,111,116,105,99,101,2,1,188,166,40,185,8,1,16,46,118,45,115,110,97,99,107,45,45,98,111,116,116,111,109,2,1,219,182,2,214,8,1,17,46,118,45,115,110,97,99,107,95,95,99,111,110,116,101,110,116,2,1,151,192,34,195,8,1,26,46,118,50,45,99,108,97,115,115,45,45,45,112,111,112,117,112,45,45,99,111,111,107,105,101,115,2,1,78,156,34,208,8,1,30,46,118,55,45,117,115,45,112,114,105,118,97,99,121,45,101,120,112,108,105,99,105,116,45,110,111,116,105,99,101,2,1,113,152,115,249,8,1,3,46,118,99,2,1,218,155,120,193,8,1,11,46,118,101,114,105,65,108,116,66,97,114,2,1,117,188,223,20,8,1,14,46,118,105,115,105,116,111,114,110,111,116,105,99,101,2,1,9,152,14,186,8,1,12,46,118,105,115,109,101,99,111,111,107,105,101,2,1,108,206,119,121,8,1,18,46,118,110,111,116,105,102,121,45,99,111,110,116,97,105,110,101,114,2,1,64,7,125,219,8,1,14,46,118,112,120,45,103,100,112,114,77,111,100,97,108,2,1,125,166,164,252,8,1,21,46,118,117,101,45,100,105,115,99,108,97,105,109,101,114,45,112,111,112,117,112,2,1,211,10,33,118,8,1,6,46,119,45,49,48,48,2,2,48,118,227,132,136,248,31,213,8,1,9,46,119,45,115,99,114,101,101,110,2,1,243,160,225,53,8,1,6,46,119,53,121,71,112,2,1,148,196,49,170,8,1,10,46,119,97,114,110,45,119,114,97,112,2,1,207,24,225,91,8,1,14,46,119,97,114,110,105,110,103,45,109,111,100,97,108,2,1,71,171,241,188,8,1,16,46,119,98,108,55,50,101,45,48,45,102,111,111,116,101,114,2,1,38,157,76,56,8,1,15,46,119,101,108,99,111,109,101,45,98,97,110,110,101,114,2,1,59,132,118,86,8,1,11,46,119,105,115,112,45,109,111,100,97,108,2,1,36,79,47,104,8,1,19,46,119,105,122,97,114,100,67,111,111,107,105,101,66,97,110,110,101,114,2,1,226,171,152,4,8,1,18,46,119,107,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,66,133,211,102,8,1,11,46,119,111,45,99,111,110,115,101,110,116,2,1,129,21,173,66,8,1,17,46,119,111,110,100,101,114,112,108,117,103,105,110,45,98,111,120,2,1,116,208,28,216,8,1,16,46,119,111,111,107,105,101,101,45,119,114,97,112,112,101,114,2,1,166,61,83,65,8,1,10,46,119,112,116,45,109,111,100,97,108,2,1,46,30,201,54,8,1,13,46,119,114,97,112,112,101,114,32,62,32,46,119,2,1,196,179,98,57,8,1,14,46,119,114,97,112,112,101,114,45,56,56,54,97,98,2,1,152,197,90,108,8,1,15,46,119,114,97,112,112,101,114,45,110,111,116,105,102,121,2,1,244,48,211,30,8,1,16,46,119,114,97,112,112,101,114,45,119,114,97,112,112,101,114,2,1,71,23,232,184,8,1,13,46,119,114,97,112,112,101,114,46,115,104,111,119,2,1,47,96,103,186,8,1,11,46,119,114,97,112,112,101,114,98,116,109,2,18,6,212,204,118,11,189,230,174,47,195,42,131,52,40,92,50,89,209,7,189,127,219,55,24,137,86,89,117,138,197,10,75,166,63,147,166,169,134,7,13,181,115,89,165,185,57,175,199,191,110,187,141,193,178,136,51,194,102,86,112,197,124,141,151,216,126,230,183,225,36,61,79,8,1,6,46,119,116,45,99,98,2,1,151,123,90,12,8,1,15,46,119,119,110,45,103,100,112,114,45,109,111,100,97,108,2,1,191,182,50,252,8,1,16,46,120,45,103,108,111,98,97,108,45,100,105,97,108,111,103,2,1,16,99,111,160,8,1,10,46,120,45,109,101,115,115,97,103,101,2,1,183,21,59,170,8,1,7,46,120,73,80,104,117,79,2,1,127,45,159,201,8,1,30,46,120,116,120,78,97,118,105,103,97,116,105,111,110,79,102,102,67,97,110,118,97,115,79,118,101,114,108,97,121,2,1,220,8,165,81,8,1,36,46,120,116,120,78,97,118,105,103,97,116,105,111,110,79,102,102,67,97,110,118,97,115,79,118,101,114,108,97,121,67,111,111,107,105,101,2,1,220,8,165,81,8,1,6,46,121,67,112,102,84,2,1,31,155,145,230,8,1,7,46,121,101,108,108,111,119,2,1,92,102,131,68,8,1,9,46,121,101,112,115,45,98,97,114,2,1,95,78,120,54,8,1,6,46,121,104,109,112,78,2,1,255,56,100,79,8,1,21,46,121,111,117,116,117,98,101,45,116,101,114,109,115,45,98,97,110,110,101,114,2,1,5,189,113,140,8,1,11,46,121,116,45,99,111,110,115,101,110,116,2,1,172,236,226,157,8,1,17,46,121,117,46,121,116,46,121,115,46,103,105,46,117,46,111,100,2,1,160,2,171,133,8,1,14,46,121,117,99,115,45,101,112,114,105,118,97,99,121,2,1,126,1,103,52,8,1,12,46,121,118,114,45,99,111,111,107,105,101,115,2,1,2,234,99,54,8,1,20,46,122,45,49,46,98,103,45,103,114,101,121,45,108,105,103,104,116,101,114,2,1,28,90,36,127,8,1,7,46,122,45,49,48,48,48,2,1,229,249,67,153,8,1,5,46,122,45,51,48,2,1,86,144,251,116,8,1,6,46,122,45,54,48,48,2,1,82,11,225,124,8,1,21,46,122,89,115,76,69,74,120,122,109,102,66,65,50,74,98,102,103,118,56,86,2,1,141,124,41,202,8,1,32,46,122,97,52,51,98,98,49,50,98,56,54,52,97,51,102,56,100,95,112,114,105,118,97,99,121,66,97,110,110,101,114,2,1,38,157,72,76,8,1,31,46,122,98,111,116,116,111,109,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,45,111,117,116,101,114,2,1,148,180,19,134,0,1,12,83,65,78,84,65,45,78,79,84,73,67,69,2,1,78,14,197,230,0,1,15,85,83,69,82,45,84,89,80,69,45,80,79,80,85,80,2,1,28,225,134,107,0,1,39,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,98,97,110,110,101,114,45,100,101,115,99,114,105,112,116,105,111,110,34,93,2,1,197,59,37,153,0,1,47,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,101,115,99,114,105,112,116,105,111,110,34,93,2,1,62,237,229,153,0,1,43,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,109,111,98,105,108,101,77,111,98,105,108,101,84,79,85,77,101,115,115,97,103,101,34,93,2,1,230,42,26,48,0,1,29,91,97,114,105,97,45,108,97,98,101,108,61,34,67,111,111,107,105,101,32,67,111,110,115,101,110,116,34,93,2,1,142,90,214,178,0,1,22,91,97,114,105,97,45,108,97,98,101,108,61,34,67,111,111,107,105,101,115,34,93,2,1,242,62,249,130,0,1,28,91,97,114,105,97,45,108,97,98,101,108,61,34,99,111,111,107,105,101,32,98,97,110,110,101,114,34,93,2,1,239,178,208,18,0,1,28,91,97,114,105,97,45,108,97,98,101,108,61,34,99,111,111,107,105,101,99,111,110,115,101,110,116,34,93,2,1,224,114,135,77,0,1,39,91,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,45,116,105,116,108,101,34,93,2,1,71,197,111,134,0,1,38,91,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,110,111,116,105,102,105,99,97,116,105,111,110,95,108,97,98,101,108,34,93,2,1,254,154,173,12,0,1,28,91,99,108,97,115,115,42,61,34,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,95,34,93,2,1,105,251,190,37,0,1,24,91,99,108,97,115,115,42,61,34,67,111,111,107,105,101,115,65,99,99,101,112,116,34,93,2,1,89,108,28,91,0,1,38,91,99,108,97,115,115,42,61,34,83,110,97,99,107,98,97,114,77,101,115,115,97,103,101,115,95,95,115,110,97,99,107,98,97,114,95,34,93,2,1,88,236,182,118,0,1,23,91,99,108,97,115,115,42,61,34,99,111,111,107,105,101,115,80,111,112,85,112,34,93,2,1,39,248,97,90,0,1,45,91,99,108,97,115,115,42,61,34,109,111,100,97,108,115,116,121,108,101,115,95,95,83,116,121,108,101,100,77,111,100,97,108,67,111,110,116,97,105,110,101,114,45,34,93,2,1,150,125,114,88,0,1,35,91,99,108,97,115,115,42,61,34,115,116,121,108,101,115,95,95,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,45,34,93,2,1,254,154,173,12,0,1,24,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,67,111,110,116,114,111,108,34,93,2,1,19,18,157,113,0,1,25,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,77,97,110,97,103,101,114,34,93,2,1,167,237,61,197,0,1,28,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,34,93,2,1,197,14,239,228,0,1,23,91,99,108,97,115,115,94,61,34,71,68,80,82,45,109,111,100,117,108,101,95,34,93,2,1,138,130,174,214,0,1,35,91,99,108,97,115,115,94,61,34,79,118,101,114,108,97,121,95,95,79,118,101,114,108,97,121,66,97,115,101,45,115,99,45,34,93,2,1,75,18,183,100,0,1,33,91,99,108,97,115,115,94,61,34,82,111,99,107,115,116,97,114,67,111,111,107,105,101,115,66,97,110,110,101,114,95,34,93,2,1,98,183,234,94,0,1,25,91,99,108,97,115,115,94,61,34,97,112,112,45,99,111,110,116,97,105,110,101,114,45,34,93,2,1,148,179,249,80,0,1,25,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,45,34,93,2,1,200,71,154,101,0,1,35,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,109,112,111,110,101,110,116,95,34,93,2,1,189,112,29,151,0,1,24,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,95,110,111,116,105,99,101,34,93,2,1,224,38,172,42,0,1,21,91,99,108,97,115,115,94,61,34,115,116,121,108,101,95,103,100,112,114,34,93,2,1,128,97,105,80,0,1,27,91,99,108,97,115,115,94,61,34,116,114,117,115,116,97,114,99,95,99,111,110,115,101,110,116,34,93,2,1,70,84,196,114,0,1,27,91,100,97,116,97,45,97,106,97,120,45,108,111,97,100,105,110,103,61,34,102,97,108,115,101,34,93,2,1,53,185,155,239,0,1,34,91,100,97,116,97,45,97,117,116,111,109,97,116,105,111,110,45,105,100,61,34,108,101,103,97,108,78,111,116,105,99,101,34,93,2,1,42,43,171,17,0,1,24,91,100,97,116,97,45,98,97,115,101,119,101,98,61,34,116,111,97,115,116,101,114,34,93,2,1,148,202,79,68,0,1,25,91,100,97,116,97,45,98,100,100,61,34,116,101,114,109,115,45,111,102,45,117,115,101,34,93,2,1,230,42,26,48,0,1,16,91,100,97,116,97,45,99,99,45,98,97,110,110,101,114,93,2,1,100,153,214,60,0,1,31,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,61,34,67,111,111,107,105,101,66,97,110,110,101,114,34,93,2,1,181,159,156,8,0,1,31,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,61,34,99,111,111,107,105,101,66,97,110,110,101,114,34,93,2,1,196,104,106,13,0,1,35,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,61,34,110,51,45,99,111,111,107,105,101,45,110,111,116,105,99,101,34,93,2,1,190,221,19,219,0,1,26,91,100,97,116,97,45,99,121,61,34,99,111,111,107,105,101,45,99,111,110,115,101,110,116,34,93,2,1,101,231,79,129,0,1,20,91,100,97,116,97,45,100,105,97,108,111,103,61,34,116,114,117,101,34,93,2,1,23,81,196,34,0,1,36,91,100,97,116,97,45,102,101,116,99,104,45,107,101,121,61,34,84,104,101,67,111,111,107,105,101,80,114,111,109,112,116,58,48,34,93,2,1,226,171,152,4,0,1,47,91,100,97,116,97,45,103,110,97,118,45,114,101,103,105,111,110,61,34,71,108,111,98,97,108,80,114,105,118,97,99,121,67,111,110,116,114,111,108,66,97,110,110,101,114,34,93,2,1,91,52,44,223,0,1,39,91,100,97,116,97,45,114,101,97,99,116,45,99,108,97,115,115,61,34,73,110,102,111,114,109,67,111,111,107,105,101,115,80,111,112,117,112,34,93,2,1,211,244,164,16,0,1,30,91,100,97,116,97,45,116,101,115,116,45,105,100,61,34,99,111,111,107,105,101,45,110,111,116,105,99,101,34,93,2,1,248,95,163,111,0,1,35,91,100,97,116,97,45,116,101,115,116,45,110,97,109,101,61,34,95,116,101,114,109,115,79,102,83,101,114,118,105,99,101,115,34,93,2,1,4,42,1,94,0,1,42,91,100,97,116,97,45,116,101,115,116,45,115,101,108,101,99,116,111,114,61,34,100,114,97,119,101,114,95,67,111,111,107,105,101,80,111,108,105,99,121,34,93,2,1,101,24,8,62,0,1,20,91,100,97,116,97,45,116,101,115,116,61,34,98,97,110,110,101,114,34,93,2,1,144,159,197,195,0,1,37,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,34,93,2,1,55,4,69,9,0,1,29,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,115,78,111,116,105,99,101,34,93,2,1,207,248,235,211,0,1,29,91,100,97,116,97,45,116,111,103,103,108,101,45,112,114,111,112,101,114,116,121,61,34,103,100,112,114,34,93,2,1,53,241,42,178,0,1,17,91,100,97,116,97,45,118,45,53,102,54,55,53,102,99,56,93,2,1,234,103,20,63,0,1,22,91,114,101,100,100,105,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,93,2,1,142,14,98,194,0,1,20,91,114,111,108,101,61,34,97,108,101,114,116,100,105,97,108,111,103,34,93,2,1,252,56,108,12,0,1,22,91,114,111,108,101,61,34,99,111,109,112,108,101,109,101,110,116,97,114,121,34,93,2,1,189,36,203,194,0,1,48,91,115,116,121,108,101,42,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,32,116,111,112,58,32,48,112,120,59,34,93,2,1,80,41,202,77,0,1,38,91,115,116,121,108,101,61,34,112,97,100,100,105,110,103,45,108,101,102,116,58,48,112,120,32,33,105,109,112,111,114,116,97,110,116,59,34,93,2,1,141,64,220,155,0,1,45,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,40,50,52,44,32,50,56,44,32,51,49,41,59,34,93,2,1,234,38,18,219,0,1,48,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,51,37,59,32,114,105,103,104,116,58,32,51,37,59,34,93,2,1,186,143,185,141,0,1,54,91,115,116,121,108,101,94,61,34,119,105,100,116,104,58,32,49,48,48,37,59,32,104,101,105,103,104,116,58,32,49,48,48,37,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,34,93,2,1,161,64,7,160,0,1,45,91,115,116,121,108,101,94,61,34,122,45,105,110,100,101,120,58,57,48,48,48,48,48,48,48,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,34,93,2,1,246,17,160,192,0,1,19,97,99,114,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,69,16,41,13,0,1,17,97,100,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,194,197,251,32,0,1,7,97,103,98,45,98,97,114,2,1,54,216,162,166,0,1,13,97,112,112,45,97,103,114,101,101,109,101,110,116,2,1,97,165,136,124,0,1,11,97,112,112,45,98,97,110,110,101,114,115,2,1,13,211,21,132,0,1,17,97,112,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,130,16,220,63,0,1,19,97,112,112,45,99,111,111,107,105,101,115,45,109,97,110,97,103,101,114,2,1,146,9,150,180,0,1,14,97,112,112,45,116,105,110,121,45,97,108,101,114,116,2,1,128,133,243,178,0,1,14,98,97,110,110,101,114,45,99,111,110,116,101,110,116,2,1,48,139,147,243,0,1,19,98,108,105,109,45,104,101,97,100,101,114,45,109,101,115,115,97,103,101,2,1,148,181,139,82,0,1,19,98,111,100,121,32,62,32,46,109,101,110,117,45,104,101,97,100,101,114,2,1,84,119,165,188,0,1,18,98,111,100,121,32,62,32,100,105,118,32,62,32,46,99,97,114,100,2,1,161,64,7,160,0,1,74,98,111,100,121,58,110,111,116,40,91,115,116,121,108,101,94,61,34,109,97,114,103,105,110,45,98,111,116,116,111,109,34,93,41,32,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,34,93,2,1,25,145,115,140,0,1,12,99,45,100,99,120,45,99,111,111,107,105,101,2,1,233,36,175,98,0,1,20,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,20,183,107,89,0,1,13,99,111,110,115,101,110,116,45,116,111,97,115,116,2,1,84,7,72,229,0,1,18,99,111,114,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,132,21,68,69,0,1,26,100,105,118,32,62,32,46,98,114,97,110,99,104,45,106,111,117,114,110,101,121,115,45,116,111,112,2,1,63,37,190,213,0,1,21,100,105,118,32,62,32,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,2,1,246,101,61,67,0,1,71,100,105,118,46,106,115,45,97,112,112,108,101,116,45,118,105,101,119,45,99,111,110,116,97,105,110,101,114,45,109,97,105,110,32,62,32,100,105,118,46,102,105,120,101,100,45,119,105,110,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,58,34,93,2,1,126,1,103,52,0,1,25,100,105,118,46,114,45,49,120,99,97,106,97,109,46,99,115,115,45,49,55,53,111,105,50,114,2,17,3,251,117,37,7,228,248,70,16,15,120,172,61,206,210,50,80,11,63,152,128,151,228,197,153,70,112,218,160,183,46,20,175,49,28,252,183,112,121,162,185,11,113,211,222,125,142,193,234,86,195,178,235,217,23,187,239,66,44,125,242,126,154,53,244,59,22,44,0,1,32,100,105,118,91,97,114,105,97,45,108,97,98,101,108,61,34,67,111,111,107,105,101,32,67,111,110,115,101,110,116,34,93,2,1,127,50,15,0,0,1,44,100,105,118,91,99,108,97,115,115,42,61,34,67,111,110,102,105,114,109,77,101,115,115,97,103,101,45,109,111,100,117,108,101,95,95,99,111,111,107,105,101,45,34,93,2,1,222,200,80,198,0,1,34,100,105,118,91,99,108,97,115,115,42,61,34,115,116,121,108,101,115,95,99,111,110,115,101,110,116,67,97,114,100,95,95,34,93,2,1,146,203,177,86,0,1,32,100,105,118,91,99,108,97,115,115,61,34,97,108,101,114,116,67,111,110,116,97,105,110,101,114,95,99,56,48,101,34,93,2,1,100,14,247,220,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,65,108,101,114,116,68,95,99,111,110,116,97,105,110,101,114,34,93,2,2,54,184,87,214,151,169,245,150,0,1,25,100,105,118,91,99,108,97,115,115,94,61,34,66,97,110,110,101,114,71,68,80,82,95,34,93,2,1,152,139,130,66,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,66,97,110,110,101,114,95,98,97,110,110,101,114,95,34,93,2,1,242,114,223,217,0,1,29,100,105,118,91,99,108,97,115,115,94,61,34,66,105,115,113,117,105,116,115,66,97,110,110,101,114,95,34,93,2,1,121,100,186,242,0,1,26,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,65,108,101,114,116,45,34,93,2,1,126,17,119,49,0,1,26,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,117,109,112,101,114,34,93,2,1,89,217,44,129,0,1,34,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,95,34,93,2,1,188,104,246,81,0,1,29,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,68,105,114,101,99,116,105,118,101,34,93,2,1,57,123,98,118,0,1,34,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,77,101,115,115,97,103,101,115,116,121,108,101,100,95,34,93,2,1,115,155,49,137,0,1,41,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,95,119,114,97,112,112,101,114,95,34,93,2,1,102,231,106,212,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,65,103,114,101,101,109,101,110,116,34,93,2,1,245,111,172,30,0,1,26,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,73,110,102,111,95,34,93,2,1,170,174,2,96,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,76,97,98,101,108,95,34,93,2,1,90,75,139,154,0,1,38,100,105,118,91,99,108,97,115,115,94,61,34,70,111,111,116,101,114,95,99,111,111,107,105,101,115,66,103,70,97,108,108,98,97,99,107,34,93,2,1,199,7,138,110,0,1,38,100,105,118,91,99,108,97,115,115,94,61,34,71,100,112,114,65,99,99,101,112,116,97,110,99,101,95,99,111,110,116,97,105,110,101,114,34,93,2,1,122,171,86,27,0,1,25,100,105,118,91,99,108,97,115,115,94,61,34,71,100,112,114,66,97,110,110,101,114,95,34,93,2,1,204,5,127,36,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,76,101,103,97,108,68,105,115,99,108,97,105,109,101,114,95,34,93,2,1,129,179,108,204,0,1,40,100,105,118,91,99,108,97,115,115,94,61,34,77,88,95,67,79,77,80,76,89,95,71,68,80,82,95,67,79,77,80,76,73,65,78,67,69,95,34,93,2,1,203,80,115,129,0,1,35,100,105,118,91,99,108,97,115,115,94,61,34,77,101,115,115,97,103,101,66,97,110,110,101,114,87,114,97,112,112,101,114,45,34,93,2,12,0,9,3,132,37,208,98,149,45,94,2,134,53,108,59,10,67,251,45,20,77,85,155,219,126,242,152,210,127,1,174,185,129,65,47,58,148,185,211,204,182,250,56,149,194,197,253,246,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,80,114,105,118,97,99,121,78,111,116,105,99,101,34,93,2,1,126,6,120,56,0,1,34,100,105,118,91,99,108,97,115,115,94,61,34,80,114,105,118,97,99,121,78,111,116,105,102,105,99,97,116,105,111,110,95,34,93,2,1,71,63,18,241,0,1,25,100,105,118,91,99,108,97,115,115,94,61,34,83,109,97,108,108,67,111,111,107,105,101,34,93,2,1,53,254,140,168,0,1,36,100,105,118,91,99,108,97,115,115,94,61,34,83,116,121,108,101,100,76,101,103,97,108,68,105,115,99,108,97,105,109,101,114,45,34,93,2,1,108,72,131,138,0,1,36,100,105,118,91,99,108,97,115,115,94,61,34,84,111,97,115,116,45,109,111,100,117,108,101,45,45,119,114,97,112,112,101,114,45,34,93,2,1,214,169,142,47,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,2,4,44,46,139,14,60,111,99,13,125,250,184,31,126,22,4,12,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,45,34,93,2,1,128,213,81,72,0,1,42,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,111,100,117,108,101,95,119,114,97,112,112,101,114,34,93,2,1,36,118,75,90,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,95,34,93,2,1,141,115,67,226,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,99,111,110,115,101,110,116,34,93,2,4,31,206,171,133,157,48,242,210,188,85,29,195,238,48,16,85,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,115,116,97,116,101,109,101,110,116,34,93,2,1,20,229,178,85,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,66,97,110,110,101,114,95,34,93,2,2,220,199,61,63,250,155,210,223,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,115,65,110,110,111,117,110,99,101,45,34,93,2,1,152,197,90,108,0,1,41,100,105,118,91,99,108,97,115,115,94,61,34,105,110,100,101,120,45,109,111,100,117,108,101,45,45,99,111,111,107,105,101,98,97,110,110,101,114,45,34,93,2,1,148,199,178,222,0,1,35,100,105,118,91,99,108,97,115,115,94,61,34,105,110,100,101,120,45,109,111,100,117,108,101,45,45,111,118,101,114,108,97,121,34,93,2,1,125,105,52,14,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,105,110,100,101,120,95,99,111,111,107,105,101,115,45,34,93,2,1,126,82,229,198,0,1,33,100,105,118,91,99,108,97,115,115,94,61,34,110,111,116,105,102,105,99,97,116,105,111,110,70,111,111,116,101,114,95,34,93,2,1,151,252,235,86,0,1,38,100,105,118,91,99,108,97,115,115,94,61,34,111,114,100,101,114,45,34,93,91,99,108,97,115,115,42,61,34,112,111,108,105,99,121,45,34,93,2,1,148,184,91,187,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,112,111,112,117,112,95,111,118,101,114,108,97,121,95,34,93,2,1,115,140,180,87,0,1,43,100,105,118,91,99,108,97,115,115,94,61,34,115,116,121,108,101,95,95,83,116,105,99,107,121,65,108,101,114,116,87,114,97,112,112,101,114,45,115,99,45,34,93,2,1,176,33,249,94,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,115,116,121,108,101,115,95,98,97,110,110,101,114,95,34,93,2,1,131,141,7,41,0,1,35,100,105,118,91,99,108,97,115,115,94,61,34,115,116,121,108,101,115,95,99,111,111,107,105,101,115,66,97,110,110,101,114,95,34,93,2,1,2,32,210,174,0,1,25,100,105,118,91,99,108,97,115,115,94,61,34,121,116,100,45,99,111,110,115,101,110,116,34,93,2,1,172,236,226,157,0,1,29,100,105,118,91,100,97,116,97,45,97,110,97,108,121,116,105,99,115,42,61,34,99,111,111,107,105,101,34,93,2,1,91,197,220,238,0,1,39,100,105,118,91,100,97,116,97,45,99,111,110,116,114,111,108,108,101,114,42,61,34,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,34,93,2,1,38,64,124,5,0,1,36,100,105,118,91,100,97,116,97,45,104,111,111,107,61,34,99,99,115,117,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,34,93,2,1,124,112,21,205,0,1,30,100,105,118,91,100,97,116,97,45,110,97,109,101,61,34,67,111,111,107,105,101,67,111,110,115,101,110,116,34,93,2,3,143,163,68,236,146,43,189,186,148,149,139,75,0,1,46,100,105,118,91,100,97,116,97,45,114,110,119,114,55,48,48,45,49,109,111,104,50,51,116,45,101,49,107,50,105,110,45,116,99,101,105,116,122,61,34,116,114,117,101,34,93,2,1,192,241,163,74,0,1,27,100,105,118,91,100,97,116,97,45,115,101,99,116,105,111,110,61,34,99,111,111,107,105,101,115,34,93,2,1,38,6,191,53,0,1,41,100,105,118,91,100,97,116,97,45,115,116,111,114,97,103,101,45,105,116,101,109,94,61,34,116,56,56,55,99,111,111,107,105,101,110,97,109,101,95,34,93,2,1,84,217,159,132,0,1,33,100,105,118,91,100,97,116,97,45,116,97,103,61,34,99,111,111,107,105,101,45,100,105,115,99,108,111,115,117,114,101,34,93,2,1,96,53,173,135,0,1,39,100,105,118,91,100,97,116,97,45,116,101,115,116,45,105,100,61,34,67,111,111,107,105,101,45,80,111,108,105,99,121,66,97,110,110,101,114,34,93,2,1,89,172,217,162,0,1,32,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,2,4,23,10,210,133,55,176,118,52,145,223,198,69,194,178,66,155,0,1,34,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,100,108,45,99,111,111,107,105,101,66,97,110,110,101,114,34,93,2,1,125,144,199,24,0,1,38,100,105,118,91,115,116,121,108,101,42,61,34,45,45,84,111,97,115,116,101,114,45,105,110,100,105,99,97,116,111,114,67,111,108,111,114,34,93,2,1,142,14,98,194,0,1,64,100,105,118,91,115,116,121,108,101,42,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,32,116,111,112,58,32,48,112,120,59,32,119,105,100,116,104,58,32,49,48,48,37,59,34,93,2,1,243,93,248,68,0,1,50,100,105,118,91,115,116,121,108,101,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,40,50,52,48,44,32,50,52,48,44,32,50,52,48,41,59,34,93,2,7,18,109,163,165,26,204,193,127,56,90,164,108,57,35,137,105,98,188,168,19,127,98,111,188,166,213,37,209,0,1,97,100,105,118,91,115,116,121,108,101,61,34,98,97,99,107,103,114,111,117,110,100,58,35,101,101,100,59,112,97,100,100,105,110,103,58,49,48,112,120,59,109,97,114,103,105,110,58,48,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,52,52,54,34,93,2,1,43,123,146,215,0,1,128,0,0,0,181,100,105,118,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,32,119,105,100,116,104,58,32,49,48,48,37,59,32,112,97,100,100,105,110,103,58,32,50,48,112,120,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,56,41,59,32,99,111,108,111,114,58,32,114,103,98,40,50,53,53,44,32,50,53,53,44,32,50,53,53,41,59,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,32,122,45,105,110,100,101,120,58,32,57,57,57,57,59,34,93,2,1,121,139,116,178,0,1,64,100,105,118,91,115,116,121,108,101,94,61,34,97,108,105,103,110,45,105,116,101,109,115,58,32,98,97,115,101,108,105,110,101,59,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,40,53,51,44,32,53,51,44,32,53,51,41,34,93,2,1,148,199,190,101,0,1,38,100,105,118,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,70,70,57,53,57,53,34,93,2,1,55,109,79,10,0,1,35,100,105,118,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,58,32,35,52,50,52,50,52,50,59,32,34,93,2,1,141,197,204,15,0,1,41,100,105,118,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,58,32,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,34,93,2,1,57,78,202,190,0,1,37,100,105,118,91,115,116,121,108,101,94,61,34,98,111,114,100,101,114,58,32,50,112,120,32,115,111,108,105,100,32,98,108,117,101,59,34,93,2,1,129,84,247,139,0,1,40,100,105,118,91,115,116,121,108,101,94,61,34,99,111,108,111,114,58,32,114,103,98,40,50,51,56,44,32,50,51,56,44,32,50,51,56,41,59,34,93,2,1,113,90,237,167,0,1,51,100,105,118,91,115,116,121,108,101,94,61,34,104,101,105,103,104,116,58,50,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,70,65,70,70,68,67,59,34,93,2,1,55,109,79,10,0,1,37,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,34,93,2,4,69,110,254,185,119,146,191,236,145,21,151,162,145,171,18,112,0,1,54,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,32,98,111,116,116,111,109,58,32,48,112,120,59,34,93,2,1,20,15,89,250,0,1,51,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,32,116,111,112,58,32,48,112,120,59,34,93,2,4,129,251,31,131,141,168,183,131,191,206,55,87,233,181,104,67,0,1,79,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,32,98,111,116,116,111,109,58,32,48,112,120,59,32,112,97,100,100,105,110,103,58,32,49,54,112,120,32,51,50,112,120,59,34,93,2,1,185,89,191,118,0,1,46,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,122,45,105,110,100,101,120,58,32,49,48,48,48,48,59,34,93,2,1,105,248,238,46,0,1,30,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,34,93,2,1,66,44,100,148,0,1,43,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,34,93,2,1,32,227,13,157,0,1,41,100,105,118,91,115,116,121,108,101,94,61,34,119,105,100,116,104,58,32,49,48,48,37,59,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,34,93,2,1,101,164,167,255,0,1,37,100,105,118,91,115,116,121,108,101,94,61,34,119,105,100,116,104,58,32,51,56,48,112,120,59,109,97,120,45,119,105,100,116,104,58,34,93,2,1,209,110,30,239,0,1,26,100,105,118,91,115,116,121,108,101,94,61,34,122,45,105,110,100,101,120,58,32,57,57,57,34,93,2,1,127,3,67,255,0,1,21,100,111,99,107,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,2,1,41,23,111,131,0,1,17,100,111,99,115,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,237,65,127,176,0,1,17,102,105,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,107,172,203,120,0,1,6,102,111,111,116,101,114,2,1,191,53,9,16,0,1,128,0,0,0,138,102,111,111,116,101,114,32,43,32,100,105,118,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,32,116,111,112,58,32,48,112,120,59,32,119,105,100,116,104,58,32,49,48,48,37,59,32,104,101,105,103,104,116,58,32,49,48,48,37,59,32,122,45,105,110,100,101,120,58,32,57,57,57,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,51,41,59,34,93,2,1,95,66,221,184,0,1,16,103,99,45,97,99,99,101,112,116,45,99,111,111,107,105,101,2,1,111,197,116,98,0,1,22,103,99,111,114,101,45,99,111,111,107,105,101,115,45,115,101,116,116,105,110,103,115,2,1,126,247,184,36,0,1,17,103,115,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,171,113,55,96,0,1,14,104,101,97,100,101,114,32,62,32,46,103,100,112,114,2,1,193,113,84,60,0,1,15,105,110,103,119,98,45,99,111,111,107,105,101,98,97,114,2,1,127,27,206,45,0,1,18,108,101,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,2,1,213,58,190,119,0,1,20,108,105,91,100,97,116,97,45,108,97,121,111,117,116,61,34,97,100,34,93,2,1,9,161,255,112,0,1,17,109,105,111,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,26,233,216,108,0,1,25,109,112,45,115,110,97,99,107,98,97,114,45,105,110,102,111,45,109,101,115,115,97,103,101,115,2,1,14,143,66,253,0,1,16,109,118,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,19,82,127,127,0,1,18,110,111,116,105,102,105,99,97,116,105,111,110,45,98,108,111,99,107,2,1,107,227,30,38,0,1,19,110,111,116,105,102,105,99,97,116,105,111,110,45,102,111,111,116,101,114,2,1,242,122,96,56,0,1,21,112,97,120,100,101,105,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,127,60,55,189,0,1,56,115,104,114,101,100,100,105,116,45,97,115,121,110,99,45,108,111,97,100,101,114,91,98,117,110,100,108,101,110,97,109,101,61,34,114,101,100,100,105,116,95,99,111,111,107,105,101,95,98,97,110,110,101,114,34,93,2,2,34,213,210,243,142,14,98,194,0,1,22,115,104,114,101,100,100,105,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,142,14,98,194,0,1,18,115,109,112,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,155,137,19,239,0,1,26,115,112,97,110,32,62,32,46,109,97,120,45,119,45,109,100,46,115,104,97,100,111,119,45,108,103,2,1,150,195,125,111,0,1,18,119,99,115,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,2,19,110,79,10,38,130,205,250,0,1,12,119,101,98,45,115,110,97,99,107,98,97,114,2,1,222,234,123,134,0,1,32,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,93,2,3,14,134,7,126,33,152,17,36,33,234,135,136,0,1,40,100,105,118,91,100,97,116,97,45,113,97,61,34,103,114,97,110,117,108,97,114,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,34,93,2,1,157,26,51,3,0,1,35,100,105,118,91,100,97,116,97,45,113,97,61,34,106,101,116,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,34,93,2,1,234,58,17,4,0,1,31,100,105,118,91,100,97,116,97,45,113,97,61,34,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,34,93,2,7,6,155,129,254,36,120,89,249,86,13,245,117,141,100,242,179,161,57,203,135,172,10,12,165,174,132,115,176,8,1,13,46,70,111,111,116,101,114,80,111,112,117,112,115,2,3,83,33,11,166,154,89,152,134,156,25,156,155,16,1,16,35,119,114,97,112,112,101,114,45,100,120,45,99,111,107,105,2,8,38,44,36,68,103,238,58,249,148,104,92,154,174,193,230,21,182,121,193,41,182,225,250,100,191,221,10,29,204,25,152,235,0,1,22,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,95,95,34,93,2,4,40,217,150,142,88,247,105,121,105,110,46,163,238,186,44,45,8,1,12,46,97,100,110,45,109,101,115,115,97,103,101,2,11,31,43,76,135,51,205,221,219,83,111,0,229,89,58,249,109,91,166,123,28,112,244,157,192,136,89,173,104,142,75,167,68,165,39,55,235,168,226,105,56,202,188,92,43,16,1,21,35,95,95,116,101,97,108,105,117,109,71,68,80,82,99,112,80,114,101,102,115,2,1,168,88,13,198,16,1,14,35,99,111,111,107,105,101,45,112,111,108,105,99,121,2,2,118,143,25,133,139,19,75,34,8,1,28,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,99,111,110,116,97,105,110,101,114,2,3,110,131,204,219,242,231,20,251,246,53,211,16,8,1,14,46,99,111,111,107,105,101,45,97,99,99,101,112,116,2,1,84,1,227,143,16,1,15,35,99,111,110,115,101,110,116,77,97,110,97,103,101,114,2,2,193,193,244,206,247,84,198,23,16,1,13,35,99,111,111,107,105,101,45,109,111,100,97,108,2,4,9,19,50,11,23,42,34,178,118,24,215,4,201,118,0,69,16,1,5,35,99,107,110,116,2,3,20,240,92,18,41,93,80,99,172,245,100,52,8,1,25,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,2,3,197,193,18,75,232,242,233,134,234,228,251,112,8,1,12,46,119,112,99,98,45,98,97,110,110,101,114,2,5,61,0,55,25,78,17,87,33,122,61,216,211,135,59,133,24,216,238,24,144,8,1,15,46,119,112,99,98,45,99,111,110,116,97,105,110,101,114,2,12,55,75,109,94,64,16,36,205,72,97,200,54,96,166,47,168,125,236,86,123,132,189,240,75,142,143,40,236,162,47,97,66,173,225,224,253,186,38,216,55,229,209,185,254,241,143,32,44,8,1,18,46,99,99,45,119,105,110,100,111,119,45,119,114,97,112,112,101,114,2,5,13,77,51,23,46,41,180,145,46,218,156,51,132,54,192,25,170,110,185,241,8,1,12,46,99,115,45,105,110,102,111,45,98,97,114,2,2,80,126,68,54,148,254,253,89,16,1,9,35,103,100,112,114,77,97,115,107,2,6,48,217,183,89,110,21,196,182,117,45,98,107,158,248,80,33,191,31,182,47,219,197,157,190,8,1,16,46,115,119,97,108,50,45,99,111,110,116,97,105,110,101,114,2,3,74,58,224,186,203,65,28,200,236,153,76,70,8,1,13,46,99,99,45,99,111,110,116,97,105,110,101,114,2,11,28,72,5,177,44,200,73,141,76,236,253,182,114,73,98,139,136,172,60,55,139,33,14,172,142,11,84,23,148,196,114,113,153,216,251,156,197,167,133,234,206,207,207,164,16,1,13,35,99,99,45,99,111,110,116,97,105,110,101,114,2,3,9,168,4,16,17,179,36,86,218,98,254,122,8,1,14,46,109,111,100,97,108,45,119,114,97,112,112,101,114,2,6,36,34,110,140,45,224,129,40,71,43,27,64,131,11,140,21,187,66,7,24,226,170,110,0,8,1,5,46,105,110,102,111,2,4,5,62,93,45,16,67,10,151,69,166,52,92,71,90,46,110,16,1,11,35,99,111,111,107,105,101,78,111,116,101,2,43,3,204,68,108,8,173,90,48,16,196,37,184,21,117,25,45,24,84,141,203,32,171,79,124,36,31,9,223,38,4,205,96,38,208,99,188,42,238,16,110,43,108,212,0,48,117,134,30,50,151,251,172,51,55,110,246,61,230,104,252,67,187,216,224,72,181,242,134,73,118,62,192,83,2,6,169,86,44,62,123,90,106,200,195,121,25,198,84,123,239,40,118,125,167,31,121,133,177,213,1,144,204,164,154,156,50,253,62,159,218,187,72,170,71,34,138,172,137,235,95,176,10,184,171,184,194,124,156,186,196,54,13,197,250,137,106,207,10,103,33,212,184,58,156,214,154,155,225,217,113,219,159,224,139,11,227,238,49,31,160,238,236,127,61,247,144,254,75,248,150,23,179,8,1,20,46,97,99,116,105,118,101,98,97,114,45,99,111,110,116,97,105,110,101,114,2,13,22,53,195,64,26,116,174,172,57,241,236,245,69,150,134,22,116,112,38,8,129,41,254,113,157,105,83,193,169,5,243,3,176,87,237,162,202,88,166,123,237,82,26,144,237,165,226,207,250,229,69,237,8,1,21,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,97,108,101,114,116,2,4,30,101,87,140,133,135,142,164,188,122,23,26,253,67,94,34,8,1,15,46,99,117,115,116,111,109,45,99,111,110,115,101,110,116,2,4,5,196,102,244,67,74,18,235,121,71,239,210,146,207,226,233,0,1,26,99,111,110,115,101,110,116,45,115,108,105,100,101,45,105,110,45,99,111,109,112,111,110,101,110,116,2,8,10,200,112,46,36,103,210,226,58,137,65,166,79,73,97,96,95,150,153,112,164,130,118,239,237,246,204,214,239,244,132,208,8,1,35,46,67,111,111,107,105,101,115,66,97,110,110,101,114,95,80,111,115,116,105,111,110,66,97,110,110,101,114,95,95,89,104,95,68,109,2,2,192,206,117,195,218,227,119,5,8,1,17,46,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,2,5,85,78,170,146,85,166,79,218,209,102,82,185,209,228,241,79,236,188,4,49,16,1,13,35,98,105,115,99,117,105,116,77,111,100,97,108,2,5,28,106,222,26,142,225,92,63,152,47,71,199,218,137,134,86,225,70,72,218,8,1,12,46,100,105,115,95,109,101,115,115,97,103,101,2,4,39,218,74,246,141,100,71,132,143,50,101,214,214,145,226,233,16,1,9,35,104,101,97,100,98,97,110,100,2,3,193,176,133,42,241,211,9,42,251,67,238,23,0,1,25,91,99,108,97,115,115,94,61,34,80,114,105,118,97,99,121,66,97,110,110,101,114,95,34,93,2,2,81,60,83,123,162,68,62,199,16,1,17,35,112,97,110,100,101,99,116,101,115,45,98,97,110,110,101,114,2,1,142,25,131,155,16,1,19,35,99,111,111,107,105,101,115,95,97,99,99,101,112,116,97,110,99,101,2,8,6,230,146,243,7,170,1,187,78,181,192,212,111,239,221,75,122,134,17,41,151,127,214,123,204,206,32,114,221,96,238,93,8,1,12,46,99,111,110,115,101,110,116,45,98,111,120,2,3,108,228,233,249,157,117,182,177,250,97,243,142,0,1,28,91,99,108,97,115,115,94,61,34,115,116,121,108,101,95,99,111,110,116,97,105,110,101,114,95,95,34,93,2,2,54,252,124,217,109,167,225,27,8,1,17,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,2,7,14,87,214,189,36,92,59,174,51,172,9,65,54,153,208,157,112,242,246,75,116,150,30,57,139,237,47,84,8,1,10,46,99,111,111,107,105,101,102,111,120,2,2,39,204,83,167,113,45,50,42,8,1,12,46,118,119,111,45,111,118,101,114,108,97,121,2,9,5,209,161,237,38,157,71,211,76,238,30,115,130,199,53,13,159,83,84,1,161,155,35,180,225,108,232,179,245,78,224,178,248,18,6,117,8,1,17,46,117,115,110,45,110,111,116,105,102,105,99,97,116,105,111,110,2,10,0,231,210,116,5,201,85,229,19,222,60,75,67,11,196,202,102,22,255,46,108,157,189,197,160,19,68,230,166,80,94,56,173,245,100,38,246,19,132,153,16,1,6,35,109,111,100,97,108,2,5,11,158,244,216,99,91,3,170,170,132,132,78,195,109,25,50,222,117,252,53,0,1,26,91,99,108,97,115,115,94,61,34,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,34,93,2,3,16,250,211,118,190,146,226,135,250,185,41,202,8,1,17,46,118,45,115,110,97,99,107,95,95,119,114,97,112,112,101,114,2,5,35,51,31,89,58,145,83,202,80,187,82,197,86,225,59,163,229,106,172,252,8,1,23,46,70,101,97,116,117,114,101,66,97,114,95,114,111,111,116,95,95,95,73,78,85,56,2,3,45,78,253,97,46,21,124,114,138,220,24,53,8,1,10,46,118,45,111,118,101,114,108,97,121,2,10,10,216,9,153,35,98,234,55,37,208,250,121,51,231,178,180,95,199,82,125,106,197,71,204,201,193,190,25,225,17,159,206,227,143,64,119,231,246,76,113,8,1,22,46,99,107,121,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,2,5,5,72,83,205,31,121,36,114,80,209,200,20,187,154,107,68,234,205,137,145,0,1,18,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,95,34,93,2,2,148,134,24,141,175,8,224,165,8,1,16,46,99,111,111,107,105,101,49,50,51,45,112,111,112,117,112,2,8,24,221,220,247,36,202,206,31,47,219,140,113,52,38,77,162,76,127,192,29,81,180,72,70,204,3,191,139,254,228,94,41,8,1,27,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,45,99,111,110,116,97,105,110,101,114,2,2,24,237,102,159,207,56,231,142,16,1,10,35,112,111,112,117,112,68,105,118,67,2,4,8,132,31,8,166,254,172,110,173,170,142,40,181,188,193,97,8,1,15,46,112,111,112,117,112,45,45,99,111,111,107,105,101,115,2,2,58,99,205,45,115,245,94,227,8,1,8,46,119,114,97,112,112,101,114,2,8,2,108,227,75,20,233,95,13,57,221,16,226,69,51,217,147,82,222,63,78,88,106,188,208,146,27,192,97,209,16,178,75,16,1,7,35,110,111,116,105,99,101,2,8,15,98,97,22,48,170,197,178,110,108,110,215,119,214,213,52,173,137,140,236,202,66,200,136,202,207,169,3,241,170,80,97,8,1,14,46,112,97,110,101,108,45,45,99,111,111,107,105,101,2,1,171,190,232,8,16,1,9,35,112,111,112,117,112,68,105,118,2,6,16,32,221,251,24,194,7,191,157,59,79,63,175,36,92,223,185,125,46,162,230,175,75,34,16,1,4,35,101,112,100,2,6,88,107,90,97,92,171,210,132,115,249,249,8,140,2,115,139,154,237,173,53,177,66,75,62,16,1,5,35,99,98,97,114,2,9,8,113,205,150,20,232,163,71,141,60,62,254,164,1,172,251,184,91,190,51,220,180,56,148,224,210,99,186,241,162,47,162,244,143,251,224,0,1,23,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,98,97,114,34,93,2,2,214,179,141,95,229,188,4,179,8,1,29,46,109,115,116,45,103,100,112,114,95,95,99,111,111,107,105,101,45,98,97,114,45,111,118,101,114,108,97,121,2,1,13,151,78,60,0,1,25,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,115,45,98,97,110,110,101,114,34,93,2,5,97,227,164,57,111,217,30,137,172,20,41,250,199,198,239,249,244,157,48,11,8,1,20,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,2,5,135,125,45,250,151,35,248,7,191,175,178,2,200,67,59,136,212,126,225,55,16,1,15,35,99,111,111,107,105,101,83,101,116,116,105,110,103,115,2,2,176,255,70,46,198,222,213,239,16,1,16,35,99,111,111,107,105,101,109,97,110,45,109,111,100,97,108,2,12,12,244,95,217,27,103,134,49,32,252,107,25,81,145,108,213,151,109,117,165,166,60,238,192,204,98,39,29,214,198,39,122,220,239,177,84,231,106,154,193,242,231,138,80,246,118,244,109,8,1,13,46,67,111,111,107,105,101,68,105,97,108,111,103,2,4,115,39,144,119,131,161,215,189,155,24,33,20,190,148,10,25,16,1,22,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,100,105,97,108,111,103,2,2,105,198,22,135,137,129,123,130,16,1,20,35,112,114,105,118,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,2,3,18,12,73,141,115,178,22,27,247,131,215,173,8,1,21,46,109,101,115,115,97,103,101,45,102,111,111,116,101,114,45,112,97,110,101,108,2,12,32,78,69,61,46,242,191,230,61,145,236,150,74,52,22,34,87,133,91,131,110,44,155,44,152,175,231,207,159,166,253,35,212,255,231,210,220,151,165,234,230,180,199,213,253,24,132,122,8,1,13,46,102,105,120,101,100,45,98,111,116,116,111,109,2,32,3,26,94,17,13,16,199,213,34,207,183,15,38,157,62,30,56,53,88,169,64,174,101,192,69,10,57,95,69,121,104,215,78,122,253,174,89,56,251,17,90,8,194,182,90,52,120,177,91,134,115,61,93,255,31,232,98,103,206,166,108,91,47,165,109,123,171,194,115,189,12,104,125,54,189,169,125,195,7,193,127,46,50,83,129,124,47,186,141,145,184,230,149,73,208,87,157,93,159,254,174,199,50,155,180,140,197,131,195,211,21,218,210,28,238,78,213,15,78,104,224,121,210,67,230,221,60,97,8,1,20,46,110,97,118,98,97,114,45,102,105,120,101,100,45,98,111,116,116,111,109,2,7,5,13,222,225,19,65,122,92,116,87,179,127,159,194,245,172,163,28,253,186,189,249,174,58,249,208,255,15,8,1,7,46,98,97,110,110,101,114,2,33,4,188,171,232,11,224,65,169,16,10,222,151,19,135,128,67,43,106,38,97,49,214,95,181,54,120,194,226,62,31,171,218,64,51,16,63,72,91,185,93,74,197,133,105,74,254,173,207,82,68,143,172,102,132,9,0,107,113,102,15,112,104,103,231,113,74,18,94,117,211,112,90,121,127,224,191,122,221,94,16,124,206,112,235,135,37,223,89,151,228,7,239,154,105,64,21,159,74,65,14,180,186,171,182,198,123,128,164,201,40,177,238,222,215,91,87,223,205,157,14,224,83,67,55,245,127,81,202,246,52,11,154,8,1,7,46,110,111,116,105,99,101,2,31,12,209,145,157,16,89,12,43,22,113,126,44,35,234,34,69,38,152,47,150,42,69,9,48,55,165,125,193,103,100,48,168,117,114,255,9,125,254,149,211,126,247,162,201,137,238,46,160,144,187,38,143,146,233,79,238,147,37,163,44,148,180,17,147,151,66,192,38,154,45,37,118,163,142,97,91,170,94,208,15,172,116,198,120,179,177,119,214,199,147,189,40,205,178,121,114,206,131,54,197,217,100,109,32,218,135,113,160,238,162,195,241,243,168,91,161,251,109,34,16,252,32,47,53,0,1,22,91,99,108,97,115,115,94,61,34,71,68,80,82,67,111,110,115,101,110,116,34,93,2,4,37,108,190,19,116,176,55,219,199,211,96,150,205,174,84,199,8,1,14,46,109,111,100,97,108,45,111,118,101,114,108,97,121,2,11,16,45,37,234,43,207,196,35,46,238,187,49,51,178,83,250,92,171,129,255,129,187,117,59,133,230,178,153,158,237,221,164,202,44,217,138,210,20,91,104,250,241,235,23,8,1,15,46,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,64,154,179,20,8,1,3,46,99,99,2,4,26,99,85,127,27,119,9,8,114,242,218,127,190,245,94,221,16,1,7,35,99,99,95,100,105,118,2,7,13,149,53,1,61,201,88,84,141,217,202,105,147,195,153,241,168,26,235,138,200,164,79,162,248,88,254,221,8,1,7,46,99,99,95,100,105,118,2,4,40,25,116,218,40,117,185,35,55,31,210,155,208,79,83,207,8,1,14,46,117,45,98,111,116,116,111,109,70,105,120,101,114,2,13,44,0,245,247,56,213,157,76,66,149,187,171,77,148,5,61,88,122,250,20,91,42,56,37,128,111,206,95,135,107,145,58,167,48,186,226,168,178,32,177,178,60,221,4,212,163,218,57,251,119,155,226,8,1,19,46,106,115,45,98,111,116,116,111,109,70,105,120,84,97,114,103,101,116,2,1,206,220,191,169,0,1,20,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,111,120,34,93,2,2,163,86,225,189,229,28,167,217,8,1,15,46,109,111,100,97,108,45,99,111,110,115,101,110,116,115,2,11,11,36,193,8,17,208,32,157,18,179,233,245,45,74,45,177,82,178,228,175,83,143,98,173,117,87,241,204,156,114,247,45,195,59,149,180,213,213,21,137,247,19,184,162,8,1,15,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,2,24,7,20,17,67,9,210,152,55,16,184,109,201,26,84,75,233,34,27,254,115,41,90,10,140,60,174,174,9,60,222,168,61,65,242,173,92,85,53,243,164,98,126,69,224,113,132,131,72,120,32,255,244,156,8,247,228,166,205,82,92,177,236,240,63,182,214,221,220,202,200,15,118,218,4,36,138,223,153,164,82,226,173,59,14,231,113,55,216,246,255,165,60,250,203,221,78,8,1,9,46,99,110,45,108,97,121,101,114,2,2,60,148,209,24,99,251,166,157,8,1,8,46,99,111,110,115,101,110,116,2,29,19,59,234,13,20,107,229,225,27,103,136,217,31,60,18,241,38,244,191,147,47,104,163,20,47,151,171,226,51,103,125,230,77,0,160,135,100,49,34,16,101,81,2,29,105,30,59,238,110,207,116,3,119,37,231,149,121,193,75,19,127,88,106,24,128,91,78,0,128,192,164,209,136,101,79,212,142,199,222,180,162,98,52,53,175,159,193,117,177,79,5,194,196,113,130,167,202,187,67,151,211,170,39,143,213,50,189,174,242,47,161,208,247,76,201,190,8,1,16,46,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,2,30,3,250,242,100,7,254,4,35,16,100,174,148,28,112,9,223,52,192,42,230,55,132,18,231,60,125,63,152,82,97,20,86,93,148,124,140,103,224,76,201,110,222,250,124,114,30,8,105,121,152,87,72,121,192,21,175,123,139,212,140,128,180,17,174,145,227,9,15,160,236,247,188,162,153,70,20,167,35,25,106,177,38,206,241,188,31,251,251,194,99,130,191,200,82,125,203,202,187,67,151,219,166,204,5,226,211,194,173,248,146,22,187,250,97,243,142,251,128,184,247,8,1,9,46,99,111,110,115,101,110,116,115,2,21,17,166,115,206,38,91,110,116,47,227,199,155,57,112,6,4,70,41,58,116,77,9,132,166,82,200,51,145,142,121,119,87,145,73,7,190,152,188,44,8,164,188,110,65,167,108,168,177,171,219,66,106,189,107,234,239,193,18,36,28,209,165,67,218,221,181,68,21,233,144,80,236,234,80,108,140,244,59,160,111,244,238,74,194,16,1,8,35,99,111,110,115,101,110,116,2,49,3,183,199,143,3,188,133,153,6,222,161,65,8,238,204,232,10,155,43,83,14,23,120,202,15,175,119,39,24,234,251,69,25,160,176,155,41,180,241,247,45,195,111,77,47,44,15,162,54,155,161,183,63,207,54,206,66,106,54,29,77,233,3,196,93,12,234,53,115,193,66,38,121,32,57,100,126,199,49,163,128,202,200,53,129,73,183,242,131,212,215,226,132,58,57,58,139,105,226,243,140,182,161,118,144,84,155,115,151,66,54,86,161,15,40,233,161,68,79,143,163,146,103,168,164,149,38,254,166,203,165,243,194,197,252,190,199,211,172,32,200,49,150,152,200,134,34,27,202,177,53,110,209,103,153,54,220,75,92,206,221,255,79,2,222,161,101,156,227,135,75,197,228,104,231,236,229,62,221,48,230,1,204,10,239,135,241,128,239,170,16,54,250,34,254,32,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,115,66,97,110,110,101,114,34,93,2,2,64,28,48,186,96,237,191,101,8,1,14,46,99,108,105,45,98,97,114,45,112,111,112,117,112,2,3,99,225,121,104,131,241,175,64,216,100,239,116,8,1,19,46,99,107,121,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,4,86,127,242,230,112,23,133,175,127,55,175,129,185,55,222,121,0,1,23,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,77,111,100,97,108,34,93,2,3,67,62,112,43,102,141,140,254,176,53,71,215,16,1,22,35,99,111,111,107,105,101,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,2,4,29,133,39,70,48,118,4,232,135,45,173,119,198,169,7,87,8,1,5,46,108,116,99,110,2,11,17,232,14,233,19,132,167,28,28,227,234,184,44,237,107,67,59,13,188,215,61,137,201,166,68,65,75,121,95,140,181,227,118,40,166,17,227,226,81,215,237,39,212,52,16,1,8,35,67,111,110,115,101,110,116,2,3,6,178,146,140,47,235,172,15,221,3,152,132,16,1,11,35,99,99,45,119,114,97,112,112,101,114,2,2,125,214,166,66,174,116,44,233,8,1,10,46,99,99,95,100,105,97,108,111,103,2,3,52,89,196,199,79,225,91,18,185,174,147,209,8,1,10,46,99,99,45,103,114,111,119,101,114,2,3,31,170,153,35,56,41,250,94,236,224,234,251,8,1,3,46,99,98,2,6,7,175,18,112,27,15,27,34,48,139,77,42,57,83,239,207,168,120,201,223,170,40,196,255,8,1,3,46,67,65,2,12,6,149,9,80,30,215,13,4,116,43,239,253,123,198,111,110,154,23,131,163,176,34,116,232,180,193,251,1,194,89,121,174,201,62,219,103,207,9,75,106,241,147,114,21,254,129,227,198,8,1,12,46,99,111,111,107,105,101,45,116,101,120,116,2,8,0,10,249,144,3,189,69,89,53,171,12,254,87,210,226,48,137,75,102,221,140,171,80,217,197,39,59,107,255,180,139,107,8,1,11,46,99,98,45,111,118,101,114,108,97,121,2,3,75,116,222,201,95,217,234,79,212,229,25,109,8,1,15,46,106,115,70,105,120,101,100,77,101,115,115,97,103,101,2,5,59,206,214,184,121,67,249,242,148,192,243,243,165,89,74,78,192,241,17,36,16,1,12,35,99,98,111,120,79,118,101,114,108,97,121,2,23,20,225,169,195,38,157,171,200,41,61,122,221,44,97,55,227,46,25,235,45,64,186,148,104,85,173,28,250,92,252,1,181,96,252,211,147,98,111,31,189,126,23,191,49,128,70,215,128,136,20,49,237,166,169,2,60,175,158,96,88,181,60,106,118,185,188,255,221,190,49,132,35,208,203,45,112,218,243,154,69,231,195,254,2,232,138,78,169,237,69,251,149,16,1,12,35,99,98,111,120,87,114,97,112,112,101,114,2,1,237,69,251,149,16,1,9,35,99,111,108,111,114,98,111,120,2,15,20,225,169,195,64,186,148,104,85,173,28,250,98,111,31,189,111,215,10,68,126,23,191,49,128,70,215,128,136,20,49,237,166,169,2,60,175,158,96,88,181,60,106,118,190,49,132,35,218,243,154,69,231,195,254,2,232,138,78,169,8,1,18,46,99,111,111,107,105,101,115,45,99,111,109,112,111,110,101,110,116,2,2,90,223,189,223,118,127,94,182,16,1,8,35,99,99,45,109,97,105,110,2,11,5,142,150,75,78,196,137,218,105,8,96,111,122,58,44,173,125,26,7,62,223,216,15,140,234,100,219,149,240,118,17,212,240,245,162,151,244,99,21,19,255,56,100,79,16,1,9,35,99,99,45,45,109,97,105,110,2,28,10,183,32,174,13,149,53,1,16,212,38,214,20,152,103,56,27,10,180,6,36,52,2,76,38,157,150,108,41,158,61,49,45,205,45,75,74,192,173,133,82,67,90,51,117,250,195,8,129,231,66,126,133,86,97,179,138,124,17,186,139,61,132,237,144,185,201,213,148,179,239,177,148,184,164,151,158,182,174,57,163,109,88,182,180,130,2,23,182,161,61,68,212,21,101,104,219,1,48,158,235,214,36,185,237,80,119,5,242,21,21,142,8,1,8,46,99,45,45,97,110,105,109,2,66,0,213,81,29,2,62,108,187,5,142,150,75,15,111,181,180,20,18,27,35,21,101,65,187,34,192,231,134,36,90,52,145,38,165,78,176,38,181,53,134,42,101,128,213,45,194,218,20,51,60,252,172,55,242,243,237,59,28,219,212,61,219,34,47,71,205,10,103,72,113,80,50,74,156,32,118,82,160,84,130,87,70,77,58,87,118,245,111,91,69,92,138,96,124,106,209,101,177,12,254,103,182,9,32,107,175,149,50,113,232,152,185,114,65,205,151,120,221,44,39,122,4,78,75,123,39,100,253,126,82,132,23,136,253,129,1,142,220,26,99,144,40,72,177,144,190,5,58,145,174,228,215,147,183,217,93,152,5,5,64,159,71,200,105,167,217,4,5,178,78,217,77,183,11,221,186,184,54,253,127,184,193,233,48,185,89,33,38,186,25,99,107,186,241,63,240,189,161,91,145,195,89,156,190,200,38,79,99,205,155,20,207,209,42,31,9,217,207,185,180,220,222,147,178,227,58,229,169,229,178,245,90,229,205,144,181,235,7,205,20,241,11,143,154,241,237,156,98,244,154,61,65,248,134,46,48,251,219,36,240,252,181,75,1,16,1,5,35,119,114,45,99,2,13,0,213,131,14,6,166,10,222,30,220,237,18,35,189,167,95,49,113,31,206,80,41,3,79,97,44,133,133,124,3,206,245,126,100,189,7,158,48,11,20,200,139,61,123,200,201,130,200,238,113,49,27,8,1,5,46,103,100,112,114,2,5,23,85,115,55,35,122,2,35,214,167,228,129,217,29,77,150,231,45,219,204,8,1,13,46,103,100,112,114,45,119,114,97,112,112,101,114,2,2,128,135,132,250,202,213,127,54,16,1,5,35,71,68,80,82,2,7,25,236,135,104,35,180,221,40,37,20,37,125,115,67,162,247,116,81,58,70,135,247,175,198,225,124,250,181,8,1,6,46,122,45,57,57,57,2,1,29,195,25,127,8,1,6,46,122,45,49,48,48,2,4,133,168,55,156,184,9,174,201,216,244,45,198,230,99,178,240,8,1,11,46,99,111,111,107,105,101,45,98,97,114,2,3,17,137,129,218,29,237,31,145,52,105,183,133,16,1,23,35,119,115,95,101,117,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,26,1,160,59,13,17,225,79,81,20,7,122,70,27,101,249,192,29,163,231,147,40,130,133,111,42,115,103,40,67,246,250,7,106,55,143,27,109,180,90,165,116,66,198,61,120,224,175,33,121,116,45,33,124,34,147,143,124,208,66,136,127,92,87,75,159,250,177,56,166,132,77,31,179,25,201,204,209,91,179,175,212,144,97,253,212,175,180,151,220,106,1,95,225,180,85,52,230,69,102,130,240,93,141,202,16,1,10,35,98,97,110,101,114,82,111,111,116,2,3,55,161,106,50,66,118,32,44,70,89,144,220,8,1,14,46,108,101,103,97,108,45,99,111,110,115,101,110,116,2,5,85,62,174,188,103,78,117,11,116,33,0,108,158,93,1,172,197,50,192,157,16,1,15,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,4,29,131,69,137,47,78,101,158,64,192,122,217,193,250,134,170,8,1,18,46,95,118,45,113,115,54,89,53,104,84,88,77,109,70,116,56,55,2,17,21,11,198,4,27,125,67,3,33,6,53,135,44,56,70,45,45,152,135,12,45,174,182,219,94,92,37,19,116,100,168,119,127,100,178,135,147,186,160,99,152,50,174,101,173,106,122,3,180,161,181,155,186,112,20,111,190,189,215,119,205,54,76,136,211,234,89,241,8,1,13,46,98,103,45,103,114,101,101,110,45,50,48,48,2,4,64,234,33,24,81,151,74,140,87,122,134,155,88,190,164,35,8,1,7,46,101,67,115,118,100,98,2,5,16,131,225,137,33,70,253,191,79,145,219,42,205,152,233,49,231,122,87,192,16,1,21,35,98,108,97,99,107,45,98,97,110,100,45,99,111,110,116,97,105,110,101,114,2,8,17,172,197,11,65,60,189,243,72,65,1,125,103,111,195,55,112,75,192,116,162,49,222,46,168,244,164,72,181,8,8,119,16,1,16,35,97,100,100,105,116,105,111,110,97,108,73,110,102,111,101,2,18,15,213,126,73,45,24,249,235,50,52,55,92,62,172,12,166,66,64,78,8,90,29,181,120,134,16,172,40,139,196,128,246,169,72,10,126,170,15,0,97,180,101,152,162,190,124,217,239,199,119,112,15,215,241,137,42,230,99,138,190,240,208,123,109,248,69,173,129,254,36,46,144,0,1,27,91,99,108,97,115,115,42,61,34,67,111,111,107,105,101,66,97,110,110,101,114,80,114,111,95,34,93,2,6,8,148,176,152,112,188,197,38,128,66,223,6,139,146,255,47,187,69,210,76,214,3,150,174,0,1,23,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,97,114,34,93,2,8,52,136,203,215,57,243,139,63,81,225,169,149,100,200,208,36,147,151,252,221,190,137,73,163,205,12,66,208,214,45,244,217,8,1,13,46,99,111,111,107,105,101,45,99,104,101,99,107,2,4,29,90,252,78,91,179,32,117,91,179,83,156,148,182,34,205,8,1,10,46,99,99,45,119,105,110,100,111,119,2,14,3,97,197,234,4,30,137,33,16,62,50,211,58,36,255,78,65,41,25,79,78,211,68,138,94,39,122,189,97,216,253,172,110,57,44,120,118,35,176,173,122,46,213,115,230,213,217,162,242,76,228,226,250,123,233,86,8,1,6,46,112,111,112,117,112,2,20,2,16,46,53,53,131,190,195,62,137,241,33,78,52,73,43,91,74,45,171,103,152,1,24,126,245,158,71,131,168,35,159,134,153,93,38,151,139,102,135,153,218,105,228,159,124,171,99,185,218,119,245,193,89,212,109,201,236,108,163,202,224,206,196,220,166,218,58,227,148,144,98,237,167,104,172,238,41,128,12,8,1,16,46,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,8,33,240,142,65,143,38,91,14,169,69,162,72,179,143,214,242,194,197,253,248,202,37,36,199,208,65,171,124,250,27,16,208,8,1,14,46,112,111,112,117,112,45,119,114,97,112,112,101,114,2,6,14,189,90,148,23,37,77,197,93,196,146,15,141,76,84,12,144,101,152,153,193,246,84,38,8,1,14,46,112,111,112,117,112,45,111,118,101,114,108,97,121,2,8,39,134,177,197,61,57,173,154,92,213,56,255,108,5,219,58,152,219,210,49,158,44,230,135,204,255,57,143,231,222,124,227,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,80,114,105,118,97,99,121,80,111,108,105,99,121,34,93,2,8,47,200,135,230,51,82,25,105,53,10,16,63,105,214,221,164,137,238,238,36,154,145,62,214,240,244,29,40,242,210,74,133,8,1,13,46,109,111,100,97,108,45,100,105,97,108,111,103,2,5,1,255,153,137,28,214,43,244,153,6,214,1,252,19,8,146,255,58,130,73,8,1,24,46,110,111,116,105,102,105,99,97,116,105,111,110,66,97,114,115,87,114,97,112,112,101,114,2,2,45,157,219,95,155,139,105,250,8,1,17,46,110,111,116,105,102,105,99,97,116,105,111,110,66,97,114,115,2,31,6,122,150,226,6,123,102,140,20,156,148,197,24,137,71,43,25,69,65,148,52,183,126,233,58,66,36,183,60,39,241,81,68,182,156,142,87,233,210,14,90,177,195,186,93,236,180,182,99,169,9,193,116,84,143,170,124,166,79,192,149,58,232,161,150,111,244,102,155,236,63,231,159,53,212,136,160,67,136,97,166,127,39,211,169,207,213,238,170,90,100,152,174,224,81,198,182,37,204,103,188,78,50,36,192,62,145,17,196,173,199,111,228,156,226,13,237,32,135,150,243,34,132,59,8,1,13,46,110,111,116,105,102,105,99,97,116,105,111,110,2,52,9,4,200,70,16,31,77,141,17,155,42,170,19,228,76,35,20,26,20,164,22,16,196,137,29,39,191,80,31,73,163,141,37,41,167,100,38,157,104,112,49,220,118,64,50,188,202,222,67,2,158,129,77,94,28,50,82,76,179,66,85,113,214,118,98,157,100,117,102,91,156,175,103,100,48,168,105,0,202,121,116,239,188,119,123,247,212,159,124,91,25,81,124,127,243,126,126,83,6,48,126,250,231,212,128,28,65,40,133,162,233,224,143,7,66,216,144,168,22,123,145,2,182,40,148,188,67,31,160,29,119,124,169,69,238,222,172,62,17,71,176,190,32,234,177,68,95,180,180,232,122,218,183,100,155,110,191,142,111,65,198,27,48,150,199,24,125,64,201,252,231,191,202,181,130,179,203,69,81,146,217,9,79,21,219,251,145,141,232,123,70,250,234,194,240,51,237,110,251,58,246,20,158,95,252,35,33,104,16,1,8,35,111,118,101,114,108,97,121,2,25,18,81,214,197,36,32,197,225,38,157,134,223,40,227,88,151,52,186,227,72,57,233,16,182,66,184,28,26,80,128,181,230,92,194,54,80,145,130,203,208,147,94,68,77,154,231,18,233,163,237,161,218,173,218,18,55,180,13,58,237,191,173,39,209,202,46,119,45,211,116,9,149,215,90,241,39,215,156,214,123,215,188,146,220,235,26,224,130,239,88,47,129,242,81,105,93,242,231,162,20,8,1,11,46,115,112,45,111,118,101,114,108,97,121,2,4,18,254,199,21,135,125,30,116,182,82,198,132,216,88,62,192,8,1,16,46,114,101,118,101,97,108,45,109,111,100,97,108,45,98,103,2,17,31,105,16,166,38,70,156,240,38,208,240,242,52,244,83,226,74,248,52,189,97,201,65,138,102,149,212,145,123,1,3,200,123,66,119,155,132,106,186,22,148,228,128,181,175,50,67,248,180,36,218,220,191,178,21,158,193,9,217,64,200,99,118,187,219,161,80,128,16,1,15,35,108,103,112,100,45,99,111,110,116,97,105,110,101,114,2,6,27,15,205,152,29,177,123,120,30,183,85,147,165,187,162,160,226,32,155,255,240,77,132,38,8,1,13,46,99,111,111,107,105,101,95,109,111,100,97,108,2,3,38,22,217,243,140,89,172,108,144,24,107,210,0,1,26,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,80,111,108,105,99,121,34,93,2,11,38,157,73,36,38,157,107,185,53,254,140,168,58,251,209,148,79,80,82,199,95,100,102,161,106,157,22,111,126,2,242,199,175,190,72,13,239,168,4,217,247,148,253,248,0,1,24,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,78,111,116,105,34,93,2,8,19,242,231,87,20,108,71,245,56,237,171,61,65,153,215,98,173,215,176,12,180,217,45,159,243,19,17,171,247,154,63,82,0,1,25,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,78,111,116,105,34,93,2,1,129,204,104,153,8,1,14,46,99,111,111,107,105,101,45,110,111,116,105,99,101,2,29,1,78,130,19,13,233,242,13,18,125,216,61,19,54,227,153,22,86,176,137,45,123,243,57,51,60,192,152,55,250,117,253,57,65,30,190,62,74,83,184,87,173,199,3,97,27,4,159,102,106,62,176,102,151,214,64,107,179,121,97,125,208,171,117,129,66,243,110,139,116,187,232,154,213,206,247,172,2,67,166,177,184,128,151,188,72,182,156,194,224,91,63,197,215,235,239,209,48,4,87,237,161,190,122,240,129,4,148,243,195,2,209,250,125,134,67,16,1,16,35,116,111,97,115,116,45,99,111,110,116,97,105,110,101,114,2,16,9,149,28,99,26,142,95,40,58,10,51,13,58,204,189,121,120,215,130,77,126,4,224,64,127,218,250,178,156,209,108,153,159,21,22,139,165,140,206,91,188,1,9,225,191,122,175,60,207,63,15,100,231,98,56,53,236,115,112,224,248,222,82,192,8,1,6,46,116,111,97,115,116,2,17,11,231,45,43,21,252,150,142,24,249,190,51,25,189,119,228,28,225,96,77,35,206,239,163,38,157,171,201,41,201,76,220,47,162,104,100,75,244,153,209,81,83,35,37,81,205,255,195,93,92,155,192,117,115,156,126,142,223,158,145,166,96,31,16,242,231,181,237,8,1,10,46,103,100,112,114,77,111,100,97,108,2,16,33,204,216,184,39,167,202,62,71,157,95,25,74,55,225,87,78,195,107,172,86,229,233,132,89,82,191,83,99,52,10,133,128,118,152,42,141,20,115,22,151,246,160,91,154,231,18,233,188,152,164,230,188,207,92,29,208,52,1,223,216,116,110,193,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,67,111,110,115,101,110,116,34,93,2,4,148,149,139,75,173,219,208,185,179,213,196,54,225,145,106,221,0,1,27,100,105,118,91,99,108,97,115,115,42,61,34,67,111,111,107,105,101,67,111,110,115,101,110,116,34,93,2,19,2,234,2,20,5,140,23,52,55,121,58,219,65,153,201,222,89,2,11,197,102,47,1,101,117,190,197,148,122,153,133,176,132,56,252,160,140,254,125,110,146,80,204,103,147,143,227,104,148,6,245,227,149,141,247,213,173,226,35,218,180,212,63,92,197,78,241,202,219,160,197,135,227,215,204,80,8,1,15,46,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,239,253,139,202,8,1,24,46,100,105,97,108,111,103,45,108,105,103,104,116,98,111,120,45,109,101,115,115,97,103,101,2,42,5,60,83,155,9,177,24,161,15,26,128,92,24,244,10,206,26,237,212,174,38,33,50,187,40,2,76,216,43,91,21,203,45,7,240,66,45,34,41,162,50,127,35,81,56,117,194,100,60,154,73,57,82,70,229,231,86,220,85,103,88,33,229,235,99,76,61,111,101,46,244,143,107,218,245,79,109,220,7,26,111,248,158,61,122,57,233,245,126,164,33,255,127,17,188,30,138,211,91,97,149,184,198,6,157,13,169,94,166,143,133,32,182,29,246,127,182,236,183,81,183,29,200,1,185,235,98,217,187,7,217,236,192,150,133,185,200,211,57,116,207,136,224,244,218,170,219,227,243,135,226,86,244,99,2,199,247,186,9,114,254,141,93,111,255,71,124,132,8,1,23,46,100,105,97,108,111,103,45,108,105,103,104,116,98,111,120,45,119,105,100,103,101,116,2,24,3,192,210,124,38,153,137,99,38,163,62,117,53,108,8,105,60,138,91,199,63,87,29,226,71,136,121,26,79,92,136,160,79,153,227,43,114,202,242,140,134,204,189,233,140,41,178,31,154,20,168,31,157,107,193,64,193,43,49,30,205,125,128,150,214,28,80,178,229,13,116,192,240,50,168,10,241,182,52,81,243,9,133,111,244,8,191,214,252,7,202,164,252,66,60,216,8,1,5,46,116,54,53,55,2,20,23,225,1,81,24,8,9,105,26,217,149,117,52,218,140,13,75,127,197,148,83,189,124,25,102,29,42,197,102,115,9,187,103,77,157,13,112,212,185,221,113,59,163,46,117,92,130,82,124,109,25,155,135,33,7,64,156,204,204,216,170,39,5,171,195,10,231,140,231,122,233,53,247,38,57,199,253,29,13,89,8,1,5,46,116,56,56,54,2,23,2,6,142,160,18,39,63,55,34,30,241,31,57,17,51,79,86,203,182,78,97,149,239,139,104,82,129,18,143,230,44,50,147,47,236,164,148,193,71,36,163,240,83,109,168,71,29,36,181,24,253,245,199,139,69,195,203,58,254,43,218,240,162,88,228,22,255,205,234,237,235,215,244,42,79,226,244,184,142,243,248,92,4,98,249,15,163,165,251,15,77,124,8,1,5,46,116,56,56,55,2,7,63,160,12,165,67,179,170,194,112,195,95,15,119,157,60,160,171,242,230,57,190,15,109,28,232,158,231,32,8,1,5,46,116,57,55,50,2,5,18,186,141,12,22,224,46,248,65,234,35,92,129,192,214,157,188,226,238,2,16,1,13,35,103,100,112,114,45,99,111,110,115,101,110,116,2,12,3,62,4,220,28,178,97,95,33,205,14,235,68,134,10,125,77,17,188,211,130,246,91,101,150,137,155,76,200,52,76,203,204,90,188,241,207,204,127,73,210,201,127,87,247,155,176,78,16,1,12,35,100,105,100,111,109,105,45,104,111,115,116,2,6,3,238,109,215,10,239,0,117,13,190,13,38,122,7,88,43,127,248,123,175,242,81,136,76,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,99,111,110,115,101,110,116,34,93,2,4,26,177,116,167,132,94,73,6,135,86,1,16,247,87,66,97,0,1,19,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,115,95,34,93,2,10,30,236,122,38,35,89,54,109,38,6,191,53,90,137,27,246,139,226,182,70,177,164,113,83,178,141,120,93,192,110,84,190,201,230,127,82,212,112,66,58,8,1,17,46,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,2,29,7,188,2,194,26,46,138,184,36,246,86,224,44,14,144,57,48,195,148,88,57,181,215,157,66,114,237,178,83,155,133,149,84,171,92,20,87,120,15,118,105,192,69,156,128,226,119,106,147,145,209,237,162,13,82,184,174,13,255,113,174,109,74,87,178,35,111,62,184,205,246,26,190,187,6,97,194,212,179,165,196,246,74,224,198,9,12,137,204,84,110,40,207,92,211,51,229,207,118,153,230,44,113,246,231,57,127,18,239,211,33,31,255,156,114,30,16,1,18,35,99,111,111,107,105,101,98,97,110,110,101,114,77,111,100,97,108,2,5,3,137,226,115,84,150,88,28,104,221,125,4,115,28,163,74,143,122,132,87,8,1,8,46,99,111,111,107,105,101,115,2,128,0,0,1,223,0,250,112,92,1,64,149,117,1,148,49,101,1,240,1,240,2,77,169,234,2,192,133,80,4,0,242,23,4,43,133,23,4,248,25,52,5,218,49,15,6,225,47,96,7,12,94,23,7,80,252,28,7,119,124,255,7,142,72,171,7,225,235,219,8,140,131,165,9,151,211,254,10,146,29,133,10,216,106,53,11,101,144,239,11,206,240,220,12,92,78,252,12,127,136,202,12,158,88,14,12,202,224,37,12,229,117,38,13,11,29,110,13,65,81,33,13,71,186,246,13,119,58,150,14,49,11,29,14,166,64,22,14,191,155,71,15,203,199,104,16,1,216,47,16,166,172,151,16,218,84,93,17,112,179,101,18,3,137,70,18,23,192,253,18,133,141,68,18,168,26,201,18,169,71,185,19,68,49,95,19,245,180,132,20,104,90,103,21,9,86,119,21,123,162,132,21,153,94,188,22,40,80,63,22,110,171,65,22,241,166,185,22,249,14,63,23,14,200,224,23,61,12,106,24,185,166,243,25,66,60,8,25,176,128,229,27,7,90,83,27,42,162,160,27,59,251,104,27,105,214,169,27,185,177,27,27,234,215,202,28,200,121,11,28,208,184,92,28,222,169,213,28,228,122,193,29,191,57,169,30,66,35,213,31,3,51,208,31,246,23,197,31,254,232,150,32,134,80,197,32,205,147,26,32,224,217,0,33,48,141,203,33,71,97,49,33,93,197,185,33,95,6,49,33,96,173,190,33,126,167,145,34,53,162,25,34,83,128,81,34,191,209,113,35,11,63,181,35,13,41,137,35,243,29,116,36,190,118,104,37,30,113,67,37,73,28,225,37,101,247,118,37,134,181,149,37,243,243,120,38,107,120,26,38,157,103,149,38,157,156,3,38,157,169,58,38,206,72,136,38,208,150,127,40,120,9,217,41,4,220,122,42,54,98,59,43,31,86,31,43,212,7,150,44,10,164,178,44,202,253,198,46,46,230,87,46,122,63,12,48,18,73,38,48,244,104,154,51,142,10,180,51,188,22,214,52,6,0,45,53,23,142,196,53,196,142,67,54,2,208,192,54,126,80,203,54,178,42,28,54,184,132,223,54,243,201,118,55,2,120,170,55,14,190,179,55,144,189,142,55,176,157,20,56,60,87,227,56,200,61,223,56,213,32,245,57,206,220,150,57,227,245,52,58,26,177,131,58,45,121,173,59,78,232,28,60,180,20,229,60,233,109,44,61,30,76,119,61,138,62,184,61,232,28,62,62,172,176,85,63,85,248,125,63,107,123,197,63,179,180,126,63,231,174,159,63,233,29,58,65,8,75,198,65,85,138,90,67,145,111,225,68,102,127,65,68,179,36,118,69,94,117,222,70,6,176,65,70,60,95,19,71,88,21,46,71,123,29,168,72,36,143,210,72,211,53,1,75,42,79,132,76,14,6,188,76,153,224,19,76,175,225,249,76,186,233,62,79,75,95,38,79,158,91,12,79,218,96,235,80,193,151,196,80,200,177,184,81,19,106,138,81,115,219,238,82,2,149,155,83,199,115,169,83,223,160,101,84,105,192,136,85,113,26,228,85,122,242,154,86,171,240,176,86,219,70,45,87,135,203,254,90,214,102,11,91,111,136,85,91,255,91,226,93,236,59,33,94,201,141,222,96,97,66,128,97,12,28,71,97,73,243,22,98,73,214,146,98,97,209,208,98,143,211,205,98,253,72,71,99,132,215,175,99,165,85,199,99,169,106,231,100,33,39,230,101,227,113,195,102,61,92,36,102,120,161,242,102,174,212,75,103,91,231,161,103,166,181,165,103,184,192,154,103,213,47,44,104,58,83,23,104,170,178,195,104,226,117,185,107,84,131,67,108,96,2,150,108,117,30,22,108,192,20,47,109,21,215,30,109,62,145,200,110,29,11,251,110,47,179,201,110,84,53,235,110,227,168,233,111,58,189,252,111,138,169,162,111,160,137,227,112,102,236,183,112,164,246,37,113,40,23,198,113,59,229,127,114,2,134,83,115,53,204,155,116,54,125,165,116,145,11,145,117,34,68,223,117,153,9,50,117,166,39,62,118,235,244,228,119,162,144,220,120,208,125,211,121,103,155,179,121,177,96,159,122,38,220,241,122,77,241,148,122,165,242,237,122,204,12,86,122,222,76,252,123,112,240,139,125,26,5,38,125,255,78,9,126,3,72,240,126,4,122,194,126,191,59,102,127,1,106,43,127,1,231,91,127,22,184,27,129,159,194,32,129,188,127,113,130,58,47,148,130,89,176,38,130,151,13,63,130,195,106,182,130,233,25,224,131,33,8,217,134,41,231,245,134,140,219,25,134,153,30,55,134,221,22,124,136,70,243,13,136,116,131,145,138,30,247,112,138,51,192,252,139,26,100,171,139,132,226,196,140,75,214,106,140,85,176,251,140,110,74,86,142,25,227,80,142,207,159,175,143,105,198,73,143,123,114,55,143,251,227,131,144,16,127,37,144,20,224,172,144,37,166,127,144,217,47,2,145,69,114,235,145,112,71,19,145,252,31,151,146,141,138,127,147,56,14,76,148,24,96,149,148,74,86,105,148,188,2,115,149,216,58,247,150,122,237,216,150,131,170,72,150,151,141,90,151,14,85,153,151,128,113,82,152,156,109,90,153,63,2,203,153,110,165,148,153,216,141,61,154,33,208,189,154,79,65,29,154,131,172,227,154,133,89,181,154,207,96,205,154,252,67,147,156,85,121,138,157,0,5,229,157,93,207,13,158,134,222,0,158,244,135,90,159,124,171,99,160,41,141,122,161,122,133,221,161,154,188,87,161,187,200,205,162,54,114,216,162,64,43,243,162,76,131,216,164,40,5,94,165,84,149,78,166,63,167,96,166,178,195,14,167,87,88,183,167,111,243,100,167,212,56,161,169,123,108,177,170,2,35,20,170,132,132,78,171,84,3,123,171,112,51,174,171,216,50,252,172,70,120,35,172,76,245,11,173,72,56,49,173,86,192,30,174,191,178,255,175,104,135,159,175,233,103,156,176,55,245,128,176,107,172,255,176,109,120,42,176,157,235,254,177,25,16,142,177,158,165,159,178,244,123,104,179,98,234,241,180,134,204,252,180,182,180,130,180,240,65,24,181,221,96,196,182,23,104,177,182,137,224,196,182,151,48,178,182,175,27,117,182,209,111,43,183,0,61,55,183,211,249,99,184,110,99,235,186,118,121,86,186,129,168,116,186,214,55,27,187,197,207,0,187,244,16,42,188,34,165,227,188,63,32,125,188,124,173,131,189,146,55,112,190,71,74,65,190,81,141,22,192,63,203,81,192,83,169,60,192,179,78,49,192,203,82,25,192,220,247,198,193,154,248,20,193,187,212,163,193,195,68,96,193,230,189,193,194,246,62,224,195,2,125,154,195,102,36,60,195,165,142,35,196,68,92,1,196,221,63,78,198,94,0,86,199,237,153,57,199,245,56,19,200,249,135,208,201,4,83,34,201,168,13,180,201,171,92,106,201,217,195,220,201,236,108,163,202,229,76,66,203,171,104,75,204,0,215,43,204,221,57,5,206,58,242,9,207,145,51,55,208,94,251,251,208,112,77,89,208,169,187,129,208,232,168,46,210,117,191,255,210,185,17,212,211,97,108,49,212,160,15,167,213,221,218,10,214,157,44,203,214,180,91,246,218,82,132,253,218,116,100,163,219,94,132,237,220,26,187,208,220,51,102,80,220,234,38,119,223,0,240,165,223,183,17,140,224,133,168,98,224,246,214,210,226,147,160,20,226,171,152,4,226,175,150,213,229,129,152,17,230,25,81,150,230,55,41,9,230,84,102,14,230,116,210,97,230,243,223,40,231,64,221,37,231,89,79,71,231,168,61,96,231,211,85,76,231,228,222,200,231,254,94,241,232,120,139,184,232,146,13,15,232,196,199,150,232,228,104,33,234,26,185,30,234,129,85,213,234,147,225,117,234,205,160,168,235,144,47,89,236,67,193,139,237,230,219,23,237,240,200,150,238,44,100,74,238,141,112,86,241,162,233,243,241,209,13,207,242,61,215,148,242,81,185,84,243,144,202,177,243,183,115,189,244,99,22,130,244,99,26,115,244,245,178,253,247,25,0,92,247,40,229,136,247,76,206,95,247,165,199,154,247,223,113,173,248,132,72,181,248,196,13,241,249,16,189,92,249,121,69,197,249,225,132,114,250,183,232,46,251,114,178,173,251,138,88,14,251,159,75,80,251,194,238,14,251,197,85,41,251,210,243,66,252,45,89,228,253,40,72,37,253,232,17,88,254,171,46,185,254,172,90,58,254,214,220,166,255,121,156,240,8,1,7,46,99,111,111,107,105,101,2,128,0,0,1,255,0,27,29,29,0,243,113,197,2,233,32,32,2,235,51,60,3,71,162,60,3,96,8,35,3,196,193,112,3,232,2,153,4,41,2,119,4,74,186,205,4,217,157,221,5,62,72,88,5,246,73,125,7,16,145,42,7,47,215,128,7,78,225,140,7,222,182,5,8,33,91,229,8,122,90,112,10,136,134,133,11,71,250,19,11,94,177,74,11,121,209,215,12,53,76,225,12,66,48,219,12,115,184,250,12,204,193,9,12,247,51,195,13,247,142,76,14,100,47,224,14,253,30,132,15,78,78,178,15,94,35,235,16,7,0,226,16,97,27,38,19,254,237,88,20,52,163,249,20,66,66,123,20,239,74,232,21,8,63,164,21,123,105,134,22,127,43,145,23,45,78,223,23,96,42,93,24,46,52,162,24,46,200,160,24,88,85,38,25,33,16,141,25,35,239,222,25,242,131,198,26,203,178,94,27,183,5,34,28,82,70,168,28,204,207,96,28,210,215,40,29,34,171,155,29,38,191,35,30,113,77,38,31,73,150,87,31,73,163,134,32,51,83,63,32,189,135,162,33,73,159,191,34,24,107,53,34,41,57,63,34,162,133,225,35,34,158,108,35,71,250,224,35,99,200,95,36,33,119,76,36,67,17,54,36,84,133,248,36,224,23,92,36,226,219,138,36,241,41,252,37,14,91,1,37,118,16,54,37,177,131,144,37,241,202,6,38,157,71,245,38,163,20,9,38,181,188,251,38,187,223,172,39,67,150,32,39,163,94,129,40,40,9,197,40,247,224,81,41,239,48,31,42,95,170,244,43,150,247,109,44,45,248,184,44,170,94,54,44,181,147,28,44,237,186,241,45,38,191,82,45,71,89,172,46,147,178,147,47,38,179,3,47,182,185,146,47,198,9,27,47,252,55,229,48,103,50,56,49,217,178,4,51,51,171,214,51,53,203,110,51,56,25,240,51,73,188,139,53,9,198,40,53,244,116,109,54,189,82,82,54,254,102,124,55,13,181,72,55,29,173,36,56,58,42,232,57,20,87,114,57,133,198,169,57,250,109,139,59,94,242,161,59,184,251,60,59,245,204,87,60,83,254,34,61,158,203,43,62,43,72,234,62,55,145,219,62,87,118,163,63,197,239,247,64,10,34,105,64,196,147,190,65,10,218,123,65,196,128,250,66,151,95,47,67,79,206,168,67,203,147,245,68,118,143,75,68,194,238,106,69,97,178,212,69,114,19,185,69,245,8,167,70,176,120,24,70,206,49,241,71,212,84,93,71,247,251,149,72,74,39,187,72,101,27,1,72,128,229,243,74,67,18,71,75,41,66,207,75,88,119,216,76,146,65,49,77,12,25,222,77,83,243,151,77,115,149,225,77,233,84,199,78,35,237,153,78,181,239,2,79,1,135,22,79,7,146,104,79,215,29,228,80,114,233,167,81,138,127,67,82,78,107,222,82,179,88,117,82,248,67,173,83,79,148,13,84,42,112,35,84,244,21,117,85,200,236,125,85,221,88,0,86,160,92,71,86,192,90,50,86,218,67,47,86,219,14,243,87,123,162,252,88,99,20,222,90,52,254,64,90,107,40,188,90,138,14,59,90,233,150,129,92,22,36,105,93,59,133,135,94,136,111,24,94,180,100,160,94,183,89,5,94,188,178,19,95,54,191,5,95,71,78,1,95,147,134,184,95,170,97,95,96,124,195,34,96,171,66,217,96,237,86,173,96,237,168,66,96,241,144,129,97,66,197,170,97,81,237,252,97,103,133,186,98,113,239,148,100,171,11,164,101,1,74,108,101,226,41,90,102,37,55,86,102,176,119,89,102,213,191,231,103,44,190,41,103,99,249,201,103,136,45,14,103,217,53,106,103,233,103,245,103,254,80,70,104,12,107,235,104,57,132,202,105,135,140,217,105,203,145,8,107,138,134,20,107,218,36,65,109,97,188,128,109,239,13,92,110,233,61,146,111,146,42,221,112,237,110,75,113,40,79,81,114,75,187,64,114,75,191,246,114,223,109,230,115,92,89,65,117,228,70,79,118,251,156,22,119,33,129,237,119,106,68,72,119,127,253,203,120,29,125,72,120,152,96,60,121,60,206,228,121,180,51,222,122,120,126,2,122,135,67,224,122,151,118,162,124,1,11,239,125,191,70,13,126,27,244,88,126,189,155,118,126,243,148,221,127,1,106,43,127,64,91,225,127,120,152,215,127,232,245,98,128,2,197,250,128,101,218,130,129,48,97,119,130,2,101,79,130,139,53,5,130,219,244,78,131,36,183,132,131,114,98,158,132,54,60,152,132,227,240,94,132,248,46,150,133,37,89,97,133,164,170,108,133,220,125,54,134,163,5,154,136,93,152,164,136,191,162,251,137,139,64,97,137,157,98,132,138,103,44,64,138,180,27,162,139,19,80,250,139,99,161,111,139,163,13,111,140,17,34,173,140,126,228,188,140,172,124,38,140,203,143,153,141,60,156,226,141,76,173,82,141,151,109,153,141,183,30,67,142,17,220,31,142,42,73,33,142,55,68,221,143,175,111,223,143,213,99,163,143,230,63,141,144,127,210,50,146,2,121,140,146,147,242,75,148,126,21,184,148,186,151,254,148,218,111,159,148,222,194,213,149,247,236,164,151,38,254,97,152,106,81,207,153,125,116,23,153,136,189,27,154,12,119,243,154,130,91,8,154,252,91,108,155,70,253,224,155,96,154,193,156,9,116,135,156,92,164,46,157,152,246,92,158,232,135,17,159,0,181,211,159,88,97,142,159,151,173,32,160,69,109,154,161,43,150,210,163,30,222,10,163,49,80,190,163,185,55,1,164,1,230,95,164,54,250,188,164,238,233,98,166,36,54,100,166,137,120,226,167,112,72,5,167,113,203,128,167,157,245,50,167,241,19,214,169,232,183,28,170,0,47,122,170,33,144,106,170,85,103,84,170,105,19,252,170,226,217,82,171,137,89,246,173,100,118,43,173,113,154,160,173,131,11,245,174,146,66,46,174,239,68,139,175,50,152,201,175,160,198,158,175,214,17,90,176,73,186,225,176,168,10,37,177,25,56,24,177,51,217,201,178,1,199,135,178,107,86,212,178,255,94,103,179,55,251,252,179,59,85,56,179,66,95,252,179,159,25,69,179,204,201,63,179,220,111,30,180,29,42,67,180,138,89,121,180,170,87,212,180,251,60,215,181,16,119,28,181,75,118,238,182,20,226,126,182,131,79,219,182,175,73,243,182,175,112,4,184,117,84,10,185,52,201,77,186,41,158,184,186,156,153,182,186,189,109,11,187,23,34,97,187,236,40,156,188,239,7,12,189,78,141,245,189,126,77,11,189,234,4,242,190,81,41,184,190,81,51,144,190,107,87,88,190,147,198,216,190,148,62,20,191,147,34,86,191,187,13,16,192,45,173,251,193,174,22,170,193,189,227,104,194,197,253,35,194,197,253,189,195,83,188,47,195,128,206,0,195,225,241,55,196,33,62,52,196,236,4,238,197,161,163,91,197,183,119,250,197,236,243,210,198,54,56,93,199,17,250,138,199,71,143,91,199,162,5,247,200,20,1,58,200,48,138,144,200,86,175,245,200,140,72,83,202,37,36,199,202,210,90,90,203,36,119,207,205,51,57,245,205,97,87,121,205,149,255,166,206,125,101,81,206,148,162,241,207,54,219,34,207,244,106,215,208,214,9,74,209,19,235,235,209,93,38,14,209,138,137,195,209,242,176,79,210,20,91,104,210,163,218,200,210,168,22,244,211,38,227,28,212,127,185,135,213,14,249,37,213,222,128,125,214,164,51,175,215,130,244,97,215,245,65,160,216,138,212,56,216,165,126,53,217,24,172,67,217,133,248,123,217,151,197,134,217,246,117,142,218,73,91,205,218,87,184,172,218,188,105,153,219,63,52,103,219,178,44,170,219,238,103,83,220,78,134,93,220,247,40,137,221,15,13,187,221,75,167,96,221,242,52,120,222,28,152,245,222,35,27,91,223,214,128,102,223,226,113,169,224,58,219,43,224,115,62,149,225,88,122,175,225,191,177,182,225,192,34,52,226,95,250,30,227,119,12,198,227,253,98,51,229,254,239,244,230,70,96,84,230,134,34,254,230,194,254,213,231,167,163,200,231,246,249,232,231,255,30,213,232,64,238,167,232,184,4,23,232,213,101,196,232,217,133,58,233,126,250,194,234,213,142,69,235,37,68,21,235,92,66,250,235,206,105,234,236,22,246,85,236,120,118,121,237,168,20,151,238,73,147,243,238,244,203,184,240,15,46,158,240,142,89,29,240,147,183,122,240,253,193,149,241,21,89,35,241,203,67,240,242,66,191,173,242,81,135,199,242,170,0,71,242,231,97,36,243,9,165,156,243,121,126,144,244,15,145,48,244,47,90,154,244,245,240,102,246,11,231,192,246,19,3,77,246,21,251,185,246,59,17,252,246,90,138,24,246,120,125,42,246,167,124,0,247,137,27,169,247,155,136,225,247,231,101,229,248,32,193,126,248,39,90,79,248,108,143,237,248,239,233,255,250,150,156,74,251,187,74,167,251,219,253,128,252,213,129,178,252,239,43,160,253,127,80,154,255,155,16,108,255,198,24,58,8,1,5,46,118,101,105,108,2,16,7,94,19,39,20,222,28,206,38,157,62,132,56,59,102,57,59,10,237,134,117,176,151,15,129,61,95,201,137,110,27,52,147,111,247,82,150,64,73,249,171,26,82,178,191,213,71,182,224,122,18,147,239,64,42,56,249,146,36,6,253,3,158,82,8,1,9,46,98,97,99,107,100,114,111,112,2,5,3,30,58,174,200,79,100,232,218,113,200,160,226,171,23,146,245,80,177,65,8,1,18,46,108,105,103,104,116,98,111,120,45,98,97,99,107,100,114,111,112,2,9,10,210,67,126,24,71,62,223,29,240,252,141,55,253,183,30,57,94,180,163,58,50,206,48,65,58,143,31,161,149,6,140,227,223,152,239,16,1,18,35,99,111,111,107,105,101,98,97,110,110,101,114,77,111,100,97,108,2,9,11,178,239,247,36,0,225,67,37,112,129,226,43,227,179,70,72,215,199,218,120,200,241,216,221,215,116,158,242,35,238,236,245,172,121,78,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,9,11,178,239,247,36,0,225,67,37,112,129,226,43,227,179,70,72,215,199,218,120,200,241,216,221,215,116,158,242,35,238,236,245,172,121,78,16,1,21,35,99,111,111,107,105,101,115,67,111,110,115,101,110,116,68,105,97,108,111,103,2,2,39,137,125,173,90,247,9,251,8,1,14,46,105,110,115,101,116,45,48,46,102,105,120,101,100,2,8,4,165,34,39,48,22,6,164,55,47,69,8,94,158,214,121,108,13,194,197,150,133,194,149,181,231,167,134,184,91,75,183,0,1,32,100,105,118,91,105,100,94,61,34,115,112,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,95,34,93,2,2,148,192,144,210,208,117,205,224,8,1,12,46,116,119,45,98,111,116,116,111,109,45,48,2,6,126,28,53,53,129,41,166,184,186,128,229,251,220,9,196,124,236,38,109,243,238,218,211,255,8,1,15,46,99,111,111,107,105,101,115,67,111,110,115,101,110,116,2,3,9,184,226,50,136,125,208,120,167,54,106,58,16,1,26,35,100,109,45,99,111,111,107,105,101,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,63,2,166,204,132,9,212,215,230,11,179,254,66,12,4,132,151,19,129,70,56,22,95,89,212,24,13,255,224,24,116,240,233,30,209,239,197,31,53,190,196,33,75,47,15,60,80,243,249,64,16,238,33,67,185,254,119,69,25,214,218,71,202,244,178,74,209,168,131,89,121,184,147,93,24,17,210,93,131,179,80,95,77,68,209,99,161,158,147,100,207,145,87,115,32,217,88,116,32,65,201,116,43,215,82,116,95,164,103,117,56,20,169,117,246,118,121,124,78,28,225,125,195,228,58,125,250,36,74,126,9,102,219,126,98,57,62,127,233,227,17,133,224,216,8,134,218,66,75,137,65,79,129,145,46,164,196,149,189,232,209,152,6,69,160,156,5,157,25,160,197,195,96,171,3,205,101,171,171,243,27,187,63,177,115,189,167,74,206,200,206,123,218,204,123,114,127,205,33,94,40,207,126,247,29,207,187,195,208,210,150,236,156,211,144,187,0,217,25,171,247,217,156,161,216,224,195,93,174,230,2,171,7,235,79,122,230,236,7,228,226,243,58,201,172,250,105,172,246,251,111,75,145,16,1,17,35,99,45,99,111,111,107,105,101,115,95,95,109,111,100,97,108,2,2,27,113,228,109,44,22,118,184,8,1,8,46,111,118,101,114,108,97,121,2,51,1,239,49,189,12,133,163,241,19,94,243,204,21,196,28,102,23,167,101,240,23,217,156,25,27,11,129,140,33,234,200,125,41,177,217,13,47,216,1,130,52,102,165,177,55,215,67,249,56,145,50,97,61,140,186,226,72,208,101,7,75,122,87,84,90,138,14,59,95,54,191,5,98,17,21,78,103,244,210,56,105,65,196,232,105,167,205,123,105,168,9,156,110,225,66,27,113,74,18,94,114,171,215,70,124,128,55,105,131,13,11,168,138,93,114,249,139,78,245,243,140,153,5,178,146,41,223,203,148,126,21,184,162,255,188,42,164,253,251,180,175,188,207,0,178,64,58,168,187,3,157,214,190,147,202,79,199,171,206,137,201,68,142,20,203,242,222,5,205,32,98,32,208,33,7,119,210,93,205,231,213,49,155,217,221,255,79,2,246,38,177,179,247,68,202,76,249,60,221,202,251,110,154,175,16,1,6,35,109,115,103,98,103,2,14,59,223,11,200,86,152,62,221,98,50,208,44,98,109,143,46,100,177,233,219,102,35,183,195,167,232,63,225,194,167,119,79,199,169,158,240,205,176,253,96,215,38,177,206,220,179,168,15,230,230,121,233,254,42,104,165,0,1,39,100,105,118,91,115,116,121,108,101,61,34,111,112,97,99,105,116,121,58,32,49,59,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,34,93,2,12,13,69,185,190,23,150,9,203,28,79,56,78,37,136,131,128,40,133,82,211,58,25,87,174,76,188,150,97,80,151,213,38,99,21,244,97,118,14,170,120,220,91,69,109,239,227,11,197,8,1,18,46,108,105,103,104,116,98,111,120,45,98,97,99,107,100,114,111,112,2,22,11,112,167,64,40,208,223,226,74,26,86,119,83,218,69,211,84,46,175,186,88,115,229,10,90,180,89,243,90,212,45,176,104,76,234,94,115,78,208,235,119,220,33,238,125,55,252,245,143,13,54,99,147,13,180,161,171,69,107,72,182,151,179,2,189,86,188,16,199,71,164,117,214,0,192,67,239,30,98,162,239,153,130,138,247,87,221,12,16,1,22,35,115,108,105,100,105,110,103,45,112,111,112,117,112,45,99,111,111,107,105,101,115,2,2,87,55,122,105,204,97,105,129,8,1,18,46,113,99,45,99,109,112,50,45,99,111,110,116,97,105,110,101,114,2,4,29,116,127,165,108,57,111,200,148,250,224,42,233,64,129,191,8,1,15,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,15,3,82,150,21,40,207,41,173,66,173,236,144,88,198,163,24,92,118,55,175,93,152,40,161,147,244,199,200,191,243,194,235,204,62,141,96,204,204,121,186,219,82,225,1,233,123,241,0,242,54,125,73,242,63,224,206,251,254,35,128,16,1,20,35,99,111,111,107,105,101,115,67,111,110,115,101,110,116,77,111,100,97,108,2,1,46,199,47,6,16,1,14,35,109,121,45,99,116,99,45,119,105,100,103,101,116,2,11,28,122,95,115,69,214,160,205,97,104,84,231,99,129,164,73,148,148,21,166,160,79,198,141,178,203,100,55,209,79,105,189,218,248,174,229,228,101,8,41,248,160,10,15,8,1,7,46,115,112,117,45,98,103,2,95,2,204,209,14,5,66,8,182,8,119,226,86,10,231,46,49,13,85,64,83,14,86,100,202,15,58,199,27,16,46,250,76,18,7,78,196,19,196,252,217,23,94,93,139,25,149,4,249,31,56,128,193,36,225,111,100,39,143,253,143,41,25,129,166,43,46,220,193,50,9,163,59,52,43,3,180,52,175,38,97,53,17,185,86,55,174,183,251,56,80,179,251,58,58,136,248,59,233,71,246,61,31,229,248,63,212,225,232,66,95,46,28,67,87,123,134,76,65,3,188,79,126,97,110,80,37,124,190,80,80,46,3,80,183,225,234,81,117,72,52,89,154,20,214,95,153,113,197,102,82,132,218,107,174,120,103,108,231,58,227,113,4,33,213,115,33,50,30,117,40,167,0,117,213,161,139,119,88,50,116,120,48,136,239,126,4,150,63,129,187,78,50,129,193,189,135,129,195,188,181,129,203,182,173,130,185,154,220,135,11,141,119,135,121,250,123,137,221,206,153,146,68,108,201,150,112,136,94,150,146,208,188,151,84,117,133,152,171,139,141,156,108,29,174,156,181,212,157,156,205,150,214,162,200,105,232,165,92,234,122,166,80,35,217,182,67,145,118,182,72,93,175,183,182,244,241,189,57,248,169,189,240,19,90,193,9,86,106,196,186,177,122,202,147,241,208,207,23,227,21,210,91,65,181,211,112,9,12,222,100,161,250,227,231,74,1,228,230,21,176,230,100,212,211,231,126,26,110,233,24,23,129,235,165,50,6,235,192,215,48,239,144,183,45,240,33,122,19,240,59,117,75,241,196,107,0,244,202,72,244,246,120,220,40,246,133,143,240,249,138,250,36,251,3,82,110,253,62,140,53,8,1,8,46,115,112,117,45,98,111,120,2,8,13,85,64,83,41,25,129,166,58,237,166,205,61,31,229,248,107,174,120,103,189,240,19,90,225,65,123,136,253,62,140,53,8,1,11,46,99,115,115,45,112,117,109,57,108,57,2,3,82,70,229,37,118,37,103,64,146,2,117,11,16,1,12,35,114,101,113,117,105,114,101,100,45,99,99,2,3,89,234,38,110,97,73,216,206,226,157,223,226,0,1,27,100,105,118,91,99,108,97,115,115,42,61,34,99,111,111,107,105,101,66,97,110,110,101,114,95,34,93,2,13,14,110,155,159,27,224,69,4,33,200,47,151,42,159,105,102,51,213,99,100,55,106,11,183,99,151,153,143,107,200,119,210,109,143,139,123,133,206,127,185,150,49,99,41,191,159,119,241,203,239,37,137,8,1,12,46,116,111,112,45,48,46,102,105,120,101,100,2,4,76,1,111,145,109,229,27,8,126,4,120,17,138,1,99,30,8,1,14,46,99,111,111,107,105,101,45,112,111,108,105,99,121,2,11,11,156,160,29,31,73,106,12,35,57,147,150,55,165,89,255,90,65,41,194,97,243,105,152,108,201,130,20,122,81,100,175,158,96,206,212,179,100,179,95,189,56,2,248,8,1,20,46,109,111,100,97,108,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,21,46,62,23,16,1,14,35,115,108,105,100,105,110,103,45,112,111,112,117,112,2,28,15,107,150,20,31,73,207,99,31,73,211,185,50,113,98,236,54,208,126,155,55,229,183,105,66,9,96,88,74,153,190,118,77,251,109,180,78,46,33,50,82,81,130,200,87,188,31,31,103,0,120,88,104,32,161,173,114,245,149,167,148,186,52,181,148,201,201,208,149,248,58,140,153,11,192,77,167,110,220,205,175,13,28,11,178,244,221,187,195,55,134,148,221,208,200,189,225,191,62,227,227,95,235,74,230,210,145,252,245,111,129,189,8,1,21,46,115,108,105,100,105,110,103,45,112,111,112,117,112,45,98,111,116,116,111,109,2,111,0,212,246,241,1,89,100,220,1,216,10,45,4,1,176,134,5,139,28,0,5,157,19,16,6,86,67,88,8,32,25,226,12,252,123,87,17,199,100,226,19,230,218,232,20,53,13,232,20,79,95,103,20,239,59,154,21,123,140,160,22,168,136,108,23,128,105,58,23,236,30,79,25,161,215,121,26,20,82,33,26,213,115,236,28,61,35,41,28,77,161,44,32,165,123,139,33,200,119,14,34,233,155,33,34,247,25,251,38,157,31,177,39,53,216,0,43,164,83,51,45,190,239,139,47,169,11,225,47,200,69,114,47,216,154,145,50,76,8,158,53,111,88,57,54,64,163,41,54,127,233,80,55,186,90,237,55,245,234,158,61,179,249,212,65,164,191,186,67,17,128,136,67,103,242,204,69,105,185,150,70,48,232,199,70,175,212,91,71,168,184,37,71,201,245,113,73,19,7,247,87,250,204,148,89,223,58,230,90,63,30,195,95,201,146,211,96,248,73,182,97,46,181,63,97,74,100,211,98,103,145,59,102,78,121,12,104,223,169,114,104,223,227,34,106,24,61,91,107,214,134,214,116,47,205,71,116,53,98,189,118,166,119,110,123,25,230,47,125,134,171,246,125,137,67,180,128,237,151,48,133,126,242,46,133,246,239,211,136,120,40,85,136,218,174,249,137,5,15,131,138,85,237,98,153,11,192,77,156,220,197,181,158,207,254,160,160,164,15,62,163,3,99,29,163,226,49,52,166,6,8,188,169,21,39,54,172,170,156,190,173,214,71,51,175,10,145,208,179,205,80,222,204,25,244,94,204,133,48,152,205,226,16,255,210,35,238,98,214,148,111,224,216,119,76,143,227,82,229,218,229,238,213,244,231,74,156,157,232,101,79,255,234,28,11,217,234,125,47,165,238,42,55,233,242,103,37,169,242,231,7,178,242,231,104,166,246,133,11,63,246,223,135,37,249,132,238,33,250,151,127,123,253,194,250,130,254,158,158,215,255,138,11,107,8,1,18,46,99,111,111,107,105,101,115,112,108,117,115,45,109,111,100,97,108,2,20,8,241,40,169,21,178,217,214,34,164,152,6,36,77,21,153,52,20,144,58,65,3,218,225,65,113,165,138,68,162,144,164,93,205,168,26,103,193,180,138,105,71,115,3,152,141,218,219,154,205,251,27,160,75,220,5,180,209,203,170,217,204,203,182,218,10,212,202,224,99,42,42,228,137,74,78,249,250,228,209,8,1,11,46,99,111,111,107,105,101,119,97,108,108,2,10,23,73,94,41,38,48,178,234,61,230,113,214,102,140,222,249,112,169,112,62,162,125,212,99,191,63,135,245,192,4,170,97,201,167,113,226,220,87,79,158,8,1,14,46,109,111,100,97,108,45,45,99,111,111,107,105,101,2,3,54,89,251,0,161,136,8,202,214,62,137,87,0,1,24,100,105,118,91,105,100,42,61,34,95,109,111,100,97,108,95,111,117,116,101,114,95,34,93,2,2,86,220,231,132,154,83,124,238,16,1,5,35,114,103,112,100,2,14,13,86,209,201,13,158,117,38,23,50,119,107,26,123,57,175,72,248,119,161,124,11,194,187,138,2,10,101,144,20,225,61,149,215,15,108,166,136,181,126,182,131,41,246,182,132,168,27,238,58,0,103,241,52,210,128,8,1,19,46,118,100,45,109,101,115,115,97,103,101,45,119,114,97,112,112,101,114,2,4,180,83,37,178,235,63,240,94,236,128,19,207,237,175,139,104,16,1,16,35,97,120,101,112,116,105,111,95,111,118,101,114,108,97,121,2,3,6,66,54,7,72,92,47,59,123,63,56,121,8,1,14,46,99,111,111,107,105,101,95,104,111,108,100,101,114,2,3,38,228,95,28,170,78,20,176,173,62,100,181,8,1,14,46,99,111,111,107,105,101,95,102,111,111,116,101,114,2,5,61,56,113,179,75,34,38,158,78,50,86,155,151,218,169,93,169,202,170,139,16,1,11,35,99,111,111,107,105,101,119,97,108,108,2,21,18,145,231,200,27,6,179,112,36,230,128,70,81,199,164,175,82,213,94,40,82,248,112,4,84,163,248,187,113,53,135,66,139,101,78,101,157,197,42,131,158,52,138,70,164,236,57,235,166,165,72,49,179,196,143,140,193,210,147,159,194,6,179,219,194,144,49,115,210,170,187,127,218,95,110,156,229,192,74,39,231,32,50,235,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,22,8,61,161,73,10,184,29,33,23,212,70,172,25,81,223,150,32,237,197,245,57,93,93,77,77,213,153,80,123,140,90,202,131,143,230,204,141,252,88,48,148,214,30,115,149,156,111,189,150,27,47,245,162,213,33,194,170,40,180,84,175,179,217,248,179,137,153,207,205,150,252,241,212,239,101,148,231,115,82,23,242,231,103,74,245,248,16,240,8,1,16,46,98,97,99,107,100,114,111,112,45,99,111,111,107,105,101,2,1,120,237,165,119,16,1,14,35,99,111,111,107,105,101,115,45,98,108,111,99,107,2,2,106,45,148,112,201,169,224,90,8,1,12,46,99,111,111,107,105,101,45,119,97,108,108,2,4,102,102,110,33,212,157,214,72,242,121,3,55,254,105,205,226,8,1,10,46,103,100,112,114,45,98,111,100,121,2,1,170,202,135,86,0,1,16,91,99,108,97,115,115,94,61,34,103,100,112,114,95,34,93,2,2,18,126,124,1,117,100,17,28,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,34,93,2,1,190,220,39,223,8,1,8,46,111,118,101,114,76,97,121,2,3,60,249,5,185,129,113,205,169,242,87,204,87,8,1,14,46,67,111,111,107,105,101,67,111,110,115,101,110,116,2,65,3,202,121,182,13,203,17,94,13,220,236,86,20,186,77,42,22,230,50,142,33,97,98,5,37,111,173,197,37,144,105,177,39,83,51,80,47,144,127,58,47,218,151,1,55,11,115,23,55,181,90,37,65,100,46,54,70,204,191,249,72,202,25,68,78,14,44,234,78,94,144,211,80,19,11,163,80,41,202,77,80,131,73,155,81,88,186,92,89,232,152,129,92,106,44,16,94,72,255,49,95,116,21,187,106,34,13,109,106,251,165,44,109,196,229,60,109,224,98,19,110,52,206,142,113,108,228,198,118,79,197,149,118,231,77,165,119,207,14,89,123,200,253,239,125,243,225,113,127,39,131,20,127,240,52,61,128,35,254,75,139,92,216,48,150,235,204,44,156,216,17,166,157,201,203,24,160,144,137,79,161,143,176,122,170,85,243,232,180,62,173,1,181,8,244,191,182,132,11,61,182,162,252,114,188,32,79,115,191,131,253,237,193,179,102,88,201,137,123,107,202,50,46,123,204,209,5,247,228,23,108,159,233,123,241,0,235,125,148,172,243,93,248,68,245,27,70,218,246,13,217,48,250,197,193,210,254,46,3,176,8,1,21,46,109,45,115,109,97,114,116,98,97,114,45,99,111,110,116,97,105,110,101,114,2,3,103,106,226,202,126,158,181,96,204,60,16,74,16,1,14,35,112,111,108,105,99,121,45,114,105,98,98,111,110,2,4,57,7,214,194,218,131,5,69,239,195,212,59,245,66,72,156,16,1,21,35,111,110,101,116,114,117,115,116,45,99,111,110,115,101,110,116,45,115,100,107,2,117,3,158,31,168,4,41,174,20,5,75,47,209,7,48,134,127,14,151,112,44,15,140,132,187,17,37,14,101,17,121,30,224,22,66,235,138,26,201,190,39,26,201,193,25,37,208,98,149,38,156,253,176,38,157,25,55,38,157,28,48,38,157,76,97,38,157,171,222,38,244,159,189,44,204,26,97,49,13,238,244,49,201,169,236,60,19,244,115,64,253,111,180,65,255,187,251,66,127,87,151,70,178,137,89,71,85,102,110,72,102,106,29,72,245,227,226,73,8,226,49,74,41,218,104,77,172,239,103,78,27,28,108,78,105,197,223,82,5,29,176,86,19,41,21,86,35,200,87,91,17,129,193,91,18,92,161,91,52,44,223,94,100,239,142,94,135,89,93,95,140,136,155,98,206,145,147,100,67,121,150,102,69,191,87,102,109,12,59,106,200,204,131,108,122,162,124,109,254,10,30,110,253,209,117,111,93,22,148,122,249,68,184,123,18,30,187,123,138,218,104,125,12,244,184,125,134,67,200,126,9,214,225,126,76,231,94,126,232,182,81,126,241,220,179,127,1,174,185,127,174,27,255,128,104,78,33,129,67,109,232,129,189,191,56,136,147,135,170,144,195,247,70,148,185,233,25,148,187,41,71,148,188,9,210,148,188,25,84,148,192,208,239,154,84,226,2,156,172,32,174,160,164,8,195,162,86,76,24,169,183,71,74,170,93,69,209,171,137,76,163,172,132,41,90,175,84,158,54,176,219,62,84,177,41,194,176,177,147,32,170,177,246,198,148,177,255,9,102,180,58,230,102,182,131,6,250,184,12,230,93,187,115,160,68,188,123,73,78,194,104,65,144,194,197,249,237,194,197,253,15,194,197,253,34,197,156,210,37,197,215,202,131,199,184,214,65,203,80,119,158,203,172,99,165,205,108,43,59,205,143,21,30,206,252,7,234,208,121,149,103,208,210,15,28,218,183,250,107,218,225,138,167,224,32,167,108,224,37,255,69,225,197,85,78,227,62,88,242,234,172,203,27,239,83,149,118,245,72,107,29,249,252,244,125,253,242,131,140,8,1,24,46,111,110,101,116,114,117,115,116,45,112,99,45,100,97,114,107,45,102,105,108,116,101,114,2,92,3,158,31,168,4,41,174,20,14,151,112,44,15,140,132,187,17,37,14,101,17,121,30,224,26,201,190,39,26,201,193,25,37,208,98,149,38,156,253,176,38,157,25,55,38,157,28,48,38,157,76,97,38,157,171,222,44,204,26,97,49,13,238,244,49,201,169,236,64,253,111,180,65,255,187,251,66,127,87,151,71,85,102,110,72,245,227,226,73,8,226,49,74,41,218,104,77,172,239,103,78,27,28,108,78,105,197,223,82,5,29,176,86,19,41,21,91,17,129,193,91,18,92,161,91,52,44,223,94,100,239,142,94,135,89,93,98,206,145,147,102,69,191,87,102,109,12,59,106,200,204,131,108,122,162,124,109,254,10,30,111,93,22,148,122,249,68,184,123,18,30,187,123,138,218,104,125,12,244,184,126,9,214,225,126,76,231,94,126,232,182,81,126,241,220,179,127,1,174,185,127,174,27,255,128,104,78,33,129,67,109,232,129,189,191,56,136,147,135,170,144,195,247,70,148,185,233,25,148,187,41,71,148,188,9,210,148,188,25,84,156,172,32,174,162,86,76,24,169,183,71,74,170,93,69,209,171,137,76,163,172,132,41,90,176,219,62,84,177,41,194,176,177,147,32,170,177,246,198,148,177,255,9,102,180,58,230,102,187,115,160,68,188,123,73,78,194,104,65,144,194,197,249,237,194,197,253,15,194,197,253,34,197,156,210,37,197,215,202,131,199,184,214,65,205,108,43,59,206,252,7,234,208,121,149,103,208,210,15,28,218,183,250,107,218,225,138,167,224,37,255,69,227,62,88,242,234,172,203,27,245,72,107,29,253,242,131,140,8,1,6,46,109,111,100,97,108,2,128,0,0,0,164,0,189,124,120,0,192,211,79,1,229,135,67,3,159,60,142,4,233,97,237,4,242,24,197,5,72,204,170,6,164,208,233,8,25,212,72,9,104,15,90,11,169,105,166,14,66,51,93,14,129,2,225,15,173,137,167,17,107,90,41,17,130,222,201,20,26,200,158,20,32,33,89,21,248,124,245,22,145,136,160,24,175,31,98,26,56,30,59,28,221,2,18,29,188,7,30,30,14,22,250,30,96,104,162,32,1,227,241,33,80,146,145,34,34,243,187,34,79,214,93,34,131,63,120,34,198,122,43,35,127,86,145,35,184,177,44,42,140,90,167,43,16,107,230,43,209,114,79,44,52,3,17,45,14,205,208,46,180,161,105,46,238,187,49,49,217,34,211,51,98,231,136,54,180,72,27,57,225,64,90,61,81,190,179,61,248,217,235,64,164,194,251,65,215,249,88,66,194,126,196,67,3,213,18,68,41,79,192,73,226,79,157,75,253,74,87,76,198,121,185,80,72,12,70,81,145,108,213,82,33,51,198,83,214,192,6,84,8,203,174,84,127,245,138,87,88,226,38,88,61,100,102,90,205,36,145,90,238,107,188,92,42,210,27,95,13,237,16,97,117,99,27,101,87,65,28,101,127,108,20,101,132,63,87,101,210,93,36,101,226,105,219,102,49,176,161,103,2,87,118,104,39,95,50,105,2,131,193,106,115,81,41,107,41,223,235,108,83,159,74,108,116,132,139,109,71,245,121,109,140,214,118,111,5,122,60,111,228,85,16,115,59,182,17,126,93,133,198,132,101,195,223,141,211,69,119,144,69,82,94,145,248,86,173,147,182,207,224,149,159,209,231,152,162,111,59,156,162,204,175,158,149,29,96,161,198,239,138,162,56,250,237,162,249,54,85,166,60,186,99,166,60,222,159,166,164,177,167,167,227,79,248,168,194,106,140,172,97,217,65,172,207,119,224,173,51,246,197,173,71,52,58,174,210,13,111,178,112,18,40,179,65,109,177,182,117,18,103,182,195,106,131,183,45,84,249,186,107,17,254,187,25,69,145,187,38,81,205,187,226,83,131,187,253,228,126,189,190,123,72,194,147,38,144,194,205,173,229,195,7,81,205,195,69,152,69,195,82,141,152,196,218,32,200,199,79,125,219,202,190,235,36,204,157,50,244,206,86,137,190,207,131,161,11,210,198,60,10,212,86,151,141,213,180,132,234,214,183,103,100,218,181,166,167,219,76,15,222,221,129,219,10,222,250,175,32,223,119,96,155,224,60,102,111,225,5,254,191,225,13,48,34,225,191,170,137,228,47,231,119,228,58,67,63,231,35,242,143,231,43,220,56,232,237,141,50,233,17,6,6,235,184,247,146,239,30,247,238,240,121,83,138,242,231,181,177,247,160,64,74,251,79,199,244,251,139,35,30,252,133,56,20,252,138,20,17,253,95,63,170,253,151,101,154,254,134,142,70,254,148,249,134,255,198,122,239,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,128,0,0,0,243,0,192,211,79,1,229,135,67,3,159,60,142,4,233,97,237,4,242,24,197,5,72,204,170,6,164,208,233,8,25,212,72,9,104,15,90,11,169,105,166,14,66,51,93,15,33,191,248,15,53,53,218,17,107,90,41,17,130,222,201,20,32,33,89,21,35,236,219,24,175,31,98,27,157,249,141,29,188,7,30,32,1,227,241,33,80,146,145,34,34,243,187,34,79,214,93,34,83,237,111,34,206,177,60,35,92,169,147,35,127,86,145,35,184,177,44,36,103,225,56,42,140,90,167,43,16,107,230,43,209,114,79,44,52,3,17,45,14,205,208,45,55,82,103,45,144,167,87,48,36,173,173,49,217,34,211,51,98,231,136,51,204,96,24,51,253,84,211,54,180,72,27,55,117,221,16,56,78,165,21,56,195,179,253,57,191,235,67,58,152,173,105,58,212,140,215,61,81,190,179,64,164,194,251,65,215,249,88,66,67,236,43,66,194,126,196,66,198,134,223,73,226,79,157,74,142,133,39,75,162,101,145,75,222,199,67,78,207,96,131,79,197,118,65,79,221,60,136,80,72,12,70,81,145,108,213,82,33,51,198,83,214,192,6,84,127,245,138,86,67,80,189,87,88,226,38,88,43,165,51,88,61,100,102,89,227,215,8,90,205,36,145,91,177,146,105,93,47,27,182,94,174,39,139,95,13,237,16,95,41,152,184,97,117,99,27,97,246,26,174,99,9,92,77,101,87,65,28,101,127,108,20,101,186,90,29,101,210,93,36,101,226,105,219,102,49,176,161,103,2,87,118,103,49,1,21,104,41,54,154,106,115,81,41,107,41,223,235,107,87,195,141,107,154,114,250,107,188,188,57,108,83,159,74,108,116,132,139,109,71,245,121,109,140,214,118,110,15,3,85,110,104,63,253,111,228,85,16,112,73,232,230,113,152,111,136,114,56,28,78,115,59,182,17,117,165,179,145,118,216,214,46,121,144,180,32,123,96,103,218,124,176,103,177,126,93,133,198,126,191,91,224,130,241,184,66,132,101,195,223,134,23,158,149,134,75,56,60,134,153,48,64,136,75,22,141,136,215,171,20,137,78,244,213,138,1,44,147,143,26,226,16,144,69,82,94,144,209,206,99,145,186,254,191,145,248,86,173,146,58,53,116,147,182,207,224,147,212,203,187,150,227,144,214,151,140,116,181,152,162,111,59,158,149,29,96,159,39,243,174,159,250,240,230,161,198,239,138,162,101,167,14,162,249,54,85,165,81,215,6,166,60,186,99,166,60,222,159,166,164,177,167,167,15,183,49,167,227,79,248,170,6,17,40,171,134,83,120,172,134,124,44,172,207,119,224,173,51,246,197,173,71,52,58,174,210,13,111,175,230,129,230,176,193,147,239,177,148,162,3,178,112,18,40,179,65,109,177,182,87,239,30,182,117,18,103,183,45,84,249,185,47,247,128,186,223,36,101,187,38,81,205,187,226,83,131,188,183,170,162,189,190,123,72,190,148,85,52,190,166,218,36,191,97,246,17,194,147,38,144,194,245,20,189,195,7,81,205,195,82,141,152,196,218,32,200,196,239,105,219,197,204,117,59,201,56,212,102,201,58,135,246,201,67,232,234,201,182,245,56,202,72,46,125,203,127,182,97,204,88,34,17,204,157,50,244,206,86,137,190,210,198,60,10,212,229,33,114,213,198,254,229,214,118,186,140,214,183,103,100,217,151,132,155,217,223,44,6,218,181,166,167,219,76,15,222,220,10,49,194,221,2,97,73,223,119,96,155,225,5,254,191,225,253,118,126,226,153,148,220,228,47,231,119,228,58,67,63,229,29,86,27,231,35,242,143,231,43,220,56,232,237,141,50,233,17,6,6,234,206,175,77,234,231,178,189,235,49,15,164,235,184,247,146,236,163,130,84,236,212,170,195,237,173,190,158,237,189,153,66,238,82,59,7,239,64,42,56,240,121,83,138,242,231,113,57,242,231,181,177,243,47,48,223,244,101,202,76,245,239,119,126,246,213,127,253,247,160,64,74,247,185,12,184,247,233,243,49,248,10,212,234,248,128,208,117,249,109,101,240,251,79,199,244,251,139,35,30,251,154,19,182,252,3,162,87,252,19,8,146,252,138,20,17,252,192,243,132,253,63,11,30,253,151,101,154,254,134,142,70,254,148,249,134,255,102,226,120,255,198,122,239,8,1,14,46,99,111,111,107,105,101,45,98,97,110,110,101,114,2,86,0,88,51,52,4,186,134,213,9,59,146,55,9,81,247,251,14,26,82,84,14,90,111,192,27,7,19,185,27,110,230,46,28,20,37,149,30,37,167,134,38,162,156,1,41,211,122,244,43,100,155,112,55,14,235,93,55,188,117,125,57,204,207,112,64,74,14,140,64,223,46,245,66,46,160,42,66,152,181,189,69,92,176,198,73,38,201,123,78,131,248,25,80,206,255,115,80,218,72,154,83,129,208,4,90,165,58,92,93,145,71,205,99,157,209,234,99,183,103,121,101,33,75,83,103,173,66,78,111,152,74,57,114,85,30,15,116,40,51,195,117,32,87,102,120,185,12,195,120,207,55,185,124,140,240,83,127,242,77,183,127,251,193,173,129,141,204,3,132,55,252,19,133,213,141,122,136,36,181,135,137,190,34,138,139,109,21,198,142,187,249,45,145,16,255,231,149,24,177,95,154,209,149,52,156,85,171,145,156,106,8,248,156,200,189,185,158,140,67,1,161,133,11,46,165,153,207,196,169,49,239,73,171,134,149,125,171,175,114,85,172,17,100,154,172,158,40,65,173,207,166,9,179,21,157,5,180,77,38,184,184,67,188,40,186,2,9,226,202,48,124,31,204,43,204,95,206,94,74,71,211,234,197,212,215,102,1,102,215,218,91,161,218,39,161,115,224,231,207,183,226,216,197,151,228,244,158,219,229,252,62,60,230,80,33,172,243,189,78,22,244,24,40,28,246,170,202,185,248,2,166,155,251,162,75,18,252,16,63,56,253,155,103,67,16,1,21,35,67,121,98,111,116,67,111,111,107,105,101,98,111,116,68,105,97,108,111,103,2,26,8,178,136,16,12,207,215,243,19,155,89,114,40,95,120,157,48,201,94,220,111,128,75,49,121,230,127,219,125,136,221,1,125,149,154,250,140,118,240,181,149,240,201,58,165,203,190,3,169,56,43,225,189,42,168,76,199,239,115,245,204,48,243,60,210,85,140,119,214,151,208,156,217,237,95,228,219,29,87,135,222,151,29,176,232,142,189,121,239,219,42,5,242,231,162,98,244,122,248,3,251,143,88,37,8,1,15,46,99,45,99,111,111,107,105,101,45,112,111,112,117,112,2,3,1,132,149,52,111,7,154,136,149,170,112,232,16,1,13,35,109,111,100,97,108,45,99,111,111,107,105,101,2,11,1,216,232,155,148,186,155,92,168,209,122,96,176,193,147,239,190,190,181,101,211,74,107,124,219,183,97,84,222,127,7,14,224,32,118,130,231,90,231,159,248,128,208,117,16,1,14,35,99,111,111,107,105,101,95,95,109,111,100,97,108,2,1,141,29,222,7,16,1,9,35,98,108,117,101,109,97,115,107,2,3,129,140,243,111,184,197,138,252,242,114,14,38,8,1,5,46,116,98,111,120,2,3,129,140,243,111,184,197,138,252,242,114,14,38,8,1,21,46,100,105,115,99,108,97,105,109,101,114,45,99,111,110,116,97,105,110,101,114,2,5,107,218,227,205,127,221,228,143,188,103,75,78,200,248,202,214,221,40,221,125,8,1,9,46,99,99,45,108,97,121,101,114,2,3,45,103,54,159,86,154,82,100,137,113,71,58,16,1,5,35,103,100,112,114,2,29,16,206,254,70,36,19,133,139,43,105,152,128,53,35,11,122,57,14,152,8,70,91,100,241,73,92,111,165,73,219,100,248,75,241,152,108,86,144,117,70,89,242,115,77,91,55,133,7,95,243,48,48,98,56,242,111,98,238,166,229,101,107,92,228,102,181,184,8,127,76,121,198,129,202,217,29,153,147,105,151,160,58,79,176,187,213,170,59,205,67,55,47,210,229,181,168,215,32,53,13,224,93,5,30,229,161,84,51,241,219,132,50,251,190,48,26,16,1,12,35,103,100,112,114,79,118,101,114,108,97,121,2,1,45,118,41,177,0,1,21,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,34,93,2,3,5,200,159,26,59,188,135,24,81,151,209,154,16,1,12,35,103,100,112,114,111,118,101,114,108,97,121,2,1,23,177,96,24,16,1,5,35,95,105,67,68,2,14,20,17,196,178,43,30,137,213,97,141,236,220,103,24,207,26,148,106,131,137,149,249,103,81,152,23,199,198,160,116,95,62,188,38,92,40,189,1,244,61,206,58,183,134,206,58,217,52,206,133,23,58,206,140,52,21,8,1,6,46,109,111,100,97,108,2,6,23,82,34,117,78,71,181,183,81,151,5,73,92,7,133,253,187,188,162,21,220,162,106,109,16,1,11,35,103,100,112,114,45,109,111,100,97,108,2,13,10,225,42,242,52,95,136,206,69,118,230,69,80,126,156,12,109,109,132,136,117,60,36,217,137,40,210,15,163,207,55,63,173,141,23,156,186,68,150,66,199,152,128,141,206,129,195,203,252,192,243,132,8,1,11,46,103,100,112,114,45,109,111,100,97,108,2,13,10,148,220,170,13,128,150,186,32,184,184,149,35,244,238,80,64,21,80,11,69,140,89,16,86,141,189,171,128,98,65,155,167,49,18,25,174,53,243,212,202,186,251,10,202,187,84,156,233,205,179,196,8,1,15,46,103,100,112,114,45,99,111,110,116,97,105,110,101,114,2,6,55,3,67,147,55,15,136,29,55,174,78,15,57,225,211,73,115,158,37,187,149,115,26,33,8,1,13,46,99,111,110,115,101,110,116,109,111,100,97,108,2,3,22,183,168,51,74,92,135,118,192,246,196,3,16,1,8,35,112,114,105,118,97,99,121,2,11,11,80,164,50,25,38,45,154,30,196,169,164,101,240,55,121,135,13,51,238,178,12,167,66,190,81,40,72,206,125,124,240,237,6,148,129,242,231,108,212,254,47,72,15,8,1,8,46,112,114,105,118,97,99,121,2,12,1,18,3,105,1,18,51,62,29,166,164,182,42,222,76,254,65,106,140,21,94,212,109,55,119,34,108,17,162,115,26,155,174,158,178,195,187,25,245,236,202,88,32,203,206,211,10,114,8,1,15,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,2,18,28,11,82,86,39,169,183,86,62,66,123,178,82,252,0,234,83,210,214,123,91,62,86,212,91,207,224,57,104,224,150,250,127,45,127,193,159,209,240,254,168,100,138,245,173,138,11,135,188,60,168,128,203,73,2,158,216,97,4,118,232,74,46,68,244,227,182,152,255,64,21,219,16,1,15,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,2,5,1,17,21,232,62,148,81,140,198,119,186,96,209,97,237,42,255,161,201,246,8,1,22,46,99,100,107,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,2,38,4,51,252,17,10,29,43,130,12,248,250,171,15,124,124,100,27,191,48,196,40,42,116,229,40,166,241,87,79,140,45,126,80,13,91,211,81,18,195,183,90,38,139,243,92,71,73,205,94,76,5,45,97,141,83,35,97,249,62,187,106,12,23,248,107,214,187,13,108,75,171,80,116,47,14,11,124,102,74,254,130,155,96,228,148,81,53,25,149,237,58,107,156,189,55,122,166,130,220,204,166,130,221,229,166,130,224,115,168,36,71,230,177,209,25,91,190,168,88,117,202,41,137,48,209,233,85,77,217,156,139,141,219,225,95,116,229,7,243,54,229,7,243,56,230,80,179,206,242,231,22,224,16,1,14,35,99,100,107,45,111,118,101,114,108,97,121,45,48,2,2,145,118,143,205,231,40,71,14,8,1,16,46,116,114,97,99,107,105,110,103,109,97,110,97,103,101,114,2,6,58,62,224,78,104,244,182,218,145,170,255,45,160,30,240,119,183,86,158,250,230,133,50,12,16,1,14,35,112,100,99,99,45,109,111,100,97,108,45,98,103,2,3,38,216,35,206,109,146,225,50,138,4,198,245,8,1,21,46,115,113,115,45,97,110,110,111,117,110,99,101,109,101,110,116,45,98,97,114,2,4,36,105,172,222,131,190,51,199,191,210,163,244,212,151,40,254,16,1,6,35,107,108,97,114,111,2,74,1,144,198,40,1,160,67,91,1,164,133,85,3,73,45,42,4,136,242,65,5,91,83,194,5,181,121,115,7,47,152,29,7,223,192,38,12,148,89,198,12,172,23,168,21,253,252,225,34,176,9,31,35,49,138,79,36,190,43,56,37,134,172,54,38,55,106,39,42,218,59,31,46,33,176,158,54,243,244,13,61,145,208,229,69,210,193,106,70,52,153,67,70,153,72,126,71,86,201,119,76,108,53,158,80,205,248,35,86,161,173,60,92,81,18,11,98,33,177,168,98,195,66,105,105,14,1,126,130,96,9,189,135,14,67,170,141,116,56,218,141,248,253,99,143,64,212,228,143,110,122,222,148,109,121,133,149,230,134,51,152,28,28,70,157,111,182,72,158,205,157,95,158,253,132,152,160,163,196,249,161,240,30,111,163,128,97,119,169,81,203,219,172,91,24,173,178,72,170,150,179,0,78,131,179,181,242,192,182,171,104,5,187,188,62,153,191,123,188,245,192,207,52,169,195,82,90,178,201,203,64,167,203,98,150,195,203,158,49,176,204,36,100,134,206,251,71,30,207,60,117,21,212,143,174,0,217,103,39,13,219,7,106,234,219,185,35,205,221,166,114,118,226,40,192,21,227,3,226,88,229,66,112,28,240,13,63,170,252,195,248,186,253,58,169,247,8,1,6,46,107,108,97,114,111,2,6,98,208,87,127,145,1,158,93,151,219,168,137,223,105,98,59,242,117,33,77,254,136,104,182,8,1,13,46,107,108,97,114,111,45,98,117,116,116,111,110,2,1,158,152,14,105,16,1,3,35,99,99,2,18,7,190,25,114,15,171,99,136,27,100,117,166,62,202,206,102,64,95,107,161,73,6,129,190,84,114,154,104,113,151,46,15,115,42,220,80,137,135,211,182,154,27,147,191,165,1,222,139,171,137,230,182,207,185,74,200,216,34,162,145,242,230,254,98,242,231,160,253,251,36,12,55,8,1,11,46,98,103,45,111,118,101,114,108,97,121,2,4,21,252,22,100,58,238,95,184,76,202,202,146,173,32,226,62,8,1,10,46,99,99,45,119,105,110,100,111,119,2,4,21,252,22,100,58,238,95,184,76,202,202,146,173,32,226,62,8,1,19,46,99,111,111,107,105,101,115,95,95,99,111,110,116,97,105,110,101,114,2,6,9,239,1,88,50,33,138,55,52,10,77,161,132,159,184,4,201,159,226,148,224,92,157,162,16,1,6,35,112,111,112,117,112,2,15,7,223,184,199,45,18,83,127,56,98,173,250,73,244,35,27,94,130,59,198,102,173,225,128,123,34,33,205,149,159,88,149,163,200,64,146,201,146,53,14,211,231,48,6,214,239,228,41,216,242,106,32,235,132,185,242,236,31,204,202,8,1,26,46,112,111,115,102,46,114,101,97,99,116,45,111,110,99,108,105,99,107,111,117,116,115,105,100,101,2,4,17,250,161,128,24,56,205,49,82,252,142,34,255,184,39,225,0,1,22,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,80,111,112,117,112,34,93,2,11,31,121,142,195,75,68,4,172,103,253,15,105,121,201,133,98,139,73,2,136,184,10,0,138,185,13,128,148,186,44,176,5,189,107,57,148,203,188,208,163,239,67,136,13,8,1,12,46,99,111,111,107,105,101,45,104,105,110,116,2,11,1,110,251,123,27,121,134,94,50,227,169,45,75,161,9,1,78,241,72,165,112,245,79,218,125,181,65,96,146,23,191,188,199,156,197,248,246,21,60,37,249,247,171,27,0,1,24,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,66,97,110,110,101,114,34,93,2,3,10,111,77,21,172,205,217,84,223,93,203,1,8,1,8,46,98,108,111,99,107,101,114,2,3,16,211,132,6,162,183,214,241,228,154,123,121,0,1,24,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,67,111,110,115,101,110,116,34,93,2,6,52,151,132,111,101,255,231,243,208,10,10,51,214,154,11,183,220,89,74,96,242,81,116,195,8,1,6,46,97,108,101,114,116,2,128,0,0,0,146,4,11,248,162,11,118,94,9,14,156,223,9,15,81,151,168,18,99,45,127,25,161,189,41,27,89,202,169,28,125,177,0,29,218,133,122,31,254,61,243,33,71,224,84,33,160,130,225,34,214,56,179,35,137,251,213,36,170,57,5,36,227,21,113,37,62,137,144,38,209,249,108,40,111,129,201,41,198,221,243,51,50,195,9,52,0,139,153,52,207,213,60,54,19,83,220,54,104,46,53,54,218,56,236,56,167,235,207,56,199,139,71,58,141,2,112,59,69,252,79,61,41,30,26,61,124,227,241,61,183,87,44,63,37,158,162,64,179,254,1,64,252,15,207,66,157,82,89,69,79,71,110,71,85,38,185,73,30,148,141,73,83,152,207,75,114,139,7,76,60,248,204,76,246,105,243,78,221,149,212,79,87,216,245,83,201,78,213,86,54,65,23,86,194,122,75,89,136,222,8,89,146,218,70,89,199,221,73,90,65,251,239,91,230,135,26,95,194,55,141,97,130,145,247,106,108,78,164,106,239,111,156,107,165,198,38,109,5,101,247,115,222,55,250,117,97,216,186,123,207,16,212,125,14,120,145,126,9,57,104,127,58,62,93,128,180,20,20,129,38,78,50,131,21,241,13,131,109,110,243,137,110,48,243,139,108,206,144,141,124,157,137,142,239,90,235,143,205,167,200,144,52,69,149,148,9,13,99,148,188,103,205,148,201,245,59,150,237,254,238,154,37,221,35,156,122,18,7,157,130,42,1,159,252,52,56,161,65,70,94,162,158,16,163,163,136,182,171,163,184,243,51,164,184,204,125,164,255,127,202,167,192,244,229,170,172,148,28,172,72,175,249,172,131,84,250,172,228,118,39,174,189,101,176,177,83,181,243,179,55,251,252,179,86,47,138,179,206,219,80,180,55,159,29,181,250,178,116,183,198,101,246,184,87,13,57,187,207,114,131,187,223,239,129,188,247,33,140,189,87,235,215,193,67,149,160,193,178,159,18,197,117,159,167,197,123,233,20,200,146,16,97,201,194,253,29,202,105,118,213,202,210,169,178,203,68,75,80,203,133,227,192,206,10,13,41,207,129,192,75,211,79,59,19,212,229,21,192,213,182,33,94,216,63,119,169,216,132,6,198,221,171,224,169,222,179,231,49,225,23,202,242,226,190,112,223,230,36,243,184,233,2,19,40,234,144,119,47,237,39,101,138,238,10,5,216,238,160,15,140,238,209,25,44,239,178,44,162,239,219,212,129,243,14,17,227,244,99,0,119,245,46,117,216,246,18,250,206,246,225,8,159,250,42,142,238,250,175,33,185,254,178,155,186,0,1,23,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,66,97,110,110,101,114,34,93,2,6,68,195,50,244,87,187,104,1,101,237,129,170,102,2,26,163,129,23,154,99,147,180,3,142,0,1,22,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,95,34,93,2,8,55,2,35,168,126,200,54,78,178,95,250,90,202,1,252,228,223,111,226,208,239,51,143,214,240,203,67,7,250,228,183,94,0,1,26,100,105,118,91,99,108,97,115,115,42,61,34,67,111,111,107,105,101,66,97,110,110,101,114,34,93,2,41,4,30,174,79,6,91,166,13,11,228,72,136,32,131,209,198,36,202,164,161,40,29,209,55,46,186,135,32,55,4,143,162,63,111,161,24,72,199,218,252,81,1,25,60,93,152,211,245,94,177,122,233,94,234,8,127,95,88,207,232,96,59,215,123,99,68,223,159,100,202,210,99,103,214,46,46,111,61,205,74,124,68,80,207,126,17,119,49,128,56,80,214,129,77,138,206,129,141,10,224,133,163,92,6,133,174,64,248,147,193,224,161,148,186,26,182,162,106,176,202,168,114,58,215,173,17,34,98,181,159,156,8,188,72,192,103,195,8,112,98,197,139,7,144,227,100,164,193,228,150,40,215,232,103,100,181,242,150,171,180,254,128,40,223,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,97,110,110,101,114,95,34,93,2,7,39,17,29,79,51,57,161,25,66,35,239,0,144,217,241,48,162,180,150,226,174,57,121,222,174,166,118,84,0,1,32,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,97,110,110,101,114,115,116,121,108,101,95,34,93,2,26,0,192,183,141,9,234,253,246,15,171,119,45,22,220,15,249,30,50,136,213,44,127,69,238,67,79,198,149,71,32,93,157,89,236,163,107,91,57,104,218,96,47,204,158,98,127,57,123,99,214,89,168,103,192,125,89,135,169,196,152,142,148,45,72,161,80,102,244,167,201,74,147,174,80,0,241,190,41,160,148,204,136,62,117,212,157,47,232,214,73,140,219,216,208,151,250,230,232,189,196,231,230,111,192,8,1,14,46,97,99,116,105,118,101,46,108,101,103,97,99,121,2,4,35,113,77,225,57,1,88,40,165,106,14,116,198,234,192,63,8,1,28,46,97,109,103,100,112,114,99,111,111,107,105,101,45,109,111,100,97,108,45,116,101,109,112,108,97,116,101,2,1,153,161,75,7,8,1,24,46,98,111,116,116,111,109,45,48,46,112,111,115,105,116,105,111,110,45,102,105,120,101,100,2,7,0,189,226,107,32,142,75,212,65,237,76,156,113,32,42,139,159,25,53,132,173,214,70,160,189,184,206,143,8,1,16,46,98,111,116,116,111,109,45,48,46,108,101,102,116,45,48,2,1,166,130,23,96,8,1,17,46,98,111,116,116,111,109,45,48,46,114,105,103,104,116,45,48,2,2,39,200,65,115,51,50,195,9,8,1,18,46,98,111,116,116,111,109,45,48,46,114,101,108,97,116,105,118,101,2,1,48,132,253,89,8,1,15,46,98,111,116,116,111,109,45,48,46,102,105,120,101,100,2,128,0,0,0,172,0,104,30,59,0,228,176,124,1,249,239,127,2,211,12,158,3,195,40,130,4,30,14,52,5,36,148,200,8,153,70,125,9,29,54,25,9,124,9,6,11,201,49,121,13,40,189,66,13,88,154,61,13,192,53,153,14,33,113,170,17,103,99,151,18,149,215,133,20,219,117,133,21,25,36,168,27,162,245,67,28,222,16,212,29,120,146,223,29,223,182,82,29,226,179,212,33,155,222,234,37,105,48,205,38,145,161,84,39,65,31,111,41,237,241,45,45,133,199,70,47,154,205,227,48,91,214,148,49,217,114,11,50,107,241,181,52,91,51,207,53,64,158,254,55,216,115,69,56,39,123,52,58,85,66,230,59,190,4,35,60,117,114,203,61,11,92,120,63,213,196,169,68,75,10,161,75,247,233,177,76,34,241,12,77,38,15,102,79,175,66,119,80,64,160,98,82,254,134,211,87,135,203,254,88,28,55,249,88,240,67,55,89,175,43,152,89,205,171,169,91,116,112,169,93,133,123,66,94,158,214,121,97,187,82,48,97,243,105,152,98,166,255,120,99,102,59,141,100,106,11,2,102,75,14,135,104,122,194,128,105,252,98,225,107,77,111,58,107,249,146,99,110,150,76,177,112,196,240,99,113,242,135,96,115,229,50,148,116,9,68,211,117,93,113,184,119,123,93,13,121,123,181,5,121,156,250,156,121,205,58,222,126,17,117,140,126,22,127,250,126,166,212,42,126,171,186,214,129,141,10,224,130,77,153,241,133,72,214,216,134,106,244,124,137,252,37,46,141,156,56,143,142,90,214,178,142,250,77,247,144,157,55,89,146,197,168,247,148,11,106,241,148,180,44,231,148,181,249,70,148,186,106,92,148,188,38,157,148,192,49,136,148,193,134,168,149,40,141,252,150,50,112,239,153,71,9,219,153,81,210,247,153,93,219,127,158,91,188,176,158,94,197,61,158,96,206,212,158,229,230,121,161,31,42,93,167,4,97,203,167,172,30,53,169,5,85,94,170,39,33,38,172,46,15,251,174,96,236,26,175,86,233,89,176,74,149,227,178,149,206,22,180,67,28,94,182,171,230,78,182,175,155,193,183,174,97,251,186,128,229,251,187,22,12,234,188,9,109,139,190,46,1,117,190,147,226,187,192,68,212,71,192,79,91,46,194,85,149,191,194,253,34,79,199,7,121,185,199,134,35,85,202,75,166,161,203,77,8,239,205,67,183,140,207,83,2,76,209,9,31,91,209,59,55,29,211,228,244,41,212,117,51,110,212,135,204,164,214,181,180,53,214,202,102,182,214,254,107,227,215,46,244,9,216,96,18,168,217,146,39,136,217,181,109,124,220,158,3,91,221,19,139,32,221,68,108,226,222,91,228,109,222,166,98,73,224,139,67,59,227,199,113,146,228,228,246,127,230,98,175,235,230,134,34,254,230,176,199,170,232,196,197,191,235,70,110,159,235,163,11,77,237,62,144,58,241,4,48,132,241,139,203,175,243,157,184,40,246,71,116,135,248,31,73,150,248,84,5,162,248,125,9,182,252,21,30,233,8,1,9,46,98,111,116,116,111,109,45,50,2,7,55,13,149,91,69,55,10,218,86,41,39,88,115,174,163,53,132,163,159,127,177,26,129,46,248,36,19,75,8,1,9,46,98,111,116,116,111,109,45,54,2,3,67,130,123,39,111,173,136,183,112,49,211,139,8,1,9,46,98,111,116,116,111,109,45,53,2,8,26,181,37,17,30,172,111,41,38,138,95,6,55,221,15,134,93,191,12,69,112,43,197,179,196,104,106,13,243,109,146,13,8,1,9,46,98,111,116,116,111,109,45,56,2,5,129,61,122,91,138,140,166,80,179,202,38,241,180,46,108,22,185,46,208,76,8,1,9,46,98,111,116,116,111,109,45,52,2,12,18,158,40,192,59,73,104,204,79,128,184,55,98,150,240,234,107,232,154,225,126,38,166,35,132,11,133,129,150,121,100,16,174,161,13,18,218,76,251,250,228,23,108,159,246,71,116,135,8,1,10,46,98,111,116,116,111,109,45,52,48,2,1,194,125,220,87,8,1,9,46,98,111,116,116,111,109,45,51,2,3,22,15,1,249,133,158,206,229,151,51,109,70,8,1,10,46,98,111,116,116,111,109,45,49,50,2,2,42,142,83,59,206,76,1,161,8,1,10,46,98,111,116,116,111,109,45,49,52,2,1,2,170,157,160,8,1,10,46,98,111,116,116,111,109,45,49,54,2,3,151,203,138,227,193,212,69,158,243,75,197,104,8,1,7,46,98,111,116,116,111,109,2,4,29,141,65,76,51,50,195,9,138,230,147,30,148,181,113,59,8,1,10,46,112,121,45,50,46,112,120,45,50,2,1,22,58,220,56,8,1,16,46,99,111,111,107,105,101,115,95,50,48,50,50,95,98,103,2,3,164,168,90,52,201,85,194,250,217,229,159,17,8,1,7,46,106,71,114,111,119,108,2,6,37,182,21,175,74,85,248,245,122,194,14,141,160,125,59,252,180,226,13,204,246,212,165,251,8,1,13,46,109,111,100,97,108,45,99,111,111,107,105,101,2,23,11,40,247,115,13,221,236,179,17,85,91,0,19,161,121,12,32,101,125,158,47,127,80,201,52,201,125,33,62,249,225,61,65,175,83,174,77,124,41,254,95,15,77,14,102,131,91,211,111,172,28,113,137,163,58,150,154,207,108,149,155,90,54,229,175,74,143,118,182,68,56,79,184,45,136,120,192,13,21,104,202,26,34,93,209,141,27,2,227,65,142,158,8,1,14,46,109,111,100,97,108,45,99,111,111,107,105,101,115,2,26,10,124,17,23,21,93,1,124,30,65,80,35,58,60,165,205,72,1,236,184,78,59,132,34,82,113,186,114,85,191,235,117,98,244,95,169,107,63,194,236,118,53,31,198,124,70,47,203,138,143,170,154,139,82,99,54,145,147,114,226,149,245,236,252,153,97,59,211,165,91,153,57,167,181,178,207,176,244,46,97,194,211,50,50,197,43,232,162,218,135,164,131,226,72,135,131,237,1,61,246,241,210,116,101,8,1,13,46,109,111,100,97,108,99,111,111,107,105,101,115,2,3,84,98,101,83,231,100,173,244,248,81,2,1,16,1,17,35,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,7,8,202,86,97,40,56,112,185,57,254,121,122,80,99,69,153,110,212,112,169,151,202,105,85,157,170,47,29,16,1,12,35,99,111,111,107,105,101,77,111,100,97,108,2,13,14,215,201,232,27,203,68,200,45,55,82,103,47,204,63,128,52,111,39,152,70,10,38,2,88,43,165,51,148,180,233,216,151,193,189,204,181,39,62,49,196,77,29,5,226,163,105,149,226,209,161,183,8,1,13,46,109,111,100,97,108,67,111,111,107,105,101,115,2,4,53,125,29,57,71,155,167,64,178,83,83,113,234,163,243,94,8,1,15,46,110,115,45,116,121,112,101,45,110,111,116,105,99,101,2,7,0,100,161,67,49,169,101,9,86,254,215,87,164,149,231,27,203,183,27,160,250,216,179,213,254,17,202,30,8,1,20,46,99,111,111,107,105,101,87,105,110,100,111,119,87,114,97,112,112,101,114,2,16,12,240,241,97,22,23,113,44,23,51,140,212,37,55,161,104,38,28,60,154,52,29,51,22,66,139,197,87,69,247,225,70,74,143,196,54,86,157,75,68,94,156,116,245,194,140,242,62,195,83,188,43,208,114,234,214,210,85,140,196,219,132,143,119,8,1,10,46,107,45,111,118,101,114,108,97,121,2,20,12,240,241,97,22,23,113,44,23,51,140,212,37,55,161,104,38,28,60,154,43,203,54,233,52,29,51,22,66,139,197,87,69,247,225,70,74,143,196,54,86,157,75,68,94,156,116,245,135,211,124,188,155,209,86,41,194,140,242,62,195,83,188,43,201,69,221,138,208,114,234,214,210,85,140,196,219,132,143,119,16,1,13,35,99,111,111,107,105,101,115,77,111,100,97,108,2,68,6,56,37,175,20,173,137,17,22,53,68,233,24,145,81,147,26,39,168,133,27,88,158,140,31,246,135,113,41,153,45,13,42,109,162,46,47,129,180,185,49,5,114,20,49,117,113,5,51,24,98,234,54,118,28,179,59,89,75,100,64,90,149,96,77,154,30,155,81,138,220,236,86,159,151,68,87,111,26,1,88,137,73,193,93,140,239,221,96,248,24,9,97,132,15,251,99,0,55,232,112,157,167,231,114,156,163,192,116,28,80,152,116,28,139,75,116,32,204,54,117,65,234,108,121,121,126,244,129,71,64,165,131,14,77,176,134,155,128,203,136,75,22,141,138,199,217,27,138,223,45,12,139,107,95,173,140,123,236,142,141,4,130,37,143,65,253,94,147,112,188,194,159,39,243,174,163,201,134,45,166,9,24,5,166,70,39,232,170,139,243,167,171,186,10,162,172,119,107,62,186,232,44,27,194,252,49,157,197,150,49,139,199,5,31,222,201,46,9,244,201,58,135,246,202,108,240,172,203,167,99,128,204,230,223,53,210,13,232,48,218,184,91,32,230,245,188,7,231,234,25,173,231,255,224,46,236,128,24,78,237,143,239,236,242,42,43,35,249,166,230,228,16,1,13,35,109,111,100,97,108,67,111,111,107,105,101,115,2,4,8,121,24,235,12,187,55,121,182,69,15,75,182,244,216,160,16,1,12,35,99,111,111,107,105,101,115,50,48,50,48,2,8,0,131,179,179,31,118,53,207,61,94,8,156,135,46,229,174,150,106,207,157,202,31,241,8,243,129,11,69,253,50,58,132,16,1,19,35,99,111,111,107,105,101,115,50,48,50,48,111,118,101,114,108,97,121,2,8,0,131,179,179,31,118,53,207,61,94,8,156,135,46,229,174,150,106,207,157,202,31,241,8,243,129,11,69,253,50,58,132,0,1,23,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,78,111,116,34,93,2,3,50,0,214,157,244,241,151,24,246,207,253,173,16,1,12,35,99,111,111,107,105,101,109,111,100,97,108,2,1,9,15,144,16,8,1,14,46,111,116,80,108,97,99,101,104,111,108,100,101,114,2,42,8,47,150,88,9,225,200,236,14,215,204,34,16,148,40,71,19,202,30,94,52,194,7,49,55,44,186,238,66,214,200,27,69,248,0,40,79,97,160,72,79,102,154,50,81,184,42,85,89,158,36,181,105,40,36,96,106,204,212,55,107,238,162,55,111,32,22,65,114,207,250,115,115,132,17,157,127,127,143,173,128,105,169,217,138,144,15,163,139,102,200,35,148,114,117,154,163,60,181,222,168,25,89,224,176,220,89,128,200,235,215,71,205,52,65,107,208,115,95,46,211,209,31,16,213,204,156,242,220,139,70,0,223,88,107,161,226,151,161,254,227,213,155,198,230,12,231,99,235,175,48,195,236,129,14,186,238,37,65,13,249,10,86,76,249,75,41,209,8,1,9,46,99,112,45,112,111,112,117,112,2,1,203,56,30,136,8,1,19,46,99,112,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,203,56,30,136,8,1,16,46,106,115,45,99,111,111,107,105,101,45,112,111,112,117,112,2,3,58,20,20,1,166,48,86,224,187,14,60,74,8,1,13,46,99,111,111,107,105,101,45,109,111,100,97,108,2,45,6,152,141,11,7,249,178,54,12,48,204,54,14,53,29,33,15,200,254,75,15,252,212,51,24,44,98,236,34,95,40,177,47,146,4,82,50,139,2,178,51,51,167,44,57,156,177,163,57,185,206,127,60,150,29,115,61,186,5,152,63,172,78,159,69,58,174,222,73,33,159,28,76,155,227,251,79,22,240,35,93,47,27,182,98,208,87,127,103,83,36,8,106,212,49,86,116,25,187,28,121,155,127,138,125,22,59,63,129,187,231,109,131,185,202,161,148,201,201,204,153,46,155,4,162,86,4,218,171,192,9,31,173,223,103,208,180,128,11,206,194,30,235,195,203,215,71,25,210,148,41,207,213,220,12,215,214,201,26,135,218,120,57,243,221,252,98,61,225,180,90,175,231,168,190,251,239,113,236,143,0,1,26,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,109,111,100,97,108,34,93,2,3,78,155,119,132,121,75,111,21,133,42,80,255,8,1,24,46,77,117,105,67,111,110,116,97,105,110,101,114,45,109,97,120,87,105,100,116,104,77,100,2,1,145,10,196,227,8,1,35,46,77,117,105,83,110,97,99,107,98,97,114,45,97,110,99,104,111,114,79,114,105,103,105,110,66,111,116,116,111,109,76,101,102,116,2,6,37,144,125,164,68,175,49,219,72,127,41,107,109,34,65,170,109,168,141,171,143,221,30,198,8,1,37,46,77,117,105,83,110,97,99,107,98,97,114,45,97,110,99,104,111,114,79,114,105,103,105,110,66,111,116,116,111,109,67,101,110,116,101,114,2,12,0,175,81,104,16,56,150,171,58,26,55,192,63,60,225,198,67,185,131,220,69,24,1,223,98,217,91,211,102,253,58,71,105,231,167,123,107,226,215,247,153,151,242,15,210,41,232,31,8,1,34,46,77,117,105,68,114,97,119,101,114,45,112,97,112,101,114,65,110,99,104,111,114,68,111,99,107,101,100,66,111,116,116,111,109,2,3,45,26,194,244,52,185,46,1,245,64,8,48,8,1,10,46,117,105,45,100,105,97,108,111,103,2,19,18,54,28,142,35,0,144,92,36,159,166,48,38,161,12,222,74,150,50,166,106,172,44,8,107,166,92,192,109,109,34,144,113,104,210,123,126,231,14,19,129,35,109,175,150,111,47,115,155,58,57,14,164,124,44,19,187,101,230,222,200,7,134,153,219,201,236,240,221,201,40,137,230,98,69,141,8,1,18,46,117,105,45,119,105,100,103,101,116,45,111,118,101,114,108,97,121,2,56,17,101,14,209,18,54,28,142,19,146,11,155,20,129,250,75,36,159,166,48,38,161,12,222,43,84,179,205,43,99,110,26,58,214,123,66,74,150,50,166,80,195,197,20,93,162,50,226,106,172,44,8,107,166,92,192,109,109,34,144,114,41,109,181,119,105,93,231,120,193,28,90,122,44,226,47,124,33,189,59,126,172,202,224,126,231,14,19,129,35,109,175,133,196,43,118,135,205,48,131,139,102,167,68,144,1,215,188,148,184,83,225,150,111,47,115,151,14,85,153,151,170,62,68,164,124,44,19,167,194,43,30,174,51,218,119,175,0,241,161,184,51,6,144,187,101,230,222,187,248,239,35,189,211,106,152,196,74,227,200,197,83,113,149,200,7,134,153,206,86,100,151,213,77,166,150,214,209,43,164,217,75,249,62,219,52,14,179,219,201,236,240,230,98,69,141,231,6,9,42,237,133,221,72,243,83,155,77,245,74,227,243,248,144,126,198,250,174,129,168,253,212,143,84,8,1,11,46,100,105,115,99,108,97,105,109,101,114,2,32,2,30,222,178,5,62,93,45,14,40,164,143,34,100,244,247,45,212,10,76,52,97,8,82,52,174,75,193,61,140,186,226,67,97,220,164,74,15,197,52,74,87,136,60,77,80,119,135,79,21,190,154,92,76,183,123,101,226,104,185,105,65,196,232,125,37,94,158,130,137,63,231,151,249,215,8,154,236,104,139,159,55,18,56,162,152,181,10,178,185,113,158,182,61,101,39,183,245,178,176,191,195,95,1,192,172,121,142,193,9,22,232,209,24,119,190,215,218,105,106,224,154,237,214,253,83,184,111,16,1,11,35,100,105,115,99,108,97,105,109,101,114,2,18,11,82,183,93,15,165,116,115,33,246,246,8,66,155,253,242,87,81,241,32,109,213,152,43,145,88,229,20,160,163,180,78,162,9,25,118,167,112,111,76,180,56,166,154,188,94,199,229,189,66,189,191,198,140,120,26,229,19,40,231,241,174,196,64,244,49,183,253,248,173,201,254,8,1,15,46,77,117,105,68,105,97,108,111,103,45,114,111,111,116,2,4,27,83,181,24,69,24,1,223,129,124,47,186,239,211,88,19,8,1,17,46,77,117,105,83,110,97,99,107,98,97,114,45,114,111,111,116,2,10,4,159,205,93,19,13,155,105,46,25,9,73,109,37,109,108,142,9,81,21,171,199,211,130,182,207,52,180,196,197,90,17,228,243,113,52,255,102,47,201,8,1,9,46,98,111,116,116,111,109,45,48,2,77,3,138,7,94,11,114,93,174,16,61,160,7,18,36,17,151,23,83,67,163,25,40,81,89,27,247,38,25,28,167,197,219,30,121,19,136,38,157,53,247,48,60,242,251,49,251,237,47,50,146,139,68,51,5,121,27,52,186,213,48,54,82,33,77,54,109,33,197,54,245,64,171,57,201,89,42,60,120,200,177,60,144,21,55,63,214,221,50,76,25,135,77,78,15,79,233,79,71,153,101,79,94,156,93,80,200,191,84,82,10,156,69,87,180,237,59,91,51,145,81,95,144,249,177,97,236,147,214,102,236,38,164,110,203,34,46,111,54,157,152,111,129,217,223,122,67,59,133,123,155,198,248,126,47,144,95,126,83,19,195,128,98,55,135,131,24,15,247,131,197,37,35,138,168,12,201,138,190,211,68,146,11,2,40,146,59,63,254,148,203,37,182,149,29,243,110,150,195,125,111,161,192,60,36,162,8,37,175,164,0,30,39,175,109,52,9,184,217,2,17,185,24,193,238,190,232,244,85,199,208,130,255,200,55,86,66,200,118,39,29,200,213,30,95,200,253,213,231,201,121,3,157,212,219,156,219,215,82,49,230,215,118,169,231,216,174,157,171,218,181,4,174,220,89,200,93,223,247,76,253,225,115,192,43,225,119,65,89,231,84,250,48,235,31,1,20,246,42,55,5,250,66,224,189,254,219,27,243,8,1,31,46,109,121,115,116,105,99,107,121,45,119,101,108,99,111,109,101,98,97,114,45,102,105,120,101,100,45,119,114,97,112,2,2,47,31,137,17,234,210,222,69,8,1,20,46,109,111,100,95,99,109,115,95,97,99,99,101,112,116,95,116,97,103,115,2,128,0,0,0,146,6,252,24,104,9,148,163,211,9,162,1,5,11,7,6,204,11,206,112,23,15,91,242,27,16,76,62,91,17,7,38,161,21,114,18,31,21,177,230,236,25,28,95,160,26,190,42,121,27,52,114,223,27,103,82,91,28,53,195,89,29,65,129,154,31,208,151,63,32,20,68,48,33,46,87,39,34,150,46,84,39,185,121,223,45,27,22,204,46,91,29,202,46,253,108,255,49,110,253,229,51,118,74,12,55,115,226,75,56,248,183,125,57,105,168,240,59,59,137,105,59,131,109,130,60,236,81,95,62,118,249,108,64,74,201,136,64,95,13,38,64,100,77,201,65,87,224,166,66,94,218,44,68,113,123,223,68,149,121,80,68,160,86,69,68,187,203,221,68,252,195,246,71,206,100,47,75,120,118,33,75,221,226,190,77,24,9,66,79,153,246,79,88,73,190,239,93,204,96,83,94,146,8,13,94,232,22,174,95,49,244,86,102,174,110,101,104,196,58,73,105,141,23,180,106,236,143,94,109,248,39,211,111,138,249,1,112,15,56,198,112,86,255,184,113,219,161,177,114,171,22,215,114,249,72,63,115,28,192,14,116,165,202,78,117,47,55,90,118,63,45,68,119,106,83,133,119,195,82,216,122,117,63,170,122,214,167,100,123,68,189,93,123,189,76,52,126,80,10,12,127,86,197,70,130,73,127,101,133,230,51,174,134,189,179,73,135,16,24,238,135,115,239,106,136,96,23,172,136,116,55,183,138,117,232,62,140,111,233,94,140,154,209,111,143,34,170,7,147,177,193,206,152,104,193,255,156,165,211,127,156,223,253,162,157,18,209,204,157,196,110,245,159,197,124,8,161,44,24,116,164,12,58,48,165,3,182,244,168,253,35,162,171,12,243,226,175,5,210,251,176,98,224,59,180,144,40,44,184,34,20,24,187,1,142,173,188,233,170,120,192,116,124,222,193,123,248,48,193,200,5,83,193,208,72,60,195,109,172,253,197,76,88,253,202,105,60,146,202,192,221,35,202,245,106,35,204,139,221,214,205,75,90,102,206,46,5,172,207,63,14,39,208,15,137,164,209,138,21,166,211,70,235,225,212,33,139,26,219,254,247,126,224,249,83,63,225,179,21,170,230,152,220,247,232,131,4,169,232,228,216,181,233,16,48,48,235,155,6,89,237,35,201,43,238,144,153,9,240,17,182,138,240,118,155,102,243,199,202,31,244,156,89,215,245,207,12,218,246,173,56,216,247,157,3,177,247,219,180,67,248,52,109,12,248,92,194,236,248,137,183,0,248,143,222,81,248,211,196,209,251,249,228,120,8,1,19,46,99,108,105,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,8,73,26,242,192,97,36,225,173,97,197,242,2,99,225,121,104,131,241,175,64,141,7,171,30,180,190,209,195,216,100,239,116,16,1,20,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,2,128,0,0,0,157,0,13,238,75,0,49,211,234,2,32,4,220,3,79,208,88,4,1,49,80,4,98,16,156,4,182,174,230,6,101,51,141,7,182,170,74,10,54,135,41,10,142,13,22,10,233,154,168,11,114,88,238,13,131,8,63,14,245,98,9,18,38,9,74,18,49,198,59,18,247,221,208,20,171,211,255,22,175,128,2,25,148,7,196,26,117,239,95,27,115,107,156,30,224,26,136,31,28,80,231,36,92,208,184,38,158,243,76,39,98,58,156,43,252,226,194,45,174,16,62,53,89,130,63,56,125,110,190,57,108,31,108,57,231,233,218,57,236,209,143,59,246,163,207,61,1,213,209,61,105,143,120,61,145,221,255,65,157,110,104,66,2,100,160,68,105,146,97,71,148,40,200,72,208,156,190,74,162,235,30,74,216,252,76,76,108,208,105,76,164,35,120,80,46,182,44,82,128,241,18,83,9,230,160,83,184,194,132,83,230,10,199,84,3,87,148,84,116,92,59,84,252,221,106,85,197,215,123,86,208,111,10,88,228,181,117,91,165,167,13,93,39,172,21,94,253,186,169,97,19,119,190,97,36,225,173,98,253,167,7,100,79,249,137,101,134,114,31,102,119,214,144,102,125,253,105,104,158,228,164,104,218,233,196,111,128,127,114,112,64,16,221,112,118,30,33,114,130,43,86,118,125,102,195,120,83,242,109,122,115,7,143,126,193,213,11,126,213,19,83,126,251,156,232,127,17,31,95,127,69,204,13,130,136,204,185,131,151,26,122,134,3,39,86,134,32,168,72,135,115,194,210,135,168,241,164,136,209,103,149,141,7,171,30,141,141,76,195,144,251,60,237,148,185,18,232,148,192,223,127,148,201,152,113,149,55,98,216,152,3,38,52,152,198,196,31,155,146,141,150,156,170,18,189,158,155,217,139,159,157,235,245,161,116,53,122,165,193,87,2,166,58,113,39,167,234,138,55,168,159,84,219,170,154,102,130,170,195,18,148,172,109,133,35,178,86,139,196,180,37,167,255,180,190,209,195,182,175,75,65,183,120,148,209,187,5,153,133,188,205,43,79,189,183,223,219,190,205,100,146,197,221,196,96,200,158,41,232,202,162,58,207,202,220,19,54,203,80,119,158,207,232,139,144,209,26,235,221,210,101,58,173,210,138,239,252,213,62,10,147,215,119,6,10,220,204,202,40,221,160,214,247,222,72,168,85,222,83,179,97,223,126,183,195,223,210,207,133,224,216,250,16,227,25,37,223,227,198,177,228,229,190,94,189,231,247,201,228,233,134,138,186,236,219,119,126,237,7,2,103,242,22,242,58,243,89,13,224,246,35,13,123,247,94,213,157,247,108,202,152,247,234,175,106,250,194,214,6,250,204,219,4,253,78,175,146,254,10,107,49,254,157,180,53,255,102,170,138,8,1,28,46,119,116,45,99,108,105,45,99,111,111,107,105,101,45,98,97,114,45,99,111,110,116,97,105,110,101,114,2,128,0,0,1,1,0,202,24,184,2,85,124,56,3,245,188,106,4,83,61,58,4,171,133,189,4,179,61,196,4,181,97,170,4,185,193,28,5,31,102,38,5,213,171,228,8,49,87,70,8,73,133,120,8,130,178,192,8,221,5,102,8,249,110,104,9,13,156,22,13,246,49,189,16,207,27,56,19,43,26,207,19,96,45,115,19,99,187,229,19,128,175,16,19,234,126,29,21,21,145,226,22,79,118,185,23,152,142,210,23,233,142,166,24,246,241,139,25,156,214,163,25,158,213,28,26,221,127,113,28,5,207,136,28,159,241,111,28,211,252,16,29,8,88,220,29,211,11,227,31,73,232,107,31,200,119,84,31,235,135,176,33,247,117,56,34,165,96,228,34,206,255,218,34,209,135,193,36,120,48,62,36,139,241,78,36,143,207,61,36,236,140,34,36,247,69,145,37,154,2,130,38,157,132,60,39,237,39,89,40,241,250,145,42,87,150,77,44,54,225,139,45,213,29,218,47,248,103,212,49,80,153,101,51,19,200,60,51,98,245,48,54,105,103,255,54,107,19,156,54,134,201,46,54,168,109,203,55,65,193,93,55,80,180,19,55,209,83,70,56,6,94,4,57,12,123,160,57,115,165,198,58,46,32,236,58,200,123,72,60,211,225,69,61,113,150,32,61,147,176,58,62,64,185,219,64,237,52,143,67,195,215,2,67,229,208,225,68,84,191,79,69,109,141,233,70,59,180,130,75,14,224,60,76,30,171,20,77,88,252,16,80,11,102,140,85,52,128,127,85,149,196,249,86,7,157,21,86,75,27,149,86,129,31,244,87,66,236,1,89,163,188,25,89,183,81,165,89,241,236,197,90,161,77,124,90,253,148,189,92,116,102,89,93,170,205,194,94,128,23,31,96,239,192,23,96,242,62,242,99,48,115,192,99,58,178,30,99,62,255,81,101,23,129,38,103,132,80,56,103,198,202,28,104,116,181,147,105,7,222,179,106,216,128,139,107,224,213,121,108,45,134,160,108,106,89,241,109,166,73,46,109,202,222,80,113,237,156,165,114,173,161,83,115,63,126,134,116,65,28,115,116,244,153,196,118,29,232,46,120,248,216,186,122,169,159,97,122,208,188,208,122,235,213,47,123,123,246,144,124,238,61,216,125,48,241,192,125,126,249,133,125,134,162,48,125,137,166,67,125,234,54,254,126,27,31,37,126,163,45,203,126,252,254,10,127,44,138,180,127,56,109,227,127,56,121,212,127,58,89,47,128,1,15,45,129,29,30,219,130,145,134,205,132,109,26,211,133,92,246,105,133,173,139,164,133,185,241,213,135,130,111,214,136,218,37,185,136,247,137,12,138,87,54,131,139,114,179,165,140,235,65,207,141,229,141,26,141,233,137,66,142,103,70,58,143,116,7,64,143,169,118,44,144,59,22,189,148,201,255,235,149,160,55,117,150,75,214,222,150,133,85,3,150,217,232,60,151,16,167,88,151,121,107,66,152,55,38,229,154,6,164,42,155,150,114,132,156,100,187,248,157,66,172,156,157,158,85,140,159,59,231,14,160,64,171,198,161,247,74,7,162,163,30,254,163,83,15,209,164,93,204,71,165,193,104,135,166,100,81,240,170,196,146,177,170,197,169,184,171,89,14,236,172,53,99,200,174,84,35,232,174,189,128,65,176,210,116,204,179,24,168,156,182,128,72,235,183,2,85,181,186,187,242,40,186,212,110,110,187,196,158,182,190,43,220,29,190,223,186,40,191,40,11,84,191,51,189,30,192,244,171,217,193,12,110,228,193,95,229,54,193,223,15,182,193,254,246,10,195,80,122,96,195,109,25,203,196,34,249,30,196,129,178,18,198,209,13,149,199,21,216,121,199,47,34,97,200,100,150,113,200,240,66,205,202,187,31,20,203,215,74,126,203,215,97,101,204,176,51,138,205,130,164,115,206,95,38,130,206,215,37,180,209,201,166,18,213,69,127,134,213,167,161,247,216,240,44,105,217,61,253,222,223,126,184,5,225,166,53,147,226,36,152,51,226,197,192,51,226,204,108,9,227,19,214,141,227,103,254,26,227,181,37,248,227,202,200,138,228,199,24,66,230,54,220,58,230,181,73,31,230,227,148,64,231,217,81,141,232,51,249,105,233,213,99,76,233,213,99,137,234,108,153,234,237,96,245,152,239,243,11,208,241,47,104,144,241,153,189,20,243,130,143,47,243,158,31,50,244,53,176,33,244,114,131,17,246,95,222,249,247,122,51,196,248,135,199,146,248,210,112,226,249,103,208,42,249,114,216,128,250,237,244,80,252,100,158,105,253,5,32,163,16,1,19,35,101,120,97,109,112,108,101,77,111,100,97,108,67,101,110,116,101,114,2,4,27,121,28,103,37,130,151,193,55,249,217,140,214,13,46,248,8,1,11,46,99,99,45,111,118,101,114,108,97,121,2,26,3,16,18,119,27,219,204,123,33,29,197,168,34,195,239,186,36,30,19,49,77,119,206,232,77,146,221,215,80,62,10,144,80,164,105,174,128,156,105,99,134,121,118,1,146,47,22,76,146,207,53,52,159,213,117,91,181,107,73,153,183,194,238,59,190,38,232,110,205,18,25,126,219,62,95,137,230,174,30,21,232,121,253,247,242,231,17,150,247,116,17,117,247,164,160,61,249,195,233,155,250,146,211,167,8,1,21,46,97,118,97,100,97,45,102,111,111,116,101,114,45,115,99,114,105,112,116,115,2,16,13,218,69,67,18,81,50,205,27,113,215,66,27,178,149,170,38,167,231,158,38,195,147,4,40,65,143,248,78,171,196,228,86,136,126,133,149,220,34,83,160,78,125,103,177,30,207,37,183,2,202,45,185,64,127,22,231,198,185,139,238,76,139,163,8,1,21,46,109,111,100,97,108,45,99,97,99,115,112,45,112,111,115,105,116,105,111,110,2,87,4,74,136,166,5,197,85,105,9,239,163,43,10,187,193,59,10,242,173,243,13,137,12,150,19,148,115,2,22,183,114,107,25,226,73,63,26,99,49,23,30,248,80,28,34,135,31,194,38,42,239,154,44,36,82,93,48,135,222,234,50,139,183,188,54,23,58,207,57,227,110,168,64,198,254,233,65,29,155,114,67,9,234,10,67,120,121,29,67,250,156,34,75,175,200,115,78,162,36,230,78,202,163,59,82,67,38,138,84,201,98,35,86,95,91,64,86,143,12,120,88,148,140,27,94,20,139,210,94,78,233,21,96,78,146,76,99,122,96,232,100,253,177,66,103,95,88,232,103,145,50,180,106,79,35,241,112,105,67,155,112,229,65,135,114,76,72,186,115,126,197,225,116,2,102,24,116,36,7,215,120,71,111,7,134,153,76,84,135,67,8,18,136,181,138,75,138,208,2,185,141,156,36,136,143,129,53,38,145,62,113,186,146,44,194,252,146,219,197,84,152,93,231,6,153,67,183,217,153,154,98,4,159,132,142,190,163,21,179,137,167,189,30,99,171,150,127,118,172,102,213,67,176,251,185,27,186,52,69,205,186,78,76,254,187,147,67,197,193,63,2,62,193,70,160,87,193,119,221,140,195,23,247,182,196,141,47,35,200,145,185,3,212,107,27,16,215,187,12,81,226,119,200,125,227,135,37,212,227,197,145,241,232,18,142,40,238,232,41,211,239,33,172,47,241,80,185,51,247,168,28,27,251,119,32,231,251,242,232,218,252,133,229,214,254,187,199,205,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,64,0,189,124,120,3,241,143,47,9,13,147,142,12,19,150,223,14,49,57,16,14,215,201,232,18,183,134,89,30,96,104,162,31,12,210,166,31,73,205,186,33,145,16,49,37,82,196,135,37,128,33,249,38,157,59,187,40,226,1,64,55,200,234,203,56,232,242,185,57,225,64,90,61,248,217,235,63,210,15,202,76,198,121,185,79,45,39,186,80,139,253,243,83,193,96,32,84,8,203,174,86,18,230,78,86,172,161,149,87,79,217,181,89,238,41,2,90,238,107,188,94,177,49,161,107,68,125,177,116,171,48,193,131,36,196,133,132,207,138,142,134,155,128,203,142,29,144,159,148,184,21,36,150,199,43,37,151,193,189,204,165,108,98,110,167,111,253,97,167,227,79,248,172,149,164,123,182,131,25,238,185,77,25,174,185,173,243,162,187,44,68,24,190,147,196,112,198,80,108,176,202,190,235,36,203,79,107,167,212,59,228,151,213,191,133,109,213,227,227,13,223,221,88,240,224,60,102,111,225,13,48,34,225,253,118,126,229,22,24,217,242,81,75,1,244,98,178,80,248,150,76,206,251,10,177,113,8,1,14,46,98,111,116,116,111,109,95,110,111,116,105,99,101,2,17,6,194,109,158,10,233,199,183,61,102,96,241,70,29,48,20,73,99,21,250,79,22,121,212,79,254,72,72,123,62,217,77,124,19,107,154,131,33,164,98,134,60,56,135,154,124,160,169,180,202,109,8,200,224,228,221,203,231,52,201,226,240,163,62,230,80,48,172,16,1,17,35,102,97,110,99,121,98,111,120,45,111,118,101,114,108,97,121,2,18,15,142,152,52,22,253,36,211,29,119,219,118,81,46,44,191,125,105,163,120,127,206,249,208,131,183,117,239,154,118,159,160,177,88,139,147,177,166,87,73,180,73,238,247,188,175,158,125,223,103,100,205,234,185,181,99,237,189,196,92,238,133,60,205,248,109,41,18,251,20,145,66,16,1,14,35,102,97,110,99,121,98,111,120,45,119,114,97,112,2,18,15,142,152,52,22,253,36,211,29,119,219,118,81,46,44,191,125,105,163,120,127,206,249,208,131,183,117,239,154,118,159,160,177,88,139,147,177,166,87,73,180,73,238,247,188,175,158,125,223,103,100,205,234,185,181,99,237,189,196,92,238,133,60,205,248,109,41,18,251,20,145,66,8,1,25,46,101,108,101,109,101,110,116,111,114,45,108,111,99,97,116,105,111,110,45,112,111,112,117,112,2,5,87,10,151,84,94,93,41,239,109,108,155,31,126,109,79,214,160,88,158,61,8,1,27,46,101,108,101,109,101,110,116,111,114,45,101,108,101,109,101,110,116,45,51,49,101,49,56,48,48,49,2,1,167,99,221,45,8,1,22,46,101,108,101,109,101,110,116,111,114,45,112,111,112,117,112,45,109,111,100,97,108,2,82,2,210,185,29,3,192,210,124,3,195,58,126,5,126,17,190,7,14,146,245,7,235,149,118,12,20,201,24,12,158,154,63,18,33,167,186,18,91,131,159,18,239,32,67,21,106,216,26,31,221,27,242,37,57,218,211,46,217,49,166,48,139,63,3,49,133,172,119,58,31,124,190,61,195,148,22,63,163,36,8,67,183,95,101,69,233,170,2,70,185,111,135,73,54,146,20,73,107,145,199,79,79,75,106,83,120,158,241,85,116,10,77,86,5,26,208,90,238,5,32,90,251,97,97,98,216,163,161,98,228,8,32,99,20,239,184,105,233,162,148,105,236,159,204,108,23,250,27,108,139,136,134,110,155,66,61,110,184,239,44,111,89,43,134,111,146,21,212,117,52,212,152,124,143,151,242,124,145,119,87,125,27,99,33,127,248,113,27,129,41,137,135,137,250,245,187,142,48,181,90,143,46,38,196,146,137,227,18,146,194,105,198,149,199,80,220,163,36,235,143,164,118,139,24,170,91,194,84,175,140,76,82,175,205,189,154,177,147,220,156,179,235,139,215,181,253,10,111,193,16,74,172,193,162,29,6,195,160,216,110,201,187,179,179,205,179,132,176,208,1,156,139,212,226,91,183,214,87,26,64,220,66,179,223,226,249,228,20,229,246,227,252,234,109,204,111,238,130,61,48,240,38,242,95,241,249,242,121,242,93,45,126,244,113,199,53,245,43,110,38,247,168,2,166,254,141,160,2,8,1,18,46,117,107,45,110,111,116,105,102,121,45,109,101,115,115,97,103,101,2,2,23,119,187,238,93,0,241,170,8,1,7,46,103,85,98,88,69,75,2,7,91,62,56,100,117,188,173,199,120,106,202,49,125,13,134,75,146,213,208,87,180,178,245,41,199,37,33,196,16,1,12,35,108,105,103,104,116,45,98,111,120,45,49,2,18,5,140,166,92,6,118,53,253,16,168,0,83,33,29,47,189,39,76,35,210,51,162,100,8,56,254,248,120,80,22,210,232,96,157,132,60,165,248,3,52,186,240,10,202,191,98,232,180,199,143,55,177,215,229,207,251,230,226,63,178,235,245,105,107,246,188,44,117,252,24,219,229,8,1,19,46,108,98,45,101,117,99,108,46,108,98,66,103,83,99,114,101,101,110,2,5,26,29,143,49,95,173,199,53,99,96,220,213,183,215,84,92,201,17,160,16,8,1,16,46,108,98,45,101,117,99,108,46,108,98,70,103,66,111,120,2,5,26,29,143,49,95,173,199,53,99,96,220,213,183,215,84,92,201,17,160,16,8,1,5,46,122,45,53,48,2,13,5,139,24,138,29,120,146,223,36,36,197,223,59,177,117,94,88,27,55,189,151,92,157,85,171,88,60,179,179,48,76,231,198,157,46,172,201,164,232,129,227,180,154,47,236,89,110,219,242,115,12,112,8,1,13,46,97,108,101,114,116,45,115,116,105,99,107,121,2,6,26,6,101,64,52,32,109,145,84,0,34,57,142,187,53,231,152,37,57,107,154,193,76,168,16,1,10,35,115,112,111,116,108,105,103,104,116,2,8,40,88,202,249,45,110,216,184,77,0,142,83,85,29,132,145,88,250,102,239,93,252,136,200,217,223,195,165,226,158,86,150,8,1,36,46,105,110,100,101,120,45,109,111,100,117,108,101,45,45,67,111,111,107,105,101,65,117,116,104,83,104,111,119,45,45,105,111,54,70,55,2,2,40,115,38,77,40,157,17,161,16,1,14,35,98,97,110,110,101,114,79,118,101,114,108,97,121,2,6,5,106,145,165,45,27,112,144,61,2,14,217,162,131,119,150,166,35,212,109,221,182,175,29,16,1,22,35,100,105,118,68,105,115,97,98,108,101,100,66,97,99,107,103,114,111,117,110,100,2,4,54,143,243,251,105,234,0,186,155,158,68,231,184,71,212,195,16,1,14,35,112,111,112,117,112,95,119,114,97,112,112,101,114,2,9,40,16,208,8,66,60,102,31,85,38,57,216,131,218,93,182,168,43,53,110,184,129,113,63,240,102,123,37,248,91,77,0,249,69,221,135,16,1,11,35,115,105,116,101,45,116,101,114,109,115,2,3,59,16,195,203,212,69,124,40,231,121,60,31,16,1,6,35,115,112,45,99,99,2,14,2,97,104,191,5,12,89,153,11,60,154,154,22,1,201,180,40,192,222,106,57,219,238,22,70,77,207,17,112,248,156,249,139,38,187,167,171,5,171,144,178,150,51,75,186,18,182,219,213,122,113,189,232,69,31,194,16,1,15,35,118,105,110,101,103,97,114,45,98,111,116,116,108,101,2,37,20,31,252,222,30,148,245,112,39,6,9,49,41,4,101,149,53,212,210,97,67,133,23,38,69,207,33,1,71,22,117,79,76,128,101,128,76,192,146,206,80,15,82,5,83,159,219,183,90,233,24,161,97,25,243,149,100,222,1,81,104,71,223,213,107,208,66,210,110,149,163,130,124,48,90,131,125,17,113,96,131,95,177,223,131,119,155,200,140,44,222,239,141,236,25,94,154,39,0,73,156,187,189,4,195,39,126,200,201,189,226,116,210,94,204,70,230,221,69,138,234,193,32,132,243,27,210,195,247,212,152,41,249,151,89,12,249,230,177,61,251,137,72,113,251,146,110,140,8,1,19,46,97,108,101,114,116,70,111,111,116,101,114,67,111,110,116,101,110,116,2,2,38,157,76,169,178,145,153,75,8,1,9,46,98,97,99,107,100,114,111,112,2,3,38,156,73,42,203,216,155,168,244,100,141,81,8,1,18,46,98,97,114,46,106,115,120,45,51,52,49,50,50,51,48,56,53,2,3,98,205,253,12,149,36,3,172,250,23,120,177,8,1,7,46,98,112,71,111,117,71,2,3,7,109,76,69,86,59,237,75,101,63,11,237,8,1,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,3,38,156,73,42,203,216,155,168,244,100,141,81,8,1,10,46,101,49,116,114,99,112,50,49,48,2,9,47,35,212,103,84,136,31,211,92,224,67,188,98,141,49,37,128,167,176,214,166,164,208,108,181,11,9,189,200,145,103,123,244,57,62,103,8,1,9,46,101,51,118,52,119,108,105,48,2,4,6,127,138,25,175,10,138,152,197,101,89,118,202,33,188,54,16,1,8,35,112,111,112,105,110,71,65,2,3,104,40,227,48,104,133,174,86,222,156,32,156,8,1,17,46,99,100,107,45,111,118,101,114,108,97,121,45,112,97,110,101,2,4,166,130,220,204,166,130,221,229,166,130,224,115,166,130,224,210,8,1,15,46,100,105,115,99,108,97,105,109,101,114,95,98,111,120,2,4,18,214,223,202,128,0,115,172,145,87,212,221,253,120,80,116,8,1,9,46,116,114,97,110,115,98,111,120,2,4,18,214,223,202,128,0,115,172,145,87,212,221,253,120,80,116,8,1,20,46,82,101,97,99,116,77,111,100,97,108,95,95,79,118,101,114,108,97,121,2,6,55,186,145,93,125,203,167,45,127,219,176,110,148,201,255,191,149,79,144,169,158,112,73,186,16,1,7,35,99,111,111,107,105,101,2,128,0,0,1,94,0,153,15,216,1,60,120,221,1,135,101,198,3,172,138,63,5,219,229,253,6,186,163,249,8,76,51,64,8,199,211,189,9,56,227,106,9,117,214,165,9,156,255,121,10,214,120,249,11,204,91,126,12,57,181,138,13,107,218,19,14,145,222,115,15,241,180,218,16,158,144,53,16,239,153,51,17,62,239,15,17,166,115,206,18,73,148,95,18,182,198,113,18,219,220,10,19,113,22,176,20,100,93,223,20,249,67,35,21,165,131,3,22,70,210,254,22,91,27,103,22,122,229,57,22,175,87,71,22,254,135,147,23,59,21,149,23,194,73,88,25,17,239,37,25,41,91,148,25,247,225,49,26,102,54,1,28,103,146,217,28,208,206,142,28,227,253,185,29,120,92,242,29,169,1,188,29,186,193,14,30,15,67,102,30,146,47,218,30,232,107,171,31,40,43,86,31,73,118,209,31,73,239,50,31,214,143,242,31,239,244,121,32,102,213,31,33,35,9,59,33,37,116,127,33,42,138,87,33,59,223,14,34,39,154,159,34,42,204,10,34,93,16,158,35,97,128,26,35,150,61,53,37,86,98,1,38,157,25,24,40,214,109,227,40,221,158,171,42,89,192,240,42,110,204,204,42,137,202,14,42,146,176,72,44,10,219,32,44,173,65,240,45,112,249,16,46,238,27,198,47,86,24,29,48,95,193,205,48,177,43,155,50,112,90,155,53,86,4,196,54,64,163,41,54,197,17,133,54,199,64,30,54,222,61,18,58,72,235,51,58,122,121,148,59,2,82,101,59,172,168,118,59,198,109,124,61,184,219,184,62,67,207,51,63,237,255,174,64,154,31,141,64,220,225,95,65,104,125,195,68,27,44,161,69,118,35,99,70,43,40,36,71,85,189,194,71,133,148,59,71,233,211,53,73,225,139,145,76,127,207,36,77,22,157,25,77,96,153,207,78,59,234,88,78,157,89,151,78,221,149,212,79,0,85,244,80,82,87,29,81,178,5,113,82,64,108,14,82,86,241,228,82,128,88,12,82,160,208,58,82,163,77,71,83,175,78,98,83,248,58,13,83,249,110,50,84,26,200,0,87,22,252,153,88,227,29,76,88,251,169,20,89,94,127,87,89,107,208,54,90,122,75,228,90,207,221,156,93,136,115,232,93,235,223,234,95,69,149,211,95,81,135,182,96,216,242,47,97,151,113,229,99,13,128,250,99,50,127,39,99,107,134,15,99,109,143,247,100,135,100,189,101,36,233,208,103,50,32,221,103,75,90,109,106,84,44,83,106,132,140,39,106,162,131,161,106,176,213,194,107,193,9,38,107,199,154,138,108,221,151,29,109,154,130,115,110,29,214,175,110,137,105,23,111,52,195,37,111,103,135,129,112,71,250,201,113,84,82,60,113,91,190,174,115,113,219,2,115,227,28,226,116,36,183,17,116,61,141,111,116,101,152,96,119,157,108,122,120,62,93,175,120,66,132,22,122,138,223,95,125,208,126,10,125,232,227,15,125,251,87,163,126,27,55,36,126,100,163,20,126,191,246,112,127,50,185,160,127,97,174,239,127,98,197,164,128,38,201,143,129,187,240,209,129,245,245,135,130,25,178,10,130,241,240,226,131,179,76,198,133,175,175,168,134,129,65,23,134,192,15,224,135,79,63,174,135,156,26,106,136,37,246,149,137,153,10,68,137,170,177,7,138,5,113,239,140,11,133,75,142,133,164,207,143,187,133,7,144,61,87,196,144,187,132,85,145,244,43,127,146,184,244,38,148,158,92,70,148,225,197,18,148,252,223,16,149,63,205,30,149,114,158,172,149,177,39,206,149,242,82,138,150,57,94,147,152,171,132,104,154,100,251,18,154,110,116,58,154,247,95,141,155,29,169,92,155,197,89,206,156,62,98,34,157,29,186,74,157,69,222,117,157,133,28,89,157,166,4,207,157,246,2,109,158,76,247,158,158,85,188,173,158,87,170,39,159,160,217,231,160,164,12,146,160,210,17,112,161,43,233,254,161,191,202,150,161,205,155,29,164,44,212,52,165,23,68,46,165,62,15,105,166,33,119,152,166,182,35,111,167,49,249,7,168,60,100,83,170,85,161,106,172,197,15,252,173,57,143,135,174,161,103,212,174,239,41,85,176,134,204,200,177,146,21,5,179,126,103,13,179,209,8,36,180,65,107,82,180,200,14,83,182,111,106,142,182,225,74,193,183,3,97,209,183,80,229,210,185,55,69,160,186,66,60,208,186,86,186,220,186,239,58,222,188,207,126,80,188,250,235,183,189,74,71,68,190,13,38,244,190,81,53,243,190,81,127,255,190,81,162,217,190,148,39,154,190,198,46,123,190,225,175,54,192,14,87,140,192,148,58,122,193,62,167,217,194,235,147,118,195,6,114,178,195,95,246,53,196,32,13,219,196,205,87,27,197,160,2,202,197,181,10,161,197,229,99,104,197,246,86,108,199,111,155,120,199,163,165,26,200,208,176,138,200,217,128,52,201,22,178,95,202,44,186,85,204,54,43,18,204,236,18,216,206,155,33,102,207,66,206,35,207,180,45,224,208,251,107,69,209,102,199,234,211,56,253,198,211,110,114,45,211,126,148,88,211,182,17,223,211,183,193,107,211,189,103,17,211,239,246,1,212,217,85,168,213,86,116,42,214,235,237,107,217,1,40,94,217,224,44,217,217,235,57,11,221,22,215,146,222,187,81,220,223,106,126,128,223,127,2,185,223,162,252,229,224,62,192,251,225,64,241,248,226,106,74,44,226,117,203,27,226,165,90,224,226,180,237,119,227,135,144,172,227,172,41,37,228,126,92,15,229,107,9,21,230,167,254,170,230,212,55,201,231,171,95,80,231,195,239,202,233,194,146,99,234,14,215,0,234,237,233,178,234,254,240,228,235,26,155,38,235,57,50,81,235,131,49,200,238,61,93,83,239,130,87,193,240,6,242,58,241,149,215,249,242,133,238,14,242,231,2,96,243,213,255,77,244,252,242,100,245,160,208,251,247,43,189,73,248,69,70,189,248,156,127,55,249,84,200,235,249,112,68,173,249,214,16,64,249,248,108,96,250,114,193,36,251,76,50,11,251,220,71,225,251,230,135,22,251,240,30,59,253,224,7,1,254,71,44,115,254,112,233,124,255,168,87,11,16,1,8,35,99,111,111,107,105,101,115,2,128,0,0,1,187,0,176,61,125,0,187,53,33,1,54,207,73,1,128,190,183,1,187,67,99,3,15,15,9,3,180,243,97,4,49,15,234,5,46,250,124,5,107,17,83,5,112,128,144,5,187,248,88,5,237,34,15,6,90,45,252,6,143,241,14,6,206,51,157,7,6,7,8,7,68,147,20,7,160,106,123,7,246,71,77,8,201,252,212,9,154,36,117,11,115,57,56,12,82,253,193,13,36,193,198,13,133,62,208,13,169,68,129,13,188,175,230,13,203,3,234,14,21,85,48,15,33,195,129,16,4,137,76,16,67,102,40,17,16,36,68,18,215,127,242,20,220,254,117,20,243,175,252,20,244,66,15,22,82,30,138,22,193,197,44,23,107,216,128,23,133,249,148,23,158,34,237,26,96,15,26,27,71,138,176,27,93,221,10,27,98,195,61,27,209,30,21,28,172,72,252,29,44,86,191,30,105,91,223,30,175,124,103,31,73,224,220,31,119,151,15,31,237,31,121,32,128,93,6,32,229,203,10,33,39,33,6,33,181,146,78,34,53,111,40,34,154,179,182,36,7,119,167,36,64,61,162,37,203,77,232,38,99,2,86,38,108,104,228,41,16,135,126,41,44,97,175,42,37,126,210,42,117,133,166,43,50,223,104,47,16,246,83,47,57,78,18,48,27,52,230,49,146,84,0,50,169,5,110,50,208,106,74,51,237,148,159,52,7,6,123,53,245,115,115,54,212,177,10,55,165,196,223,56,24,222,173,56,48,49,138,56,97,135,186,57,185,64,112,59,28,141,207,60,9,0,9,60,239,149,93,63,106,12,15,64,10,159,235,64,47,232,104,64,164,222,42,65,223,193,192,65,227,152,60,66,64,198,176,67,84,184,16,68,160,199,185,70,0,246,196,70,68,15,235,70,132,23,221,71,98,157,215,71,223,186,108,72,172,175,10,73,25,30,22,73,29,191,99,73,139,164,58,73,179,152,47,73,187,202,243,75,239,235,42,76,209,160,71,77,164,186,214,77,194,65,65,77,240,175,103,78,99,15,254,78,117,31,154,78,196,137,218,78,212,154,7,79,81,252,11,79,158,218,180,80,205,234,130,81,125,231,79,82,37,183,20,82,115,227,23,82,119,171,32,84,0,149,202,84,130,163,31,84,215,254,154,84,239,122,104,84,239,146,240,85,255,236,116,86,156,147,118,86,207,244,225,87,68,222,235,90,42,173,195,91,21,235,206,91,196,172,226,92,3,133,60,93,78,96,212,94,122,21,31,94,141,45,171,95,3,173,91,96,91,208,175,97,0,235,246,98,18,105,33,98,56,218,112,98,110,238,85,98,176,228,116,99,8,253,109,99,69,114,192,99,201,152,8,101,145,43,27,104,64,42,162,104,221,201,118,106,4,251,12,106,94,252,196,106,162,37,94,106,193,183,104,106,218,212,185,107,13,200,179,107,88,184,118,107,123,252,106,107,239,67,233,107,248,199,139,108,16,43,239,108,98,236,15,108,232,238,46,109,15,243,34,109,25,24,156,109,72,160,95,109,184,221,239,109,208,101,202,110,190,217,71,111,11,217,79,111,151,199,240,111,168,115,158,111,198,54,10,112,37,145,192,112,48,112,226,113,6,32,71,113,43,126,98,114,102,128,163,114,153,64,228,114,192,56,212,114,218,247,183,115,123,191,60,115,146,117,113,116,54,79,51,117,103,161,89,118,183,209,34,118,189,67,13,119,204,94,185,120,148,135,97,120,180,4,111,123,125,193,174,124,75,163,29,124,97,249,41,124,253,51,49,125,126,249,133,125,214,173,91,126,109,253,9,126,146,160,158,126,160,6,162,126,170,8,144,126,183,61,223,126,211,28,117,126,217,167,57,126,224,36,140,127,3,31,177,128,33,66,78,128,81,124,201,129,52,16,228,129,75,158,112,129,174,236,253,129,178,163,29,129,188,177,104,129,201,159,168,130,56,110,254,130,195,30,84,132,70,155,58,132,76,188,159,132,124,130,236,133,227,207,249,134,160,22,150,135,199,223,133,135,245,252,123,137,225,27,87,137,225,39,250,138,57,51,181,138,91,112,236,138,244,227,154,139,20,122,237,139,63,72,44,140,125,170,244,140,155,190,119,140,219,76,122,142,7,218,69,142,17,217,211,142,169,47,2,142,203,246,18,142,233,215,98,143,113,116,248,143,116,54,101,143,190,190,232,144,48,124,176,144,103,206,11,144,196,235,211,145,19,158,36,145,47,138,46,145,164,220,160,145,212,124,236,145,238,133,35,146,15,112,143,147,124,200,159,148,185,18,173,149,255,163,17,150,26,167,10,150,36,44,118,150,83,156,48,150,162,214,59,150,169,198,104,150,222,119,93,151,92,93,186,152,208,125,167,153,147,184,190,154,15,135,197,154,224,180,2,155,128,173,225,155,212,242,154,158,215,35,202,159,30,85,188,160,103,113,201,160,164,6,67,160,221,44,117,160,243,115,93,161,101,218,47,161,105,226,18,162,182,119,154,163,26,85,98,163,55,62,226,164,106,208,149,164,112,224,180,165,62,121,162,165,128,114,238,166,209,13,221,167,254,10,250,168,111,115,54,168,253,169,176,169,80,38,19,170,85,133,246,170,225,99,175,173,42,161,140,173,133,6,77,173,238,93,10,173,239,83,188,174,16,16,19,174,22,135,128,174,48,76,177,174,241,88,133,175,48,24,36,175,218,213,116,175,218,222,253,175,218,223,58,176,66,147,152,178,219,154,14,179,194,4,178,179,237,226,61,180,73,31,199,182,29,226,9,182,49,217,99,182,175,23,206,182,175,111,37,184,49,45,159,185,7,4,97,185,44,38,44,186,163,116,143,186,163,142,2,187,127,97,43,187,203,221,106,188,180,48,35,189,254,219,109,190,49,132,35,190,66,207,126,190,67,25,21,190,79,216,167,190,81,53,243,190,201,135,140,191,9,188,178,191,30,132,9,193,64,6,241,193,82,79,14,193,166,52,152,193,219,79,145,193,241,255,115,194,14,226,86,196,99,100,224,196,124,55,13,196,179,17,198,196,216,163,184,197,22,38,57,198,24,219,68,198,35,124,144,198,120,26,85,199,65,171,159,199,94,7,173,199,204,236,230,200,75,8,180,200,121,147,108,201,10,143,102,201,136,0,165,203,20,214,115,203,40,13,202,203,100,213,159,203,217,143,73,203,233,163,183,204,50,68,161,204,138,120,130,204,164,211,63,205,8,194,179,205,250,209,228,206,99,108,172,207,11,159,145,207,36,171,97,207,198,243,12,208,55,255,234,208,254,254,128,209,95,11,154,209,200,247,110,210,215,197,26,211,104,144,84,212,24,109,162,212,133,4,19,212,226,115,130,214,175,105,176,214,194,159,145,215,152,12,121,216,48,239,252,216,49,118,127,216,86,100,21,216,117,7,93,216,220,43,5,216,227,232,180,216,247,202,26,217,63,229,11,219,123,184,73,219,135,246,132,219,151,186,211,220,25,201,108,220,55,234,36,220,90,133,80,221,14,95,60,222,40,120,119,222,108,233,141,222,246,227,161,225,4,173,42,225,42,123,61,225,163,27,225,225,166,178,197,226,116,96,103,227,66,211,127,227,89,195,223,227,135,183,59,227,135,185,158,227,183,45,79,229,106,227,231,229,250,93,228,231,159,6,139,232,232,50,24,233,224,254,7,234,13,242,245,234,227,169,137,235,33,253,186,237,66,129,173,238,201,9,61,240,74,164,169,240,91,5,15,240,232,254,186,241,187,223,82,242,170,8,156,242,237,73,240,243,230,188,0,245,29,55,226,245,113,92,141,246,86,153,214,246,133,83,107,247,175,63,17,248,141,70,235,248,184,103,255,248,204,243,255,248,208,31,136,249,22,21,149,249,71,248,164,249,250,61,215,250,103,155,146,251,72,185,30,251,139,156,108,251,205,86,246,251,238,124,222,252,183,35,39,253,141,178,240,254,76,33,168,254,98,152,118,254,125,73,131,16,1,36,35,114,101,97,99,116,45,114,111,111,116,32,62,32,100,105,118,32,62,32,100,105,118,32,62,32,46,114,110,45,103,118,112,110,111,104,2,1,233,150,165,244,0,1,47,91,100,97,116,97,45,114,101,97,99,116,114,111,111,116,93,32,62,32,91,99,108,97,115,115,93,32,43,32,91,99,108,97,115,115,93,58,108,97,115,116,45,99,104,105,108,100,2,1,233,150,165,244,8,1,120,46,99,115,115,45,49,100,98,106,99,52,110,46,114,45,49,50,118,102,102,107,118,32,62,32,46,114,45,49,50,118,102,102,107,118,32,62,32,46,99,115,115,45,49,100,98,106,99,52,110,91,100,97,116,97,45,116,101,115,116,105,100,61,34,66,111,116,116,111,109,66,97,114,34,93,32,62,32,46,99,115,115,45,49,100,98,106,99,52,110,46,114,45,49,97,119,111,122,119,121,46,114,45,49,115,119,51,48,103,106,46,114,45,49,53,99,101,52,118,101,2,1,233,150,165,244,8,1,91,46,114,45,49,51,113,122,49,117,117,46,114,45,49,102,49,115,106,103,117,46,114,45,121,109,116,116,119,53,46,114,45,49,100,55,102,118,100,106,46,114,45,49,56,117,51,55,105,122,46,114,45,49,53,99,101,52,118,101,46,114,45,49,115,119,51,48,103,106,46,114,45,49,97,119,111,122,119,121,46,99,115,115,45,49,100,98,106,99,52,110,2,1,233,150,165,244,8,1,90,46,114,45,49,51,113,122,49,117,117,46,114,45,49,102,49,115,106,103,117,46,114,45,121,109,116,116,119,53,46,114,45,49,100,55,102,118,100,106,46,114,45,49,56,117,51,55,105,122,46,114,45,57,104,118,114,57,51,46,114,45,49,109,51,106,120,104,106,46,114,45,49,97,119,111,122,119,121,46,99,115,115,45,49,100,98,106,99,52,110,2,1,233,150,165,244,8,1,90,46,114,45,49,51,113,122,49,117,117,46,114,45,116,118,118,48,56,56,46,114,45,100,57,102,100,102,54,46,114,45,49,100,55,102,118,100,106,46,114,45,49,56,117,51,55,105,122,46,114,45,49,117,112,118,114,110,48,46,114,45,49,109,51,106,120,104,106,46,114,45,49,97,119,111,122,119,121,46,99,115,115,45,49,100,98,106,99,52,110,2,1,233,150,165,244,8,1,89,46,114,45,49,51,113,122,49,117,117,46,114,45,116,118,118,48,56,56,46,114,45,100,57,102,100,102,54,46,114,45,49,100,55,102,118,100,106,46,114,45,49,56,117,51,55,105,122,46,114,45,113,111,48,50,119,56,46,114,45,49,109,51,106,120,104,106,46,114,45,49,97,119,111,122,119,121,46,99,115,115,45,49,100,98,106,99,52,110,2,1,233,150,165,244,8,1,50,46,114,45,53,107,107,106,56,100,46,114,45,49,53,51,119,52,110,118,46,114,45,49,101,52,109,97,56,57,46,114,45,113,113,52,99,121,99,46,99,115,115,45,49,55,53,111,105,50,114,2,1,233,150,165,244,8,1,31,46,114,110,45,103,118,112,110,111,104,46,114,110,45,101,112,115,54,110,113,46,114,110,45,49,51,113,122,49,117,117,2,1,233,150,165,244,16,1,13,35,97,108,101,114,116,95,99,111,111,107,105,101,2,2,61,147,207,155,122,172,214,171,16,1,4,35,99,99,99,2,1,38,157,49,63,16,1,10,35,99,109,112,66,97,110,110,101,114,2,1,106,115,255,109,16,1,15,35,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,54,177,79,0,16,1,13,35,99,111,110,115,101,110,116,45,98,117,109,112,2,64,3,72,216,139,6,166,164,156,6,198,100,184,12,18,58,115,13,185,241,147,15,171,145,27,15,250,36,121,24,126,113,57,26,95,191,185,28,19,19,53,29,60,165,77,31,95,52,221,36,12,127,229,36,229,81,100,46,242,180,11,52,135,120,15,55,211,183,17,56,60,70,171,59,93,198,144,62,103,215,201,63,34,96,149,63,81,71,251,64,206,183,187,72,103,87,85,84,198,170,46,85,85,109,156,86,18,88,41,86,114,242,155,86,244,66,182,87,205,250,216,94,185,148,62,98,50,254,112,100,16,26,123,102,27,154,48,107,236,201,47,110,179,111,50,117,9,111,0,122,47,93,232,130,50,141,218,133,224,147,65,145,149,122,102,152,1,26,100,152,13,220,66,158,82,140,165,160,212,16,58,172,36,156,208,174,147,36,59,183,73,70,89,191,14,137,67,192,222,35,204,193,25,57,108,204,19,128,230,208,24,100,61,208,231,38,163,209,44,200,27,210,38,56,28,210,228,80,31,210,244,62,121,211,117,238,42,214,129,87,123,229,74,154,114,232,223,192,206,241,161,12,171,251,156,20,221,16,1,11,35,99,111,111,107,105,101,45,98,97,114,2,1,71,156,238,113,16,1,18,35,99,111,111,107,105,101,45,100,105,115,99,108,111,115,117,114,101,2,1,104,78,245,96,16,1,21,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,2,1,173,38,68,160,16,1,12,35,99,111,111,107,105,101,65,108,101,114,116,2,2,111,113,177,53,254,102,217,189,16,1,26,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,67,111,110,116,97,105,110,101,114,2,1,207,43,250,236,16,1,27,35,99,111,111,107,105,101,95,100,105,114,101,99,116,105,118,101,95,99,111,110,116,97,105,110,101,114,2,1,149,154,95,1,16,1,13,35,99,111,111,107,105,101,95,112,111,112,117,112,2,3,16,169,110,227,106,135,223,17,130,213,158,160,16,1,10,35,99,111,111,107,105,101,98,97,114,2,1,214,194,44,29,16,1,19,35,99,111,111,107,105,101,115,95,102,111,111,116,101,114,95,115,101,99,2,1,54,26,207,222,16,1,12,35,101,110,115,66,97,110,110,101,114,66,71,2,3,82,179,88,117,166,203,101,165,173,103,146,29,16,1,16,35,101,110,115,78,111,116,105,102,121,66,97,110,110,101,114,2,3,82,179,88,117,166,203,101,165,173,103,146,29,16,1,17,35,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,142,14,98,194,16,1,22,35,101,117,95,99,111,111,107,105,101,115,95,100,105,115,99,108,97,105,109,101,114,2,1,156,232,148,85,16,1,19,35,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,49,48,49,21,16,1,10,35,103,100,112,114,45,119,97,108,108,2,1,114,106,73,0,16,1,10,35,103,100,112,114,112,111,112,117,112,2,1,142,211,251,152,16,1,19,35,116,99,45,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,2,1,182,132,160,154,16,1,8,35,117,100,116,68,97,114,107,2,1,124,175,131,47,8,1,7,46,97,115,45,111,105,108,2,2,27,103,62,6,27,116,250,103,8,1,23,46,98,117,105,108,100,101,114,105,117,115,67,111,111,107,105,101,78,111,116,105,99,101,2,1,38,43,205,53,8,1,14,46,99,45,115,105,116,101,45,97,108,101,114,116,115,2,1,111,146,187,146,8,1,8,46,99,97,95,119,114,97,112,2,1,38,157,179,147,8,1,10,46,99,99,95,98,97,110,110,101,114,2,2,152,67,148,253,172,161,123,189,8,1,14,46,99,111,110,115,101,110,116,45,112,111,112,117,112,2,1,112,22,124,189,8,1,12,46,99,111,111,107,105,101,45,105,110,102,111,2,1,125,134,67,200,8,1,11,46,99,111,111,107,105,101,45,108,97,119,2,1,38,201,222,92,8,1,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,2,1,141,253,6,70,8,1,18,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,111,120,2,1,70,77,253,152,8,1,16,46,99,111,111,107,105,101,65,99,99,101,112,116,66,111,120,2,1,241,228,210,40,8,1,13,46,99,111,111,107,105,101,66,97,110,110,101,114,2,1,38,157,28,48,8,1,20,46,99,111,111,107,105,101,80,111,108,105,99,121,66,66,111,116,116,111,109,2,1,126,15,243,55,8,1,21,46,99,111,111,107,105,101,115,45,98,97,110,100,45,111,118,101,114,108,97,121,2,1,196,170,120,0,8,1,13,46,103,100,112,114,45,109,101,115,115,97,103,101,2,3,38,157,45,86,184,140,202,83,219,20,36,56,8,1,17,46,104,120,95,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,95,156,229,149,8,1,23,46,108,101,103,97,108,45,98,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,2,1,124,141,0,80,8,1,14,46,108,111,119,101,115,116,45,116,101,97,115,101,114,2,1,173,137,238,209,8,1,12,46,109,45,97,103,114,101,101,109,101,110,116,2,1,148,199,178,32,8,1,16,46,110,108,45,99,111,111,107,105,101,112,111,108,105,99,121,2,1,126,159,132,157,8,1,22,46,112,97,114,107,45,115,110,97,99,107,98,97,114,45,99,111,111,107,105,101,115,2,1,68,43,189,44,8,1,16,46,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,2,1,3,39,9,106,8,1,27,46,117,49,50,45,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,110,111,116,105,99,101,2,1,233,150,165,244,8,1,16,46,122,101,112,104,114,45,99,111,109,112,111,110,101,110,116,2,1,104,168,162,49,0,1,16,97,112,112,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,162,243,67,88,0,1,21,100,105,118,35,99,109,112,45,97,112,112,45,99,111,110,116,97,105,110,101,114,2,1,175,60,74,16,0,1,20,116,105,107,116,111,107,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,66,46,160,42,8,1,17,46,103,98,110,101,119,45,99,111,111,107,105,101,45,98,97,114,2,2,76,204,201,79,167,151,9,45,16,5,4,35,97,112,112,2,2,27,95,86,155,216,116,37,43,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,5,21,35,111,110,101,116,114,117,115,116,45,99,111,110,115,101,110,116,45,115,100,107,2,1,73,191,207,62,13,100,105,115,112,108,97,121,58,32,110,111,110,101,16,5,8,35,119,114,97,112,112,101,114,2,2,33,223,13,193,224,160,44,249,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,26,46,99,111,111,107,105,101,45,100,105,97,108,111,103,46,109,101,103,97,45,100,105,97,108,111,103,2,2,55,14,235,93,103,195,40,99,8,1,18,46,102,109,45,100,105,97,108,111,103,45,111,118,101,114,108,97,121,2,2,55,14,235,93,103,195,40,99,8,5,12,46,102,117,108,108,46,98,108,117,114,101,100,2,1,91,17,129,193,24,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,0,5,4,98,111,100,121,2,1,118,27,7,221,27,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,8,5,11,46,109,111,100,97,108,45,111,112,101,110,2,1,79,14,186,81,55,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,97,100,100,105,110,103,45,114,105,103,104,116,58,32,48,32,33,105,109,112,111,114,116,97,110,116,59,8,5,36,46,111,118,101,114,108,97,121,101,100,32,46,98,111,116,116,111,109,45,112,97,103,101,46,115,99,114,111,108,108,45,98,108,111,99,107,2,2,55,14,235,93,103,195,40,99,56,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,32,45,119,101,98,107,105,116,45,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,8,5,15,46,119,114,97,112,112,101,114,46,98,108,117,114,101,100,2,3,3,158,31,168,6,253,13,56,74,41,218,104,24,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,27,12,69,206,21,24,15,30,116,29,171,122,164,33,26,151,228,43,129,86,39,44,148,137,164,46,3,65,69,59,91,47,186,104,62,114,245,123,117,211,38,123,117,211,38,126,61,4,129,128,47,248,183,137,232,35,216,144,14,34,87,148,159,167,59,158,100,4,187,177,9,21,40,180,57,145,106,182,132,160,154,190,1,13,143,201,18,214,144,201,126,135,157,234,50,247,22,237,101,181,24,242,231,20,106,242,231,115,104,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,9,98,111,100,121,44,104,116,109,108,2,128,0,0,2,31,0,106,238,69,1,11,43,133,1,31,94,79,1,228,194,164,2,32,4,220,2,99,68,170,2,180,184,185,3,221,144,204,3,225,33,202,4,245,233,82,5,19,152,115,5,195,142,180,5,197,48,119,5,197,128,115,6,51,68,43,6,201,238,36,6,231,82,200,7,27,82,234,7,162,61,159,8,5,21,210,8,112,200,90,8,249,18,245,9,166,155,248,9,188,99,18,10,47,119,45,10,239,0,117,11,100,248,122,12,162,233,111,13,133,105,221,13,229,238,255,14,253,99,170,15,101,177,138,16,80,223,208,18,100,213,80,18,225,113,107,19,146,191,189,19,155,89,114,19,242,67,232,20,160,40,179,22,83,84,209,23,214,144,227,24,105,243,16,24,220,39,8,25,24,18,143,26,249,103,30,27,105,173,217,27,105,176,211,27,121,128,12,27,143,85,196,29,7,186,167,29,48,86,73,29,131,69,137,30,196,120,72,30,245,179,140,31,24,58,156,31,205,139,61,32,20,76,84,32,121,49,135,32,166,173,95,33,114,87,104,34,99,51,177,34,112,119,125,35,114,222,46,36,74,62,128,36,111,67,223,36,172,254,160,37,0,214,128,37,190,113,74,38,88,51,179,40,5,180,134,40,209,59,191,40,233,190,112,41,193,244,95,41,197,115,71,43,188,37,115,43,220,2,28,43,234,32,59,44,44,50,184,44,98,66,146,45,79,208,114,45,80,97,220,45,123,41,147,45,250,21,95,46,96,57,22,46,121,43,12,46,255,150,126,47,105,88,193,47,117,163,85,47,140,212,54,47,164,11,78,47,180,211,55,47,248,103,212,48,72,118,44,48,81,214,135,48,254,8,250,49,17,166,18,49,30,76,101,49,81,7,155,49,184,185,149,50,136,115,121,50,187,213,224,50,216,116,140,52,179,241,149,53,219,106,42,54,162,60,139,55,36,119,126,55,152,150,107,55,174,250,229,55,220,145,37,55,234,238,179,56,187,206,18,57,23,37,123,57,225,64,90,58,53,26,171,62,237,49,68,63,33,221,45,63,54,208,56,63,60,250,15,63,119,206,60,63,164,38,62,64,72,21,132,65,36,162,50,65,99,84,19,66,143,94,11,68,52,173,83,68,118,236,166,72,139,195,89,73,185,43,61,73,210,79,67,74,87,141,170,75,79,197,104,75,214,65,32,76,80,230,132,76,195,181,165,77,21,178,74,77,66,238,186,77,88,124,199,77,108,72,175,77,125,177,44,79,22,3,236,79,28,129,175,79,124,141,146,79,153,245,136,81,74,82,189,82,41,186,53,82,84,226,218,82,252,232,201,83,174,29,18,84,231,215,111,85,9,33,57,85,195,143,71,86,72,169,202,87,151,63,153,87,201,235,203,88,136,162,166,89,240,143,125,89,250,235,101,90,5,245,122,90,177,250,111,90,205,36,145,90,222,62,101,91,6,61,207,91,38,201,177,91,64,3,6,92,167,97,60,92,202,7,145,94,133,172,30,94,168,182,149,95,30,189,95,95,51,65,181,95,52,234,42,96,152,107,1,96,228,222,49,96,242,224,18,96,249,137,194,97,27,236,142,97,94,216,16,97,154,89,197,97,169,97,253,97,215,207,210,98,5,138,13,98,140,180,22,99,127,49,174,99,129,28,60,100,5,164,33,100,220,37,233,100,248,193,125,101,13,208,183,101,23,129,38,101,149,154,90,101,227,144,63,101,234,247,76,102,67,82,89,103,19,92,82,103,49,1,21,104,247,212,242,105,44,110,148,105,231,8,238,106,22,201,115,106,204,145,155,107,46,202,135,107,63,43,50,108,83,123,67,109,119,134,94,109,230,219,22,109,239,66,250,109,255,58,35,110,102,124,222,110,132,56,7,112,34,89,251,112,176,252,129,112,243,226,1,113,71,99,151,113,231,212,96,114,229,117,243,115,0,208,108,115,76,9,168,115,140,180,87,115,188,80,93,116,33,62,32,117,65,169,250,117,165,179,145,118,5,129,76,118,125,112,131,118,152,30,104,118,227,144,153,119,72,228,42,119,158,64,101,120,76,3,238,120,142,148,106,121,42,184,112,122,241,164,172,123,14,188,138,123,76,39,185,123,156,214,228,123,245,210,151,124,172,135,144,126,22,115,196,126,159,247,208,126,243,151,235,127,56,109,227,127,93,124,105,127,148,114,179,128,87,244,163,128,175,17,223,129,35,167,165,129,86,152,59,129,140,116,65,129,206,220,23,129,247,230,164,130,16,89,136,130,85,33,172,130,128,5,163,131,49,12,34,131,205,199,210,132,59,87,240,133,168,28,177,134,168,219,230,135,41,102,210,135,86,131,12,135,179,19,203,136,68,237,63,136,74,118,71,136,239,79,31,138,15,55,72,138,54,31,3,138,67,238,56,138,160,250,148,139,22,115,77,139,74,4,44,139,93,23,132,139,99,161,111,142,37,204,216,142,37,215,194,142,119,34,204,143,117,224,155,143,247,46,188,144,114,209,196,145,94,149,129,145,180,103,77,145,219,251,30,146,2,253,104,146,7,7,46,146,9,224,214,146,97,201,138,147,241,190,65,148,180,2,87,148,186,151,254,148,201,198,110,149,61,224,166,149,117,53,72,150,86,74,99,150,119,75,132,150,215,66,40,151,193,189,204,152,106,152,37,152,197,90,108,154,57,129,198,155,176,210,102,156,62,8,32,156,242,160,60,157,20,65,107,157,49,204,221,158,93,215,44,159,109,226,17,159,177,176,174,159,214,176,53,160,163,225,9,161,182,73,124,162,45,36,120,163,3,116,103,163,200,215,195,164,7,154,215,164,111,240,197,164,131,235,254,165,21,143,180,165,84,149,78,165,197,46,151,165,208,240,21,166,53,41,6,166,60,196,183,166,135,88,206,167,91,255,127,167,221,164,49,168,36,71,230,168,81,220,230,168,130,91,20,168,130,91,89,168,146,211,205,168,179,141,22,169,92,171,187,169,208,243,253,170,90,44,90,170,158,94,119,170,186,57,47,170,189,162,33,170,223,136,142,171,12,108,39,171,61,145,217,171,191,165,169,173,43,255,219,174,34,26,168,174,67,204,156,174,87,210,77,174,236,193,74,175,47,41,180,176,28,234,63,176,38,69,179,176,168,16,229,176,214,32,91,177,78,54,71,177,82,23,173,177,84,195,135,178,53,247,54,178,242,57,61,179,54,98,251,179,246,70,248,179,252,1,196,180,20,20,128,180,42,128,209,181,92,93,121,181,103,133,17,181,192,2,209,182,118,76,194,182,131,103,46,183,19,47,126,183,234,128,238,184,54,253,127,185,143,10,187,186,17,0,118,186,171,68,163,187,163,2,68,188,0,105,156,188,90,90,104,189,123,157,26,189,136,247,223,189,220,209,138,189,246,46,204,190,81,6,164,190,166,218,36,192,98,74,80,192,150,133,185,192,160,196,151,192,211,138,241,193,20,199,155,193,30,27,169,194,30,241,234,194,197,250,217,195,233,130,182,196,98,108,140,197,185,76,77,197,246,170,113,198,16,206,85,198,70,124,231,199,21,198,3,199,85,110,85,199,192,4,52,199,238,105,254,201,8,173,250,201,55,92,33,201,132,145,170,201,171,1,21,202,20,192,118,202,71,166,237,202,90,80,30,202,123,79,97,202,187,104,110,202,197,92,97,203,23,240,242,203,72,4,52,203,218,117,105,205,85,108,188,205,103,243,180,205,139,105,156,206,73,128,129,206,131,21,107,208,19,207,93,208,165,100,125,208,209,244,95,209,90,90,225,209,104,148,22,209,234,234,206,210,85,214,148,211,47,240,202,211,142,107,111,211,229,179,172,212,0,133,15,212,88,206,32,212,143,13,204,212,147,255,90,212,166,187,95,212,167,82,53,212,252,75,230,212,254,196,217,213,21,222,173,213,57,36,87,213,78,130,247,213,150,119,231,213,180,187,136,215,152,24,124,215,152,89,224,215,254,223,253,216,116,110,193,217,89,86,255,217,138,217,255,218,69,185,178,218,104,112,114,219,20,36,56,219,195,250,244,219,247,98,37,220,74,155,110,221,50,177,185,221,98,227,202,221,132,49,91,222,185,79,167,223,21,35,186,223,77,136,235,223,79,166,12,223,179,156,238,224,25,143,141,224,80,66,167,224,217,11,30,225,149,21,50,226,214,22,66,227,21,32,196,227,183,238,17,228,106,169,19,228,142,13,239,228,145,154,151,229,50,211,241,229,125,178,249,229,137,84,105,229,243,46,119,230,58,218,156,230,71,119,4,230,82,201,5,230,99,178,240,231,28,114,150,231,169,20,32,231,198,185,139,231,246,76,113,232,102,57,148,232,139,12,123,233,95,91,1,233,116,94,191,233,168,143,158,234,97,192,126,234,162,5,2,234,205,190,59,235,198,217,146,236,156,183,226,236,175,246,7,236,255,61,13,237,5,172,200,238,40,98,202,238,85,209,138,238,139,88,175,238,156,121,163,238,254,75,84,239,79,128,25,239,110,160,188,239,181,97,194,240,222,163,61,241,45,91,162,241,100,52,107,241,147,80,46,241,242,69,91,242,81,114,208,242,112,38,63,242,121,41,147,242,231,23,96,242,231,149,26,242,231,162,172,243,130,144,134,244,99,23,123,245,134,194,212,245,220,43,96,246,151,134,93,247,202,203,178,247,207,85,99,248,35,161,109,248,77,244,136,248,145,69,50,248,162,153,145,248,199,98,18,249,25,185,62,249,36,43,13,249,139,19,220,249,142,131,80,250,12,8,186,250,29,71,141,250,141,135,15,251,97,129,212,251,155,133,9,251,164,162,15,251,224,145,55,252,165,59,17,252,243,135,192,253,23,159,122,253,143,254,164,254,141,69,159,254,145,212,146,255,222,12,168,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,20,98,111,100,121,46,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,2,1,41,152,61,78,24,111,118,101,114,102,108,111,119,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,15,98,111,100,121,46,109,111,100,97,108,45,111,112,101,110,2,2,81,123,231,114,127,22,176,209,24,111,118,101,114,102,108,111,119,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,26,100,105,118,91,99,108,97,115,115,61,34,97,112,112,45,99,111,110,116,97,105,110,101,114,34,93,2,1,86,95,75,101,43,102,105,108,116,101,114,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,0,5,4,104,116,109,108,2,46,0,200,68,89,21,172,189,110,27,102,130,230,28,234,3,136,43,132,77,112,46,10,37,63,53,239,122,245,55,83,118,72,61,143,88,155,65,215,162,25,89,216,64,140,91,57,105,197,97,3,148,116,104,56,212,180,121,145,191,65,125,22,59,63,129,187,226,174,133,93,2,27,135,54,174,3,138,224,198,215,139,56,140,205,140,190,103,25,151,230,57,26,158,198,180,50,162,193,165,63,170,46,199,87,175,74,143,118,180,214,39,56,189,228,31,115,191,226,99,191,198,236,35,253,203,93,52,106,206,67,191,83,207,114,240,198,213,198,254,229,218,42,20,132,219,43,227,24,221,181,58,112,222,4,108,102,224,33,80,177,224,35,169,64,225,148,20,206,229,244,167,59,232,237,143,111,233,65,219,112,255,156,155,225,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,4,104,116,109,108,2,2,4,51,252,17,181,217,105,31,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,5,1,42,2,104,2,214,244,237,3,28,179,34,3,86,133,11,6,114,136,187,7,248,34,209,8,129,165,37,8,220,31,26,11,207,159,118,12,239,86,114,13,150,82,180,14,101,187,105,14,108,84,199,16,130,178,238,18,48,69,33,19,131,81,165,21,178,25,59,27,95,86,155,29,131,69,137,30,164,191,17,30,173,82,78,30,248,7,116,31,198,235,139,36,80,170,114,39,209,196,53,44,13,168,173,46,244,202,176,51,47,176,201,51,118,176,188,54,21,35,237,56,143,157,91,60,220,225,5,63,25,15,246,66,223,145,120,66,243,23,99,70,244,190,141,77,44,1,200,79,130,191,241,81,213,211,234,82,42,174,143,84,32,95,63,88,206,243,169,90,238,91,43,92,188,66,171,93,224,113,230,95,80,217,233,101,172,180,79,106,211,223,79,114,171,68,104,120,33,139,141,126,167,161,129,127,239,109,212,129,99,147,89,136,32,82,248,140,138,97,54,144,114,209,196,144,241,105,171,149,138,69,197,149,143,61,160,151,164,170,10,154,166,145,127,157,8,41,79,159,119,250,236,159,124,171,99,161,253,1,67,163,233,152,134,167,37,150,248,167,112,61,173,168,67,123,82,169,172,222,70,172,30,142,69,172,99,190,42,174,222,214,246,176,34,83,109,176,67,142,12,180,75,221,215,181,62,165,162,182,5,129,132,182,215,123,189,186,20,91,46,190,0,254,171,190,170,110,110,192,114,143,95,200,155,109,60,201,171,1,21,203,252,59,125,204,5,247,243,206,124,178,18,206,131,54,197,207,216,139,196,208,238,179,108,216,116,37,43,217,143,122,76,217,163,201,165,220,8,51,157,227,87,141,23,228,57,53,87,229,128,174,152,231,134,6,117,242,48,32,37,242,81,140,25,245,40,89,243,247,119,240,1,249,22,190,60,253,36,70,102,23,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,0,5,1,42,2,5,11,207,159,118,102,98,8,133,192,114,143,95,198,16,206,85,249,121,247,62,22,111,112,97,99,105,116,121,58,32,49,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,24,4,33,87,11,15,200,50,173,18,48,33,240,22,102,191,59,22,244,230,143,24,15,30,116,38,157,169,184,47,252,251,73,54,17,4,250,57,213,190,162,94,161,0,212,95,194,174,230,97,111,131,58,126,26,136,131,131,215,166,5,152,186,58,153,191,191,162,49,198,218,75,81,199,61,109,193,209,65,250,139,209,82,101,87,213,180,187,136,234,157,37,42,254,18,238,120,26,112,111,115,105,116,105,111,110,58,32,117,110,115,101,116,32,33,105,109,112,111,114,116,97,110,116,0,5,4,98,111,100,121,2,6,32,230,117,142,81,156,104,22,155,36,22,25,190,147,247,253,197,215,202,131,224,166,30,95,27,111,118,101,114,102,108,111,119,58,32,115,99,114,111,108,108,32,33,105,109,112,111,114,116,97,110,116,0,5,4,98,111,100,121,2,128,0,0,1,88,0,0,172,144,0,240,149,40,1,189,186,229,3,127,238,110,4,74,93,149,4,191,184,28,4,211,70,19,5,140,23,52,6,10,232,162,6,246,236,191,7,40,111,62,7,236,55,34,8,76,251,196,8,86,212,82,8,220,31,26,9,75,42,243,9,109,46,222,9,167,165,244,10,78,145,86,10,229,226,23,11,31,170,22,11,53,120,21,13,135,226,149,13,214,47,138,15,235,67,169,16,6,127,34,16,68,96,128,16,219,6,163,17,149,186,203,17,171,205,212,19,172,79,15,20,210,155,179,20,233,23,212,21,127,55,96,22,225,138,73,23,39,63,60,23,96,42,93,23,124,98,162,24,97,194,251,24,105,135,61,24,155,236,108,26,173,135,161,27,105,83,31,29,248,224,186,31,62,103,85,31,226,137,61,33,145,79,97,33,147,227,9,34,92,159,74,34,102,98,156,34,125,18,10,34,164,217,85,35,253,99,181,36,44,150,204,36,80,190,85,38,80,33,63,38,157,52,85,38,157,104,207,38,197,13,248,39,110,234,107,40,13,189,81,40,160,57,139,42,11,114,238,44,44,148,35,45,94,94,128,46,0,223,103,46,117,89,18,48,50,228,33,49,214,49,117,50,193,3,80,51,47,176,201,51,118,176,188,51,239,231,92,52,22,9,246,52,39,42,100,52,112,49,133,52,244,83,226,53,223,166,223,54,51,242,254,55,86,205,100,56,5,113,58,57,34,126,39,58,201,54,18,59,6,15,106,62,81,103,83,62,98,35,162,62,207,13,234,64,180,75,113,64,241,146,254,65,148,168,225,66,97,143,7,66,213,91,158,66,223,145,120,67,167,33,167,69,223,1,193,70,236,194,129,70,244,190,141,73,26,242,192,73,178,240,77,75,143,213,69,76,242,194,162,77,65,140,87,80,178,160,96,81,221,227,125,82,155,209,55,83,74,51,11,83,146,197,207,83,215,70,176,83,254,0,96,84,225,243,86,85,192,146,115,86,68,82,72,87,200,247,70,88,206,193,214,89,134,88,127,89,215,159,96,89,226,116,131,89,240,120,220,89,240,146,167,90,160,61,165,90,222,192,102,91,80,194,97,91,148,181,182,92,145,212,209,92,184,154,91,93,123,67,174,94,89,105,107,95,213,49,37,96,248,24,9,97,66,197,170,97,98,108,97,99,175,215,42,100,71,215,91,101,34,217,68,101,63,62,102,106,44,19,122,106,211,223,79,109,49,62,114,111,74,105,39,111,195,203,161,112,0,40,162,112,120,144,181,114,171,68,104,114,182,245,249,115,58,41,212,117,16,84,134,117,52,105,24,118,33,25,1,120,9,172,67,121,61,154,225,121,195,1,229,121,197,122,200,121,213,17,6,122,171,1,91,124,61,220,196,124,226,226,31,125,40,205,2,126,5,249,235,126,23,191,35,127,46,223,14,127,109,233,244,127,181,244,212,127,198,177,82,127,201,124,8,127,219,176,110,129,25,115,121,129,35,168,175,130,25,28,205,130,65,130,92,131,134,9,125,131,181,205,125,132,79,51,32,133,161,250,65,134,153,93,38,135,133,64,22,135,220,174,196,136,32,52,38,136,132,131,48,137,65,7,137,137,255,116,205,139,13,88,129,139,94,71,105,139,95,45,132,140,17,225,5,140,138,97,54,140,228,184,155,141,39,104,22,143,157,226,151,144,159,197,195,144,244,229,15,145,102,180,1,146,88,80,23,146,149,79,23,147,237,107,127,147,244,199,200,148,2,233,226,148,107,239,124,148,220,136,194,149,111,115,137,150,133,192,136,150,173,116,246,150,191,17,246,152,59,11,173,152,202,49,87,153,97,244,71,154,197,97,224,155,47,91,52,155,143,90,73,156,18,39,182,156,219,214,38,157,97,23,76,158,34,82,4,158,107,241,156,159,124,171,99,159,154,195,195,160,18,124,57,161,188,5,65,162,127,244,0,163,110,104,168,164,150,9,185,165,179,224,92,167,237,61,197,168,98,136,192,168,115,57,93,168,207,90,191,168,223,3,118,170,0,42,89,170,33,178,69,170,207,221,200,171,26,82,178,171,27,192,149,171,164,43,52,173,40,170,137,173,128,224,136,173,189,154,44,173,206,31,175,174,21,21,111,174,94,177,182,176,34,83,109,176,67,142,12,180,255,3,88,181,39,62,49,184,116,197,190,185,10,100,128,185,56,19,25,185,101,114,144,186,21,88,153,187,18,226,198,188,230,247,171,189,13,198,197,190,14,113,160,190,81,78,81,190,81,126,9,190,148,39,154,190,148,87,98,190,148,116,1,190,190,181,101,193,165,183,148,195,255,151,31,196,141,197,203,197,8,125,148,197,137,136,240,197,215,255,18,198,151,82,152,198,209,13,149,199,154,133,188,199,201,96,156,200,117,95,197,200,155,109,60,201,4,218,84,201,58,100,60,201,251,87,207,202,76,187,112,202,187,84,56,202,254,247,233,203,171,122,52,204,160,32,94,206,17,82,203,209,50,247,137,209,71,7,226,209,189,210,65,210,1,62,179,211,32,26,173,213,140,152,2,213,213,21,137,214,47,197,181,215,142,227,255,215,180,61,79,216,55,120,88,216,103,60,171,217,181,109,124,218,73,211,30,219,33,1,161,219,43,142,23,219,181,173,4,219,234,26,122,220,136,233,64,220,161,29,64,220,244,135,81,221,65,143,14,222,169,20,255,222,223,19,181,225,109,60,0,225,135,157,214,226,106,183,120,227,122,131,102,227,175,14,130,228,78,122,250,229,128,174,152,229,163,198,99,229,206,64,192,231,90,231,159,231,134,6,117,233,26,40,213,233,57,31,65,233,233,143,130,234,36,93,207,235,114,219,202,236,44,189,59,236,145,237,200,236,164,82,235,240,219,179,226,241,147,125,138,242,13,90,212,242,48,32,37,242,81,140,25,242,231,70,49,244,52,4,127,244,98,185,169,245,40,89,243,245,239,199,68,245,251,61,145,246,229,57,98,247,201,11,11,247,231,49,126,248,56,28,41,249,70,123,166,249,93,78,0,250,251,160,174,251,11,116,119,252,122,25,34,252,212,4,88,252,242,250,38,254,31,120,145,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,11,35,71,68,80,82,45,109,111,100,97,108,2,1,190,81,78,81,16,1,47,35,95,95,116,101,97,108,105,117,109,71,68,80,82,101,99,77,111,100,97,108,32,62,32,35,112,114,105,118,97,99,121,45,108,97,121,101,114,95,95,119,114,97,112,112,101,114,2,2,47,105,88,193,229,243,46,119,16,1,6,35,99,111,76,97,98,2,2,138,54,31,3,224,25,143,141,16,1,8,35,99,111,110,115,101,110,116,2,1,153,97,244,71,16,1,17,35,99,111,110,115,101,110,116,95,95,111,118,101,114,108,97,121,2,1,153,97,244,71,16,1,31,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,108,105,103,104,116,98,111,120,45,111,118,101,114,108,97,121,2,1,165,179,224,92,16,1,18,35,99,111,111,107,105,101,66,97,110,110,101,114,77,111,100,97,108,2,1,44,44,148,35,16,1,16,35,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,2,1,249,93,78,0,16,1,8,35,99,111,111,107,105,101,115,2,1,55,86,205,100,16,1,12,35,99,111,111,107,105,101,115,45,100,108,103,2,6,104,56,212,180,133,93,2,27,158,198,180,50,170,46,199,87,218,42,20,132,219,43,227,24,16,1,26,35,99,111,114,110,101,108,115,101,110,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,2,1,121,145,191,65,16,1,12,35,100,105,97,108,111,103,45,114,111,100,111,2,1,36,80,190,85,8,1,19,46,122,45,53,48,46,98,103,45,111,112,97,99,105,116,121,45,53,48,2,1,90,238,91,43,16,1,16,35,100,105,115,99,108,97,105,109,101,114,77,111,100,97,108,2,1,11,53,120,21,16,1,15,35,111,118,101,114,108,97,121,45,45,109,111,100,97,108,2,8,47,252,251,73,54,17,4,250,131,215,166,5,152,186,58,153,198,218,75,81,199,61,109,193,209,65,250,139,234,157,37,42,16,1,5,35,114,111,100,111,2,1,252,212,4,88,16,1,15,35,115,116,97,116,105,99,66,97,99,107,100,114,111,112,2,1,219,33,1,161,16,1,31,35,115,116,97,116,105,99,66,97,99,107,100,114,111,112,67,111,111,107,105,101,98,111,116,76,111,97,100,105,110,103,2,1,219,33,1,161,0,1,25,98,111,100,121,32,62,32,100,105,118,32,62,32,46,99,115,115,45,49,100,98,106,99,52,110,2,1,112,120,144,181,16,1,11,35,116,101,114,109,115,80,111,112,117,112,2,1,40,13,189,81,16,1,12,35,117,99,109,45,119,114,97,112,112,101,114,2,1,192,160,196,151,16,1,3,35,120,107,2,1,88,206,193,214,8,1,15,46,67,111,111,107,105,101,66,97,114,79,117,116,101,114,2,2,148,2,233,226,174,21,21,111,8,1,12,46,67,111,111,107,105,101,77,111,100,97,108,2,1,22,225,138,73,8,1,20,46,72,67,111,111,107,105,101,66,97,114,45,72,111,118,101,114,108,97,121,2,1,23,96,42,93,8,1,15,46,77,117,105,68,105,97,108,111,103,45,114,111,111,116,2,1,35,253,99,181,8,1,6,46,80,111,112,117,112,2,1,85,192,146,115,0,1,41,100,105,118,91,99,108,97,115,115,42,61,34,82,101,97,99,116,77,111,100,97,108,95,95,79,118,101,114,108,97,121,45,45,99,111,111,107,105,101,34,93,2,1,127,219,176,110,8,1,17,46,97,103,95,99,111,111,107,105,101,95,98,97,110,110,101,114,2,1,78,95,243,228,8,1,17,46,97,103,114,101,101,109,101,110,116,77,101,115,115,97,103,101,2,1,162,193,165,63,8,1,17,46,97,103,114,101,101,109,101,110,116,79,118,101,114,108,97,121,2,1,162,193,165,63,8,1,19,46,97,110,119,98,114,45,99,111,111,107,105,101,45,108,97,121,101,114,2,1,190,148,87,98,8,1,8,46,98,45,109,111,100,97,108,2,1,52,244,83,226,8,1,16,46,98,45,109,111,100,97,108,95,111,118,101,114,108,97,121,2,1,52,244,83,226,8,1,9,46,98,97,99,107,100,114,111,112,2,1,235,114,219,202,8,1,8,46,98,108,111,99,107,101,114,2,1,137,255,116,205,8,1,11,46,98,108,117,114,45,109,111,100,97,108,2,1,117,16,84,134,8,1,13,46,98,111,100,121,45,111,118,101,114,108,97,121,2,1,55,83,118,72,8,1,19,46,99,45,109,111,100,97,108,95,95,99,111,110,116,97,105,110,101,114,2,1,236,164,82,235,8,1,17,46,99,45,115,103,45,45,100,105,115,99,108,97,105,109,101,114,2,1,129,35,168,175,8,1,15,46,99,45,115,105,116,101,45,111,118,101,114,108,97,121,2,1,129,35,168,175,8,1,22,46,99,99,45,102,108,111,97,116,105,110,103,46,99,99,45,119,105,110,100,111,119,2,1,110,155,36,8,8,1,18,46,99,99,45,119,105,110,100,111,119,45,98,108,111,99,107,101,114,2,1,110,155,36,8,8,1,14,46,99,108,98,45,99,111,110,116,97,105,110,101,114,2,1,190,81,126,9,8,1,19,46,99,111,110,115,101,110,116,45,98,111,120,45,104,111,108,100,101,114,2,1,86,95,75,101,8,1,19,46,99,111,110,115,101,110,116,45,109,111,100,97,108,45,109,97,105,110,2,1,202,187,84,56,8,1,15,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,18,48,33,240,8,1,26,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,109,111,100,97,108,45,108,97,121,101,114,2,1,249,70,123,166,8,1,26,46,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,95,99,111,110,116,97,105,110,101,114,2,2,85,226,105,25,157,98,186,107,8,1,22,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,119,114,97,112,112,101,114,2,1,204,160,32,94,8,1,15,46,100,105,97,108,111,103,45,111,118,101,114,108,97,121,2,1,92,184,154,91,8,1,7,46,107,101,122,81,98,89,2,1,34,102,98,156,8,1,19,46,100,110,98,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,2,1,213,198,254,229,8,1,17,46,102,97,110,99,121,98,111,120,45,105,115,45,111,112,101,110,2,1,33,147,227,9,8,1,23,46,102,97,110,99,121,98,111,120,45,111,118,101,114,108,97,121,45,102,105,120,101,100,2,1,56,5,113,58,8,1,16,46,102,99,45,99,111,110,115,101,110,116,45,114,111,111,116,2,1,38,157,104,207,8,1,20,46,103,108,105,103,104,116,98,111,120,45,99,111,110,116,97,105,110,101,114,2,1,27,102,130,230,8,1,7,46,106,79,83,87,90,97,2,1,142,51,144,174,8,1,23,46,106,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,32,62,32,100,105,118,2,1,34,92,159,74,8,1,18,46,106,115,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,7,7,142,190,184,106,200,204,131,156,172,32,174,177,255,9,102,187,115,160,68,197,156,210,37,208,210,15,28,8,1,7,46,106,115,115,49,53,49,2,1,163,110,104,168,8,1,7,46,106,115,115,49,53,54,2,1,163,110,104,168,8,1,16,46,106,115,95,109,111,100,97,108,95,99,111,111,107,105,101,2,1,29,171,122,164,8,1,13,46,109,101,110,117,45,119,114,97,112,112,101,114,2,2,176,34,83,109,176,67,142,12,8,1,10,46,109,102,112,45,114,101,97,100,121,2,4,138,224,198,215,144,14,34,87,189,228,31,115,221,181,58,112,8,1,6,46,109,111,100,97,108,2,4,45,94,94,128,117,16,84,134,180,255,3,88,193,165,183,148,8,1,15,46,109,111,100,97,108,45,45,99,111,110,115,101,110,116,2,1,11,31,170,22,8,1,11,46,109,111,100,97,108,45,98,97,99,107,2,2,62,98,35,162,95,213,49,37,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,58,0,200,68,89,9,104,15,90,11,31,170,22,11,53,120,21,16,219,6,163,20,233,23,212,21,172,189,110,22,225,138,73,28,234,3,136,29,171,122,164,31,226,137,61,36,80,190,85,44,44,148,35,45,94,94,128,69,223,1,193,81,123,231,114,84,225,243,86,96,248,24,9,97,66,197,170,97,98,108,97,111,195,203,161,120,9,172,67,121,195,1,229,127,22,176,209,127,201,124,8,129,187,226,174,135,133,64,22,139,56,140,205,140,190,103,25,146,88,80,23,146,149,79,23,155,143,90,73,163,200,215,195,170,33,178,69,171,61,145,217,175,74,143,118,180,255,3,88,181,39,62,49,186,21,88,153,190,14,113,160,190,81,78,81,190,190,181,101,193,165,183,148,199,201,96,156,200,117,95,197,204,160,32,94,209,71,7,226,219,33,1,161,220,161,29,64,228,78,122,250,228,83,70,6,233,65,219,112,236,233,156,2,240,219,179,226,247,201,11,11,248,56,28,41,249,93,78,0,252,212,4,88,8,1,36,46,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,1,167,237,61,197,8,1,17,46,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,2,1,224,33,80,177,8,1,13,46,109,111,100,97,108,45,100,105,97,108,111,103,2,1,171,61,145,217,8,1,14,46,109,111,100,97,108,45,111,118,101,114,108,97,121,2,2,231,90,231,159,242,13,90,212,8,1,16,46,111,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,170,0,42,89,8,1,25,46,111,97,120,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,111,100,97,108,2,2,155,47,91,52,201,58,100,60,8,1,5,46,111,98,99,99,2,1,203,93,52,106,8,1,10,46,112,111,112,95,117,112,95,98,103,2,1,67,167,33,167,8,1,26,46,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,45,45,98,97,99,107,100,114,111,112,2,2,4,74,93,149,245,239,199,68,8,1,23,46,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,45,45,109,111,100,97,108,2,2,4,74,93,149,245,239,199,68,8,1,18,46,113,99,45,99,109,112,50,45,99,111,110,116,97,105,110,101,114,2,1,94,94,39,148,8,1,16,46,114,101,118,101,97,108,45,109,111,100,97,108,45,98,103,2,1,222,169,20,255,8,1,15,46,114,101,118,101,97,108,45,111,118,101,114,108,97,121,2,2,177,82,23,173,248,145,69,50,8,1,19,46,115,104,111,119,46,109,111,100,97,108,45,99,111,111,107,105,101,115,2,1,155,143,90,73,8,1,19,46,115,116,121,108,101,115,95,115,104,111,119,95,95,49,78,113,100,90,2,1,109,49,62,114,8,1,19,46,116,114,117,115,116,101,95,98,111,120,95,111,118,101,114,108,97,121,2,1,100,197,92,0,8,1,15,46,116,114,117,115,116,101,95,111,118,101,114,108,97,121,2,1,100,197,92,0,8,1,18,46,117,105,45,119,105,100,103,101,116,45,111,118,101,114,108,97,121,2,3,33,223,13,193,126,61,4,129,232,237,143,111,8,1,23,46,118,107,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,199,160,250,208,8,1,13,46,119,114,97,112,95,95,99,111,111,107,105,101,2,2,182,5,129,132,190,0,254,171,8,1,19,46,119,114,97,112,95,99,111,111,107,105,101,115,95,112,111,112,117,112,2,2,111,74,105,39,236,145,237,200,8,1,18,46,119,116,45,99,108,105,45,99,111,111,107,105,101,45,98,97,114,2,1,234,51,41,10,0,1,23,91,99,108,97,115,115,61,34,109,111,100,97,108,45,99,111,111,99,107,105,101,34,93,2,1,118,27,7,221,0,1,20,91,105,100,61,34,99,111,111,99,107,105,101,45,109,111,100,97,108,34,93,2,1,118,27,7,221,0,1,26,91,105,100,61,34,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,34,93,2,1,73,26,242,192,0,1,58,100,105,118,91,99,108,97,115,115,42,61,34,72,97,108,117,97,109,109,101,80,97,108,118,101,108,108,97,83,105,110,117,97,80,97,114,101,109,109,105,110,95,95,67,111,110,115,101,110,116,68,105,97,108,111,103,34,93,2,1,99,175,215,42,0,1,23,100,105,118,91,99,108,97,115,115,94,61,34,111,118,101,114,108,97,121,45,45,34,93,2,1,126,23,191,35,0,1,32,100,105,118,91,105,100,94,61,34,103,101,110,101,114,97,108,45,99,111,111,107,105,101,115,45,109,111,100,97,108,34,93,2,1,224,166,30,95,0,1,12,116,104,111,114,45,99,111,111,107,105,101,115,2,1,126,5,249,235,2,1,48,97,101,108,100,44,32,68,79,77,67,111,110,116,101,110,116,76,111,97,100,101,100,44,32,106,115,45,114,101,118,111,107,101,45,99,111,111,107,105,101,45,109,97,110,97,103,101,114,2,1,137,49,223,53,2,1,25,97,101,108,100,44,32,108,111,97,100,44,32,99,111,110,115,101,110,116,68,105,97,108,111,103,2,1,19,230,179,52,0,1,66,100,105,118,32,62,32,100,105,118,91,97,114,105,97,45,108,105,118,101,61,34,112,111,108,105,116,101,34,93,58,110,111,116,40,91,100,97,116,97,45,116,101,115,116,105,100,61,34,116,111,112,45,114,101,115,117,108,116,45,99,97,114,100,34,93,41,2,1,227,62,88,242,2,1,30,97,111,112,114,44,32,95,95,99,109,112,71,100,112,114,65,112,112,108,105,101,115,71,108,111,98,97,108,108,121,2,33,30,67,223,94,37,97,173,151,38,157,26,110,49,61,108,199,50,123,116,50,59,218,238,57,66,30,181,76,112,17,57,88,126,244,226,255,128,159,5,116,130,219,24,149,135,38,58,92,146,149,79,23,155,91,242,185,158,44,66,120,159,31,188,33,165,3,3,116,170,8,46,191,189,28,99,169,193,188,215,25,194,197,249,1,198,7,153,105,199,144,234,161,212,37,95,71,215,107,140,12,227,247,27,102,231,225,197,55,236,70,232,70,239,168,34,3,239,225,194,153,248,56,106,26,248,134,13,179,249,134,71,105,2,1,25,97,111,112,114,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,46,80,111,112,117,112,2,1,1,77,120,9,2,1,15,97,111,112,114,44,32,99,111,111,107,105,101,109,97,110,2,1,236,233,156,2,2,1,59,97,101,108,100,44,32,108,111,97,100,44,32,102,117,110,99,116,105,111,110,40,41,123,105,102,40,115,46,114,101,97,100,121,83,116,97,116,101,61,61,88,77,76,72,116,116,112,82,101,113,117,101,115,116,46,68,79,78,69,2,1,203,215,58,9,2,1,36,115,101,116,44,32,99,105,99,99,46,99,111,111,107,105,101,95,99,97,116,95,115,116,97,116,105,115,116,105,99,44,32,116,114,117,101,2,4,8,133,149,37,40,97,160,198,130,117,230,227,231,18,32,223,2,1,39,115,101,116,44,32,99,111,110,102,105,103,46,114,101,113,117,105,114,101,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,201,104,184,156,2,1,43,115,101,116,44,32,119,105,110,100,111,119,46,99,111,110,115,101,110,116,77,97,110,97,103,101,109,101,110,116,69,110,97,98,108,101,100,44,32,102,97,108,115,101,2,17,1,43,18,68,16,16,120,228,21,223,86,168,44,162,167,255,67,171,87,252,70,219,126,52,89,112,48,183,98,82,12,42,135,64,243,129,161,120,190,85,166,200,62,18,174,11,34,112,204,227,206,220,212,220,214,241,213,86,167,138,231,111,155,185,240,194,24,232,16,1,20,35,99,97,116,97,112,117,108,116,45,99,111,111,107,105,101,45,98,97,114,2,1,59,221,128,81,8,1,9,46,98,111,120,45,114,111,100,111,2,1,192,8,236,55,8,1,17,46,103,100,112,114,45,112,114,105,118,97,99,121,45,98,97,114,2,1,142,3,234,202,8,1,14,46,112,111,112,117,112,45,100,105,115,112,108,97,121,2,1,146,14,147,93,16,1,14,35,98,97,110,110,101,114,45,99,111,111,107,105,101,2,1,38,156,51,231,16,1,12,35,103,100,112,114,45,98,97,110,110,101,114,2,10,6,209,168,227,27,104,84,115,28,65,247,44,34,191,192,107,97,1,39,158,129,178,163,70,133,156,250,114,139,117,210,208,143,109,219,248,148,192,203,215,16,1,17,35,99,111,111,107,105,101,115,100,105,114,101,99,116,105,118,101,2,1,163,120,251,157,16,1,19,35,99,111,111,107,105,101,80,111,108,105,99,121,45,108,97,121,101,114,2,1,97,202,195,213,16,1,13,35,99,111,111,107,105,101,112,111,108,105,99,121,2,1,203,217,65,204,8,1,14,46,99,111,111,107,105,101,67,111,110,116,114,111,108,2,1,248,4,193,235,8,1,11,46,99,111,111,107,105,101,115,108,97,119,2,1,51,238,191,225,8,1,21,46,111,118,101,114,108,97,121,99,111,111,107,105,101,99,111,110,115,101,110,116,2,1,218,104,112,114,16,1,21,35,95,95,116,101,97,108,105,117,109,71,68,80,82,101,99,77,111,100,97,108,2,1,218,104,112,114,8,1,15,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,124,92,186,137,8,1,17,46,111,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,194,197,252,190,8,1,19,46,98,45,99,111,111,107,105,101,115,45,105,110,102,111,114,109,101,114,2,1,250,115,198,222,16,1,11,35,99,111,111,107,105,101,45,98,97,114,2,2,8,197,51,105,112,143,26,82,16,1,13,35,99,99,111,110,115,101,110,116,45,98,97,114,2,1,181,123,244,216,16,1,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,186,157,100,77,16,1,31,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,46,109,111,100,97,108,2,1,81,123,231,114,16,1,20,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,2,6,27,115,44,183,60,46,36,25,77,94,139,125,78,135,186,102,202,49,177,1,248,163,163,223,16,1,20,35,111,110,101,116,114,117,115,116,45,98,97,110,110,101,114,45,115,100,107,2,23,3,131,191,81,3,221,144,204,10,39,208,120,30,8,65,190,30,252,193,249,38,157,25,55,46,125,136,231,55,51,184,46,58,215,76,247,59,188,44,87,63,84,191,49,98,246,214,107,102,178,157,41,106,205,253,198,108,84,170,0,118,38,40,116,125,136,238,242,148,188,24,235,162,242,224,168,166,108,78,5,180,123,25,38,236,121,108,144,246,79,43,52,16,1,21,35,111,110,101,116,114,117,115,116,45,99,111,110,115,101,110,116,45,115,100,107,2,24,3,131,191,81,3,221,144,204,10,39,208,120,30,8,65,190,30,252,193,249,38,156,254,70,38,157,25,55,46,125,136,231,55,51,184,46,58,215,76,247,59,188,44,87,63,84,191,49,98,246,214,107,102,178,157,41,106,205,253,198,108,84,170,0,118,38,40,116,125,136,238,242,148,188,24,235,162,242,224,168,166,108,78,5,180,123,25,38,236,121,108,144,246,79,43,52,16,1,14,35,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,201,4,218,84,16,1,22,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,111,118,101,114,108,97,121,2,1,201,4,218,84,16,1,20,35,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,2,1,3,45,91,14,16,1,11,35,99,111,111,107,105,101,45,112,111,112,2,7,38,156,51,231,40,72,181,123,47,189,172,246,60,113,60,225,91,54,106,33,122,175,35,218,143,249,46,115,8,1,14,46,99,111,111,107,105,101,99,111,110,115,101,110,116,2,1,139,179,230,231,16,1,15,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,2,1,190,29,96,229,16,1,13,35,99,111,111,107,105,101,66,97,110,110,101,114,2,1,182,60,166,240,16,1,14,35,99,111,111,107,105,101,115,95,109,111,100,97,108,2,1,127,22,176,209,16,1,14,35,101,117,45,99,111,111,107,105,101,45,108,97,119,2,1,87,206,56,155,8,1,8,46,99,111,110,115,101,110,116,2,1,41,152,61,78,8,1,14,46,99,111,111,107,105,101,77,101,115,115,97,103,101,2,1,227,239,160,232,8,1,21,46,99,111,111,107,105,101,45,114,101,118,111,107,101,45,104,105,100,100,101,110,2,1,32,51,62,83,8,1,14,46,99,111,111,107,105,101,87,97,114,110,105,110,103,2,1,203,99,211,129,8,1,16,46,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,2,1,236,121,108,144,8,1,16,46,99,111,111,107,105,101,115,79,118,101,114,108,97,121,50,2,1,74,41,218,104,8,1,19,46,99,111,111,107,105,101,115,79,118,101,114,108,97,121,50,66,111,120,2,3,3,158,31,168,6,253,13,56,91,17,129,193,8,1,15,46,110,111,116,105,99,101,45,45,99,111,111,107,105,101,2,4,41,73,147,229,129,88,250,172,191,93,59,107,198,82,9,104,8,1,17,46,112,101,97,95,99,111,111,107,95,119,114,97,112,112,101,114,2,1,80,27,228,170,8,1,20,46,112,101,110,99,105,45,119,114,97,112,45,103,112,114,100,45,108,97,119,2,1,211,34,134,255,8,1,28,46,119,105,100,103,101,116,95,101,117,95,99,111,111,107,105,101,95,108,97,119,95,119,105,100,103,101,116,2,1,62,169,172,34,8,1,29,46,112,117,109,91,100,97,116,97,45,112,111,112,109,97,107,101,42,61,34,99,111,111,107,105,101,115,34,93,2,1,255,156,155,225,8,1,22,46,115,105,116,101,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,115,2,1,210,74,245,15,0,1,23,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,97,110,110,101,114,34,93,2,1,137,40,28,26,0,1,24,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,77,101,115,115,97,103,101,34,93,2,1,176,219,62,84,0,1,24,91,99,108,97,115,115,94,61,34,103,112,100,114,45,98,97,110,110,101,114,95,95,34,93,2,1,128,104,10,85,0,1,35,91,99,108,97,115,115,94,61,34,119,105,116,104,71,68,80,82,66,97,110,110,101,114,95,95,87,114,97,112,112,101,114,45,34,93,2,1,168,207,90,191,8,1,34,46,108,97,121,111,117,116,32,62,32,46,114,101,97,99,116,45,99,111,111,107,105,101,45,108,97,119,45,100,105,97,108,111,103,2,1,4,204,247,91,2,1,34,114,97,44,32,105,110,101,114,116,44,32,35,109,97,105,110,67,111,110,116,101,110,116,66,108,111,99,107,44,32,115,116,97,121,2,1,253,23,159,122,2,1,37,114,99,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,6,8,166,89,105,41,55,173,186,92,72,28,191,92,190,194,173,98,12,245,217,116,61,95,31,2,1,37,114,99,44,32,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,6,34,200,35,30,119,83,25,30,176,82,22,166,207,150,190,215,211,254,200,178,241,125,153,222,2,1,33,114,99,44,32,99,111,111,107,105,101,98,97,110,110,101,114,45,98,111,100,121,44,32,98,111,100,121,44,32,115,116,97,121,2,1,168,77,10,40,2,1,36,114,99,44,32,99,111,111,107,105,101,45,110,111,116,105,99,101,45,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,1,138,244,232,208,2,1,30,114,99,44,32,99,111,111,107,105,101,45,111,118,101,114,108,97,121,44,32,98,111,100,121,44,32,115,116,97,121,2,1,188,226,178,199,2,1,31,114,99,44,32,105,118,97,115,115,45,110,111,45,99,111,111,107,105,101,44,32,98,111,100,121,44,32,115,116,97,121,2,1,6,246,236,114,2,1,36,114,99,44,32,99,111,111,107,105,101,45,112,111,112,117,112,45,118,105,115,105,98,108,101,44,32,98,111,100,121,44,32,115,116,97,121,2,3,98,7,16,24,132,148,56,61,181,15,224,210,2,1,36,114,99,44,32,105,100,103,99,112,95,95,108,97,121,101,114,45,45,97,99,116,105,118,101,44,32,104,116,109,108,44,32,115,116,97,121,2,1,244,98,182,189,2,1,37,114,99,44,32,99,99,45,115,99,114,111,108,108,105,110,103,45,100,105,115,97,98,108,101,100,44,32,98,111,100,121,44,32,115,116,97,121,2,1,10,93,188,81,2,1,26,114,99,44,32,109,111,100,97,108,45,111,112,101,110,44,32,98,111,100,121,44,32,115,116,97,121,2,1,35,79,185,247,2,1,24,114,99,44,32,104,97,115,80,111,112,117,112,44,32,98,111,100,121,44,32,115,116,97,121,2,1,104,240,165,97,2,1,23,114,99,44,32,32,100,97,114,107,101,114,44,32,98,111,100,121,44,32,115,116,97,121,2,1,106,160,124,136,2,1,38,114,99,44,32,115,99,111,109,109,101,114,99,101,45,103,100,112,114,45,100,105,115,97,98,108,101,100,44,32,100,105,118,44,32,115,116,97,121,2,10,28,157,210,17,38,7,225,217,59,243,218,163,72,29,137,128,91,136,192,158,103,89,83,131,104,47,87,86,160,167,221,198,173,53,216,127,231,119,235,218,2,1,25,114,99,44,32,110,111,45,115,99,114,111,108,108,44,32,104,116,109,108,44,32,115,116,97,121,2,2,127,46,26,245,144,126,140,227,2,1,40,114,99,44,32,99,111,109,112,101,110,115,97,116,101,45,102,111,114,45,115,99,114,111,108,108,98,97,114,44,32,98,111,100,121,44,32,115,116,97,121,2,1,40,195,183,68,2,1,26,114,99,44,32,103,100,112,114,45,115,104,111,119,110,44,32,98,111,100,121,44,32,115,116,97,121,2,1,53,158,126,102,2,1,38,114,99,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,119,114,97,112,112,101,114,44,32,100,105,118,44,32,115,116,97,121,2,1,127,55,72,245,2,1,31,114,99,44,32,99,111,111,107,105,101,115,45,114,101,113,117,101,115,116,44,32,98,111,100,121,44,32,115,116,97,121,2,1,9,45,185,123,2,1,29,114,99,44,32,99,120,45,109,111,100,97,108,45,111,112,101,110,44,32,104,116,109,108,44,32,115,116,97,121,2,6,4,77,65,11,17,235,217,116,24,68,206,155,38,184,109,69,80,208,138,143,245,252,146,34,2,1,28,114,99,44,32,99,120,45,110,111,45,115,99,114,111,108,108,44,32,104,116,109,108,44,32,115,116,97,121,2,6,4,77,65,11,17,235,217,116,24,68,206,155,38,184,109,69,80,208,138,143,245,252,146,34,2,1,33,114,99,44,32,101,45,99,111,111,107,105,101,45,98,97,114,45,111,112,101,110,44,32,98,111,100,121,44,32,115,116,97,121,2,2,127,46,26,245,144,126,140,227,2,1,31,114,99,44,32,99,111,111,107,105,101,115,45,110,111,116,45,115,101,116,44,32,98,111,100,121,44,32,115,116,97,121,2,1,253,171,236,155,2,1,36,114,101,109,111,118,101,45,99,108,97,115,115,44,32,110,111,45,99,111,110,115,101,110,116,44,32,104,116,109,108,44,32,115,116,97,121,2,4,7,85,101,58,54,107,46,228,241,99,75,203,241,225,79,83,2,1,36,114,99,44,32,105,115,45,98,108,117,114,114,101,100,45,99,111,111,107,105,101,98,111,120,44,32,104,116,109,108,44,32,115,116,97,121,2,1,234,53,123,9,2,1,44,114,99,44,32,99,99,112,97,67,111,111,107,105,101,66,97,110,110,101,114,45,97,99,99,101,112,116,101,100,65,108,108,44,32,98,111,100,121,44,32,115,116,97,121,2,1,197,19,55,149,2,1,37,114,99,44,32,99,111,111,107,105,101,115,45,115,104,111,119,44,32,46,99,111,111,107,105,101,115,45,115,104,111,119,44,32,115,116,97,121,2,1,235,20,229,38,2,1,34,114,99,44,32,100,105,115,97,98,108,101,45,98,97,99,107,103,114,111,117,110,100,44,32,98,111,100,121,44,32,115,116,97,121,2,1,38,157,26,145,2,1,31,114,99,44,32,99,111,111,107,105,101,45,45,110,111,116,45,115,101,116,44,32,98,111,100,121,44,32,115,116,97,121,2,2,59,239,88,179,138,203,72,117,2,1,29,114,99,44,32,95,99,111,111,107,105,101,98,97,110,110,101,114,44,32,98,111,100,121,44,32,115,116,97,121,2,1,70,236,194,129,2,1,26,114,99,44,32,97,115,121,110,99,45,104,105,100,101,44,32,104,116,109,108,44,32,115,116,97,121,2,2,55,238,125,91,226,127,216,15,2,1,34,114,99,44,32,110,116,100,45,103,100,112,114,45,110,111,45,115,99,114,111,108,108,44,32,98,111,100,121,44,32,115,116,97,121,2,1,211,56,229,86,2,1,31,114,99,44,32,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,44,32,100,105,118,44,32,115,116,97,121,2,1,165,162,39,73,2,1,29,114,99,44,32,112,101,102,45,110,111,45,99,111,111,107,105,101,44,32,98,111,100,121,44,32,115,116,97,121,2,1,28,3,84,35,2,1,35,114,99,44,32,99,111,111,107,105,101,45,110,111,116,45,97,99,99,101,112,116,101,100,44,32,98,111,100,121,44,32,115,116,97,121,2,2,108,166,242,75,127,183,49,40,2,1,37,114,99,44,32,99,45,98,111,100,121,45,45,108,111,99,107,101,100,45,97,108,119,97,121,115,44,32,98,111,100,121,44,32,115,116,97,121,2,2,54,142,180,243,146,57,250,59,2,1,28,114,99,44,32,103,108,111,98,97,108,45,99,111,111,107,105,101,44,32,100,105,118,44,32,115,116,97,121,2,1,50,167,16,164,2,1,26,114,99,44,32,100,105,115,97,98,108,101,45,115,99,114,111,108,108,44,32,44,32,115,116,97,121,2,1,50,167,16,164,2,1,22,114,99,44,32,98,103,45,103,114,97,121,44,32,100,105,118,44,32,115,116,97,121,2,1,182,175,155,202,2,1,29,114,99,44,32,99,111,111,107,105,101,45,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,1,4,204,247,91,2,1,28,114,99,44,32,32,99,99,109,45,98,108,111,99,107,101,100,44,32,104,116,109,108,44,32,115,116,97,121,2,1,58,158,226,187,2,1,28,114,99,44,32,32,99,99,109,45,98,108,111,99,107,101,100,44,32,98,111,100,121,44,32,115,116,97,121,2,1,58,158,226,187,2,1,40,114,99,44,32,105,115,45,109,111,100,97,108,45,99,111,111,107,105,101,115,45,118,105,115,105,98,108,101,44,32,98,111,100,121,44,32,115,116,97,121,2,1,112,181,79,56,2,1,22,114,99,44,32,108,97,121,101,114,65,99,116,105,118,101,44,32,44,115,116,97,121,2,1,225,45,100,249,2,1,30,114,99,44,32,99,111,111,107,105,101,98,97,114,45,111,112,101,110,44,32,98,111,100,121,44,32,115,116,97,121,2,1,219,160,117,210,2,1,20,114,99,44,32,98,108,117,114,44,32,98,111,100,121,44,32,115,116,97,121,2,1,206,58,183,214,2,1,18,114,99,44,32,99,111,111,107,105,101,44,32,44,32,115,116,97,121,2,1,127,62,3,184,2,1,36,114,99,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,45,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,20,8,9,80,33,28,59,130,21,28,188,191,49,41,86,181,223,91,33,88,28,92,134,236,39,97,245,158,55,104,75,86,155,116,39,5,131,124,31,40,210,124,84,209,179,178,70,187,108,179,147,242,46,183,167,230,84,183,167,230,84,203,169,40,66,220,187,14,232,221,44,245,8,250,183,232,46,250,204,10,212,2,1,21,114,99,44,32,99,111,111,107,105,101,77,115,103,44,32,44,32,115,116,97,121,2,1,48,17,121,161,2,1,33,114,99,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,95,97,108,101,114,116,44,32,44,32,115,116,97,121,2,1,159,151,227,105,2,1,44,114,99,44,32,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,101,110,116,101,114,45,108,111,97,100,101,100,44,32,44,32,115,116,97,121,2,2,191,224,193,39,211,5,243,160,2,1,26,114,99,44,32,104,97,115,45,111,112,101,110,45,99,111,111,107,105,101,44,32,44,115,116,97,121,2,1,190,147,253,254,2,1,28,114,99,44,32,111,109,95,99,111,111,107,105,101,95,97,99,116,105,118,101,44,32,44,32,115,116,97,121,2,2,27,79,18,37,242,231,152,149,2,1,34,114,99,44,32,116,118,112,45,99,111,111,107,105,101,45,115,99,114,111,108,108,45,108,111,99,107,44,32,44,32,115,116,97,121,2,1,190,81,52,51,2,1,26,114,99,44,32,99,111,111,107,105,101,45,111,118,101,114,108,97,121,44,32,44,32,115,116,97,121,2,1,168,67,123,82,2,1,22,114,99,44,32,100,105,115,97,98,108,101,44,32,100,105,118,44,32,115,116,97,121,2,13,20,199,37,231,28,240,135,192,36,102,1,206,60,163,25,33,104,192,0,157,132,227,226,90,165,5,41,247,187,39,107,231,210,242,63,238,216,125,198,130,233,201,154,143,239,207,250,70,255,44,24,239,2,1,26,114,99,44,32,112,114,101,118,101,110,116,45,115,99,114,111,108,108,44,32,44,32,115,116,97,121,2,1,129,201,159,168,2,1,15,114,99,44,32,102,111,103,44,32,44,32,115,116,97,121,2,1,255,61,83,73,2,1,23,114,99,44,32,99,111,111,107,105,101,45,104,105,110,116,44,32,44,32,115,116,97,121,2,1,147,56,188,58,2,1,34,114,99,44,32,100,112,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,98,111,100,121,44,32,115,116,97,121,2,14,19,94,184,191,27,114,208,165,32,197,219,132,111,96,41,203,113,191,202,83,127,227,95,54,190,81,80,51,209,72,213,166,219,114,226,112,236,171,72,242,237,58,220,208,248,132,94,197,251,53,95,72,254,227,109,164,2,1,35,114,99,44,32,98,111,100,121,45,111,118,101,114,108,97,121,45,115,99,114,111,108,108,97,98,108,101,44,32,44,32,115,116,97,121,2,3,6,194,172,97,177,197,55,217,207,233,167,40,2,1,22,114,99,44,32,109,111,100,97,108,45,111,112,101,110,44,32,44,32,115,116,97,121,2,3,6,194,172,97,177,197,55,217,207,233,167,40,2,1,25,114,99,44,32,110,111,45,115,99,114,111,108,108,44,32,98,111,100,121,44,32,115,116,97,121,2,5,93,253,251,72,202,187,22,244,203,215,79,170,210,85,176,98,244,99,2,139,2,1,31,114,99,44,32,115,104,111,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,44,32,115,116,97,121,2,1,248,112,19,151,2,1,31,114,99,44,32,105,115,45,97,99,116,105,118,101,45,99,111,111,107,105,101,98,97,114,44,32,44,32,115,116,97,121,2,4,40,126,169,205,115,232,228,100,116,94,84,130,255,33,205,135,2,1,47,114,101,109,111,118,101,45,99,108,97,115,115,44,32,104,97,115,45,98,97,110,110,101,114,44,32,98,111,100,121,46,104,97,115,45,98,97,110,110,101,114,44,32,115,116,97,121,2,1,31,56,204,42,2,1,25,114,99,44,32,112,111,105,110,116,101,114,101,118,101,110,116,115,44,32,44,32,115,116,97,121,2,1,59,91,47,186,2,1,34,114,99,44,32,99,111,111,107,105,101,45,97,99,99,101,112,116,45,114,101,113,117,105,114,101,100,44,32,44,32,115,116,97,121,2,1,234,83,77,11,2,1,23,114,99,44,32,99,111,111,107,105,101,45,111,112,101,110,44,32,44,32,115,116,97,121,2,2,78,206,231,101,127,44,138,79,2,1,30,114,99,44,32,99,111,111,107,105,101,80,111,112,117,112,86,105,115,105,98,108,101,44,32,44,32,115,116,97,121,2,1,121,77,49,115,2,1,30,114,99,44,32,117,110,114,101,97,100,97,98,108,101,45,100,105,115,112,108,97,121,44,32,44,32,115,116,97,121,2,39,7,57,23,230,8,76,240,142,8,203,197,76,10,171,141,7,24,167,65,236,25,12,23,239,25,233,14,211,27,90,46,244,29,162,81,112,40,150,112,181,45,87,87,104,46,123,105,27,63,191,59,167,66,48,80,144,70,49,54,44,78,143,35,94,80,83,112,96,93,191,108,225,94,146,221,230,106,73,207,238,121,80,240,123,124,166,101,72,124,242,51,250,129,162,38,132,140,205,182,184,154,209,2,189,161,38,68,52,162,13,34,157,172,250,210,76,175,115,74,62,189,42,209,136,191,156,79,129,193,52,103,11,196,156,49,164,197,90,83,166,232,208,164,165,236,187,141,147,237,204,181,245,254,145,131,252,2,1,34,114,99,44,32,109,97,110,100,97,116,111,114,121,95,99,111,111,107,105,101,95,109,111,100,97,108,44,32,44,32,115,116,97,121,2,7,6,201,87,11,27,120,181,59,34,207,194,227,96,247,113,54,143,122,160,160,158,96,189,127,168,206,198,91,2,1,28,114,99,44,32,119,119,122,111,118,101,114,108,97,121,45,45,111,112,101,110,44,32,44,32,115,116,97,121,2,1,229,206,64,192,2,1,32,114,99,44,32,103,100,112,114,45,105,110,102,111,98,97,114,45,118,105,115,105,98,108,101,44,32,44,32,115,116,97,121,2,5,14,116,102,134,55,171,114,153,65,149,252,56,174,11,121,157,197,73,156,182,2,1,26,114,99,44,32,99,111,111,107,105,101,45,101,110,97,98,108,101,100,44,32,44,32,115,116,97,121,2,1,215,20,215,174,2,1,32,114,99,44,32,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,45,111,112,101,110,44,32,44,32,115,116,97,121,2,1,1,153,191,79,2,1,30,114,99,44,32,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,112,101,110,44,32,44,32,115,116,97,121,2,1,99,106,112,134,2,1,46,114,101,109,111,118,101,45,99,108,97,115,115,44,32,99,111,111,107,105,101,45,98,97,110,110,101,114,45,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,1,229,206,103,241,2,1,31,114,99,44,32,111,118,101,114,108,97,121,45,99,111,110,116,101,110,116,44,32,98,111,100,121,44,32,115,116,97,121,2,2,59,1,251,168,237,42,28,225,2,1,35,114,99,44,32,105,115,45,97,99,116,105,118,101,45,99,111,111,107,105,101,98,97,114,44,32,98,111,100,121,44,32,115,116,97,121,2,1,89,8,162,172,2,1,27,114,99,44,32,100,105,100,111,109,105,45,112,111,112,117,112,45,111,112,101,110,44,32,98,111,100,121,2,1,97,114,110,215,2,1,42,114,99,44,32,105,100,120,114,99,111,111,107,105,101,115,45,98,108,111,99,107,45,117,115,101,114,45,110,97,118,44,32,98,111,100,121,44,32,115,116,97,121,2,2,95,93,207,30,120,174,59,18,2,1,23,114,99,44,32,99,99,112,97,45,98,97,110,110,101,114,44,32,44,32,115,116,97,121,2,1,127,195,165,15,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,95,95,116,111,112,112,121,95,99,111,110,115,101,110,116,44,32,49,2,1,216,84,192,104,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,95,117,49,50,51,95,99,99,44,32,121,101,115,2,1,29,131,69,137,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,103,97,45,100,105,115,97,98,108,101,44,32,116,114,117,101,2,1,29,131,69,137,2,1,19,115,101,116,45,99,111,111,107,105,101,44,32,71,68,80,82,44,32,57,2,1,43,137,184,148,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,14,224,134,161,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,115,95,118,105,101,119,101,100,95,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,121,101,115,2,1,222,50,24,65,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,243,129,230,241,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,97,99,99,101,112,116,101,100,44,32,48,2,1,132,54,240,181,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,105,110,102,111,114,109,101,100,44,32,116,114,117,101,2,1,148,188,83,207,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,97,103,114,101,101,100,44,32,49,1,1,96,215,74,180,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,97,110,97,108,121,116,105,99,97,108,44,32,48,1,1,96,215,74,180,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,103,108,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,44,32,97,99,99,101,112,116,101,100,2,1,32,76,243,147,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,108,111,99,97,108,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,81,118,150,177,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,112,117,109,45,49,51,55,53,49,44,32,116,114,117,101,2,1,179,167,43,131,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,67,79,78,83,69,78,84,44,32,49,2,1,222,147,92,197,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,99,109,95,108,101,118,101,108,44,32,48,2,1,60,18,215,253,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,115,116,45,99,111,111,107,105,101,45,116,111,107,101,110,44,32,116,114,117,101,2,1,68,194,239,233,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,102,117,110,99,116,105,111,110,97,108,67,111,111,107,105,101,44,32,116,114,117,101,2,1,223,244,246,137,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,97,103,114,101,101,100,95,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,49,2,1,127,83,131,92,2,1,73,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,77,97,100,101,67,111,110,115,101,110,116,83,101,108,101,99,116,105,111,110,44,32,116,114,117,101,44,32,44,32,44,32,100,111,109,97,105,110,44,32,46,109,111,116,111,114,115,112,111,114,116,114,101,103,46,99,111,109,2,1,166,188,107,1,2,1,76,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,77,97,100,101,67,111,110,115,101,110,116,83,101,108,101,99,116,105,111,110,71,80,67,44,32,116,114,117,101,44,32,44,32,44,32,100,111,109,97,105,110,44,32,46,109,111,116,111,114,115,112,111,114,116,114,101,103,46,99,111,109,2,1,166,188,107,1,2,1,79,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,77,97,100,101,67,111,110,115,101,110,116,83,101,108,101,99,116,105,111,110,44,32,116,114,117,101,44,32,44,32,44,32,100,111,109,97,105,110,44,32,46,105,109,111,108,97,46,109,111,116,111,114,115,112,111,114,116,114,101,103,46,99,111,109,2,1,14,229,89,141,2,1,82,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,77,97,100,101,67,111,110,115,101,110,116,83,101,108,101,99,116,105,111,110,71,80,67,44,32,116,114,117,101,44,32,44,32,44,32,100,111,109,97,105,110,44,32,46,105,109,111,108,97,46,109,111,116,111,114,115,112,111,114,116,114,101,103,46,99,111,109,2,1,14,229,89,141,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,80,71,65,44,32,116,114,117,101,2,1,38,157,76,14,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,120,110,95,99,111,111,107,105,101,99,111,110,115,101,110,116,44,32,102,97,108,115,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,12,131,240,92,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,116,97,117,110,116,111,110,95,117,115,101,114,95,99,111,110,115,101,110,116,95,115,117,98,109,105,116,116,101,100,44,32,116,114,117,101,2,2,72,103,151,6,74,162,75,157,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,116,97,117,110,116,111,110,95,117,115,101,114,95,99,111,110,115,101,110,116,95,97,100,118,101,114,116,105,115,105,110,103,44,32,102,97,108,115,101,2,2,72,103,151,6,74,162,75,157,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,116,97,117,110,116,111,110,95,117,115,101,114,95,99,111,110,115,101,110,116,95,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,2,72,103,151,6,74,162,75,157,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,99,108,111,115,101,100,44,32,49,2,1,248,144,190,39,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,95,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,115,234,145,163,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,100,115,103,118,111,45,115,116,97,116,44,32,121,101,115,2,1,1,212,25,171,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,100,115,103,118,111,45,109,97,114,107,44,32,110,111,2,1,1,212,25,171,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,83,101,116,116,105,110,103,115,44,32,49,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,207,77,161,230,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,103,111,111,103,108,101,45,116,97,103,109,97,110,97,103,101,114,44,32,102,97,108,115,101,2,1,61,96,170,208,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,100,101,99,108,105,110,101,44,32,116,114,117,101,44,32,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,252,93,230,241,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,84,101,114,109,115,68,105,115,109,105,115,115,101,100,44,32,116,114,117,101,2,1,67,86,100,255,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,68,105,115,109,105,115,115,101,100,44,32,116,114,117,101,2,1,67,86,100,255,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,44,32,49,2,1,42,213,67,66,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,107,114,97,102,116,119,101,114,107,67,111,111,107,105,101,80,111,108,105,99,121,83,116,97,116,101,44,32,49,2,1,255,148,129,123,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,80,111,108,105,99,121,65,99,99,101,112,116,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,66,96,32,120,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,110,101,99,101,115,115,97,114,121,2,1,170,128,228,117,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,83,116,97,116,117,115,44,32,102,97,108,115,101,2,1,233,200,156,44,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,115,111,99,105,97,108,77,101,100,105,97,83,116,97,116,117,115,44,32,102,97,108,115,101,2,1,233,200,156,44,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,49,2,1,189,148,247,116,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,97,105,114,84,82,70,88,95,99,111,111,107,105,101,115,44,32,97,99,99,101,112,116,101,100,2,1,185,39,226,224,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,97,99,99,101,112,116,44,32,116,114,117,101,2,1,38,157,129,18,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,97,103,114,101,101,44,32,116,114,117,101,2,1,136,63,120,189,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,118,119,95,109,109,115,95,104,105,100,101,95,99,111,111,107,105,101,95,100,105,97,108,111,103,44,32,49,2,1,243,99,164,161,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,115,111,108,111,95,111,112,116,95,105,110,44,32,102,97,108,115,101,2,1,55,4,106,92,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,80,79,77,69,76,79,95,67,79,79,75,73,69,83,44,32,49,2,1,38,151,223,132,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,65,99,99,101,112,116,85,115,101,67,111,111,107,105,101,44,32,65,99,99,101,112,116,2,1,147,134,182,0,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,115,98,114,102,46,112,101,114,115,95,110,111,116,105,99,101,44,32,49,2,1,216,112,91,204,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,108,111,115,101,100,67,111,111,107,105,101,66,97,110,110,101,114,44,32,116,114,117,101,2,1,207,217,235,148,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,121,111,121,111,99,111,111,107,105,101,99,111,110,115,101,110,116,95,118,105,101,119,101,100,44,32,116,114,117,101,2,1,182,30,117,9,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,97,103,114,101,101,109,101,110,116,44,32,54,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,120,203,45,164,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,107,105,110,101,109,97,115,116,101,114,45,99,111,111,107,105,101,99,111,110,115,116,101,110,116,44,32,49,2,1,230,101,213,109,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,97,110,99,101,44,32,49,2,1,10,167,131,231,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,106,97,122,122,102,109,45,112,114,105,118,97,99,121,44,32,116,114,117,101,2,1,59,35,240,85,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,115,104,111,119,95,109,115,103,95,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,176,177,226,230,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,129,173,185,189,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,70,117,110,99,116,105,111,110,97,108,67,111,111,107,105,101,44,32,116,114,117,101,2,1,129,173,185,189,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,65,110,97,108,121,116,105,99,97,108,67,111,111,107,105,101,44,32,102,97,108,115,101,2,1,129,173,185,189,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,46,89,111,117,114,65,112,112,46,67,111,110,115,101,110,116,67,111,111,107,105,101,44,32,121,101,115,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,92,189,140,245,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,44,32,100,101,110,121,2,1,89,142,244,155,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,97,103,114,101,101,115,87,105,116,104,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,131,191,66,203,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,114,109,45,102,105,114,115,116,45,116,105,109,101,45,109,111,100,97,108,45,119,101,108,99,111,109,101,44,32,49,2,1,142,222,53,95,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,45,50,48,50,51,45,48,51,44,32,102,97,108,115,101,2,1,207,230,128,120,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,44,32,49,2,1,252,246,177,246,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,116,119,116,114,95,112,105,120,101,108,95,111,112,116,95,105,110,44,32,78,2,1,225,246,109,82,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,82,66,67,111,111,107,105,101,45,65,108,101,114,116,44,32,49,2,1,158,103,214,141,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,86,52,44,32,102,97,108,115,101,2,1,242,121,3,55,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,117,115,44,32,97,108,108,111,119,2,7,84,222,80,138,102,123,9,18,105,175,21,2,111,192,29,135,165,42,247,135,219,169,20,152,229,206,123,35,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,97,110,97,108,121,116,105,99,115,95,101,110,97,98,108,101,100,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,226,239,88,211,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,120,102,95,110,111,116,105,99,101,95,100,105,115,109,105,115,115,44,32,49,2,1,239,74,115,205,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,114,99,108,95,99,111,110,115,101,110,116,95,103,105,118,101,110,44,32,116,114,117,101,2,1,103,47,29,185,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,114,99,108,95,112,114,101,102,101,114,101,110,99,101,115,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,103,47,29,185,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,114,99,108,95,109,97,114,107,101,116,105,110,103,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,103,47,29,185,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,102,105,114,109,101,100,45,99,111,111,107,105,101,115,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,44,104,21,55,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,98,95,118,97,108,105,100,67,111,111,107,105,101,115,44,32,49,2,1,38,78,38,29,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,98,95,97,99,99,101,112,116,101,100,44,32,49,2,1,38,78,38,29,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,119,115,45,99,111,111,107,105,101,45,84,101,99,104,110,105,113,117,101,115,44,32,116,114,117,101,2,1,142,198,128,169,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,97,103,114,101,101,100,44,32,50,2,1,242,81,115,168,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,121,101,115,2,1,194,148,192,221,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,111,112,116,105,111,110,115,44,32,51,2,1,194,148,192,221,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,73,115,83,101,116,66,121,85,115,101,114,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,203,193,235,155,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,105,115,83,105,116,101,67,111,111,107,105,101,82,101,118,105,101,119,101,100,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,71,119,183,157,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,112,104,112,98,98,51,95,52,122,110,54,106,95,99,97,44,32,116,114,117,101,2,1,88,245,145,246,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,66,97,114,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,146,213,114,152,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,117,115,101,114,95,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,155,146,92,24,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,95,95,103,105,116,98,111,111,107,95,99,111,111,107,105,101,95,103,114,97,110,116,101,100,44,32,110,111,2,4,51,55,144,36,140,142,7,18,145,252,158,183,164,6,0,57,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,255,88,144,35,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,109,97,114,107,101,116,105,110,103,44,32,78,2,1,16,4,179,210,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,103,97,116,115,98,121,45,103,100,112,114,45,103,111,111,103,108,101,45,116,97,103,109,97,110,97,103,101,114,44,32,102,97,108,115,101,2,2,2,251,155,30,126,222,173,4,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,117,117,65,112,112,67,111,111,107,105,101,115,65,103,114,101,101,109,101,110,116,44,32,116,114,117,101,2,1,137,188,32,243,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,95,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,44,32,121,101,115,2,1,117,188,194,222,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,82,67,73,95,65,80,80,95,76,69,71,65,76,95,68,73,83,67,76,65,73,77,69,82,95,67,79,79,75,73,69,44,32,102,97,108,115,101,2,1,134,21,212,107,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,104,115,95,99,111,111,107,105,101,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,226,127,113,3,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,114,103,112,100,106,110,122,44,32,49,2,1,143,190,190,232,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,95,95,114,97,100,105,99,97,108,77,111,116,111,114,115,112,111,114,116,46,97,99,44,32,116,114,117,101,2,1,212,164,174,85,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,95,98,97,114,95,104,105,100,100,101,110,44,32,116,114,117,101,2,1,41,197,20,87,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,115,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,119,106,65,202,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,95,99,111,111,107,105,101,115,44,32,97,99,99,101,112,116,101,100,2,1,51,6,148,5,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,115,101,101,110,44,32,49,2,1,228,96,186,202,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,95,103,100,112,114,95,112,108,97,121,98,97,108,97,116,114,111,44,32,49,2,1,66,229,9,171,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,65,108,108,44,32,48,2,3,70,177,197,152,136,51,217,8,205,221,102,198,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,119,97,114,110,105,110,103,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,8,60,251,246,102,85,187,73,155,100,205,51,157,101,6,105,165,198,200,218,174,231,112,151,191,249,172,39,61,255,121,98,67,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,66,97,114,83,101,101,110,44,32,116,114,117,101,2,1,133,168,161,111,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,103,105,118,101,110,44,32,116,114,117,101,2,1,38,156,253,187,2,1,54,115,101,116,45,99,111,111,107,105,101,44,32,99,117,118,118,97,46,97,112,112,46,119,101,98,115,105,116,101,46,99,111,111,107,105,101,45,112,111,108,105,99,121,46,99,111,110,115,101,110,116,44,32,49,2,1,127,56,231,159,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,99,117,115,116,111,109,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,176,197,199,113,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,65,110,97,108,121,116,105,99,115,65,99,99,101,112,116,97,110,99,101,80,111,112,79,118,101,114,44,32,102,97,108,115,101,2,1,78,202,112,234,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,111,107,105,101,44,32,49,2,1,230,105,89,104,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,100,105,115,99,108,97,105,109,101,114,45,111,118,101,114,108,97,121,44,32,116,114,117,101,2,1,188,77,118,142,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,109,112,108,105,97,110,99,101,67,111,111,107,105,101,44,32,116,114,117,101,2,1,201,201,142,143,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,75,101,101,98,83,117,112,112,108,121,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,193,86,9,3,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,111,108,105,99,121,95,97,103,114,101,101,109,101,110,116,44,32,116,114,117,101,2,1,243,238,181,185,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,107,116,95,116,99,111,111,107,105,101,44,32,49,2,4,2,182,179,40,146,216,120,17,202,91,135,184,238,49,98,231,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,115,112,108,97,115,104,95,80,97,103,101,95,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,4,2,182,179,40,146,216,120,17,202,91,135,184,238,49,98,231,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,45,97,110,97,108,121,116,105,99,115,45,101,110,97,98,108,101,100,44,32,102,97,108,115,101,2,1,69,86,130,56,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,95,115,116,97,116,117,115,44,32,49,2,1,114,56,28,78,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,95,115,101,116,116,105,110,103,115,44,32,49,2,1,216,252,53,213,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,102,105,103,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,21,181,199,210,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,104,105,100,101,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,250,122,129,82,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,44,32,49,2,1,104,251,123,189,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,95,97,99,99,101,112,116,101,100,95,103,100,112,114,44,32,49,2,1,158,140,49,99,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,115,44,32,49,2,1,9,73,228,176,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,105,116,105,99,115,95,99,111,111,107,105,101,115,44,32,48,2,1,216,252,53,213,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,95,99,111,111,107,105,101,115,44,32,97,99,99,101,112,116,101,100,2,1,166,170,139,228,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,116,97,99,104,121,111,110,45,97,99,99,101,112,116,101,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,44,32,116,114,117,101,2,1,98,224,136,97,2,1,60,115,101,116,45,99,111,111,107,105,101,44,32,100,101,102,114,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,100,105,115,109,105,115,115,101,100,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,40,183,92,24,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,109,121,65,119,101,115,111,109,101,67,111,111,107,105,101,78,97,109,101,51,44,32,116,114,117,101,2,1,1,227,35,198,2,1,54,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,44,32,65,67,67,69,80,84,69,68,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,85,173,28,250,2,1,21,115,101,116,45,99,111,111,107,105,101,44,32,108,111,97,100,101,114,44,32,49,2,1,59,234,236,185,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,101,110,97,98,108,101,65,110,97,108,121,116,105,99,115,67,111,111,107,105,101,115,44,32,100,101,110,105,101,100,2,1,2,102,199,252,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,97,99,107,110,111,119,108,101,100,103,101,67,111,111,107,105,101,66,97,110,110,101,114,44,32,116,114,117,101,2,1,2,102,199,252,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,101,110,97,98,108,101,84,97,114,103,101,116,105,110,103,65,100,118,101,114,116,105,115,105,110,103,67,111,111,107,105,101,115,44,32,100,101,110,105,101,100,2,1,2,102,199,252,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,111,108,105,99,121,44,32,49,2,1,109,240,25,229,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,97,103,114,101,101,100,44,32,48,2,4,23,101,6,253,126,222,173,4,144,245,99,54,171,28,19,21,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,99,114,116,109,99,111,111,107,105,101,115,80,114,111,116,68,97,116,111,115,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,143,121,148,231,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,78,65,68,101,118,71,68,80,82,67,111,111,107,105,101,67,111,110,115,101,110,116,95,112,111,114,116,97,108,95,50,44,32,49,2,1,40,206,44,158,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,104,97,110,100,108,101,100,67,111,111,107,105,101,77,101,115,115,97,103,101,44,32,49,2,1,9,19,50,11,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,116,97,114,103,101,116,105,110,103,44,32,102,97,108,115,101,2,3,138,175,39,188,154,243,227,174,250,154,49,108,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,102,117,110,99,116,105,111,110,97,108,105,116,121,44,32,102,97,108,115,101,2,3,138,175,39,188,154,243,227,174,250,154,49,108,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,102,111,114,109,97,110,99,101,44,32,102,97,108,115,101,2,3,138,175,39,188,154,243,227,174,250,154,49,108,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,105,110,102,111,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,146,19,215,188,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,98,97,110,110,101,114,68,105,115,115,109,105,115,115,97,108,44,32,116,114,117,101,44,32,44,114,101,108,111,97,100,44,32,49,2,1,123,155,132,106,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,157,87,114,172,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,67,79,79,75,73,69,45,80,79,76,73,67,89,45,65,67,67,69,80,84,44,32,116,114,117,101,2,1,79,197,118,65,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,44,32,97,99,99,101,112,116,2,1,102,72,109,32,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,101,115,115,101,110,116,105,97,108,67,111,111,107,105,101,44,32,89,2,1,28,145,44,60,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,104,101,99,107,67,111,111,107,105,101,44,32,89,2,1,28,145,44,60,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,67,111,111,107,105,101,44,32,78,2,1,28,145,44,60,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,109,97,114,107,101,116,105,110,103,67,111,111,107,105,101,44,32,78,2,1,28,145,44,60,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,116,104,105,114,100,67,111,111,107,105,101,44,32,78,2,1,28,145,44,60,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,112,97,121,100,105,114,101,107,116,67,111,111,107,105,101,65,108,108,111,119,101,100,44,32,102,97,108,115,101,2,1,23,214,138,5,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,104,100,99,97,98,44,32,116,114,117,101,2,1,200,103,45,81,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,115,121,110,97,112,115,101,45,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,45,115,101,116,44,32,116,114,117,101,2,21,4,255,62,48,20,94,55,160,23,44,181,89,28,131,253,218,68,164,199,52,82,117,27,60,109,182,241,202,115,84,212,205,141,41,118,252,141,203,0,221,167,243,87,100,174,95,214,83,188,224,102,186,202,20,168,48,203,75,246,13,207,96,92,99,209,101,107,213,220,181,191,111,222,63,176,139,237,15,250,51,241,76,17,225,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,102,105,114,109,95,99,111,111,107,105,101,115,44,32,49,2,2,55,181,65,101,240,123,114,202,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,101,110,100,103,97,109,101,45,97,99,99,101,112,116,45,112,111,108,105,99,121,44,32,116,114,117,101,2,1,130,241,84,9,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,115,99,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,44,32,116,114,117,101,2,1,15,188,153,2,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,95,99,111,111,107,105,101,115,50,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,8,208,53,180,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,102,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,60,215,112,181,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,67,111,111,107,105,101,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,45,242,184,183,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,104,111,105,99,101,44,32,48,2,1,39,126,44,70,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,108,103,112,100,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,111,33,92,181,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,115,104,97,114,101,108,111,102,116,95,99,111,111,107,105,101,95,100,101,99,105,115,105,111,110,44,32,49,2,1,104,195,0,200,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,95,109,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,111,33,92,181,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,95,99,111,109,111,100,105,100,97,100,101,44,32,102,97,108,115,101,2,1,111,33,92,181,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,65,110,97,108,121,116,105,99,115,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,2,35,10,92,101,182,158,170,111,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,70,117,110,99,116,105,111,110,97,108,67,111,111,107,105,101,115,44,32,116,114,117,101,2,2,35,10,92,101,182,158,170,111,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,111,108,105,99,121,67,111,110,102,105,114,109,101,100,44,32,116,114,117,101,44,32,44,114,101,108,111,97,100,44,32,49,2,2,35,10,92,101,182,158,170,111,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,80,111,115,116,65,110,97,108,121,116,105,99,115,44,32,48,2,1,174,110,158,195,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,103,97,116,115,98,121,45,103,100,112,114,44,32,102,97,108,115,101,2,1,107,6,208,53,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,102,117,110,99,116,105,111,110,97,108,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,124,239,119,62,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,110,101,99,101,115,115,97,114,121,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,124,239,119,62,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,109,102,111,114,116,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,124,239,119,62,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,115,116,97,116,105,115,116,105,99,115,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,124,239,119,62,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,45,103,111,111,103,108,101,45,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,84,165,185,110,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,116,114,117,101,2,1,22,54,240,3,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,77,111,100,97,108,65,99,99,101,112,116,44,32,110,111,2,1,124,184,42,176,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,65,99,99,101,112,116,70,117,110,99,116,105,111,110,97,108,67,111,111,107,105,101,115,44,32,116,114,117,101,2,2,115,158,160,107,249,104,138,205,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,65,99,99,101,112,116,65,110,97,108,121,116,105,99,115,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,2,115,158,160,107,249,104,138,205,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,65,99,99,101,112,116,78,111,110,70,117,110,99,116,105,111,110,97,108,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,2,115,158,160,107,249,104,138,205,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,102,111,114,99,101,100,45,99,111,111,107,105,101,115,45,109,111,100,97,108,44,32,50,2,1,231,181,78,39,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,98,97,114,44,32,49,2,6,87,198,142,191,128,140,152,1,157,18,240,156,166,48,86,224,195,135,81,38,229,214,167,71,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,117,115,44,32,116,114,117,101,2,1,229,28,143,111,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,108,111,110,103,105,110,101,115,45,99,111,111,107,105,101,115,115,116,97,116,117,115,45,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,84,14,112,91,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,108,111,110,103,105,110,101,115,45,99,111,111,107,105,101,115,115,116,97,116,117,115,45,102,117,110,99,116,105,111,110,97,108,44,32,102,97,108,115,101,2,1,84,14,112,91,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,108,111,110,103,105,110,101,115,45,99,111,111,107,105,101,115,115,116,97,116,117,115,45,110,101,99,101,115,115,97,114,121,44,32,116,114,117,101,2,1,84,14,112,91,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,108,111,110,103,105,110,101,115,45,99,111,111,107,105,101,115,115,116,97,116,117,115,45,115,111,99,105,97,108,44,32,102,97,108,115,101,2,1,84,14,112,91,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,112,122,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,248,175,137,184,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,95,99,98,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,227,228,92,227,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,103,97,116,115,98,121,45,103,100,112,114,45,103,111,111,103,108,101,45,116,97,103,109,97,110,97,103,101,114,44,32,102,97,108,115,101,2,1,16,162,159,93,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,45,115,116,97,116,117,115,44,32,49,2,1,21,46,10,247,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,72,65,78,65,45,82,71,80,68,44,32,97,99,99,101,112,116,101,100,2,1,115,105,129,207,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,111,112,116,105,110,44,32,116,114,117,101,2,1,27,113,153,181,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,109,115,103,95,99,111,111,107,105,101,95,67,69,88,44,32,116,114,117,101,2,2,33,61,167,255,188,74,46,23,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,79,112,116,97,110,111,110,65,108,101,114,116,66,111,120,67,108,111,115,101,100,44,32,111,107,2,1,243,130,164,110,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,79,112,116,97,110,111,110,65,108,101,114,116,66,111,120,67,108,111,115,101,100,44,32,116,114,117,101,2,21,8,189,179,61,22,81,66,219,36,70,61,103,68,45,86,177,80,203,255,240,86,55,181,93,86,96,34,91,94,2,186,176,97,0,34,11,98,82,184,148,126,222,140,139,128,92,3,9,136,183,54,188,139,100,84,193,155,22,239,95,170,255,105,137,182,131,104,111,190,80,242,93,210,19,66,40,228,34,18,68,252,166,105,163,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,98,97,114,44,32,48,2,1,88,144,253,181,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,66,97,110,110,101,114,72,105,100,100,101,110,44,32,116,114,117,101,2,1,87,122,196,33,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,105,115,82,101,97,100,67,111,111,107,105,101,80,111,108,105,99,121,68,78,84,44,32,116,114,117,101,2,1,148,201,158,40,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,105,115,82,101,97,100,67,111,111,107,105,101,80,111,108,105,99,121,68,78,84,65,97,44,32,102,97,108,115,101,2,1,148,201,158,40,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,111,107,105,101,97,99,99,101,112,116,44,32,111,107,2,1,191,192,115,211,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,84,114,97,99,107,105,110,103,86,101,114,105,102,105,101,100,44,32,116,114,117,101,2,1,133,237,150,30,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,44,32,48,2,1,84,42,204,205,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,71,101,116,80,114,105,118,97,99,121,73,110,102,111,44,32,116,114,117,101,2,1,11,10,227,174,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,98,97,110,110,101,114,44,32,48,2,3,27,115,137,132,234,0,251,224,248,113,197,242,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,95,116,118,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,121,2,1,0,237,12,60,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,95,116,118,95,99,111,111,107,105,101,95,99,104,111,105,99,101,44,32,49,2,1,0,237,12,60,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,101,105,107,97,95,99,111,110,115,101,110,116,95,115,101,116,44,32,116,114,117,101,2,1,40,46,106,146,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,101,105,107,97,95,99,111,110,115,101,110,116,95,109,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,40,46,106,146,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,101,119,95,99,111,111,107,105,101,99,111,110,115,101,110,116,44,32,49,2,1,95,51,65,181,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,101,119,95,99,111,111,107,105,101,99,111,110,115,101,110,116,95,111,112,116,105,110,95,98,44,32,116,114,117,101,2,1,95,51,65,181,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,101,119,95,99,111,111,107,105,101,99,111,110,115,101,110,116,95,111,112,116,105,110,95,97,44,32,116,114,117,101,2,1,95,51,65,181,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,45,97,103,114,101,101,45,99,111,111,107,105,101,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,5,58,41,165,40,109,24,68,31,163,64,203,70,186,158,237,65,216,171,108,143,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,45,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,108,101,118,101,108,51,44,32,49,2,5,58,41,165,40,109,24,68,31,163,64,203,70,186,158,237,65,216,171,108,143,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,45,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,108,101,118,101,108,50,44,32,49,2,5,58,41,165,40,109,24,68,31,163,64,203,70,186,158,237,65,216,171,108,143,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,107,45,99,112,44,32,97,99,99,101,112,116,101,100,2,1,138,215,95,53,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,49,2,2,146,126,74,56,244,98,178,68,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,45,99,111,111,107,105,101,44,32,49,2,1,205,242,104,130,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,115,104,111,119,95,103,100,112,114,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,51,56,56,56,48,49,50,51,52,95,99,122,44,32,110,111,2,1,123,37,107,251,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,103,115,98,98,97,110,110,101,114,44,32,48,2,4,27,114,137,84,27,115,166,119,242,231,45,163,242,231,108,212,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,95,95,97,100,98,108,111,99,107,101,114,44,32,102,97,108,115,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,32,202,47,124,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,109,97,114,107,101,116,105,110,103,95,111,107,44,32,102,97,108,115,101,2,1,52,155,95,204,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,111,107,44,32,116,114,117,101,2,1,52,155,95,204,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,67,111,111,107,105,101,115,44,32,48,2,1,20,145,21,40,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,109,97,114,107,101,116,105,110,103,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,211,47,240,202,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,76,97,119,95,115,116,97,116,105,115,116,105,107,32,48,2,1,19,31,35,146,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,76,97,119,95,107,111,109,102,111,114,116,44,32,48,2,1,19,31,35,146,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,76,97,119,95,112,101,114,115,111,110,97,108,105,115,105,101,114,117,110,103,44,32,32,48,2,1,19,31,35,146,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,76,97,119,44,32,111,110,2,1,19,31,35,146,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,119,116,114,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,2,1,107,162,169,97,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,119,116,114,95,99,111,111,107,105,101,115,95,97,100,118,101,114,116,105,115,105,110,103,44,32,48,2,1,107,162,169,97,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,119,116,114,95,99,111,111,107,105,101,115,95,102,117,110,99,116,105,111,110,97,108,44,32,48,2,1,107,162,169,97,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,119,116,114,95,99,111,111,107,105,101,115,95,97,110,97,108,121,116,105,99,115,44,32,48,2,1,107,162,169,97,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,84,114,97,99,107,105,110,103,67,111,111,107,105,101,115,75,118,75,44,32,48,2,1,190,147,252,25,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,76,101,118,101,108,67,111,100,101,75,86,75,44,32,49,2,1,190,147,252,25,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,65,110,97,108,121,116,105,99,115,67,111,111,107,105,101,115,75,118,75,44,32,48,2,1,190,147,252,25,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,109,97,99,102,97,114,108,97,110,101,115,45,110,101,99,101,115,115,97,114,121,45,99,111,111,107,105,101,115,44,32,97,99,99,101,112,116,101,100,2,1,166,89,201,15,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,84,67,95,80,82,73,86,65,67,89,95,67,69,78,84,69,82,44,32,48,2,1,134,56,77,224,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,65,108,108,111,119,67,111,111,107,105,101,115,44,32,102,97,108,115,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,105,75,129,105,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,101,100,44,32,102,97,108,115,101,2,2,75,83,66,160,253,178,103,172,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,116,111,117,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,153,168,231,203,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,98,108,117,107,105,116,95,110,111,118,111,44,32,116,114,117,101,2,1,141,165,152,255,2,1,20,115,101,116,45,99,111,111,107,105,101,44,32,99,114,44,32,116,114,117,101,2,1,44,249,255,130,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,99,104,101,99,107,95,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,82,172,33,47,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,45,99,111,111,107,105,101,115,44,32,97,99,99,101,112,116,101,100,2,1,38,157,157,7,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,100,118,97,103,95,99,111,111,107,105,101,115,50,48,50,51,44,32,49,2,1,27,115,45,120,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,99,111,111,107,105,101,44,32,49,2,6,28,53,117,141,84,151,229,74,104,133,92,213,179,17,190,98,180,121,22,97,253,236,35,154,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,109,105,115,115,105,111,110,69,120,112,101,114,105,101,110,99,101,44,32,102,97,108,115,101,2,6,28,53,117,141,84,151,229,74,104,133,92,213,179,17,190,98,180,121,22,97,253,236,35,154,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,109,105,115,115,105,111,110,80,101,114,102,111,114,109,97,110,99,101,44,32,102,97,108,115,101,2,6,28,53,117,141,84,151,229,74,104,133,92,213,179,17,190,98,180,121,22,97,253,236,35,154,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,109,105,115,115,105,111,110,77,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,6,28,53,117,141,84,151,229,74,104,133,92,213,179,17,190,98,180,121,22,97,253,236,35,154,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,143,191,135,148,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,114,101,99,101,105,118,101,100,44,32,116,114,117,101,2,1,143,191,135,148,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,77,111,100,97,108,44,32,102,97,108,115,101,2,3,50,139,2,178,73,206,249,161,88,210,184,91,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,45,97,99,99,101,112,116,101,100,45,65,69,80,68,45,99,111,111,107,105,101,115,44,32,49,2,1,205,71,219,197,2,1,59,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,115,111,110,97,108,105,122,97,116,105,111,110,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,205,71,219,197,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,105,116,105,99,115,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,44,32,48,2,1,205,71,219,197,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,115,115,99,109,95,99,111,110,115,101,110,116,95,119,105,100,103,101,116,44,32,49,2,2,31,66,21,70,96,241,70,96,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,116,101,120,116,104,101,108,112,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,105,110,95,101,117,44,32,48,2,1,14,244,110,112,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,116,101,120,116,104,101,108,112,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,121,101,115,2,1,14,244,110,112,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,110,99,95,99,111,111,107,105,101,115,44,32,97,99,99,101,112,116,101,100,2,2,51,253,196,219,253,7,255,37,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,110,99,95,97,110,97,108,121,116,105,99,115,44,32,114,101,106,101,99,116,101,100,2,2,51,253,196,219,253,7,255,37,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,110,99,95,109,97,114,107,101,116,105,110,103,44,32,114,101,106,101,99,116,101,100,2,2,51,253,196,219,253,7,255,37,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,46,65,115,112,78,101,116,46,67,111,110,115,101,110,116,44,32,121,101,115,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,9,179,116,156,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,46,65,115,112,78,101,116,46,67,111,110,115,101,110,116,44,32,110,111,44,32,44,32,114,101,108,111,97,100,44,32,49,2,3,22,168,32,151,88,3,17,16,241,204,130,68,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,103,97,118,101,95,99,111,110,115,101,110,116,44,32,49,2,1,61,124,215,45,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,103,97,118,101,95,99,111,110,115,101,110,116,95,110,101,119,44,32,49,2,1,61,124,215,45,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,114,116,45,99,98,45,97,112,112,114,111,118,101,44,32,116,114,117,101,2,1,194,197,252,170,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,76,97,121,101,114,68,105,115,109,105,115,115,101,100,44,32,116,114,117,101,2,1,247,172,181,75,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,82,79,68,79,99,108,111,115,101,100,44,32,116,114,117,101,2,1,147,212,128,96,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,68,101,99,108,105,110,101,100,44,32,49,2,1,82,252,183,181,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,77,111,100,97,108,44,32,116,114,117,101,2,1,100,212,228,119,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,111,112,104,45,109,97,110,100,97,116,111,114,121,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,29,158,154,20,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,97,99,99,101,112,116,44,32,49,2,1,193,212,69,158,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,100,119,95,105,115,95,110,101,119,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,14,48,174,175,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,95,112,111,108,105,116,105,99,97,108,44,32,49,2,1,23,108,189,227,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,107,111,110,105,99,97,109,105,110,111,108,116,97,46,117,115,44,32,49,2,2,20,72,0,78,20,76,80,202,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,65,110,97,108,121,116,105,99,115,65,112,112,114,111,118,101,100,44,32,48,2,3,57,168,48,141,140,151,96,14,155,36,22,25,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,67,111,110,102,105,103,117,114,101,100,67,111,111,107,105,101,115,44,32,49,2,3,57,168,48,141,140,151,96,14,155,36,22,25,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,80,117,98,108,105,65,112,112,114,111,118,101,100,44,32,48,2,3,57,168,48,141,140,151,96,14,155,36,22,25,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,65,117,116,104,44,32,49,2,1,81,156,104,22,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,107,115,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,64,241,146,254,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,111,108,105,99,121,44,32,116,114,117,101,2,1,160,164,11,157,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,117,115,101,45,97,99,99,101,112,116,44,32,102,97,108,115,101,2,1,189,35,171,41,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,103,97,45,100,105,115,97,98,108,101,45,85,65,45,120,120,120,120,120,120,120,120,45,120,44,32,116,114,117,101,2,1,161,188,5,65,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,44,32,49,2,6,2,245,254,185,39,245,80,171,83,50,163,235,93,170,186,220,94,213,147,148,206,96,219,158,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,67,111,111,107,105,101,115,44,32,49,2,1,152,113,98,159,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,98,97,114,44,32,110,111,2,1,189,14,48,215,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,110,111,2,1,190,148,20,171,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,101,115,115,101,110,116,105,97,108,44,32,116,114,117,101,2,1,228,198,212,113,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,102,105,114,109,44,32,116,114,117,101,2,1,0,200,68,89,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,116,114,97,99,107,105,110,103,67,111,110,102,105,114,109,44,32,102,97,108,115,101,2,1,0,200,68,89,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,2,133,168,55,156,184,102,211,151,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,2,46,99,168,179,78,193,174,14,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,103,116,109,45,100,105,115,97,98,108,101,45,71,84,77,45,78,76,86,82,88,88,56,44,32,116,114,117,101,2,1,78,193,174,14,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,117,99,101,45,99,111,111,107,105,101,44,32,78,2,1,171,27,228,68,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,116,97,114,116,101,97,117,99,105,116,114,111,110,44,32,102,97,108,115,101,2,1,58,254,36,158,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,111,108,105,99,105,101,115,44,32,116,114,117,101,2,1,213,179,47,238,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,111,112,116,105,110,95,113,44,32,102,97,108,115,101,2,1,60,131,100,79,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,99,101,45,99,111,111,107,105,101,44,32,78,2,2,226,43,171,10,226,72,184,65,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,78,84,67,111,111,107,105,101,115,44,32,48,2,1,253,79,11,254,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,97,108,101,114,116,67,111,111,107,105,101,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,102,195,221,184,2,1,19,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,44,32,49,2,1,76,59,3,142,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,104,105,100,101,67,111,111,107,105,101,66,97,110,110,101,114,44,32,116,114,117,101,2,1,14,146,200,133,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,111,98,108,105,103,97,116,111,114,121,44,32,116,114,117,101,2,1,206,138,177,189,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,109,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,206,138,177,189,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,206,138,177,189,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,116,114,111,108,44,32,116,114,117,101,2,1,184,36,83,59,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,112,108,111,115,67,111,111,107,105,101,67,111,110,115,101,110,116,83,116,97,116,117,115,44,32,102,97,108,115,101,2,1,55,165,100,251,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,115,44,32,49,2,1,25,238,229,70,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,65,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,187,186,108,167,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,187,186,108,167,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,104,105,100,101,45,103,100,112,114,45,98,97,114,44,32,116,114,117,101,2,80,3,176,200,251,4,109,11,61,6,156,132,248,12,51,137,189,12,53,117,46,14,32,110,31,16,112,169,206,18,164,235,141,18,175,214,76,19,214,225,225,24,101,247,44,25,117,141,192,27,31,255,253,29,145,44,237,40,40,185,74,42,150,168,205,48,225,15,210,50,177,53,151,51,173,198,222,55,178,145,102,57,189,246,128,61,236,58,225,64,76,225,3,74,70,221,58,81,91,33,72,95,50,146,108,101,0,145,134,101,49,87,251,103,34,47,34,107,209,55,201,108,221,92,25,113,14,240,153,113,91,207,236,114,235,109,150,117,241,209,2,130,50,194,243,132,151,206,122,132,216,9,14,141,142,58,255,144,68,172,120,144,113,183,237,153,113,132,149,153,233,238,82,165,68,182,147,168,103,70,187,168,218,251,9,170,113,74,43,176,103,209,241,180,186,74,49,181,200,84,162,183,167,228,226,185,224,186,100,188,56,200,215,188,105,192,52,194,12,3,17,195,160,160,218,197,130,65,39,198,124,87,16,198,149,195,115,200,217,9,221,203,71,154,29,213,93,231,222,215,80,108,141,222,234,214,14,224,92,56,31,227,46,141,188,228,146,151,30,229,185,119,219,229,191,110,180,230,174,138,92,232,191,20,54,233,143,16,29,233,174,99,142,235,62,9,18,241,175,173,83,247,38,77,218,247,60,66,209,250,154,18,123,251,127,206,205,251,250,101,139,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,112,114,111,109,112,116,67,111,111,107,105,101,115,44,32,49,2,12,2,200,98,197,32,143,149,85,33,109,93,47,62,10,100,131,97,1,35,38,132,32,87,178,136,27,131,22,181,236,254,216,208,150,142,125,224,11,78,61,229,83,120,92,231,161,175,130,2,1,20,115,101,116,45,99,111,111,107,105,101,44,32,95,99,68,97,66,44,32,49,2,1,138,217,137,49,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,95,97,67,97,110,95,97,110,97,108,121,116,105,99,97,108,44,32,48,2,1,138,217,137,49,2,1,20,115,101,116,45,99,111,111,107,105,101,44,32,95,97,71,97,66,44,32,49,2,1,138,217,137,49,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,115,117,114,98,109,97,45,103,112,103,97,44,32,110,111,2,1,7,172,155,28,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,101,108,114,111,119,67,111,111,107,105,101,80,111,108,105,99,121,44,32,121,101,115,2,1,128,186,252,227,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,111,119,110,105,116,95,99,111,111,107,105,101,95,100,97,116,97,95,112,101,114,109,105,115,115,105,111,110,115,44,32,49,2,1,229,198,156,124,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,115,95,80,114,101,102,101,114,101,110,99,101,115,44,32,97,99,99,101,112,116,101,100,2,1,175,46,9,163,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,115,95,80,114,101,102,101,114,101,110,99,101,115,95,65,110,97,108,121,116,105,99,115,44,32,100,101,99,108,105,110,101,100,2,1,175,46,9,163,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,80,111,108,105,99,121,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,148,84,1,146,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,115,45,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,83,174,29,18,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,99,45,97,99,99,101,112,116,101,100,44,32,50,2,1,73,10,13,15,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,99,45,105,116,101,109,45,103,111,111,103,108,101,44,32,102,97,108,115,101,2,1,203,192,135,144,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,95,99,111,111,107,105,101,115,44,32,97,99,99,101,112,116,101,100,2,1,129,61,52,147,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,102,101,97,116,117,114,101,67,111,110,115,101,110,116,44,32,102,97,108,115,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,131,200,103,82,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,45,99,111,111,107,105,101,44,32,110,111,2,1,126,241,141,152,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,3,101,85,228,226,209,196,74,45,241,254,197,31,2,1,61,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,114,105,118,97,99,121,80,114,101,102,101,114,101,110,99,101,66,97,110,110,101,114,80,114,111,100,117,99,116,105,111,110,44,32,97,99,99,101,112,116,101,100,2,1,55,214,195,174,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,131,46,12,130,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,50,120,49,99,111,111,107,105,101,115,44,32,49,2,1,223,41,26,68,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,102,105,114,115,116,80,97,114,116,121,68,97,116,97,80,114,101,102,83,101,116,44,32,116,114,117,101,2,1,249,47,244,29,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,114,101,113,117,105,114,101,100,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,255,3,80,198,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,107,104,95,99,111,111,107,105,101,95,108,101,118,101,108,52,44,32,102,97,108,115,101,2,1,232,237,143,111,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,107,104,95,99,111,111,107,105,101,95,108,101,118,101,108,51,44,32,102,97,108,115,101,2,1,232,237,143,111,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,107,104,95,99,111,111,107,105,101,95,108,101,118,101,108,49,44,32,116,114,117,101,2,1,232,237,143,111,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,103,114,101,101,109,101,110,116,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,126,6,15,181,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,77,83,67,95,67,111,111,107,105,101,98,97,110,110,101,114,44,32,102,97,108,115,101,2,1,223,133,75,15,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,95,109,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,89,250,181,43,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,70,105,116,110,101,115,115,105,110,103,50,49,45,49,53,45,57,44,32,48,2,1,32,171,194,82,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,112,111,112,117,112,44,32,121,101,115,2,1,88,29,62,152,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,95,114,101,113,117,105,114,101,100,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,89,250,181,43,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,115,97,95,101,110,97,98,108,101,44,32,111,102,102,2,1,224,23,53,51,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,99,111,111,107,105,101,116,101,114,109,67,111,111,107,105,101,66,97,110,110,101,114,44,32,116,114,117,101,2,1,119,112,149,6,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,115,116,97,116,117,115,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,196,75,134,243,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,70,84,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,44,32,49,2,1,4,170,49,252,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,98,97,114,44,32,48,2,2,193,67,166,249,232,206,21,204,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,111,112,117,112,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,232,169,148,91,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,85,66,73,95,80,82,73,86,65,67,89,95,80,79,76,73,67,89,95,86,73,69,87,69,68,44,32,116,114,117,101,2,1,169,123,212,248,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,85,66,73,95,80,82,73,86,65,67,89,95,65,68,83,95,79,80,84,79,85,84,44,32,116,114,117,101,2,1,169,123,212,248,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,85,66,73,95,80,82,73,86,65,67,89,95,80,79,76,73,67,89,95,65,67,67,69,80,84,69,68,44,32,102,97,108,115,101,2,1,169,123,212,248,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,85,66,73,95,80,82,73,86,65,67,89,95,86,73,68,69,79,95,79,80,84,79,85,84,44,32,102,97,108,115,101,2,1,169,123,212,248,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,106,111,99,111,111,107,105,101,44,32,102,97,108,115,101,2,1,118,148,17,90,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,46,115,104,111,119,110,44,32,49,2,1,183,128,106,126,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,108,111,99,97,108,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,242,157,19,159,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,111,97,105,45,97,108,108,111,119,45,110,101,44,32,102,97,108,115,101,2,1,78,29,10,172,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,44,32,114,101,106,101,99,116,101,100,2,1,78,29,10,172,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,45,99,111,111,107,105,101,44,32,49,2,3,4,191,184,28,13,135,226,149,92,145,212,209,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,102,117,110,99,116,105,111,110,97,108,44,32,49,2,3,4,191,184,28,13,135,226,149,92,145,212,209,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,104,117,108,107,67,111,111,107,105,101,66,97,114,67,108,105,99,107,44,32,49,2,1,118,33,25,1,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,49,2,3,6,212,29,147,8,137,227,69,175,227,176,23,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,122,111,111,109,109,101,114,45,99,111,111,107,105,101,95,97,103,114,101,101,100,44,32,116,114,117,101,2,1,35,220,156,202,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,116,114,117,101,2,1,21,22,245,160,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,99,111,111,107,105,101,95,116,111,107,101,110,44,32,49,2,1,83,175,191,155,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,95,99,111,110,115,101,110,116,95,112,101,114,115,111,110,97,108,105,122,97,116,105,111,110,44,32,100,101,110,105,101,100,2,1,83,175,191,155,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,95,99,111,110,115,101,110,116,95,97,110,97,108,121,116,105,99,115,44,32,100,101,110,105,101,100,2,1,83,175,191,155,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,95,99,111,110,115,101,110,116,95,109,97,114,107,101,116,105,110,103,44,32,100,101,110,105,101,100,2,1,83,175,191,155,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,87,97,108,108,44,32,49,2,3,98,157,84,68,225,117,106,207,254,51,21,212,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,110,111,95,99,111,111,107,105,101,115,44,32,49,2,1,60,86,141,104,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,104,105,100,101,99,111,111,107,105,101,115,98,97,110,110,101,114,44,32,49,2,1,60,86,141,104,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,110,97,116,111,114,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,226,241,153,231,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,87,97,108,108,79,112,116,73,110,44,32,48,2,3,98,157,84,68,225,117,106,207,254,51,21,212,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,70,78,2,251,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,99,102,52,50,49,50,95,99,110,44,32,49,2,1,66,208,20,96,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,109,101,100,105,97,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,70,78,2,251,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,109,97,110,100,97,116,111,114,121,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,70,78,2,251,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,103,116,97,103,44,32,116,114,117,101,2,1,138,169,131,181,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,66,111,107,97,100,105,114,101,107,116,67,111,111,107,105,101,80,114,101,102,101,114,101,110,99,101,115,77,80,44,32,49,2,1,254,171,46,185,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,65,99,107,110,111,119,108,101,100,103,101,100,44,32,116,114,117,101,2,12,27,117,68,99,29,45,39,34,34,214,62,251,77,23,153,59,82,72,89,208,89,236,248,3,96,239,142,94,102,87,3,213,118,33,106,253,129,199,91,102,139,95,211,48,196,72,98,254,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,100,97,116,97,45,112,114,105,118,97,99,121,45,115,116,97,116,101,109,101,110,116,44,32,116,114,117,101,2,1,62,4,221,81,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,108,101,118,101,108,44,32,114,101,113,117,105,114,101,100,2,1,227,61,124,66,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,115,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,227,61,124,66,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,77,65,84,79,77,79,95,67,79,78,83,69,78,84,95,71,73,86,69,78,44,32,48,2,1,247,227,0,84,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,66,65,66,89,95,77,65,82,75,69,84,73,78,71,95,67,79,79,75,73,69,83,95,67,79,78,83,69,78,84,69,68,44,32,102,97,108,115,101,2,1,141,4,235,176,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,66,65,66,89,95,80,69,82,70,79,82,77,65,78,67,69,95,67,79,79,75,73,69,83,95,67,79,78,83,69,78,84,69,68,44,32,102,97,108,115,101,2,1,141,4,235,176,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,66,65,66,89,95,78,69,67,69,83,83,65,82,89,95,67,79,79,75,73,69,83,95,67,79,78,83,69,78,84,69,68,44,32,116,114,117,101,2,1,141,4,235,176,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,101,115,115,101,110,116,105,97,108,44,32,97,108,108,111,119,2,1,208,95,128,3,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,104,111,119,110,44,32,49,2,1,112,154,225,45,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,119,97,114,110,44,32,116,114,117,101,2,1,20,15,89,250,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,111,112,116,105,110,67,111,111,107,105,101,83,101,116,116,105,110,103,44,32,49,2,6,5,109,35,236,105,172,143,186,165,157,91,178,217,196,38,156,230,36,154,245,253,63,11,27,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,45,115,104,111,119,110,44,32,116,114,117,101,2,1,78,201,19,42,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,115,108,105,109,115,116,97,116,95,111,112,116,111,117,116,95,116,114,97,99,107,105,110,103,44,32,116,114,117,101,2,1,78,201,19,42,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,110,112,112,95,97,110,97,108,121,116,105,99,97,108,44,32,48,2,1,38,157,20,144,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,105,110,115,104,111,112,67,111,111,107,105,101,115,83,101,116,44,32,116,114,117,101,2,1,74,247,206,49,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,97,100,115,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,74,247,206,49,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,102,111,114,109,97,110,99,101,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,74,247,206,49,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,115,97,95,100,101,109,111,44,32,102,97,108,115,101,2,1,246,239,37,28,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,97,110,105,109,97,116,101,100,95,100,114,97,119,105,110,103,115,44,32,116,114,117,101,2,1,223,219,208,13,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,83,116,97,116,117,115,44,32,116,114,117,101,2,1,99,204,186,88,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,115,119,103,67,111,111,107,105,101,44,32,102,97,108,115,101,2,1,142,216,105,22,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,80,114,101,102,101,114,101,110,99,101,115,71,114,97,110,116,101,100,44,32,49,2,1,82,207,22,19,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,77,97,114,107,101,116,105,110,103,71,114,97,110,116,101,100,44,32,48,2,1,82,207,22,19,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,71,114,97,110,116,101,100,44,32,49,2,2,82,72,137,175,82,207,22,19,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,114,101,106,101,99,116,101,100,44,32,116,114,117,101,2,1,126,2,180,7,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,78,76,95,67,79,79,75,73,69,95,75,79,77,70,79,82,84,44,32,102,97,108,115,101,2,1,246,238,150,208,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,78,76,95,67,79,79,75,73,69,95,77,69,77,79,82,89,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,246,238,150,208,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,78,76,95,67,79,79,75,73,69,95,83,84,65,84,83,44,32,102,97,108,115,101,2,1,246,238,150,208,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,112,119,115,95,103,100,114,112,95,97,99,99,101,112,116,44,32,49,2,1,229,19,190,76,2,1,21,115,101,116,45,99,111,111,107,105,101,44,32,104,97,118,101,49,56,44,32,49,2,1,126,227,193,76,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,112,101,108,109,95,99,115,116,97,116,101,44,32,49,2,1,157,137,34,187,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,112,101,108,109,95,99,111,110,115,101,110,116,44,32,49,2,1,157,137,34,187,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,45,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,89,230,142,143,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,45,97,110,97,108,121,116,105,99,97,108,45,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,89,230,142,143,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,45,109,97,114,107,101,116,105,110,103,45,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,89,230,142,143,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,108,101,118,101,108,45,118,52,44,32,48,2,1,168,254,43,56,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,95,99,111,110,115,101,110,116,44,32,121,101,115,2,1,215,58,233,3,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,115,101,105,45,99,99,112,97,45,98,97,110,110,101,114,44,32,116,114,117,101,2,1,22,71,232,203,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,97,119,120,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,253,150,3,185,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,119,97,114,110,105,110,103,44,32,49,2,1,50,64,204,109,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,67,111,111,107,105,101,115,44,32,48,2,1,171,27,192,149,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,111,108,105,99,121,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,148,186,156,47,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,99,111,100,101,99,97,109,112,115,46,99,111,111,107,105,101,115,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,130,35,224,89,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,106,250,226,172,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,117,112,100,97,116,101,100,44,32,116,114,117,101,2,1,104,254,151,164,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,110,97,116,111,114,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,55,149,105,52,2,1,19,115,101,116,45,99,111,111,107,105,101,44,32,97,99,115,114,44,32,49,2,1,242,33,51,235,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,95,95,104,115,95,103,112,99,95,98,97,110,110,101,114,95,100,105,115,109,105,115,115,44,32,116,114,117,101,2,1,137,242,202,87,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,121,101,115,45,110,101,99,101,115,115,97,114,121,44,32,121,101,115,2,2,63,205,169,91,78,117,166,39,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,121,101,115,45,111,116,104,101,114,44,32,110,111,2,2,63,205,169,91,78,117,166,39,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,107,121,45,97,99,116,105,111,110,44,32,121,101,115,2,2,63,205,169,91,78,117,166,39,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,121,101,115,45,102,117,110,99,116,105,111,110,97,108,44,32,110,111,2,2,63,205,169,91,78,117,166,39,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,45,100,101,99,108,105,110,101,100,45,99,111,111,107,105,101,115,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,148,181,115,31,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,45,97,103,114,101,101,100,45,116,111,45,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,148,181,115,31,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,101,115,115,101,110,116,105,97,108,44,32,89,2,1,111,124,156,64,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,44,32,78,2,1,111,124,156,64,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,102,117,110,99,116,105,111,110,97,108,44,32,78,2,1,111,124,156,64,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,103,114,97,100,101,112,114,111,111,102,95,115,104,111,119,110,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,44,32,116,114,117,101,2,1,159,106,231,247,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,115,98,101,114,46,112,101,114,115,95,110,111,116,105,99,101,95,101,110,44,32,49,2,1,216,112,91,204,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,101,100,44,32,121,101,115,2,1,140,10,139,68,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,126,167,107,71,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,126,167,107,71,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,45,111,112,116,45,105,110,44,32,102,97,108,115,101,2,1,126,167,107,71,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,44,32,49,2,1,192,148,217,178,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,67,66,51,57,51,95,68,79,78,79,84,82,69,79,80,69,78,44,32,116,114,117,101,2,1,132,101,55,141,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,65,89,84,79,95,67,79,82,85,78,65,95,67,79,79,75,73,69,83,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,41,107,177,14,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,73,54,73,73,83,67,79,79,75,73,69,67,79,78,83,69,78,84,48,44,32,110,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,143,191,40,47,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,104,116,103,95,99,111,110,115,101,110,116,44,32,48,2,1,35,61,16,46,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,111,108,100,97,108,44,32,49,2,1,108,86,229,167,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,109,97,114,107,101,116,105,110,103,44,32,48,2,1,108,86,229,167,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,106,111,103,44,32,49,2,1,108,86,229,167,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,99,112,95,99,99,95,97,100,115,44,32,48,2,1,41,208,31,171,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,112,95,99,99,95,115,116,97,116,115,44,32,48,2,1,41,208,31,171,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,112,95,99,99,95,114,101,113,117,105,114,101,100,44,32,49,2,1,41,208,31,171,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,97,101,45,99,111,111,107,105,101,98,97,110,110,101,114,44,32,116,114,117,101,2,1,160,58,194,33,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,97,101,45,101,115,101,110,116,105,97,108,44,32,116,114,117,101,2,1,160,58,194,33,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,97,101,45,115,116,97,116,105,115,116,105,99,115,44,32,102,97,108,115,101,2,1,160,58,194,33,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,99,115,45,115,117,112,112,108,105,101,114,99,111,110,110,101,99,116,44,32,65,67,67,69,80,84,69,68,2,1,213,131,142,34,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,115,44,32,121,101,115,2,1,184,205,177,226,2,1,19,115,101,116,45,99,111,111,107,105,101,44,32,110,111,116,101,44,32,49,2,1,161,39,136,130,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,114,101,113,117,105,114,101,100,2,1,114,144,137,186,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,97,99,99,101,112,116,101,100,2,2,89,1,193,11,89,107,59,54,2,1,20,115,101,116,45,99,111,111,107,105,101,44,32,112,100,95,99,99,44,32,49,2,1,206,227,29,65,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,111,107,44,32,110,101,99,101,115,115,97,114,121,2,1,62,38,138,106,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,84,114,97,99,107,105,110,103,44,32,102,97,108,115,101,2,3,148,100,37,133,167,60,197,179,217,38,148,227,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,109,97,114,107,101,116,105,110,103,44,32,78,2,1,183,125,212,215,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,118,97,114,109,97,102,105,95,109,97,110,100,97,116,111,114,121,44,32,116,114,117,101,2,1,19,235,180,151,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,86,121,111,115,67,111,111,107,105,101,115,44,32,65,99,99,101,112,116,101,100,2,1,55,2,35,168,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,204,88,34,17,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,97,100,115,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,204,88,34,17,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,116,101,95,99,111,111,107,105,101,95,111,107,44,32,49,2,1,101,231,79,129,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,97,109,99,111,111,107,105,101,95,112,111,108,105,99,121,95,114,101,115,116,114,105,99,116,105,111,110,44,32,97,108,108,111,119,101,100,2,3,31,64,254,16,102,109,134,80,229,222,127,24,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,97,108,108,111,119,101,100,2,1,61,180,120,204,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,100,119,95,99,111,111,107,105,101,115,95,97,99,99,101,112,116,101,100,44,32,49,2,1,111,116,220,209,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,67,111,110,118,101,114,115,101,67,111,111,107,105,101,80,111,108,105,99,121,44,32,48,2,1,111,116,220,209,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,45,98,97,110,110,101,114,44,32,49,2,1,57,45,101,113,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,83,101,116,116,105,110,103,115,44,32,49,2,1,158,123,51,99,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,97,114,101,95,101,115,115,101,110,116,105,97,108,95,99,111,110,115,101,110,116,115,95,103,105,118,101,110,44,32,49,2,1,114,168,240,26,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,105,115,95,112,101,114,115,111,110,97,108,105,122,101,100,95,99,111,110,116,101,110,116,95,99,111,110,115,101,110,116,95,103,105,118,101,110,44,32,49,2,1,114,168,240,26,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,97,99,101,112,116,97,95,99,111,111,107,105,101,115,95,102,117,110,99,105,111,110,97,108,101,115,44,32,49,2,1,131,28,124,152,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,97,99,101,112,116,97,95,99,111,111,107,105,101,115,95,111,98,108,105,103,97,116,111,114,105,97,115,44,32,49,2,1,131,28,124,152,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,97,99,101,112,116,97,95,99,111,111,107,105,101,115,95,112,101,114,115,111,110,97,108,105,122,97,99,105,111,110,44,32,49,2,1,131,28,124,152,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,112,111,108,105,99,121,105,110,102,111,95,110,101,119,44,32,116,114,117,101,2,1,116,51,206,221,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,67,111,111,107,105,101,44,32,116,114,117,101,2,3,115,86,199,152,157,49,204,221,190,189,89,212,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,114,101,113,117,105,114,101,100,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,100,11,17,27,2,1,20,115,101,116,45,99,111,111,107,105,101,44,32,101,101,45,104,106,44,32,110,2,1,66,178,99,67,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,101,101,45,99,97,44,32,121,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,66,178,99,67,2,1,20,115,101,116,45,99,111,111,107,105,101,44,32,101,101,45,121,116,44,32,121,2,1,66,178,99,67,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,116,51,206,221,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,49,2,2,198,1,112,60,228,89,172,131,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,101,116,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,184,229,185,114,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,66,97,115,105,99,44,32,116,114,117,101,2,1,76,155,227,251,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,77,111,108,100,44,32,116,114,117,101,2,1,186,43,179,248,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,121,116,112,114,101,102,115,95,103,100,112,114,95,99,111,110,115,101,110,116,44,32,49,2,1,42,76,66,217,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,101,102,105,108,101,45,99,111,111,107,105,101,110,97,109,101,45,44,32,49,2,1,6,202,100,103,2,1,63,115,101,116,45,99,111,111,107,105,101,44,32,112,108,103,95,115,121,115,116,101,109,95,100,106,99,111,111,107,105,101,109,111,110,115,116,101,114,95,105,110,102,111,114,109,101,100,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,65,141,236,134,2,1,21,115,101,116,45,99,111,111,107,105,101,44,32,99,118,99,44,32,116,114,117,101,2,1,126,80,48,198,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,117,112,100,97,116,101,100,44,32,116,114,117,101,2,1,151,145,181,211,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,51,44,32,116,114,117,101,2,1,193,179,102,88,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,97,99,114,105,115,95,99,111,111,107,105,101,95,97,99,99,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,241,120,197,253,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,116,101,114,109,115,102,101,101,100,95,112,99,49,95,110,111,116,105,99,101,95,98,97,110,110,101,114,95,104,105,100,100,101,110,44,32,116,114,117,101,2,1,144,37,2,100,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,98,97,114,44,32,48,2,2,93,252,9,99,130,196,9,143,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,109,112,108,122,95,109,97,114,107,101,116,105,110,103,44,32,97,108,108,111,119,101,100,2,1,186,163,153,20,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,109,112,108,122,95,109,97,114,107,101,116,105,110,103,44,32,97,108,108,111,119,2,1,105,175,67,169,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,99,107,110,111,119,108,101,100,103,101,100,44,32,116,114,117,101,2,1,164,133,215,219,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,99,112,97,97,99,99,101,112,116,44,32,116,114,117,101,2,1,40,85,144,166,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,115,104,105,101,108,100,95,110,111,116,105,99,101,95,100,105,115,109,105,115,115,101,100,44,32,121,101,115,2,1,35,23,37,158,2,1,70,115,101,116,45,99,111,111,107,105,101,44,32,108,117,99,105,95,103,97,67,111,110,115,101,110,116,95,57,53,57,55,51,102,55,98,45,54,100,98,99,45,52,100,97,99,45,97,57,49,54,45,97,98,50,99,102,51,98,52,97,102,49,49,44,32,102,97,108,115,101,2,1,27,219,204,123,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,108,117,99,105,95,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,27,219,204,123,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,110,103,45,99,99,45,110,101,99,101,115,115,97,114,121,44,32,49,2,1,240,215,10,205,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,110,103,45,99,99,45,97,99,99,101,112,116,101,100,44,32,97,99,99,101,112,116,101,100,2,1,240,215,10,205,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,80,114,105,118,97,99,121,80,111,108,105,99,121,79,112,116,79,117,116,44,32,121,101,115,2,1,13,174,106,218,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,65,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,2,159,136,32,189,177,219,181,152,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,65,100,118,101,114,116,105,115,105,110,103,44,32,102,97,108,115,101,2,2,159,136,32,189,177,219,181,152,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,80,101,114,115,111,110,97,108,105,122,97,116,105,111,110,44,32,102,97,108,115,101,2,2,159,136,32,189,177,219,181,152,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,69,120,112,105,114,97,116,105,111,110,44,32,49,2,2,159,136,32,189,177,219,181,152,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,83,101,116,116,105,110,103,115,44,32,49,2,2,159,136,32,189,177,219,181,152,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,117,115,44,32,100,101,110,121,2,1,37,49,30,126,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,108,114,95,99,111,111,107,105,101,115,95,116,101,99,110,105,99,97,115,44,32,97,99,99,101,112,116,101,100,2,1,34,150,182,206,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,115,117,114,101,115,116,97,111,44,32,97,99,99,101,112,116,101,100,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,34,150,182,206,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,104,105,100,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,44,32,49,2,1,194,197,252,41,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,102,106,97,108,108,114,97,118,101,110,67,111,111,107,105,101,44,32,49,2,1,220,1,40,182,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,95,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,116,114,117,101,2,1,222,57,176,196,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,95,109,97,114,107,101,116,105,110,103,44,32,48,2,1,217,82,115,223,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,95,112,101,114,102,111,114,109,97,110,99,101,44,32,48,2,1,217,82,115,223,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,82,103,112,100,66,97,110,110,101,114,44,32,49,2,1,217,82,115,223,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,115,101,101,110,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,44,32,97,99,99,101,112,116,101,100,2,1,169,46,16,114,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,109,112,108,105,97,110,99,101,67,111,111,107,105,101,44,32,111,110,2,1,89,55,252,45,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,84,101,114,109,115,68,105,115,109,105,115,115,101,100,44,32,116,114,117,101,2,1,67,86,100,255,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,41,223,59,65,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,48,2,1,39,200,225,112,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,101,99,111,108,111,103,105,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,50,48,50,50,48,50,50,52,44,32,102,97,108,115,101,2,1,106,175,62,0,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,97,112,112,66,97,110,110,101,114,80,111,112,85,112,82,117,108,101,115,67,111,111,107,105,101,44,32,116,114,117,101,2,1,127,45,124,160,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,101,117,114,97,99,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,138,73,239,181,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,97,107,97,115,97,97,105,114,67,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,2,1,37,243,174,83,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,114,105,116,116,97,108,67,67,44,32,49,2,1,36,118,55,78,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,97,103,114,101,101,100,44,32,50,2,2,226,171,152,4,237,56,29,7,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,107,105,101,115,95,102,97,99,101,98,111,111,107,95,112,105,120,101,108,44,32,100,101,110,121,2,1,147,169,231,220,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,107,105,101,115,95,103,111,111,103,108,101,95,97,110,97,108,121,116,105,99,115,44,32,100,101,110,121,2,1,147,169,231,220,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,107,105,101,115,95,121,111,117,116,117,98,101,44,32,97,108,108,111,119,2,1,147,169,231,220,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,107,105,101,115,95,99,108,111,117,100,102,108,97,114,101,44,32,97,108,108,111,119,2,1,147,169,231,220,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,107,105,101,115,95,112,97,121,112,97,108,44,32,97,108,108,111,119,2,1,147,169,231,220,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,107,105,101,115,95,119,101,98,95,115,116,111,114,101,95,115,116,97,116,101,44,32,97,108,108,111,119,2,1,147,169,231,220,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,80,111,108,105,99,121,44,32,89,2,1,46,147,207,193,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,109,111,100,97,108,80,111,108,105,99,121,67,111,111,107,105,101,78,111,116,65,99,99,101,112,116,101,100,44,32,110,111,116,97,99,99,101,112,116,101,100,2,1,126,46,1,215,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,77,65,78,65,95,67,79,78,83,69,78,84,44,32,116,114,117,101,2,1,94,255,168,248,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,95,117,108,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,97,108,108,111,119,2,1,36,43,116,140,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,114,101,102,65,110,97,108,121,116,105,99,115,44,32,48,2,1,224,102,169,245,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,114,101,102,77,97,114,107,101,116,105,110,103,44,32,48,2,1,224,102,169,245,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,114,101,102,84,104,105,114,100,80,97,114,116,121,65,112,112,108,105,99,97,116,105,111,110,115,44,32,48,2,1,224,102,169,245,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,116,114,97,99,107,105,110,103,67,111,111,107,105,101,115,44,32,111,102,102,2,1,160,198,144,230,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,109,112,108,105,97,110,99,101,67,111,111,107,105,101,44,32,111,110,2,1,160,198,144,230,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,97,110,97,108,121,116,105,99,115,44,32,110,111,2,1,46,142,121,10,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,97,100,118,101,114,116,105,115,105,110,103,44,32,110,111,2,1,46,142,121,10,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,102,117,110,99,116,105,111,110,97,108,44,32,121,101,115,2,1,46,142,121,10,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,49,56,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,214,1,10,253,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,104,105,100,101,45,103,100,112,114,45,98,97,114,44,32,116,114,117,101,2,2,170,7,161,142,214,180,242,76,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,65,84,65,46,103,100,112,114,46,112,111,112,117,112,44,32,116,114,117,101,2,1,127,45,255,113,2,1,56,115,101,116,45,99,111,111,107,105,101,44,32,65,73,82,69,85,82,79,80,65,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,66,65,78,78,69,82,95,86,73,69,87,69,68,44,32,49,2,1,213,9,216,122,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,78,111,116,105,99,101,69,120,112,105,114,101,68,97,116,101,44,32,49,2,1,100,106,135,78,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,78,111,116,105,99,101,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,100,106,135,78,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,112,111,108,105,99,121,95,97,99,99,101,112,116,101,100,44,32,49,2,1,179,20,67,178,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,115,116,97,109,112,101,110,45,99,111,111,107,105,101,115,45,104,105,100,101,45,105,110,102,111,114,109,97,116,105,111,110,44,32,121,101,115,2,1,228,34,18,191,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,100,111,109,105,110,111,115,95,99,111,111,107,105,101,115,95,97,99,99,101,112,116,101,100,44,32,49,2,1,254,191,178,0,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,100,101,118,97,95,97,99,99,101,112,116,101,100,44,32,121,101,115,2,1,47,194,160,164,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,95,115,101,116,116,105,110,103,115,44,32,49,2,3,103,123,209,119,203,33,57,68,253,34,198,130,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,44,32,49,2,3,93,170,186,220,206,96,219,158,228,246,217,16,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,109,111,100,97,108,44,32,116,114,117,101,2,1,226,117,120,165,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,110,111,116,105,99,101,44,32,49,2,1,8,199,171,147,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,111,108,105,99,121,95,97,103,114,101,101,109,101,110,116,44,32,116,114,117,101,2,1,75,175,60,217,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,80,111,112,117,112,44,32,49,2,1,77,209,17,42,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,100,105,103,105,98,101,115,116,67,111,111,107,105,101,73,110,102,111,44,32,116,114,117,101,2,1,6,220,40,130,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,101,116,116,105,110,103,115,95,115,116,97,116,117,115,44,32,97,108,108,111,119,2,1,25,95,98,6,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,95,100,117,101,116,95,103,100,112,114,95,97,99,107,110,111,119,108,101,100,103,101,100,44,32,49,2,1,124,156,243,50,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,100,97,105,109,97,110,116,95,99,111,108,108,101,99,116,105,118,101,44,32,97,99,99,101,112,116,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,211,129,194,191,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,110,111,116,105,99,101,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,90,250,144,187,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,98,97,110,110,101,114,44,32,50,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,107,21,31,26,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,50,48,50,51,44,32,97,99,99,101,112,116,2,1,247,55,42,202,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,173,32,237,112,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,111,108,105,99,121,44,32,52,2,4,15,232,223,116,52,240,148,207,89,208,23,177,171,195,192,103,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,115,116,97,110,100,97,114,100,95,103,100,112,114,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,242,129,217,10,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,44,32,116,114,117,101,2,1,142,49,74,57,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,66,97,110,110,101,114,44,32,116,114,117,101,2,1,233,169,94,203,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,116,110,99,111,111,107,105,101,105,110,102,111,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,124,223,116,63,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,97,103,114,101,101,95,119,105,116,104,95,99,111,111,107,105,101,115,44,32,49,2,1,7,97,103,183,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,115,99,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,44,32,116,114,117,101,2,1,156,79,50,19,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,39,198,32,131,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,97,99,99,101,112,116,101,100,44,32,121,101,115,2,1,84,10,42,61,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,65,108,108,44,32,49,2,3,44,203,186,114,68,222,165,20,208,23,68,66,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,104,105,100,101,95,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,44,32,49,2,1,38,41,151,216,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,110,105,99,101,113,117,101,115,116,95,111,112,116,73,110,44,32,49,2,1,24,105,238,35,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,115,104,98,45,99,111,110,115,101,110,116,45,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,6,75,176,81,97,88,245,247,144,135,48,10,203,183,33,125,132,205,146,72,74,250,95,14,162,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,229,129,61,155,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,112,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,75,5,178,120,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,77,101,115,115,97,103,101,68,105,115,109,105,115,115,101,100,44,32,49,2,1,196,80,240,190,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,76,71,95,67,79,79,75,73,69,95,67,79,78,83,69,78,84,44,32,48,2,1,196,80,240,190,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,7,16,108,58,7,18,237,66,82,19,18,157,113,135,250,36,142,142,91,50,22,166,154,88,69,232,50,136,93,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,2,116,0,119,135,171,120,12,104,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,103,97,116,115,98,121,45,112,108,117,103,105,110,45,103,111,111,103,108,101,45,116,97,103,109,97,110,97,103,101,114,44,32,102,97,108,115,101,2,2,16,108,58,7,18,237,66,82,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,119,116,114,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,2,1,197,137,136,240,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,119,116,114,95,99,111,111,107,105,101,115,95,102,117,110,99,116,105,111,110,97,108,44,32,49,2,1,197,137,136,240,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,109,45,112,101,114,115,111,110,97,108,105,122,97,116,105,111,110,44,32,48,2,1,227,22,214,240,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,109,45,109,97,114,107,101,116,105,110,103,44,32,48,2,1,227,22,214,240,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,109,45,97,110,97,108,121,116,105,99,115,44,32,48,2,1,227,22,214,240,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,90,75,139,154,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,116,99,95,114,101,106,101,99,116,101,100,44,32,49,2,2,148,193,37,43,209,220,192,158,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,95,99,111,111,107,105,101,115,95,118,50,44,32,49,2,5,34,86,174,0,61,5,3,94,101,150,144,158,139,156,230,190,234,173,6,192,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,65,99,99,101,112,116,101,100,67,111,111,107,105,101,67,97,116,101,103,111,114,105,101,115,44,32,49,2,2,165,193,121,59,244,98,200,95,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,111,108,105,99,121,95,97,99,107,110,111,119,108,101,100,103,101,109,101,110,116,44,32,116,114,117,101,2,1,55,217,241,32,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,67,111,111,107,105,101,115,44,32,121,101,115,2,1,25,190,38,134,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,44,32,116,114,117,101,2,1,161,55,12,172,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,44,32,116,114,117,101,2,1,133,169,153,127,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,101,117,99,111,110,115,101,110,116,45,98,121,112,97,115,115,44,32,49,2,2,38,157,113,138,182,131,120,119,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,117,115,97,103,101,44,32,121,101,115,2,1,231,9,115,39,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,100,105,115,109,105,115,115,67,111,111,107,105,101,66,97,110,110,101,114,44,32,116,114,117,101,2,2,8,100,191,43,253,116,130,68,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,115,119,105,116,99,104,67,111,111,107,105,101,115,44,32,49,2,1,253,116,130,68,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,98,67,104,101,99,107,101,100,44,32,116,114,117,101,2,4,31,156,8,109,37,70,6,208,64,254,249,12,196,192,198,119,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,105,110,102,111,67,111,111,107,105,101,85,115,101,115,44,32,116,114,117,101,2,1,48,149,154,145,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,45,100,97,116,97,45,118,50,44,32,48,2,1,8,165,250,45,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,65,67,67,69,80,84,69,68,95,67,79,79,75,73,69,83,44,32,116,114,117,101,2,1,86,18,149,139,2,1,56,115,101,116,45,99,111,111,107,105,101,44,32,69,77,82,45,67,111,111,107,105,101,67,111,110,115,101,110,116,45,65,110,97,108,121,116,105,99,97,108,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,229,206,34,56,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,103,101,109,95,99,111,111,107,105,101,115,95,117,115,97,103,101,95,112,114,111,100,117,99,116,105,111,110,44,32,49,2,1,243,19,219,172,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,108,101,118,101,108,44,32,50,2,1,114,153,21,82,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,116,111,117,116,118,95,99,111,111,107,105,101,115,95,117,115,97,103,101,95,112,114,111,100,117,99,116,105,111,110,44,32,49,2,1,42,200,248,140,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,95,101,118,105,100,111,110,95,115,117,112,112,114,101,115,115,95,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,111,107,105,101,44,32,49,2,1,66,98,194,249,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,69,77,82,45,67,111,111,107,105,101,67,111,110,115,101,110,116,45,65,100,118,101,114,116,105,115,105,110,103,44,32,48,2,1,229,206,34,56,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,67,111,111,107,105,101,115,44,32,116,114,117,101,2,2,39,77,108,110,173,61,80,177,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,67,79,79,75,73,69,83,95,78,69,87,65,67,67,69,80,84,69,68,44,32,49,2,1,132,205,106,101,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,101,115,95,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,95,99,108,111,115,101,100,44,32,49,2,1,74,80,70,246,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,98,97,110,110,101,114,45,97,99,99,101,112,116,97,110,99,101,45,115,116,97,116,101,44,32,116,114,117,101,2,1,85,110,233,94,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,115,101,101,110,44,32,49,2,1,244,175,145,246,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,167,112,55,188,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,97,108,108,111,119,101,100,44,32,121,101,115,2,1,4,159,158,6,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,116,114,97,99,107,105,110,103,44,32,48,2,1,68,231,67,180,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,118,97,108,97,109,105,115,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,167,168,215,29,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,118,97,108,97,109,105,115,95,99,111,111,107,105,101,95,109,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,167,168,215,29,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,118,97,108,97,109,105,115,95,99,111,111,107,105,101,95,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,167,168,215,29,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,97,112,112,114,111,118,101,100,99,111,111,107,105,101,115,44,32,110,111,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,150,113,42,126,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,112,115,100,45,103,111,111,103,108,101,45,97,100,115,45,101,110,97,98,108,101,100,44,32,48,2,1,222,166,225,215,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,112,115,100,45,103,116,109,45,97,99,116,105,118,97,116,101,100,44,32,49,2,1,222,166,225,215,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,119,105,115,104,108,105,115,116,45,101,110,97,98,108,101,100,44,32,49,2,1,222,166,225,215,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,73,110,116,101,114,97,99,116,44,32,116,114,117,101,2,1,20,83,229,34,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,98,121,116,101,45,99,111,110,115,101,110,116,45,101,115,115,101,110,116,105,97,108,115,44,32,116,114,117,101,2,1,124,228,57,233,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,98,121,116,101,45,99,111,110,115,101,110,116,45,115,104,111,119,101,100,44,32,116,114,117,101,2,1,124,228,57,233,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,98,121,116,101,45,99,111,110,115,101,110,116,45,115,116,97,116,105,115,116,105,99,115,44,32,102,97,108,115,101,2,1,124,228,57,233,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,98,109,95,97,99,107,110,111,119,108,101,100,103,101,44,32,121,101,115,2,1,6,172,246,73,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,103,101,110,111,118,97,80,114,105,118,97,99,121,79,112,116,105,111,110,115,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,247,76,164,201,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,111,107,44,32,116,114,117,101,2,1,229,161,84,51,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,107,97,108,105,45,99,99,45,97,103,114,101,101,100,44,32,116,114,117,101,2,1,218,240,250,171,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,2,27,125,0,91,202,236,104,122,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,77,97,114,107,101,116,105,110,103,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,2,27,125,0,91,202,236,104,122,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,65,110,97,108,121,116,105,99,97,108,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,2,27,125,0,91,202,236,104,122,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,76,101,118,101,108,44,32,50,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,173,4,250,32,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,65,99,99,101,112,116,101,100,67,111,111,107,105,101,115,44,32,49,2,2,148,186,150,73,174,32,109,165,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,34,155,61,175,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,83,101,101,110,67,111,111,107,105,101,80,111,112,85,112,44,32,121,101,115,2,1,89,155,62,102,2,1,61,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,76,101,118,101,108,44,32,102,108,97,103,109,97,106,111,98,95,97,100,115,95,115,104,111,119,110,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,70,234,21,34,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,18,197,145,223,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,97,99,99,101,112,116,101,100,44,32,49,2,1,49,138,97,98,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,112,114,101,99,109,112,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,190,222,221,40,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,73,115,67,111,111,107,105,101,65,99,99,101,112,116,101,100,44,32,121,101,115,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,45,68,163,213,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,103,97,116,115,98,121,45,103,100,112,114,45,103,111,111,103,108,101,45,116,97,103,109,97,110,97,103,101,114,44,32,116,114,117,101,2,1,189,134,214,185,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,108,101,103,97,108,79,107,44,32,116,114,117,101,2,1,126,233,140,221,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,112,95,99,99,95,115,116,97,116,115,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,8,158,237,157,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,99,112,95,99,99,95,97,100,115,44,32,49,2,1,8,158,237,157,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,44,32,49,2,1,93,95,192,74,2,1,19,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,44,32,49,2,1,83,239,89,104,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,45,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,129,41,241,33,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,115,116,97,116,105,115,116,105,107,44,32,48,2,1,243,145,59,113,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,105,110,102,111,114,109,101,114,45,99,108,111,115,101,44,32,116,114,117,101,2,1,122,44,161,71,2,1,19,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,44,32,48,2,2,38,136,204,5,147,82,66,155,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,114,101,113,117,105,114,101,100,44,32,49,2,1,243,145,59,113,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,114,111,100,111,45,114,101,109,105,110,100,101,114,45,100,105,115,112,108,97,121,101,100,44,32,49,2,2,145,173,167,228,254,128,171,65,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,103,105,118,101,110,44,32,116,114,117,101,2,1,173,137,184,131,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,114,111,100,111,45,109,111,100,97,108,45,100,105,115,112,108,97,121,101,100,44,32,49,2,2,145,173,167,228,254,128,171,65,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,73,78,71,95,71,80,84,44,32,48,2,1,166,254,245,32,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,73,78,71,95,71,80,80,44,32,48,2,1,166,254,245,32,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,112,114,101,102,44,32,49,2,1,190,147,202,79,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,115,104,98,45,99,111,110,115,101,110,116,45,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,135,48,10,203,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,116,101,114,109,111,115,45,97,99,101,105,116,111,115,44,32,111,107,2,1,114,12,14,208,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,117,105,45,116,110,99,45,97,103,114,101,101,100,44,32,116,114,117,101,2,1,149,143,61,160,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,44,32,49,2,72,1,152,70,190,1,164,77,171,4,76,154,187,6,255,22,80,7,213,15,166,9,245,117,74,11,46,180,26,14,5,163,64,22,123,198,164,24,17,175,249,24,250,132,108,27,19,56,203,27,121,172,191,29,20,181,37,32,14,68,180,36,224,64,191,44,189,108,132,46,220,46,237,54,202,7,132,57,239,54,45,63,0,179,114,63,244,62,37,67,173,244,231,73,138,185,227,87,36,202,171,93,9,6,45,94,48,228,128,117,10,54,242,130,16,217,253,134,212,2,243,135,62,192,43,136,85,31,17,139,198,232,53,144,75,60,245,146,40,18,85,147,233,13,217,148,184,62,23,148,184,62,23,148,195,22,181,149,81,224,119,155,65,247,65,159,157,202,24,162,223,147,244,165,45,180,176,167,54,252,120,167,115,179,185,168,235,46,159,169,155,217,135,170,17,48,140,170,127,196,215,176,17,129,17,178,66,61,219,180,128,109,211,185,206,182,120,189,105,11,217,196,109,127,167,202,171,67,251,206,58,192,196,207,21,211,22,209,11,54,203,215,222,121,231,215,228,135,89,219,106,117,173,220,77,184,103,220,166,218,58,222,166,225,215,232,82,204,55,234,215,51,217,241,16,155,184,253,168,192,118,254,1,178,64,254,204,241,151,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,98,118,107,99,111,111,107,105,101,44,32,116,114,117,101,2,1,118,199,67,250,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,228,177,163,230,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,45,118,51,44,32,49,2,1,157,32,130,118,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,44,32,116,114,117,101,2,2,7,239,177,238,186,166,62,102,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,97,99,99,101,112,116,101,100,44,32,121,101,115,2,1,255,161,88,82,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,97,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,85,50,53,54,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,67,77,95,66,65,78,78,69,82,44,32,102,97,108,115,101,2,1,93,44,123,254,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,65,99,99,101,115,115,44,32,49,2,1,84,122,254,109,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,104,105,102,101,95,101,117,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,2,1,143,125,115,249,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,97,99,99,101,112,116,101,100,2,1,142,200,96,59,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,109,105,115,115,105,111,110,95,109,97,114,107,101,116,105,110,103,95,99,111,111,107,105,101,115,44,32,48,2,1,206,58,219,188,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,109,105,115,115,105,111,110,95,115,116,97,116,105,115,116,105,99,95,99,111,111,107,105,101,115,44,32,48,2,1,206,58,219,188,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,109,105,115,115,105,111,110,95,102,117,110,107,116,105,111,110,97,108,95,99,111,111,107,105,101,115,44,32,49,2,1,206,58,219,188,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,44,32,49,2,1,206,58,219,188,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,197,208,123,68,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,44,32,100,101,110,121,2,1,100,187,227,180,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,101,112,111,108,101,95,99,111,111,107,105,101,115,95,115,101,116,116,105,110,103,115,44,32,116,114,117,101,2,1,6,203,100,215,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,100,111,112,116,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,148,196,25,199,2,1,57,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,45,115,116,97,116,101,109,101,110,116,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,217,145,9,58,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,108,111,99,97,108,101,115,44,32,116,114,117,101,2,1,200,175,57,100,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,111,111,101,95,99,111,111,107,105,101,95,112,111,108,105,99,121,95,97,99,99,101,112,116,101,100,44,32,110,111,2,1,36,219,99,49,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,95,99,111,111,107,105,101,44,32,49,2,3,62,22,92,71,86,191,224,103,153,22,37,234,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,117,115,95,110,101,119,44,32,49,2,11,6,193,120,83,17,198,123,130,43,117,162,13,60,0,116,199,74,88,252,224,85,78,24,17,85,170,58,205,145,38,175,123,166,60,122,117,171,43,67,30,255,178,75,200,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,95,97,99,99,101,112,116,67,111,111,107,105,101,115,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,192,8,209,14,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,95,114,101,105,102,102,45,99,111,110,115,101,110,116,45,99,111,111,107,105,101,44,32,121,101,115,2,1,234,227,170,249,2,1,21,115,101,116,45,99,111,111,107,105,101,44,32,115,110,99,45,99,112,44,32,49,2,1,125,82,98,52,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,178,39,125,91,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,40,116,127,165,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,114,101,113,117,105,114,101,100,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,190,246,102,103,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,105,115,82,101,97,100,67,111,111,107,105,101,80,111,108,105,99,121,68,78,84,65,97,44,32,116,114,117,101,2,2,185,59,18,131,228,125,216,129,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,67,111,111,107,105,101,115,44,32,116,114,117,101,2,4,1,209,59,140,98,208,150,221,101,24,8,62,244,128,28,77,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,109,117,98,105,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,97,108,108,111,119,2,1,148,184,120,215,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,105,115,82,101,97,100,67,111,111,107,105,101,80,111,108,105,99,121,68,78,84,44,32,89,101,115,2,2,185,59,18,131,228,125,216,129,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,99,101,45,99,111,111,107,105,101,44,32,78,2,1,177,45,107,233,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,101,100,44,32,49,2,1,25,100,151,84,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,101,100,44,32,102,97,108,115,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,7,2,135,69,246,30,47,20,160,39,221,234,238,113,59,198,21,167,236,182,246,186,11,82,193,234,35,208,83,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,85,115,101,114,67,111,111,107,105,101,76,101,118,101,108,44,32,49,2,4,15,120,72,239,137,78,187,228,175,46,254,30,215,218,170,248,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,115,97,116,95,116,114,97,99,107,44,32,102,97,108,115,101,2,1,37,175,73,98,2,1,19,115,101,116,45,99,111,111,107,105,101,44,32,82,111,100,111,44,32,49,2,1,57,46,255,147,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,111,110,44,32,49,2,1,57,46,255,147,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,95,99,111,111,107,105,101,44,32,102,97,108,115,101,2,1,129,34,102,32,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,51,76,77,45,67,111,111,107,105,101,44,32,102,97,108,115,101,2,1,28,241,11,152,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,105,95,115,99,95,97,44,32,102,97,108,115,101,2,1,130,215,55,202,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,105,95,99,109,95,97,44,32,102,97,108,115,101,2,1,130,215,55,202,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,105,95,99,95,97,44,32,116,114,117,101,2,1,130,215,55,202,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,109,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,162,67,88,73,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,102,117,110,99,116,105,111,110,97,108,44,32,116,114,117,101,2,1,162,67,88,73,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,112,114,101,102,101,114,101,110,99,101,115,44,32,102,97,108,115,101,2,1,162,67,88,73,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,95,95,99,102,95,103,100,112,114,95,97,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,236,129,100,236,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,51,116,45,99,111,111,107,105,101,115,45,101,115,115,101,110,116,105,97,108,44,32,49,2,1,67,215,11,55,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,51,116,45,99,111,111,107,105,101,115,45,102,117,110,99,116,105,111,110,97,108,44,32,49,2,1,67,215,11,55,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,51,116,45,99,111,111,107,105,101,115,45,112,101,114,102,111,114,109,97,110,99,101,44,32,48,2,1,67,215,11,55,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,51,116,45,99,111,111,107,105,101,115,45,115,111,99,105,97,108,44,32,48,2,1,67,215,11,55,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,95,99,111,111,107,105,101,115,95,109,97,114,107,101,116,105,110,103,44,32,48,2,1,121,61,154,225,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,95,99,111,111,107,105,101,115,95,116,114,97,99,107,105,110,103,44,32,48,2,1,121,61,154,225,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,114,111,109,112,116,95,100,105,115,109,105,115,115,101,100,44,32,49,2,1,121,61,154,225,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,101,110,97,98,108,101,100,44,32,49,2,1,121,61,154,225,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,65,170,86,74,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,97,110,97,108,121,116,105,99,115,44,32,48,2,1,65,170,86,74,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,99,45,115,101,116,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,7,253,249,174,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,67,111,111,107,105,101,115,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,44,37,196,127,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,114,103,112,45,103,100,112,114,45,112,111,108,105,99,121,44,32,49,2,1,255,242,15,158,2,1,55,115,101,116,45,99,111,111,107,105,101,44,32,106,116,45,106,111,98,115,101,101,107,101,114,45,103,100,112,114,45,98,97,110,110,101,114,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,198,123,130,116,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,45,97,110,97,108,121,116,105,99,115,44,32,110,111,2,1,24,231,223,95,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,45,109,97,114,107,101,116,105,110,103,44,32,110,111,2,1,24,231,223,95,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,119,105,116,104,105,110,103,115,95,99,111,111,107,105,101,99,111,110,115,101,110,116,95,100,105,115,109,105,115,115,101,100,44,32,49,2,1,23,70,109,85,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,97,100,118,101,114,116,105,115,105,110,103,44,32,102,97,108,115,101,2,1,23,70,109,85,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,105,115,116,105,99,115,44,32,102,97,108,115,101,2,1,23,70,109,85,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,105,115,116,105,99,115,44,32,32,110,111,2,1,197,140,186,73,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,101,115,115,101,110,116,105,97,108,44,32,121,101,115,2,1,197,140,186,73,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,114,101,102,101,114,101,110,99,101,44,32,49,2,1,172,163,241,162,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,67,80,95,69,83,83,69,78,84,73,65,76,44,32,49,2,1,5,205,206,190,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,67,80,95,80,82,69,70,69,82,69,78,67,69,83,44,32,49,2,1,5,205,206,190,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,97,109,99,111,111,107,105,101,95,97,108,108,111,119,101,100,44,32,49,2,10,4,98,167,39,31,64,254,16,59,89,86,239,75,173,236,129,78,238,102,14,96,124,233,164,111,59,243,125,131,142,112,90,158,186,231,66,229,222,127,24,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,112,99,95,97,110,97,108,105,116,105,99,97,95,98,105,122,107,97,105,97,44,32,102,97,108,115,101,2,1,122,89,161,241,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,112,99,95,112,114,101,102,101,114,101,110,99,105,97,115,95,98,105,122,107,97,105,97,44,32,116,114,117,101,2,1,122,89,161,241,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,112,99,95,116,101,99,110,105,99,97,115,95,98,105,122,107,97,105,97,44,32,116,114,117,101,2,1,122,89,161,241,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,103,100,114,112,95,112,111,112,117,112,95,115,104,111,119,101,100,44,32,49,2,1,22,180,109,126,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,45,116,101,99,104,110,105,99,97,108,44,32,121,101,115,2,1,24,231,223,95,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,116,114,97,99,107,105,110,103,95,99,111,111,107,105,101,44,32,49,2,1,36,214,194,159,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,44,32,49,2,1,232,209,219,157,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,103,114,111,117,112,95,116,101,99,104,110,105,99,97,108,44,32,49,2,1,232,209,219,157,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,95,114,101,110,101,119,49,48,44,32,49,2,1,232,209,219,157,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,112,99,50,51,52,57,55,56,49,50,50,51,50,49,50,51,52,44,32,49,2,1,23,179,122,52,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,107,95,112,114,101,102,95,97,108,108,44,32,49,2,1,112,7,104,90,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,79,78,67,79,83,85,82,67,79,79,75,44,32,50,2,1,35,68,223,98,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,193,131,199,180,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,83,101,101,110,67,111,111,107,105,101,68,105,115,99,108,111,115,117,114,101,44,32,116,114,117,101,2,1,48,201,164,193,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,82,89,95,67,79,79,75,73,69,95,67,79,78,83,69,78,84,44,32,116,114,117,101,2,1,97,237,102,250,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,67,79,79,75,73,69,95,67,79,78,83,69,78,84,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,4,4,240,99,92,41,53,115,1,65,206,136,151,69,64,139,144,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,67,79,79,75,73,69,95,83,84,65,84,73,67,44,32,102,97,108,115,101,2,4,4,240,99,92,41,53,115,1,65,206,136,151,69,64,139,144,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,67,79,79,75,73,69,95,77,65,82,75,69,84,73,78,71,44,32,102,97,108,115,101,2,4,4,240,99,92,41,53,115,1,65,206,136,151,69,64,139,144,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,254,43,107,187,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,118,105,100,101,111,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,254,43,107,187,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,109,102,111,114,116,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,254,43,107,187,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,2,2,80,185,243,238,94,78,62,84,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,102,102,95,99,111,111,107,105,101,95,110,111,116,105,99,101,44,32,49,2,1,116,34,213,75,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,114,105,115,45,99,111,111,107,105,101,45,109,115,103,44,32,49,2,1,19,216,35,77,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,95,103,111,111,103,108,101,95,95,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,128,157,1,50,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,95,102,97,99,101,98,111,111,107,95,95,115,111,99,105,97,108,44,32,102,97,108,115,101,2,1,128,157,1,50,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,95,100,101,112,111,112,95,95,102,117,110,99,116,105,111,110,97,108,44,32,116,114,117,101,2,1,128,157,1,50,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,31,155,145,230,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,66,97,110,110,101,114,65,99,99,101,112,116,101,100,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,122,15,54,177,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,77,115,103,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,100,2,207,108,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,116,114,117,101,2,5,88,245,150,88,116,167,110,237,158,30,28,171,219,55,84,191,229,65,42,76,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,98,122,95,115,101,111,95,99,104,111,111,115,101,110,44,32,49,2,1,111,199,195,231,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,149,53,170,250,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,107,44,32,49,44,32,32,44,32,114,101,108,111,97,100,44,32,49,2,1,61,230,124,9,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,65,82,69,95,68,83,71,86,79,95,80,82,69,70,69,82,69,78,67,69,83,95,83,85,66,77,73,84,84,69,68,44,32,116,114,117,101,2,1,220,11,135,142,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,100,115,103,118,111,95,99,111,110,115,101,110,116,44,32,49,2,1,234,53,123,9,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,101,102,105,108,101,45,99,111,111,107,105,101,110,97,109,101,45,50,56,44,32,49,2,1,150,209,199,125,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,101,102,105,108,101,45,99,111,111,107,105,101,110,97,109,101,45,55,52,44,32,49,2,1,200,229,74,99,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,111,108,105,99,121,95,99,108,111,115,101,100,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,147,34,247,103,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,103,118,67,111,111,107,105,101,67,111,110,115,101,110,116,65,99,99,101,112,116,44,32,49,44,32,114,101,108,111,97,100,44,32,44,49,2,1,154,207,171,125,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,69,115,115,101,110,116,105,97,108,44,32,49,2,1,55,41,210,2,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,98,97,121,112,111,108,95,98,97,110,110,101,114,44,32,116,114,117,101,2,1,191,184,223,189,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,110,97,103,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,146,103,190,240,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,98,97,121,112,111,108,95,102,117,110,99,116,105,111,110,97,108,44,32,116,114,117,101,2,1,191,184,223,189,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,79,75,2,1,166,60,238,192,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,86,50,44,32,89,69,83,2,1,187,218,225,21,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,66,77,95,65,100,118,101,114,116,105,115,105,110,103,44,32,102,97,108,115,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,16,10,78,145,86,15,235,67,169,19,172,79,15,24,155,236,108,26,173,135,161,46,117,89,18,91,148,181,182,112,0,40,162,125,40,205,2,132,81,214,36,135,220,174,196,144,159,197,195,147,237,107,127,147,237,107,127,152,202,49,87,195,255,151,31,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,66,77,95,85,115,101,114,95,69,120,112,101,114,105,101,110,99,101,44,32,116,114,117,101,2,16,10,78,145,86,15,235,67,169,19,172,79,15,24,155,236,108,26,173,135,161,46,117,89,18,91,148,181,182,112,0,40,162,125,40,205,2,132,81,214,36,135,220,174,196,144,159,197,195,147,237,107,127,147,237,107,127,152,202,49,87,195,255,151,31,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,66,77,95,65,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,16,10,78,145,86,15,235,67,169,19,172,79,15,24,155,236,108,26,173,135,161,46,117,89,18,91,148,181,182,112,0,40,162,125,40,205,2,132,81,214,36,135,220,174,196,144,159,197,195,147,237,107,127,147,237,107,127,152,202,49,87,195,255,151,31,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,68,109,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,20,1,160,37,146,7,164,170,145,23,216,107,42,25,192,165,216,33,10,112,6,36,251,112,100,40,255,211,106,51,58,96,67,51,193,187,34,59,66,145,48,78,170,72,182,93,24,17,210,95,177,160,47,102,13,140,70,152,41,39,12,185,245,43,208,200,191,255,213,237,31,183,188,252,171,103,59,252,171,103,59,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,68,109,67,111,111,107,105,101,115,77,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,20,1,160,37,146,7,164,170,145,23,216,107,42,25,192,165,216,33,10,112,6,36,251,112,100,40,255,211,106,51,58,96,67,51,193,187,34,59,66,145,48,78,170,72,182,93,24,17,210,95,177,160,47,102,13,140,70,152,41,39,12,185,245,43,208,200,191,255,213,237,31,183,188,252,171,103,59,252,171,103,59,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,68,109,67,111,111,107,105,101,115,65,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,20,1,160,37,146,7,164,170,145,23,216,107,42,25,192,165,216,33,10,112,6,36,251,112,100,40,255,211,106,51,58,96,67,51,193,187,34,59,66,145,48,78,170,72,182,93,24,17,210,95,177,160,47,102,13,140,70,152,41,39,12,185,245,43,208,200,191,255,213,237,31,183,188,252,171,103,59,252,171,103,59,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,116,121,112,101,115,44,32,79,75,2,1,92,81,18,11,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,115,101,116,116,105,110,103,44,32,79,75,44,32,44,32,114,101,108,111,97,100,44,32,49,2,2,5,233,104,211,51,123,194,146,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,97,99,99,101,112,116,115,95,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,178,215,136,169,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,97,103,114,101,101,100,44,32,52,2,1,169,183,70,201,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,114,97,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,49,49,45,48,53,45,50,48,50,50,44,32,116,114,117,101,2,1,128,47,248,183,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,77,97,116,111,109,111,44,32,116,114,117,101,2,1,172,87,11,231,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,117,115,101,114,95,97,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,34,136,112,82,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,85,66,73,95,80,82,73,86,65,67,89,95,80,79,76,73,67,89,95,65,67,67,69,80,84,69,68,44,32,116,114,117,101,2,1,92,54,93,177,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,85,66,73,95,80,82,73,86,65,67,89,95,80,79,76,73,67,89,95,86,73,69,87,69,68,44,32,116,114,117,101,2,1,92,54,93,177,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,85,66,73,95,80,82,73,86,65,67,89,95,86,73,68,95,79,80,84,79,85,84,44,32,102,97,108,115,101,2,1,92,54,93,177,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,85,66,73,95,80,82,73,86,65,67,89,95,86,73,68,69,79,95,79,80,84,79,85,84,44,32,102,97,108,115,101,2,1,92,54,93,177,2,1,60,115,101,116,45,99,111,111,107,105,101,44,32,66,82,73,84,73,83,72,65,73,82,87,65,89,83,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,77,79,68,65,76,95,86,73,69,87,69,68,44,32,49,2,2,105,177,75,109,194,197,251,35,2,1,60,115,101,116,45,99,111,111,107,105,101,44,32,66,82,73,84,73,83,72,65,73,82,87,65,89,83,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,77,79,68,65,76,95,76,79,65,68,69,68,44,32,49,2,2,105,177,75,109,194,197,251,35,2,1,61,115,101,116,45,99,111,111,107,105,101,44,32,66,82,73,84,73,83,72,65,73,82,87,65,89,83,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,66,65,78,78,69,82,95,76,79,65,68,69,68,44,32,49,2,2,105,177,75,109,194,197,251,35,2,1,61,115,101,116,45,99,111,111,107,105,101,44,32,66,82,73,84,73,83,72,65,73,82,87,65,89,83,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,66,65,78,78,69,82,95,86,73,69,87,69,68,44,32,49,2,2,105,177,75,109,194,197,251,35,2,1,58,115,101,116,45,99,111,111,107,105,101,44,32,66,82,73,84,73,83,72,65,73,82,87,65,89,83,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,70,117,110,99,116,105,111,110,97,108,44,32,49,2,2,105,177,75,109,194,197,251,35,2,1,57,115,101,116,45,99,111,111,107,105,101,44,32,66,82,73,84,73,83,72,65,73,82,87,65,89,83,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,77,97,114,107,101,116,105,110,103,44,32,48,2,2,105,177,75,109,194,197,251,35,2,1,57,115,101,116,45,99,111,111,107,105,101,44,32,66,82,73,84,73,83,72,65,73,82,87,65,89,83,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,65,110,97,108,121,116,105,99,115,44,32,48,2,2,105,177,75,109,194,197,251,35,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,65,82,69,95,70,85,78,67,84,73,79,78,65,76,95,67,79,79,75,73,69,83,95,65,67,67,69,80,84,69,68,44,32,116,114,117,101,2,2,26,234,14,247,45,28,152,110,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,65,82,69,95,77,65,82,75,69,84,73,78,71,95,67,79,79,75,73,69,83,95,65,67,67,69,80,84,69,68,44,32,116,114,117,101,2,2,26,234,14,247,45,28,152,110,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,65,82,69,95,82,69,81,85,73,82,69,68,95,67,79,79,75,73,69,83,95,65,67,67,69,80,84,69,68,44,32,116,114,117,101,2,2,26,234,14,247,45,28,152,110,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,72,65,83,95,67,79,79,75,73,69,83,95,70,79,82,77,95,83,72,79,87,69,68,44,32,116,114,117,101,2,1,26,234,14,247,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,95,102,117,110,99,116,105,111,110,97,108,44,32,121,101,115,2,1,58,92,30,33,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,95,109,97,114,107,101,116,105,110,103,44,32,110,111,2,1,58,92,30,33,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,95,116,104,101,95,99,111,111,107,105,101,44,32,121,101,115,2,1,58,92,30,33,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,118,105,115,105,116,101,100,44,32,116,114,117,101,2,1,58,92,30,33,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,100,114,99,111,111,107,105,101,44,32,116,114,117,101,2,1,58,92,30,33,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,119,101,100,95,99,111,111,107,105,101,95,105,110,102,111,44,32,49,2,1,111,21,168,199,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,111,30,145,69,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,77,101,115,115,97,103,101,72,105,100,101,44,32,116,114,117,101,2,1,126,203,225,204,2,1,17,115,101,116,45,99,111,111,107,105,101,44,32,115,113,44,32,48,2,1,148,186,25,221,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,110,111,116,105,99,101,95,112,114,101,102,101,114,101,110,99,101,115,44,32,50,2,36,0,0,172,144,3,127,238,110,6,10,232,162,7,236,55,34,16,68,96,128,20,210,155,179,21,127,55,96,29,248,224,186,34,164,217,85,38,80,33,63,73,178,240,77,83,254,0,96,87,200,247,70,101,34,217,68,127,109,233,244,129,25,115,121,141,39,104,22,143,157,226,151,144,244,229,15,150,133,192,136,152,59,11,173,154,197,97,224,156,18,39,182,159,154,195,195,162,127,244,0,168,98,136,192,171,26,82,178,173,40,170,137,173,206,31,175,184,116,197,190,185,101,114,144,196,141,197,203,202,76,187,112,202,254,247,233,229,163,198,99,250,251,160,174,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,97,108,108,44,32,49,2,1,56,36,131,109,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,101,98,95,99,111,111,107,105,101,95,97,103,114,101,101,95,48,49,50,52,44,32,49,2,1,209,104,148,22,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,80,111,108,105,99,121,50,48,50,49,49,49,48,49,44,32,49,2,1,239,224,130,166,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,115,99,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,148,198,46,216,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,111,108,105,99,121,95,97,103,114,101,101,109,101,110,116,44,32,116,114,117,101,2,3,70,22,108,92,106,186,75,59,122,239,109,222,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,109,97,114,107,101,116,105,110,103,95,99,111,111,107,105,101,95,97,107,107,111,111,114,100,44,32,48,2,1,130,16,89,136,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,115,105,116,101,95,99,111,111,107,105,101,95,97,107,107,111,111,114,100,44,32,49,2,1,130,16,89,136,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,99,112,97,45,110,111,116,105,99,101,45,118,105,101,119,101,100,45,48,50,44,32,116,114,117,101,2,1,72,3,129,234,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,121,101,115,2,1,243,128,116,31,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,4,75,60,185,220,103,6,15,161,107,252,187,28,253,246,48,195,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,95,99,111,111,107,105,101,115,44,32,48,2,3,3,222,30,178,89,107,236,82,104,151,163,7,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,97,99,99,101,112,116,101,100,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,3,3,222,30,178,89,107,236,82,104,151,163,7,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,116,114,97,99,107,105,110,103,95,99,111,111,107,105,101,115,44,32,48,2,3,3,222,30,178,89,107,236,82,104,151,163,7,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,97,100,118,101,114,116,105,115,101,109,101,110,116,45,97,103,101,45,115,104,111,119,45,97,108,99,111,104,111,108,44,32,102,97,108,115,101,2,3,3,222,30,178,89,107,236,82,104,151,163,7,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,97,100,118,101,114,116,105,115,101,109,101,110,116,45,97,103,101,45,115,104,111,119,45,103,97,109,98,108,101,44,32,102,97,108,115,101,2,3,3,222,30,178,89,107,236,82,104,151,163,7,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,105,98,101,46,97,99,99,101,112,116,101,100,67,111,111,107,105,101,44,32,116,114,117,101,2,1,222,132,201,144,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,80,111,108,105,99,121,44,32,116,114,117,101,2,1,108,166,242,75,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,158,30,28,171,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,67,108,111,115,101,100,44,32,116,114,117,101,2,1,222,175,3,107,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,80,114,105,118,97,99,121,44,32,102,97,108,115,101,2,1,26,208,215,68,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,95,116,118,115,80,114,105,118,97,99,121,44,32,116,114,117,101,2,1,46,75,201,234,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,101,112,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,19,0,32,150,84,13,140,145,130,33,147,195,54,46,27,39,204,57,113,138,205,62,30,115,115,94,142,11,23,105,37,27,134,107,23,3,108,155,97,30,170,178,233,194,131,195,18,65,21,212,207,66,193,234,205,230,232,234,241,160,145,235,97,236,31,236,37,128,191,240,237,90,77,253,97,77,202,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,114,111,121,97,108,111,97,107,84,101,114,109,115,67,111,111,107,105,101,44,32,49,2,1,31,7,18,162,2,1,63,115,101,116,45,99,111,111,107,105,101,44,32,105,115,95,97,108,108,111,119,101,100,95,99,108,105,101,110,116,95,116,114,97,107,105,110,103,95,110,105,101,122,98,101,100,110,101,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,2,95,247,107,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,105,110,116,114,111,44,32,116,114,117,101,2,1,158,97,184,166,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,83,101,101,110,67,111,111,107,105,101,66,97,114,44,32,116,114,117,101,2,1,148,201,137,108,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,112,97,99,99,112,116,101,100,44,32,116,114,117,101,2,1,75,5,178,120,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,65,108,108,111,119,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,148,201,137,108,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,51,2,1,50,57,69,248,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,111,112,116,79,117,116,115,84,111,117,99,104,101,100,44,32,116,114,117,101,2,1,14,221,41,82,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,111,112,116,79,117,116,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,14,221,41,82,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,0,98,117,92,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,100,105,115,109,105,115,115,97,108,44,32,116,114,117,101,2,1,253,242,131,140,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,67,111,111,107,105,101,65,99,99,101,112,116,101,100,44,32,48,2,1,167,16,219,24,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,65,99,99,101,112,116,101,100,44,32,48,2,1,167,16,219,24,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,117,101,118,50,46,103,103,44,32,116,114,117,101,2,1,113,91,244,95,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,99,108,111,115,101,78,111,116,105,102,105,99,97,116,105,111,110,65,98,111,117,116,67,111,111,107,105,101,44,32,116,114,117,101,2,1,183,15,255,5,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,95,99,111,111,107,105,101,44,32,49,2,2,9,247,9,189,148,180,167,208,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,111,108,105,99,121,44,32,116,114,117,101,2,1,7,31,179,41,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,102,105,103,115,104,97,114,101,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,93,0,209,9,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,98,105,116,115,111,95,99,99,44,32,49,2,1,126,23,50,87,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,101,103,95,97,115,107,101,100,44,32,49,2,1,229,59,80,214,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,65,99,99,101,112,116,75,101,107,115,105,116,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,2,128,39,131,236,253,139,127,153,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,112,114,101,102,44,32,116,114,117,101,2,1,70,34,52,148,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,110,97,108,121,116,99,115,44,32,102,97,108,115,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,58,207,9,133,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,44,32,116,114,117,101,2,1,58,207,9,133,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,100,104,108,45,119,101,98,97,112,112,45,116,114,97,99,107,44,32,97,108,108,111,119,101,100,2,2,67,203,105,119,109,234,120,8,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,117,115,44,32,49,2,1,74,31,220,129,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,80,86,72,95,67,79,79,75,73,69,83,95,71,68,80,82,44,32,65,99,99,101,112,116,2,27,4,211,70,19,23,39,63,60,36,44,150,204,40,160,57,139,49,214,49,117,51,239,231,92,52,22,9,246,57,34,126,39,76,242,194,162,77,65,140,87,81,221,227,125,94,89,105,107,101,63,62,102,130,25,28,205,136,32,52,38,156,219,214,38,158,34,82,4,188,230,247,171,189,13,198,197,199,154,133,188,211,32,26,173,213,140,152,2,219,234,26,122,220,244,135,81,236,44,189,59,241,147,125,138,251,11,116,119,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,80,86,72,95,67,79,79,75,73,69,83,95,71,68,80,82,95,83,79,67,73,65,76,77,69,68,73,65,44,32,82,101,106,101,99,116,2,27,4,211,70,19,23,39,63,60,36,44,150,204,40,160,57,139,49,214,49,117,51,239,231,92,52,22,9,246,57,34,126,39,76,242,194,162,77,65,140,87,81,221,227,125,94,89,105,107,101,63,62,102,130,25,28,205,136,32,52,38,156,219,214,38,158,34,82,4,188,230,247,171,189,13,198,197,199,154,133,188,211,32,26,173,213,140,152,2,219,234,26,122,220,244,135,81,236,44,189,59,241,147,125,138,251,11,116,119,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,80,86,72,95,67,79,79,75,73,69,83,95,71,68,80,82,95,65,78,65,76,89,84,73,67,83,44,32,82,101,106,101,99,116,2,27,4,211,70,19,23,39,63,60,36,44,150,204,40,160,57,139,49,214,49,117,51,239,231,92,52,22,9,246,57,34,126,39,76,242,194,162,77,65,140,87,81,221,227,125,94,89,105,107,101,63,62,102,130,25,28,205,136,32,52,38,156,219,214,38,158,34,82,4,188,230,247,171,189,13,198,197,199,154,133,188,211,32,26,173,213,140,152,2,219,234,26,122,220,244,135,81,236,44,189,59,241,147,125,138,251,11,116,119,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,2,1,150,243,155,240,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,111,102,100,98,95,119,101,114,98,117,110,103,44,32,89,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,27,114,24,95,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,2,1,169,123,186,237,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,83,84,65,103,114,101,101,109,101,110,116,44,32,49,2,1,73,159,198,35,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,116,99,58,100,105,115,109,105,115,115,101,120,105,116,105,110,116,101,110,116,112,111,112,117,112,44,32,116,114,117,101,2,1,150,195,125,111,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,102,117,110,99,116,105,111,110,97,108,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,150,227,143,134,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,116,101,110,116,80,101,114,115,111,110,97,108,105,115,97,116,105,111,110,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,150,227,143,134,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,109,97,114,107,101,116,105,110,103,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,150,227,143,134,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,115,116,97,116,105,115,116,105,99,97,108,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,150,227,143,134,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,115,44,32,101,115,115,101,110,116,105,97,108,2,1,166,200,62,18,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,118,105,101,119,101,100,95,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,121,101,115,44,32,44,32,114,101,108,111,97,100,44,32,49,2,80,0,46,200,168,0,63,255,95,0,192,4,165,1,162,170,250,15,126,94,46,15,222,186,92,16,34,215,172,17,115,97,220,26,250,204,198,30,92,83,250,32,253,76,236,45,188,160,248,48,151,169,194,50,9,217,17,56,84,18,172,56,230,234,135,57,7,145,215,61,84,76,208,70,165,121,209,77,41,136,15,77,104,62,87,83,34,73,92,89,227,194,92,91,224,136,101,93,68,151,71,94,69,35,238,95,144,100,115,98,148,10,200,101,149,178,206,102,103,140,131,113,227,127,72,114,108,238,122,117,24,103,153,117,238,225,194,122,44,113,49,122,160,33,170,122,252,80,217,124,108,218,228,127,44,218,157,131,54,114,250,133,14,84,11,133,98,78,43,133,164,171,61,135,11,68,42,136,205,163,11,141,174,139,13,141,207,204,85,143,237,23,210,147,208,219,158,150,140,120,13,151,190,29,220,152,198,196,31,153,177,59,195,157,36,206,194,157,87,80,13,160,39,209,234,165,41,3,105,166,143,177,193,169,116,171,99,171,11,45,125,172,34,119,2,175,75,84,73,177,222,182,113,185,240,239,23,186,89,60,187,186,140,97,66,193,195,61,66,195,217,59,188,196,76,0,243,198,209,13,149,223,160,209,54,226,79,21,68,227,3,160,20,229,139,185,151,229,236,182,236,233,15,99,69,243,100,95,79,252,39,40,124,254,69,220,108,255,55,30,198,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,102,117,110,99,116,105,111,110,97,108,44,32,121,101,115,2,13,0,46,200,168,48,151,169,194,89,227,194,92,93,68,151,71,95,144,100,115,98,148,10,200,117,238,225,194,133,98,78,43,153,177,59,195,157,36,206,194,172,34,119,2,193,195,61,66,233,15,99,69,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,110,101,99,101,115,115,97,114,121,44,32,121,101,115,2,19,0,46,200,168,48,151,169,194,61,84,76,208,83,34,73,92,89,227,194,92,93,68,151,71,95,144,100,115,98,148,10,200,117,238,225,194,133,98,78,43,135,11,68,42,153,177,59,195,157,36,206,194,157,36,206,194,171,11,45,125,172,34,119,2,177,222,182,113,193,195,61,66,233,15,99,69,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,110,111,110,45,110,101,99,101,115,115,97,114,121,44,32,110,111,2,2,135,11,68,42,171,11,45,125,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,97,100,118,101,114,116,105,115,101,109,101,110,116,44,32,110,111,2,7,83,34,73,92,98,148,10,200,153,177,59,195,157,36,206,194,172,34,119,2,177,222,182,113,195,217,59,188,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,97,100,118,101,114,116,105,115,101,109,101,110,116,44,32,121,101,115,2,1,233,15,99,69,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,97,110,97,108,121,116,105,99,115,44,32,110,111,2,6,98,148,10,200,153,177,59,195,157,36,206,194,172,34,119,2,177,222,182,113,233,15,99,69,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,112,101,114,102,111,114,109,97,110,99,101,44,32,110,111,2,6,98,148,10,200,153,177,59,195,157,36,206,194,172,34,119,2,177,222,182,113,233,15,99,69,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,109,97,114,107,107,105,110,111,105,110,116,105,44,32,110,111,2,1,61,84,76,208,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,116,105,108,97,115,116,111,105,110,116,105,44,32,110,111,2,1,61,84,76,208,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,115,104,58,99,111,111,107,105,101,115,45,111,116,104,101,114,44,32,102,97,108,115,101,2,1,250,185,41,202,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,115,104,58,99,111,111,107,105,101,115,45,115,101,101,110,44,32,116,114,117,101,2,1,250,185,41,202,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,115,104,58,99,111,111,107,105,101,115,45,115,111,99,105,97,108,44,32,116,114,117,101,2,1,250,185,41,202,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,65,108,108,111,119,101,100,44,32,102,97,108,115,101,2,1,58,103,70,90,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,67,111,110,115,101,110,116,101,100,80,72,44,32,110,111,2,1,21,122,163,3,2,1,70,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,98,117,110,113,58,67,111,111,107,105,101,67,111,110,115,101,110,116,83,116,111,114,101,58,105,115,66,97,110,110,101,114,86,105,115,105,98,108,101,44,32,102,97,108,115,101,2,1,2,63,189,46,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,101,100,45,99,111,111,107,105,101,115,44,32,91,93,2,1,30,48,72,205,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,112,112,95,103,100,112,114,95,99,111,110,115,101,110,116,44,32,49,2,1,95,203,85,150,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,108,114,101,97,100,121,65,99,99,101,112,116,67,111,111,107,105,101,44,32,116,114,117,101,2,1,186,16,99,235,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,105,115,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,242,88,19,184,2,1,34,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,99,111,111,107,105,101,115,44,32,110,111,2,1,55,233,228,71,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,29,7,62,141,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,112,114,111,109,112,116,95,116,105,109,101,115,44,32,49,2,1,148,195,154,93,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,108,97,115,116,95,112,114,111,109,112,116,95,116,105,109,101,44,32,49,2,1,148,195,154,93,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,117,112,95,103,100,112,114,95,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,2,1,116,137,198,61,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,103,100,112,114,95,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,2,1,116,137,198,61,2,1,32,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,110,44,32,116,114,117,101,2,1,174,222,214,246,2,1,40,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,115,101,110,116,95,112,111,112,117,112,44,32,49,2,1,2,74,239,45,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,67,79,79,75,73,69,95,67,79,78,83,69,78,84,44,32,102,97,108,115,101,2,1,89,132,115,33,2,1,58,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,101,99,108,105,110,101,100,45,118,101,114,115,105,111,110,44,32,49,2,1,42,176,120,23,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,68,111,45,110,111,116,45,115,104,97,114,101,44,32,116,114,117,101,2,1,231,203,142,14,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,108,108,111,119,45,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,231,203,142,14,2,1,90,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,95,95,112,104,95,111,112,116,95,105,110,95,111,117,116,95,112,104,99,95,57,97,83,68,98,74,67,97,68,85,77,100,90,100,72,120,120,77,80,84,118,99,106,55,65,57,102,115,108,51,109,67,103,77,49,82,66,80,109,80,115,108,55,44,32,48,2,1,248,127,218,26,2,1,62,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,104,111,117,108,100,95,100,105,115,112,108,97,121,95,99,111,111,107,105,101,95,98,97,110,110,101,114,95,118,50,44,32,102,97,108,115,101,2,1,128,155,14,235,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,122,111,114,97,45,100,105,115,99,111,118,101,114,45,49,52,45,48,51,45,50,51,44,32,102,97,108,115,101,2,1,37,138,239,191,2,1,58,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,110,101,99,116,45,119,97,108,108,101,116,45,108,101,103,97,108,45,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,128,155,14,235,2,1,37,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,77,105,110,44,32,49,2,1,129,213,136,239,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,44,32,49,2,1,51,227,31,197,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,98,45,97,99,99,101,112,116,45,99,111,111,107,105,101,44,32,116,114,117,101,2,1,201,187,232,90,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,44,32,102,97,108,115,101,2,2,14,40,59,12,130,125,32,164,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,155,25,90,31,2,1,37,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,78,89,23,120,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,82,79,67,85,77,69,78,84,83,46,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,143,133,126,164,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,115,104,58,99,111,111,107,105,101,115,45,111,116,104,101,114,44,32,102,97,108,115,101,2,1,244,76,165,237,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,115,104,58,99,111,111,107,105,101,115,45,115,101,101,110,44,32,116,114,117,101,2,1,244,76,165,237,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,115,104,58,99,111,111,107,105,101,115,45,115,111,99,105,97,108,44,32,116,114,117,101,2,1,244,76,165,237,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,98,99,67,111,111,107,105,101,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,222,132,201,144,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,67,77,80,58,112,101,114,115,111,110,97,108,105,115,97,116,105,111,110,44,32,49,2,1,33,18,79,145,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,67,111,110,115,101,110,116,101,100,80,72,44,32,110,111,2,1,127,34,192,188,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,99,67,108,111,115,101,100,79,110,99,101,44,32,116,114,117,101,2,1,172,19,249,245,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,116,101,120,116,115,104,117,116,116,108,101,95,99,111,111,107,105,101,44,32,102,97,108,115,101,2,1,187,52,149,122,2,1,68,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,109,101,115,115,97,103,101,45,105,115,45,104,105,100,100,101,110,44,32,116,114,117,101,2,1,115,92,127,196,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,66,97,110,110,101,114,44,32,102,97,108,115,101,2,1,210,133,197,144,2,1,36,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,98,97,110,110,101,114,44,32,116,114,117,101,2,1,255,140,158,45,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,88,203,173,154,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,105,115,65,108,108,111,119,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,128,83,39,138,2,1,39,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,103,116,97,103,95,101,110,97,98,108,101,100,44,32,49,2,1,178,52,241,160,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,118,99,67,111,110,115,101,110,116,71,105,118,101,110,44,32,116,114,117,101,2,1,38,157,104,207,2,1,35,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,116,101,114,109,115,44,32,116,114,117,101,2,1,123,155,132,106,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,44,32,116,114,117,101,2,1,108,121,134,53,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,80,101,99,104,105,110,99,104,111,117,58,67,111,111,107,105,101,115,77,111,100,97,108,44,32,116,114,117,101,2,1,216,189,102,86,2,1,36,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,117,98,45,99,112,44,32,116,114,117,101,2,1,171,40,97,61,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,80,111,108,105,99,121,65,99,99,101,112,116,101,100,44,32,121,101,115,2,1,53,102,253,76,2,1,57,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,117,115,97,103,101,95,97,99,107,110,111,119,108,101,100,103,101,100,95,50,44,32,116,114,117,101,2,1,20,233,105,97,2,1,36,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,44,32,116,114,117,101,2,1,96,240,17,247,2,1,55,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,95,110,101,99,101,115,115,97,114,121,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,4,7,161,128,150,57,69,139,54,184,209,102,1,251,189,93,216,2,1,56,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,95,109,97,114,107,101,116,105,110,103,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,4,7,161,128,150,57,69,139,54,184,209,102,1,251,189,93,216,2,1,57,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,95,115,116,97,116,105,115,116,105,99,115,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,4,7,161,128,150,57,69,139,54,184,209,102,1,251,189,93,216,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,119,117,46,99,99,112,97,45,116,111,97,115,116,45,118,105,101,119,101,100,44,32,116,114,117,101,2,1,250,244,124,6,2,1,36,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,108,111,115,101,100,44,32,116,114,117,101,2,1,148,73,99,59,2,1,30,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,100,110,116,44,32,49,2,1,30,107,94,105,2,1,32,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,100,110,116,95,97,44,32,49,2,1,30,107,94,105,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,109,97,107,101,114,122,95,97,108,108,111,119,95,99,111,110,115,101,110,116,109,103,114,44,32,48,2,1,90,144,40,127,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,83,72,79,87,95,67,79,79,75,73,69,95,66,65,78,78,69,82,44,32,110,111,2,1,230,83,187,33,2,1,41,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,67,111,111,107,105,101,115,67,111,110,115,101,110,116,44,32,49,2,3,84,137,158,170,123,181,152,9,225,73,142,122,2,1,51,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,65,110,97,108,121,116,105,99,97,108,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,148,202,84,229,2,1,57,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,83,116,114,105,99,116,108,121,78,101,99,101,115,115,97,114,121,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,148,202,84,229,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,109,67,111,111,107,105,101,66,97,114,70,105,114,115,116,83,104,111,119,44,32,49,2,1,182,23,5,237,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,101,100,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,2,63,37,157,88,203,32,189,42,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,118,105,101,119,101,100,67,111,111,107,105,101,66,97,110,110,101,114,44,32,116,114,117,101,2,1,203,32,189,42,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,95,97,108,108,95,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,11,27,79,160,2,1,36,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,105,115,67,111,111,107,105,101,115,44,32,49,2,1,102,135,109,32,2,1,51,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,117,115,44,32,102,97,108,115,101,2,1,195,24,197,130,2,1,38,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,117,115,101,114,95,99,111,111,107,105,101,44,32,49,2,1,16,224,111,195,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,107,97,58,52,58,108,101,103,97,108,45,117,112,100,97,116,101,115,44,32,116,114,117,101,2,1,243,149,194,121,2,1,33,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,107,44,32,116,114,117,101,2,1,90,126,76,236,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,77,101,115,115,97,103,101,44,32,116,114,117,101,2,1,25,221,10,221,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,111,67,111,111,107,105,101,115,80,111,108,105,99,121,44,32,49,2,1,76,19,238,16,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,71,68,80,82,58,82,66,73,58,97,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,183,44,196,41,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,52,64,221,1,2,1,55,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,116,97,111,45,112,114,105,118,97,99,121,45,99,101,110,116,101,114,46,104,105,100,100,101,110,44,32,49,2,1,138,87,150,200,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,2,165,193,106,45,250,242,59,248,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,65,103,114,101,101,44,32,116,114,117,101,2,1,56,206,64,151,2,1,51,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,121,116,115,99,95,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,132,158,12,50,2,1,91,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,97,102,101,45,115,116,111,114,97,103,101,47,118,49,47,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,47,116,114,97,99,107,105,110,103,67,111,110,115,101,110,116,77,97,114,107,101,116,105,110,103,75,101,121,44,32,102,97,108,115,101,2,1,213,224,120,20,2,1,93,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,97,102,101,45,115,116,111,114,97,103,101,47,118,49,47,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,47,116,114,97,99,107,105,110,103,67,111,110,115,101,110,116,65,100,118,101,114,116,105,115,105,110,103,75,101,121,44,32,102,97,108,115,101,2,1,213,224,120,20,2,1,91,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,97,102,101,45,115,116,111,114,97,103,101,47,118,49,47,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,47,116,114,97,99,107,105,110,103,67,111,110,115,101,110,116,65,110,97,108,121,116,105,99,115,75,101,121,44,32,102,97,108,115,101,2,1,213,224,120,20,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,103,114,101,101,84,111,67,111,111,107,105,101,44,32,102,97,108,115,101,2,1,53,166,53,88,2,1,77,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,65,73,32,65,108,108,105,97,110,99,101,95,82,101,97,99,116,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,95,104,97,115,83,101,116,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,42,201,135,21,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,112,114,111,109,112,116,95,116,105,109,101,115,44,32,49,2,1,148,195,154,93,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,45,97,99,107,45,50,44,32,116,114,117,101,2,1,138,133,75,119,2,1,41,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,102,105,114,115,116,86,105,115,105,116,44,32,102,97,108,115,101,2,1,111,191,26,32,2,1,37,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,50,48,50,48,45,48,52,45,48,53,44,32,49,2,1,171,4,130,170,2,1,39,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,100,105,115,109,105,115,115,101,100,44,32,116,114,117,101,2,1,194,200,167,104,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,83,69,84,95,67,79,79,75,73,69,83,95,65,80,80,82,79,86,69,68,44,32,116,114,117,101,2,1,206,197,103,7,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,65,99,99,101,112,116,101,100,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,126,248,105,18,2,1,57,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,105,115,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,72,105,100,100,101,110,44,32,116,114,117,101,2,1,40,1,33,175,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,103,114,101,101,100,45,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,31,27,229,145,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,115,101,110,116,67,111,111,107,105,101,44,32,116,114,117,101,2,1,221,250,181,225,2,1,39,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,83,87,67,79,79,75,73,69,83,65,67,67,44,32,49,2,1,38,236,6,216,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,65,99,99,101,112,116,101,100,67,111,111,107,105,101,78,111,116,105,99,101,44,32,116,114,117,101,2,1,48,26,107,57,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,102,98,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,114,241,210,55,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,105,115,95,97,99,99,101,112,116,95,99,111,111,107,105,101,44,32,116,114,117,101,2,2,42,128,156,229,171,0,148,138,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,45,106,111,118,101,45,99,111,111,107,105,101,44,32,49,2,1,148,186,129,130,2,1,54,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,114,95,118,97,108,117,101,44,32,116,114,117,101,2,1,91,16,80,113,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,120,100,110,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,137,105,190,11,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,107,97,115,104,97,95,95,99,111,111,107,105,101,80,111,108,105,99,121,44,32,116,114,117,101,2,1,243,214,160,218,2,1,38,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,81,77,79,112,116,73,110,44,32,102,97,108,115,101,2,1,101,159,68,98,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,105,115,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,190,35,206,24,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,97,102,101,46,103,108,111,98,97,108,44,32,102,97,108,115,101,2,1,175,159,193,239,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,98,97,110,110,101,114,58,104,105,100,100,101,110,44,32,116,114,117,101,2,1,94,128,246,32,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,132,22,235,0,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,95,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,116,114,117,101,2,1,14,226,90,111,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,50,48,49,56,48,53,45,112,111,108,105,99,121,124,97,99,99,101,112,116,101,100,44,32,49,2,10,51,155,255,119,63,37,190,213,92,59,36,6,153,97,157,14,160,2,171,133,170,110,176,175,188,115,91,36,222,248,226,71,233,109,75,243,243,220,56,146,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,107,105,99,107,95,99,111,111,107,105,101,95,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,148,181,249,70,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,45,115,101,108,101,99,116,101,100,44,32,116,114,117,101,2,1,7,115,169,154,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,2,15,150,155,106,102,62,39,238,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,45,110,111,116,105,99,101,45,100,105,115,109,105,115,115,101,100,44,32,116,114,117,101,2,1,141,38,121,224,2,1,51,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,44,32,116,114,117,101,2,1,141,38,121,224,2,1,56,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,100,105,115,109,105,115,115,101,100,80,114,105,118,97,99,121,67,111,111,107,105,101,77,101,115,115,97,103,101,44,32,49,2,1,67,165,145,86,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,231,73,254,143,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,80,111,108,105,99,121,44,32,116,114,117,101,2,2,24,97,194,251,88,236,182,118,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,108,108,111,119,67,111,111,107,105,101,115,44,32,97,108,108,111,119,101,100,2,1,167,152,52,150,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,2,38,254,7,249,184,109,81,208,2,1,51,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,115,116,97,116,117,115,44,32,116,114,117,101,2,1,158,187,246,203,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,197,244,4,60,2,1,39,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,83,87,67,79,79,75,73,69,83,65,67,67,44,32,49,2,1,110,83,69,150,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,108,108,111,119,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,139,208,50,47,2,1,41,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,2,1,98,146,36,46,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,101,100,45,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,249,102,61,37,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,44,32,48,2,1,254,108,185,143,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,66,97,110,110,101,114,82,101,97,100,44,32,32,116,114,117,101,2,1,38,157,70,189,2,1,39,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,67,111,111,107,105,101,44,32,48,2,1,54,139,187,163,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,66,97,110,110,101,114,82,101,97,100,68,97,116,101,44,32,49,2,1,38,157,70,189,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,205,178,219,147,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,45,115,101,108,101,99,116,101,100,44,32,32,116,114,117,101,2,1,147,169,231,220,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,95,80,243,78,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,44,32,116,114,117,101,2,1,95,80,243,78,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,116,114,117,101,2,3,114,220,75,58,159,250,164,191,228,224,212,209,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,115,101,110,116,77,97,110,97,103,101,114,95,115,104,111,119,110,44,32,116,114,117,101,2,2,253,254,11,193,255,22,48,66,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,115,101,110,116,95,110,101,99,101,115,115,97,114,121,44,32,116,114,117,101,2,2,253,254,11,193,255,22,48,66,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,115,101,110,116,95,112,101,114,102,111,114,109,97,110,99,101,44,32,102,97,108,115,101,2,2,253,254,11,193,255,22,48,66,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,45,99,108,111,115,101,100,44,32,116,114,117,101,2,1,213,37,133,184,2,1,52,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,102,114,97,109,101,114,67,111,111,107,105,101,115,68,105,115,109,105,115,115,101,100,44,32,116,114,117,101,2,1,34,213,51,208,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,45,97,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,213,37,133,184,2,1,40,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,49,2,2,205,236,108,18,254,170,25,53,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,101,110,97,98,108,101,67,111,111,107,105,101,66,97,110,110,101,114,44,32,102,97,108,115,101,2,1,69,163,160,211,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,108,101,118,101,108,44,32,49,2,1,195,166,88,253,2,1,56,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,98,121,70,111,111,100,67,111,111,107,105,101,80,111,108,105,99,121,82,101,113,117,105,114,101,44,32,102,97,108,115,101,2,1,90,91,207,37,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,115,99,111,111,107,105,101,45,45,100,101,99,105,115,105,111,110,44,32,116,114,117,101,2,1,59,239,35,246,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,105,115,65,99,99,101,112,116,67,111,111,107,105,101,115,78,101,119,44,32,116,114,117,101,2,2,112,102,236,183,163,239,135,186,2,1,40,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,109,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,101,41,119,74,2,1,52,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,116,101,99,104,110,105,99,97,108,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,101,41,119,74,2,1,40,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,101,41,119,74,2,1,55,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,116,97,111,45,112,114,105,118,97,99,121,45,99,101,110,116,101,114,46,104,105,100,100,101,110,44,32,49,2,1,47,194,124,121,2,1,41,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,111,116,104,101,114,67,111,111,107,105,101,44,32,116,114,117,101,2,1,37,73,28,225,2,1,40,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,97,118,101,67,111,111,107,105,101,44,32,116,114,117,101,2,1,37,73,28,225,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,117,115,101,114,65,99,99,101,112,116,115,67,111,111,107,105,101,115,44,32,49,2,1,71,163,133,219,2,1,51,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,103,114,110,107,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,241,126,2,84,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,96,134,234,124,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,2,85,201,34,77,136,250,59,173,2,1,41,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,67,111,111,107,105,101,115,44,32,110,111,2,1,37,115,139,249,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,65,99,99,101,112,116,101,100,71,100,112,114,44,32,116,114,117,101,2,1,79,75,218,215,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,108,119,45,97,99,99,101,112,116,115,45,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,50,38,94,32,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,121,98,142,233,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,45,97,99,99,101,112,116,44,32,116,114,117,101,2,1,153,62,159,75,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,108,111,97,100,45,115,99,114,105,112,116,115,45,118,50,44,32,50,2,1,190,14,6,59,2,1,54,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,115,65,110,97,108,121,116,105,99,115,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,198,80,109,45,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,115,78,101,99,101,115,115,97,114,121,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,198,80,109,45,2,1,51,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,100,105,115,112,108,97,121,95,99,111,111,107,105,101,95,109,111,100,97,108,44,32,102,97,108,115,101,2,1,131,170,5,110,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,103,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,184,135,181,184,2,1,71,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,95,95,69,79,66,85,87,73,69,95,95,99,111,110,115,101,110,116,115,95,97,99,99,101,112,116,101,100,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,3,175,39,97,2,1,40,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,48,9,58,0,2,1,52,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,97,110,97,100,97,45,99,111,111,107,105,101,45,97,99,107,110,111,119,108,101,100,103,101,44,32,49,2,1,179,12,30,208,2,1,55,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,116,97,111,45,112,114,105,118,97,99,121,45,99,101,110,116,101,114,46,104,105,100,100,101,110,44,32,49,2,1,41,65,53,80,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,70,80,95,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,182,113,42,62,2,1,39,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,86,73,83,73,84,69,68,95,48,44,32,116,114,117,101,2,1,169,121,139,60,2,1,57,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,79,80,84,73,79,78,65,76,95,67,79,79,75,73,69,83,95,65,67,67,69,80,84,69,68,95,48,44,32,116,114,117,101,2,1,169,121,139,60,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,116,111,114,97,103,101,80,101,114,109,105,115,115,105,111,110,44,32,116,114,117,101,2,1,239,210,150,82,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,101,116,95,99,111,111,107,105,101,95,115,116,97,116,44,32,102,97,108,115,101,2,6,11,151,31,33,37,170,130,216,138,52,138,143,156,134,225,22,213,169,169,35,253,6,0,167,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,101,116,95,99,111,111,107,105,101,95,116,114,97,99,107,105,110,103,44,32,102,97,108,115,101,2,6,11,151,31,33,37,170,130,216,138,52,138,143,156,134,225,22,213,169,169,35,253,6,0,167,2,1,41,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,77,111,100,97,108,50,44,32,49,2,1,173,227,15,78,2,1,53,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,77,101,115,115,97,103,101,68,105,115,97,103,114,101,101,44,32,116,114,117,101,2,1,148,180,34,67,2,1,45,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,100,105,115,99,108,97,105,109,101,114,79,112,101,110,101,100,44,32,49,2,1,115,100,48,19,2,1,57,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,116,101,114,109,115,45,97,110,100,45,112,111,108,105,99,121,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,140,166,186,213,2,1,39,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,67,111,110,115,101,110,116,44,32,49,2,1,210,92,137,208,2,1,35,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,68,115,103,44,32,49,2,1,210,92,137,208,2,1,50,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,103,114,105,102,102,105,110,67,111,110,115,101,110,116,73,103,110,111,114,101,100,44,32,49,2,1,101,42,233,211,2,1,43,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,65,67,67,69,80,84,95,76,71,80,68,44,32,116,114,117,101,2,1,131,23,8,125,2,1,46,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,126,80,164,176,2,1,23,97,99,105,115,44,32,36,44,32,35,109,111,100,97,108,45,99,111,110,115,101,110,116,2,2,66,210,214,242,156,103,212,135,2,1,34,97,99,105,115,44,32,115,112,97,110,76,105,110,107,67,108,105,99,107,44,32,35,99,111,111,107,105,101,98,97,110,110,101,114,2,1,97,254,172,184,2,1,17,97,99,105,115,44,32,97,108,101,114,116,67,111,111,107,105,101,2,1,24,247,182,28,2,1,12,97,99,105,115,44,32,100,111,79,110,99,101,2,3,20,218,63,198,122,41,116,201,123,252,202,197,2,1,13,97,99,105,115,44,32,36,44,32,35,107,117,107,2,1,209,167,231,116,2,1,21,97,99,105,115,44,32,36,44,32,35,99,111,110,116,101,110,116,119,114,97,112,2,1,149,148,25,82,2,1,41,97,99,105,115,44,32,106,81,117,101,114,121,44,32,115,121,110,99,104,114,111,110,105,122,101,67,111,111,107,105,101,78,111,116,101,67,111,111,107,105,101,2,1,143,52,66,67,2,1,51,97,99,105,115,44,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,44,32,99,111,110,115,101,110,116,46,99,111,111,107,105,101,98,111,116,46,99,111,109,2,2,168,156,238,184,175,75,52,186,2,1,42,97,99,105,115,44,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,44,32,100,101,108,105,118,101,114,121,47,99,109,112,2,1,30,54,132,206,2,1,19,97,99,105,115,44,32,36,106,44,32,97,99,99,101,112,116,84,79,83,2,1,120,189,131,194,2,1,37,97,99,105,115,44,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,44,32,97,100,109,105,114,97,108,2,19,1,67,132,82,27,230,3,216,29,116,127,165,30,67,223,94,38,157,176,165,57,228,7,139,99,226,187,91,102,173,20,232,122,215,83,29,128,162,149,132,145,151,63,251,155,105,52,184,165,185,187,17,174,248,157,209,199,215,254,28,214,185,33,51,214,242,134,176,228,1,8,203,231,244,217,146,0,5,1,42,2,1,197,246,170,113,24,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,11,35,99,109,112,45,105,102,114,97,109,101,2,1,24,87,61,150,0,5,4,98,111,100,121,2,1,24,87,61,150,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,6,46,109,111,100,97,108,2,128,0,0,2,55,0,135,155,97,0,201,182,185,0,223,147,227,1,23,11,255,2,18,73,197,2,37,74,164,2,48,105,48,2,86,19,98,2,119,254,247,2,250,174,245,3,16,137,66,3,242,6,253,3,249,244,134,4,150,12,158,4,173,201,83,4,233,174,89,5,3,90,62,5,12,169,203,5,113,42,130,5,195,227,76,5,197,73,248,5,233,233,36,6,86,127,91,6,90,179,150,6,109,126,128,6,189,18,207,6,200,156,46,6,203,115,53,7,87,217,6,8,126,27,186,8,148,22,85,10,28,223,87,10,66,115,215,10,108,195,194,11,0,139,153,11,240,3,194,12,14,72,92,13,217,62,240,14,66,51,93,14,86,65,81,14,236,172,41,14,245,24,124,15,78,112,246,15,174,91,252,17,130,222,201,19,60,247,203,19,239,185,244,20,72,180,131,21,191,163,59,22,101,105,19,24,3,233,218,24,194,22,219,24,251,84,207,25,100,230,94,25,185,248,35,26,155,19,233,26,182,27,211,27,121,108,151,28,199,12,36,28,221,160,113,28,228,197,239,29,6,110,90,29,54,180,49,29,161,39,225,29,246,0,5,30,182,45,152,30,225,128,150,31,168,20,16,31,180,182,52,32,102,254,202,32,173,251,66,33,80,146,145,33,105,6,102,33,110,72,36,34,143,210,37,34,168,35,159,35,74,73,184,35,174,211,57,36,16,1,242,36,79,179,112,36,125,190,40,37,183,110,52,37,205,8,120,38,61,20,231,38,153,9,250,38,157,45,201,39,32,218,107,39,176,135,104,40,57,180,153,40,115,18,70,40,129,64,251,40,227,69,241,40,244,207,220,41,147,29,51,42,22,194,126,42,53,239,62,42,113,78,172,42,236,183,165,44,180,249,14,44,253,179,139,45,200,179,54,45,246,191,105,46,47,48,224,46,58,145,91,46,113,130,140,46,116,13,122,46,168,132,200,47,67,130,124,47,176,148,245,48,107,9,12,48,126,251,107,48,158,43,103,48,203,163,141,49,46,132,143,49,225,94,37,50,229,244,221,50,237,50,148,51,99,14,96,51,134,221,81,53,25,68,93,53,65,42,96,55,113,207,86,55,165,182,93,55,222,74,56,56,53,88,169,57,137,211,16,58,133,149,119,58,225,111,164,59,224,203,233,61,108,42,44,63,169,134,229,63,246,127,168,63,252,212,75,64,190,128,193,64,232,203,88,65,50,184,236,65,52,212,203,66,111,229,183,66,243,23,99,67,44,176,127,67,212,252,97,67,254,249,67,68,7,197,68,68,60,201,163,68,202,79,164,68,233,82,132,68,238,176,158,68,238,194,95,68,254,189,71,69,58,109,205,69,121,254,87,70,103,219,169,70,136,75,87,70,204,192,235,71,40,201,19,71,75,123,34,71,90,154,33,71,120,230,53,71,193,179,100,72,223,87,39,73,127,185,68,73,164,93,236,74,97,225,89,74,100,219,207,74,108,114,188,74,114,92,218,74,240,17,214,77,5,25,119,77,22,12,116,78,41,47,104,78,44,86,162,78,116,73,202,78,168,171,224,78,206,228,98,79,0,1,24,79,132,29,100,81,69,239,159,83,6,194,247,83,29,4,86,84,74,93,181,84,123,151,34,84,135,177,114,85,46,220,196,85,160,220,40,85,191,245,237,86,134,63,83,86,196,140,22,87,53,32,2,87,87,34,62,87,98,131,38,87,243,176,21,88,72,18,201,88,209,125,165,90,42,31,72,90,50,199,226,90,84,52,93,90,158,226,238,91,6,51,249,91,21,117,108,91,97,222,36,91,105,187,36,91,215,34,80,92,32,63,118,92,57,81,91,92,76,162,106,92,111,9,129,92,182,54,104,93,85,11,197,94,92,27,92,94,121,206,41,94,255,168,248,95,39,140,239,96,167,218,53,97,0,180,47,97,19,231,197,97,66,174,26,97,168,37,149,97,183,143,207,98,39,118,191,99,193,170,182,99,222,218,82,99,252,73,99,100,6,109,102,100,16,98,140,100,130,226,226,100,231,137,62,101,75,239,87,101,132,63,87,102,34,195,152,102,99,156,154,103,2,236,68,103,7,218,243,103,207,104,197,104,193,50,67,105,131,128,150,105,153,69,88,105,175,190,108,106,32,173,75,107,99,17,239,107,196,172,166,107,233,173,37,107,254,183,63,109,67,209,33,110,212,13,56,111,7,194,74,111,133,134,107,111,252,58,118,112,63,203,131,112,116,246,43,112,117,168,209,114,54,75,247,114,129,227,184,115,25,187,110,115,176,252,64,116,28,138,59,116,34,78,237,116,96,237,156,116,195,128,29,116,225,149,190,117,237,65,186,118,43,246,213,118,188,237,50,119,48,95,42,120,57,161,4,120,116,117,186,121,194,244,17,122,134,218,191,122,172,24,15,123,135,75,26,123,248,113,198,124,70,105,71,124,119,192,120,124,185,108,235,125,121,227,251,125,203,169,179,125,228,16,161,126,2,202,220,126,7,216,187,126,26,136,14,126,169,28,20,126,171,73,184,126,200,179,32,126,208,137,20,126,226,30,18,126,236,80,188,127,42,149,241,127,109,156,253,127,244,49,88,128,148,167,237,128,157,150,225,130,201,84,54,130,239,21,225,130,252,195,35,131,39,7,143,131,75,252,27,132,70,202,179,132,183,42,199,133,81,51,7,133,246,118,224,134,73,26,97,134,153,75,164,135,142,124,183,135,154,109,68,135,171,144,6,135,207,180,95,136,90,213,252,137,119,234,82,137,226,15,12,138,159,152,41,138,213,30,241,139,6,112,190,139,99,18,149,140,158,85,74,140,229,24,68,141,39,71,110,141,54,212,131,141,241,90,90,142,13,247,81,142,67,136,174,142,184,221,117,142,190,123,88,143,21,28,161,143,99,54,186,143,127,9,118,144,70,76,9,146,189,0,35,147,52,135,100,147,134,202,53,147,147,87,145,147,170,59,207,148,63,53,167,148,181,71,163,148,188,92,212,150,148,135,112,150,225,183,52,151,224,74,221,152,69,138,255,153,102,93,173,153,108,86,20,153,243,85,44,154,8,90,205,154,45,39,10,154,134,243,233,155,54,37,129,155,66,64,24,155,116,75,226,155,146,254,74,156,104,141,12,157,189,79,173,157,215,128,79,158,10,108,42,158,195,232,73,159,97,115,99,159,148,144,62,159,151,118,118,159,164,164,224,160,158,186,200,161,125,64,105,163,52,115,149,163,208,148,59,164,15,223,167,164,61,6,152,164,142,171,217,165,69,76,14,165,81,215,6,165,88,245,93,165,165,195,22,166,60,118,44,166,60,166,54,166,60,207,255,166,185,42,196,166,230,136,104,167,112,61,173,168,174,28,136,169,34,103,85,169,190,14,187,169,255,179,204,171,27,167,208,171,199,182,93,171,228,66,234,172,0,163,211,172,10,243,94,172,30,142,69,172,59,143,53,172,167,115,41,174,114,17,170,174,233,253,208,174,254,78,99,175,73,132,81,175,94,13,102,175,134,101,198,176,74,9,207,176,78,145,193,176,139,120,255,176,193,185,185,177,156,96,95,177,220,124,241,178,115,178,207,179,125,236,16,180,91,229,89,180,96,241,188,181,25,109,29,181,46,228,67,182,1,112,164,182,24,159,237,182,67,110,47,183,64,106,247,183,192,75,42,184,164,57,99,186,74,82,188,187,191,233,41,187,243,248,118,188,42,18,108,188,62,205,30,188,62,235,181,188,76,15,2,188,193,35,203,189,52,137,212,189,71,153,57,189,131,224,22,189,192,186,170,189,222,59,156,190,148,10,106,190,228,32,122,192,52,86,158,192,128,94,56,193,19,49,72,193,100,93,17,193,237,145,128,194,52,85,77,194,65,159,102,194,136,21,43,194,179,198,122,194,197,249,253,194,252,209,88,195,180,176,78,195,208,245,58,197,79,178,110,198,59,242,89,198,251,152,213,199,46,232,11,199,52,232,166,199,154,200,179,200,116,246,16,200,182,101,114,200,184,66,106,201,55,125,48,201,95,88,189,201,169,140,245,202,125,33,144,202,205,207,43,203,104,198,126,204,3,137,240,205,96,201,234,205,97,5,232,205,106,124,61,205,244,245,33,206,152,49,179,207,89,44,106,207,184,169,115,208,40,73,162,208,141,227,0,208,202,24,86,208,249,86,85,210,151,222,9,211,43,12,199,211,52,122,59,211,157,24,12,211,163,178,161,213,96,62,39,213,165,35,125,213,215,131,181,213,240,218,132,215,35,95,156,215,184,123,77,215,237,26,124,215,246,44,41,216,142,90,78,216,177,88,57,216,210,99,250,217,122,60,136,219,138,91,137,219,157,247,76,220,5,196,82,220,16,53,61,221,129,219,10,221,160,69,119,222,18,239,141,222,42,165,223,222,180,215,133,223,105,236,229,223,114,129,82,223,229,242,23,223,236,152,100,224,27,215,39,224,82,213,92,225,53,89,150,225,162,63,97,227,102,42,161,227,135,182,132,227,186,47,194,227,215,204,80,228,89,95,217,228,143,102,68,229,215,202,141,230,110,41,246,230,110,58,21,230,209,35,86,231,127,4,207,233,32,164,246,233,229,242,211,233,235,184,129,234,53,0,169,235,102,65,36,235,140,211,193,235,226,230,180,236,69,194,137,236,160,129,160,236,212,87,92,237,107,158,252,237,110,37,83,237,149,34,157,237,252,211,64,238,110,238,220,238,132,239,60,238,226,106,2,238,248,169,231,239,3,56,152,239,250,229,233,240,66,212,109,240,193,35,57,241,3,201,123,241,20,81,145,241,76,189,168,242,81,71,73,242,128,250,51,242,231,70,111,242,231,120,5,242,231,161,55,243,1,188,66,243,191,211,186,243,234,61,235,243,236,108,113,244,100,211,212,244,158,99,204,245,141,202,146,245,154,58,146,245,159,126,81,245,186,81,64,246,75,93,240,246,75,93,240,246,138,240,156,247,38,251,102,247,142,25,100,248,152,36,58,248,231,165,46,249,142,215,189,250,8,239,8,250,25,23,143,250,59,204,130,250,87,139,228,250,134,14,111,252,242,201,168,253,9,210,146,253,36,70,102,254,233,244,168,255,38,24,240,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,128,0,0,2,55,0,135,155,97,0,201,182,185,0,223,147,227,1,23,11,255,2,18,73,197,2,37,74,164,2,48,105,48,2,86,19,98,2,119,254,247,2,250,174,245,3,16,137,66,3,242,6,253,3,249,244,134,4,150,12,158,4,173,201,83,4,233,174,89,5,3,90,62,5,12,169,203,5,113,42,130,5,195,227,76,5,197,73,248,5,233,233,36,6,86,127,91,6,90,179,150,6,109,126,128,6,189,18,207,6,200,156,46,6,203,115,53,7,87,217,6,8,126,27,186,8,148,22,85,10,28,223,87,10,66,115,215,10,108,195,194,11,0,139,153,11,240,3,194,12,14,72,92,13,217,62,240,14,66,51,93,14,86,65,81,14,236,172,41,14,245,24,124,15,78,112,246,15,174,91,252,17,130,222,201,19,60,247,203,19,239,185,244,20,72,180,131,21,191,163,59,22,101,105,19,24,3,233,218,24,194,22,219,24,251,84,207,25,100,230,94,25,185,248,35,26,155,19,233,26,182,27,211,27,121,108,151,28,199,12,36,28,221,160,113,28,228,197,239,29,6,110,90,29,54,180,49,29,161,39,225,29,246,0,5,30,182,45,152,30,225,128,150,31,168,20,16,31,180,182,52,32,102,254,202,32,173,251,66,33,80,146,145,33,105,6,102,33,110,72,36,34,143,210,37,34,168,35,159,35,74,73,184,35,174,211,57,36,16,1,242,36,79,179,112,36,125,190,40,37,183,110,52,37,205,8,120,38,61,20,231,38,153,9,250,38,157,45,201,39,32,218,107,39,176,135,104,40,57,180,153,40,115,18,70,40,129,64,251,40,227,69,241,40,244,207,220,41,147,29,51,42,22,194,126,42,53,239,62,42,113,78,172,42,236,183,165,44,180,249,14,44,253,179,139,45,200,179,54,45,246,191,105,46,47,48,224,46,58,145,91,46,113,130,140,46,116,13,122,46,168,132,200,47,67,130,124,47,176,148,245,48,107,9,12,48,126,251,107,48,158,43,103,48,203,163,141,49,46,132,143,49,225,94,37,50,229,244,221,50,237,50,148,51,99,14,96,51,134,221,81,53,25,68,93,53,65,42,96,55,113,207,86,55,165,182,93,55,222,74,56,56,53,88,169,57,137,211,16,58,133,149,119,58,225,111,164,59,224,203,233,61,108,42,44,63,169,134,229,63,246,127,168,63,252,212,75,64,190,128,193,64,232,203,88,65,50,184,236,65,52,212,203,66,111,229,183,66,243,23,99,67,44,176,127,67,212,252,97,67,254,249,67,68,7,197,68,68,60,201,163,68,202,79,164,68,233,82,132,68,238,176,158,68,238,194,95,68,254,189,71,69,58,109,205,69,121,254,87,70,103,219,169,70,136,75,87,70,204,192,235,71,40,201,19,71,75,123,34,71,90,154,33,71,120,230,53,71,193,179,100,72,223,87,39,73,127,185,68,73,164,93,236,74,97,225,89,74,100,219,207,74,108,114,188,74,114,92,218,74,240,17,214,77,5,25,119,77,22,12,116,78,41,47,104,78,44,86,162,78,116,73,202,78,168,171,224,78,206,228,98,79,0,1,24,79,132,29,100,81,69,239,159,83,6,194,247,83,29,4,86,84,74,93,181,84,123,151,34,84,135,177,114,85,46,220,196,85,160,220,40,85,191,245,237,86,134,63,83,86,196,140,22,87,53,32,2,87,87,34,62,87,98,131,38,87,243,176,21,88,72,18,201,88,209,125,165,90,42,31,72,90,50,199,226,90,84,52,93,90,158,226,238,91,6,51,249,91,21,117,108,91,97,222,36,91,105,187,36,91,215,34,80,92,32,63,118,92,57,81,91,92,76,162,106,92,111,9,129,92,182,54,104,93,85,11,197,94,92,27,92,94,121,206,41,94,255,168,248,95,39,140,239,96,167,218,53,97,0,180,47,97,19,231,197,97,66,174,26,97,168,37,149,97,183,143,207,98,39,118,191,99,193,170,182,99,222,218,82,99,252,73,99,100,6,109,102,100,16,98,140,100,130,226,226,100,231,137,62,101,75,239,87,101,132,63,87,102,34,195,152,102,99,156,154,103,2,236,68,103,7,218,243,103,207,104,197,104,193,50,67,105,131,128,150,105,153,69,88,105,175,190,108,106,32,173,75,107,99,17,239,107,196,172,166,107,233,173,37,107,254,183,63,109,67,209,33,110,212,13,56,111,7,194,74,111,133,134,107,111,252,58,118,112,63,203,131,112,116,246,43,112,117,168,209,114,54,75,247,114,129,227,184,115,25,187,110,115,176,252,64,116,28,138,59,116,34,78,237,116,96,237,156,116,195,128,29,116,225,149,190,117,237,65,186,118,43,246,213,118,188,237,50,119,48,95,42,120,57,161,4,120,116,117,186,121,194,244,17,122,134,218,191,122,172,24,15,123,135,75,26,123,248,113,198,124,70,105,71,124,119,192,120,124,185,108,235,125,121,227,251,125,203,169,179,125,228,16,161,126,2,202,220,126,7,216,187,126,26,136,14,126,169,28,20,126,171,73,184,126,200,179,32,126,208,137,20,126,226,30,18,126,236,80,188,127,42,149,241,127,109,156,253,127,244,49,88,128,148,167,237,128,157,150,225,130,201,84,54,130,239,21,225,130,252,195,35,131,39,7,143,131,75,252,27,132,70,202,179,132,183,42,199,133,81,51,7,133,246,118,224,134,73,26,97,134,153,75,164,135,142,124,183,135,154,109,68,135,171,144,6,135,207,180,95,136,90,213,252,137,119,234,82,137,226,15,12,138,159,152,41,138,213,30,241,139,6,112,190,139,99,18,149,140,158,85,74,140,229,24,68,141,39,71,110,141,54,212,131,141,241,90,90,142,13,247,81,142,67,136,174,142,184,221,117,142,190,123,88,143,21,28,161,143,99,54,186,143,127,9,118,144,70,76,9,146,189,0,35,147,52,135,100,147,134,202,53,147,147,87,145,147,170,59,207,148,63,53,167,148,181,71,163,148,188,92,212,150,148,135,112,150,225,183,52,151,224,74,221,152,69,138,255,153,102,93,173,153,108,86,20,153,243,85,44,154,8,90,205,154,45,39,10,154,134,243,233,155,54,37,129,155,66,64,24,155,116,75,226,155,146,254,74,156,104,141,12,157,189,79,173,157,215,128,79,158,10,108,42,158,195,232,73,159,97,115,99,159,148,144,62,159,151,118,118,159,164,164,224,160,158,186,200,161,125,64,105,163,52,115,149,163,208,148,59,164,15,223,167,164,61,6,152,164,142,171,217,165,69,76,14,165,81,215,6,165,88,245,93,165,165,195,22,166,60,118,44,166,60,166,54,166,60,207,255,166,185,42,196,166,230,136,104,167,112,61,173,168,174,28,136,169,34,103,85,169,190,14,187,169,255,179,204,171,27,167,208,171,199,182,93,171,228,66,234,172,0,163,211,172,10,243,94,172,30,142,69,172,59,143,53,172,167,115,41,174,114,17,170,174,233,253,208,174,254,78,99,175,73,132,81,175,94,13,102,175,134,101,198,176,74,9,207,176,78,145,193,176,139,120,255,176,193,185,185,177,156,96,95,177,220,124,241,178,115,178,207,179,125,236,16,180,91,229,89,180,96,241,188,181,25,109,29,181,46,228,67,182,1,112,164,182,24,159,237,182,67,110,47,183,64,106,247,183,192,75,42,184,164,57,99,186,74,82,188,187,191,233,41,187,243,248,118,188,42,18,108,188,62,205,30,188,62,235,181,188,76,15,2,188,193,35,203,189,52,137,212,189,71,153,57,189,131,224,22,189,192,186,170,189,222,59,156,190,148,10,106,190,228,32,122,192,52,86,158,192,128,94,56,193,19,49,72,193,100,93,17,193,237,145,128,194,52,85,77,194,65,159,102,194,136,21,43,194,179,198,122,194,197,249,253,194,252,209,88,195,180,176,78,195,208,245,58,197,79,178,110,198,59,242,89,198,251,152,213,199,46,232,11,199,52,232,166,199,154,200,179,200,116,246,16,200,182,101,114,200,184,66,106,201,55,125,48,201,95,88,189,201,169,140,245,202,125,33,144,202,205,207,43,203,104,198,126,204,3,137,240,205,96,201,234,205,97,5,232,205,106,124,61,205,244,245,33,206,152,49,179,207,89,44,106,207,184,169,115,208,40,73,162,208,141,227,0,208,202,24,86,208,249,86,85,210,151,222,9,211,43,12,199,211,52,122,59,211,157,24,12,211,163,178,161,213,96,62,39,213,165,35,125,213,215,131,181,213,240,218,132,215,35,95,156,215,184,123,77,215,237,26,124,215,246,44,41,216,142,90,78,216,177,88,57,216,210,99,250,217,122,60,136,219,138,91,137,219,157,247,76,220,5,196,82,220,16,53,61,221,129,219,10,221,160,69,119,222,18,239,141,222,42,165,223,222,180,215,133,223,105,236,229,223,114,129,82,223,229,242,23,223,236,152,100,224,27,215,39,224,82,213,92,225,53,89,150,225,162,63,97,227,102,42,161,227,135,182,132,227,186,47,194,227,215,204,80,228,89,95,217,228,143,102,68,229,215,202,141,230,110,41,246,230,110,58,21,230,209,35,86,231,127,4,207,233,32,164,246,233,229,242,211,233,235,184,129,234,53,0,169,235,102,65,36,235,140,211,193,235,226,230,180,236,69,194,137,236,160,129,160,236,212,87,92,237,107,158,252,237,110,37,83,237,149,34,157,237,252,211,64,238,110,238,220,238,132,239,60,238,226,106,2,238,248,169,231,239,3,56,152,239,250,229,233,240,66,212,109,240,193,35,57,241,3,201,123,241,20,81,145,241,76,189,168,242,81,71,73,242,128,250,51,242,231,70,111,242,231,120,5,242,231,161,55,243,1,188,66,243,191,211,186,243,234,61,235,243,236,108,113,244,100,211,212,244,158,99,204,245,141,202,146,245,154,58,146,245,159,126,81,245,186,81,64,246,75,93,240,246,75,93,240,246,138,240,156,247,38,251,102,247,142,25,100,248,152,36,58,248,231,165,46,249,142,215,189,250,8,239,8,250,25,23,143,250,59,204,130,250,87,139,228,250,134,14,111,252,242,201,168,253,9,210,146,253,36,70,102,254,233,244,168,255,38,24,240,0,5,9,98,111,100,121,44,104,116,109,108,2,128,0,0,2,54,0,135,155,97,0,201,182,185,0,223,147,227,1,23,11,255,2,18,73,197,2,37,74,164,2,48,105,48,2,86,19,98,2,119,254,247,2,250,174,245,3,16,137,66,3,242,6,253,3,249,244,134,4,150,12,158,4,173,201,83,4,233,174,89,5,3,90,62,5,12,169,203,5,113,42,130,5,195,227,76,5,197,73,248,5,233,233,36,6,86,127,91,6,90,179,150,6,109,126,128,6,189,18,207,6,200,156,46,6,203,115,53,7,87,217,6,8,126,27,186,8,148,22,85,10,28,223,87,10,66,115,215,10,108,195,194,11,0,139,153,11,240,3,194,12,14,72,92,13,217,62,240,14,66,51,93,14,86,65,81,14,236,172,41,14,245,24,124,15,78,112,246,15,174,91,252,17,130,222,201,19,60,247,203,19,239,185,244,20,72,180,131,21,191,163,59,22,101,105,19,24,3,233,218,24,194,22,219,24,251,84,207,25,100,230,94,25,185,248,35,26,155,19,233,26,182,27,211,27,121,108,151,28,199,12,36,28,221,160,113,28,228,197,239,29,6,110,90,29,54,180,49,29,161,39,225,29,246,0,5,30,182,45,152,30,225,128,150,31,168,20,16,31,180,182,52,32,102,254,202,32,173,251,66,33,80,146,145,33,105,6,102,33,110,72,36,34,143,210,37,34,168,35,159,35,74,73,184,35,174,211,57,36,16,1,242,36,79,179,112,36,125,190,40,37,183,110,52,37,205,8,120,38,61,20,231,38,153,9,250,38,157,45,201,39,32,218,107,39,176,135,104,40,57,180,153,40,115,18,70,40,129,64,251,40,227,69,241,41,147,29,51,42,22,194,126,42,53,239,62,42,113,78,172,42,236,183,165,44,180,249,14,44,253,179,139,45,200,179,54,45,246,191,105,46,47,48,224,46,58,145,91,46,113,130,140,46,116,13,122,46,168,132,200,47,67,130,124,47,176,148,245,48,107,9,12,48,126,251,107,48,158,43,103,48,203,163,141,49,46,132,143,49,225,94,37,50,229,244,221,50,237,50,148,51,99,14,96,51,134,221,81,53,25,68,93,53,65,42,96,55,113,207,86,55,165,182,93,55,222,74,56,56,53,88,169,57,137,211,16,58,133,149,119,58,225,111,164,59,224,203,233,61,108,42,44,63,169,134,229,63,246,127,168,63,252,212,75,64,190,128,193,64,232,203,88,65,50,184,236,65,52,212,203,66,111,229,183,66,243,23,99,67,44,176,127,67,212,252,97,67,254,249,67,68,7,197,68,68,60,201,163,68,202,79,164,68,233,82,132,68,238,176,158,68,238,194,95,68,254,189,71,69,58,109,205,69,121,254,87,70,103,219,169,70,136,75,87,70,204,192,235,71,40,201,19,71,75,123,34,71,90,154,33,71,120,230,53,71,193,179,100,72,223,87,39,73,127,185,68,73,164,93,236,74,97,225,89,74,100,219,207,74,108,114,188,74,114,92,218,74,240,17,214,77,5,25,119,77,22,12,116,78,41,47,104,78,44,86,162,78,116,73,202,78,168,171,224,78,206,228,98,79,0,1,24,79,132,29,100,81,69,239,159,83,6,194,247,83,29,4,86,84,74,93,181,84,123,151,34,84,135,177,114,85,46,220,196,85,160,220,40,85,191,245,237,86,134,63,83,86,196,140,22,87,53,32,2,87,87,34,62,87,98,131,38,87,243,176,21,88,72,18,201,88,209,125,165,90,42,31,72,90,50,199,226,90,84,52,93,90,158,226,238,91,6,51,249,91,21,117,108,91,97,222,36,91,105,187,36,91,215,34,80,92,32,63,118,92,57,81,91,92,76,162,106,92,111,9,129,92,182,54,104,93,85,11,197,94,92,27,92,94,121,206,41,95,39,140,239,96,167,218,53,97,0,180,47,97,19,231,197,97,66,174,26,97,168,37,149,97,183,143,207,98,39,118,191,99,193,170,182,99,222,218,82,99,252,73,99,100,6,109,102,100,16,98,140,100,130,226,226,100,231,137,62,101,75,239,87,101,132,63,87,102,34,195,152,102,99,156,154,103,2,236,68,103,7,218,243,103,207,104,197,104,193,50,67,105,131,128,150,105,153,69,88,105,175,190,108,106,32,173,75,107,99,17,239,107,196,172,166,107,233,173,37,107,254,183,63,109,67,209,33,110,212,13,56,111,7,194,74,111,133,134,107,111,252,58,118,112,63,203,131,112,116,246,43,112,117,168,209,114,54,75,247,114,129,227,184,115,25,187,110,115,176,252,64,116,28,138,59,116,34,78,237,116,96,237,156,116,195,128,29,116,225,149,190,117,237,65,186,118,43,246,213,118,188,237,50,119,48,95,42,120,57,161,4,120,116,117,186,121,194,244,17,122,134,218,191,122,172,24,15,123,135,75,26,123,248,113,198,124,70,105,71,124,119,192,120,124,185,108,235,125,121,227,251,125,203,169,179,125,228,16,161,126,2,202,220,126,7,216,187,126,26,136,14,126,169,28,20,126,171,73,184,126,200,179,32,126,208,137,20,126,226,30,18,126,236,80,188,127,42,149,241,127,109,156,253,127,244,49,88,128,148,167,237,128,157,150,225,130,201,84,54,130,239,21,225,130,252,195,35,131,39,7,143,131,75,252,27,132,70,202,179,132,183,42,199,133,81,51,7,133,246,118,224,134,73,26,97,134,153,75,164,135,142,124,183,135,154,109,68,135,171,144,6,135,207,180,95,136,90,213,252,137,119,234,82,137,226,15,12,138,159,152,41,138,213,30,241,139,6,112,190,139,99,18,149,140,158,85,74,140,229,24,68,141,39,71,110,141,54,212,131,141,241,90,90,142,13,247,81,142,67,136,174,142,184,221,117,142,190,123,88,143,21,28,161,143,99,54,186,143,127,9,118,144,70,76,9,146,189,0,35,147,52,135,100,147,134,202,53,147,147,87,145,147,170,59,207,148,63,53,167,148,181,71,163,148,188,92,212,150,148,135,112,150,225,183,52,151,224,74,221,152,69,138,255,153,102,93,173,153,108,86,20,153,243,85,44,154,8,90,205,154,45,39,10,154,134,243,233,155,54,37,129,155,66,64,24,155,116,75,226,155,146,254,74,156,104,141,12,157,189,79,173,157,215,128,79,158,10,108,42,158,195,232,73,159,97,115,99,159,148,144,62,159,151,118,118,159,164,164,224,160,158,186,200,161,125,64,105,163,52,115,149,163,208,148,59,164,15,223,167,164,61,6,152,164,142,171,217,165,69,76,14,165,81,215,6,165,88,245,93,165,165,195,22,166,60,118,44,166,60,166,54,166,60,207,255,166,185,42,196,166,230,136,104,167,112,61,173,168,174,28,136,169,34,103,85,169,190,14,187,169,255,179,204,171,27,167,208,171,199,182,93,171,228,66,234,172,0,163,211,172,10,243,94,172,30,142,69,172,59,143,53,172,167,115,41,174,114,17,170,174,233,253,208,174,254,78,99,175,73,132,81,175,94,13,102,175,134,101,198,176,74,9,207,176,78,145,193,176,139,120,255,176,193,185,185,177,156,96,95,177,220,124,241,178,115,178,207,179,125,236,16,180,91,229,89,180,96,241,188,181,25,109,29,181,46,228,67,182,1,112,164,182,24,159,237,182,67,110,47,183,64,106,247,183,192,75,42,184,164,57,99,185,20,131,94,186,74,82,188,187,191,233,41,187,243,248,118,188,42,18,108,188,62,205,30,188,62,235,181,188,76,15,2,188,193,35,203,189,52,137,212,189,71,153,57,189,131,224,22,189,192,186,170,189,222,59,156,190,148,10,106,190,228,32,122,192,52,86,158,192,128,94,56,193,19,49,72,193,100,93,17,193,237,145,128,194,52,85,77,194,65,159,102,194,136,21,43,194,179,198,122,194,197,249,253,194,252,209,88,195,180,176,78,195,208,245,58,197,79,178,110,198,59,242,89,198,251,152,213,199,46,232,11,199,52,232,166,199,154,200,179,200,116,246,16,200,182,101,114,200,184,66,106,201,55,125,48,201,95,88,189,201,169,140,245,202,125,33,144,202,205,207,43,203,104,198,126,204,3,137,240,205,96,201,234,205,97,5,232,205,106,124,61,205,244,245,33,206,152,49,179,207,89,44,106,207,184,169,115,208,40,73,162,208,141,227,0,208,202,24,86,208,249,86,85,210,151,222,9,211,43,12,199,211,52,122,59,211,157,24,12,211,163,178,161,213,96,62,39,213,165,35,125,213,215,131,181,213,240,218,132,215,35,95,156,215,184,123,77,215,237,26,124,215,246,44,41,216,142,90,78,216,177,88,57,216,210,99,250,217,122,60,136,219,138,91,137,219,157,247,76,220,5,196,82,220,16,53,61,221,129,219,10,221,160,69,119,222,18,239,141,222,42,165,223,222,180,215,133,223,105,236,229,223,114,129,82,223,229,242,23,223,236,152,100,224,27,215,39,224,82,213,92,225,53,89,150,225,162,63,97,227,102,42,161,227,135,182,132,227,186,47,194,227,215,204,80,228,89,95,217,228,143,102,68,229,215,202,141,230,110,41,246,230,110,58,21,230,209,35,86,231,127,4,207,233,32,164,246,233,229,242,211,233,235,184,129,234,53,0,169,235,102,65,36,235,140,211,193,235,226,230,180,236,69,194,137,236,160,129,160,236,212,87,92,237,107,158,252,237,110,37,83,237,149,34,157,237,252,211,64,238,110,238,220,238,132,239,60,238,226,106,2,238,248,169,231,239,3,56,152,239,250,229,233,240,66,212,109,240,193,35,57,241,3,201,123,241,20,81,145,241,76,189,168,242,81,71,73,242,128,250,51,242,231,70,111,242,231,120,5,242,231,161,55,243,1,188,66,243,191,211,186,243,234,61,235,243,236,108,113,244,100,211,212,244,158,99,204,245,141,202,146,245,154,58,146,245,159,126,81,245,186,81,64,246,75,93,240,246,75,93,240,246,138,240,156,247,38,251,102,247,142,25,100,248,152,36,58,248,231,165,46,249,142,215,189,250,8,239,8,250,25,23,143,250,59,204,130,250,87,139,228,250,134,14,111,252,242,201,168,253,9,210,146,253,36,70,102,254,233,244,168,255,38,24,240,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,21,2,87,151,144,33,126,154,181,34,97,78,22,40,223,98,110,79,164,68,165,79,218,182,104,88,155,43,106,94,176,29,132,111,133,101,44,146,39,194,29,157,105,189,193,186,49,97,39,198,212,128,144,204,96,75,176,225,204,217,55,237,18,130,77,237,231,176,157,240,255,187,224,247,123,128,40,248,140,84,234,254,138,215,1,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,21,2,87,151,144,33,126,154,181,34,97,78,22,40,223,98,110,79,164,68,165,79,218,182,104,88,155,43,106,94,176,29,132,111,133,101,44,146,39,194,29,157,105,189,193,186,49,97,39,198,212,128,144,204,96,75,176,225,204,217,55,237,18,130,77,237,231,176,157,240,255,187,224,247,123,128,40,248,140,84,234,254,138,215,1,0,5,4,98,111,100,121,2,21,2,87,151,144,33,126,154,181,34,97,78,22,40,223,98,110,79,164,68,165,79,218,182,104,88,155,43,106,94,176,29,132,111,133,101,44,146,39,194,29,157,105,189,193,186,49,97,39,198,212,128,144,204,96,75,176,225,204,217,55,237,18,130,77,237,231,176,157,240,255,187,224,247,123,128,40,248,140,84,234,254,138,215,1,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,5,8,113,111,158,116,33,206,112,117,160,165,4,194,81,156,227,205,104,76,185,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,5,8,113,111,158,116,33,206,112,117,160,165,4,194,81,156,227,205,104,76,185,0,5,4,104,116,109,108,2,5,8,113,111,158,116,33,206,112,117,160,165,4,194,81,156,227,205,104,76,185,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,33,6,200,245,29,14,39,176,221,19,49,243,245,21,75,95,121,33,147,60,203,38,170,170,218,39,197,117,230,51,134,174,19,54,159,190,77,56,155,134,1,68,93,93,226,92,225,243,15,98,214,116,205,100,150,76,121,110,103,100,15,120,61,41,242,123,56,73,87,124,129,90,222,129,58,49,45,149,30,93,192,155,135,193,233,160,227,0,138,169,32,197,10,170,236,215,86,182,140,75,202,190,147,216,103,215,176,111,16,221,203,190,61,224,196,1,4,238,199,78,107,239,31,83,147,254,13,48,186,254,53,172,90,0,5,9,98,111,100,121,44,104,116,109,108,2,33,6,200,245,29,14,39,176,221,19,49,243,245,21,75,95,121,33,147,60,203,38,170,170,218,39,197,117,230,51,134,174,19,54,159,190,77,56,155,134,1,68,93,93,226,92,225,243,15,98,214,116,205,100,150,76,121,110,103,100,15,120,61,41,242,123,56,73,87,124,129,90,222,129,58,49,45,149,30,93,192,155,135,193,233,160,227,0,138,169,32,197,10,170,236,215,86,182,140,75,202,190,147,216,103,215,176,111,16,221,203,190,61,224,196,1,4,238,199,78,107,239,31,83,147,254,13,48,186,254,53,172,90,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,6,12,88,119,174,30,218,81,233,146,84,3,47,148,192,24,83,190,81,122,132,208,47,254,205,0,5,4,98,111,100,121,2,6,12,88,119,174,30,218,81,233,146,84,3,47,148,192,24,83,190,81,122,132,208,47,254,205,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,1,167,200,8,68,0,5,4,104,116,109,108,2,1,167,200,8,68,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,128,0,0,0,227,3,167,45,22,6,76,30,159,7,8,75,106,7,165,158,183,11,23,164,213,11,126,188,198,11,188,201,174,11,220,86,75,18,78,106,184,19,105,12,243,20,221,239,44,21,141,118,151,22,61,72,55,22,138,208,230,22,205,113,63,26,185,230,152,26,212,60,216,27,103,228,182,27,113,50,76,27,114,45,173,27,114,161,152,27,121,11,55,28,210,241,238,29,27,85,177,29,114,10,203,30,139,143,102,31,218,156,76,32,25,92,101,33,53,152,199,33,73,189,165,33,130,40,131,33,243,198,120,34,39,69,223,34,128,3,81,37,85,139,147,38,52,91,10,40,112,199,128,40,206,44,158,41,130,190,43,41,132,101,13,41,188,40,133,42,149,21,120,43,66,137,207,43,66,152,69,43,149,12,30,44,169,115,146,46,131,177,88,46,222,134,155,48,135,199,127,49,160,230,114,50,43,229,233,52,148,98,7,54,30,164,103,54,204,189,40,54,242,138,28,55,34,47,104,55,174,104,3,55,247,251,216,56,164,101,152,56,188,44,150,57,230,102,125,60,105,217,183,60,210,28,191,60,230,178,139,61,28,15,79,61,87,219,65,62,34,72,155,62,232,254,18,63,133,138,7,65,80,224,4,65,237,76,156,66,69,126,108,69,172,31,59,69,197,238,3,71,71,149,8,72,29,174,126,72,187,139,219,73,88,123,145,73,140,174,208,73,251,232,204,76,156,205,203,76,158,10,105,76,169,29,39,76,189,0,200,78,50,209,136,78,235,193,132,79,255,253,108,81,196,73,32,83,150,130,122,84,16,106,120,85,3,251,12,87,102,239,204,89,227,3,123,89,229,67,60,90,104,204,182,91,89,200,216,91,199,105,188,91,226,203,228,92,157,132,162,92,178,201,101,92,235,193,56,96,251,216,101,97,146,11,141,98,194,47,193,98,253,100,21,99,203,233,118,100,38,48,206,100,127,160,175,101,170,114,235,102,52,33,38,103,34,217,27,103,37,136,248,103,164,76,36,106,35,84,57,112,22,206,68,112,152,141,167,113,195,242,252,114,64,15,190,115,247,243,47,116,182,154,5,121,75,208,180,121,207,143,59,124,30,153,248,124,211,174,157,126,77,48,200,126,144,41,74,126,219,255,138,127,28,39,146,127,46,227,81,127,59,113,117,127,188,110,130,128,88,158,140,128,140,150,60,129,167,230,26,130,19,141,250,130,148,0,128,131,129,254,154,132,194,55,7,135,243,251,38,137,8,130,79,137,225,128,229,138,53,20,105,139,95,45,143,139,102,65,180,141,112,87,223,143,32,181,112,146,2,229,89,148,148,153,209,148,183,201,202,148,183,201,212,149,164,210,215,151,14,85,153,151,235,132,25,153,145,82,165,153,213,229,246,157,36,43,127,158,10,135,29,158,90,208,159,158,175,245,103,159,77,1,92,160,142,178,106,167,27,129,162,167,241,49,47,170,152,86,95,171,93,227,10,173,15,201,253,173,153,224,22,175,160,5,151,178,32,38,207,179,78,199,226,181,190,175,164,182,203,26,59,184,249,107,226,185,35,16,108,192,16,82,121,192,120,85,207,195,88,176,17,195,247,105,53,196,186,165,82,198,14,110,66,199,143,196,118,200,35,110,110,200,210,71,165,201,74,110,204,204,145,52,33,205,239,175,106,206,52,228,180,207,15,236,238,209,155,121,89,210,23,18,240,210,251,3,14,211,155,250,51,213,134,46,122,213,134,46,122,216,66,87,119,217,7,86,67,219,12,58,142,220,156,147,104,221,101,108,240,226,157,128,154,226,211,190,245,227,135,52,32,228,115,236,177,228,152,140,252,228,234,62,28,229,77,192,83,229,98,113,118,232,47,35,55,234,67,9,202,234,227,64,206,241,19,192,48,242,178,141,171,242,231,71,208,242,231,144,116,244,25,198,25,245,70,46,141,247,108,94,81,247,115,97,81,247,137,176,196,247,251,70,195,249,107,63,148,249,113,109,183,249,149,10,35,250,57,107,133,251,28,254,246,251,42,81,214,255,82,99,221,0,5,9,98,111,100,121,44,104,116,109,108,2,128,0,0,0,227,3,167,45,22,6,76,30,159,7,8,75,106,7,165,158,183,11,23,164,213,11,126,188,198,11,188,201,174,11,220,86,75,18,78,106,184,19,105,12,243,20,221,239,44,21,141,118,151,22,61,72,55,22,138,208,230,22,205,113,63,26,185,230,152,26,212,60,216,27,103,228,182,27,113,50,76,27,114,45,173,27,114,161,152,27,121,11,55,28,210,241,238,29,27,85,177,29,114,10,203,30,139,143,102,31,218,156,76,32,25,92,101,33,53,152,199,33,73,189,165,33,130,40,131,33,243,198,120,34,39,69,223,34,128,3,81,37,85,139,147,38,52,91,10,40,112,199,128,40,206,44,158,41,130,190,43,41,132,101,13,41,188,40,133,42,149,21,120,43,66,137,207,43,66,152,69,43,149,12,30,44,169,115,146,46,131,177,88,46,222,134,155,48,135,199,127,49,160,230,114,50,43,229,233,52,148,98,7,54,30,164,103,54,204,189,40,54,242,138,28,55,34,47,104,55,174,104,3,55,247,251,216,56,164,101,152,56,188,44,150,57,230,102,125,60,105,217,183,60,210,28,191,60,230,178,139,61,28,15,79,61,87,219,65,62,34,72,155,62,232,254,18,63,133,138,7,65,80,224,4,65,237,76,156,66,69,126,108,69,172,31,59,69,197,238,3,71,71,149,8,72,29,174,126,72,187,139,219,73,88,123,145,73,140,174,208,73,251,232,204,76,156,205,203,76,158,10,105,76,169,29,39,76,189,0,200,78,50,209,136,78,235,193,132,79,255,253,108,81,196,73,32,83,150,130,122,84,16,106,120,85,3,251,12,87,102,239,204,89,227,3,123,89,229,67,60,90,104,204,182,91,89,200,216,91,199,105,188,91,226,203,228,92,157,132,162,92,178,201,101,92,235,193,56,96,251,216,101,97,146,11,141,98,194,47,193,98,253,100,21,99,203,233,118,100,38,48,206,100,127,160,175,101,170,114,235,102,52,33,38,103,34,217,27,103,37,136,248,103,164,76,36,106,35,84,57,112,22,206,68,112,152,141,167,113,195,242,252,114,64,15,190,115,247,243,47,116,182,154,5,121,75,208,180,121,207,143,59,124,30,153,248,124,211,174,157,126,77,48,200,126,144,41,74,126,219,255,138,127,28,39,146,127,46,227,81,127,59,113,117,127,188,110,130,128,88,158,140,128,140,150,60,129,167,230,26,130,19,141,250,130,148,0,128,131,129,254,154,132,194,55,7,135,243,251,38,137,8,130,79,137,225,128,229,138,53,20,105,139,95,45,143,139,102,65,180,141,112,87,223,143,32,181,112,146,2,229,89,148,148,153,209,148,183,201,202,148,183,201,212,149,164,210,215,151,14,85,153,151,235,132,25,153,145,82,165,153,213,229,246,157,36,43,127,158,10,135,29,158,90,208,159,158,175,245,103,159,77,1,92,160,142,178,106,167,27,129,162,167,241,49,47,170,152,86,95,171,93,227,10,173,15,201,253,173,153,224,22,175,160,5,151,178,32,38,207,179,78,199,226,181,190,175,164,182,203,26,59,184,249,107,226,185,35,16,108,192,16,82,121,192,120,85,207,195,88,176,17,195,247,105,53,196,186,165,82,198,14,110,66,199,143,196,118,200,35,110,110,200,210,71,165,201,74,110,204,204,145,52,33,205,239,175,106,206,52,228,180,207,15,236,238,209,155,121,89,210,23,18,240,210,251,3,14,211,155,250,51,213,134,46,122,213,134,46,122,216,66,87,119,217,7,86,67,219,12,58,142,220,156,147,104,221,101,108,240,226,157,128,154,226,211,190,245,227,135,52,32,228,115,236,177,228,152,140,252,228,234,62,28,229,77,192,83,229,98,113,118,232,47,35,55,234,67,9,202,234,227,64,206,241,19,192,48,242,178,141,171,242,231,71,208,242,231,144,116,244,25,198,25,245,70,46,141,247,108,94,81,247,115,97,81,247,137,176,196,247,251,70,195,249,107,63,148,249,113,109,183,249,149,10,35,250,57,107,133,251,28,254,246,251,42,81,214,255,82,99,221,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,9,3,98,206,168,31,242,44,126,60,86,206,245,86,68,195,212,126,232,52,1,127,120,14,204,141,150,235,150,221,77,163,218,227,69,123,143,0,5,4,98,111,100,121,2,9,3,98,206,168,31,242,44,126,60,86,206,245,86,68,195,212,126,232,52,1,127,120,14,204,141,150,235,150,221,77,163,218,227,69,123,143,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,99,108,105,45,98,97,114,45,112,111,112,117,112,2,34,2,193,110,136,20,223,60,26,24,217,80,179,27,253,127,172,28,207,173,144,46,10,100,26,52,8,58,104,71,253,58,213,81,96,75,157,92,202,34,199,95,63,145,105,95,109,221,154,97,172,129,171,101,220,46,99,103,61,129,110,103,232,199,68,111,172,40,45,111,172,40,45,122,226,95,81,124,194,19,107,127,46,213,3,133,252,145,241,151,207,82,183,162,67,98,46,163,1,218,93,166,77,225,5,176,53,135,228,177,74,158,188,198,249,145,213,217,124,62,119,218,149,249,100,220,104,69,231,234,51,41,10,245,185,156,95,8,1,19,46,99,108,105,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,34,2,193,110,136,20,223,60,26,24,217,80,179,27,253,127,172,28,207,173,144,46,10,100,26,52,8,58,104,71,253,58,213,81,96,75,157,92,202,34,199,95,63,145,105,95,109,221,154,97,172,129,171,101,220,46,99,103,61,129,110,103,232,199,68,111,172,40,45,111,172,40,45,122,226,95,81,124,194,19,107,127,46,213,3,133,252,145,241,151,207,82,183,162,67,98,46,163,1,218,93,166,77,225,5,176,53,135,228,177,74,158,188,198,249,145,213,217,124,62,119,218,149,249,100,220,104,69,231,234,51,41,10,245,185,156,95,0,5,9,98,111,100,121,44,104,116,109,108,2,34,2,193,110,136,20,223,60,26,24,217,80,179,27,253,127,172,28,207,173,144,46,10,100,26,52,8,58,104,71,253,58,213,81,96,75,157,92,202,34,199,95,63,145,105,95,109,221,154,97,172,129,171,101,220,46,99,103,61,129,110,103,232,199,68,111,172,40,45,111,172,40,45,122,226,95,81,124,194,19,107,127,46,213,3,133,252,145,241,151,207,82,183,162,67,98,46,163,1,218,93,166,77,225,5,176,53,135,228,177,74,158,188,198,249,145,213,217,124,62,119,218,149,249,100,220,104,69,231,234,51,41,10,245,185,156,95,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,28,46,119,116,45,99,108,105,45,99,111,111,107,105,101,45,98,97,114,45,99,111,110,116,97,105,110,101,114,2,36,24,115,7,162,26,218,88,74,38,174,238,113,40,222,116,61,43,104,117,65,59,250,247,207,67,12,28,31,74,45,49,210,77,115,139,11,79,222,215,228,83,83,147,34,88,122,94,174,93,134,111,117,98,8,66,31,100,117,35,95,120,26,136,243,127,239,114,107,129,234,159,217,148,47,250,57,163,208,45,30,166,224,170,145,170,86,44,25,174,116,2,84,177,169,103,210,180,96,241,188,189,173,243,159,197,152,5,95,201,245,150,50,210,46,11,226,212,82,238,242,213,48,75,228,223,127,1,43,224,246,176,127,225,77,10,234,239,161,52,88,247,62,63,34,0,5,9,98,111,100,121,44,104,116,109,108,2,36,24,115,7,162,26,218,88,74,38,174,238,113,40,222,116,61,43,104,117,65,59,250,247,207,67,12,28,31,74,45,49,210,77,115,139,11,79,222,215,228,83,83,147,34,88,122,94,174,93,134,111,117,98,8,66,31,100,117,35,95,120,26,136,243,127,239,114,107,129,234,159,217,148,47,250,57,163,208,45,30,166,224,170,145,170,86,44,25,174,116,2,84,177,169,103,210,180,96,241,188,189,173,243,159,197,152,5,95,201,245,150,50,210,46,11,226,212,82,238,242,213,48,75,228,223,127,1,43,224,246,176,127,225,77,10,234,239,161,52,88,247,62,63,34,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,28,114,99,44,32,109,111,100,97,108,45,99,97,99,115,112,45,111,112,101,110,44,32,44,32,115,116,97,121,2,128,0,0,1,76,0,87,220,153,1,10,88,193,1,118,228,230,2,151,104,146,2,202,6,0,3,121,138,4,3,253,152,100,4,35,250,45,4,47,193,224,4,70,253,126,5,13,65,175,5,139,146,180,5,220,205,241,6,63,146,149,7,148,17,163,8,243,202,186,9,108,246,224,9,156,41,198,11,126,135,182,12,56,129,223,13,31,70,195,17,77,49,165,17,180,18,251,17,181,114,157,18,73,148,107,18,176,103,255,19,231,95,60,20,24,205,219,21,30,236,14,21,239,81,57,22,2,241,121,22,72,67,237,22,156,206,26,23,175,138,206,24,161,41,184,26,111,235,254,26,215,178,193,27,16,40,190,27,75,14,10,29,129,102,64,29,161,149,69,29,173,222,142,30,30,76,245,31,132,224,189,32,32,171,71,32,62,3,162,32,194,55,154,33,116,186,199,33,240,149,90,34,31,76,120,34,135,31,194,37,110,44,54,37,231,160,134,38,112,56,14,39,84,48,173,39,254,146,180,40,227,138,139,42,115,177,202,42,121,130,75,42,155,109,136,43,2,72,69,43,155,130,14,46,60,88,44,47,67,33,12,47,132,50,14,49,77,55,250,49,132,29,170,49,158,216,52,50,226,21,22,51,46,30,44,52,113,146,79,52,150,208,15,55,175,195,152,56,8,67,47,58,219,18,204,59,126,45,243,60,136,93,5,60,223,137,42,60,252,247,229,61,104,137,70,63,31,161,142,63,160,198,73,63,166,216,57,64,47,43,244,64,143,165,40,64,162,222,78,65,40,121,101,66,34,133,131,66,185,217,93,67,196,182,242,68,172,177,84,68,179,9,194,68,217,142,62,70,38,193,2,70,70,186,252,70,250,124,254,71,87,70,194,72,76,19,128,73,152,96,219,73,182,88,61,73,208,32,23,74,99,13,156,75,64,248,157,75,215,211,200,77,146,198,41,78,105,31,182,78,142,123,245,78,213,18,81,79,162,156,251,80,198,77,222,81,247,144,196,82,67,213,116,82,71,185,181,82,73,76,153,85,196,74,199,86,95,91,64,89,213,250,83,90,12,73,196,90,73,43,147,91,203,246,237,91,206,149,220,91,251,44,115,92,25,96,128,92,86,219,185,93,182,100,111,93,209,26,56,94,23,97,223,95,66,95,223,95,237,158,247,96,149,122,63,97,90,2,150,98,50,219,220,99,12,40,94,100,15,120,168,100,84,205,4,101,120,38,177,102,1,87,10,102,95,190,125,102,99,254,164,103,30,101,237,103,37,175,106,103,153,217,91,104,205,53,124,105,202,100,8,107,237,103,137,108,116,181,224,108,200,58,194,109,212,27,231,110,30,31,202,110,74,62,82,110,82,38,219,110,99,22,180,110,210,191,228,110,244,22,134,111,124,19,130,112,18,69,249,113,125,136,178,114,83,144,186,115,47,15,124,116,44,108,145,117,19,217,24,117,48,148,83,117,165,232,28,118,83,181,121,119,7,21,93,119,182,102,63,120,29,223,182,121,102,255,73,121,218,85,149,123,92,204,38,124,34,157,108,125,44,110,136,125,169,9,7,125,195,236,38,126,3,137,233,126,57,58,152,126,61,114,125,126,193,90,196,126,214,56,198,128,81,6,21,128,133,187,218,128,185,218,80,129,108,114,60,130,8,240,156,131,61,230,192,131,168,16,12,131,204,56,65,133,16,147,14,133,177,31,195,133,224,37,59,134,135,228,250,136,37,57,213,136,205,233,179,137,227,69,159,138,13,160,33,140,127,154,86,141,76,68,212,141,121,100,148,142,3,145,137,142,18,230,110,143,125,89,127,143,125,122,56,143,128,5,56,143,128,99,212,143,129,251,64,144,3,209,128,144,88,21,188,144,216,149,55,145,127,202,86,147,23,239,239,147,45,124,71,147,73,172,71,147,224,217,90,148,208,9,225,148,218,99,197,149,216,56,136,150,46,145,117,150,137,229,79,151,27,92,103,152,66,158,77,154,17,177,213,154,136,135,189,154,143,217,151,156,139,249,206,156,194,218,224,158,174,76,168,160,231,21,144,161,171,189,109,161,225,123,246,162,55,37,165,162,66,102,51,163,4,137,235,164,172,180,250,165,135,3,148,166,29,111,213,166,118,145,138,166,202,213,124,167,55,130,196,167,62,71,45,167,91,97,107,171,103,70,100,172,22,21,163,175,171,46,11,176,227,181,192,177,27,45,134,178,111,40,25,179,37,211,105,179,106,247,106,181,131,75,186,182,59,58,227,182,63,201,169,183,154,112,151,183,186,129,16,183,244,16,121,187,155,250,221,187,247,150,151,189,155,25,225,189,174,39,11,191,61,252,103,191,163,159,173,193,14,207,7,193,62,27,223,196,168,189,243,197,31,212,51,197,39,76,32,197,46,145,59,197,79,198,212,198,51,36,154,198,70,128,132,198,78,18,152,198,161,198,201,199,45,163,39,199,144,26,75,200,167,5,217,200,201,139,135,202,44,104,174,202,190,91,206,203,36,248,63,203,175,90,134,204,201,84,89,206,153,167,76,207,227,204,63,210,97,113,173,211,190,20,253,212,149,252,172,213,216,108,39,215,87,211,101,217,245,199,159,218,45,177,39,218,102,70,82,219,80,76,147,220,55,130,150,220,143,61,126,222,130,208,132,222,198,99,60,223,113,243,34,226,149,47,248,227,35,242,127,227,87,72,182,228,26,110,43,228,91,208,140,230,85,216,192,231,124,147,59,231,209,2,189,234,100,246,233,235,122,219,42,235,187,53,16,235,254,99,134,236,176,254,198,236,252,152,212,237,53,139,89,237,118,144,120,238,143,5,247,239,17,224,114,240,21,133,125,240,197,219,27,241,134,23,25,241,154,208,250,242,215,134,248,242,236,173,245,243,59,139,194,243,141,22,68,244,98,237,34,244,99,31,11,246,14,28,147,248,73,15,141,249,197,165,151,251,136,16,61,253,139,18,25,253,231,84,141,254,133,158,182,255,111,60,91,2,1,27,114,99,44,32,109,111,100,97,108,45,99,97,99,115,112,45,98,111,120,44,32,44,32,115,116,97,121,2,128,0,0,1,76,0,87,220,153,1,10,88,193,1,118,228,230,2,151,104,146,2,202,6,0,3,121,138,4,3,253,152,100,4,35,250,45,4,47,193,224,4,70,253,126,5,13,65,175,5,139,146,180,5,220,205,241,6,63,146,149,7,148,17,163,8,243,202,186,9,108,246,224,9,156,41,198,11,126,135,182,12,56,129,223,13,31,70,195,17,77,49,165,17,180,18,251,17,181,114,157,18,73,148,107,18,176,103,255,19,231,95,60,20,24,205,219,21,30,236,14,21,239,81,57,22,2,241,121,22,72,67,237,22,156,206,26,23,175,138,206,24,161,41,184,26,111,235,254,26,215,178,193,27,16,40,190,27,75,14,10,29,129,102,64,29,161,149,69,29,173,222,142,30,30,76,245,31,132,224,189,32,32,171,71,32,62,3,162,32,194,55,154,33,116,186,199,33,240,149,90,34,31,76,120,34,135,31,194,37,110,44,54,37,231,160,134,38,112,56,14,39,84,48,173,39,254,146,180,40,227,138,139,42,115,177,202,42,121,130,75,42,155,109,136,43,2,72,69,43,155,130,14,46,60,88,44,47,67,33,12,47,132,50,14,49,77,55,250,49,132,29,170,49,158,216,52,50,226,21,22,51,46,30,44,52,113,146,79,52,150,208,15,55,175,195,152,56,8,67,47,58,219,18,204,59,126,45,243,60,136,93,5,60,223,137,42,60,252,247,229,61,104,137,70,63,31,161,142,63,160,198,73,63,166,216,57,64,47,43,244,64,143,165,40,64,162,222,78,65,40,121,101,66,34,133,131,66,185,217,93,67,196,182,242,68,172,177,84,68,179,9,194,68,217,142,62,70,38,193,2,70,70,186,252,70,250,124,254,71,87,70,194,72,76,19,128,73,152,96,219,73,182,88,61,73,208,32,23,74,99,13,156,75,64,248,157,75,215,211,200,77,146,198,41,78,105,31,182,78,142,123,245,78,213,18,81,79,162,156,251,80,198,77,222,81,247,144,196,82,67,213,116,82,71,185,181,82,73,76,153,85,196,74,199,86,95,91,64,89,213,250,83,90,12,73,196,90,73,43,147,91,203,246,237,91,206,149,220,91,251,44,115,92,25,96,128,92,86,219,185,93,182,100,111,93,209,26,56,94,23,97,223,95,66,95,223,95,237,158,247,96,149,122,63,97,90,2,150,98,50,219,220,99,12,40,94,100,15,120,168,100,84,205,4,101,120,38,177,102,1,87,10,102,95,190,125,102,99,254,164,103,30,101,237,103,37,175,106,103,153,217,91,104,205,53,124,105,202,100,8,107,237,103,137,108,116,181,224,108,200,58,194,109,212,27,231,110,30,31,202,110,74,62,82,110,82,38,219,110,99,22,180,110,210,191,228,110,244,22,134,111,124,19,130,112,18,69,249,113,125,136,178,114,83,144,186,115,47,15,124,116,44,108,145,117,19,217,24,117,48,148,83,117,165,232,28,118,83,181,121,119,7,21,93,119,182,102,63,120,29,223,182,121,102,255,73,121,218,85,149,123,92,204,38,124,34,157,108,125,44,110,136,125,169,9,7,125,195,236,38,126,3,137,233,126,57,58,152,126,61,114,125,126,193,90,196,126,214,56,198,128,81,6,21,128,133,187,218,128,185,218,80,129,108,114,60,130,8,240,156,131,61,230,192,131,168,16,12,131,204,56,65,133,16,147,14,133,177,31,195,133,224,37,59,134,135,228,250,136,37,57,213,136,205,233,179,137,227,69,159,138,13,160,33,140,127,154,86,141,76,68,212,141,121,100,148,142,3,145,137,142,18,230,110,143,125,89,127,143,125,122,56,143,128,5,56,143,128,99,212,143,129,251,64,144,3,209,128,144,88,21,188,144,216,149,55,145,127,202,86,147,23,239,239,147,45,124,71,147,73,172,71,147,224,217,90,148,208,9,225,148,218,99,197,149,216,56,136,150,46,145,117,150,137,229,79,151,27,92,103,152,66,158,77,154,17,177,213,154,136,135,189,154,143,217,151,156,139,249,206,156,194,218,224,158,174,76,168,160,231,21,144,161,171,189,109,161,225,123,246,162,55,37,165,162,66,102,51,163,4,137,235,164,172,180,250,165,135,3,148,166,29,111,213,166,118,145,138,166,202,213,124,167,55,130,196,167,62,71,45,167,91,97,107,171,103,70,100,172,22,21,163,175,171,46,11,176,227,181,192,177,27,45,134,178,111,40,25,179,37,211,105,179,106,247,106,181,131,75,186,182,59,58,227,182,63,201,169,183,154,112,151,183,186,129,16,183,244,16,121,187,155,250,221,187,247,150,151,189,155,25,225,189,174,39,11,191,61,252,103,191,163,159,173,193,14,207,7,193,62,27,223,196,168,189,243,197,31,212,51,197,39,76,32,197,46,145,59,197,79,198,212,198,51,36,154,198,70,128,132,198,78,18,152,198,161,198,201,199,45,163,39,199,144,26,75,200,167,5,217,200,201,139,135,202,44,104,174,202,190,91,206,203,36,248,63,203,175,90,134,204,201,84,89,206,153,167,76,207,227,204,63,210,97,113,173,211,190,20,253,212,149,252,172,213,216,108,39,215,87,211,101,217,245,199,159,218,45,177,39,218,102,70,82,219,80,76,147,220,55,130,150,220,143,61,126,222,130,208,132,222,198,99,60,223,113,243,34,226,149,47,248,227,35,242,127,227,87,72,182,228,26,110,43,228,91,208,140,230,85,216,192,231,124,147,59,231,209,2,189,234,100,246,233,235,122,219,42,235,187,53,16,235,254,99,134,236,176,254,198,236,252,152,212,237,53,139,89,237,118,144,120,238,143,5,247,239,17,224,114,240,21,133,125,240,197,219,27,241,134,23,25,241,154,208,250,242,215,134,248,242,236,173,245,243,59,139,194,243,141,22,68,244,98,237,34,244,99,31,11,246,14,28,147,248,73,15,141,249,197,165,151,251,136,16,61,253,139,18,25,253,231,84,141,254,133,158,182,255,111,60,91,8,1,21,46,97,118,97,100,97,45,102,111,111,116,101,114,45,115,99,114,105,112,116,115,2,3,150,132,237,85,161,110,12,52,247,168,11,198,0,5,9,98,111,100,121,44,104,116,109,108,2,3,150,132,237,85,161,110,12,52,247,168,11,198,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,109,111,100,97,108,2,40,7,40,111,62,8,86,212,82,9,75,42,243,10,229,226,23,23,124,98,162,48,50,228,33,53,223,166,223,58,201,54,18,62,207,13,234,82,155,209,55,89,215,159,96,89,226,116,131,90,160,61,165,93,123,67,174,117,52,105,24,124,226,226,31,131,181,205,125,136,132,131,48,140,228,184,155,148,220,136,194,164,150,9,185,170,207,221,200,173,128,224,136,174,94,177,182,190,148,116,1,197,8,125,148,197,30,80,180,210,1,62,179,218,73,211,30,219,43,142,23,219,181,173,4,220,136,233,64,221,65,143,14,222,223,19,181,225,109,60,0,233,26,40,213,234,36,93,207,246,229,57,98,247,231,49,126,252,122,25,34,8,1,20,46,82,101,97,99,116,77,111,100,97,108,95,95,79,118,101,114,108,97,121,2,15,88,112,54,40,104,133,145,99,104,223,38,60,126,6,8,105,136,225,39,221,139,169,155,36,178,89,29,64,183,176,38,200,203,215,13,17,211,243,109,218,218,93,176,107,220,217,224,195,232,235,63,23,237,21,70,213,254,171,46,185,0,5,9,98,111,100,121,44,104,116,109,108,2,15,88,112,54,40,104,133,145,99,104,223,38,60,126,6,8,105,136,225,39,221,139,169,155,36,178,89,29,64,183,176,38,200,203,215,13,17,211,243,109,218,218,93,176,107,220,217,224,195,232,235,63,23,237,21,70,213,254,171,46,185,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,7,46,109,102,112,45,98,103,2,80,0,195,0,65,3,56,150,59,9,74,196,39,10,208,219,14,17,210,140,65,19,128,44,157,23,226,177,252,24,225,43,129,27,116,241,193,27,121,172,2,28,96,22,103,29,197,129,88,33,240,107,54,38,164,20,135,43,249,52,185,49,120,196,222,51,51,235,214,62,166,157,77,62,166,157,77,63,25,177,19,67,114,204,197,74,112,19,98,76,14,190,147,79,57,25,198,88,125,43,186,88,174,81,90,90,235,92,156,91,42,36,211,94,186,205,214,95,34,189,170,96,14,92,244,98,115,37,96,101,142,22,138,110,188,35,218,116,44,82,9,117,68,136,191,126,146,83,20,126,190,36,16,129,107,136,116,130,57,178,103,135,171,0,153,139,198,29,131,141,231,160,134,145,209,227,21,148,186,121,184,149,170,16,207,150,22,4,135,150,243,26,79,151,213,234,221,157,61,68,182,160,39,245,184,162,92,82,22,163,74,208,59,166,66,45,106,166,254,170,134,167,188,255,207,168,204,60,32,179,145,19,98,181,51,144,205,183,73,208,242,187,183,101,96,187,226,192,134,189,7,11,230,190,31,122,89,196,89,255,137,197,18,244,20,197,228,31,55,200,55,255,176,203,182,199,209,207,12,88,122,230,166,40,145,235,155,129,177,237,75,195,56,242,133,136,71,243,24,88,171,243,128,54,166,243,130,110,81,244,50,152,72,248,127,174,150,252,52,196,153,8,1,9,46,109,102,112,45,119,114,97,112,2,80,0,195,0,65,3,56,150,59,9,74,196,39,10,208,219,14,17,210,140,65,19,128,44,157,23,226,177,252,24,225,43,129,27,116,241,193,27,121,172,2,28,96,22,103,29,197,129,88,33,240,107,54,38,164,20,135,43,249,52,185,49,120,196,222,51,51,235,214,62,166,157,77,62,166,157,77,63,25,177,19,67,114,204,197,74,112,19,98,76,14,190,147,79,57,25,198,88,125,43,186,88,174,81,90,90,235,92,156,91,42,36,211,94,186,205,214,95,34,189,170,96,14,92,244,98,115,37,96,101,142,22,138,110,188,35,218,116,44,82,9,117,68,136,191,126,146,83,20,126,190,36,16,129,107,136,116,130,57,178,103,135,171,0,153,139,198,29,131,141,231,160,134,145,209,227,21,148,186,121,184,149,170,16,207,150,22,4,135,150,243,26,79,151,213,234,221,157,61,68,182,160,39,245,184,162,92,82,22,163,74,208,59,166,66,45,106,166,254,170,134,167,188,255,207,168,204,60,32,179,145,19,98,181,51,144,205,183,73,208,242,187,183,101,96,187,226,192,134,189,7,11,230,190,31,122,89,196,89,255,137,197,18,244,20,197,228,31,55,200,55,255,176,203,182,199,209,207,12,88,122,230,166,40,145,235,155,129,177,237,75,195,56,242,133,136,71,243,24,88,171,243,128,54,166,243,130,110,81,244,50,152,72,248,127,174,150,252,52,196,153,0,5,9,98,111,100,121,44,104,116,109,108,2,80,0,195,0,65,3,56,150,59,9,74,196,39,10,208,219,14,17,210,140,65,19,128,44,157,23,226,177,252,24,225,43,129,27,116,241,193,27,121,172,2,28,96,22,103,29,197,129,88,33,240,107,54,38,164,20,135,43,249,52,185,49,120,196,222,51,51,235,214,62,166,157,77,62,166,157,77,63,25,177,19,67,114,204,197,74,112,19,98,76,14,190,147,79,57,25,198,88,125,43,186,88,174,81,90,90,235,92,156,91,42,36,211,94,186,205,214,95,34,189,170,96,14,92,244,98,115,37,96,101,142,22,138,110,188,35,218,116,44,82,9,117,68,136,191,126,146,83,20,126,190,36,16,129,107,136,116,130,57,178,103,135,171,0,153,139,198,29,131,141,231,160,134,145,209,227,21,148,186,121,184,149,170,16,207,150,22,4,135,150,243,26,79,151,213,234,221,157,61,68,182,160,39,245,184,162,92,82,22,163,74,208,59,166,66,45,106,166,254,170,134,167,188,255,207,168,204,60,32,179,145,19,98,181,51,144,205,183,73,208,242,187,183,101,96,187,226,192,134,189,7,11,230,190,31,122,89,196,89,255,137,197,18,244,20,197,228,31,55,200,55,255,176,203,182,199,209,207,12,88,122,230,166,40,145,235,155,129,177,237,75,195,56,242,133,136,71,243,24,88,171,243,128,54,166,243,130,110,81,244,50,152,72,248,127,174,150,252,52,196,153,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,102,97,110,99,121,98,111,120,45,99,111,110,116,97,105,110,101,114,2,54,0,99,47,153,4,219,32,70,5,182,109,174,5,192,7,26,6,250,76,136,7,153,25,36,11,213,178,139,15,62,113,70,21,184,230,216,24,247,62,93,34,8,140,130,39,24,143,222,43,52,225,38,44,89,133,34,51,16,39,167,59,234,243,159,63,178,99,248,73,88,219,254,82,105,45,14,82,134,177,244,99,150,16,97,100,185,135,255,103,59,25,21,109,153,55,92,110,98,229,139,114,160,169,34,116,144,78,56,121,3,13,180,128,118,152,42,129,187,196,9,138,123,195,188,139,136,152,175,141,7,55,54,141,30,182,28,154,124,26,18,154,226,1,244,156,25,152,97,174,169,214,188,181,160,98,194,181,172,157,106,182,113,21,201,187,107,183,143,191,154,69,166,196,160,167,166,204,117,4,206,204,165,5,20,210,74,249,203,216,203,211,117,221,31,91,122,221,133,32,133,225,254,24,138,228,227,247,156,240,14,223,56,251,57,81,140,0,5,9,98,111,100,121,44,104,116,109,108,2,54,0,99,47,153,4,219,32,70,5,182,109,174,5,192,7,26,6,250,76,136,7,153,25,36,11,213,178,139,15,62,113,70,21,184,230,216,24,247,62,93,34,8,140,130,39,24,143,222,43,52,225,38,44,89,133,34,51,16,39,167,59,234,243,159,63,178,99,248,73,88,219,254,82,105,45,14,82,134,177,244,99,150,16,97,100,185,135,255,103,59,25,21,109,153,55,92,110,98,229,139,114,160,169,34,116,144,78,56,121,3,13,180,128,118,152,42,129,187,196,9,138,123,195,188,139,136,152,175,141,7,55,54,141,30,182,28,154,124,26,18,154,226,1,244,156,25,152,97,174,169,214,188,181,160,98,194,181,172,157,106,182,113,21,201,187,107,183,143,191,154,69,166,196,160,167,166,204,117,4,206,204,165,5,20,210,74,249,203,216,203,211,117,221,31,91,122,221,133,32,133,225,254,24,138,228,227,247,156,240,14,223,56,251,57,81,140,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,109,111,100,95,99,109,115,95,97,99,99,101,112,116,95,116,97,103,115,2,8,70,3,40,196,91,229,193,158,125,248,158,157,145,138,79,93,154,121,213,22,233,50,103,183,239,97,109,164,249,17,2,22,0,5,9,98,111,100,121,44,104,116,109,108,2,8,70,3,40,196,91,229,193,158,125,248,158,157,145,138,79,93,154,121,213,22,233,50,103,183,239,97,109,164,249,17,2,22,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,166,254,124,238,16,1,20,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,111,100,97,108,2,1,35,136,149,138,8,1,15,46,109,111,100,97,108,115,45,111,118,101,114,108,97,121,2,1,35,136,149,138,0,5,4,98,111,100,121,2,1,35,136,149,138,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,67,111,111,107,105,101,77,111,100,97,108,2,1,152,27,41,35,8,1,23,46,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,79,118,101,114,108,97,121,2,1,152,27,41,35,0,5,4,98,111,100,121,2,1,152,27,41,35,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,115,45,111,118,101,114,108,97,121,2,19,3,5,51,109,3,82,224,220,8,180,38,64,16,252,172,138,30,21,95,178,44,138,125,163,72,187,224,112,124,159,245,197,134,14,41,205,138,160,250,148,141,171,62,131,154,183,180,234,163,221,214,143,201,157,126,158,207,19,174,68,228,5,146,124,233,88,1,85,237,27,226,97,254,66,53,38,0,5,4,104,116,109,108,2,19,3,5,51,109,3,82,224,220,8,180,38,64,16,252,172,138,30,21,95,178,44,138,125,163,72,187,224,112,124,159,245,197,134,14,41,205,138,160,250,148,141,171,62,131,154,183,180,234,163,221,214,143,201,157,126,158,207,19,174,68,228,5,146,124,233,88,1,85,237,27,226,97,254,66,53,38,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,14,46,98,97,115,105,99,76,105,103,104,116,98,111,120,2,23,0,40,148,240,5,109,73,168,8,65,218,150,9,9,47,11,10,175,94,122,13,35,108,254,19,169,104,151,24,172,161,156,30,44,193,8,71,28,115,85,88,217,243,191,89,108,38,254,94,170,222,81,109,17,178,33,129,90,234,12,144,110,92,191,158,253,70,73,187,95,199,87,201,9,13,122,202,0,231,114,202,233,231,157,209,89,107,68,215,126,170,111,0,5,9,98,111,100,121,44,104,116,109,108,2,23,0,40,148,240,5,109,73,168,8,65,218,150,9,9,47,11,10,175,94,122,13,35,108,254,19,169,104,151,24,172,161,156,30,44,193,8,71,28,115,85,88,217,243,191,89,108,38,254,94,170,222,81,109,17,178,33,129,90,234,12,144,110,92,191,158,253,70,73,187,95,199,87,201,9,13,122,202,0,231,114,202,233,231,157,209,89,107,68,215,126,170,111,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,104,105,100,101,95,99,111,111,107,105,101,111,118,101,114,108,97,121,95,118,50,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,148,188,51,117,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,115,111,99,105,97,108,109,101,100,105,97,45,99,111,111,107,105,101,115,95,97,108,108,111,119,101,100,95,118,50,44,32,48,2,1,148,188,51,117,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,102,111,114,109,97,110,99,101,45,99,111,111,107,105,101,115,95,97,108,108,111,119,101,100,95,118,50,44,32,48,2,1,148,188,51,117,8,1,10,46,99,99,45,103,114,111,119,101,114,2,3,79,19,130,5,109,87,166,41,132,82,220,181,0,5,9,98,111,100,121,44,104,116,109,108,2,3,79,19,130,5,109,87,166,41,132,82,220,181,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,4,35,99,99,99,2,2,30,12,3,214,195,37,140,153,0,5,9,98,111,100,121,44,104,116,109,108,2,2,30,12,3,214,195,37,140,153,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,3,35,99,99,2,6,4,58,3,251,96,123,52,254,96,165,147,69,192,250,223,114,203,65,246,192,220,72,155,213,0,5,9,98,111,100,121,44,104,116,109,108,2,6,4,58,3,251,96,123,52,254,96,165,147,69,192,250,223,114,203,65,246,192,220,72,155,213,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,3,46,99,99,2,1,134,153,11,248,0,5,9,98,111,100,121,44,104,116,109,108,2,1,134,153,11,248,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,29,46,67,111,111,107,105,101,67,111,110,115,101,110,116,95,119,114,97,112,112,101,114,95,95,108,115,98,66,105,2,1,155,157,230,196,0,5,1,42,2,1,155,157,230,196,75,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,1,42,2,5,24,105,135,61,30,155,165,97,147,38,92,48,203,72,4,52,251,10,247,210,55,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,0,5,1,42,2,18,0,107,65,175,19,221,45,212,59,218,88,199,68,54,63,95,71,132,58,155,72,134,49,97,101,193,80,250,115,175,52,192,143,129,157,142,189,58,154,3,198,13,179,174,201,235,126,210,203,92,123,61,210,170,183,197,221,233,229,218,232,86,145,118,232,190,16,186,239,138,7,96,75,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,4,98,111,100,121,2,1,121,149,105,52,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,108,98,79,117,116,101,114,87,114,97,112,112,101,114,2,4,86,111,17,179,102,98,193,224,175,77,17,140,195,23,239,46,8,1,10,46,108,98,79,118,101,114,108,97,121,2,4,86,111,17,179,102,98,193,224,175,77,17,140,195,23,239,46,0,5,4,98,111,100,121,2,4,86,111,17,179,102,98,193,224,175,77,17,140,195,23,239,46,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,6,86,35,200,87,86,150,59,209,115,158,80,10,194,197,253,34,206,239,240,190,231,57,27,36,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,103,100,112,114,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,2,119,248,54,163,176,57,3,149,0,5,9,98,111,100,121,44,104,116,109,108,2,2,119,248,54,163,176,57,3,149,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,9,46,114,122,45,109,111,100,97,108,2,1,72,1,232,160,0,5,9,98,111,100,121,44,104,116,109,108,2,1,72,1,232,160,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,99,117,114,114,101,110,116,2,15,6,202,15,244,27,103,78,196,38,110,124,105,55,27,54,137,116,12,43,27,121,121,226,66,133,157,233,101,144,157,139,140,148,196,97,248,161,66,57,157,166,55,97,84,172,167,95,54,175,211,68,68,176,232,21,110,254,208,96,82,0,5,9,98,111,100,121,44,104,116,109,108,2,15,6,202,15,244,27,103,78,196,38,110,124,105,55,27,54,137,116,12,43,27,121,121,226,66,133,157,233,101,144,157,139,140,148,196,97,248,161,66,57,157,166,55,97,84,172,167,95,54,175,211,68,68,176,232,21,110,254,208,96,82,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,242,48,32,37,8,1,14,46,115,45,99,111,111,107,105,101,45,105,110,102,111,2,3,27,105,149,134,96,252,174,59,148,198,197,170,0,5,9,98,111,100,121,44,104,116,109,108,2,3,27,105,149,134,96,252,174,59,148,198,197,170,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,117,115,101,114,99,101,110,116,114,105,99,115,45,114,111,111,116,2,6,28,233,26,221,57,124,197,8,118,42,29,179,124,165,128,36,217,130,116,126,224,143,230,241,0,5,9,98,111,100,121,44,104,116,109,108,2,6,28,233,26,221,57,124,197,8,118,42,29,179,124,165,128,36,217,130,116,126,224,143,230,241,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,10,46,103,100,112,114,77,111,100,97,108,2,7,8,139,35,73,33,45,215,139,37,185,193,91,102,174,54,152,103,233,220,118,186,136,168,73,232,137,41,73,0,5,9,98,111,100,121,44,104,116,109,108,2,7,8,139,35,73,33,45,215,139,37,185,193,91,102,174,54,152,103,233,220,118,186,136,168,73,232,137,41,73,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,100,115,118,103,112,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,2,7,23,198,110,51,150,79,33,214,150,79,137,166,185,126,167,14,190,24,14,112,227,30,142,149,230,64,20,147,0,5,4,104,116,109,108,2,7,23,198,110,51,150,79,33,214,150,79,137,166,185,126,167,14,190,24,14,112,227,30,142,149,230,64,20,147,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,114,101,118,101,97,108,95,95,111,118,101,114,108,97,121,2,2,12,89,10,45,27,101,234,184,0,5,9,98,111,100,121,44,104,116,109,108,2,2,12,89,10,45,27,101,234,184,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,115,45,119,114,97,112,112,101,114,2,37,4,173,86,72,14,241,49,47,15,251,115,198,19,214,172,222,24,149,175,85,42,85,218,234,45,74,243,242,47,125,210,136,56,202,180,136,57,64,45,107,59,193,221,106,76,76,95,47,89,182,65,105,93,102,95,135,96,184,250,1,98,16,169,178,105,7,245,25,113,60,93,85,132,39,147,59,135,160,23,198,141,58,39,134,150,58,10,203,157,9,153,255,157,41,129,229,174,125,248,182,176,42,64,113,202,19,17,15,208,240,203,127,214,142,169,215,215,43,183,112,215,126,178,152,220,197,146,42,221,28,243,42,231,144,188,64,238,0,154,58,239,195,98,183,254,166,96,98,0,5,4,98,111,100,121,2,37,4,173,86,72,14,241,49,47,15,251,115,198,19,214,172,222,24,149,175,85,42,85,218,234,45,74,243,242,47,125,210,136,56,202,180,136,57,64,45,107,59,193,221,106,76,76,95,47,89,182,65,105,93,102,95,135,96,184,250,1,98,16,169,178,105,7,245,25,113,60,93,85,132,39,147,59,135,160,23,198,141,58,39,134,150,58,10,203,157,9,153,255,157,41,129,229,174,125,248,182,176,42,64,113,202,19,17,15,208,240,203,127,214,142,169,215,215,43,183,112,215,126,178,152,220,197,146,42,221,28,243,42,231,144,188,64,238,0,154,58,239,195,98,183,254,166,96,98,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,112,114,105,118,97,99,121,95,104,101,97,100,115,117,112,2,7,9,109,46,222,13,214,47,138,31,62,103,85,34,125,18,10,86,68,82,72,106,44,19,122,227,175,14,130,8,1,24,46,112,114,105,118,97,99,121,95,104,101,97,100,115,117,112,95,111,118,101,114,108,97,121,2,7,9,109,46,222,13,214,47,138,31,62,103,85,34,125,18,10,86,68,82,72,106,44,19,122,227,175,14,130,8,1,17,46,102,97,110,99,121,98,111,120,45,111,118,101,114,108,97,121,2,105,1,3,35,51,2,96,25,5,4,164,212,229,6,22,93,196,6,247,41,24,7,23,33,14,7,245,144,162,22,88,122,61,22,166,233,67,26,75,133,77,28,81,114,82,31,171,2,242,31,171,2,242,43,249,246,180,45,194,168,137,46,118,132,124,52,165,181,134,52,240,96,239,53,43,207,82,55,69,214,222,56,87,100,212,57,44,54,82,57,128,165,134,57,174,236,248,62,114,20,115,63,127,202,113,64,145,80,117,66,66,78,55,70,21,216,84,75,50,67,17,75,115,195,75,75,215,90,245,77,60,196,38,82,222,93,102,87,167,253,70,95,27,148,172,96,23,34,21,96,249,168,108,99,143,150,163,101,89,177,165,103,193,180,138,109,17,157,130,115,56,89,107,119,206,66,212,124,9,71,24,125,244,34,24,132,161,63,239,132,178,234,182,133,179,174,248,134,152,76,120,139,184,60,216,143,122,83,109,143,128,88,81,147,244,48,239,152,219,136,4,153,160,206,172,153,244,104,29,159,113,138,32,162,168,29,52,163,182,129,157,167,0,171,171,170,234,126,236,171,68,188,51,171,68,233,65,179,36,204,3,179,150,147,194,179,190,45,180,180,177,182,90,181,113,58,15,182,222,78,71,187,102,60,111,188,60,47,150,189,143,32,218,191,209,136,93,194,161,225,70,196,65,48,52,196,249,19,155,197,27,143,74,199,87,94,201,199,135,156,121,201,241,223,78,203,148,143,118,205,102,130,153,206,0,140,207,208,12,236,71,211,204,90,191,212,54,143,159,213,76,28,66,216,243,43,14,217,124,52,128,217,176,180,20,217,180,210,127,219,210,15,91,226,73,235,138,228,137,74,78,230,77,114,39,230,178,138,247,233,121,94,49,242,165,50,85,243,84,68,151,246,16,127,135,246,16,132,128,246,174,254,219,252,248,229,225,255,123,139,50,0,5,9,98,111,100,121,44,104,116,109,108,2,105,1,3,35,51,2,96,25,5,4,164,212,229,6,22,93,196,6,247,41,24,7,23,33,14,7,245,144,162,22,88,122,61,22,166,233,67,26,75,133,77,28,81,114,82,31,171,2,242,31,171,2,242,43,249,246,180,45,194,168,137,46,118,132,124,52,165,181,134,52,240,96,239,53,43,207,82,55,69,214,222,56,87,100,212,57,44,54,82,57,128,165,134,57,174,236,248,62,114,20,115,63,127,202,113,64,145,80,117,66,66,78,55,70,21,216,84,75,50,67,17,75,115,195,75,75,215,90,245,77,60,196,38,82,222,93,102,87,167,253,70,95,27,148,172,96,23,34,21,96,249,168,108,99,143,150,163,101,89,177,165,103,193,180,138,109,17,157,130,115,56,89,107,119,206,66,212,124,9,71,24,125,244,34,24,132,161,63,239,132,178,234,182,133,179,174,248,134,152,76,120,139,184,60,216,143,122,83,109,143,128,88,81,147,244,48,239,152,219,136,4,153,160,206,172,153,244,104,29,159,113,138,32,162,168,29,52,163,182,129,157,167,0,171,171,170,234,126,236,171,68,188,51,171,68,233,65,179,36,204,3,179,150,147,194,179,190,45,180,180,177,182,90,181,113,58,15,182,222,78,71,187,102,60,111,188,60,47,150,189,143,32,218,191,209,136,93,194,161,225,70,196,65,48,52,196,249,19,155,197,27,143,74,199,87,94,201,199,135,156,121,201,241,223,78,203,148,143,118,205,102,130,153,206,0,140,207,208,12,236,71,211,204,90,191,212,54,143,159,213,76,28,66,216,243,43,14,217,124,52,128,217,176,180,20,217,180,210,127,219,210,15,91,226,73,235,138,228,137,74,78,230,77,114,39,230,178,138,247,233,121,94,49,242,165,50,85,243,84,68,151,246,16,127,135,246,16,132,128,246,174,254,219,252,248,229,225,255,123,139,50,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,117,105,45,119,105,100,103,101,116,45,111,118,101,114,108,97,121,2,51,1,182,215,226,3,236,24,166,5,226,124,252,6,72,73,64,6,112,234,198,11,142,131,248,19,46,80,172,26,99,77,31,33,105,83,13,41,108,69,41,44,36,15,78,55,176,20,135,57,205,80,102,59,202,40,206,67,133,246,136,69,94,52,38,83,80,230,31,86,19,192,236,106,153,224,14,115,46,87,72,118,83,231,220,119,142,249,229,136,28,103,9,139,63,107,66,142,166,228,204,145,113,207,72,147,18,98,89,147,79,21,60,149,192,247,100,150,173,17,211,158,197,238,13,160,198,116,85,164,6,93,88,178,185,81,148,186,65,231,48,187,57,209,255,188,12,178,94,202,195,168,209,202,252,197,222,204,148,33,138,211,205,191,42,214,107,92,185,216,52,131,133,216,120,217,239,218,89,237,233,223,190,45,166,223,193,9,56,228,129,156,84,233,21,18,252,233,120,177,19,242,127,134,224,8,1,10,46,117,105,45,100,105,97,108,111,103,2,51,1,182,215,226,3,236,24,166,5,226,124,252,6,72,73,64,6,112,234,198,11,142,131,248,19,46,80,172,26,99,77,31,33,105,83,13,41,108,69,41,44,36,15,78,55,176,20,135,57,205,80,102,59,202,40,206,67,133,246,136,69,94,52,38,83,80,230,31,86,19,192,236,106,153,224,14,115,46,87,72,118,83,231,220,119,142,249,229,136,28,103,9,139,63,107,66,142,166,228,204,145,113,207,72,147,18,98,89,147,79,21,60,149,192,247,100,150,173,17,211,158,197,238,13,160,198,116,85,164,6,93,88,178,185,81,148,186,65,231,48,187,57,209,255,188,12,178,94,202,195,168,209,202,252,197,222,204,148,33,138,211,205,191,42,214,107,92,185,216,52,131,133,216,120,217,239,218,89,237,233,223,190,45,166,223,193,9,56,228,129,156,84,233,21,18,252,233,120,177,19,242,127,134,224,0,5,9,98,111,100,121,44,104,116,109,108,2,48,1,182,215,226,3,236,24,166,5,226,124,252,6,72,73,64,6,112,234,198,11,142,131,248,19,46,80,172,26,99,77,31,33,105,83,13,41,108,69,41,44,36,15,78,55,176,20,135,57,205,80,102,59,202,40,206,67,133,246,136,69,94,52,38,83,80,230,31,86,19,192,236,106,153,224,14,115,46,87,72,118,83,231,220,136,28,103,9,139,63,107,66,142,166,228,204,145,113,207,72,147,18,98,89,147,79,21,60,149,192,247,100,150,173,17,211,158,197,238,13,160,198,116,85,164,6,93,88,186,65,231,48,187,57,209,255,188,12,178,94,202,195,168,209,202,252,197,222,204,148,33,138,211,205,191,42,214,107,92,185,216,52,131,133,216,120,217,239,218,89,237,233,223,190,45,166,228,129,156,84,233,21,18,252,233,120,177,19,242,127,134,224,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,25,91,100,97,116,97,45,112,111,112,109,97,107,101,42,61,34,99,111,111,107,105,101,95,34,93,2,1,186,179,43,71,0,5,4,104,116,109,108,2,1,186,179,43,71,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,4,24,211,225,221,75,134,247,94,136,86,145,204,239,34,2,195,8,1,14,46,109,111,100,97,108,45,111,118,101,114,108,97,121,2,4,24,211,225,221,75,134,247,94,136,86,145,204,239,34,2,195,0,5,4,104,116,109,108,2,4,24,211,225,221,75,134,247,94,136,86,145,204,239,34,2,195,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,2,1,30,114,99,44,32,106,115,45,109,111,100,97,108,85,110,99,108,111,115,97,98,108,101,44,32,44,32,115,116,97,121,2,1,57,221,211,224,2,1,65,114,101,109,111,118,101,45,99,108,97,115,115,44,32,106,115,45,99,111,111,107,105,101,115,77,111,100,97,108,124,105,115,45,111,112,101,110,44,32,46,106,115,45,99,111,111,107,105,101,115,77,111,100,97,108,92,44,46,105,115,45,111,112,101,110,2,1,57,221,211,224,0,5,4,98,111,100,121,2,1,57,221,211,224,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,106,115,45,112,111,112,117,112,45,109,111,100,97,108,2,1,101,186,90,29,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,101,186,90,29,0,5,9,98,111,100,121,44,104,116,109,108,2,1,101,186,90,29,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,16,46,114,101,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,20,255,102,97,8,1,16,46,114,101,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,20,255,102,97,2,1,22,114,99,44,32,114,101,109,111,100,97,108,45,98,103,44,32,44,32,115,116,97,121,2,1,20,255,102,97,0,5,9,98,111,100,121,44,104,116,109,108,2,1,20,255,102,97,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,120,49,51,101,117,99,111,111,107,105,101,115,2,1,93,237,31,131,0,5,4,98,111,100,121,2,1,93,237,31,131,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,114,101,109,111,100,97,108,45,111,118,101,114,108,97,121,2,2,42,11,114,238,50,193,3,80,8,1,16,46,114,101,109,111,100,97,108,45,119,114,97,112,112,101,114,2,2,42,11,114,238,50,193,3,80,8,1,11,46,109,111,100,97,108,45,114,111,111,116,2,10,51,144,78,107,53,127,195,122,153,34,4,215,213,228,96,239,215,68,205,233,226,91,199,179,228,129,22,208,244,26,229,32,244,102,122,140,254,59,20,217,0,5,9,98,111,100,121,44,104,116,109,108,2,10,51,144,78,107,53,127,195,122,153,34,4,215,213,228,96,239,215,68,205,233,226,91,199,179,228,129,22,208,244,26,229,32,244,102,122,140,254,59,20,217,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,10,46,99,111,104,45,109,111,100,97,108,2,22,6,178,54,39,20,172,146,229,22,146,245,64,26,133,202,127,39,66,32,197,65,21,251,22,73,12,38,222,87,103,237,53,94,11,131,61,110,254,246,9,133,172,6,25,142,138,175,54,143,42,125,102,160,17,42,18,171,11,136,84,171,94,145,223,171,119,84,191,172,197,80,97,186,250,19,237,196,91,63,11,237,17,29,122,254,146,53,157,0,5,9,98,111,100,121,44,104,116,109,108,2,22,6,178,54,39,20,172,146,229,22,146,245,64,26,133,202,127,39,66,32,197,65,21,251,22,73,12,38,222,87,103,237,53,94,11,131,61,110,254,246,9,133,172,6,25,142,138,175,54,143,42,125,102,160,17,42,18,171,11,136,84,171,94,145,223,171,119,84,191,172,197,80,97,186,250,19,237,196,91,63,11,237,17,29,122,254,146,53,157,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,34,4,221,171,233,12,80,184,84,12,127,117,144,24,118,153,146,29,13,107,40,40,86,93,209,47,220,65,190,49,72,70,1,67,125,99,115,75,57,75,157,80,178,189,114,88,17,33,63,91,174,254,235,93,201,203,242,94,175,207,188,100,65,248,75,102,178,148,216,106,185,206,243,119,122,99,79,120,254,94,106,132,82,220,181,149,155,206,64,168,240,32,62,174,101,24,248,178,196,72,248,202,10,103,138,204,143,247,85,207,29,166,241,208,0,88,229,209,167,99,138,222,81,69,92,227,80,84,194,228,31,240,8,246,221,13,112,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,99,111,111,107,105,101,87,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,2,51,8,180,40,226,15,244,112,76,20,24,91,80,23,145,188,19,24,76,28,255,29,91,22,63,31,10,116,99,42,86,109,179,43,65,235,53,44,47,132,128,44,60,213,116,51,113,163,122,54,219,212,29,55,203,2,150,56,60,80,7,58,203,80,172,60,59,236,19,61,117,47,179,70,62,162,91,76,217,206,53,79,117,9,235,85,200,0,199,95,217,246,202,99,249,221,131,110,132,176,72,116,160,134,209,120,8,177,154,120,225,114,176,134,109,1,77,142,135,169,235,153,103,247,140,154,48,121,98,154,49,10,249,162,5,52,12,177,236,8,92,179,57,67,181,187,73,19,77,197,230,41,169,204,238,31,17,210,46,27,143,216,211,228,221,218,230,114,172,221,26,95,120,222,72,46,69,226,37,110,228,233,215,229,234,235,80,194,18,244,190,160,215,247,10,39,105,250,86,86,163,253,203,73,129,2,1,31,114,99,44,32,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,111,112,101,110,44,32,44,32,115,116,97,121,2,51,8,180,40,226,15,244,112,76,20,24,91,80,23,145,188,19,24,76,28,255,29,91,22,63,31,10,116,99,42,86,109,179,43,65,235,53,44,47,132,128,44,60,213,116,51,113,163,122,54,219,212,29,55,203,2,150,56,60,80,7,58,203,80,172,60,59,236,19,61,117,47,179,70,62,162,91,76,217,206,53,79,117,9,235,85,200,0,199,95,217,246,202,99,249,221,131,110,132,176,72,116,160,134,209,120,8,177,154,120,225,114,176,134,109,1,77,142,135,169,235,153,103,247,140,154,48,121,98,154,49,10,249,162,5,52,12,177,236,8,92,179,57,67,181,187,73,19,77,197,230,41,169,204,238,31,17,210,46,27,143,216,211,228,221,218,230,114,172,221,26,95,120,222,72,46,69,226,37,110,228,233,215,229,234,235,80,194,18,244,190,160,215,247,10,39,105,250,86,86,163,253,203,73,129,8,1,8,46,111,118,101,114,108,97,121,2,38,4,89,171,153,24,245,151,100,31,247,126,180,32,160,162,59,32,254,245,62,41,13,80,231,41,239,46,191,49,105,190,50,78,167,60,58,81,223,56,39,113,240,90,251,117,117,134,23,120,15,183,53,122,198,212,173,124,53,10,234,124,74,4,11,130,61,52,125,135,217,51,96,143,85,148,141,146,54,203,107,148,201,137,108,150,60,100,212,155,152,223,168,171,99,13,3,175,92,195,245,177,215,71,62,184,87,215,174,190,194,86,204,197,249,169,93,203,237,36,216,210,98,195,230,235,100,183,164,235,198,179,91,235,231,21,125,239,205,23,235,245,107,148,227,246,34,218,215,250,231,142,231,0,5,9,98,111,100,121,44,104,116,109,108,2,38,4,89,171,153,24,245,151,100,31,247,126,180,32,160,162,59,32,254,245,62,41,13,80,231,41,239,46,191,49,105,190,50,78,167,60,58,81,223,56,39,113,240,90,251,117,117,134,23,120,15,183,53,122,198,212,173,124,53,10,234,124,74,4,11,130,61,52,125,135,217,51,96,143,85,148,141,146,54,203,107,148,201,137,108,150,60,100,212,155,152,223,168,171,99,13,3,175,92,195,245,177,215,71,62,184,87,215,174,190,194,86,204,197,249,169,93,203,237,36,216,210,98,195,230,235,100,183,164,235,198,179,91,235,231,21,125,239,205,23,235,245,107,148,227,246,34,218,215,250,231,142,231,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,22,46,99,100,107,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,2,1,148,166,17,117,8,1,22,46,99,100,107,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,2,30,7,6,227,22,12,64,208,70,19,249,57,16,21,120,69,227,27,81,88,251,30,16,112,181,34,17,249,66,44,184,255,213,46,84,90,130,48,54,213,203,55,5,227,37,69,150,101,129,73,132,143,9,88,154,222,218,92,96,223,12,128,46,130,156,129,32,213,225,129,40,245,250,129,73,122,246,134,146,72,5,178,207,177,160,182,84,31,11,189,143,90,163,192,39,202,207,200,206,152,42,201,253,225,119,220,63,184,196,235,57,183,96,243,218,68,84,245,244,78,254,0,5,4,104,116,109,108,2,30,7,6,227,22,12,64,208,70,19,249,57,16,21,120,69,227,27,81,88,251,30,16,112,181,34,17,249,66,44,184,255,213,46,84,90,130,48,54,213,203,55,5,227,37,69,150,101,129,73,132,143,9,88,154,222,218,92,96,223,12,128,46,130,156,129,32,213,225,129,40,245,250,129,73,122,246,134,146,72,5,178,207,177,160,182,84,31,11,189,143,90,163,192,39,202,207,200,206,152,42,201,253,225,119,220,63,184,196,235,57,183,96,243,218,68,84,245,244,78,254,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,99,111,111,107,105,101,109,101,115,115,97,103,101,98,97,99,107,103,114,111,117,110,100,2,127,2,17,116,111,2,100,71,29,3,80,128,197,5,47,5,0,5,182,59,138,6,138,83,93,9,81,230,206,9,168,12,86,11,165,195,77,15,43,198,121,22,12,149,166,23,55,60,236,27,74,51,170,28,121,129,143,30,71,88,98,31,166,156,26,33,169,200,203,34,41,63,35,34,87,13,0,35,65,47,34,44,200,153,114,46,91,93,4,49,36,205,193,49,106,205,67,52,121,243,86,53,187,193,39,53,234,67,83,54,152,195,13,54,232,2,188,59,75,179,27,60,159,237,22,60,185,198,213,63,164,142,137,64,64,171,35,64,71,101,89,65,148,253,11,66,193,133,59,69,253,124,40,70,235,192,62,80,5,40,111,81,182,218,27,81,204,12,205,83,114,114,220,87,43,42,111,93,131,89,237,93,182,153,143,100,96,236,67,103,238,2,222,105,125,79,206,106,70,177,152,106,72,86,11,108,4,162,61,110,161,77,169,112,83,56,123,113,142,223,48,113,213,228,24,114,118,220,60,115,158,82,3,117,115,205,184,120,95,8,119,121,33,251,225,124,100,176,129,126,103,1,193,130,232,18,233,134,104,209,103,136,107,69,165,137,175,151,98,140,43,131,131,141,159,218,139,143,154,166,137,145,53,0,138,145,92,50,36,145,206,210,12,148,48,86,22,148,189,88,126,153,202,195,223,154,197,120,216,157,14,9,80,159,129,100,152,161,75,240,236,161,175,108,52,163,255,108,67,166,97,8,157,173,26,99,129,182,132,134,194,183,174,153,75,184,244,14,97,189,39,118,13,192,152,110,127,194,27,79,96,195,67,5,131,196,155,51,125,196,167,246,34,197,54,129,72,198,201,232,0,199,98,248,155,201,111,24,3,202,26,39,199,202,162,45,163,202,164,88,127,207,235,185,58,211,60,73,43,215,38,238,154,216,60,130,240,216,167,131,112,217,148,10,3,217,192,89,192,217,217,126,242,218,86,69,2,224,182,79,158,225,180,76,140,226,248,145,132,229,68,100,26,229,125,60,138,233,88,98,216,236,21,12,62,237,231,48,83,240,31,92,35,241,104,55,207,241,229,166,228,242,231,145,189,243,10,166,244,243,21,38,99,247,115,233,11,247,200,180,228,252,48,79,5,252,222,195,124,0,5,9,98,111,100,121,44,104,116,109,108,2,127,2,17,116,111,2,100,71,29,3,80,128,197,5,47,5,0,5,182,59,138,6,138,83,93,9,81,230,206,9,168,12,86,11,165,195,77,15,43,198,121,22,12,149,166,23,55,60,236,27,74,51,170,28,121,129,143,30,71,88,98,31,166,156,26,33,169,200,203,34,41,63,35,34,87,13,0,35,65,47,34,44,200,153,114,46,91,93,4,49,36,205,193,49,106,205,67,52,121,243,86,53,187,193,39,53,234,67,83,54,152,195,13,54,232,2,188,59,75,179,27,60,159,237,22,60,185,198,213,63,164,142,137,64,64,171,35,64,71,101,89,65,148,253,11,66,193,133,59,69,253,124,40,70,235,192,62,80,5,40,111,81,182,218,27,81,204,12,205,83,114,114,220,87,43,42,111,93,131,89,237,93,182,153,143,100,96,236,67,103,238,2,222,105,125,79,206,106,70,177,152,106,72,86,11,108,4,162,61,110,161,77,169,112,83,56,123,113,142,223,48,113,213,228,24,114,118,220,60,115,158,82,3,117,115,205,184,120,95,8,119,121,33,251,225,124,100,176,129,126,103,1,193,130,232,18,233,134,104,209,103,136,107,69,165,137,175,151,98,140,43,131,131,141,159,218,139,143,154,166,137,145,53,0,138,145,92,50,36,145,206,210,12,148,48,86,22,148,189,88,126,153,202,195,223,154,197,120,216,157,14,9,80,159,129,100,152,161,75,240,236,161,175,108,52,163,255,108,67,166,97,8,157,173,26,99,129,182,132,134,194,183,174,153,75,184,244,14,97,189,39,118,13,192,152,110,127,194,27,79,96,195,67,5,131,196,155,51,125,196,167,246,34,197,54,129,72,198,201,232,0,199,98,248,155,201,111,24,3,202,26,39,199,202,162,45,163,202,164,88,127,207,235,185,58,211,60,73,43,215,38,238,154,216,60,130,240,216,167,131,112,217,148,10,3,217,192,89,192,217,217,126,242,218,86,69,2,224,182,79,158,225,180,76,140,226,248,145,132,229,68,100,26,229,125,60,138,233,88,98,216,236,21,12,62,237,231,48,83,240,31,92,35,241,104,55,207,241,229,166,228,242,231,145,189,243,10,166,244,243,21,38,99,247,115,233,11,247,200,180,228,252,48,79,5,252,222,195,124,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,10,35,119,100,107,67,111,111,107,105,101,2,1,140,85,229,137,0,5,9,98,111,100,121,44,104,116,109,108,2,1,140,85,229,137,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,102,101,97,116,104,101,114,108,105,103,104,116,2,9,24,140,67,44,45,234,60,154,65,76,136,143,148,195,115,63,170,0,19,182,230,105,202,238,236,183,146,235,240,170,191,147,252,211,211,18,2,1,29,114,99,44,32,119,105,116,104,45,102,101,97,116,104,101,114,108,105,103,104,116,44,32,44,32,115,116,97,121,2,9,24,140,67,44,45,234,60,154,65,76,136,143,148,195,115,63,170,0,19,182,230,105,202,238,236,183,146,235,240,170,191,147,252,211,211,18,8,1,21,46,97,99,114,105,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,41,1,44,49,28,3,27,173,127,11,93,58,172,13,3,84,30,19,244,146,153,42,253,38,255,63,189,77,86,64,3,180,199,66,255,84,77,80,33,207,202,86,35,47,106,88,247,102,134,96,129,34,252,100,250,142,147,101,25,242,144,110,248,102,122,121,77,137,235,123,80,99,3,126,226,16,23,147,195,161,112,148,195,202,45,152,174,133,199,168,21,13,183,181,8,209,65,183,56,173,206,190,119,97,157,191,97,246,17,192,84,110,242,198,85,15,143,199,125,67,80,200,247,49,36,207,100,59,96,212,239,106,220,214,225,194,169,215,130,115,125,218,56,86,90,224,16,52,117,236,91,215,75,240,135,152,112,247,173,166,235,252,194,227,189,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,41,1,44,49,28,3,27,173,127,11,93,58,172,13,3,84,30,19,244,146,153,42,253,38,255,63,189,77,86,64,3,180,199,66,255,84,77,80,33,207,202,86,35,47,106,88,247,102,134,96,129,34,252,100,250,142,147,101,25,242,144,110,248,102,122,121,77,137,235,123,80,99,3,126,226,16,23,147,195,161,112,148,195,202,45,152,174,133,199,168,21,13,183,181,8,209,65,183,56,173,206,190,119,97,157,191,97,246,17,192,84,110,242,198,85,15,143,199,125,67,80,200,247,49,36,207,100,59,96,212,239,106,220,214,225,194,169,215,130,115,125,218,56,86,90,224,16,52,117,236,91,215,75,240,135,152,112,247,173,166,235,252,194,227,189,0,5,9,98,111,100,121,44,104,116,109,108,2,41,1,44,49,28,3,27,173,127,11,93,58,172,13,3,84,30,19,244,146,153,42,253,38,255,63,189,77,86,64,3,180,199,66,255,84,77,80,33,207,202,86,35,47,106,88,247,102,134,96,129,34,252,100,250,142,147,101,25,242,144,110,248,102,122,121,77,137,235,123,80,99,3,126,226,16,23,147,195,161,112,148,195,202,45,152,174,133,199,168,21,13,183,181,8,209,65,183,56,173,206,190,119,97,157,191,97,246,17,192,84,110,242,198,85,15,143,199,125,67,80,200,247,49,36,207,100,59,96,212,239,106,220,214,225,194,169,215,130,115,125,218,56,86,90,224,16,52,117,236,91,215,75,240,135,152,112,247,173,166,235,252,194,227,189,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,102,105,108,116,101,114,45,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,2,3,18,252,197,184,146,158,235,241,167,73,25,225,0,5,9,98,111,100,121,44,104,116,109,108,2,3,18,252,197,184,146,158,235,241,167,73,25,225,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,99,111,111,107,105,101,115,45,101,117,45,98,111,120,2,1,75,143,213,69,8,1,24,46,99,111,111,107,105,101,115,45,98,108,111,99,107,45,105,116,115,45,108,105,103,104,116,2,35,6,5,20,241,16,154,80,182,25,42,124,220,48,19,66,181,48,148,83,201,48,148,83,201,51,147,102,56,53,151,177,187,56,120,67,220,58,110,239,106,66,148,241,198,68,159,45,232,85,174,171,102,86,122,73,191,90,151,59,178,95,152,195,75,106,220,170,49,114,246,59,186,125,174,228,142,134,163,216,255,138,77,83,222,143,252,162,204,158,101,71,59,163,3,122,187,185,231,75,145,186,135,7,57,192,26,208,161,194,161,5,12,201,47,104,11,212,167,139,115,220,4,147,54,222,230,153,68,226,194,226,187,232,32,133,201,246,68,124,38,0,5,4,98,111,100,121,2,35,6,5,20,241,16,154,80,182,25,42,124,220,48,19,66,181,48,148,83,201,48,148,83,201,51,147,102,56,53,151,177,187,56,120,67,220,58,110,239,106,66,148,241,198,68,159,45,232,85,174,171,102,86,122,73,191,90,151,59,178,95,152,195,75,106,220,170,49,114,246,59,186,125,174,228,142,134,163,216,255,138,77,83,222,143,252,162,204,158,101,71,59,163,3,122,187,185,231,75,145,186,135,7,57,192,26,208,161,194,161,5,12,201,47,104,11,212,167,139,115,220,4,147,54,222,230,153,68,226,194,226,187,232,32,133,201,246,68,124,38,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,102,111,114,109,2,1,105,252,117,166,2,1,29,114,99,44,32,99,111,111,107,105,101,115,45,115,104,111,119,110,44,32,98,111,100,121,44,32,115,116,97,121,2,1,105,252,117,166,8,1,17,46,99,111,111,107,105,101,45,104,116,109,108,45,119,114,97,112,2,1,160,164,6,85,0,5,9,98,111,100,121,44,104,116,109,108,2,1,160,164,6,85,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,28,46,109,101,108,105,110,100,114,101,115,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,2,1,255,167,103,97,0,5,4,98,111,100,121,2,1,255,167,103,97,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,33,35,100,101,98,117,103,103,101,100,45,99,111,111,107,105,101,111,112,116,105,111,110,115,45,99,111,110,116,97,105,110,101,114,2,1,210,208,111,187,0,5,9,98,111,100,121,44,104,116,109,108,2,1,210,208,111,187,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,21,114,99,44,32,110,111,45,99,111,111,107,105,101,44,32,44,32,115,116,97,121,2,1,10,70,88,66,0,5,9,98,111,100,121,44,104,116,109,108,2,1,10,70,88,66,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,105,110,115,101,116,45,48,46,102,105,120,101,100,2,14,54,84,237,144,55,46,215,170,65,34,247,23,79,94,156,93,93,1,20,57,134,67,186,182,147,78,221,85,156,12,168,245,186,209,201,22,194,95,103,164,211,87,235,185,231,5,23,8,235,27,82,203,246,42,55,5,0,5,9,98,111,100,121,44,104,116,109,108,2,15,54,84,237,144,55,46,215,170,65,34,247,23,79,94,156,93,93,1,20,57,134,67,186,182,147,78,221,85,156,12,168,245,186,209,201,22,194,95,103,164,211,87,235,185,231,5,23,8,235,27,82,203,246,42,55,5,249,137,237,36,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,36,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,116,101,109,112,108,97,116,101,45,119,114,97,112,112,101,114,2,1,194,152,119,72,0,5,9,98,111,100,121,44,104,116,109,108,2,1,194,152,119,72,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,111,111,107,105,101,45,116,111,97,115,116,45,119,114,97,112,2,1,78,102,141,145,0,5,9,98,111,100,121,44,104,116,109,108,2,1,78,102,141,145,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,99,111,111,107,105,101,45,115,104,101,101,116,45,115,109,97,108,108,2,1,85,188,229,215,0,5,9,98,111,100,121,44,104,116,109,108,2,1,85,188,229,215,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,8,46,119,122,45,114,103,112,100,2,54,5,170,70,242,12,176,190,240,16,139,16,126,23,243,126,206,31,207,85,213,32,169,204,40,35,49,109,182,35,86,248,200,38,34,78,177,42,192,0,146,45,106,241,211,47,74,100,55,49,110,197,203,51,63,9,230,54,96,159,71,54,152,206,130,59,67,200,2,63,138,73,108,64,250,170,95,65,185,253,141,69,108,21,203,78,213,103,218,79,224,69,119,79,224,69,119,82,24,84,179,95,107,105,221,98,51,127,245,98,77,38,68,98,85,65,193,110,162,162,21,117,202,169,241,119,237,20,188,135,80,71,89,144,254,180,80,145,131,69,3,148,125,3,86,151,198,158,108,167,41,23,116,181,80,31,231,182,131,20,162,191,33,52,175,199,95,159,110,204,216,243,200,216,133,136,37,219,107,29,180,222,128,122,73,227,142,132,61,228,38,67,18,230,77,228,8,235,152,40,123,249,107,125,75,252,71,25,97,254,0,188,122,254,191,134,127,0,5,4,98,111,100,121,2,54,5,170,70,242,12,176,190,240,16,139,16,126,23,243,126,206,31,207,85,213,32,169,204,40,35,49,109,182,35,86,248,200,38,34,78,177,42,192,0,146,45,106,241,211,47,74,100,55,49,110,197,203,51,63,9,230,54,96,159,71,54,152,206,130,59,67,200,2,63,138,73,108,64,250,170,95,65,185,253,141,69,108,21,203,78,213,103,218,79,224,69,119,79,224,69,119,82,24,84,179,95,107,105,221,98,51,127,245,98,77,38,68,98,85,65,193,110,162,162,21,117,202,169,241,119,237,20,188,135,80,71,89,144,254,180,80,145,131,69,3,148,125,3,86,151,198,158,108,167,41,23,116,181,80,31,231,182,131,20,162,191,33,52,175,199,95,159,110,204,216,243,200,216,133,136,37,219,107,29,180,222,128,122,73,227,142,132,61,228,38,67,18,230,77,228,8,235,152,40,123,249,107,125,75,252,71,25,97,254,0,188,122,254,191,134,127,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,17,35,99,111,111,107,105,101,45,115,105,116,101,45,108,111,99,107,2,1,32,39,23,18,0,5,9,98,111,100,121,44,104,116,109,108,2,1,32,39,23,18,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,102,117,110,100,111,45,97,118,105,115,111,45,99,111,111,107,105,101,115,2,1,181,206,47,221,0,5,9,98,111,100,121,44,104,116,109,108,2,1,181,206,47,221,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,31,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,97,110,97,103,101,114,95,119,114,97,112,112,101,114,2,2,123,111,109,22,189,128,66,86,8,1,8,46,100,105,109,109,101,114,50,2,2,123,111,109,22,189,128,66,86,2,1,28,114,99,44,32,100,105,109,109,101,114,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,2,123,111,109,22,189,128,66,86,8,1,24,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,27,114,45,185,8,1,30,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,45,98,108,111,99,107,101,114,2,1,27,114,45,185,0,5,9,98,111,100,121,44,104,116,109,108,2,1,27,114,45,185,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,105,102,54,95,101,112,114,105,118,97,99,121,2,112,1,82,41,123,3,27,36,141,5,219,216,71,8,215,113,54,11,220,138,68,16,250,181,34,18,248,59,236,26,144,248,20,26,241,2,151,27,113,244,43,27,114,184,10,27,121,68,6,27,122,130,42,29,13,217,193,33,114,179,149,33,144,34,217,38,157,23,69,40,20,236,210,42,176,160,143,43,57,97,182,48,240,126,0,50,203,221,207,51,90,188,155,55,185,90,146,55,192,206,14,58,90,4,206,58,150,200,94,59,226,190,235,65,25,224,123,67,255,201,104,70,151,33,102,75,68,99,109,78,43,28,93,80,107,167,32,81,187,240,186,82,133,4,229,84,5,142,130,90,24,229,87,105,77,137,204,108,144,30,234,110,248,5,10,112,18,81,203,114,233,1,182,116,66,32,109,119,177,89,109,120,87,158,24,132,207,93,121,133,185,128,26,136,151,204,1,141,36,228,4,141,113,251,186,142,166,200,75,146,73,176,224,147,130,77,219,147,218,184,204,149,35,34,202,155,202,82,81,156,30,33,160,159,192,81,30,160,10,213,216,169,186,63,182,170,166,144,165,172,177,145,161,173,117,29,250,174,131,63,87,174,239,115,104,176,92,52,169,178,45,3,2,188,216,58,167,189,143,212,108,190,40,66,58,190,138,22,2,191,127,111,216,192,128,113,212,192,244,153,25,195,36,77,67,195,223,100,207,196,11,177,160,198,236,114,17,199,252,83,114,211,13,216,84,214,241,186,195,215,220,19,146,217,83,6,152,223,45,106,135,224,246,203,17,225,234,62,91,226,200,2,195,228,165,76,93,236,58,216,161,236,208,74,121,237,125,231,153,240,92,46,49,241,60,47,243,242,214,155,107,242,231,32,44,244,53,252,17,244,86,215,19,245,91,205,76,245,248,112,26,246,189,241,122,247,119,122,87,247,130,179,49,247,130,179,55,247,130,179,132,247,130,180,191,247,240,139,152,248,93,96,194,249,111,28,241,250,192,4,73,251,131,34,161,255,63,65,94,0,5,9,98,111,100,121,44,104,116,109,108,2,112,1,82,41,123,3,27,36,141,5,219,216,71,8,215,113,54,11,220,138,68,16,250,181,34,18,248,59,236,26,144,248,20,26,241,2,151,27,113,244,43,27,114,184,10,27,121,68,6,27,122,130,42,29,13,217,193,33,114,179,149,33,144,34,217,38,157,23,69,40,20,236,210,42,176,160,143,43,57,97,182,48,240,126,0,50,203,221,207,51,90,188,155,55,185,90,146,55,192,206,14,58,90,4,206,58,150,200,94,59,226,190,235,65,25,224,123,67,255,201,104,70,151,33,102,75,68,99,109,78,43,28,93,80,107,167,32,81,187,240,186,82,133,4,229,84,5,142,130,90,24,229,87,105,77,137,204,108,144,30,234,110,248,5,10,112,18,81,203,114,233,1,182,116,66,32,109,119,177,89,109,120,87,158,24,132,207,93,121,133,185,128,26,136,151,204,1,141,36,228,4,141,113,251,186,142,166,200,75,146,73,176,224,147,130,77,219,147,218,184,204,149,35,34,202,155,202,82,81,156,30,33,160,159,192,81,30,160,10,213,216,169,186,63,182,170,166,144,165,172,177,145,161,173,117,29,250,174,131,63,87,174,239,115,104,176,92,52,169,178,45,3,2,188,216,58,167,189,143,212,108,190,40,66,58,190,138,22,2,191,127,111,216,192,128,113,212,192,244,153,25,195,36,77,67,195,223,100,207,196,11,177,160,198,236,114,17,199,252,83,114,211,13,216,84,214,241,186,195,215,220,19,146,217,83,6,152,223,45,106,135,224,246,203,17,225,234,62,91,226,200,2,195,228,165,76,93,236,58,216,161,236,208,74,121,237,125,231,153,240,92,46,49,241,60,47,243,242,214,155,107,242,231,32,44,244,53,252,17,244,86,215,19,245,91,205,76,245,248,112,26,246,189,241,122,247,119,122,87,247,130,179,49,247,130,179,55,247,130,179,132,247,130,180,191,247,240,139,152,248,93,96,194,249,111,28,241,250,192,4,73,251,131,34,161,255,63,65,94,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,100,119,97,45,99,109,115,45,117,105,45,99,111,111,107,105,101,2,3,1,236,231,117,16,207,229,24,210,189,201,44,0,5,9,98,111,100,121,44,104,116,109,108,2,3,1,236,231,117,16,207,229,24,210,189,201,44,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,5,35,114,103,112,100,2,7,24,118,23,123,95,100,110,177,114,119,73,5,134,70,77,7,142,231,100,210,182,131,79,208,212,166,60,98,0,5,9,98,111,100,121,44,104,116,109,108,2,7,24,118,23,123,95,100,110,177,114,119,73,5,134,70,77,7,142,231,100,210,182,131,79,208,212,166,60,98,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,16,35,97,120,101,112,116,105,111,95,111,118,101,114,108,97,121,2,1,175,255,55,220,8,1,39,46,97,120,101,112,116,105,111,95,119,105,100,103,101,116,91,100,97,116,97,45,115,101,114,118,105,99,101,61,34,99,111,111,107,105,101,115,34,93,2,1,175,255,55,220,0,5,9,98,111,100,121,44,104,116,109,108,2,1,175,255,55,220,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,114,111,100,111,83,99,114,101,101,110,66,103,2,2,91,80,194,97,201,251,87,207,16,1,22,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,2,4,8,220,31,26,51,118,176,188,114,171,68,104,242,81,140,25,8,1,25,46,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,45,102,111,114,109,115,2,1,5,42,78,133,0,5,4,98,111,100,121,2,1,5,42,78,133,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,99,45,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,2,1,237,70,100,249,0,5,9,98,111,100,121,44,104,116,109,108,2,1,237,70,100,249,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,99,111,111,107,105,101,45,105,110,113,117,105,114,121,45,119,114,97,112,112,101,114,2,24,13,106,177,142,19,227,211,41,29,69,63,27,30,46,181,135,65,140,137,34,84,119,241,68,85,56,39,62,90,221,124,247,94,40,161,29,96,197,92,91,116,146,203,12,140,63,38,230,145,114,112,0,146,17,203,245,147,200,115,85,149,77,223,223,149,118,124,15,150,95,124,135,168,106,93,71,184,13,171,105,190,228,15,124,212,106,195,1,242,208,151,191,253,246,48,195,0,5,9,98,111,100,121,44,104,116,109,108,2,24,13,106,177,142,19,227,211,41,29,69,63,27,30,46,181,135,65,140,137,34,84,119,241,68,85,56,39,62,90,221,124,247,94,40,161,29,96,197,92,91,116,146,203,12,140,63,38,230,145,114,112,0,146,17,203,245,147,200,115,85,149,77,223,223,149,118,124,15,150,95,124,135,168,106,93,71,184,13,171,105,190,228,15,124,212,106,195,1,242,208,151,191,253,246,48,195,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,2,2,79,252,136,87,161,99,183,115,0,5,4,98,111,100,121,2,2,79,252,136,87,161,99,183,115,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,22,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,61,11,39,255,49,12,192,190,70,13,234,247,245,16,68,113,63,18,116,67,118,22,99,62,197,23,243,73,104,24,239,33,33,27,209,164,197,32,183,165,232,38,47,171,242,44,223,151,227,58,47,220,187,60,8,166,112,60,18,113,29,60,151,115,21,60,233,54,203,67,239,56,30,70,193,69,103,71,47,237,44,71,236,201,85,75,74,16,130,77,84,214,135,77,196,61,43,79,66,212,167,86,110,194,108,92,146,147,230,95,199,252,73,100,56,166,212,101,129,164,30,103,0,172,61,104,65,78,149,104,120,43,231,108,240,74,126,121,207,97,196,125,166,102,37,131,248,184,224,134,106,194,165,135,164,18,132,139,96,44,66,144,56,37,205,149,49,200,215,154,131,253,26,156,225,14,228,162,142,14,64,163,26,92,85,163,60,199,97,165,105,89,131,169,168,196,56,171,139,38,215,184,122,49,213,185,38,82,91,186,10,114,31,187,129,193,117,189,210,155,235,198,219,125,109,217,61,118,179,219,213,93,252,221,220,244,86,237,69,69,161,248,224,130,50,0,5,9,98,111,100,121,44,104,116,109,108,2,61,11,39,255,49,12,192,190,70,13,234,247,245,16,68,113,63,18,116,67,118,22,99,62,197,23,243,73,104,24,239,33,33,27,209,164,197,32,183,165,232,38,47,171,242,44,223,151,227,58,47,220,187,60,8,166,112,60,18,113,29,60,151,115,21,60,233,54,203,67,239,56,30,70,193,69,103,71,47,237,44,71,236,201,85,75,74,16,130,77,84,214,135,77,196,61,43,79,66,212,167,86,110,194,108,92,146,147,230,95,199,252,73,100,56,166,212,101,129,164,30,103,0,172,61,104,65,78,149,104,120,43,231,108,240,74,126,121,207,97,196,125,166,102,37,131,248,184,224,134,106,194,165,135,164,18,132,139,96,44,66,144,56,37,205,149,49,200,215,154,131,253,26,156,225,14,228,162,142,14,64,163,26,92,85,163,60,199,97,165,105,89,131,169,168,196,56,171,139,38,215,184,122,49,213,185,38,82,91,186,10,114,31,187,129,193,117,189,210,155,235,198,219,125,109,217,61,118,179,219,213,93,252,221,220,244,86,237,69,69,161,248,224,130,50,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,22,46,97,114,99,116,105,99,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,135,132,167,38,8,1,20,46,97,114,99,116,105,99,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,135,132,167,38,0,5,9,98,111,100,121,44,104,116,109,108,2,1,135,132,167,38,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,109,111,100,97,108,45,99,111,111,107,105,101,115,2,3,10,137,70,225,125,179,145,30,231,211,85,76,0,5,9,98,111,100,121,44,104,116,109,108,2,3,10,137,70,225,125,179,145,30,231,211,85,76,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,14,35,111,98,99,111,111,107,105,101,115,95,98,111,120,2,1,38,215,1,196,0,5,9,98,111,100,121,44,104,116,109,108,2,1,38,215,1,196,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,12,35,99,111,111,107,105,101,115,50,48,50,48,2,13,1,0,57,6,8,13,230,21,10,124,19,176,20,24,188,231,24,102,205,15,62,170,46,60,137,216,188,183,151,58,45,192,152,143,105,73,196,117,70,177,239,203,27,114,241,167,6,204,250,54,46,111,16,1,19,35,99,111,111,107,105,101,115,50,48,50,48,111,118,101,114,108,97,121,2,13,1,0,57,6,8,13,230,21,10,124,19,176,20,24,188,231,24,102,205,15,62,170,46,60,137,216,188,183,151,58,45,192,152,143,105,73,196,117,70,177,239,203,27,114,241,167,6,204,250,54,46,111,0,5,9,98,111,100,121,44,104,116,109,108,2,13,1,0,57,6,8,13,230,21,10,124,19,176,20,24,188,231,24,102,205,15,62,170,46,60,137,216,188,183,151,58,45,192,152,143,105,73,196,117,70,177,239,203,27,114,241,167,6,204,250,54,46,111,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,14,35,112,100,99,99,45,109,111,100,97,108,45,98,103,2,49,2,108,52,104,3,43,89,84,4,12,193,45,10,10,210,7,12,33,92,194,13,53,123,192,13,251,54,170,14,214,4,60,22,60,211,236,26,162,171,145,28,235,178,164,39,138,70,171,45,65,255,8,47,242,113,140,49,78,149,254,65,235,159,214,68,37,235,11,77,173,0,169,87,130,15,137,112,23,162,26,112,225,45,132,116,169,70,220,124,86,154,124,139,144,105,206,142,63,39,233,144,123,219,41,149,118,238,138,150,132,153,80,152,6,233,213,157,118,15,202,159,132,2,65,165,125,166,55,167,73,124,130,174,203,184,149,183,155,209,199,187,145,38,152,187,156,133,181,188,2,176,239,188,67,145,44,189,43,94,21,190,188,162,128,202,93,238,167,209,190,153,123,219,28,128,114,233,218,223,130,234,95,119,191,239,33,178,141,242,22,243,238,244,148,242,160,0,5,9,98,111,100,121,44,104,116,109,108,2,49,2,108,52,104,3,43,89,84,4,12,193,45,10,10,210,7,12,33,92,194,13,53,123,192,13,251,54,170,14,214,4,60,22,60,211,236,26,162,171,145,28,235,178,164,39,138,70,171,45,65,255,8,47,242,113,140,49,78,149,254,65,235,159,214,68,37,235,11,77,173,0,169,87,130,15,137,112,23,162,26,112,225,45,132,116,169,70,220,124,86,154,124,139,144,105,206,142,63,39,233,144,123,219,41,149,118,238,138,150,132,153,80,152,6,233,213,157,118,15,202,159,132,2,65,165,125,166,55,167,73,124,130,174,203,184,149,183,155,209,199,187,145,38,152,187,156,133,181,188,2,176,239,188,67,145,44,189,43,94,21,190,188,162,128,202,93,238,167,209,190,153,123,219,28,128,114,233,218,223,130,234,95,119,191,239,33,178,141,242,22,243,238,244,148,242,160,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,14,35,118,116,45,99,111,111,107,105,101,45,98,111,120,2,32,1,45,169,174,1,187,108,11,6,238,240,79,19,107,135,248,58,81,62,211,69,98,104,14,83,25,120,173,86,248,250,166,88,241,47,2,97,227,43,71,99,52,188,5,99,207,37,25,100,3,51,174,100,121,203,54,111,122,140,60,111,178,114,195,112,18,226,53,118,90,145,58,132,254,82,10,136,73,23,255,142,147,175,41,160,69,224,188,167,225,173,169,189,39,246,13,189,63,137,63,194,48,29,146,198,61,200,245,209,136,53,215,211,17,217,254,216,114,85,31,225,60,7,150,240,1,87,163,0,5,9,98,111,100,121,44,104,116,109,108,2,32,1,45,169,174,1,187,108,11,6,238,240,79,19,107,135,248,58,81,62,211,69,98,104,14,83,25,120,173,86,248,250,166,88,241,47,2,97,227,43,71,99,52,188,5,99,207,37,25,100,3,51,174,100,121,203,54,111,122,140,60,111,178,114,195,112,18,226,53,118,90,145,58,132,254,82,10,136,73,23,255,142,147,175,41,160,69,224,188,167,225,173,169,189,39,246,13,189,63,137,63,194,48,29,146,198,61,200,245,209,136,53,215,211,17,217,254,216,114,85,31,225,60,7,150,240,1,87,163,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,109,114,109,95,103,100,112,114,44,32,49,2,2,98,236,90,94,242,231,141,90,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,110,101,99,101,115,115,97,114,121,95,99,111,110,115,101,110,116,44,32,97,99,99,101,112,116,101,100,2,2,98,236,90,94,242,231,141,90,16,1,23,35,99,111,111,107,105,101,115,45,102,108,111,119,45,99,111,110,116,97,105,110,101,114,2,6,48,81,93,225,154,28,85,15,178,164,98,157,196,84,214,84,229,22,97,244,247,29,20,126,0,5,9,98,111,100,121,44,104,116,109,108,2,6,48,81,93,225,154,28,85,15,178,164,98,157,196,84,214,84,229,22,97,244,247,29,20,126,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,14,35,99,111,111,107,105,101,45,115,111,102,116,101,114,2,40,13,189,216,145,15,127,176,29,27,120,55,145,32,207,85,213,43,220,2,28,45,62,163,76,47,76,185,27,53,123,239,54,63,54,208,56,63,173,58,244,65,217,43,126,67,233,73,220,68,143,144,101,68,238,188,245,76,206,101,67,84,49,85,194,86,37,218,167,92,180,70,54,94,174,93,105,104,161,249,64,115,244,163,79,117,199,28,134,122,17,18,127,126,175,97,2,131,10,245,74,138,204,22,210,141,73,133,249,150,87,64,85,152,141,252,87,154,58,28,169,161,226,185,209,163,1,186,196,164,68,124,113,180,188,120,142,186,183,209,61,189,49,99,66,190,39,51,85,205,26,207,151,233,68,91,125,233,95,91,1,0,5,9,98,111,100,121,44,104,116,109,108,2,40,13,189,216,145,15,127,176,29,27,120,55,145,32,207,85,213,43,220,2,28,45,62,163,76,47,76,185,27,53,123,239,54,63,54,208,56,63,173,58,244,65,217,43,126,67,233,73,220,68,143,144,101,68,238,188,245,76,206,101,67,84,49,85,194,86,37,218,167,92,180,70,54,94,174,93,105,104,161,249,64,115,244,163,79,117,199,28,134,122,17,18,127,126,175,97,2,131,10,245,74,138,204,22,210,141,73,133,249,150,87,64,85,152,141,252,87,154,58,28,169,161,226,185,209,163,1,186,196,164,68,124,113,180,188,120,142,186,183,209,61,189,49,99,66,190,39,51,85,205,26,207,151,233,68,91,125,233,95,91,1,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,4,46,99,104,50,2,2,126,86,163,9,193,134,245,146,0,5,4,98,111,100,121,2,2,126,86,163,9,193,134,245,146,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,115,99,114,101,101,110,45,98,108,111,99,107,101,114,2,7,73,85,226,132,78,154,212,75,98,149,75,45,125,34,162,173,130,26,191,37,205,202,243,33,221,114,29,21,0,5,9,98,111,100,121,44,104,116,109,108,2,7,73,85,226,132,78,154,212,75,98,149,75,45,125,34,162,173,130,26,191,37,205,202,243,33,221,114,29,21,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,5,46,114,111,100,111,2,4,86,243,232,61,96,233,91,133,134,252,68,85,161,183,198,226,0,5,9,98,111,100,121,44,104,116,109,108,2,4,86,243,232,61,96,233,91,133,134,252,68,85,161,183,198,226,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,7,46,114,101,118,101,97,108,2,1,135,71,84,220,8,1,15,46,114,101,118,101,97,108,45,111,118,101,114,108,97,121,2,8,5,196,192,47,28,191,103,143,48,28,57,224,91,38,181,6,102,149,212,145,135,71,84,220,179,44,222,205,202,52,183,244,0,5,9,98,111,100,121,44,104,116,109,108,2,8,5,196,192,47,28,191,103,143,48,28,57,224,91,38,181,6,102,149,212,145,135,71,84,220,179,44,222,205,202,52,183,244,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,9,35,98,97,99,107,100,114,111,112,2,6,36,34,110,140,45,224,129,40,71,43,27,64,131,11,140,21,166,200,17,177,226,170,110,0,0,5,9,98,111,100,121,44,104,116,109,108,2,6,36,34,110,140,45,224,129,40,71,43,27,64,131,11,140,21,166,200,17,177,226,170,110,0,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,22,46,97,109,103,100,112,114,106,115,45,98,97,114,45,116,101,109,112,108,97,116,101,2,1,148,182,65,244,0,5,9,98,111,100,121,44,104,116,109,108,2,1,148,182,65,244,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,12,35,99,111,111,107,105,101,77,111,100,97,108,2,5,15,68,35,37,45,241,101,23,65,237,76,156,74,142,133,39,107,188,188,57,0,5,9,98,111,100,121,44,104,116,109,108,2,5,15,68,35,37,45,241,101,23,65,237,76,156,74,142,133,39,107,188,188,57,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,115,103,112,98,45,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,65,195,229,147,8,1,35,46,115,103,112,98,45,112,111,112,117,112,45,100,105,97,108,111,103,45,109,97,105,110,45,100,105,118,45,119,114,97,112,112,101,114,2,1,65,195,229,147,0,5,9,98,111,100,121,44,104,116,109,108,2,1,65,195,229,147,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,103,100,112,114,79,118,101,114,108,97,121,2,3,84,32,95,63,186,20,91,46,206,124,178,18,8,1,14,46,99,111,111,107,105,101,115,83,112,108,97,115,104,2,3,84,32,95,63,186,20,91,46,206,124,178,18,8,1,7,46,99,111,111,107,105,101,2,2,162,89,222,196,255,241,28,9,0,5,4,98,111,100,121,2,2,162,89,222,196,255,241,28,9,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,99,111,111,107,105,101,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,86,207,192,102,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,86,207,192,102,0,5,9,98,111,100,121,44,104,116,109,108,2,1,86,207,192,102,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,111,107,105,101,45,109,111,100,97,108,2,3,33,53,164,31,84,162,152,218,132,22,235,0,0,5,9,98,111,100,121,44,104,116,109,108,2,3,33,53,164,31,84,162,152,218,132,22,235,0,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,111,107,105,101,45,109,111,100,97,108,2,1,139,97,60,187,8,1,8,46,111,118,101,114,108,97,121,2,1,139,97,60,187,0,5,9,98,111,100,121,44,104,116,109,108,2,1,139,97,60,187,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,80,114,105,118,97,99,121,67,97,116,101,103,111,114,121,65,108,101,114,116,2,3,115,161,156,176,115,189,155,54,162,20,6,229,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,3,115,161,156,176,115,189,155,54,162,20,6,229,0,5,9,98,111,100,121,44,104,116,109,108,2,3,115,161,156,176,115,189,155,54,162,20,6,229,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,23,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,97,110,34,93,2,2,121,213,33,250,148,184,166,236,0,5,4,98,111,100,121,2,2,121,213,33,250,148,184,166,236,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,8,35,111,118,101,114,108,97,121,2,3,48,90,34,75,228,57,255,40,245,208,210,181,0,5,9,98,111,100,121,44,104,116,109,108,2,3,48,90,34,75,228,57,255,40,245,208,210,181,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,11,35,99,111,111,107,105,101,78,111,116,101,2,4,68,205,38,72,162,11,86,207,221,221,154,68,225,236,198,206,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,4,68,205,38,72,162,11,86,207,221,221,154,68,225,236,198,206,0,5,9,98,111,100,121,44,104,116,109,108,2,4,68,205,38,72,162,11,86,207,221,221,154,68,225,236,198,206,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,22,46,99,111,111,107,105,101,115,45,119,105,100,103,101,116,45,45,108,105,103,104,116,2,27,19,37,150,158,22,7,123,44,22,68,149,9,23,75,189,25,57,39,89,116,57,213,113,2,85,217,31,241,90,215,2,85,110,1,139,15,112,164,241,104,129,40,250,238,134,62,250,202,143,252,162,204,160,180,62,122,175,70,139,243,191,164,233,162,194,132,93,79,209,104,165,188,211,5,110,222,211,172,150,198,215,55,76,199,215,55,76,199,219,175,147,180,221,126,218,241,233,27,167,19,244,140,26,218,250,79,248,37,0,5,9,98,111,100,121,44,104,116,109,108,2,27,19,37,150,158,22,7,123,44,22,68,149,9,23,75,189,25,57,39,89,116,57,213,113,2,85,217,31,241,90,215,2,85,110,1,139,15,112,164,241,104,129,40,250,238,134,62,250,202,143,252,162,204,160,180,62,122,175,70,139,243,191,164,233,162,194,132,93,79,209,104,165,188,211,5,110,222,211,172,150,198,215,55,76,199,215,55,76,199,219,175,147,180,221,126,218,241,233,27,167,19,244,140,26,218,250,79,248,37,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,24,100,105,118,91,105,100,42,61,34,95,109,111,100,97,108,95,111,117,116,101,114,95,34,93,2,8,24,62,229,223,44,44,107,154,91,151,111,44,116,101,163,25,117,39,242,156,143,228,202,36,182,118,148,224,216,248,161,23,0,5,9,98,111,100,121,44,104,116,109,108,2,8,24,62,229,223,44,44,107,154,91,151,111,44,116,101,163,25,117,39,242,156,143,228,202,36,182,118,148,224,216,248,161,23,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,103,100,112,114,67,111,111,107,105,101,66,97,114,79,118,101,114,108,97,121,2,5,10,64,66,88,83,49,28,209,84,128,212,251,103,148,160,109,134,197,35,186,0,5,9,98,111,100,121,44,104,116,109,108,2,5,10,64,66,88,83,49,28,209,84,128,212,251,103,148,160,109,134,197,35,186,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,25,35,119,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,105,100,103,101,116,2,16,10,230,170,136,50,5,162,245,56,231,99,247,66,237,181,17,71,151,204,212,74,217,46,165,93,193,14,166,97,89,124,179,127,160,110,151,138,204,104,34,143,39,210,128,143,43,86,129,168,158,117,154,175,18,113,66,206,169,127,90,212,83,113,37,0,5,4,98,111,100,121,2,16,10,230,170,136,50,5,162,245,56,231,99,247,66,237,181,17,71,151,204,212,74,217,46,165,93,193,14,166,97,89,124,179,127,160,110,151,138,204,104,34,143,39,210,128,143,43,86,129,168,158,117,154,175,18,113,66,206,169,127,90,212,83,113,37,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,111,100,97,108,2,3,38,85,218,87,152,76,8,77,233,168,213,124,0,5,4,98,111,100,121,2,3,38,85,218,87,152,76,8,77,233,168,213,124,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,20,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,111,100,97,108,2,2,91,131,233,116,175,4,47,243,0,5,4,98,111,100,121,2,2,91,131,233,116,175,4,47,243,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,10,46,106,115,45,45,109,111,100,97,108,2,80,2,18,6,1,2,163,177,62,3,124,52,177,3,168,225,186,6,202,96,121,7,3,5,161,8,156,163,141,9,134,25,158,21,63,196,28,21,215,74,174,22,48,121,119,25,81,223,150,29,200,36,38,32,13,109,78,34,98,5,82,36,251,185,206,39,61,58,49,41,6,94,97,44,195,100,3,46,8,248,43,47,121,161,99,50,115,115,213,52,52,24,45,52,119,226,184,52,136,196,76,57,93,93,77,62,36,158,243,68,140,90,93,68,212,171,48,70,191,74,172,77,213,153,80,81,111,248,232,96,116,192,169,101,89,184,6,102,135,126,202,107,154,114,250,107,154,114,250,107,154,114,250,107,154,114,250,110,104,63,253,113,45,122,163,120,152,122,159,120,181,194,68,121,91,203,200,127,169,56,52,128,205,11,69,131,176,201,95,135,137,20,208,136,28,165,22,139,221,137,141,141,252,88,48,143,147,43,95,149,156,111,189,155,22,187,158,159,10,255,238,165,98,158,29,168,110,56,217,169,146,75,6,171,212,67,188,175,36,28,11,175,179,217,248,176,39,210,149,179,137,153,207,180,164,63,200,181,214,199,107,185,6,30,99,194,245,20,189,199,115,160,169,201,190,16,244,202,65,245,237,204,50,199,138,212,198,110,0,218,72,34,112,219,243,254,240,224,223,244,41,226,175,28,109,227,18,231,49,235,49,15,164,245,248,16,240,247,220,0,238,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,80,2,18,6,1,2,163,177,62,3,124,52,177,3,168,225,186,6,202,96,121,7,3,5,161,8,156,163,141,9,134,25,158,21,63,196,28,21,215,74,174,22,48,121,119,25,81,223,150,29,200,36,38,32,13,109,78,34,98,5,82,36,251,185,206,39,61,58,49,41,6,94,97,44,195,100,3,46,8,248,43,47,121,161,99,50,115,115,213,52,52,24,45,52,119,226,184,52,136,196,76,57,93,93,77,62,36,158,243,68,140,90,93,68,212,171,48,70,191,74,172,77,213,153,80,81,111,248,232,96,116,192,169,101,89,184,6,102,135,126,202,107,154,114,250,107,154,114,250,107,154,114,250,107,154,114,250,110,104,63,253,113,45,122,163,120,152,122,159,120,181,194,68,121,91,203,200,127,169,56,52,128,205,11,69,131,176,201,95,135,137,20,208,136,28,165,22,139,221,137,141,141,252,88,48,143,147,43,95,149,156,111,189,155,22,187,158,159,10,255,238,165,98,158,29,168,110,56,217,169,146,75,6,171,212,67,188,175,36,28,11,175,179,217,248,176,39,210,149,179,137,153,207,180,164,63,200,181,214,199,107,185,6,30,99,194,245,20,189,199,115,160,169,201,190,16,244,202,65,245,237,204,50,199,138,212,198,110,0,218,72,34,112,219,243,254,240,224,223,244,41,226,175,28,109,227,18,231,49,235,49,15,164,245,248,16,240,247,220,0,238,8,1,17,46,109,110,100,45,99,111,111,107,105,101,45,109,111,100,97,108,2,80,2,18,6,1,2,163,177,62,3,124,52,177,3,168,225,186,6,202,96,121,7,3,5,161,8,156,163,141,9,134,25,158,21,63,196,28,21,215,74,174,22,48,121,119,25,81,223,150,29,200,36,38,32,13,109,78,34,98,5,82,36,251,185,206,39,61,58,49,41,6,94,97,44,195,100,3,46,8,248,43,47,121,161,99,50,115,115,213,52,52,24,45,52,119,226,184,52,136,196,76,57,93,93,77,62,36,158,243,68,140,90,93,68,212,171,48,70,191,74,172,77,213,153,80,81,111,248,232,96,116,192,169,101,89,184,6,102,135,126,202,107,154,114,250,107,154,114,250,107,154,114,250,107,154,114,250,110,104,63,253,113,45,122,163,120,152,122,159,120,181,194,68,121,91,203,200,127,169,56,52,128,205,11,69,131,176,201,95,135,137,20,208,136,28,165,22,139,221,137,141,141,252,88,48,143,147,43,95,149,156,111,189,155,22,187,158,159,10,255,238,165,98,158,29,168,110,56,217,169,146,75,6,171,212,67,188,175,36,28,11,175,179,217,248,176,39,210,149,179,137,153,207,180,164,63,200,181,214,199,107,185,6,30,99,194,245,20,189,199,115,160,169,201,190,16,244,202,65,245,237,204,50,199,138,212,198,110,0,218,72,34,112,219,243,254,240,224,223,244,41,226,175,28,109,227,18,231,49,235,49,15,164,245,248,16,240,247,220,0,238,0,5,9,98,111,100,121,44,104,116,109,108,2,80,2,18,6,1,2,163,177,62,3,124,52,177,3,168,225,186,6,202,96,121,7,3,5,161,8,156,163,141,9,134,25,158,21,63,196,28,21,215,74,174,22,48,121,119,25,81,223,150,29,200,36,38,32,13,109,78,34,98,5,82,36,251,185,206,39,61,58,49,41,6,94,97,44,195,100,3,46,8,248,43,47,121,161,99,50,115,115,213,52,52,24,45,52,119,226,184,52,136,196,76,57,93,93,77,62,36,158,243,68,140,90,93,68,212,171,48,70,191,74,172,77,213,153,80,81,111,248,232,96,116,192,169,101,89,184,6,102,135,126,202,107,154,114,250,107,154,114,250,107,154,114,250,107,154,114,250,110,104,63,253,113,45,122,163,120,152,122,159,120,181,194,68,121,91,203,200,127,169,56,52,128,205,11,69,131,176,201,95,135,137,20,208,136,28,165,22,139,221,137,141,141,252,88,48,143,147,43,95,149,156,111,189,155,22,187,158,159,10,255,238,165,98,158,29,168,110,56,217,169,146,75,6,171,212,67,188,175,36,28,11,175,179,217,248,176,39,210,149,179,137,153,207,180,164,63,200,181,214,199,107,185,6,30,99,194,245,20,189,199,115,160,169,201,190,16,244,202,65,245,237,204,145,52,33,212,198,110,0,218,72,34,112,219,243,254,240,224,223,244,41,226,175,28,109,227,18,231,49,235,49,15,164,245,248,16,240,247,220,0,238,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,28,35,99,111,111,107,105,101,45,98,97,110,110,101,114,46,99,111,111,107,105,101,45,98,97,110,110,101,114,2,35,1,173,95,59,9,205,216,89,31,162,97,198,34,77,120,188,36,57,50,65,36,76,36,150,50,149,135,136,58,140,94,217,68,208,65,98,83,87,45,26,94,231,27,82,96,128,68,163,99,77,76,116,123,194,221,212,132,25,5,193,145,3,47,128,148,160,121,117,177,238,57,215,178,148,173,226,180,68,107,86,183,246,105,50,192,38,162,77,200,83,31,19,204,43,243,246,210,175,158,152,217,25,224,109,223,132,35,32,224,80,165,162,233,150,216,237,239,31,207,249,243,248,134,70,245,19,10,7,245,96,144,255,245,170,87,17,253,17,5,151,0,5,9,98,111,100,121,44,104,116,109,108,2,35,1,173,95,59,9,205,216,89,31,162,97,198,34,77,120,188,36,57,50,65,36,76,36,150,50,149,135,136,58,140,94,217,68,208,65,98,83,87,45,26,94,231,27,82,96,128,68,163,99,77,76,116,123,194,221,212,132,25,5,193,145,3,47,128,148,160,121,117,177,238,57,215,178,148,173,226,180,68,107,86,183,246,105,50,192,38,162,77,200,83,31,19,204,43,243,246,210,175,158,152,217,25,224,109,223,132,35,32,224,80,165,162,233,150,216,237,239,31,207,249,243,248,134,70,245,19,10,7,245,96,144,255,245,170,87,17,253,17,5,151,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,109,111,100,97,108,45,99,97,99,115,112,45,112,111,115,105,116,105,111,110,2,1,179,160,169,189,8,1,21,46,109,111,100,97,108,45,99,97,99,115,112,45,98,97,99,107,100,114,111,112,2,1,179,160,169,189,0,5,4,104,116,109,108,2,1,179,160,169,189,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,25,46,99,111,111,107,105,101,45,119,114,97,112,112,101,114,45,99,111,110,116,97,105,110,101,114,2,1,71,76,29,1,0,5,9,98,111,100,121,44,104,116,109,108,2,1,71,76,29,1,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,116,97,114,116,101,97,117,99,105,116,114,111,110,82,111,111,116,2,2,39,209,196,53,154,166,145,127,0,5,9,98,111,100,121,44,104,116,109,108,2,2,39,209,196,53,154,166,145,127,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,9,27,122,30,105,52,239,58,65,76,58,14,223,82,220,111,191,166,60,238,192,196,121,241,166,197,6,87,245,231,112,234,117,242,231,129,145,16,1,16,35,99,111,111,107,105,101,109,97,110,45,109,111,100,97,108,2,9,27,122,30,105,52,239,58,65,76,58,14,223,82,220,111,191,166,60,238,192,196,121,241,166,197,6,87,245,231,112,234,117,242,231,129,145,0,5,4,98,111,100,121,2,9,27,122,30,105,52,239,58,65,76,58,14,223,82,220,111,191,166,60,238,192,196,121,241,166,197,6,87,245,231,112,234,117,242,231,129,145,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,15,7,8,15,228,30,164,191,17,30,248,7,116,88,87,43,38,99,193,233,223,139,246,254,63,150,52,1,76,179,20,4,226,186,229,168,25,187,74,254,74,190,147,250,16,198,40,104,251,223,28,198,235,235,107,12,61,237,168,21,29,16,1,20,35,103,100,112,114,95,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,58,254,112,108,16,1,22,35,103,100,112,114,95,99,111,111,107,105,101,45,109,97,105,110,87,114,97,112,112,2,1,58,254,112,108,0,5,9,98,111,100,121,44,104,116,109,108,2,1,58,254,112,108,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,12,35,106,115,45,99,99,45,109,111,100,97,108,2,1,179,177,248,90,0,5,4,98,111,100,121,2,1,179,177,248,90,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,106,115,45,111,45,112,97,103,101,95,95,103,100,112,114,45,111,118,101,114,108,97,121,2,30,4,82,133,126,7,229,243,218,13,245,207,122,44,35,154,13,46,38,152,223,49,191,48,68,49,192,100,99,52,94,58,128,54,214,136,245,84,1,135,70,90,86,183,117,100,24,47,22,107,32,220,108,111,96,242,73,118,221,109,183,138,134,171,224,143,211,47,7,144,148,214,115,148,247,155,239,151,252,172,31,161,140,64,241,173,37,214,227,183,147,101,123,186,229,3,224,196,140,53,254,216,104,177,124,217,46,82,76,219,84,3,167,229,246,25,144,235,52,88,73,0,5,4,98,111,100,121,2,30,4,82,133,126,7,229,243,218,13,245,207,122,44,35,154,13,46,38,152,223,49,191,48,68,49,192,100,99,52,94,58,128,54,214,136,245,84,1,135,70,90,86,183,117,100,24,47,22,107,32,220,108,111,96,242,73,118,221,109,183,138,134,171,224,143,211,47,7,144,148,214,115,148,247,155,239,151,252,172,31,161,140,64,241,173,37,214,227,183,147,101,123,186,229,3,224,196,140,53,254,216,104,177,124,217,46,82,76,219,84,3,167,229,246,25,144,235,52,88,73,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,122,107,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,2,107,170,87,134,164,96,9,228,0,5,9,98,111,100,121,44,104,116,109,108,2,2,107,170,87,134,164,96,9,228,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,31,35,106,115,45,109,111,100,101,114,110,45,99,111,111,107,105,101,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,27,96,158,31,0,5,9,98,111,100,121,44,104,116,109,108,2,1,27,96,158,31,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,112,117,109,45,111,118,101,114,108,97,121,2,2,147,175,19,128,247,38,65,144,0,5,9,98,111,100,121,44,104,116,109,108,2,2,147,175,19,128,247,38,65,144,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,9,7,3,5,161,14,211,138,243,49,188,57,48,68,131,245,77,94,197,19,250,98,100,139,82,152,106,168,241,202,201,155,73,223,250,243,134,0,5,9,98,111,100,121,44,104,116,109,108,2,9,7,3,5,161,14,211,138,243,49,188,57,48,68,131,245,77,94,197,19,250,98,100,139,82,152,106,168,241,202,201,155,73,223,250,243,134,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,109,111,100,97,108,45,45,99,111,111,107,105,101,2,1,79,195,119,237,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,1,79,195,119,237,0,5,9,98,111,100,121,44,104,116,109,108,2,1,79,195,119,237,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,9,46,115,110,111,111,112,45,99,99,2,4,27,116,234,188,66,249,189,62,166,80,179,59,184,76,213,17,2,1,32,114,99,44,32,115,110,111,111,112,45,109,111,100,97,108,45,111,112,101,110,44,32,98,111,100,121,44,32,115,116,97,121,2,4,27,116,234,188,66,249,189,62,166,80,179,59,184,76,213,17,8,1,10,46,106,115,45,45,109,111,100,97,108,2,5,2,12,87,97,6,45,185,93,134,31,215,31,188,105,9,161,242,231,28,120,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,5,2,12,87,97,6,45,185,93,134,31,215,31,188,105,9,161,242,231,28,120,0,5,9,98,111,100,121,44,104,116,109,108,2,5,2,12,87,97,6,45,185,93,134,31,215,31,188,105,9,161,242,231,28,120,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,29,46,77,117,105,68,105,97,108,111,103,45,114,111,111,116,46,77,117,105,77,111,100,97,108,45,114,111,111,116,2,9,11,187,171,193,16,56,150,171,41,64,174,80,46,247,77,62,83,157,71,152,101,214,4,222,145,18,68,144,168,17,239,193,210,41,232,31,0,5,4,104,116,109,108,2,9,11,187,171,193,16,56,150,171,41,64,174,80,46,247,77,62,83,157,71,152,101,214,4,222,145,18,68,144,168,17,239,193,210,41,232,31,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,106,115,45,99,111,111,107,105,101,45,119,97,108,108,2,1,14,108,84,199,0,5,9,98,111,100,121,44,104,116,109,108,2,1,14,108,84,199,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,99,111,111,107,105,101,115,67,111,110,115,101,110,116,68,105,97,108,111,103,2,15,7,110,50,48,19,94,26,192,20,86,157,97,34,49,200,161,68,143,65,222,92,87,155,84,108,16,106,22,128,81,229,59,134,120,30,4,148,253,49,121,153,102,140,26,154,117,89,105,175,51,204,61,176,16,164,232,212,229,203,7,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,15,7,110,50,48,19,94,26,192,20,86,157,97,34,49,200,161,68,143,65,222,92,87,155,84,108,16,106,22,128,81,229,59,134,120,30,4,148,253,49,121,153,102,140,26,154,117,89,105,175,51,204,61,176,16,164,232,212,229,203,7,0,5,9,98,111,100,121,44,104,116,109,108,2,15,7,110,50,48,19,94,26,192,20,86,157,97,34,49,200,161,68,143,65,222,92,87,155,84,108,16,106,22,128,81,229,59,134,120,30,4,148,253,49,121,153,102,140,26,154,117,89,105,175,51,204,61,176,16,164,232,212,229,203,7,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,108,97,121,101,114,2,17,0,56,17,3,15,173,68,122,38,185,94,71,54,247,250,173,77,73,160,171,86,214,61,194,100,15,47,11,114,99,149,166,120,172,184,18,126,133,32,134,129,180,186,179,130,134,128,141,152,45,38,189,169,149,178,23,187,22,34,60,222,166,145,53,253,118,198,42,8,1,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,105,100,103,101,116,2,17,0,56,17,3,15,173,68,122,38,185,94,71,54,247,250,173,77,73,160,171,86,214,61,194,100,15,47,11,114,99,149,166,120,172,184,18,126,133,32,134,129,180,186,179,130,134,128,141,152,45,38,189,169,149,178,23,187,22,34,60,222,166,145,53,253,118,198,42,16,1,8,35,111,118,101,114,108,97,121,2,17,0,56,17,3,15,173,68,122,38,185,94,71,54,247,250,173,77,73,160,171,86,214,61,194,100,15,47,11,114,99,149,166,120,172,184,18,126,133,32,134,129,180,186,179,130,134,128,141,152,45,38,189,169,149,178,23,187,22,34,60,222,166,145,53,253,118,198,42,0,5,9,98,111,100,121,44,104,116,109,108,2,17,0,56,17,3,15,173,68,122,38,185,94,71,54,247,250,173,77,73,160,171,86,214,61,194,100,15,47,11,114,99,149,166,120,172,184,18,126,133,32,134,129,180,186,179,130,134,128,141,152,45,38,189,169,149,178,23,187,22,34,60,222,166,145,53,253,118,198,42,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,103,100,112,114,45,99,111,109,112,111,110,101,110,116,2,1,160,110,94,109,0,5,4,98,111,100,121,2,1,160,110,94,109,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,5,46,118,101,105,108,2,1,48,212,100,5,0,5,4,98,111,100,121,2,1,48,212,100,5,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,99,111,111,107,105,101,45,110,111,116,105,102,121,95,95,119,114,97,112,2,1,31,238,151,43,0,5,4,98,111,100,121,2,1,31,238,151,43,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,1,22,100,105,118,46,116,118,112,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,2,44,44,189,181,190,81,52,51,0,5,4,104,116,109,108,2,2,44,44,189,181,190,81,52,51,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,118,50,2,13,21,68,152,244,43,75,242,97,46,24,37,180,51,194,100,167,86,225,51,122,93,66,176,82,131,63,36,204,132,80,35,201,152,75,82,8,205,193,203,5,220,113,115,95,254,26,46,71,254,151,145,105,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,13,21,68,152,244,43,75,242,97,46,24,37,180,51,194,100,167,86,225,51,122,93,66,176,82,131,63,36,204,132,80,35,201,152,75,82,8,205,193,203,5,220,113,115,95,254,26,46,71,254,151,145,105,0,5,4,98,111,100,121,2,13,21,68,152,244,43,75,242,97,46,24,37,180,51,194,100,167,86,225,51,122,93,66,176,82,131,63,36,204,132,80,35,201,152,75,82,8,205,193,203,5,220,113,115,95,254,26,46,71,254,151,145,105,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,95,95,98,110,97,45,99,109,112,45,100,105,115,112,108,97,121,2,1,158,144,57,176,0,5,4,98,111,100,121,2,1,158,144,57,176,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,1,9,99,107,112,108,45,119,101,98,99,2,2,24,194,238,2,67,32,123,89,0,5,9,98,111,100,121,44,104,116,109,108,2,2,24,194,238,2,67,32,123,89,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,111,111,107,105,101,115,102,117,108,108,83,99,114,101,101,110,2,1,162,16,129,26,0,5,4,98,111,100,121,2,1,162,16,129,26,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,102,99,95,117,110,100,101,114,108,97,121,2,1,27,105,94,103,8,1,10,46,102,99,95,100,105,97,108,111,103,2,1,27,105,94,103,0,5,9,98,111,100,121,44,104,116,109,108,2,1,27,105,94,103,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,5,18,46,99,111,111,107,105,101,67,111,110,115,101,110,116,82,111,111,116,2,1,144,118,8,194,31,116,114,97,110,115,102,111,114,109,58,32,115,99,97,108,101,40,48,41,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,106,115,45,99,111,111,107,105,101,98,111,120,2,1,16,250,104,175,2,1,32,114,99,44,32,105,115,45,98,108,117,114,114,101,100,45,99,111,111,107,105,101,98,111,120,44,32,44,32,115,116,97,121,2,1,16,250,104,175,8,1,9,46,100,97,116,97,104,105,110,116,2,1,144,157,209,45,8,1,24,46,106,115,45,111,45,112,97,103,101,95,95,103,100,112,114,45,111,118,101,114,108,97,121,2,1,5,221,85,194,0,5,9,98,111,100,121,44,104,116,109,108,2,1,5,221,85,194,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,30,91,99,108,97,115,115,42,61,34,77,111,100,97,108,95,95,83,109,111,107,101,83,99,114,101,101,110,45,34,93,2,1,152,53,204,197,0,5,9,98,111,100,121,44,104,116,109,108,2,1,152,53,204,197,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,27,46,99,99,45,116,104,101,109,101,45,99,108,97,115,115,105,99,46,99,99,45,119,105,110,100,111,119,2,1,130,26,65,11,16,1,17,35,112,97,110,100,101,99,116,101,115,45,98,97,110,110,101,114,2,1,130,26,65,11,0,5,9,98,111,100,121,44,104,116,109,108,2,1,130,26,65,11,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,99,45,119,105,110,100,111,119,45,98,108,111,99,107,101,114,2,1,222,37,222,30,0,5,9,98,111,100,121,44,104,116,109,108,2,1,222,37,222,30,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,17,35,99,111,110,115,101,110,116,45,116,114,97,99,107,105,110,103,2,1,222,173,36,74,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,222,173,36,74,8,1,5,46,118,101,105,108,2,1,222,173,36,74,0,5,9,98,111,100,121,44,104,116,109,108,2,1,222,173,36,74,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,105,110,104,111,117,115,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,227,16,141,17,0,5,9,98,111,100,121,44,104,116,109,108,2,1,227,16,141,17,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,9,42,152,81,28,76,231,164,35,77,5,73,20,169,191,112,73,170,89,153,47,178,83,49,126,223,102,183,7,248,120,153,241,252,3,227,143,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,99,111,109,112,108,105,97,110,99,101,79,118,101,114,108,97,121,2,1,203,80,115,129,0,5,4,98,111,100,121,2,1,203,80,115,129,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,9,46,106,115,45,111,116,115,100,107,2,17,53,112,120,177,58,154,133,213,66,86,225,164,67,254,42,73,96,237,135,13,133,57,54,247,139,70,176,148,140,68,5,87,150,39,218,20,157,163,18,74,163,170,54,241,165,76,152,60,177,164,15,217,185,128,231,149,199,226,50,176,224,208,166,178,234,246,57,82,0,5,9,98,111,100,121,44,104,116,109,108,2,17,53,112,120,177,58,154,133,213,66,86,225,164,67,254,42,73,96,237,135,13,133,57,54,247,139,70,176,148,140,68,5,87,150,39,218,20,157,163,18,74,163,170,54,241,165,76,152,60,177,164,15,217,185,128,231,149,199,226,50,176,224,208,166,178,234,246,57,82,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,16,35,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,2,1,33,143,119,215,2,1,38,114,99,44,32,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,45,112,111,112,117,112,44,32,98,111,100,121,44,32,115,116,97,121,2,1,33,143,119,215,2,1,36,114,99,44,32,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,111,112,101,110,44,32,98,111,100,121,44,32,115,116,97,121,2,1,33,143,119,215,8,1,6,46,109,111,100,97,108,2,1,3,28,179,34,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,3,28,179,34,0,5,9,98,111,100,121,44,104,116,109,108,2,1,3,28,179,34,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,112,111,112,105,110,45,111,118,101,114,108,97,121,2,1,204,146,28,220,0,5,9,98,111,100,121,44,104,116,109,108,2,1,204,146,28,220,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,17,35,99,98,45,99,111,111,107,105,101,111,118,101,114,108,97,121,2,1,214,154,181,5,0,5,9,98,111,100,121,44,104,116,109,108,2,1,214,154,181,5,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,99,111,111,107,105,101,106,115,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,1,243,130,87,95,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,243,130,87,95,0,5,9,98,111,100,121,44,104,116,109,108,2,1,243,130,87,95,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,14,35,99,111,111,107,105,101,115,45,97,108,101,114,116,2,1,175,24,246,39,0,5,9,98,111,100,121,44,104,116,109,108,2,1,175,24,246,39,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,17,35,99,111,111,107,105,101,110,111,116,105,99,101,95,98,111,120,2,40,1,82,80,4,3,16,138,211,6,127,202,253,13,142,181,177,15,67,226,154,16,179,192,72,27,124,54,219,46,103,110,95,46,224,70,253,48,97,209,232,67,20,134,197,67,101,228,248,69,254,73,6,74,169,238,197,80,205,166,108,89,93,237,136,109,112,246,21,109,184,30,114,115,72,103,9,138,26,216,54,138,176,42,71,144,175,229,75,155,193,42,30,163,59,15,205,181,238,176,165,190,247,139,215,191,23,154,53,200,28,123,123,211,214,192,126,212,242,153,190,214,4,16,139,220,226,40,61,226,214,22,66,227,203,121,63,228,79,175,249,237,27,61,118,242,231,107,32,242,231,107,32,249,17,116,18,250,34,112,245,0,5,9,98,111,100,121,44,104,116,109,108,2,40,1,82,80,4,3,16,138,211,6,127,202,253,13,142,181,177,15,67,226,154,16,179,192,72,27,124,54,219,46,103,110,95,46,224,70,253,48,97,209,232,67,20,134,197,67,101,228,248,69,254,73,6,74,169,238,197,80,205,166,108,89,93,237,136,109,112,246,21,109,184,30,114,115,72,103,9,138,26,216,54,138,176,42,71,144,175,229,75,155,193,42,30,163,59,15,205,181,238,176,165,190,247,139,215,191,23,154,53,200,28,123,123,211,214,192,126,212,242,153,190,214,4,16,139,220,226,40,61,226,214,22,66,227,203,121,63,228,79,175,249,237,27,61,118,242,231,107,32,242,231,107,32,249,17,116,18,250,34,112,245,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,111,107,105,101,45,109,111,100,97,108,2,3,65,195,9,55,158,107,109,120,241,176,218,254,8,1,9,46,98,103,45,109,111,100,97,108,2,3,65,195,9,55,158,107,109,120,241,176,218,254,0,5,9,104,116,109,108,44,98,111,100,121,2,3,65,195,9,55,158,107,109,120,241,176,218,254,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,25,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,102,117,108,108,115,99,114,101,101,110,2,1,215,22,237,142,0,5,9,104,116,109,108,44,98,111,100,121,2,1,215,22,237,142,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,2,1,32,114,99,44,32,122,112,45,103,116,109,45,115,99,114,105,112,116,115,45,45,98,108,117,114,44,32,44,32,115,116,97,121,2,1,84,112,72,53,8,1,29,46,122,112,45,103,116,109,45,115,99,114,105,112,116,115,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,84,112,72,53,16,1,13,35,114,111,100,111,45,109,101,115,115,97,103,101,2,2,38,189,162,206,55,67,199,7,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,2,38,189,162,206,55,67,199,7,0,5,9,98,111,100,121,44,104,116,109,108,2,2,38,189,162,206,55,67,199,7,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,98,97,115,101,45,109,111,100,97,108,45,100,105,97,108,111,103,2,1,42,195,149,251,0,5,9,98,111,100,121,44,104,116,109,108,2,1,42,195,149,251,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,99,99,45,119,114,97,112,112,101,114,2,1,126,23,141,159,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,23,141,159,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,15,35,112,114,105,118,97,99,121,45,119,105,110,100,111,119,2,1,144,84,182,119,0,5,9,98,111,100,121,44,104,116,109,108,2,1,144,84,182,119,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,28,46,100,45,103,116,109,45,115,99,114,105,112,116,115,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,2,3,86,133,11,36,80,170,114,8,1,11,46,99,99,45,111,118,101,114,108,97,121,2,1,220,8,51,157,16,1,13,35,107,111,101,107,106,101,87,105,100,103,101,116,2,1,244,181,82,109,2,1,16,114,99,44,32,100,111,116,115,44,32,44,32,115,116,97,121,2,1,244,181,82,109,8,1,19,46,108,116,97,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,246,19,7,90,2,1,30,114,99,44,32,99,111,111,107,105,101,115,45,109,111,100,97,108,45,111,112,101,110,44,32,44,32,115,116,97,121,2,1,246,19,7,90,8,1,19,46,77,111,100,97,108,95,109,111,100,97,108,95,95,106,90,82,66,102,2,1,0,153,223,227,0,5,9,98,111,100,121,44,104,116,109,108,2,1,0,153,223,227,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,99,111,111,107,105,101,115,45,109,111,100,97,108,2,1,214,180,245,85,0,5,9,98,111,100,121,44,104,116,109,108,2,1,214,180,245,85,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,5,35,103,112,100,114,2,1,214,214,28,112,0,5,9,98,111,100,121,44,104,116,109,108,2,1,214,214,28,112,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,44,185,42,47,0,5,9,98,111,100,121,44,104,116,109,108,2,1,44,185,42,47,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,107,108,103,48,103,114,51,2,1,161,43,10,53,8,1,8,46,107,108,103,48,103,114,54,2,1,161,43,10,53,0,5,4,98,111,100,121,2,1,161,43,10,53,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,1,42,2,1,161,43,10,53,75,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,11,46,109,111,100,97,108,45,114,103,112,100,2,1,145,165,79,170,2,1,23,114,99,44,32,111,118,101,114,108,97,121,44,32,98,111,100,121,44,32,115,116,97,121,2,1,145,165,79,170,16,1,24,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,101,120,116,101,110,100,101,100,2,1,5,112,30,41,0,5,9,98,111,100,121,44,104,116,109,108,2,1,5,112,30,41,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,65,80,95,109,111,100,45,98,109,45,108,97,121,101,114,2,1,244,234,116,8,0,5,9,98,111,100,121,44,104,116,109,108,2,1,244,234,116,8,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,20,35,105,110,116,101,114,79,112,97,99,105,100,97,100,67,111,111,107,105,101,2,1,148,18,138,105,8,1,17,46,100,109,95,99,111,111,107,105,101,115,95,99,111,110,116,50,2,1,148,18,138,105,0,5,9,98,111,100,121,44,104,116,109,108,2,1,148,18,138,105,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,113,116,105,112,45,98,108,97,110,107,101,116,2,1,6,20,82,8,16,1,12,35,109,111,100,97,108,68,105,97,108,111,103,2,1,6,20,82,8,0,5,9,98,111,100,121,44,104,116,109,108,2,1,6,20,82,8,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,29,35,104,101,97,100,108,101,115,115,117,105,45,100,105,97,108,111,103,45,111,118,101,114,108,97,121,45,49,57,2,1,99,138,62,39,16,1,21,35,104,101,97,100,108,101,115,115,117,105,45,100,105,97,108,111,103,45,49,55,2,1,99,138,62,39,0,5,9,98,111,100,121,44,104,116,109,108,2,1,99,138,62,39,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,108,97,110,107,101,116,2,1,130,108,79,107,0,5,9,98,111,100,121,44,104,116,109,108,2,1,130,108,79,107,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,23,103,108,45,109,97,110,97,103,101,45,99,111,111,107,105,101,115,45,109,111,100,97,108,2,1,229,14,188,94,0,5,9,104,116,109,108,44,98,111,100,121,2,1,229,14,188,94,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,115,116,121,108,101,115,95,95,79,118,101,114,108,97,121,45,34,93,2,1,24,34,91,32,0,5,9,98,111,100,121,44,104,116,109,108,2,1,24,34,91,32,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,108,111,103,111,98,97,114,2,1,126,183,54,85,0,5,4,98,111,100,121,2,1,126,183,54,85,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,45,99,111,110,115,101,110,116,115,2,19,3,175,39,97,5,67,90,3,11,36,193,8,18,179,233,245,41,3,1,159,56,237,175,40,82,178,228,175,83,143,98,173,91,74,45,171,117,87,241,204,126,22,69,154,128,225,153,135,158,147,196,162,195,59,149,180,199,215,101,23,213,213,21,137,227,223,238,168,230,56,156,39,247,19,184,162,8,1,24,46,119,105,116,104,45,98,108,117,114,114,101,100,45,98,97,99,107,103,114,111,117,110,100,2,18,3,175,39,97,5,67,90,3,11,36,193,8,18,179,233,245,41,3,1,159,56,237,175,40,82,178,228,175,83,143,98,173,91,74,45,171,117,87,241,204,126,22,69,154,128,225,153,135,195,59,149,180,199,215,101,23,213,213,21,137,227,223,238,168,230,56,156,39,247,19,184,162,8,1,17,46,101,45,115,99,114,101,101,110,45,111,118,101,114,108,97,121,2,18,3,175,39,97,5,67,90,3,11,36,193,8,18,179,233,245,41,3,1,159,56,237,175,40,82,178,228,175,83,143,98,173,91,74,45,171,117,87,241,204,126,22,69,154,128,225,153,135,195,59,149,180,199,215,101,23,213,213,21,137,227,223,238,168,230,56,156,39,247,19,184,162,8,1,26,46,101,45,99,111,110,115,101,110,116,115,45,97,108,101,114,116,95,95,119,114,97,112,112,101,114,2,18,3,175,39,97,5,67,90,3,11,36,193,8,18,179,233,245,41,3,1,159,56,237,175,40,82,178,228,175,83,143,98,173,91,74,45,171,117,87,241,204,126,22,69,154,128,225,153,135,195,59,149,180,199,215,101,23,213,213,21,137,227,223,238,168,230,56,156,39,247,19,184,162,0,5,9,98,111,100,121,44,104,116,109,108,2,18,3,175,39,97,5,67,90,3,11,36,193,8,18,179,233,245,41,3,1,159,56,237,175,40,82,178,228,175,83,143,98,173,91,74,45,171,117,87,241,204,126,22,69,154,128,225,153,135,195,59,149,180,199,215,101,23,213,213,21,137,227,223,238,168,230,56,156,39,247,19,184,162,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,245,105,84,29,0,5,9,98,111,100,121,44,104,116,109,108,2,1,245,105,84,29,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,138,42,64,30,8,5,16,46,119,114,97,112,112,101,114,45,45,108,111,99,107,101,100,2,1,138,42,64,30,30,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,99,115,115,45,49,50,54,120,106,48,102,2,1,71,234,181,56,0,5,4,98,111,100,121,2,1,71,234,181,56,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,27,46,99,50,52,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,2,1,9,3,254,228,0,5,4,98,111,100,121,2,1,9,3,254,228,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,101,97,45,99,111,111,107,105,101,115,45,112,111,112,105,110,2,1,113,245,37,251,0,5,9,98,111,100,121,44,104,116,109,108,2,1,113,245,37,251,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,16,35,67,111,110,116,97,105,110,101,114,67,111,111,107,105,101,2,1,11,80,169,243,16,1,23,35,67,111,110,116,97,105,110,101,114,79,112,97,99,105,116,121,67,111,111,107,105,101,2,1,11,80,169,243,0,5,4,98,111,100,121,2,1,11,80,169,243,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,99,104,105,109,112,105,102,121,45,111,118,101,114,108,97,121,2,1,231,245,190,4,8,1,17,46,99,104,45,112,111,112,117,112,45,99,111,111,107,105,101,115,2,1,231,245,190,4,0,5,9,98,111,100,121,44,104,116,109,108,2,1,231,245,190,4,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,1,152,11,43,253,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,152,11,43,253,2,1,22,114,99,44,32,109,111,100,97,108,45,111,112,101,110,44,32,44,32,115,116,97,121,2,1,152,11,43,253,8,1,11,46,115,106,45,111,118,101,114,108,97,121,2,1,235,153,56,165,0,5,4,98,111,100,121,2,1,235,153,56,165,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,17,35,99,111,111,107,105,101,45,98,97,114,45,109,111,100,97,108,2,1,210,60,95,98,0,5,4,98,111,100,121,2,1,210,60,95,98,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,99,111,111,107,105,101,115,45,109,97,110,97,103,101,109,101,110,116,2,5,2,53,164,88,56,44,159,14,115,146,138,252,221,242,51,87,236,81,227,128,0,5,9,98,111,100,121,44,104,116,109,108,2,5,2,53,164,88,56,44,159,14,115,146,138,252,221,242,51,87,236,81,227,128,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,5,46,122,45,53,48,2,1,142,38,149,186,8,1,16,46,115,104,97,100,111,119,45,108,103,46,102,105,120,101,100,2,1,142,38,149,186,0,5,9,104,116,109,108,44,98,111,100,121,2,1,142,38,149,186,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,109,111,100,97,108,45,109,97,115,107,2,1,90,82,127,94,0,5,9,98,111,100,121,44,104,116,109,108,2,1,90,82,127,94,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,95,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,221,235,65,75,8,1,13,46,99,111,111,107,105,101,98,97,110,110,101,114,2,1,57,19,250,104,0,5,9,98,111,100,121,44,104,116,109,108,2,1,57,19,250,104,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,17,46,98,115,103,45,99,111,111,107,105,101,45,108,97,121,101,114,2,1,226,183,220,159,0,5,9,98,111,100,121,44,104,116,109,108,2,1,226,183,220,159,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,24,35,115,107,97,103,101,110,45,99,111,110,115,101,110,116,45,97,112,112,45,112,97,103,101,2,1,7,176,44,32,0,5,9,98,111,100,121,44,104,116,109,108,2,1,7,176,44,32,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,1,66,213,91,158,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,66,213,91,158,0,5,9,98,111,100,121,44,104,116,109,108,2,17,11,34,147,173,13,128,48,166,20,175,191,66,42,83,5,37,65,234,185,142,72,138,207,246,87,192,96,16,90,112,140,13,100,171,204,192,144,144,115,163,159,35,211,111,165,152,150,248,188,194,234,15,213,25,216,208,233,228,86,27,239,151,217,130,255,91,78,6,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,106,111,117,114,95,99,111,111,107,105,101,115,44,32,49,2,1,181,124,252,102,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,106,111,117,114,95,102,117,110,99,116,105,111,110,97,108,44,32,116,114,117,101,2,1,181,124,252,102,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,106,111,117,114,95,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,181,124,252,102,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,106,111,117,114,95,109,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,181,124,252,102,0,1,24,100,105,118,35,111,110,101,116,114,117,115,116,45,99,111,110,115,101,110,116,45,115,100,107,2,8,61,19,178,127,84,201,183,192,109,13,167,110,120,175,41,134,121,207,85,136,139,120,0,29,152,183,140,72,156,23,130,211,2,1,43,115,101,116,44,32,66,114,111,99,107,109,97,110,65,108,108,111,119,101,100,67,111,111,107,105,101,115,46,116,97,114,103,101,116,105,110,103,44,32,116,114,117,101,2,8,61,19,178,127,84,201,183,192,109,13,167,110,120,175,41,134,121,207,85,136,139,120,0,29,152,183,140,72,156,23,130,211,2,1,44,115,101,116,44,32,66,114,111,99,107,109,97,110,65,108,108,111,119,101,100,67,111,111,107,105,101,115,46,102,117,110,99,116,105,111,110,97,108,44,32,116,114,117,101,2,8,61,19,178,127,84,201,183,192,109,13,167,110,120,175,41,134,121,207,85,136,139,120,0,29,152,183,140,72,156,23,130,211,0,1,24,100,105,118,35,111,110,101,116,114,117,115,116,45,99,111,110,115,101,110,116,45,115,100,107,2,1,101,44,44,128,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,111,112,116,95,105,110,44,32,49,2,1,101,44,44,128,0,5,9,98,111,100,121,44,104,116,109,108,2,1,159,124,171,99,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,24,35,98,108,111,99,45,98,109,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,2,1,174,128,69,130,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,174,128,69,130,0,5,9,98,111,100,121,44,104,116,109,108,2,1,174,128,69,130,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,100,95,115,116,111,114,97,103,101,44,32,100,101,110,105,101,100,2,1,37,66,189,200,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,115,116,105,99,107,121,67,111,111,107,105,101,115,83,101,116,44,32,116,114,117,101,2,1,37,66,189,200,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,95,115,116,111,114,97,103,101,44,32,100,101,110,105,101,100,2,1,37,66,189,200,8,1,8,46,99,45,45,97,110,105,109,2,17,39,247,240,142,57,238,139,181,60,62,251,10,107,95,168,252,107,95,168,252,113,46,7,98,116,33,77,96,137,13,47,194,139,125,28,99,178,231,1,149,189,128,26,79,190,81,130,32,201,90,225,85,218,225,33,129,221,37,94,194,225,219,239,8,249,71,160,198,0,5,9,98,111,100,121,44,104,116,109,108,2,17,39,247,240,142,57,238,139,181,60,62,251,10,107,95,168,252,107,95,168,252,113,46,7,98,116,33,77,96,137,13,47,194,139,125,28,99,178,231,1,149,189,128,26,79,190,81,130,32,201,90,225,85,218,225,33,129,221,37,94,194,225,219,239,8,249,71,160,198,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,29,114,99,44,32,115,104,111,119,45,45,99,111,110,115,101,110,116,44,32,98,111,100,121,44,32,115,116,97,121,2,17,39,247,240,142,57,238,139,181,60,62,251,10,107,95,168,252,107,95,168,252,113,46,7,98,116,33,77,96,137,13,47,194,139,125,28,99,178,231,1,149,189,128,26,79,190,81,130,32,201,90,225,85,218,225,33,129,221,37,94,194,225,219,239,8,249,71,160,198,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,101,120,112,101,114,105,101,110,99,101,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,179,153,162,171,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,109,97,114,107,101,116,105,110,103,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,179,153,162,171,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,110,111,116,105,99,101,95,100,105,115,109,105,115,115,101,100,44,32,121,101,115,2,1,54,81,192,89,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,110,97,108,121,116,105,99,115,95,97,108,108,111,119,44,32,110,111,2,1,54,81,192,89,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,109,101,114,95,99,99,95,100,105,109,95,114,101,109,95,97,108,108,111,119,44,32,110,111,2,1,54,81,192,89,16,1,10,35,99,111,67,111,110,115,101,110,116,2,1,135,125,100,179,0,5,9,98,111,100,121,44,104,116,109,108,2,1,135,125,100,179,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,107,108,97,114,111,2,3,106,211,223,79,121,197,122,200,227,122,131,102,8,1,16,46,108,111,97,100,105,110,103,45,111,118,101,114,108,97,121,2,1,126,221,110,23,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,221,110,23,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,6,35,107,108,97,114,111,2,16,13,242,34,23,14,229,149,37,26,135,53,29,62,163,63,129,87,26,141,168,99,161,165,150,99,243,8,126,119,34,4,189,121,63,253,187,144,196,53,73,191,159,155,170,193,4,60,0,197,233,159,85,198,74,193,244,233,78,74,244,252,133,138,112,0,5,9,98,111,100,121,44,104,116,109,108,2,16,13,242,34,23,14,229,149,37,26,135,53,29,62,163,63,129,87,26,141,168,99,161,165,150,99,243,8,126,119,34,4,189,121,63,253,187,144,196,53,73,191,159,155,170,193,4,60,0,197,233,159,85,198,74,193,244,233,78,74,244,252,133,138,112,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,4,98,111,100,121,2,1,247,207,198,90,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,100,105,97,108,111,103,95,108,97,121,101,114,2,2,154,13,173,149,242,231,20,231,0,5,4,98,111,100,121,2,2,154,13,173,149,242,231,20,231,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,99,111,111,107,105,101,98,97,110,110,101,114,77,111,100,97,108,2,1,182,183,232,194,2,1,27,114,99,44,32,109,101,115,115,97,103,101,115,45,97,99,116,105,118,101,44,32,44,32,115,116,97,121,2,1,182,183,232,194,8,1,13,46,109,111,100,97,108,45,100,105,97,108,111,103,2,1,17,144,148,104,0,5,9,98,111,100,121,44,104,116,109,108,2,1,17,144,148,104,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,99,111,110,115,101,110,116,95,95,110,111,116,105,99,101,2,1,167,112,104,113,8,1,14,46,98,111,100,121,45,98,108,97,99,107,111,117,116,2,1,167,112,104,113,0,5,9,98,111,100,121,44,104,116,109,108,2,1,167,112,104,113,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,112,97,114,101,110,116,97,108,45,98,103,2,6,31,104,75,126,91,70,70,60,152,197,90,108,157,151,146,238,172,236,87,242,246,158,98,247,8,1,17,46,112,97,114,101,110,116,97,108,45,99,111,110,116,114,111,108,2,6,31,104,75,126,91,70,70,60,152,197,90,108,157,151,146,238,172,236,87,242,246,158,98,247,2,1,32,114,99,44,32,120,104,45,116,104,117,109,98,45,100,105,115,97,98,108,101,100,44,32,104,116,109,108,44,115,116,97,121,2,6,31,104,75,126,91,70,70,60,152,197,90,108,157,151,146,238,172,236,87,242,246,158,98,247,8,1,16,46,99,111,110,116,97,105,110,101,114,45,55,50,52,102,55,2,6,31,104,75,126,91,70,70,60,152,197,90,108,157,151,146,238,172,236,87,242,246,158,98,247,8,1,14,46,100,101,115,107,116,111,112,45,52,52,56,56,102,2,6,31,104,75,126,91,70,70,60,152,197,90,108,157,151,146,238,172,236,87,242,246,158,98,247,8,1,22,46,99,111,111,107,105,101,115,65,110,110,111,117,110,99,101,45,101,102,98,100,53,2,6,31,104,75,126,91,70,70,60,152,197,90,108,157,151,146,238,172,236,87,242,246,158,98,247,0,5,9,98,111,100,121,44,104,116,109,108,2,6,31,104,75,126,91,70,70,60,152,197,90,108,157,151,146,238,172,236,87,242,246,158,98,247,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,67,121,98,111,116,67,111,111,107,105,101,98,111,116,68,105,97,108,111,103,2,7,126,114,76,196,146,45,146,227,157,11,166,188,203,52,109,75,235,99,236,125,235,235,168,98,250,118,29,11,16,1,33,35,67,121,98,111,116,67,111,111,107,105,101,98,111,116,68,105,97,108,111,103,66,111,100,121,85,110,100,101,114,108,97,121,2,7,126,114,76,196,146,45,146,227,157,11,166,188,203,52,109,75,235,99,236,125,235,235,168,98,250,118,29,11,0,5,4,98,111,100,121,2,2,235,235,168,98,250,118,29,11,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,5,126,114,76,196,146,45,146,227,157,11,166,188,203,52,109,75,235,99,236,125,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,31,35,99,111,111,107,105,101,45,116,114,97,110,115,112,97,114,101,110,99,121,45,109,111,100,97,108,45,109,97,105,110,2,1,195,167,118,100,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,195,167,118,100,0,5,9,98,111,100,121,44,104,116,109,108,2,1,195,167,118,100,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,111,100,97,108,2,24,19,97,45,40,41,134,164,18,55,201,164,180,75,174,49,43,84,40,128,244,87,193,115,70,92,212,218,176,99,87,14,67,99,146,253,227,105,55,234,152,112,155,21,18,112,205,13,15,124,147,243,51,128,3,10,24,132,187,37,39,134,123,106,234,149,132,113,191,150,241,105,61,177,180,26,229,184,226,21,255,185,58,5,12,226,210,145,199,233,231,120,9,240,161,224,7,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,24,19,97,45,40,41,134,164,18,55,201,164,180,75,174,49,43,84,40,128,244,87,193,115,70,92,212,218,176,99,87,14,67,99,146,253,227,105,55,234,152,112,155,21,18,112,205,13,15,124,147,243,51,128,3,10,24,132,187,37,39,134,123,106,234,149,132,113,191,150,241,105,61,177,180,26,229,184,226,21,255,185,58,5,12,226,210,145,199,233,231,120,9,240,161,224,7,0,5,9,98,111,100,121,44,104,116,109,108,2,24,19,97,45,40,41,134,164,18,55,201,164,180,75,174,49,43,84,40,128,244,87,193,115,70,92,212,218,176,99,87,14,67,99,146,253,227,105,55,234,152,112,155,21,18,112,205,13,15,124,147,243,51,128,3,10,24,132,187,37,39,134,123,106,234,149,132,113,191,150,241,105,61,177,180,26,229,184,226,21,255,185,58,5,12,226,210,145,199,233,231,120,9,240,161,224,7,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,110,117,109,95,116,105,109,101,115,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,95,115,104,111,119,110,44,32,49,2,24,19,97,45,40,41,134,164,18,55,201,164,180,75,174,49,43,84,40,128,244,87,193,115,70,92,212,218,176,99,87,14,67,99,146,253,227,105,55,234,152,112,155,21,18,112,205,13,15,124,147,243,51,128,3,10,24,132,187,37,39,134,123,106,234,149,132,113,191,150,241,105,61,177,180,26,229,184,226,21,255,185,58,5,12,226,210,145,199,233,231,120,9,240,161,224,7,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,95,115,104,111,119,110,95,108,97,115,116,95,116,105,109,101,44,32,49,2,24,19,97,45,40,41,134,164,18,55,201,164,180,75,174,49,43,84,40,128,244,87,193,115,70,92,212,218,176,99,87,14,67,99,146,253,227,105,55,234,152,112,155,21,18,112,205,13,15,124,147,243,51,128,3,10,24,132,187,37,39,134,123,106,234,149,132,113,191,150,241,105,61,177,180,26,229,184,226,21,255,185,58,5,12,226,210,145,199,233,231,120,9,240,161,224,7,8,1,18,46,118,45,100,105,97,108,111,103,95,95,99,111,110,116,101,110,116,2,1,168,115,57,93,8,1,10,46,118,45,111,118,101,114,108,97,121,2,1,168,115,57,93,16,1,18,35,102,114,97,109,101,119,111,114,107,45,99,111,111,107,105,101,115,2,41,3,178,96,32,4,67,90,142,7,178,127,86,9,16,208,205,23,163,101,7,28,184,213,114,29,224,191,114,34,77,86,163,45,57,90,84,49,169,236,91,51,31,37,232,60,233,137,43,68,213,125,72,70,50,207,121,74,29,54,54,89,24,229,190,90,106,151,163,90,107,136,139,91,73,113,61,95,143,197,118,99,124,212,154,103,1,171,221,115,34,114,192,115,45,145,222,119,208,77,17,128,205,116,39,134,13,188,250,139,37,132,141,139,106,135,127,151,17,236,175,154,91,172,65,180,67,103,150,190,148,6,208,198,124,166,152,201,6,196,227,207,179,149,251,231,138,69,227,238,116,26,29,239,184,88,221,249,153,129,123,249,163,101,182,0,5,9,98,111,100,121,44,104,116,109,108,2,41,3,178,96,32,4,67,90,142,7,178,127,86,9,16,208,205,23,163,101,7,28,184,213,114,29,224,191,114,34,77,86,163,45,57,90,84,49,169,236,91,51,31,37,232,60,233,137,43,68,213,125,72,70,50,207,121,74,29,54,54,89,24,229,190,90,106,151,163,90,107,136,139,91,73,113,61,95,143,197,118,99,124,212,154,103,1,171,221,115,34,114,192,115,45,145,222,119,208,77,17,128,205,116,39,134,13,188,250,139,37,132,141,139,106,135,127,151,17,236,175,154,91,172,65,180,67,103,150,190,148,6,208,198,124,166,152,201,6,196,227,207,179,149,251,231,138,69,227,238,116,26,29,239,184,88,221,249,153,129,123,249,163,101,182,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,28,46,99,109,109,115,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,97,110,97,103,101,114,2,1,180,24,169,34,0,5,9,98,111,100,121,44,104,116,109,108,2,1,180,24,169,34,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,95,104,105,110,116,44,32,49,2,1,180,24,169,34,8,1,13,46,99,104,97,107,114,97,45,115,108,105,100,101,2,1,9,95,141,52,8,1,32,46,99,104,97,107,114,97,45,109,111,100,97,108,95,95,99,111,110,116,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,9,95,141,52,8,1,22,46,99,104,97,107,114,97,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,2,1,9,95,141,52,0,5,9,98,111,100,121,44,104,116,109,108,2,1,9,95,141,52,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,112,114,105,118,97,99,121,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,2,1,220,251,40,247,0,5,9,98,111,100,121,44,104,116,109,108,2,1,220,251,40,247,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,14,97,111,112,119,44,32,111,110,115,99,114,111,108,108,2,1,54,238,234,217,8,1,15,46,119,105,110,100,111,119,45,111,118,101,114,108,97,121,2,2,189,253,134,230,219,183,36,176,0,5,9,98,111,100,121,44,104,116,109,108,2,2,189,253,134,230,219,183,36,176,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,67,111,110,99,105,101,114,103,101,80,111,112,117,112,34,93,2,19,5,52,36,129,5,215,25,225,10,65,252,106,27,106,207,18,28,180,230,92,53,4,57,210,70,226,254,79,72,94,193,220,80,10,165,83,107,57,174,159,117,166,232,135,150,227,138,31,181,129,219,106,184,100,205,10,195,107,158,179,203,131,240,84,221,144,16,142,238,251,180,12,250,88,33,239,0,5,4,104,116,109,108,2,19,5,52,36,129,5,215,25,225,10,65,252,106,27,106,207,18,28,180,230,92,53,4,57,210,70,226,254,79,72,94,193,220,80,10,165,83,107,57,174,159,117,166,232,135,150,227,138,31,181,129,219,106,184,100,205,10,195,107,158,179,203,131,240,84,221,144,16,142,238,251,180,12,250,88,33,239,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,1,25,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,80,111,112,117,112,34,93,2,1,195,139,110,153,0,5,4,104,116,109,108,2,1,195,139,110,153,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,27,46,67,111,110,115,101,110,116,95,99,111,111,107,105,101,77,111,100,97,108,95,95,73,99,78,65,102,2,1,170,238,39,245,0,5,9,98,111,100,121,44,104,116,109,108,2,1,170,238,39,245,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,4,98,111,100,121,2,1,2,123,128,47,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,112,114,116,108,116,109,109,99,45,112,111,112,117,112,2,1,108,3,23,79,0,5,4,98,111,100,121,2,1,108,3,23,79,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,104,97,115,45,100,105,109,109,101,100,45,98,103,2,1,148,185,23,28,0,5,9,98,111,100,121,44,104,116,109,108,2,1,148,185,23,28,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,115,105,109,121,111,45,99,111,111,107,105,101,115,2,1,187,249,169,254,0,5,9,98,111,100,121,44,104,116,109,108,2,1,187,249,169,254,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,34,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,99,111,111,107,105,101,66,97,110,110,101,114,95,95,112,70,85,77,122,2,1,113,43,2,18,0,5,9,98,111,100,121,44,104,116,109,108,2,1,113,43,2,18,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,16,35,106,115,45,99,111,111,107,105,101,45,109,111,100,97,108,2,1,48,63,159,196,0,5,9,98,111,100,121,44,104,116,109,108,2,1,48,63,159,196,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,10,35,114,111,100,111,80,111,112,117,112,2,1,193,69,64,18,2,1,13,97,111,112,119,44,32,70,114,111,100,111,80,86,2,1,193,69,64,18,16,1,16,35,99,111,110,115,101,110,116,95,109,97,110,97,103,101,114,2,1,75,107,122,111,0,5,9,98,111,100,121,44,104,116,109,108,2,1,75,107,122,111,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,22,46,99,100,107,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,2,1,248,120,97,102,2,1,33,114,99,44,32,99,100,107,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,44,32,44,32,115,116,97,121,2,1,248,120,97,102,8,1,27,46,99,100,107,45,103,108,111,98,97,108,45,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,2,1,248,120,97,102,8,1,21,46,99,100,107,45,111,118,101,114,108,97,121,45,98,97,99,107,100,114,111,112,2,1,248,120,97,102,0,5,9,98,111,100,121,44,104,116,109,108,2,1,248,120,97,102,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,25,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,105,116,104,45,105,109,97,103,101,2,1,144,241,105,171,0,5,9,98,111,100,121,44,104,116,109,108,2,1,144,241,105,171,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,21,35,99,111,110,115,101,110,116,115,80,111,108,105,99,121,68,105,97,108,111,103,2,13,1,189,193,160,22,85,166,132,32,124,201,13,44,213,113,19,68,47,105,200,71,86,29,16,88,207,24,219,135,224,236,149,142,149,186,165,162,23,208,105,190,241,47,9,204,200,226,254,240,119,191,196,0,5,9,98,111,100,121,44,104,116,109,108,2,13,1,189,193,160,22,85,166,132,32,124,201,13,44,213,113,19,68,47,105,200,71,86,29,16,88,207,24,219,135,224,236,149,142,149,186,165,162,23,208,105,190,241,47,9,204,200,226,254,240,119,191,196,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,24,46,111,110,98,111,97,114,100,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,2,148,30,202,122,190,46,10,31,8,1,19,46,111,110,98,111,97,114,100,45,98,97,99,107,103,114,111,117,110,100,2,2,148,30,202,122,190,46,10,31,0,5,9,98,111,100,121,44,104,116,109,108,2,2,148,30,202,122,190,46,10,31,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,24,46,99,111,111,107,105,101,115,95,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,80,124,19,117,0,5,9,98,111,100,121,44,104,116,109,108,2,1,80,124,19,117,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,8,35,111,114,101,106,105,109,101,2,2,27,103,71,157,56,215,159,233,0,5,9,98,111,100,121,44,104,116,109,108,2,2,27,103,71,157,56,215,159,233,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,22,35,107,101,107,115,71,101,110,101,104,109,105,103,117,110,103,115,77,111,100,97,108,2,1,255,124,214,224,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,255,124,214,224,0,5,9,98,111,100,121,44,104,116,109,108,2,1,255,124,214,224,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,36,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,116,101,109,112,108,97,116,101,45,119,114,97,112,112,101,114,2,1,231,18,32,223,0,5,4,98,111,100,121,2,1,231,18,32,223,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,14,35,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,239,0,39,228,0,5,9,98,111,100,121,44,104,116,109,108,2,1,239,0,39,228,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,109,111,100,97,108,45,111,118,101,114,108,97,121,2,5,45,200,138,246,139,99,14,202,148,188,41,85,187,80,1,190,251,161,160,59,0,5,9,98,111,100,121,44,104,116,109,108,2,5,45,200,138,246,139,99,14,202,148,188,41,85,187,80,1,190,251,161,160,59,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,115,45,119,114,97,112,112,101,114,2,1,80,97,238,130,8,1,10,46,98,108,117,114,45,109,111,100,101,2,1,80,97,238,130,0,5,4,98,111,100,121,2,1,80,97,238,130,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,112,114,105,118,97,99,121,45,108,97,121,101,114,2,1,237,176,216,63,0,5,9,98,111,100,121,44,104,116,109,108,2,1,237,176,216,63,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,103,100,112,114,45,111,118,101,114,108,97,121,45,98,97,99,107,103,114,111,117,110,100,2,2,47,138,149,246,191,129,103,75,0,5,9,98,111,100,121,44,104,116,109,108,2,2,47,138,149,246,191,129,103,75,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,67,111,110,115,101,110,116,44,32,49,2,1,222,40,50,199,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,83,116,97,116,105,115,116,105,99,115,44,32,48,2,1,222,40,50,199,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,80,114,101,102,101,114,101,110,99,101,115,44,32,48,2,1,222,40,50,199,2,1,27,115,101,116,44,32,115,101,116,116,105,110,103,115,46,99,111,110,115,101,110,116,44,32,116,114,117,101,2,2,0,21,217,203,251,202,2,162,2,1,37,115,101,116,44,32,72,66,46,67,111,111,107,105,101,83,101,116,116,105,110,103,115,46,105,110,105,116,44,32,110,111,111,112,70,117,110,99,2,1,140,223,181,203,2,1,34,115,101,116,44,32,87,72,84,46,83,104,111,119,67,111,110,115,101,110,116,70,111,114,109,44,32,116,114,117,101,70,117,110,99,2,1,77,220,192,90,2,1,19,115,101,116,44,32,117,115,101,71,68,80,82,44,32,102,97,108,115,101,2,1,67,161,126,183,2,1,47,115,101,116,44,32,120,118,46,100,105,115,99,108,97,105,109,101,114,46,100,105,115,112,108,97,121,67,111,111,107,105,101,80,111,112,117,112,44,32,110,111,111,112,70,117,110,99,2,1,183,21,59,170,8,1,11,46,105,115,45,98,108,111,99,107,101,100,2,1,77,49,17,112,2,1,20,114,99,44,32,98,45,100,105,97,108,111,103,44,32,44,32,115,116,97,121,2,1,77,49,17,112,0,5,4,104,116,109,108,2,1,77,49,17,112,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,1,32,100,105,118,91,105,100,94,61,34,115,112,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,95,34,93,2,1,244,98,208,142,2,1,19,110,111,115,116,105,102,44,32,97,112,112,101,110,100,67,104,105,108,100,2,1,244,98,208,142,8,1,13,46,112,111,112,105,110,45,99,111,111,107,105,101,2,1,57,56,225,147,0,5,9,98,111,100,121,44,104,116,109,108,2,1,57,56,225,147,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,111,107,105,101,115,45,109,97,115,107,2,1,156,24,104,33,0,5,9,98,111,100,121,44,104,116,109,108,2,1,156,24,104,33,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,34,35,116,101,109,112,108,97,116,101,45,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,2,17,60,39,120,250,122,92,50,0,5,9,98,111,100,121,44,104,116,109,108,2,2,17,60,39,120,250,122,92,50,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,99,111,111,107,105,101,115,2,8,71,155,81,41,112,154,57,50,149,231,41,220,194,218,82,220,205,235,63,4,226,1,238,53,233,62,223,66,241,235,30,66,0,5,9,98,111,100,121,44,104,116,109,108,2,8,71,155,81,41,112,154,57,50,149,231,41,220,194,218,82,220,205,235,63,4,226,1,238,53,233,62,223,66,241,235,30,66,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,20,115,101,116,45,99,111,111,107,105,101,44,32,103,112,99,95,118,44,32,49,2,1,217,1,40,94,2,1,21,115,101,116,45,99,111,111,107,105,101,44,32,103,112,99,95,97,100,44,32,48,2,1,217,1,40,94,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,103,112,99,95,97,110,97,108,121,116,105,99,44,32,48,2,1,217,1,40,94,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,103,112,99,95,97,117,100,105,101,110,99,101,44,32,48,2,1,217,1,40,94,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,103,112,99,95,102,117,110,99,44,32,48,2,1,217,1,40,94,8,1,9,46,112,108,117,115,103,97,116,101,2,1,222,111,36,35,0,5,9,98,111,100,121,44,104,116,109,108,2,1,222,111,36,35,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,18,46,117,105,45,119,105,100,103,101,116,45,111,118,101,114,108,97,121,2,13,21,185,16,6,29,183,230,137,33,215,10,62,75,188,210,65,97,0,164,89,103,131,243,175,118,21,164,26,122,5,74,117,139,46,127,132,143,129,199,124,146,100,2,171,236,194,30,181,246,57,207,5,0,5,9,98,111,100,121,44,104,116,109,108,2,13,21,185,16,6,29,183,230,137,33,215,10,62,75,188,210,65,97,0,164,89,103,131,243,175,118,21,164,26,122,5,74,117,139,46,127,132,143,129,199,124,146,100,2,171,236,194,30,181,246,57,207,5,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,5,12,35,104,101,97,100,101,114,95,104,101,97,100,2,1,154,83,104,171,17,116,111,112,58,32,48,32,33,105,109,112,111,114,116,97,110,116,8,1,15,46,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,22,7,153,58,2,1,24,114,99,44,32,100,105,115,97,98,108,101,100,44,32,98,111,100,121,44,32,115,116,97,121,2,1,22,7,153,58,8,1,13,46,67,111,111,107,105,101,115,80,111,112,117,112,2,1,92,60,127,221,0,5,9,104,116,109,108,44,98,111,100,121,2,1,92,60,127,221,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,205,64,225,243,2,1,23,114,99,44,32,108,111,99,107,45,115,99,114,111,108,108,44,32,44,32,115,116,97,121,2,1,205,64,225,243,2,1,26,114,99,44,32,100,105,115,97,98,108,101,100,44,32,104,101,97,100,101,114,44,32,115,116,97,121,2,1,205,64,225,243,8,1,12,46,109,97,115,107,45,115,99,114,101,101,110,2,1,102,13,164,60,0,5,9,98,111,100,121,44,104,116,109,108,2,1,102,13,164,60,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,39,114,99,44,32,99,111,111,107,105,101,45,110,111,116,45,97,99,99,101,112,116,101,100,45,111,118,101,114,108,97,121,44,32,44,32,115,116,97,121,2,1,56,246,182,222,0,5,9,98,111,100,121,44,104,116,109,108,2,1,56,246,182,222,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,20,35,105,116,115,45,45,99,111,110,116,97,105,110,101,114,95,99,111,111,107,2,55,2,148,183,112,3,212,234,92,25,245,149,143,27,129,104,246,28,106,33,103,28,189,241,166,30,230,161,1,33,200,90,42,34,187,39,130,37,157,74,116,42,122,238,7,42,176,234,84,46,157,149,207,47,180,38,210,54,209,244,240,55,51,206,56,59,133,238,202,63,71,222,179,69,122,48,195,74,143,27,184,81,7,1,88,82,162,86,110,84,141,170,118,89,35,146,16,94,177,241,119,101,1,55,48,104,69,34,125,106,156,99,252,107,175,81,64,109,104,43,55,111,214,21,19,120,85,186,65,124,35,0,96,133,240,172,95,143,240,198,60,145,5,28,140,158,5,248,9,167,229,72,159,178,31,166,218,189,247,222,185,196,83,22,239,203,45,58,183,214,132,202,175,227,197,69,109,228,143,204,223,228,204,213,115,229,107,219,228,231,108,221,234,236,153,13,41,244,115,20,58,247,50,51,89,248,31,93,139,251,29,62,63,252,36,155,193,255,220,169,226,0,5,9,98,111,100,121,44,104,116,109,108,2,55,2,148,183,112,3,212,234,92,25,245,149,143,27,129,104,246,28,106,33,103,28,189,241,166,30,230,161,1,33,200,90,42,34,187,39,130,37,157,74,116,42,122,238,7,42,176,234,84,46,157,149,207,47,180,38,210,54,209,244,240,55,51,206,56,59,133,238,202,63,71,222,179,69,122,48,195,74,143,27,184,81,7,1,88,82,162,86,110,84,141,170,118,89,35,146,16,94,177,241,119,101,1,55,48,104,69,34,125,106,156,99,252,107,175,81,64,109,104,43,55,111,214,21,19,120,85,186,65,124,35,0,96,133,240,172,95,143,240,198,60,145,5,28,140,158,5,248,9,167,229,72,159,178,31,166,218,189,247,222,185,196,83,22,239,203,45,58,183,214,132,202,175,227,197,69,109,228,143,204,223,228,204,213,115,229,107,219,228,231,108,221,234,236,153,13,41,244,115,20,58,247,50,51,89,248,31,93,139,251,29,62,63,252,36,155,193,255,220,169,226,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,9,35,99,99,45,45,109,97,105,110,2,22,0,170,104,231,10,236,240,32,40,156,238,236,52,164,76,26,79,179,188,98,80,49,249,8,88,67,212,194,110,249,54,128,115,172,213,90,126,225,192,4,135,181,10,194,149,157,80,254,177,36,42,35,179,162,142,240,192,87,212,52,199,137,9,216,212,161,1,105,215,163,169,109,221,215,26,191,227,8,144,240,229,20,79,192,250,255,115,22,0,5,9,98,111,100,121,44,104,116,109,108,2,22,0,170,104,231,10,236,240,32,40,156,238,236,52,164,76,26,79,179,188,98,80,49,249,8,88,67,212,194,110,249,54,128,115,172,213,90,126,225,192,4,135,181,10,194,149,157,80,254,177,36,42,35,179,162,142,240,192,87,212,52,199,137,9,216,212,161,1,105,215,163,169,109,221,215,26,191,227,8,144,240,229,20,79,192,250,255,115,22,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,8,35,99,99,45,109,97,105,110,2,2,109,194,169,12,148,179,239,177,0,5,9,98,111,100,121,44,104,116,109,108,2,2,109,194,169,12,148,179,239,177,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,99,111,111,107,105,101,45,119,97,108,108,2,1,88,193,216,78,0,5,9,98,111,100,121,44,104,116,109,108,2,1,88,193,216,78,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,99,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,2,1,200,119,73,181,0,5,9,98,111,100,121,44,104,116,109,108,2,1,200,119,73,181,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,10,46,99,111,111,107,105,101,65,67,75,2,1,92,157,225,241,0,5,9,98,111,100,121,44,104,116,109,108,2,1,92,157,225,241,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,19,35,110,115,95,99,111,111,107,105,101,95,97,99,99,101,112,116,101,100,2,1,34,146,228,236,0,5,9,98,111,100,121,44,104,116,109,108,2,1,34,146,228,236,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,19,35,103,111,111,103,108,101,67,111,110,115,101,110,116,80,111,112,117,112,2,1,171,248,101,160,0,5,9,98,111,100,121,44,104,116,109,108,2,1,171,248,101,160,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,112,97,103,101,45,111,118,101,114,108,97,121,2,1,148,161,155,66,0,5,4,98,111,100,121,2,1,148,161,155,66,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,99,45,119,105,110,100,111,119,45,119,114,97,112,112,101,114,2,2,92,142,229,83,140,154,190,170,16,1,27,35,103,100,112,114,45,98,108,111,99,107,105,110,103,45,112,97,103,101,45,111,118,101,114,108,97,121,2,2,92,142,229,83,140,154,190,170,0,5,4,98,111,100,121,2,2,92,142,229,83,140,154,190,170,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,27,35,103,100,112,114,45,98,108,111,99,107,105,110,103,45,112,97,103,101,45,111,118,101,114,108,97,121,2,1,248,204,52,227,0,5,4,98,111,100,121,2,1,248,204,52,227,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,103,100,112,114,45,99,111,110,115,101,110,116,45,116,97,98,115,2,1,233,195,77,111,0,5,9,98,111,100,121,44,104,116,109,108,2,1,233,195,77,111,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,108,97,121,101,114,45,111,118,101,114,108,97,121,2,1,173,170,87,21,8,1,10,46,103,101,110,45,108,97,121,101,114,2,1,173,170,87,21,0,5,4,98,111,100,121,2,1,173,170,87,21,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,29,46,99,107,45,117,115,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,17,171,205,212,8,1,25,46,115,122,110,45,99,109,112,45,100,105,97,108,111,103,45,99,111,110,116,97,105,110,101,114,2,1,200,28,50,117,0,5,9,104,116,109,108,44,98,111,100,121,2,1,200,28,50,117,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,99,45,99,111,111,107,105,101,45,109,111,100,97,108,2,1,6,203,171,60,8,1,23,46,99,45,99,111,111,107,105,101,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,6,203,171,60,0,5,9,98,111,100,121,44,104,116,109,108,2,1,6,203,171,60,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,22,35,115,108,105,100,105,110,103,45,112,111,112,117,112,45,99,111,111,107,105,101,115,2,1,14,16,131,200,0,5,9,98,111,100,121,44,104,116,109,108,2,1,14,16,131,200,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,95,95,83,83,82,95,67,79,78,83,69,78,84,95,77,65,78,65,71,69,82,95,95,2,1,215,9,121,81,0,5,4,104,116,109,108,2,1,215,9,121,81,27,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,8,1,18,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,98,103,2,1,129,188,158,116,2,1,23,114,99,44,32,98,108,117,114,114,101,100,45,112,97,103,101,44,32,44,115,116,97,121,2,1,129,188,158,116,16,1,14,35,105,110,115,104,111,112,67,111,111,107,105,101,115,2,2,33,44,251,175,63,14,176,99,0,5,9,98,111,100,121,44,104,116,109,108,2,2,33,44,251,175,63,14,176,99,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,112,120,45,98,97,110,110,101,114,45,99,111,111,107,105,101,115,2,1,77,0,221,34,0,5,9,98,111,100,121,44,104,116,109,108,2,1,77,0,221,34,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,44,32,49,2,1,163,95,35,126,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,79,112,116,97,110,111,110,65,108,101,114,116,66,111,120,67,108,111,115,101,100,44,32,49,2,1,163,95,35,126,16,1,5,35,108,103,112,100,2,1,109,181,19,162,0,5,9,98,111,100,121,44,104,116,109,108,2,1,109,181,19,162,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,117,104,98,45,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,179,120,105,91,0,5,9,98,111,100,121,44,104,116,109,108,2,1,179,120,105,91,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,10,46,79,118,101,114,108,97,121,101,114,2,1,41,208,31,171,0,5,9,104,116,109,108,44,98,111,100,121,2,1,41,208,31,171,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,99,111,111,107,105,101,45,98,97,114,45,111,118,101,114,108,97,121,2,1,144,151,0,232,0,5,9,98,111,100,121,44,104,116,109,108,2,1,144,151,0,232,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,10,26,22,57,153,67,173,254,217,72,113,159,105,79,58,190,114,150,17,181,120,150,205,147,28,195,242,168,1,222,199,181,37,235,240,119,153,255,5,148,5,0,5,9,98,111,100,121,44,104,116,109,108,2,10,26,22,57,153,67,173,254,217,72,113,159,105,79,58,190,114,150,17,181,120,150,205,147,28,195,242,168,1,222,199,181,37,235,240,119,153,255,5,148,5,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,12,46,116,120,45,108,105,110,45,103,100,112,114,2,1,105,76,20,181,2,1,35,114,99,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,112,114,101,115,101,110,116,44,32,44,32,115,116,97,121,2,1,105,76,20,181,8,1,18,46,67,111,110,116,97,105,110,101,114,95,99,53,100,113,106,52,109,2,1,106,212,133,115,0,5,4,98,111,100,121,2,1,106,212,133,115,31,111,118,101,114,102,108,111,119,45,121,58,32,118,105,115,105,98,108,101,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,95,49,101,82,115,51,119,2,1,157,26,51,3,0,5,9,98,111,100,121,44,104,116,109,108,2,1,157,26,51,3,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,14,101,187,105,8,1,6,46,109,111,100,97,108,2,1,14,101,187,105,0,5,4,98,111,100,121,2,1,14,101,187,105,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,177,222,191,48,8,1,6,46,109,111,100,97,108,2,1,177,222,191,48,0,5,9,98,111,100,121,44,104,116,109,108,2,1,177,222,191,48,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,11,35,112,97,103,101,95,104,105,100,101,114,2,1,95,211,29,184,0,5,4,98,111,100,121,2,1,95,211,29,184,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,118,107,105,99,111,111,107,105,101,99,111,110,115,101,110,116,44,32,48,2,2,166,60,155,136,183,90,122,18,8,1,12,46,108,103,45,98,97,99,107,100,114,111,112,2,2,8,221,13,195,68,100,130,213,0,5,4,98,111,100,121,2,2,8,221,13,195,68,100,130,213,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,26,46,102,95,95,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,109,97,110,97,103,101,114,2,1,64,57,220,12,0,5,9,98,111,100,121,44,104,116,109,108,2,1,64,57,220,12,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,9,46,99,99,45,111,117,116,101,114,2,1,89,26,220,255,0,5,9,98,111,100,121,44,104,116,109,108,2,1,89,26,220,255,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,99,111,111,107,105,101,119,97,108,108,2,3,111,122,187,116,121,6,208,101,193,231,121,19,0,5,9,98,111,100,121,44,104,116,109,108,2,3,111,122,187,116,121,6,208,101,193,231,121,19,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,17,35,99,111,111,107,105,101,119,97,108,108,45,109,111,100,97,108,2,4,3,249,53,152,199,151,255,25,217,211,43,125,221,49,230,223,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,4,3,249,53,152,199,151,255,25,217,211,43,125,221,49,230,223,0,5,9,98,111,100,121,44,104,116,109,108,2,4,3,249,53,152,199,151,255,25,217,211,43,125,221,49,230,223,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,110,115,101,110,116,109,111,100,97,108,2,1,8,222,248,200,0,5,9,98,111,100,121,44,104,116,109,108,2,1,8,222,248,200,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,104,101,97,100,101,114,45,99,111,111,107,105,101,115,45,103,100,112,114,2,6,23,180,66,136,50,13,114,71,50,196,182,130,157,189,13,240,172,111,26,245,240,226,80,229,2,1,40,114,99,44,32,104,101,97,100,101,114,45,103,100,114,112,45,99,111,111,107,105,101,115,45,118,105,115,105,98,108,101,32,44,32,44,32,115,116,97,121,2,6,23,180,66,136,50,13,114,71,50,196,182,130,157,189,13,240,172,111,26,245,240,226,80,229,0,5,4,98,111,100,121,2,6,23,180,66,136,50,13,114,71,50,196,182,130,157,189,13,240,172,111,26,245,240,226,80,229,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,112,98,45,104,101,97,100,101,114,95,95,111,118,101,114,108,97,121,2,2,215,218,175,145,242,231,45,181,0,5,9,98,111,100,121,44,104,116,109,108,2,2,215,218,175,145,242,231,45,181,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,99,45,99,111,111,107,105,101,45,112,111,112,117,112,2,64,0,140,207,211,1,132,149,52,4,140,123,254,5,195,27,158,5,196,14,42,5,243,122,200,8,54,227,154,13,66,119,84,23,244,226,181,24,117,15,171,26,217,175,6,31,200,167,252,32,224,146,232,35,123,193,53,39,63,48,211,42,98,237,37,44,129,66,72,54,82,140,233,61,170,209,196,63,77,95,52,67,136,39,143,71,16,151,181,77,86,169,189,78,104,149,107,81,223,134,201,84,111,151,149,85,148,37,111,86,235,176,179,87,213,73,174,92,115,29,193,103,67,202,187,104,224,207,216,105,212,48,194,107,136,29,71,114,12,184,185,114,128,214,77,117,158,126,184,118,233,125,152,124,115,159,36,126,87,77,223,139,131,67,57,149,134,31,215,156,143,200,72,158,141,66,57,160,0,60,30,168,167,126,202,168,172,193,93,196,181,198,246,202,57,71,214,208,42,139,100,210,85,163,208,213,45,68,13,213,59,65,2,213,110,209,202,213,180,195,214,214,104,9,72,227,199,185,38,227,219,152,22,232,32,217,112,237,193,225,131,237,232,91,33,241,164,182,253,242,81,116,218,248,32,162,210,0,5,9,98,111,100,121,44,104,116,109,108,2,64,0,140,207,211,1,132,149,52,4,140,123,254,5,195,27,158,5,196,14,42,5,243,122,200,8,54,227,154,13,66,119,84,23,244,226,181,24,117,15,171,26,217,175,6,31,200,167,252,32,224,146,232,35,123,193,53,39,63,48,211,42,98,237,37,44,129,66,72,54,82,140,233,61,170,209,196,63,77,95,52,67,136,39,143,71,16,151,181,77,86,169,189,78,104,149,107,81,223,134,201,84,111,151,149,85,148,37,111,86,235,176,179,87,213,73,174,92,115,29,193,103,67,202,187,104,224,207,216,105,212,48,194,107,136,29,71,114,12,184,185,114,128,214,77,117,158,126,184,118,233,125,152,124,115,159,36,126,87,77,223,139,131,67,57,149,134,31,215,156,143,200,72,158,141,66,57,160,0,60,30,168,167,126,202,168,172,193,93,196,181,198,246,202,57,71,214,208,42,139,100,210,85,163,208,213,45,68,13,213,59,65,2,213,110,209,202,213,180,195,214,214,104,9,72,227,199,185,38,227,219,152,22,232,32,217,112,237,193,225,131,237,232,91,33,241,164,182,253,242,81,116,218,248,32,162,210,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,12,35,100,105,100,111,109,105,45,104,111,115,116,2,9,4,41,32,244,62,8,23,86,86,243,89,11,89,156,87,105,128,20,82,245,156,200,86,132,194,197,253,186,235,255,149,168,248,217,1,155,0,5,9,98,111,100,121,44,104,116,109,108,2,9,4,41,32,244,62,8,23,86,86,243,89,11,89,156,87,105,128,20,82,245,156,200,86,132,194,197,253,186,235,255,149,168,248,217,1,155,121,111,118,101,114,102,108,111,119,58,32,118,105,115,105,98,108,101,32,33,105,109,112,111,114,116,97,110,116,59,32,112,97,100,100,105,110,103,45,114,105,103,104,116,58,32,48,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,45,121,58,32,118,105,115,105,98,108,101,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,45,120,58,32,118,105,115,105,98,108,101,32,33,105,109,112,111,114,116,97,110,116,2,1,21,115,101,116,44,32,68,105,100,111,109,105,44,32,110,111,111,112,70,117,110,99,2,7,5,36,120,36,12,45,184,210,33,112,162,237,43,211,43,217,130,109,112,89,228,230,119,104,234,205,190,59,2,1,20,114,109,110,116,44,32,115,99,114,105,112,116,44,32,68,105,100,111,109,105,2,1,22,78,180,66,16,1,19,35,103,100,112,114,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,170,85,212,92,0,5,9,98,111,100,121,44,104,116,109,108,2,1,170,85,212,92,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,5,46,114,103,112,100,2,37,12,166,20,149,13,235,181,30,14,69,239,151,35,82,209,85,40,42,171,96,42,133,235,61,62,49,88,186,67,168,159,230,78,9,94,120,88,201,54,7,105,217,20,48,107,170,189,226,110,201,166,95,118,148,113,38,118,187,86,212,127,230,140,113,128,189,139,61,129,55,5,153,140,214,181,113,143,37,196,91,154,166,58,205,160,175,121,208,162,208,112,213,167,17,99,31,167,121,37,123,170,179,179,128,171,209,91,163,175,19,211,232,177,84,238,13,183,145,62,94,198,213,182,241,210,11,12,125,215,163,123,52,221,63,205,45,238,141,202,24,242,103,23,177,254,147,11,5,0,5,9,98,111,100,121,44,104,116,109,108,2,37,12,166,20,149,13,235,181,30,14,69,239,151,35,82,209,85,40,42,171,96,42,133,235,61,62,49,88,186,67,168,159,230,78,9,94,120,88,201,54,7,105,217,20,48,107,170,189,226,110,201,166,95,118,148,113,38,118,187,86,212,127,230,140,113,128,189,139,61,129,55,5,153,140,214,181,113,143,37,196,91,154,166,58,205,160,175,121,208,162,208,112,213,167,17,99,31,167,121,37,123,170,179,179,128,171,209,91,163,175,19,211,232,177,84,238,13,183,145,62,94,198,213,182,241,210,11,12,125,215,163,123,52,221,63,205,45,238,141,202,24,242,103,23,177,254,147,11,5,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,11,35,109,111,100,97,108,45,104,111,115,116,2,4,29,69,122,163,44,169,74,10,70,160,61,143,251,54,78,234,0,5,4,98,111,100,121,2,4,29,69,122,163,44,169,74,10,70,160,61,143,251,54,78,234,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,7,46,98,97,110,110,101,114,2,1,128,163,161,118,2,1,17,114,99,44,32,102,105,120,101,100,44,32,44,32,115,116,97,121,2,1,128,163,161,118,8,1,15,46,101,118,100,45,98,97,99,107,103,114,111,117,110,100,2,1,112,197,248,228,0,5,9,104,116,109,108,44,98,111,100,121,2,1,112,197,248,228,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,98,111,100,121,45,111,118,101,114,108,97,121,2,1,119,93,105,176,0,5,9,98,111,100,121,44,104,116,109,108,2,1,119,93,105,176,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,30,46,102,114,111,110,116,101,110,100,80,114,105,118,97,99,121,95,95,109,111,100,97,108,87,114,97,112,112,101,114,2,4,0,81,104,168,32,65,175,142,147,114,114,182,157,243,37,62,0,5,9,98,111,100,121,44,104,116,109,108,2,4,0,81,104,168,32,65,175,142,147,114,114,182,157,243,37,62,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,103,45,99,111,110,115,101,110,116,109,97,110,97,103,101,114,2,2,225,186,118,16,234,227,170,115,0,5,9,98,111,100,121,44,104,116,109,108,2,2,225,186,118,16,234,227,170,115,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,7,46,100,105,109,109,101,114,2,4,0,88,51,52,57,203,85,149,121,67,125,216,134,209,127,103,0,5,9,98,111,100,121,44,104,116,109,108,2,4,0,88,51,52,57,203,85,149,121,67,125,216,134,209,127,103,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,16,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,50,2,1,113,249,183,95,0,5,9,98,111,100,121,44,104,116,109,108,2,1,113,249,183,95,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,67,111,111,107,105,101,80,111,112,117,112,45,68,105,118,87,114,97,112,112,101,114,2,4,48,59,218,73,78,6,121,56,94,223,131,187,197,25,239,228,0,5,9,98,111,100,121,44,104,116,109,108,2,4,48,59,218,73,78,6,121,56,94,223,131,187,197,25,239,228,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,112,111,112,117,112,77,111,100,97,108,79,118,101,114,108,97,121,2,13,17,230,199,131,51,111,129,107,73,196,155,66,77,59,109,52,77,250,225,132,87,222,117,164,92,137,76,219,101,35,120,8,117,150,191,138,157,45,44,114,159,114,31,6,174,80,48,133,183,193,61,44,0,5,9,98,111,100,121,44,104,116,109,108,2,13,17,230,199,131,51,111,129,107,73,196,155,66,77,59,109,52,77,250,225,132,87,222,117,164,92,137,76,219,101,35,120,8,117,150,191,138,157,45,44,114,159,114,31,6,174,80,48,133,183,193,61,44,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,98,97,99,107,100,114,111,112,45,99,111,111,107,105,101,2,2,123,159,15,235,217,62,228,18,0,5,9,98,111,100,121,44,104,116,109,108,2,2,123,159,15,235,217,62,228,18,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,115,108,105,100,105,110,103,45,112,111,112,117,112,45,98,111,116,116,111,109,2,5,4,38,90,2,43,249,52,185,84,165,103,175,168,177,131,118,230,16,134,149,0,5,9,98,111,100,121,44,104,116,109,108,2,5,4,38,90,2,43,249,52,185,84,165,103,175,168,177,131,118,230,16,134,149,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,28,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,4,10,74,141,47,86,134,137,244,165,35,220,40,215,224,180,171,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,4,10,74,141,47,86,134,137,244,165,35,220,40,215,224,180,171,0,5,4,104,116,109,108,2,4,10,74,141,47,86,134,137,244,165,35,220,40,215,224,180,171,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,111,111,107,115,105,101,115,108,97,119,45,98,108,111,99,107,2,1,190,223,149,46,0,5,4,98,111,100,121,2,1,190,223,149,46,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,115,99,114,101,101,110,45,100,97,114,107,101,110,2,1,83,68,105,72,0,5,4,98,111,100,121,2,1,83,68,105,72,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,111,120,121,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,2,166,216,35,232,168,207,90,164,0,5,4,98,111,100,121,2,2,166,216,35,232,168,207,90,164,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,118,109,45,45,99,111,110,116,97,105,110,101,114,2,1,197,31,224,125,0,5,4,104,116,109,108,2,1,197,31,224,125,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,19,35,109,97,99,97,114,111,110,95,99,111,111,107,105,101,95,98,111,120,2,1,103,244,149,13,0,5,9,98,111,100,121,44,104,116,109,108,2,1,103,244,149,13,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,25,46,109,97,105,110,95,115,101,108,102,95,111,118,101,114,108,97,121,95,99,111,111,107,105,101,2,1,35,21,102,177,0,5,9,98,111,100,121,44,104,116,109,108,2,1,35,21,102,177,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,17,35,106,116,45,99,111,111,107,105,101,115,45,109,111,100,97,108,2,1,216,134,168,56,0,5,9,98,111,100,121,44,104,116,109,108,2,1,216,134,168,56,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,106,115,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,2,1,184,154,201,242,2,1,20,114,99,44,32,110,111,83,99,114,111,108,108,44,32,44,32,115,116,97,121,2,1,184,154,201,242,2,1,31,114,99,44,32,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,44,32,44,32,115,116,97,121,2,1,68,65,21,249,8,1,7,46,109,111,98,105,108,101,2,1,68,65,21,249,2,1,47,115,101,116,44,32,120,118,46,100,105,115,99,108,97,105,109,101,114,46,100,105,115,112,108,97,121,67,111,111,107,105,101,80,111,112,117,112,44,32,110,111,111,112,70,117,110,99,2,1,128,68,68,176,8,1,14,46,112,111,112,105,110,45,111,118,101,114,108,97,121,2,1,90,33,117,113,0,5,9,98,111,100,121,44,104,116,109,108,2,1,90,33,117,113,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,9,46,99,99,109,45,114,111,111,116,2,1,58,158,226,187,8,1,19,46,99,111,111,107,105,101,45,110,111,116,101,45,111,112,116,45,105,110,2,1,239,63,237,111,0,5,9,98,111,100,121,44,104,116,109,108,2,1,239,63,237,111,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,119,111,119,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,126,83,17,161,0,5,4,104,116,109,108,2,1,126,83,17,161,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,28,46,105,110,100,101,120,45,109,111,100,117,108,101,95,111,118,101,114,108,97,121,95,95,100,81,99,109,53,2,1,63,187,146,82,0,5,9,98,111,100,121,44,104,116,109,108,2,1,63,187,146,82,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,17,35,99,111,111,107,105,101,45,109,111,100,97,108,45,98,111,120,2,1,238,41,177,163,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,238,41,177,163,0,5,4,98,111,100,121,2,1,238,41,177,163,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,100,105,97,108,111,103,45,108,105,103,104,116,98,111,120,45,119,105,100,103,101,116,2,3,22,126,250,238,30,151,80,166,119,187,66,157,0,5,9,98,111,100,121,44,104,116,109,108,2,3,22,126,250,238,30,151,80,166,119,187,66,157,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,14,35,108,97,121,101,114,45,119,114,97,112,112,101,114,2,1,27,116,78,27,2,1,23,114,99,44,32,108,97,121,101,114,65,99,116,105,118,101,44,32,44,32,115,116,97,121,2,1,27,116,78,27,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,3,31,8,115,245,49,252,102,8,255,91,124,88,16,1,35,35,115,104,112,114,45,99,111,111,107,105,101,45,102,97,118,111,117,114,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,2,3,31,8,115,245,49,252,102,8,255,91,124,88,0,5,9,98,111,100,121,44,104,116,109,108,2,3,31,8,115,245,49,252,102,8,255,91,124,88,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,10,46,97,108,108,45,116,101,114,109,115,2,1,37,183,38,93,2,1,29,114,99,44,32,32,98,108,111,99,107,101,100,45,98,111,100,121,44,32,98,111,100,121,44,32,115,116,97,121,2,1,37,183,38,93,16,1,11,35,99,99,45,109,99,45,114,103,112,100,2,1,97,114,241,2,2,1,26,114,99,44,32,32,110,111,45,115,99,114,111,108,108,44,32,98,111,100,121,44,32,115,116,97,121,2,1,97,114,241,2,16,1,14,35,99,99,98,45,99,111,110,116,97,105,110,101,114,2,1,147,15,215,46,8,1,21,46,100,105,97,108,111,103,45,116,121,112,101,45,108,105,103,104,116,98,111,120,2,1,147,15,215,46,0,5,4,98,111,100,121,2,1,147,15,215,46,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,109,111,100,97,108,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,47,43,220,93,0,5,9,104,116,109,108,44,98,111,100,121,2,1,47,43,220,93,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,1,17,102,105,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,97,237,16,89,0,5,4,104,116,109,108,2,1,97,237,16,89,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,1,29,101,117,105,45,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,109,97,110,97,103,101,114,2,2,203,33,149,194,234,207,239,133,0,5,9,98,111,100,121,44,104,116,109,108,2,2,203,33,149,194,234,207,239,133,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,25,91,99,108,97,115,115,42,61,34,67,111,111,107,105,101,67,111,110,115,101,110,116,95,34,93,2,1,94,182,212,178,0,5,4,104,116,109,108,2,1,94,182,212,178,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,1,27,100,105,118,91,99,108,97,115,115,42,61,34,67,111,111,107,105,101,67,111,110,115,101,110,116,34,93,2,1,125,8,170,24,0,5,9,98,111,100,121,44,104,116,109,108,2,1,125,8,170,24,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,31,35,67,111,111,107,105,101,67,111,110,115,101,110,116,70,117,108,108,115,99,114,101,101,110,87,114,97,112,112,101,114,2,1,241,174,15,121,0,5,9,98,111,100,121,44,104,116,109,108,2,1,241,174,15,121,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,111,118,101,114,108,97,121,45,50,53,72,111,111,2,1,172,218,236,95,0,5,4,104,116,109,108,2,1,172,218,236,95,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,6,35,99,111,118,101,114,2,6,18,167,17,168,50,130,190,148,51,248,137,138,64,24,168,31,120,24,171,67,204,234,82,225,16,1,18,35,100,105,118,95,112,111,112,117,112,95,99,111,111,107,105,101,115,2,6,18,167,17,168,50,130,190,148,51,248,137,138,64,24,168,31,120,24,171,67,204,234,82,225,0,5,4,98,111,100,121,2,6,18,167,17,168,50,130,190,148,51,248,137,138,64,24,168,31,120,24,171,67,204,234,82,225,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,114,111,109,112,116,2,1,219,194,85,75,0,5,4,98,111,100,121,2,1,219,194,85,75,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,110,102,45,112,114,111,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,152,69,0,11,0,5,9,98,111,100,121,44,104,116,109,108,2,1,152,69,0,11,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,45,100,105,115,99,108,97,105,109,101,114,2,1,78,250,170,5,2,1,25,114,99,44,32,104,97,115,45,110,111,45,115,99,114,111,108,108,44,32,44,32,115,116,97,121,2,1,78,250,170,5,8,1,26,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,111,120,45,111,118,101,114,108,97,121,2,1,126,4,161,118,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,4,161,118,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,112,118,67,111,111,107,105,101,79,112,116,73,110,2,1,229,45,136,170,0,5,9,98,111,100,121,44,104,116,109,108,2,1,229,45,136,170,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,1,151,4,14,62,2,1,27,114,99,44,32,109,101,115,115,97,103,101,115,45,97,99,116,105,118,101,44,32,44,32,115,116,97,121,2,1,151,4,14,62,8,1,15,46,105,110,99,109,115,45,100,112,98,97,110,110,101,114,2,1,126,53,234,126,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,53,234,126,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,25,46,122,45,53,48,46,108,101,102,116,45,48,46,119,45,102,117,108,108,46,102,105,120,101,100,2,1,203,134,38,200,8,1,48,46,100,117,114,97,116,105,111,110,45,55,48,48,46,116,114,97,110,115,105,116,105,111,110,45,97,108,108,46,102,108,101,120,46,98,111,116,116,111,109,45,48,46,102,105,120,101,100,2,1,203,134,38,200,8,1,15,46,98,111,116,116,111,109,45,48,46,102,105,120,101,100,2,1,142,38,149,186,0,5,9,98,111,100,121,44,104,116,109,108,2,2,142,38,149,186,203,134,38,200,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,9,46,76,105,103,104,116,98,111,120,2,1,249,27,89,45,0,5,9,98,111,100,121,44,104,116,109,108,2,1,249,27,89,45,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,108,97,121,111,117,116,45,109,97,115,107,45,100,97,114,107,2,1,76,96,9,225,8,1,15,46,99,111,110,115,101,110,116,45,119,105,110,100,111,119,2,1,76,96,9,225,0,5,9,98,111,100,121,44,104,116,109,108,2,1,76,96,9,225,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,15,35,98,109,76,97,121,101,114,67,111,111,107,105,101,115,2,1,241,19,201,43,0,5,9,98,111,100,121,44,104,116,109,108,2,1,241,19,201,43,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,45,100,114,111,112,100,111,119,110,2,1,28,142,116,86,0,5,9,98,111,100,121,44,104,116,109,108,2,1,28,142,116,86,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,76,116,67,111,111,107,105,101,115,77,111,100,97,108,2,1,45,163,7,82,0,5,9,98,111,100,121,44,104,116,109,108,2,1,45,163,7,82,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,29,46,99,111,111,107,105,101,45,112,97,110,101,108,45,99,111,110,116,97,105,110,101,114,45,50,68,109,68,109,2,1,42,47,178,183,0,5,4,98,111,100,121,2,1,42,47,178,183,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,99,45,109,111,100,97,108,2,1,224,11,78,81,0,5,9,98,111,100,121,44,104,116,109,108,2,1,224,11,78,81,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,99,111,110,115,101,110,116,45,98,97,99,107,103,114,111,117,110,100,2,5,6,204,198,16,27,105,108,128,54,210,215,206,143,113,183,91,148,193,166,124,0,5,9,98,111,100,121,44,104,116,109,108,2,5,6,204,198,16,27,105,108,128,54,210,215,206,143,113,183,91,148,193,166,124,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,116,105,110,103,108,101,45,109,111,100,97,108,2,1,249,124,195,158,0,5,9,98,111,100,121,44,104,116,109,108,2,1,249,124,195,158,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,26,35,111,112,98,111,120,45,103,100,112,114,45,99,111,110,115,101,110,116,115,45,109,111,100,97,108,2,3,203,171,122,52,206,17,82,203,252,242,250,38,16,1,15,35,115,105,119,97,45,99,111,111,107,105,101,98,97,114,2,1,127,57,162,224,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,127,57,162,224,0,5,9,98,111,100,121,44,104,116,109,108,2,1,127,57,162,224,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,25,46,77,105,110,105,80,97,110,101,108,95,111,118,101,114,108,97,121,95,95,71,57,89,50,99,2,1,174,243,212,154,8,1,32,46,67,111,111,107,105,101,78,111,116,105,99,101,85,83,95,109,105,110,105,80,97,110,101,108,95,95,50,77,104,53,80,2,1,174,243,212,154,0,5,9,98,111,100,121,44,104,116,109,108,2,1,174,243,212,154,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,5,46,89,83,85,69,2,2,93,51,81,159,176,11,45,132,16,1,5,35,72,79,95,80,2,1,47,40,230,22,0,5,9,98,111,100,121,44,104,116,109,108,2,4,12,255,123,108,47,40,230,22,93,51,81,159,176,11,45,132,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,82,57,45,79,118,101,114,108,97,121,2,2,12,255,123,108,47,40,230,22,2,1,19,114,99,44,32,95,51,49,101,44,32,100,105,118,44,32,115,116,97,121,2,1,212,106,108,114,2,1,31,114,99,44,32,104,97,115,67,111,111,107,105,101,66,97,110,110,101,114,44,32,98,111,100,121,44,32,115,116,97,121,2,1,212,106,108,114,0,1,36,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,105,97,108,111,103,34,93,2,1,212,106,108,114,0,5,4,98,111,100,121,2,1,212,106,108,114,27,111,118,101,114,102,108,111,119,58,32,115,99,114,111,108,108,32,33,105,109,112,111,114,116,97,110,116,8,1,21,46,109,111,100,97,108,45,45,116,104,101,109,101,45,100,101,102,97,117,108,116,2,25,2,145,170,81,13,113,213,176,16,3,195,226,18,69,135,123,18,208,165,141,18,208,165,141,29,123,80,14,57,245,181,248,76,15,31,221,76,193,95,213,102,81,173,145,105,44,144,6,108,216,67,78,115,82,34,166,135,104,32,227,160,146,75,67,168,221,171,183,171,9,181,65,178,255,3,62,186,245,233,21,213,44,250,212,213,172,22,229,232,151,46,158,246,96,226,252,252,180,123,160,8,1,34,46,99,111,111,107,105,101,119,97,114,110,105,110,103,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,25,2,145,170,81,13,113,213,176,16,3,195,226,18,69,135,123,18,208,165,141,18,208,165,141,29,123,80,14,57,245,181,248,76,15,31,221,76,193,95,213,102,81,173,145,105,44,144,6,108,216,67,78,115,82,34,166,135,104,32,227,160,146,75,67,168,221,171,183,171,9,181,65,178,255,3,62,186,245,233,21,213,44,250,212,213,172,22,229,232,151,46,158,246,96,226,252,252,180,123,160,0,5,9,98,111,100,121,44,104,116,109,108,2,25,2,145,170,81,13,113,213,176,16,3,195,226,18,69,135,123,18,208,165,141,18,208,165,141,29,123,80,14,57,245,181,248,76,15,31,221,76,193,95,213,102,81,173,145,105,44,144,6,108,216,67,78,115,82,34,166,135,104,32,227,160,146,75,67,168,221,171,183,171,9,181,65,178,255,3,62,186,245,233,21,213,44,250,212,213,172,22,229,232,151,46,158,246,96,226,252,252,180,123,160,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,82,57,45,79,118,101,114,108,97,121,2,1,206,45,227,158,0,5,9,98,111,100,121,44,104,116,109,108,2,1,206,45,227,158,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,9,46,99,109,112,98,111,120,66,71,2,2,50,136,237,138,185,14,104,6,8,1,7,46,99,109,112,98,111,120,2,2,50,136,237,138,185,14,104,6,0,5,9,98,111,100,121,44,104,116,109,108,2,2,50,136,237,138,185,14,104,6,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,5,35,115,117,112,105,2,2,6,203,181,248,250,191,193,128,0,5,9,98,111,100,121,44,104,116,109,108,2,2,6,203,181,248,250,191,193,128,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,28,46,109,100,108,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,108,97,121,101,114,2,1,60,207,90,107,8,1,6,46,110,116,45,99,99,2,1,60,207,90,107,0,5,4,104,116,109,108,2,1,60,207,90,107,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,109,111,100,97,108,45,99,111,111,107,105,101,2,1,112,13,217,201,0,5,9,98,111,100,121,44,104,116,109,108,2,1,112,13,217,201,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,99,111,111,107,105,101,45,109,111,100,97,108,45,100,105,97,108,111,103,2,1,20,40,90,140,0,5,9,98,111,100,121,44,104,116,109,108,2,1,20,40,90,140,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,112,111,112,85,112,67,111,111,107,105,101,115,77,111,100,97,108,2,1,168,51,104,55,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,168,51,104,55,0,5,9,98,111,100,121,44,104,116,109,108,2,1,168,51,104,55,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,19,35,109,111,100,97,108,45,99,111,111,107,105,101,45,109,111,100,97,108,2,1,55,130,248,146,8,1,16,46,98,97,99,107,100,114,111,112,45,102,105,108,116,101,114,2,1,55,130,248,146,0,5,9,104,116,109,108,44,98,111,100,121,2,1,55,130,248,146,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,1,178,4,117,144,8,1,16,46,115,105,122,105,110,103,45,45,99,111,110,116,101,110,116,2,1,178,4,117,144,0,5,9,98,111,100,121,44,104,116,109,108,2,1,178,4,117,144,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,24,35,110,113,95,99,110,105,108,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,2,1,126,183,107,173,2,1,25,114,99,44,32,110,111,45,115,99,114,111,108,108,44,32,98,111,100,121,44,32,115,116,97,121,2,1,126,183,107,173,8,5,9,46,110,103,45,115,99,111,112,101,2,1,65,241,251,149,75,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,2,1,18,114,99,44,32,98,108,117,114,101,100,44,32,44,32,115,116,97,121,2,1,65,241,251,149,8,1,9,46,112,115,45,111,117,116,101,114,2,1,65,241,251,149,8,1,17,46,99,111,110,115,101,110,116,95,95,119,114,97,112,112,101,114,2,6,0,62,60,87,11,183,158,228,42,241,188,204,48,74,191,207,91,5,151,68,144,33,9,194,2,1,24,114,99,44,32,110,111,115,99,114,111,108,108,44,32,98,111,100,121,44,32,115,116,97,121,2,2,0,62,60,87,11,183,158,228,0,5,9,98,111,100,121,44,104,116,109,108,2,4,42,241,188,204,48,74,191,207,91,5,151,68,144,33,9,194,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,23,114,99,44,32,104,97,115,45,111,118,101,114,108,97,121,44,32,44,32,115,116,97,121,2,1,95,147,58,113,0,5,4,98,111,100,121,2,1,95,147,58,113,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,102,108,101,120,95,99,111,111,107,105,101,95,112,111,112,117,112,2,1,20,76,29,98,0,5,9,98,111,100,121,44,104,116,109,108,2,1,20,76,29,98,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,64,46,109,111,100,97,108,45,98,111,120,45,45,109,101,100,105,117,109,46,109,111,100,97,108,45,98,111,120,91,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,109,111,100,97,108,45,98,111,120,45,104,101,97,100,101,114,34,93,2,3,62,187,220,106,89,83,179,97,172,202,66,143,0,5,9,98,111,100,121,44,104,116,109,108,2,3,62,187,220,106,89,83,179,97,172,202,66,143,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,111,107,105,101,67,111,110,102,105,103,2,2,32,123,109,121,116,30,104,236,0,5,9,98,111,100,121,44,104,116,109,108,2,2,32,123,109,121,116,30,104,236,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,100,97,114,107,101,110,45,108,97,121,101,114,2,58,9,43,182,179,12,9,217,226,20,73,67,254,21,238,147,86,22,113,243,211,27,20,137,186,35,53,14,90,39,122,108,167,42,136,68,216,50,57,178,72,50,207,4,77,55,72,109,104,56,110,157,111,66,233,166,26,70,13,180,44,70,236,113,224,79,203,236,32,82,109,166,163,85,253,150,38,86,126,80,242,102,108,249,39,107,150,27,154,120,148,111,132,120,199,61,247,123,1,130,148,127,94,9,128,127,202,203,49,139,159,84,193,140,123,105,124,142,22,0,196,148,156,18,103,151,143,182,189,152,214,27,234,161,154,221,148,162,196,238,80,169,231,104,217,169,239,205,8,174,189,109,18,174,192,229,153,178,16,208,132,184,221,183,215,191,196,81,97,192,217,35,208,195,228,110,64,199,199,252,5,203,184,195,1,212,201,146,147,214,193,14,183,215,228,155,255,216,178,50,172,222,192,207,241,230,202,176,172,232,75,34,157,234,122,1,148,242,231,101,11,247,105,211,145,248,238,125,141,255,5,10,145,2,1,40,114,99,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,105,115,45,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,58,9,43,182,179,12,9,217,226,20,73,67,254,21,238,147,86,22,113,243,211,27,20,137,186,35,53,14,90,39,122,108,167,42,136,68,216,50,57,178,72,50,207,4,77,55,72,109,104,56,110,157,111,66,233,166,26,70,13,180,44,70,236,113,224,79,203,236,32,82,109,166,163,85,253,150,38,86,126,80,242,102,108,249,39,107,150,27,154,120,148,111,132,120,199,61,247,123,1,130,148,127,94,9,128,127,202,203,49,139,159,84,193,140,123,105,124,142,22,0,196,148,156,18,103,151,143,182,189,152,214,27,234,161,154,221,148,162,196,238,80,169,231,104,217,169,239,205,8,174,189,109,18,174,192,229,153,178,16,208,132,184,221,183,215,191,196,81,97,192,217,35,208,195,228,110,64,199,199,252,5,203,184,195,1,212,201,146,147,214,193,14,183,215,228,155,255,216,178,50,172,222,192,207,241,230,202,176,172,232,75,34,157,234,122,1,148,242,231,101,11,247,105,211,145,248,238,125,141,255,5,10,145,2,1,25,114,99,44,32,110,111,45,115,99,114,111,108,108,44,32,98,111,100,121,44,32,115,116,97,121,2,58,9,43,182,179,12,9,217,226,20,73,67,254,21,238,147,86,22,113,243,211,27,20,137,186,35,53,14,90,39,122,108,167,42,136,68,216,50,57,178,72,50,207,4,77,55,72,109,104,56,110,157,111,66,233,166,26,70,13,180,44,70,236,113,224,79,203,236,32,82,109,166,163,85,253,150,38,86,126,80,242,102,108,249,39,107,150,27,154,120,148,111,132,120,199,61,247,123,1,130,148,127,94,9,128,127,202,203,49,139,159,84,193,140,123,105,124,142,22,0,196,148,156,18,103,151,143,182,189,152,214,27,234,161,154,221,148,162,196,238,80,169,231,104,217,169,239,205,8,174,189,109,18,174,192,229,153,178,16,208,132,184,221,183,215,191,196,81,97,192,217,35,208,195,228,110,64,199,199,252,5,203,184,195,1,212,201,146,147,214,193,14,183,215,228,155,255,216,178,50,172,222,192,207,241,230,202,176,172,232,75,34,157,234,122,1,148,242,231,101,11,247,105,211,145,248,238,125,141,255,5,10,145,8,1,15,46,84,114,97,109,105,110,111,67,111,110,115,101,110,116,2,31,1,184,207,24,27,192,163,216,28,108,79,49,76,161,244,132,94,42,40,240,98,197,62,241,103,7,12,46,117,76,117,131,122,218,243,166,135,184,23,4,136,118,246,175,157,10,152,118,172,8,136,206,182,43,105,190,187,140,43,75,190,86,169,113,193,15,91,132,194,208,23,24,197,197,83,58,198,70,169,19,201,72,16,97,201,144,202,249,211,43,11,108,214,76,186,101,215,37,245,110,216,152,111,212,221,78,159,215,228,99,238,212,230,236,65,6,231,109,233,174,243,209,225,119,0,5,9,98,111,100,121,44,104,116,109,108,2,31,1,184,207,24,27,192,163,216,28,108,79,49,76,161,244,132,94,42,40,240,98,197,62,241,103,7,12,46,117,76,117,131,122,218,243,166,135,184,23,4,136,118,246,175,157,10,152,118,172,8,136,206,182,43,105,190,187,140,43,75,190,86,169,113,193,15,91,132,194,208,23,24,197,197,83,58,198,70,169,19,201,72,16,97,201,144,202,249,211,43,11,108,214,76,186,101,215,37,245,110,216,152,111,212,221,78,159,215,228,99,238,212,230,236,65,6,231,109,233,174,243,209,225,119,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,4,5,24,96,196,31,112,6,71,101,69,7,241,232,72,63,111,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,111,118,101,114,108,97,121,2,1,140,185,4,154,8,1,11,46,99,99,45,45,98,97,110,110,101,114,2,1,140,185,4,154,0,5,9,98,111,100,121,44,104,116,109,108,2,1,140,185,4,154,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,109,121,77,111,100,97,108,67,111,111,107,105,101,67,111,110,115,101,110,116,2,4,72,29,110,81,159,86,18,29,170,36,189,219,204,15,11,210,0,5,4,98,111,100,121,2,4,72,29,110,81,159,86,18,29,170,36,189,219,204,15,11,210,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,118,45,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,2,170,23,197,172,221,203,68,242,0,5,9,98,111,100,121,44,104,116,109,108,2,2,170,23,197,172,221,203,68,242,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,26,46,118,45,45,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,45,99,108,105,99,107,2,1,44,143,175,247,8,1,17,46,118,45,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,44,143,175,247,0,5,9,98,111,100,121,44,104,116,109,108,2,1,44,143,175,247,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,5,35,76,71,80,68,2,1,42,74,147,137,0,5,9,98,111,100,121,44,104,116,109,108,2,1,42,74,147,137,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,1,21,178,25,59,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,21,178,25,59,8,1,15,46,119,112,114,45,112,111,112,117,112,45,111,112,101,110,2,1,83,215,70,176,8,1,28,46,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,2,1,229,117,160,10,8,1,33,46,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,45,105,110,102,111,2,1,229,117,160,10,0,5,9,98,111,100,121,44,104,116,109,108,2,1,229,117,160,10,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,99,111,111,107,105,101,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,54,159,164,123,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,54,159,164,123,0,5,9,98,111,100,121,44,104,116,109,108,2,1,54,159,164,123,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,116,120,45,112,112,119,45,99,111,111,107,105,101,2,1,27,115,44,223,0,5,9,98,111,100,121,44,104,116,109,108,2,1,27,115,44,223,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,5,46,102,97,100,101,2,1,223,214,169,182,0,5,9,98,111,100,121,44,104,116,109,108,2,1,223,214,169,182,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,111,107,105,101,45,97,108,101,114,116,2,2,6,185,232,0,166,25,43,207,0,5,9,98,111,100,121,44,104,116,109,108,2,2,6,185,232,0,166,25,43,207,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,104,111,108,100,101,114,2,1,134,237,197,108,0,5,4,98,111,100,121,2,1,134,237,197,108,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,3,46,99,98,2,2,38,157,65,240,232,51,172,237,0,5,9,98,111,100,121,44,104,116,109,108,2,2,38,157,65,240,232,51,172,237,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,22,35,99,109,112,116,95,99,117,115,116,111,109,101,114,45,45,99,111,111,107,105,101,2,5,2,78,192,56,65,34,185,182,176,187,37,108,184,52,218,216,243,190,144,245,0,5,9,98,111,100,121,44,104,116,109,108,2,5,2,78,192,56,65,34,185,182,176,187,37,108,184,52,218,216,243,190,144,245,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,99,45,97,112,112,45,111,118,101,114,108,97,121,2,1,192,224,97,139,0,5,9,98,111,100,121,44,104,116,109,108,2,1,192,224,97,139,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,29,46,116,113,99,45,109,111,100,97,108,95,95,99,111,110,116,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,153,186,68,252,8,1,9,46,116,113,99,45,102,97,100,101,2,1,153,186,68,252,0,5,4,98,111,100,121,2,1,153,186,68,252,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,11,35,104,117,115,115,45,109,111,100,97,108,2,1,162,167,125,206,0,5,9,98,111,100,121,44,104,116,109,108,2,1,162,167,125,206,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,24,46,109,101,115,115,97,103,101,45,111,118,101,114,108,97,121,45,45,99,111,111,107,105,101,2,1,161,237,156,95,0,5,9,98,111,100,121,44,104,116,109,108,2,1,161,237,156,95,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,7,46,100,105,109,109,101,100,2,1,194,197,250,155,0,5,4,98,111,100,121,2,1,194,197,250,155,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,102,111,99,117,115,45,99,111,111,107,105,101,98,97,114,97,2,3,34,64,203,213,71,185,14,234,234,20,11,212,0,5,4,98,111,100,121,2,3,34,64,203,213,71,185,14,234,234,20,11,212,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,109,111,100,97,108,87,114,97,112,112,101,114,2,1,27,125,40,215,8,1,11,46,99,115,115,45,56,110,100,111,119,108,2,1,27,125,40,215,0,5,4,104,116,109,108,2,1,27,125,40,215,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,22,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,103,101,110,101,114,97,108,2,1,224,67,76,67,8,1,10,46,100,105,97,108,111,103,45,98,103,2,1,224,67,76,67,0,5,9,98,111,100,121,44,104,116,109,108,2,1,224,67,76,67,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,10,35,100,97,114,107,45,102,97,100,101,2,1,126,77,220,111,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,77,220,111,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,1,18,104,121,108,111,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,17,235,148,167,8,1,21,46,98,97,99,107,100,114,111,112,45,110,111,45,116,97,112,112,97,98,108,101,2,1,17,235,148,167,8,1,27,46,104,121,108,111,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,103,101,110,101,114,97,108,2,1,17,235,148,167,0,5,9,98,111,100,121,44,104,116,109,108,2,1,17,235,148,167,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,32,114,99,44,32,99,111,111,107,105,101,115,103,100,112,114,95,95,115,99,114,111,108,108,44,32,32,44,32,115,116,97,121,2,6,5,197,165,85,34,211,62,43,67,93,99,157,96,237,180,222,143,128,9,200,196,70,174,126,2,1,14,110,111,115,105,105,102,44,32,115,99,114,111,108,108,2,6,5,197,165,85,34,211,62,43,67,93,99,157,96,237,180,222,143,128,9,200,196,70,174,126,8,1,12,46,99,111,111,107,105,101,115,103,100,112,114,2,6,5,197,165,85,34,211,62,43,67,93,99,157,96,237,180,222,143,128,9,200,196,70,174,126,8,1,16,46,98,108,111,99,107,101,114,45,99,111,111,107,105,101,115,2,23,7,116,72,62,23,162,244,45,28,15,54,129,48,214,222,78,53,180,19,206,59,71,225,90,78,25,67,164,94,135,247,154,119,150,127,67,134,153,55,20,134,153,106,35,144,214,231,25,158,54,131,214,170,138,119,91,192,13,193,19,200,224,51,58,201,139,42,63,204,148,33,68,213,104,123,108,221,15,211,147,224,17,231,140,236,132,156,19,254,6,81,64,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,20,3,243,10,17,25,28,97,8,46,95,71,197,49,5,114,20,53,23,17,196,54,24,25,145,75,253,74,87,85,247,191,117,99,60,18,96,105,224,154,29,116,32,204,54,129,112,92,185,144,43,238,73,163,201,134,45,201,5,199,237,205,164,252,155,208,17,250,125,223,119,96,155,226,153,148,220,238,205,238,92,0,5,9,98,111,100,121,44,104,116,109,108,2,36,3,243,10,17,7,116,72,62,23,162,244,45,25,28,97,8,28,15,54,129,46,95,71,197,48,214,222,78,49,5,114,20,49,5,114,20,53,23,17,196,59,71,225,90,75,253,74,87,78,25,67,164,94,135,247,154,99,60,18,96,116,32,204,54,119,150,127,67,134,153,55,20,134,153,106,35,144,214,231,25,163,201,134,45,170,138,119,91,192,13,193,19,200,224,51,58,201,5,199,237,201,139,42,63,204,148,33,68,205,164,252,155,213,104,123,108,221,15,211,147,223,119,96,155,224,17,231,140,226,153,148,220,236,132,156,19,238,205,238,92,254,6,81,64,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,19,35,99,111,111,107,105,101,45,109,111,100,97,108,45,49,50,51,52,53,2,1,247,186,230,73,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,247,186,230,73,0,5,9,98,111,100,121,44,104,116,109,108,2,1,247,186,230,73,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,4,104,116,109,108,2,1,53,180,19,206,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,4,104,116,109,108,2,2,3,16,85,190,182,205,134,68,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,113,99,45,99,109,112,50,45,99,111,110,116,97,105,110,101,114,2,1,243,130,165,217,0,5,9,98,111,100,121,44,104,116,109,108,2,1,243,130,165,217,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,100,105,115,99,108,97,105,109,101,114,45,98,97,114,2,1,125,165,39,198,0,5,9,98,111,100,121,44,104,116,109,108,2,1,125,165,39,198,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,99,111,110,115,101,110,116,45,98,111,120,95,95,119,114,97,112,112,101,114,2,1,62,48,110,219,0,5,9,98,111,100,121,44,104,116,109,108,2,1,62,48,110,219,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,66,4,219,34,74,9,92,171,247,19,60,160,247,22,146,101,45,32,250,253,132,35,106,159,233,36,90,214,151,36,108,13,140,39,51,134,60,42,148,118,122,49,19,107,198,73,56,55,127,74,179,66,252,75,136,180,73,77,134,61,12,79,175,75,15,92,134,75,249,100,33,98,65,100,33,98,65,100,80,135,123,105,7,231,2,118,76,105,19,126,151,162,70,128,69,231,143,130,87,76,74,130,87,76,113,130,87,76,151,133,112,134,57,133,151,137,170,134,92,55,106,142,220,63,237,146,126,26,192,149,91,163,205,149,232,119,11,153,188,236,251,167,115,65,35,170,128,6,26,171,50,194,9,171,72,194,69,177,153,87,101,177,162,215,4,178,40,191,3,178,133,109,18,178,183,89,102,179,112,130,121,179,112,130,121,181,252,116,27,184,68,99,177,184,91,81,38,185,216,34,112,187,35,157,197,191,162,158,6,195,144,48,87,196,93,194,245,198,239,50,63,204,229,221,161,213,28,73,59,214,158,9,215,220,226,201,6,221,110,115,119,222,207,166,167,236,231,202,238,243,93,243,168,250,230,99,53,252,75,23,64,253,151,245,92,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,115,118,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,74,3,46,166,137,5,62,216,102,8,120,182,131,8,210,194,135,9,90,203,12,11,31,228,217,19,91,82,183,27,243,13,186,29,255,153,67,30,184,0,206,31,29,38,148,33,126,132,148,35,43,210,1,35,231,188,159,38,117,150,110,41,250,186,253,44,121,13,244,46,10,213,252,48,131,144,57,57,115,54,5,58,82,140,26,61,152,137,83,69,135,44,237,72,48,132,103,75,71,162,234,82,67,239,169,82,68,9,143,82,70,48,7,82,77,31,169,82,82,84,16,97,93,255,236,97,193,68,170,106,110,248,232,107,197,57,17,119,40,94,248,119,40,122,128,123,138,184,67,139,217,148,61,140,20,187,43,141,226,16,78,142,142,91,150,156,41,27,57,159,83,223,130,159,209,142,218,161,13,136,133,161,19,84,13,167,234,190,48,173,106,168,4,173,133,180,103,178,115,46,15,181,195,28,21,188,122,202,6,203,117,49,138,207,20,219,216,210,158,133,166,211,89,42,82,220,141,40,156,224,163,148,49,228,57,156,81,228,122,80,148,228,133,106,95,229,37,199,60,229,50,121,225,229,210,93,144,230,80,116,154,231,182,122,91,234,237,233,178,234,237,235,35,234,237,235,56,237,8,174,234,244,17,43,134,244,98,173,191,248,189,147,154,254,157,23,86,8,1,27,46,101,110,118,45,109,111,100,97,108,45,100,105,97,108,111,103,95,95,98,97,99,107,100,114,111,112,2,74,3,46,166,137,5,62,216,102,8,120,182,131,8,210,194,135,9,90,203,12,11,31,228,217,19,91,82,183,27,243,13,186,29,255,153,67,30,184,0,206,31,29,38,148,33,126,132,148,35,43,210,1,35,231,188,159,38,117,150,110,41,250,186,253,44,121,13,244,46,10,213,252,48,131,144,57,57,115,54,5,58,82,140,26,61,152,137,83,69,135,44,237,72,48,132,103,75,71,162,234,82,67,239,169,82,68,9,143,82,70,48,7,82,77,31,169,82,82,84,16,97,93,255,236,97,193,68,170,106,110,248,232,107,197,57,17,119,40,94,248,119,40,122,128,123,138,184,67,139,217,148,61,140,20,187,43,141,226,16,78,142,142,91,150,156,41,27,57,159,83,223,130,159,209,142,218,161,13,136,133,161,19,84,13,167,234,190,48,173,106,168,4,173,133,180,103,178,115,46,15,181,195,28,21,188,122,202,6,203,117,49,138,207,20,219,216,210,158,133,166,211,89,42,82,220,141,40,156,224,163,148,49,228,57,156,81,228,122,80,148,228,133,106,95,229,37,199,60,229,50,121,225,229,210,93,144,230,80,116,154,231,182,122,91,234,237,233,178,234,237,235,35,234,237,235,56,237,8,174,234,244,17,43,134,244,98,173,191,248,189,147,154,254,157,23,86,0,5,9,98,111,100,121,44,104,116,109,108,2,73,3,46,166,137,5,62,216,102,8,120,182,131,8,210,194,135,9,90,203,12,11,31,228,217,19,91,82,183,27,243,13,186,29,255,153,67,30,184,0,206,31,29,38,148,33,126,132,148,35,43,210,1,35,231,188,159,38,117,150,110,41,250,186,253,44,121,13,244,46,10,213,252,48,131,144,57,57,115,54,5,58,82,140,26,61,152,137,83,69,135,44,237,72,48,132,103,75,71,162,234,82,67,239,169,82,68,9,143,82,70,48,7,82,77,31,169,82,82,84,16,97,93,255,236,97,193,68,170,106,110,248,232,107,197,57,17,119,40,94,248,119,40,122,128,123,138,184,67,139,217,148,61,140,20,187,43,141,226,16,78,142,142,91,150,156,41,27,57,159,83,223,130,159,209,142,218,161,13,136,133,161,19,84,13,167,234,190,48,173,106,168,4,173,133,180,103,181,195,28,21,188,122,202,6,203,117,49,138,207,20,219,216,210,158,133,166,211,89,42,82,220,141,40,156,224,163,148,49,228,57,156,81,228,122,80,148,228,133,106,95,229,37,199,60,229,50,121,225,229,210,93,144,230,80,116,154,231,182,122,91,234,237,233,178,234,237,235,35,234,237,235,56,237,8,174,234,244,17,43,134,244,98,173,191,248,189,147,154,254,157,23,86,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,102,97,110,99,121,98,111,120,95,95,99,111,110,116,97,105,110,101,114,2,1,114,31,132,134,0,5,9,98,111,100,121,44,104,116,109,108,2,1,114,31,132,134,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,111,111,107,105,101,115,112,108,117,115,45,109,111,100,97,108,2,5,5,12,105,26,94,99,64,10,104,92,150,248,225,77,46,82,234,193,95,115,8,1,17,46,102,97,110,99,121,98,111,120,45,111,118,101,114,108,97,121,2,5,5,12,105,26,94,99,64,10,104,92,150,248,225,77,46,82,234,193,95,115,0,5,9,98,111,100,121,44,104,116,109,108,2,5,5,12,105,26,94,99,64,10,104,92,150,248,225,77,46,82,234,193,95,115,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,111,111,107,105,101,115,112,108,117,115,45,109,111,100,97,108,2,19,0,227,196,52,6,23,203,189,6,198,4,47,19,37,36,44,32,141,119,53,45,75,248,243,47,130,221,244,61,178,65,53,62,202,168,35,75,118,223,156,80,15,137,94,142,141,159,208,151,153,52,79,165,200,178,124,204,174,183,58,207,93,101,110,209,37,233,239,216,120,203,149,246,157,178,128,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,19,0,227,196,52,6,23,203,189,6,198,4,47,19,37,36,44,32,141,119,53,45,75,248,243,47,130,221,244,61,178,65,53,62,202,168,35,75,118,223,156,80,15,137,94,142,141,159,208,151,153,52,79,165,200,178,124,204,174,183,58,207,93,101,110,209,37,233,239,216,120,203,149,246,157,178,128,0,5,9,98,111,100,121,44,104,116,109,108,2,19,0,227,196,52,6,23,203,189,6,198,4,47,19,37,36,44,32,141,119,53,45,75,248,243,47,130,221,244,61,178,65,53,62,202,168,35,75,118,223,156,80,15,137,94,142,141,159,208,151,153,52,79,165,200,178,124,204,174,183,58,207,93,101,110,209,37,233,239,216,120,203,149,246,157,178,128,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,103,100,112,114,45,109,111,100,97,108,2,2,124,239,119,62,127,95,44,35,0,5,9,98,111,100,121,44,104,116,109,108,2,2,124,239,119,62,127,95,44,35,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,105,117,98,101,110,100,97,45,99,115,45,118,105,115,105,98,108,101,2,3,11,245,67,166,48,195,88,102,199,189,88,119,0,5,9,98,111,100,121,44,104,116,109,108,2,3,11,245,67,166,48,195,88,102,199,189,88,119,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,118,102,109,45,45,105,110,115,101,116,2,2,19,235,180,151,148,232,94,122,0,5,9,98,111,100,121,44,104,116,109,108,2,2,19,235,180,151,148,232,94,122,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,1,136,32,82,248,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,136,32,82,248,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,55,19,172,164,16,1,12,35,99,111,111,107,105,101,77,111,100,97,108,2,1,55,19,172,164,0,5,9,98,111,100,121,44,104,116,109,108,2,1,55,19,172,164,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,97,112,112,45,99,109,112,2,1,208,45,12,39,0,5,4,98,111,100,121,2,1,208,45,12,39,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,1,167,37,150,248,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,25,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,115,45,119,114,97,112,112,101,114,2,1,10,131,177,35,8,1,17,46,102,97,110,99,121,98,111,120,45,111,118,101,114,108,97,121,2,1,10,131,177,35,0,5,9,98,111,100,121,44,104,116,109,108,2,1,10,131,177,35,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,25,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,13,136,186,217,8,1,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,118,101,114,2,1,13,136,186,217,0,5,9,98,111,100,121,44,104,116,109,108,2,1,13,136,186,217,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,25,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,196,69,0,253,0,5,9,98,111,100,121,44,104,116,109,108,2,1,196,69,0,253,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,233,108,69,137,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,233,108,69,137,0,5,9,98,111,100,121,44,104,116,109,108,2,1,233,108,69,137,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,34,46,106,115,45,102,111,111,116,101,114,45,97,100,118,97,110,99,101,100,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,2,1,24,83,255,102,0,5,4,98,111,100,121,2,1,24,83,255,102,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,1,37,100,105,118,91,105,100,94,61,34,67,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,45,114,101,97,99,116,45,34,93,2,1,122,171,1,91,16,1,27,35,110,101,117,115,116,97,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,109,111,100,97,108,2,3,7,248,34,209,8,129,165,37,19,131,81,165,16,1,8,35,111,118,101,114,108,97,121,2,3,7,248,34,209,8,129,165,37,19,131,81,165,8,1,11,46,114,99,98,45,98,97,110,110,101,114,2,1,69,68,208,138,0,5,9,98,111,100,121,44,104,116,109,108,2,1,69,68,208,138,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,111,97,120,95,109,111,100,97,108,95,99,111,110,116,97,105,110,101,114,2,1,212,111,121,12,8,1,13,46,111,97,120,95,109,111,100,97,108,95,98,103,2,1,212,111,121,12,8,1,25,46,111,97,120,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,111,100,97,108,2,1,212,111,121,12,0,5,9,98,111,100,121,44,104,116,109,108,2,1,212,111,121,12,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,98,115,45,100,105,97,108,111,103,45,111,118,101,114,108,97,121,2,1,93,228,253,95,8,1,24,46,67,111,111,107,105,101,115,67,111,110,102,105,114,109,97,116,105,111,110,86,105,101,119,2,1,93,228,253,95,0,5,9,98,111,100,121,44,104,116,109,108,2,1,93,228,253,95,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,112,114,45,99,111,111,107,105,101,109,111,100,97,108,2,1,126,159,210,220,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,159,210,220,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,114,103,112,100,45,111,118,101,114,108,97,121,2,1,25,217,149,225,16,1,11,35,114,103,112,100,45,112,111,112,105,110,2,1,25,217,149,225,0,5,9,98,111,100,121,44,104,116,109,108,2,1,25,217,149,225,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,27,98,97,104,102,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,100,112,108,51,2,1,226,106,183,120,0,1,22,98,97,104,102,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,2,1,226,106,183,120,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,226,106,183,120,16,1,10,35,109,111,100,97,108,45,99,109,112,2,1,6,223,73,191,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,6,223,73,191,0,5,9,98,111,100,121,44,104,116,109,108,2,1,6,223,73,191,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,20,35,99,111,110,116,97,105,110,101,114,45,114,103,112,100,45,102,111,110,100,2,1,244,6,102,143,16,1,15,35,99,111,110,116,97,105,110,101,114,45,114,103,112,100,2,1,244,6,102,143,0,5,9,98,111,100,121,44,104,116,109,108,2,1,244,6,102,143,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,14,35,122,97,95,114,103,112,100,95,109,111,100,97,108,2,1,68,61,181,45,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,68,61,181,45,0,5,9,98,111,100,121,44,104,116,109,108,2,1,68,61,181,45,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,114,103,112,100,45,111,118,101,114,108,97,121,2,1,120,105,183,156,16,1,11,35,114,103,112,100,45,112,111,112,105,110,2,1,120,105,183,156,0,5,9,98,111,100,121,44,104,116,109,108,2,1,120,105,183,156,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,99,111,110,102,105,114,109,45,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,2,1,149,173,189,124,0,5,9,98,111,100,121,44,104,116,109,108,2,1,149,173,189,124,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,111,118,101,114,108,97,121,45,98,108,111,99,107,2,2,33,145,79,97,130,65,130,92,16,1,17,35,109,111,100,97,108,68,97,116,97,67,111,110,115,101,110,116,2,1,177,4,232,167,0,5,9,98,111,100,121,44,104,116,109,108,2,1,177,4,232,167,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,4,98,111,100,121,2,1,146,58,53,116,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,4,98,111,100,121,2,1,74,45,49,210,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,44,46,118,116,101,120,45,109,111,100,97,108,45,108,97,121,111,117,116,45,48,45,120,45,109,111,100,97,108,45,45,99,111,111,107,105,101,115,45,108,97,121,111,117,116,2,1,247,109,5,126,0,5,9,98,111,100,121,44,104,116,109,108,2,1,247,109,5,126,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,110,101,108,105,111,45,99,111,111,107,105,101,45,109,111,100,97,108,2,1,98,252,49,250,0,5,9,98,111,100,121,44,104,116,109,108,2,1,98,252,49,250,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,4,98,111,100,121,2,1,76,201,162,75,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,99,119,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,4,9,215,109,167,97,210,216,151,118,208,117,4,201,158,199,26,0,5,4,98,111,100,121,2,4,9,215,109,167,97,210,216,151,118,208,117,4,201,158,199,26,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,98,45,100,105,115,99,108,97,105,109,101,114,2,1,123,221,235,241,0,5,9,98,111,100,121,44,104,116,109,108,2,1,123,221,235,241,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,109,111,100,97,108,45,112,111,112,117,112,2,1,227,21,94,174,2,1,22,114,99,44,32,109,111,100,97,108,45,115,104,111,119,44,32,44,32,115,116,97,121,2,1,227,21,94,174,8,1,17,46,101,110,118,45,109,111,100,97,108,45,100,105,97,108,111,103,2,3,4,245,219,175,17,164,5,76,110,99,229,224,8,1,27,46,101,110,118,45,109,111,100,97,108,45,100,105,97,108,111,103,95,95,98,97,99,107,100,114,111,112,2,3,4,245,219,175,17,164,5,76,110,99,229,224,0,5,4,98,111,100,121,2,3,4,245,219,175,17,164,5,76,110,99,229,224,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,9,58,215,114,34,139,185,19,6,162,170,132,128,163,66,73,242,178,75,10,176,186,128,108,155,199,85,110,85,217,225,75,86,236,47,25,110,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,16,35,100,105,115,99,108,97,105,109,101,114,77,111,100,97,108,2,1,236,226,84,237,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,236,226,84,237,0,5,4,98,111,100,121,2,1,236,226,84,237,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,111,118,101,114,108,97,121,2,1,227,133,140,31,8,1,6,46,109,111,100,97,108,2,1,227,133,140,31,0,5,9,104,116,109,108,44,98,111,100,121,2,1,227,133,140,31,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,2,1,163,119,248,59,0,5,4,98,111,100,121,2,1,163,119,248,59,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,97,102,98,45,67,111,111,107,105,101,115,68,97,114,107,2,1,153,50,30,110,0,5,4,98,111,100,121,2,1,153,50,30,110,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,117,105,45,119,105,100,103,101,116,45,111,118,101,114,108,97,121,2,1,238,107,183,201,16,1,7,35,106,117,119,67,77,80,2,1,44,158,59,4,0,5,9,98,111,100,121,44,104,116,109,108,2,1,44,158,59,4,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,14,46,103,99,45,77,111,100,97,108,45,98,111,100,121,2,1,154,3,177,202,8,1,17,46,103,99,45,77,111,100,97,108,45,111,118,101,114,108,97,121,2,1,154,3,177,202,0,5,9,98,111,100,121,44,104,116,109,108,2,1,154,3,177,202,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,19,46,99,99,45,119,105,110,100,111,119,45,98,97,99,107,100,114,111,112,2,1,251,16,209,158,8,1,10,46,99,99,45,119,105,110,100,111,119,2,1,251,16,209,158,0,5,9,98,111,100,121,44,104,116,109,108,2,1,251,16,209,158,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,1,25,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,58,171,117,121,16,1,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,58,171,117,121,0,5,9,98,111,100,121,44,104,116,109,108,2,1,58,171,117,121,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,8,35,99,111,110,115,101,110,116,2,3,16,6,127,34,83,74,51,11,209,189,210,65,16,1,19,35,100,105,118,67,111,111,107,105,101,77,97,115,107,76,97,121,101,114,2,1,114,236,17,98,0,5,4,98,111,100,121,2,1,114,236,17,98,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,9,35,99,99,100,45,114,111,111,116,2,1,53,130,254,43,0,5,9,98,111,100,121,44,104,116,109,108,2,1,53,130,254,43,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,9,46,117,112,45,109,111,100,97,108,2,1,102,222,223,31,0,5,9,98,111,100,121,44,104,116,109,108,2,1,102,222,223,31,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,2,1,229,206,130,127,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,229,206,130,127,0,5,9,98,111,100,121,44,104,116,109,108,2,1,229,206,130,127,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,18,117,118,101,120,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,36,21,77,217,234,38,60,49,122,43,151,247,228,47,37,151,167,54,211,199,196,67,83,51,157,67,225,57,167,81,92,83,203,86,137,123,66,89,145,204,148,90,36,177,92,91,219,145,108,94,186,125,103,94,225,190,74,110,198,227,192,116,88,255,163,122,94,117,157,140,52,208,87,143,12,197,182,146,138,95,27,146,219,66,112,149,39,129,61,155,205,97,142,176,119,186,47,191,240,82,13,200,35,196,45,200,183,97,73,206,174,22,91,209,142,26,235,211,29,230,101,230,117,22,169,231,140,74,31,231,146,165,244,240,11,96,186,243,33,15,38,247,33,14,241,0,5,9,98,111,100,121,44,104,116,109,108,2,36,21,77,217,234,38,60,49,122,43,151,247,228,47,37,151,167,48,142,61,153,54,211,199,196,67,83,51,157,67,225,57,167,81,92,83,203,86,137,123,66,89,145,204,148,90,36,177,92,91,219,145,108,94,186,125,103,94,225,190,74,110,198,227,192,116,88,255,163,122,94,117,157,140,52,208,87,143,12,197,182,146,138,95,27,146,219,66,112,149,39,129,61,155,205,97,142,176,119,186,47,191,240,82,13,200,35,196,45,200,183,97,73,206,174,22,91,209,142,26,235,211,29,230,101,230,117,22,169,231,140,74,31,231,146,165,244,240,11,96,186,243,33,15,38,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,24,35,99,111,111,107,105,101,45,98,108,97,99,107,111,117,116,45,99,117,114,116,97,105,110,2,3,65,148,168,225,89,240,120,220,157,97,23,76,8,1,18,46,99,99,45,119,105,110,100,111,119,45,119,114,97,112,112,101,114,2,3,169,14,175,7,172,57,104,183,209,162,210,199,16,1,17,35,112,97,110,100,101,99,116,101,115,45,98,97,110,110,101,114,2,3,169,14,175,7,172,57,104,183,209,162,210,199,0,5,9,98,111,100,121,44,104,116,109,108,2,3,169,14,175,7,172,57,104,183,209,162,210,199,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,17,35,112,97,110,100,101,99,116,101,115,45,98,97,110,110,101,114,2,1,140,114,243,182,0,5,9,98,111,100,121,44,104,116,109,108,2,1,140,114,243,182,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,23,35,109,105,109,101,67,111,110,115,101,110,116,67,111,111,107,105,101,77,111,100,97,108,2,2,59,191,218,127,175,106,220,14,0,5,9,98,111,100,121,44,104,116,109,108,2,2,59,191,218,127,175,106,220,14,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,11,35,71,68,80,82,45,109,111,100,97,108,2,1,123,234,85,60,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,123,234,85,60,0,5,9,98,111,100,121,44,104,116,109,108,2,1,123,234,85,60,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,22,35,99,111,111,107,105,101,104,105,110,119,101,105,115,95,111,118,101,114,108,97,121,2,1,77,44,1,200,8,1,19,46,103,108,111,98,97,108,45,115,105,116,101,45,110,111,116,105,99,101,2,1,27,158,76,222,0,5,1,42,2,1,27,158,76,222,51,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,1,42,2,1,96,248,23,125,51,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,16,46,115,119,97,108,50,45,99,111,110,116,97,105,110,101,114,2,1,195,37,233,73,0,5,9,98,111,100,121,44,104,116,109,108,2,1,195,37,233,73,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,20,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,111,100,97,108,2,1,127,239,109,212,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,127,239,109,212,0,5,9,98,111,100,121,44,104,116,109,108,2,1,127,239,109,212,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,16,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,2,2,95,80,217,233,126,167,161,129,2,1,16,114,99,44,32,103,100,112,114,44,32,44,32,115,116,97,121,2,45,3,134,232,110,5,104,248,247,10,82,211,171,13,248,31,224,28,24,107,125,28,168,218,77,29,65,129,21,39,148,181,200,47,98,182,240,60,5,173,126,64,190,217,253,71,31,247,22,76,40,242,143,78,60,251,20,89,247,245,168,94,114,168,94,94,238,221,231,96,106,214,37,99,15,35,106,109,9,61,215,119,170,171,203,126,88,235,145,126,135,6,8,126,157,106,25,127,41,209,254,131,112,227,99,138,125,227,243,144,28,97,52,145,220,1,228,149,137,133,250,178,49,141,41,184,83,28,246,192,1,195,228,197,216,88,217,200,165,204,249,202,77,52,219,207,23,134,110,215,64,87,52,224,136,137,0,227,119,199,42,231,134,150,7,234,224,100,16,239,22,19,36,241,120,206,157,242,234,222,124,8,1,27,46,99,111,111,107,105,101,77,111,100,97,108,67,111,109,112,111,110,101,110,116,45,109,111,100,97,108,2,1,243,24,0,242,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,243,24,0,242,0,5,9,98,111,100,121,44,104,116,109,108,2,1,243,24,0,242,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,112,104,103,95,99,111,111,107,105,101,115,95,109,111,100,97,108,2,1,6,28,163,121,8,1,15,46,114,101,118,101,97,108,45,111,118,101,114,108,97,121,2,1,6,28,163,121,0,5,9,98,111,100,121,44,104,116,109,108,2,1,6,28,163,121,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,56,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,116,101,114,109,115,45,97,110,100,45,112,111,108,105,99,121,45,97,99,99,101,112,116,101,100,44,32,121,101,115,2,1,75,151,54,38,2,1,48,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,67,111,111,107,105,101,66,97,110,110,101,114,83,104,111,119,110,44,32,121,101,115,2,1,75,151,54,38,16,1,15,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,204,218,76,242,0,5,9,98,111,100,121,44,104,116,109,108,2,1,204,218,76,242,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,109,111,100,97,97,108,45,105,110,108,105,110,101,2,9,8,251,219,65,16,137,210,144,36,139,31,140,93,91,253,122,93,248,163,150,190,49,70,178,190,187,56,127,226,111,180,178,231,139,27,49,8,1,15,46,109,111,100,97,97,108,45,111,118,101,114,108,97,121,2,9,8,251,219,65,16,137,210,144,36,139,31,140,93,91,253,122,93,248,163,150,190,49,70,178,190,187,56,127,226,111,180,178,231,139,27,49,0,5,9,98,111,100,121,44,104,116,109,108,2,9,8,251,219,65,16,137,210,144,36,139,31,140,93,91,253,122,93,248,163,150,190,49,70,178,190,187,56,127,226,111,180,178,231,139,27,49,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,7,46,105,86,121,104,122,80,2,1,99,93,163,157,8,1,7,46,107,101,122,81,98,89,2,1,99,93,163,157,0,5,9,98,111,100,121,44,104,116,109,108,2,1,99,93,163,157,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,26,46,112,116,99,104,114,45,103,100,112,114,99,111,111,107,105,101,99,111,110,116,97,105,110,101,114,2,1,31,198,235,139,2,1,38,114,101,109,111,118,101,45,99,108,97,115,115,44,32,99,111,111,107,105,101,111,112,101,110,101,100,44,32,98,111,100,121,44,32,115,116,97,121,2,1,31,198,235,139,16,1,11,35,99,111,111,107,105,101,119,97,108,108,2,1,63,3,236,44,0,5,9,98,111,100,121,44,104,116,109,108,2,1,63,3,236,44,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,15,35,98,108,117,114,66,97,99,107,103,114,111,117,110,100,2,1,148,186,37,30,0,5,9,98,111,100,121,44,104,116,109,108,2,1,148,186,37,30,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,111,108,105,99,121,95,97,103,114,101,101,109,101,110,116,44,32,51,2,7,7,134,217,198,67,246,232,46,132,6,239,238,134,173,166,127,193,57,233,251,196,104,10,100,218,52,180,90,8,1,34,46,112,111,112,111,118,101,114,45,45,108,97,121,111,117,116,45,102,105,120,101,100,45,98,111,116,116,111,109,83,104,101,101,116,2,7,7,134,217,198,67,246,232,46,132,6,239,238,134,173,166,127,193,57,233,251,196,104,10,100,218,52,180,90,8,1,28,46,122,73,110,100,101,120,45,45,109,111,100,97,108,46,112,111,112,111,118,101,114,45,99,111,118,101,114,2,7,7,134,217,198,67,246,232,46,132,6,239,238,134,173,166,127,193,57,233,251,196,104,10,100,218,52,180,90,0,5,4,98,111,100,121,2,7,7,134,217,198,67,246,232,46,132,6,239,238,134,173,166,127,193,57,233,251,196,104,10,100,218,52,180,90,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,31,35,105,110,102,111,95,99,105,110,101,99,97,95,109,111,100,97,108,95,99,111,111,107,105,101,95,112,111,112,117,112,2,1,54,72,173,45,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,54,72,173,45,0,5,4,104,116,109,108,2,1,54,72,173,45,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,25,46,109,101,116,114,111,45,110,101,119,115,108,101,116,116,101,114,45,111,118,101,114,108,97,121,2,1,81,54,39,160,0,5,9,98,111,100,121,44,104,116,109,108,2,1,81,54,39,160,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,43,114,101,109,111,118,101,45,99,108,97,115,115,44,32,99,111,111,107,105,101,119,97,108,108,45,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,1,36,224,72,195,0,5,9,98,111,100,121,44,104,116,109,108,2,1,36,224,72,195,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,3,139,108,214,106,195,11,152,123,243,90,45,80,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,98,97,114,45,111,118,101,114,108,97,121,2,1,173,77,107,151,8,1,12,46,99,98,97,114,45,109,111,100,97,108,49,2,1,173,77,107,151,0,5,9,98,111,100,121,44,104,116,109,108,2,1,173,77,107,151,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,87,36,125,51,2,1,42,114,101,109,111,118,101,45,99,108,97,115,115,44,32,105,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,44,32,98,111,100,121,44,32,115,116,97,121,2,1,87,36,125,51,8,1,14,46,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,231,9,101,129,0,5,9,98,111,100,121,44,104,116,109,108,2,1,231,9,101,129,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,99,111,110,115,101,110,116,99,111,110,116,97,105,110,101,114,2,1,102,98,8,133,16,1,16,35,99,111,111,107,105,101,119,97,108,108,109,111,100,97,108,2,1,190,147,221,145,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,190,147,221,145,0,5,9,98,111,100,121,44,104,116,109,108,2,1,190,147,221,145,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,30,3,223,39,160,5,130,108,147,5,197,125,252,34,211,101,130,51,53,69,28,56,101,98,89,64,251,113,53,71,67,171,76,77,20,155,194,77,92,223,185,80,236,223,85,97,73,242,202,100,198,22,63,115,230,254,36,116,44,114,174,118,40,238,132,129,198,118,143,139,98,235,201,148,188,68,126,158,104,79,238,178,81,79,44,179,194,134,220,184,101,222,83,185,72,109,109,186,25,165,193,199,81,49,183,200,64,203,154,207,11,49,148,207,166,255,82,222,164,162,95,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,2,18,3,136,41,41,20,101,117,229,46,2,69,128,54,44,90,83,61,159,28,166,66,215,88,154,81,251,183,187,116,5,130,243,122,173,94,175,145,61,44,118,157,85,154,77,163,81,214,171,165,17,197,19,181,217,137,189,212,9,13,6,214,199,155,24,224,237,82,184,247,170,252,250,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,18,3,136,41,41,20,101,117,229,46,2,69,128,54,44,90,83,61,159,28,166,66,215,88,154,81,251,183,187,116,5,130,243,122,173,94,175,145,61,44,118,157,85,154,77,163,81,214,171,165,17,197,19,181,217,137,189,212,9,13,6,214,199,155,24,224,237,82,184,247,170,252,250,0,5,9,98,111,100,121,44,104,116,109,108,2,18,3,136,41,41,20,101,117,229,46,2,69,128,54,44,90,83,61,159,28,166,66,215,88,154,81,251,183,187,116,5,130,243,122,173,94,175,145,61,44,118,157,85,154,77,163,81,214,171,165,17,197,19,181,217,137,189,212,9,13,6,214,199,155,24,224,237,82,184,247,170,252,250,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,99,111,111,107,105,101,77,111,100,117,108,101,77,111,100,97,108,2,1,62,195,92,146,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,62,195,92,146,0,5,9,98,111,100,121,44,104,116,109,108,2,1,62,195,92,146,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,98,115,116,45,108,105,103,104,116,98,111,120,2,1,164,101,81,113,0,5,9,98,111,100,121,44,104,116,109,108,2,1,164,101,81,113,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,14,35,99,111,111,107,105,101,115,45,98,108,111,99,107,2,1,82,141,163,104,0,5,9,98,111,100,121,44,104,116,109,108,2,1,82,141,163,104,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,28,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,109,111,100,97,108,2,12,13,117,19,252,17,112,45,24,60,52,226,224,77,225,170,5,78,221,19,24,86,58,124,54,171,203,158,7,179,43,253,94,195,137,80,53,199,145,74,55,204,211,55,234,234,151,56,50,2,1,42,114,99,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,111,112,101,110,44,32,104,116,109,108,44,32,115,116,97,121,2,12,13,117,19,252,17,112,45,24,60,52,226,224,77,225,170,5,78,221,19,24,86,58,124,54,171,203,158,7,179,43,253,94,195,137,80,53,199,145,74,55,204,211,55,234,234,151,56,50,8,1,18,46,103,103,45,99,111,111,107,105,101,45,98,108,111,99,107,101,114,2,1,34,126,91,12,0,5,4,104,116,109,108,2,1,34,126,91,12,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,25,114,99,44,32,109,111,100,97,108,45,111,118,101,114,108,97,121,44,32,44,32,115,116,97,121,2,1,34,126,91,12,8,1,26,46,99,107,45,109,111,100,97,108,45,45,99,111,111,107,105,101,77,111,100,97,108,77,97,105,110,2,27,4,211,70,19,23,39,63,60,36,44,150,204,40,160,57,139,49,214,49,117,51,239,231,92,52,22,9,246,57,34,126,39,76,242,194,162,77,65,140,87,81,221,227,125,94,89,105,107,101,63,62,102,130,25,28,205,136,32,52,38,156,219,214,38,158,34,82,4,188,230,247,171,189,13,198,197,199,154,133,188,211,32,26,173,213,140,152,2,219,234,26,122,220,244,135,81,236,44,189,59,241,147,125,138,251,11,116,119,8,1,20,46,102,108,121,111,117,116,46,99,111,111,107,105,101,45,108,97,121,101,114,2,7,6,201,87,11,27,120,181,59,34,207,194,227,96,247,113,54,143,122,160,160,158,96,189,127,168,206,198,91,8,1,27,46,100,101,104,110,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,2,7,6,201,87,11,27,120,181,59,34,207,194,227,96,247,113,54,143,122,160,160,158,96,189,127,168,206,198,91,0,5,9,98,111,100,121,44,104,116,109,108,2,7,6,201,87,11,27,120,181,59,34,207,194,227,96,247,113,54,143,122,160,160,158,96,189,127,168,206,198,91,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,19,35,104,97,112,112,121,45,112,108,97,116,101,115,45,109,111,100,97,108,2,1,58,118,1,231,0,5,4,98,111,100,121,2,1,58,118,1,231,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,7,46,100,97,114,107,101,110,2,1,71,209,151,52,0,5,9,98,111,100,121,44,104,116,109,108,2,1,71,209,151,52,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,12,35,99,111,111,107,105,101,45,119,97,108,108,2,9,34,206,101,160,82,79,108,179,103,81,204,43,116,34,92,164,129,193,123,221,133,165,182,33,158,99,183,228,197,49,17,229,217,15,124,172,0,5,9,98,111,100,121,44,104,116,109,108,2,9,34,206,101,160,82,79,108,179,103,81,204,43,116,34,92,164,129,193,123,221,133,165,182,33,158,99,183,228,197,49,17,229,217,15,124,172,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,99,111,111,107,105,101,45,119,97,108,108,2,1,140,78,184,86,8,1,17,46,99,119,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,140,78,184,86,0,5,9,98,111,100,121,44,104,116,109,108,2,1,140,78,184,86,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,15,97,112,112,45,99,111,111,107,105,101,45,119,97,108,108,2,1,126,9,6,77,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,9,6,77,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,16,35,97,109,100,67,111,111,107,105,101,66,97,110,110,101,114,2,1,10,168,236,71,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,10,168,236,71,0,5,9,98,111,100,121,44,104,116,109,108,2,1,10,168,236,71,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,115,99,111,109,109,101,114,99,101,45,103,100,112,114,45,98,97,99,107,100,114,111,112,2,2,105,115,211,97,235,231,73,199,0,5,9,98,111,100,121,44,104,116,109,108,2,2,105,115,211,97,235,231,73,199,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,32,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,45,99,111,110,116,97,105,110,101,114,2,1,76,72,57,178,0,5,9,98,111,100,121,44,104,116,109,108,2,1,76,72,57,178,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,23,46,108,111,111,107,95,99,111,111,107,105,101,77,101,110,117,79,118,101,114,108,97,121,2,2,66,70,250,122,118,41,17,230,0,5,9,98,111,100,121,44,104,116,109,108,2,2,66,70,250,122,118,41,17,230,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,111,107,105,101,45,112,101,114,115,111,2,2,8,30,107,122,243,72,123,166,0,5,9,98,111,100,121,44,104,116,109,108,2,2,8,30,107,122,243,72,123,166,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,24,35,99,111,111,107,105,101,95,109,97,110,97,103,101,109,101,110,116,95,109,111,100,97,108,2,2,45,213,188,11,86,75,166,71,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,2,45,213,188,11,86,75,166,71,0,5,9,98,111,100,121,44,104,116,109,108,2,2,45,213,188,11,86,75,166,71,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,18,117,118,101,120,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,159,216,155,222,0,5,9,98,111,100,121,44,104,116,109,108,2,1,159,216,155,222,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,11,35,102,111,111,116,101,114,95,102,105,120,2,1,96,237,126,73,0,5,9,98,111,100,121,44,104,116,109,108,2,1,96,237,126,73,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,99,111,111,107,105,101,115,45,112,97,110,101,2,1,91,105,248,11,0,5,9,98,111,100,121,44,104,116,109,108,2,1,91,105,248,11,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,114,103,112,100,87,97,114,110,105,110,103,2,1,4,98,99,162,0,5,9,98,111,100,121,44,104,116,109,108,2,1,4,98,99,162,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,111,110,76,111,97,100,77,111,100,97,108,2,1,249,32,142,252,0,5,9,98,111,100,121,44,104,116,109,108,2,1,249,32,142,252,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,80,114,105,118,97,99,121,77,111,100,97,108,2,1,193,172,142,249,8,1,5,46,115,104,111,119,2,1,193,172,142,249,0,5,4,98,111,100,121,2,1,193,172,142,249,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,1,85,84,216,28,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,85,84,216,28,0,5,4,104,116,109,108,2,1,85,84,216,28,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,10,35,112,111,112,117,112,105,102,98,107,2,1,96,242,74,175,16,1,8,35,112,111,112,117,112,105,102,2,1,96,242,74,175,0,5,9,98,111,100,121,44,104,116,109,108,2,1,96,242,74,175,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,73,97,87,82,97,49,104,2,1,129,193,225,51,8,1,8,46,66,65,72,80,112,49,121,2,1,129,193,225,51,0,5,9,98,111,100,121,44,104,116,109,108,2,1,129,193,225,51,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,44,46,77,111,100,97,108,67,111,110,116,97,105,110,101,114,45,109,111,100,117,108,101,95,109,111,100,97,108,67,111,110,116,97,105,110,101,114,95,95,51,56,115,86,118,2,1,207,169,210,155,0,5,4,98,111,100,121,2,1,207,169,210,155,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,5,13,46,112,97,103,101,45,119,114,97,112,112,101,114,2,1,202,12,16,235,51,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,12,46,99,111,111,107,105,101,115,45,98,97,114,2,1,227,195,21,10,0,5,4,98,111,100,121,2,1,227,195,21,10,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,99,119,45,99,111,111,107,105,101,115,45,98,97,114,2,1,11,30,36,175,0,5,9,98,111,100,121,44,104,116,109,108,2,1,11,30,36,175,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,11,46,102,105,120,101,100,46,122,45,53,48,2,15,10,78,145,86,15,235,67,169,19,172,79,15,24,155,236,108,26,173,135,161,46,117,89,18,52,112,49,133,91,148,181,182,112,0,40,162,125,40,205,2,135,220,174,196,144,159,197,195,147,237,107,127,152,202,49,87,195,255,151,31,8,1,10,46,95,51,78,65,117,115,114,114,114,2,1,147,237,107,127,8,1,9,46,98,111,116,116,111,109,45,48,2,1,147,237,107,127,0,1,21,100,105,118,46,118,117,101,45,112,111,114,116,97,108,45,116,97,114,103,101,116,2,1,147,237,107,127,0,1,26,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,111,118,101,114,108,97,121,34,93,2,1,15,235,67,169,8,1,32,46,98,103,45,119,104,105,116,101,91,99,108,97,115,115,36,61,34,109,100,58,119,45,91,54,52,48,112,120,93,34,93,2,1,15,235,67,169,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,14,13,207,83,233,28,179,88,158,45,233,243,16,45,233,243,16,54,245,132,18,55,91,163,223,81,141,157,168,110,193,184,155,154,99,255,214,171,81,243,44,181,220,92,238,207,97,86,135,217,35,142,50,229,215,202,141,0,5,9,98,111,100,121,44,104,116,109,108,2,14,13,207,83,233,28,179,88,158,45,233,243,16,45,233,243,16,54,245,132,18,55,91,163,223,81,141,157,168,110,193,184,155,154,99,255,214,171,81,243,44,181,220,92,238,207,97,86,135,217,35,142,50,229,215,202,141,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,9,98,111,100,121,44,104,116,109,108,2,15,28,91,213,149,37,69,232,53,51,212,158,8,58,50,96,211,78,135,152,78,100,41,240,29,101,68,29,251,107,205,69,39,122,31,204,230,130,28,122,215,172,201,44,154,206,241,38,168,218,214,119,254,231,64,150,62,232,189,27,48,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,27,35,100,105,97,108,111,103,45,114,111,111,116,32,62,32,35,103,100,112,114,45,110,111,116,105,99,101,2,1,38,156,61,126,0,5,9,98,111,100,121,44,104,116,109,108,2,1,38,156,61,126,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,99,115,115,45,97,109,50,55,109,101,2,1,24,97,194,251,8,1,45,46,108,105,103,104,116,98,111,120,101,115,95,66,97,115,105,99,76,105,103,104,116,98,111,120,95,98,97,115,105,99,76,105,103,104,116,98,111,120,95,49,84,104,120,108,2,1,148,184,77,44,0,5,9,98,111,100,121,44,104,116,109,108,2,1,148,184,77,44,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,111,111,107,105,101,100,101,110,121,111,118,101,114,108,97,121,2,1,7,208,225,53,2,1,16,114,99,44,32,98,108,117,114,44,32,44,32,115,116,97,121,2,1,7,208,225,53,8,1,7,46,99,111,111,107,105,101,2,1,132,56,43,133,8,1,14,46,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,132,56,43,133,0,5,9,98,111,100,121,44,104,116,109,108,2,1,132,56,43,133,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,19,35,97,118,101,110,105,115,80,114,105,118,97,99,121,84,111,111,108,115,2,1,18,120,173,104,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,18,120,173,104,0,5,9,98,111,100,121,44,104,116,109,108,2,1,18,120,173,104,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,16,35,100,105,115,99,108,97,105,109,101,114,77,111,100,97,108,2,1,55,13,105,22,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,55,13,105,22,0,5,9,98,111,100,121,44,104,116,109,108,2,1,55,13,105,22,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,4,35,101,117,99,2,1,105,89,113,8,0,5,9,98,111,100,121,44,104,116,109,108,2,1,105,89,113,8,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,98,115,45,100,105,97,108,111,103,45,111,118,101,114,108,97,121,2,1,202,86,28,152,0,5,9,98,111,100,121,44,104,116,109,108,2,1,202,86,28,152,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,15,35,119,115,67,111,110,115,101,110,116,76,97,121,101,114,2,1,247,144,104,141,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,247,144,104,141,0,5,9,98,111,100,121,44,104,116,109,108,2,1,247,144,104,141,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,67,65,95,68,84,95,86,50,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,5,29,55,18,106,129,217,157,48,131,209,150,152,171,26,158,167,231,42,238,21,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,67,65,95,68,84,95,86,51,44,32,48,2,5,29,55,18,106,129,217,157,48,131,209,150,152,171,26,158,167,231,42,238,21,16,1,7,35,99,116,117,45,99,109,2,1,116,28,104,0,0,5,9,98,111,100,121,44,104,116,109,108,2,1,116,28,104,0,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,32,115,101,116,44,32,114,101,97,108,67,111,111,107,105,101,66,97,110,110,101,114,44,32,117,110,100,101,102,105,110,101,100,2,128,0,0,1,241,0,110,128,155,0,110,141,50,1,29,205,25,1,192,244,10,2,27,23,155,3,7,246,87,3,18,164,3,3,25,74,33,3,149,131,175,4,141,194,253,4,163,113,15,4,218,128,33,5,89,28,133,5,198,91,13,6,206,131,57,7,49,216,118,7,57,46,37,7,247,224,140,8,210,226,237,9,74,151,146,9,203,84,237,10,104,208,77,10,116,254,55,10,171,211,237,10,213,172,61,11,62,248,160,13,41,40,168,13,175,229,44,13,213,64,74,14,2,205,57,14,2,205,57,14,45,27,11,14,77,69,248,14,139,157,162,14,229,241,142,15,161,4,4,15,178,58,156,15,192,112,239,17,163,226,126,17,170,69,213,17,230,86,107,17,238,227,88,18,102,197,213,18,123,64,188,18,174,173,69,18,220,151,253,18,242,12,71,19,79,89,19,19,255,230,105,21,14,228,127,22,200,17,48,22,233,75,219,23,153,25,163,23,154,100,31,23,187,24,185,23,212,169,70,24,210,124,40,25,151,215,25,25,204,140,76,25,223,101,90,26,34,214,62,26,53,242,109,26,56,248,111,26,233,115,161,27,0,165,59,27,100,55,97,27,101,219,104,27,103,161,211,27,103,234,218,27,113,34,98,27,115,182,218,27,116,250,99,27,117,5,184,27,120,239,61,27,121,132,27,27,149,140,31,27,173,212,140,29,31,7,193,29,182,251,12,29,211,161,166,31,32,255,62,32,8,109,13,32,55,187,160,32,129,29,209,32,175,81,194,33,211,148,24,33,239,237,31,34,0,202,184,34,113,194,28,34,165,96,228,35,85,214,221,35,156,162,227,35,220,89,155,37,21,249,111,37,138,17,202,38,66,20,238,38,144,249,168,39,127,161,246,40,79,96,95,41,26,59,129,41,82,58,136,41,147,88,44,41,207,245,60,42,81,208,133,42,137,115,240,42,192,125,80,42,243,123,124,44,19,64,51,44,134,95,7,45,138,76,125,45,178,253,101,46,129,217,151,46,186,116,85,47,45,38,96,48,213,241,91,49,122,228,148,49,196,196,102,50,4,86,206,50,65,190,247,50,118,143,247,50,149,144,231,50,238,103,140,51,33,57,49,52,54,41,237,52,152,208,50,54,95,124,201,54,214,217,178,55,8,33,25,55,143,43,255,55,179,117,199,56,108,161,137,57,74,132,217,57,113,32,157,57,153,145,156,57,225,252,68,57,244,242,153,58,222,251,94,59,239,88,179,62,155,218,84,63,30,194,240,64,78,111,203,64,128,87,16,66,143,180,96,66,152,8,135,67,146,59,92,67,195,178,21,67,232,59,11,68,17,219,98,68,59,33,28,68,62,186,101,68,91,252,94,69,209,155,29,69,229,13,216,71,16,226,199,71,43,225,55,72,224,71,145,73,34,149,56,74,174,119,126,74,200,194,157,76,128,40,45,77,59,1,41,78,59,201,196,78,209,102,7,78,209,110,162,80,46,2,90,80,88,72,223,81,31,55,76,81,124,228,199,81,160,219,37,82,20,91,87,82,61,138,168,82,181,139,132,82,211,7,221,83,23,67,172,83,174,30,179,83,188,65,162,83,227,224,124,84,75,93,211,84,232,10,133,85,229,28,98,86,228,151,120,87,5,80,27,87,188,13,110,88,9,31,215,88,218,107,155,89,8,23,208,89,23,136,235,89,216,47,23,89,220,12,205,89,240,130,21,90,51,254,166,91,211,115,200,92,25,234,181,92,100,62,56,93,51,6,30,93,147,66,127,93,226,120,177,94,93,123,103,95,156,98,167,96,30,143,197,96,183,136,107,96,249,67,158,97,17,57,193,97,66,120,184,98,154,152,223,98,162,60,236,99,38,28,178,99,85,11,54,99,150,176,141,99,156,128,110,100,255,175,7,101,205,45,142,104,193,166,58,105,72,190,145,106,36,109,55,106,51,10,90,106,190,109,169,107,47,172,167,108,56,236,128,108,182,111,38,108,226,56,52,109,33,203,5,109,139,222,245,110,25,228,197,111,127,63,75,111,219,52,205,112,246,24,14,113,248,247,87,114,10,154,83,114,153,254,185,116,79,180,231,116,209,193,133,117,68,206,56,117,243,37,151,119,192,103,221,120,100,42,232,120,118,204,210,121,28,153,180,122,86,142,251,124,112,161,91,125,6,184,160,126,228,157,191,126,245,137,97,127,55,245,72,127,122,86,171,127,163,182,115,129,23,249,190,129,173,207,154,129,190,90,65,130,104,205,213,131,38,58,140,131,86,5,253,131,228,141,77,132,66,0,85,132,82,12,166,132,123,9,137,132,232,45,255,133,89,111,214,133,129,196,50,134,64,225,33,134,153,100,239,134,196,135,242,134,208,241,40,134,240,187,35,135,85,87,140,135,198,111,165,135,226,242,120,136,32,167,22,136,77,22,22,136,174,135,60,137,47,120,70,138,195,103,12,138,235,62,120,139,45,116,206,139,46,14,128,139,87,121,183,139,133,181,64,140,156,12,172,140,170,83,240,140,176,175,170,140,243,164,33,141,158,163,73,142,178,42,151,142,187,32,8,144,4,103,135,144,30,233,192,145,244,251,238,147,13,137,200,147,155,248,146,148,180,182,72,149,47,68,9,149,52,64,70,149,131,10,0,149,224,36,180,149,226,7,165,150,0,143,16,150,17,140,165,150,200,147,72,152,62,252,162,153,119,26,203,153,197,155,161,153,243,6,142,154,113,146,96,155,148,167,101,155,166,252,255,155,226,229,134,156,125,140,104,157,84,109,79,158,53,190,233,158,242,95,144,159,6,73,60,159,43,149,153,162,52,226,247,163,75,4,2,163,234,221,26,163,244,77,4,164,45,83,94,165,200,240,170,166,119,133,63,168,106,8,22,169,14,217,187,169,125,9,220,169,173,148,67,169,178,146,77,170,119,18,153,171,39,176,234,171,60,25,135,171,98,117,97,171,132,141,1,171,181,138,44,172,36,0,55,172,140,129,222,172,192,179,175,175,42,36,200,175,50,177,210,176,9,236,253,176,185,103,107,179,9,222,214,180,149,7,13,180,244,232,201,181,190,141,222,181,238,127,142,182,19,8,245,182,121,136,178,183,35,92,143,184,239,116,102,187,73,241,70,187,78,216,249,187,108,169,153,187,162,169,3,188,42,30,121,189,192,181,159,189,222,238,226,190,27,68,132,190,192,255,225,190,221,33,198,192,24,246,237,192,140,9,59,192,207,12,214,192,251,0,98,193,5,89,101,193,132,148,130,194,146,58,37,195,36,127,36,195,51,216,190,195,148,69,154,196,164,208,43,196,201,179,191,196,252,28,183,198,87,104,168,198,87,131,114,198,136,49,226,198,168,114,154,198,191,62,131,198,191,62,131,200,22,138,131,200,85,140,42,201,58,30,138,203,9,81,148,204,50,47,17,204,124,73,86,205,245,206,68,205,248,154,66,206,51,231,179,206,56,215,135,206,140,247,113,206,185,253,138,207,57,236,115,209,51,67,161,209,62,97,40,209,87,120,53,209,223,100,197,210,49,124,204,211,11,75,251,211,116,36,229,211,192,197,181,212,120,154,3,212,215,175,245,213,41,166,225,215,43,70,23,216,172,68,75,217,32,129,110,217,102,210,71,218,178,27,201,218,251,109,132,219,4,144,238,219,161,111,128,220,40,65,171,220,124,198,117,220,138,144,250,222,4,57,200,222,53,242,207,222,122,89,103,222,143,25,142,222,153,64,43,222,192,139,252,223,128,179,55,223,216,56,180,223,230,113,131,224,28,186,114,224,201,115,60,225,249,225,39,226,204,253,217,227,148,251,141,228,172,146,125,229,135,224,53,229,192,114,254,230,34,231,94,230,188,103,133,231,175,253,219,232,85,11,241,233,207,39,215,234,16,195,218,234,112,201,196,234,227,170,255,235,95,58,137,236,44,87,199,236,71,60,39,237,29,42,180,237,33,71,183,237,56,124,252,238,65,119,88,238,153,210,102,239,154,181,158,239,227,82,129,240,106,65,233,241,204,172,219,241,215,242,28,241,239,152,194,241,251,27,94,242,147,17,25,242,157,10,83,242,223,69,163,242,231,152,65,243,42,98,217,243,178,112,173,244,177,110,22,244,187,37,103,245,145,50,71,246,19,231,153,246,72,234,76,246,73,92,181,246,143,234,95,247,94,56,53,247,151,155,230,247,211,235,193,247,220,221,243,247,223,87,81,248,50,229,153,248,87,141,144,248,91,237,169,248,149,243,142,248,185,88,197,249,67,104,216,249,158,229,157,249,177,108,151,249,211,54,51,249,233,140,224,250,49,235,83,251,232,181,82,251,240,204,202,251,246,233,235,252,29,151,210,252,94,2,174,252,226,4,228,252,232,111,6,253,32,55,88,253,83,18,30,253,99,187,120,253,203,145,53,253,232,156,24,254,3,120,79,254,120,23,91,254,232,226,202,255,42,236,78,255,85,210,12,255,112,254,0,2,1,38,115,101,116,44,32,97,109,119,46,105,115,67,111,111,107,105,101,67,111,110,115,101,110,116,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,26,5,42,74,154,5,182,85,139,17,15,54,13,33,35,45,75,40,7,42,220,42,229,118,155,51,59,243,134,79,176,135,102,84,184,20,225,93,26,188,215,96,64,130,122,112,174,218,177,125,243,200,42,144,141,52,57,186,224,123,84,190,31,131,95,190,209,211,114,199,177,157,159,205,145,143,53,215,34,177,224,216,99,171,85,230,215,105,188,236,92,4,37,240,227,157,68,246,19,189,3,254,38,181,227,2,1,42,115,101,116,44,32,97,109,119,46,105,115,77,97,114,107,101,116,105,110,103,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,26,5,42,74,154,5,182,85,139,17,15,54,13,33,35,45,75,40,7,42,220,42,229,118,155,51,59,243,134,79,176,135,102,84,184,20,225,93,26,188,215,96,64,130,122,112,174,218,177,125,243,200,42,144,141,52,57,186,224,123,84,190,31,131,95,190,209,211,114,199,177,157,159,205,145,143,53,215,34,177,224,216,99,171,85,230,215,105,188,236,92,4,37,240,227,157,68,246,19,189,3,254,38,181,227,2,1,42,115,101,116,44,32,97,109,119,46,105,115,65,110,97,108,121,116,105,99,115,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,26,5,42,74,154,5,182,85,139,17,15,54,13,33,35,45,75,40,7,42,220,42,229,118,155,51,59,243,134,79,176,135,102,84,184,20,225,93,26,188,215,96,64,130,122,112,174,218,177,125,243,200,42,144,141,52,57,186,224,123,84,190,31,131,95,190,209,211,114,199,177,157,159,205,145,143,53,215,34,177,224,216,99,171,85,230,215,105,188,236,92,4,37,240,227,157,68,246,19,189,3,254,38,181,227,8,1,14,46,112,111,112,117,112,95,119,114,97,112,112,101,114,2,1,149,108,155,114,16,1,32,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,112,111,112,117,112,95,98,97,99,107,103,114,111,117,110,100,2,1,149,108,155,114,0,5,9,98,111,100,121,44,104,116,109,108,2,1,149,108,155,114,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,28,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,98,111,116,116,111,109,95,114,105,103,104,116,2,1,2,67,167,63,0,5,9,98,111,100,121,44,104,116,109,108,2,1,2,67,167,63,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,112,111,112,117,112,45,100,105,115,99,108,97,105,109,101,114,2,1,126,118,245,237,8,1,16,46,99,111,111,107,105,101,115,45,116,111,111,108,116,105,112,2,1,126,118,245,237,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,118,245,237,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,99,111,111,107,105,101,109,111,100,97,108,95,97,116,116,50,48,50,49,2,2,102,34,67,235,115,243,158,226,0,5,9,98,111,100,121,44,104,116,109,108,2,2,102,34,67,235,115,243,158,226,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,5,5,46,98,108,117,114,2,1,40,195,5,184,51,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,4,104,116,109,108,2,1,40,195,5,184,24,111,118,101,114,102,108,111,119,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,13,46,97,98,115,111,108,95,99,111,111,107,105,101,2,1,32,230,117,142,16,1,9,35,102,117,108,108,95,119,105,110,2,1,32,230,117,142,0,1,21,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,111,120,45,34,93,2,1,175,18,141,49,0,5,9,98,111,100,121,44,104,116,109,108,2,1,175,18,141,49,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,12,35,108,101,103,97,108,45,109,111,100,97,108,2,1,221,95,141,182,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,221,95,141,182,0,5,9,98,111,100,121,44,104,116,109,108,2,1,221,95,141,182,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,4,104,116,109,108,2,3,12,239,86,114,169,172,222,70,247,119,240,1,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,15,46,108,98,79,117,116,101,114,87,114,97,112,112,101,114,2,3,44,95,1,5,210,85,104,38,217,66,189,144,8,1,10,46,108,98,79,118,101,114,108,97,121,2,3,44,95,1,5,210,85,104,38,217,66,189,144,0,5,9,98,111,100,121,44,104,116,109,108,2,3,44,95,1,5,210,85,104,38,217,66,189,144,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,12,35,67,111,111,107,105,101,77,111,100,97,108,2,1,209,128,171,3,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,209,128,171,3,0,5,9,98,111,100,121,44,104,116,109,108,2,1,209,128,171,3,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,14,35,98,111,120,99,117,115,116,111,109,111,118,101,114,2,1,148,170,193,110,0,5,9,98,111,100,121,44,104,116,109,108,2,1,148,170,193,110,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,112,111,108,105,99,121,45,109,111,100,97,108,2,1,81,225,167,249,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,81,225,167,249,0,5,9,98,111,100,121,44,104,116,109,108,2,1,81,225,167,249,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,108,97,110,121,97,114,100,95,114,111,111,116,2,1,96,53,173,135,0,5,9,98,111,100,121,44,104,116,109,108,2,1,96,53,173,135,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,101,110,115,78,111,116,105,102,121,66,97,110,110,101,114,87,114,97,112,112,101,114,2,43,2,234,72,73,11,199,22,124,23,81,195,182,31,73,153,119,38,156,254,214,40,31,93,120,51,46,149,121,64,34,228,140,65,102,242,100,81,61,218,96,98,191,54,12,100,32,239,161,101,208,250,231,113,221,111,162,118,44,178,188,118,102,85,146,134,67,218,251,134,153,27,166,135,25,130,79,137,110,74,252,139,195,248,92,146,185,4,236,147,241,135,170,163,3,69,53,164,112,196,139,166,254,187,130,167,112,24,60,167,121,153,127,170,196,158,34,173,191,9,205,178,145,75,116,182,131,68,171,190,81,95,51,190,148,3,237,191,240,213,208,199,152,118,238,203,215,72,132,212,229,178,59,229,206,134,236,242,81,139,220,242,231,155,42,244,70,15,254,250,67,252,35,0,5,9,98,111,100,121,44,104,116,109,108,2,43,2,234,72,73,11,199,22,124,23,81,195,182,31,73,153,119,38,156,254,214,40,31,93,120,51,46,149,121,64,34,228,140,65,102,242,100,81,61,218,96,98,191,54,12,100,32,239,161,101,208,250,231,113,221,111,162,118,44,178,188,118,102,85,146,134,67,218,251,134,153,27,166,135,25,130,79,137,110,74,252,139,195,248,92,146,185,4,236,147,241,135,170,163,3,69,53,164,112,196,139,166,254,187,130,167,112,24,60,167,121,153,127,170,196,158,34,173,191,9,205,178,145,75,116,182,131,68,171,190,81,95,51,190,148,3,237,191,240,213,208,199,152,118,238,203,215,72,132,212,229,178,59,229,206,134,236,242,81,139,220,242,231,155,42,244,70,15,254,250,67,252,35,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,17,35,115,116,97,110,100,97,114,100,95,111,118,101,114,108,97,121,2,1,85,104,206,166,0,5,9,98,111,100,121,44,104,116,109,108,2,1,85,104,206,166,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,29,46,110,103,45,116,114,105,103,103,101,114,45,112,114,101,115,101,110,99,101,65,110,105,109,97,116,105,111,110,2,1,92,84,41,253,0,5,9,98,111,100,121,44,104,116,109,108,2,1,92,84,41,253,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,98,97,115,105,99,76,105,103,104,116,98,111,120,2,1,186,111,76,17,0,5,9,98,111,100,121,44,104,116,109,108,2,1,186,111,76,17,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,8,35,99,111,111,107,105,101,115,2,2,59,22,77,182,141,116,203,17,0,5,9,98,111,100,121,44,104,116,109,108,2,2,59,22,77,182,141,116,203,17,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,109,97,114,107,101,116,105,110,103,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,12,27,89,194,104,95,198,242,193,103,4,79,212,105,188,144,194,113,73,127,81,139,107,185,127,154,202,97,82,191,141,229,75,200,140,27,4,234,144,119,223,240,156,17,47,245,126,247,217,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,105,110,116,101,114,110,97,108,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,12,27,89,194,104,95,198,242,193,103,4,79,212,105,188,144,194,113,73,127,81,139,107,185,127,154,202,97,82,191,141,229,75,200,140,27,4,234,144,119,223,240,156,17,47,245,126,247,217,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,101,115,115,101,110,116,105,97,108,115,67,111,111,107,105,101,115,44,32,116,114,117,101,2,12,27,89,194,104,95,198,242,193,103,4,79,212,105,188,144,194,113,73,127,81,139,107,185,127,154,202,97,82,191,141,229,75,200,140,27,4,234,144,119,223,240,156,17,47,245,126,247,217,8,1,12,46,103,108,111,119,45,98,97,110,110,101,114,2,5,22,39,70,243,29,37,9,127,160,205,101,10,197,156,98,78,237,109,188,184,8,1,16,46,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,2,21,4,177,69,93,17,101,14,209,18,80,55,59,36,177,255,98,59,69,28,73,78,189,84,165,96,25,140,40,127,230,124,122,129,38,205,137,134,55,150,125,137,91,226,248,176,185,7,72,178,254,62,20,183,190,41,211,185,249,235,189,223,218,198,236,229,238,56,163,247,160,86,181,252,53,184,196,252,156,74,130,253,241,252,131,0,5,9,98,111,100,121,44,104,116,109,108,2,21,4,177,69,93,17,101,14,209,18,80,55,59,36,177,255,98,59,69,28,73,78,189,84,165,96,25,140,40,127,230,124,122,129,38,205,137,134,55,150,125,137,91,226,248,176,185,7,72,178,254,62,20,183,190,41,211,185,249,235,189,223,218,198,236,229,238,56,163,247,160,86,181,252,53,184,196,252,156,74,130,253,241,252,131,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,16,46,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,2,2,54,227,227,127,148,184,83,225,0,5,9,98,111,100,121,44,104,116,109,108,2,2,54,227,227,127,148,184,83,225,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,97,45,98,97,99,107,100,114,111,112,2,1,208,88,204,150,8,1,15,46,109,45,99,111,111,107,105,101,45,108,97,121,101,114,2,1,208,88,204,150,0,5,9,98,111,100,121,44,104,116,109,108,2,1,208,88,204,150,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,99,111,111,107,105,101,95,95,115,101,116,116,105,110,103,115,2,1,148,188,100,219,0,5,9,98,111,100,121,44,104,116,109,108,2,1,148,188,100,219,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,10,35,114,111,100,111,80,111,112,117,112,2,1,190,81,130,61,0,5,9,98,111,100,121,44,104,116,109,108,2,1,190,81,130,61,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,12,46,116,121,45,115,101,116,116,105,110,103,115,2,1,126,4,120,17,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,4,120,17,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,16,46,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,36,133,131,216,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,36,133,131,216,0,5,9,98,111,100,121,44,104,116,109,108,2,1,36,133,131,216,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,1,13,99,111,111,107,105,101,45,119,105,100,103,101,116,2,1,19,155,134,166,0,5,9,98,111,100,121,44,104,116,109,108,2,1,19,155,134,166,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,108,98,79,117,116,101,114,87,114,97,112,112,101,114,2,1,35,217,182,173,8,1,10,46,108,98,79,118,101,114,108,97,121,2,1,35,217,182,173,0,5,9,98,111,100,121,44,104,116,109,108,2,1,35,217,182,173,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,13,35,100,114,99,99,45,111,118,101,114,108,97,121,2,1,234,2,81,0,0,5,9,98,111,100,121,44,104,116,109,108,2,1,234,2,81,0,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,17,35,99,111,111,107,105,101,65,108,101,114,116,77,111,100,97,108,2,1,39,146,5,12,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,39,146,5,12,0,5,9,98,111,100,121,44,104,116,109,108,2,1,39,146,5,12,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,38,5,99,109,93,10,115,36,95,15,68,110,49,30,56,130,88,33,126,3,194,47,86,28,26,52,103,46,207,52,218,145,88,53,216,157,63,60,183,118,96,61,158,188,73,64,91,204,243,67,249,64,84,71,157,110,148,87,67,206,250,88,197,21,130,93,111,151,67,96,29,198,174,104,219,146,180,105,204,43,150,106,57,192,20,108,115,84,32,116,7,132,112,117,81,113,74,117,114,188,189,126,250,93,198,144,45,147,217,145,73,13,51,146,23,23,53,151,37,147,146,184,146,196,62,189,93,49,238,198,122,167,11,206,87,17,84,213,213,31,13,229,151,243,105,234,112,210,164,237,155,127,48,0,5,9,98,111,100,121,44,104,116,109,108,2,38,5,99,109,93,10,115,36,95,15,68,110,49,30,56,130,88,33,126,3,194,47,86,28,26,52,103,46,207,52,218,145,88,53,216,157,63,60,183,118,96,61,158,188,73,64,91,204,243,67,249,64,84,71,157,110,148,87,67,206,250,88,197,21,130,93,111,151,67,96,29,198,174,104,219,146,180,105,204,43,150,106,57,192,20,108,115,84,32,116,7,132,112,117,81,113,74,117,114,188,189,126,250,93,198,144,45,147,217,145,73,13,51,146,23,23,53,151,37,147,146,184,146,196,62,189,93,49,238,198,122,167,11,206,87,17,84,213,213,31,13,229,151,243,105,234,112,210,164,237,155,127,48,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,12,46,103,100,112,114,45,109,111,100,117,108,101,2,2,134,58,73,128,160,44,225,144,0,5,9,98,111,100,121,44,104,116,109,108,2,2,134,58,73,128,160,44,225,144,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,19,46,119,114,97,112,95,99,111,111,107,105,101,115,95,112,111,112,117,112,2,1,185,10,100,128,8,1,14,46,109,111,100,97,108,45,119,114,97,112,112,101,114,2,14,36,50,80,17,37,61,222,11,90,42,31,72,105,220,237,177,121,82,242,240,141,94,24,152,150,81,40,70,181,129,164,132,182,34,192,149,226,23,225,198,233,239,50,128,235,59,250,230,252,254,245,150,255,167,148,183,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,14,36,50,80,17,37,61,222,11,90,42,31,72,105,220,237,177,121,82,242,240,141,94,24,152,150,81,40,70,181,129,164,132,182,34,192,149,226,23,225,198,233,239,50,128,235,59,250,230,252,254,245,150,255,167,148,183,0,5,9,98,111,100,121,44,104,116,109,108,2,14,36,50,80,17,37,61,222,11,90,42,31,72,105,220,237,177,121,82,242,240,141,94,24,152,150,81,40,70,181,129,164,132,182,34,192,149,226,23,225,198,233,239,50,128,235,59,250,230,252,254,245,150,255,167,148,183,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,6,35,99,99,98,111,120,2,1,144,114,209,196,8,1,7,46,105,81,97,84,69,109,2,1,11,191,206,67,0,5,9,98,111,100,121,44,104,116,109,108,2,1,11,191,206,67,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,19,46,109,111,100,97,108,45,112,114,105,118,97,99,121,45,116,111,111,108,2,1,170,150,86,82,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,170,150,86,82,0,5,9,98,111,100,121,44,104,116,109,108,2,1,170,150,86,82,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,20,46,115,117,98,109,101,110,117,108,97,121,101,114,45,109,111,98,105,108,101,2,1,243,194,175,229,0,5,9,98,111,100,121,44,104,116,109,108,2,1,243,194,175,229,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,12,46,97,115,103,45,111,118,101,114,108,97,121,2,1,200,245,21,201,0,5,9,98,111,100,121,44,104,116,109,108,2,1,200,245,21,201,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,29,5,194,129,172,6,188,161,242,17,74,26,235,27,113,83,130,28,207,198,74,34,214,97,26,38,240,112,46,43,212,171,231,49,226,130,187,50,165,88,68,54,216,3,220,77,88,219,233,82,71,109,217,89,238,97,34,96,236,41,79,102,90,100,76,107,210,91,21,116,42,253,174,117,246,168,73,120,193,210,77,129,201,81,87,133,174,116,91,139,95,12,57,143,129,60,9,143,129,154,65,148,192,40,126,164,146,252,249,173,196,239,29,207,7,53,4,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,95,95,116,101,97,108,105,117,109,71,68,80,82,101,99,77,111,100,97,108,2,2,83,22,140,186,133,163,174,210,0,5,9,98,111,100,121,44,104,116,109,108,2,2,83,22,140,186,133,163,174,210,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,100,105,97,108,111,103,45,45,111,112,101,110,2,4,20,233,105,97,91,101,159,222,120,133,11,177,226,24,142,219,0,5,9,98,111,100,121,44,104,116,109,108,2,4,20,233,105,97,91,101,159,222,120,133,11,177,226,24,142,219,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,99,111,111,107,105,101,45,98,111,120,2,1,124,61,220,196,8,1,7,46,104,102,84,77,118,65,2,1,124,61,220,196,8,1,17,46,99,111,111,107,105,101,45,98,111,120,45,109,111,100,97,108,2,1,236,201,138,185,0,5,9,98,111,100,121,44,104,116,109,108,2,1,236,201,138,185,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,9,98,111,100,121,44,104,116,109,108,2,1,203,107,224,180,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,9,98,111,100,121,44,104,116,109,108,2,3,102,57,254,126,177,169,155,6,193,196,250,191,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,17,35,99,111,111,107,105,101,115,45,100,117,108,108,45,111,117,116,2,9,17,114,5,56,59,64,13,123,82,86,241,228,92,148,156,157,104,139,240,59,152,31,23,64,210,67,175,151,227,21,205,165,243,148,73,195,0,5,9,98,111,100,121,44,104,116,109,108,2,9,17,114,5,56,59,64,13,123,82,86,241,228,92,148,156,157,104,139,240,59,152,31,23,64,210,67,175,151,227,21,205,165,243,148,73,195,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,99,111,110,100,105,116,105,111,110,115,45,108,2,1,162,225,163,37,0,5,9,98,111,100,121,44,104,116,109,108,2,1,162,225,163,37,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,111,107,105,101,80,111,108,105,99,121,2,1,156,113,232,214,0,5,9,98,111,100,121,44,104,116,109,108,2,1,156,113,232,214,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,22,46,99,45,99,111,111,107,105,101,98,97,110,110,101,114,95,95,109,111,100,97,108,2,2,1,243,118,79,205,34,227,124,0,5,4,98,111,100,121,2,2,1,243,118,79,205,34,227,124,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,12,35,101,67,111,111,107,105,101,82,103,112,100,2,1,0,74,39,193,0,5,9,98,111,100,121,44,104,116,109,108,2,1,0,74,39,193,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,22,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,2,1,191,26,102,226,0,5,9,98,111,100,121,44,104,116,109,108,2,1,191,26,102,226,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,12,46,112,108,111,45,111,118,101,114,108,97,121,2,12,14,118,117,152,22,165,181,115,47,90,216,134,64,7,129,131,76,251,63,83,147,104,15,21,149,107,83,56,168,196,76,76,170,245,50,241,190,243,84,221,242,64,37,141,251,1,3,94,0,5,9,98,111,100,121,44,104,116,109,108,2,12,14,118,117,152,22,165,181,115,47,90,216,134,64,7,129,131,76,251,63,83,147,104,15,21,149,107,83,56,168,196,76,76,170,245,50,241,190,243,84,221,242,64,37,141,251,1,3,94,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,7,46,100,85,102,100,108,78,2,2,127,233,17,76,167,59,187,130,0,5,9,98,111,100,121,44,104,116,109,108,2,26,47,88,127,102,50,58,139,13,66,112,164,162,80,165,216,78,81,130,138,124,98,58,190,155,100,211,180,132,100,211,180,132,101,123,170,46,107,201,156,250,123,237,173,219,127,233,17,76,132,189,240,112,139,221,184,66,164,104,32,89,167,59,187,130,171,86,215,156,180,89,121,199,186,14,111,126,201,70,222,214,208,253,179,41,214,211,216,139,214,216,149,183,244,234,160,253,246,60,15,62,248,185,240,29,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,19,35,99,107,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,38,3,134,120,183,16,82,216,187,27,227,18,34,31,76,61,243,39,179,166,129,56,211,121,2,63,236,91,154,64,129,107,178,68,42,243,242,70,66,62,21,72,254,99,88,78,154,37,86,83,25,32,97,101,104,242,18,101,198,199,240,102,199,69,114,104,230,57,40,104,230,57,40,104,230,57,40,112,106,141,102,113,245,61,195,124,207,92,45,126,38,2,188,143,192,109,148,154,13,242,155,166,244,124,152,179,79,32,198,183,46,246,160,193,129,247,67,201,141,195,10,204,86,88,162,206,33,161,12,221,120,39,7,223,185,23,207,224,147,234,58,224,168,186,8,230,178,190,212,240,236,255,50,0,5,9,98,111,100,121,44,104,116,109,108,2,38,3,134,120,183,16,82,216,187,27,227,18,34,31,76,61,243,39,179,166,129,56,211,121,2,63,236,91,154,64,129,107,178,68,42,243,242,70,66,62,21,72,254,99,88,78,154,37,86,83,25,32,97,101,104,242,18,101,198,199,240,102,199,69,114,104,230,57,40,104,230,57,40,104,230,57,40,112,106,141,102,113,245,61,195,124,207,92,45,126,38,2,188,143,192,109,148,154,13,242,155,166,244,124,152,179,79,32,198,183,46,246,160,193,129,247,67,201,141,195,10,204,86,88,162,206,33,161,12,221,120,39,7,223,185,23,207,224,147,234,58,224,168,186,8,230,178,190,212,240,236,255,50,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,102,97,110,99,121,98,111,120,45,105,115,45,109,111,100,97,108,2,2,119,112,126,121,149,102,145,144,0,5,9,98,111,100,121,44,104,116,109,108,2,2,119,112,126,121,149,102,145,144,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,23,35,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,2,1,5,208,7,83,0,5,9,98,111,100,121,44,104,116,109,108,2,1,5,208,7,83,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,17,35,108,105,103,104,116,98,111,120,45,99,111,111,107,105,101,115,2,1,194,211,50,50,0,5,9,98,111,100,121,44,104,116,109,108,2,1,194,211,50,50,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,22,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,111,118,101,114,108,97,121,2,1,68,144,131,213,0,5,9,98,111,100,121,44,104,116,109,108,2,1,68,144,131,213,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,21,46,102,117,108,108,115,99,114,101,101,110,45,99,111,110,116,97,105,110,101,114,2,1,216,35,39,254,0,5,9,98,111,100,121,44,104,116,109,108,2,1,216,35,39,254,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,9,98,111,100,121,44,104,116,109,108,2,1,223,184,102,197,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,16,35,100,105,118,105,100,101,80,111,112,117,112,87,114,97,112,2,1,223,184,102,197,8,1,10,46,109,102,112,45,114,101,97,100,121,2,8,54,115,77,91,106,197,84,202,118,51,164,33,141,240,38,90,153,246,105,193,208,3,223,49,218,173,69,63,248,120,188,226,0,5,4,104,116,109,108,2,8,54,115,77,91,106,197,84,202,118,51,164,33,141,240,38,90,153,246,105,193,208,3,223,49,218,173,69,63,248,120,188,226,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,12,35,100,105,100,111,109,105,45,104,111,115,116,2,4,2,201,94,140,10,26,222,219,104,49,190,137,149,59,40,143,0,1,35,100,105,118,91,99,108,97,115,115,94,61,34,100,105,100,111,109,105,45,99,111,110,115,101,110,116,45,112,111,112,117,112,95,34,93,2,4,2,201,94,140,10,26,222,219,104,49,190,137,149,59,40,143,8,1,21,46,100,105,100,111,109,105,45,115,99,114,101,101,110,45,120,108,97,114,103,101,2,6,2,201,94,140,10,26,222,219,104,49,190,137,149,59,40,143,198,252,194,85,229,129,149,239,0,5,9,98,111,100,121,44,104,116,109,108,2,4,2,201,94,140,10,26,222,219,198,252,194,85,229,129,149,239,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,20,35,99,111,111,107,105,101,99,111,110,116,114,111,108,45,102,105,114,115,116,2,1,107,191,33,44,8,1,11,46,98,103,45,98,108,97,99,107,56,55,2,1,107,191,33,44,0,5,9,98,111,100,121,44,104,116,109,108,2,1,107,191,33,44,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,7,46,98,75,101,116,107,67,2,1,5,42,108,15,8,1,20,46,98,70,104,86,82,87,46,115,99,45,49,103,57,97,119,49,107,45,49,2,1,5,42,108,15,0,5,9,98,111,100,121,44,104,116,109,108,2,1,5,42,108,15,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,1,23,91,105,100,94,61,34,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,34,93,2,1,245,216,30,66,0,5,9,98,111,100,121,44,104,116,109,108,2,1,245,216,30,66,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,15,46,109,111,100,97,108,45,99,111,110,115,101,110,116,115,2,17,13,205,149,82,20,98,50,22,66,79,143,58,72,212,67,162,92,247,52,165,98,154,231,17,100,206,45,119,126,13,84,89,134,4,157,71,144,76,169,23,176,22,27,46,177,126,138,86,232,217,72,175,233,84,226,123,238,132,112,86,246,88,154,83,255,168,178,178,0,5,9,98,111,100,121,44,104,116,109,108,2,17,13,205,149,82,20,98,50,22,66,79,143,58,72,212,67,162,92,247,52,165,98,154,231,17,100,206,45,119,126,13,84,89,134,4,157,71,144,76,169,23,176,22,27,46,177,126,138,86,232,217,72,175,233,84,226,123,238,132,112,86,246,88,154,83,255,168,178,178,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,7,46,107,69,68,122,100,86,2,1,166,130,222,180,0,5,9,98,111,100,121,44,104,116,109,108,2,2,40,42,116,229,166,130,222,180,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,49,46,109,105,116,105,100,45,115,104,97,114,101,100,45,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,112,111,112,117,112,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,202,131,143,203,8,1,43,46,109,105,116,105,100,45,115,104,97,114,101,100,45,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,202,131,143,203,0,5,9,98,111,100,121,44,104,116,109,108,2,1,202,131,143,203,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,18,46,103,100,112,114,45,108,109,100,45,115,116,97,110,100,97,114,100,2,1,168,224,207,101,8,1,14,46,103,100,112,114,45,108,109,100,45,119,97,108,108,2,1,168,224,207,101,0,5,9,98,111,100,121,44,104,116,109,108,2,1,168,224,207,101,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,8,46,109,45,108,97,121,101,114,2,3,14,54,50,121,109,243,152,200,186,224,174,88,2,1,37,114,99,44,32,99,111,111,107,105,101,108,97,119,45,98,108,117,114,45,98,97,99,107,103,114,111,117,110,100,44,32,44,32,115,116,97,121,2,3,14,54,50,121,109,243,152,200,186,224,174,88,0,5,9,98,111,100,121,44,104,116,109,108,2,3,14,54,50,121,109,243,152,200,186,224,174,88,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,1,236,212,170,195,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,115,104,111,119,67,111,110,115,101,110,116,2,1,236,212,170,195,8,1,11,46,114,111,100,111,45,112,111,112,117,112,2,2,6,114,136,187,203,252,59,125,8,1,13,46,114,111,100,111,45,111,118,101,114,108,97,121,2,2,6,114,136,187,203,252,59,125,0,5,9,98,111,100,121,44,104,116,109,108,2,2,6,114,136,187,203,252,59,125,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,99,115,115,45,49,121,117,111,97,48,117,2,1,234,237,235,114,0,5,4,98,111,100,121,2,1,234,237,235,114,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,109,111,100,97,108,45,99,111,111,107,105,101,2,1,3,242,231,240,0,5,9,98,111,100,121,44,104,116,109,108,2,1,3,242,231,240,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,109,111,100,97,108,45,99,111,111,107,105,101,46,109,111,100,97,108,2,10,30,173,82,78,56,143,157,91,82,42,174,143,92,188,66,171,93,224,113,230,161,253,1,67,163,233,152,134,172,99,190,42,182,215,123,189,204,5,247,243,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,10,30,173,82,78,56,143,157,91,82,42,174,143,92,188,66,171,93,224,113,230,161,253,1,67,163,233,152,134,172,99,190,42,182,215,123,189,204,5,247,243,0,5,9,98,111,100,121,44,104,116,109,108,2,10,30,173,82,78,56,143,157,91,82,42,174,143,92,188,66,171,93,224,113,230,161,253,1,67,163,233,152,134,172,99,190,42,182,215,123,189,204,5,247,243,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,31,114,99,44,32,115,112,45,109,101,115,115,97,103,101,45,111,112,101,110,44,32,104,116,109,108,44,32,115,116,97,121,2,128,0,0,0,157,0,227,173,237,0,242,14,50,0,242,14,50,3,2,170,139,4,79,105,157,6,6,166,37,7,97,123,216,7,218,244,2,9,7,173,113,10,229,133,233,11,159,106,198,11,176,74,122,14,226,54,163,17,232,103,141,24,35,254,4,27,101,149,85,27,109,22,65,27,116,250,103,29,79,244,104,30,88,142,119,31,191,175,202,32,166,173,95,33,27,90,106,34,9,196,16,34,209,49,124,38,157,20,157,38,157,133,110,45,161,41,249,46,90,207,50,49,230,126,25,54,180,23,254,55,107,120,113,57,200,31,54,57,224,147,58,61,65,157,92,61,118,245,172,61,186,88,131,61,195,207,169,65,57,71,189,68,130,110,139,68,154,219,32,68,215,185,138,70,138,101,2,81,69,239,200,81,224,34,150,82,79,37,214,83,47,54,31,84,144,8,35,85,116,108,158,86,25,48,221,86,255,146,175,88,85,165,209,91,31,76,222,92,157,183,149,94,93,89,253,95,156,101,50,96,106,178,224,96,247,172,92,99,221,125,44,100,102,39,165,100,102,227,50,100,143,200,14,103,30,183,245,103,88,20,114,108,88,191,96,110,72,232,74,110,74,57,84,111,233,180,48,111,239,33,27,114,193,95,192,116,180,202,241,118,30,117,198,120,23,223,204,122,226,39,45,124,150,88,166,126,47,255,109,127,50,155,111,127,221,107,73,128,99,177,183,128,221,38,148,129,125,134,163,132,183,102,141,134,184,68,92,136,88,12,52,136,120,249,199,137,116,31,60,138,159,12,154,140,174,93,107,143,8,247,79,143,105,87,151,144,210,115,46,146,185,14,115,146,255,250,85,148,186,52,61,148,254,20,237,149,87,7,75,153,235,226,47,161,248,222,127,164,0,56,66,165,236,209,119,166,75,88,36,166,181,70,176,167,153,1,100,170,12,194,125,170,233,116,105,174,10,113,126,176,213,25,141,177,154,16,164,178,60,221,4,178,139,46,10,180,99,168,141,183,10,82,39,184,144,188,224,186,140,155,70,187,234,80,71,188,69,108,14,188,70,240,4,189,55,133,98,193,53,176,92,193,209,74,219,194,221,236,12,194,225,17,133,195,11,152,123,196,122,127,60,198,54,85,13,198,61,124,96,201,210,214,110,204,141,32,108,205,177,204,195,208,74,24,70,209,236,200,62,210,101,116,32,211,208,203,220,213,114,90,55,215,90,81,5,217,247,230,56,221,92,132,193,223,64,146,184,227,13,92,118,227,13,92,118,230,158,122,31,230,204,223,154,236,79,90,171,239,129,218,11,242,231,40,213,242,231,130,180,242,231,149,8,242,231,182,209,245,84,22,114,245,223,11,170,245,246,180,57,247,144,230,177,247,220,0,100,248,96,195,54,249,28,142,172,251,189,244,140,252,211,244,248,0,1,32,100,105,118,91,105,100,94,61,34,115,112,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,95,34,93,2,128,0,0,0,157,0,227,173,237,0,242,14,50,0,242,14,50,3,2,170,139,4,79,105,157,6,6,166,37,7,97,123,216,7,218,244,2,9,7,173,113,10,229,133,233,11,159,106,198,11,176,74,122,14,226,54,163,17,232,103,141,24,35,254,4,27,101,149,85,27,109,22,65,27,116,250,103,29,79,244,104,30,88,142,119,31,191,175,202,32,166,173,95,33,27,90,106,34,9,196,16,34,209,49,124,38,157,20,157,38,157,133,110,45,161,41,249,46,90,207,50,49,230,126,25,54,180,23,254,55,107,120,113,57,200,31,54,57,224,147,58,61,65,157,92,61,118,245,172,61,186,88,131,61,195,207,169,65,57,71,189,68,130,110,139,68,154,219,32,68,215,185,138,70,138,101,2,81,69,239,200,81,224,34,150,82,79,37,214,83,47,54,31,84,144,8,35,85,116,108,158,86,25,48,221,86,255,146,175,88,85,165,209,91,31,76,222,92,157,183,149,94,93,89,253,95,156,101,50,96,106,178,224,96,247,172,92,99,221,125,44,100,102,39,165,100,102,227,50,100,143,200,14,103,30,183,245,103,88,20,114,108,88,191,96,110,72,232,74,110,74,57,84,111,233,180,48,111,239,33,27,114,193,95,192,116,180,202,241,118,30,117,198,120,23,223,204,122,226,39,45,124,150,88,166,126,47,255,109,127,50,155,111,127,221,107,73,128,99,177,183,128,221,38,148,129,125,134,163,132,183,102,141,134,184,68,92,136,88,12,52,136,120,249,199,137,116,31,60,138,159,12,154,140,174,93,107,143,8,247,79,143,105,87,151,144,210,115,46,146,185,14,115,146,255,250,85,148,186,52,61,148,254,20,237,149,87,7,75,153,235,226,47,161,248,222,127,164,0,56,66,165,236,209,119,166,75,88,36,166,181,70,176,167,153,1,100,170,12,194,125,170,233,116,105,174,10,113,126,176,213,25,141,177,154,16,164,178,60,221,4,178,139,46,10,180,99,168,141,183,10,82,39,184,144,188,224,186,140,155,70,187,234,80,71,188,69,108,14,188,70,240,4,189,55,133,98,193,53,176,92,193,209,74,219,194,221,236,12,194,225,17,133,195,11,152,123,196,122,127,60,198,54,85,13,198,61,124,96,201,210,214,110,204,141,32,108,205,177,204,195,208,74,24,70,209,236,200,62,210,101,116,32,211,208,203,220,213,114,90,55,215,90,81,5,217,247,230,56,221,92,132,193,223,64,146,184,227,13,92,118,227,13,92,118,230,158,122,31,230,204,223,154,236,79,90,171,239,129,218,11,242,231,40,213,242,231,130,180,242,231,149,8,242,231,182,209,245,84,22,114,245,223,11,170,245,246,180,57,247,144,230,177,247,220,0,100,248,96,195,54,249,28,142,172,251,189,244,140,252,211,244,248,8,1,11,46,116,112,108,45,99,111,111,107,105,101,2,1,60,22,102,109,0,5,9,98,111,100,121,44,104,116,109,108,2,1,60,22,102,109,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,98,97,99,107,100,114,111,112,45,98,108,117,114,45,49,2,1,134,40,224,211,0,5,9,98,111,100,121,44,104,116,109,108,2,1,134,40,224,211,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,10,46,110,97,115,45,109,111,100,97,108,2,1,54,218,56,236,0,5,9,98,111,100,121,44,104,116,109,108,2,1,54,218,56,236,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,119,105,67,111,111,107,105,101,66,97,114,49,2,1,145,146,91,239,0,5,4,104,116,109,108,2,1,145,146,91,239,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,99,111,110,115,101,110,116,45,100,105,115,99,108,97,105,109,101,114,2,13,3,232,83,4,37,9,217,81,93,94,230,109,94,182,132,137,128,44,14,84,149,89,73,103,191,163,61,81,193,33,198,167,196,54,181,22,201,53,75,114,227,225,171,81,249,16,190,117,251,10,84,197,0,5,9,98,111,100,121,44,104,116,109,108,2,13,3,232,83,4,37,9,217,81,93,94,230,109,94,182,132,137,128,44,14,84,149,89,73,103,191,163,61,81,193,33,198,167,196,54,181,22,201,53,75,114,227,225,171,81,249,16,190,117,251,10,84,197,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,2,1,55,115,101,116,45,99,111,110,115,116,97,110,116,44,32,119,105,110,100,111,119,46,99,109,112,109,110,103,114,46,115,101,116,67,111,110,115,101,110,116,86,105,97,66,116,110,44,32,110,111,111,112,70,117,110,99,2,1,169,218,175,214,16,1,12,35,100,105,100,111,109,105,45,104,111,115,116,2,1,94,58,193,219,16,1,23,35,110,104,102,112,95,100,105,100,111,109,105,95,98,108,111,99,107,95,112,97,103,101,2,1,94,58,193,219,0,5,9,98,111,100,121,44,104,116,109,108,2,1,94,58,193,219,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,82,101,97,99,116,77,111,100,97,108,95,95,79,118,101,114,108,97,121,2,1,246,19,129,99,8,1,17,46,82,101,97,99,116,77,111,100,97,108,80,111,114,116,97,108,2,1,246,19,129,99,0,5,9,98,111,100,121,44,104,116,109,108,2,1,246,19,129,99,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,12,46,112,117,45,106,108,105,113,104,116,108,117,2,1,162,194,181,190,0,5,4,98,111,100,121,2,1,162,194,181,190,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,102,97,110,99,121,98,111,120,45,99,111,110,116,97,105,110,101,114,2,1,171,164,43,52,8,1,6,46,112,111,112,117,112,2,1,171,164,43,52,8,1,8,46,111,118,101,114,108,97,121,2,1,140,17,225,5,8,1,15,46,112,111,112,117,112,45,45,99,111,111,107,105,101,115,2,1,140,17,225,5,8,1,25,46,97,107,107,117,45,99,111,111,107,105,101,45,116,111,111,108,115,45,100,101,115,105,103,110,2,8,6,246,236,191,59,6,15,106,132,79,51,32,148,107,239,124,150,191,17,246,197,215,255,18,198,151,82,152,216,55,120,88,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,8,6,246,236,191,59,6,15,106,132,79,51,32,148,107,239,124,150,191,17,246,197,215,255,18,198,151,82,152,216,55,120,88,0,1,12,91,105,100,94,61,34,103,100,112,114,34,93,2,84,12,149,114,93,12,218,212,131,14,188,211,167,15,26,90,203,16,173,180,65,20,239,188,139,22,34,90,235,24,210,62,201,25,35,118,79,28,18,253,206,30,193,100,96,31,231,147,62,36,104,134,19,40,138,255,183,43,203,51,14,53,102,127,14,55,209,161,126,67,177,97,21,70,178,222,120,74,237,249,242,77,209,217,210,92,169,43,136,95,126,134,90,96,165,201,45,97,35,47,16,100,39,190,107,100,50,94,75,102,252,25,232,105,109,219,180,110,193,186,202,112,128,182,164,120,202,183,128,136,11,4,60,139,85,59,67,141,131,236,86,143,154,24,168,144,40,193,84,144,132,76,145,146,112,57,1,146,123,0,178,149,213,190,5,151,233,173,101,152,157,63,6,154,78,6,95,161,89,250,53,161,121,207,142,162,28,238,133,164,101,207,88,171,226,157,97,173,217,130,229,176,172,31,170,179,173,208,230,181,142,48,33,182,255,111,15,183,115,63,52,189,157,172,81,191,115,220,226,197,248,121,195,198,7,38,132,199,145,246,115,202,76,0,252,202,144,142,178,205,109,136,87,205,202,124,111,206,18,223,158,206,227,120,46,208,13,245,30,208,188,0,224,209,189,137,51,211,220,104,126,213,94,163,102,219,140,173,27,220,14,79,21,222,166,187,254,222,168,214,140,223,190,198,251,226,3,27,170,226,120,38,172,230,162,162,134,231,62,32,144,239,20,253,15,242,179,140,61,245,98,20,130,245,171,253,149,0,5,9,98,111,100,121,44,104,116,109,108,2,84,12,149,114,93,12,218,212,131,14,188,211,167,15,26,90,203,16,173,180,65,20,239,188,139,22,34,90,235,24,210,62,201,25,35,118,79,28,18,253,206,30,193,100,96,31,231,147,62,36,104,134,19,40,138,255,183,43,203,51,14,53,102,127,14,55,209,161,126,67,177,97,21,70,178,222,120,74,237,249,242,77,209,217,210,92,169,43,136,95,126,134,90,96,165,201,45,97,35,47,16,100,39,190,107,100,50,94,75,102,252,25,232,105,109,219,180,110,193,186,202,112,128,182,164,120,202,183,128,136,11,4,60,139,85,59,67,141,131,236,86,143,154,24,168,144,40,193,84,144,132,76,145,146,112,57,1,146,123,0,178,149,213,190,5,151,233,173,101,152,157,63,6,154,78,6,95,161,89,250,53,161,121,207,142,162,28,238,133,164,101,207,88,171,226,157,97,173,217,130,229,176,172,31,170,179,173,208,230,181,142,48,33,182,255,111,15,183,115,63,52,189,157,172,81,191,115,220,226,197,248,121,195,198,7,38,132,199,145,246,115,202,76,0,252,202,144,142,178,205,109,136,87,205,202,124,111,206,18,223,158,206,227,120,46,208,13,245,30,208,188,0,224,209,189,137,51,211,220,104,126,213,94,163,102,219,140,173,27,220,14,79,21,222,166,187,254,222,168,214,140,223,190,198,251,226,3,27,170,226,120,38,172,230,162,162,134,231,62,32,144,239,20,253,15,242,179,140,61,245,98,20,130,245,171,253,149,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,99,111,111,107,105,101,115,45,98,97,99,107,100,114,111,112,2,27,7,254,146,115,15,107,233,103,15,127,5,156,24,196,28,219,27,134,210,197,28,106,151,167,32,80,241,119,40,176,14,12,41,105,207,195,78,68,121,210,89,49,195,52,123,180,15,178,124,84,231,201,137,106,74,40,142,225,220,162,147,138,17,102,152,100,21,45,158,245,25,44,173,83,234,228,179,25,180,191,183,154,97,146,190,244,190,70,192,79,104,214,209,79,1,123,218,137,162,147,225,70,39,103,238,54,34,106,0,5,9,98,111,100,121,44,104,116,109,108,2,27,7,254,146,115,15,107,233,103,15,127,5,156,24,196,28,219,27,134,210,197,28,106,151,167,32,80,241,119,40,176,14,12,41,105,207,195,78,68,121,210,89,49,195,52,123,180,15,178,124,84,231,201,137,106,74,40,142,225,220,162,147,138,17,102,152,100,21,45,158,245,25,44,173,83,234,228,179,25,180,191,183,154,97,146,190,244,190,70,192,79,104,214,209,79,1,123,218,137,162,147,225,70,39,103,238,54,34,106,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,104,101,97,100,101,114,45,99,111,111,107,105,101,115,45,103,100,112,114,2,1,54,51,242,254,0,1,45,104,116,109,108,91,99,108,97,115,115,42,61,34,99,111,111,107,105,101,115,45,118,105,115,105,98,108,101,34,93,32,62,32,98,111,100,121,58,58,98,101,102,111,114,101,2,1,54,51,242,254,2,1,27,114,99,44,32,109,111,100,97,108,79,112,101,110,95,95,95,103,90,121,107,118,44,32,98,111,100,121,2,1,197,137,136,240,8,1,14,46,98,111,100,121,45,98,108,97,99,107,111,117,116,2,1,197,137,136,240,8,1,21,46,99,108,111,115,101,79,110,67,108,105,99,107,95,95,95,50,103,50,83,51,2,1,197,137,136,240,8,1,13,46,99,109,112,99,111,110,116,97,105,110,101,114,2,2,100,71,215,91,244,52,4,127,2,1,22,114,99,44,32,99,111,111,107,105,101,45,98,97,114,44,32,44,32,115,116,97,121,2,5,47,164,30,189,140,156,223,60,142,51,144,174,208,87,226,91,241,250,36,78,16,1,21,35,67,121,98,111,116,67,111,111,107,105,101,98,111,116,68,105,97,108,111,103,2,5,47,164,30,189,140,156,223,60,142,51,144,174,208,87,226,91,241,250,36,78,0,1,34,100,105,118,91,99,108,97,115,115,94,61,34,78,97,118,105,103,97,116,105,111,110,95,95,79,118,101,114,108,97,121,45,34,93,2,5,47,164,30,189,140,156,223,60,142,51,144,174,208,87,226,91,241,250,36,78,0,5,4,98,111,100,121,2,5,47,164,30,189,140,156,223,60,142,51,144,174,208,87,226,91,241,250,36,78,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,5,46,98,119,105,110,2,1,248,159,28,116,8,1,5,46,98,119,114,103,2,1,248,159,28,116,0,5,9,98,111,100,121,44,104,116,109,108,2,1,248,159,28,116,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,99,109,115,45,119,101,98,45,99,111,110,115,101,110,116,45,114,111,111,116,2,1,137,252,79,9,8,5,15,46,99,119,115,45,109,111,100,97,108,45,111,112,101,110,2,1,137,252,79,9,59,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,1,32,100,105,118,91,105,100,94,61,34,115,112,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,95,34,93,2,1,19,234,152,113,0,5,60,104,116,109,108,46,115,112,45,109,101,115,115,97,103,101,45,111,112,101,110,32,62,32,98,111,100,121,58,110,111,116,40,91,115,116,121,108,101,61,34,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,34,93,41,2,1,19,234,152,113,82,112,111,115,105,116,105,111,110,58,32,117,110,115,101,116,32,33,105,109,112,111,114,116,97,110,116,59,32,109,97,114,103,105,110,45,116,111,112,58,32,48,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,118,105,115,105,98,108,101,32,33,105,109,112,111,114,116,97,110,116,0,1,39,91,100,97,116,97,45,116,101,115,116,105,100,61,34,119,97,95,99,111,111,107,105,101,115,95,98,97,110,110,101,114,95,109,111,100,97,108,34,93,2,3,59,57,229,157,59,58,17,188,143,85,6,148,2,1,31,114,99,44,32,104,97,115,67,111,111,107,105,101,66,97,110,110,101,114,44,32,98,111,100,121,44,32,115,116,97,121,2,3,59,57,229,157,59,58,17,188,143,85,6,148,16,1,24,35,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,46,99,109,95,117,105,2,12,40,205,196,212,46,6,181,169,77,142,207,129,79,186,38,179,89,207,8,34,150,207,151,89,157,143,122,43,192,23,184,212,203,215,59,95,203,215,72,41,205,78,74,127,226,107,89,71,2,1,25,97,101,108,100,44,32,115,99,114,111,108,108,44,32,105,110,110,101,114,72,101,105,103,104,116,2,12,40,205,196,212,46,6,181,169,77,142,207,129,79,186,38,179,89,207,8,34,150,207,151,89,157,143,122,43,192,23,184,212,203,215,59,95,203,215,72,41,205,78,74,127,226,107,89,71,2,1,29,115,101,116,44,32,116,99,102,65,108,108,111,119,85,115,101,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,118,40,212,98,8,1,17,46,116,111,112,115,99,114,111,108,108,45,98,97,110,110,101,114,2,2,7,163,95,6,17,130,252,224,2,1,37,115,101,116,44,32,99,105,99,99,46,99,111,111,107,105,101,95,99,97,116,95,102,117,110,99,116,105,111,110,97,108,44,32,116,114,117,101,2,2,7,163,95,6,17,130,252,224,2,1,36,115,101,116,44,32,99,105,99,99,46,99,111,111,107,105,101,95,99,97,116,95,115,116,97,116,105,115,116,105,99,44,32,116,114,117,101,2,2,7,163,95,6,17,130,252,224,2,1,36,115,101,116,44,32,99,105,99,99,46,99,111,111,107,105,101,95,99,97,116,95,109,97,114,107,101,116,105,110,103,44,32,116,114,117,101,2,2,7,163,95,6,17,130,252,224,2,1,64,115,101,116,44,32,116,119,101,97,107,101,114,115,67,111,110,102,105,103,46,117,115,101,114,67,111,110,102,105,103,117,114,101,100,67,111,110,115,101,110,116,46,121,111,117,116,117,98,101,46,97,112,112,114,111,118,101,100,44,32,116,114,117,101,2,1,172,81,43,10,2,1,61,115,101,116,44,32,116,119,101,97,107,101,114,115,67,111,110,102,105,103,46,117,115,101,114,67,111,110,102,105,103,117,114,101,100,67,111,110,115,101,110,116,46,111,109,110,121,46,97,112,112,114,111,118,101,100,44,32,116,114,117,101,2,1,172,81,43,10,2,1,68,115,101,116,44,32,116,119,101,97,107,101,114,115,67,111,110,102,105,103,46,117,115,101,114,67,111,110,102,105,103,117,114,101,100,67,111,110,115,101,110,116,46,112,99,110,108,116,101,108,101,99,111,109,46,97,112,112,114,111,118,101,100,44,32,116,114,117,101,2,1,172,81,43,10,2,1,67,115,101,116,44,32,116,119,101,97,107,101,114,115,67,111,110,102,105,103,46,117,115,101,114,67,111,110,102,105,103,117,114,101,100,67,111,110,115,101,110,116,46,103,111,111,103,108,101,109,97,112,115,46,97,112,112,114,111,118,101,100,44,32,116,114,117,101,2,1,172,81,43,10,2,1,67,115,101,116,44,32,116,119,101,97,107,101,114,115,67,111,110,102,105,103,46,117,115,101,114,67,111,110,102,105,103,117,114,101,100,67,111,110,115,101,110,116,46,115,116,114,101,97,109,97,98,108,101,46,97,112,112,114,111,118,101,100,44,32,116,114,117,101,2,1,172,81,43,10,2,1,67,115,101,116,44,32,116,119,101,97,107,101,114,115,67,111,110,102,105,103,46,117,115,101,114,67,111,110,102,105,103,117,114,101,100,67,111,110,115,101,110,116,46,115,111,117,110,100,99,108,111,117,100,46,97,112,112,114,111,118,101,100,44,32,116,114,117,101,2,1,172,81,43,10,2,1,66,115,101,116,44,32,116,119,101,97,107,101,114,115,67,111,110,102,105,103,46,117,115,101,114,67,111,110,102,105,103,117,114,101,100,67,111,110,115,101,110,116,46,107,110,105,103,104,116,108,97,98,46,97,112,112,114,111,118,101,100,44,32,116,114,117,101,2,1,172,81,43,10,2,1,54,115,101,116,45,99,111,111,107,105,101,44,32,84,69,83,67,79,66,65,78,75,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,65,100,118,101,114,116,105,115,105,110,103,44,32,48,2,1,100,15,164,135,2,1,56,115,101,116,45,99,111,111,107,105,101,44,32,84,69,83,67,79,66,65,78,75,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,66,65,78,78,69,82,95,76,79,65,68,69,68,44,32,49,2,1,100,15,164,135,2,1,56,115,101,116,45,99,111,111,107,105,101,44,32,84,69,83,67,79,66,65,78,75,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,66,65,78,78,69,82,95,86,73,69,87,69,68,44,32,49,2,1,100,15,164,135,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,84,69,83,67,79,66,65,78,75,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,69,120,112,101,114,105,101,110,99,101,44,32,48,2,1,100,15,164,135,2,1,55,115,101,116,45,99,111,111,107,105,101,44,32,84,69,83,67,79,66,65,78,75,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,77,79,68,65,76,95,76,79,65,68,69,68,44,32,49,2,1,100,15,164,135,2,1,55,115,101,116,45,99,111,111,107,105,101,44,32,84,69,83,67,79,66,65,78,75,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,77,79,68,65,76,95,86,73,69,87,69,68,44,32,49,2,1,100,15,164,135,2,1,54,115,101,116,45,99,111,111,107,105,101,44,32,84,69,83,67,79,66,65,78,75,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,77,101,97,115,117,114,101,109,101,110,116,44,32,48,2,1,100,15,164,135,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,118,105,101,119,101,100,95,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,121,101,115,2,1,100,15,164,135,2,1,59,115,101,116,44,32,121,108,101,67,111,110,115,101,110,116,83,100,107,46,95,99,111,110,115,101,110,116,83,100,107,46,95,101,109,98,101,100,100,101,100,95,115,111,99,105,97,108,95,109,101,100,105,97,44,32,116,114,117,101,2,1,203,215,131,14,2,1,33,115,101,116,44,32,121,108,101,67,111,110,115,101,110,116,83,100,107,46,115,104,111,119,44,32,110,111,111,112,70,117,110,99,2,1,203,215,131,14,2,1,38,115,101,116,44,32,99,111,99,107,105,101,67,111,110,115,101,110,116,77,97,110,97,103,101,109,101,110,116,44,32,110,111,111,112,70,117,110,99,2,1,31,87,61,214,8,1,7,46,99,111,111,107,105,101,2,1,53,254,140,168,2,1,30,115,101,116,44,32,119,105,110,100,111,119,46,115,99,114,111,108,108,84,111,44,32,110,111,111,112,70,117,110,99,2,1,53,254,140,168,0,5,4,98,111,100,121,2,1,79,17,249,140,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,79,17,249,140,8,5,11,46,109,111,100,97,108,45,111,112,101,110,2,1,226,144,122,159,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,5,25,46,99,111,109,112,101,110,115,97,116,101,45,102,111,114,45,115,99,114,111,108,108,98,97,114,2,1,146,235,35,6,26,109,97,114,103,105,110,45,114,105,103,104,116,58,32,48,32,33,105,109,112,111,114,116,97,110,116,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,110,101,99,101,115,115,97,114,121,44,32,121,101,115,2,1,129,165,207,221,2,1,63,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,116,111,105,109,105,110,110,97,108,108,105,115,101,116,45,101,118,97,115,116,101,101,116,44,32,121,101,115,2,1,129,165,207,221,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,97,110,97,108,121,116,105,99,115,44,32,110,111,2,1,129,165,207,221,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,118,105,101,119,101,100,95,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,121,101,115,2,1,129,165,207,221,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,44,32,116,114,117,101,2,1,29,250,172,160,2,1,21,115,101,116,45,99,111,111,107,105,101,44,32,97,109,45,115,117,98,44,32,49,2,1,157,120,126,8,8,5,16,46,111,118,101,114,102,108,111,119,45,104,105,100,100,101,110,2,1,190,148,85,52,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,1,18,100,105,118,46,99,111,111,107,105,101,115,45,112,111,112,45,117,112,2,1,190,148,85,52,16,1,11,35,67,111,110,115,101,110,116,77,115,103,2,1,27,105,208,63,16,1,10,35,67,111,111,68,105,97,108,111,103,2,1,250,65,33,48,16,1,14,35,67,111,111,107,105,101,45,112,111,112,45,117,112,2,1,46,216,123,244,16,1,12,35,67,111,111,107,105,101,77,111,100,97,108,2,1,244,58,201,242,16,1,15,35,67,111,111,107,105,101,95,99,111,110,116,101,110,116,2,1,91,242,110,121,16,1,4,35,68,83,69,2,1,242,231,160,57,16,1,18,35,68,97,116,101,110,115,99,104,117,116,122,70,111,111,116,101,114,2,1,138,154,238,42,16,1,20,35,78,111,116,105,102,105,99,97,116,105,111,110,87,114,97,112,112,101,114,2,1,20,200,100,187,16,1,15,35,80,114,105,118,97,99,121,77,97,110,97,103,101,114,2,1,80,10,241,75,16,1,17,35,83,105,116,101,79,118,101,114,108,97,121,80,97,110,101,108,2,1,155,198,231,99,16,1,9,35,97,45,98,97,110,110,101,114,2,1,136,76,24,87,16,1,11,35,97,99,99,45,98,111,116,116,111,109,2,1,1,140,229,14,16,1,10,35,97,100,67,111,110,115,101,110,116,2,1,247,229,29,225,16,1,7,35,97,103,101,118,101,114,2,4,83,0,240,55,115,196,33,11,168,8,217,220,198,162,145,97,16,1,14,35,97,109,45,99,111,111,107,105,101,45,98,97,114,2,1,12,212,113,66,16,1,22,35,97,109,112,115,97,110,100,67,111,110,115,101,110,116,69,108,101,109,101,110,116,2,1,110,62,47,190,16,1,6,35,97,114,101,97,50,2,1,56,141,227,200,16,1,15,35,97,115,50,52,45,99,109,112,45,112,111,112,117,112,2,2,58,104,152,35,206,43,249,191,16,1,12,35,98,50,99,45,99,111,110,115,101,110,116,2,1,237,236,219,43,16,1,19,35,98,97,110,110,121,45,98,97,110,110,101,114,45,111,117,116,101,114,2,1,62,58,106,216,16,1,15,35,98,103,45,100,97,116,101,110,115,99,104,117,116,122,2,2,0,147,30,92,83,133,136,65,16,1,20,35,98,108,111,99,107,45,99,111,110,115,101,110,116,45,98,108,111,99,107,2,1,87,167,77,65,16,1,19,35,98,108,111,99,107,45,99,111,111,107,105,101,115,98,108,111,99,107,2,1,249,107,142,72,16,1,10,35,98,111,120,72,111,108,100,101,114,2,1,126,250,148,254,16,1,4,35,99,45,99,2,1,86,136,83,116,16,1,10,35,99,45,111,118,101,114,108,97,121,2,1,255,254,212,184,16,1,3,35,99,67,2,1,77,207,173,254,16,1,10,35,99,67,111,118,101,114,108,97,121,2,1,77,207,173,254,16,1,9,35,99,97,45,108,97,121,101,114,2,1,24,40,100,132,16,1,3,35,99,98,2,2,55,163,120,146,242,231,153,84,16,1,12,35,99,98,56,50,97,45,109,111,100,97,108,2,1,70,106,89,174,16,1,18,35,99,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,2,1,142,75,202,242,16,1,16,35,99,98,97,110,110,101,114,95,111,118,101,114,108,97,121,2,1,142,75,202,242,16,1,7,35,99,99,45,98,111,120,2,1,122,183,60,152,16,1,8,35,99,99,45,99,97,114,100,2,1,141,20,166,106,16,1,9,35,99,99,68,105,97,108,111,103,2,1,18,250,124,190,16,1,8,35,99,99,77,111,100,97,108,2,1,75,222,199,67,16,1,4,35,99,99,109,2,1,89,114,158,199,16,1,8,35,99,99,109,82,111,111,116,2,1,168,112,70,238,16,1,18,35,99,99,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,61,100,40,167,16,1,15,35,99,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,48,247,208,72,16,1,17,35,99,104,101,99,107,67,111,111,107,105,101,79,107,66,111,120,2,1,146,163,124,183,16,1,11,35,99,107,45,111,118,101,114,108,97,121,2,1,53,199,155,212,16,1,11,35,99,107,99,116,114,108,95,98,111,120,2,1,248,63,161,213,16,1,8,35,99,108,97,105,109,101,114,2,1,251,246,218,239,16,1,14,35,99,108,111,115,101,111,110,97,99,116,105,111,110,2,3,46,59,27,140,91,73,193,130,154,212,244,30,16,1,3,35,99,109,2,2,78,101,146,199,209,69,111,70,16,1,8,35,99,109,109,111,100,97,108,2,2,8,31,84,21,150,211,209,1,16,1,4,35,99,109,112,2,1,147,20,232,128,16,1,8,35,99,110,111,116,105,99,101,2,1,127,200,217,114,16,1,13,35,99,111,80,111,108,105,99,121,77,97,105,110,2,3,87,113,4,221,118,40,12,1,242,232,110,12,16,1,11,35,99,111,108,111,103,105,110,100,105,118,2,1,210,248,14,129,16,1,16,35,99,111,110,102,105,114,109,95,99,111,111,107,105,101,115,2,1,16,230,62,151,16,1,8,35,99,111,110,115,101,110,116,2,1,54,214,237,67,16,1,18,35,99,111,110,115,101,110,116,45,102,111,114,109,45,114,111,111,116,2,1,81,11,94,245,16,1,16,35,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,2,2,77,227,113,52,187,215,229,0,16,1,13,35,99,111,110,115,101,110,116,45,116,111,111,108,2,4,111,47,199,5,154,98,42,206,172,117,132,96,185,143,9,232,16,1,13,35,99,111,110,115,101,110,116,76,97,121,101,114,2,2,219,143,242,87,255,89,100,82,16,1,15,35,99,111,110,115,101,110,116,109,97,110,97,103,101,114,2,3,3,105,69,163,47,137,152,225,249,32,18,122,16,1,13,35,99,111,110,115,101,110,116,109,111,100,97,108,2,2,59,128,70,242,93,108,159,94,16,1,17,35,99,111,110,116,97,105,110,101,114,45,98,97,110,110,101,114,2,1,79,127,209,121,16,1,22,35,99,111,110,116,97,105,110,101,114,45,98,97,110,110,101,114,45,111,118,101,114,2,1,50,10,29,167,16,1,46,35,99,111,110,116,101,110,116,45,100,101,45,104,105,110,119,101,105,115,45,99,111,111,107,105,101,45,114,105,99,104,116,108,105,110,105,101,45,98,108,111,99,107,105,110,103,2,1,42,93,24,21,16,1,7,35,99,111,111,107,105,101,2,1,189,66,218,98,16,1,11,35,99,111,111,107,105,101,45,98,97,114,2,1,108,29,175,60,16,1,32,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,98,158,181,9,16,1,24,35,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,109,111,100,97,108,2,1,244,101,202,76,16,1,16,35,99,111,111,107,105,101,68,97,115,104,98,111,97,114,100,2,1,242,81,77,184,16,1,14,35,99,111,111,107,105,101,77,97,110,97,103,101,114,2,1,219,192,178,164,16,1,13,35,99,111,111,107,105,101,77,97,110,103,101,114,2,2,141,39,135,4,170,33,224,191,16,1,14,35,99,111,111,107,105,101,78,111,116,101,65,71,66,2,1,8,236,46,212,16,1,13,35,99,111,111,107,105,101,80,111,108,105,99,121,2,1,177,197,55,217,16,1,13,35,99,111,111,107,105,101,95,77,111,100,97,108,2,1,241,147,194,129,16,1,16,35,99,111,111,107,105,101,95,95,99,111,110,115,101,110,116,2,1,242,172,73,36,16,1,14,35,99,111,111,107,105,101,95,112,111,112,117,112,49,2,1,241,3,112,151,16,1,11,35,99,111,111,107,105,101,97,117,116,104,2,1,253,157,13,67,16,1,20,35,99,111,111,107,105,101,98,97,110,110,101,114,87,114,97,112,112,101,114,2,1,97,153,167,187,16,1,9,35,99,111,111,107,105,101,100,115,2,1,193,89,212,109,16,1,14,35,99,111,111,107,105,101,104,105,110,119,101,105,115,2,33,4,245,11,144,4,249,95,100,17,68,196,2,28,11,184,18,30,160,146,54,37,163,246,168,48,86,34,91,81,1,58,193,86,232,47,57,89,203,159,54,96,25,193,208,122,165,72,6,124,180,225,173,126,21,100,241,128,178,36,241,137,237,58,40,142,242,122,106,143,67,116,89,151,66,131,245,161,149,158,32,179,194,172,176,185,154,219,199,187,138,194,242,189,181,52,253,192,242,148,3,194,63,145,6,205,245,187,209,213,128,199,49,232,165,79,211,236,228,195,209,239,180,154,179,249,15,166,213,249,202,33,12,16,1,14,35,99,111,111,107,105,101,109,97,110,97,103,101,114,2,1,248,120,44,38,16,1,11,35,99,111,111,107,105,101,109,103,109,116,2,2,1,194,80,41,168,184,116,10,16,1,20,35,99,111,111,107,105,101,110,111,116,101,45,98,103,45,108,97,121,101,114,2,1,248,211,8,17,16,1,25,35,99,111,111,107,105,101,115,66,97,110,110,101,114,95,98,97,99,107,103,114,111,117,110,100,2,1,236,3,120,24,16,1,22,35,99,111,111,107,105,101,115,66,97,110,110,101,114,95,119,114,97,112,112,101,114,2,1,236,3,120,24,16,1,30,35,99,111,111,107,105,101,115,99,114,105,112,116,95,105,110,106,101,99,116,101,100,95,119,114,97,112,112,101,114,2,1,210,159,66,242,16,1,10,35,99,111,118,101,114,45,100,105,118,2,1,0,77,146,76,16,1,3,35,99,112,2,1,27,112,251,165,16,1,9,35,99,114,101,111,99,111,111,107,2,1,48,155,236,124,16,1,11,35,99,115,100,105,97,108,111,103,98,100,2,1,154,154,135,139,16,1,12,35,99,115,100,105,97,108,111,103,109,100,50,2,1,154,154,135,139,16,1,6,35,100,97,98,97,114,2,1,34,202,49,178,16,1,5,35,100,97,114,107,2,1,93,21,14,81,16,1,13,35,100,97,114,107,45,112,114,105,118,97,99,121,2,1,179,248,215,25,16,1,5,35,100,97,115,117,2,1,7,177,212,138,16,1,19,35,100,97,116,97,95,112,114,105,118,97,99,121,95,112,111,112,117,112,2,1,218,230,38,54,16,1,20,35,100,97,116,101,110,115,99,104,117,116,122,66,97,108,103,101,78,101,119,2,1,33,238,101,114,16,1,7,35,100,101,99,107,101,114,2,1,101,179,191,120,16,1,15,35,100,105,118,77,111,100,97,108,83,99,114,101,101,110,2,2,29,193,5,75,224,201,59,2,16,1,16,35,100,105,118,99,111,111,107,105,101,112,111,108,105,99,121,2,1,56,60,117,37,16,1,20,35,100,115,99,111,111,107,105,101,98,97,114,95,99,111,110,115,101,110,116,2,1,233,46,195,186,16,1,6,35,100,115,103,118,111,2,5,60,13,128,150,138,192,212,39,187,137,22,139,204,50,244,88,230,196,220,82,16,1,12,35,100,115,103,118,111,45,97,108,101,114,116,2,1,38,9,24,20,16,1,14,35,100,115,103,118,111,95,98,103,108,97,121,101,114,2,1,60,13,128,150,16,1,11,35,101,108,79,68,49,81,66,48,48,79,2,1,84,137,61,213,16,1,14,35,101,112,114,105,118,97,99,121,77,111,100,97,108,2,1,217,151,132,155,16,1,5,35,102,97,100,101,2,1,213,243,20,127,16,1,11,35,102,98,109,95,103,97,95,100,108,103,2,1,13,179,107,6,16,1,4,35,102,111,103,2,1,186,87,57,242,16,1,7,35,102,111,111,116,101,114,2,1,238,4,112,103,16,1,13,35,103,108,45,116,111,112,98,97,114,45,98,103,2,1,79,68,204,253,16,1,21,35,103,111,111,103,108,101,45,115,112,108,97,115,104,45,115,99,114,101,101,110,2,1,74,118,142,137,16,1,8,35,103,114,97,121,111,117,116,2,2,87,181,10,242,236,203,209,7,16,1,7,35,103,114,111,119,108,115,2,1,21,72,68,241,16,1,9,35,104,105,110,119,101,105,115,101,2,5,83,40,125,62,178,116,116,24,226,48,52,152,233,137,175,121,235,244,120,104,16,1,4,35,104,109,99,2,8,12,82,251,177,93,186,35,108,126,58,58,197,150,30,119,164,182,238,102,154,216,24,223,245,218,36,79,242,222,72,176,69,16,1,18,35,105,109,112,111,114,116,97,110,116,77,101,115,115,97,103,101,115,2,1,28,252,4,216,16,1,36,35,105,110,99,114,101,100,105,98,108,101,45,99,111,111,107,105,101,45,102,117,114,110,97,99,101,45,103,101,110,101,114,97,116,111,114,2,1,208,19,190,5,16,1,8,35,105,110,102,111,66,97,114,2,1,245,213,35,49,16,1,13,35,105,110,102,111,95,99,111,111,107,105,101,115,2,1,117,77,24,0,16,1,8,35,105,110,102,111,98,97,114,2,2,10,190,143,207,69,96,211,54,16,1,13,35,106,107,106,97,122,122,87,105,100,103,101,116,2,1,5,166,97,73,16,1,8,35,106,109,45,104,101,97,100,2,1,118,136,56,231,16,1,12,35,107,97,114,109,97,83,112,108,97,115,104,2,1,194,161,199,146,16,1,13,35,107,98,45,99,111,110,116,97,105,110,101,114,2,1,62,249,159,254,16,1,5,35,107,101,107,115,2,1,34,205,127,22,16,1,13,35,107,101,107,116,45,111,118,101,114,108,97,121,2,1,160,169,220,221,16,1,13,35,108,105,103,104,116,45,98,111,120,45,98,103,2,1,71,91,216,127,16,1,11,35,108,111,97,100,101,114,45,110,101,119,2,1,59,234,236,185,16,1,5,35,108,111,99,107,2,1,42,1,20,206,16,1,10,35,108,111,103,103,101,100,98,97,114,2,1,13,84,147,70,16,1,16,35,108,116,117,114,80,97,103,101,79,118,101,114,108,97,121,2,1,148,202,14,75,16,1,5,35,109,97,115,107,2,1,172,137,235,95,16,1,15,35,109,97,116,111,109,111,45,119,114,97,112,112,101,114,2,1,58,120,247,112,16,1,10,35,109,98,50,52,107,108,97,114,111,2,1,79,41,240,135,16,1,38,35,109,101,100,105,97,109,101,101,116,115,70,97,99,101,98,111,111,107,80,105,120,101,108,45,45,110,111,116,105,102,105,99,97,116,105,111,110,2,2,0,65,121,122,175,111,196,198,16,1,19,35,109,101,115,115,97,103,101,115,45,99,111,110,116,97,105,110,101,114,2,1,114,167,91,59,16,1,16,35,109,111,100,97,108,66,97,99,107,103,114,111,117,110,100,2,2,162,3,246,175,182,22,180,184,16,1,22,35,109,111,100,97,108,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,2,2,162,3,246,175,182,22,180,184,16,1,15,35,109,111,100,97,108,99,111,110,116,97,105,110,101,114,2,1,123,96,103,218,16,1,7,35,109,117,102,102,105,110,2,1,65,123,58,148,16,1,18,35,109,121,95,112,114,105,118,97,99,121,95,112,111,108,105,99,121,2,1,58,11,57,238,16,1,15,35,110,97,99,99,45,99,111,110,116,97,105,110,101,114,2,1,132,201,12,145,16,1,13,35,110,97,99,99,45,111,118,101,114,108,97,121,2,1,132,201,12,145,16,1,5,35,110,111,116,101,2,2,2,85,69,73,98,136,88,242,16,1,16,35,110,111,116,105,102,105,99,97,116,105,111,110,66,97,114,2,2,21,247,150,154,123,215,49,201,16,1,22,35,110,111,116,105,102,105,99,97,116,105,111,110,66,97,114,95,109,111,100,97,108,2,2,21,247,150,154,123,215,49,201,16,1,7,35,110,111,116,105,102,121,2,1,12,5,70,20,16,1,8,35,111,112,116,73,110,73,100,2,1,127,32,51,113,16,1,5,35,112,97,103,101,2,1,4,252,252,146,16,1,15,35,112,97,103,101,95,101,118,99,111,110,115,101,110,116,2,1,181,80,36,56,16,1,12,35,112,97,114,107,116,101,97,109,99,107,115,2,1,110,91,42,226,16,1,5,35,112,99,100,99,2,1,40,146,38,173,16,1,7,35,112,111,108,105,99,121,2,1,74,177,138,190,16,1,3,35,112,112,2,1,207,245,225,254,16,1,18,35,112,114,105,118,97,99,121,45,99,111,110,116,97,105,110,101,114,2,5,8,55,239,21,75,213,20,183,164,110,47,126,192,180,94,217,195,226,246,70,16,1,17,35,112,114,105,118,97,99,121,45,100,105,115,108,97,109,101,114,2,1,238,120,130,252,16,1,13,35,112,114,105,118,97,99,121,45,105,110,102,111,2,1,210,152,117,31,16,1,19,35,112,114,105,118,97,99,121,45,112,114,111,116,101,99,116,105,111,110,2,1,68,14,247,85,16,1,17,35,112,114,105,118,97,99,121,67,111,110,116,97,105,110,101,114,2,1,253,79,232,194,16,1,12,35,112,114,105,118,97,99,121,67,116,114,108,2,1,205,243,204,225,16,1,23,35,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,119,114,97,112,112,101,114,2,1,231,109,233,161,16,1,41,35,114,97,104,109,101,110,95,117,101,98,101,114,95,100,105,101,95,103,97,110,122,101,95,115,101,105,116,101,95,102,117,101,114,95,99,111,111,107,105,101,2,2,130,128,140,121,198,240,35,48,16,1,56,35,114,97,104,109,101,110,95,117,101,98,101,114,95,100,105,101,95,103,97,110,122,101,95,115,101,105,116,101,95,114,97,104,109,101,110,95,102,117,101,114,95,99,111,111,107,105,101,95,97,98,102,114,97,103,101,2,2,130,128,140,121,198,240,35,48,16,1,5,35,114,99,112,109,2,1,157,60,60,206,16,1,15,35,114,103,112,100,45,97,115,107,45,112,111,112,105,110,2,1,189,37,151,194,16,1,13,35,115,98,45,99,111,110,116,97,105,110,101,114,2,1,68,17,232,28,16,1,8,35,115,107,45,105,110,102,111,2,1,171,158,173,232,16,1,14,35,115,111,99,105,97,108,45,111,112,116,45,105,110,2,1,241,132,156,16,16,1,18,35,115,111,102,116,77,101,115,115,97,103,101,115,45,108,105,115,116,2,2,134,173,166,127,218,52,180,90,16,1,7,35,115,111,108,98,111,120,2,1,239,33,50,118,16,1,15,35,115,112,108,97,115,104,45,99,111,110,115,101,110,116,2,1,188,109,188,147,16,1,13,35,115,116,105,99,107,121,70,111,111,116,101,114,2,1,251,139,79,172,16,1,15,35,115,116,111,114,97,103,101,45,110,111,116,105,99,101,2,1,45,194,71,109,16,1,19,35,116,102,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,43,18,158,18,16,1,31,35,116,102,109,95,100,115,103,118,111,95,100,105,115,99,108,97,105,109,101,114,95,99,111,110,116,97,105,110,101,114,2,1,242,120,153,169,16,1,20,35,116,111,111,108,115,95,99,111,110,115,101,110,116,95,112,97,110,101,108,2,1,40,155,125,197,16,1,47,35,116,111,112,45,110,111,116,105,102,105,99,97,116,105,111,110,95,97,99,99,101,112,116,45,109,97,99,104,109,105,99,104,119,101,103,45,103,117,105,100,101,108,105,110,101,115,2,1,82,23,199,141,16,1,14,35,116,111,115,95,112,112,95,117,112,100,97,116,101,2,1,182,69,212,21,16,1,14,35,116,114,97,99,107,105,110,103,45,105,110,102,111,2,1,125,173,242,194,16,1,17,35,116,114,97,99,107,105,110,103,45,109,101,115,115,97,103,101,2,1,21,36,47,36,16,1,16,35,116,114,97,99,107,105,110,103,67,111,110,115,101,110,116,2,1,0,128,172,255,16,1,7,35,116,117,105,45,99,99,2,1,165,193,87,239,16,1,9,35,117,99,97,45,105,110,102,111,2,1,185,163,5,0,16,1,15,35,118,105,110,101,103,97,114,45,98,111,116,116,108,101,2,2,117,252,147,120,154,141,13,69,16,1,19,35,119,100,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,229,177,230,238,16,1,5,35,119,104,99,109,2,1,201,91,59,243,16,1,19,35,119,114,50,52,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,175,69,41,163,16,1,14,35,119,119,119,115,99,104,117,116,122,95,100,105,118,2,1,58,87,155,62,16,1,6,35,121,99,119,66,103,2,1,54,233,71,81,16,1,6,35,121,99,119,77,111,2,1,54,233,71,81,8,1,8,46,65,108,105,103,110,101,114,2,1,48,104,143,137,8,1,14,46,66,97,110,110,101,114,87,114,97,112,112,101,114,2,1,213,71,167,220,8,1,37,46,67,111,110,115,101,110,116,66,97,110,110,101,114,95,108,111,99,97,116,105,111,110,70,105,120,116,117,114,101,95,95,118,80,95,97,52,2,1,146,165,216,217,8,1,12,46,67,111,110,115,101,110,116,72,105,110,116,2,1,16,28,88,191,8,1,6,46,68,83,71,86,79,2,1,20,205,120,249,8,1,6,46,68,83,98,111,120,2,10,0,14,14,250,0,154,221,218,6,247,101,140,10,93,89,240,84,22,179,3,114,232,27,239,134,241,130,122,154,196,43,253,179,101,50,78,227,234,226,118,8,1,4,46,72,95,115,2,1,230,165,91,55,8,1,26,46,72,114,83,121,115,45,71,105,112,115,45,105,66,111,120,68,105,118,79,118,101,114,108,97,121,2,1,209,168,0,197,8,1,6,46,77,111,100,97,108,2,2,90,177,195,186,196,173,199,111,8,1,16,46,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,2,1,9,61,12,127,8,1,17,46,80,111,112,117,112,79,110,84,111,112,83,99,114,101,101,110,2,1,243,55,38,102,8,1,20,46,82,101,97,99,116,77,111,100,97,108,95,95,79,118,101,114,108,97,121,2,1,157,224,211,217,8,1,35,46,83,101,103,109,101,110,116,77,97,110,97,103,101,114,66,97,110,110,101,114,95,98,97,110,110,101,114,95,95,100,101,70,117,87,2,1,220,27,121,223,8,1,16,46,84,114,97,99,107,105,110,103,67,111,110,102,105,114,109,2,1,85,21,117,185,8,1,5,46,87,57,113,67,2,1,127,63,147,4,8,1,17,46,95,49,49,86,83,56,32,62,32,46,95,50,111,98,121,89,2,8,20,139,148,117,76,16,167,120,187,31,253,180,210,167,50,207,215,138,182,77,218,122,200,127,233,222,152,84,246,23,192,236,8,1,7,46,95,49,50,100,57,55,2,3,76,16,167,120,78,251,237,6,142,247,116,181,8,1,9,46,95,49,55,114,116,108,116,119,2,1,156,221,230,176,8,1,24,46,95,49,73,66,80,70,54,75,54,109,85,67,73,79,95,114,45,109,56,48,115,51,82,2,1,220,27,121,223,8,1,7,46,95,50,109,109,121,98,2,2,78,251,237,6,142,247,116,181,8,1,8,46,95,95,98,97,56,52,51,2,1,223,226,156,240,8,1,14,46,95,115,109,95,99,111,110,116,97,105,110,101,114,2,1,14,157,126,213,8,1,10,46,97,45,111,118,101,114,108,97,121,2,1,147,80,65,77,8,1,23,46,97,99,99,101,112,116,95,99,111,111,107,105,101,115,95,119,114,97,112,112,101,114,2,1,70,101,116,87,8,1,7,46,97,99,116,105,118,101,2,1,38,214,82,239,8,1,12,46,97,108,101,114,116,98,97,110,110,101,114,2,3,103,146,242,165,150,162,249,0,228,136,95,66,8,1,27,46,97,108,109,45,45,105,115,45,109,117,101,104,108,98,97,99,104,101,114,45,99,111,111,107,105,101,2,1,238,97,105,42,8,1,29,46,97,109,103,100,112,114,99,111,111,107,105,101,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,2,27,125,105,29,109,154,2,254,8,1,22,46,97,109,103,100,112,114,106,115,45,98,97,114,45,116,101,109,112,108,97,116,101,2,1,242,231,25,163,8,1,14,46,97,110,105,109,97,116,101,95,95,110,111,110,101,2,4,15,26,252,36,36,11,132,185,118,187,0,133,185,223,123,242,8,1,13,46,97,110,110,111,117,110,99,101,109,101,110,116,2,1,185,137,232,56,8,1,29,46,97,112,112,45,109,101,115,115,97,103,101,45,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,2,1,7,242,93,166,8,1,12,46,97,117,116,111,112,114,105,118,97,99,121,2,1,136,3,47,42,8,1,8,46,97,118,103,45,98,97,114,2,1,81,160,165,66,8,1,8,46,98,45,109,111,100,97,108,2,2,152,170,100,183,166,60,144,224,8,1,25,46,98,97,98,45,109,111,100,117,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,242,231,112,109,8,1,16,46,98,97,99,107,100,114,111,112,45,102,105,108,116,101,114,2,1,251,56,144,2,8,1,16,46,98,97,99,107,103,114,111,117,110,100,45,102,97,100,101,2,2,41,34,39,200,102,6,119,19,8,1,8,46,98,97,110,100,101,97,117,2,1,193,199,103,6,8,1,15,46,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,1,183,221,57,69,8,1,11,46,98,97,110,110,101,114,95,97,99,107,2,1,126,21,87,226,8,1,14,46,98,103,45,111,112,97,99,105,116,121,45,53,48,2,2,105,177,42,108,147,78,221,85,8,1,12,46,98,103,45,119,103,45,109,111,100,97,108,2,2,129,52,16,112,212,65,161,237,8,1,6,46,98,103,68,105,109,2,1,196,84,172,152,8,1,10,46,98,108,97,99,107,66,111,100,121,2,2,108,35,55,33,172,102,23,222,8,1,15,46,98,108,111,99,107,45,109,101,115,115,97,103,101,115,2,1,217,226,214,248,8,1,8,46,98,108,117,101,45,98,103,2,2,27,102,182,59,142,8,48,238,8,1,23,46,98,108,117,101,108,105,110,101,45,99,111,110,116,101,110,116,45,112,111,112,117,112,2,1,92,111,103,140,8,1,19,46,98,108,117,114,45,101,102,102,101,107,116,45,99,111,111,107,105,101,2,1,235,144,173,89,8,1,7,46,98,110,67,113,103,80,2,2,86,47,74,241,170,30,225,129,8,1,19,46,98,115,103,45,104,101,97,100,101,114,45,119,97,114,110,105,110,103,2,1,226,183,220,159,8,1,23,46,98,117,108,116,104,97,117,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,208,81,106,111,8,1,7,46,98,118,107,110,86,108,2,1,138,143,131,24,8,1,7,46,98,120,105,118,71,69,2,1,60,54,186,229,8,1,7,46,98,122,84,121,72,90,2,1,170,30,225,129,8,1,8,46,99,45,97,108,101,114,116,2,1,235,48,135,97,8,1,22,46,99,45,100,105,115,99,108,97,105,109,101,114,45,45,100,101,102,97,117,108,116,2,1,252,254,203,180,8,1,9,46,99,45,119,105,110,100,111,119,2,1,214,173,72,197,8,1,9,46,99,97,66,97,110,110,101,114,2,1,237,27,5,213,8,1,3,46,99,98,2,1,15,186,187,199,8,1,10,46,99,99,45,98,97,110,110,101,114,2,1,13,174,128,78,8,1,16,46,99,99,45,105,110,102,111,45,45,99,108,111,115,101,100,2,1,26,167,43,149,8,1,18,46,99,99,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,221,89,126,10,8,1,10,46,99,99,45,115,99,114,101,101,110,2,1,6,83,5,145,8,1,11,46,99,99,95,111,118,101,114,108,97,121,2,1,46,83,51,188,8,1,9,46,99,99,109,45,114,111,111,116,2,3,231,109,8,88,246,218,161,114,248,126,169,199,8,1,17,46,99,101,45,99,111,111,107,105,101,99,111,110,115,101,110,116,2,1,96,149,184,184,8,1,24,46,99,101,95,114,115,99,101,95,111,110,101,111,95,102,105,120,101,100,95,110,111,116,101,2,1,39,121,212,106,8,1,8,46,99,107,79,117,116,101,114,2,1,149,157,209,202,8,1,6,46,99,107,109,115,103,2,1,246,16,236,101,8,1,3,46,99,109,2,1,211,32,119,221,8,1,16,46,99,109,45,119,112,45,99,111,110,116,97,105,110,101,114,2,1,127,123,65,25,8,1,7,46,99,109,79,122,71,78,2,1,26,201,231,88,8,1,7,46,99,109,110,115,116,114,2,1,111,177,222,212,8,1,13,46,99,109,110,115,116,114,45,111,117,116,101,114,2,1,27,114,123,131,8,1,14,46,99,109,112,45,99,111,110,116,97,105,110,101,114,2,1,99,9,63,237,8,1,14,46,99,109,112,95,99,111,110,116,97,105,110,101,114,2,1,228,154,11,168,8,1,32,46,99,111,108,45,49,50,32,62,32,100,105,118,32,62,32,100,105,118,32,62,32,46,99,111,110,116,97,105,110,101,114,2,1,227,211,42,178,8,1,34,46,99,111,109,112,111,110,101,110,116,45,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,99,111,110,115,101,110,116,2,1,27,105,93,111,8,1,19,46,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,98,111,120,2,1,4,222,41,16,8,1,13,46,99,111,110,115,101,110,116,45,119,114,97,112,2,3,19,129,84,162,65,95,235,187,126,187,111,245,8,1,23,46,99,111,110,115,101,110,116,70,111,114,109,95,95,99,111,110,116,97,105,110,101,114,2,3,0,61,97,178,163,14,144,63,165,109,64,111,8,1,12,46,99,111,110,115,101,110,116,95,98,97,114,2,1,217,174,62,117,8,1,20,46,99,111,110,115,101,110,116,95,98,111,120,95,119,114,97,112,112,101,114,2,1,71,127,108,98,8,1,11,46,99,111,110,115,101,110,116,98,97,114,2,1,148,188,57,9,8,1,24,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,99,111,110,115,101,110,116,2,1,143,103,237,204,8,1,23,46,99,111,110,116,97,105,110,101,114,45,102,105,120,101,100,45,99,111,111,107,105,101,2,1,220,244,84,42,8,1,4,46,99,111,111,2,1,254,121,15,117,8,1,8,46,99,111,111,45,99,111,110,2,1,130,235,183,1,8,1,10,46,99,111,111,66,117,98,98,108,101,2,1,27,32,90,49,8,1,14,46,99,111,111,99,107,105,101,95,112,111,108,105,121,2,1,36,231,237,255,8,1,30,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,111,118,101,114,108,97,121,95,95,83,73,88,77,77,2,1,136,150,38,175,8,1,17,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,105,76,229,41,8,1,12,46,99,111,111,107,105,101,45,105,110,102,111,2,1,27,119,199,13,8,1,23,46,99,111,111,107,105,101,45,105,110,113,117,105,114,121,45,119,114,97,112,112,101,114,2,2,76,72,70,129,247,94,56,134,8,1,24,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,95,95,111,118,101,114,108,97,121,2,1,242,231,45,42,8,1,29,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,98,97,99,107,103,114,111,117,110,100,2,1,54,44,80,83,8,1,14,46,99,111,111,107,105,101,45,115,104,97,100,111,119,2,1,181,22,217,135,8,1,19,46,99,111,111,107,105,101,66,97,110,110,101,114,95,115,116,97,114,116,2,1,158,210,119,3,8,1,14,46,99,111,111,107,105,101,67,111,110,116,101,110,116,2,1,21,74,103,27,8,1,23,46,99,111,111,107,105,101,95,111,112,116,95,105,110,45,45,119,114,97,112,112,101,114,2,3,19,94,243,204,162,255,188,42,164,253,251,180,8,1,17,46,99,111,111,107,105,101,102,105,114,115,116,45,114,111,111,116,2,1,215,169,91,35,8,1,19,46,99,111,111,107,105,101,115,45,99,111,110,102,105,114,109,45,98,103,2,1,81,122,159,253,8,1,28,46,99,111,111,107,105,101,115,45,99,111,110,102,105,114,109,45,98,103,45,98,97,99,107,100,114,111,112,2,1,81,122,159,253,8,1,11,46,99,111,114,101,45,109,111,100,97,108,2,1,200,79,100,232,8,1,12,46,99,115,109,95,119,114,97,112,112,101,114,2,1,4,214,13,135,8,1,22,46,99,115,115,45,49,105,101,110,111,121,56,46,101,49,103,105,50,97,97,108,50,2,1,59,242,243,242,8,1,18,46,99,115,115,45,49,116,98,118,104,114,110,46,106,115,115,56,54,2,1,226,249,254,134,8,1,11,46,99,115,115,45,106,121,97,114,55,121,2,1,177,94,239,52,8,1,6,46,99,119,95,111,118,2,2,9,81,194,163,31,244,213,3,8,1,8,46,100,45,98,108,111,99,107,2,1,144,20,131,189,8,1,7,46,100,83,87,113,102,107,2,1,162,252,118,75,8,1,5,46,100,97,114,107,2,1,5,166,97,73,8,1,13,46,100,97,114,107,101,110,45,108,97,121,101,114,2,8,0,246,124,116,35,65,149,31,121,222,247,166,142,22,0,196,168,4,241,19,203,251,141,251,215,232,232,14,241,19,191,102,8,1,13,46,100,97,116,97,45,99,111,110,115,101,110,116,2,1,30,98,119,104,8,1,32,46,100,97,116,97,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,45,99,111,110,116,97,105,110,101,114,2,1,178,141,242,12,8,1,16,46,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,2,1,247,224,231,118,8,1,9,46,100,97,116,97,112,114,105,118,2,1,164,160,209,48,8,1,15,46,100,97,116,97,112,114,111,116,101,99,116,105,111,110,2,3,65,219,104,115,69,246,5,205,130,98,6,164,8,1,12,46,100,97,116,101,110,115,99,104,117,116,122,2,1,214,223,95,100,8,1,9,46,100,98,98,45,103,100,112,114,2,4,15,80,169,222,181,167,125,118,236,111,103,128,242,231,156,15,8,1,13,46,100,100,45,99,108,45,119,105,110,100,111,119,2,1,92,84,157,206,8,1,11,46,100,102,109,95,99,111,111,107,105,101,2,1,127,240,2,146,8,1,17,46,100,105,97,108,111,103,45,99,111,110,116,97,105,110,101,114,2,1,11,241,34,165,8,1,16,46,100,105,97,108,111,103,45,110,111,45,99,108,111,115,101,2,1,253,212,143,84,8,1,7,46,100,105,109,109,101,114,2,1,246,12,176,107,8,1,28,46,100,105,115,97,98,108,101,95,112,97,103,101,95,98,97,99,107,103,114,111,117,110,100,95,100,105,118,2,1,218,230,38,54,8,1,21,46,100,105,115,99,108,97,105,109,101,114,45,99,111,109,112,111,110,101,110,116,2,1,146,63,218,104,8,1,5,46,100,105,118,98,2,1,31,113,222,243,8,1,12,46,100,114,97,119,101,114,45,99,111,111,107,2,1,44,117,81,36,8,1,6,46,100,115,103,118,111,2,1,69,241,206,198,8,1,10,46,100,118,99,111,111,107,105,101,115,2,1,157,138,104,68,8,1,16,46,100,119,108,105,103,104,116,98,111,120,45,119,114,97,112,2,4,110,25,31,198,170,71,3,124,171,88,93,21,217,172,50,223,8,1,9,46,101,51,118,52,119,108,105,48,2,1,137,108,61,205,8,1,20,46,101,97,115,121,78,111,116,105,102,105,99,97,116,105,111,110,66,99,107,2,1,196,84,172,152,8,1,9,46,101,99,101,55,103,109,119,50,2,1,245,80,177,65,8,1,10,46,101,112,112,45,109,111,100,97,108,2,1,64,73,31,205,8,1,9,46,101,117,99,48,114,113,50,52,2,1,165,105,92,52,8,1,12,46,101,117,102,95,111,118,101,114,108,97,121,2,1,104,196,58,73,8,1,5,46,102,51,99,99,2,1,181,129,253,243,8,1,7,46,102,65,97,108,72,81,2,1,146,213,208,87,8,1,7,46,102,84,119,103,106,115,2,1,237,89,133,183,8,1,11,46,102,97,100,101,46,109,111,100,97,108,2,1,245,239,119,126,8,1,10,46,102,99,95,98,97,110,110,101,114,2,1,146,195,49,204,8,1,17,46,102,99,99,45,99,111,111,107,105,101,45,109,111,100,97,108,2,1,99,138,218,126,8,1,10,46,102,105,114,115,116,108,105,110,101,2,1,149,195,203,122,8,1,9,46,102,108,111,97,116,105,110,103,2,1,237,184,209,83,8,1,13,46,102,111,111,116,101,114,45,108,101,103,97,108,2,1,174,102,240,58,8,1,11,46,102,111,114,109,45,100,115,103,118,111,2,1,28,85,156,60,8,1,13,46,102,114,45,99,45,109,101,115,115,97,103,101,2,1,198,219,25,113,8,1,13,46,102,114,115,95,95,111,118,101,114,108,97,121,2,1,75,161,9,1,8,1,7,46,103,65,114,122,85,104,2,1,85,110,233,94,8,1,7,46,103,73,82,102,66,78,2,2,86,47,74,241,170,30,225,129,8,1,7,46,103,84,72,121,121,82,2,1,93,171,88,41,8,1,7,46,103,90,84,76,117,74,2,1,206,21,253,188,8,1,11,46,103,97,116,101,119,97,121,66,97,114,2,1,177,169,171,100,8,1,17,46,103,97,116,101,119,97,121,67,111,110,116,97,105,110,101,114,2,1,0,87,0,241,8,1,19,46,103,97,116,101,119,97,121,87,105,110,100,111,119,83,104,97,100,101,2,1,0,87,0,241,8,1,14,46,103,101,100,101,112,105,97,114,45,105,110,102,111,2,2,105,172,234,160,147,50,148,44,8,1,13,46,103,101,119,101,114,98,101,45,105,110,102,111,2,1,32,32,11,95,8,1,7,46,103,104,111,118,105,72,2,1,138,91,253,43,8,1,10,46,103,108,97,115,115,112,97,110,101,2,1,25,182,69,65,8,1,18,46,103,108,111,98,97,108,45,98,97,99,107,103,114,111,117,110,100,2,1,63,146,125,246,8,1,27,46,103,111,111,100,104,111,111,100,45,99,111,109,112,111,110,101,110,116,115,95,95,110,65,78,66,85,2,1,127,55,92,201,8,1,20,46,103,111,118,103,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,94,8,192,166,8,1,8,46,103,122,108,68,65,45,68,2,1,170,30,225,129,8,1,10,46,104,99,45,110,111,116,105,99,101,2,2,115,119,142,150,255,232,39,42,8,1,14,46,104,101,97,100,101,114,111,118,101,114,108,97,121,2,1,184,70,26,212,8,1,8,46,104,105,110,119,101,105,115,2,1,122,242,74,113,8,1,27,46,104,121,108,111,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,103,101,110,101,114,97,108,2,1,173,133,86,68,8,1,7,46,105,85,89,122,99,115,2,1,60,54,186,229,8,1,18,46,105,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,7,242,93,166,8,1,20,46,105,110,50,45,109,111,100,97,108,95,95,98,108,97,99,107,98,111,120,2,10,7,219,48,4,25,182,227,231,27,102,92,40,81,69,210,191,105,205,59,206,116,124,164,32,182,121,167,160,239,151,4,168,242,231,151,64,252,194,21,166,8,1,30,46,105,110,100,101,120,45,109,111,100,117,108,101,45,45,98,97,99,107,100,114,111,112,45,45,51,68,88,53,118,2,1,234,20,12,47,8,1,29,46,105,110,100,101,120,45,109,111,100,117,108,101,45,45,119,114,97,112,112,101,114,45,45,53,80,104,113,70,2,1,234,20,12,47,8,1,16,46,105,110,102,111,98,97,114,45,119,114,97,112,112,101,114,2,20,3,69,159,204,8,44,242,101,14,91,175,66,20,87,120,206,27,171,80,197,29,127,123,81,70,112,132,132,86,48,61,117,115,90,50,245,127,167,200,196,127,188,251,30,133,137,109,169,163,151,226,180,179,136,250,138,199,216,58,200,220,46,17,107,222,94,148,92,234,97,97,105,237,60,211,15,240,89,60,48,8,1,32,46,105,110,115,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,99,111,110,116,97,105,110,101,114,2,1,255,61,81,105,8,1,12,46,105,110,115,45,110,111,116,105,99,101,115,2,1,228,58,76,75,8,1,10,46,105,115,45,97,99,116,105,118,101,2,1,116,166,101,175,8,1,8,46,105,119,45,99,99,45,119,2,1,115,25,186,167,8,1,7,46,105,119,87,101,85,80,2,1,65,49,248,77,8,1,27,46,105,122,105,84,111,97,115,116,45,119,114,97,112,112,101,114,45,116,111,112,67,101,110,116,101,114,2,1,73,204,217,116,8,1,7,46,106,89,99,99,88,99,2,1,135,64,70,150,8,1,34,46,106,109,103,45,103,111,111,103,108,101,109,97,112,115,45,100,115,103,118,111,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,24,236,83,151,8,1,10,46,106,115,45,45,109,111,100,97,108,2,1,10,184,29,33,8,1,18,46,106,115,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,2,1,40,115,70,126,8,1,28,46,106,115,45,102,108,97,115,104,45,109,101,115,115,97,103,101,115,45,99,111,110,116,97,105,110,101,114,2,1,177,66,240,200,8,1,27,46,106,115,45,102,108,97,115,104,95,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,2,1,27,117,35,240,8,1,11,46,106,115,45,112,100,45,109,97,105,110,2,1,116,156,68,234,8,1,7,46,106,115,115,49,55,56,2,1,103,64,81,188,8,1,36,46,106,116,99,45,99,111,109,112,111,110,101,110,116,45,106,116,99,45,99,111,111,107,105,101,45,109,97,110,97,103,101,109,101,110,116,2,1,178,125,83,31,8,1,17,46,107,105,99,107,45,107,99,109,45,111,118,101,114,108,97,121,2,1,39,40,137,48,8,1,19,46,107,105,116,45,115,116,105,99,107,121,45,112,114,105,118,97,99,121,2,1,58,151,201,146,8,1,18,46,107,115,100,45,103,100,112,114,45,115,101,116,116,105,110,103,115,2,1,149,191,154,22,8,1,14,46,108,45,110,101,119,115,45,104,101,97,100,101,114,2,1,150,245,101,11,8,1,12,46,108,101,103,97,108,65,100,118,105,99,101,2,2,6,95,234,233,28,44,194,96,8,1,9,46,108,105,103,104,116,98,111,120,2,1,121,222,247,166,8,1,25,46,108,105,103,104,116,98,111,120,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,3,35,65,149,31,215,232,232,14,241,19,191,102,8,1,19,46,108,105,109,122,95,99,111,111,107,105,101,67,111,110,115,101,110,116,2,1,226,86,70,97,8,1,7,46,108,108,101,77,65,100,2,1,145,3,31,241,8,1,7,46,108,111,97,100,101,114,2,1,166,60,250,171,8,1,11,46,108,115,97,45,100,105,97,108,111,103,2,1,115,111,191,38,8,1,17,46,109,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,28,14,170,227,8,1,12,46,109,45,99,111,111,107,105,101,98,97,114,2,1,147,80,65,77,8,1,15,46,109,97,105,110,45,109,111,100,97,108,45,100,105,118,2,1,124,126,220,7,8,1,10,46,109,97,105,110,115,116,105,99,107,2,1,138,53,20,105,8,1,20,46,109,99,100,45,100,105,97,108,111,103,45,98,97,99,107,100,114,111,112,2,1,23,57,92,189,8,1,17,46,109,99,101,82,111,119,45,45,114,101,108,97,116,105,118,101,2,1,242,230,255,70,8,1,14,46,109,100,107,45,99,111,111,107,105,101,98,97,114,2,14,45,101,39,240,115,189,138,58,120,117,228,188,123,8,114,18,124,50,192,242,144,26,143,87,158,213,73,207,204,126,150,59,231,172,233,212,236,112,153,73,241,225,218,211,245,181,9,219,248,76,202,56,248,161,111,67,8,1,8,46,109,101,108,100,117,110,103,2,1,105,135,200,53,8,1,24,46,109,101,115,115,97,103,101,98,111,97,114,100,95,95,99,111,110,116,97,105,110,101,114,2,1,251,12,16,107,8,1,10,46,109,102,112,45,114,101,97,100,121,2,1,136,201,13,3,8,1,15,46,109,109,99,109,45,99,111,110,116,97,105,110,101,114,2,2,144,60,242,191,242,231,107,45,8,1,17,46,109,110,100,45,99,111,111,107,105,101,45,109,111,100,97,108,2,2,14,211,138,243,202,201,155,73,8,1,7,46,109,111,100,45,99,114,2,1,251,228,156,133,8,1,18,46,109,111,100,97,108,45,45,98,97,99,107,103,114,111,117,110,100,2,1,20,166,213,66,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,249,107,142,72,8,1,11,46,109,111,100,97,108,45,109,97,115,107,2,2,187,93,197,20,207,57,210,231,8,1,14,46,109,111,100,97,108,45,119,114,97,112,112,101,114,2,2,117,171,165,202,160,157,122,172,8,1,15,46,109,111,100,97,108,95,95,111,118,101,114,108,97,121,2,2,171,106,162,91,248,180,45,55,8,1,14,46,109,111,100,97,108,99,111,109,112,108,101,116,101,2,1,69,62,152,238,8,1,15,46,109,111,100,97,108,115,45,111,118,101,114,108,97,121,2,1,43,146,233,58,8,1,15,46,109,111,100,97,108,115,45,119,114,97,112,112,101,114,2,1,87,217,239,97,8,1,13,46,109,111,100,97,108,119,114,97,112,112,101,114,2,1,19,156,35,41,8,1,14,46,109,112,112,45,99,111,110,116,97,105,110,101,114,2,1,216,237,42,249,8,1,34,46,109,112,112,45,99,111,110,116,97,105,110,101,114,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,45,98,97,114,2,1,106,255,125,9,8,1,12,46,109,112,112,45,105,115,45,111,112,101,110,2,1,225,163,160,255,8,1,11,46,109,115,103,45,98,97,110,110,101,114,2,1,71,68,184,152,8,1,11,46,110,97,118,45,99,111,111,107,105,101,2,1,207,160,245,88,8,1,16,46,110,103,99,111,111,107,105,101,119,97,114,110,105,110,103,2,1,42,77,133,247,8,1,5,46,110,111,116,101,2,3,162,109,34,71,235,234,60,230,245,242,35,71,8,1,21,46,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,2,1,7,47,142,131,8,1,17,46,110,111,116,105,102,105,99,97,116,105,111,110,65,114,101,97,2,2,172,19,249,245,175,108,245,14,8,1,22,46,110,111,116,105,102,105,99,97,116,105,111,110,115,45,109,97,110,97,103,101,114,2,1,61,127,134,148,8,1,49,46,110,111,116,105,102,105,99,97,116,105,111,110,115,45,109,111,100,117,108,101,95,110,111,116,105,102,105,99,97,116,105,111,110,67,111,110,116,97,105,110,101,114,95,51,122,67,84,78,2,1,127,224,35,68,8,1,13,46,110,112,99,111,95,111,118,101,114,108,97,121,2,2,193,99,124,130,246,31,23,102,8,1,8,46,110,112,116,98,99,99,109,2,1,120,125,127,209,8,1,14,46,110,119,95,99,111,111,107,105,101,45,98,97,114,2,1,198,34,77,187,8,1,10,46,111,102,102,99,97,110,118,97,115,2,2,153,102,93,173,190,166,218,36,8,1,30,46,111,111,66,45,98,108,97,99,107,45,111,118,101,114,108,97,121,45,109,97,99,104,109,105,99,104,119,101,103,2,1,82,23,199,141,8,1,15,46,111,112,116,73,110,67,111,110,116,97,105,110,101,114,2,1,65,234,191,71,8,1,15,46,111,114,101,106,105,109,101,45,78,111,116,105,99,101,2,1,227,116,151,87,8,1,18,46,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,2,1,71,15,68,217,8,1,16,46,111,118,101,114,108,97,121,45,99,111,110,116,101,110,116,2,1,253,62,240,86,8,1,17,46,111,118,101,114,108,97,121,95,95,119,114,97,112,112,101,114,2,1,203,127,232,49,8,1,14,46,111,118,101,114,108,97,121,95,98,117,100,100,121,2,1,145,61,210,16,8,1,10,46,112,97,103,101,45,108,111,99,107,2,1,108,29,175,60,8,1,13,46,112,97,103,101,45,111,118,101,114,108,97,121,2,2,25,254,156,1,44,172,247,195,8,1,12,46,112,97,103,101,79,118,101,114,108,97,121,2,1,164,138,79,233,8,1,17,46,112,97,103,101,108,111,97,100,105,110,103,45,109,97,115,107,2,1,0,192,211,79,8,1,4,46,112,99,98,2,3,87,84,102,4,138,86,62,5,225,126,67,167,8,1,24,46,112,101,114,115,111,110,97,108,105,122,97,116,105,111,110,45,114,101,113,117,101,115,116,2,1,33,226,175,126,8,1,22,46,112,105,120,101,108,109,97,116,101,45,98,105,103,45,119,114,97,112,112,101,114,2,1,164,16,234,127,8,1,19,46,112,111,112,111,118,101,114,45,98,97,99,107,103,114,111,117,110,100,2,1,66,110,146,247,8,1,13,46,112,111,112,117,112,45,98,97,110,110,101,114,2,1,54,215,155,57,8,1,19,46,112,111,112,117,112,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,156,87,224,66,8,1,13,46,112,111,112,117,112,45,119,105,110,100,111,119,2,1,117,253,144,68,8,1,13,46,112,111,112,117,112,79,118,101,114,108,97,121,2,1,21,74,103,27,8,1,26,46,112,111,115,102,46,114,101,97,99,116,45,111,110,99,108,105,99,107,111,117,116,115,105,100,101,2,1,209,251,201,148,8,1,18,46,112,114,105,118,97,99,121,45,99,111,110,116,97,105,110,101,114,2,1,242,231,163,158,8,1,16,46,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,2,1,205,104,54,36,8,1,20,46,112,114,105,118,97,99,121,67,111,110,116,114,111,108,66,97,100,103,101,2,1,175,108,245,14,8,1,15,46,112,114,105,118,97,99,121,99,111,111,107,105,101,65,2,1,179,248,215,25,8,1,15,46,112,114,105,118,97,99,121,111,118,101,114,108,97,121,2,1,248,108,64,166,8,1,18,46,112,120,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,2,1,147,11,147,170,8,1,7,46,113,52,117,95,99,99,2,2,174,236,193,74,224,224,245,13,8,1,21,46,114,101,103,105,111,110,45,97,110,110,111,117,110,99,101,109,101,110,116,115,2,1,215,40,238,230,8,1,13,46,114,101,118,101,97,108,45,109,111,100,97,108,2,2,97,201,65,138,205,41,19,190,8,1,16,46,114,101,118,101,97,108,45,109,111,100,97,108,45,98,103,2,1,205,41,19,190,8,1,15,46,114,101,118,101,97,108,45,111,118,101,114,108,97,121,2,2,3,98,206,168,78,156,94,223,8,1,30,46,114,111,117,110,100,101,100,45,120,108,46,115,104,97,100,111,119,45,108,103,46,98,103,45,119,104,105,116,101,2,1,237,184,105,32,8,1,9,46,114,115,116,98,111,120,101,115,2,1,232,142,239,173,8,1,12,46,114,117,108,101,95,97,115,115,101,112,116,2,1,199,98,180,71,8,1,16,46,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,13,6,9,98,8,1,71,46,115,101,116,45,97,108,108,45,99,111,109,112,111,110,101,110,116,115,45,116,111,45,100,105,115,112,108,97,121,45,110,111,110,101,45,97,110,100,45,117,115,101,45,116,104,105,115,45,100,105,118,45,116,111,45,99,114,101,97,116,101,45,97,45,115,121,109,98,111,108,2,1,149,72,181,203,8,1,10,46,115,101,116,99,111,111,107,105,101,2,1,198,52,49,77,8,1,9,46,115,102,45,109,111,100,97,108,2,1,186,11,82,193,8,1,16,46,115,103,45,99,107,115,45,98,97,99,107,100,114,111,112,2,1,156,83,3,244,8,1,12,46,115,103,45,99,107,115,45,105,110,102,111,2,1,156,83,3,244,8,1,31,46,115,103,45,99,111,111,107,105,101,45,111,112,116,105,110,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,1,122,122,108,202,8,1,13,46,115,105,116,101,45,98,108,111,99,107,101,114,2,1,50,69,250,9,8,1,20,46,115,105,116,101,45,104,101,97,100,101,114,45,111,118,101,114,108,97,121,2,2,92,194,100,79,238,157,3,208,8,1,8,46,115,112,105,110,110,101,114,2,1,217,207,185,180,8,1,19,46,115,115,116,115,95,108,105,103,104,116,98,111,120,95,100,97,114,107,2,1,114,63,36,175,8,1,22,46,115,115,116,115,95,108,105,103,104,116,98,111,120,95,119,114,97,112,112,101,114,2,1,114,63,36,175,8,1,26,46,115,117,112,101,114,45,103,116,97,103,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,6,35,246,220,8,1,14,46,115,118,101,108,116,101,45,115,97,99,57,101,51,2,1,210,202,21,215,8,1,14,46,115,118,101,108,116,101,45,117,111,55,111,108,120,2,1,21,74,103,27,8,1,16,46,115,119,105,110,103,101,114,45,99,111,110,115,101,110,116,2,2,27,117,88,0,65,153,245,6,8,1,25,46,115,121,103,110,97,108,50,52,45,103,100,112,114,45,109,111,100,97,108,45,119,114,97,112,2,1,105,37,33,208,8,1,18,46,116,104,101,109,101,45,99,111,111,107,105,101,45,104,105,110,116,2,1,10,118,123,64,8,1,18,46,116,115,45,104,101,97,100,101,114,45,109,101,115,115,97,103,101,2,1,8,160,73,234,8,1,13,46,116,120,45,98,119,115,99,111,111,107,105,101,2,1,207,33,232,129,8,1,16,46,117,45,102,108,97,115,104,45,109,101,115,115,97,103,101,2,1,135,86,1,16,8,1,16,46,117,105,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,225,133,161,182,8,1,11,46,117,105,45,112,110,111,116,105,102,121,2,4,2,39,30,245,39,175,154,165,124,33,13,179,144,69,48,119,8,1,25,46,117,105,45,112,110,111,116,105,102,121,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,4,2,39,30,245,39,175,154,165,124,33,13,179,144,69,48,119,8,1,18,46,117,105,45,119,105,100,103,101,116,45,111,118,101,114,108,97,121,2,1,72,62,123,97,8,1,11,46,117,112,97,95,99,111,111,107,105,101,2,1,81,31,82,234,8,1,24,46,117,115,101,114,45,110,111,116,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,2,2,245,237,43,97,247,221,192,157,8,1,16,46,117,115,101,114,99,101,110,116,114,105,99,115,45,98,103,2,1,99,9,63,237,8,1,15,46,117,115,101,114,110,111,116,105,99,101,95,112,111,112,2,1,90,187,39,105,8,1,17,46,117,118,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,218,31,207,144,8,1,15,46,118,45,98,111,116,116,111,109,45,115,104,101,101,116,2,1,177,80,53,53,8,1,18,46,118,45,100,105,97,108,111,103,95,95,99,111,110,116,101,110,116,2,1,225,17,159,206,8,1,14,46,118,99,77,111,100,97,108,84,97,114,103,101,116,2,1,200,40,21,51,8,1,14,46,118,109,45,45,99,111,110,116,97,105,110,101,114,2,1,166,62,34,58,8,1,6,46,119,66,102,102,77,2,1,1,223,4,72,8,1,5,46,119,97,108,108,2,2,15,253,92,157,127,207,198,109,8,1,14,46,119,97,114,110,105,110,103,45,112,111,112,117,112,2,1,9,239,173,172,8,1,21,46,119,97,116,115,111,110,45,99,111,111,107,105,101,45,102,111,111,116,101,114,2,1,92,147,212,238,8,1,18,46,119,105,100,103,101,116,45,69,121,101,67,97,116,99,104,101,114,2,1,7,185,166,190,8,1,43,46,119,105,100,103,101,116,45,69,121,101,67,97,116,99,104,101,114,45,45,100,114,111,112,122,111,110,101,45,45,45,112,114,101,115,101,116,45,102,105,120,101,100,2,1,215,57,195,174,8,1,14,46,119,112,116,45,99,99,45,98,97,110,110,101,114,2,1,63,13,160,109,8,1,6,46,119,116,45,99,98,2,1,152,176,242,224,8,1,11,46,119,119,116,51,45,109,111,100,97,108,2,1,109,131,225,196,8,1,6,46,122,45,49,48,48,2,1,34,57,40,192,8,1,21,46,122,45,49,48,48,46,106,117,115,116,105,102,121,45,99,101,110,116,101,114,2,2,95,101,95,68,140,26,180,155,8,1,11,46,122,45,49,48,48,46,112,121,45,54,2,1,95,81,16,119,8,1,24,46,122,45,49,48,48,46,112,121,45,54,46,109,97,120,45,104,45,115,99,114,101,101,110,2,1,209,213,80,40,0,1,17,46,122,45,92,91,49,48,48,48,92,93,46,102,105,120,101,100,2,1,237,184,105,32,0,1,18,91,99,108,97,115,115,42,61,34,45,98,97,110,110,101,114,34,93,2,1,242,231,23,85,0,1,18,91,100,97,116,97,45,115,115,114,45,99,111,110,115,101,110,116,93,2,1,196,36,29,89,0,1,32,91,100,97,116,97,45,116,101,115,116,105,100,61,34,117,99,45,97,112,112,45,99,111,110,116,97,105,110,101,114,34,93,2,1,79,23,56,24,0,1,15,91,114,111,108,101,61,34,100,105,97,108,111,103,34,93,2,1,199,128,174,111,0,1,13,99,111,110,115,101,110,116,45,108,97,121,101,114,2,1,248,143,22,192,0,1,74,100,105,97,108,111,103,91,115,116,121,108,101,61,34,98,111,114,100,101,114,45,99,111,108,111,114,58,108,105,103,104,116,103,114,97,121,59,98,111,114,100,101,114,45,119,105,100,116,104,58,50,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,54,112,120,59,34,93,2,1,218,217,11,91,0,1,28,100,105,118,46,109,100,92,58,116,119,45,112,114,111,115,101,45,120,108,46,116,119,45,112,114,111,115,101,2,1,173,133,86,68,0,1,32,100,105,118,46,116,119,45,112,114,111,115,101,32,62,32,46,104,121,100,114,97,116,101,100,32,62,32,97,115,105,100,101,2,1,173,133,86,68,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,80,111,112,117,112,67,111,111,107,105,101,115,45,34,93,2,2,5,216,176,112,145,250,67,147,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,66,97,110,110,101,114,95,34,93,2,1,3,164,161,171,0,1,40,100,105,118,91,100,97,116,97,45,109,111,100,117,108,101,61,34,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,100,105,97,108,111,103,34,93,2,1,4,214,13,135,0,1,24,100,105,118,91,105,100,42,61,34,95,109,111,100,97,108,95,111,117,116,101,114,95,34,93,2,1,191,184,223,189,0,1,33,100,105,118,91,105,100,94,61,34,112,112,109,115,95,99,109,95,99,111,110,115,101,110,116,95,112,111,112,117,112,95,34,93,2,1,139,4,103,84,0,1,43,100,105,118,91,115,116,121,108,101,42,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,112,97,100,100,105,110,103,45,116,111,112,58,34,93,2,1,30,60,20,65,0,1,128,0,0,0,150,100,105,118,91,115,116,121,108,101,42,61,34,116,111,112,58,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,32,104,101,105,103,104,116,58,32,49,48,48,37,59,32,119,105,100,116,104,58,49,48,48,37,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,54,41,59,32,122,45,105,110,100,101,120,58,32,49,48,48,48,59,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,34,93,2,1,158,210,119,3,0,1,88,100,105,118,91,115,116,121,108,101,42,61,34,119,105,100,116,104,58,32,49,48,48,37,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,52,55,52,55,52,55,59,32,112,97,100,100,105,110,103,45,116,111,112,58,32,48,112,120,59,32,109,97,114,103,105,110,45,116,111,112,58,32,48,112,120,59,34,93,2,1,108,70,187,116,0,1,21,102,97,110,112,97,103,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,253,62,240,86,0,1,10,102,111,114,109,32,62,32,100,105,118,2,1,190,19,47,24,0,1,14,112,108,97,121,101,114,45,111,118,101,114,108,97,121,2,1,253,62,240,86,0,1,16,115,110,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,89,34,192,29,0,1,17,115,112,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,246,202,206,85,0,1,16,115,119,45,99,111,111,107,105,101,109,101,115,115,97,103,101,2,1,207,116,146,58,0,1,17,115,119,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,4,35,14,156,23,40,129,193,18,54,201,105,33,57,181,74,40,16,1,4,35,67,107,67,2,3,182,131,79,206,212,172,142,61,254,127,172,202,16,1,19,35,67,111,111,107,105,101,67,111,110,115,101,110,116,80,111,112,117,112,2,1,215,74,252,48,16,1,11,35,67,111,111,107,105,101,115,108,97,119,2,1,4,167,69,161,16,1,23,35,77,111,100,97,108,67,111,107,107,105,101,80,114,105,118,97,99,121,72,111,109,101,2,1,89,227,215,8,0,1,16,35,92,35,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,68,59,190,169,16,1,14,35,97,108,101,114,116,45,109,101,110,116,105,111,110,2,1,7,20,233,102,16,1,17,35,97,108,101,114,116,45,115,108,105,100,101,45,100,111,119,110,2,1,239,24,125,41,16,1,12,35,97,108,101,114,116,99,111,111,107,105,101,2,1,23,50,119,107,16,1,14,35,97,109,45,99,111,111,107,105,101,45,98,97,114,2,1,191,191,117,207,16,1,27,35,97,114,114,105,101,114,101,45,112,108,97,110,45,100,101,45,108,97,45,102,101,110,101,116,114,101,2,1,153,215,252,67,16,1,19,35,98,97,99,107,103,114,111,117,110,100,45,115,101,99,116,105,111,110,2,1,228,219,188,202,16,1,7,35,98,97,103,100,112,114,2,1,68,78,120,26,16,1,20,35,98,97,110,100,101,97,117,67,111,110,115,101,110,116,101,109,101,110,116,2,1,40,191,222,221,16,1,16,35,98,97,110,100,101,97,117,95,99,111,110,115,101,110,116,2,1,30,166,7,235,16,1,8,35,98,111,120,95,99,111,111,2,1,79,217,103,84,16,1,8,35,99,97,116,102,105,115,104,2,1,4,164,223,76,16,1,7,35,99,99,45,98,97,114,2,1,113,212,43,253,16,1,11,35,99,100,95,119,114,97,112,112,101,114,2,1,238,93,184,95,16,1,13,35,99,104,101,99,107,66,114,111,119,115,101,114,2,2,37,86,98,1,140,11,133,75,16,1,20,35,99,105,114,105,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,22,51,143,160,16,1,13,35,99,109,112,67,111,110,116,97,105,110,101,114,2,1,22,207,95,236,16,1,26,35,99,111,110,115,101,110,116,77,97,110,97,103,101,109,101,110,116,80,108,97,116,102,111,114,109,2,1,48,36,173,173,16,1,15,35,99,111,111,107,105,101,45,109,101,110,116,105,111,110,2,1,242,4,24,170,16,1,20,35,99,111,111,107,105,101,66,97,114,45,99,111,110,116,97,105,110,101,114,2,1,5,36,86,175,16,1,19,35,99,111,111,107,105,101,67,111,110,99,101,114,110,80,97,110,101,108,2,4,27,157,249,141,185,47,247,128,196,239,105,219,237,173,190,158,16,1,19,35,99,111,111,107,105,101,77,97,110,97,103,101,77,101,82,111,111,116,2,1,228,12,250,172,16,1,15,35,99,111,111,116,114,97,45,111,118,101,114,108,97,121,2,3,7,160,160,143,111,232,150,199,141,64,77,60,16,1,13,35,99,111,111,116,114,97,45,112,111,112,117,112,2,3,7,160,160,143,111,232,150,199,141,64,77,60,16,1,14,35,100,97,115,116,114,97,45,119,105,100,103,101,116,2,1,202,151,150,62,16,1,14,35,100,105,115,99,108,97,105,109,101,114,67,116,110,2,1,118,124,149,113,16,1,9,35,100,105,115,99,114,101,116,111,2,1,96,239,195,121,16,1,10,35,100,105,118,95,99,99,95,99,99,2,1,144,85,199,17,16,1,21,35,100,111,114,105,97,95,98,97,110,110,101,114,95,99,111,110,116,101,110,116,2,1,205,13,170,88,16,1,5,35,101,122,99,99,2,1,89,237,172,14,16,1,8,35,102,101,110,101,116,114,101,2,1,153,215,252,67,16,1,6,35,102,101,118,97,100,2,1,165,174,151,128,16,1,12,35,103,100,112,114,99,111,110,116,101,110,116,2,1,216,44,172,18,16,1,29,35,105,100,80,111,112,117,112,87,65,82,101,99,117,101,105,108,67,111,110,115,101,110,116,101,109,101,110,116,2,1,162,44,83,36,16,1,8,35,105,100,95,97,99,99,111,2,1,7,184,4,75,16,1,11,35,105,110,116,114,111,45,114,103,112,100,2,1,210,98,110,43,16,1,16,35,105,115,109,45,99,111,110,115,101,110,116,45,98,111,120,2,1,25,224,30,124,16,1,7,35,106,71,114,111,119,108,2,1,239,177,204,138,16,1,13,35,108,101,103,97,108,67,111,111,107,105,101,115,2,1,10,85,176,167,16,1,12,35,108,101,103,97,108,110,111,116,105,99,101,2,1,158,177,80,21,16,1,30,35,109,97,110,99,101,114,97,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,2,1,226,168,75,221,16,1,25,35,109,97,110,103,101,114,45,100,101,115,45,109,105,110,105,115,45,103,97,116,101,97,117,120,2,1,112,165,138,184,16,1,7,35,109,97,115,113,117,101,2,1,79,217,103,84,16,1,8,35,109,100,108,45,97,100,115,2,1,203,94,158,147,16,1,7,35,109,102,99,111,107,49,2,1,74,155,134,166,16,1,13,35,109,105,45,99,111,110,116,97,105,110,101,114,2,6,51,171,132,142,58,10,40,38,63,113,70,176,129,34,226,93,141,62,111,24,223,214,55,222,16,1,9,35,109,105,97,109,95,100,105,118,2,1,82,191,88,61,16,1,17,35,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,2,1,57,115,65,136,16,1,22,35,109,111,100,97,108,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,2,1,181,129,164,132,16,1,14,35,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,57,115,65,136,16,1,6,35,110,103,45,99,99,2,1,61,85,184,67,16,1,10,35,110,111,114,109,97,116,105,118,97,2,1,57,201,86,164,16,1,13,35,110,111,116,105,102,105,99,97,116,105,111,110,2,1,28,189,184,77,16,1,14,35,111,99,119,95,99,111,110,116,101,110,101,117,114,2,1,194,130,11,239,16,1,17,35,112,97,103,101,67,111,110,115,101,110,116,101,109,101,110,116,2,1,40,191,222,221,16,1,16,35,112,97,110,101,108,45,117,115,101,114,45,105,110,102,111,2,1,167,54,158,105,16,1,20,35,112,104,97,114,109,97,98,105,115,99,117,105,116,45,112,111,112,105,110,2,1,127,63,13,65,16,1,11,35,112,109,45,111,118,101,114,108,97,121,2,1,96,236,144,91,16,1,11,35,112,111,112,105,110,108,97,121,101,114,2,1,8,194,8,147,16,1,16,35,112,114,105,118,97,99,121,45,109,97,110,97,103,101,114,2,8,21,1,139,237,21,51,70,18,29,5,48,4,61,143,116,226,96,236,144,91,175,140,173,194,219,239,65,251,229,87,108,49,16,1,22,35,112,114,105,118,97,99,121,45,109,97,110,97,103,101,114,45,112,111,112,105,110,2,1,41,208,31,171,16,1,16,35,112,114,105,118,97,99,121,45,111,118,101,114,108,97,121,2,1,88,192,250,105,16,1,11,35,112,115,45,99,111,110,115,101,110,116,2,1,140,89,151,64,16,1,10,35,114,103,112,100,45,102,111,114,109,2,1,136,108,162,40,16,1,9,35,114,103,112,100,109,97,115,107,2,1,207,46,178,153,16,1,11,35,115,112,111,112,117,112,67,111,110,116,2,1,160,173,94,215,16,1,18,35,116,97,114,116,101,97,117,99,105,116,114,111,110,82,111,111,116,2,1,85,158,60,199,16,1,20,35,116,114,97,99,107,105,110,103,98,97,110,110,101,114,112,111,112,105,110,2,1,67,130,246,166,16,1,18,35,117,115,101,114,67,111,110,115,101,110,116,80,111,108,105,99,121,2,1,121,144,180,32,16,1,14,35,118,97,108,105,100,45,99,111,111,107,105,101,115,2,1,128,246,94,32,8,1,37,46,67,111,111,107,105,101,87,97,114,110,105,110,103,45,109,111,100,117,108,101,45,45,99,111,111,107,105,101,115,45,45,50,66,84,84,87,2,1,241,99,159,241,8,1,29,46,78,97,118,105,103,97,116,105,111,110,84,114,97,99,107,101,114,95,95,99,111,110,116,97,105,110,101,114,2,1,216,54,108,212,8,1,13,46,78,111,116,105,102,105,99,97,116,105,111,110,2,1,146,81,197,59,8,1,5,46,82,103,112,100,2,1,136,5,242,120,8,1,16,46,84,114,97,99,107,105,110,103,73,110,102,111,66,111,120,2,1,145,222,66,238,8,1,46,46,86,111,116,101,68,105,115,99,108,97,105,109,101,114,95,118,111,116,101,68,105,115,99,108,97,105,109,101,114,67,111,110,116,97,105,110,101,114,95,95,50,55,113,103,108,2,1,204,158,137,120,8,1,21,46,88,106,53,52,115,89,86,67,114,112,81,56,56,105,116,87,77,103,97,80,2,1,3,249,122,26,8,1,17,46,95,49,49,86,83,56,32,62,32,46,95,50,111,98,121,89,2,1,224,179,133,43,8,1,13,46,97,108,101,114,116,45,99,111,111,107,105,101,2,2,122,62,199,48,142,222,221,66,8,1,9,46,97,110,116,115,45,50,48,56,2,1,198,168,64,0,8,1,7,46,98,66,88,112,115,90,2,1,114,2,101,170,8,1,7,46,98,76,79,82,102,107,2,1,161,55,12,172,8,1,17,46,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,252,246,251,104,8,1,16,46,98,103,45,103,114,97,121,45,57,48,48,46,112,45,53,2,1,233,65,210,16,8,1,16,46,98,108,111,99,107,45,102,115,45,99,111,111,107,105,101,2,1,59,70,47,147,8,1,14,46,98,108,111,99,107,95,99,111,111,107,105,101,115,2,1,204,113,116,147,8,1,12,46,98,114,97,118,101,95,112,111,112,117,112,2,1,167,105,244,1,8,1,7,46,99,89,76,83,103,69,2,1,164,7,154,215,8,1,10,46,99,108,45,98,97,110,110,101,114,2,2,20,166,252,212,165,114,44,225,8,1,10,46,99,109,112,45,112,111,112,105,110,2,1,44,224,240,54,8,1,12,46,99,109,112,45,119,114,97,112,112,101,114,2,1,172,30,192,66,8,1,9,46,99,111,103,110,105,116,111,50,2,1,58,203,31,115,8,1,22,46,99,111,110,115,101,110,116,45,109,111,100,97,108,45,99,111,110,116,101,110,116,2,1,62,31,88,194,8,1,13,46,99,111,110,115,101,110,116,95,105,110,102,111,2,1,145,28,154,168,8,1,14,46,99,111,110,116,97,105,110,101,114,45,48,45,53,2,1,108,189,41,64,8,1,23,46,99,111,110,116,97,105,110,101,114,45,102,105,120,101,100,45,99,111,111,107,105,101,2,1,49,147,186,207,8,1,21,46,99,111,110,116,97,105,110,101,114,95,112,114,105,118,95,115,116,97,116,101,2,1,132,123,97,83,8,1,16,46,99,111,111,107,98,97,114,45,111,118,101,114,108,97,121,2,1,252,37,145,160,8,1,47,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,109,112,111,110,101,110,116,95,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,95,95,50,90,99,55,98,2,1,179,2,123,228,8,1,25,46,99,111,111,107,105,101,45,116,111,111,108,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,26,236,179,35,8,1,12,46,99,111,111,107,105,101,45,119,97,108,108,2,1,89,226,253,0,8,1,19,46,99,111,111,107,105,101,115,45,109,97,110,97,103,101,109,101,110,116,2,1,115,146,138,252,8,1,15,46,99,115,115,45,50,111,100,50,111,110,113,69,77,88,2,1,255,50,170,161,8,1,11,46,99,115,115,45,99,103,120,109,121,56,2,1,141,46,247,125,8,1,11,46,99,115,115,45,117,117,113,99,55,98,2,1,150,218,114,253,8,1,13,46,99,116,119,45,98,111,116,116,111,109,45,52,2,1,96,236,78,16,8,1,7,46,100,105,97,108,111,103,2,1,170,238,238,102,8,1,27,46,100,105,106,105,116,68,105,97,108,111,103,85,110,100,101,114,108,97,121,87,114,97,112,112,101,114,2,1,254,164,6,166,8,1,7,46,100,105,109,109,101,114,2,1,182,131,67,237,8,1,15,46,100,105,115,99,108,97,105,109,101,114,95,98,111,120,2,1,1,208,177,227,8,1,6,46,101,82,110,104,73,2,1,52,188,71,111,8,1,7,46,101,120,97,114,73,113,2,1,205,61,166,23,8,1,12,46,101,120,116,45,101,108,45,109,97,115,107,2,1,164,218,206,39,8,1,9,46,102,49,110,48,99,116,103,57,2,1,95,230,100,207,8,1,19,46,102,97,100,101,45,105,110,45,101,110,116,101,114,45,100,111,110,101,2,1,75,114,244,102,8,1,19,46,102,97,110,99,121,98,111,120,45,99,111,110,116,97,105,110,101,114,2,2,3,109,112,251,246,74,29,33,8,1,17,46,102,97,110,99,121,98,111,120,45,111,118,101,114,108,97,121,2,2,39,130,67,241,82,121,188,205,8,1,14,46,102,97,110,99,121,98,111,120,45,119,114,97,112,2,2,39,130,67,241,82,121,188,205,8,1,4,46,102,99,107,2,1,90,102,250,165,8,1,18,46,102,105,114,115,116,45,118,105,115,105,116,45,97,108,101,114,116,2,1,194,103,113,247,8,1,16,46,102,108,111,97,116,105,110,103,45,98,111,116,116,111,109,2,1,49,91,86,155,8,1,86,46,102,114,111,110,116,95,119,101,98,95,97,112,112,95,109,97,105,110,95,109,101,110,117,95,102,114,111,110,116,45,119,101,98,45,97,112,112,45,109,97,105,110,45,109,101,110,117,45,99,111,109,112,111,110,101,110,116,95,102,114,111,110,116,95,115,104,111,119,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,2,1,162,57,75,45,8,1,15,46,103,45,97,108,101,114,116,45,99,111,111,107,105,101,2,1,108,72,131,138,8,1,7,46,103,67,75,65,117,99,2,1,223,71,125,250,8,1,27,46,103,100,112,114,95,99,111,110,115,101,110,116,95,119,105,100,103,101,116,95,95,50,83,116,88,107,2,1,241,127,44,52,8,1,27,46,103,111,111,100,104,111,111,100,45,99,111,109,112,111,110,101,110,116,115,95,95,50,80,75,103,97,2,1,150,6,80,153,8,1,12,46,104,101,97,100,101,114,73,110,102,111,115,2,1,200,226,72,92,8,1,7,46,104,103,102,118,67,87,2,1,164,7,154,215,8,1,24,46,104,105,100,100,101,110,45,115,109,46,104,105,100,100,101,110,45,109,100,46,114,111,119,2,1,235,176,228,30,8,1,11,46,104,105,100,101,95,99,108,105,99,107,2,1,182,131,108,114,8,1,7,46,105,71,101,102,120,109,2,1,210,147,206,147,8,1,9,46,105,110,102,111,45,98,97,110,2,1,0,38,176,190,8,1,15,46,105,110,102,111,45,115,97,110,105,116,97,105,114,101,2,1,96,236,78,70,8,1,12,46,106,97,110,117,115,98,97,110,110,101,114,2,1,212,197,58,21,8,1,7,46,106,105,110,76,121,103,2,1,7,147,68,165,8,1,15,46,106,115,45,71,108,111,98,97,108,80,111,112,105,110,2,1,140,111,174,105,8,1,7,46,106,115,115,49,50,53,2,1,169,91,39,252,8,1,15,46,108,97,121,111,117,116,45,99,111,111,107,105,101,115,2,1,130,167,155,11,8,1,23,46,108,97,121,111,117,116,45,99,111,111,107,105,101,115,95,95,110,111,116,105,99,101,2,1,130,167,155,11,8,1,10,46,109,45,111,118,101,114,108,97,121,2,1,168,66,37,190,8,1,5,46,109,97,115,107,2,1,4,122,204,12,8,1,13,46,109,100,99,45,115,110,97,99,107,98,97,114,2,1,96,54,230,17,8,1,23,46,109,105,99,114,111,109,111,100,97,108,45,115,108,105,100,101,46,109,111,100,97,108,2,1,208,79,84,115,8,1,14,46,109,111,100,97,108,45,99,111,110,116,101,110,116,2,1,62,66,122,180,8,1,14,46,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,181,129,164,132,8,1,5,46,110,111,116,97,2,1,96,242,74,175,8,1,12,46,110,113,45,114,103,112,100,45,98,97,114,2,1,234,8,49,47,8,1,22,46,111,114,101,106,105,109,101,45,78,111,116,105,99,101,79,118,101,114,108,97,121,2,1,57,53,56,248,8,1,12,46,111,118,101,114,108,97,121,95,97,120,97,2,1,204,113,116,147,8,1,10,46,112,101,114,102,77,111,100,97,108,2,1,218,93,176,107,8,1,6,46,112,111,112,117,112,2,1,130,49,71,157,8,1,15,46,112,111,112,117,112,45,45,99,111,111,107,105,101,115,2,1,220,67,32,48,8,1,8,46,112,114,105,118,97,99,121,2,1,31,86,126,97,8,1,3,46,112,118,2,1,61,158,102,229,8,1,21,46,114,101,97,99,116,45,111,110,99,108,105,99,107,111,117,116,115,105,100,101,2,1,136,170,29,185,8,1,5,46,114,103,112,100,2,18,39,159,218,197,54,47,14,96,64,148,119,83,77,161,100,207,77,184,15,84,85,0,44,10,96,35,127,189,120,155,12,206,132,194,75,121,136,120,148,242,140,116,14,90,140,120,138,61,146,10,101,226,147,85,37,18,195,72,202,185,219,72,113,194,235,72,118,55,242,108,162,137,8,1,16,46,114,103,112,100,45,45,99,111,110,116,97,105,110,101,114,2,1,182,26,187,132,8,1,11,46,114,103,112,100,45,109,111,100,97,108,2,1,61,96,223,210,8,1,13,46,114,103,112,100,45,111,118,101,114,108,97,121,2,1,147,85,37,18,8,1,18,46,115,45,99,111,111,107,105,101,95,95,109,111,100,97,108,57,50,2,1,212,252,120,46,8,1,9,46,115,49,100,50,54,99,107,53,2,1,43,61,75,100,8,1,18,46,115,99,114,111,108,108,45,102,105,120,95,95,105,110,110,101,114,2,1,163,12,243,203,8,1,19,46,115,100,115,45,109,45,99,111,111,107,105,101,98,97,110,110,101,114,2,1,0,106,70,13,8,1,35,46,115,103,112,98,45,112,111,112,117,112,45,100,105,97,108,111,103,45,109,97,105,110,45,100,105,118,45,119,114,97,112,112,101,114,2,1,182,131,102,214,8,1,19,46,115,103,112,98,45,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,182,131,102,214,8,1,14,46,115,116,105,99,107,121,45,102,111,111,116,101,114,2,1,98,254,195,245,8,1,26,46,115,116,121,108,101,115,95,80,111,112,105,110,66,97,110,110,101,114,95,95,56,119,97,88,53,2,1,105,231,8,238,8,1,26,46,116,97,114,116,101,97,117,99,105,116,114,111,110,45,109,97,103,105,99,45,98,108,111,99,107,2,1,2,209,133,241,8,1,12,46,116,108,45,98,111,116,116,111,109,45,48,2,1,178,11,90,100,8,1,9,46,116,114,97,110,115,98,111,120,2,1,1,208,177,227,8,1,15,46,117,115,101,114,110,111,116,105,99,101,95,112,111,112,2,1,157,231,206,77,8,1,8,46,119,101,108,99,111,109,101,2,1,169,238,80,165,8,1,5,46,122,45,53,48,2,1,143,146,204,116,0,1,39,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,122,45,105,110,100,101,120,58,32,49,48,59,34,93,2,1,142,193,51,180,0,1,48,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,32,116,111,112,58,32,48,112,120,59,34,93,2,1,160,100,82,141,0,1,19,97,112,112,45,112,111,112,45,117,112,45,116,114,97,99,107,105,110,103,2,1,107,79,52,72,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,67,111,110,115,101,110,116,66,97,110,110,101,114,95,34,93,2,1,183,226,61,247,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,103,100,112,114,95,99,111,110,115,101,110,116,95,34,93,2,1,77,108,90,250,0,1,51,100,105,118,91,115,116,121,108,101,42,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,53,41,59,34,93,2,1,175,255,55,220,0,1,41,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,59,34,93,2,1,182,36,132,101,0,1,54,100,105,118,91,115,116,121,108,101,94,61,34,118,105,115,105,98,105,108,105,116,121,58,32,118,105,115,105,98,108,101,59,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,34,93,2,1,194,47,240,25,0,1,10,112,101,45,99,111,111,107,105,101,115,2,1,181,132,145,1,0,1,10,112,112,110,45,99,111,111,107,105,101,2,2,14,19,192,189,161,211,190,231,16,1,12,35,105,110,102,111,99,111,111,107,105,101,115,2,1,128,235,124,3,16,1,12,35,105,110,102,111,45,98,111,116,116,111,109,2,2,25,159,175,243,161,159,146,113,8,1,47,46,65,108,108,111,119,67,111,111,107,105,101,115,68,105,115,99,108,97,105,109,101,114,95,99,67,111,110,116,97,105,110,101,114,65,99,116,105,118,101,95,95,50,121,107,87,114,2,1,127,18,150,237,8,1,51,46,80,114,105,118,97,99,121,80,111,112,117,112,115,116,121,108,101,100,95,95,80,114,105,118,97,99,121,80,111,112,117,112,67,111,110,116,97,105,110,101,114,45,117,107,48,55,114,113,45,48,2,1,175,222,28,200,8,1,18,46,99,111,111,107,105,101,45,100,101,115,99,108,97,105,109,101,114,2,1,24,88,194,77,0,1,13,97,112,112,45,109,116,45,99,111,111,107,105,101,2,1,246,27,95,234,16,1,7,35,97,45,45,98,97,114,2,1,159,151,218,146,16,1,13,35,97,99,99,101,112,116,95,116,101,114,109,115,2,1,159,151,225,254,16,1,9,35,98,103,95,112,111,112,117,112,2,1,166,51,82,60,16,1,17,35,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,2,1,70,234,21,34,16,1,19,35,103,100,112,114,45,97,99,99,101,112,116,45,99,111,111,107,105,101,2,1,16,240,100,101,8,1,6,46,72,56,52,83,48,2,1,16,224,126,242,8,1,6,46,78,78,118,118,84,2,1,131,248,250,83,8,1,19,46,80,97,103,101,95,95,67,111,111,107,105,101,115,80,111,112,117,112,2,1,16,240,42,126,8,1,14,46,95,114,111,111,116,95,49,109,101,106,100,95,50,2,2,70,72,108,92,222,248,225,114,8,1,26,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,95,97,108,108,95,95,51,116,68,110,111,2,1,112,102,236,183,8,1,19,46,97,112,112,45,99,111,111,107,105,101,115,95,95,112,111,112,117,112,2,1,195,46,174,253,8,1,8,46,98,108,111,99,107,101,114,2,1,5,115,213,93,8,1,14,46,99,111,110,102,105,114,109,45,112,97,110,101,108,2,1,163,209,161,100,8,1,18,46,99,111,111,107,105,101,45,97,108,101,114,116,45,115,104,111,119,2,1,5,115,213,93,8,1,19,46,109,45,99,111,111,107,105,101,115,45,105,110,102,111,114,109,101,114,2,1,131,248,255,249,8,1,25,46,109,111,100,97,108,45,100,101,108,105,118,101,114,121,45,100,97,116,97,45,100,97,116,97,2,2,119,233,120,140,162,28,141,127,8,1,27,46,109,111,100,97,108,45,100,101,108,105,118,101,114,121,45,100,97,116,97,45,100,97,116,97,45,119,2,2,119,233,120,140,162,28,141,127,8,1,18,46,110,111,116,105,99,101,45,99,107,45,119,114,97,112,112,101,114,2,1,42,216,72,210,8,1,23,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,2,1,234,86,85,86,8,1,14,46,112,111,108,105,99,121,45,102,111,111,116,101,114,2,1,164,153,178,196,8,1,16,46,112,111,112,111,118,101,114,45,119,114,97,112,112,101,114,2,1,159,151,101,173,8,1,14,46,112,114,105,118,97,99,121,95,98,108,111,99,107,2,2,10,99,68,5,112,158,192,117,8,1,22,46,112,114,105,118,97,116,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,2,1,221,77,255,180,8,1,31,46,115,116,121,108,101,115,95,97,103,114,101,101,109,101,110,116,87,114,97,112,112,101,114,95,95,51,86,86,116,102,2,1,112,13,217,201,8,1,22,46,115,116,121,108,101,115,95,119,114,97,112,112,101,114,95,95,89,65,52,67,82,2,1,114,67,128,177,8,1,8,46,119,97,114,110,105,110,103,2,1,159,151,112,220,0,1,25,91,99,108,97,115,115,94,61,34,97,99,99,101,112,116,45,99,111,111,107,105,101,115,34,93,2,1,163,239,135,186,16,1,10,35,112,111,108,105,99,121,68,105,118,2,2,120,155,13,30,208,196,187,19,8,1,13,46,66,70,48,72,84,78,67,45,74,99,45,98,2,1,173,227,16,172,8,1,16,46,99,111,110,115,101,110,116,95,119,114,97,112,112,101,114,2,1,111,184,206,220,8,1,8,46,99,112,45,97,114,101,97,2,1,35,219,79,211,8,1,11,46,109,97,105,110,45,109,111,100,97,108,2,1,207,8,60,69,8,1,12,46,115,99,45,52,111,117,112,54,57,45,49,2,1,244,16,199,202,16,1,12,35,98,97,114,45,109,101,115,115,97,103,101,2,1,210,199,25,35,16,1,14,35,112,111,112,45,117,112,45,112,111,108,105,99,121,2,1,22,166,89,152,16,1,8,35,112,114,105,118,97,99,121,2,1,116,138,125,53,16,1,13,35,112,114,105,118,97,116,101,95,105,110,102,111,2,1,19,156,119,97,16,1,12,35,117,115,108,112,111,108,122,118,97,110,101,2,1,234,179,173,32,8,1,16,46,65,99,99,101,112,116,67,111,110,100,105,116,105,111,110,2,1,47,195,201,167,8,1,19,46,71,100,112,114,95,108,97,121,111,117,116,95,95,119,45,70,115,101,2,1,68,23,33,189,8,1,19,46,98,111,116,116,111,109,45,102,114,101,101,122,101,100,45,98,97,114,2,6,46,74,19,22,83,7,122,5,113,216,217,78,192,128,160,245,213,249,26,197,226,157,128,154,8,1,23,46,99,45,119,101,98,115,105,116,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,2,161,160,201,210,183,233,55,162,8,1,14,46,104,101,97,100,101,114,45,110,111,116,105,99,101,2,1,240,111,177,122,8,1,13,46,105,110,102,111,45,109,101,115,115,97,103,101,2,1,119,63,178,185,8,1,11,46,106,115,45,99,111,110,115,101,110,116,2,2,72,73,246,157,220,75,92,206,8,1,14,46,109,112,112,45,99,111,110,116,97,105,110,101,114,2,1,226,144,157,83,8,1,8,46,111,118,101,114,108,97,121,2,1,116,138,125,53,8,1,13,46,112,111,112,117,112,45,112,111,108,105,99,121,2,2,219,194,23,94,252,216,133,53,0,1,57,100,105,118,91,115,116,121,108,101,94,61,34,99,111,108,111,114,58,32,114,103,98,40,53,49,44,32,53,49,44,32,53,49,41,59,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,34,93,2,1,13,26,166,29,16,1,6,35,65,108,108,111,119,2,3,20,228,45,54,117,109,186,110,250,68,115,205,16,1,13,35,80,114,105,118,97,99,121,65,108,101,114,116,2,1,227,118,81,38,16,1,17,35,97,99,99,101,112,116,68,105,115,99,108,97,105,109,101,114,2,1,234,186,185,92,16,1,19,35,97,110,110,111,117,110,99,101,109,101,110,116,72,101,97,100,101,114,2,1,162,152,194,29,16,1,10,35,99,107,95,102,111,111,116,101,114,2,1,25,163,219,24,16,1,8,35,99,109,99,56,48,48,55,2,5,2,172,179,94,9,45,23,122,44,20,37,145,217,237,85,157,237,123,108,7,16,1,8,35,99,111,118,105,100,49,57,2,6,3,230,228,8,51,153,158,192,93,157,198,244,115,72,164,155,129,28,100,127,170,87,8,203,16,1,24,35,106,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,2,1,80,225,241,198,16,1,13,35,109,101,101,114,107,97,116,45,119,114,97,112,2,1,219,15,115,112,16,1,15,35,112,111,108,105,99,121,45,119,97,114,110,105,110,103,2,2,136,32,235,108,175,171,232,236,16,1,13,35,112,114,105,118,97,99,121,80,97,110,101,108,2,1,250,67,237,142,16,1,25,35,114,111,116,95,99,116,114,49,95,98,111,100,95,98,108,107,54,95,99,117,115,116,111,109,2,1,19,129,155,119,16,1,13,35,115,104,101,110,103,109,105,110,103,84,105,112,2,1,100,177,74,109,16,1,6,35,115,112,45,99,99,2,1,127,84,158,134,8,1,7,46,95,49,71,67,76,76,2,1,129,45,31,154,8,1,7,46,97,100,118,98,111,120,2,4,41,5,142,78,78,34,248,230,82,16,206,160,219,153,120,186,8,1,39,46,97,114,99,111,45,111,118,101,114,108,97,121,46,97,114,99,111,45,111,118,101,114,108,97,121,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,81,15,216,41,8,1,20,46,98,97,110,110,101,114,45,102,105,120,101,100,45,98,111,116,116,111,109,2,1,138,107,23,25,8,1,15,46,98,103,45,98,108,97,99,107,46,102,105,120,101,100,2,1,151,91,181,144,8,1,7,46,99,66,97,106,110,86,2,1,123,57,76,229,8,1,7,46,99,83,65,120,88,122,2,1,203,204,214,143,8,1,6,46,99,95,49,50,56,2,1,131,61,89,243,8,1,6,46,99,104,112,70,76,2,1,68,32,218,158,8,1,11,46,99,111,109,112,108,105,97,110,99,101,2,1,111,189,72,177,8,1,15,46,99,111,110,115,101,110,116,45,110,111,116,105,99,101,2,1,114,128,182,109,8,1,22,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,100,101,115,107,116,111,112,2,1,173,143,178,179,8,1,15,46,99,111,111,107,105,101,45,99,111,110,99,101,110,116,2,1,43,216,221,14,8,1,12,46,99,111,111,107,105,101,45,102,108,101,120,2,1,121,77,181,108,8,1,12,46,99,111,111,107,105,101,45,116,105,112,115,2,1,132,250,180,115,8,1,28,46,99,111,111,107,105,101,115,45,112,101,114,109,105,115,115,105,111,110,95,50,107,69,121,84,86,71,98,2,1,6,77,88,183,8,1,22,46,99,111,111,107,105,101,115,65,103,114,101,101,67,111,110,116,97,105,110,101,114,2,1,94,32,119,133,8,1,21,46,99,111,112,121,114,105,103,104,116,45,98,111,116,116,111,109,45,110,97,118,2,1,21,249,51,72,8,1,7,46,102,72,112,102,121,110,2,1,120,37,2,27,8,1,12,46,102,105,120,101,100,98,111,116,116,111,109,2,1,103,222,209,213,8,1,20,46,102,111,111,116,101,114,45,102,108,111,97,116,105,110,103,45,116,97,98,2,1,130,4,148,30,8,1,14,46,102,111,111,116,101,114,80,114,105,118,97,99,121,2,1,102,71,116,21,8,1,20,46,103,108,111,98,97,108,45,97,108,101,114,116,45,98,97,110,110,101,114,2,1,80,225,241,198,8,1,7,46,104,88,90,122,66,80,2,1,18,80,117,33,8,1,8,46,104,101,95,99,111,111,107,2,1,89,120,76,229,8,1,13,46,104,101,97,100,101,114,45,115,104,101,101,116,2,1,240,65,122,30,8,1,7,46,104,108,110,68,79,73,2,1,203,204,214,143,8,1,7,46,105,87,117,68,106,112,2,1,126,62,176,208,8,1,26,46,105,110,100,101,120,95,95,99,111,111,107,105,101,45,98,97,114,95,95,95,50,115,80,76,98,2,1,42,68,136,182,8,1,7,46,106,82,83,81,80,72,2,1,177,152,58,185,8,1,7,46,106,108,121,76,100,83,2,1,251,157,4,44,8,1,10,46,106,115,45,100,105,97,108,111,103,2,1,198,56,132,24,8,1,11,46,106,115,95,99,111,111,107,66,111,120,2,1,126,32,185,142,8,1,7,46,106,118,53,76,97,81,2,1,3,133,37,167,8,1,14,46,109,111,100,97,108,45,112,114,105,118,97,99,121,2,1,43,207,196,35,8,1,10,46,110,111,116,105,102,121,98,97,114,2,1,144,146,160,206,8,1,7,46,112,111,108,105,99,121,2,1,118,26,167,38,8,1,13,46,112,114,105,118,97,99,121,45,97,114,101,97,2,1,148,181,65,236,8,1,12,46,112,114,105,118,97,99,121,45,98,111,120,2,1,42,132,80,123,8,1,13,46,112,114,105,118,97,99,121,45,119,114,97,112,2,1,122,215,109,89,8,1,12,46,112,114,105,118,97,99,121,65,114,101,97,2,1,114,65,110,216,8,1,12,46,112,114,105,118,97,99,121,68,101,115,99,2,1,110,237,37,115,8,1,14,46,112,114,105,118,97,99,121,80,111,108,105,99,121,2,1,254,91,79,23,8,1,12,46,112,114,105,118,97,99,121,95,98,111,120,2,1,110,251,210,59,8,1,15,46,112,114,105,118,97,99,121,102,111,114,115,105,116,101,2,1,87,163,255,153,8,1,25,46,115,112,97,99,101,45,109,111,98,105,108,101,45,105,110,115,105,100,101,45,115,105,100,101,2,1,74,40,31,191,8,1,32,46,115,116,121,108,101,45,55,52,54,100,56,54,99,52,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,54,236,35,177,8,1,12,46,116,118,98,45,99,111,111,107,105,101,115,2,1,38,157,73,36,16,1,4,35,74,80,79,2,1,103,101,182,204,16,1,8,35,98,108,111,107,68,105,118,2,1,237,215,57,240,16,1,7,35,102,111,111,116,101,114,2,1,183,37,58,62,16,1,9,35,107,117,107,105,106,105,109,97,2,1,103,80,165,141,16,1,14,35,109,121,103,100,112,114,80,111,112,117,112,72,82,2,1,154,201,2,173,16,1,6,35,110,103,45,99,99,2,1,245,55,138,137,16,1,13,35,112,97,103,101,45,100,105,115,97,98,108,101,2,4,65,188,0,214,101,145,172,5,203,24,56,89,240,239,96,158,16,1,13,35,112,97,103,101,65,108,101,114,116,66,111,120,2,1,238,94,108,179,16,1,19,35,112,114,105,118,97,99,121,80,111,108,105,99,121,77,111,100,97,108,2,1,15,33,191,248,16,1,24,35,115,117,98,115,99,114,105,112,116,105,111,110,80,111,112,117,112,66,111,116,116,111,109,2,1,222,194,169,132,16,1,7,35,115,119,103,100,112,114,2,1,16,106,92,210,8,1,17,46,83,105,116,101,65,110,110,111,117,110,99,101,109,101,110,116,2,1,40,110,106,62,8,1,10,46,99,99,98,95,95,101,100,105,116,2,1,49,182,219,190,8,1,10,46,99,100,45,109,111,100,117,108,101,2,1,59,142,209,252,8,1,15,46,99,100,45,109,111,100,117,108,101,45,109,97,105,110,2,2,182,175,74,230,207,81,43,93,8,1,11,46,99,115,115,45,56,103,54,120,51,108,2,1,241,173,127,83,8,1,14,46,100,105,97,108,111,103,45,119,105,100,103,101,116,2,2,112,94,154,0,238,162,60,95,8,1,23,46,103,100,112,114,45,99,111,110,116,97,105,110,101,114,45,119,114,97,112,112,101,114,2,1,64,214,79,118,8,1,6,46,107,117,107,105,112,2,1,241,6,144,114,8,1,17,46,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,2,1,111,47,60,189,8,1,7,46,111,45,100,97,116,97,2,1,69,42,254,97,8,1,7,46,112,111,112,117,112,50,2,1,238,139,74,181,8,1,9,46,112,111,112,117,112,95,104,114,2,1,237,178,100,124,8,1,11,46,112,114,105,118,97,116,110,111,115,116,2,1,80,133,100,224,0,1,40,100,105,118,91,115,116,121,108,101,94,61,34,122,45,105,110,100,101,120,58,57,57,57,57,59,100,105,115,112,108,97,121,58,98,108,111,99,107,34,93,2,1,200,231,59,189,16,1,8,35,66,111,120,49,48,48,50,2,1,230,210,139,136,16,1,14,35,82,101,115,115,67,111,111,107,105,101,66,111,120,2,1,238,142,90,1,16,1,11,35,99,50,50,111,118,101,114,108,97,121,2,1,231,246,77,187,16,1,6,35,99,95,108,97,119,2,2,100,29,180,109,250,54,210,169,16,1,10,35,99,99,45,45,109,97,105,110,50,2,1,26,202,32,134,16,1,6,35,99,99,109,110,103,2,1,11,8,89,252,16,1,4,35,99,107,98,2,1,116,33,51,35,16,1,19,35,99,111,111,107,105,101,115,45,98,97,114,45,98,111,116,116,111,109,2,1,116,28,108,9,16,1,19,35,99,111,111,107,105,101,115,45,98,97,114,45,100,105,97,108,111,103,2,1,201,116,11,196,16,1,18,35,99,111,111,107,105,101,115,45,108,112,45,98,97,110,110,101,114,2,1,37,198,214,155,16,1,13,35,99,111,111,107,105,101,115,77,111,100,97,108,2,1,28,1,99,86,16,1,6,35,99,115,95,98,120,2,2,29,51,188,7,36,152,166,241,16,1,11,35,99,115,95,98,120,95,101,110,118,108,2,1,36,152,166,241,16,1,10,35,99,115,95,115,116,114,105,112,101,2,1,60,35,68,66,16,1,67,35,99,116,108,48,48,95,101,119,112,122,49,95,109,97,105,110,84,101,109,112,108,97,116,101,67,116,114,108,95,102,111,111,116,101,114,95,70,111,114,109,67,111,111,107,105,101,115,77,97,110,97,103,101,114,49,95,112,110,67,109,78,97,118,66,97,114,2,1,78,234,151,72,16,1,16,35,99,122,110,105,99,45,99,111,111,107,105,101,98,97,114,2,1,28,163,129,44,16,1,14,35,100,105,115,97,98,108,101,45,99,108,105,99,107,2,1,16,145,127,78,16,1,7,35,101,117,45,102,99,107,2,1,231,246,76,23,16,1,7,35,101,117,95,99,107,115,2,1,244,16,46,16,16,1,18,35,105,100,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,31,12,186,179,16,1,13,35,106,115,45,99,99,45,98,97,110,110,101,114,2,1,176,20,123,238,16,1,6,35,108,105,115,116,97,2,1,159,150,243,11,16,1,9,35,109,121,65,108,101,114,116,50,2,1,156,184,55,94,16,1,17,35,109,121,67,111,110,115,101,110,116,67,111,111,107,105,101,115,2,1,106,126,211,71,16,1,26,35,110,97,115,116,97,118,101,110,105,45,115,111,117,107,114,111,109,105,45,98,97,110,110,101,114,2,1,116,39,21,15,16,1,24,35,111,112,101,110,95,112,114,101,102,101,114,101,110,99,101,115,95,99,101,110,116,101,114,2,1,227,94,215,97,16,1,68,35,112,95,108,116,95,87,101,98,80,97,114,116,90,111,110,101,49,51,95,90,111,110,101,77,97,105,110,95,85,115,101,114,67,111,110,116,114,111,108,53,95,117,115,101,114,67,111,110,116,114,111,108,69,108,101,109,95,112,110,108,67,111,111,107,105,101,115,2,1,201,58,101,149,16,1,15,35,112,111,112,117,112,67,111,110,116,97,99,116,66,71,2,1,238,142,90,1,16,1,5,35,112,112,95,98,2,1,12,8,111,216,16,1,34,35,115,110,105,112,112,101,116,45,99,111,111,107,105,101,83,101,116,116,105,110,103,115,45,99,111,111,107,105,101,73,110,102,111,2,1,18,65,63,158,16,1,38,35,115,110,105,112,112,101,116,45,99,111,111,107,105,101,115,67,111,110,115,101,110,116,45,99,111,111,107,105,101,115,99,111,110,115,101,110,116,2,1,173,142,52,209,16,1,8,35,115,111,117,104,108,97,115,2,1,134,152,247,121,16,1,13,35,115,116,105,99,107,121,70,111,111,116,101,114,2,1,102,159,53,219,16,1,5,35,119,114,45,99,2,8,6,16,189,181,32,116,196,126,131,200,95,19,140,83,139,71,146,133,203,89,171,236,27,154,188,119,72,240,200,118,86,185,8,1,35,46,67,111,110,115,101,110,116,115,116,121,108,101,100,95,95,66,97,110,110,101,114,45,115,99,45,49,99,115,101,109,52,113,45,49,2,1,32,116,89,95,8,1,7,46,70,111,111,116,101,114,2,1,70,11,159,113,8,1,10,46,71,68,80,82,80,111,112,117,112,2,1,160,178,27,52,8,1,26,46,77,111,100,97,108,95,95,109,111,100,97,108,45,115,104,111,119,110,95,95,82,105,76,51,121,2,1,197,24,231,60,8,1,16,46,80,111,112,117,112,66,97,99,107,103,114,111,117,110,100,2,1,160,178,27,52,8,1,9,46,95,49,104,121,119,101,116,102,2,1,116,33,41,147,8,1,13,46,98,45,99,111,111,107,105,101,45,98,97,114,2,1,231,246,78,184,8,1,9,46,98,97,114,45,73,110,102,111,2,1,73,93,226,167,8,1,8,46,98,108,111,99,107,85,73,2,3,84,136,1,183,108,107,187,162,227,217,45,102,8,1,16,46,98,108,111,99,107,101,114,45,99,111,111,107,105,101,115,2,1,32,116,185,12,8,1,21,46,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,2,1,219,1,34,67,8,1,8,46,99,45,108,97,121,101,114,2,1,29,134,64,152,8,1,16,46,99,45,109,111,100,97,108,45,99,111,111,107,105,101,115,2,1,126,216,48,164,8,1,8,46,99,95,109,111,100,97,108,2,1,14,88,145,90,8,1,3,46,99,98,2,1,192,195,211,246,8,1,15,46,99,99,45,98,97,110,110,101,114,45,119,114,97,112,2,1,94,236,46,114,8,1,11,46,99,99,45,116,114,105,103,103,101,114,2,1,202,96,81,245,8,1,4,46,99,111,107,2,1,111,208,125,23,8,1,14,46,99,111,109,109,111,110,80,114,105,118,97,99,121,2,1,49,62,168,39,8,1,12,46,99,111,110,115,101,116,45,119,114,97,112,2,1,133,212,188,79,8,1,16,46,99,111,110,116,97,105,110,101,114,95,95,98,111,100,121,2,1,200,224,169,99,8,1,19,46,99,111,111,107,105,101,45,102,97,100,101,45,119,105,110,100,111,119,2,1,200,157,58,33,8,1,15,46,99,111,111,107,105,101,115,45,99,97,110,118,97,115,2,5,19,124,217,81,38,177,105,201,150,80,154,68,200,230,9,154,220,205,115,91,8,1,23,46,99,111,111,107,105,101,115,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,2,1,129,120,116,10,8,1,20,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,115,104,111,114,116,2,1,221,124,46,31,8,1,18,46,99,111,111,107,105,101,115,95,112,97,110,101,108,95,119,114,112,2,1,108,91,71,118,8,1,3,46,99,115,2,2,127,160,152,244,151,170,20,86,8,1,11,46,99,115,115,45,112,118,57,57,55,99,2,1,16,82,65,232,8,1,16,46,101,108,101,99,116,114,111,45,111,118,101,114,108,97,121,2,1,101,244,122,198,8,1,23,46,101,115,45,99,111,111,107,105,101,115,45,98,97,114,45,119,114,97,112,112,101,114,2,1,92,103,126,139,8,1,4,46,101,117,99,2,2,124,84,185,37,247,99,88,26,8,1,15,46,102,105,120,101,100,45,99,101,110,116,101,114,101,100,2,1,45,180,9,52,8,1,6,46,102,108,97,115,104,2,1,159,151,227,105,8,1,12,46,102,108,111,97,116,70,111,111,116,101,114,2,1,103,243,103,82,8,1,8,46,102,110,120,95,95,99,99,2,1,157,188,78,5,8,1,7,46,104,74,105,65,82,77,2,1,192,41,248,106,8,1,29,46,105,109,112,111,114,116,97,110,116,45,113,117,101,115,116,105,111,110,95,95,98,97,99,107,100,114,111,112,2,1,199,23,188,166,8,1,27,46,105,109,112,111,114,116,97,110,116,45,113,117,101,115,116,105,111,110,95,95,100,105,97,108,111,103,2,1,199,23,188,166,8,1,13,46,105,110,99,111,110,115,101,110,116,45,99,99,2,1,119,243,103,98,8,1,10,46,105,110,102,111,45,111,107,110,111,2,1,142,37,7,133,8,1,8,46,106,45,99,105,110,102,111,2,1,118,249,190,219,8,1,7,46,106,115,115,51,54,51,2,1,188,85,160,231,8,1,23,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,2,1,69,114,244,8,8,1,7,46,107,83,73,79,84,81,2,1,120,179,226,151,8,1,7,46,108,97,118,119,110,97,2,1,170,169,124,139,8,1,16,46,108,103,71,97,70,117,46,115,99,45,65,120,105,75,119,2,1,116,37,8,22,8,1,10,46,109,99,99,45,109,111,100,97,108,2,1,96,131,37,48,8,1,14,46,109,111,100,97,108,66,97,99,107,100,114,111,112,2,3,23,183,195,195,116,25,179,194,231,240,36,157,8,1,12,46,109,111,100,97,108,87,105,110,100,111,119,2,3,23,183,195,195,116,25,179,194,231,240,36,157,8,1,13,46,111,112,116,105,110,87,114,97,112,112,101,114,2,3,162,147,104,1,174,135,98,34,214,251,190,219,8,1,9,46,115,105,116,101,45,109,115,103,2,1,184,222,63,130,8,1,11,46,115,109,45,119,114,97,112,112,101,114,2,2,67,0,119,240,116,18,140,148,8,1,12,46,115,122,100,99,45,45,109,111,100,97,108,2,1,158,87,176,31,8,1,25,46,115,122,110,45,99,109,112,45,100,105,97,108,111,103,45,99,111,110,116,97,105,110,101,114,2,1,135,94,197,116,8,1,8,46,116,111,112,73,110,102,111,2,1,141,85,164,8,8,1,40,46,117,105,95,119,105,100,103,101,116,115,95,117,110,105,116,45,99,111,111,107,105,101,115,95,112,114,101,102,50,48,50,50,95,102,111,111,116,101,114,2,1,116,28,108,9,8,1,11,46,117,112,111,122,111,114,110,101,110,105,2,1,199,169,79,3,8,1,13,46,117,115,101,114,83,101,116,116,105,110,103,115,2,1,163,117,180,46,8,1,14,46,119,97,114,110,105,110,103,45,109,111,100,97,108,2,1,94,122,148,129,0,1,38,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,34,93,2,1,187,207,114,131,0,1,15,100,105,118,46,112,111,112,117,112,45,115,104,97,100,101,2,1,186,128,22,51,0,1,74,100,105,118,91,115,116,121,108,101,94,61,34,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,32,112,97,100,100,105,110,103,58,32,49,48,112,120,32,50,48,112,120,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,70,70,59,34,93,2,1,87,39,18,158,0,1,45,102,111,114,109,91,115,116,121,108,101,94,61,34,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,34,93,2,1,11,108,48,175,16,1,12,35,80,79,80,85,80,83,95,82,79,79,84,2,1,80,16,150,232,16,1,11,35,99,45,108,45,119,105,100,103,101,116,2,1,233,104,169,136,16,1,10,35,99,111,110,115,101,110,116,85,73,2,1,238,86,9,91,16,1,16,35,99,111,111,107,105,101,45,97,99,99,101,112,116,101,114,2,1,18,157,159,222,16,1,21,35,99,111,111,107,105,101,115,65,99,99,101,112,116,87,114,97,112,112,101,114,2,1,73,142,237,63,16,1,10,35,102,105,120,101,100,68,105,118,50,2,1,55,45,106,7,16,1,8,35,108,98,109,111,100,97,108,2,2,3,113,103,112,124,226,74,34,16,1,16,35,108,98,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,124,226,74,34,16,1,11,35,109,111,100,97,108,76,97,121,101,114,2,1,64,6,148,92,16,1,24,35,109,121,98,97,110,107,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,254,161,242,183,8,1,6,46,98,49,52,99,99,2,1,45,160,55,158,8,1,27,46,98,97,99,107,103,114,111,117,110,100,67,111,118,101,114,87,114,97,112,112,101,114,95,99,97,119,2,1,73,142,237,63,8,1,21,46,98,103,45,115,100,45,98,108,117,101,45,115,101,99,111,110,100,97,114,121,2,1,180,111,221,10,8,1,9,46,98,108,111,99,107,98,107,103,2,1,120,90,44,26,8,1,20,46,98,111,114,100,101,114,45,98,111,100,121,45,45,98,111,116,116,111,109,2,1,78,46,140,177,8,1,10,46,99,45,111,118,101,114,108,97,121,2,2,100,96,103,83,112,228,162,156,8,1,10,46,99,99,45,100,105,97,108,111,103,2,1,186,129,209,140,8,1,23,46,99,111,111,107,105,101,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,238,26,118,224,8,1,13,46,99,117,115,116,111,109,45,112,111,112,117,112,2,1,191,98,65,144,8,1,7,46,102,111,111,116,101,114,2,1,6,127,45,187,8,1,6,46,104,112,95,99,99,2,1,103,76,57,88,8,1,16,46,105,110,102,111,98,97,114,45,119,114,97,112,112,101,114,2,1,46,59,53,158,8,1,17,46,106,115,45,97,108,101,114,116,45,112,114,105,118,97,99,121,2,1,90,190,77,168,8,1,6,46,109,116,115,110,98,2,1,219,95,168,91,8,1,16,46,110,111,116,105,102,105,99,97,116,105,111,110,98,97,114,2,2,60,44,52,148,106,204,114,123,8,1,12,46,112,111,112,45,111,118,101,114,108,97,121,2,2,93,16,235,16,150,135,75,67,8,1,10,46,112,111,112,117,112,45,109,115,103,2,1,160,115,162,72,8,1,16,46,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,2,1,8,10,81,147,8,1,8,46,112,117,115,104,45,117,112,2,1,123,154,122,52,8,1,19,46,114,101,103,105,111,110,45,112,97,103,101,45,98,111,116,116,111,109,2,1,19,220,109,212,8,1,10,46,115,101,112,116,105,109,97,99,99,2,1,60,23,52,73,8,1,15,46,115,104,45,112,97,103,101,45,110,111,116,105,99,101,2,1,100,165,242,213,8,1,12,46,119,112,99,45,111,118,101,114,108,97,121,2,1,149,246,222,194,8,1,10,46,119,112,99,45,112,111,112,117,112,2,1,149,246,222,194,0,1,29,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,45,109,111,100,117,108,101,45,34,93,2,1,102,158,191,230,16,1,17,35,66,108,117,114,114,121,66,97,99,107,103,114,111,117,110,100,2,1,226,210,188,105,16,1,11,35,67,111,111,107,105,101,119,97,108,108,2,1,212,106,2,51,16,1,12,35,73,68,70,99,111,111,107,105,101,86,51,2,1,139,101,150,252,16,1,3,35,84,49,2,1,101,45,25,63,16,1,17,35,84,82,67,79,45,97,112,112,108,105,99,97,116,105,111,110,2,1,139,94,71,105,16,1,11,35,87,71,98,101,115,104,114,107,103,106,2,1,187,93,10,148,16,1,11,35,87,71,105,106,103,120,107,104,106,118,2,1,111,22,34,252,16,1,11,35,87,71,110,122,109,104,101,101,108,104,2,1,56,241,70,223,16,1,11,35,87,71,117,122,110,116,116,101,113,104,2,3,186,113,49,109,187,112,255,47,239,179,52,197,16,1,11,35,97,99,99,45,98,111,116,116,111,109,2,1,107,142,83,135,16,1,14,35,97,99,99,101,112,116,115,99,112,50,48,49,50,2,1,186,10,204,80,16,1,14,35,97,118,103,45,99,111,110,116,97,105,110,101,114,2,1,140,7,163,48,16,1,6,35,99,45,98,97,114,2,1,103,16,241,238,16,1,22,35,99,99,109,95,110,111,116,105,102,105,99,97,116,105,111,110,95,104,111,115,116,2,1,139,95,54,253,16,1,10,35,99,105,87,114,97,112,112,101,114,2,1,173,61,118,107,16,1,4,35,99,107,109,2,1,50,78,141,198,16,1,6,35,99,107,112,111,108,2,1,30,25,241,68,16,1,14,35,99,111,109,112,45,106,107,109,111,100,55,99,109,2,1,242,81,149,233,16,1,15,35,99,111,110,115,101,110,116,45,112,108,117,103,105,110,2,11,14,58,230,199,16,70,99,0,21,109,146,70,38,100,92,92,41,180,63,196,52,234,55,207,176,34,1,114,182,94,127,144,190,147,223,200,233,121,151,194,253,197,250,141,16,1,13,35,99,111,110,115,101,110,116,77,111,100,97,108,2,1,56,78,165,21,16,1,38,35,99,111,111,107,105,101,45,112,114,111,109,112,116,45,109,111,100,97,108,95,95,95,66,86,95,109,111,100,97,108,95,111,117,116,101,114,95,2,1,182,118,148,224,16,1,18,35,99,111,111,107,105,101,95,112,111,112,117,112,95,98,111,100,121,2,1,190,147,21,97,16,1,14,35,99,111,111,107,105,101,99,104,111,105,99,101,115,2,1,139,91,106,213,16,1,14,35,99,111,111,107,105,101,108,97,119,95,105,100,102,2,1,187,206,176,154,16,1,22,35,99,111,111,107,105,101,108,97,119,95,105,100,102,95,111,118,101,114,108,97,121,2,1,187,206,176,154,16,1,14,35,99,111,111,107,105,101,115,95,109,111,100,97,108,2,1,236,218,107,145,16,1,13,35,99,119,101,116,45,119,114,97,112,112,101,114,2,1,209,179,72,58,16,1,7,35,100,97,114,107,101,114,2,1,94,124,31,62,16,1,6,35,101,114,103,99,98,2,1,37,165,195,154,16,1,11,35,103,97,45,99,111,110,115,101,110,116,2,1,222,198,31,20,16,1,13,35,103,97,108,108,101,116,97,45,109,97,105,110,2,4,53,133,146,5,193,125,64,117,223,231,76,203,255,155,109,230,16,1,19,35,103,100,112,114,45,99,111,111,107,105,101,45,100,105,97,108,111,103,2,1,193,210,254,72,16,1,21,35,103,108,111,98,97,108,109,101,115,115,97,103,101,95,104,111,108,100,101,114,2,1,112,240,208,174,16,1,8,35,108,111,97,100,105,110,103,2,4,58,184,20,92,74,43,234,15,234,218,207,200,248,183,116,111,16,1,11,35,109,109,45,99,99,45,119,114,97,112,2,1,132,117,169,153,16,1,17,35,109,112,45,112,111,112,117,112,111,118,101,114,108,97,121,49,2,1,27,102,62,18,16,1,13,35,110,111,116,105,102,105,99,97,116,105,111,110,2,1,20,61,216,243,16,1,17,35,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,2,1,93,14,10,118,16,1,10,35,115,116,79,118,101,114,108,97,121,2,1,34,125,127,185,16,1,11,35,115,116,79,118,101,114,108,97,121,66,2,1,34,125,127,185,16,1,8,35,115,119,105,116,99,104,50,2,1,100,26,124,64,16,1,8,35,116,111,99,109,97,115,107,2,1,173,86,61,186,16,1,8,35,117,100,116,68,97,114,107,2,2,30,23,135,209,76,10,0,246,8,1,26,46,71,100,112,114,45,109,111,100,117,108,101,95,95,103,100,112,114,95,95,95,111,120,81,106,68,2,1,243,177,240,183,8,1,7,46,72,95,77,104,112,90,2,1,60,14,139,54,8,1,12,46,77,111,100,97,108,67,111,111,107,105,101,2,1,171,134,83,120,8,1,28,46,77,117,105,66,97,99,107,100,114,111,112,45,114,111,111,116,46,99,115,115,45,51,99,50,54,108,101,2,1,111,73,26,59,8,1,11,46,80,97,110,101,108,80,111,112,85,112,2,1,179,211,181,169,8,1,7,46,95,49,49,99,97,95,2,2,143,67,6,24,193,113,87,175,8,1,7,46,95,49,50,100,57,55,2,4,45,67,5,161,134,59,34,101,228,192,20,141,235,28,66,61,8,1,14,46,95,50,49,98,57,57,49,51,49,56,52,52,52,2,1,165,193,29,147,8,1,7,46,95,50,109,109,121,98,2,4,45,67,5,161,134,59,34,101,228,192,20,141,235,28,66,61,8,1,14,46,95,99,98,97,100,57,98,97,102,100,52,49,55,2,1,165,193,29,147,8,1,16,46,97,98,115,111,108,117,116,101,45,100,105,97,108,111,103,2,1,11,190,219,89,8,1,4,46,97,118,103,2,1,216,72,102,71,8,1,16,46,98,97,99,107,103,114,111,117,110,100,45,102,97,100,101,2,1,105,208,68,118,8,1,18,46,98,97,99,107,103,114,111,117,110,100,111,118,101,114,108,97,121,2,2,98,21,43,185,254,143,27,2,8,1,21,46,98,97,108,108,111,111,110,95,110,111,116,105,102,105,99,97,116,105,111,110,2,1,29,210,84,175,8,1,22,46,98,97,114,45,100,105,115,112,108,97,121,46,99,111,110,116,97,105,110,101,114,2,1,205,56,235,179,8,1,12,46,98,108,111,99,107,45,49,50,49,45,49,2,1,38,100,7,90,8,1,7,46,98,109,97,68,121,100,2,1,139,93,238,65,8,1,19,46,98,110,114,45,110,111,116,105,99,101,45,99,117,114,116,97,105,110,2,1,13,74,34,125,8,1,10,46,98,111,45,99,98,45,98,97,114,2,1,73,234,80,242,8,1,10,46,98,111,116,116,111,109,45,50,48,2,1,44,45,76,234,8,1,9,46,99,45,110,111,116,105,99,101,2,1,84,43,14,23,8,1,11,46,99,99,45,45,119,105,110,100,111,119,2,1,190,148,62,213,8,1,9,46,99,99,45,112,111,112,117,112,2,1,28,105,66,18,8,1,8,46,99,99,95,114,111,111,116,2,1,149,141,243,20,8,1,6,46,99,103,45,56,50,2,1,90,151,146,184,8,1,6,46,99,103,45,57,55,2,1,90,151,146,184,8,1,7,46,99,104,74,102,80,66,2,1,139,93,238,65,8,1,8,46,99,107,79,117,116,101,114,2,1,247,146,72,42,8,1,27,46,99,108,95,99,111,111,107,105,101,95,110,111,116,105,99,101,95,99,111,110,116,97,105,110,101,114,2,1,229,180,172,37,8,1,29,46,99,111,108,111,114,45,105,110,118,101,114,116,46,102,111,110,116,45,115,105,122,101,45,115,109,97,108,108,2,1,11,83,14,126,8,1,28,46,99,111,109,112,111,110,101,110,116,45,45,102,114,101,111,45,99,111,111,107,105,101,108,101,118,101,108,2,1,139,96,212,217,8,1,17,46,99,111,110,115,101,110,116,45,98,97,99,107,100,114,111,112,2,1,151,222,108,224,8,1,21,46,99,111,110,115,101,110,116,45,119,97,108,108,45,111,118,101,114,108,97,121,2,1,139,105,59,44,8,1,14,46,99,111,111,107,105,101,45,45,88,112,98,70,77,2,1,16,185,145,209,8,1,18,46,99,111,111,107,105,101,45,99,111,109,112,111,110,101,110,116,115,2,1,171,128,130,198,8,1,15,46,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,109,188,72,9,8,1,43,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,99,111,110,116,97,105,110,101,114,45,112,111,112,117,112,45,98,97,99,107,100,114,111,112,2,1,100,15,100,44,8,1,16,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,2,1,46,180,161,105,8,1,12,46,99,111,111,107,105,101,45,119,97,108,108,2,2,145,171,116,93,206,11,51,215,8,1,25,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,98,97,99,107,103,114,111,117,110,100,2,1,104,151,163,7,8,1,21,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,100,105,97,108,111,103,2,1,104,151,163,7,8,1,11,46,99,111,111,107,105,101,119,97,108,108,2,1,153,147,176,101,8,1,28,46,99,111,111,107,105,101,119,97,108,108,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,33,220,58,188,8,1,17,46,99,111,111,107,105,101,119,97,108,108,45,109,111,100,97,108,2,2,38,40,208,133,108,39,222,129,8,1,9,46,99,111,111,111,107,105,101,115,2,1,157,79,143,51,8,1,11,46,99,115,115,45,107,114,116,106,53,115,2,1,139,99,24,69,8,1,11,46,99,115,115,45,117,117,113,99,55,98,2,2,177,76,202,5,183,57,196,76,8,1,9,46,99,116,45,109,111,100,97,108,2,1,189,109,202,20,8,1,7,46,99,117,74,68,101,120,2,1,88,101,12,138,8,1,15,46,99,117,115,116,111,109,45,99,111,110,115,101,110,116,2,6,40,119,190,134,121,71,239,210,159,1,20,33,179,138,212,49,179,162,100,97,215,70,17,241,8,1,7,46,99,118,65,81,119,76,2,1,88,101,12,138,8,1,18,46,100,105,97,108,111,103,95,98,111,120,95,95,102,97,105,95,49,2,1,139,101,44,44,8,1,23,46,100,105,97,108,111,103,95,108,105,103,104,116,98,111,120,95,95,49,79,49,103,67,2,1,139,101,44,44,8,1,18,46,100,109,99,99,77,97,107,101,83,101,108,101,99,116,105,111,110,2,1,139,98,232,242,8,1,7,46,101,111,118,78,98,106,2,1,88,101,12,138,8,1,19,46,101,115,116,114,97,116,101,103,121,45,99,99,45,112,111,112,117,112,2,1,41,177,195,193,8,1,17,46,102,97,110,99,121,98,111,120,45,111,118,101,114,108,97,121,2,3,16,174,60,170,52,255,118,59,113,87,217,115,8,1,11,46,102,111,111,116,101,114,45,109,115,103,2,1,45,100,28,245,8,1,20,46,102,111,111,116,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,214,178,213,21,8,1,15,46,102,114,101,101,122,101,45,111,118,101,114,108,97,121,2,1,119,28,26,40,8,1,7,46,104,85,97,112,65,76,2,1,245,200,100,241,8,1,14,46,104,101,97,100,101,114,45,110,111,116,105,99,101,2,2,68,232,101,119,220,191,74,123,8,1,23,46,104,111,109,101,32,62,32,100,105,118,32,62,32,46,104,121,100,114,97,116,101,100,2,1,108,80,100,45,8,1,9,46,105,110,100,45,99,98,97,114,2,1,214,119,66,245,8,1,31,46,105,110,100,101,120,45,109,111,100,117,108,101,45,45,99,111,110,116,97,105,110,101,114,45,45,49,53,105,99,109,2,1,69,133,191,190,8,1,17,46,106,99,45,98,115,51,45,99,111,110,116,97,105,110,101,114,2,1,144,30,167,0,8,1,7,46,106,113,105,98,111,120,2,1,47,67,123,106,8,1,11,46,106,113,109,67,111,110,102,105,114,109,2,1,250,61,99,81,8,1,7,46,106,115,115,49,55,57,2,1,149,146,8,204,8,1,7,46,106,115,115,50,51,54,2,1,149,146,8,204,8,1,7,46,107,82,88,79,121,122,2,1,10,30,234,111,8,1,15,46,107,111,101,107,106,101,45,99,111,110,116,101,110,116,2,1,97,66,197,170,8,1,7,46,107,114,100,107,110,102,2,1,71,88,173,28,8,1,10,46,109,97,105,110,115,116,105,99,107,2,1,220,156,147,104,8,1,8,46,109,101,110,116,105,111,110,2,1,141,84,33,162,8,1,24,46,109,101,115,115,97,103,101,45,112,111,112,117,112,45,99,111,111,107,105,101,45,108,113,2,1,15,184,220,62,8,1,20,46,109,105,106,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,44,121,40,129,8,1,15,46,109,111,100,97,108,115,45,111,118,101,114,108,97,121,2,1,20,200,184,202,8,1,12,46,109,111,100,97,108,119,105,110,100,111,119,2,2,98,21,43,185,254,143,27,2,8,1,7,46,110,111,98,108,117,114,2,3,74,43,234,15,234,218,207,200,248,183,116,111,8,1,22,46,110,111,116,105,102,105,99,97,116,105,111,110,67,111,110,116,97,105,110,101,114,2,1,123,237,173,219,8,1,22,46,110,111,116,105,102,105,99,97,116,105,111,110,115,45,109,97,110,97,103,101,114,2,1,172,197,249,199,8,1,10,46,111,110,100,101,114,98,97,108,107,2,1,27,3,206,85,8,1,5,46,111,114,101,111,2,1,114,177,171,129,8,1,14,46,111,116,45,99,111,111,107,105,101,45,98,97,114,2,1,40,160,216,209,8,1,12,46,112,105,110,45,98,46,102,105,120,101,100,2,1,20,135,190,76,8,1,8,46,112,111,112,109,97,107,101,2,1,38,46,186,30,8,1,15,46,112,111,112,117,112,45,98,97,99,107,100,114,111,112,2,1,139,109,2,173,8,1,11,46,112,111,112,117,112,95,109,97,105,110,2,1,32,131,150,254,8,1,28,46,112,111,112,117,112,98,117,105,108,100,101,114,45,119,105,100,103,101,116,45,99,111,110,116,101,110,116,2,1,17,173,21,128,8,1,15,46,112,111,115,105,116,105,111,110,45,102,105,120,101,100,2,1,11,83,14,126,8,1,21,46,112,114,111,114,97,105,108,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,175,213,222,144,8,1,21,46,112,116,104,117,45,100,105,97,108,111,103,95,95,109,111,100,97,108,98,103,2,1,139,105,174,54,8,1,15,46,114,101,118,101,97,108,45,111,118,101,114,108,97,121,2,1,121,193,75,19,8,1,14,46,114,101,118,105,101,119,45,98,97,110,110,101,114,2,1,190,148,58,131,8,1,13,46,114,111,119,45,109,100,45,115,112,108,105,116,2,1,32,103,20,197,8,1,9,46,114,115,116,98,111,120,101,115,2,1,99,77,196,144,8,1,18,46,115,45,99,111,111,107,105,101,95,95,109,111,100,97,108,51,50,2,1,93,119,5,213,8,1,17,46,115,99,45,103,109,109,88,65,103,46,98,102,68,99,119,69,2,1,10,30,234,111,8,1,10,46,115,99,45,104,71,80,66,106,73,2,1,88,101,12,138,8,1,15,46,115,104,45,112,97,103,101,45,110,111,116,105,99,101,2,1,2,49,172,67,8,1,10,46,115,104,111,119,46,100,97,114,107,2,1,77,2,177,72,8,1,18,46,115,105,116,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,8,95,185,78,8,1,19,46,115,110,97,99,107,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,90,107,249,183,8,1,8,46,115,116,80,111,112,117,112,2,1,34,125,127,185,8,1,16,46,115,116,105,99,107,45,116,111,45,98,111,116,116,111,109,2,1,134,153,86,57,8,1,30,46,115,116,121,108,101,95,95,83,67,111,111,107,105,101,66,97,114,45,115,99,45,117,119,106,110,51,107,45,48,2,1,139,105,175,86,8,1,20,46,116,45,99,111,111,107,105,101,45,98,97,114,45,104,111,108,100,101,114,2,1,103,254,222,112,8,1,3,46,116,98,2,1,131,183,72,36,8,1,6,46,116,100,101,99,99,2,4,88,118,238,144,178,168,165,84,215,70,134,41,251,82,224,130,8,1,26,46,116,111,116,97,108,45,112,108,117,115,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,2,1,71,115,163,129,8,1,25,46,117,115,101,114,45,99,111,110,102,105,114,109,97,116,105,111,110,45,115,99,114,101,101,110,2,1,190,147,219,16,8,1,15,46,118,45,98,111,116,116,111,109,45,115,104,101,101,116,2,1,70,46,81,86,8,1,19,46,118,105,97,45,109,111,100,97,108,45,45,99,111,110,115,101,110,116,2,2,27,102,62,18,170,252,144,15,8,1,30,46,118,105,115,105,111,45,97,110,97,108,121,116,105,99,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,127,75,11,242,8,1,35,46,119,51,45,97,110,105,109,97,116,101,45,111,112,97,99,105,116,121,32,62,32,46,119,51,45,99,111,110,116,97,105,110,101,114,2,1,78,213,71,225,8,1,5,46,119,97,108,108,2,2,83,88,115,221,188,94,58,130,8,1,17,46,122,45,53,48,46,98,111,116,116,111,109,45,50,92,46,53,2,1,234,6,38,111,0,1,42,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,101,115,115,97,103,101,34,93,2,1,135,236,185,232,0,1,24,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,77,111,100,97,108,95,34,93,2,1,107,141,219,123,0,1,27,91,100,97,116,97,45,99,121,61,34,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,34,93,2,1,149,146,8,204,0,1,16,99,99,109,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,190,147,235,150,0,1,26,99,111,110,115,101,110,116,45,115,108,105,100,101,45,105,110,45,99,111,109,112,111,110,101,110,116,2,1,107,213,71,141,0,1,6,99,111,111,107,105,101,2,1,190,148,11,162,0,1,25,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,87,97,108,108,95,34,93,2,1,115,231,30,132,0,1,91,100,105,118,91,115,116,121,108,101,61,34,109,97,114,103,105,110,58,32,50,48,112,120,59,32,112,97,100,100,105,110,103,45,108,101,102,116,58,50,48,112,120,59,32,112,97,100,100,105,110,103,45,114,105,103,104,116,58,50,48,112,120,59,98,111,114,100,101,114,58,32,49,112,120,32,100,111,116,116,101,100,32,35,57,57,57,57,57,57,34,93,2,1,4,255,113,173,0,1,10,109,97,105,110,32,126,32,100,105,118,2,1,186,191,210,101,16,1,12,35,102,114,101,101,122,95,112,97,110,101,108,2,1,243,23,222,130,8,1,17,46,67,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,250,241,235,23,8,1,16,46,67,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,250,241,235,23,8,1,24,46,67,111,111,107,105,101,66,97,110,110,101,114,45,98,97,99,107,103,114,111,117,110,100,2,1,174,85,51,40,8,1,8,46,98,108,117,101,45,98,103,2,1,88,162,26,210,0,1,30,46,99,99,107,92,58,99,111,111,107,105,101,45,110,111,116,105,99,101,95,95,99,111,110,116,97,105,110,101,114,2,1,87,166,229,44,8,1,11,46,99,115,115,45,53,52,55,99,114,112,2,1,80,185,49,129,8,1,14,46,100,105,97,108,111,103,45,119,105,110,100,111,119,2,1,5,203,53,134,8,1,19,46,100,105,115,99,108,97,105,109,101,114,45,119,114,97,112,112,101,114,2,1,243,99,61,187,8,1,9,46,100,105,118,95,99,111,111,99,2,1,179,117,122,111,8,1,7,46,101,86,73,90,70,118,2,1,250,231,58,69,8,1,8,46,101,118,111,99,110,116,99,2,1,166,128,35,56,8,1,7,46,103,115,79,84,118,110,2,1,250,231,58,69,8,1,6,46,109,101,109,75,73,2,1,163,8,125,199,8,1,15,46,109,111,100,97,97,108,45,111,118,101,114,108,97,121,2,1,250,141,135,15,8,1,15,46,109,111,100,97,97,108,45,119,114,97,112,112,101,114,2,1,250,141,135,15,8,1,15,46,112,111,95,112,111,112,117,112,95,116,121,112,101,50,2,1,165,143,11,173,8,1,30,46,115,116,121,108,101,115,95,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,95,95,51,112,107,77,121,2,1,110,34,45,211,8,1,19,46,118,100,45,109,101,115,115,97,103,101,45,119,114,97,112,112,101,114,2,1,235,63,240,94,8,1,9,46,119,49,120,114,111,101,107,57,2,1,244,119,108,187,0,1,37,91,115,116,121,108,101,94,61,34,98,111,116,116,111,109,58,32,48,112,120,59,32,104,101,105,103,104,116,58,32,53,48,112,120,59,34,93,2,1,90,147,209,168,16,1,38,35,95,95,110,101,120,116,32,62,32,100,105,118,46,77,117,105,66,111,120,45,114,111,111,116,58,108,97,115,116,45,111,102,45,116,121,112,101,2,1,21,19,69,70,16,1,17,35,99,111,111,107,105,101,45,105,110,102,111,45,119,114,97,112,2,1,224,248,164,116,16,1,9,35,99,112,95,112,111,112,117,112,2,3,3,18,7,35,24,4,45,146,47,239,190,222,16,1,9,35,101,118,97,115,116,101,101,116,2,4,5,64,143,179,128,39,131,236,232,235,225,189,253,139,127,153,16,1,16,35,103,116,109,67,111,111,107,105,101,66,97,110,110,101,114,2,1,46,9,154,144,16,1,7,35,107,109,45,99,99,119,2,1,132,204,198,3,16,1,9,35,110,97,112,115,117,95,99,99,2,1,17,112,62,39,16,1,15,35,115,105,119,97,45,99,111,111,107,105,101,98,97,114,2,1,248,10,212,234,8,1,30,46,77,111,100,97,108,83,117,98,77,111,100,117,108,101,95,111,118,101,114,108,97,121,95,95,113,103,57,73,76,2,1,55,121,58,219,8,1,13,46,95,95,108,100,95,99,111,111,107,105,101,115,2,1,71,62,153,254,8,1,13,46,97,110,105,109,97,116,101,46,109,97,115,107,2,1,233,213,99,65,8,1,19,46,98,111,108,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,41,207,99,22,8,1,6,46,99,103,45,57,55,2,1,225,87,7,91,8,1,18,46,99,104,50,45,100,105,97,108,111,103,45,98,111,116,116,111,109,2,1,92,205,215,173,8,1,21,46,99,108,105,45,112,111,112,117,112,98,97,114,45,111,118,101,114,108,97,121,2,1,102,83,186,61,8,1,16,46,99,111,110,116,97,105,110,101,114,45,97,103,114,101,101,2,1,171,10,221,250,8,1,23,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,108,105,103,104,116,98,111,120,2,1,233,213,99,65,8,1,21,46,99,111,111,107,105,101,95,109,111,100,97,108,95,111,118,101,114,108,97,121,2,1,253,174,191,39,8,1,11,46,99,115,45,111,118,101,114,108,97,121,2,1,50,110,221,255,8,1,12,46,99,115,115,45,49,51,106,101,119,117,97,2,1,18,109,163,165,8,1,27,46,100,105,97,108,111,103,66,97,110,110,101,114,45,45,97,108,105,103,110,45,98,111,116,116,111,109,2,1,131,84,55,71,8,1,7,46,101,105,97,98,121,106,2,1,148,124,21,248,8,1,29,46,102,105,114,115,116,45,112,97,103,101,45,111,102,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,2,1,199,5,118,2,8,1,7,46,103,68,70,87,116,76,2,1,199,160,250,208,8,1,19,46,103,100,112,114,80,111,112,85,112,45,114,111,111,116,45,49,122,84,2,1,234,169,56,134,8,1,24,46,103,110,97,118,95,110,111,116,105,102,105,99,97,116,105,111,110,45,112,111,112,117,112,2,1,118,30,119,11,8,1,23,46,104,99,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,43,26,42,214,8,1,7,46,105,78,103,71,120,121,2,1,143,152,145,179,8,1,8,46,105,114,46,105,113,46,104,2,1,17,240,229,135,8,1,7,46,106,102,67,72,78,122,2,1,182,82,134,85,8,1,7,46,107,99,76,81,122,80,2,1,34,155,103,86,8,1,15,46,107,105,105,116,111,115,45,99,111,111,107,105,101,115,2,1,56,164,123,211,8,1,18,46,108,109,115,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,118,216,142,105,8,1,5,46,108,112,99,110,2,1,14,167,67,247,8,1,30,46,109,97,110,97,103,101,45,99,111,110,115,101,110,116,115,45,112,111,112,117,112,45,119,114,97,112,112,101,114,2,1,39,138,135,200,8,1,21,46,109,111,100,97,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,2,61,16,39,179,255,3,80,198,8,1,43,46,110,103,45,115,99,111,112,101,91,110,103,45,105,102,36,61,34,99,117,115,116,111,109,67,111,110,115,101,110,116,77,97,110,97,103,101,109,101,110,116,34,93,2,1,20,39,163,201,8,1,15,46,110,111,116,105,99,101,45,45,99,111,111,107,105,101,2,3,15,14,29,188,39,244,68,2,226,84,162,233,8,1,21,46,110,111,116,105,102,105,99,97,116,105,111,110,45,119,97,114,110,105,110,103,2,1,95,41,234,187,8,1,14,46,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,67,223,201,34,8,1,31,46,111,110,101,116,114,117,115,116,45,112,99,45,100,97,114,107,45,102,105,108,116,101,114,91,115,116,121,108,101,93,2,1,19,131,170,60,8,1,54,46,111,110,101,116,114,117,115,116,45,112,99,45,100,97,114,107,45,102,105,108,116,101,114,91,115,116,121,108,101,93,32,43,32,35,111,110,101,116,114,117,115,116,45,98,97,110,110,101,114,45,115,100,107,2,1,19,131,170,60,8,1,13,46,111,118,101,114,108,97,121,99,108,97,115,115,2,1,133,195,185,67,8,1,23,46,111,118,101,114,108,97,121,115,32,62,32,46,98,97,99,107,103,114,111,117,110,100,2,1,166,30,103,73,8,1,11,46,114,105,98,98,111,110,45,50,56,48,2,1,28,6,161,35,8,1,7,46,114,115,116,98,111,120,2,1,111,75,72,43,8,1,25,46,115,45,100,105,97,108,111,103,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,2,1,203,215,74,187,8,1,13,46,115,105,116,101,45,111,118,101,114,108,97,121,2,1,203,215,71,25,8,1,14,46,115,118,101,108,116,101,45,55,55,114,105,122,105,2,1,128,79,103,41,8,1,36,46,116,45,98,111,100,121,45,115,109,97,108,108,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,2,1,19,235,54,138,8,1,30,46,117,45,112,111,115,105,116,105,111,110,45,102,105,120,101,100,46,117,45,122,105,110,100,101,120,45,49,48,48,2,1,165,140,205,20,8,1,17,46,118,45,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,231,140,131,193,8,1,16,46,118,45,115,110,97,99,107,45,45,98,111,116,116,111,109,2,1,216,42,245,108,8,1,20,46,118,97,114,109,97,45,102,111,111,116,101,114,45,115,116,105,99,107,121,2,1,19,235,180,151,8,1,14,46,118,116,45,100,105,115,99,108,97,105,109,101,114,2,1,203,215,58,159,8,1,9,46,119,49,120,114,111,101,107,57,2,1,219,137,84,20,0,1,56,91,99,108,97,115,115,94,61,34,115,116,121,108,101,100,66,97,114,78,111,116,105,102,105,99,97,116,105,111,110,95,95,66,97,114,78,111,116,105,102,105,99,97,116,105,111,110,87,114,97,112,112,101,114,34,93,2,1,51,244,154,143,0,1,76,91,115,116,121,108,101,61,34,119,105,100,116,104,58,49,48,48,37,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,70,48,70,48,70,48,59,112,97,100,100,105,110,103,58,49,48,112,120,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,34,93,2,1,106,208,168,254,0,1,11,98,119,45,105,110,102,111,45,98,97,114,2,1,108,69,11,28,0,1,12,100,105,118,32,62,32,46,99,103,45,53,55,2,1,225,87,7,91,0,1,52,100,105,118,91,97,114,105,97,45,108,97,98,101,108,61,34,68,101,110,110,97,32,119,101,98,98,112,108,97,116,115,32,97,110,118,228,110,100,101,114,32,119,101,98,98,107,97,107,111,114,34,93,2,2,18,97,205,8,118,25,42,219,0,1,48,100,105,118,91,97,114,105,97,45,108,97,98,101,108,61,34,83,105,118,117,115,116,111,108,108,97,32,107,228,121,116,101,116,228,228,110,32,101,118,228,115,116,101,105,116,228,34,93,2,2,18,97,205,8,118,25,42,219,0,1,43,100,105,118,91,97,114,105,97,45,108,97,98,101,108,61,34,84,104,105,115,32,119,101,98,115,105,116,101,32,117,115,101,115,32,99,111,111,107,105,101,115,34,93,2,2,18,97,205,8,118,25,42,219,0,1,39,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,67,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,95,95,34,93,2,1,19,235,246,124,0,1,34,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,84,111,111,108,116,105,112,83,116,121,108,101,95,34,93,2,1,118,30,23,64,0,1,128,0,0,0,159,100,105,118,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,32,114,105,103,104,116,58,32,48,112,120,59,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,32,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,32,99,101,110,116,101,114,59,32,122,45,105,110,100,101,120,58,32,49,48,48,48,48,48,59,32,116,114,97,110,115,105,116,105,111,110,58,32,116,114,97,110,115,102,111,114,109,32,50,48,48,109,115,32,101,97,115,101,32,48,115,59,34,93,2,2,71,144,102,14,78,95,243,252,0,1,48,100,105,118,91,115,116,121,108,101,94,61,34,111,112,97,99,105,116,121,58,32,49,59,32,104,101,105,103,104,116,58,32,34,93,91,115,116,121,108,101,36,61,34,112,120,59,34,93,2,1,186,14,78,111,0,1,43,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,114,105,103,104,116,58,48,59,116,111,112,58,48,59,34,93,2,1,99,255,151,3,0,1,56,100,105,118,91,115,116,121,108,101,94,61,34,115,116,121,108,101,61,119,105,100,116,104,58,49,48,48,37,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,70,48,70,48,70,48,59,34,93,2,1,106,208,168,254,0,1,19,105,109,116,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,2,1,203,215,41,178,0,1,36,115,101,99,116,105,111,110,91,97,114,105,97,45,108,97,98,101,108,61,34,65,99,99,101,112,116,32,67,111,111,107,105,101,115,34,93,2,1,18,89,97,70,0,1,39,115,101,99,116,105,111,110,91,99,108,97,115,115,94,61,34,80,114,105,118,97,99,121,67,111,110,115,101,110,116,66,97,110,110,101,114,95,34,93,2,7,71,129,251,225,84,170,120,206,114,107,112,116,142,160,149,115,165,148,4,201,173,180,101,47,239,210,150,82,8,1,37,46,115,116,121,108,101,115,95,97,99,99,101,112,116,67,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,95,95,50,50,99,117,89,2,1,243,3,245,124,16,1,24,35,67,111,111,107,105,101,71,100,112,114,67,111,110,115,101,110,116,66,97,110,110,101,114,2,1,233,64,129,131,16,1,15,35,67,111,111,107,105,101,115,83,101,99,116,105,111,110,2,1,183,99,141,164,16,1,19,35,78,77,67,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,2,1,52,127,189,173,16,1,12,35,97,100,118,101,114,116,45,111,110,99,101,2,1,196,7,12,125,16,1,10,35,98,116,109,95,116,101,114,109,115,2,1,230,180,48,101,16,1,11,35,99,107,95,99,111,111,107,105,101,115,2,2,37,32,138,248,224,9,113,44,16,1,19,35,99,111,110,115,101,110,116,80,108,97,99,101,104,111,108,100,101,114,2,1,180,181,193,153,16,1,18,35,99,111,111,107,105,101,115,95,99,111,109,112,111,110,101,110,116,2,1,182,82,129,243,16,1,22,35,99,111,111,107,105,101,115,101,116,116,105,110,103,115,45,100,105,97,108,111,103,2,1,247,144,168,214,16,1,3,35,99,112,2,1,89,244,45,200,16,1,11,35,100,105,115,99,108,97,105,109,101,114,2,1,207,130,66,39,16,1,20,35,101,108,73,110,115,111,109,110,105,97,67,111,111,107,105,101,66,97,114,2,1,189,88,75,48,16,1,4,35,101,117,99,2,1,69,72,75,86,16,1,8,35,109,121,80,111,112,117,112,2,1,168,245,204,71,16,1,14,35,112,111,108,105,99,121,45,110,111,116,105,99,101,2,1,159,35,124,43,16,1,15,35,114,111,111,116,32,62,32,46,101,89,71,81,68,105,2,1,128,31,26,162,16,1,9,35,114,115,116,98,111,120,95,50,2,1,103,102,150,109,16,1,14,35,116,99,45,112,110,108,46,111,112,101,110,101,100,2,1,253,76,159,120,16,1,14,35,117,115,105,110,103,45,99,111,111,107,105,101,115,2,1,151,112,254,82,8,1,36,46,67,111,111,107,105,101,80,111,108,105,99,121,73,110,102,111,95,95,99,111,110,116,97,105,110,101,114,95,95,95,50,100,100,105,45,2,1,110,202,25,20,8,1,12,46,97,108,101,114,116,98,97,110,110,101,114,2,1,238,211,191,72,8,1,10,46,98,111,116,116,111,109,98,97,114,2,1,141,125,61,145,8,1,7,46,99,99,95,111,98,120,2,1,233,239,70,206,8,1,11,46,102,105,120,45,98,111,116,116,111,109,2,1,63,201,26,15,8,1,8,46,103,100,112,114,112,111,112,2,1,76,77,82,36,8,1,15,46,109,111,100,97,108,115,45,119,114,97,112,112,101,114,2,1,147,162,255,93,8,1,26,46,110,101,119,45,99,111,111,107,105,101,45,115,117,112,101,114,99,111,110,116,97,105,110,101,114,2,1,215,209,188,65,8,1,9,46,112,114,118,109,111,100,97,108,2,1,89,240,108,55,8,1,11,46,115,101,116,67,111,111,107,105,101,115,2,1,42,227,187,153,8,1,10,46,116,101,114,109,115,110,111,116,101,2,1,164,124,181,138,0,1,15,99,111,111,107,105,101,115,45,99,111,110,99,101,110,116,2,1,137,179,236,98,0,1,22,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,115,95,34,93,2,1,55,201,118,229,0,1,30,100,105,118,91,100,97,116,97,45,116,101,115,116,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,34,93,2,1,110,202,25,20,8,1,18,46,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,2,1,134,146,199,141,16,1,7,35,67,76,97,121,101,114,2,4,23,81,75,123,122,139,125,90,142,132,25,3,227,145,171,136,16,1,2,35,97,2,1,0,205,84,158,16,1,17,35,97,99,99,101,112,116,45,99,111,110,116,97,105,110,101,114,2,2,165,252,146,164,182,166,50,239,16,1,17,35,97,99,99,101,112,116,95,99,111,110,116,97,105,110,101,114,2,1,198,25,85,174,16,1,6,35,99,105,110,102,111,2,1,221,41,159,133,16,1,19,35,99,111,111,107,105,101,119,97,108,108,45,119,114,97,112,112,101,114,2,1,158,100,4,187,16,1,6,35,99,112,45,98,103,2,1,26,227,128,181,16,1,11,35,99,112,45,99,111,110,116,101,110,116,2,1,26,227,128,181,16,1,3,35,99,119,2,1,149,55,166,26,16,1,9,35,99,119,97,114,110,105,110,103,2,1,48,41,43,27,16,1,7,35,100,105,100,121,111,117,2,1,170,85,138,21,16,1,18,35,101,120,112,111,115,101,77,97,115,107,79,118,101,114,108,97,121,2,1,205,166,214,32,16,1,6,35,102,105,103,121,117,2,1,161,158,226,254,16,1,7,35,102,111,111,116,101,114,2,1,72,142,207,115,16,1,15,35,102,111,111,116,101,114,45,99,111,110,115,101,110,116,2,1,170,85,166,162,16,1,13,35,102,114,97,109,101,45,109,111,100,97,108,115,2,1,216,4,217,129,16,1,14,35,106,115,99,111,111,107,105,101,109,111,100,97,108,2,1,91,121,195,183,16,1,8,35,108,97,98,108,101,99,97,2,1,131,1,174,94,16,1,26,35,108,97,121,111,117,116,95,97,100,118,101,114,116,105,115,105,110,103,95,98,111,116,116,111,109,2,3,38,204,165,33,77,140,101,123,211,67,160,222,16,1,17,35,109,97,114,107,101,116,105,110,103,67,111,110,115,101,110,116,2,2,170,85,146,34,227,226,235,58,16,1,10,35,112,97,103,101,45,109,97,115,107,2,1,91,121,195,183,16,1,7,35,115,108,105,100,101,114,2,1,132,47,54,157,16,1,16,35,115,112,99,111,111,107,105,101,111,118,101,114,108,97,121,2,1,179,194,185,40,16,1,9,35,115,116,105,97,108,101,114,116,2,1,100,223,106,128,16,1,10,35,115,117,116,105,95,99,115,105,107,2,1,181,233,127,168,16,1,10,35,115,117,116,105,100,111,98,111,122,2,1,228,194,38,7,8,1,12,46,90,101,98,114,97,68,105,97,108,111,103,2,2,170,85,163,80,243,163,177,51,8,1,19,46,90,101,98,114,97,68,105,97,108,111,103,79,118,101,114,108,97,121,2,2,170,85,163,80,243,163,177,51,8,1,10,46,95,50,100,95,108,57,76,87,99,2,1,53,234,35,16,8,1,6,46,97,102,99,111,111,2,1,116,204,171,118,8,1,17,46,97,115,122,102,76,97,121,101,114,67,111,110,116,101,110,116,2,1,238,137,220,102,8,1,7,46,98,84,80,108,82,71,2,1,166,244,53,195,8,1,9,46,99,45,119,105,100,103,101,116,2,1,68,26,37,79,8,1,10,46,99,99,45,104,111,108,100,101,114,2,1,62,139,110,49,8,1,12,46,99,100,105,115,99,108,97,105,109,101,114,2,1,234,5,100,60,8,1,13,46,99,111,111,107,105,101,45,97,108,101,114,116,2,1,205,166,214,32,8,1,12,46,99,111,111,107,105,101,45,98,97,115,101,2,1,122,165,246,112,8,1,15,46,99,111,111,107,105,101,45,110,101,119,45,99,110,116,2,1,170,85,174,26,8,1,3,46,99,116,2,2,65,53,175,88,242,52,249,110,8,1,8,46,100,105,115,99,45,99,112,2,1,170,85,181,184,8,1,17,46,103,114,101,121,45,112,111,112,117,112,45,108,97,121,101,114,2,1,122,165,246,112,8,1,7,46,104,66,72,117,110,100,2,1,166,244,53,195,8,1,24,46,106,101,103,118,101,114,101,109,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,193,73,132,3,8,1,20,46,108,97,98,108,101,99,95,115,117,116,105,95,115,122,97,98,97,108,121,2,1,99,58,108,107,8,1,19,46,108,101,103,97,108,45,99,111,110,115,101,110,116,45,119,114,97,112,2,1,158,93,1,172,8,1,6,46,109,111,100,97,108,2,1,70,185,213,82,8,1,14,46,110,101,119,65,83,90,70,76,97,121,101,114,50,2,1,70,31,226,124,8,1,29,46,110,111,116,48,49,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,2,1,170,85,223,210,8,1,17,46,111,102,102,99,97,110,118,97,115,45,98,111,116,116,111,109,2,1,63,179,218,59,8,1,13,46,112,111,112,117,112,95,119,105,110,100,111,119,2,1,13,79,196,130,8,1,15,46,112,111,115,105,116,105,111,110,45,102,105,120,101,100,2,1,55,169,201,6,8,1,14,46,114,101,103,105,111,110,45,98,111,116,116,111,109,2,1,188,48,197,4,8,1,7,46,114,115,116,98,111,120,2,1,51,226,234,106,8,1,18,46,115,122,101,50,48,50,48,45,99,111,110,116,97,105,110,101,114,2,1,216,4,217,129,0,1,51,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,119,105,100,116,104,58,32,51,57,101,109,59,32,108,101,102,116,58,32,53,48,37,59,34,93,2,1,58,249,209,226,0,1,54,100,105,118,91,115,116,121,108,101,42,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,97,40,51,52,44,32,51,52,44,32,51,52,44,32,48,46,56,41,59,34,93,2,1,168,220,216,19,0,1,128,0,0,0,129,100,105,118,91,115,116,121,108,101,61,34,119,105,100,116,104,58,49,48,48,37,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,98,108,97,99,107,59,32,112,97,100,100,105,110,103,58,32,56,112,120,59,32,99,111,108,111,114,58,119,104,105,116,101,59,32,111,112,97,99,105,116,121,58,48,46,56,59,32,122,45,105,110,100,101,120,58,50,48,48,48,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,48,59,34,93,2,1,228,91,223,116,0,1,39,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,32,98,111,116,116,111,109,58,48,59,34,93,2,1,235,220,21,43,8,1,28,46,67,111,111,107,105,101,78,111,116,105,99,101,95,119,114,97,112,112,101,114,95,95,109,48,117,82,110,2,1,49,246,50,181,8,1,17,46,71,100,112,114,95,103,100,112,114,95,95,51,67,78,98,113,2,2,54,18,1,230,162,152,217,73,8,1,13,46,95,115,97,109,95,103,97,95,105,110,102,111,2,1,215,169,135,188,8,1,14,46,98,111,116,116,111,109,45,98,97,110,110,101,114,2,2,61,25,172,232,198,68,206,208,8,1,18,46,98,111,116,116,111,109,45,100,105,115,99,108,97,105,109,101,114,2,1,132,36,254,140,8,1,4,46,99,104,50,2,1,232,184,4,6,8,1,7,46,99,111,111,66,111,120,2,1,248,158,53,86,8,1,18,46,100,105,115,109,105,115,115,97,98,108,101,45,116,101,114,109,115,2,1,11,178,2,1,8,1,11,46,101,49,118,108,55,122,97,116,49,48,2,1,6,102,118,148,8,1,43,46,101,108,101,109,101,110,116,111,114,45,119,105,100,103,101,116,45,105,99,111,110,45,98,111,120,46,101,108,101,109,101,110,116,111,114,45,119,105,100,103,101,116,2,1,130,173,181,113,8,1,10,46,101,110,118,116,113,121,115,49,48,2,1,6,102,118,148,8,1,7,46,101,119,118,75,70,113,2,1,27,219,102,177,8,1,5,46,104,45,52,48,2,1,162,153,11,222,8,1,15,46,104,101,97,100,101,114,45,109,101,115,115,97,103,101,2,1,35,102,68,29,8,1,8,46,104,111,115,45,98,97,114,2,1,53,198,212,157,8,1,21,46,106,101,116,45,112,111,112,117,112,95,95,99,111,110,116,97,105,110,101,114,2,1,130,173,181,113,8,1,15,46,112,45,53,46,122,45,49,48,46,102,105,120,101,100,2,1,131,130,170,126,8,1,13,46,112,45,54,46,109,97,120,45,119,45,115,109,2,1,128,25,14,223,8,1,6,46,112,120,45,52,48,2,1,83,65,220,103,8,1,13,46,115,101,115,115,105,111,110,45,116,101,120,116,2,4,21,122,90,206,151,242,225,176,162,152,216,54,233,90,4,250,8,1,12,46,115,117,99,100,45,98,97,110,110,101,114,2,1,157,47,132,135,8,1,13,46,67,111,111,107,105,101,115,77,111,100,101,108,2,1,19,41,11,80,8,1,21,46,104,101,97,100,101,114,45,116,101,120,116,45,99,111,110,116,101,110,101,114,2,1,250,82,89,234,8,1,11,46,113,117,105,99,107,115,108,105,100,101,2,1,136,63,120,189,8,1,23,46,115,105,116,101,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,2,1,162,254,21,151,16,1,3,35,67,107,2,1,29,176,123,98,16,1,16,35,67,111,115,77,111,111,80,111,112,117,112,77,97,115,107,2,1,24,235,151,66,16,1,4,35,71,80,80,2,1,210,207,142,203,16,1,7,35,71,95,105,110,102,111,2,2,36,185,190,192,249,147,55,170,16,1,12,35,80,79,80,85,80,83,95,82,79,79,84,2,1,172,178,235,201,16,1,22,35,82,73,78,71,79,45,98,97,110,110,101,114,45,98,97,99,107,100,114,111,112,2,1,90,60,136,94,0,1,28,35,92,53,102,32,117,98,117,110,116,117,45,105,116,95,99,111,111,107,105,101,95,112,111,108,105,99,121,2,1,18,113,200,158,16,1,13,35,95,99,112,109,116,45,105,102,114,97,109,101,2,1,222,147,160,77,16,1,90,35,95,105,116,95,110,101,120,116,109,105,110,100,95,108,105,102,101,114,97,121,95,99,111,111,107,105,101,95,105,110,116,101,114,99,101,112,116,111,114,95,67,111,111,107,105,101,73,110,116,101,114,99,101,112,116,111,114,80,111,114,116,108,101,116,95,99,111,111,107,105,101,73,110,116,101,114,99,101,112,116,111,114,87,114,97,112,112,101,114,2,1,218,219,242,162,16,1,9,35,97,98,115,111,108,117,116,101,2,1,46,25,235,45,16,1,17,35,97,99,99,111,110,115,101,110,116,111,45,99,108,105,99,107,2,2,106,58,59,226,153,99,241,166,16,1,10,35,97,102,45,99,119,45,98,111,120,2,1,144,106,243,61,16,1,11,35,97,103,101,45,118,101,114,105,102,121,2,1,150,136,154,41,16,1,6,35,97,108,101,114,116,2,1,151,179,246,29,16,1,7,35,98,97,110,110,101,114,2,1,109,166,225,3,16,1,14,35,98,97,110,110,101,114,67,111,110,116,101,110,116,2,1,69,19,130,213,16,1,11,35,98,97,110,110,101,114,73,110,102,111,2,1,168,127,198,18,16,1,13,35,98,97,114,114,97,45,112,111,108,105,99,121,2,1,92,140,149,169,16,1,8,35,98,108,117,114,45,98,103,2,1,164,148,134,183,16,1,7,35,98,110,114,99,107,115,2,1,231,2,15,56,16,1,14,35,98,111,116,116,111,109,45,98,97,110,110,101,114,2,1,11,125,195,157,16,1,10,35,98,111,116,116,111,109,98,97,114,2,1,64,159,85,34,16,1,11,35,98,111,120,45,118,101,114,105,102,121,2,1,150,136,154,41,16,1,13,35,98,111,120,82,105,99,104,105,101,115,116,97,2,2,193,206,151,43,230,123,6,38,16,1,8,35,98,121,115,119,105,110,100,2,1,149,124,131,64,16,1,8,35,99,45,109,111,100,97,108,2,1,34,206,177,60,16,1,9,35,99,77,101,115,115,97,103,101,2,1,140,84,67,87,16,1,21,35,99,97,115,115,97,102,111,114,101,110,115,101,45,99,111,111,107,105,101,115,2,2,1,62,248,202,115,131,81,1,16,1,4,35,99,99,77,2,1,171,129,123,55,16,1,11,35,99,100,95,119,114,97,112,112,101,114,2,1,92,186,190,202,16,1,8,35,99,107,101,95,112,108,99,2,1,163,113,28,122,16,1,4,35,99,107,110,2,1,203,137,41,88,16,1,3,35,99,109,2,1,128,205,75,90,16,1,12,35,99,109,112,45,111,118,101,114,108,97,121,2,1,69,60,210,156,16,1,13,35,99,109,112,67,111,110,116,97,105,110,101,114,2,1,40,196,180,206,16,1,17,35,99,111,110,116,97,105,110,101,114,80,114,105,118,97,99,121,2,1,32,33,21,121,16,1,12,35,99,111,111,107,105,101,45,119,97,108,108,2,1,113,73,36,141,16,1,15,35,99,111,111,107,105,101,66,97,114,77,111,100,97,108,2,2,21,148,116,34,241,64,63,137,16,1,17,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,2,1,7,136,69,124,16,1,17,35,99,111,111,107,105,101,77,101,108,97,66,97,110,110,101,114,2,1,177,106,160,73,16,1,13,35,99,111,111,107,105,101,95,97,108,101,114,116,2,1,189,177,130,180,16,1,16,35,99,111,111,107,105,101,109,111,100,97,108,54,53,52,55,2,1,217,55,152,153,16,1,27,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,98,111,116,116,111,109,95,108,101,102,116,2,1,106,99,182,186,16,1,7,35,99,111,111,107,117,112,2,1,60,73,19,216,16,1,14,35,99,111,111,107,121,95,99,111,110,116,101,110,116,2,1,242,180,11,228,16,1,5,35,100,84,99,102,2,1,27,137,59,132,16,1,17,35,100,99,98,45,98,108,97,99,107,45,115,99,114,101,101,110,2,1,236,3,191,67,16,1,7,35,100,105,115,66,111,116,2,1,76,105,233,196,16,1,6,35,100,105,115,99,108,2,1,50,46,10,130,16,1,20,35,100,105,118,45,99,111,110,102,105,114,109,45,112,114,105,118,97,99,121,2,1,126,234,115,130,16,1,15,35,100,105,118,82,73,78,71,79,66,97,110,110,101,114,2,1,90,60,136,94,16,1,23,35,100,111,110,101,119,105,102,105,95,99,111,111,107,105,101,95,97,100,118,105,99,101,2,1,211,214,69,97,16,1,12,35,102,105,114,115,116,45,118,105,115,105,116,2,1,97,220,118,213,16,1,7,35,102,111,111,116,101,114,2,1,68,19,115,217,16,1,4,35,104,105,100,2,1,75,242,251,206,16,1,15,35,104,111,108,100,111,110,45,111,118,101,114,108,97,121,2,1,98,197,58,77,16,1,22,35,105,99,101,103,114,97,109,95,109,101,115,115,97,103,101,95,49,48,57,55,49,2,1,141,131,172,211,16,1,19,35,105,110,102,111,114,109,97,116,105,118,97,80,114,105,118,97,99,121,2,1,88,236,101,6,16,1,18,35,105,117,98,101,110,100,97,45,99,115,45,98,97,110,110,101,114,2,1,208,203,244,42,16,1,10,35,108,108,95,98,97,110,110,101,114,2,1,241,1,137,65,16,1,8,35,108,108,95,105,110,102,111,2,1,241,1,137,65,16,1,4,35,109,97,103,2,1,49,121,109,110,16,1,13,35,109,97,115,107,45,111,118,101,114,108,97,121,2,1,7,136,69,124,16,1,11,35,109,101,115,115,97,103,101,66,97,114,2,1,174,49,73,253,16,1,18,35,109,103,105,116,95,110,111,116,105,102,105,99,97,116,105,111,110,2,1,168,102,33,148,16,1,18,35,109,121,95,112,114,105,118,97,99,121,95,119,105,100,103,101,116,2,1,37,245,117,123,16,1,10,35,110,111,114,109,97,116,105,118,97,2,3,35,107,181,132,58,72,114,209,86,62,36,248,16,1,11,35,112,97,103,101,95,104,105,100,101,114,2,1,125,172,175,3,16,1,23,35,112,105,95,116,114,97,99,107,105,110,103,95,111,112,116,95,105,110,95,100,105,118,2,1,66,85,28,6,16,1,23,35,112,105,120,101,108,102,97,98,114,105,99,97,45,99,115,45,98,97,110,110,101,114,2,1,34,214,200,69,16,1,13,35,112,111,112,99,111,111,107,105,101,115,98,103,2,1,80,21,205,199,16,1,16,35,112,114,105,118,97,99,121,95,97,100,118,105,115,111,114,2,1,206,166,95,131,16,1,11,35,112,114,105,118,97,99,121,100,105,118,2,1,162,139,30,0,16,1,8,35,112,117,116,104,101,114,101,2,1,166,253,74,94,16,1,23,35,114,100,115,45,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,2,1,166,254,129,45,16,1,12,35,115,66,95,105,110,106,101,99,116,101,100,2,1,93,139,204,61,16,1,15,35,115,101,99,45,98,97,110,110,101,114,45,100,105,118,2,1,0,167,16,200,16,1,12,35,115,108,105,100,101,45,112,97,110,101,108,2,1,223,106,126,128,16,1,14,35,115,108,105,100,105,110,103,45,112,111,112,117,112,2,1,189,72,54,86,16,1,20,35,115,112,108,97,115,104,98,111,120,45,97,100,118,99,111,114,110,101,114,2,1,10,207,69,253,16,1,13,35,115,116,105,99,107,121,45,112,111,112,117,112,2,1,208,42,18,206,16,1,15,35,115,121,115,116,101,109,45,109,101,115,115,97,103,101,2,2,8,205,122,2,29,10,244,21,16,1,12,35,116,97,45,99,99,45,109,111,100,97,108,2,1,127,129,64,131,16,1,8,35,116,104,101,112,114,105,118,2,1,171,176,84,3,16,1,19,35,116,105,109,101,115,45,108,101,103,97,108,45,110,111,116,105,99,101,2,1,199,203,186,1,16,1,11,35,116,114,97,99,101,45,102,111,114,109,2,1,9,22,252,186,16,1,8,35,117,100,116,68,97,114,107,2,1,36,101,198,80,16,1,19,35,117,110,105,112,103,45,99,111,111,107,105,101,99,104,111,105,99,101,2,1,9,101,101,13,16,1,13,35,118,105,115,105,116,111,114,95,105,110,102,111,2,1,147,22,99,130,16,1,14,35,119,97,114,110,105,110,103,45,112,111,112,117,112,2,1,254,42,117,181,16,1,15,35,119,114,97,112,68,105,115,99,108,97,105,109,101,114,2,1,237,253,58,162,16,1,11,35,120,49,100,95,99,104,111,105,115,101,2,1,136,53,214,86,16,1,17,35,122,102,45,45,97,108,101,114,116,115,45,112,97,110,101,108,2,1,7,31,117,30,8,1,30,46,77,73,80,67,111,110,115,101,110,116,95,102,117,108,108,95,115,99,114,101,101,110,95,95,52,117,83,119,109,2,1,212,231,221,187,8,1,7,46,95,49,50,100,57,55,2,1,119,37,76,98,8,1,7,46,95,50,109,109,121,98,2,1,119,37,76,98,8,1,8,46,95,51,117,88,53,68,115,2,1,232,103,100,181,8,1,9,46,95,67,76,95,109,97,105,110,2,12,71,143,230,223,71,164,180,242,111,163,200,126,135,18,177,74,135,143,39,19,153,157,220,61,164,245,209,129,174,130,105,78,218,85,117,55,224,142,53,194,228,161,96,15,251,109,36,3,8,1,21,46,97,98,102,45,110,111,45,99,111,111,107,105,101,58,58,97,102,116,101,114,2,1,35,44,123,182,8,1,19,46,97,99,99,101,116,116,97,95,99,111,111,107,105,101,115,95,109,101,2,1,0,115,4,217,8,1,7,46,97,99,116,105,118,101,2,2,6,237,1,9,48,58,219,139,8,1,11,46,97,108,101,114,116,45,105,110,102,111,2,1,93,44,31,92,8,1,16,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,2,1,26,0,9,12,8,1,27,46,97,109,103,100,112,114,99,111,111,107,105,101,45,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,144,16,99,20,8,1,37,46,97,110,105,109,97,116,101,95,95,97,110,105,109,97,116,101,100,46,97,110,105,109,97,116,101,95,95,115,108,105,100,101,73,110,85,112,2,1,93,55,62,168,8,1,17,46,98,97,99,107,103,114,111,117,110,100,45,112,111,112,117,112,2,1,51,3,97,245,8,1,14,46,98,108,97,99,107,95,111,118,101,114,108,97,121,2,1,113,73,249,213,8,1,10,46,98,111,108,100,95,116,101,120,116,2,1,194,212,159,6,8,1,30,46,98,111,115,101,45,105,110,102,111,66,97,114,50,48,49,54,45,45,102,105,120,101,100,66,111,116,116,111,109,2,1,34,213,5,187,8,1,23,46,99,98,111,115,115,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,2,2,94,38,133,127,235,23,174,202,8,1,8,46,99,99,45,108,105,110,107,2,1,110,254,12,61,8,1,15,46,99,99,95,112,108,97,99,101,104,111,108,100,101,114,2,2,8,5,30,223,197,73,90,181,8,1,5,46,99,101,110,116,2,1,127,223,162,60,8,1,13,46,99,104,101,99,107,45,112,111,108,105,99,121,2,1,7,39,46,52,8,1,6,46,99,107,95,105,102,2,1,96,199,32,133,8,1,15,46,99,108,45,98,97,110,110,101,114,45,98,111,100,121,2,1,133,170,23,200,8,1,4,46,99,108,109,2,1,72,101,25,153,8,1,10,46,99,111,108,97,119,45,100,105,118,2,1,119,188,247,138,8,1,10,46,99,111,110,116,80,111,112,117,112,2,1,24,235,151,66,8,1,8,46,99,111,110,116,101,110,116,2,1,9,9,240,51,8,1,14,46,99,111,111,107,105,101,95,119,105,110,100,111,119,2,1,197,102,108,186,8,1,51,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,95,99,111,111,107,105,101,115,67,111,110,115,101,110,116,66,97,110,110,101,114,95,95,106,115,119,71,72,2,1,175,254,143,100,8,1,12,46,99,115,115,45,49,103,106,113,117,111,97,2,1,143,61,19,199,8,1,11,46,99,115,115,45,106,121,97,107,122,97,2,1,255,84,225,2,8,1,13,46,99,119,95,99,111,110,116,97,105,110,101,114,2,1,107,221,212,203,8,1,11,46,99,121,110,45,98,97,110,110,101,114,2,1,47,87,206,229,8,1,10,46,100,105,45,98,97,110,110,101,114,2,1,177,254,95,89,8,1,26,46,101,120,112,108,105,99,105,116,95,99,111,110,115,101,110,116,95,98,97,99,107,115,105,100,101,2,1,150,156,196,7,8,1,22,46,102,97,115,99,105,97,45,97,118,118,105,115,111,45,99,111,111,99,107,105,101,2,1,228,226,196,60,8,1,12,46,102,105,114,115,116,45,118,105,115,105,116,2,1,214,23,64,243,8,1,48,46,102,114,101,101,112,114,105,118,97,99,121,112,111,108,105,99,121,45,99,111,109,45,45,45,110,98,45,105,110,116,101,114,115,116,105,116,105,97,108,45,111,118,101,114,108,97,121,2,1,41,170,99,44,8,1,22,46,102,117,108,108,115,99,114,101,101,110,95,98,111,120,95,108,101,103,97,108,101,2,1,198,131,41,191,8,1,12,46,105,110,102,111,45,98,97,110,110,101,114,2,1,208,153,105,209,8,1,17,46,105,110,102,111,45,98,97,114,45,119,114,97,112,112,101,114,2,1,221,174,57,59,8,1,13,46,105,110,102,111,45,112,114,105,118,97,99,121,2,1,133,49,67,229,8,1,16,46,105,110,105,98,105,115,99,105,95,115,102,111,110,100,111,2,1,198,131,41,191,8,1,15,46,105,110,118,105,101,119,95,97,110,105,109,97,116,101,2,1,30,162,207,19,8,1,17,46,105,122,105,77,111,100,97,108,45,111,118,101,114,108,97,121,2,1,230,165,158,177,8,1,9,46,106,99,111,110,102,105,114,109,2,1,218,120,107,234,8,1,14,46,106,99,111,110,102,105,114,109,45,99,101,108,108,2,1,218,120,107,234,8,1,7,46,106,115,115,50,49,56,2,1,77,209,17,42,8,1,7,46,106,115,115,50,52,51,2,1,77,209,17,42,8,1,19,46,106,117,115,116,105,99,97,45,99,111,111,107,105,101,95,98,97,114,2,1,143,110,89,249,8,1,10,46,106,119,45,112,111,112,117,112,115,2,1,202,188,200,157,8,1,29,46,109,97,105,110,45,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,224,230,92,148,8,1,22,46,109,97,112,115,116,111,114,101,45,99,111,111,107,105,101,45,112,97,110,101,108,2,1,156,22,160,181,8,1,8,46,109,101,115,115,97,103,101,2,2,54,231,254,11,166,254,169,34,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,2,21,148,116,34,241,64,63,137,8,1,13,46,109,111,100,97,108,77,101,115,115,97,103,101,2,1,166,234,112,125,8,1,15,46,109,111,100,97,108,95,95,111,118,101,114,108,97,121,2,1,192,58,15,42,8,1,15,46,109,111,100,97,108,115,45,119,114,97,112,112,101,114,2,1,73,108,230,44,8,1,20,46,109,112,112,45,105,115,45,111,112,101,110,46,109,112,112,45,98,111,120,2,1,7,190,126,228,8,1,15,46,109,120,45,48,46,119,45,49,48,48,46,114,111,119,2,1,30,162,207,19,8,1,12,46,110,111,116,105,99,101,45,119,114,97,112,2,1,146,124,96,187,8,1,19,46,110,112,45,99,111,111,107,105,101,115,95,95,115,99,114,101,101,110,2,1,41,14,96,187,8,1,7,46,110,115,45,98,111,120,2,1,212,176,163,47,8,1,8,46,111,45,109,111,100,97,108,2,1,172,71,21,167,8,1,6,46,111,112,116,105,110,2,1,8,59,221,98,8,1,12,46,112,114,105,118,97,99,121,45,109,115,103,2,1,130,189,226,187,8,1,17,46,112,114,105,118,97,99,121,83,116,97,116,101,109,101,110,116,2,1,248,140,84,234,8,1,19,46,114,97,105,110,49,45,99,112,45,99,111,110,116,97,105,110,101,114,2,1,20,229,199,37,8,1,16,46,114,100,115,45,109,111,100,97,108,45,112,111,112,117,112,2,1,166,254,129,45,8,1,21,46,114,101,97,99,116,45,111,110,99,108,105,99,107,111,117,116,115,105,100,101,2,1,191,95,62,172,8,1,9,46,114,115,116,98,111,120,101,115,2,1,214,178,219,246,8,1,18,46,115,50,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,49,10,55,175,8,1,10,46,115,95,98,108,117,101,98,111,120,2,1,129,174,147,220,8,1,10,46,115,99,45,100,120,103,79,105,81,2,1,52,237,18,191,8,1,17,46,115,99,45,102,122,110,78,118,76,46,105,65,115,122,104,99,2,1,202,113,24,184,8,1,21,46,115,105,116,101,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,115,2,1,100,252,107,55,8,1,14,46,115,108,100,115,45,98,97,99,107,100,114,111,112,2,1,166,211,110,27,8,1,11,46,115,108,100,115,45,109,111,100,97,108,2,1,166,211,110,27,8,1,37,46,115,113,115,45,97,110,110,111,117,110,99,101,109,101,110,116,45,98,97,114,45,99,117,115,116,111,109,45,108,111,99,97,116,105,111,110,2,1,138,24,204,127,8,1,13,46,115,116,105,99,107,121,70,111,111,116,101,114,2,1,149,95,20,223,8,1,28,46,115,118,118,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,119,251,93,9,8,1,28,46,116,101,108,99,101,108,45,98,97,110,110,101,114,45,97,118,105,115,111,45,99,111,111,107,105,101,115,2,1,36,226,26,27,8,1,13,46,116,119,99,99,95,95,110,111,116,105,99,101,2,1,192,152,161,0,8,1,10,46,117,105,45,100,105,97,108,111,103,2,1,209,164,152,113,8,1,18,46,117,105,45,119,105,100,103,101,116,45,111,118,101,114,108,97,121,2,1,209,164,152,113,8,1,11,46,117,114,103,101,110,116,45,109,115,103,2,1,9,181,124,172,8,1,14,46,119,104,105,116,101,95,99,111,110,116,101,110,116,2,1,113,73,249,213,8,1,48,46,119,111,114,100,112,114,101,115,115,45,103,100,112,114,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,255,144,7,114,8,1,4,46,120,99,98,2,1,60,137,181,35,8,1,15,46,121,97,112,45,99,111,111,107,105,101,45,98,97,114,2,1,237,149,152,252,8,1,18,46,121,117,105,51,45,119,105,100,103,101,116,45,109,111,100,97,108,2,2,23,58,230,193,169,210,82,65,8,1,23,46,121,117,105,51,45,119,105,100,103,101,116,46,112,111,112,117,112,45,118,105,101,119,2,1,34,208,249,230,8,1,16,46,122,97,107,105,95,112,99,104,95,98,97,110,110,101,114,2,1,239,34,11,11,0,1,26,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,34,93,2,1,8,147,142,154,0,1,30,100,105,118,91,99,108,97,115,115,42,61,34,45,99,111,111,107,105,101,115,83,101,99,116,105,111,110,45,34,93,2,1,58,207,0,91,0,1,17,100,105,118,91,105,100,94,61,34,99,110,116,110,116,45,34,93,2,1,126,106,157,99,0,1,109,100,105,118,91,115,116,121,108,101,61,34,32,119,105,100,116,104,58,32,49,48,48,37,59,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,59,32,112,97,100,100,105,110,103,45,116,111,112,58,32,53,112,120,59,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,53,112,120,59,32,102,111,110,116,45,115,105,122,101,58,49,50,112,120,59,32,122,45,105,110,100,101,120,58,32,50,48,34,93,2,1,33,239,221,61,0,1,104,100,105,118,91,115,116,121,108,101,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,69,50,69,50,69,50,59,102,108,111,97,116,58,108,101,102,116,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,53,48,112,120,59,108,101,102,116,58,48,59,32,104,101,105,103,104,116,58,54,48,112,120,59,119,105,100,116,104,58,49,48,48,37,59,34,93,2,1,78,236,191,75,0,1,97,100,105,118,91,115,116,121,108,101,61,34,112,97,100,100,105,110,103,58,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,102,55,55,57,48,48,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,49,50,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,59,34,93,2,1,16,165,190,172,0,1,128,0,0,0,151,100,105,118,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,122,45,105,110,100,101,120,58,32,57,57,57,59,32,98,111,116,116,111,109,58,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,32,114,105,103,104,116,58,32,48,112,120,59,32,109,97,114,103,105,110,58,32,48,112,120,32,97,117,116,111,59,32,109,97,120,45,119,105,100,116,104,58,32,57,54,48,112,120,59,32,109,105,110,45,119,105,100,116,104,58,32,51,54,48,112,120,59,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,34,93,2,1,22,165,111,227,0,1,38,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,34,93,2,1,36,215,3,215,0,1,43,115,99,114,105,112,116,32,43,32,100,105,118,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,58,32,35,48,48,48,48,48,48,59,34,93,2,1,8,63,92,100,16,1,13,35,70,111,111,116,101,114,80,111,108,105,99,121,2,1,117,114,6,184,16,1,11,35,97,103,114,101,101,80,97,110,101,108,2,1,36,31,185,29,16,1,10,35,97,103,114,101,101,109,101,110,116,2,1,87,147,202,156,16,1,15,35,97,103,114,101,101,109,101,110,116,45,97,114,101,97,2,1,20,59,92,111,16,1,14,35,99,95,112,111,108,105,99,121,95,119,114,97,112,2,1,174,131,197,211,16,1,16,35,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,2,1,59,59,92,12,16,1,14,35,99,111,111,107,105,101,45,99,111,110,102,105,103,2,1,79,21,220,182,16,1,10,35,99,111,111,107,105,101,65,108,116,2,1,6,77,54,3,16,1,13,35,99,111,111,107,105,101,80,111,108,105,99,121,2,1,76,3,225,165,16,1,10,35,102,108,111,97,116,65,114,101,97,2,1,125,29,209,129,16,1,12,35,102,117,110,99,45,99,111,111,107,105,101,2,1,103,116,17,149,16,1,8,35,106,115,45,103,100,112,114,2,1,80,210,212,126,16,1,17,35,108,97,121,101,114,95,98,111,97,114,100,95,97,114,101,97,2,1,56,94,115,37,16,1,14,35,109,111,100,97,108,45,99,111,110,116,101,110,116,2,1,17,71,87,137,16,1,14,35,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,14,119,116,0,16,1,7,35,109,111,114,100,97,108,2,1,71,209,0,216,16,1,20,35,111,110,101,116,114,117,115,116,45,98,97,110,110,101,114,45,115,100,107,2,1,38,157,35,119,16,1,20,35,112,105,45,112,99,45,97,108,108,45,112,111,112,117,112,108,101,102,116,2,1,81,43,156,223,16,1,13,35,112,111,108,105,99,121,95,109,111,100,97,108,2,1,54,231,60,4,16,1,11,35,115,101,99,95,99,111,111,107,105,101,2,1,153,87,86,125,16,1,13,35,116,104,112,95,110,111,116,102,95,100,105,118,2,1,148,185,40,166,16,1,18,35,116,109,112,95,119,114,97,112,95,105,110,102,111,95,98,111,120,2,1,49,150,3,213,8,1,14,46,67,111,111,107,105,101,67,111,110,102,105,114,109,2,1,46,170,80,129,8,1,16,46,97,110,110,111,116,97,116,105,111,110,45,97,114,101,97,2,1,212,109,74,211,8,1,16,46,97,116,101,110,116,105,111,110,95,99,111,111,107,105,101,2,1,112,163,189,93,8,1,23,46,98,111,116,116,111,109,95,111,112,116,111,117,116,95,97,110,110,111,117,110,99,101,2,1,80,211,20,117,8,1,10,46,99,111,110,115,101,110,116,95,99,2,1,195,191,229,104,8,1,15,46,99,111,111,107,105,101,45,105,110,113,117,105,114,121,2,1,216,7,116,122,8,1,37,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,103,114,101,101,109,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,86,192,63,145,8,1,12,46,99,111,111,107,105,101,97,103,114,101,101,2,1,35,213,21,71,8,1,11,46,99,111,111,107,105,101,100,105,97,103,2,1,38,251,176,194,8,1,23,46,99,111,111,107,105,101,115,95,99,111,111,107,105,101,115,95,95,100,87,76,102,79,2,1,76,139,68,245,8,1,13,46,102,105,120,101,100,95,98,97,110,110,101,114,2,1,142,137,102,99,8,1,9,46,102,105,120,101,100,98,111,116,2,1,112,175,252,238,8,1,18,46,102,111,111,116,101,114,95,100,105,115,99,108,97,105,109,101,114,2,1,181,169,159,242,8,1,13,46,102,111,111,116,101,114,115,116,105,99,107,121,2,1,55,238,156,189,8,1,7,46,104,74,85,77,108,90,2,1,230,146,217,55,8,1,14,46,108,95,99,111,111,107,105,101,65,103,114,101,101,2,1,127,200,78,0,8,1,18,46,109,45,115,110,97,99,107,98,97,114,45,110,111,116,105,99,101,2,1,112,84,170,202,8,1,15,46,109,95,99,111,111,107,105,101,66,97,110,110,101,114,2,1,62,109,134,83,8,1,12,46,109,111,100,95,109,101,115,115,97,103,101,2,1,14,119,116,0,8,1,11,46,109,111,100,97,108,45,103,100,112,114,2,1,113,211,183,86,8,1,14,46,109,111,100,97,108,95,99,111,110,116,101,110,116,2,1,80,210,212,194,8,1,14,46,110,111,116,101,112,97,110,101,108,87,114,97,112,2,1,33,93,106,39,8,1,14,46,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,227,211,246,67,8,1,15,46,110,111,116,105,102,121,95,115,116,105,99,107,105,101,2,1,126,210,206,184,8,1,9,46,110,119,45,109,111,100,97,108,2,1,80,211,20,117,8,1,6,46,111,112,116,73,110,2,1,27,74,66,64,8,1,8,46,111,112,116,105,110,102,111,2,1,127,197,114,35,8,1,6,46,112,97,110,101,108,2,1,113,162,255,189,8,1,19,46,112,101,114,115,111,110,97,108,73,110,102,111,95,95,97,114,101,97,2,1,96,134,128,143,8,1,7,46,112,111,108,105,99,121,2,1,82,22,250,9,8,1,10,46,112,111,108,105,99,121,70,105,120,2,1,14,241,68,143,8,1,13,46,112,111,112,117,112,95,98,97,110,110,101,114,2,1,59,31,247,124,8,1,16,46,114,45,102,111,111,116,101,114,45,99,111,111,107,105,101,2,1,167,190,130,221,8,1,16,46,114,101,117,115,101,45,99,111,109,112,111,110,101,110,116,2,1,126,163,114,26,8,1,17,46,115,116,45,84,101,114,109,115,95,87,114,97,112,112,101,114,2,1,126,208,122,111,8,1,27,46,116,97,114,116,101,97,117,99,105,116,114,111,110,66,101,102,111,114,101,86,105,115,105,98,108,101,2,1,184,87,87,10,8,1,19,46,116,111,97,115,116,45,98,111,116,116,111,109,45,114,105,103,104,116,2,1,99,71,181,160,8,1,16,46,118,45,115,110,97,99,107,45,45,98,111,116,116,111,109,2,1,237,32,106,215,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,71,68,80,82,95,95,67,111,110,116,97,105,110,101,114,45,34,93,2,1,126,250,206,86,16,1,5,35,65,103,54,112,2,1,114,216,29,251,8,1,14,46,99,111,111,107,105,101,80,111,112,65,114,101,97,2,1,34,217,115,128,8,1,17,46,103,108,111,98,97,108,45,115,116,97,116,101,109,101,110,116,2,1,131,88,189,201,16,1,14,35,80,114,105,118,97,99,121,80,111,108,105,99,121,2,1,112,34,108,1,16,1,12,35,99,111,110,115,101,110,116,45,98,111,120,2,1,49,110,132,40,16,1,13,35,99,111,111,107,105,101,45,105,110,110,101,114,2,1,44,31,47,98,16,1,8,35,101,117,67,67,119,105,110,2,1,66,245,164,242,16,1,15,35,109,97,110,97,103,101,45,99,111,111,107,105,101,115,2,2,7,236,111,19,171,27,192,149,16,1,12,35,109,101,115,115,97,103,101,45,98,97,114,2,1,187,16,144,7,16,1,9,35,109,115,103,45,119,114,97,112,2,1,13,165,104,113,16,1,13,35,110,111,116,105,102,105,99,97,116,105,111,110,2,1,70,252,247,218,16,1,15,35,112,114,105,118,97,99,121,45,112,111,112,45,117,112,2,1,175,196,29,108,16,1,15,35,122,45,116,101,114,109,115,45,111,102,45,117,115,101,2,1,122,223,150,49,8,1,7,46,95,50,99,66,95,111,2,1,187,6,225,154,8,1,7,46,95,51,89,65,101,78,2,1,232,242,225,187,8,1,13,46,99,111,110,116,101,110,116,80,97,100,115,76,2,1,10,88,103,59,8,1,20,46,99,111,111,107,105,101,73,110,102,111,67,111,110,116,97,105,110,101,114,2,1,220,156,44,204,8,1,7,46,100,72,116,107,119,114,2,1,2,70,49,121,8,1,7,46,100,110,80,118,109,103,2,1,58,38,33,27,8,1,19,46,103,100,112,114,80,111,112,85,112,45,114,111,111,116,45,49,122,84,2,1,213,199,115,175,8,1,7,46,103,115,79,84,118,110,2,1,194,55,227,187,8,1,16,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,2,1,187,14,79,227,8,1,14,46,106,113,45,116,111,97,115,116,45,119,114,97,112,2,1,187,14,79,227,8,1,34,46,109,112,112,45,99,111,110,116,97,105,110,101,114,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,45,98,97,114,2,1,171,27,220,142,8,1,7,46,112,111,108,105,99,121,2,1,123,13,208,236,8,1,13,46,112,111,112,117,112,45,102,105,108,116,101,114,2,1,142,190,147,75,8,1,14,46,112,111,112,117,112,45,109,101,115,115,97,103,101,2,1,171,28,76,212,8,1,5,46,112,114,105,118,2,1,8,33,141,239,8,1,11,46,115,101,116,95,99,111,111,107,105,101,2,1,128,218,10,235,8,1,14,46,98,97,115,105,99,76,105,103,104,116,98,111,120,2,1,101,229,235,152,8,1,22,46,98,108,97,104,95,98,108,97,104,95,98,108,97,104,95,104,111,108,100,101,114,2,1,144,176,82,35,8,1,21,46,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,2,1,18,188,196,86,8,1,22,46,112,97,114,101,110,116,45,99,111,110,116,97,105,110,101,114,45,105,100,103,121,2,1,226,242,231,222,8,1,13,46,119,117,95,99,111,110,116,97,105,110,101,114,2,1,233,15,255,200,8,1,27,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,115,101,99,116,105,111,110,45,114,111,111,116,2,1,15,66,68,104,16,1,27,35,95,95,110,101,120,116,32,62,32,100,105,118,91,99,108,97,115,115,94,61,34,99,115,115,34,93,2,3,33,198,201,89,34,84,15,96,202,187,42,228,16,1,26,35,103,108,111,98,97,108,45,111,118,101,114,108,97,121,45,98,97,99,107,103,114,111,117,110,100,2,1,192,127,8,55,16,1,6,35,107,106,101,107,115,2,1,166,183,209,166,16,1,7,35,111,112,116,45,105,110,2,2,32,11,221,38,109,177,210,151,16,1,7,35,116,111,112,98,97,114,2,1,196,72,62,79,8,1,14,46,71,68,80,82,99,111,110,116,97,105,110,101,114,2,1,138,6,86,109,8,1,14,46,98,99,99,45,99,111,110,116,97,105,110,101,114,2,1,202,187,25,116,8,1,7,46,99,73,119,84,78,104,2,1,170,26,75,196,8,1,7,46,99,98,120,77,116,70,2,1,33,198,201,89,8,1,13,46,99,111,99,111,45,119,114,97,112,112,101,114,2,1,144,120,237,99,8,1,11,46,99,115,115,45,112,112,45,98,111,120,2,1,170,26,75,196,8,1,15,46,102,105,120,101,100,45,109,101,115,115,97,103,101,115,2,1,33,198,88,28,8,1,20,46,102,111,111,116,101,114,67,117,114,116,97,105,110,67,111,111,107,105,101,2,1,164,99,77,183,8,1,26,46,103,108,111,98,97,108,45,111,118,101,114,108,97,121,45,98,97,99,107,103,114,111,117,110,100,2,1,63,178,143,207,8,1,10,46,107,97,107,101,95,119,114,97,112,2,1,33,229,167,253,8,1,26,46,110,114,107,45,109,97,115,116,104,101,97,100,95,95,105,110,102,111,45,98,97,110,110,101,114,2,1,202,187,52,79,8,1,14,46,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,190,168,103,205,8,1,27,46,112,112,45,97,110,110,111,117,110,99,101,109,101,110,116,45,98,97,114,45,98,111,116,116,111,109,2,1,255,134,64,243,8,1,14,46,115,99,104,105,98,115,116,101,100,45,98,97,114,2,1,155,10,151,119,8,1,19,46,115,104,111,119,45,99,111,111,107,105,101,45,112,111,112,45,117,112,2,1,107,8,45,39,8,1,9,46,119,51,45,98,108,97,99,107,2,1,166,183,209,166,8,1,11,46,119,102,45,115,101,99,116,105,111,110,2,1,26,168,103,204,0,1,34,91,97,114,105,97,45,108,97,98,101,108,61,34,73,110,102,111,114,109,97,115,106,111,110,115,107,97,112,115,108,101,114,34,93,2,1,57,79,65,194,0,1,31,100,105,118,91,100,97,116,97,45,116,101,115,116,61,34,99,111,111,107,105,101,45,116,111,97,115,116,101,114,34,93,2,1,186,177,152,235,0,1,22,100,105,118,91,105,100,94,61,34,115,112,95,109,101,115,115,97,103,101,95,34,93,2,1,66,221,253,135,0,1,8,102,105,101,108,100,115,101,116,2,1,88,232,164,222,16,1,13,35,100,97,116,97,45,112,114,105,118,97,99,121,2,1,178,109,161,226,16,1,8,35,104,101,97,100,101,114,48,2,1,181,87,208,207,16,1,7,35,112,111,108,105,99,121,2,1,101,158,114,125,16,1,14,35,112,114,105,118,97,99,121,80,111,108,105,99,121,2,1,118,216,214,46,8,1,21,46,99,111,111,107,105,101,95,99,111,111,107,105,101,95,95,118,119,95,102,115,2,1,116,117,92,30,8,1,15,46,106,99,111,110,102,105,114,109,45,108,105,103,104,116,2,1,159,99,185,159,8,1,13,46,106,99,111,110,102,105,114,109,45,114,111,119,2,1,159,99,185,159,8,1,5,46,109,101,109,111,2,1,50,180,100,62,8,1,12,46,112,111,112,117,112,45,109,111,100,97,108,2,1,177,250,84,223,8,1,14,46,112,114,105,118,97,99,121,95,109,111,100,97,108,2,1,136,250,179,156,8,1,16,46,116,111,112,45,99,111,110,116,101,110,116,45,98,97,114,2,1,137,110,51,102,16,1,10,35,66,111,120,67,111,111,107,105,101,2,1,157,103,156,223,16,1,8,35,66,111,120,76,105,110,101,2,11,3,242,237,119,25,131,114,252,62,90,42,212,129,194,38,252,130,22,113,223,133,5,228,161,146,57,223,248,159,37,202,218,198,153,143,157,210,100,40,232,243,241,177,98,16,1,11,35,67,65,80,80,68,105,97,108,111,103,2,1,141,36,205,72,16,1,7,35,67,79,79,75,73,69,2,1,15,126,58,104,16,1,9,35,67,80,95,76,97,121,101,114,2,1,130,28,122,215,16,1,15,35,87,80,45,99,111,111,107,105,101,45,105,110,102,111,2,5,18,186,21,98,38,247,198,142,77,188,199,243,161,89,69,75,190,212,137,225,16,1,5,35,95,95,99,112,2,2,32,155,181,152,227,172,51,172,16,1,10,35,97,108,101,114,116,95,98,97,114,2,4,4,13,31,249,14,83,5,112,199,74,182,199,245,64,127,80,16,1,12,35,97,108,101,114,116,95,112,111,112,117,112,2,1,138,184,128,127,16,1,15,35,97,110,97,108,121,116,105,99,115,77,111,100,97,108,2,1,88,19,38,77,16,1,9,35,98,97,99,107,100,114,111,112,2,4,32,128,93,6,77,194,65,65,165,128,114,238,225,4,173,42,16,1,10,35,98,97,110,110,101,114,77,83,71,2,1,243,108,251,110,16,1,25,35,98,97,122,105,110,103,97,45,109,117,102,102,105,110,45,99,111,110,116,97,105,110,101,114,2,1,42,95,235,57,16,1,5,35,98,108,117,114,2,1,26,147,131,234,16,1,13,35,98,111,116,116,111,109,45,99,104,97,114,109,2,1,94,205,105,207,16,1,16,35,98,111,120,45,112,111,108,105,116,121,107,97,45,112,114,2,1,132,77,198,127,16,1,9,35,98,111,120,95,105,110,102,111,2,1,190,81,121,175,16,1,11,35,99,67,111,110,116,97,105,110,101,114,2,2,104,218,84,202,106,243,4,234,16,1,6,35,99,73,110,102,111,2,1,11,184,17,66,16,1,8,35,99,95,112,111,112,101,107,2,1,87,27,50,56,16,1,9,35,99,99,95,112,111,112,117,112,2,1,212,128,59,36,16,1,12,35,99,99,110,115,116,95,95,109,97,105,110,2,1,121,105,41,29,16,1,5,35,99,102,102,99,2,1,129,199,196,245,16,1,5,35,99,108,97,119,2,2,129,179,32,138,142,125,93,36,16,1,6,35,99,108,111,115,101,2,1,251,65,159,7,16,1,3,35,99,110,2,1,154,100,19,60,16,1,21,35,99,111,110,115,101,110,116,115,80,111,108,105,99,121,68,105,97,108,111,103,2,1,177,78,54,71,16,1,14,35,99,111,110,116,97,105,110,101,114,95,118,115,109,2,1,245,162,62,66,16,1,5,35,99,111,111,107,2,1,253,121,80,193,16,1,13,35,99,111,111,107,105,101,45,102,114,97,109,101,2,1,237,129,209,61,16,1,20,35,99,111,111,107,105,101,45,105,110,102,111,45,111,118,101,114,108,97,121,2,1,117,184,245,176,16,1,17,35,99,111,111,107,105,101,77,111,110,115,116,101,114,79,118,114,2,1,244,89,37,127,16,1,17,35,99,111,111,107,105,101,87,97,114,110,105,110,103,78,101,119,2,1,61,106,65,120,16,1,15,35,99,111,111,107,105,101,95,105,110,102,111,95,101,115,2,1,222,76,76,225,16,1,19,35,99,111,111,107,105,101,95,105,110,102,111,95,115,101,108,49,95,110,2,1,191,247,55,168,16,1,12,35,99,111,111,107,105,101,109,111,100,97,108,2,1,55,123,21,15,16,1,22,35,99,111,111,107,105,101,115,45,98,97,110,101,114,45,119,114,97,112,112,101,114,2,1,195,9,124,230,16,1,30,35,99,111,111,107,105,101,115,45,105,110,102,111,45,109,111,100,97,108,95,98,97,99,107,103,114,111,117,110,100,2,1,166,190,183,3,16,1,27,35,99,111,111,107,105,101,115,45,105,110,102,111,45,109,111,100,97,108,95,119,114,97,112,112,101,114,2,1,166,190,183,3,16,1,12,35,99,111,111,107,105,101,115,45,108,97,119,2,3,42,243,101,153,149,192,59,194,233,192,182,26,16,1,12,35,99,111,111,107,105,101,115,82,111,100,111,2,1,66,79,168,86,16,1,13,35,99,111,111,107,105,101,115,95,116,101,120,116,2,1,226,38,231,25,16,1,4,35,99,111,112,2,4,59,90,170,250,112,115,119,53,121,137,232,236,216,43,73,251,16,1,13,35,99,114,111,115,115,45,100,105,97,108,111,103,2,2,12,45,184,210,48,149,124,193,16,1,7,35,99,117,95,98,97,114,2,2,58,158,10,69,67,143,157,71,16,1,5,35,99,120,99,120,2,1,115,70,249,186,16,1,22,35,100,105,100,111,109,105,66,108,111,99,107,78,97,118,105,103,97,116,105,111,110,2,1,214,115,14,37,16,1,7,35,100,105,118,95,97,99,2,1,226,114,6,152,16,1,9,35,102,116,99,99,98,99,109,100,2,1,65,212,172,10,16,1,27,35,103,97,114,117,97,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,112,111,112,117,112,2,1,237,236,111,51,16,1,21,35,103,112,95,99,111,111,107,105,101,95,97,103,114,101,101,109,101,110,116,115,2,1,139,111,105,87,16,1,15,35,104,111,108,100,111,110,45,111,118,101,114,108,97,121,2,1,45,88,150,25,16,1,21,35,105,102,114,97,109,101,80,111,112,117,112,67,111,110,116,97,105,110,101,114,2,1,192,8,133,144,16,1,17,35,105,109,112,111,114,116,97,110,116,45,110,111,116,105,99,101,2,1,106,119,237,19,16,1,4,35,105,110,102,2,1,81,46,97,10,16,1,5,35,105,110,102,111,2,1,120,59,225,181,16,1,9,35,105,110,102,111,45,98,97,114,2,2,20,162,139,88,195,89,197,170,16,1,17,35,105,110,102,111,68,105,118,67,111,110,116,97,105,110,101,114,2,1,136,72,181,162,16,1,11,35,105,110,102,111,95,99,95,98,111,120,2,4,117,213,82,146,201,194,54,189,237,236,68,39,251,111,244,243,16,1,15,35,105,110,102,111,95,99,111,110,116,97,105,110,101,114,2,3,69,236,233,8,106,18,151,120,180,79,109,191,16,1,8,35,105,110,102,111,98,97,114,2,1,95,142,19,20,16,1,7,35,105,116,108,98,111,120,2,1,206,105,54,21,16,1,6,35,107,101,107,115,101,2,1,121,249,134,33,16,1,31,35,107,108,97,117,122,117,108,97,95,105,110,102,111,114,109,97,99,121,106,110,97,95,110,97,107,108,97,100,107,97,2,1,193,30,27,169,16,1,12,35,107,113,115,45,98,111,120,45,116,108,111,2,1,85,125,109,168,16,1,8,35,107,113,115,45,116,108,111,2,1,85,125,109,168,16,1,8,35,109,101,110,117,98,97,114,2,1,113,6,177,40,16,1,9,35,109,101,110,117,115,68,105,118,2,1,212,244,222,245,16,1,8,35,109,101,115,115,97,103,101,2,2,79,153,96,11,103,75,218,220,16,1,20,35,109,101,115,115,97,103,101,45,116,111,112,45,119,114,97,112,112,101,114,2,1,192,71,198,201,16,1,13,35,109,101,115,115,97,103,101,80,111,112,117,112,2,1,232,105,61,124,16,1,12,35,109,101,115,115,97,103,101,95,98,111,120,2,1,148,40,128,206,16,1,13,35,109,101,115,115,97,103,101,95,119,114,97,112,2,1,133,209,186,53,16,1,14,35,109,105,97,115,116,111,115,122,107,111,108,101,110,2,1,84,0,149,202,16,1,6,35,109,111,100,57,56,2,1,211,46,41,205,16,1,6,35,109,111,100,57,57,2,1,104,208,151,39,16,1,21,35,109,111,100,97,108,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,13,221,236,179,16,1,6,35,109,111,114,101,49,2,1,214,115,14,37,16,1,7,35,109,112,111,112,100,119,2,1,95,251,71,71,16,1,7,35,109,112,111,112,117,112,2,1,95,251,71,71,16,1,9,35,109,115,103,76,97,121,101,114,2,1,190,81,57,15,16,1,11,35,109,121,77,111,100,97,108,112,111,108,2,1,173,199,166,207,16,1,16,35,110,97,118,98,97,114,95,110,111,116,105,99,101,95,49,2,1,102,26,23,173,16,1,17,35,110,97,118,98,97,114,95,110,111,116,105,99,101,95,49,49,2,1,84,37,52,251,16,1,17,35,110,97,118,98,97,114,95,110,111,116,105,99,101,95,49,50,2,1,88,205,155,81,16,1,11,35,110,101,119,45,112,111,108,105,99,121,2,1,221,33,197,78,16,1,11,35,110,111,116,105,99,101,95,98,97,114,2,5,14,220,139,59,66,254,92,148,92,167,97,60,170,184,69,89,190,81,52,69,16,1,13,35,110,111,116,105,102,121,99,111,111,107,105,101,2,1,22,121,221,194,16,1,12,35,111,114,101,111,115,45,112,111,112,117,112,2,1,81,28,130,42,16,1,8,35,112,108,97,110,115,122,97,2,1,130,58,8,70,16,1,7,35,112,111,108,99,105,97,2,1,43,216,5,182,16,1,7,35,112,111,108,105,99,121,2,1,192,10,154,115,16,1,9,35,112,111,108,105,116,121,107,97,2,4,23,108,189,227,129,49,205,105,140,167,242,199,193,58,183,55,16,1,6,35,112,111,112,101,107,2,1,100,15,193,9,16,1,11,35,112,111,112,117,112,45,112,101,107,97,2,1,1,52,245,77,16,1,13,35,112,111,112,117,112,67,111,110,116,97,99,116,2,1,193,58,165,90,16,1,9,35,112,111,112,117,112,68,105,118,2,2,190,81,121,203,221,118,65,74,16,1,13,35,112,111,115,99,111,111,107,105,101,108,97,119,2,1,190,81,42,10,16,1,3,35,112,112,2,1,243,255,251,61,16,1,20,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,105,110,102,111,2,1,164,196,124,140,16,1,15,35,112,114,105,118,97,99,121,77,101,115,115,97,103,101,2,1,129,89,193,63,16,1,8,35,114,101,103,95,97,108,108,2,1,193,20,145,199,16,1,16,35,114,111,97,114,45,97,108,101,114,116,45,119,114,97,112,2,1,190,81,10,193,16,1,5,35,114,111,100,111,2,1,150,227,144,214,16,1,9,35,114,111,100,111,45,98,97,114,2,1,120,134,189,81,16,1,11,35,114,111,100,111,45,112,111,112,117,112,2,1,233,119,208,255,16,1,9,35,114,111,100,111,95,97,108,108,2,1,195,94,4,122,16,1,12,35,114,111,100,111,95,99,111,111,107,105,101,2,1,199,74,182,199,16,1,10,35,115,97,121,99,111,111,107,105,101,2,1,217,81,35,124,16,1,13,35,115,105,109,112,108,101,45,109,111,100,97,108,2,1,160,194,99,222,16,1,21,35,115,105,109,112,108,101,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,166,122,101,10,16,1,22,35,115,105,116,101,45,110,97,118,105,103,97,116,105,111,110,32,126,32,100,105,118,2,1,72,231,66,192,16,1,18,35,115,111,102,116,77,101,115,115,97,103,101,115,45,108,105,115,116,2,1,193,57,233,251,16,1,16,35,115,111,110,114,105,115,111,45,99,111,111,107,105,101,115,2,1,204,76,213,124,16,1,16,35,115,112,101,99,105,97,108,98,111,120,45,105,110,102,111,2,1,10,141,65,48,16,1,9,35,115,119,115,109,111,100,97,108,2,2,58,64,207,60,77,171,241,75,16,1,11,35,115,119,115,111,118,101,114,108,97,121,2,2,58,64,207,60,77,171,241,75,16,1,19,35,116,105,109,101,115,45,108,101,103,97,108,45,110,111,116,105,99,101,2,1,11,210,74,29,16,1,13,35,116,111,111,108,116,105,112,45,104,111,111,107,2,1,255,38,30,248,16,1,9,35,116,111,112,48,105,110,102,111,2,1,88,232,10,3,16,1,18,35,116,111,112,73,110,102,111,67,111,110,116,97,105,110,101,114,48,2,7,66,190,44,87,79,178,25,219,123,246,68,144,136,107,200,172,181,121,140,179,214,116,54,77,229,92,69,149,16,1,18,35,116,111,112,73,110,102,111,67,111,110,116,97,105,110,101,114,49,2,14,63,255,155,19,129,195,142,101,136,107,200,172,142,125,89,239,144,165,19,191,151,119,132,104,181,134,138,147,191,16,228,56,192,8,209,23,195,44,73,165,214,170,193,202,216,6,15,221,231,35,230,181,253,1,219,111,16,1,7,35,116,111,112,98,97,114,2,3,193,59,231,252,220,121,74,214,233,41,63,144,16,1,13,35,117,110,100,101,114,95,102,111,111,116,101,114,2,1,104,203,53,210,16,1,16,35,122,97,109,107,110,105,106,95,99,111,111,107,105,101,115,2,1,47,43,65,80,8,1,27,46,67,111,111,107,105,101,66,97,114,95,99,111,111,107,105,101,66,97,114,95,95,51,122,115,73,107,2,2,35,46,185,164,101,128,199,148,8,1,12,46,67,111,111,107,105,101,83,116,121,108,101,2,2,198,1,112,60,228,89,172,131,8,1,28,46,67,111,111,107,105,101,115,45,109,111,100,117,108,101,45,99,111,111,107,105,101,115,95,49,50,49,84,2,1,206,36,122,155,8,1,14,46,67,111,111,107,105,101,115,78,111,116,105,99,101,2,1,232,82,72,25,8,1,11,46,71,68,80,82,45,80,111,112,117,112,2,1,120,142,130,96,8,1,10,46,74,83,87,114,97,112,112,101,114,2,2,85,5,72,9,176,98,127,115,8,1,17,46,82,111,100,111,95,98,108,117,114,95,95,99,110,75,100,78,2,1,194,136,240,251,8,1,6,46,83,82,97,66,77,2,1,91,94,52,246,8,1,36,46,84,101,114,109,115,79,102,85,115,101,77,111,100,97,108,95,109,111,100,97,108,87,114,97,112,112,101,114,95,95,51,98,87,80,88,2,1,126,21,161,252,8,1,16,46,84,114,97,99,107,105,110,103,73,110,102,111,66,111,120,2,1,233,4,185,230,8,1,9,46,95,99,111,110,115,101,110,116,2,1,119,235,194,53,8,1,29,46,95,99,111,111,107,105,101,95,99,111,111,107,105,101,115,45,112,97,110,101,108,95,95,76,77,73,57,97,2,1,20,27,248,174,8,1,5,46,97,98,99,100,2,1,234,190,182,21,8,1,9,46,97,100,45,109,111,100,97,108,2,1,178,141,120,93,8,1,16,46,97,108,99,97,108,105,97,45,99,111,111,107,105,101,115,2,1,179,202,79,98,8,1,12,46,97,108,101,114,116,45,102,108,97,115,104,2,1,94,172,28,209,8,1,11,46,97,108,101,114,116,66,111,120,101,115,2,1,4,157,64,254,8,1,8,46,97,118,119,112,45,97,118,2,1,92,118,11,227,8,1,16,46,97,118,119,112,45,97,118,45,111,118,101,114,108,97,121,2,1,92,118,11,227,8,1,8,46,98,45,109,111,100,97,108,2,1,188,183,252,135,8,1,19,46,98,97,99,107,103,114,111,117,110,100,45,111,118,101,114,108,97,121,2,1,231,126,31,204,8,1,12,46,98,97,108,108,45,99,111,111,107,105,101,2,1,38,242,39,136,8,1,12,46,98,97,114,45,45,98,111,116,116,111,109,2,1,154,239,148,104,8,1,14,46,98,97,115,105,99,76,105,103,104,116,98,111,120,2,1,196,209,36,86,8,1,13,46,98,103,45,103,114,101,101,110,45,50,48,48,2,1,217,126,187,80,8,1,17,46,98,105,112,45,99,111,111,107,105,101,45,109,111,100,97,108,2,2,98,166,166,240,210,156,254,166,8,1,11,46,98,109,45,112,114,105,118,97,99,121,2,1,54,237,11,46,8,1,20,46,98,115,45,99,111,111,107,105,101,115,95,95,111,118,101,114,108,97,121,2,1,117,213,82,151,8,1,8,46,99,95,95,99,97,107,101,2,1,159,105,208,8,8,1,24,46,99,105,97,99,104,98,116,109,45,119,114,97,112,45,99,111,110,116,97,105,110,101,114,2,1,247,162,135,123,8,1,7,46,99,106,99,86,68,119,2,1,9,73,228,176,8,1,4,46,99,107,103,2,1,45,111,47,216,8,1,11,46,99,109,45,111,118,101,114,108,97,121,2,1,193,167,67,79,8,1,17,46,99,109,45,112,111,112,117,112,45,119,114,97,112,112,101,114,2,1,36,64,217,86,8,1,8,46,99,109,117,108,113,55,122,2,1,217,1,40,94,8,1,16,46,99,111,110,102,105,103,45,109,101,115,115,97,103,101,115,2,1,147,163,82,51,8,1,15,46,99,111,110,115,101,110,116,45,108,97,121,111,117,116,2,1,171,112,99,249,8,1,9,46,99,111,110,115,101,110,116,115,2,6,57,112,6,4,164,188,110,65,201,169,155,25,233,144,80,236,239,19,72,56,244,59,160,111,8,1,16,46,99,111,111,107,105,101,45,100,105,118,45,109,97,105,110,2,1,53,151,125,200,8,1,19,46,99,111,111,107,105,101,45,112,111,112,117,112,45,109,111,100,97,108,2,1,237,180,9,120,8,1,12,46,99,111,111,107,105,101,45,119,97,108,108,2,1,193,30,27,169,8,1,15,46,99,111,111,107,105,101,115,45,45,99,108,111,97,107,2,5,0,27,29,29,7,25,248,48,32,118,106,44,129,187,31,54,129,193,19,123,8,1,11,46,99,111,111,107,105,101,115,45,97,116,2,1,122,20,111,111,8,1,19,46,99,111,111,107,105,101,115,45,97,116,45,111,118,101,114,108,97,121,2,1,122,20,111,111,8,1,25,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,95,99,111,109,112,111,110,101,110,116,2,1,47,61,226,200,8,1,30,46,99,111,111,107,105,101,115,66,108,111,99,107,83,99,115,115,45,98,97,99,107,100,114,111,112,45,49,102,122,2,2,185,42,138,199,209,102,116,250,8,1,26,46,99,111,111,107,105,101,115,66,108,111,99,107,83,99,115,115,45,114,111,111,116,45,49,83,103,2,2,185,42,138,199,209,102,116,250,8,1,16,46,99,111,111,107,105,101,115,95,99,118,121,117,97,120,104,2,1,217,1,40,94,8,1,16,46,99,111,111,107,105,101,115,95,100,113,120,122,57,108,103,2,1,217,1,40,94,8,1,6,46,99,111,118,101,114,2,1,210,90,236,37,8,1,5,46,99,112,112,97,2,2,44,201,207,56,218,63,147,84,8,1,12,46,99,115,115,45,49,114,105,120,115,116,117,2,1,23,38,100,74,8,1,12,46,99,115,115,45,49,118,49,106,116,102,113,2,1,254,246,14,197,8,1,11,46,99,115,115,45,56,103,120,51,121,122,2,1,151,213,73,44,8,1,11,46,99,115,115,45,106,106,100,50,115,101,2,1,192,10,95,45,8,1,11,46,99,115,115,45,112,121,52,97,51,50,2,1,43,28,224,93,8,1,11,46,99,115,115,45,117,109,49,57,118,98,2,1,151,213,73,44,8,1,11,46,99,115,115,45,121,99,111,50,101,103,2,1,7,252,241,249,8,1,7,46,100,68,87,87,80,107,2,1,129,38,24,206,8,1,16,46,100,105,97,108,111,103,98,108,111,99,107,114,111,100,111,2,1,129,189,198,205,8,1,15,46,100,105,118,77,111,100,97,108,68,105,97,108,111,103,2,1,220,12,168,105,8,1,7,46,101,100,120,122,100,75,2,1,129,200,7,250,8,1,7,46,101,107,45,98,97,114,2,2,59,42,57,73,106,183,247,254,8,1,5,46,101,117,99,108,2,1,221,151,229,14,8,1,9,46,101,122,107,50,56,48,118,51,2,1,5,106,19,223,8,1,7,46,102,83,99,114,109,109,2,1,6,6,98,195,8,1,16,46,102,97,99,101,116,101,100,45,111,118,101,114,108,97,121,2,1,130,57,198,201,8,1,24,46,102,105,108,116,101,114,45,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,2,5,78,214,77,31,125,185,102,12,135,170,77,176,141,226,127,145,204,200,133,223,8,1,19,46,102,105,120,101,100,45,98,111,116,116,111,109,45,114,105,103,104,116,2,1,92,233,6,115,8,1,11,46,103,117,101,115,116,95,119,97,114,110,2,1,136,192,8,111,8,1,22,46,104,101,97,100,45,112,97,103,101,45,105,110,102,111,114,109,97,116,105,111,110,2,5,118,103,32,165,128,129,209,99,185,185,26,151,212,18,46,129,222,99,155,54,8,1,14,46,104,101,97,100,101,114,45,98,97,110,110,101,114,2,1,232,157,192,208,8,1,7,46,105,66,89,105,112,106,2,1,200,219,94,38,8,1,7,46,105,82,104,68,100,78,2,1,15,190,5,11,8,1,3,46,105,98,2,1,7,33,166,250,8,1,11,46,105,110,102,111,95,99,95,98,111,120,2,1,103,119,114,187,8,1,15,46,105,110,102,111,114,109,97,116,105,111,110,66,97,114,2,1,73,32,50,213,8,1,9,46,106,99,111,110,102,105,114,109,2,1,7,73,48,31,8,1,11,46,106,113,45,99,111,111,107,105,101,115,2,1,233,119,209,82,8,1,12,46,106,115,45,109,101,115,115,97,103,101,115,2,1,166,3,78,150,8,1,17,46,106,115,45,109,111,100,97,108,45,99,111,111,107,105,101,115,2,1,204,91,93,7,8,1,7,46,106,115,115,50,53,54,2,1,114,44,201,21,8,1,7,46,106,115,115,51,53,57,2,1,192,240,128,208,8,1,31,46,107,108,97,117,122,117,108,97,45,98,97,99,107,103,114,111,117,110,100,45,119,121,115,122,97,114,122,111,110,121,2,1,11,219,235,168,8,1,22,46,108,97,110,100,101,110,100,45,105,110,102,111,98,97,114,45,108,105,103,104,116,2,2,141,249,55,108,142,21,242,230,8,1,18,46,108,97,121,111,117,116,32,62,32,46,119,114,97,112,112,101,114,2,1,183,35,72,127,8,1,12,46,108,97,121,111,117,116,45,109,97,115,107,2,1,189,186,12,241,8,1,26,46,108,97,121,111,117,116,95,99,111,111,107,105,101,115,82,117,108,101,95,95,50,81,111,117,88,2,1,24,43,102,89,8,1,12,46,108,101,103,97,108,65,100,118,105,99,101,2,1,120,46,48,101,8,1,5,46,109,45,99,99,2,1,190,80,235,111,8,1,10,46,109,45,99,111,111,107,105,101,115,2,1,80,160,51,180,8,1,11,46,109,97,120,45,119,45,102,117,108,108,2,1,12,233,54,26,8,1,14,46,109,101,115,115,97,103,101,45,97,108,101,114,116,2,1,36,172,227,10,8,1,25,46,109,101,115,115,97,103,101,45,112,111,112,117,112,45,98,97,99,107,103,114,111,117,110,100,2,1,80,124,27,158,8,1,15,46,109,101,115,115,97,103,101,45,119,105,110,100,111,119,2,1,44,160,235,196,8,1,9,46,109,101,115,115,97,103,101,115,2,1,193,57,233,251,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,237,180,9,120,8,1,11,46,109,111,100,97,108,45,103,100,112,114,2,1,145,122,36,45,8,1,12,46,109,111,100,97,108,45,108,101,103,97,108,2,1,15,40,145,201,8,1,10,46,109,111,100,97,108,82,79,68,79,2,1,67,130,255,17,8,1,21,46,109,111,100,117,108,101,45,104,101,97,100,101,114,95,110,111,116,105,99,101,2,1,193,14,136,70,8,1,6,46,109,111,110,105,116,2,1,213,192,80,117,8,1,12,46,109,121,77,111,100,97,108,45,98,111,120,2,3,64,178,139,57,152,112,67,116,193,167,242,51,8,1,11,46,110,111,116,105,99,101,95,98,97,114,2,2,64,30,78,254,137,121,23,90,8,1,27,46,110,111,116,105,102,105,99,97,116,105,111,110,45,97,108,101,114,116,45,119,114,97,112,112,101,114,2,1,84,73,249,236,8,1,14,46,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,231,90,53,31,8,1,13,46,111,118,101,114,108,97,121,45,103,100,112,114,2,1,145,122,36,45,8,1,7,46,112,111,108,105,99,121,2,1,238,201,9,143,8,1,17,46,112,111,112,117,112,45,98,97,99,107,103,114,111,117,110,100,2,1,127,174,156,206,8,1,17,46,112,111,112,117,112,45,116,111,112,45,104,101,97,100,101,114,2,1,118,125,48,137,8,1,13,46,112,111,112,117,112,67,111,110,116,101,110,116,2,1,145,253,72,196,8,1,16,46,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,2,1,234,227,146,161,8,1,4,46,112,112,99,2,1,186,188,234,69,8,1,23,46,112,121,45,52,46,112,120,45,54,46,105,116,101,109,115,45,99,101,110,116,101,114,2,1,193,29,211,233,8,1,16,46,114,97,110,107,45,99,111,111,107,105,101,45,98,97,114,2,1,155,201,240,64,8,1,18,46,114,107,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,185,42,152,222,8,1,5,46,114,111,100,111,2,4,10,195,69,81,166,187,90,179,200,127,157,216,217,161,227,158,8,1,9,46,114,115,116,98,111,120,101,115,2,1,89,75,136,12,8,1,20,46,115,99,45,49,121,107,106,106,109,56,45,48,46,108,111,102,75,120,81,2,1,129,200,7,250,8,1,10,46,115,99,45,98,116,101,119,113,85,2,1,129,200,153,152,8,1,9,46,115,101,110,100,95,97,107,116,2,1,138,57,123,66,8,1,15,46,115,104,45,112,97,103,101,45,110,111,116,105,99,101,2,1,67,198,196,220,8,1,13,46,115,105,109,112,108,101,45,109,111,100,97,108,2,1,166,122,101,10,8,1,5,46,115,111,111,107,2,1,202,148,152,123,8,1,28,46,115,116,101,97,109,97,115,116,101,114,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,91,245,142,202,8,1,14,46,115,116,105,99,107,121,45,102,111,111,116,101,114,2,1,35,134,244,3,8,1,12,46,115,116,105,99,107,121,110,111,116,101,50,2,1,77,164,6,178,8,1,19,46,115,116,121,108,101,115,95,115,104,111,119,95,95,51,105,54,107,120,2,1,63,157,5,228,8,1,23,46,116,97,114,110,111,119,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,2,1,224,55,177,204,8,1,6,46,116,99,101,108,108,2,1,221,192,207,69,8,1,8,46,116,99,111,111,107,105,101,2,1,242,206,129,3,8,1,4,46,116,111,112,2,1,200,187,46,233,8,1,38,46,117,105,45,100,105,97,108,111,103,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,99,111,111,107,105,101,115,34,93,2,1,60,9,41,179,8,1,59,46,117,105,45,100,105,97,108,111,103,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,99,111,111,107,105,101,115,34,93,32,126,32,46,117,105,45,119,105,100,103,101,116,45,111,118,101,114,108,97,121,2,1,60,9,41,179,8,1,18,46,117,105,45,119,105,100,103,101,116,45,99,111,110,116,101,110,116,2,1,99,105,65,90,8,1,9,46,119,51,45,109,111,100,97,108,2,1,86,227,56,165,8,1,10,46,119,105,100,103,101,116,115,45,53,2,1,232,65,11,92,8,1,13,46,120,49,51,101,117,99,111,111,107,105,101,115,2,1,58,196,193,79,8,1,23,46,120,49,51,101,117,99,111,111,107,105,101,115,95,95,98,97,99,107,100,114,111,112,2,1,233,75,87,34,8,1,27,46,122,45,49,50,48,48,46,98,111,114,100,101,114,45,112,114,105,109,97,114,121,45,109,97,105,110,2,1,193,29,211,233,8,1,23,46,122,103,111,100,97,95,110,97,95,112,114,122,101,116,119,97,114,122,97,110,105,101,2,1,169,39,85,246,8,1,7,46,122,115,97,118,57,97,2,1,7,109,76,69,0,1,37,91,100,97,116,97,45,116,101,115,116,61,34,109,111,100,97,108,45,99,111,111,107,105,101,45,98,111,116,116,111,109,45,98,97,114,34,93,2,1,217,1,40,94,0,1,48,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,32,116,111,112,58,32,48,112,120,59,34,93,2,2,46,255,150,126,221,192,207,69,0,1,32,91,115,116,121,108,101,94,61,34,116,111,112,58,48,59,108,101,102,116,58,48,59,114,105,103,104,116,58,48,59,34,93,2,1,79,162,90,77,0,1,18,97,112,112,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,2,1,234,119,225,22,0,1,25,98,111,100,121,32,62,32,100,105,118,91,115,116,121,108,101,42,61,34,49,48,48,37,34,93,2,1,98,83,84,249,0,1,13,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,33,6,170,175,0,1,29,100,105,118,91,99,108,97,115,115,94,61,34,71,68,80,82,67,111,111,107,105,101,73,110,102,111,95,34,93,2,1,211,91,214,184,0,1,35,100,105,118,91,99,108,97,115,115,94,61,34,115,116,121,108,101,115,95,95,72,101,97,100,101,114,73,110,102,111,66,97,114,34,93,2,1,150,44,133,158,0,1,24,100,105,118,91,105,100,94,61,34,67,111,111,107,105,101,115,80,111,112,117,112,95,34,93,2,1,88,14,219,60,0,1,52,100,105,118,91,115,116,121,108,101,42,61,34,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,105,109,97,103,101,115,47,99,111,111,107,105,101,115,95,116,108,111,46,112,110,103,41,34,93,2,1,225,166,185,156,0,1,128,0,0,1,145,100,105,118,91,115,116,121,108,101,61,34,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,65,70,65,70,65,59,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,103,114,97,121,59,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,48,112,120,32,49,48,112,120,32,49,48,112,120,32,49,48,112,120,59,32,32,98,111,120,45,115,104,97,100,111,119,58,32,49,112,120,32,49,112,120,32,51,112,120,32,48,32,103,114,97,121,59,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,59,32,32,112,97,100,100,105,110,103,58,32,49,48,112,120,32,50,53,112,120,59,32,32,119,105,100,116,104,58,32,57,51,48,112,120,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,65,70,65,70,65,59,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,103,114,97,121,59,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,48,112,120,59,32,109,111,122,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,48,112,120,59,32,119,101,98,107,105,116,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,48,112,120,59,32,32,98,111,120,45,115,104,97,100,111,119,58,32,49,112,120,32,49,112,120,32,51,112,120,32,48,32,103,114,97,121,59,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,59,32,32,112,97,100,100,105,110,103,58,32,49,48,112,120,32,50,53,112,120,59,32,32,119,105,100,116,104,58,32,57,51,48,112,120,59,34,93,2,1,130,58,45,80,0,1,128,0,0,0,247,100,105,118,91,115,116,121,108,101,61,34,98,111,114,100,101,114,45,116,111,112,58,32,49,112,120,32,115,111,108,105,100,32,114,103,98,40,49,57,51,44,32,49,57,51,44,32,49,57,51,41,59,32,98,111,116,116,111,109,58,32,48,112,120,59,32,98,111,120,45,115,104,97,100,111,119,58,32,48,112,120,32,45,50,112,120,32,52,112,120,32,114,103,98,40,49,57,51,44,32,49,57,51,44,32,49,57,51,41,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,112,97,100,100,105,110,103,58,32,49,48,112,120,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,32,114,105,103,104,116,58,32,48,112,120,59,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,32,119,105,100,116,104,58,32,49,48,48,37,59,32,122,45,105,110,100,101,120,58,32,49,48,48,48,48,48,48,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,119,104,105,116,101,59,34,93,2,1,214,148,92,52,0,1,77,100,105,118,91,115,116,121,108,101,61,34,99,108,101,97,114,58,32,98,111,116,104,59,32,102,111,110,116,58,32,110,111,114,109,97,108,32,49,50,112,120,32,65,114,105,97,108,59,32,112,97,100,100,105,110,103,58,32,53,112,120,32,48,112,120,32,53,112,120,32,49,48,112,120,59,34,93,2,1,129,192,159,87,0,1,128,0,0,0,136,100,105,118,91,115,116,121,108,101,61,34,99,108,101,97,114,58,98,111,116,104,59,98,97,99,107,103,114,111,117,110,100,58,35,102,102,102,59,99,111,108,111,114,58,35,48,48,48,59,112,97,100,100,105,110,103,58,49,48,112,120,32,51,37,59,109,97,114,103,105,110,58,48,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,55,55,55,59,119,105,100,116,104,58,57,52,37,59,34,93,2,1,234,175,163,231,0,1,25,100,105,118,91,115,116,121,108,101,61,34,112,97,100,100,105,110,103,58,56,112,120,59,34,93,2,1,245,64,46,4,0,1,128,0,0,0,150,100,105,118,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,48,59,32,114,105,103,104,116,58,48,59,32,98,111,116,116,111,109,58,48,59,32,104,101,105,103,104,116,58,51,52,112,120,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,101,101,59,32,98,111,114,100,101,114,45,116,111,112,58,32,49,112,120,32,115,111,108,105,100,32,98,108,97,99,107,59,32,122,45,105,110,100,101,120,58,49,48,48,48,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,34,93,2,1,192,253,99,142,0,1,68,100,105,118,91,115,116,121,108,101,61,34,116,101,120,116,45,97,108,105,103,110,58,32,114,105,103,104,116,59,32,102,111,110,116,45,115,105,122,101,58,32,57,112,120,59,32,112,97,100,100,105,110,103,45,114,105,103,104,116,58,32,50,48,112,120,59,34,93,2,1,100,117,79,46,0,1,128,0,0,1,24,100,105,118,91,115,116,121,108,101,61,34,119,105,100,116,104,58,32,49,48,48,37,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,40,48,44,32,48,44,32,48,41,59,32,109,97,114,103,105,110,58,32,48,112,120,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,32,112,97,100,100,105,110,103,58,32,48,112,120,59,32,104,101,105,103,104,116,58,32,49,53,112,120,59,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,53,112,120,59,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,32,99,111,108,111,114,58,32,114,103,98,40,50,53,53,44,32,50,53,53,44,32,50,53,53,41,59,32,122,45,105,110,100,101,120,58,32,49,48,48,48,59,32,102,111,110,116,45,102,97,109,105,108,121,58,32,65,114,105,97,108,44,32,72,101,108,118,101,116,105,99,97,44,32,115,97,110,115,45,115,101,114,105,102,59,32,102,111,110,116,45,115,105,122,101,58,32,49,48,112,120,59,34,93,2,1,190,79,212,154,0,1,128,0,0,0,220,100,105,118,91,115,116,121,108,101,61,34,119,105,100,116,104,58,32,49,48,48,37,59,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,40,52,52,44,32,52,56,44,32,53,49,41,32,110,111,110,101,32,114,101,112,101,97,116,32,115,99,114,111,108,108,32,48,37,32,48,37,59,32,112,97,100,100,105,110,103,58,32,49,48,112,120,32,48,59,32,99,111,108,111,114,58,32,35,102,102,102,59,32,98,111,114,100,101,114,45,116,111,112,58,32,49,112,120,32,115,111,108,105,100,32,114,103,98,40,50,50,49,44,32,50,50,49,44,32,50,50,49,41,59,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,59,32,122,45,105,110,100,101,120,58,32,57,57,57,57,57,57,57,57,57,59,34,93,2,1,204,113,231,255,0,1,128,0,0,0,180,100,105,118,91,115,116,121,108,101,61,34,119,105,100,116,104,58,32,49,48,48,37,59,102,108,111,97,116,58,32,108,101,102,116,59,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,112,97,100,100,105,110,103,58,32,49,53,112,120,32,48,59,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,116,111,112,58,32,48,112,120,59,108,101,102,116,58,32,48,112,120,59,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,99,111,108,111,114,58,32,35,48,48,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,49,112,120,32,35,48,48,48,32,115,111,108,105,100,59,122,45,105,110,100,101,120,58,32,49,48,48,48,59,34,93,2,1,190,81,127,43,0,1,128,0,0,0,173,100,105,118,91,115,116,121,108,101,61,34,119,105,100,116,104,58,32,57,55,48,112,120,59,32,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,103,114,97,121,59,32,109,97,114,103,105,110,58,32,51,112,120,32,97,117,116,111,59,32,99,111,108,111,114,58,32,103,114,97,121,59,32,112,97,100,100,105,110,103,58,32,51,112,120,59,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,32,102,111,110,116,58,32,49,48,112,120,32,86,101,114,100,97,110,97,44,32,115,97,110,115,45,115,101,114,105,102,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,102,102,102,102,102,59,34,93,2,1,100,117,79,46,0,1,128,0,0,0,252,100,105,118,91,115,116,121,108,101,61,34,122,45,105,110,100,101,120,58,32,49,48,48,59,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,65,114,105,97,108,59,32,102,111,110,116,45,115,105,122,101,58,32,49,50,112,120,59,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,32,111,112,97,99,105,116,121,58,32,48,46,56,59,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,50,112,120,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,52,102,52,102,52,59,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,55,55,55,59,32,98,111,114,100,101,114,45,108,101,102,116,58,32,48,59,32,98,111,114,100,101,114,45,114,105,103,104,116,58,32,48,59,32,98,111,116,116,111,109,58,32,48,112,120,59,32,119,105,100,116,104,58,32,49,48,48,37,59,32,112,97,100,100,105,110,103,58,32,53,112,120,59,34,93,2,1,138,187,77,181,0,1,50,100,105,118,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,40,49,56,56,44,32,49,53,51,44,32,55,51,41,59,34,93,2,1,27,81,85,177,0,1,30,100,105,118,91,115,116,121,108,101,94,61,34,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,34,93,2,1,249,245,25,125,0,1,38,100,105,118,91,115,116,121,108,101,94,61,34,102,111,110,116,45,115,105,122,101,58,49,50,112,120,59,98,111,116,116,111,109,58,48,59,34,93,2,1,142,131,135,253,0,1,29,100,105,118,91,115,116,121,108,101,94,61,34,108,101,102,116,58,32,48,112,120,59,32,116,111,112,58,34,93,2,1,168,22,18,159,0,1,49,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,32,122,45,105,110,100,101,120,58,32,51,50,48,48,48,59,34,93,2,1,40,164,166,228,0,1,38,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,34,93,2,1,78,15,161,164,0,1,46,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,100,105,115,112,108,97,121,58,32,116,97,98,108,101,59,34,93,2,1,221,192,207,69,0,1,36,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,34,93,2,1,24,171,169,138,0,1,35,100,105,118,91,115,116,121,108,101,94,61,34,116,111,112,58,48,59,108,101,102,116,58,48,59,114,105,103,104,116,58,48,59,34,93,2,1,130,57,192,2,0,1,16,119,112,108,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,229,116,56,53,16,1,10,35,67,79,79,75,73,69,66,65,82,2,1,103,200,251,145,16,1,15,35,76,71,80,68,45,83,116,97,114,116,69,99,111,109,2,1,26,119,25,12,16,1,14,35,97,115,102,67,111,111,107,105,101,115,66,97,114,2,1,97,254,45,138,16,1,14,35,98,97,114,114,97,109,101,110,115,97,103,101,109,2,1,206,111,7,248,16,1,13,35,99,107,45,99,111,110,116,97,105,110,101,114,2,1,33,120,253,137,16,1,5,35,99,111,111,107,2,1,226,98,121,28,16,1,17,35,99,111,111,107,105,101,45,108,97,119,45,112,97,110,101,108,2,1,164,112,226,206,16,1,13,35,99,111,111,107,105,101,115,109,111,100,97,108,2,1,51,4,186,46,16,1,36,35,99,116,108,48,48,95,80,111,108,105,116,105,99,97,67,111,111,107,105,101,115,95,100,105,118,67,111,111,107,105,101,115,77,115,103,2,1,61,255,82,176,16,1,11,35,100,105,115,99,108,97,105,109,101,114,2,4,79,119,184,49,102,171,249,248,132,189,69,230,221,63,198,122,16,1,9,35,100,118,99,111,111,107,105,101,2,1,68,81,27,31,16,1,9,35,102,103,118,45,108,103,112,100,2,1,124,233,221,0,16,1,7,35,105,115,86,105,101,119,2,1,105,107,39,9,16,1,17,35,105,116,45,101,112,114,105,118,97,99,121,45,114,111,111,116,2,1,138,254,68,33,16,1,17,35,107,108,97,114,111,45,112,101,45,111,118,101,114,108,97,121,2,1,204,117,112,10,16,1,16,35,107,108,97,114,111,45,112,101,45,119,105,110,100,111,119,2,1,204,117,112,10,16,1,5,35,108,103,112,100,2,2,20,173,79,230,131,26,76,89,16,1,9,35,108,103,112,100,45,98,111,120,2,1,153,78,185,217,16,1,11,35,108,103,112,100,67,111,111,107,105,101,2,1,117,190,169,46,16,1,12,35,108,103,112,100,95,98,97,110,110,101,114,2,1,208,202,241,101,16,1,11,35,108,103,112,100,98,97,110,110,101,114,2,1,52,15,42,29,16,1,15,35,108,111,97,100,101,114,45,111,118,101,114,108,97,121,2,3,91,34,251,41,142,38,93,166,157,39,2,184,16,1,15,35,108,112,45,112,111,109,45,98,111,120,45,53,50,56,2,1,106,114,92,182,16,1,18,35,109,45,97,99,99,45,100,101,115,99,114,105,112,116,105,111,110,2,1,99,8,232,237,16,1,14,35,109,97,110,97,103,101,67,111,111,107,105,101,115,2,1,48,40,51,152,16,1,18,35,109,111,100,97,108,95,97,99,101,105,116,101,121,99,112,111,108,2,1,114,12,14,208,16,1,17,35,109,111,116,111,114,111,108,97,45,99,111,111,107,105,101,115,2,2,195,63,222,240,213,81,107,31,16,1,6,35,110,103,45,99,99,2,1,55,177,120,83,16,1,7,35,111,112,97,113,117,101,2,1,98,49,139,75,16,1,13,35,112,111,108,105,116,105,99,97,45,98,111,120,2,1,154,26,188,96,16,1,20,35,112,111,108,105,116,105,99,97,80,114,105,118,97,99,105,100,97,100,101,2,1,84,76,215,215,16,1,19,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,100,105,118,2,1,55,1,106,230,16,1,21,35,112,114,105,118,97,99,121,45,116,111,111,108,115,45,98,97,110,110,101,114,2,1,35,80,23,253,16,1,18,35,114,111,111,116,32,62,32,46,115,99,45,98,100,86,97,74,97,2,1,141,15,203,86,16,1,22,35,114,116,112,103,101,114,97,108,99,111,111,107,105,101,99,111,110,116,101,110,116,2,1,164,112,213,215,16,1,10,35,116,101,114,109,111,45,117,115,111,2,1,13,19,63,79,16,1,17,35,118,116,101,120,45,108,103,112,100,45,99,111,111,107,105,101,2,2,43,59,173,137,197,48,49,27,16,1,12,35,119,114,110,103,45,97,103,114,109,110,116,2,1,26,238,110,208,8,1,8,46,45,112,111,108,105,99,121,2,1,63,172,79,31,8,1,30,46,67,111,111,107,105,101,72,111,108,100,101,114,95,99,111,110,116,97,105,110,101,114,95,95,50,51,103,48,115,2,1,51,87,131,32,8,1,16,46,68,121,107,71,111,46,115,99,45,99,114,122,111,65,69,2,1,98,128,196,164,8,1,6,46,70,83,101,108,105,2,1,20,154,58,67,8,1,12,46,76,71,80,68,45,110,111,116,105,99,101,2,1,106,247,171,182,8,1,16,46,84,114,97,99,107,105,110,103,73,110,102,111,66,111,120,2,1,215,231,105,142,8,1,7,46,95,49,105,83,80,121,2,1,200,179,91,137,8,1,20,46,95,99,111,110,116,97,105,110,101,114,95,49,115,105,113,114,95,53,52,2,1,126,22,76,208,8,1,13,46,97,99,99,101,112,116,80,111,108,105,99,101,2,1,209,61,126,201,8,1,17,46,97,99,99,101,112,116,97,110,99,101,45,116,101,114,109,115,2,1,203,241,225,91,8,1,7,46,97,99,101,105,116,101,2,2,134,174,35,169,248,40,39,211,8,1,15,46,97,100,112,45,112,111,112,117,112,45,119,114,97,112,2,1,194,102,34,168,8,1,7,46,97,108,101,114,116,97,2,2,229,181,219,20,233,176,165,253,8,1,14,46,97,108,101,114,116,97,67,111,111,107,105,101,115,2,2,57,22,3,62,75,56,152,112,8,1,51,46,97,110,116,100,45,112,114,111,45,99,111,109,112,111,110,101,110,116,115,45,99,111,111,107,105,101,45,112,111,112,45,117,112,45,105,110,100,101,120,45,115,104,111,119,95,112,111,112,117,112,2,1,105,124,95,215,8,1,7,46,98,90,69,103,102,72,2,1,139,196,100,89,8,1,17,46,98,97,99,107,100,114,111,112,45,98,108,117,114,45,115,109,2,1,172,128,55,184,8,1,19,46,98,97,99,107,103,114,111,117,110,100,45,111,118,101,114,108,97,121,2,1,189,103,77,149,8,1,17,46,98,97,110,110,101,114,45,102,105,120,101,100,45,98,111,120,2,1,158,135,160,129,8,1,33,46,98,97,110,110,101,114,95,114,111,100,97,112,101,95,105,110,102,111,114,109,97,110,100,111,95,99,111,111,107,105,101,115,2,2,85,92,18,5,100,73,27,124,8,1,105,46,98,97,115,101,45,102,108,101,120,45,99,111,108,46,108,103,92,58,98,97,115,101,45,102,108,101,120,45,114,111,119,46,98,97,115,101,45,102,108,101,120,46,98,97,115,101,45,119,45,102,117,108,108,46,98,97,115,101,45,105,116,101,109,115,45,99,101,110,116,101,114,46,98,97,115,101,45,106,117,115,116,105,102,121,45,98,101,116,119,101,101,110,46,98,97,115,101,45,112,45,120,120,120,115,2,1,194,197,244,117,8,1,16,46,98,103,45,98,108,117,101,45,103,114,101,121,45,49,48,2,1,60,182,9,15,8,1,7,46,98,106,82,77,97,114,2,1,141,15,203,86,8,1,20,46,98,108,111,99,107,45,114,101,103,105,111,110,45,102,111,111,116,101,114,2,1,51,243,41,114,8,1,21,46,98,111,116,116,111,109,45,112,111,112,117,112,45,119,114,97,112,112,101,114,2,1,96,150,34,49,8,1,23,46,98,111,120,45,97,99,101,105,116,101,45,112,114,105,118,97,99,105,100,97,100,101,2,2,205,127,113,216,223,234,113,89,8,1,7,46,98,115,119,84,115,114,2,1,152,255,124,134,8,1,22,46,99,45,112,111,112,117,112,45,99,111,110,115,101,110,116,105,109,101,110,116,111,2,1,198,153,63,142,8,1,7,46,99,95,115,104,111,119,2,1,86,46,7,7,8,1,12,46,99,97,105,120,97,45,97,108,101,114,116,2,1,204,173,92,11,8,1,18,46,99,97,108,108,97,104,97,110,45,99,97,109,112,97,105,103,110,2,1,247,56,98,202,8,1,12,46,99,97,114,100,45,98,111,116,116,111,109,2,1,210,84,213,51,8,1,18,46,99,97,114,100,46,98,117,116,116,111,110,45,102,105,120,101,100,2,1,166,176,151,139,8,1,42,46,99,97,115,97,101,118,105,100,101,111,110,101,119,105,111,45,115,116,111,114,101,45,116,104,101,109,101,45,56,45,120,45,99,111,110,116,97,105,110,101,114,2,1,109,160,139,6,8,1,7,46,99,98,90,69,70,106,2,1,27,183,105,35,8,1,20,46,99,101,110,116,101,114,45,98,111,116,116,111,109,45,102,105,120,101,100,2,1,87,57,207,226,8,1,32,46,99,104,97,107,114,97,45,109,111,100,97,108,95,95,99,111,110,116,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,215,46,233,171,8,1,22,46,99,104,97,107,114,97,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,2,1,215,46,233,171,8,1,14,46,99,104,97,107,114,97,45,112,111,114,116,97,108,2,1,51,78,35,23,8,1,4,46,99,107,101,2,1,223,229,149,46,8,1,20,46,99,111,110,115,101,110,116,45,98,97,114,45,119,114,97,112,112,101,114,2,1,99,205,254,154,8,1,19,46,99,111,110,115,101,110,116,99,111,111,107,105,101,95,49,54,56,95,2,1,196,79,45,205,8,1,17,46,99,111,110,116,97,105,110,101,114,45,112,111,108,105,99,121,2,1,131,13,11,168,8,1,16,46,99,111,110,116,97,105,110,101,114,65,99,101,105,116,101,2,1,105,142,66,16,8,1,20,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,2,19,55,137,94,101,149,29,87,8,1,13,46,99,111,111,107,105,101,115,77,111,100,97,108,2,2,6,215,129,160,235,207,170,135,8,1,12,46,99,115,115,45,49,57,105,111,120,106,57,2,1,41,40,116,132,8,1,11,46,99,115,115,45,114,118,99,49,102,113,2,1,41,40,116,132,8,1,11,46,99,120,104,55,100,116,52,117,76,105,2,1,101,23,130,33,8,1,17,46,99,120,118,53,49,73,49,56,106,104,115,119,99,115,68,104,2,1,6,29,254,114,8,1,7,46,100,75,103,86,75,74,2,1,114,220,75,58,8,1,9,46,101,56,53,97,107,97,101,48,2,1,174,161,13,18,8,1,9,46,102,105,120,101,100,66,97,114,2,1,220,27,41,216,8,1,11,46,102,105,120,101,100,98,108,111,99,107,2,1,189,166,223,148,8,1,128,0,0,0,226,46,102,108,101,120,46,102,108,101,120,45,99,111,108,46,109,100,92,58,102,108,101,120,45,114,111,119,46,106,117,115,116,105,102,121,45,99,101,110,116,101,114,46,109,100,92,58,106,117,115,116,105,102,121,45,115,116,97,114,116,46,105,116,101,109,115,45,99,101,110,116,101,114,46,103,97,112,45,92,91,49,48,112,120,92,93,46,109,100,92,58,103,97,112,45,92,91,49,52,112,120,92,93,46,109,97,120,45,119,45,92,91,55,54,48,112,120,92,93,46,112,121,45,53,46,112,120,45,52,46,119,45,102,117,108,108,46,109,100,92,58,112,120,45,53,46,109,100,92,58,112,121,45,92,91,49,52,112,120,92,93,46,109,98,45,92,91,49,48,48,112,120,92,93,46,98,103,45,119,104,105,116,101,46,114,111,117,110,100,101,100,45,120,108,46,98,111,114,100,101,114,45,98,45,52,46,98,111,111,114,100,101,114,45,92,91,92,35,69,65,69,67,70,48,92,93,2,1,172,128,55,184,8,1,19,46,102,108,111,97,116,105,110,103,66,97,114,80,114,105,118,97,99,121,2,2,53,10,16,63,240,244,29,40,8,1,7,46,102,111,80,99,112,89,2,1,161,70,65,253,8,1,7,46,102,111,111,116,101,114,2,1,188,38,124,130,8,1,17,46,102,111,111,116,101,114,45,102,105,120,101,100,45,98,97,114,2,2,170,66,58,71,254,196,107,205,8,1,15,46,102,111,111,116,101,114,45,119,97,114,110,105,110,103,2,1,191,6,205,220,8,1,7,46,103,69,66,105,82,80,2,1,247,104,109,204,8,1,7,46,103,79,72,65,103,117,2,1,114,220,75,58,8,1,7,46,103,102,85,78,112,80,2,1,23,153,179,22,8,1,31,46,103,118,45,99,111,111,107,105,101,45,108,103,112,100,45,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,2,1,106,85,41,123,8,1,7,46,104,67,72,120,112,103,2,1,236,171,76,25,8,1,7,46,104,90,101,89,82,100,2,1,106,79,118,197,8,1,7,46,104,114,119,119,99,106,2,1,232,228,104,33,8,1,23,46,104,117,98,45,105,110,102,111,45,98,97,114,45,99,111,109,112,111,110,101,110,116,2,6,51,87,131,32,51,89,45,48,106,37,158,123,139,195,242,28,181,96,128,106,192,216,204,94,8,1,7,46,105,84,72,103,79,98,2,1,119,27,165,78,8,1,35,46,105,110,100,101,120,45,109,111,100,117,108,101,45,45,67,111,111,107,105,101,115,66,97,110,110,101,114,45,45,50,101,112,45,68,2,1,109,43,242,36,8,1,18,46,105,110,102,111,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,106,108,129,142,8,1,18,46,105,110,102,111,45,112,111,108,105,116,105,99,97,45,97,108,108,2,1,45,253,0,171,8,1,13,46,105,110,102,111,98,111,120,45,119,114,97,112,2,1,214,10,244,88,8,1,7,46,106,87,117,69,102,83,2,1,53,190,161,189,8,1,16,46,106,99,45,108,103,112,100,45,99,111,110,115,101,110,116,2,1,51,249,201,14,8,1,14,46,106,113,45,116,111,97,115,116,45,119,114,97,112,2,1,196,84,146,229,8,1,17,46,106,115,45,115,104,111,119,45,114,101,109,105,110,100,101,114,2,1,239,33,202,129,8,1,5,46,106,115,115,52,2,1,32,99,75,104,8,1,6,46,106,115,115,53,55,2,1,136,44,91,1,8,1,6,46,106,115,115,54,56,2,1,94,40,158,17,8,1,19,46,106,117,115,116,105,99,97,45,99,111,111,107,105,101,95,98,97,114,2,1,231,46,216,118,8,1,7,46,107,85,103,83,69,120,2,1,20,154,58,67,8,1,5,46,108,103,112,100,2,13,0,2,164,84,1,12,111,163,47,8,215,33,58,94,154,119,58,142,139,82,62,55,145,219,86,229,99,107,108,9,96,31,108,14,184,57,124,242,110,7,225,210,81,68,235,227,195,75,246,235,33,136,8,1,12,46,108,103,112,100,45,97,99,101,105,116,101,2,1,55,215,67,249,8,1,13,46,108,103,112,100,45,116,111,111,108,116,105,112,2,1,81,124,107,94,8,1,11,46,108,103,112,100,98,97,110,110,101,114,2,2,80,245,245,86,145,13,49,232,8,1,7,46,108,108,83,78,118,80,2,1,29,134,16,34,8,1,52,46,108,111,106,97,111,98,114,97,109,97,120,45,115,116,111,114,101,45,99,111,109,112,111,110,101,110,116,115,45,48,45,120,45,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,2,1,189,171,251,76,8,1,36,46,108,111,106,97,115,99,104,110,101,105,100,101,114,45,115,116,111,114,101,45,48,45,120,45,99,111,110,115,101,110,116,76,103,112,100,2,1,247,197,106,192,8,1,13,46,109,100,99,45,115,110,97,99,107,98,97,114,2,1,80,168,94,27,8,1,20,46,109,111,100,97,108,45,97,118,105,115,111,45,99,111,111,107,105,101,115,2,1,177,138,21,211,8,1,13,46,109,111,100,97,108,67,111,111,107,105,101,115,2,1,117,192,37,174,8,1,17,46,109,111,100,97,108,68,105,97,108,111,103,65,118,105,115,111,2,1,37,149,109,214,8,1,14,46,110,45,114,111,111,116,45,48,45,50,45,56,49,2,1,171,12,217,147,8,1,18,46,110,97,118,98,97,114,45,100,105,115,99,108,97,105,109,101,114,2,1,106,116,254,10,8,1,29,46,110,97,118,98,97,114,45,109,111,100,117,108,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,106,116,254,10,8,1,7,46,110,111,116,105,102,105,2,1,90,0,81,207,8,1,20,46,110,111,116,105,102,105,99,97,116,105,111,110,45,102,111,111,116,101,114,2,1,109,226,139,23,8,1,16,46,110,111,116,105,102,105,99,97,116,105,111,110,66,97,114,2,1,201,216,84,71,8,1,9,46,110,111,116,105,102,105,110,111,2,2,102,27,123,21,196,79,87,225,8,1,25,46,111,110,101,45,98,117,116,116,111,110,45,99,111,111,107,105,101,115,45,112,111,112,117,112,2,1,209,38,233,85,8,1,7,46,111,112,116,45,105,110,2,1,187,246,3,55,8,1,16,46,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,2,2,147,38,92,48,196,80,240,190,8,1,4,46,112,45,51,2,1,89,100,193,252,8,1,22,46,112,100,115,45,99,45,80,74,76,86,45,105,110,110,112,69,85,45,99,115,115,2,1,26,211,70,148,8,1,16,46,112,111,108,105,99,105,101,115,45,97,99,99,101,112,116,2,1,51,227,31,197,8,1,7,46,112,111,108,105,99,121,2,1,163,233,150,169,8,1,17,46,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,2,1,158,31,210,236,8,1,13,46,112,111,108,105,99,121,45,116,101,114,109,115,2,4,3,176,148,185,95,129,66,33,222,175,151,176,247,24,124,73,8,1,21,46,112,111,108,105,116,105,99,97,115,80,114,105,118,97,99,105,100,97,100,101,2,1,86,252,178,0,8,1,10,46,112,111,112,117,112,45,112,114,111,2,1,70,158,193,210,8,1,13,46,112,111,112,117,112,95,102,111,111,116,101,114,2,3,72,123,17,94,227,127,35,106,239,138,85,160,8,1,22,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,95,95,112,111,112,117,112,2,1,139,196,77,198,8,1,16,46,112,114,105,118,97,99,121,45,119,97,114,110,105,110,103,2,1,60,190,215,117,8,1,14,46,114,105,103,111,114,45,99,111,111,107,105,101,115,2,1,52,134,100,148,8,1,33,46,114,111,118,105,116,101,120,45,97,112,112,115,45,48,45,120,45,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,2,1,177,8,10,121,8,1,21,46,115,99,45,56,99,52,56,98,101,48,48,45,48,46,106,115,119,71,82,113,2,1,106,32,39,13,8,1,9,46,115,99,45,65,120,105,75,119,2,1,116,108,224,240,8,1,21,46,115,99,45,98,55,102,100,57,100,98,51,45,48,46,105,119,75,75,107,85,2,1,34,96,208,87,8,1,14,46,115,99,45,102,97,97,100,97,52,54,98,45,48,2,1,210,138,53,76,8,1,10,46,115,99,45,105,66,89,81,107,118,2,1,43,61,103,220,8,1,15,46,115,101,99,116,105,111,110,45,45,51,89,111,98,108,2,1,98,144,219,233,8,1,17,46,115,105,116,101,45,119,114,97,112,45,99,111,111,107,105,101,2,1,10,160,26,223,8,1,35,46,115,116,121,108,101,115,95,95,67,111,111,107,105,101,67,111,110,116,101,110,116,45,115,99,45,49,54,109,112,100,50,97,45,48,2,1,252,176,90,182,8,1,22,46,115,121,110,45,99,111,110,116,97,105,110,101,114,45,98,97,110,110,101,114,49,2,1,200,223,121,116,8,1,31,46,116,101,109,112,108,97,116,101,45,112,97,114,116,45,99,111,109,112,111,110,101,110,116,45,116,101,114,109,111,115,2,1,145,160,74,216,8,1,16,46,116,101,114,109,111,115,45,112,111,108,105,116,105,99,97,2,1,3,55,40,1,8,1,15,46,116,101,115,108,97,45,108,103,112,100,45,98,111,120,2,1,106,113,77,197,8,1,20,46,116,106,109,116,67,111,111,107,105,101,115,95,95,98,97,110,110,101,114,2,1,13,31,95,32,8,1,20,46,116,111,111,108,107,105,116,45,112,114,105,118,97,99,121,45,98,111,120,2,1,49,18,243,162,8,1,26,46,116,111,111,108,107,105,116,45,112,114,105,118,97,99,121,45,98,111,120,95,95,98,111,100,121,2,1,194,197,244,117,8,1,16,46,120,45,99,97,102,101,76,111,114,95,95,108,103,112,100,2,1,238,207,80,178,8,1,8,46,122,55,99,109,98,110,114,2,1,14,91,18,136,8,1,7,46,122,115,97,118,57,97,2,1,87,50,190,198,0,1,25,91,99,108,97,115,115,94,61,34,80,114,105,118,97,99,121,70,111,111,116,101,114,95,34,93,2,1,68,54,220,104,0,1,36,91,99,108,97,115,115,94,61,34,115,116,121,108,101,115,95,109,111,108,101,99,117,108,101,95,95,99,111,111,107,105,101,115,45,34,93,2,1,99,214,115,74,0,1,34,91,100,97,116,97,45,99,121,61,34,99,111,110,116,97,105,110,101,114,45,109,111,100,97,108,45,99,111,111,107,105,101,34,93,2,1,157,210,152,90,0,1,5,97,108,101,114,116,2,1,94,220,79,228,0,1,10,97,112,112,45,111,112,116,45,105,110,2,1,51,72,91,139,0,1,17,99,111,111,107,105,101,45,112,111,108,105,99,101,45,98,97,114,2,1,107,26,250,123,0,1,48,100,105,118,91,99,108,97,115,115,94,61,34,82,101,97,99,116,70,111,111,116,101,114,67,105,118,105,108,77,97,114,107,95,110,111,116,105,102,105,99,97,116,105,111,110,95,34,93,2,1,124,91,25,81,0,1,32,100,105,118,91,99,108,97,115,115,94,61,34,97,108,101,114,116,45,99,111,111,107,105,101,115,116,121,108,101,115,34,93,2,1,212,187,78,68,0,1,31,100,105,118,91,99,108,97,115,115,94,61,34,108,103,112,100,45,109,101,115,115,97,103,101,45,98,111,120,95,34,93,2,3,109,128,19,62,166,181,9,44,196,239,198,103,0,1,42,100,105,118,91,99,108,97,115,115,94,61,34,115,116,121,108,101,115,95,97,99,99,101,112,116,67,111,111,107,105,101,115,87,114,97,112,112,101,114,95,34,93,2,1,215,50,224,118,0,1,25,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,98,97,110,110,101,114,34,93,2,1,116,75,88,87,0,1,39,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,98,97,110,110,101,114,45,99,111,111,107,105,101,115,45,116,101,114,109,115,34,93,2,1,51,76,239,95,0,1,63,100,105,118,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,58,98,108,97,99,107,59,32,99,111,108,111,114,58,119,104,105,116,101,59,32,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,34,93,2,1,142,51,59,229,0,1,37,100,105,118,91,115,116,121,108,101,94,61,34,98,111,116,116,111,109,58,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,34,93,2,1,128,42,113,153,0,1,27,100,105,118,91,115,116,121,108,101,94,61,34,104,101,105,103,104,116,58,32,51,53,112,120,59,34,93,2,1,94,52,155,128,0,1,43,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,119,105,100,116,104,58,32,49,48,48,37,59,34,93,2,1,38,142,183,213,0,1,47,100,105,118,91,115,116,121,108,101,94,61,34,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,34,93,2,1,48,157,170,82,16,1,13,35,97,99,99,101,112,116,45,112,111,112,117,112,2,1,104,0,228,135,16,1,6,35,97,118,101,114,116,2,1,126,220,178,8,16,1,15,35,97,118,101,114,116,95,97,108,108,95,112,97,103,101,2,1,140,104,195,133,16,1,8,35,98,97,114,119,114,97,112,2,1,44,85,137,245,16,1,7,35,98,103,79,118,101,114,2,1,176,83,154,171,16,1,13,35,99,107,105,101,115,101,108,101,99,116,95,105,2,1,201,30,93,184,16,1,4,35,99,107,110,2,1,110,148,217,249,16,1,13,35,99,111,110,115,101,110,116,77,111,100,97,108,2,1,119,107,69,176,16,1,8,35,99,111,111,107,98,111,120,2,1,11,168,215,3,16,1,13,35,99,111,111,107,105,101,115,109,111,100,97,108,2,1,152,76,68,118,16,1,11,35,111,116,45,115,100,107,45,98,116,110,2,1,59,94,77,199,16,1,22,35,111,118,101,114,108,97,121,95,103,100,112,114,95,97,117,116,101,110,116,105,99,2,1,229,91,247,149,16,1,30,35,111,118,101,114,108,97,121,95,103,100,112,114,95,97,117,116,101,110,116,105,99,95,99,111,110,116,101,110,116,2,1,229,91,247,149,16,1,10,35,112,97,103,101,45,109,97,115,107,2,1,15,123,34,136,16,1,12,35,112,111,112,117,112,119,105,110,100,111,119,2,1,199,151,240,192,16,1,6,35,116,101,114,109,115,2,3,11,218,187,70,52,15,108,131,205,93,233,242,16,1,15,35,119,105,110,100,111,119,95,111,118,101,114,108,97,121,2,1,119,240,139,179,8,1,14,46,98,97,110,110,101,114,87,114,97,112,112,101,114,2,1,165,208,240,21,8,1,32,46,98,111,116,116,111,109,45,98,97,110,110,101,114,46,99,97,114,100,32,62,32,46,99,97,114,100,45,98,111,100,121,2,1,151,254,15,30,8,1,13,46,99,111,111,107,105,101,95,109,111,100,97,108,2,1,224,93,167,92,8,1,11,46,99,112,45,111,118,101,114,108,97,121,2,1,217,217,112,203,8,1,11,46,103,100,112,114,80,111,108,105,99,121,2,1,205,227,12,157,8,1,14,46,104,101,97,100,101,114,45,110,111,116,105,99,101,2,1,254,117,218,15,8,1,12,46,108,99,107,45,119,114,97,112,112,101,114,2,1,148,196,146,130,8,1,7,46,108,111,97,100,101,114,2,1,208,194,145,184,8,1,20,46,109,45,119,114,97,112,112,101,114,45,98,103,45,45,103,108,97,115,115,2,2,7,102,46,22,173,167,252,169,8,1,13,46,115,116,105,99,107,121,45,97,108,101,114,116,2,1,160,255,25,65,8,1,7,46,122,45,49,48,53,48,2,1,93,91,222,36,0,1,89,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,116,111,112,58,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,32,119,105,100,116,104,58,32,49,48,48,37,59,32,104,101,105,103,104,116,58,32,49,48,48,37,59,32,122,45,105,110,100,101,120,58,32,49,48,52,48,59,34,93,2,1,57,196,145,195,16,1,15,35,71,68,80,82,45,99,111,110,116,97,105,110,101,114,2,1,152,48,94,79,16,1,9,35,97,99,99,101,112,116,95,113,2,1,206,55,237,133,16,1,14,35,97,99,99,101,115,115,95,99,111,111,107,105,101,2,1,205,15,11,148,16,1,7,35,97,103,114,101,101,67,2,1,238,37,52,6,16,1,13,35,97,103,114,101,101,100,66,97,110,110,101,114,2,1,140,195,201,187,16,1,9,35,98,103,95,112,111,112,117,112,2,1,169,130,170,219,16,1,20,35,98,105,115,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,2,1,211,194,123,41,16,1,4,35,99,98,98,2,1,51,46,85,4,16,1,6,35,99,111,111,107,98,2,1,137,152,187,165,16,1,10,35,99,111,111,107,105,101,95,112,112,2,1,240,164,215,44,16,1,30,35,99,111,111,107,105,101,115,99,114,105,112,116,95,105,110,106,101,99,116,101,100,95,119,114,97,112,112,101,114,2,1,22,25,239,15,16,1,18,35,105,110,102,111,45,98,111,116,116,45,109,101,115,115,97,103,101,2,1,242,234,54,64,16,1,10,35,105,110,102,111,114,109,101,114,50,2,1,101,154,139,235,16,1,23,35,106,115,85,115,101,80,101,114,115,111,110,97,108,68,97,116,97,66,108,111,99,107,2,1,10,233,86,162,16,1,4,35,107,117,107,2,1,179,109,212,109,16,1,21,35,109,101,115,115,97,103,101,45,98,108,111,99,107,45,99,111,111,107,105,101,2,1,247,61,29,148,16,1,12,35,109,111,100,97,108,99,111,111,107,105,101,2,1,7,123,134,23,16,1,4,35,110,116,102,2,1,45,240,130,159,16,1,8,35,111,118,101,114,108,97,121,2,1,143,201,40,111,16,1,25,35,112,101,114,115,111,110,97,108,45,100,97,116,97,45,112,114,111,99,101,115,115,105,110,103,2,1,174,255,59,82,16,1,25,35,112,111,108,105,99,121,66,108,111,99,107,70,111,114,70,105,114,115,116,86,105,115,105,116,2,2,167,112,86,200,241,220,72,19,16,1,19,35,112,111,108,105,99,121,67,111,110,102,105,114,109,97,116,105,111,110,2,1,61,110,114,166,16,1,4,35,112,111,112,2,3,29,96,52,228,71,167,51,251,105,157,56,125,16,1,12,35,112,111,112,112,117,112,45,102,111,111,100,2,1,219,94,132,237,16,1,14,35,112,114,105,118,97,99,121,80,111,108,105,99,121,2,1,103,142,232,145,16,1,24,35,114,101,99,111,109,109,101,110,100,45,116,101,99,104,45,115,110,97,99,107,98,97,114,2,1,51,52,136,67,16,1,21,35,114,103,115,45,109,97,105,110,45,99,111,110,116,101,120,116,45,98,97,114,2,1,167,112,109,148,16,1,17,35,117,110,105,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,13,20,190,53,16,1,26,35,117,115,101,95,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,45,98,108,111,99,107,2,1,103,26,21,68,8,1,6,46,67,98,104,95,99,2,1,167,112,109,48,8,1,42,46,67,111,111,107,105,101,65,99,99,101,112,116,80,111,112,117,112,45,109,111,100,117,108,101,95,95,99,111,110,116,97,105,110,101,114,95,85,110,100,80,70,2,1,16,165,88,115,8,1,40,46,67,111,111,107,105,101,65,108,108,111,119,97,110,99,101,95,99,111,111,107,105,101,115,65,108,108,111,119,97,110,99,101,95,95,55,56,104,65,79,2,1,52,168,98,59,8,1,39,46,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,95,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,95,95,49,120,113,65,45,2,1,12,7,229,37,8,1,30,46,67,111,111,107,105,101,73,110,102,111,114,109,101,114,95,119,114,97,112,112,101,114,95,95,68,85,114,118,57,2,1,163,49,94,159,8,1,27,46,67,111,111,107,105,101,80,111,112,117,112,95,111,118,101,114,108,97,121,95,95,49,67,88,110,86,2,1,101,184,215,251,8,1,26,46,67,111,111,107,105,101,87,97,114,110,105,110,103,95,114,111,111,116,95,95,72,121,115,108,109,2,1,66,249,207,91,8,1,32,46,67,111,111,107,105,101,87,105,110,100,111,119,115,116,121,108,101,95,95,98,108,111,99,107,45,45,49,105,88,102,113,2,1,130,237,201,119,8,1,25,46,67,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,95,95,100,48,80,70,84,2,1,51,64,39,91,8,1,22,46,71,68,80,82,80,97,110,101,108,45,109,111,100,117,108,101,45,114,111,111,116,2,1,109,200,218,37,8,1,6,46,71,117,119,110,71,2,1,214,194,142,210,8,1,22,46,72,53,67,109,122,98,55,118,108,99,49,81,50,56,117,119,52,108,45,66,118,2,2,8,63,210,45,133,39,237,98,8,1,6,46,74,101,53,56,102,2,1,122,44,161,71,8,1,25,46,77,117,105,65,108,101,114,116,45,115,116,97,110,100,97,114,100,83,117,99,99,101,115,115,2,1,167,112,52,170,8,1,33,46,78,111,116,105,102,105,99,97,116,105,111,110,67,111,111,107,105,101,95,99,111,111,107,105,101,95,95,49,106,100,66,120,2,1,56,148,7,61,8,1,20,46,80,101,114,115,111,110,97,108,68,97,116,97,67,111,110,102,105,114,109,2,1,48,149,154,145,8,1,25,46,84,111,97,115,116,82,111,111,116,95,119,114,97,112,112,101,114,95,95,80,70,76,71,109,2,1,167,112,112,124,8,1,26,46,84,111,97,115,116,105,102,121,95,95,116,111,97,115,116,45,99,111,110,116,97,105,110,101,114,2,1,51,47,175,93,8,1,2,46,88,2,1,247,60,242,5,8,1,6,46,90,117,101,101,65,2,1,101,150,144,158,8,1,6,46,95,49,81,71,110,2,1,200,96,90,252,8,1,7,46,95,49,105,117,108,110,2,1,122,44,161,71,8,1,8,46,95,49,122,104,122,66,109,2,1,120,228,202,108,8,1,7,46,95,50,48,88,50,98,2,1,167,30,158,213,8,1,7,46,95,50,71,99,73,122,2,1,180,29,12,174,8,1,7,46,95,50,81,85,53,57,2,1,186,64,85,93,8,1,7,46,95,50,114,45,54,102,2,1,214,194,142,210,8,1,7,46,95,51,49,51,67,102,2,1,20,233,155,115,8,1,10,46,95,51,117,57,106,113,104,81,86,2,1,20,244,70,0,8,1,9,46,95,103,84,105,56,76,56,107,2,1,106,7,109,137,8,1,8,46,95,110,108,110,105,105,117,2,2,48,221,11,109,51,63,138,177,8,1,10,46,97,45,119,97,114,110,105,110,103,2,1,215,191,75,29,8,1,7,46,97,99,99,101,112,116,2,1,14,90,194,89,8,1,21,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,112,111,112,117,112,2,1,143,120,187,210,8,1,14,46,97,99,99,101,115,115,45,99,111,111,107,105,101,2,1,102,5,127,112,8,1,6,46,97,102,87,73,88,2,1,180,29,12,174,8,1,20,46,97,103,114,101,101,109,101,110,116,45,115,117,98,115,116,114,97,116,101,2,1,191,37,60,205,8,1,17,46,97,108,101,114,116,45,99,111,109,112,108,105,97,110,99,101,2,1,249,176,221,47,8,1,18,46,97,108,101,114,116,45,102,105,114,115,116,45,117,115,97,103,101,2,1,199,160,176,171,8,1,14,46,97,108,101,114,116,45,109,101,115,115,97,103,101,2,1,201,237,166,215,8,1,16,46,97,110,110,111,117,110,99,101,45,99,111,111,107,105,101,2,1,213,121,169,214,8,1,13,46,97,112,112,114,105,115,101,79,117,116,101,114,2,1,248,172,104,130,8,1,15,46,97,112,112,114,105,115,101,79,118,101,114,108,97,121,2,1,248,172,104,130,8,1,7,46,98,45,99,111,111,107,2,1,87,56,236,85,8,1,15,46,98,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,103,16,207,55,8,1,8,46,98,45,112,111,112,117,112,2,1,198,97,101,205,8,1,8,46,98,108,111,99,107,101,114,2,1,69,157,21,27,8,1,3,46,98,110,2,1,247,60,242,5,8,1,15,46,98,111,116,116,111,109,45,109,101,115,115,97,103,101,2,1,216,123,179,178,8,1,20,46,98,111,116,116,111,109,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,51,49,233,234,8,1,13,46,98,111,116,116,111,109,45,112,111,112,117,112,2,2,172,72,22,208,239,45,102,30,8,1,21,46,98,111,116,116,111,109,95,95,99,111,111,107,105,101,95,98,108,111,99,107,2,1,151,127,50,79,8,1,12,46,98,114,97,118,101,95,112,111,112,117,112,2,1,106,241,129,53,8,1,8,46,99,45,109,111,100,97,108,2,1,254,204,196,169,8,1,32,46,99,45,110,111,116,105,99,101,115,32,62,32,46,104,97,115,66,117,116,116,111,110,46,99,45,110,111,116,105,99,101,2,1,101,7,185,99,8,1,7,46,99,67,80,105,77,70,2,1,101,150,144,158,8,1,16,46,99,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,43,187,88,32,8,1,13,46,99,104,101,99,107,95,99,111,111,107,105,101,2,1,175,243,232,232,8,1,9,46,99,109,45,109,95,99,45,119,2,1,248,200,222,177,8,1,9,46,99,111,110,102,102,111,114,109,2,1,125,99,55,152,8,1,16,46,99,111,110,102,105,100,101,110,116,97,108,73,110,102,111,2,1,129,217,134,240,8,1,9,46,99,111,111,107,45,119,101,98,2,1,103,59,165,204,8,1,11,46,99,111,111,107,95,76,70,80,110,75,2,1,102,125,182,54,8,1,6,46,99,111,111,107,101,2,1,102,67,104,121,8,1,18,46,99,111,111,107,105,101,45,97,108,101,114,116,45,115,104,111,119,2,1,69,157,21,27,8,1,30,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,45,119,114,97,112,2,1,49,56,167,60,8,1,19,46,99,111,111,107,105,101,45,114,111,111,116,45,45,51,45,48,45,51,2,1,107,40,254,70,8,1,18,46,99,111,111,107,105,101,45,115,105,116,101,45,97,108,101,114,116,2,1,248,138,244,45,8,1,14,46,99,111,111,107,105,101,67,111,110,102,105,114,109,2,1,136,78,140,10,8,1,11,46,99,111,111,107,105,101,95,95,105,110,2,1,209,228,254,210,8,1,13,46,99,111,111,107,105,101,95,95,111,112,101,110,2,1,103,253,173,153,8,1,14,46,99,111,111,107,105,101,95,95,113,54,98,78,112,2,1,207,108,225,4,8,1,19,46,99,111,111,107,105,101,95,105,110,110,101,114,95,49,118,107,87,106,2,1,51,63,241,217,8,1,26,46,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,95,119,114,97,112,2,1,209,231,207,127,8,1,17,46,99,111,111,107,105,101,95,111,117,116,101,114,95,100,105,118,2,1,179,64,193,253,8,1,24,46,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,97,108,101,114,116,2,1,177,21,18,137,8,1,37,46,99,111,111,107,105,101,115,77,101,115,115,97,103,101,95,99,111,111,107,105,101,115,109,101,115,115,97,103,101,95,95,106,65,70,110,111,2,1,2,185,100,120,8,1,13,46,99,111,111,107,105,101,115,77,111,100,97,108,2,1,167,112,24,25,8,1,16,46,99,111,112,121,114,105,103,104,116,95,102,105,120,101,100,2,1,23,80,254,209,8,1,4,46,99,111,119,2,2,131,149,116,72,158,228,98,146,8,1,6,46,99,113,66,114,78,2,1,28,20,96,241,8,1,8,46,99,117,99,104,101,99,107,2,1,12,97,20,60,8,1,15,46,99,117,115,116,111,109,95,109,101,115,115,97,103,101,2,1,110,223,200,125,8,1,13,46,100,97,110,103,101,110,45,108,97,98,108,101,2,1,51,61,55,159,8,1,6,46,100,101,115,99,108,2,1,53,65,58,31,8,1,7,46,100,105,97,108,111,103,2,1,10,243,230,222,8,1,19,46,100,105,115,99,108,97,105,109,101,114,95,95,95,119,56,88,71,85,2,1,51,56,13,25,8,1,10,46,100,105,115,99,108,97,109,101,114,2,3,51,53,64,177,104,29,18,77,167,111,247,197,8,1,7,46,100,105,118,49,53,50,2,1,58,239,127,113,8,1,17,46,100,110,81,65,90,110,46,115,99,45,105,70,77,65,111,73,2,1,50,207,33,121,8,1,10,46,101,49,110,98,115,105,57,108,48,2,1,176,216,225,126,8,1,40,46,101,117,45,99,111,111,107,105,101,45,112,111,112,117,112,45,109,111,100,117,108,101,95,95,101,117,95,99,111,111,107,105,101,95,112,111,112,117,112,2,1,175,194,204,43,8,1,7,46,102,84,113,84,74,107,2,13,63,72,163,17,63,205,16,93,81,44,98,27,102,168,12,64,102,241,217,98,109,32,161,150,111,21,88,204,193,255,135,210,228,51,248,175,232,217,131,125,236,96,58,201,241,128,92,236,244,86,210,155,8,1,21,46,102,105,120,101,100,45,98,108,111,99,107,95,95,99,111,111,107,105,101,115,2,1,160,224,142,212,8,1,15,46,102,111,111,98,97,114,45,119,114,97,112,112,101,114,2,1,102,79,148,156,8,1,13,46,102,111,111,116,101,114,32,126,32,46,99,99,2,1,104,215,89,253,8,1,24,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,2,1,47,114,200,87,8,1,21,46,102,111,111,116,101,114,45,112,101,114,115,111,110,97,108,45,100,97,116,97,2,1,80,245,49,199,8,1,7,46,103,65,72,76,88,66,2,1,80,76,25,170,8,1,7,46,103,72,85,85,72,117,2,1,49,119,40,137,8,1,10,46,103,100,112,114,45,114,111,111,116,2,2,118,255,236,195,148,196,116,43,8,1,3,46,104,55,2,1,51,52,94,82,8,1,17,46,105,110,102,111,45,99,111,111,107,105,101,45,117,115,101,115,2,1,102,204,249,8,8,1,7,46,105,110,102,111,114,109,2,1,103,206,69,182,8,1,12,46,105,110,102,111,114,109,97,116,105,111,110,2,1,35,191,205,35,8,1,13,46,105,115,45,102,105,120,101,100,45,98,111,120,2,1,192,31,186,185,8,1,23,46,105,115,45,104,101,97,100,101,114,45,109,101,115,115,97,103,101,45,100,111,99,107,2,1,167,112,0,68,8,1,15,46,105,115,45,109,101,115,115,97,103,101,45,112,112,100,2,1,167,112,76,60,8,1,10,46,106,115,95,99,111,111,107,105,101,2,1,77,89,37,140,8,1,7,46,107,89,83,114,113,90,2,1,101,150,144,158,8,1,24,46,108,101,112,111,112,117,112,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,52,158,235,232,8,1,22,46,108,101,112,111,112,117,112,45,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,52,158,235,232,8,1,20,46,109,45,119,114,97,112,112,101,114,45,98,103,45,45,103,108,97,115,115,2,27,2,180,84,24,7,104,221,108,13,90,189,225,16,169,108,187,17,64,133,230,20,109,12,195,22,143,202,210,22,249,38,46,42,34,240,221,51,107,35,241,52,120,112,45,62,42,105,222,73,9,212,7,74,177,64,209,82,243,227,220,91,243,201,224,103,112,134,161,105,43,70,53,123,210,106,110,136,160,100,227,149,206,136,212,166,238,217,247,167,86,108,199,176,36,43,23,197,92,70,89,223,169,132,68,255,118,193,165,8,1,15,46,109,67,83,66,95,99,111,110,116,97,105,110,101,114,2,1,102,182,42,178,8,1,26,46,109,97,105,110,45,117,115,101,114,45,99,111,110,115,101,110,116,45,114,101,113,117,101,115,116,2,1,160,220,17,229,8,1,16,46,109,97,114,107,101,116,105,110,103,45,112,111,112,117,112,2,1,123,76,61,86,8,1,8,46,109,101,115,115,97,103,101,2,1,148,181,140,201,8,1,14,46,109,101,115,115,97,103,101,45,97,108,101,114,116,2,4,26,161,19,95,35,250,138,138,91,230,188,175,254,204,196,169,8,1,6,46,109,111,100,97,108,2,3,17,246,69,92,118,10,68,37,167,25,218,90,8,1,25,46,109,111,100,97,108,67,111,111,107,105,101,115,95,114,111,111,116,95,95,51,53,54,81,45,2,1,51,53,40,219,8,1,23,46,109,111,100,97,108,95,112,111,112,117,112,95,115,101,115,115,105,100,95,98,111,120,2,1,254,54,6,20,8,1,9,46,109,115,103,45,116,101,120,116,2,1,102,246,104,121,8,1,3,46,110,75,2,1,73,95,179,32,8,1,14,46,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,174,148,92,32,8,1,24,46,110,111,116,105,102,105,99,97,116,105,111,110,115,45,99,111,110,116,97,105,110,101,114,2,1,62,11,90,113,8,1,11,46,110,111,116,105,102,121,45,98,97,114,2,1,180,29,12,174,8,1,25,46,112,97,103,101,32,62,32,91,99,108,97,115,115,42,61,34,119,105,100,103,101,116,34,93,2,2,214,100,3,200,215,90,181,231,8,1,26,46,112,97,103,101,45,102,111,111,116,101,114,95,95,112,111,112,117,112,45,99,111,111,107,105,101,2,1,51,105,132,198,8,1,14,46,112,97,110,101,108,45,119,97,114,110,105,110,103,2,1,47,223,117,90,8,1,13,46,112,97,110,101,108,95,49,53,50,95,119,112,2,1,149,171,248,16,8,1,8,46,112,103,115,45,116,111,112,2,1,1,219,72,186,8,1,14,46,112,108,97,116,101,95,95,95,80,52,88,111,103,2,1,216,123,179,178,8,1,13,46,112,111,108,105,99,121,45,112,111,112,117,112,2,2,12,55,62,131,51,52,188,99,8,1,13,46,112,111,108,105,99,121,95,112,111,112,117,112,2,1,251,186,107,117,8,1,9,46,112,111,108,105,116,105,99,97,2,1,58,31,151,68,8,1,13,46,112,111,112,117,112,45,98,97,110,110,101,114,2,1,102,83,223,169,8,1,12,46,112,111,112,117,112,95,52,121,54,50,56,2,1,44,155,32,129,8,1,14,46,112,111,112,117,112,95,119,114,97,112,112,101,114,2,1,103,222,48,230,8,1,14,46,112,114,105,118,97,99,121,45,98,108,111,99,107,2,1,244,153,91,48,8,1,15,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,2,1,101,32,23,195,8,1,5,46,112,114,119,105,2,1,2,211,171,114,8,1,8,46,113,97,45,103,100,112,114,2,1,148,72,101,180,8,1,27,46,114,45,99,111,111,107,105,101,45,112,114,111,109,112,116,95,95,99,111,110,116,97,105,110,101,114,2,1,26,235,65,60,8,1,24,46,115,95,95,121,50,103,106,78,105,73,83,48,111,49,82,65,95,53,69,98,110,107,119,2,6,4,247,16,137,52,40,24,47,85,93,27,102,118,35,127,217,165,215,213,118,169,62,14,157,8,1,13,46,115,97,109,112,108,101,45,112,111,112,117,112,2,1,68,209,39,77,8,1,23,46,115,98,105,115,114,117,45,67,111,111,107,105,101,65,103,114,101,101,109,101,110,116,2,1,51,63,137,185,8,1,13,46,115,99,45,49,56,111,108,115,111,51,45,48,2,1,148,182,101,194,8,1,10,46,115,99,45,119,105,100,103,101,116,2,1,188,198,204,74,8,1,48,46,115,104,97,114,101,100,45,99,111,109,112,111,110,101,110,116,115,45,67,111,111,107,105,101,115,65,103,114,101,101,109,101,110,116,45,45,114,111,111,116,45,45,50,73,78,106,77,2,1,64,217,96,75,8,1,12,46,115,104,111,119,45,99,111,111,107,105,101,2,1,224,178,216,225,8,1,14,46,115,110,111,119,100,105,118,45,109,111,100,97,108,2,1,141,81,180,32,8,1,13,46,115,112,101,99,105,97,108,65,108,101,114,116,2,1,61,174,21,163,8,1,16,46,115,112,117,45,98,111,116,116,111,109,45,108,101,102,116,2,1,102,82,132,218,8,1,18,46,115,116,112,108,95,99,111,111,107,105,101,115,95,119,114,97,112,2,1,151,54,211,86,8,1,18,46,115,116,121,108,101,95,95,100,105,115,99,108,97,105,109,101,114,2,1,51,60,114,158,8,1,37,46,115,116,121,108,101,115,45,109,111,100,117,108,101,95,95,99,111,111,107,105,101,115,87,97,114,110,105,110,103,45,45,50,109,102,72,67,2,1,179,98,234,241,8,1,24,46,115,116,121,108,101,115,95,99,111,110,116,97,105,110,101,114,95,95,49,111,98,77,53,2,1,51,52,252,166,8,1,10,46,116,45,105,45,97,103,114,101,101,2,2,90,98,172,78,232,217,142,166,8,1,5,46,116,54,53,55,2,2,47,76,109,67,47,254,209,101,8,1,12,46,116,101,114,109,115,45,112,111,112,117,112,2,1,104,211,3,86,8,1,14,46,116,111,97,115,116,45,109,101,115,115,97,103,101,2,1,192,25,205,112,8,1,12,46,116,111,112,45,109,101,115,115,97,103,101,2,1,172,187,179,87,8,1,11,46,117,105,45,112,110,111,116,105,102,121,2,1,50,239,179,210,8,1,9,46,117,107,45,112,97,110,101,108,2,1,101,155,191,219,8,1,29,46,117,115,101,114,45,100,97,116,97,45,112,114,111,99,101,115,115,105,110,103,45,119,114,97,112,112,101,114,2,1,141,154,8,134,8,1,14,46,117,115,105,110,103,45,99,111,111,107,105,101,115,2,1,10,155,119,249,8,1,22,46,118,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,94,118,179,144,8,1,18,46,118,45,100,105,97,108,111,103,95,95,99,111,110,116,101,110,116,2,1,35,98,234,55,8,1,14,46,119,101,108,99,111,109,101,45,112,111,112,117,112,2,1,122,79,207,234,8,1,6,46,119,116,45,99,98,2,1,25,55,48,222,8,1,7,46,121,45,103,100,112,114,2,1,215,78,216,189,8,1,7,46,122,97,108,117,112,97,2,1,13,143,80,140,0,1,24,91,99,108,97,115,115,94,61,34,65,99,99,101,112,116,67,111,111,107,105,101,95,34,93,2,1,167,112,12,194,0,1,26,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,65,103,114,101,101,109,101,110,116,34,93,2,1,233,240,134,253,0,1,20,91,99,108,97,115,115,94,61,34,102,99,119,45,119,114,97,112,45,34,93,2,1,126,222,140,222,0,1,38,91,99,108,97,115,115,94,61,34,115,116,121,108,101,115,95,76,97,121,111,117,116,95,95,99,111,111,107,105,101,80,97,110,101,108,95,34,93,2,1,136,105,126,74,0,1,38,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,84,101,120,116,34,93,2,1,247,60,242,5,0,1,45,91,115,116,121,108,101,94,61,34,116,101,120,116,45,97,108,105,103,110,58,32,108,101,102,116,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,34,93,2,1,15,88,218,210,0,1,18,97,112,112,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,2,1,136,53,110,71,0,1,36,100,105,118,91,99,108,97,115,115,42,61,34,115,116,121,108,101,100,95,95,67,111,111,107,105,101,87,114,97,112,112,101,114,45,34,93,2,1,107,7,42,33,0,1,33,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,65,99,99,101,112,116,66,97,110,110,101,114,95,34,93,2,1,49,119,40,137,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,73,110,102,111,114,109,101,114,95,34,93,2,1,122,44,161,71,0,1,32,100,105,118,91,99,108,97,115,115,94,61,34,80,114,111,118,105,100,101,114,95,99,111,110,116,97,105,110,101,114,34,93,2,1,74,54,146,230,0,1,38,100,105,118,91,99,108,97,115,115,94,61,34,83,110,111,119,80,114,105,118,97,99,121,80,111,108,105,99,121,66,97,110,110,101,114,95,34,93,2,1,137,238,238,36,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,109,111,100,97,108,67,111,111,107,105,101,115,95,34,93,2,1,51,53,40,219,0,1,41,100,105,118,91,100,97,116,97,45,115,116,111,114,97,103,101,45,105,116,101,109,94,61,34,116,56,56,54,99,111,111,107,105,101,110,97,109,101,95,34,93,2,1,239,14,111,7,0,1,41,100,105,118,91,100,97,116,97,45,115,116,111,114,97,103,101,45,105,116,101,109,94,61,34,116,56,56,55,99,111,111,107,105,101,110,97,109,101,95,34,93,2,1,65,11,60,58,0,1,37,100,105,118,91,100,97,116,97,45,116,101,115,116,45,105,100,61,34,99,111,111,107,105,101,65,99,99,101,112,116,80,111,112,117,112,34,93,2,1,16,165,88,115,0,1,55,100,105,118,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,51,99,100,59,32,99,111,108,111,114,58,32,35,56,53,54,52,48,52,59,34,93,2,1,103,112,217,27,0,1,43,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,112,120,59,34,93,2,1,248,143,165,16,0,1,6,102,111,111,116,101,114,2,1,181,78,231,95,0,1,24,109,118,105,100,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,207,134,188,214,0,1,13,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,54,217,96,74,0,1,12,117,105,45,119,101,98,45,97,108,101,114,116,2,1,51,52,92,121,16,1,8,35,107,111,108,97,99,105,99,2,1,68,102,62,26,16,1,16,35,107,117,107,105,95,117,112,111,122,111,114,101,110,106,101,2,1,82,31,82,116,16,1,24,35,115,117,98,115,99,114,105,112,116,105,111,110,80,111,112,117,112,66,111,116,116,111,109,2,1,122,244,15,179,8,1,24,46,77,117,105,65,112,112,66,97,114,45,112,111,115,105,116,105,111,110,70,105,120,101,100,2,1,230,226,141,121,8,1,7,46,99,79,77,75,112,118,2,1,214,227,95,102,8,1,10,46,101,49,103,98,49,56,106,111,48,2,1,122,31,100,52,8,1,7,46,105,65,88,67,73,70,2,1,214,227,95,102,8,1,13,46,105,116,101,109,115,87,114,97,112,112,101,114,2,1,122,31,100,52,8,1,7,46,107,100,100,88,99,74,2,1,214,227,95,102,8,1,11,46,112,111,112,45,117,112,45,115,114,98,2,1,88,150,120,42,8,1,16,46,115,108,105,100,101,45,105,110,45,98,111,116,116,111,109,2,1,197,179,186,30,8,1,8,46,116,49,45,103,100,112,114,2,1,193,16,181,26,0,1,40,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,112,120,59,34,93,2,1,202,141,3,243,16,1,17,35,73,54,45,99,111,111,107,105,101,67,111,110,115,101,110,116,2,1,101,119,246,9,16,1,5,35,99,98,97,114,2,1,60,125,133,223,16,1,18,35,105,100,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,11,211,87,218,16,1,8,35,105,110,102,111,67,111,111,2,1,105,24,152,21,16,1,12,35,115,101,116,45,119,105,110,45,99,111,111,2,1,208,27,122,41,8,1,28,46,97,108,107,111,115,104,111,112,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,98,97,114,2,1,12,10,129,132,8,1,14,46,99,99,95,100,105,115,99,108,97,105,109,101,114,2,1,39,189,54,44,8,1,6,46,99,107,115,45,109,2,1,123,85,21,220,8,1,10,46,99,109,45,45,112,97,110,101,108,2,1,49,50,22,225,8,1,12,46,99,111,111,107,105,101,66,97,110,101,114,2,1,148,20,83,169,8,1,7,46,99,115,88,77,73,115,2,1,45,93,167,51,8,1,3,46,101,117,2,1,45,174,16,97,8,1,10,46,102,109,45,116,111,97,115,116,83,2,1,99,64,173,41,8,1,19,46,106,115,45,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,2,1,118,117,98,60,8,1,25,46,106,115,45,99,111,111,107,105,101,115,45,115,101,116,116,105,110,103,45,109,111,100,97,108,2,1,118,117,98,60,8,1,12,46,109,112,112,45,105,115,45,111,112,101,110,2,1,212,229,170,92,8,1,30,46,110,97,118,98,97,114,45,102,105,120,101,100,45,116,111,112,32,62,32,46,99,111,110,116,97,105,110,101,114,2,1,125,26,7,62,8,1,16,46,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,2,1,139,206,150,215,8,1,13,46,112,45,99,111,111,107,105,101,45,98,97,114,2,1,80,236,165,69,8,1,9,46,112,100,49,48,45,105,110,103,2,1,30,172,185,249,8,1,25,46,112,111,115,105,116,105,111,110,45,102,105,120,101,100,46,111,118,46,115,104,97,100,111,119,2,1,95,25,9,170,8,1,18,46,115,101,116,45,119,105,110,45,99,111,111,45,112,111,112,117,112,2,1,212,229,168,64,8,1,9,46,119,95,110,111,116,105,99,101,2,1,206,100,93,193,0,1,69,91,115,114,99,61,34,104,116,116,112,115,58,47,47,115,116,97,116,105,99,46,112,111,115,116,97,46,115,107,47,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,115,47,100,105,97,108,111,103,47,115,107,47,105,110,100,101,120,46,104,116,109,108,34,93,2,1,126,160,122,76,0,1,40,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,112,120,59,34,93,2,1,128,95,44,102,0,1,31,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,108,97,121,111,117,116,45,112,111,112,117,112,34,93,2,1,139,206,150,215,0,1,54,100,105,118,91,115,116,121,108,101,94,61,34,112,97,100,100,105,110,103,45,116,111,112,58,32,49,48,112,120,59,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,49,48,112,120,59,34,93,2,1,233,213,149,153,0,1,41,100,105,118,91,115,116,121,108,101,94,61,34,119,105,100,116,104,58,32,49,48,48,37,59,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,34,93,2,1,142,224,200,184,16,1,8,35,99,99,45,110,111,116,101,2,1,87,207,133,186,16,1,21,35,99,100,45,109,111,100,117,108,101,45,109,111,100,97,108,45,109,97,105,110,2,1,5,192,133,48,16,1,11,35,99,107,45,111,118,101,114,108,97,121,2,1,196,117,196,208,16,1,20,35,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,87,114,97,112,2,1,206,58,185,194,16,1,13,35,99,111,111,107,105,101,95,112,111,112,117,112,2,1,27,100,10,122,16,1,8,35,103,114,97,121,79,117,116,2,1,94,49,20,3,16,1,13,35,112,114,101,108,111,97,100,95,111,118,101,114,2,1,206,58,185,194,8,1,18,46,95,49,122,66,80,53,114,117,121,109,99,51,56,78,68,55,66,2,1,56,182,215,105,8,1,11,46,99,99,45,119,114,97,112,112,101,114,2,1,247,192,209,26,8,1,11,46,99,100,45,111,118,101,114,108,97,121,2,1,5,192,133,48,8,1,11,46,99,111,111,107,105,101,67,111,110,116,2,1,55,16,179,143,8,1,27,46,99,111,111,107,105,101,95,97,103,114,101,101,109,101,110,116,95,99,111,110,116,97,105,110,101,114,2,1,87,5,11,138,8,1,12,46,99,115,115,45,49,101,54,111,122,106,99,2,1,111,242,159,25,8,1,5,46,100,97,114,107,2,1,79,57,36,106,8,1,4,46,102,102,102,2,3,108,88,113,176,117,41,255,15,124,94,131,51,8,1,5,46,107,117,107,105,2,1,206,133,11,19,8,1,11,46,109,100,45,99,111,111,107,105,101,115,2,2,28,122,109,40,47,253,26,183,8,1,11,46,109,100,45,111,118,101,114,108,97,121,2,2,28,122,109,40,47,253,26,183,8,1,15,46,109,111,100,97,108,115,45,111,118,101,114,108,97,121,2,1,149,228,165,37,8,1,12,46,112,111,108,112,114,111,115,111,106,110,111,2,1,14,6,188,254,0,1,38,91,115,116,121,108,101,94,61,34,109,97,114,103,105,110,58,49,48,37,32,97,117,116,111,59,32,119,105,100,116,104,58,56,48,37,59,34,93,2,1,206,135,239,196,0,1,35,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,32,116,111,112,58,48,112,120,59,34,93,2,1,206,135,239,196,0,1,22,98,111,100,121,32,62,32,46,117,114,101,106,97,110,106,101,99,101,110,116,101,114,2,1,110,159,56,170,0,1,74,100,105,118,91,115,116,121,108,101,42,61,34,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,112,120,32,45,53,112,120,32,49,52,112,120,32,45,52,112,120,32,114,103,98,97,34,93,2,1,139,236,120,88,0,1,17,116,114,32,62,32,46,110,97,112,105,115,110,97,110,111,103,105,2,1,110,159,56,170,0,1,20,116,114,32,62,32,46,117,114,101,106,97,110,106,101,99,101,110,116,101,114,2,1,110,159,56,170,0,1,7,116,114,32,62,32,116,100,2,1,52,34,49,199,16,1,12,35,73,110,102,111,114,109,97,99,105,111,110,2,1,190,6,229,49,16,1,11,35,87,105,110,100,111,119,76,111,97,100,2,1,16,125,145,151,16,1,5,35,95,95,98,103,2,1,80,185,243,238,16,1,10,35,95,95,99,111,111,107,105,101,115,2,1,80,185,243,238,16,1,21,35,97,98,100,109,45,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,2,1,138,96,120,191,16,1,19,35,97,99,99,101,112,116,97,116,105,111,110,67,77,80,87,97,108,108,2,1,194,197,253,186,16,1,16,35,97,99,101,112,116,97,114,45,99,111,111,107,105,101,115,2,1,218,219,82,147,16,1,19,35,97,100,97,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,172,199,127,40,16,1,11,35,97,100,100,105,116,105,111,110,97,108,2,1,35,84,210,234,16,1,8,35,97,110,117,110,99,105,111,2,1,84,199,135,218,16,1,22,35,97,114,115,121,115,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,2,1,187,172,89,129,16,1,6,35,97,118,105,115,111,2,8,9,131,168,29,14,133,63,47,20,236,123,79,21,136,125,63,70,189,0,86,77,166,55,54,143,130,111,107,220,255,51,134,16,1,10,35,97,118,105,115,111,95,111,102,102,2,1,222,0,213,94,16,1,10,35,97,118,105,115,111,108,115,115,105,2,1,143,53,238,71,16,1,10,35,97,118,105,115,111,115,117,115,99,2,1,15,72,196,219,16,1,6,35,98,97,114,114,97,2,2,68,160,196,1,209,107,169,63,16,1,22,35,98,97,114,114,97,95,109,101,110,115,97,106,101,95,99,111,111,107,105,101,115,2,1,86,189,11,244,16,1,22,35,98,115,45,103,100,112,114,45,99,111,111,107,105,101,115,45,109,111,100,97,108,2,1,172,134,124,44,16,1,20,35,99,45,99,111,111,107,105,101,115,95,95,109,111,100,97,108,98,97,114,2,1,207,23,206,70,16,1,10,35,99,45,109,101,115,115,97,103,101,2,1,242,88,19,184,16,1,9,35,99,45,110,111,116,105,99,101,2,1,80,213,160,171,16,1,10,35,99,97,95,98,97,110,110,101,114,2,1,14,19,28,211,16,1,9,35,99,97,102,77,111,100,97,108,2,1,38,157,59,188,16,1,13,35,99,97,112,97,95,103,97,108,108,101,116,97,2,1,15,205,78,128,16,1,22,35,99,111,110,102,105,103,117,114,97,99,105,111,110,95,99,111,111,107,105,101,115,2,1,64,72,21,132,16,1,27,35,99,111,110,115,101,110,116,77,111,100,101,68,105,97,108,111,103,67,111,110,116,97,105,110,101,114,2,1,79,120,117,209,16,1,17,35,99,111,110,116,97,105,110,101,114,45,115,99,114,101,101,110,2,1,160,35,228,169,16,1,18,35,99,111,110,116,97,105,110,101,114,95,111,112,97,99,105,116,121,2,3,105,144,136,58,121,29,45,71,206,185,134,178,16,1,5,35,99,111,111,107,2,1,102,210,30,230,16,1,12,35,99,111,111,107,105,101,45,97,114,101,97,2,1,31,0,78,35,16,1,19,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,97,103,101,2,1,234,231,178,189,16,1,22,35,99,111,111,107,105,101,45,119,114,97,112,112,101,114,45,111,98,106,101,116,111,2,1,9,209,234,53,16,1,10,35,99,111,111,107,105,101,84,111,112,2,1,237,21,48,76,16,1,15,35,99,111,111,107,105,101,95,98,108,111,99,107,101,114,2,1,47,37,96,230,16,1,10,35,99,111,111,107,105,101,98,97,114,2,1,38,208,165,6,16,1,12,35,99,111,111,107,105,101,115,45,105,107,105,2,1,98,20,206,86,16,1,26,35,99,111,111,107,105,101,115,67,111,110,102,105,103,117,114,97,116,105,111,110,77,111,100,97,108,2,1,38,157,173,124,16,1,22,35,99,111,111,107,105,101,115,95,99,111,110,102,105,103,117,114,97,116,105,111,110,2,1,109,18,28,142,16,1,18,35,99,115,95,105,110,102,111,114,109,97,116,105,111,110,66,97,114,2,1,105,150,199,231,16,1,19,35,100,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,2,1,42,225,55,237,16,1,10,35,100,97,114,107,108,97,121,101,114,2,1,209,250,2,218,16,1,11,35,100,105,118,67,111,110,115,101,110,116,2,1,126,17,96,76,16,1,18,35,101,99,108,45,99,111,110,116,97,105,110,101,114,45,98,111,120,2,1,168,157,119,180,16,1,6,35,102,98,45,99,100,2,1,102,11,138,185,16,1,11,35,102,111,110,100,111,97,118,105,115,111,2,7,9,131,168,29,14,133,63,47,20,236,123,79,77,166,55,54,77,209,28,229,143,130,111,107,220,255,51,134,16,1,24,35,102,111,110,100,111,116,114,97,110,115,112,97,114,101,110,99,105,97,45,103,114,105,115,2,1,112,73,232,230,16,1,4,35,104,105,100,2,1,194,196,253,9,16,1,8,35,104,121,108,95,99,111,111,2,1,176,101,124,32,16,1,11,35,105,116,114,111,95,111,112,97,99,111,2,1,48,28,76,177,16,1,11,35,105,116,114,111,95,112,111,112,117,112,2,1,48,28,76,177,16,1,15,35,108,97,112,117,116,97,112,111,108,105,116,105,99,97,2,1,108,45,118,81,16,1,13,35,108,101,103,97,108,67,111,111,107,105,101,115,2,1,219,253,69,148,16,1,4,35,108,101,121,2,1,125,164,141,56,16,1,9,35,108,111,112,100,95,111,102,102,2,1,188,113,232,3,16,1,9,35,108,111,112,100,103,100,100,100,2,2,107,145,149,90,136,231,171,116,16,1,11,35,109,101,115,115,97,103,101,98,97,114,2,1,180,89,40,136,16,1,30,35,109,111,100,97,108,45,99,111,111,107,105,101,115,45,50,48,50,49,45,104,111,114,105,122,111,110,116,97,108,2,1,66,198,134,223,16,1,15,35,109,111,100,97,108,67,111,110,116,97,105,110,101,114,2,1,65,79,26,144,16,1,12,35,109,111,100,97,108,67,111,111,107,105,101,2,1,57,168,48,141,16,1,13,35,110,111,116,105,102,105,99,97,116,105,111,110,2,1,125,136,37,144,16,1,9,35,111,118,101,114,98,111,120,51,2,14,5,118,252,91,25,152,222,189,78,132,221,10,78,206,224,187,81,80,184,49,93,47,245,212,93,190,42,145,129,68,174,2,137,104,70,0,149,78,137,116,149,170,68,160,152,196,109,225,163,3,52,249,180,142,22,185,16,1,13,35,112,97,103,101,45,111,118,101,114,108,97,121,2,1,49,201,170,182,16,1,23,35,112,100,99,99,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,2,1,49,78,149,254,16,1,14,35,112,100,99,99,45,109,111,100,97,108,45,98,103,2,1,54,184,198,189,16,1,8,35,112,111,108,67,111,111,107,2,1,89,4,239,137,16,1,3,35,112,112,2,1,151,213,159,140,16,1,14,35,113,76,116,101,109,112,79,118,101,114,108,97,121,2,1,205,155,165,79,16,1,13,35,115,116,97,116,105,99,45,99,111,118,101,114,2,1,202,104,138,143,16,1,15,35,115,121,115,116,101,109,45,109,101,115,115,97,103,101,2,1,189,138,92,190,16,1,19,35,116,105,109,101,115,45,108,101,103,97,108,45,110,111,116,105,99,101,2,1,19,196,252,217,16,1,21,35,117,99,97,95,112,111,112,117,112,95,98,97,99,107,103,114,111,117,110,100,2,1,163,3,120,252,16,1,14,35,119,112,45,99,111,111,107,105,101,45,112,114,111,2,1,122,244,94,26,16,1,18,35,122,121,108,107,95,97,118,105,115,111,99,111,111,107,105,101,115,2,1,190,35,12,38,8,1,5,46,67,67,48,53,2,1,103,1,194,57,8,1,8,46,67,79,79,75,73,69,83,2,1,127,30,210,214,8,1,25,46,67,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,71,101,110,101,114,97,108,2,1,192,221,86,235,8,1,29,46,70,108,111,97,116,105,110,103,66,111,120,101,115,67,111,110,116,97,105,110,101,114,66,111,116,116,111,109,2,1,43,44,54,168,8,1,9,46,75,111,108,97,99,105,107,121,2,1,86,238,180,31,8,1,19,46,77,84,77,45,98,97,110,110,101,114,45,99,111,111,107,105,101,115,2,1,61,29,141,235,8,1,8,46,80,114,105,118,97,99,121,2,2,137,209,70,117,192,144,196,193,8,1,19,46,95,99,111,110,116,97,105,110,101,114,95,49,112,109,48,114,95,49,2,1,209,148,127,210,8,1,14,46,97,106,97,120,45,112,114,111,103,114,101,115,115,2,1,163,3,7,58,8,1,19,46,97,108,101,114,116,95,95,109,115,103,45,87,114,97,112,112,101,114,2,1,31,208,80,211,8,1,12,46,98,97,110,110,101,114,45,98,111,100,121,2,1,160,47,103,150,8,1,6,46,98,97,114,114,97,2,1,140,15,95,109,8,1,13,46,98,97,114,114,97,67,111,111,107,105,101,115,2,1,54,155,234,145,8,1,38,46,98,97,115,105,99,45,45,100,114,97,119,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,97,114,45,110,111,116,105,99,101,2,1,13,92,44,151,8,1,58,46,98,97,115,105,99,45,45,100,114,97,119,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,97,114,45,110,111,116,105,99,101,45,45,112,97,103,101,45,99,111,110,116,101,110,116,45,108,97,121,101,114,2,1,13,92,44,151,8,1,14,46,98,97,115,105,99,76,105,103,104,116,98,111,120,2,1,2,113,241,185,8,1,10,46,98,103,45,99,111,111,107,105,101,2,1,174,26,113,133,8,1,11,46,98,103,45,111,118,101,114,108,97,121,2,1,44,52,3,17,8,1,9,46,98,103,95,112,111,112,117,112,2,2,70,74,192,160,205,29,23,185,8,1,13,46,98,108,117,114,45,99,111,111,107,105,101,115,2,1,232,15,198,247,8,1,8,46,99,45,109,111,100,97,108,2,1,203,139,70,229,8,1,8,46,99,45,112,111,112,117,112,2,1,72,8,97,187,8,1,7,46,99,84,87,66,104,80,2,1,46,75,201,234,8,1,6,46,99,95,49,50,56,2,4,32,205,30,166,41,77,187,113,89,69,35,235,139,83,232,32,8,1,23,46,99,99,111,111,107,105,101,112,111,112,117,112,119,114,97,112,98,97,110,110,101,114,2,1,127,196,230,91,8,1,9,46,99,109,45,112,111,112,117,112,2,2,58,74,205,103,149,208,187,137,8,1,16,46,99,109,45,119,112,45,99,111,110,116,97,105,110,101,114,2,1,120,42,143,151,8,1,13,46,99,111,110,115,101,110,116,66,111,120,101,115,2,1,143,123,106,92,8,1,21,46,99,111,111,107,105,101,45,99,111,110,102,105,103,117,114,97,116,105,111,110,2,1,17,213,100,203,8,1,16,46,99,111,111,107,105,101,66,111,120,95,51,48,86,56,98,2,1,126,1,98,126,8,1,18,46,99,111,111,107,105,101,115,45,97,117,116,104,111,114,105,122,101,2,1,209,148,127,210,8,1,22,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,2,34,78,177,223,171,10,228,69,8,1,18,46,99,111,111,107,105,101,115,106,115,114,45,98,97,110,110,101,114,2,1,176,149,13,147,8,1,12,46,99,112,77,97,105,110,80,97,110,101,108,2,1,214,99,169,207,8,1,17,46,99,117,114,116,97,105,110,95,108,105,103,104,116,98,111,120,2,1,122,115,189,172,8,1,7,46,100,76,121,109,82,107,2,1,5,139,187,137,8,1,12,46,100,97,114,107,45,102,105,108,116,101,114,2,1,44,50,143,104,8,1,13,46,100,97,116,97,45,112,114,105,118,97,99,121,2,1,122,128,196,147,8,1,7,46,100,107,112,121,106,79,2,1,5,139,187,137,8,1,5,46,100,114,111,112,2,1,187,172,89,129,8,1,7,46,101,72,115,78,87,66,2,1,14,194,220,197,8,1,8,46,101,110,99,97,98,101,122,2,1,27,16,91,74,8,1,7,46,102,107,79,100,83,89,2,1,172,79,88,196,8,1,14,46,102,111,111,116,101,114,95,95,116,101,114,109,115,2,1,100,66,221,239,8,1,10,46,102,117,101,45,109,111,100,97,108,2,1,217,188,32,138,8,1,19,46,102,117,101,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,217,188,32,138,8,1,12,46,102,117,108,108,79,112,97,99,105,116,121,2,1,209,115,132,250,8,1,11,46,102,117,115,105,111,110,45,114,111,119,2,1,247,128,152,22,8,1,8,46,103,104,45,105,110,102,111,2,1,254,170,31,79,8,1,17,46,103,108,111,98,97,108,45,115,116,97,116,101,109,101,110,116,2,1,162,111,37,118,8,1,12,46,103,108,111,119,45,98,97,110,110,101,114,2,1,120,193,28,90,8,1,5,46,104,105,100,101,2,1,62,165,120,38,8,1,25,46,105,97,109,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,109,111,100,97,108,2,1,111,112,61,232,8,1,34,46,105,97,109,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,111,112,61,232,8,1,10,46,105,110,102,111,95,112,114,105,118,2,1,249,77,114,156,8,1,7,46,105,114,75,74,89,106,2,1,172,79,88,196,8,1,5,46,106,115,115,49,2,1,45,71,111,199,8,1,7,46,106,115,115,50,54,56,2,1,63,198,48,249,8,1,6,46,106,115,115,52,53,2,1,241,195,103,180,8,1,10,46,107,116,104,45,116,111,97,115,116,2,1,81,14,41,167,8,1,17,46,109,99,101,82,111,119,45,45,114,101,108,97,116,105,118,101,2,1,178,24,96,60,8,1,22,46,109,99,110,84,101,109,112,108,97,116,101,80,97,103,101,66,97,110,110,101,114,2,1,50,191,86,108,8,1,7,46,109,102,112,45,98,103,2,1,52,0,85,100,8,1,9,46,109,102,112,45,119,114,97,112,2,1,52,0,85,100,8,1,41,46,109,111,98,105,108,101,45,117,110,100,101,114,115,105,122,101,100,45,117,112,112,101,114,46,109,111,98,105,108,101,45,102,111,114,99,101,104,105,100,101,2,1,230,231,3,96,8,1,13,46,109,111,100,97,108,45,97,118,105,115,111,115,2,1,162,101,167,14,8,1,18,46,109,111,100,97,108,45,99,111,110,100,105,99,105,111,110,101,115,2,1,52,119,212,112,8,1,15,46,109,111,100,97,108,115,45,119,114,97,112,112,101,114,2,1,199,94,44,38,8,1,8,46,109,111,115,116,114,97,114,2,1,157,255,101,37,8,1,13,46,110,111,109,97,45,112,114,105,118,97,99,121,2,1,7,204,5,194,8,1,18,46,110,111,116,105,102,105,99,97,116,105,111,110,45,115,117,98,115,2,1,3,0,244,66,8,1,9,46,110,111,116,105,102,105,110,111,2,1,216,132,253,237,8,1,7,46,110,111,116,105,102,121,2,1,52,43,39,229,8,1,19,46,111,120,121,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,117,191,131,90,8,1,4,46,112,103,99,2,1,32,206,82,220,8,1,27,46,112,111,114,116,108,101,116,45,99,111,111,107,105,101,115,45,108,97,121,111,117,116,45,115,101,116,2,1,129,73,113,236,8,1,24,46,113,67,111,111,107,105,101,65,110,105,109,97,99,105,111,110,69,110,116,114,97,100,97,2,1,188,121,15,58,8,1,13,46,114,101,45,83,104,97,114,101,100,67,109,112,2,1,23,151,71,169,8,1,13,46,114,101,118,101,97,108,45,109,111,100,97,108,2,1,177,160,127,222,8,1,15,46,114,101,118,101,97,108,45,111,118,101,114,108,97,121,2,1,48,250,53,189,8,1,21,46,115,99,45,54,98,55,53,51,51,51,49,45,48,46,102,85,84,86,113,78,2,1,185,80,85,100,8,1,6,46,115,105,112,111,49,2,1,183,17,6,111,8,1,20,46,115,116,105,99,107,121,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,54,26,83,59,8,1,23,46,115,116,121,108,101,115,95,115,110,97,99,107,98,97,114,95,95,51,105,66,84,98,2,1,191,183,99,187,8,1,18,46,115,117,105,45,84,99,102,70,105,114,115,116,76,97,121,101,114,2,2,38,51,33,34,95,233,19,219,8,1,13,46,115,117,112,101,114,99,111,111,107,105,101,115,2,1,97,188,20,90,8,1,15,46,115,118,101,108,116,101,45,49,117,53,113,53,57,97,2,1,209,148,127,210,8,1,13,46,116,111,97,115,116,45,98,111,116,116,111,109,2,1,146,130,235,192,8,1,11,46,116,111,112,45,104,101,97,100,101,114,2,1,121,136,188,182,8,1,7,46,116,111,112,66,97,114,2,1,163,4,94,26,8,1,13,46,116,117,115,115,45,99,111,111,107,105,101,115,2,1,115,76,22,193,8,1,18,46,117,105,45,100,105,97,108,111,103,45,98,117,116,116,111,110,115,2,1,121,73,98,151,8,1,11,46,117,114,103,101,110,116,45,109,115,103,2,1,23,13,221,227,8,1,14,46,118,109,45,45,99,111,110,116,97,105,110,101,114,2,3,34,78,177,223,66,68,220,55,171,10,228,69,8,1,12,46,118,109,45,45,111,118,101,114,108,97,121,2,2,34,78,177,223,171,10,228,69,0,1,36,91,97,114,105,97,45,108,97,98,101,108,61,34,67,111,111,107,105,101,32,115,101,116,116,105,110,103,115,32,112,97,110,101,108,34,93,2,1,241,195,103,180,0,1,32,91,100,97,116,97,45,116,111,97,115,116,61,34,102,95,99,111,111,107,105,101,115,95,97,99,101,112,116,101,100,34,93,2,1,107,101,58,158,0,1,19,97,51,54,48,45,99,111,111,107,105,101,115,45,97,100,118,105,99,101,2,1,254,224,214,240,0,1,18,97,112,112,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,2,1,44,174,232,197,0,1,15,98,111,100,121,32,62,32,46,99,97,106,97,116,120,116,2,1,50,28,190,48,0,1,21,98,111,100,121,32,62,32,100,105,118,91,105,100,93,91,99,108,97,115,115,93,2,2,107,82,121,91,171,16,156,34,0,1,108,100,105,118,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,108,101,102,116,58,48,59,116,111,112,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,122,45,105,110,100,101,120,58,57,57,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,48,46,51,41,34,93,2,1,1,118,224,3,0,1,22,100,119,45,103,108,111,98,97,108,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,32,194,113,206,0,1,18,119,99,45,99,111,111,107,105,101,115,45,109,97,110,97,103,101,114,2,1,146,9,150,180,0,1,27,97,112,112,45,110,111,116,105,102,105,99,97,116,105,111,110,115,45,99,111,110,116,97,105,110,101,114,2,1,236,22,167,42,8,1,13,46,115,104,111,119,66,97,99,107,100,114,111,112,2,1,247,239,188,91,8,1,12,46,115,104,111,119,67,111,110,115,101,110,116,2,1,247,239,188,91,8,1,16,46,102,99,45,99,111,110,115,101,110,116,45,114,111,111,116,2,1,207,84,32,220,8,1,10,46,102,117,101,45,109,111,100,97,108,2,1,12,248,183,214,8,1,19,46,102,117,101,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,12,248,183,214,8,1,17,46,112,111,112,117,112,66,97,114,114,97,67,111,111,107,105,101,2,1,142,61,183,121,8,1,9,46,112,111,112,117,112,95,98,103,2,1,231,61,232,182,16,1,16,35,67,111,111,107,105,101,115,83,101,116,116,105,110,103,115,2,2,153,128,57,181,169,49,96,194,16,1,11,35,97,112,112,114,111,118,101,98,111,120,2,1,185,252,193,167,16,1,22,35,99,98,99,107,70,117,108,108,115,99,114,101,101,110,66,108,111,99,107,101,114,2,1,239,195,118,128,16,1,22,35,99,98,99,107,99,104,97,110,103,101,104,111,108,100,101,114,70,105,114,115,116,2,1,239,195,118,128,16,1,12,35,99,111,111,99,107,105,101,105,110,102,111,2,1,86,29,134,215,16,1,11,35,99,111,111,107,105,101,109,103,109,116,2,1,13,240,138,185,16,1,12,35,99,111,111,107,105,101,109,111,100,97,108,2,1,229,211,159,34,16,1,18,35,101,112,45,99,111,111,107,105,101,45,99,111,110,99,101,110,116,2,6,17,170,12,169,33,76,177,141,76,162,9,117,111,142,47,179,120,199,95,90,242,0,224,50,16,1,29,35,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,111,118,101,114,108,97,121,2,1,218,98,25,127,16,1,23,35,103,101,116,67,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,2,1,190,204,87,237,16,1,6,35,103,108,97,115,115,2,1,185,252,193,167,16,1,11,35,106,115,45,99,109,45,99,108,97,119,2,1,133,248,1,223,16,1,9,35,107,97,107,114,117,116,97,110,2,1,244,98,199,145,16,1,28,35,109,98,95,109,111,100,117,108,101,115,95,112,111,112,117,112,115,95,67,111,110,116,97,105,110,101,114,2,2,138,148,166,199,240,138,122,114,16,1,8,35,111,118,101,114,108,97,121,2,1,244,99,28,105,16,1,33,35,115,99,104,105,98,115,116,101,100,45,100,97,116,97,45,99,111,110,116,114,111,108,108,101,114,45,115,116,105,99,107,121,2,1,244,98,208,142,16,1,10,35,115,105,116,101,102,108,97,115,104,2,1,142,78,97,36,16,1,8,35,116,111,112,45,98,97,114,2,1,154,255,223,180,16,1,16,35,119,114,97,112,112,101,114,45,100,120,45,99,111,107,105,2,1,97,30,23,114,16,1,2,35,121,2,1,172,70,118,243,8,1,6,46,70,67,83,86,99,2,1,234,237,235,189,8,1,10,46,79,102,53,50,97,97,99,98,56,2,1,193,125,236,65,8,1,37,46,83,99,104,105,98,115,116,101,100,66,97,110,110,101,114,95,95,87,114,97,112,112,101,114,45,115,99,45,101,108,108,55,104,105,45,48,2,1,206,145,171,231,8,1,6,46,83,110,97,99,107,2,1,245,94,74,107,8,1,8,46,95,49,106,117,114,74,105,2,1,106,203,233,1,8,1,24,46,95,50,73,112,54,102,57,74,99,112,101,95,101,100,67,111,101,49,84,115,50,109,77,2,1,234,237,234,196,8,1,10,46,97,108,101,114,116,45,98,111,120,2,1,123,1,3,200,8,1,10,46,97,108,101,114,116,87,114,97,112,2,1,21,216,49,71,8,1,7,46,98,69,82,97,115,77,2,1,91,62,56,100,8,1,20,46,98,97,107,101,100,45,100,111,117,103,104,45,99,111,110,115,101,110,116,2,1,87,183,168,67,8,1,10,46,98,108,99,107,45,105,110,102,111,2,1,234,237,237,55,8,1,10,46,99,45,109,101,115,115,97,103,101,2,1,228,36,80,177,8,1,11,46,99,45,109,101,115,115,97,103,101,115,2,1,25,193,184,40,8,1,4,46,99,45,119,2,1,220,32,147,152,8,1,9,46,99,49,104,115,117,105,105,54,2,1,82,81,137,85,8,1,8,46,99,99,45,112,97,103,101,2,1,230,54,121,172,8,1,9,46,99,99,110,116,45,97,112,112,2,1,137,128,148,66,0,1,33,46,99,111,109,112,111,110,101,110,116,92,58,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,2,1,6,137,79,101,8,1,17,46,99,111,110,115,101,110,116,45,98,97,99,107,100,114,111,112,2,1,244,98,237,59,8,1,16,46,99,111,110,115,101,110,116,45,104,97,110,100,108,101,114,2,1,190,141,104,238,8,1,19,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,102,111,114,109,2,1,27,210,24,236,8,1,18,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,118,2,1,82,70,246,212,8,1,14,46,99,111,111,107,105,101,45,99,117,116,116,101,114,2,1,88,213,47,148,8,1,19,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,2,1,244,99,28,105,8,1,21,46,99,111,111,107,105,101,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,139,195,212,166,8,1,12,46,99,115,115,45,49,114,52,117,98,120,51,2,1,228,37,50,25,8,1,11,46,99,115,115,45,52,117,120,122,110,108,2,1,241,184,124,212,8,1,7,46,99,117,71,115,121,104,2,1,63,111,219,127,8,1,23,46,100,107,45,104,101,97,100,101,114,45,105,110,102,111,45,109,101,115,115,97,103,101,2,1,70,68,145,133,8,1,7,46,100,121,120,108,73,110,2,1,70,66,119,99,8,1,25,46,101,108,101,109,101,110,116,111,114,45,108,111,99,97,116,105,111,110,45,112,111,112,117,112,2,1,244,99,2,199,8,1,7,46,102,65,97,108,72,81,2,1,91,62,56,100,8,1,30,46,102,108,117,102,102,121,45,87,114,97,112,112,101,114,45,102,108,117,102,102,121,45,45,118,48,100,122,114,116,2,1,111,231,220,104,8,1,7,46,104,66,122,88,122,74,2,1,170,157,230,232,8,1,15,46,104,101,97,100,101,114,95,95,98,97,110,110,101,114,2,1,69,68,255,12,8,1,13,46,105,110,102,111,45,109,101,115,115,97,103,101,2,1,48,211,58,183,8,1,15,46,105,110,102,111,98,97,114,45,98,111,116,116,111,109,2,1,220,131,169,115,8,1,14,46,105,110,115,101,116,45,48,46,102,105,120,101,100,2,1,249,76,148,68,8,1,16,46,105,115,45,97,99,116,105,118,101,46,109,111,100,97,108,2,1,147,161,192,179,8,1,15,46,106,115,45,105,110,102,111,45,98,97,110,110,101,114,2,1,42,174,84,192,8,1,34,46,106,115,45,115,104,98,45,105,110,115,115,45,108,111,103,105,110,95,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,169,41,105,74,8,1,7,46,106,115,115,49,49,51,2,1,189,176,99,6,8,1,7,46,107,90,102,71,68,88,2,1,219,22,36,202,8,1,11,46,107,101,121,45,49,56,50,117,120,122,2,1,82,68,121,118,8,1,19,46,109,100,45,100,105,97,108,111,103,45,98,97,99,107,100,114,111,112,2,1,190,204,87,237,8,1,8,46,109,101,115,115,97,103,101,2,1,227,207,99,151,8,1,6,46,111,49,102,45,97,2,1,237,165,79,32,8,1,21,46,111,110,108,105,110,101,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,3,17,180,199,103,67,168,188,239,222,89,229,1,8,1,8,46,111,118,101,114,108,97,121,2,1,148,108,111,41,8,1,4,46,112,109,115,2,1,82,73,67,168,8,1,14,46,112,111,108,105,99,121,45,110,111,116,105,99,101,2,1,225,159,208,195,8,1,21,46,112,111,108,111,112,111,108,121,78,111,116,105,102,105,99,97,116,105,111,110,2,1,82,79,80,68,8,1,13,46,112,111,112,85,112,87,114,97,112,112,101,114,2,1,228,36,55,62,8,1,8,46,112,111,112,95,98,111,120,2,1,236,84,247,115,8,1,16,46,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,2,1,181,12,193,50,8,1,21,46,112,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,118,50,2,1,244,98,200,95,8,1,10,46,115,99,45,99,106,105,98,66,120,2,1,171,115,70,160,8,1,31,46,115,100,45,111,98,106,101,99,116,45,105,102,32,62,32,46,115,100,45,111,98,106,101,99,116,45,99,111,100,101,2,1,22,69,104,143,8,1,23,46,115,100,45,111,98,106,101,99,116,45,105,102,46,115,100,45,111,98,106,101,99,116,2,1,70,73,37,231,8,1,29,46,115,101,99,116,105,111,110,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,111,117,116,101,114,2,1,82,67,59,12,8,1,7,46,115,104,97,100,111,119,2,1,244,99,44,64,8,1,17,46,115,110,97,99,107,98,97,114,45,119,114,97,112,112,101,114,2,1,82,69,232,20,8,1,18,46,115,111,115,45,99,107,45,99,110,115,110,116,45,109,103,110,114,2,1,50,164,120,45,8,1,28,46,115,116,121,108,101,95,99,111,110,115,101,110,116,45,98,97,110,110,101,114,95,95,70,110,115,50,74,2,1,106,203,233,1,8,1,31,46,115,116,121,108,101,115,95,95,67,111,111,107,105,101,98,97,114,87,114,97,112,45,103,53,97,98,55,110,45,48,2,1,79,177,198,214,8,1,8,46,119,112,50,55,110,118,120,2,1,144,193,7,54,8,1,6,46,120,100,109,70,111,2,1,75,133,45,78,0,1,29,91,97,114,105,97,45,108,97,98,101,108,61,34,75,97,107,105,110,102,111,114,109,97,116,105,111,110,34,93,2,1,97,202,181,253,0,1,62,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,32,114,105,103,104,116,58,32,48,112,120,59,34,93,2,1,1,204,166,51,0,1,47,91,115,116,121,108,101,94,61,34,119,105,100,116,104,58,49,48,48,37,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,70,48,70,48,70,48,59,34,93,2,1,12,113,182,32,0,1,34,100,105,118,91,99,108,97,115,115,94,61,34,71,108,111,98,97,108,67,111,111,107,105,101,66,97,110,110,101,114,95,95,34,93,2,2,1,85,190,94,51,93,159,124,0,1,38,100,105,118,91,99,108,97,115,115,94,61,34,115,116,121,108,101,115,95,99,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,95,34,93,2,1,154,178,147,204,0,1,49,100,105,118,91,115,116,121,108,101,94,61,34,100,105,115,112,108,97,121,58,32,102,108,101,120,59,32,97,108,105,103,110,45,105,116,101,109,115,58,32,99,101,110,116,101,114,59,34,93,2,1,234,237,234,170,0,1,51,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,32,116,111,112,58,32,48,112,120,59,34,93,2,1,82,70,229,117,0,1,19,114,101,97,99,116,45,99,111,111,107,105,101,115,45,112,111,112,117,112,2,1,228,150,201,90,16,1,21,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,102,111,111,116,101,114,2,1,155,122,156,130,16,1,11,35,98,111,120,45,112,111,108,105,99,121,2,1,175,205,129,31,16,1,16,35,99,111,111,107,105,101,45,99,111,110,45,104,101,97,100,2,1,101,175,248,41,16,1,12,35,112,100,112,97,45,112,111,108,105,99,121,2,1,62,136,128,28,16,1,9,35,112,111,112,117,112,45,115,115,2,1,19,95,182,111,8,1,5,46,80,100,112,97,2,1,66,54,241,151,8,1,26,46,98,101,99,111,111,107,105,101,115,45,111,117,116,101,114,45,99,111,110,116,97,105,110,101,114,2,2,79,205,74,120,99,17,41,202,8,1,12,46,99,97,114,100,45,99,111,111,107,105,101,2,1,137,151,38,226,8,1,18,46,99,107,45,97,99,112,116,45,99,111,110,116,97,105,110,101,114,2,1,100,78,57,3,8,1,16,46,99,111,110,115,101,110,116,95,115,101,99,116,105,111,110,2,1,51,46,74,157,8,1,14,46,99,111,111,107,105,101,45,119,97,112,112,101,114,2,1,63,46,165,114,8,1,17,46,99,111,111,107,105,101,115,45,45,119,114,97,112,112,101,114,2,1,82,126,78,227,8,1,13,46,99,111,111,107,105,101,115,45,112,100,112,97,2,1,63,46,63,120,8,1,25,46,99,119,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,117,105,45,115,100,107,2,1,134,252,118,202,8,1,11,46,101,110,116,101,114,45,100,111,110,101,2,1,17,101,123,135,8,1,14,46,102,111,111,116,101,114,45,112,111,108,105,99,121,2,1,66,54,249,217,8,1,13,46,102,111,111,116,101,114,112,111,108,105,99,121,2,1,172,122,33,98,8,1,7,46,112,111,108,105,99,121,2,2,210,106,233,225,236,72,23,69,8,1,12,46,112,111,112,117,112,95,95,112,100,112,97,2,1,202,69,32,67,8,1,16,46,112,114,105,118,97,99,121,45,99,111,110,99,101,114,110,2,1,197,28,51,129,8,1,21,46,112,116,45,115,110,97,99,107,98,97,114,95,95,115,117,114,102,97,99,101,2,1,151,58,134,130,8,1,22,46,115,99,98,97,109,45,109,111,100,97,108,45,108,105,115,116,95,98,48,48,52,2,1,126,51,59,210,8,1,21,46,116,104,101,45,112,100,112,97,45,99,111,110,115,101,110,116,45,98,97,114,2,1,47,63,192,190,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,83,101,115,115,105,111,110,34,93,2,1,57,46,176,122,16,1,14,35,67,111,111,107,105,101,67,111,110,99,101,110,116,2,1,119,132,45,221,16,1,10,35,75,86,75,95,67,101,114,101,122,2,1,28,212,68,217,16,1,15,35,99,80,114,111,109,112,116,95,72,111,108,100,101,114,2,1,85,164,29,201,16,1,12,35,99,98,45,108,105,103,104,116,98,111,120,2,1,92,57,149,139,16,1,10,35,99,101,114,101,122,95,100,105,118,2,1,96,232,179,109,16,1,12,35,99,101,114,101,122,95,107,97,98,117,108,2,1,254,190,181,123,16,1,9,35,99,108,111,115,101,45,109,101,2,1,21,21,100,9,16,1,17,35,99,108,111,115,101,80,111,108,105,99,105,101,115,68,105,118,2,1,15,113,141,147,16,1,11,35,99,111,110,115,101,110,116,100,105,118,2,3,0,10,249,144,137,75,102,221,140,171,80,217,16,1,10,35,99,111,110,115,105,100,101,110,116,2,1,236,55,205,134,16,1,13,35,100,97,116,97,80,111,108,105,99,105,101,115,2,1,111,102,99,129,16,1,10,35,100,105,118,95,99,99,95,99,99,2,1,237,187,173,132,16,1,12,35,103,101,110,101,114,97,108,45,116,111,115,2,1,38,104,139,30,16,1,19,35,106,115,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,161,179,160,172,16,1,5,35,107,118,107,107,2,3,21,158,171,208,28,221,78,114,184,129,179,72,16,1,19,35,107,118,107,107,45,98,97,110,110,101,114,45,104,101,97,100,101,114,2,1,27,194,237,27,16,1,18,35,107,118,107,107,95,110,111,116,105,102,105,99,97,116,105,111,110,2,1,169,57,32,102,16,1,8,35,107,118,107,107,98,111,120,2,1,96,235,166,145,16,1,10,35,108,105,103,104,116,115,111,117,116,2,1,185,168,184,104,16,1,13,35,109,99,84,111,112,84,111,111,108,116,105,112,2,2,87,188,153,31,95,201,251,178,16,1,20,35,114,101,97,100,101,100,95,99,111,110,116,114,97,99,116,95,114,111,119,2,1,126,22,25,118,16,1,12,35,116,111,112,98,97,114,45,104,105,100,101,2,1,20,75,136,254,8,1,6,46,76,101,103,97,108,2,1,40,223,145,123,8,1,25,46,77,117,105,67,111,108,108,97,112,115,101,45,119,114,97,112,112,101,114,73,110,110,101,114,2,1,233,26,231,142,8,1,17,46,97,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,41,151,113,228,8,1,14,46,98,111,116,116,111,109,45,99,101,110,116,101,114,2,1,147,150,53,123,8,1,6,46,99,101,114,101,122,2,23,0,66,141,43,16,121,185,209,20,138,232,103,20,214,98,210,37,181,197,107,44,130,159,110,104,43,193,8,120,199,212,37,129,126,104,19,134,60,225,44,135,49,119,37,138,170,45,244,150,32,246,18,160,13,236,10,163,133,16,253,164,9,143,66,181,111,75,203,194,250,15,8,213,220,110,69,218,100,38,111,224,59,87,117,238,209,254,159,239,37,179,15,8,1,9,46,99,101,114,101,122,97,108,108,2,1,53,21,100,88,8,1,15,46,99,101,114,101,122,107,117,108,108,97,110,105,109,105,2,1,97,224,45,193,8,1,14,46,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,166,221,221,141,8,1,15,46,99,111,110,116,114,97,99,116,45,112,111,112,117,112,2,1,44,192,110,148,8,1,24,46,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,45,109,111,100,117,108,101,2,1,232,47,75,22,8,1,34,46,99,111,111,107,105,101,45,112,111,108,105,99,121,95,99,111,111,107,105,101,80,111,108,105,99,121,95,95,57,120,98,97,122,2,1,13,232,184,16,8,1,14,46,99,111,111,107,105,101,67,111,110,116,101,110,116,2,1,96,5,90,62,8,1,21,46,99,111,111,107,105,101,95,99,111,111,107,105,101,95,95,51,78,71,48,54,2,1,177,233,253,185,8,1,3,46,99,112,2,2,22,252,123,192,203,217,68,28,8,1,12,46,99,115,115,45,49,102,108,48,109,102,118,2,1,249,110,13,47,8,1,11,46,99,115,115,45,49,112,120,56,115,120,2,1,151,177,29,81,8,1,12,46,100,97,116,97,45,112,111,108,105,99,121,2,1,76,174,138,15,8,1,8,46,100,97,116,97,66,97,114,2,1,194,167,9,135,8,1,21,46,100,105,97,108,111,103,45,116,121,112,101,45,108,105,103,104,116,98,111,120,2,1,192,150,133,185,8,1,7,46,101,72,122,100,116,74,2,1,218,77,64,150,8,1,19,46,101,101,106,73,108,99,46,115,99,45,109,113,117,103,115,117,45,48,2,1,234,173,6,192,8,1,24,46,101,102,105,108,108,105,45,108,97,121,111,117,116,45,102,105,98,97,98,97,110,107,97,2,1,255,215,28,147,8,1,7,46,102,97,79,121,104,103,2,1,129,73,34,97,8,1,9,46,102,97,100,101,73,110,85,112,2,1,16,249,110,27,8,1,22,46,102,105,120,101,100,112,114,111,116,101,99,116,105,111,110,79,102,68,97,116,97,2,1,130,85,182,24,8,1,10,46,105,104,109,45,112,111,112,117,112,2,1,83,18,51,47,8,1,18,46,105,104,109,45,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,83,18,51,47,8,1,4,46,107,118,107,2,1,170,43,207,156,8,1,23,46,107,118,107,45,105,110,102,111,114,109,97,116,105,111,110,45,109,97,115,116,101,114,2,1,249,110,120,50,8,1,11,46,109,111,100,97,108,45,115,104,111,119,2,1,185,168,184,104,8,1,7,46,109,111,100,97,108,120,2,1,2,160,75,52,8,1,22,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,119,114,97,112,112,101,114,2,1,173,250,11,208,8,1,9,46,112,111,108,105,99,105,101,115,2,1,139,117,193,93,8,1,7,46,112,111,108,105,99,121,2,2,12,79,28,57,43,128,121,112,8,1,14,46,112,111,108,105,116,101,95,95,97,108,101,114,116,2,1,37,185,246,254,8,1,15,46,112,111,112,117,112,67,111,110,116,97,105,110,101,114,2,1,161,179,160,172,8,1,21,46,112,111,114,116,111,45,98,108,111,99,107,45,104,116,109,108,45,116,111,112,2,1,203,217,67,169,8,1,17,46,112,114,111,116,101,99,116,105,111,110,79,102,68,97,116,97,2,1,126,80,164,176,8,1,15,46,114,101,115,45,98,111,116,116,111,109,45,98,97,114,2,1,118,102,97,93,8,1,19,46,115,99,45,109,113,117,103,115,117,45,48,46,101,101,106,73,108,99,2,1,234,173,6,192,8,1,12,46,115,116,105,99,107,102,111,111,116,101,114,2,1,118,102,219,134,8,1,14,46,115,116,105,99,107,121,45,102,111,111,116,101,114,2,4,37,101,103,80,42,123,129,143,103,118,98,43,118,102,202,88,8,1,11,46,118,101,114,105,65,108,116,66,97,114,2,4,20,21,119,215,27,140,222,118,29,149,173,74,40,205,182,153,8,1,18,46,118,110,111,116,105,102,121,45,99,111,110,116,97,105,110,101,114,2,1,1,60,18,137,8,1,16,46,121,115,45,99,111,111,107,105,101,45,109,111,100,97,108,2,1,12,79,28,57,0,1,33,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,98,111,120,95,99,111,111,107,105,101,66,111,120,34,93,2,1,18,148,242,180,0,1,14,108,97,121,111,117,116,45,99,111,111,107,105,101,115,2,1,41,14,114,100,16,1,15,35,71,68,80,82,45,99,111,110,116,97,105,110,101,114,2,1,148,11,65,56,16,1,7,35,97,99,99,101,112,116,2,1,116,164,43,16,16,1,19,35,102,108,111,97,116,105,110,103,95,97,103,114,101,101,109,101,110,116,2,1,30,161,115,128,16,1,13,35,112,97,114,101,110,116,95,112,111,112,117,112,2,1,96,179,51,62,16,1,7,35,112,98,108,111,99,107,2,1,182,197,110,127,16,1,7,35,112,111,108,105,99,121,2,1,52,187,234,93,16,1,14,35,112,111,108,105,99,121,45,97,99,99,101,112,116,2,1,187,84,241,79,0,1,38,35,114,111,111,116,32,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,77,101,115,115,97,103,101,45,114,111,111,116,34,93,2,1,195,237,85,81,16,1,21,35,117,115,97,103,101,45,110,111,116,105,99,101,45,109,101,115,115,97,103,101,2,1,30,11,180,31,8,1,11,46,68,105,115,99,108,97,105,109,101,114,2,1,47,223,73,236,8,1,23,46,95,50,118,119,73,56,57,114,51,120,121,49,69,57,118,85,112,120,67,49,45,113,2,1,149,46,172,54,8,1,24,46,95,51,107,49,48,99,49,102,85,72,104,72,90,87,85,106,99,67,117,48,57,86,101,2,1,149,46,172,54,0,1,38,46,97,103,114,101,101,67,111,111,107,105,101,92,46,99,111,109,112,111,110,101,110,116,95,95,99,111,111,107,105,101,87,114,97,112,112,101,114,2,1,127,46,222,209,8,1,17,46,98,97,99,107,103,114,111,117,110,100,45,112,111,112,117,112,2,1,50,178,166,17,8,1,6,46,98,108,111,99,107,2,1,160,129,6,24,8,1,11,46,98,110,95,99,111,111,107,105,101,115,2,1,224,246,74,255,8,1,20,46,99,97,114,116,97,45,112,111,108,105,99,121,45,98,111,116,116,111,109,2,1,185,172,155,4,8,1,5,46,99,111,111,107,2,1,236,41,113,196,8,1,6,46,99,111,111,111,107,2,1,214,64,216,239,8,1,17,46,100,102,95,95,99,111,111,107,105,101,45,112,111,112,117,112,2,1,136,243,77,139,8,1,7,46,103,76,102,105,121,114,2,1,235,69,177,1,8,1,7,46,103,78,66,120,77,77,2,1,113,236,38,86,8,1,17,46,112,111,108,105,116,105,99,95,99,111,110,102,105,100,101,108,2,1,188,102,241,26,8,1,12,46,116,101,114,109,115,95,112,111,112,117,112,2,2,198,240,111,220,248,19,158,134,8,1,8,46,119,97,114,110,105,110,103,2,1,188,60,146,53,0,1,15,91,114,111,108,101,61,34,100,105,97,108,111,103,34,93,2,2,219,159,241,76,249,243,123,86,0,1,45,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,95,95,99,111,110,116,97,105,110,101,114,34,93,2,1,1,18,185,254,16,1,23,35,98,103,76,97,121,101,114,115,95,99,111,109,112,45,106,104,113,55,109,99,55,50,2,1,144,9,223,144,16,1,13,35,105,100,112,111,112,95,99,111,111,107,105,101,2,1,202,82,242,223,8,1,21,46,102,111,111,116,101,114,95,95,110,111,116,105,102,105,99,97,116,105,111,110,2,1,19,170,131,246,0,1,128,0,0,0,136,91,115,116,121,108,101,61,34,97,108,105,103,110,45,105,116,101,109,115,58,32,99,101,110,116,101,114,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,40,50,51,55,44,32,50,52,53,44,32,50,53,50,41,59,32,112,97,100,100,105,110,103,45,116,111,112,58,32,49,50,112,120,59,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,49,50,112,120,59,32,45,119,101,98,107,105,116,45,98,111,120,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,34,93,2,1,45,112,14,110,8,1,25,46,99,111,111,107,105,101,66,97,110,110,101,114,95,115,104,111,119,95,95,49,69,56,68,106,2,1,87,218,107,105,8,1,17,46,115,103,45,112,111,112,117,112,45,99,111,110,116,101,110,116,2,1,87,218,170,189,16,1,14,35,110,101,103,101,115,67,97,110,105,97,116,97,100,2,1,104,116,2,112,0,0,0,2,0,0,0,2,0,0,0,1,75,0,0,0,0,0,0,2,0,0,0,124,221,128,234,16,0,0,0,32,0,56,91,104,114,101,102,61,34,104,116,116,112,115,58,47,47,100,101,118,111,119,108,46,105,111,47,119,111,114,100,112,114,101,115,115,45,114,101,97,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,47,34,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,64,182,0,0,32,91,128,0,4,153,64,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,4,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,14,0,0,0,16,0,0,0,18,0,0,0,20,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,26,0,0,0,26,0,0,0,26,0,0,0,26,0,0,0,26,0,0,0,26,0,0,0,26,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,32,0,0,0,34,0,0,0,34,0,0,0,36,0,0,0,36,0,0,0,38,0,0,0,38,0,0,0,38,0,0,0,38,0,0,0,38,0,0,0,38,0,0,0,38,0,0,0,40,0,0,0,42,0,0,0,42,0,0,0,42,0,0,0,42,0,0,0,42,0,0,0,46,0,0,0,50,0,0,0,50,0,0,0,50,0,0,0,50,0,0,0,50,0,0,0,50,0,0,0,50,0,0,0,52,0,0,0,52,0,0,0,54,0,0,0,56,0,0,0,58,0,0,0,60,0,0,0,60,0,0,0,60,0,0,0,60,0,0,0,62,0,0,0,62,0,0,0,62,0,0,0,62,0,0,0,64,0,0,0,64,0,0,0,64,0,0,0,64,0,0,0,64,0,0,0,66,0,0,0,66,0,0,0,66,0,0,0,66,0,0,0,66,0,0,0,68,0,0,0,68,0,0,0,72,0,0,0,72,0,0,0,72,0,0,0,72,0,0,0,72,0,0,0,72,0,0,0,76,0,0,0,78,0,0,0,80,0,0,0,82,0,0,0,82,0,0,0,82,0,0,0,84,0,0,0,86,0,0,0,86,0,0,0,88,0,0,0,88,0,0,0,88,0,0,0,88,0,0,0,90,0,0,0,90,0,0,0,92,0,0,0,94,0,0,0,98,0,0,0,102,0,0,0,102,0,0,0,102,0,0,0,102,0,0,0,104,0,0,0,106,0,0,0,106,0,0,0,108,0,0,0,110,0,0,0,110,0,0,0,112,0,0,0,112,0,0,0,112,0,0,0,114,0,0,0,116,0,0,0,116,0,0,0,116,0,0,0,116,0,0,0,116,0,0,0,116,0,0,0,118,0,0,0,118,0,0,0,120,0,0,0,122,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,126,0,0,0,132,0,0,0,132,0,0,0,136,0,0,0,138,0,0,0,138,0,0,0,138,0,0,0,140,0,0,0,140,0,0,0,140,0,0,0,140,0,0,0,140,0,0,0,140,0,0,0,140,0,0,0,140,0,0,0,142,0,0,0,142,0,0,0,144,0,0,0,144,0,0,0,146,0,0,0,148,0,0,0,148,0,0,0,150,0,0,0,152,0,0,0,156,0,0,0,156,0,0,0,158,0,0,0,158,0,0,0,158,0,0,0,164,0,0,0,164,0,0,0,166,0,0,0,168,0,0,0,172,0,0,0,172,0,0,0,174,0,0,0,174,0,0,0,176,0,0,0,176,0,0,0,178,0,0,0,180,0,0,0,180,0,0,0,180,0,0,0,180,0,0,0,184,0,0,0,186,0,0,0,188,0,0,0,188,0,0,0,188,0,0,0,188,0,0,0,188,0,0,0,192,0,0,0,194,0,0,0,196,0,0,0,198,0,0,0,200,0,0,0,200,0,0,0,200,0,0,0,202,0,0,0,204,0,0,0,204,0,0,0,204,0,0,0,204,0,0,0,206,0,0,0,210,0,0,0,212,0,0,0,212,0,0,0,212,0,0,0,216,0,0,0,216,0,0,0,216,0,0,0,216,0,0,0,216,0,0,0,216,0,0,0,220,0,0,0,220,0,0,0,220,0,0,0,220,0,0,0,222,0,0,0,222,0,0,0,222,0,0,0,224,0,0,0,226,0,0,0,226,0,0,0,226,0,0,0,228,0,0,0,232,0,0,0,234,0,0,0,236,0,0,0,236,0,0,0,236,0,0,0,236,0,0,0,238,0,0,0,238,0,0,0,240,0,0,0,242,0,0,0,242,0,0,0,242,0,0,0,244,0,0,0,244,0,0,0,246,0,0,0,246,0,0,0,246,0,0,0,248,0,0,0,250,0,0,0,250,0,0,0,252,0,0,0,252,0,0,0,252,0,0,0,254,0,0,0,254,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,2,1,0,0,2,1,0,0,4,1,0,0,4,1,0,0,6,1,0,0,8,1,0,0,8,1,0,0,8,1,0,0,8,1,0,0,8,1,0,0,10,1,0,0,10,1,0,0,12,1,0,0,12,1,0,0,16,1,0,0,16,1,0,0,18,1,0,0,20,1,0,0,20,1,0,0,20,1,0,0,22,1,0,0,22,1,0,0,22,1,0,0,24,1,0,0,24,1,0,0,26,1,0,0,26,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,30,1,0,0,30,1,0,0,32,1,0,0,32,1,0,0,32,1,0,0,32,1,0,0,32,1,0,0,32,1,0,0,34,1,0,0,36,1,0,0,36,1,0,0,40,1,0,0,42,1,0,0,42,1,0,0,42,1,0,0,42,1,0,0,42,1,0,0,42,1,0,0,42,1,0,0,42,1,0,0,44,1,0,0,46,1,0,0,46,1,0,0,46,1,0,0,46,1,0,0,46,1,0,0,48,1,0,0,48,1,0,0,48,1,0,0,48,1,0,0,48,1,0,0,50,1,0,0,52,1,0,0,52,1,0,0,52,1,0,0,52,1,0,0,52,1,0,0,54,1,0,0,54,1,0,0,56,1,0,0,58,1,0,0,60,1,0,0,60,1,0,0,60,1,0,0,60,1,0,0,62,1,0,0,66,1,0,0,66,1,0,0,68,1,0,0,70,1,0,0,70,1,0,0,70,1,0,0,70,1,0,0,70,1,0,0,72,1,0,0,76,1,0,0,76,1,0,0,80,1,0,0,80,1,0,0,82,1,0,0,82,1,0,0,82,1,0,0,84,1,0,0,86,1,0,0,86,1,0,0,86,1,0,0,86,1,0,0,90,1,0,0,92,1,0,0,92,1,0,0,96,1,0,0,96,1,0,0,96,1,0,0,96,1,0,0,96,1,0,0,98,1,0,0,98,1,0,0,100,1,0,0,100,1,0,0,102,1,0,0,104,1,0,0,104,1,0,0,106,1,0,0,110,1,0,0,110,1,0,0,110,1,0,0,112,1,0,0,116,1,0,0,118,1,0,0,118,1,0,0,118,1,0,0,118,1,0,0,120,1,0,0,120,1,0,0,122,1,0,0,122,1,0,0,122,1,0,0,124,1,0,0,124,1,0,0,126,1,0,0,126,1,0,0,128,1,0,0,128,1,0,0,130,1,0,0,132,1,0,0,132,1,0,0,134,1,0,0,136,1,0,0,138,1,0,0,138,1,0,0,138,1,0,0,138,1,0,0,138,1,0,0,138,1,0,0,138,1,0,0,138,1,0,0,138,1,0,0,140,1,0,0,140,1,0,0,140,1,0,0,140,1,0,0,140,1,0,0,142,1,0,0,142,1,0,0,142,1,0,0,142,1,0,0,144,1,0,0,148,1,0,0,148,1,0,0,148,1,0,0,150,1,0,0,150,1,0,0,152,1,0,0,154,1,0,0,154,1,0,0,156,1,0,0,156,1,0,0,156,1,0,0,156,1,0,0,158,1,0,0,158,1,0,0,158,1,0,0,162,1,0,0,164,1,0,0,164,1,0,0,164,1,0,0,168,1,0,0,170,1,0,0,170,1,0,0,170,1,0,0,170,1,0,0,170,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,176,1,0,0,176,1,0,0,176,1,0,0,176,1,0,0,180,1,0,0,182,1,0,0,182,1,0,0,186,1,0,0,188,1,0,0,190,1,0,0,194,1,0,0,198,1,0,0,198,1,0,0,198,1,0,0,200,1,0,0,200,1,0,0,200,1,0,0,202,1,0,0,202,1,0,0,204,1,0,0,208,1,0,0,208,1,0,0,208,1,0,0,208,1,0,0,208,1,0,0,208,1,0,0,214,1,0,0,214,1,0,0,218,1,0,0,218,1,0,0,218,1,0,0,218,1,0,0,220,1,0,0,220,1,0,0,220,1,0,0,222,1,0,0,222,1,0,0,222,1,0,0,222,1,0,0,222,1,0,0,228,1,0,0,228,1,0,0,230,1,0,0,230,1,0,0,230,1,0,0,230,1,0,0,232,1,0,0,234,1,0,0,236,1,0,0,236,1,0,0,236,1,0,0,238,1,0,0,238,1,0,0,238,1,0,0,238,1,0,0,238,1,0,0,240,1,0,0,240,1,0,0,240,1,0,0,240,1,0,0,242,1,0,0,246,1,0,0,250,1,0,0,250,1,0,0,250,1,0,0,252,1,0,0,254,1,0,0,4,2,0,0,4,2,0,0,4,2,0,0,6,2,0,0,8,2,0,0,8,2,0,0,8,2,0,0,8,2,0,0,8,2,0,0,10,2,0,0,10,2,0,0,10,2,0,0,14,2,0,0,14,2,0,0,14,2,0,0,14,2,0,0,14,2,0,0,18,2,0,0,18,2,0,0,18,2,0,0,20,2,0,0,20,2,0,0,20,2,0,0,22,2,0,0,22,2,0,0,22,2,0,0,22,2,0,0,24,2,0,0,26,2,0,0,26,2,0,0,26,2,0,0,28,2,0,0,28,2,0,0,28,2,0,0,28,2,0,0,30,2,0,0,30,2,0,0,30,2,0,0,30,2,0,0,32,2,0,0,32,2,0,0,32,2,0,0,32,2,0,0,32,2,0,0,32,2,0,0,32,2,0,0,36,2,0,0,36,2,0,0,36,2,0,0,38,2,0,0,38,2,0,0,38,2,0,0,38,2,0,0,38,2,0,0,40,2,0,0,40,2,0,0,42,2,0,0,42,2,0,0,42,2,0,0,42,2,0,0,42,2,0,0,42,2,0,0,42,2,0,0,44,2,0,0,46,2,0,0,48,2,0,0,50,2,0,0,52,2,0,0,54,2,0,0,54,2,0,0,54,2,0,0,54,2,0,0,54,2,0,0,58,2,0,0,58,2,0,0,68,2,0,0,68,2,0,0,70,2,0,0,72,2,0,0,72,2,0,0,72,2,0,0,72,2,0,0,74,2,0,0,76,2,0,0,78,2,0,0,78,2,0,0,78,2,0,0,78,2,0,0,78,2,0,0,78,2,0,0,80,2,0,0,80,2,0,0,80,2,0,0,80,2,0,0,80,2,0,0,80,2,0,0,82,2,0,0,82,2,0,0,84,2,0,0,84,2,0,0,86,2,0,0,86,2,0,0,90,2,0,0,90,2,0,0,90,2,0,0,90,2,0,0,90,2,0,0,92,2,0,0,94,2,0,0,94,2,0,0,94,2,0,0,94,2,0,0,94,2,0,0,100,2,0,0,102,2,0,0,102,2,0,0,106,2,0,0,106,2,0,0,106,2,0,0,108,2,0,0,110,2,0,0,110,2,0,0,110,2,0,0,110,2,0,0,110,2,0,0,112,2,0,0,112,2,0,0,112,2,0,0,112,2,0,0,114,2,0,0,116,2,0,0,116,2,0,0,116,2,0,0,116,2,0,0,118,2,0,0,118,2,0,0,122,2,0,0,122,2,0,0,122,2,0,0,122,2,0,0,122,2,0,0,122,2,0,0,122,2,0,0,124,2,0,0,124,2,0,0,128,2,0,0,130,2,0,0,132,2,0,0,134,2,0,0,136,2,0,0,136,2,0,0,136,2,0,0,136,2,0,0,138,2,0,0,138,2,0,0,138,2,0,0,140,2,0,0,142,2,0,0,142,2,0,0,142,2,0,0,142,2,0,0,144,2,0,0,146,2,0,0,148,2,0,0,148,2,0,0,150,2,0,0,152,2,0,0,152,2,0,0,156,2,0,0,158,2,0,0,160,2,0,0,160,2,0,0,162,2,0,0,166,2,0,0,168,2,0,0,170,2,0,0,170,2,0,0,174,2,0,0,174,2,0,0,174,2,0,0,174,2,0,0,174,2,0,0,174,2,0,0,174,2,0,0,174,2,0,0,174,2,0,0,178,2,0,0,178,2,0,0,178,2,0,0,178,2,0,0,180,2,0,0,182,2,0,0,182,2,0,0,184,2,0,0,184,2,0,0,186,2,0,0,186,2,0,0,186,2,0,0,190,2,0,0,190,2,0,0,192,2,0,0,192,2,0,0,192,2,0,0,194,2,0,0,196,2,0,0,198,2,0,0,198,2,0,0,200,2,0,0,200,2,0,0,200,2,0,0,204,2,0,0,208,2,0,0,208,2,0,0,208,2,0,0,208,2,0,0,208,2,0,0,210,2,0,0,210,2,0,0,212,2,0,0,214,2,0,0,216,2,0,0,216,2,0,0,216,2,0,0,216,2,0,0,216,2,0,0,216,2,0,0,216,2,0,0,216,2,0,0,218,2,0,0,218,2,0,0,218,2,0,0,218,2,0,0,218,2,0,0,218,2,0,0,218,2,0,0,218,2,0,0,218,2,0,0,220,2,0,0,220,2,0,0,222,2,0,0,224,2,0,0,224,2,0,0,226,2,0,0,226,2,0,0,226,2,0,0,228,2,0,0,228,2,0,0,232,2,0,0,232,2,0,0,234,2,0,0,234,2,0,0,236,2,0,0,238,2,0,0,242,2,0,0,242,2,0,0,242,2,0,0,244,2,0,0,250,2,0,0,252,2,0,0,252,2,0,0,252,2,0,0,252,2,0,0,252,2,0,0,254,2,0,0,254,2,0,0,2,3,0,0,2,3,0,0,4,3,0,0,8,3,0,0,10,3,0,0,12,3,0,0,12,3,0,0,14,3,0,0,16,3,0,0,18,3,0,0,20,3,0,0,22,3,0,0,24,3,0,0,24,3,0,0,26,3,0,0,26,3,0,0,26,3,0,0,26,3,0,0,28,3,0,0,28,3,0,0,28,3,0,0,32,3,0,0,34,3,0,0,36,3,0,0,36,3,0,0,36,3,0,0,36,3,0,0,36,3,0,0,38,3,0,0,38,3,0,0,38,3,0,0,38,3,0,0,38,3,0,0,38,3,0,0,40,3,0,0,42,3,0,0,44,3,0,0,46,3,0,0,46,3,0,0,48,3,0,0,48,3,0,0,52,3,0,0,54,3,0,0,54,3,0,0,56,3,0,0,56,3,0,0,58,3,0,0,58,3,0,0,62,3,0,0,62,3,0,0,62,3,0,0,62,3,0,0,62,3,0,0,64,3,0,0,66,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,70,3,0,0,70,3,0,0,72,3,0,0,74,3,0,0,74,3,0,0,76,3,0,0,76,3,0,0,76,3,0,0,80,3,0,0,80,3,0,0,80,3,0,0,82,3,0,0,82,3,0,0,82,3,0,0,84,3,0,0,84,3,0,0,86,3,0,0,86,3,0,0,86,3,0,0,92,3,0,0,92,3,0,0,92,3,0,0,92,3,0,0,96,3,0,0,96,3,0,0,96,3,0,0,96,3,0,0,98,3,0,0,100,3,0,0,100,3,0,0,100,3,0,0,102,3,0,0,102,3,0,0,102,3,0,0,102,3,0,0,102,3,0,0,102,3,0,0,104,3,0,0,106,3,0,0,108,3,0,0,108,3,0,0,108,3,0,0,110,3,0,0,110,3,0,0,114,3,0,0,114,3,0,0,114,3,0,0,118,3,0,0,120,3,0,0,122,3,0,0,122,3,0,0,124,3,0,0,128,3,0,0,128,3,0,0,128,3,0,0,128,3,0,0,128,3,0,0,128,3,0,0,128,3,0,0,130,3,0,0,132,3,0,0,132,3,0,0,132,3,0,0,132,3,0,0,134,3,0,0,134,3,0,0,134,3,0,0,134,3,0,0,134,3,0,0,136,3,0,0,138,3,0,0,138,3,0,0,140,3,0,0,142,3,0,0,144,3,0,0,148,3,0,0,148,3,0,0,148,3,0,0,148,3,0,0,148,3,0,0,148,3,0,0,148,3,0,0,148,3,0,0,150,3,0,0,150,3,0,0,152,3,0,0,156,3,0,0,158,3,0,0,160,3,0,0,160,3,0,0,160,3,0,0,160,3,0,0,164,3,0,0,164,3,0,0,166,3,0,0,166,3,0,0,166,3,0,0,166,3,0,0,168,3,0,0,168,3,0,0,168,3,0,0,172,3,0,0,178,3,0,0,178,3,0,0,178,3,0,0,178,3,0,0,178,3,0,0,178,3,0,0,178,3,0,0,180,3,0,0,182,3,0,0,186,3,0,0,186,3,0,0,186,3,0,0,188,3,0,0,192,3,0,0,192,3,0,0,192,3,0,0,194,3,0,0,198,3,0,0,198,3,0,0,200,3,0,0,202,3,0,0,202,3,0,0,204,3,0,0,206,3,0,0,206,3,0,0,208,3,0,0,208,3,0,0,210,3,0,0,214,3,0,0,216,3,0,0,220,3,0,0,222,3,0,0,222,3,0,0,222,3,0,0,222,3,0,0,224,3,0,0,224,3,0,0,224,3,0,0,224,3,0,0,226,3,0,0,226,3,0,0,228,3,0,0,230,3,0,0,230,3,0,0,230,3,0,0,230,3,0,0,234,3,0,0,234,3,0,0,236,3,0,0,236,3,0,0,236,3,0,0,238,3,0,0,238,3,0,0,238,3,0,0,242,3,0,0,246,3,0,0,248,3,0,0,248,3,0,0,248,3,0,0,250,3,0,0,250,3,0,0,250,3,0,0,250,3,0,0,250,3,0,0,250,3,0,0,252,3,0,0,252,3,0,0,254,3,0,0,2,4,0,0,2,4,0,0,4,4,0,0,4,4,0,0,6,4,0,0,8,4,0,0,10,4,0,0,10,4,0,0,12,4,0,0,12,4,0,0,14,4,0,0,14,4,0,0,14,4,0,0,14,4,0,0,18,4,0,0,20,4,0,0,20,4,0,0,20,4,0,0,22,4,0,0,26,4,0,0,28,4,0,0,30,4,0,0,32,4,0,0,34,4,0,0,36,4,0,0,36,4,0,0,40,4,0,0,42,4,0,0,44,4,0,0,44,4,0,0,46,4,0,0,46,4,0,0,46,4,0,0,46,4,0,0,46,4,0,0,48,4,0,0,48,4,0,0,50,4,0,0,50,4,0,0,50,4,0,0,50,4,0,0,50,4,0,0,52,4,0,0,54,4,0,0,56,4,0,0,60,4,0,0,60,4,0,0,64,4,0,0,64,4,0,0,64,4,0,0,64,4,0,0,66,4,0,0,66,4,0,0,68,4,0,0,68,4,0,0,68,4,0,0,70,4,0,0,82,4,0,0,82,4,0,0,86,4,0,0,86,4,0,0,86,4,0,0,88,4,0,0,90,4,0,0,92,4,0,0,94,4,0,0,94,4,0,0,96,4,0,0,98,4,0,0,98,4,0,0,98,4,0,0,98,4,0,0,98,4,0,0,98,4,0,0,100,4,0,0,102,4,0,0,102,4,0,0,102,4,0,0,102,4,0,0,102,4,0,0,102,4,0,0,102,4,0,0,102,4,0,0,104,4,0,0,104,4,0,0,104,4,0,0,104,4,0,0,106,4,0,0,106,4,0,0,106,4,0,0,110,4,0,0,112,4,0,0,114,4,0,0,114,4,0,0,114,4,0,0,114,4,0,0,114,4,0,0,114,4,0,0,116,4,0,0,122,4,0,0,122,4,0,0,126,4,0,0,126,4,0,0,128,4,0,0,130,4,0,0,132,4,0,0,132,4,0,0,132,4,0,0,134,4,0,0,136,4,0,0,138,4,0,0,138,4,0,0,140,4,0,0,140,4,0,0,148,4,0,0,148,4,0,0,148,4,0,0,150,4,0,0,150,4,0,0,150,4,0,0,152,4,0,0,152,4,0,0,154,4,0,0,154,4,0,0,154,4,0,0,156,4,0,0,156,4,0,0,156,4,0,0,156,4,0,0,156,4,0,0,156,4,0,0,156,4,0,0,158,4,0,0,158,4,0,0,158,4,0,0,158,4,0,0,158,4,0,0,158,4,0,0,158,4,0,0,158,4,0,0,160,4,0,0,160,4,0,0,160,4,0,0,160,4,0,0,162,4,0,0,162,4,0,0,166,4,0,0,166,4,0,0,166,4,0,0,166,4,0,0,166,4,0,0,166,4,0,0,166,4,0,0,170,4,0,0,172,4,0,0,172,4,0,0,172,4,0,0,172,4,0,0,172,4,0,0,174,4,0,0,176,4,0,0,178,4,0,0,180,4,0,0,182,4,0,0,182,4,0,0,182,4,0,0,184,4,0,0,184,4,0,0,184,4,0,0,184,4,0,0,184,4,0,0,186,4,0,0,186,4,0,0,188,4,0,0,190,4,0,0,192,4,0,0,194,4,0,0,194,4,0,0,196,4,0,0,196,4,0,0,196,4,0,0,198,4,0,0,198,4,0,0,198,4,0,0,198,4,0,0,198,4,0,0,200,4,0,0,202,4,0,0,202,4,0,0,202,4,0,0,208,4,0,0,208,4,0,0,208,4,0,0,208,4,0,0,212,4,0,0,214,4,0,0,216,4,0,0,216,4,0,0,216,4,0,0,216,4,0,0,220,4,0,0,220,4,0,0,222,4,0,0,222,4,0,0,226,4,0,0,228,4,0,0,228,4,0,0,230,4,0,0,230,4,0,0,232,4,0,0,236,4,0,0,236,4,0,0,236,4,0,0,236,4,0,0,238,4,0,0,238,4,0,0,242,4,0,0,242,4,0,0,248,4,0,0,248,4,0,0,250,4,0,0,254,4,0,0,0,5,0,0,2,5,0,0,2,5,0,0,4,5,0,0,6,5,0,0,6,5,0,0,6,5,0,0,6,5,0,0,6,5,0,0,6,5,0,0,8,5,0,0,10,5,0,0,10,5,0,0,14,5,0,0,16,5,0,0,16,5,0,0,16,5,0,0,18,5,0,0,20,5,0,0,20,5,0,0,22,5,0,0,26,5,0,0,26,5,0,0,28,5,0,0,28,5,0,0,30,5,0,0,32,5,0,0,32,5,0,0,32,5,0,0,32,5,0,0,32,5,0,0,32,5,0,0,34,5,0,0,36,5,0,0,38,5,0,0,38,5,0,0,38,5,0,0,42,5,0,0,42,5,0,0,42,5,0,0,44,5,0,0,44,5,0,0,44,5,0,0,44,5,0,0,46,5,0,0,46,5,0,0,48,5,0,0,48,5,0,0,50,5,0,0,50,5,0,0,52,5,0,0,54,5,0,0,54,5,0,0,54,5,0,0,54,5,0,0,54,5,0,0,56,5,0,0,56,5,0,0,56,5,0,0,56,5,0,0,56,5,0,0,60,5,0,0,62,5,0,0,62,5,0,0,62,5,0,0,64,5,0,0,66,5,0,0,66,5,0,0,68,5,0,0,68,5,0,0,68,5,0,0,70,5,0,0,70,5,0,0,70,5,0,0,72,5,0,0,74,5,0,0,76,5,0,0,78,5,0,0,80,5,0,0,80,5,0,0,86,5,0,0,88,5,0,0,88,5,0,0,88,5,0,0,88,5,0,0,88,5,0,0,92,5,0,0,92,5,0,0,94,5,0,0,98,5,0,0,98,5,0,0,98,5,0,0,102,5,0,0,104,5,0,0,104,5,0,0,104,5,0,0,106,5,0,0,108,5,0,0,112,5,0,0,116,5,0,0,116,5,0,0,116,5,0,0,116,5,0,0,116,5,0,0,116,5,0,0,118,5,0,0,120,5,0,0,122,5,0,0,122,5,0,0,126,5,0,0,128,5,0,0,130,5,0,0,132,5,0,0,134,5,0,0,136,5,0,0,136,5,0,0,138,5,0,0,138,5,0,0,140,5,0,0,140,5,0,0,142,5,0,0,144,5,0,0,144,5,0,0,144,5,0,0,146,5,0,0,148,5,0,0,150,5,0,0,150,5,0,0,150,5,0,0,154,5,0,0,156,5,0,0,156,5,0,0,156,5,0,0,156,5,0,0,156,5,0,0,156,5,0,0,156,5,0,0,156,5,0,0,160,5,0,0,160,5,0,0,164,5,0,0,164,5,0,0,164,5,0,0,166,5,0,0,168,5,0,0,168,5,0,0,168,5,0,0,168,5,0,0,168,5,0,0,170,5,0,0,170,5,0,0,172,5,0,0,172,5,0,0,172,5,0,0,174,5,0,0,174,5,0,0,174,5,0,0,176,5,0,0,176,5,0,0,176,5,0,0,176,5,0,0,178,5,0,0,180,5,0,0,180,5,0,0,182,5,0,0,184,5,0,0,184,5,0,0,186,5,0,0,186,5,0,0,186,5,0,0,186,5,0,0,188,5,0,0,190,5,0,0,190,5,0,0,190,5,0,0,192,5,0,0,192,5,0,0,194,5,0,0,194,5,0,0,196,5,0,0,198,5,0,0,198,5,0,0,200,5,0,0,204,5,0,0,208,5,0,0,210,5,0,0,214,5,0,0,214,5,0,0,214,5,0,0,214,5,0,0,216,5,0,0,218,5,0,0,218,5,0,0,218,5,0,0,218,5,0,0,218,5,0,0,218,5,0,0,218,5,0,0,218,5,0,0,220,5,0,0,220,5,0,0,220,5,0,0,222,5,0,0,222,5,0,0,224,5,0,0,226,5,0,0,226,5,0,0,228,5,0,0,230,5,0,0,230,5,0,0,230,5,0,0,230,5,0,0,232,5,0,0,232,5,0,0,232,5,0,0,232,5,0,0,232,5,0,0,238,5,0,0,240,5,0,0,242,5,0,0,242,5,0,0,242,5,0,0,244,5,0,0,248,5,0,0,250,5,0,0,250,5,0,0,252,5,0,0,254,5,0,0,254,5,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,4,6,0,0,4,6,0,0,4,6,0,0,4,6,0,0,4,6,0,0,4,6,0,0,4,6,0,0,4,6,0,0,4,6,0,0,4,6,0,0,4,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,8,6,0,0,8,6,0,0,8,6,0,0,12,6,0,0,12,6,0,0,12,6,0,0,14,6,0,0,14,6,0,0,16,6,0,0,20,6,0,0,22,6,0,0,22,6,0,0,22,6,0,0,24,6,0,0,26,6,0,0,26,6,0,0,32,6,0,0,32,6,0,0,32,6,0,0,34,6,0,0,34,6,0,0,34,6,0,0,36,6,0,0,40,6,0,0,42,6,0,0,42,6,0,0,42,6,0,0,42,6,0,0,42,6,0,0,46,6,0,0,52,6,0,0,52,6,0,0,52,6,0,0,52,6,0,0,54,6,0,0,56,6,0,0,56,6,0,0,56,6,0,0,56,6,0,0,56,6,0,0,58,6,0,0,58,6,0,0,58,6,0,0,58,6,0,0,60,6,0,0,60,6,0,0,60,6,0,0,60,6,0,0,60,6,0,0,60,6,0,0,60,6,0,0,66,6,0,0,66,6,0,0,66,6,0,0,66,6,0,0,66,6,0,0,66,6,0,0,68,6,0,0,68,6,0,0,68,6,0,0,70,6,0,0,70,6,0,0,70,6,0,0,70,6,0,0,70,6,0,0,72,6,0,0,72,6,0,0,74,6,0,0,74,6,0,0,74,6,0,0,74,6,0,0,74,6,0,0,74,6,0,0,76,6,0,0,76,6,0,0,76,6,0,0,76,6,0,0,76,6,0,0,76,6,0,0,76,6,0,0,78,6,0,0,80,6,0,0,80,6,0,0,80,6,0,0,82,6,0,0,82,6,0,0,84,6,0,0,84,6,0,0,88,6,0,0,88,6,0,0,88,6,0,0,90,6,0,0,92,6,0,0,94,6,0,0,98,6,0,0,98,6,0,0,100,6,0,0,102,6,0,0,102,6,0,0,102,6,0,0,102,6,0,0,102,6,0,0,102,6,0,0,102,6,0,0,106,6,0,0,106,6,0,0,106,6,0,0,106,6,0,0,106,6,0,0,106,6,0,0,106,6,0,0,106,6,0,0,106,6,0,0,106,6,0,0,106,6,0,0,108,6,0,0,110,6,0,0,110,6,0,0,110,6,0,0,110,6,0,0,110,6,0,0,112,6,0,0,118,6,0,0,118,6,0,0,118,6,0,0,122,6,0,0,124,6,0,0,124,6,0,0,124,6,0,0,126,6,0,0,128,6,0,0,128,6,0,0,130,6,0,0,134,6,0,0,134,6,0,0,138,6,0,0,140,6,0,0,142,6,0,0,146,6,0,0,146,6,0,0,148,6,0,0,152,6,0,0,154,6,0,0,154,6,0,0,158,6,0,0,158,6,0,0,158,6,0,0,158,6,0,0,158,6,0,0,158,6,0,0,160,6,0,0,162,6,0,0,162,6,0,0,162,6,0,0,162,6,0,0,162,6,0,0,162,6,0,0,164,6,0,0,164,6,0,0,164,6,0,0,166,6,0,0,166,6,0,0,168,6,0,0,168,6,0,0,168,6,0,0,170,6,0,0,170,6,0,0,172,6,0,0,172,6,0,0,172,6,0,0,172,6,0,0,172,6,0,0,172,6,0,0,174,6,0,0,174,6,0,0,176,6,0,0,176,6,0,0,176,6,0,0,178,6,0,0,178,6,0,0,178,6,0,0,180,6,0,0,180,6,0,0,180,6,0,0,180,6,0,0,180,6,0,0,182,6,0,0,182,6,0,0,182,6,0,0,184,6,0,0,184,6,0,0,186,6,0,0,186,6,0,0,186,6,0,0,188,6,0,0,190,6,0,0,190,6,0,0,190,6,0,0,190,6,0,0,192,6,0,0,192,6,0,0,194,6,0,0,198,6,0,0,200,6,0,0,200,6,0,0,200,6,0,0,202,6,0,0,202,6,0,0,206,6,0,0,208,6,0,0,210,6,0,0,210,6,0,0,212,6,0,0,212,6,0,0,216,6,0,0,216,6,0,0,216,6,0,0,216,6,0,0,218,6,0,0,218,6,0,0,218,6,0,0,222,6,0,0,222,6,0,0,226,6,0,0,228,6,0,0,228,6,0,0,228,6,0,0,228,6,0,0,230,6,0,0,232,6,0,0,232,6,0,0,234,6,0,0,236,6,0,0,236,6,0,0,236,6,0,0,240,6,0,0,240,6,0,0,240,6,0,0,242,6,0,0,242,6,0,0,244,6,0,0,246,6,0,0,248,6,0,0,248,6,0,0,250,6,0,0,250,6,0,0,252,6,0,0,252,6,0,0,252,6,0,0,254,6,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,2,7,0,0,2,7,0,0,2,7,0,0,2,7,0,0,4,7,0,0,4,7,0,0,6,7,0,0,8,7,0,0,10,7,0,0,10,7,0,0,10,7,0,0,10,7,0,0,12,7,0,0,14,7,0,0,16,7,0,0,16,7,0,0,16,7,0,0,18,7,0,0,18,7,0,0,20,7,0,0,20,7,0,0,20,7,0,0,24,7,0,0,26,7,0,0,26,7,0,0,28,7,0,0,30,7,0,0,30,7,0,0,30,7,0,0,30,7,0,0,30,7,0,0,32,7,0,0,32,7,0,0,34,7,0,0,34,7,0,0,36,7,0,0,38,7,0,0,38,7,0,0,40,7,0,0,40,7,0,0,40,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,46,7,0,0,48,7,0,0,50,7,0,0,52,7,0,0,52,7,0,0,52,7,0,0,52,7,0,0,52,7,0,0,54,7,0,0,54,7,0,0,60,7,0,0,62,7,0,0,62,7,0,0,64,7,0,0,64,7,0,0,66,7,0,0,68,7,0,0,68,7,0,0,68,7,0,0,68,7,0,0,74,7,0,0,76,7,0,0,76,7,0,0,76,7,0,0,80,7,0,0,80,7,0,0,80,7,0,0,80,7,0,0,80,7,0,0,80,7,0,0,80,7,0,0,80,7,0,0,82,7,0,0,84,7,0,0,84,7,0,0,84,7,0,0,86,7,0,0,86,7,0,0,86,7,0,0,86,7,0,0,88,7,0,0,88,7,0,0,90,7,0,0,90,7,0,0,94,7,0,0,96,7,0,0,96,7,0,0,96,7,0,0,98,7,0,0,98,7,0,0,98,7,0,0,102,7,0,0,102,7,0,0,102,7,0,0,102,7,0,0,102,7,0,0,102,7,0,0,102,7,0,0,102,7,0,0,104,7,0,0,104,7,0,0,104,7,0,0,106,7,0,0,106,7,0,0,106,7,0,0,106,7,0,0,106,7,0,0,106,7,0,0,106,7,0,0,106,7,0,0,108,7,0,0,108,7,0,0,108,7,0,0,108,7,0,0,110,7,0,0,110,7,0,0,110,7,0,0,110,7,0,0,114,7,0,0,118,7,0,0,118,7,0,0,118,7,0,0,120,7,0,0,120,7,0,0,122,7,0,0,124,7,0,0,124,7,0,0,124,7,0,0,124,7,0,0,124,7,0,0,126,7,0,0,130,7,0,0,130,7,0,0,134,7,0,0,134,7,0,0,134,7,0,0,136,7,0,0,136,7,0,0,136,7,0,0,138,7,0,0,138,7,0,0,138,7,0,0,138,7,0,0,138,7,0,0,140,7,0,0,142,7,0,0,142,7,0,0,142,7,0,0,142,7,0,0,142,7,0,0,142,7,0,0,142,7,0,0,142,7,0,0,142,7,0,0,142,7,0,0,144,7,0,0,144,7,0,0,148,7,0,0,148,7,0,0,152,7,0,0,152,7,0,0,152,7,0,0,152,7,0,0,152,7,0,0,154,7,0,0,154,7,0,0,154,7,0,0,154,7,0,0,154,7,0,0,156,7,0,0,158,7,0,0,158,7,0,0,160,7,0,0,160,7,0,0,160,7,0,0,164,7,0,0,164,7,0,0,168,7,0,0,168,7,0,0,170,7,0,0,174,7,0,0,176,7,0,0,176,7,0,0,176,7,0,0,182,7,0,0,184,7,0,0,186,7,0,0,188,7,0,0,188,7,0,0,188,7,0,0,188,7,0,0,188,7,0,0,188,7,0,0,188,7,0,0,190,7,0,0,190,7,0,0,190,7,0,0,190,7,0,0,192,7,0,0,192,7,0,0,194,7,0,0,196,7,0,0,196,7,0,0,198,7,0,0,200,7,0,0,202,7,0,0,204,7,0,0,204,7,0,0,206,7,0,0,208,7,0,0,208,7,0,0,208,7,0,0,212,7,0,0,214,7,0,0,216,7,0,0,216,7,0,0,218,7,0,0,222,7,0,0,222,7,0,0,222,7,0,0,222,7,0,0,222,7,0,0,222,7,0,0,224,7,0,0,224,7,0,0,224,7,0,0,226,7,0,0,228,7,0,0,230,7,0,0,230,7,0,0,232,7,0,0,232,7,0,0,232,7,0,0,234,7,0,0,234,7,0,0,236,7,0,0,238,7,0,0,238,7,0,0,238,7,0,0,240,7,0,0,240,7,0,0,242,7,0,0,242,7,0,0,242,7,0,0,242,7,0,0,242,7,0,0,242,7,0,0,242,7,0,0,242,7,0,0,242,7,0,0,242,7,0,0,242,7,0,0,244,7,0,0,244,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,248,7,0,0,250,7,0,0,250,7,0,0,250,7,0,0,250,7,0,0,252,7,0,0,252,7,0,0,252,7,0,0,252,7,0,0,254,7,0,0,0,8,0,0,0,8,0,0,2,8,0,0,2,8,0,0,4,8,0,0,6,8,0,0,8,8,0,0,8,8,0,0,10,8,0,0,12,8,0,0,12,8,0,0,12,8,0,0,12,8,0,0,12,8,0,0,12,8,0,0,14,8,0,0,14,8,0,0,16,8,0,0,18,8,0,0,18,8,0,0,20,8,0,0,24,8,0,0,26,8,0,0,26,8,0,0,28,8,0,0,34,8,0,0,34,8,0,0,34,8,0,0,36,8,0,0,38,8,0,0,38,8,0,0,40,8,0,0,42,8,0,0,44,8,0,0,44,8,0,0,44,8,0,0,44,8,0,0,44,8,0,0,46,8,0,0,46,8,0,0,46,8,0,0,46,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,52,8,0,0,56,8,0,0,56,8,0,0,56,8,0,0,56,8,0,0,58,8,0,0,62,8,0,0,62,8,0,0,68,8,0,0,68,8,0,0,70,8,0,0,70,8,0,0,70,8,0,0,70,8,0,0,70,8,0,0,72,8,0,0,76,8,0,0,76,8,0,0,78,8,0,0,78,8,0,0,78,8,0,0,78,8,0,0,80,8,0,0,80,8,0,0,80,8,0,0,80,8,0,0,80,8,0,0,82,8,0,0,82,8,0,0,82,8,0,0,82,8,0,0,82,8,0,0,82,8,0,0,84,8,0,0,86,8,0,0,86,8,0,0,86,8,0,0,90,8,0,0,92,8,0,0,94,8,0,0,96,8,0,0,98,8,0,0,102,8,0,0,102,8,0,0,102,8,0,0,102,8,0,0,102,8,0,0,106,8,0,0,106,8,0,0,108,8,0,0,108,8,0,0,108,8,0,0,110,8,0,0,112,8,0,0,114,8,0,0,114,8,0,0,114,8,0,0,118,8,0,0,118,8,0,0,120,8,0,0,120,8,0,0,122,8,0,0,122,8,0,0,122,8,0,0,122,8,0,0,122,8,0,0,122,8,0,0,122,8,0,0,122,8,0,0,124,8,0,0,124,8,0,0,124,8,0,0,128,8,0,0,130,8,0,0,130,8,0,0,132,8,0,0,132,8,0,0,134,8,0,0,134,8,0,0,134,8,0,0,136,8,0,0,136,8,0,0,136,8,0,0,142,8,0,0,142,8,0,0,148,8,0,0,150,8,0,0,150,8,0,0,150,8,0,0,150,8,0,0,150,8,0,0,154,8,0,0,156,8,0,0,156,8,0,0,158,8,0,0,160,8,0,0,162,8,0,0,164,8,0,0,166,8,0,0,166,8,0,0,168,8,0,0,168,8,0,0,168,8,0,0,168,8,0,0,168,8,0,0,170,8,0,0,170,8,0,0,174,8,0,0,174,8,0,0,174,8,0,0,176,8,0,0,176,8,0,0,178,8,0,0,178,8,0,0,180,8,0,0,180,8,0,0,180,8,0,0,180,8,0,0,184,8,0,0,186,8,0,0,186,8,0,0,190,8,0,0,190,8,0,0,190,8,0,0,190,8,0,0,190,8,0,0,192,8,0,0,194,8,0,0,194,8,0,0,194,8,0,0,194,8,0,0,196,8,0,0,200,8,0,0,200,8,0,0,200,8,0,0,200,8,0,0,202,8,0,0,202,8,0,0,202,8,0,0,204,8,0,0,204,8,0,0,208,8,0,0,210,8,0,0,210,8,0,0,212,8,0,0,212,8,0,0,214,8,0,0,214,8,0,0,214,8,0,0,214,8,0,0,216,8,0,0,216,8,0,0,216,8,0,0,216,8,0,0,218,8,0,0,218,8,0,0,218,8,0,0,218,8,0,0,218,8,0,0,218,8,0,0,218,8,0,0,220,8,0,0,220,8,0,0,222,8,0,0,226,8,0,0,226,8,0,0,226,8,0,0,228,8,0,0,232,8,0,0,236,8,0,0,240,8,0,0,240,8,0,0,240,8,0,0,240,8,0,0,240,8,0,0,240,8,0,0,240,8,0,0,240,8,0,0,242,8,0,0,242,8,0,0,242,8,0,0,244,8,0,0,246,8,0,0,246,8,0,0,248,8,0,0,248,8,0,0,248,8,0,0,248,8,0,0,248,8,0,0,248,8,0,0,248,8,0,0,250,8,0,0,252,8,0,0,254,8,0,0,4,9,0,0,4,9,0,0,4,9,0,0,4,9,0,0,4,9,0,0,4,9,0,0,6,9,0,0,8,9,0,0,8,9,0,0,8,9,0,0,8,9,0,0,8,9,0,0,10,9,0,0,10,9,0,0,12,9,0,0,14,9,0,0,14,9,0,0,16,9,0,0,16,9,0,0,18,9,0,0,18,9,0,0,20,9,0,0,20,9,0,0,20,9,0,0,20,9,0,0,20,9,0,0,20,9,0,0,24,9,0,0,26,9,0,0,26,9,0,0,26,9,0,0,26,9,0,0,28,9,0,0,28,9,0,0,28,9,0,0,30,9,0,0,30,9,0,0,32,9,0,0,32,9,0,0,32,9,0,0,32,9,0,0,32,9,0,0,32,9,0,0,32,9,0,0,34,9,0,0,38,9,0,0,40,9,0,0,40,9,0,0,42,9,0,0,42,9,0,0,42,9,0,0,42,9,0,0,42,9,0,0,44,9,0,0,44,9,0,0,44,9,0,0,44,9,0,0,48,9,0,0,48,9,0,0,48,9,0,0,50,9,0,0,50,9,0,0,50,9,0,0,50,9,0,0,52,9,0,0,54,9,0,0,54,9,0,0,56,9,0,0,56,9,0,0,56,9,0,0,56,9,0,0,56,9,0,0,58,9,0,0,58,9,0,0,58,9,0,0,58,9,0,0,58,9,0,0,58,9,0,0,62,9,0,0,62,9,0,0,62,9,0,0,62,9,0,0,62,9,0,0,64,9,0,0,64,9,0,0,64,9,0,0,66,9,0,0,66,9,0,0,68,9,0,0,70,9,0,0,70,9,0,0,70,9,0,0,72,9,0,0,72,9,0,0,74,9,0,0,74,9,0,0,74,9,0,0,74,9,0,0,76,9,0,0,76,9,0,0,78,9,0,0,80,9,0,0,80,9,0,0,84,9,0,0,84,9,0,0,86,9,0,0,86,9,0,0,86,9,0,0,86,9,0,0,86,9,0,0,86,9,0,0,86,9,0,0,88,9,0,0,88,9,0,0,92,9,0,0,92,9,0,0,96,9,0,0,96,9,0,0,96,9,0,0,98,9,0,0,98,9,0,0,98,9,0,0,98,9,0,0,100,9,0,0,102,9,0,0,106,9,0,0,106,9,0,0,106,9,0,0,106,9,0,0,110,9,0,0,110,9,0,0,110,9,0,0,110,9,0,0,112,9,0,0,112,9,0,0,118,9,0,0,120,9,0,0,122,9,0,0,122,9,0,0,126,9,0,0,130,9,0,0,130,9,0,0,130,9,0,0,130,9,0,0,130,9,0,0,130,9,0,0,134,9,0,0,136,9,0,0,136,9,0,0,140,9,0,0,140,9,0,0,140,9,0,0,142,9,0,0,144,9,0,0,146,9,0,0,146,9,0,0,146,9,0,0,146,9,0,0,146,9,0,0,148,9,0,0,148,9,0,0,148,9,0,0,150,9,0,0,150,9,0,0,152,9,0,0,152,9,0,0,152,9,0,0,152,9,0,0,152,9,0,0,152,9,0,0,152,9,0,0,152,9,0,0,154,9,0,0,156,9,0,0,156,9,0,0,156,9,0,0,158,9,0,0,158,9,0,0,158,9,0,0,158,9,0,0,158,9,0,0,160,9,0,0,160,9,0,0,160,9,0,0,162,9,0,0,166,9,0,0,166,9,0,0,166,9,0,0,166,9,0,0,166,9,0,0,166,9,0,0,166,9,0,0,166,9,0,0,166,9,0,0,166,9,0,0,168,9,0,0,168,9,0,0,170,9,0,0,170,9,0,0,170,9,0,0,170,9,0,0,170,9,0,0,172,9,0,0,172,9,0,0,172,9,0,0,172,9,0,0,172,9,0,0,172,9,0,0,172,9,0,0,174,9,0,0,174,9,0,0,174,9,0,0,176,9,0,0,176,9,0,0,176,9,0,0,176,9,0,0,176,9,0,0,176,9,0,0,176,9,0,0,176,9,0,0,180,9,0,0,180,9,0,0,180,9,0,0,182,9,0,0,186,9,0,0,186,9,0,0,186,9,0,0,192,9,0,0,192,9,0,0,192,9,0,0,192,9,0,0,192,9,0,0,196,9,0,0,202,9,0,0,202,9,0,0,202,9,0,0,204,9,0,0,206,9,0,0,206,9,0,0,206,9,0,0,206,9,0,0,210,9,0,0,212,9,0,0,212,9,0,0,212,9,0,0,212,9,0,0,216,9,0,0,216,9,0,0,216,9,0,0,220,9,0,0,220,9,0,0,222,9,0,0,224,9,0,0,226,9,0,0,226,9,0,0,226,9,0,0,228,9,0,0,228,9,0,0,228,9,0,0,228,9,0,0,230,9,0,0,232,9,0,0,238,9,0,0,240,9,0,0,240,9,0,0,240,9,0,0,242,9,0,0,244,9,0,0,244,9,0,0,244,9,0,0,244,9,0,0,244,9,0,0,244,9,0,0,244,9,0,0,244,9,0,0,246,9,0,0,246,9,0,0,246,9,0,0,248,9,0,0,248,9,0,0,248,9,0,0,248,9,0,0,250,9,0,0,252,9,0,0,252,9,0,0,0,10,0,0,0,10,0,0,4,10,0,0,6,10,0,0,8,10,0,0,8,10,0,0,10,10,0,0,10,10,0,0,12,10,0,0,12,10,0,0,14,10,0,0,14,10,0,0,14,10,0,0,14,10,0,0,14,10,0,0,16,10,0,0,16,10,0,0,16,10,0,0,16,10,0,0,18,10,0,0,20,10,0,0,24,10,0,0,24,10,0,0,24,10,0,0,24,10,0,0,24,10,0,0,24,10,0,0,24,10,0,0,24,10,0,0,24,10,0,0,24,10,0,0,28,10,0,0,28,10,0,0,30,10,0,0,30,10,0,0,30,10,0,0,36,10,0,0,38,10,0,0,38,10,0,0,40,10,0,0,40,10,0,0,44,10,0,0,44,10,0,0,48,10,0,0,48,10,0,0,48,10,0,0,52,10,0,0,52,10,0,0,52,10,0,0,52,10,0,0,52,10,0,0,52,10,0,0,54,10,0,0,56,10,0,0,56,10,0,0,56,10,0,0,58,10,0,0,58,10,0,0,58,10,0,0,58,10,0,0,58,10,0,0,58,10,0,0,58,10,0,0,60,10,0,0,60,10,0,0,60,10,0,0,60,10,0,0,60,10,0,0,60,10,0,0,62,10,0,0,62,10,0,0,64,10,0,0,66,10,0,0,68,10,0,0,68,10,0,0,68,10,0,0,68,10,0,0,70,10,0,0,70,10,0,0,72,10,0,0,72,10,0,0,72,10,0,0,72,10,0,0,72,10,0,0,78,10,0,0,82,10,0,0,82,10,0,0,82,10,0,0,82,10,0,0,84,10,0,0,84,10,0,0,84,10,0,0,88,10,0,0,90,10,0,0,92,10,0,0,94,10,0,0,94,10,0,0,96,10,0,0,96,10,0,0,96,10,0,0,98,10,0,0,98,10,0,0,100,10,0,0,100,10,0,0,100,10,0,0,100,10,0,0,102,10,0,0,102,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,106,10,0,0,108,10,0,0,112,10,0,0,112,10,0,0,112,10,0,0,116,10,0,0,118,10,0,0,122,10,0,0,122,10,0,0,122,10,0,0,124,10,0,0,124,10,0,0,126,10,0,0,128,10,0,0,128,10,0,0,128,10,0,0,130,10,0,0,130,10,0,0,130,10,0,0,130,10,0,0,132,10,0,0,134,10,0,0,134,10,0,0,136,10,0,0,140,10,0,0,142,10,0,0,144,10,0,0,146,10,0,0,148,10,0,0,148,10,0,0,150,10,0,0,150,10,0,0,150,10,0,0,150,10,0,0,150,10,0,0,156,10,0,0,156,10,0,0,160,10,0,0,162,10,0,0,164,10,0,0,164,10,0,0,164,10,0,0,164,10,0,0,164,10,0,0,166,10,0,0,168,10,0,0,168,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,172,10,0,0,172,10,0,0,172,10,0,0,174,10,0,0,174,10,0,0,174,10,0,0,174,10,0,0,174,10,0,0,174,10,0,0,174,10,0,0,174,10,0,0,176,10,0,0,176,10,0,0,178,10,0,0,178,10,0,0,178,10,0,0,178,10,0,0,178,10,0,0,180,10,0,0,180,10,0,0,180,10,0,0,180,10,0,0,180,10,0,0,182,10,0,0,186,10,0,0,186,10,0,0,186,10,0,0,188,10,0,0,192,10,0,0,192,10,0,0,192,10,0,0,194,10,0,0,194,10,0,0,198,10,0,0,200,10,0,0,200,10,0,0,202,10,0,0,204,10,0,0,204,10,0,0,204,10,0,0,206,10,0,0,206,10,0,0,206,10,0,0,220,10,0,0,222,10,0,0,226,10,0,0,226,10,0,0,226,10,0,0,226,10,0,0,228,10,0,0,230,10,0,0,230,10,0,0,232,10,0,0,232,10,0,0,232,10,0,0,234,10,0,0,234,10,0,0,236,10,0,0,238,10,0,0,238,10,0,0,240,10,0,0,240,10,0,0,240,10,0,0,240,10,0,0,240,10,0,0,244,10,0,0,244,10,0,0,244,10,0,0,244,10,0,0,246,10,0,0,250,10,0,0,250,10,0,0,250,10,0,0,250,10,0,0,250,10,0,0,0,11,0,0,0,11,0,0,0,11,0,0,0,11,0,0,0,11,0,0,0,11,0,0,2,11,0,0,2,11,0,0,4,11,0,0,4,11,0,0,6,11,0,0,6,11,0,0,6,11,0,0,6,11,0,0,8,11,0,0,10,11,0,0,12,11,0,0,14,11,0,0,16,11,0,0,18,11,0,0,20,11,0,0,22,11,0,0,24,11,0,0,24,11,0,0,28,11,0,0,30,11,0,0,30,11,0,0,32,11,0,0,32,11,0,0,34,11,0,0,36,11,0,0,36,11,0,0,38,11,0,0,38,11,0,0,38,11,0,0,38,11,0,0,38,11,0,0,38,11,0,0,38,11,0,0,40,11,0,0,40,11,0,0,40,11,0,0,40,11,0,0,40,11,0,0,40,11,0,0,40,11,0,0,40,11,0,0,42,11,0,0,44,11,0,0,44,11,0,0,44,11,0,0,44,11,0,0,44,11,0,0,46,11,0,0,46,11,0,0,48,11,0,0,48,11,0,0,50,11,0,0,52,11,0,0,54,11,0,0,56,11,0,0,56,11,0,0,56,11,0,0,58,11,0,0,60,11,0,0,62,11,0,0,62,11,0,0,62,11,0,0,66,11,0,0,70,11,0,0,70,11,0,0,70,11,0,0,70,11,0,0,70,11,0,0,70,11,0,0,70,11,0,0,72,11,0,0,74,11,0,0,74,11,0,0,74,11,0,0,78,11,0,0,78,11,0,0,78,11,0,0,78,11,0,0,78,11,0,0,82,11,0,0,84,11,0,0,84,11,0,0,84,11,0,0,84,11,0,0,84,11,0,0,84,11,0,0,86,11,0,0,88,11,0,0,90,11,0,0,90,11,0,0,90,11,0,0,92,11,0,0,94,11,0,0,96,11,0,0,96,11,0,0,96,11,0,0,98,11,0,0,102,11,0,0,102,11,0,0,104,11,0,0,104,11,0,0,104,11,0,0,104,11,0,0,106,11,0,0,108,11,0,0,110,11,0,0,110,11,0,0,112,11,0,0,112,11,0,0,112,11,0,0,112,11,0,0,118,11,0,0,122,11,0,0,122,11,0,0,126,11,0,0,130,11,0,0,134,11,0,0,134,11,0,0,136,11,0,0,136,11,0,0,140,11,0,0,142,11,0,0,142,11,0,0,144,11,0,0,146,11,0,0,146,11,0,0,146,11,0,0,146,11,0,0,146,11,0,0,148,11,0,0,148,11,0,0,148,11,0,0,150,11,0,0,150,11,0,0,150,11,0,0,150,11,0,0,150,11,0,0,150,11,0,0,150,11,0,0,150,11,0,0,150,11,0,0,150,11,0,0,152,11,0,0,152,11,0,0,154,11,0,0,156,11,0,0,158,11,0,0,158,11,0,0,158,11,0,0,158,11,0,0,162,11,0,0,170,11,0,0,172,11,0,0,172,11,0,0,172,11,0,0,174,11,0,0,174,11,0,0,176,11,0,0,176,11,0,0,178,11,0,0,178,11,0,0,180,11,0,0,180,11,0,0,180,11,0,0,184,11,0,0,186,11,0,0,188,11,0,0,190,11,0,0,190,11,0,0,190,11,0,0,190,11,0,0,192,11,0,0,196,11,0,0,202,11,0,0,204,11,0,0,206,11,0,0,206,11,0,0,208,11,0,0,208,11,0,0,210,11,0,0,210,11,0,0,212,11,0,0,212,11,0,0,212,11,0,0,216,11,0,0,216,11,0,0,216,11,0,0,218,11,0,0,224,11,0,0,224,11,0,0,224,11,0,0,224,11,0,0,224,11,0,0,224,11,0,0,224,11,0,0,224,11,0,0,228,11,0,0,228,11,0,0,228,11,0,0,228,11,0,0,228,11,0,0,228,11,0,0,228,11,0,0,228,11,0,0,228,11,0,0,228,11,0,0,230,11,0,0,232,11,0,0,232,11,0,0,234,11,0,0,236,11,0,0,236,11,0,0,236,11,0,0,236,11,0,0,238,11,0,0,238,11,0,0,238,11,0,0,240,11,0,0,240,11,0,0,240,11,0,0,244,11,0,0,244,11,0,0,248,11,0,0,248,11,0,0,252,11,0,0,254,11,0,0,0,12,0,0,2,12,0,0,2,12,0,0,4,12,0,0,4,12,0,0,4,12,0,0,4,12,0,0,6,12,0,0,6,12,0,0,6,12,0,0,6,12,0,0,8,12,0,0,8,12,0,0,8,12,0,0,10,12,0,0,10,12,0,0,10,12,0,0,12,12,0,0,12,12,0,0,14,12,0,0,16,12,0,0,16,12,0,0,16,12,0,0,16,12,0,0,16,12,0,0,16,12,0,0,16,12,0,0,16,12,0,0,16,12,0,0,16,12,0,0,18,12,0,0,18,12,0,0,20,12,0,0,20,12,0,0,20,12,0,0,22,12,0,0,22,12,0,0,24,12,0,0,24,12,0,0,24,12,0,0,24,12,0,0,26,12,0,0,26,12,0,0,28,12,0,0,28,12,0,0,28,12,0,0,32,12,0,0,32,12,0,0,34,12,0,0,34,12,0,0,34,12,0,0,34,12,0,0,34,12,0,0,34,12,0,0,34,12,0,0,38,12,0,0,40,12,0,0,42,12,0,0,42,12,0,0,44,12,0,0,46,12,0,0,46,12,0,0,50,12,0,0,50,12,0,0,50,12,0,0,52,12,0,0,54,12,0,0,54,12,0,0,56,12,0,0,56,12,0,0,56,12,0,0,56,12,0,0,58,12,0,0,58,12,0,0,58,12,0,0,58,12,0,0,58,12,0,0,58,12,0,0,60,12,0,0,60,12,0,0,60,12,0,0,60,12,0,0,60,12,0,0,60,12,0,0,62,12,0,0,62,12,0,0,62,12,0,0,62,12,0,0,62,12,0,0,64,12,0,0,64,12,0,0,64,12,0,0,64,12,0,0,66,12,0,0,66,12,0,0,66,12,0,0,70,12,0,0,70,12,0,0,70,12,0,0,70,12,0,0,70,12,0,0,70,12,0,0,70,12,0,0,72,12,0,0,74,12,0,0,76,12,0,0,76,12,0,0,76,12,0,0,76,12,0,0,78,12,0,0,80,12,0,0,82,12,0,0,86,12,0,0,86,12,0,0,86,12,0,0,86,12,0,0,88,12,0,0,88,12,0,0,92,12,0,0,96,12,0,0,98,12,0,0,98,12,0,0,98,12,0,0,98,12,0,0,100,12,0,0,100,12,0,0,100,12,0,0,102,12,0,0,104,12,0,0,104,12,0,0,104,12,0,0,104,12,0,0,104,12,0,0,104,12,0,0,106,12,0,0,106,12,0,0,108,12,0,0,108,12,0,0,108,12,0,0,108,12,0,0,110,12,0,0,112,12,0,0,112,12,0,0,116,12,0,0,118,12,0,0,120,12,0,0,122,12,0,0,122,12,0,0,122,12,0,0,122,12,0,0,124,12,0,0,128,12,0,0,132,12,0,0,132,12,0,0,134,12,0,0,136,12,0,0,136,12,0,0,136,12,0,0,136,12,0,0,136,12,0,0,138,12,0,0,140,12,0,0,140,12,0,0,142,12,0,0,144,12,0,0,216,12,0,0,216,12,0,0,218,12,0,0,222,12,0,0,222,12,0,0,222,12,0,0,222,12,0,0,224,12,0,0,226,12,0,0,226,12,0,0,226,12,0,0,226,12,0,0,226,12,0,0,226,12,0,0,226,12,0,0,226,12,0,0,226,12,0,0,226,12,0,0,226,12,0,0,226,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,230,12,0,0,230,12,0,0,232,12,0,0,232,12,0,0,234,12,0,0,234,12,0,0,236,12,0,0,236,12,0,0,240,12,0,0,240,12,0,0,240,12,0,0,242,12,0,0,242,12,0,0,244,12,0,0,248,12,0,0,248,12,0,0,248,12,0,0,248,12,0,0,250,12,0,0,250,12,0,0,250,12,0,0,250,12,0,0,252,12,0,0,0,13,0,0,2,13,0,0,2,13,0,0,4,13,0,0,6,13,0,0,8,13,0,0,8,13,0,0,8,13,0,0,8,13,0,0,8,13,0,0,8,13,0,0,10,13,0,0,12,13,0,0,16,13,0,0,16,13,0,0,18,13,0,0,20,13,0,0,22,13,0,0,22,13,0,0,24,13,0,0,24,13,0,0,26,13,0,0,30,13,0,0,32,13,0,0,32,13,0,0,32,13,0,0,34,13,0,0,36,13,0,0,36,13,0,0,38,13,0,0,40,13,0,0,42,13,0,0,46,13,0,0,46,13,0,0,46,13,0,0,48,13,0,0,48,13,0,0,48,13,0,0,48,13,0,0,48,13,0,0,48,13,0,0,50,13,0,0,52,13,0,0,52,13,0,0,52,13,0,0,54,13,0,0,54,13,0,0,54,13,0,0,54,13,0,0,54,13,0,0,56,13,0,0,58,13,0,0,60,13,0,0,60,13,0,0,62,13,0,0,62,13,0,0,62,13,0,0,62,13,0,0,66,13,0,0,66,13,0,0,66,13,0,0,66,13,0,0,66,13,0,0,68,13,0,0,70,13,0,0,70,13,0,0,70,13,0,0,70,13,0,0,72,13,0,0,72,13,0,0,74,13,0,0,74,13,0,0,74,13,0,0,78,13,0,0,78,13,0,0,80,13,0,0,80,13,0,0,80,13,0,0,82,13,0,0,82,13,0,0,84,13,0,0,84,13,0,0,88,13,0,0,88,13,0,0,88,13,0,0,90,13,0,0,90,13,0,0,92,13,0,0,92,13,0,0,92,13,0,0,94,13,0,0,96,13,0,0,98,13,0,0,100,13,0,0,100,13,0,0,100,13,0,0,100,13,0,0,102,13,0,0,102,13,0,0,102,13,0,0,104,13,0,0,106,13,0,0,106,13,0,0,108,13,0,0,110,13,0,0,112,13,0,0,114,13,0,0,114,13,0,0,116,13,0,0,118,13,0,0,120,13,0,0,120,13,0,0,120,13,0,0,120,13,0,0,120,13,0,0,122,13,0,0,122,13,0,0,124,13,0,0,124,13,0,0,126,13,0,0,130,13,0,0,130,13,0,0,134,13,0,0,134,13,0,0,134,13,0,0,136,13,0,0,140,13,0,0,140,13,0,0,142,13,0,0,142,13,0,0,142,13,0,0,142,13,0,0,142,13,0,0,142,13,0,0,142,13,0,0,142,13,0,0,142,13,0,0,146,13,0,0,148,13,0,0,148,13,0,0,148,13,0,0,148,13,0,0,150,13,0,0,152,13,0,0,152,13,0,0,152,13,0,0,152,13,0,0,152,13,0,0,154,13,0,0,154,13,0,0,156,13,0,0,156,13,0,0,156,13,0,0,156,13,0,0,158,13,0,0,160,13,0,0,160,13,0,0,160,13,0,0,160,13,0,0,162,13,0,0,162,13,0,0,164,13,0,0,164,13,0,0,166,13,0,0,166,13,0,0,168,13,0,0,170,13,0,0,172,13,0,0,172,13,0,0,172,13,0,0,172,13,0,0,172,13,0,0,172,13,0,0,172,13,0,0,172,13,0,0,172,13,0,0,172,13,0,0,174,13,0,0,174,13,0,0,176,13,0,0,176,13,0,0,178,13,0,0,178,13,0,0,180,13,0,0,180,13,0,0,180,13,0,0,180,13,0,0,180,13,0,0,180,13,0,0,180,13,0,0,184,13,0,0,184,13,0,0,184,13,0,0,184,13,0,0,188,13,0,0,188,13,0,0,188,13,0,0,188,13,0,0,190,13,0,0,190,13,0,0,190,13,0,0,192,13,0,0,198,13,0,0,198,13,0,0,200,13,0,0,200,13,0,0,200,13,0,0,200,13,0,0,200,13,0,0,200,13,0,0,200,13,0,0,204,13,0,0,204,13,0,0,206,13,0,0,206,13,0,0,212,13,0,0,214,13,0,0,214,13,0,0,214,13,0,0,214,13,0,0,214,13,0,0,216,13,0,0,218,13,0,0,218,13,0,0,218,13,0,0,218,13,0,0,218,13,0,0,218,13,0,0,218,13,0,0,218,13,0,0,220,13,0,0,220,13,0,0,222,13,0,0,222,13,0,0,222,13,0,0,222,13,0,0,222,13,0,0,224,13,0,0,224,13,0,0,224,13,0,0,224,13,0,0,224,13,0,0,226,13,0,0,226,13,0,0,228,13,0,0,230,13,0,0,232,13,0,0,232,13,0,0,234,13,0,0,234,13,0,0,234,13,0,0,238,13,0,0,238,13,0,0,240,13,0,0,242,13,0,0,242,13,0,0,242,13,0,0,242,13,0,0,244,13,0,0,246,13,0,0,250,13,0,0,250,13,0,0,250,13,0,0,250,13,0,0,250,13,0,0,250,13,0,0,250,13,0,0,252,13,0,0,254,13,0,0,254,13,0,0,254,13,0,0,0,14,0,0,0,14,0,0,0,14,0,0,2,14,0,0,2,14,0,0,4,14,0,0,4,14,0,0,4,14,0,0,4,14,0,0,8,14,0,0,10,14,0,0,10,14,0,0,14,14,0,0,14,14,0,0,16,14,0,0,16,14,0,0,18,14,0,0,18,14,0,0,18,14,0,0,20,14,0,0,20,14,0,0,22,14,0,0,26,14,0,0,26,14,0,0,26,14,0,0,28,14,0,0,28,14,0,0,30,14,0,0,30,14,0,0,32,14,0,0,34,14,0,0,38,14,0,0,40,14,0,0,40,14,0,0,40,14,0,0,40,14,0,0,40,14,0,0,40,14,0,0,40,14,0,0,40,14,0,0,44,14,0,0,44,14,0,0,44,14,0,0,44,14,0,0,44,14,0,0,44,14,0,0,46,14,0,0,46,14,0,0,46,14,0,0,48,14,0,0,50,14,0,0,50,14,0,0,52,14,0,0,52,14,0,0,52,14,0,0,52,14,0,0,52,14,0,0,52,14,0,0,52,14,0,0,52,14,0,0,52,14,0,0,52,14,0,0,52,14,0,0,52,14,0,0,54,14,0,0,54,14,0,0,54,14,0,0,56,14,0,0,58,14,0,0,58,14,0,0,58,14,0,0,60,14,0,0,62,14,0,0,66,14,0,0,66,14,0,0,66,14,0,0,68,14,0,0,68,14,0,0,72,14,0,0,78,14,0,0,78,14,0,0,78,14,0,0,78,14,0,0,78,14,0,0,78,14,0,0,80,14,0,0,80,14,0,0,82,14,0,0,86,14,0,0,86,14,0,0,86,14,0,0,86,14,0,0,88,14,0,0,88,14,0,0,88,14,0,0,90,14,0,0,96,14,0,0,96,14,0,0,96,14,0,0,96,14,0,0,98,14,0,0,100,14,0,0,100,14,0,0,100,14,0,0,102,14,0,0,104,14,0,0,104,14,0,0,106,14,0,0,106,14,0,0,108,14,0,0,110,14,0,0,110,14,0,0,114,14,0,0,116,14,0,0,116,14,0,0,118,14,0,0,120,14,0,0,122,14,0,0,122,14,0,0,126,14,0,0,128,14,0,0,128,14,0,0,132,14,0,0,132,14,0,0,132,14,0,0,132,14,0,0,134,14,0,0,134,14,0,0,134,14,0,0,136,14,0,0,140,14,0,0,140,14,0,0,140,14,0,0,142,14,0,0,144,14,0,0,146,14,0,0,146,14,0,0,148,14,0,0,150,14,0,0,150,14,0,0,152,14,0,0,154,14,0,0,154,14,0,0,154,14,0,0,156,14,0,0,158,14,0,0,160,14,0,0,160,14,0,0,160,14,0,0,162,14,0,0,162,14,0,0,162,14,0,0,166,14,0,0,166,14,0,0,166,14,0,0,172,14,0,0,176,14,0,0,176,14,0,0,176,14,0,0,176,14,0,0,176,14,0,0,180,14,0,0,180,14,0,0,180,14,0,0,182,14,0,0,184,14,0,0,184,14,0,0,186,14,0,0,186,14,0,0,188,14,0,0,188,14,0,0,188,14,0,0,190,14,0,0,190,14,0,0,190,14,0,0,192,14,0,0,192,14,0,0,192,14,0,0,192,14,0,0,194,14,0,0,194,14,0,0,196,14,0,0,196,14,0,0,196,14,0,0,198,14,0,0,202,14,0,0,204,14,0,0,204,14,0,0,204,14,0,0,204,14,0,0,204,14,0,0,206,14,0,0,206,14,0,0,206,14,0,0,208,14,0,0,208,14,0,0,208,14,0,0,212,14,0,0,214,14,0,0,216,14,0,0,216,14,0,0,220,14,0,0,222,14,0,0,224,14,0,0,224,14,0,0,224,14,0,0,224,14,0,0,224,14,0,0,224,14,0,0,226,14,0,0,228,14,0,0,228,14,0,0,230,14,0,0,234,14,0,0,234,14,0,0,236,14,0,0,238,14,0,0,240,14,0,0,240,14,0,0,240,14,0,0,240,14,0,0,240,14,0,0,242,14,0,0,242,14,0,0,244,14,0,0,244,14,0,0,246,14,0,0,248,14,0,0,252,14,0,0,252,14,0,0,254,14,0,0,0,15,0,0,2,15,0,0,2,15,0,0,4,15,0,0,4,15,0,0,6,15,0,0,8,15,0,0,12,15,0,0,12,15,0,0,12,15,0,0,12,15,0,0,12,15,0,0,12,15,0,0,12,15,0,0,14,15,0,0,14,15,0,0,16,15,0,0,16,15,0,0,16,15,0,0,16,15,0,0,16,15,0,0,16,15,0,0,16,15,0,0,16,15,0,0,16,15,0,0,16,15,0,0,18,15,0,0,20,15,0,0,20,15,0,0,22,15,0,0,22,15,0,0,24,15,0,0,24,15,0,0,28,15,0,0,30,15,0,0,30,15,0,0,32,15,0,0,32,15,0,0,32,15,0,0,32,15,0,0,32,15,0,0,32,15,0,0,36,15,0,0,36,15,0,0,36,15,0,0,36,15,0,0,38,15,0,0,38,15,0,0,38,15,0,0,38,15,0,0,38,15,0,0,38,15,0,0,38,15,0,0,38,15,0,0,40,15,0,0,40,15,0,0,40,15,0,0,40,15,0,0,40,15,0,0,40,15,0,0,42,15,0,0,42,15,0,0,42,15,0,0,46,15,0,0,46,15,0,0,46,15,0,0,46,15,0,0,48,15,0,0,48,15,0,0,48,15,0,0,48,15,0,0,50,15,0,0,50,15,0,0,50,15,0,0,50,15,0,0,50,15,0,0,52,15,0,0,52,15,0,0,52,15,0,0,52,15,0,0,54,15,0,0,54,15,0,0,58,15,0,0,60,15,0,0,60,15,0,0,62,15,0,0,62,15,0,0,62,15,0,0,62,15,0,0,64,15,0,0,64,15,0,0,64,15,0,0,68,15,0,0,68,15,0,0,68,15,0,0,70,15,0,0,70,15,0,0,74,15,0,0,74,15,0,0,76,15,0,0,76,15,0,0,76,15,0,0,78,15,0,0,82,15,0,0,84,15,0,0,84,15,0,0,86,15,0,0,88,15,0,0,90,15,0,0,92,15,0,0,92,15,0,0,92,15,0,0,96,15,0,0,98,15,0,0,98,15,0,0,98,15,0,0,100,15,0,0,100,15,0,0,100,15,0,0,100,15,0,0,102,15,0,0,102,15,0,0,102,15,0,0,102,15,0,0,102,15,0,0,104,15,0,0,106,15,0,0,106,15,0,0,106,15,0,0,108,15,0,0,110,15,0,0,112,15,0,0,112,15,0,0,114,15,0,0,116,15,0,0,118,15,0,0,118,15,0,0,118,15,0,0,120,15,0,0,122,15,0,0,124,15,0,0,128,15,0,0,128,15,0,0,130,15,0,0,130,15,0,0,132,15,0,0,132,15,0,0,134,15,0,0,134,15,0,0,136,15,0,0,138,15,0,0,138,15,0,0,138,15,0,0,138,15,0,0,138,15,0,0,138,15,0,0,140,15,0,0,142,15,0,0,144,15,0,0,144,15,0,0,144,15,0,0,144,15,0,0,146,15,0,0,150,15,0,0,150,15,0,0,150,15,0,0,152,15,0,0,156,15,0,0,156,15,0,0,156,15,0,0,158,15,0,0,160,15,0,0,162,15,0,0,162,15,0,0,162,15,0,0,162,15,0,0,164,15,0,0,164,15,0,0,166,15,0,0,166,15,0,0,166,15,0,0,166,15,0,0,166,15,0,0,168,15,0,0,172,15,0,0,172,15,0,0,172,15,0,0,174,15,0,0,174,15,0,0,174,15,0,0,178,15,0,0,178,15,0,0,178,15,0,0,178,15,0,0,178,15,0,0,178,15,0,0,178,15,0,0,178,15,0,0,178,15,0,0,178,15,0,0,178,15,0,0,180,15,0,0,182,15,0,0,182,15,0,0,188,15,0,0,188,15,0,0,188,15,0,0,188,15,0,0,188,15,0,0,188,15,0,0,190,15,0,0,196,15,0,0,200,15,0,0,200,15,0,0,200,15,0,0,202,15,0,0,202,15,0,0,202,15,0,0,206,15,0,0,208,15,0,0,210,15,0,0,210,15,0,0,210,15,0,0,210,15,0,0,210,15,0,0,210,15,0,0,210,15,0,0,210,15,0,0,210,15,0,0,212,15,0,0,214,15,0,0,214,15,0,0,214,15,0,0,214,15,0,0,214,15,0,0,214,15,0,0,214,15,0,0,216,15,0,0,216,15,0,0,216,15,0,0,218,15,0,0,222,15,0,0,222,15,0,0,226,15,0,0,228,15,0,0,230,15,0,0,232,15,0,0,232,15,0,0,234,15,0,0,238,15,0,0,238,15,0,0,246,15,0,0,250,15,0,0,254,15,0,0,254,15,0,0,254,15,0,0,254,15,0,0,254,15,0,0,254,15,0,0,254,15,0,0,0,16,0,0,0,16,0,0,0,16,0,0,2,16,0,0,2,16,0,0,6,16,0,0,6,16,0,0,8,16,0,0,8,16,0,0,12,16,0,0,16,16,0,0,16,16,0,0,20,16,0,0,20,16,0,0,22,16,0,0,26,16,0,0,26,16,0,0,28,16,0,0,28,16,0,0,30,16,0,0,32,16,0,0,34,16,0,0,34,16,0,0,34,16,0,0,34,16,0,0,34,16,0,0,34,16,0,0,34,16,0,0,36,16,0,0,36,16,0,0,36,16,0,0,38,16,0,0,40,16,0,0,40,16,0,0,44,16,0,0,44,16,0,0,44,16,0,0,44,16,0,0,44,16,0,0,46,16,0,0,48,16,0,0,48,16,0,0,48,16,0,0,48,16,0,0,48,16,0,0,48,16,0,0,50,16,0,0,50,16,0,0,50,16,0,0,52,16,0,0,52,16,0,0,54,16,0,0,54,16,0,0,54,16,0,0,56,16,0,0,56,16,0,0,58,16,0,0,58,16,0,0,58,16,0,0,58,16,0,0,58,16,0,0,58,16,0,0,58,16,0,0,58,16,0,0,58,16,0,0,60,16,0,0,60,16,0,0,60,16,0,0,62,16,0,0,62,16,0,0,62,16,0,0,62,16,0,0,64,16,0,0,68,16,0,0,68,16,0,0,70,16,0,0,70,16,0,0,74,16,0,0,74,16,0,0,76,16,0,0,76,16,0,0,80,16,0,0,80,16,0,0,82,16,0,0,82,16,0,0,82,16,0,0,82,16,0,0,82,16,0,0,88,16,0,0,90,16,0,0,90,16,0,0,90,16,0,0,90,16,0,0,94,16,0,0,96,16,0,0,100,16,0,0,102,16,0,0,102,16,0,0,102,16,0,0,102,16,0,0,102,16,0,0,102,16,0,0,102,16,0,0,102,16,0,0,102,16,0,0,104,16,0,0,108,16,0,0,108,16,0,0,110,16,0,0,110,16,0,0,112,16,0,0,112,16,0,0,112,16,0,0,112,16,0,0,114,16,0,0,116,16,0,0,116,16,0,0,116,16,0,0,116,16,0,0,116,16,0,0,116,16,0,0,118,16,0,0,118,16,0,0,118,16,0,0,118,16,0,0,118,16,0,0,118,16,0,0,120,16,0,0,122,16,0,0,122,16,0,0,122,16,0,0,122,16,0,0,122,16,0,0,122,16,0,0,124,16,0,0,126,16,0,0,126,16,0,0,126,16,0,0,126,16,0,0,128,16,0,0,132,16,0,0,132,16,0,0,134,16,0,0,138,16,0,0,138,16,0,0,140,16,0,0,140,16,0,0,140,16,0,0,142,16,0,0,142,16,0,0,142,16,0,0,150,16,0,0,154,16,0,0,154,16,0,0,156,16,0,0,156,16,0,0,156,16,0,0,156,16,0,0,156,16,0,0,162,16,0,0,162,16,0,0,162,16,0,0,162,16,0,0,162,16,0,0,162,16,0,0,162,16,0,0,166,16,0,0,168,16,0,0,170,16,0,0,172,16,0,0,172,16,0,0,174,16,0,0,178,16,0,0,180,16,0,0,180,16,0,0,182,16,0,0,186,16,0,0,188,16,0,0,190,16,0,0,192,16,0,0,192,16,0,0,192,16,0,0,194,16,0,0,194,16,0,0,196,16,0,0,196,16,0,0,198,16,0,0,200,16,0,0,202,16,0,0,206,16,0,0,208,16,0,0,208,16,0,0,208,16,0,0,210,16,0,0,210,16,0,0,212,16,0,0,212,16,0,0,214,16,0,0,216,16,0,0,216,16,0,0,216,16,0,0,216,16,0,0,216,16,0,0,216,16,0,0,216,16,0,0,218,16,0,0,218,16,0,0,218,16,0,0,220,16,0,0,220,16,0,0,222,16,0,0,222,16,0,0,228,16,0,0,228,16,0,0,228,16,0,0,228,16,0,0,230,16,0,0,230,16,0,0,230,16,0,0,232,16,0,0,232,16,0,0,232,16,0,0,234,16,0,0,234,16,0,0,236,16,0,0,236,16,0,0,242,16,0,0,242,16,0,0,242,16,0,0,242,16,0,0,242,16,0,0,244,16,0,0,244,16,0,0,244,16,0,0,246,16,0,0,250,16,0,0,250,16,0,0,250,16,0,0,250,16,0,0,252,16,0,0,252,16,0,0,254,16,0,0,254,16,0,0,254,16,0,0,254,16,0,0,2,17,0,0,4,17,0,0,4,17,0,0,6,17,0,0,6,17,0,0,6,17,0,0,6,17,0,0,6,17,0,0,8,17,0,0,8,17,0,0,12,17,0,0,14,17,0,0,14,17,0,0,16,17,0,0,16,17,0,0,18,17,0,0,18,17,0,0,18,17,0,0,18,17,0,0,18,17,0,0,18,17,0,0,18,17,0,0,18,17,0,0,18,17,0,0,18,17,0,0,18,17,0,0,22,17,0,0,22,17,0,0,24,17,0,0,26,17,0,0,26,17,0,0,26,17,0,0,28,17,0,0,28,17,0,0,30,17,0,0,30,17,0,0,30,17,0,0,30,17,0,0,30,17,0,0,32,17,0,0,32,17,0,0,32,17,0,0,32,17,0,0,32,17,0,0,32,17,0,0,34,17,0,0,34,17,0,0,38,17,0,0,38,17,0,0,38,17,0,0,38,17,0,0,38,17,0,0,38,17,0,0,38,17,0,0,38,17,0,0,38,17,0,0,38,17,0,0,38,17,0,0,40,17,0,0,42,17,0,0,42,17,0,0,44,17,0,0,44,17,0,0,46,17,0,0,46,17,0,0,46,17,0,0,50,17,0,0,52,17,0,0,52,17,0,0,52,17,0,0,54,17,0,0,54,17,0,0,56,17,0,0,56,17,0,0,56,17,0,0,56,17,0,0,58,17,0,0,60,17,0,0,60,17,0,0,60,17,0,0,62,17,0,0,62,17,0,0,64,17,0,0,64,17,0,0,66,17,0,0,66,17,0,0,66,17,0,0,66,17,0,0,66,17,0,0,66,17,0,0,66,17,0,0,66,17,0,0,66,17,0,0,66,17,0,0,68,17,0,0,72,17,0,0,72,17,0,0,72,17,0,0,72,17,0,0,72,17,0,0,72,17,0,0,74,17,0,0,74,17,0,0,76,17,0,0,78,17,0,0,80,17,0,0,84,17,0,0,84,17,0,0,84,17,0,0,86,17,0,0,88,17,0,0,94,17,0,0,94,17,0,0,96,17,0,0,96,17,0,0,96,17,0,0,98,17,0,0,98,17,0,0,98,17,0,0,100,17,0,0,102,17,0,0,102,17,0,0,102,17,0,0,104,17,0,0,104,17,0,0,106,17,0,0,108,17,0,0,110,17,0,0,114,17,0,0,116,17,0,0,118,17,0,0,118,17,0,0,120,17,0,0,120,17,0,0,124,17,0,0,126,17,0,0,126,17,0,0,126,17,0,0,128,17,0,0,128,17,0,0,134,17,0,0,134,17,0,0,134,17,0,0,134,17,0,0,138,17,0,0,140,17,0,0,140,17,0,0,140,17,0,0,140,17,0,0,140,17,0,0,142,17,0,0,142,17,0,0,144,17,0,0,148,17,0,0,150,17,0,0,152,17,0,0,154,17,0,0,154,17,0,0,154,17,0,0,158,17,0,0,158,17,0,0,158,17,0,0,160,17,0,0,164,17,0,0,164,17,0,0,164,17,0,0,164,17,0,0,164,17,0,0,166,17,0,0,166,17,0,0,166,17,0,0,166,17,0,0,166,17,0,0,166,17,0,0,166,17,0,0,166,17,0,0,166,17,0,0,172,17,0,0,176,17,0,0,180,17,0,0,180,17,0,0,182,17,0,0,182,17,0,0,182,17,0,0,184,17,0,0,184,17,0,0,184,17,0,0,188,17,0,0,190,17,0,0,194,17,0,0,194,17,0,0,194,17,0,0,196,17,0,0,198,17,0,0,198,17,0,0,198,17,0,0,198,17,0,0,200,17,0,0,200,17,0,0,200,17,0,0,200,17,0,0,202,17,0,0,202,17,0,0,204,17,0,0,204,17,0,0,204,17,0,0,204,17,0,0,204,17,0,0,206,17,0,0,208,17,0,0,212,17,0,0,212,17,0,0,214,17,0,0,214,17,0,0,216,17,0,0,218,17,0,0,218,17,0,0,218,17,0,0,218,17,0,0,220,17,0,0,220,17,0,0,222,17,0,0,222,17,0,0,222,17,0,0,222,17,0,0,222,17,0,0,222,17,0,0,224,17,0,0,228,17,0,0,234,17,0,0,234,17,0,0,234,17,0,0,234,17,0,0,236,17,0,0,240,17,0,0,240,17,0,0,244,17,0,0,244,17,0,0,246,17,0,0,250,17,0,0,250,17,0,0,252,17,0,0,252,17,0,0,254,17,0,0,0,18,0,0,0,18,0,0,0,18,0,0,2,18,0,0,2,18,0,0,2,18,0,0,2,18,0,0,2,18,0,0,6,18,0,0,6,18,0,0,8,18,0,0,10,18,0,0,12,18,0,0,12,18,0,0,12,18,0,0,12,18,0,0,12,18,0,0,12,18,0,0,12,18,0,0,12,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,18,18,0,0,20,18,0,0,22,18,0,0,22,18,0,0,22,18,0,0,22,18,0,0,24,18,0,0,24,18,0,0,24,18,0,0,24,18,0,0,24,18,0,0,26,18,0,0,26,18,0,0,26,18,0,0,28,18,0,0,30,18,0,0,32,18,0,0,36,18,0,0,38,18,0,0,40,18,0,0,40,18,0,0,44,18,0,0,46,18,0,0,48,18,0,0,48,18,0,0,48,18,0,0,48,18,0,0,50,18,0,0,50,18,0,0,50,18,0,0,52,18,0,0,52,18,0,0,52,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,58,18,0,0,58,18,0,0,58,18,0,0,58,18,0,0,58,18,0,0,60,18,0,0,62,18,0,0,68,18,0,0,68,18,0,0,68,18,0,0,68,18,0,0,68,18,0,0,68,18,0,0,68,18,0,0,68,18,0,0,70,18,0,0,70,18,0,0,70,18,0,0,74,18,0,0,74,18,0,0,74,18,0,0,74,18,0,0,76,18,0,0,78,18,0,0,80,18,0,0,82,18,0,0,82,18,0,0,84,18,0,0,86,18,0,0,88,18,0,0,88,18,0,0,88,18,0,0,88,18,0,0,92,18,0,0,92,18,0,0,94,18,0,0,94,18,0,0,94,18,0,0,94,18,0,0,94,18,0,0,94,18,0,0,94,18,0,0,96,18,0,0,98,18,0,0,98,18,0,0,98,18,0,0,100,18,0,0,100,18,0,0,100,18,0,0,102,18,0,0,104,18,0,0,104,18,0,0,104,18,0,0,106,18,0,0,106,18,0,0,106,18,0,0,106,18,0,0,106,18,0,0,106,18,0,0,108,18,0,0,110,18,0,0,114,18,0,0,114,18,0,0,114,18,0,0,114,18,0,0,114,18,0,0,114,18,0,0,114,18,0,0,114,18,0,0,114,18,0,0,114,18,0,0,116,18,0,0,118,18,0,0,118,18,0,0,118,18,0,0,118,18,0,0,118,18,0,0,122,18,0,0,124,18,0,0,126,18,0,0,126,18,0,0,126,18,0,0,126,18,0,0,126,18,0,0,126,18,0,0,128,18,0,0,128,18,0,0,128,18,0,0,130,18,0,0,130,18,0,0,130,18,0,0,132,18,0,0,134,18,0,0,134,18,0,0,134,18,0,0,134,18,0,0,134,18,0,0,136,18,0,0,136,18,0,0,136,18,0,0,136,18,0,0,136,18,0,0,140,18,0,0,142,18,0,0,142,18,0,0,142,18,0,0,144,18,0,0,144,18,0,0,144,18,0,0,146,18,0,0,148,18,0,0,150,18,0,0,150,18,0,0,150,18,0,0,152,18,0,0,152,18,0,0,154,18,0,0,154,18,0,0,158,18,0,0,160,18,0,0,160,18,0,0,160,18,0,0,160,18,0,0,162,18,0,0,162,18,0,0,164,18,0,0,168,18,0,0,170,18,0,0,174,18,0,0,176,18,0,0,176,18,0,0,176,18,0,0,178,18,0,0,180,18,0,0,180,18,0,0,182,18,0,0,184,18,0,0,186,18,0,0,188,18,0,0,188,18,0,0,190,18,0,0,192,18,0,0,192,18,0,0,192,18,0,0,192,18,0,0,192,18,0,0,192,18,0,0,192,18,0,0,194,18,0,0,196,18,0,0,196,18,0,0,196,18,0,0,198,18,0,0,200,18,0,0,202,18,0,0,202,18,0,0,210,18,0,0,212,18,0,0,212,18,0,0,220,18,0,0,220,18,0,0,220,18,0,0,220,18,0,0,226,18,0,0,226,18,0,0,230,18,0,0,234,18,0,0,236,18,0,0,236,18,0,0,236,18,0,0,240,18,0,0,240,18,0,0,240,18,0,0,244,18,0,0,244,18,0,0,244,18,0,0,244,18,0,0,244,18,0,0,244,18,0,0,244,18,0,0,246,18,0,0,246,18,0,0,246,18,0,0,248,18,0,0,250,18,0,0,250,18,0,0,252,18,0,0,254,18,0,0,254,18,0,0,0,19,0,0,4,19,0,0,4,19,0,0,4,19,0,0,4,19,0,0,4,19,0,0,6,19,0,0,10,19,0,0,10,19,0,0,10,19,0,0,10,19,0,0,10,19,0,0,10,19,0,0,16,19,0,0,16,19,0,0,16,19,0,0,16,19,0,0,18,19,0,0,18,19,0,0,18,19,0,0,20,19,0,0,20,19,0,0,20,19,0,0,20,19,0,0,20,19,0,0,20,19,0,0,20,19,0,0,20,19,0,0,24,19,0,0,26,19,0,0,32,19,0,0,32,19,0,0,32,19,0,0,34,19,0,0,36,19,0,0,36,19,0,0,36,19,0,0,38,19,0,0,40,19,0,0,44,19,0,0,46,19,0,0,46,19,0,0,48,19,0,0,48,19,0,0,48,19,0,0,52,19,0,0,54,19,0,0,56,19,0,0,56,19,0,0,58,19,0,0,58,19,0,0,58,19,0,0,60,19,0,0,62,19,0,0,62,19,0,0,64,19,0,0,66,19,0,0,66,19,0,0,68,19,0,0,68,19,0,0,68,19,0,0,68,19,0,0,70,19,0,0,70,19,0,0,70,19,0,0,70,19,0,0,70,19,0,0,72,19,0,0,74,19,0,0,78,19,0,0,78,19,0,0,78,19,0,0,78,19,0,0,78,19,0,0,80,19,0,0,80,19,0,0,82,19,0,0,86,19,0,0,86,19,0,0,88,19,0,0,92,19,0,0,94,19,0,0,96,19,0,0,96,19,0,0,96,19,0,0,98,19,0,0,98,19,0,0,98,19,0,0,100,19,0,0,100,19,0,0,100,19,0,0,104,19,0,0,106,19,0,0,108,19,0,0,108,19,0,0,108,19,0,0,108,19,0,0,112,19,0,0,116,19,0,0,116,19,0,0,116,19,0,0,118,19,0,0,118,19,0,0,118,19,0,0,118,19,0,0,120,19,0,0,120,19,0,0,122,19,0,0,122,19,0,0,124,19,0,0,124,19,0,0,124,19,0,0,124,19,0,0,124,19,0,0,124,19,0,0,124,19,0,0,124,19,0,0,126,19,0,0,130,19,0,0,130,19,0,0,130,19,0,0,132,19,0,0,134,19,0,0,136,19,0,0,136,19,0,0,136,19,0,0,136,19,0,0,140,19,0,0,142,19,0,0,142,19,0,0,144,19,0,0,146,19,0,0,152,19,0,0,152,19,0,0,154,19,0,0,156,19,0,0,160,19,0,0,160,19,0,0,162,19,0,0,162,19,0,0,162,19,0,0,162,19,0,0,162,19,0,0,162,19,0,0,162,19,0,0,166,19,0,0,168,19,0,0,168,19,0,0,168,19,0,0,168,19,0,0,168,19,0,0,168,19,0,0,170,19,0,0,170,19,0,0,170,19,0,0,170,19,0,0,170,19,0,0,170,19,0,0,170,19,0,0,170,19,0,0,170,19,0,0,170,19,0,0,170,19,0,0,170,19,0,0,170,19,0,0,172,19,0,0,172,19,0,0,174,19,0,0,182,19,0,0,182,19,0,0,188,19,0,0,188,19,0,0,188,19,0,0,190,19,0,0,192,19,0,0,192,19,0,0,192,19,0,0,192,19,0,0,192,19,0,0,192,19,0,0,194,19,0,0,196,19,0,0,196,19,0,0,200,19,0,0,200,19,0,0,200,19,0,0,200,19,0,0,202,19,0,0,202,19,0,0,202,19,0,0,202,19,0,0,202,19,0,0,204,19,0,0,206,19,0,0,206,19,0,0,208,19,0,0,208,19,0,0,212,19,0,0,212,19,0,0,212,19,0,0,212,19,0,0,216,19,0,0,218,19,0,0,218,19,0,0,218,19,0,0,218,19,0,0,220,19,0,0,220,19,0,0,220,19,0,0,220,19,0,0,220,19,0,0,220,19,0,0,222,19,0,0,226,19,0,0,232,19,0,0,232,19,0,0,232,19,0,0,232,19,0,0,232,19,0,0,234,19,0,0,234,19,0,0,234,19,0,0,234,19,0,0,238,19,0,0,238,19,0,0,238,19,0,0,238,19,0,0,238,19,0,0,238,19,0,0,238,19,0,0,238,19,0,0,242,19,0,0,244,19,0,0,244,19,0,0,244,19,0,0,244,19,0,0,246,19,0,0,248,19,0,0,250,19,0,0,250,19,0,0,252,19,0,0,252,19,0,0,0,20,0,0,0,20,0,0,2,20,0,0,4,20,0,0,8,20,0,0,8,20,0,0,8,20,0,0,8,20,0,0,8,20,0,0,8,20,0,0,10,20,0,0,12,20,0,0,12,20,0,0,12,20,0,0,12,20,0,0,12,20,0,0,12,20,0,0,12,20,0,0,14,20,0,0,14,20,0,0,14,20,0,0,16,20,0,0,16,20,0,0,18,20,0,0,18,20,0,0,24,20,0,0,24,20,0,0,24,20,0,0,24,20,0,0,24,20,0,0,24,20,0,0,28,20,0,0,32,20,0,0,34,20,0,0,34,20,0,0,34,20,0,0,36,20,0,0,36,20,0,0,38,20,0,0,40,20,0,0,42,20,0,0,42,20,0,0,46,20,0,0,46,20,0,0,46,20,0,0,48,20,0,0,48,20,0,0,48,20,0,0,50,20,0,0,54,20,0,0,56,20,0,0,56,20,0,0,58,20,0,0,58,20,0,0,60,20,0,0,60,20,0,0,60,20,0,0,60,20,0,0,60,20,0,0,62,20,0,0,62,20,0,0,64,20,0,0,64,20,0,0,64,20,0,0,64,20,0,0,64,20,0,0,64,20,0,0,64,20,0,0,64,20,0,0,64,20,0,0,64,20,0,0,66,20,0,0,68,20,0,0,70,20,0,0,70,20,0,0,72,20,0,0,74,20,0,0,74,20,0,0,74,20,0,0,78,20,0,0,78,20,0,0,80,20,0,0,80,20,0,0,82,20,0,0,82,20,0,0,84,20,0,0,84,20,0,0,88,20,0,0,88,20,0,0,88,20,0,0,88,20,0,0,92,20,0,0,92,20,0,0,94,20,0,0,96,20,0,0,96,20,0,0,96,20,0,0,96,20,0,0,96,20,0,0,98,20,0,0,98,20,0,0,100,20,0,0,102,20,0,0,104,20,0,0,106,20,0,0,108,20,0,0,108,20,0,0,110,20,0,0,110,20,0,0,110,20,0,0,110,20,0,0,110,20,0,0,110,20,0,0,112,20,0,0,114,20,0,0,114,20,0,0,116,20,0,0,118,20,0,0,120,20,0,0,120,20,0,0,120,20,0,0,120,20,0,0,124,20,0,0,126,20,0,0,126,20,0,0,128,20,0,0,128,20,0,0,132,20,0,0,134,20,0,0,134,20,0,0,134,20,0,0,134,20,0,0,142,20,0,0,144,20,0,0,144,20,0,0,144,20,0,0,144,20,0,0,144,20,0,0,144,20,0,0,144,20,0,0,144,20,0,0,144,20,0,0,144,20,0,0,146,20,0,0,148,20,0,0,150,20,0,0,150,20,0,0,150,20,0,0,150,20,0,0,150,20,0,0,152,20,0,0,152,20,0,0,154,20,0,0,154,20,0,0,156,20,0,0,158,20,0,0,162,20,0,0,162,20,0,0,164,20,0,0,166,20,0,0,168,20,0,0,168,20,0,0,168,20,0,0,168,20,0,0,170,20,0,0,174,20,0,0,174,20,0,0,176,20,0,0,176,20,0,0,176,20,0,0,176,20,0,0,178,20,0,0,178,20,0,0,180,20,0,0,180,20,0,0,180,20,0,0,182,20,0,0,186,20,0,0,186,20,0,0,186,20,0,0,186,20,0,0,186,20,0,0,186,20,0,0,186,20,0,0,186,20,0,0,186,20,0,0,186,20,0,0,186,20,0,0,186,20,0,0,188,20,0,0,188,20,0,0,188,20,0,0,190,20,0,0,190,20,0,0,192,20,0,0,192,20,0,0,192,20,0,0,192,20,0,0,194,20,0,0,194,20,0,0,194,20,0,0,196,20,0,0,196,20,0,0,198,20,0,0,200,20,0,0,200,20,0,0,200,20,0,0,202,20,0,0,204,20,0,0,204,20,0,0,204,20,0,0,206,20,0,0,206,20,0,0,206,20,0,0,208,20,0,0,208,20,0,0,208,20,0,0,208,20,0,0,210,20,0,0,212,20,0,0,214,20,0,0,216,20,0,0,216,20,0,0,216,20,0,0,216,20,0,0,216,20,0,0,216,20,0,0,216,20,0,0,216,20,0,0,220,20,0,0,220,20,0,0,220,20,0,0,222,20,0,0,222,20,0,0,222,20,0,0,224,20,0,0,226,20,0,0,226,20,0,0,226,20,0,0,228,20,0,0,228,20,0,0,230,20,0,0,234,20,0,0,234,20,0,0,236,20,0,0,238,20,0,0,240,20,0,0,242,20,0,0,244,20,0,0,244,20,0,0,244,20,0,0,248,20,0,0,250,20,0,0,250,20,0,0,254,20,0,0,254,20,0,0,2,21,0,0,4,21,0,0,4,21,0,0,6,21,0,0,8,21,0,0,8,21,0,0,10,21,0,0,12,21,0,0,12,21,0,0,14,21,0,0,14,21,0,0,14,21,0,0,16,21,0,0,18,21,0,0,18,21,0,0,18,21,0,0,26,21,0,0,28,21,0,0,32,21,0,0,32,21,0,0,32,21,0,0,34,21,0,0,38,21,0,0,38,21,0,0,42,21,0,0,42,21,0,0,46,21,0,0,48,21,0,0,48,21,0,0,48,21,0,0,50,21,0,0,52,21,0,0,52,21,0,0,52,21,0,0,52,21,0,0,52,21,0,0,52,21,0,0,54,21,0,0,56,21,0,0,58,21,0,0,60,21,0,0,62,21,0,0,62,21,0,0,62,21,0,0,62,21,0,0,64,21,0,0,64,21,0,0,64,21,0,0,64,21,0,0,64,21,0,0,64,21,0,0,66,21,0,0,68,21,0,0,70,21,0,0,72,21,0,0,76,21,0,0,80,21,0,0,82,21,0,0,82,21,0,0,84,21,0,0,84,21,0,0,86,21,0,0,86,21,0,0,88,21,0,0,88,21,0,0,92,21,0,0,92,21,0,0,92,21,0,0,92,21,0,0,92,21,0,0,92,21,0,0,92,21,0,0,92,21,0,0,98,21,0,0,98,21,0,0,100,21,0,0,100,21,0,0,100,21,0,0,104,21,0,0,104,21,0,0,104,21,0,0,104,21,0,0,104,21,0,0,108,21,0,0,108,21,0,0,110,21,0,0,110,21,0,0,110,21,0,0,112,21,0,0,114,21,0,0,114,21,0,0,114,21,0,0,118,21,0,0,118,21,0,0,118,21,0,0,118,21,0,0,122,21,0,0,122,21,0,0,122,21,0,0,126,21,0,0,126,21,0,0,126,21,0,0,128,21,0,0,130,21,0,0,130,21,0,0,130,21,0,0,130,21,0,0,134,21,0,0,134,21,0,0,134,21,0,0,136,21,0,0,136,21,0,0,136,21,0,0,136,21,0,0,138,21,0,0,142,21,0,0,142,21,0,0,144,21,0,0,146,21,0,0,148,21,0,0,152,21,0,0,154,21,0,0,154,21,0,0,154,21,0,0,156,21,0,0,156,21,0,0,158,21,0,0,158,21,0,0,158,21,0,0,158,21,0,0,158,21,0,0,160,21,0,0,160,21,0,0,160,21,0,0,160,21,0,0,162,21,0,0,162,21,0,0,164,21,0,0,168,21,0,0,170,21,0,0,170,21,0,0,170,21,0,0,170,21,0,0,170,21,0,0,170,21,0,0,174,21,0,0,174,21,0,0,174,21,0,0,174,21,0,0,174,21,0,0,174,21,0,0,174,21,0,0,174,21,0,0,174,21,0,0,174,21,0,0,174,21,0,0,174,21,0,0,174,21,0,0,174,21,0,0,174,21,0,0,174,21,0,0,174,21,0,0,174,21,0,0,176,21,0,0,178,21,0,0,180,21,0,0,180,21,0,0,180,21,0,0,180,21,0,0,180,21,0,0,180,21,0,0,180,21,0,0,180,21,0,0,180,21,0,0,180,21,0,0,182,21,0,0,184,21,0,0,186,21,0,0,190,21,0,0,192,21,0,0,196,21,0,0,198,21,0,0,198,21,0,0,198,21,0,0,198,21,0,0,198,21,0,0,200,21,0,0,202,21,0,0,204,21,0,0,204,21,0,0,208,21,0,0,208,21,0,0,212,21,0,0,212,21,0,0,214,21,0,0,214,21,0,0,216,21,0,0,216,21,0,0,218,21,0,0,220,21,0,0,220,21,0,0,220,21,0,0,222,21,0,0,226,21,0,0,228,21,0,0,228,21,0,0,228,21,0,0,228,21,0,0,228,21,0,0,228,21,0,0,228,21,0,0,228,21,0,0,228,21,0,0,230,21,0,0,230,21,0,0,232,21,0,0,232,21,0,0,236,21,0,0,236,21,0,0,238,21,0,0,240,21,0,0,242,21,0,0,244,21,0,0,244,21,0,0,244,21,0,0,244,21,0,0,248,21,0,0,250,21,0,0,250,21,0,0,252,21,0,0,254,21,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,4,22,0,0,4,22,0,0,4,22,0,0,6,22,0,0,6,22,0,0,8,22,0,0,12,22,0,0,14,22,0,0,16,22,0,0,18,22,0,0,18,22,0,0,18,22,0,0,18,22,0,0,18,22,0,0,18,22,0,0,18,22,0,0,18,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,24,22,0,0,24,22,0,0,24,22,0,0,26,22,0,0,28,22,0,0,28,22,0,0,28,22,0,0,30,22,0,0,32,22,0,0,32,22,0,0,32,22,0,0,38,22,0,0,38,22,0,0,38,22,0,0,40,22,0,0,40,22,0,0,40,22,0,0,40,22,0,0,40,22,0,0,42,22,0,0,42,22,0,0,42,22,0,0,42,22,0,0,42,22,0,0,42,22,0,0,46,22,0,0,48,22,0,0,48,22,0,0,50,22,0,0,52,22,0,0,54,22,0,0,54,22,0,0,54,22,0,0,54,22,0,0,56,22,0,0,56,22,0,0,56,22,0,0,58,22,0,0,58,22,0,0,60,22,0,0,60,22,0,0,60,22,0,0,60,22,0,0,62,22,0,0,62,22,0,0,62,22,0,0,64,22,0,0,66,22,0,0,68,22,0,0,68,22,0,0,68,22,0,0,70,22,0,0,70,22,0,0,72,22,0,0,72,22,0,0,72,22,0,0,74,22,0,0,76,22,0,0,78,22,0,0,78,22,0,0,78,22,0,0,84,22,0,0,84,22,0,0,84,22,0,0,86,22,0,0,86,22,0,0,86,22,0,0,90,22,0,0,92,22,0,0,92,22,0,0,92,22,0,0,92,22,0,0,92,22,0,0,92,22,0,0,92,22,0,0,94,22,0,0,94,22,0,0,94,22,0,0,102,22,0,0,104,22,0,0,104,22,0,0,104,22,0,0,104,22,0,0,104,22,0,0,104,22,0,0,104,22,0,0,106,22,0,0,106,22,0,0,106,22,0,0,106,22,0,0,106,22,0,0,106,22,0,0,106,22,0,0,110,22,0,0,110,22,0,0,110,22,0,0,110,22,0,0,112,22,0,0,114,22,0,0,114,22,0,0,114,22,0,0,118,22,0,0,118,22,0,0,118,22,0,0,120,22,0,0,120,22,0,0,120,22,0,0,120,22,0,0,122,22,0,0,124,22,0,0,124,22,0,0,124,22,0,0,124,22,0,0,126,22,0,0,128,22,0,0,128,22,0,0,128,22,0,0,130,22,0,0,132,22,0,0,134,22,0,0,134,22,0,0,134,22,0,0,134,22,0,0,138,22,0,0,142,22,0,0,142,22,0,0,142,22,0,0,142,22,0,0,142,22,0,0,142,22,0,0,142,22,0,0,142,22,0,0,142,22,0,0,144,22,0,0,144,22,0,0,146,22,0,0,150,22,0,0,152,22,0,0,152,22,0,0,152,22,0,0,154,22,0,0,154,22,0,0,154,22,0,0,154,22,0,0,154,22,0,0,154,22,0,0,154,22,0,0,156,22,0,0,156,22,0,0,156,22,0,0,160,22,0,0,160,22,0,0,160,22,0,0,160,22,0,0,160,22,0,0,160,22,0,0,160,22,0,0,160,22,0,0,162,22,0,0,166,22,0,0,166,22,0,0,168,22,0,0,168,22,0,0,170,22,0,0,170,22,0,0,170,22,0,0,170,22,0,0,170,22,0,0,170,22,0,0,170,22,0,0,172,22,0,0,174,22,0,0,176,22,0,0,176,22,0,0,176,22,0,0,176,22,0,0,176,22,0,0,178,22,0,0,178,22,0,0,180,22,0,0,182,22,0,0,182,22,0,0,182,22,0,0,182,22,0,0,184,22,0,0,184,22,0,0,184,22,0,0,184,22,0,0,186,22,0,0,188,22,0,0,190,22,0,0,194,22,0,0,194,22,0,0,196,22,0,0,200,22,0,0,200,22,0,0,202,22,0,0,202,22,0,0,204,22,0,0,208,22,0,0,208,22,0,0,208,22,0,0,208,22,0,0,210,22,0,0,214,22,0,0,216,22,0,0,216,22,0,0,216,22,0,0,216,22,0,0,218,22,0,0,220,22,0,0,222,22,0,0,222,22,0,0,222,22,0,0,224,22,0,0,224,22,0,0,224,22,0,0,228,22,0,0,228,22,0,0,228,22,0,0,230,22,0,0,232,22,0,0,232,22,0,0,236,22,0,0,236,22,0,0,236,22,0,0,236,22,0,0,236,22,0,0,238,22,0,0,240,22,0,0,240,22,0,0,242,22,0,0,242,22,0,0,244,22,0,0,244,22,0,0,244,22,0,0,246,22,0,0,248,22,0,0,252,22,0,0,252,22,0,0,252,22,0,0,252,22,0,0,252,22,0,0,254,22,0,0,254,22,0,0,0,23,0,0,4,23,0,0,4,23,0,0,4,23,0,0,8,23,0,0,8,23,0,0,10,23,0,0,10,23,0,0,10,23,0,0,10,23,0,0,12,23,0,0,16,23,0,0,16,23,0,0,18,23,0,0,20,23,0,0,22,23,0,0,24,23,0,0,24,23,0,0,24,23,0,0,24,23,0,0,26,23,0,0,26,23,0,0,28,23,0,0,30,23,0,0,32,23,0,0,32,23,0,0,32,23,0,0,34,23,0,0,34,23,0,0,38,23,0,0,38,23,0,0,38,23,0,0,42,23,0,0,42,23,0,0,42,23,0,0,42,23,0,0,50,23,0,0,50,23,0,0,50,23,0,0,50,23,0,0,54,23,0,0,58,23,0,0,60,23,0,0,60,23,0,0,62,23,0,0,62,23,0,0,66,23,0,0,66,23,0,0,68,23,0,0,68,23,0,0,74,23,0,0,76,23,0,0,76,23,0,0,76,23,0,0,78,23,0,0,78,23,0,0,78,23,0,0,78,23,0,0,80,23,0,0,80,23,0,0,80,23,0,0,80,23,0,0,80,23,0,0,82,23,0,0,84,23,0,0,84,23,0,0,84,23,0,0,84,23,0,0,84,23,0,0,86,23,0,0,86,23,0,0,86,23,0,0,86,23,0,0,86,23,0,0,86,23,0,0,88,23,0,0,90,23,0,0,92,23,0,0,92,23,0,0,92,23,0,0,92,23,0,0,92,23,0,0,96,23,0,0,100,23,0,0,100,23,0,0,100,23,0,0,102,23,0,0,102,23,0,0,104,23,0,0,104,23,0,0,104,23,0,0,104,23,0,0,106,23,0,0,106,23,0,0,108,23,0,0,108,23,0,0,110,23,0,0,112,23,0,0,114,23,0,0,116,23,0,0,116,23,0,0,116,23,0,0,116,23,0,0,118,23,0,0,118,23,0,0,118,23,0,0,122,23,0,0,122,23,0,0,122,23,0,0,124,23,0,0,124,23,0,0,124,23,0,0,124,23,0,0,124,23,0,0,124,23,0,0,126,23,0,0,128,23,0,0,128,23,0,0,128,23,0,0,128,23,0,0,130,23,0,0,130,23,0,0,132,23,0,0,132,23,0,0,132,23,0,0,132,23,0,0,134,23,0,0,138,23,0,0,138,23,0,0,138,23,0,0,138,23,0,0,140,23,0,0,142,23,0,0,142,23,0,0,144,23,0,0,144,23,0,0,144,23,0,0,144,23,0,0,146,23,0,0,146,23,0,0,148,23,0,0,150,23,0,0,152,23,0,0,156,23,0,0,160,23,0,0,162,23,0,0,164,23,0,0,164,23,0,0,164,23,0,0,166,23,0,0,166,23,0,0,168,23,0,0,168,23,0,0,172,23,0,0,172,23,0,0,174,23,0,0,174,23,0,0,174,23,0,0,178,23,0,0,178,23,0,0,178,23,0,0,182,23,0,0,182,23,0,0,184,23,0,0,186,23,0,0,186,23,0,0,186,23,0,0,186,23,0,0,186,23,0,0,186,23,0,0,186,23,0,0,190,23,0,0,194,23,0,0,194,23,0,0,194,23,0,0,196,23,0,0,196,23,0,0,196,23,0,0,196,23,0,0,196,23,0,0,200,23,0,0,200,23,0,0,200,23,0,0,200,23,0,0,202,23,0,0,204,23,0,0,204,23,0,0,204,23,0,0,206,23,0,0,206,23,0,0,206,23,0,0,206,23,0,0,210,23,0,0,212,23,0,0,214,23,0,0,214,23,0,0,220,23,0,0,222,23,0,0,222,23,0,0,224,23,0,0,226,23,0,0,230,23,0,0,230,23,0,0,230,23,0,0,230,23,0,0,232,23,0,0,232,23,0,0,234,23,0,0,234,23,0,0,234,23,0,0,238,23,0,0,238,23,0,0,238,23,0,0,242,23,0,0,242,23,0,0,242,23,0,0,242,23,0,0,242,23,0,0,244,23,0,0,244,23,0,0,246,23,0,0,248,23,0,0,250,23,0,0,250,23,0,0,250,23,0,0,250,23,0,0,250,23,0,0,252,23,0,0,252,23,0,0,0,24,0,0,2,24,0,0,2,24,0,0,2,24,0,0,4,24,0,0,4,24,0,0,6,24,0,0,6,24,0,0,8,24,0,0,8,24,0,0,8,24,0,0,10,24,0,0,10,24,0,0,16,24,0,0,18,24,0,0,18,24,0,0,22,24,0,0,28,24,0,0,28,24,0,0,32,24,0,0,32,24,0,0,32,24,0,0,34,24,0,0,36,24,0,0,36,24,0,0,36,24,0,0,36,24,0,0,36,24,0,0,38,24,0,0,40,24,0,0,42,24,0,0,42,24,0,0,42,24,0,0,42,24,0,0,44,24,0,0,44,24,0,0,48,24,0,0,50,24,0,0,52,24,0,0,52,24,0,0,52,24,0,0,54,24,0,0,56,24,0,0,62,24,0,0,64,24,0,0,64,24,0,0,68,24,0,0,68,24,0,0,68,24,0,0,68,24,0,0,68,24,0,0,70,24,0,0,70,24,0,0,70,24,0,0,70,24,0,0,72,24,0,0,72,24,0,0,74,24,0,0,74,24,0,0,74,24,0,0,74,24,0,0,78,24,0,0,78,24,0,0,78,24,0,0,78,24,0,0,78,24,0,0,78,24,0,0,78,24,0,0,78,24,0,0,78,24,0,0,78,24,0,0,80,24,0,0,80,24,0,0,82,24,0,0,82,24,0,0,84,24,0,0,86,24,0,0,86,24,0,0,86,24,0,0,86,24,0,0,88,24,0,0,90,24,0,0,94,24,0,0,96,24,0,0,96,24,0,0,98,24,0,0,100,24,0,0,100,24,0,0,102,24,0,0,102,24,0,0,104,24,0,0,104,24,0,0,108,24,0,0,108,24,0,0,110,24,0,0,110,24,0,0,112,24,0,0,114,24,0,0,114,24,0,0,114,24,0,0,114,24,0,0,114,24,0,0,114,24,0,0,114,24,0,0,114,24,0,0,114,24,0,0,114,24,0,0,114,24,0,0,116,24,0,0,116,24,0,0,116,24,0,0,116,24,0,0,118,24,0,0,118,24,0,0,118,24,0,0,118,24,0,0,118,24,0,0,118,24,0,0,118,24,0,0,120,24,0,0,120,24,0,0,120,24,0,0,120,24,0,0,120,24,0,0,124,24,0,0,124,24,0,0,124,24,0,0,124,24,0,0,124,24,0,0,124,24,0,0,126,24,0,0,126,24,0,0,126,24,0,0,130,24,0,0,130,24,0,0,130,24,0,0,130,24,0,0,130,24,0,0,130,24,0,0,132,24,0,0,132,24,0,0,132,24,0,0,132,24,0,0,132,24,0,0,132,24,0,0,136,24,0,0,138,24,0,0,140,24,0,0,152,24,0,0,152,24,0,0,154,24,0,0,156,24,0,0,156,24,0,0,156,24,0,0,156,24,0,0,156,24,0,0,158,24,0,0,158,24,0,0,158,24,0,0,158,24,0,0,160,24,0,0,160,24,0,0,160,24,0,0,160,24,0,0,162,24,0,0,162,24,0,0,162,24,0,0,164,24,0,0,166,24,0,0,166,24,0,0,166,24,0,0,170,24,0,0,170,24,0,0,170,24,0,0,170,24,0,0,174,24,0,0,174,24,0,0,178,24,0,0,178,24,0,0,178,24,0,0,178,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,184,24,0,0,184,24,0,0,184,24,0,0,184,24,0,0,184,24,0,0,184,24,0,0,188,24,0,0,190,24,0,0,190,24,0,0,190,24,0,0,192,24,0,0,192,24,0,0,192,24,0,0,192,24,0,0,192,24,0,0,194,24,0,0,194,24,0,0,194,24,0,0,194,24,0,0,194,24,0,0,194,24,0,0,194,24,0,0,194,24,0,0,196,24,0,0,196,24,0,0,196,24,0,0,196,24,0,0,196,24,0,0,200,24,0,0,200,24,0,0,200,24,0,0,200,24,0,0,202,24,0,0,202,24,0,0,202,24,0,0,202,24,0,0,202,24,0,0,204,24,0,0,206,24,0,0,206,24,0,0,206,24,0,0,206,24,0,0,208,24,0,0,210,24,0,0,210,24,0,0,210,24,0,0,210,24,0,0,216,24,0,0,220,24,0,0,222,24,0,0,224,24,0,0,224,24,0,0,226,24,0,0,228,24,0,0,230,24,0,0,232,24,0,0,238,24,0,0,240,24,0,0,240,24,0,0,242,24,0,0,242,24,0,0,242,24,0,0,242,24,0,0,242,24,0,0,250,24,0,0,252,24,0,0,2,25,0,0,2,25,0,0,4,25,0,0,4,25,0,0,6,25,0,0,6,25,0,0,8,25,0,0,8,25,0,0,10,25,0,0,12,25,0,0,12,25,0,0,12,25,0,0,12,25,0,0,12,25,0,0,14,25,0,0,14,25,0,0,14,25,0,0,16,25,0,0,20,25,0,0,20,25,0,0,22,25,0,0,22,25,0,0,22,25,0,0,22,25,0,0,22,25,0,0,22,25,0,0,22,25,0,0,22,25,0,0,24,25,0,0,24,25,0,0,24,25,0,0,24,25,0,0,24,25,0,0,26,25,0,0,28,25,0,0,28,25,0,0,30,25,0,0,32,25,0,0,32,25,0,0,32,25,0,0,32,25,0,0,36,25,0,0,36,25,0,0,40,25,0,0,42,25,0,0,42,25,0,0,44,25,0,0,44,25,0,0,46,25,0,0,46,25,0,0,46,25,0,0,52,25,0,0,52,25,0,0,52,25,0,0,54,25,0,0,54,25,0,0,56,25,0,0,56,25,0,0,56,25,0,0,56,25,0,0,56,25,0,0,56,25,0,0,56,25,0,0,58,25,0,0,58,25,0,0,58,25,0,0,58,25,0,0,58,25,0,0,60,25,0,0,60,25,0,0,60,25,0,0,60,25,0,0,62,25,0,0,64,25,0,0,64,25,0,0,64,25,0,0,64,25,0,0,66,25,0,0,66,25,0,0,66,25,0,0,66,25,0,0,66,25,0,0,68,25,0,0,70,25,0,0,72,25,0,0,72,25,0,0,72,25,0,0,72,25,0,0,76,25,0,0,76,25,0,0,76,25,0,0,78,25,0,0,78,25,0,0,78,25,0,0,80,25,0,0,82,25,0,0,82,25,0,0,82,25,0,0,84,25,0,0,84,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,88,25,0,0,90,25,0,0,92,25,0,0,92,25,0,0,92,25,0,0,94,25,0,0,94,25,0,0,96,25,0,0,96,25,0,0,98,25,0,0,98,25,0,0,98,25,0,0,98,25,0,0,100,25,0,0,100,25,0,0,100,25,0,0,102,25,0,0,102,25,0,0,106,25,0,0,106,25,0,0,106,25,0,0,108,25,0,0,108,25,0,0,108,25,0,0,110,25,0,0,112,25,0,0,112,25,0,0,116,25,0,0,116,25,0,0,116,25,0,0,122,25,0,0,122,25,0,0,122,25,0,0,124,25,0,0,124,25,0,0,124,25,0,0,124,25,0,0,124,25,0,0,124,25,0,0,124,25,0,0,124,25,0,0,126,25,0,0,126,25,0,0,126,25,0,0,126,25,0,0,128,25,0,0,128,25,0,0,128,25,0,0,128,25,0,0,128,25,0,0,130,25,0,0,130,25,0,0,132,25,0,0,132,25,0,0,132,25,0,0,138,25,0,0,138,25,0,0,138,25,0,0,138,25,0,0,138,25,0,0,138,25,0,0,138,25,0,0,138,25,0,0,138,25,0,0,144,25,0,0,146,25,0,0,148,25,0,0,148,25,0,0,150,25,0,0,154,25,0,0,154,25,0,0,154,25,0,0,154,25,0,0,158,25,0,0,158,25,0,0,160,25,0,0,160,25,0,0,160,25,0,0,164,25,0,0,164,25,0,0,166,25,0,0,166,25,0,0,168,25,0,0,168,25,0,0,168,25,0,0,170,25,0,0,172,25,0,0,172,25,0,0,172,25,0,0,172,25,0,0,172,25,0,0,172,25,0,0,172,25,0,0,172,25,0,0,172,25,0,0,172,25,0,0,172,25,0,0,174,25,0,0,176,25,0,0,176,25,0,0,178,25,0,0,178,25,0,0,180,25,0,0,180,25,0,0,180,25,0,0,180,25,0,0,182,25,0,0,182,25,0,0,182,25,0,0,182,25,0,0,182,25,0,0,186,25,0,0,186,25,0,0,186,25,0,0,190,25,0,0,190,25,0,0,190,25,0,0,190,25,0,0,190,25,0,0,190,25,0,0,190,25,0,0,192,25,0,0,196,25,0,0,198,25,0,0,198,25,0,0,198,25,0,0,198,25,0,0,198,25,0,0,198,25,0,0,198,25,0,0,200,25,0,0,200,25,0,0,200,25,0,0,200,25,0,0,200,25,0,0,202,25,0,0,202,25,0,0,206,25,0,0,206,25,0,0,206,25,0,0,208,25,0,0,208,25,0,0,210,25,0,0,210,25,0,0,210,25,0,0,212,25,0,0,214,25,0,0,214,25,0,0,214,25,0,0,216,25,0,0,216,25,0,0,216,25,0,0,216,25,0,0,220,25,0,0,220,25,0,0,220,25,0,0,220,25,0,0,222,25,0,0,222,25,0,0,224,25,0,0,224,25,0,0,224,25,0,0,224,25,0,0,226,25,0,0,230,25,0,0,230,25,0,0,232,25,0,0,232,25,0,0,234,25,0,0,234,25,0,0,234,25,0,0,234,25,0,0,234,25,0,0,234,25,0,0,236,25,0,0,236,25,0,0,238,25,0,0,238,25,0,0,238,25,0,0,240,25,0,0,242,25,0,0,244,25,0,0,246,25,0,0,248,25,0,0,248,25,0,0,248,25,0,0,252,25,0,0,254,25,0,0,254,25,0,0,0,26,0,0,0,26,0,0,0,26,0,0,4,26,0,0,4,26,0,0,4,26,0,0,4,26,0,0,4,26,0,0,6,26,0,0,6,26,0,0,6,26,0,0,8,26,0,0,10,26,0,0,10,26,0,0,10,26,0,0,10,26,0,0,12,26,0,0,12,26,0,0,16,26,0,0,18,26,0,0,18,26,0,0,22,26,0,0,24,26,0,0,28,26,0,0,28,26,0,0,30,26,0,0,30,26,0,0,30,26,0,0,30,26,0,0,34,26,0,0,38,26,0,0,44,26,0,0,44,26,0,0,44,26,0,0,46,26,0,0,46,26,0,0,46,26,0,0,46,26,0,0,48,26,0,0,48,26,0,0,48,26,0,0,52,26,0,0,54,26,0,0,54,26,0,0,54,26,0,0,56,26,0,0,58,26,0,0,58,26,0,0,60,26,0,0,60,26,0,0,64,26,0,0,66,26,0,0,66,26,0,0,68,26,0,0,68,26,0,0,70,26,0,0,70,26,0,0,70,26,0,0,72,26,0,0,72,26,0,0,72,26,0,0,74,26,0,0,76,26,0,0,76,26,0,0,76,26,0,0,76,26,0,0,78,26,0,0,84,26,0,0,84,26,0,0,86,26,0,0,86,26,0,0,88,26,0,0,90,26,0,0,90,26,0,0,90,26,0,0,92,26,0,0,94,26,0,0,96,26,0,0,98,26,0,0,98,26,0,0,98,26,0,0,98,26,0,0,98,26,0,0,98,26,0,0,98,26,0,0,98,26,0,0,98,26,0,0,98,26,0,0,100,26,0,0,104,26,0,0,104,26,0,0,106,26,0,0,106,26,0,0,108,26,0,0,110,26,0,0,110,26,0,0,110,26,0,0,112,26,0,0,112,26,0,0,112,26,0,0,116,26,0,0,116,26,0,0,118,26,0,0,120,26,0,0,120,26,0,0,120,26,0,0,120,26,0,0,122,26,0,0,122,26,0,0,130,26,0,0,132,26,0,0,132,26,0,0,134,26,0,0,138,26,0,0,140,26,0,0,140,26,0,0,140,26,0,0,140,26,0,0,140,26,0,0,140,26,0,0,140,26,0,0,144,26,0,0,148,26,0,0,148,26,0,0,150,26,0,0,152,26,0,0,152,26,0,0,152,26,0,0,152,26,0,0,152,26,0,0,154,26,0,0,154,26,0,0,154,26,0,0,154,26,0,0,154,26,0,0,156,26,0,0,156,26,0,0,156,26,0,0,160,26,0,0,166,26,0,0,168,26,0,0,170,26,0,0,172,26,0,0,178,26,0,0,178,26,0,0,178,26,0,0,180,26,0,0,184,26,0,0,186,26,0,0,190,26,0,0,192,26,0,0,194,26,0,0,196,26,0,0,196,26,0,0,200,26,0,0,200,26,0,0,200,26,0,0,202,26,0,0,202,26,0,0,204,26,0,0,204,26,0,0,204,26,0,0,204,26,0,0,204,26,0,0,206,26,0,0,206,26,0,0,210,26,0,0,212,26,0,0,212,26,0,0,212,26,0,0,212,26,0,0,214,26,0,0,214,26,0,0,214,26,0,0,214,26,0,0,218,26,0,0,220,26,0,0,222,26,0,0,222,26,0,0,222,26,0,0,222,26,0,0,222,26,0,0,224,26,0,0,226,26,0,0,228,26,0,0,230,26,0,0,232,26,0,0,236,26,0,0,240,26,0,0,240,26,0,0,242,26,0,0,244,26,0,0,246,26,0,0,246,26,0,0,246,26,0,0,250,26,0,0,252,26,0,0,252,26,0,0,252,26,0,0,252,26,0,0,254,26,0,0,254,26,0,0,254,26,0,0,254,26,0,0,0,27,0,0,0,27,0,0,4,27,0,0,4,27,0,0,8,27,0,0,8,27,0,0,8,27,0,0,8,27,0,0,8,27,0,0,8,27,0,0,8,27,0,0,8,27,0,0,8,27,0,0,8,27,0,0,8,27,0,0,10,27,0,0,10,27,0,0,10,27,0,0,10,27,0,0,14,27,0,0,16,27,0,0,22,27,0,0,22,27,0,0,24,27,0,0,24,27,0,0,24,27,0,0,26,27,0,0,26,27,0,0,26,27,0,0,26,27,0,0,28,27,0,0,28,27,0,0,32,27,0,0,32,27,0,0,32,27,0,0,32,27,0,0,32,27,0,0,34,27,0,0,36,27,0,0,38,27,0,0,40,27,0,0,40,27,0,0,40,27,0,0,40,27,0,0,40,27,0,0,40,27,0,0,40,27,0,0,40,27,0,0,40,27,0,0,40,27,0,0,40,27,0,0,44,27,0,0,44,27,0,0,44,27,0,0,44,27,0,0,46,27,0,0,46,27,0,0,48,27,0,0,52,27,0,0,52,27,0,0,52,27,0,0,52,27,0,0,56,27,0,0,56,27,0,0,56,27,0,0,56,27,0,0,58,27,0,0,58,27,0,0,60,27,0,0,60,27,0,0,60,27,0,0,60,27,0,0,60,27,0,0,60,27,0,0,62,27,0,0,62,27,0,0,64,27,0,0,64,27,0,0,66,27,0,0,66,27,0,0,70,27,0,0,72,27,0,0,76,27,0,0,78,27,0,0,78,27,0,0,78,27,0,0,80,27,0,0,84,27,0,0,84,27,0,0,86,27,0,0,88,27,0,0,88,27,0,0,94,27,0,0,94,27,0,0,94,27,0,0,96,27,0,0,102,27,0,0,106,27,0,0,108,27,0,0,108,27,0,0,108,27,0,0,108,27,0,0,108,27,0,0,110,27,0,0,110,27,0,0,110,27,0,0,112,27,0,0,114,27,0,0,114,27,0,0,116,27,0,0,116,27,0,0,116,27,0,0,116,27,0,0,116,27,0,0,116,27,0,0,122,27,0,0,122,27,0,0,122,27,0,0,124,27,0,0,124,27,0,0,124,27,0,0,124,27,0,0,126,27,0,0,126,27,0,0,130,27,0,0,130,27,0,0,136,27,0,0,138,27,0,0,138,27,0,0,138,27,0,0,140,27,0,0,142,27,0,0,142,27,0,0,144,27,0,0,144,27,0,0,146,27,0,0,148,27,0,0,150,27,0,0,150,27,0,0,152,27,0,0,152,27,0,0,154,27,0,0,160,27,0,0,160,27,0,0,162,27,0,0,162,27,0,0,164,27,0,0,164,27,0,0,168,27,0,0,168,27,0,0,170,27,0,0,170,27,0,0,172,27,0,0,172,27,0,0,172,27,0,0,172,27,0,0,172,27,0,0,174,27,0,0,176,27,0,0,178,27,0,0,178,27,0,0,178,27,0,0,178,27,0,0,178,27,0,0,178,27,0,0,178,27,0,0,178,27,0,0,178,27,0,0,178,27,0,0,178,27,0,0,180,27,0,0,180,27,0,0,180,27,0,0,180,27,0,0,180,27,0,0,182,27,0,0,184,27,0,0,188,27,0,0,188,27,0,0,190,27,0,0,190,27,0,0,192,27,0,0,192,27,0,0,192,27,0,0,192,27,0,0,192,27,0,0,192,27,0,0,196,27,0,0,196,27,0,0,198,27,0,0,200,27,0,0,202,27,0,0,204,27,0,0,204,27,0,0,206,27,0,0,206,27,0,0,206,27,0,0,206,27,0,0,206,27,0,0,210,27,0,0,214,27,0,0,216,27,0,0,216,27,0,0,216,27,0,0,216,27,0,0,216,27,0,0,216,27,0,0,216,27,0,0,216,27,0,0,218,27,0,0,218,27,0,0,220,27,0,0,220,27,0,0,220,27,0,0,220,27,0,0,220,27,0,0,220,27,0,0,220,27,0,0,220,27,0,0,224,27,0,0,226,27,0,0,226,27,0,0,228,27,0,0,228,27,0,0,228,27,0,0,230,27,0,0,230,27,0,0,232,27,0,0,234,27,0,0,236,27,0,0,236,27,0,0,236,27,0,0,236,27,0,0,236,27,0,0,238,27,0,0,238,27,0,0,238,27,0,0,242,27,0,0,242,27,0,0,242,27,0,0,248,27,0,0,248,27,0,0,248,27,0,0,248,27,0,0,248,27,0,0,250,27,0,0,252,27,0,0,252,27,0,0,254,27,0,0,4,28,0,0,4,28,0,0,6,28,0,0,8,28,0,0,8,28,0,0,10,28,0,0,10,28,0,0,12,28,0,0,12,28,0,0,14,28,0,0,16,28,0,0,16,28,0,0,16,28,0,0,18,28,0,0,18,28,0,0,18,28,0,0,18,28,0,0,18,28,0,0,18,28,0,0,18,28,0,0,20,28,0,0,22,28,0,0,24,28,0,0,24,28,0,0,24,28,0,0,24,28,0,0,24,28,0,0,26,28,0,0,28,28,0,0,28,28,0,0,28,28,0,0,30,28,0,0,30,28,0,0,32,28,0,0,32,28,0,0,32,28,0,0,32,28,0,0,32,28,0,0,36,28,0,0,36,28,0,0,36,28,0,0,36,28,0,0,36,28,0,0,38,28,0,0,38,28,0,0,38,28,0,0,40,28,0,0,44,28,0,0,44,28,0,0,46,28,0,0,48,28,0,0,48,28,0,0,48,28,0,0,50,28,0,0,50,28,0,0,50,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,54,28,0,0,58,28,0,0,58,28,0,0,60,28,0,0,62,28,0,0,62,28,0,0,62,28,0,0,64,28,0,0,64,28,0,0,64,28,0,0,64,28,0,0,70,28,0,0,72,28,0,0,72,28,0,0,72,28,0,0,72,28,0,0,72,28,0,0,72,28,0,0,72,28,0,0,74,28,0,0,74,28,0,0,74,28,0,0,74,28,0,0,74,28,0,0,74,28,0,0,76,28,0,0,78,28,0,0,78,28,0,0,78,28,0,0,78,28,0,0,80,28,0,0,82,28,0,0,82,28,0,0,84,28,0,0,88,28,0,0,88,28,0,0,88,28,0,0,88,28,0,0,88,28,0,0,88,28,0,0,90,28,0,0,92,28,0,0,94,28,0,0,94,28,0,0,98,28,0,0,98,28,0,0,102,28,0,0,102,28,0,0,104,28,0,0,104,28,0,0,106,28,0,0,110,28,0,0,110,28,0,0,110,28,0,0,110,28,0,0,110,28,0,0,110,28,0,0,110,28,0,0,114,28,0,0,118,28,0,0,120,28,0,0,122,28,0,0,124,28,0,0,126,28,0,0,126,28,0,0,126,28,0,0,128,28,0,0,128,28,0,0,128,28,0,0,130,28,0,0,130,28,0,0,132,28,0,0,132,28,0,0,132,28,0,0,134,28,0,0,134,28,0,0,134,28,0,0,136,28,0,0,138,28,0,0,138,28,0,0,138,28,0,0,138,28,0,0,138,28,0,0,138,28,0,0,138,28,0,0,138,28,0,0,138,28,0,0,140,28,0,0,140,28,0,0,140,28,0,0,142,28,0,0,142,28,0,0,142,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,146,28,0,0,146,28,0,0,146,28,0,0,148,28,0,0,148,28,0,0,148,28,0,0,152,28,0,0,152,28,0,0,154,28,0,0,154,28,0,0,154,28,0,0,156,28,0,0,156,28,0,0,156,28,0,0,158,28,0,0,158,28,0,0,160,28,0,0,160,28,0,0,160,28,0,0,162,28,0,0,162,28,0,0,162,28,0,0,162,28,0,0,162,28,0,0,162,28,0,0,162,28,0,0,162,28,0,0,162,28,0,0,162,28,0,0,162,28,0,0,162,28,0,0,164,28,0,0,166,28,0,0,166,28,0,0,168,28,0,0,168,28,0,0,168,28,0,0,168,28,0,0,170,28,0,0,170,28,0,0,170,28,0,0,174,28,0,0,174,28,0,0,174,28,0,0,176,28,0,0,176,28,0,0,176,28,0,0,182,28,0,0,182,28,0,0,182,28,0,0,184,28,0,0,184,28,0,0,184,28,0,0,184,28,0,0,184,28,0,0,188,28,0,0,188,28,0,0,188,28,0,0,188,28,0,0,190,28,0,0,190,28,0,0,192,28,0,0,194,28,0,0,194,28,0,0,196,28,0,0,198,28,0,0,198,28,0,0,198,28,0,0,200,28,0,0,200,28,0,0,202,28,0,0,204,28,0,0,204,28,0,0,206,28,0,0,208,28,0,0,208,28,0,0,210,28,0,0,210,28,0,0,212,28,0,0,212,28,0,0,214,28,0,0,214,28,0,0,218,28,0,0,220,28,0,0,222,28,0,0,222,28,0,0,224,28,0,0,226,28,0,0,228,28,0,0,230,28,0,0,230,28,0,0,230,28,0,0,232,28,0,0,232,28,0,0,232,28,0,0,232,28,0,0,232,28,0,0,234,28,0,0,234,28,0,0,234,28,0,0,236,28,0,0,236,28,0,0,238,28,0,0,238,28,0,0,240,28,0,0,244,28,0,0,244,28,0,0,246,28,0,0,246,28,0,0,246,28,0,0,246,28,0,0,248,28,0,0,250,28,0,0,250,28,0,0,252,28,0,0,254,28,0,0,0,29,0,0,0,29,0,0,2,29,0,0,4,29,0,0,4,29,0,0,4,29,0,0,4,29,0,0,4,29,0,0,8,29,0,0,8,29,0,0,10,29,0,0,10,29,0,0,12,29,0,0,12,29,0,0,12,29,0,0,12,29,0,0,12,29,0,0,12,29,0,0,14,29,0,0,14,29,0,0,14,29,0,0,14,29,0,0,14,29,0,0,16,29,0,0,16,29,0,0,20,29,0,0,20,29,0,0,20,29,0,0,20,29,0,0,20,29,0,0,24,29,0,0,24,29,0,0,24,29,0,0,24,29,0,0,26,29,0,0,26,29,0,0,26,29,0,0,28,29,0,0,28,29,0,0,28,29,0,0,30,29,0,0,30,29,0,0,32,29,0,0,34,29,0,0,34,29,0,0,36,29,0,0,36,29,0,0,36,29,0,0,36,29,0,0,38,29,0,0,38,29,0,0,38,29,0,0,38,29,0,0,40,29,0,0,40,29,0,0,40,29,0,0,42,29,0,0,44,29,0,0,50,29,0,0,50,29,0,0,54,29,0,0,54,29,0,0,54,29,0,0,54,29,0,0,54,29,0,0,56,29,0,0,58,29,0,0,64,29,0,0,64,29,0,0,64,29,0,0,64,29,0,0,64,29,0,0,66,29,0,0,68,29,0,0,68,29,0,0,68,29,0,0,70,29,0,0,70,29,0,0,70,29,0,0,70,29,0,0,70,29,0,0,70,29,0,0,70,29,0,0,70,29,0,0,70,29,0,0,70,29,0,0,76,29,0,0,76,29,0,0,78,29,0,0,78,29,0,0,80,29,0,0,82,29,0,0,84,29,0,0,86,29,0,0,86,29,0,0,86,29,0,0,86,29,0,0,86,29,0,0,90,29,0,0,90,29,0,0,90,29,0,0,92,29,0,0,92,29,0,0,92,29,0,0,92,29,0,0,92,29,0,0,94,29,0,0,94,29,0,0,94,29,0,0,94,29,0,0,94,29,0,0,94,29,0,0,94,29,0,0,94,29,0,0,94,29,0,0,94,29,0,0,96,29,0,0,98,29,0,0,98,29,0,0,98,29,0,0,98,29,0,0,98,29,0,0,102,29,0,0,104,29,0,0,104,29,0,0,104,29,0,0,104,29,0,0,104,29,0,0,104,29,0,0,104,29,0,0,106,29,0,0,106,29,0,0,106,29,0,0,106,29,0,0,106,29,0,0,106,29,0,0,106,29,0,0,108,29,0,0,110,29,0,0,110,29,0,0,110,29,0,0,110,29,0,0,112,29,0,0,112,29,0,0,112,29,0,0,114,29,0,0,114,29,0,0,114,29,0,0,114,29,0,0,116,29,0,0,116,29,0,0,116,29,0,0,118,29,0,0,118,29,0,0,118,29,0,0,122,29,0,0,124,29,0,0,124,29,0,0,124,29,0,0,128,29,0,0,130,29,0,0,130,29,0,0,130,29,0,0,130,29,0,0,130,29,0,0,130,29,0,0,130,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,136,29,0,0,136,29,0,0,136,29,0,0,140,29,0,0,140,29,0,0,142,29,0,0,144,29,0,0,144,29,0,0,144,29,0,0,144,29,0,0,146,29,0,0,150,29,0,0,150,29,0,0,154,29,0,0,156,29,0,0,156,29,0,0,156,29,0,0,156,29,0,0,156,29,0,0,158,29,0,0,158,29,0,0,158,29,0,0,158,29,0,0,158,29,0,0,158,29,0,0,160,29,0,0,164,29,0,0,164,29,0,0,164,29,0,0,164,29,0,0,164,29,0,0,164,29,0,0,164,29,0,0,164,29,0,0,166,29,0,0,168,29,0,0,172,29,0,0,174,29,0,0,174,29,0,0,176,29,0,0,176,29,0,0,180,29,0,0,182,29,0,0,184,29,0,0,186,29,0,0,188,29,0,0,190,29,0,0,192,29,0,0,192,29,0,0,194,29,0,0,196,29,0,0,196,29,0,0,196,29,0,0,196,29,0,0,196,29,0,0,196,29,0,0,196,29,0,0,200,29,0,0,202,29,0,0,202,29,0,0,202,29,0,0,204,29,0,0,204,29,0,0,206,29,0,0,210,29,0,0,210,29,0,0,210,29,0,0,210,29,0,0,210,29,0,0,212,29,0,0,212,29,0,0,212,29,0,0,214,29,0,0,214,29,0,0,214,29,0,0,214,29,0,0,214,29,0,0,216,29,0,0,216,29,0,0,224,29,0,0,226,29,0,0,226,29,0,0,226,29,0,0,226,29,0,0,226,29,0,0,228,29,0,0,228,29,0,0,228,29,0,0,228,29,0,0,228,29,0,0,228,29,0,0,228,29,0,0,228,29,0,0,232,29,0,0,232,29,0,0,236,29,0,0,236,29,0,0,236,29,0,0,238,29,0,0,238,29,0,0,238,29,0,0,240,29,0,0,242,29,0,0,242,29,0,0,242,29,0,0,244,29,0,0,248,29,0,0,248,29,0,0,250,29,0,0,252,29,0,0,252,29,0,0,252,29,0,0,2,30,0,0,4,30,0,0,6,30,0,0,8,30,0,0,10,30,0,0,10,30,0,0,10,30,0,0,10,30,0,0,10,30,0,0,10,30,0,0,10,30,0,0,12,30,0,0,14,30,0,0,14,30,0,0,16,30,0,0,16,30,0,0,16,30,0,0,18,30,0,0,18,30,0,0,18,30,0,0,20,30,0,0,20,30,0,0,22,30,0,0,24,30,0,0,24,30,0,0,24,30,0,0,26,30,0,0,28,30,0,0,28,30,0,0,30,30,0,0,30,30,0,0,30,30,0,0,30,30,0,0,30,30,0,0,30,30,0,0,30,30,0,0,34,30,0,0,34,30,0,0,36,30,0,0,36,30,0,0,40,30,0,0,40,30,0,0,42,30,0,0,42,30,0,0,42,30,0,0,42,30,0,0,44,30,0,0,46,30,0,0,50,30,0,0,50,30,0,0,52,30,0,0,52,30,0,0,52,30,0,0,52,30,0,0,52,30,0,0,52,30,0,0,54,30,0,0,56,30,0,0,56,30,0,0,56,30,0,0,58,30,0,0,58,30,0,0,58,30,0,0,58,30,0,0,58,30,0,0,58,30,0,0,60,30,0,0,64,30,0,0,64,30,0,0,66,30,0,0,68,30,0,0,70,30,0,0,70,30,0,0,72,30,0,0,72,30,0,0,72,30,0,0,72,30,0,0,74,30,0,0,74,30,0,0,76,30,0,0,82,30,0,0,82,30,0,0,86,30,0,0,86,30,0,0,86,30,0,0,88,30,0,0,92,30,0,0,92,30,0,0,92,30,0,0,94,30,0,0,94,30,0,0,94,30,0,0,94,30,0,0,94,30,0,0,96,30,0,0,98,30,0,0,98,30,0,0,98,30,0,0,98,30,0,0,98,30,0,0,98,30,0,0,98,30,0,0,98,30,0,0,100,30,0,0,100,30,0,0,100,30,0,0,102,30,0,0,104,30,0,0,104,30,0,0,104,30,0,0,104,30,0,0,106,30,0,0,108,30,0,0,108,30,0,0,108,30,0,0,108,30,0,0,110,30,0,0,110,30,0,0,110,30,0,0,110,30,0,0,112,30,0,0,112,30,0,0,114,30,0,0,114,30,0,0,114,30,0,0,116,30,0,0,118,30,0,0,118,30,0,0,118,30,0,0,120,30,0,0,120,30,0,0,122,30,0,0,122,30,0,0,124,30,0,0,126,30,0,0,126,30,0,0,128,30,0,0,128,30,0,0,128,30,0,0,130,30,0,0,132,30,0,0,134,30,0,0,134,30,0,0,134,30,0,0,134,30,0,0,134,30,0,0,136,30,0,0,136,30,0,0,136,30,0,0,138,30,0,0,140,30,0,0,140,30,0,0,146,30,0,0,146,30,0,0,146,30,0,0,146,30,0,0,146,30,0,0,148,30,0,0,148,30,0,0,148,30,0,0,150,30,0,0,154,30,0,0,156,30,0,0,160,30,0,0,162,30,0,0,162,30,0,0,166,30,0,0,168,30,0,0,168,30,0,0,172,30,0,0,174,30,0,0,176,30,0,0,176,30,0,0,178,30,0,0,182,30,0,0,186,30,0,0,188,30,0,0,188,30,0,0,188,30,0,0,194,30,0,0,194,30,0,0,194,30,0,0,196,30,0,0,196,30,0,0,198,30,0,0,198,30,0,0,198,30,0,0,200,30,0,0,202,30,0,0,206,30,0,0,206,30,0,0,206,30,0,0,206,30,0,0,208,30,0,0,210,30,0,0,214,30,0,0,216,30,0,0,218,30,0,0,218,30,0,0,220,30,0,0,222,30,0,0,222,30,0,0,222,30,0,0,222,30,0,0,222,30,0,0,222,30,0,0,222,30,0,0,222,30,0,0,222,30,0,0,222,30,0,0,224,30,0,0,226,30,0,0,230,30,0,0,232,30,0,0,232,30,0,0,234,30,0,0,236,30,0,0,238,30,0,0,238,30,0,0,238,30,0,0,240,30,0,0,244,30,0,0,244,30,0,0,244,30,0,0,246,30,0,0,246,30,0,0,246,30,0,0,246,30,0,0,246,30,0,0,246,30,0,0,246,30,0,0,246,30,0,0,246,30,0,0,248,30,0,0,250,30,0,0,252,30,0,0,252,30,0,0,252,30,0,0,252,30,0,0,0,31,0,0,0,31,0,0,0,31,0,0,0,31,0,0,0,31,0,0,6,31,0,0,6,31,0,0,6,31,0,0,6,31,0,0,6,31,0,0,6,31,0,0,6,31,0,0,6,31,0,0,6,31,0,0,8,31,0,0,8,31,0,0,8,31,0,0,8,31,0,0,8,31,0,0,12,31,0,0,14,31,0,0,14,31,0,0,16,31,0,0,18,31,0,0,18,31,0,0,18,31,0,0,18,31,0,0,18,31,0,0,18,31,0,0,20,31,0,0,22,31,0,0,22,31,0,0,24,31,0,0,24,31,0,0,24,31,0,0,24,31,0,0,26,31,0,0,26,31,0,0,28,31,0,0,34,31,0,0,34,31,0,0,36,31,0,0,36,31,0,0,36,31,0,0,36,31,0,0,36,31,0,0,36,31,0,0,42,31,0,0,42,31,0,0,42,31,0,0,46,31,0,0,46,31,0,0,48,31,0,0,48,31,0,0,48,31,0,0,48,31,0,0,50,31,0,0,50,31,0,0,50,31,0,0,52,31,0,0,52,31,0,0,52,31,0,0,52,31,0,0,52,31,0,0,52,31,0,0,52,31,0,0,54,31,0,0,54,31,0,0,56,31,0,0,56,31,0,0,56,31,0,0,56,31,0,0,60,31,0,0,60,31,0,0,62,31,0,0,64,31,0,0,64,31,0,0,64,31,0,0,68,31,0,0,68,31,0,0,72,31,0,0,72,31,0,0,72,31,0,0,72,31,0,0,72,31,0,0,72,31,0,0,72,31,0,0,72,31,0,0,72,31,0,0,72,31,0,0,72,31,0,0,76,31,0,0,78,31,0,0,78,31,0,0,80,31,0,0,84,31,0,0,84,31,0,0,84,31,0,0,86,31,0,0,86,31,0,0,86,31,0,0,86,31,0,0,86,31,0,0,86,31,0,0,86,31,0,0,86,31,0,0,88,31,0,0,92,31,0,0,96,31,0,0,96,31,0,0,96,31,0,0,96,31,0,0,98,31,0,0,98,31,0,0,98,31,0,0,98,31,0,0,98,31,0,0,98,31,0,0,98,31,0,0,98,31,0,0,100,31,0,0,100,31,0,0,102,31,0,0,102,31,0,0,106,31,0,0,108,31,0,0,108,31,0,0,112,31,0,0,116,31,0,0,120,31,0,0,122,31,0,0,126,31,0,0,126,31,0,0,126,31,0,0,128,31,0,0,128,31,0,0,128,31,0,0,132,31,0,0,132,31,0,0,134,31,0,0,134,31,0,0,136,31,0,0,138,31,0,0,138,31,0,0,140,31,0,0,140,31,0,0,144,31,0,0,146,31,0,0,146,31,0,0,150,31,0,0,150,31,0,0,150,31,0,0,152,31,0,0,156,31,0,0,156,31,0,0,156,31,0,0,156,31,0,0,156,31,0,0,158,31,0,0,158,31,0,0,158,31,0,0,158,31,0,0,158,31,0,0,158,31,0,0,158,31,0,0,160,31,0,0,160,31,0,0,160,31,0,0,160,31,0,0,160,31,0,0,160,31,0,0,162,31,0,0,164,31,0,0,166,31,0,0,166,31,0,0,166,31,0,0,168,31,0,0,170,31,0,0,170,31,0,0,170,31,0,0,172,31,0,0,174,31,0,0,174,31,0,0,176,31,0,0,176,31,0,0,178,31,0,0,178,31,0,0,178,31,0,0,178,31,0,0,180,31,0,0,182,31,0,0,184,31,0,0,186,31,0,0,188,31,0,0,188,31,0,0,188,31,0,0,190,31,0,0,190,31,0,0,194,31,0,0,194,31,0,0,194,31,0,0,194,31,0,0,196,31,0,0,198,31,0,0,200,31,0,0,200,31,0,0,200,31,0,0,200,31,0,0,202,31,0,0,206,31,0,0,206,31,0,0,210,31,0,0,210,31,0,0,210,31,0,0,212,31,0,0,212,31,0,0,212,31,0,0,214,31,0,0,216,31,0,0,218,31,0,0,218,31,0,0,218,31,0,0,218,31,0,0,220,31,0,0,220,31,0,0,220,31,0,0,220,31,0,0,222,31,0,0,224,31,0,0,224,31,0,0,226,31,0,0,226,31,0,0,226,31,0,0,228,31,0,0,228,31,0,0,236,31,0,0,236,31,0,0,238,31,0,0,238,31,0,0,238,31,0,0,242,31,0,0,242,31,0,0,242,31,0,0,244,31,0,0,244,31,0,0,244,31,0,0,244,31,0,0,248,31,0,0,248,31,0,0,248,31,0,0,248,31,0,0,248,31,0,0,252,31,0,0,254,31,0,0,254,31,0,0,254,31,0,0,0,32,0,0,0,32,0,0,0,32,0,0,0,32,0,0,0,32,0,0,2,32,0,0,2,32,0,0,4,32,0,0,4,32,0,0,4,32,0,0,6,32,0,0,8,32,0,0,10,32,0,0,10,32,0,0,12,32,0,0,12,32,0,0,14,32,0,0,14,32,0,0,14,32,0,0,14,32,0,0,16,32,0,0,16,32,0,0,16,32,0,0,16,32,0,0,16,32,0,0,18,32,0,0,20,32,0,0,22,32,0,0,24,32,0,0,26,32,0,0,26,32,0,0,30,32,0,0,30,32,0,0,30,32,0,0,32,32,0,0,32,32,0,0,32,32,0,0,34,32,0,0,34,32,0,0,34,32,0,0,36,32,0,0,36,32,0,0,36,32,0,0,38,32,0,0,38,32,0,0,38,32,0,0,38,32,0,0,38,32,0,0,38,32,0,0,42,32,0,0,50,32,0,0,52,32,0,0,52,32,0,0,52,32,0,0,54,32,0,0,54,32,0,0,54,32,0,0,54,32,0,0,56,32,0,0,56,32,0,0,56,32,0,0,58,32,0,0,62,32,0,0,62,32,0,0,62,32,0,0,64,32,0,0,64,32,0,0,64,32,0,0,68,32,0,0,70,32,0,0,70,32,0,0,70,32,0,0,70,32,0,0,70,32,0,0,70,32,0,0,72,32,0,0,74,32,0,0,74,32,0,0,76,32,0,0,76,32,0,0,80,32,0,0,84,32,0,0,88,32,0,0,88,32,0,0,88,32,0,0,88,32,0,0,92,32,0,0,94,32,0,0,94,32,0,0,96,32,0,0,96,32,0,0,98,32,0,0,98,32,0,0,100,32,0,0,100,32,0,0,100,32,0,0,100,32,0,0,100,32,0,0,102,32,0,0,102,32,0,0,102,32,0,0,102,32,0,0,102,32,0,0,102,32,0,0,102,32,0,0,104,32,0,0,104,32,0,0,108,32,0,0,108,32,0,0,108,32,0,0,112,32,0,0,114,32,0,0,116,32,0,0,116,32,0,0,118,32,0,0,118,32,0,0,120,32,0,0,122,32,0,0,122,32,0,0,122,32,0,0,122,32,0,0,124,32,0,0,124,32,0,0,124,32,0,0,124,32,0,0,126,32,0,0,126,32,0,0,128,32,0,0,128,32,0,0,128,32,0,0,128,32,0,0,130,32,0,0,130,32,0,0,130,32,0,0,130,32,0,0,130,32,0,0,130,32,0,0,130,32,0,0,132,32,0,0,134,32,0,0,138,32,0,0,138,32,0,0,140,32,0,0,142,32,0,0,142,32,0,0,144,32,0,0,144,32,0,0,146,32,0,0,146,32,0,0,146,32,0,0,146,32,0,0,150,32,0,0,150,32,0,0,150,32,0,0,152,32,0,0,152,32,0,0,152,32,0,0,152,32,0,0,152,32,0,0,154,32,0,0,156,32,0,0,156,32,0,0,156,32,0,0,158,32,0,0,160,32,0,0,160,32,0,0,164,32,0,0,166,32,0,0,166,32,0,0,168,32,0,0,168,32,0,0,168,32,0,0,168,32,0,0,172,32,0,0,172,32,0,0,172,32,0,0,174,32,0,0,174,32,0,0,174,32,0,0,174,32,0,0,174,32,0,0,174,32,0,0,176,32,0,0,178,32,0,0,180,32,0,0,180,32,0,0,182,32,0,0,184,32,0,0,186,32,0,0,188,32,0,0,188,32,0,0,190,32,0,0,196,32,0,0,196,32,0,0,198,32,0,0,198,32,0,0,198,32,0,0,198,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,202,32,0,0,202,32,0,0,202,32,0,0,204,32,0,0,204,32,0,0,208,32,0,0,210,32,0,0,212,32,0,0,212,32,0,0,212,32,0,0,212,32,0,0,216,32,0,0,218,32,0,0,222,32,0,0,222,32,0,0,224,32,0,0,224,32,0,0,224,32,0,0,226,32,0,0,230,32,0,0,230,32,0,0,230,32,0,0,232,32,0,0,234,32,0,0,234,32,0,0,236,32,0,0,236,32,0,0,238,32,0,0,240,32,0,0,240,32,0,0,240,32,0,0,240,32,0,0,244,32,0,0,244,32,0,0,244,32,0,0,246,32,0,0,248,32,0,0,248,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,254,32,0,0,0,33,0,0,0,33,0,0,0,33,0,0,0,33,0,0,0,33,0,0,0,33,0,0,0,33,0,0,2,33,0,0,2,33,0,0,2,33,0,0,4,33,0,0,4,33,0,0,4,33,0,0,6,33,0,0,8,33,0,0,12,33,0,0,12,33,0,0,12,33,0,0,12,33,0,0,14,33,0,0,14,33,0,0,16,33,0,0,18,33,0,0,18,33,0,0,18,33,0,0,18,33,0,0,18,33,0,0,18,33,0,0,20,33,0,0,20,33,0,0,20,33,0,0,20,33,0,0,22,33,0,0,22,33,0,0,24,33,0,0,24,33,0,0,24,33,0,0,24,33,0,0,24,33,0,0,24,33,0,0,24,33,0,0,26,33,0,0,28,33,0,0,28,33,0,0,30,33,0,0,30,33,0,0,30,33,0,0,30,33,0,0,32,33,0,0,36,33,0,0,36,33,0,0,36,33,0,0,40,33,0,0,44,33,0,0,48,33,0,0,48,33,0,0,50,33,0,0,52,33,0,0,52,33,0,0,52,33,0,0,54,33,0,0,56,33,0,0,56,33,0,0,56,33,0,0,58,33,0,0,62,33,0,0,64,33,0,0,66,33,0,0,66,33,0,0,68,33,0,0,68,33,0,0,70,33,0,0,72,33,0,0,74,33,0,0,76,33,0,0,78,33,0,0,80,33,0,0,80,33,0,0,80,33,0,0,82,33,0,0,84,33,0,0,86,33,0,0,90,33,0,0,92,33,0,0,92,33,0,0,92,33,0,0,92,33,0,0,92,33,0,0,92,33,0,0,92,33,0,0,94,33,0,0,94,33,0,0,94,33,0,0,94,33,0,0,94,33,0,0,94,33,0,0,96,33,0,0,102,33,0,0,102,33,0,0,104,33,0,0,106,33,0,0,106,33,0,0,108,33,0,0,108,33,0,0,108,33,0,0,110,33,0,0,114,33,0,0,114,33,0,0,114,33,0,0,114,33,0,0,114,33,0,0,114,33,0,0,116,33,0,0,116,33,0,0,118,33,0,0,118,33,0,0,118,33,0,0,120,33,0,0,120,33,0,0,120,33,0,0,120,33,0,0,120,33,0,0,120,33,0,0,120,33,0,0,120,33,0,0,120,33,0,0,122,33,0,0,122,33,0,0,122,33,0,0,122,33,0,0,122,33,0,0,124,33,0,0,124,33,0,0,124,33,0,0,124,33,0,0,124,33,0,0,126,33,0,0,126,33,0,0,126,33,0,0,128,33,0,0,130,33,0,0,132,33,0,0,132,33,0,0,132,33,0,0,132,33,0,0,134,33,0,0,134,33,0,0,136,33,0,0,138,33,0,0,138,33,0,0,138,33,0,0,140,33,0,0,144,33,0,0,144,33,0,0,144,33,0,0,146,33,0,0,146,33,0,0,148,33,0,0,150,33,0,0,154,33,0,0,154,33,0,0,156,33,0,0,158,33,0,0,160,33,0,0,160,33,0,0,160,33,0,0,160,33,0,0,164,33,0,0,166,33,0,0,170,33,0,0,172,33,0,0,172,33,0,0,176,33,0,0,178,33,0,0,178,33,0,0,178,33,0,0,182,33,0,0,182,33,0,0,186,33,0,0,188,33,0,0,190,33,0,0,192,33,0,0,192,33,0,0,194,33,0,0,194,33,0,0,194,33,0,0,194,33,0,0,194,33,0,0,194,33,0,0,196,33,0,0,196,33,0,0,198,33,0,0,198,33,0,0,198,33,0,0,198,33,0,0,198,33,0,0,198,33,0,0,200,33,0,0,200,33,0,0,200,33,0,0,200,33,0,0,200,33,0,0,200,33,0,0,202,33,0,0,202,33,0,0,204,33,0,0,204,33,0,0,204,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,214,33,0,0,214,33,0,0,216,33,0,0,216,33,0,0,218,33,0,0,218,33,0,0,218,33,0,0,218,33,0,0,222,33,0,0,222,33,0,0,222,33,0,0,222,33,0,0,222,33,0,0,224,33,0,0,226,33,0,0,226,33,0,0,228,33,0,0,228,33,0,0,232,33,0,0,232,33,0,0,232,33,0,0,232,33,0,0,232,33,0,0,234,33,0,0,234,33,0,0,236,33,0,0,236,33,0,0,236,33,0,0,236,33,0,0,238,33,0,0,238,33,0,0,238,33,0,0,240,33,0,0,242,33,0,0,246,33,0,0,246,33,0,0,246,33,0,0,248,33,0,0,248,33,0,0,248,33,0,0,248,33,0,0,248,33,0,0,248,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,252,33,0,0,252,33,0,0,252,33,0,0,252,33,0,0,252,33,0,0,254,33,0,0,0,34,0,0,0,34,0,0,2,34,0,0,2,34,0,0,4,34,0,0,4,34,0,0,4,34,0,0,4,34,0,0,4,34,0,0,4,34,0,0,4,34,0,0,8,34,0,0,10,34,0,0,14,34,0,0,16,34,0,0,16,34,0,0,16,34,0,0,16,34,0,0,18,34,0,0,18,34,0,0,20,34,0,0,20,34,0,0,20,34,0,0,20,34,0,0,20,34,0,0,24,34,0,0,24,34,0,0,24,34,0,0,28,34,0,0,28,34,0,0,30,34,0,0,30,34,0,0,30,34,0,0,30,34,0,0,32,34,0,0,32,34,0,0,32,34,0,0,32,34,0,0,36,34,0,0,36,34,0,0,38,34,0,0,38,34,0,0,38,34,0,0,40,34,0,0,40,34,0,0,42,34,0,0,44,34,0,0,44,34,0,0,48,34,0,0,50,34,0,0,52,34,0,0,54,34,0,0,58,34,0,0,60,34,0,0,62,34,0,0,62,34,0,0,62,34,0,0,62,34,0,0,64,34,0,0,64,34,0,0,66,34,0,0,66,34,0,0,66,34,0,0,68,34,0,0,68,34,0,0,70,34,0,0,70,34,0,0,70,34,0,0,70,34,0,0,70,34,0,0,70,34,0,0,70,34,0,0,70,34,0,0,72,34,0,0,72,34,0,0,72,34,0,0,72,34,0,0,72,34,0,0,72,34,0,0,82,34,0,0,84,34,0,0,84,34,0,0,84,34,0,0,84,34,0,0,86,34,0,0,86,34,0,0,86,34,0,0,88,34,0,0,92,34,0,0,92,34,0,0,94,34,0,0,94,34,0,0,98,34,0,0,100,34,0,0,102,34,0,0,102,34,0,0,102,34,0,0,102,34,0,0,106,34,0,0,106,34,0,0,106,34,0,0,106,34,0,0,106,34,0,0,106,34,0,0,106,34,0,0,108,34,0,0,108,34,0,0,108,34,0,0,108,34,0,0,108,34,0,0,108,34,0,0,108,34,0,0,108,34,0,0,108,34,0,0,112,34,0,0,112,34,0,0,112,34,0,0,114,34,0,0,116,34,0,0,116,34,0,0,118,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,126,34,0,0,126,34,0,0,130,34,0,0,130,34,0,0,130,34,0,0,132,34,0,0,132,34,0,0,132,34,0,0,132,34,0,0,132,34,0,0,134,34,0,0,134,34,0,0,134,34,0,0,134,34,0,0,134,34,0,0,136,34,0,0,140,34,0,0,144,34,0,0,144,34,0,0,144,34,0,0,144,34,0,0,144,34,0,0,146,34,0,0,146,34,0,0,146,34,0,0,146,34,0,0,146,34,0,0,146,34,0,0,146,34,0,0,146,34,0,0,148,34,0,0,150,34,0,0,150,34,0,0,152,34,0,0,152,34,0,0,154,34,0,0,156,34,0,0,156,34,0,0,156,34,0,0,156,34,0,0,158,34,0,0,158,34,0,0,158,34,0,0,158,34,0,0,160,34,0,0,160,34,0,0,162,34,0,0,162,34,0,0,162,34,0,0,162,34,0,0,162,34,0,0,162,34,0,0,162,34,0,0,164,34,0,0,164,34,0,0,164,34,0,0,164,34,0,0,166,34,0,0,166,34,0,0,166,34,0,0,166,34,0,0,166,34,0,0,168,34,0,0,168,34,0,0,168,34,0,0,168,34,0,0,170,34,0,0,172,34,0,0,174,34,0,0,178,34,0,0,178,34,0,0,180,34,0,0,182,34,0,0,182,34,0,0,182,34,0,0,184,34,0,0,184,34,0,0,184,34,0,0,184,34,0,0,184,34,0,0,184,34,0,0,184,34,0,0,184,34,0,0,188,34,0,0,188,34,0,0,188,34,0,0,188,34,0,0,188,34,0,0,188,34,0,0,188,34,0,0,188,34,0,0,190,34,0,0,190,34,0,0,190,34,0,0,190,34,0,0,190,34,0,0,190,34,0,0,190,34,0,0,190,34,0,0,190,34,0,0,192,34,0,0,192,34,0,0,192,34,0,0,192,34,0,0,194,34,0,0,196,34,0,0,198,34,0,0,198,34,0,0,198,34,0,0,200,34,0,0,202,34,0,0,202,34,0,0,202,34,0,0,202,34,0,0,202,34,0,0,202,34,0,0,202,34,0,0,204,34,0,0,206,34,0,0,208,34,0,0,210,34,0,0,210,34,0,0,210,34,0,0,212,34,0,0,212,34,0,0,216,34,0,0,218,34,0,0,218,34,0,0,220,34,0,0,220,34,0,0,222,34,0,0,222,34,0,0,222,34,0,0,222,34,0,0,222,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,226,34,0,0,228,34,0,0,232,34,0,0,234,34,0,0,236,34,0,0,240,34,0,0,242,34,0,0,242,34,0,0,242,34,0,0,242,34,0,0,244,34,0,0,250,34,0,0,252,34,0,0,254,34,0,0,0,35,0,0,2,35,0,0,4,35,0,0,6,35,0,0,8,35,0,0,8,35,0,0,8,35,0,0,8,35,0,0,8,35,0,0,8,35,0,0,8,35,0,0,12,35,0,0,14,35,0,0,16,35,0,0,16,35,0,0,16,35,0,0,18,35,0,0,18,35,0,0,20,35,0,0,20,35,0,0,24,35,0,0,24,35,0,0,28,35,0,0,28,35,0,0,32,35,0,0,34,35,0,0,34,35,0,0,34,35,0,0,36,35,0,0,36,35,0,0,36,35,0,0,36,35,0,0,38,35,0,0,38,35,0,0,38,35,0,0,40,35,0,0,44,35,0,0,46,35,0,0,46,35,0,0,46,35,0,0,48,35,0,0,50,35,0,0,50,35,0,0,54,35,0,0,54,35,0,0,56,35,0,0,58,35,0,0,60,35,0,0,62,35,0,0,62,35,0,0,64,35,0,0,64,35,0,0,64,35,0,0,66,35,0,0,68,35,0,0,68,35,0,0,68,35,0,0,72,35,0,0,72,35,0,0,72,35,0,0,72,35,0,0,72,35,0,0,74,35,0,0,76,35,0,0,76,35,0,0,76,35,0,0,78,35,0,0,78,35,0,0,80,35,0,0,82,35,0,0,84,35,0,0,86,35,0,0,86,35,0,0,86,35,0,0,86,35,0,0,86,35,0,0,86,35,0,0,88,35,0,0,90,35,0,0,92,35,0,0,92,35,0,0,92,35,0,0,92,35,0,0,92,35,0,0,94,35,0,0,94,35,0,0,96,35,0,0,96,35,0,0,96,35,0,0,96,35,0,0,96,35,0,0,96,35,0,0,100,35,0,0,102,35,0,0,104,35,0,0,104,35,0,0,104,35,0,0,104,35,0,0,104,35,0,0,104,35,0,0,104,35,0,0,104,35,0,0,106,35,0,0,106,35,0,0,108,35,0,0,108,35,0,0,112,35,0,0,114,35,0,0,114,35,0,0,114,35,0,0,116,35,0,0,116,35,0,0,118,35,0,0,118,35,0,0,118,35,0,0,120,35,0,0,120,35,0,0,120,35,0,0,120,35,0,0,120,35,0,0,120,35,0,0,122,35,0,0,122,35,0,0,122,35,0,0,122,35,0,0,124,35,0,0,126,35,0,0,126,35,0,0,126,35,0,0,128,35,0,0,128,35,0,0,128,35,0,0,128,35,0,0,130,35,0,0,130,35,0,0,130,35,0,0,130,35,0,0,130,35,0,0,130,35,0,0,130,35,0,0,130,35,0,0,134,35,0,0,134,35,0,0,134,35,0,0,134,35,0,0,136,35,0,0,136,35,0,0,136,35,0,0,138,35,0,0,138,35,0,0,138,35,0,0,138,35,0,0,140,35,0,0,140,35,0,0,140,35,0,0,144,35,0,0,144,35,0,0,150,35,0,0,150,35,0,0,150,35,0,0,150,35,0,0,152,35,0,0,152,35,0,0,152,35,0,0,156,35,0,0,156,35,0,0,156,35,0,0,156,35,0,0,158,35,0,0,158,35,0,0,160,35,0,0,162,35,0,0,166,35,0,0,168,35,0,0,168,35,0,0,168,35,0,0,170,35,0,0,170,35,0,0,174,35,0,0,176,35,0,0,178,35,0,0,180,35,0,0,180,35,0,0,182,35,0,0,182,35,0,0,184,35,0,0,184,35,0,0,184,35,0,0,184,35,0,0,184,35,0,0,184,35,0,0,186,35,0,0,188,35,0,0,188,35,0,0,194,35,0,0,194,35,0,0,194,35,0,0,194,35,0,0,194,35,0,0,196,35,0,0,196,35,0,0,200,35,0,0,200,35,0,0,200,35,0,0,200,35,0,0,202,35,0,0,202,35,0,0,202,35,0,0,204,35,0,0,204,35,0,0,206,35,0,0,206,35,0,0,206,35,0,0,206,35,0,0,210,35,0,0,210,35,0,0,212,35,0,0,212,35,0,0,212,35,0,0,212,35,0,0,214,35,0,0,214,35,0,0,214,35,0,0,216,35,0,0,216,35,0,0,216,35,0,0,216,35,0,0,218,35,0,0,218,35,0,0,218,35,0,0,218,35,0,0,218,35,0,0,218,35,0,0,222,35,0,0,222,35,0,0,226,35,0,0,226,35,0,0,228,35,0,0,228,35,0,0,230,35,0,0,230,35,0,0,234,35,0,0,234,35,0,0,234,35,0,0,234,35,0,0,238,35,0,0,240,35,0,0,242,35,0,0,244,35,0,0,248,35,0,0,248,35,0,0,248,35,0,0,248,35,0,0,248,35,0,0,252,35,0,0,252,35,0,0,254,35,0,0,254,35,0,0,254,35,0,0,0,36,0,0,0,36,0,0,2,36,0,0,4,36,0,0,6,36,0,0,6,36,0,0,12,36,0,0,12,36,0,0,14,36,0,0,16,36,0,0,16,36,0,0,16,36,0,0,18,36,0,0,20,36,0,0,22,36,0,0,26,36,0,0,28,36,0,0,28,36,0,0,28,36,0,0,28,36,0,0,28,36,0,0,30,36,0,0,36,36,0,0,36,36,0,0,36,36,0,0,38,36,0,0,40,36,0,0,40,36,0,0,50,36,0,0,50,36,0,0,52,36,0,0,56,36,0,0,60,36,0,0,60,36,0,0,62,36,0,0,62,36,0,0,62,36,0,0,62,36,0,0,62,36,0,0,62,36,0,0,64,36,0,0,64,36,0,0,64,36,0,0,64,36,0,0,66,36,0,0,68,36,0,0,70,36,0,0,70,36,0,0,72,36,0,0,74,36,0,0,74,36,0,0,74,36,0,0,78,36,0,0,78,36,0,0,78,36,0,0,80,36,0,0,80,36,0,0,80,36,0,0,80,36,0,0,80,36,0,0,80,36,0,0,80,36,0,0,80,36,0,0,80,36,0,0,80,36,0,0,82,36,0,0,84,36,0,0,88,36,0,0,88,36,0,0,88,36,0,0,90,36,0,0,92,36,0,0,92,36,0,0,92,36,0,0,96,36,0,0,100,36,0,0,102,36,0,0,102,36,0,0,104,36,0,0,108,36,0,0,108,36,0,0,108,36,0,0,110,36,0,0,112,36,0,0,114,36,0,0,116,36,0,0,118,36,0,0,118,36,0,0,118,36,0,0,120,36,0,0,120,36,0,0,120,36,0,0,120,36,0,0,120,36,0,0,120,36,0,0,120,36,0,0,120,36,0,0,120,36,0,0,120,36,0,0,122,36,0,0,126,36,0,0,128,36,0,0,128,36,0,0,130,36,0,0,134,36,0,0,136,36,0,0,136,36,0,0,138,36,0,0,142,36,0,0,142,36,0,0,144,36,0,0,144,36,0,0,144,36,0,0,146,36,0,0,150,36,0,0,152,36,0,0,152,36,0,0,156,36,0,0,158,36,0,0,158,36,0,0,158,36,0,0,158,36,0,0,158,36,0,0,164,36,0,0,164,36,0,0,166,36,0,0,166,36,0,0,168,36,0,0,168,36,0,0,170,36,0,0,176,36,0,0,178,36,0,0,180,36,0,0,182,36,0,0,186,36,0,0,186,36,0,0,188,36,0,0,190,36,0,0,190,36,0,0,190,36,0,0,190,36,0,0,190,36,0,0,190,36,0,0,192,36,0,0,192,36,0,0,192,36,0,0,194,36,0,0,194,36,0,0,194,36,0,0,194,36,0,0,200,36,0,0,200,36,0,0,200,36,0,0,200,36,0,0,200,36,0,0,204,36,0,0,204,36,0,0,204,36,0,0,204,36,0,0,204,36,0,0,206,36,0,0,206,36,0,0,206,36,0,0,208,36,0,0,208,36,0,0,208,36,0,0,210,36,0,0,212,36,0,0,212,36,0,0,214,36,0,0,214,36,0,0,216,36,0,0,216,36,0,0,216,36,0,0,216,36,0,0,216,36,0,0,218,36,0,0,218,36,0,0,218,36,0,0,222,36,0,0,222,36,0,0,222,36,0,0,222,36,0,0,222,36,0,0,222,36,0,0,222,36,0,0,230,36,0,0,230,36,0,0,232,36,0,0,232,36,0,0,232,36,0,0,234,36,0,0,234,36,0,0,236,36,0,0,236,36,0,0,236,36,0,0,236,36,0,0,236,36,0,0,236,36,0,0,236,36,0,0,240,36,0,0,240,36,0,0,242,36,0,0,244,36,0,0,244,36,0,0,244,36,0,0,244,36,0,0,246,36,0,0,246,36,0,0,246,36,0,0,246,36,0,0,246,36,0,0,246,36,0,0,246,36,0,0,246,36,0,0,246,36,0,0,250,36,0,0,254,36,0,0,254,36,0,0,2,37,0,0,4,37,0,0,8,37,0,0,8,37,0,0,10,37,0,0,12,37,0,0,14,37,0,0,16,37,0,0,16,37,0,0,16,37,0,0,16,37,0,0,16,37,0,0,18,37,0,0,18,37,0,0,22,37,0,0,22,37,0,0,22,37,0,0,22,37,0,0,22,37,0,0,22,37,0,0,22,37,0,0,22,37,0,0,22,37,0,0,22,37,0,0,24,37,0,0,24,37,0,0,24,37,0,0,24,37,0,0,26,37,0,0,26,37,0,0,26,37,0,0,28,37,0,0,30,37,0,0,34,37,0,0,34,37,0,0,38,37,0,0,38,37,0,0,38,37,0,0,40,37,0,0,40,37,0,0,40,37,0,0,40,37,0,0,42,37,0,0,44,37,0,0,44,37,0,0,46,37,0,0,46,37,0,0,46,37,0,0,46,37,0,0,46,37,0,0,50,37,0,0,50,37,0,0,52,37,0,0,52,37,0,0,54,37,0,0,56,37,0,0,56,37,0,0,56,37,0,0,58,37,0,0,62,37,0,0,62,37,0,0,62,37,0,0,62,37,0,0,64,37,0,0,64,37,0,0,66,37,0,0,66,37,0,0,66,37,0,0,68,37,0,0,68,37,0,0,70,37,0,0,70,37,0,0,72,37,0,0,72,37,0,0,74,37,0,0,78,37,0,0,80,37,0,0,80,37,0,0,80,37,0,0,80,37,0,0,80,37,0,0,80,37,0,0,80,37,0,0,80,37,0,0,80,37,0,0,80,37,0,0,82,37,0,0,82,37,0,0,84,37,0,0,84,37,0,0,84,37,0,0,84,37,0,0,84,37,0,0,88,37,0,0,88,37,0,0,90,37,0,0,92,37,0,0,92,37,0,0,94,37,0,0,94,37,0,0,98,37,0,0,98,37,0,0,98,37,0,0,98,37,0,0,100,37,0,0,100,37,0,0,102,37,0,0,104,37,0,0,104,37,0,0,108,37,0,0,108,37,0,0,110,37,0,0,112,37,0,0,112,37,0,0,112,37,0,0,112,37,0,0,114,37,0,0,114,37,0,0,114,37,0,0,116,37,0,0,116,37,0,0,116,37,0,0,116,37,0,0,118,37,0,0,118,37,0,0,122,37,0,0,124,37,0,0,126,37,0,0,126,37,0,0,126,37,0,0,128,37,0,0,128,37,0,0,128,37,0,0,128,37,0,0,128,37,0,0,132,37,0,0,132,37,0,0,132,37,0,0,132,37,0,0,132,37,0,0,134,37,0,0,134,37,0,0,134,37,0,0,136,37,0,0,142,37,0,0,144,37,0,0,146,37,0,0,146,37,0,0,148,37,0,0,148,37,0,0,152,37,0,0,154,37,0,0,154,37,0,0,154,37,0,0,154,37,0,0,156,37,0,0,158,37,0,0,158,37,0,0,160,37,0,0,160,37,0,0,160,37,0,0,160,37,0,0,164,37,0,0,166,37,0,0,168,37,0,0,168,37,0,0,168,37,0,0,168,37,0,0,174,37,0,0,174,37,0,0,174,37,0,0,176,37,0,0,178,37,0,0,180,37,0,0,180,37,0,0,180,37,0,0,182,37,0,0,182,37,0,0,182,37,0,0,182,37,0,0,186,37,0,0,190,37,0,0,192,37,0,0,192,37,0,0,192,37,0,0,192,37,0,0,192,37,0,0,192,37,0,0,192,37,0,0,192,37,0,0,194,37,0,0,194,37,0,0,194,37,0,0,196,37,0,0,196,37,0,0,196,37,0,0,196,37,0,0,198,37,0,0,198,37,0,0,200,37,0,0,202,37,0,0,204,37,0,0,206,37,0,0,208,37,0,0,208,37,0,0,208,37,0,0,208,37,0,0,210,37,0,0,210,37,0,0,210,37,0,0,210,37,0,0,212,37,0,0,214,37,0,0,214,37,0,0,216,37,0,0,220,37,0,0,220,37,0,0,222,37,0,0,224,37,0,0,224,37,0,0,224,37,0,0,226,37,0,0,228,37,0,0,230,37,0,0,230,37,0,0,232,37,0,0,236,37,0,0,236,37,0,0,236,37,0,0,236,37,0,0,240,37,0,0,240,37,0,0,242,37,0,0,244,37,0,0,246,37,0,0,250,37,0,0,250,37,0,0,254,37,0,0,2,38,0,0,2,38,0,0,2,38,0,0,2,38,0,0,4,38,0,0,6,38,0,0,8,38,0,0,10,38,0,0,10,38,0,0,10,38,0,0,12,38,0,0,14,38,0,0,16,38,0,0,20,38,0,0,20,38,0,0,20,38,0,0,20,38,0,0,20,38,0,0,20,38,0,0,20,38,0,0,22,38,0,0,22,38,0,0,22,38,0,0,22,38,0,0,24,38,0,0,24,38,0,0,24,38,0,0,24,38,0,0,24,38,0,0,24,38,0,0,24,38,0,0,24,38,0,0,26,38,0,0,28,38,0,0,28,38,0,0,28,38,0,0,32,38,0,0,32,38,0,0,34,38,0,0,36,38,0,0,38,38,0,0,38,38,0,0,38,38,0,0,38,38,0,0,38,38,0,0,38,38,0,0,40,38,0,0,40,38,0,0,40,38,0,0,40,38,0,0,40,38,0,0,40,38,0,0,42,38,0,0,42,38,0,0,42,38,0,0,44,38,0,0,44,38,0,0,46,38,0,0,48,38,0,0,50,38,0,0,52,38,0,0,52,38,0,0,54,38,0,0,54,38,0,0,56,38,0,0,56,38,0,0,56,38,0,0,58,38,0,0,58,38,0,0,60,38,0,0,60,38,0,0,64,38,0,0,64,38,0,0,64,38,0,0,64,38,0,0,64,38,0,0,64,38,0,0,66,38,0,0,68,38,0,0,68,38,0,0,68,38,0,0,68,38,0,0,68,38,0,0,68,38,0,0,70,38,0,0,70,38,0,0,70,38,0,0,70,38,0,0,70,38,0,0,70,38,0,0,70,38,0,0,72,38,0,0,72,38,0,0,74,38,0,0,76,38,0,0,80,38,0,0,80,38,0,0,80,38,0,0,80,38,0,0,82,38,0,0,82,38,0,0,82,38,0,0,82,38,0,0,82,38,0,0,82,38,0,0,84,38,0,0,84,38,0,0,84,38,0,0,84,38,0,0,84,38,0,0,86,38,0,0,86,38,0,0,90,38,0,0,92,38,0,0,92,38,0,0,92,38,0,0,92,38,0,0,94,38,0,0,94,38,0,0,94,38,0,0,94,38,0,0,94,38,0,0,96,38,0,0,96,38,0,0,96,38,0,0,96,38,0,0,96,38,0,0,96,38,0,0,96,38,0,0,96,38,0,0,96,38,0,0,96,38,0,0,98,38,0,0,98,38,0,0,98,38,0,0,102,38,0,0,102,38,0,0,106,38,0,0,106,38,0,0,106,38,0,0,106,38,0,0,106,38,0,0,106,38,0,0,106,38,0,0,106,38,0,0,106,38,0,0,106,38,0,0,108,38,0,0,108,38,0,0,110,38,0,0,110,38,0,0,110,38,0,0,110,38,0,0,110,38,0,0,114,38,0,0,114,38,0,0,114,38,0,0,116,38,0,0,118,38,0,0,120,38,0,0,122,38,0,0,124,38,0,0,130,38,0,0,130,38,0,0,130,38,0,0,132,38,0,0,132,38,0,0,132,38,0,0,132,38,0,0,134,38,0,0,134,38,0,0,134,38,0,0,142,38,0,0,142,38,0,0,144,38,0,0,144,38,0,0,146,38,0,0,146,38,0,0,148,38,0,0,148,38,0,0,148,38,0,0,150,38,0,0,156,38,0,0,156,38,0,0,158,38,0,0,160,38,0,0,160,38,0,0,166,38,0,0,166,38,0,0,168,38,0,0,168,38,0,0,170,38,0,0,170,38,0,0,172,38,0,0,174,38,0,0,174,38,0,0,174,38,0,0,176,38,0,0,178,38,0,0,180,38,0,0,182,38,0,0,182,38,0,0,182,38,0,0,184,38,0,0,184,38,0,0,184,38,0,0,186,38,0,0,186,38,0,0,186,38,0,0,188,38,0,0,188,38,0,0,188,38,0,0,188,38,0,0,190,38,0,0,190,38,0,0,190,38,0,0,192,38,0,0,194,38,0,0,194,38,0,0,194,38,0,0,196,38,0,0,198,38,0,0,200,38,0,0,204,38,0,0,206,38,0,0,208,38,0,0,208,38,0,0,208,38,0,0,216,38,0,0,218,38,0,0,220,38,0,0,222,38,0,0,222,38,0,0,222,38,0,0,222,38,0,0,224,38,0,0,224,38,0,0,224,38,0,0,226,38,0,0,226,38,0,0,226,38,0,0,228,38,0,0,230,38,0,0,230,38,0,0,232,38,0,0,234,38,0,0,234,38,0,0,234,38,0,0,240,38,0,0,240,38,0,0,240,38,0,0,240,38,0,0,240,38,0,0,242,38,0,0,244,38,0,0,246,38,0,0,248,38,0,0,248,38,0,0,248,38,0,0,248,38,0,0,248,38,0,0,248,38,0,0,248,38,0,0,248,38,0,0,248,38,0,0,248,38,0,0,248,38,0,0,248,38,0,0,250,38,0,0,252,38,0,0,252,38,0,0,252,38,0,0,0,39,0,0,2,39,0,0,2,39,0,0,2,39,0,0,2,39,0,0,2,39,0,0,4,39,0,0,6,39,0,0,8,39,0,0,10,39,0,0,10,39,0,0,10,39,0,0,10,39,0,0,12,39,0,0,14,39,0,0,14,39,0,0,14,39,0,0,16,39,0,0,16,39,0,0,16,39,0,0,16,39,0,0,20,39,0,0,22,39,0,0,24,39,0,0,28,39,0,0,28,39,0,0,30,39,0,0,30,39,0,0,30,39,0,0,34,39,0,0,36,39,0,0,36,39,0,0,38,39,0,0,40,39,0,0,40,39,0,0,40,39,0,0,40,39,0,0,40,39,0,0,40,39,0,0,42,39,0,0,46,39,0,0,48,39,0,0,50,39,0,0,50,39,0,0,50,39,0,0,56,39,0,0,58,39,0,0,58,39,0,0,60,39,0,0,60,39,0,0,64,39,0,0,64,39,0,0,66,39,0,0,68,39,0,0,68,39,0,0,68,39,0,0,70,39,0,0,72,39,0,0,74,39,0,0,78,39,0,0,80,39,0,0,80,39,0,0,82,39,0,0,84,39,0,0,84,39,0,0,86,39,0,0,88,39,0,0,88,39,0,0,90,39,0,0,90,39,0,0,90,39,0,0,90,39,0,0,90,39,0,0,90,39,0,0,90,39,0,0,90,39,0,0,90,39,0,0,90,39,0,0,94,39,0,0,96,39,0,0,98,39,0,0,102,39,0,0,102,39,0,0,104,39,0,0,104,39,0,0,104,39,0,0,104,39,0,0,104,39,0,0,104,39,0,0,104,39,0,0,106,39,0,0,106,39,0,0,110,39,0,0,110,39,0,0,112,39,0,0,112,39,0,0,120,39,0,0,120,39,0,0,120,39,0,0,120,39,0,0,120,39,0,0,122,39,0,0,124,39,0,0,124,39,0,0,124,39,0,0,124,39,0,0,124,39,0,0,124,39,0,0,126,39,0,0,126,39,0,0,126,39,0,0,128,39,0,0,128,39,0,0,128,39,0,0,130,39,0,0,130,39,0,0,132,39,0,0,132,39,0,0,134,39,0,0,134,39,0,0,136,39,0,0,136,39,0,0,136,39,0,0,138,39,0,0,138,39,0,0,138,39,0,0,140,39,0,0,142,39,0,0,142,39,0,0,142,39,0,0,142,39,0,0,142,39,0,0,142,39,0,0,142,39,0,0,142,39,0,0,142,39,0,0,142,39,0,0,142,39,0,0,142,39,0,0,142,39,0,0,146,39,0,0,146,39,0,0,148,39,0,0,150,39,0,0,152,39,0,0,152,39,0,0,152,39,0,0,154,39,0,0,154,39,0,0,154,39,0,0,156,39,0,0,156,39,0,0,156,39,0,0,156,39,0,0,156,39,0,0,156,39,0,0,156,39,0,0,156,39,0,0,158,39,0,0,160,39,0,0,160,39,0,0,160,39,0,0,160,39,0,0,160,39,0,0,162,39,0,0,164,39,0,0,164,39,0,0,164,39,0,0,172,39,0,0,172,39,0,0,172,39,0,0,172,39,0,0,172,39,0,0,172,39,0,0,174,39,0,0,174,39,0,0,174,39,0,0,176,39,0,0,176,39,0,0,178,39,0,0,180,39,0,0,180,39,0,0,180,39,0,0,180,39,0,0,182,39,0,0,182,39,0,0,182,39,0,0,184,39,0,0,184,39,0,0,186,39,0,0,188,39,0,0,188,39,0,0,188,39,0,0,188,39,0,0,188,39,0,0,188,39,0,0,188,39,0,0,188,39,0,0,188,39,0,0,192,39,0,0,192,39,0,0,192,39,0,0,194,39,0,0,194,39,0,0,196,39,0,0,202,39,0,0,204,39,0,0,204,39,0,0,204,39,0,0,206,39,0,0,208,39,0,0,208,39,0,0,208,39,0,0,212,39,0,0,214,39,0,0,216,39,0,0,216,39,0,0,218,39,0,0,218,39,0,0,220,39,0,0,220,39,0,0,220,39,0,0,222,39,0,0,224,39,0,0,228,39,0,0,228,39,0,0,228,39,0,0,228,39,0,0,232,39,0,0,236,39,0,0,236,39,0,0,236,39,0,0,238,39,0,0,238,39,0,0,238,39,0,0,238,39,0,0,238,39,0,0,238,39,0,0,238,39,0,0,238,39,0,0,242,39,0,0,242,39,0,0,244,39,0,0,246,39,0,0,246,39,0,0,246,39,0,0,250,39,0,0,250,39,0,0,250,39,0,0,250,39,0,0,250,39,0,0,252,39,0,0,254,39,0,0,254,39,0,0,254,39,0,0,0,40,0,0,4,40,0,0,6,40,0,0,6,40,0,0,6,40,0,0,8,40,0,0,12,40,0,0,14,40,0,0,14,40,0,0,16,40,0,0,16,40,0,0,16,40,0,0,18,40,0,0,18,40,0,0,18,40,0,0,18,40,0,0,18,40,0,0,18,40,0,0,18,40,0,0,18,40,0,0,18,40,0,0,18,40,0,0,18,40,0,0,20,40,0,0,20,40,0,0,20,40,0,0,26,40,0,0,30,40,0,0,32,40,0,0,34,40,0,0,34,40,0,0,34,40,0,0,36,40,0,0,38,40,0,0,38,40,0,0,38,40,0,0,38,40,0,0,38,40,0,0,42,40,0,0,44,40,0,0,44,40,0,0,44,40,0,0,44,40,0,0,46,40,0,0,48,40,0,0,48,40,0,0,50,40,0,0,52,40,0,0,56,40,0,0,56,40,0,0,58,40,0,0,58,40,0,0,58,40,0,0,58,40,0,0,58,40,0,0,60,40,0,0,60,40,0,0,60,40,0,0,62,40,0,0,62,40,0,0,62,40,0,0,62,40,0,0,70,40,0,0,70,40,0,0,70,40,0,0,72,40,0,0,72,40,0,0,74,40,0,0,76,40,0,0,76,40,0,0,78,40,0,0,78,40,0,0,80,40,0,0,82,40,0,0,88,40,0,0,88,40,0,0,88,40,0,0,88,40,0,0,90,40,0,0,90,40,0,0,90,40,0,0,90,40,0,0,92,40,0,0,92,40,0,0,92,40,0,0,94,40,0,0,94,40,0,0,94,40,0,0,94,40,0,0,94,40,0,0,96,40,0,0,96,40,0,0,96,40,0,0,98,40,0,0,100,40,0,0,102,40,0,0,104,40,0,0,104,40,0,0,106,40,0,0,106,40,0,0,108,40,0,0,108,40,0,0,110,40,0,0,114,40,0,0,114,40,0,0,114,40,0,0,114,40,0,0,114,40,0,0,118,40,0,0,122,40,0,0,124,40,0,0,124,40,0,0,124,40,0,0,126,40,0,0,126,40,0,0,126,40,0,0,126,40,0,0,126,40,0,0,126,40,0,0,130,40,0,0,130,40,0,0,130,40,0,0,130,40,0,0,130,40,0,0,132,40,0,0,136,40,0,0,136,40,0,0,138,40,0,0,140,40,0,0,140,40,0,0,140,40,0,0,140,40,0,0,140,40,0,0,144,40,0,0,144,40,0,0,146,40,0,0,146,40,0,0,148,40,0,0,150,40,0,0,150,40,0,0,150,40,0,0,152,40,0,0,154,40,0,0,156,40,0,0,156,40,0,0,156,40,0,0,156,40,0,0,156,40,0,0,160,40,0,0,162,40,0,0,162,40,0,0,164,40,0,0,164,40,0,0,166,40,0,0,166,40,0,0,166,40,0,0,166,40,0,0,166,40,0,0,168,40,0,0,170,40,0,0,170,40,0,0,172,40,0,0,172,40,0,0,174,40,0,0,174,40,0,0,174,40,0,0,178,40,0,0,178,40,0,0,180,40,0,0,180,40,0,0,180,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,186,40,0,0,186,40,0,0,186,40,0,0,186,40,0,0,186,40,0,0,186,40,0,0,186,40,0,0,188,40,0,0,188,40,0,0,188,40,0,0,190,40,0,0,192,40,0,0,194,40,0,0,196,40,0,0,196,40,0,0,196,40,0,0,196,40,0,0,196,40,0,0,196,40,0,0,198,40,0,0,198,40,0,0,198,40,0,0,202,40,0,0,204,40,0,0,208,40,0,0,208,40,0,0,208,40,0,0,208,40,0,0,210,40,0,0,210,40,0,0,210,40,0,0,212,40,0,0,212,40,0,0,212,40,0,0,218,40,0,0,218,40,0,0,218,40,0,0,218,40,0,0,220,40,0,0,222,40,0,0,222,40,0,0,222,40,0,0,222,40,0,0,222,40,0,0,222,40,0,0,224,40,0,0,224,40,0,0,224,40,0,0,226,40,0,0,228,40,0,0,230,40,0,0,230,40,0,0,230,40,0,0,230,40,0,0,230,40,0,0,230,40,0,0,232,40,0,0,234,40,0,0,234,40,0,0,236,40,0,0,236,40,0,0,236,40,0,0,236,40,0,0,236,40,0,0,236,40,0,0,236,40,0,0,238,40,0,0,238,40,0,0,240,40,0,0,246,40,0,0,246,40,0,0,250,40,0,0,252,40,0,0,252,40,0,0,252,40,0,0,254,40,0,0,254,40,0,0,254,40,0,0,254,40,0,0,0,41,0,0,0,41,0,0,2,41,0,0,2,41,0,0,4,41,0,0,4,41,0,0,4,41,0,0,4,41,0,0,6,41,0,0,6,41,0,0,8,41,0,0,8,41,0,0,8,41,0,0,8,41,0,0,8,41,0,0,10,41,0,0,12,41,0,0,12,41,0,0,12,41,0,0,12,41,0,0,14,41,0,0,14,41,0,0,16,41,0,0,16,41,0,0,16,41,0,0,16,41,0,0,16,41,0,0,18,41,0,0,18,41,0,0,20,41,0,0,20,41,0,0,20,41,0,0,20,41,0,0,20,41,0,0,20,41,0,0,20,41,0,0,26,41,0,0,26,41,0,0,26,41,0,0,26,41,0,0,32,41,0,0,32,41,0,0,32,41,0,0,36,41,0,0,36,41,0,0,38,41,0,0,38,41,0,0,38,41,0,0,38,41,0,0,38,41,0,0,42,41,0,0,44,41,0,0,44,41,0,0,44,41,0,0,44,41,0,0,44,41,0,0,44,41,0,0,44,41,0,0,44,41,0,0,44,41,0,0,44,41,0,0,44,41,0,0,46,41,0,0,46,41,0,0,46,41,0,0,46,41,0,0,48,41,0,0,48,41,0,0,48,41,0,0,48,41,0,0,48,41,0,0,50,41,0,0,50,41,0,0,50,41,0,0,50,41,0,0,54,41,0,0,54,41,0,0,54,41,0,0,54,41,0,0,58,41,0,0,60,41,0,0,60,41,0,0,60,41,0,0,60,41,0,0,62,41,0,0,62,41,0,0,62,41,0,0,62,41,0,0,62,41,0,0,62,41,0,0,64,41,0,0,68,41,0,0,68,41,0,0,70,41,0,0,72,41,0,0,76,41,0,0,78,41,0,0,78,41,0,0,78,41,0,0,80,41,0,0,80,41,0,0,80,41,0,0,82,41,0,0,82,41,0,0,82,41,0,0,86,41,0,0,86,41,0,0,86,41,0,0,88,41,0,0,88,41,0,0,94,41,0,0,96,41,0,0,96,41,0,0,96,41,0,0,96,41,0,0,96,41,0,0,96,41,0,0,96,41,0,0,96,41,0,0,96,41,0,0,96,41,0,0,96,41,0,0,96,41,0,0,98,41,0,0,100,41,0,0,104,41,0,0,106,41,0,0,106,41,0,0,106,41,0,0,106,41,0,0,106,41,0,0,106,41,0,0,106,41,0,0,106,41,0,0,108,41,0,0,112,41,0,0,114,41,0,0,114,41,0,0,116,41,0,0,118,41,0,0,120,41,0,0,122,41,0,0,124,41,0,0,124,41,0,0,124,41,0,0,126,41,0,0,126,41,0,0,126,41,0,0,126,41,0,0,126,41,0,0,126,41,0,0,126,41,0,0,130,41,0,0,130,41,0,0,132,41,0,0,134,41,0,0,136,41,0,0,140,41,0,0,140,41,0,0,142,41,0,0,144,41,0,0,144,41,0,0,146,41,0,0,146,41,0,0,146,41,0,0,146,41,0,0,146,41,0,0,150,41,0,0,152,41,0,0,152,41,0,0,152,41,0,0,152,41,0,0,154,41,0,0,156,41,0,0,160,41,0,0,160,41,0,0,160,41,0,0,160,41,0,0,160,41,0,0,160,41,0,0,160,41,0,0,164,41,0,0,164,41,0,0,166,41,0,0,166,41,0,0,166,41,0,0,166,41,0,0,166,41,0,0,168,41,0,0,168,41,0,0,168,41,0,0,168,41,0,0,168,41,0,0,168,41,0,0,170,41,0,0,170,41,0,0,174,41,0,0,176,41,0,0,176,41,0,0,176,41,0,0,176,41,0,0,178,41,0,0,178,41,0,0,180,41,0,0,180,41,0,0,182,41,0,0,182,41,0,0,182,41,0,0,182,41,0,0,182,41,0,0,184,41,0,0,184,41,0,0,186,41,0,0,188,41,0,0,188,41,0,0,188,41,0,0,188,41,0,0,188,41,0,0,190,41,0,0,192,41,0,0,194,41,0,0,194,41,0,0,196,41,0,0,196,41,0,0,198,41,0,0,200,41,0,0,200,41,0,0,200,41,0,0,204,41,0,0,204,41,0,0,204,41,0,0,206,41,0,0,206,41,0,0,206,41,0,0,206,41,0,0,208,41,0,0,208,41,0,0,208,41,0,0,208,41,0,0,208,41,0,0,210,41,0,0,210,41,0,0,210,41,0,0,214,41,0,0,214,41,0,0,216,41,0,0,218,41,0,0,220,41,0,0,224,41,0,0,224,41,0,0,226,41,0,0,226,41,0,0,228,41,0,0,232,41,0,0,234,41,0,0,236,41,0,0,238,41,0,0,238,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,244,41,0,0,246,41,0,0,246,41,0,0,246,41,0,0,246,41,0,0,246,41,0,0,246,41,0,0,248,41,0,0,250,41,0,0,250,41,0,0,250,41,0,0,250,41,0,0,254,41,0,0,254,41,0,0,6,42,0,0,10,42,0,0,12,42,0,0,12,42,0,0,12,42,0,0,12,42,0,0,12,42,0,0,12,42,0,0,14,42,0,0,14,42,0,0,14,42,0,0,14,42,0,0,14,42,0,0,18,42,0,0,18,42,0,0,20,42,0,0,20,42,0,0,26,42,0,0,28,42,0,0,28,42,0,0,28,42,0,0,28,42,0,0,28,42,0,0,32,42,0,0,32,42,0,0,34,42,0,0,34,42,0,0,34,42,0,0,34,42,0,0,34,42,0,0,34,42,0,0,36,42,0,0,36,42,0,0,38,42,0,0,40,42,0,0,40,42,0,0,40,42,0,0,40,42,0,0,42,42,0,0,44,42,0,0,46,42,0,0,46,42,0,0,48,42,0,0,48,42,0,0,48,42,0,0,48,42,0,0,48,42,0,0,48,42,0,0,48,42,0,0,50,42,0,0,54,42,0,0,58,42,0,0,64,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,68,42,0,0,68,42,0,0,70,42,0,0,70,42,0,0,76,42,0,0,76,42,0,0,76,42,0,0,76,42,0,0,76,42,0,0,80,42,0,0,82,42,0,0,84,42,0,0,84,42,0,0,84,42,0,0,84,42,0,0,92,42,0,0,92,42,0,0,94,42,0,0,94,42,0,0,94,42,0,0,94,42,0,0,94,42,0,0,94,42,0,0,94,42,0,0,94,42,0,0,94,42,0,0,96,42,0,0,96,42,0,0,96,42,0,0,102,42,0,0,104,42,0,0,104,42,0,0,106,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,112,42,0,0,114,42,0,0,116,42,0,0,118,42,0,0,120,42,0,0,120,42,0,0,120,42,0,0,122,42,0,0,126,42,0,0,128,42,0,0,132,42,0,0,134,42,0,0,138,42,0,0,138,42,0,0,142,42,0,0,142,42,0,0,142,42,0,0,142,42,0,0,142,42,0,0,142,42,0,0,146,42,0,0,148,42,0,0,148,42,0,0,150,42,0,0,150,42,0,0,150,42,0,0,152,42,0,0,152,42,0,0,156,42,0,0,158,42,0,0,160,42,0,0,162,42,0,0,162,42,0,0,164,42,0,0,164,42,0,0,164,42,0,0,164,42,0,0,164,42,0,0,166,42,0,0,168,42,0,0,170,42,0,0,170,42,0,0,170,42,0,0,170,42,0,0,170,42,0,0,172,42,0,0,172,42,0,0,174,42,0,0,176,42,0,0,178,42,0,0,178,42,0,0,180,42,0,0,180,42,0,0,184,42,0,0,186,42,0,0,188,42,0,0,188,42,0,0,188,42,0,0,188,42,0,0,188,42,0,0,188,42,0,0,192,42,0,0,192,42,0,0,192,42,0,0,192,42,0,0,192,42,0,0,192,42,0,0,192,42,0,0,196,42,0,0,198,42,0,0,198,42,0,0,198,42,0,0,198,42,0,0,198,42,0,0,200,42,0,0,202,42,0,0,202,42,0,0,202,42,0,0,206,42,0,0,212,42,0,0,214,42,0,0,214,42,0,0,218,42,0,0,220,42,0,0,222,42,0,0,224,42,0,0,228,42,0,0,230,42,0,0,232,42,0,0,234,42,0,0,234,42,0,0,234,42,0,0,236,42,0,0,238,42,0,0,244,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,250,42,0,0,250,42,0,0,250,42,0,0,252,42,0,0,252,42,0,0,252,42,0,0,0,43,0,0,0,43,0,0,0,43,0,0,0,43,0,0,0,43,0,0,4,43,0,0,4,43,0,0,4,43,0,0,4,43,0,0,4,43,0,0,4,43,0,0,6,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,12,43,0,0,12,43,0,0,12,43,0,0,12,43,0,0,14,43,0,0,18,43,0,0,18,43,0,0,18,43,0,0,18,43,0,0,20,43,0,0,22,43,0,0,22,43,0,0,26,43,0,0,26,43,0,0,26,43,0,0,26,43,0,0,28,43,0,0,28,43,0,0,32,43,0,0,32,43,0,0,36,43,0,0,40,43,0,0,40,43,0,0,40,43,0,0,40,43,0,0,40,43,0,0,40,43,0,0,40,43,0,0,40,43,0,0,40,43,0,0,42,43,0,0,42,43,0,0,42,43,0,0,42,43,0,0,44,43,0,0,44,43,0,0,44,43,0,0,44,43,0,0,44,43,0,0,44,43,0,0,46,43,0,0,46,43,0,0,46,43,0,0,46,43,0,0,46,43,0,0,46,43,0,0,46,43,0,0,48,43,0,0,50,43,0,0,50,43,0,0,50,43,0,0,52,43,0,0,56,43,0,0,60,43,0,0,60,43,0,0,62,43,0,0,64,43,0,0,66,43,0,0,66,43,0,0,66,43,0,0,66,43,0,0,66,43,0,0,66,43,0,0,66,43,0,0,66,43,0,0,70,43,0,0,70,43,0,0,70,43,0,0,70,43,0,0,70,43,0,0,72,43,0,0,72,43,0,0,74,43,0,0,74,43,0,0,74,43,0,0,76,43,0,0,76,43,0,0,76,43,0,0,76,43,0,0,78,43,0,0,78,43,0,0,82,43,0,0,82,43,0,0,82,43,0,0,84,43,0,0,84,43,0,0,84,43,0,0,86,43,0,0,88,43,0,0,88,43,0,0,88,43,0,0,94,43,0,0,96,43,0,0,96,43,0,0,98,43,0,0,100,43,0,0,100,43,0,0,100,43,0,0,100,43,0,0,104,43,0,0,104,43,0,0,104,43,0,0,104,43,0,0,104,43,0,0,104,43,0,0,104,43,0,0,104,43,0,0,106,43,0,0,106,43,0,0,108,43,0,0,108,43,0,0,112,43,0,0,112,43,0,0,112,43,0,0,112,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,116,43,0,0,116,43,0,0,118,43,0,0,118,43,0,0,120,43,0,0,122,43,0,0,124,43,0,0,124,43,0,0,124,43,0,0,126,43,0,0,128,43,0,0,130,43,0,0,130,43,0,0,130,43,0,0,130,43,0,0,134,43,0,0,136,43,0,0,136,43,0,0,136,43,0,0,136,43,0,0,136,43,0,0,138,43,0,0,138,43,0,0,140,43,0,0,142,43,0,0,142,43,0,0,146,43,0,0,148,43,0,0,148,43,0,0,150,43,0,0,150,43,0,0,150,43,0,0,150,43,0,0,150,43,0,0,154,43,0,0,154,43,0,0,156,43,0,0,158,43,0,0,158,43,0,0,160,43,0,0,160,43,0,0,160,43,0,0,160,43,0,0,164,43,0,0,164,43,0,0,164,43,0,0,168,43,0,0,170,43,0,0,170,43,0,0,174,43,0,0,174,43,0,0,174,43,0,0,174,43,0,0,174,43,0,0,174,43,0,0,174,43,0,0,176,43,0,0,178,43,0,0,178,43,0,0,182,43,0,0,182,43,0,0,182,43,0,0,182,43,0,0,184,43,0,0,184,43,0,0,184,43,0,0,184,43,0,0,186,43,0,0,190,43,0,0,192,43,0,0,194,43,0,0,194,43,0,0,194,43,0,0,194,43,0,0,194,43,0,0,198,43,0,0,200,43,0,0,200,43,0,0,200,43,0,0,200,43,0,0,202,43,0,0,202,43,0,0,202,43,0,0,204,43,0,0,204,43,0,0,204,43,0,0,204,43,0,0,206,43,0,0,206,43,0,0,208,43,0,0,210,43,0,0,210,43,0,0,210,43,0,0,212,43,0,0,214,43,0,0,216,43,0,0,216,43,0,0,216,43,0,0,216,43,0,0,220,43,0,0,220,43,0,0,220,43,0,0,222,43,0,0,222,43,0,0,226,43,0,0,230,43,0,0,230,43,0,0,232,43,0,0,232,43,0,0,234,43,0,0,234,43,0,0,234,43,0,0,236,43,0,0,238,43,0,0,238,43,0,0,240,43,0,0,240,43,0,0,242,43,0,0,244,43,0,0,246,43,0,0,246,43,0,0,246,43,0,0,246,43,0,0,246,43,0,0,246,43,0,0,248,43,0,0,248,43,0,0,248,43,0,0,250,43,0,0,254,43,0,0,254,43,0,0,2,44,0,0,4,44,0,0,6,44,0,0,6,44,0,0,8,44,0,0,8,44,0,0,8,44,0,0,8,44,0,0,8,44,0,0,8,44,0,0,8,44,0,0,10,44,0,0,10,44,0,0,10,44,0,0,12,44,0,0,14,44,0,0,14,44,0,0,14,44,0,0,16,44,0,0,18,44,0,0,20,44,0,0,20,44,0,0,20,44,0,0,22,44,0,0,24,44,0,0,24,44,0,0,24,44,0,0,28,44,0,0,28,44,0,0,28,44,0,0,30,44,0,0,30,44,0,0,30,44,0,0,30,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,36,44,0,0,38,44,0,0,40,44,0,0,42,44,0,0,46,44,0,0,48,44,0,0,48,44,0,0,48,44,0,0,52,44,0,0,52,44,0,0,52,44,0,0,54,44,0,0,58,44,0,0,60,44,0,0,60,44,0,0,60,44,0,0,62,44,0,0,64,44,0,0,66,44,0,0,70,44,0,0,72,44,0,0,72,44,0,0,72,44,0,0,74,44,0,0,74,44,0,0,74,44,0,0,78,44,0,0,80,44,0,0,80,44,0,0,80,44,0,0,82,44,0,0,84,44,0,0,84,44,0,0,86,44,0,0,86,44,0,0,86,44,0,0,86,44,0,0,86,44,0,0,86,44,0,0,90,44,0,0,90,44,0,0,92,44,0,0,92,44,0,0,94,44,0,0,96,44,0,0,100,44,0,0,100,44,0,0,102,44,0,0,102,44,0,0,104,44,0,0,104,44,0,0,104,44,0,0,104,44,0,0,106,44,0,0,106,44,0,0,106,44,0,0,106,44,0,0,106,44,0,0,110,44,0,0,110,44,0,0,110,44,0,0,112,44,0,0,116,44,0,0,118,44,0,0,122,44,0,0,122,44,0,0,124,44,0,0,124,44,0,0,126,44,0,0,132,44,0,0,132,44,0,0,134,44,0,0,136,44,0,0,136,44,0,0,138,44,0,0,138,44,0,0,142,44,0,0,146,44,0,0,148,44,0,0,148,44,0,0,152,44,0,0,152,44,0,0,152,44,0,0,152,44,0,0,156,44,0,0,156,44,0,0,158,44,0,0,162,44,0,0,162,44,0,0,166,44,0,0,166,44,0,0,166,44,0,0,168,44,0,0,172,44,0,0,174,44,0,0,174,44,0,0,174,44,0,0,176,44,0,0,178,44,0,0,178,44,0,0,182,44,0,0,182,44,0,0,186,44,0,0,186,44,0,0,188,44,0,0,190,44,0,0,192,44,0,0,192,44,0,0,196,44,0,0,196,44,0,0,196,44,0,0,196,44,0,0,198,44,0,0,198,44,0,0,200,44,0,0,202,44,0,0,202,44,0,0,202,44,0,0,202,44,0,0,204,44,0,0,204,44,0,0,204,44,0,0,206,44,0,0,206,44,0,0,210,44,0,0,212,44,0,0,212,44,0,0,216,44,0,0,216,44,0,0,218,44,0,0,218,44,0,0,220,44,0,0,224,44,0,0,224,44,0,0,224,44,0,0,228,44,0,0,230,44,0,0,230,44,0,0,230,44,0,0,230,44,0,0,230,44,0,0,230,44,0,0,230,44,0,0,232,44,0,0,232,44,0,0,236,44,0,0,236,44,0,0,236,44,0,0,236,44,0,0,236,44,0,0,238,44,0,0,240,44,0,0,242,44,0,0,242,44,0,0,242,44,0,0,242,44,0,0,242,44,0,0,244,44,0,0,248,44,0,0,248,44,0,0,248,44,0,0,248,44,0,0,250,44,0,0,252,44,0,0,252,44,0,0,252,44,0,0,252,44,0,0,252,44,0,0,254,44,0,0,0,45,0,0,0,45,0,0,0,45,0,0,4,45,0,0,4,45,0,0,4,45,0,0,4,45,0,0,10,45,0,0,10,45,0,0,10,45,0,0,10,45,0,0,14,45,0,0,14,45,0,0,14,45,0,0,16,45,0,0,16,45,0,0,18,45,0,0,18,45,0,0,18,45,0,0,18,45,0,0,22,45,0,0,24,45,0,0,24,45,0,0,24,45,0,0,24,45,0,0,24,45,0,0,26,45,0,0,28,45,0,0,28,45,0,0,28,45,0,0,28,45,0,0,32,45,0,0,34,45,0,0,36,45,0,0,36,45,0,0,40,45,0,0,42,45,0,0,42,45,0,0,42,45,0,0,44,45,0,0,44,45,0,0,44,45,0,0,46,45,0,0,48,45,0,0,50,45,0,0,54,45,0,0,54,45,0,0,54,45,0,0,56,45,0,0,58,45,0,0,58,45,0,0,58,45,0,0,60,45,0,0,60,45,0,0,62,45,0,0,62,45,0,0,62,45,0,0,64,45,0,0,66,45,0,0,66,45,0,0,66,45,0,0,66,45,0,0,66,45,0,0,68,45,0,0,70,45,0,0,70,45,0,0,70,45,0,0,70,45,0,0,70,45,0,0,70,45,0,0,80,45,0,0,82,45,0,0,82,45,0,0,86,45,0,0,86,45,0,0,86,45,0,0,88,45,0,0,88,45,0,0,90,45,0,0,90,45,0,0,92,45,0,0,92,45,0,0,92,45,0,0,94,45,0,0,96,45,0,0,100,45,0,0,102,45,0,0,102,45,0,0,102,45,0,0,102,45,0,0,102,45,0,0,102,45,0,0,102,45,0,0,104,45,0,0,104,45,0,0,106,45,0,0,108,45,0,0,108,45,0,0,108,45,0,0,110,45,0,0,110,45,0,0,114,45,0,0,114,45,0,0,116,45,0,0,118,45,0,0,120,45,0,0,120,45,0,0,126,45,0,0,128,45,0,0,128,45,0,0,128,45,0,0,128,45,0,0,130,45,0,0,130,45,0,0,130,45,0,0,130,45,0,0,130,45,0,0,130,45,0,0,134,45,0,0,136,45,0,0,138,45,0,0,138,45,0,0,140,45,0,0,142,45,0,0,144,45,0,0,144,45,0,0,146,45,0,0,146,45,0,0,146,45,0,0,148,45,0,0,148,45,0,0,148,45,0,0,148,45,0,0,150,45,0,0,152,45,0,0,152,45,0,0,152,45,0,0,158,45,0,0,158,45,0,0,158,45,0,0,158,45,0,0,162,45,0,0,164,45,0,0,164,45,0,0,164,45,0,0,164,45,0,0,164,45,0,0,164,45,0,0,168,45,0,0,170,45,0,0,172,45,0,0,172,45,0,0,174,45,0,0,174,45,0,0,174,45,0,0,174,45,0,0,174,45,0,0,174,45,0,0,174,45,0,0,174,45,0,0,174,45,0,0,174,45,0,0,176,45,0,0,176,45,0,0,176,45,0,0,178,45,0,0,178,45,0,0,178,45,0,0,180,45,0,0,180,45,0,0,182,45,0,0,182,45,0,0,184,45,0,0,184,45,0,0,186,45,0,0,186,45,0,0,186,45,0,0,190,45,0,0,192,45,0,0,192,45,0,0,194,45,0,0,194,45,0,0,198,45,0,0,198,45,0,0,198,45,0,0,198,45,0,0,200,45,0,0,202,45,0,0,202,45,0,0,202,45,0,0,202,45,0,0,204,45,0,0,210,45,0,0,212,45,0,0,216,45,0,0,216,45,0,0,218,45,0,0,254,45,0,0,254,45,0,0,0,46,0,0,0,46,0,0,0,46,0,0,2,46,0,0,4,46,0,0,8,46,0,0,8,46,0,0,8,46,0,0,8,46,0,0,10,46,0,0,10,46,0,0,12,46,0,0,14,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,20,46,0,0,20,46,0,0,20,46,0,0,20,46,0,0,20,46,0,0,22,46,0,0,22,46,0,0,22,46,0,0,22,46,0,0,22,46,0,0,24,46,0,0,24,46,0,0,26,46,0,0,26,46,0,0,28,46,0,0,28,46,0,0,30,46,0,0,30,46,0,0,32,46,0,0,34,46,0,0,34,46,0,0,34,46,0,0,36,46,0,0,38,46,0,0,38,46,0,0,38,46,0,0,38,46,0,0,40,46,0,0,40,46,0,0,40,46,0,0,40,46,0,0,42,46,0,0,46,46,0,0,46,46,0,0,52,46,0,0,54,46,0,0,56,46,0,0,56,46,0,0,56,46,0,0,60,46,0,0,60,46,0,0,62,46,0,0,64,46,0,0,66,46,0,0,68,46,0,0,70,46,0,0,70,46,0,0,70,46,0,0,70,46,0,0,70,46,0,0,72,46,0,0,72,46,0,0,72,46,0,0,72,46,0,0,74,46,0,0,74,46,0,0,74,46,0,0,76,46,0,0,76,46,0,0,80,46,0,0,80,46,0,0,80,46,0,0,80,46,0,0,80,46,0,0,82,46,0,0,82,46,0,0,82,46,0,0,82,46,0,0,82,46,0,0,82,46,0,0,82,46,0,0,82,46,0,0,82,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,86,46,0,0,90,46,0,0,92,46,0,0,96,46,0,0,96,46,0,0,100,46,0,0,100,46,0,0,100,46,0,0,104,46,0,0,104,46,0,0,104,46,0,0,104,46,0,0,106,46,0,0,106,46,0,0,106,46,0,0,106,46,0,0,108,46,0,0,108,46,0,0,110,46,0,0,112,46,0,0,112,46,0,0,112,46,0,0,112,46,0,0,112,46,0,0,114,46,0,0,116,46,0,0,116,46,0,0,116,46,0,0,116,46,0,0,118,46,0,0,120,46,0,0,120,46,0,0,120,46,0,0,120,46,0,0,120,46,0,0,120,46,0,0,122,46,0,0,124,46,0,0,126,46,0,0,128,46,0,0,128,46,0,0,128,46,0,0,130,46,0,0,130,46,0,0,130,46,0,0,130,46,0,0,134,46,0,0,136,46,0,0,138,46,0,0,138,46,0,0,138,46,0,0,140,46,0,0,142,46,0,0,144,46,0,0,150,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,154,46,0,0,158,46,0,0,158,46,0,0,158,46,0,0,160,46,0,0,160,46,0,0,160,46,0,0,160,46,0,0,162,46,0,0,164,46,0,0,166,46,0,0,166,46,0,0,166,46,0,0,166,46,0,0,166,46,0,0,166,46,0,0,170,46,0,0,174,46,0,0,176,46,0,0,176,46,0,0,178,46,0,0,178,46,0,0,178,46,0,0,178,46,0,0,180,46,0,0,180,46,0,0,180,46,0,0,180,46,0,0,182,46,0,0,182,46,0,0,182,46,0,0,186,46,0,0,186,46,0,0,186,46,0,0,186,46,0,0,188,46,0,0,188,46,0,0,190,46,0,0,190,46,0,0,190,46,0,0,190,46,0,0,190,46,0,0,190,46,0,0,190,46,0,0,190,46,0,0,192,46,0,0,192,46,0,0,194,46,0,0,194,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,200,46,0,0,200,46,0,0,200,46,0,0,200,46,0,0,204,46,0,0,204,46,0,0,204,46,0,0,204,46,0,0,204,46,0,0,204,46,0,0,206,46,0,0,208,46,0,0,210,46,0,0,210,46,0,0,210,46,0,0,210,46,0,0,210,46,0,0,210,46,0,0,210,46,0,0,212,46,0,0,214,46,0,0,216,46,0,0,216,46,0,0,216,46,0,0,216,46,0,0,216,46,0,0,218,46,0,0,218,46,0,0,218,46,0,0,218,46,0,0,218,46,0,0,218,46,0,0,218,46,0,0,218,46,0,0,220,46,0,0,220,46,0,0,222,46,0,0,222,46,0,0,222,46,0,0,222,46,0,0,228,46,0,0,230,46,0,0,232,46,0,0,232,46,0,0,238,46,0,0,240,46,0,0,240,46,0,0,240,46,0,0,242,46,0,0,244,46,0,0,244,46,0,0,246,46,0,0,248,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,252,46,0,0,254,46,0,0,254,46,0,0,4,47,0,0,4,47,0,0,6,47,0,0,6,47,0,0,6,47,0,0,6,47,0,0,8,47,0,0,8,47,0,0,8,47,0,0,10,47,0,0,12,47,0,0,12,47,0,0,14,47,0,0,14,47,0,0,16,47,0,0,18,47,0,0,18,47,0,0,22,47,0,0,22,47,0,0,22,47,0,0,26,47,0,0,26,47,0,0,26,47,0,0,26,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,32,47,0,0,32,47,0,0,32,47,0,0,32,47,0,0,34,47,0,0,34,47,0,0,34,47,0,0,34,47,0,0,34,47,0,0,34,47,0,0,34,47,0,0,36,47,0,0,40,47,0,0,40,47,0,0,40,47,0,0,40,47,0,0,40,47,0,0,42,47,0,0,42,47,0,0,44,47,0,0,46,47,0,0,48,47,0,0,48,47,0,0,50,47,0,0,52,47,0,0,52,47,0,0,52,47,0,0,54,47,0,0,54,47,0,0,54,47,0,0,54,47,0,0,54,47,0,0,56,47,0,0,56,47,0,0,56,47,0,0,58,47,0,0,60,47,0,0,62,47,0,0,62,47,0,0,62,47,0,0,62,47,0,0,66,47,0,0,68,47,0,0,68,47,0,0,70,47,0,0,70,47,0,0,74,47,0,0,76,47,0,0,78,47,0,0,80,47,0,0,80,47,0,0,82,47,0,0,82,47,0,0,82,47,0,0,82,47,0,0,82,47,0,0,82,47,0,0,82,47,0,0,86,47,0,0,86,47,0,0,86,47,0,0,88,47,0,0,90,47,0,0,90,47,0,0,90,47,0,0,92,47,0,0,92,47,0,0,94,47,0,0,96,47,0,0,96,47,0,0,98,47,0,0,98,47,0,0,102,47,0,0,102,47,0,0,104,47,0,0,104,47,0,0,106,47,0,0,108,47,0,0,112,47,0,0,112,47,0,0,114,47,0,0,114,47,0,0,114,47,0,0,118,47,0,0,120,47,0,0,120,47,0,0,120,47,0,0,120,47,0,0,120,47,0,0,120,47,0,0,122,47,0,0,124,47,0,0,124,47,0,0,124,47,0,0,124,47,0,0,124,47,0,0,124,47,0,0,124,47,0,0,126,47,0,0,130,47,0,0,130,47,0,0,130,47,0,0,132,47,0,0,138,47,0,0,138,47,0,0,138,47,0,0,138,47,0,0,138,47,0,0,140,47,0,0,140,47,0,0,142,47,0,0,142,47,0,0,142,47,0,0,144,47,0,0,144,47,0,0,146,47,0,0,148,47,0,0,152,47,0,0,152,47,0,0,152,47,0,0,154,47,0,0,156,47,0,0,156,47,0,0,156,47,0,0,158,47,0,0,158,47,0,0,158,47,0,0,158,47,0,0,158,47,0,0,158,47,0,0,158,47,0,0,164,47,0,0,164,47,0,0,164,47,0,0,164,47,0,0,166,47,0,0,166,47,0,0,170,47,0,0,172,47,0,0,178,47,0,0,182,47,0,0,182,47,0,0,184,47,0,0,184,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,194,47,0,0,196,47,0,0,198,47,0,0,200,47,0,0,200,47,0,0,200,47,0,0,200,47,0,0,200,47,0,0,202,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,208,47,0,0,208,47,0,0,208,47,0,0,208,47,0,0,208,47,0,0,210,47,0,0,210,47,0,0,212,47,0,0,214,47,0,0,214,47,0,0,216,47,0,0,216,47,0,0,218,47,0,0,220,47,0,0,222,47,0,0,224,47,0,0,224,47,0,0,224,47,0,0,224,47,0,0,224,47,0,0,224,47,0,0,226,47,0,0,230,47,0,0,234,47,0,0,238,47,0,0,238,47,0,0,238,47,0,0,240,47,0,0,242,47,0,0,242,47,0,0,242,47,0,0,246,47,0,0,246,47,0,0,246,47,0,0,248,47,0,0,250,47,0,0,252,47,0,0,254,47,0,0,254,47,0,0,0,48,0,0,0,48,0,0,0,48,0,0,0,48,0,0,0,48,0,0,0,48,0,0,2,48,0,0,4,48,0,0,4,48,0,0,4,48,0,0,4,48,0,0,4,48,0,0,4,48,0,0,8,48,0,0,10,48,0,0,12,48,0,0,14,48,0,0,14,48,0,0,16,48,0,0,16,48,0,0,20,48,0,0,20,48,0,0,20,48,0,0,24,48,0,0,26,48,0,0,26,48,0,0,30,48,0,0,32,48,0,0,32,48,0,0,34,48,0,0,36,48,0,0,36,48,0,0,36,48,0,0,36,48,0,0,36,48,0,0,38,48,0,0,38,48,0,0,40,48,0,0,40,48,0,0,40,48,0,0,42,48,0,0,42,48,0,0,42,48,0,0,42,48,0,0,44,48,0,0,44,48,0,0,44,48,0,0,44,48,0,0,46,48,0,0,48,48,0,0,50,48,0,0,52,48,0,0,54,48,0,0,54,48,0,0,54,48,0,0,56,48,0,0,58,48,0,0,58,48,0,0,60,48,0,0,62,48,0,0,64,48,0,0,64,48,0,0,64,48,0,0,64,48,0,0,64,48,0,0,64,48,0,0,64,48,0,0,66,48,0,0,66,48,0,0,66,48,0,0,66,48,0,0,66,48,0,0,68,48,0,0,68,48,0,0,70,48,0,0,70,48,0,0,70,48,0,0,74,48,0,0,74,48,0,0,78,48,0,0,78,48,0,0,78,48,0,0,80,48,0,0,80,48,0,0,80,48,0,0,80,48,0,0,84,48,0,0,86,48,0,0,88,48,0,0,88,48,0,0,90,48,0,0,90,48,0,0,92,48,0,0,92,48,0,0,92,48,0,0,92,48,0,0,92,48,0,0,92,48,0,0,92,48,0,0,94,48,0,0,96,48,0,0,96,48,0,0,98,48,0,0,98,48,0,0,100,48,0,0,100,48,0,0,102,48,0,0,102,48,0,0,102,48,0,0,104,48,0,0,104,48,0,0,104,48,0,0,104,48,0,0,104,48,0,0,104,48,0,0,104,48,0,0,106,48,0,0,108,48,0,0,110,48,0,0,110,48,0,0,112,48,0,0,112,48,0,0,114,48,0,0,116,48,0,0,116,48,0,0,116,48,0,0,118,48,0,0,118,48,0,0,120,48,0,0,120,48,0,0,122,48,0,0,122,48,0,0,122,48,0,0,124,48,0,0,126,48,0,0,126,48,0,0,126,48,0,0,130,48,0,0,130,48,0,0,130,48,0,0,130,48,0,0,138,48,0,0,138,48,0,0,138,48,0,0,140,48,0,0,140,48,0,0,142,48,0,0,144,48,0,0,144,48,0,0,144,48,0,0,144,48,0,0,144,48,0,0,144,48,0,0,146,48,0,0,146,48,0,0,146,48,0,0,146,48,0,0,146,48,0,0,146,48,0,0,146,48,0,0,148,48,0,0,148,48,0,0,152,48,0,0,154,48,0,0,154,48,0,0,154,48,0,0,160,48,0,0,160,48,0,0,160,48,0,0,164,48,0,0,164,48,0,0,166,48,0,0,170,48,0,0,170,48,0,0,172,48,0,0,174,48,0,0,174,48,0,0,174,48,0,0,174,48,0,0,174,48,0,0,174,48,0,0,174,48,0,0,174,48,0,0,176,48,0,0,176,48,0,0,178,48,0,0,180,48,0,0,180,48,0,0,180,48,0,0,184,48,0,0,186,48,0,0,186,48,0,0,186,48,0,0,186,48,0,0,186,48,0,0,186,48,0,0,186,48,0,0,188,48,0,0,188,48,0,0,188,48,0,0,190,48,0,0,190,48,0,0,190,48,0,0,190,48,0,0,192,48,0,0,192,48,0,0,192,48,0,0,194,48,0,0,194,48,0,0,194,48,0,0,196,48,0,0,198,48,0,0,198,48,0,0,198,48,0,0,198,48,0,0,198,48,0,0,200,48,0,0,200,48,0,0,202,48,0,0,204,48,0,0,206,48,0,0,208,48,0,0,210,48,0,0,212,48,0,0,214,48,0,0,216,48,0,0,216,48,0,0,218,48,0,0,218,48,0,0,218,48,0,0,218,48,0,0,218,48,0,0,218,48,0,0,220,48,0,0,222,48,0,0,222,48,0,0,222,48,0,0,222,48,0,0,222,48,0,0,222,48,0,0,224,48,0,0,224,48,0,0,226,48,0,0,226,48,0,0,226,48,0,0,226,48,0,0,230,48,0,0,230,48,0,0,230,48,0,0,230,48,0,0,230,48,0,0,232,48,0,0,232,48,0,0,234,48,0,0,234,48,0,0,234,48,0,0,234,48,0,0,236,48,0,0,238,48,0,0,240,48,0,0,240,48,0,0,240,48,0,0,242,48,0,0,244,48,0,0,246,48,0,0,248,48,0,0,248,48,0,0,250,48,0,0,250,48,0,0,250,48,0,0,250,48,0,0,250,48,0,0,250,48,0,0,250,48,0,0,252,48,0,0,252,48,0,0,252,48,0,0,254,48,0,0,254,48,0,0,0,49,0,0,2,49,0,0,2,49,0,0,2,49,0,0,2,49,0,0,4,49,0,0,6,49,0,0,6,49,0,0,6,49,0,0,10,49,0,0,10,49,0,0,10,49,0,0,12,49,0,0,12,49,0,0,14,49,0,0,14,49,0,0,14,49,0,0,14,49,0,0,16,49,0,0,16,49,0,0,16,49,0,0,16,49,0,0,16,49,0,0,16,49,0,0,16,49,0,0,22,49,0,0,22,49,0,0,22,49,0,0,22,49,0,0,24,49,0,0,26,49,0,0,28,49,0,0,28,49,0,0,32,49,0,0,32,49,0,0,34,49,0,0,34,49,0,0,34,49,0,0,36,49,0,0,36,49,0,0,36,49,0,0,36,49,0,0,38,49,0,0,40,49,0,0,40,49,0,0,40,49,0,0,44,49,0,0,44,49,0,0,44,49,0,0,46,49,0,0,48,49,0,0,48,49,0,0,50,49,0,0,50,49,0,0,52,49,0,0,52,49,0,0,52,49,0,0,52,49,0,0,52,49,0,0,52,49,0,0,54,49,0,0,54,49,0,0,54,49,0,0,54,49,0,0,54,49,0,0,56,49,0,0,58,49,0,0,60,49,0,0,62,49,0,0,62,49,0,0,62,49,0,0,62,49,0,0,64,49,0,0,64,49,0,0,66,49,0,0,68,49,0,0,68,49,0,0,68,49,0,0,70,49,0,0,72,49,0,0,74,49,0,0,74,49,0,0,74,49,0,0,78,49,0,0,78,49,0,0,78,49,0,0,80,49,0,0,82,49,0,0,82,49,0,0,82,49,0,0,84,49,0,0,84,49,0,0,88,49,0,0,88,49,0,0,88,49,0,0,88,49,0,0,92,49,0,0,92,49,0,0,96,49,0,0,96,49,0,0,96,49,0,0,98,49,0,0,98,49,0,0,98,49,0,0,100,49,0,0,100,49,0,0,100,49,0,0,100,49,0,0,102,49,0,0,108,49,0,0,108,49,0,0,110,49,0,0,112,49,0,0,112,49,0,0,112,49,0,0,114,49,0,0,116,49,0,0,118,49,0,0,118,49,0,0,118,49,0,0,120,49,0,0,120,49,0,0,120,49,0,0,120,49,0,0,120,49,0,0,122,49,0,0,126,49,0,0,128,49,0,0,132,49,0,0,134,49,0,0,134,49,0,0,136,49,0,0,138,49,0,0,142,49,0,0,142,49,0,0,144,49,0,0,148,49,0,0,148,49,0,0,148,49,0,0,148,49,0,0,148,49,0,0,148,49,0,0,148,49,0,0,150,49,0,0,150,49,0,0,150,49,0,0,150,49,0,0,150,49,0,0,156,49,0,0,158,49,0,0,158,49,0,0,160,49,0,0,160,49,0,0,162,49,0,0,162,49,0,0,162,49,0,0,164,49,0,0,164,49,0,0,164,49,0,0,164,49,0,0,166,49,0,0,166,49,0,0,166,49,0,0,166,49,0,0,166,49,0,0,166,49,0,0,166,49,0,0,168,49,0,0,170,49,0,0,170,49,0,0,170,49,0,0,174,49,0,0,176,49,0,0,176,49,0,0,176,49,0,0,180,49,0,0,180,49,0,0,180,49,0,0,180,49,0,0,182,49,0,0,186,49,0,0,186,49,0,0,188,49,0,0,188,49,0,0,190,49,0,0,190,49,0,0,190,49,0,0,190,49,0,0,190,49,0,0,192,49,0,0,192,49,0,0,192,49,0,0,194,49,0,0,196,49,0,0,196,49,0,0,196,49,0,0,198,49,0,0,198,49,0,0,204,49,0,0,206,49,0,0,208,49,0,0,210,49,0,0,212,49,0,0,212,49,0,0,212,49,0,0,212,49,0,0,220,49,0,0,222,49,0,0,222,49,0,0,222,49,0,0,222,49,0,0,222,49,0,0,222,49,0,0,222,49,0,0,226,49,0,0,228,49,0,0,232,49,0,0,232,49,0,0,234,49,0,0,240,49,0,0,240,49,0,0,240,49,0,0,244,49,0,0,244,49,0,0,246,49,0,0,248,49,0,0,250,49,0,0,252,49,0,0,252,49,0,0,252,49,0,0,252,49,0,0,252,49,0,0,252,49,0,0,0,50,0,0,2,50,0,0,2,50,0,0,4,50,0,0,8,50,0,0,8,50,0,0,8,50,0,0,12,50,0,0,12,50,0,0,14,50,0,0,14,50,0,0,14,50,0,0,14,50,0,0,16,50,0,0,16,50,0,0,16,50,0,0,16,50,0,0,18,50,0,0,18,50,0,0,18,50,0,0,18,50,0,0,18,50,0,0,18,50,0,0,18,50,0,0,18,50,0,0,18,50,0,0,20,50,0,0,24,50,0,0,26,50,0,0,26,50,0,0,26,50,0,0,26,50,0,0,28,50,0,0,28,50,0,0,30,50,0,0,32,50,0,0,34,50,0,0,40,50,0,0,42,50,0,0,44,50,0,0,44,50,0,0,44,50,0,0,46,50,0,0,46,50,0,0,46,50,0,0,48,50,0,0,50,50,0,0,52,50,0,0,52,50,0,0,52,50,0,0,54,50,0,0,56,50,0,0,56,50,0,0,56,50,0,0,56,50,0,0,56,50,0,0,58,50,0,0,58,50,0,0,58,50,0,0,58,50,0,0,58,50,0,0,58,50,0,0,60,50,0,0,60,50,0,0,60,50,0,0,60,50,0,0,64,50,0,0,64,50,0,0,66,50,0,0,66,50,0,0,66,50,0,0,66,50,0,0,72,50,0,0,74,50,0,0,74,50,0,0,74,50,0,0,76,50,0,0,76,50,0,0,78,50,0,0,78,50,0,0,78,50,0,0,78,50,0,0,80,50,0,0,84,50,0,0,84,50,0,0,84,50,0,0,84,50,0,0,88,50,0,0,88,50,0,0,90,50,0,0,94,50,0,0,94,50,0,0,94,50,0,0,96,50,0,0,96,50,0,0,98,50,0,0,98,50,0,0,98,50,0,0,98,50,0,0,98,50,0,0,100,50,0,0,104,50,0,0,106,50,0,0,106,50,0,0,106,50,0,0,108,50,0,0,108,50,0,0,108,50,0,0,108,50,0,0,108,50,0,0,108,50,0,0,112,50,0,0,112,50,0,0,112,50,0,0,114,50,0,0,116,50,0,0,116,50,0,0,116,50,0,0,116,50,0,0,118,50,0,0,120,50,0,0,122,50,0,0,124,50,0,0,124,50,0,0,124,50,0,0,124,50,0,0,126,50,0,0,126,50,0,0,128,50,0,0,128,50,0,0,128,50,0,0,128,50,0,0,128,50,0,0,130,50,0,0,130,50,0,0,130,50,0,0,132,50,0,0,132,50,0,0,132,50,0,0,134,50,0,0,134,50,0,0,134,50,0,0,138,50,0,0,140,50,0,0,140,50,0,0,142,50,0,0,144,50,0,0,144,50,0,0,144,50,0,0,146,50,0,0,146,50,0,0,146,50,0,0,146,50,0,0,146,50,0,0,148,50,0,0,152,50,0,0,152,50,0,0,152,50,0,0,156,50,0,0,156,50,0,0,156,50,0,0,156,50,0,0,156,50,0,0,160,50,0,0,160,50,0,0,164,50,0,0,164,50,0,0,168,50,0,0,168,50,0,0,168,50,0,0,168,50,0,0,168,50,0,0,170,50,0,0,172,50,0,0,174,50,0,0,176,50,0,0,176,50,0,0,178,50,0,0,178,50,0,0,180,50,0,0,180,50,0,0,180,50,0,0,180,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,184,50,0,0,186,50,0,0,188,50,0,0,188,50,0,0,188,50,0,0,188,50,0,0,188,50,0,0,194,50,0,0,194,50,0,0,196,50,0,0,198,50,0,0,198,50,0,0,198,50,0,0,198,50,0,0,200,50,0,0,202,50,0,0,208,50,0,0,208,50,0,0,208,50,0,0,212,50,0,0,212,50,0,0,212,50,0,0,214,50,0,0,216,50,0,0,216,50,0,0,218,50,0,0,218,50,0,0,218,50,0,0,220,50,0,0,220,50,0,0,220,50,0,0,222,50,0,0,222,50,0,0,222,50,0,0,222,50,0,0,222,50,0,0,224,50,0,0,226,50,0,0,226,50,0,0,226,50,0,0,226,50,0,0,226,50,0,0,226,50,0,0,226,50,0,0,226,50,0,0,226,50,0,0,228,50,0,0,228,50,0,0,228,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,232,50,0,0,234,50,0,0,234,50,0,0,234,50,0,0,234,50,0,0,236,50,0,0,236,50,0,0,238,50,0,0,240,50,0,0,242,50,0,0,242,50,0,0,242,50,0,0,242,50,0,0,244,50,0,0,244,50,0,0,248,50,0,0,248,50,0,0,248,50,0,0,250,50,0,0,252,50,0,0,254,50,0,0,2,51,0,0,2,51,0,0,4,51,0,0,6,51,0,0,6,51,0,0,8,51,0,0,8,51,0,0,10,51,0,0,10,51,0,0,10,51,0,0,12,51,0,0,12,51,0,0,12,51,0,0,14,51,0,0,16,51,0,0,16,51,0,0,16,51,0,0,18,51,0,0,18,51,0,0,18,51,0,0,18,51,0,0,24,51,0,0,24,51,0,0,24,51,0,0,26,51,0,0,26,51,0,0,28,51,0,0,28,51,0,0,30,51,0,0,32,51,0,0,40,51,0,0,46,51,0,0,48,51,0,0,48,51,0,0,50,51,0,0,50,51,0,0,50,51,0,0,52,51,0,0,52,51,0,0,52,51,0,0,56,51,0,0,56,51,0,0,56,51,0,0,58,51,0,0,58,51,0,0,58,51,0,0,60,51,0,0,62,51,0,0,62,51,0,0,62,51,0,0,64,51,0,0,66,51,0,0,66,51,0,0,66,51,0,0,70,51,0,0,72,51,0,0,72,51,0,0,72,51,0,0,74,51,0,0,74,51,0,0,80,51,0,0,82,51,0,0,82,51,0,0,82,51,0,0,82,51,0,0,82,51,0,0,82,51,0,0,82,51,0,0,82,51,0,0,82,51,0,0,82,51,0,0,86,51,0,0,86,51,0,0,90,51,0,0,92,51,0,0,92,51,0,0,94,51,0,0,94,51,0,0,94,51,0,0,96,51,0,0,96,51,0,0,96,51,0,0,96,51,0,0,98,51,0,0,102,51,0,0,102,51,0,0,102,51,0,0,104,51,0,0,104,51,0,0,104,51,0,0,104,51,0,0,106,51,0,0,106,51,0,0,108,51,0,0,108,51,0,0,112,51,0,0,112,51,0,0,112,51,0,0,114,51,0,0,116,51,0,0,118,51,0,0,118,51,0,0,118,51,0,0,118,51,0,0,120,51,0,0,122,51,0,0,122,51,0,0,122,51,0,0,122,51,0,0,122,51,0,0,124,51,0,0,124,51,0,0,124,51,0,0,126,51,0,0,128,51,0,0,130,51,0,0,130,51,0,0,132,51,0,0,134,51,0,0,136,51,0,0,138,51,0,0,140,51,0,0,140,51,0,0,142,51,0,0,144,51,0,0,146,51,0,0,146,51,0,0,146,51,0,0,146,51,0,0,146,51,0,0,146,51,0,0,148,51,0,0,152,51,0,0,154,51,0,0,156,51,0,0,156,51,0,0,158,51,0,0,160,51,0,0,160,51,0,0,162,51,0,0,162,51,0,0,162,51,0,0,164,51,0,0,164,51,0,0,164,51,0,0,164,51,0,0,164,51,0,0,164,51,0,0,164,51,0,0,166,51,0,0,168,51,0,0,168,51,0,0,168,51,0,0,170,51,0,0,174,51,0,0,174,51,0,0,174,51,0,0,176,51,0,0,180,51,0,0,184,51,0,0,186,51,0,0,186,51,0,0,188,51,0,0,190,51,0,0,190,51,0,0,190,51,0,0,190,51,0,0,190,51,0,0,190,51,0,0,192,51,0,0,194,51,0,0,194,51,0,0,196,51,0,0,198,51,0,0,200,51,0,0,200,51,0,0,202,51,0,0,202,51,0,0,202,51,0,0,206,51,0,0,208,51,0,0,214,51,0,0,214,51,0,0,214,51,0,0,216,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,220,51,0,0,222,51,0,0,222,51,0,0,222,51,0,0,222,51,0,0,222,51,0,0,224,51,0,0,226,51,0,0,226,51,0,0,228,51,0,0,230,51,0,0,232,51,0,0,232,51,0,0,232,51,0,0,232,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,238,51,0,0,240,51,0,0,240,51,0,0,242,51,0,0,242,51,0,0,242,51,0,0,242,51,0,0,246,51,0,0,248,51,0,0,248,51,0,0,248,51,0,0,250,51,0,0,250,51,0,0,252,51,0,0,252,51,0,0,252,51,0,0,252,51,0,0,252,51,0,0,252,51,0,0,254,51,0,0,254,51,0,0,2,52,0,0,2,52,0,0,4,52,0,0,4,52,0,0,4,52,0,0,4,52,0,0,4,52,0,0,4,52,0,0,4,52,0,0,8,52,0,0,8,52,0,0,8,52,0,0,8,52,0,0,8,52,0,0,10,52,0,0,10,52,0,0,10,52,0,0,10,52,0,0,10,52,0,0,14,52,0,0,14,52,0,0,14,52,0,0,20,52,0,0,22,52,0,0,26,52,0,0,26,52,0,0,26,52,0,0,26,52,0,0,30,52,0,0,30,52,0,0,34,52,0,0,34,52,0,0,38,52,0,0,40,52,0,0,40,52,0,0,40,52,0,0,42,52,0,0,42,52,0,0,42,52,0,0,44,52,0,0,44,52,0,0,44,52,0,0,44,52,0,0,44,52,0,0,44,52,0,0,46,52,0,0,46,52,0,0,48,52,0,0,52,52,0,0,54,52,0,0,54,52,0,0,54,52,0,0,56,52,0,0,56,52,0,0,56,52,0,0,56,52,0,0,56,52,0,0,60,52,0,0,62,52,0,0,62,52,0,0,62,52,0,0,62,52,0,0,66,52,0,0,66,52,0,0,70,52,0,0,72,52,0,0,72,52,0,0,72,52,0,0,72,52,0,0,72,52,0,0,76,52,0,0,76,52,0,0,76,52,0,0,76,52,0,0,76,52,0,0,80,52,0,0,80,52,0,0,80,52,0,0,82,52,0,0,84,52,0,0,86,52,0,0,86,52,0,0,88,52,0,0,88,52,0,0,88,52,0,0,92,52,0,0,92,52,0,0,94,52,0,0,94,52,0,0,94,52,0,0,96,52,0,0,98,52,0,0,98,52,0,0,100,52,0,0,102,52,0,0,106,52,0,0,108,52,0,0,108,52,0,0,112,52,0,0,118,52,0,0,118,52,0,0,118,52,0,0,120,52,0,0,122,52,0,0,124,52,0,0,126,52,0,0,126,52,0,0,126,52,0,0,126,52,0,0,126,52,0,0,126,52,0,0,126,52,0,0,126,52,0,0,128,52,0,0,130,52,0,0,130,52,0,0,130,52,0,0,134,52,0,0,136,52,0,0,140,52,0,0,140,52,0,0,140,52,0,0,142,52,0,0,142,52,0,0,142,52,0,0,146,52,0,0,148,52,0,0,148,52,0,0,148,52,0,0,150,52,0,0,150,52,0,0,150,52,0,0,150,52,0,0,150,52,0,0,154,52,0,0,158,52,0,0,160,52,0,0,160,52,0,0,160,52,0,0,160,52,0,0,160,52,0,0,160,52,0,0,162,52,0,0,164,52,0,0,164,52,0,0,164,52,0,0,166,52,0,0,168,52,0,0,170,52,0,0,170,52,0,0,172,52,0,0,172,52,0,0,174,52,0,0,176,52,0,0,178,52,0,0,178,52,0,0,178,52,0,0,180,52,0,0,180,52,0,0,182,52,0,0,182,52,0,0,182,52,0,0,182,52,0,0,182,52,0,0,182,52,0,0,182,52,0,0,182,52,0,0,184,52,0,0,184,52,0,0,186,52,0,0,186,52,0,0,186,52,0,0,186,52,0,0,186,52,0,0,186,52,0,0,188,52,0,0,188,52,0,0,190,52,0,0,192,52,0,0,194,52,0,0,194,52,0,0,196,52,0,0,198,52,0,0,198,52,0,0,200,52,0,0,204,52,0,0,206,52,0,0,208,52,0,0,208,52,0,0,208,52,0,0,208,52,0,0,208,52,0,0,208,52,0,0,208,52,0,0,210,52,0,0,212,52,0,0,214,52,0,0,214,52,0,0,214,52,0,0,214,52,0,0,214,52,0,0,214,52,0,0,214,52,0,0,214,52,0,0,216,52,0,0,218,52,0,0,218,52,0,0,222,52,0,0,222,52,0,0,224,52,0,0,224,52,0,0,224,52,0,0,226,52,0,0,228,52,0,0,230,52,0,0,232,52,0,0,232,52,0,0,232,52,0,0,232,52,0,0,232,52,0,0,234,52,0,0,234,52,0,0,236,52,0,0,236,52,0,0,236,52,0,0,236,52,0,0,236,52,0,0,236,52,0,0,238,52,0,0,238,52,0,0,240,52,0,0,240,52,0,0,242,52,0,0,242,52,0,0,244,52,0,0,246,52,0,0,246,52,0,0,246,52,0,0,246,52,0,0,246,52,0,0,246,52,0,0,246,52,0,0,246,52,0,0,246,52,0,0,248,52,0,0,248,52,0,0,248,52,0,0,250,52,0,0,254,52,0,0,254,52,0,0,0,53,0,0,2,53,0,0,4,53,0,0,12,53,0,0,12,53,0,0,12,53,0,0,14,53,0,0,14,53,0,0,14,53,0,0,14,53,0,0,14,53,0,0,14,53,0,0,14,53,0,0,14,53,0,0,14,53,0,0,14,53,0,0,16,53,0,0,18,53,0,0,18,53,0,0,18,53,0,0,18,53,0,0,18,53,0,0,18,53,0,0,18,53,0,0,18,53,0,0,22,53,0,0,24,53,0,0,24,53,0,0,28,53,0,0,32,53,0,0,32,53,0,0,32,53,0,0,32,53,0,0,34,53,0,0,36,53,0,0,38,53,0,0,40,53,0,0,40,53,0,0,40,53,0,0,40,53,0,0,40,53,0,0,40,53,0,0,40,53,0,0,42,53,0,0,42,53,0,0,48,53,0,0,48,53,0,0,48,53,0,0,50,53,0,0,52,53,0,0,52,53,0,0,52,53,0,0,52,53,0,0,56,53,0,0,56,53,0,0,56,53,0,0,58,53,0,0,62,53,0,0,66,53,0,0,68,53,0,0,70,53,0,0,70,53,0,0,72,53,0,0,76,53,0,0,76,53,0,0,76,53,0,0,76,53,0,0,76,53,0,0,76,53,0,0,76,53,0,0,80,53,0,0,82,53,0,0,82,53,0,0,82,53,0,0,82,53,0,0,82,53,0,0,82,53,0,0,84,53,0,0,86,53,0,0,86,53,0,0,86,53,0,0,86,53,0,0,86,53,0,0,90,53,0,0,94,53,0,0,98,53,0,0,98,53,0,0,102,53,0,0,104,53,0,0,106,53,0,0,106,53,0,0,114,53,0,0,116,53,0,0,118,53,0,0,118,53,0,0,122,53,0,0,124,53,0,0,126,53,0,0,126,53,0,0,126,53,0,0,126,53,0,0,128,53,0,0,128,53,0,0,130,53,0,0,130,53,0,0,130,53,0,0,132,53,0,0,134,53,0,0,136,53,0,0,138,53,0,0,138,53,0,0,138,53,0,0,138,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,142,53,0,0,144,53,0,0,144,53,0,0,144,53,0,0,144,53,0,0,144,53,0,0,150,53,0,0,150,53,0,0,150,53,0,0,150,53,0,0,152,53,0,0,152,53,0,0,152,53,0,0,152,53,0,0,152,53,0,0,152,53,0,0,154,53,0,0,154,53,0,0,154,53,0,0,154,53,0,0,156,53,0,0,156,53,0,0,158,53,0,0,158,53,0,0,158,53,0,0,158,53,0,0,160,53,0,0,160,53,0,0,160,53,0,0,160,53,0,0,160,53,0,0,160,53,0,0,160,53,0,0,162,53,0,0,162,53,0,0,162,53,0,0,162,53,0,0,162,53,0,0,162,53,0,0,162,53,0,0,162,53,0,0,162,53,0,0,164,53,0,0,166,53,0,0,166,53,0,0,166,53,0,0,166,53,0,0,166,53,0,0,166,53,0,0,166,53,0,0,168,53,0,0,168,53,0,0,170,53,0,0,172,53,0,0,172,53,0,0,174,53,0,0,174,53,0,0,174,53,0,0,174,53,0,0,174,53,0,0,174,53,0,0,174,53,0,0,176,53,0,0,178,53,0,0,178,53,0,0,182,53,0,0,182,53,0,0,182,53,0,0,184,53,0,0,186,53,0,0,186,53,0,0,188,53,0,0,188,53,0,0,188,53,0,0,190,53,0,0,192,53,0,0,192,53,0,0,192,53,0,0,192,53,0,0,194,53,0,0,194,53,0,0,194,53,0,0,194,53,0,0,196,53,0,0,198,53,0,0,204,53,0,0,204,53,0,0,204,53,0,0,208,53,0,0,208,53,0,0,210,53,0,0,212,53,0,0,212,53,0,0,212,53,0,0,212,53,0,0,212,53,0,0,212,53,0,0,214,53,0,0,216,53,0,0,216,53,0,0,216,53,0,0,216,53,0,0,218,53,0,0,220,53,0,0,220,53,0,0,222,53,0,0,222,53,0,0,224,53,0,0,224,53,0,0,224,53,0,0,226,53,0,0,226,53,0,0,228,53,0,0,228,53,0,0,230,53,0,0,232,53,0,0,232,53,0,0,232,53,0,0,232,53,0,0,236,53,0,0,236,53,0,0,236,53,0,0,236,53,0,0,238,53,0,0,242,53,0,0,244,53,0,0,244,53,0,0,244,53,0,0,246,53,0,0,246,53,0,0,250,53,0,0,250,53,0,0,250,53,0,0,250,53,0,0,252,53,0,0,252,53,0,0,252,53,0,0,252,53,0,0,252,53,0,0,254,53,0,0,254,53,0,0,254,53,0,0,0,54,0,0,0,54,0,0,0,54,0,0,0,54,0,0,4,54,0,0,6,54,0,0,6,54,0,0,6,54,0,0,6,54,0,0,8,54,0,0,8,54,0,0,8,54,0,0,8,54,0,0,8,54,0,0,8,54,0,0,8,54,0,0,8,54,0,0,8,54,0,0,12,54,0,0,12,54,0,0,12,54,0,0,12,54,0,0,16,54,0,0,16,54,0,0,16,54,0,0,20,54,0,0,20,54,0,0,22,54,0,0,22,54,0,0,22,54,0,0,22,54,0,0,22,54,0,0,22,54,0,0,22,54,0,0,22,54,0,0,24,54,0,0,28,54,0,0,28,54,0,0,32,54,0,0,34,54,0,0,34,54,0,0,40,54,0,0,42,54,0,0,46,54,0,0,50,54,0,0,50,54,0,0,50,54,0,0,52,54,0,0,54,54,0,0,56,54,0,0,58,54,0,0,58,54,0,0,58,54,0,0,62,54,0,0,62,54,0,0,66,54,0,0,70,54,0,0,70,54,0,0,70,54,0,0,70,54,0,0,72,54,0,0,74,54,0,0,74,54,0,0,74,54,0,0,74,54,0,0,76,54,0,0,76,54,0,0,78,54,0,0,80,54,0,0,80,54,0,0,84,54,0,0,84,54,0,0,84,54,0,0,84,54,0,0,86,54,0,0,88,54,0,0,88,54,0,0,88,54,0,0,88,54,0,0,90,54,0,0,90,54,0,0,90,54,0,0,90,54,0,0,90,54,0,0,90,54,0,0,92,54,0,0,96,54,0,0,98,54,0,0,98,54,0,0,100,54,0,0,100,54,0,0,100,54,0,0,102,54,0,0,104,54,0,0,106,54,0,0,106,54,0,0,106,54,0,0,108,54,0,0,108,54,0,0,108,54,0,0,108,54,0,0,108,54,0,0,108,54,0,0,108,54,0,0,108,54,0,0,108,54,0,0,108,54,0,0,110,54,0,0,112,54,0,0,112,54,0,0,114,54,0,0,114,54,0,0,116,54,0,0,118,54,0,0,120,54,0,0,120,54,0,0,122,54,0,0,124,54,0,0,124,54,0,0,126,54,0,0,128,54,0,0,130,54,0,0,132,54,0,0,132,54,0,0,136,54,0,0,140,54,0,0,140,54,0,0,140,54,0,0,140,54,0,0,142,54,0,0,142,54,0,0,142,54,0,0,144,54,0,0,144,54,0,0,144,54,0,0,146,54,0,0,146,54,0,0,146,54,0,0,146,54,0,0,146,54,0,0,146,54,0,0,146,54,0,0,148,54,0,0,148,54,0,0,148,54,0,0,148,54,0,0,152,54,0,0,154,54,0,0,160,54,0,0,160,54,0,0,160,54,0,0,160,54,0,0,164,54,0,0,166,54,0,0,168,54,0,0,170,54,0,0,170,54,0,0,170,54,0,0,172,54,0,0,174,54,0,0,174,54,0,0,174,54,0,0,174,54,0,0,174,54,0,0,174,54,0,0,174,54,0,0,174,54,0,0,174,54,0,0,174,54,0,0,176,54,0,0,176,54,0,0,176,54,0,0,178,54,0,0,180,54,0,0,182,54,0,0,184,54,0,0,184,54,0,0,188,54,0,0,188,54,0,0,188,54,0,0,190,54,0,0,190,54,0,0,190,54,0,0,190,54,0,0,192,54,0,0,194,54,0,0,194,54,0,0,196,54,0,0,196,54,0,0,200,54,0,0,202,54,0,0,202,54,0,0,204,54,0,0,204,54,0,0,206,54,0,0,212,54,0,0,212,54,0,0,214,54,0,0,214,54,0,0,214,54,0,0,214,54,0,0,214,54,0,0,216,54,0,0,216,54,0,0,218,54,0,0,220,54,0,0,222,54,0,0,222,54,0,0,222,54,0,0,222,54,0,0,222,54,0,0,224,54,0,0,224,54,0,0,224,54,0,0,224,54,0,0,224,54,0,0,224,54,0,0,226,54,0,0,226,54,0,0,228,54,0,0,228,54,0,0,228,54,0,0,230,54,0,0,230,54,0,0,232,54,0,0,232,54,0,0,234,54,0,0,234,54,0,0,242,54,0,0,242,54,0,0,242,54,0,0,244,54,0,0,244,54,0,0,244,54,0,0,244,54,0,0,244,54,0,0,244,54,0,0,244,54,0,0,246,54,0,0,246,54,0,0,248,54,0,0,248,54,0,0,248,54,0,0,252,54,0,0,0,55,0,0,2,55,0,0,2,55,0,0,4,55,0,0,4,55,0,0,4,55,0,0,6,55,0,0,8,55,0,0,8,55,0,0,14,55,0,0,14,55,0,0,14,55,0,0,14,55,0,0,14,55,0,0,14,55,0,0,14,55,0,0,16,55,0,0,16,55,0,0,18,55,0,0,18,55,0,0,22,55,0,0,22,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,28,55,0,0,30,55,0,0,34,55,0,0,34,55,0,0,34,55,0,0,34,55,0,0,34,55,0,0,34,55,0,0,34,55,0,0,34,55,0,0,36,55,0,0,36,55,0,0,38,55,0,0,38,55,0,0,38,55,0,0,38,55,0,0,38,55,0,0,38,55,0,0,40,55,0,0,40,55,0,0,44,55,0,0,46,55,0,0,48,55,0,0,48,55,0,0,50,55,0,0,50,55,0,0,50,55,0,0,52,55,0,0,58,55,0,0,62,55,0,0,64,55,0,0,64,55,0,0,66,55,0,0,68,55,0,0,74,55,0,0,74,55,0,0,76,55,0,0,76,55,0,0,76,55,0,0,76,55,0,0,80,55,0,0,84,55,0,0,84,55,0,0,84,55,0,0,86,55,0,0,88,55,0,0,88,55,0,0,88,55,0,0,88,55,0,0,88,55,0,0,92,55,0,0,92,55,0,0,92,55,0,0,98,55,0,0,98,55,0,0,100,55,0,0,100,55,0,0,100,55,0,0,100,55,0,0,100,55,0,0,102,55,0,0,104,55,0,0,108,55,0,0,110,55,0,0,118,55,0,0,120,55,0,0,124,55,0,0,126,55,0,0,126,55,0,0,126,55,0,0,128,55,0,0,128,55,0,0,130,55,0,0,130,55,0,0,132,55,0,0,134,55,0,0,134,55,0,0,134,55,0,0,134,55,0,0,134,55,0,0,134,55,0,0,134,55,0,0,134,55,0,0,136,55,0,0,140,55,0,0,140,55,0,0,140,55,0,0,142,55,0,0,146,55,0,0,146,55,0,0,146,55,0,0,146,55,0,0,148,55,0,0,148,55,0,0,148,55,0,0,148,55,0,0,148,55,0,0,152,55,0,0,152,55,0,0,154,55,0,0,156,55,0,0,162,55,0,0,164,55,0,0,166,55,0,0,168,55,0,0,172,55,0,0,172,55,0,0,172,55,0,0,174,55,0,0,176,55,0,0,176,55,0,0,178,55,0,0,178,55,0,0,178,55,0,0,180,55,0,0,180,55,0,0,182,55,0,0,184,55,0,0,184,55,0,0,184,55,0,0,186,55,0,0,188,55,0,0,188,55,0,0,188,55,0,0,190,55,0,0,190,55,0,0,192,55,0,0,192,55,0,0,194,55,0,0,194,55,0,0,194,55,0,0,196,55,0,0,196,55,0,0,202,55,0,0,204,55,0,0,204,55,0,0,206,55,0,0,208,55,0,0,210,55,0,0,210,55,0,0,210,55,0,0,214,55,0,0,214,55,0,0,214,55,0,0,216,55,0,0,216,55,0,0,220,55,0,0,220,55,0,0,222,55,0,0,224,55,0,0,226,55,0,0,228,55,0,0,228,55,0,0,228,55,0,0,228,55,0,0,228,55,0,0,228,55,0,0,230,55,0,0,230,55,0,0,230,55,0,0,232,55,0,0,232,55,0,0,232,55,0,0,232,55,0,0,234,55,0,0,234,55,0,0,234,55,0,0,238,55,0,0,240,55,0,0,240,55,0,0,240,55,0,0,240,55,0,0,242,55,0,0,244,55,0,0,246,55,0,0,246,55,0,0,248,55,0,0,248,55,0,0,252,55,0,0,252,55,0,0,254,55,0,0,0,56,0,0,0,56,0,0,0,56,0,0,2,56,0,0,4,56,0,0,4,56,0,0,4,56,0,0,4,56,0,0,4,56,0,0,6,56,0,0,6,56,0,0,6,56,0,0,8,56,0,0,10,56,0,0,10,56,0,0,12,56,0,0,14,56,0,0,14,56,0,0,16,56,0,0,16,56,0,0,18,56,0,0,20,56,0,0,22,56,0,0,22,56,0,0,22,56,0,0,22,56,0,0,24,56,0,0,24,56,0,0,30,56,0,0,30,56,0,0,32,56,0,0,32,56,0,0,32,56,0,0,32,56,0,0,32,56,0,0,32,56,0,0,32,56,0,0,36,56,0,0,38,56,0,0,38,56,0,0,40,56,0,0,44,56,0,0,48,56,0,0,50,56,0,0,50,56,0,0,54,56,0,0,56,56,0,0,60,56,0,0,60,56,0,0,60,56,0,0,60,56,0,0,60,56,0,0,62,56,0,0,62,56,0,0,64,56,0,0,64,56,0,0,64,56,0,0,66,56,0,0,68,56,0,0,68,56,0,0,68,56,0,0,70,56,0,0,70,56,0,0,70,56,0,0,70,56,0,0,70,56,0,0,70,56,0,0,70,56,0,0,72,56,0,0,72,56,0,0,74,56,0,0,74,56,0,0,74,56,0,0,74,56,0,0,74,56,0,0,74,56,0,0,74,56,0,0,74,56,0,0,74,56,0,0,74,56,0,0,76,56,0,0,76,56,0,0,78,56,0,0,80,56,0,0,80,56,0,0,82,56,0,0,82,56,0,0,84,56,0,0,84,56,0,0,86,56,0,0,86,56,0,0,86,56,0,0,88,56,0,0,92,56,0,0,96,56,0,0,98,56,0,0,98,56,0,0,100,56,0,0,102,56,0,0,102,56,0,0,102,56,0,0,104,56,0,0,110,56,0,0,110,56,0,0,110,56,0,0,110,56,0,0,112,56,0,0,116,56,0,0,118,56,0,0,120,56,0,0,120,56,0,0,120,56,0,0,122,56,0,0,122,56,0,0,124,56,0,0,124,56,0,0,124,56,0,0,126,56,0,0,126,56,0,0,126,56,0,0,126,56,0,0,126,56,0,0,128,56,0,0,130,56,0,0,132,56,0,0,136,56,0,0,140,56,0,0,140,56,0,0,140,56,0,0,140,56,0,0,142,56,0,0,144,56,0,0,148,56,0,0,148,56,0,0,148,56,0,0,150,56,0,0,150,56,0,0,150,56,0,0,150,56,0,0,152,56,0,0,152,56,0,0,152,56,0,0,152,56,0,0,152,56,0,0,152,56,0,0,152,56,0,0,154,56,0,0,156,56,0,0,156,56,0,0,158,56,0,0,158,56,0,0,158,56,0,0,158,56,0,0,158,56,0,0,158,56,0,0,162,56,0,0,166,56,0,0,166,56,0,0,168,56,0,0,168,56,0,0,168,56,0,0,168,56,0,0,168,56,0,0,170,56,0,0,172,56,0,0,174,56,0,0,174,56,0,0,174,56,0,0,174,56,0,0,176,56,0,0,178,56,0,0,178,56,0,0,178,56,0,0,178,56,0,0,178,56,0,0,180,56,0,0,184,56,0,0,186,56,0,0,188,56,0,0,188,56,0,0,188,56,0,0,190,56,0,0,192,56,0,0,192,56,0,0,192,56,0,0,192,56,0,0,194,56,0,0,200,56,0,0,202,56,0,0,204,56,0,0,204,56,0,0,204,56,0,0,204,56,0,0,204,56,0,0,204,56,0,0,206,56,0,0,206,56,0,0,206,56,0,0,208,56,0,0,208,56,0,0,210,56,0,0,214,56,0,0,214,56,0,0,214,56,0,0,218,56,0,0,218,56,0,0,218,56,0,0,218,56,0,0,218,56,0,0,220,56,0,0,222,56,0,0,224,56,0,0,226,56,0,0,226,56,0,0,228,56,0,0,228,56,0,0,228,56,0,0,228,56,0,0,228,56,0,0,230,56,0,0,232,56,0,0,232,56,0,0,232,56,0,0,234,56,0,0,238,56,0,0,240,56,0,0,240,56,0,0,242,56,0,0,244,56,0,0,250,56,0,0,250,56,0,0,250,56,0,0,254,56,0,0,0,57,0,0,0,57,0,0,0,57,0,0,0,57,0,0,2,57,0,0,2,57,0,0,4,57,0,0,4,57,0,0,4,57,0,0,4,57,0,0,8,57,0,0,8,57,0,0,8,57,0,0,8,57,0,0,8,57,0,0,8,57,0,0,10,57,0,0,12,57,0,0,12,57,0,0,14,57,0,0,16,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,22,57,0,0,22,57,0,0,30,57,0,0,30,57,0,0,32,57,0,0,32,57,0,0,32,57,0,0,32,57,0,0,32,57,0,0,32,57,0,0,38,57,0,0,40,57,0,0,40,57,0,0,40,57,0,0,42,57,0,0,44,57,0,0,44,57,0,0,46,57,0,0,48,57,0,0,48,57,0,0,50,57,0,0,50,57,0,0,50,57,0,0,50,57,0,0,50,57,0,0,50,57,0,0,50,57,0,0,50,57,0,0,54,57,0,0,56,57,0,0,56,57,0,0,58,57,0,0,58,57,0,0,60,57,0,0,62,57,0,0,62,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,68,57,0,0,68,57,0,0,70,57,0,0,70,57,0,0,70,57,0,0,70,57,0,0,72,57,0,0,72,57,0,0,74,57,0,0,74,57,0,0,76,57,0,0,76,57,0,0,76,57,0,0,76,57,0,0,76,57,0,0,78,57,0,0,78,57,0,0,78,57,0,0,78,57,0,0,84,57,0,0,86,57,0,0,86,57,0,0,86,57,0,0,86,57,0,0,88,57,0,0,88,57,0,0,88,57,0,0,90,57,0,0,92,57,0,0,92,57,0,0,96,57,0,0,96,57,0,0,96,57,0,0,98,57,0,0,100,57,0,0,102,57,0,0,102,57,0,0,102,57,0,0,104,57,0,0,104,57,0,0,108,57,0,0,108,57,0,0,112,57,0,0,114,57,0,0,114,57,0,0,116,57,0,0,118,57,0,0,118,57,0,0,120,57,0,0,120,57,0,0,120,57,0,0,120,57,0,0,124,57,0,0,126,57,0,0,126,57,0,0,126,57,0,0,128,57,0,0,128,57,0,0,130,57,0,0,132,57,0,0,132,57,0,0,134,57,0,0,134,57,0,0,134,57,0,0,134,57,0,0,134,57,0,0,134,57,0,0,134,57,0,0,134,57,0,0,134,57,0,0,136,57,0,0,138,57,0,0,138,57,0,0,140,57,0,0,140,57,0,0,142,57,0,0,146,57,0,0,146,57,0,0,148,57,0,0,150,57,0,0,150,57,0,0,150,57,0,0,150,57,0,0,152,57,0,0,154,57,0,0,158,57,0,0,158,57,0,0,158,57,0,0,160,57,0,0,160,57,0,0,160,57,0,0,162,57,0,0,164,57,0,0,164,57,0,0,164,57,0,0,168,57,0,0,170,57,0,0,170,57,0,0,170,57,0,0,174,57,0,0,178,57,0,0,178,57,0,0,178,57,0,0,178,57,0,0,178,57,0,0,182,57,0,0,182,57,0,0,182,57,0,0,184,57,0,0,186,57,0,0,188,57,0,0,188,57,0,0,190,57,0,0,190,57,0,0,190,57,0,0,192,57,0,0,192,57,0,0,192,57,0,0,192,57,0,0,194,57,0,0,196,57,0,0,198,57,0,0,198,57,0,0,198,57,0,0,198,57,0,0,200,57,0,0,200,57,0,0,200,57,0,0,200,57,0,0,202,57,0,0,204,57,0,0,206,57,0,0,206,57,0,0,206,57,0,0,212,57,0,0,212,57,0,0,214,57,0,0,216,57,0,0,216,57,0,0,216,57,0,0,216,57,0,0,216,57,0,0,216,57,0,0,220,57,0,0,220,57,0,0,220,57,0,0,222,57,0,0,226,57,0,0,226,57,0,0,226,57,0,0,228,57,0,0,228,57,0,0,230,57,0,0,234,57,0,0,236,57,0,0,236,57,0,0,236,57,0,0,238,57,0,0,240,57,0,0,242,57,0,0,244,57,0,0,244,57,0,0,244,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,250,57,0,0,250,57,0,0,250,57,0,0,250,57,0,0,252,57,0,0,252,57,0,0,252,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,0,58,0,0,0,58,0,0,2,58,0,0,4,58,0,0,4,58,0,0,6,58,0,0,6,58,0,0,8,58,0,0,8,58,0,0,8,58,0,0,8,58,0,0,8,58,0,0,8,58,0,0,10,58,0,0,14,58,0,0,16,58,0,0,18,58,0,0,18,58,0,0,20,58,0,0,22,58,0,0,24,58,0,0,24,58,0,0,24,58,0,0,24,58,0,0,24,58,0,0,26,58,0,0,26,58,0,0,26,58,0,0,28,58,0,0,30,58,0,0,30,58,0,0,32,58,0,0,34,58,0,0,34,58,0,0,34,58,0,0,34,58,0,0,36,58,0,0,36,58,0,0,36,58,0,0,38,58,0,0,38,58,0,0,38,58,0,0,40,58,0,0,42,58,0,0,42,58,0,0,44,58,0,0,44,58,0,0,46,58,0,0,48,58,0,0,50,58,0,0,50,58,0,0,52,58,0,0,52,58,0,0,54,58,0,0,54,58,0,0,56,58,0,0,56,58,0,0,56,58,0,0,56,58,0,0,56,58,0,0,56,58,0,0,58,58,0,0,60,58,0,0,62,58,0,0,62,58,0,0,66,58,0,0,66,58,0,0,66,58,0,0,68,58,0,0,70,58,0,0,70,58,0,0,70,58,0,0,70,58,0,0,70,58,0,0,70,58,0,0,70,58,0,0,70,58,0,0,70,58,0,0,72,58,0,0,72,58,0,0,74,58,0,0,74,58,0,0,74,58,0,0,76,58,0,0,76,58,0,0,82,58,0,0,84,58,0,0,86,58,0,0,86,58,0,0,88,58,0,0,90,58,0,0,92,58,0,0,92,58,0,0,94,58,0,0,96,58,0,0,98,58,0,0,98,58,0,0,98,58,0,0,98,58,0,0,100,58,0,0,100,58,0,0,100,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,104,58,0,0,106,58,0,0,108,58,0,0,110,58,0,0,110,58,0,0,112,58,0,0,114,58,0,0,116,58,0,0,118,58,0,0,118,58,0,0,122,58,0,0,122,58,0,0,122,58,0,0,122,58,0,0,122,58,0,0,122,58,0,0,122,58,0,0,122,58,0,0,124,58,0,0,124,58,0,0,124,58,0,0,124,58,0,0,126,58,0,0,126,58,0,0,126,58,0,0,126,58,0,0,126,58,0,0,128,58,0,0,128,58,0,0,130,58,0,0,132,58,0,0,132,58,0,0,134,58,0,0,136,58,0,0,136,58,0,0,136,58,0,0,136,58,0,0,138,58,0,0,138,58,0,0,140,58,0,0,140,58,0,0,140,58,0,0,144,58,0,0,144,58,0,0,144,58,0,0,146,58,0,0,150,58,0,0,150,58,0,0,150,58,0,0,154,58,0,0,154,58,0,0,154,58,0,0,154,58,0,0,156,58,0,0,156,58,0,0,158,58,0,0,158,58,0,0,160,58,0,0,160,58,0,0,160,58,0,0,162,58,0,0,166,58,0,0,166,58,0,0,166,58,0,0,166,58,0,0,168,58,0,0,168,58,0,0,168,58,0,0,168,58,0,0,168,58,0,0,168,58,0,0,168,58,0,0,168,58,0,0,170,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,176,58,0,0,178,58,0,0,178,58,0,0,178,58,0,0,178,58,0,0,180,58,0,0,180,58,0,0,184,58,0,0,186,58,0,0,188,58,0,0,188,58,0,0,190,58,0,0,190,58,0,0,190,58,0,0,190,58,0,0,194,58,0,0,194,58,0,0,194,58,0,0,194,58,0,0,194,58,0,0,196,58,0,0,196,58,0,0,196,58,0,0,196,58,0,0,198,58,0,0,200,58,0,0,200,58,0,0,200,58,0,0,200,58,0,0,202,58,0,0,202,58,0,0,202,58,0,0,204,58,0,0,206,58,0,0,206,58,0,0,206,58,0,0,206,58,0,0,208,58,0,0,210,58,0,0,212,58,0,0,212,58,0,0,214,58,0,0,218,58,0,0,220,58,0,0,222,58,0,0,222,58,0,0,222,58,0,0,222,58,0,0,222,58,0,0,222,58,0,0,222,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,226,58,0,0,228,58,0,0,228,58,0,0,228,58,0,0,230,58,0,0,230,58,0,0,232,58,0,0,234,58,0,0,236,58,0,0,236,58,0,0,236,58,0,0,236,58,0,0,240,58,0,0,240,58,0,0,240,58,0,0,240,58,0,0,240,58,0,0,240,58,0,0,240,58,0,0,242,58,0,0,242,58,0,0,244,58,0,0,244,58,0,0,246,58,0,0,250,58,0,0,250,58,0,0,250,58,0,0,254,58,0,0,0,59,0,0,0,59,0,0,0,59,0,0,0,59,0,0,0,59,0,0,0,59,0,0,0,59,0,0,2,59,0,0,2,59,0,0,2,59,0,0,2,59,0,0,2,59,0,0,2,59,0,0,4,59,0,0,6,59,0,0,6,59,0,0,6,59,0,0,6,59,0,0,8,59,0,0,8,59,0,0,8,59,0,0,10,59,0,0,12,59,0,0,14,59,0,0,18,59,0,0,18,59,0,0,18,59,0,0,18,59,0,0,18,59,0,0,18,59,0,0,18,59,0,0,18,59,0,0,20,59,0,0,20,59,0,0,20,59,0,0,22,59,0,0,24,59,0,0,24,59,0,0,24,59,0,0,24,59,0,0,28,59,0,0,28,59,0,0,28,59,0,0,28,59,0,0,30,59,0,0,30,59,0,0,30,59,0,0,30,59,0,0,32,59,0,0,34,59,0,0,34,59,0,0,34,59,0,0,36,59,0,0,38,59,0,0,38,59,0,0,38,59,0,0,42,59,0,0,42,59,0,0,42,59,0,0,44,59,0,0,44,59,0,0,44,59,0,0,48,59,0,0,50,59,0,0,50,59,0,0,52,59,0,0,54,59,0,0,54,59,0,0,54,59,0,0,56,59,0,0,56,59,0,0,56,59,0,0,56,59,0,0,56,59,0,0,56,59,0,0,56,59,0,0,60,59,0,0,60,59,0,0,64,59,0,0,64,59,0,0,68,59,0,0,70,59,0,0,70,59,0,0,74,59,0,0,76,59,0,0,76,59,0,0,76,59,0,0,80,59,0,0,82,59,0,0,84,59,0,0,86,59,0,0,86,59,0,0,88,59,0,0,90,59,0,0,90,59,0,0,90,59,0,0,90,59,0,0,92,59,0,0,92,59,0,0,92,59,0,0,92,59,0,0,94,59,0,0,94,59,0,0,96,59,0,0,96,59,0,0,100,59,0,0,100,59,0,0,100,59,0,0,100,59,0,0,100,59,0,0,100,59,0,0,100,59,0,0,100,59,0,0,100,59,0,0,102,59,0,0,102,59,0,0,102,59,0,0,106,59,0,0,106,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,110,59,0,0,116,59,0,0,120,59,0,0,120,59,0,0,120,59,0,0,122,59,0,0,122,59,0,0,122,59,0,0,122,59,0,0,124,59,0,0,124,59,0,0,130,59,0,0,130,59,0,0,134,59,0,0,136,59,0,0,136,59,0,0,140,59,0,0,142,59,0,0,142,59,0,0,142,59,0,0,144,59,0,0,144,59,0,0,144,59,0,0,146,59,0,0,146,59,0,0,146,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,150,59,0,0,150,59,0,0,152,59,0,0,152,59,0,0,152,59,0,0,154,59,0,0,156,59,0,0,156,59,0,0,156,59,0,0,158,59,0,0,160,59,0,0,162,59,0,0,164,59,0,0,164,59,0,0,168,59,0,0,170,59,0,0,170,59,0,0,170,59,0,0,170,59,0,0,172,59,0,0,174,59,0,0,176,59,0,0,176,59,0,0,176,59,0,0,176,59,0,0,176,59,0,0,176,59,0,0,176,59,0,0,176,59,0,0,178,59,0,0,180,59,0,0,182,59,0,0,182,59,0,0,182,59,0,0,182,59,0,0,186,59,0,0,186,59,0,0,186,59,0,0,186,59,0,0,186,59,0,0,186,59,0,0,186,59,0,0,190,59,0,0,190,59,0,0,194,59,0,0,194,59,0,0,196,59,0,0,196,59,0,0,198,59,0,0,200,59,0,0,200,59,0,0,202,59,0,0,204,59,0,0,206,59,0,0,206,59,0,0,208,59,0,0,208,59,0,0,208,59,0,0,212,59,0,0,212,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,218,59,0,0,218,59,0,0,218,59,0,0,220,59,0,0,222,59,0,0,222,59,0,0,222,59,0,0,224,59,0,0,224,59,0,0,226,59,0,0,226,59,0,0,226,59,0,0,228,59,0,0,230,59,0,0,232,59,0,0,232,59,0,0,232,59,0,0,232,59,0,0,232,59,0,0,232,59,0,0,234,59,0,0,234,59,0,0,234,59,0,0,234,59,0,0,234,59,0,0,234,59,0,0,236,59,0,0,236,59,0,0,236,59,0,0,238,59,0,0,238,59,0,0,240,59,0,0,240,59,0,0,244,59,0,0,244,59,0,0,244,59,0,0,246,59,0,0,246,59,0,0,248,59,0,0,250,59,0,0,250,59,0,0,250,59,0,0,250,59,0,0,250,59,0,0,250,59,0,0,250,59,0,0,250,59,0,0,254,59,0,0,254,59,0,0,254,59,0,0,254,59,0,0,254,59,0,0,254,59,0,0,254,59,0,0,254,59,0,0,0,60,0,0,0,60,0,0,0,60,0,0,2,60,0,0,4,60,0,0,4,60,0,0,4,60,0,0,4,60,0,0,4,60,0,0,4,60,0,0,4,60,0,0,6,60,0,0,6,60,0,0,8,60,0,0,10,60,0,0,16,60,0,0,16,60,0,0,16,60,0,0,16,60,0,0,16,60,0,0,16,60,0,0,18,60,0,0,20,60,0,0,24,60,0,0,24,60,0,0,26,60,0,0,26,60,0,0,26,60,0,0,26,60,0,0,28,60,0,0,28,60,0,0,28,60,0,0,28,60,0,0,28,60,0,0,30,60,0,0,32,60,0,0,36,60,0,0,36,60,0,0,36,60,0,0,40,60,0,0,40,60,0,0,40,60,0,0,42,60,0,0,46,60,0,0,46,60,0,0,50,60,0,0,54,60,0,0,54,60,0,0,54,60,0,0,54,60,0,0,56,60,0,0,56,60,0,0,56,60,0,0,58,60,0,0,58,60,0,0,60,60,0,0,62,60,0,0,64,60,0,0,64,60,0,0,64,60,0,0,64,60,0,0,64,60,0,0,64,60,0,0,66,60,0,0,66,60,0,0,66,60,0,0,68,60,0,0,68,60,0,0,68,60,0,0,68,60,0,0,68,60,0,0,68,60,0,0,68,60,0,0,68,60,0,0,70,60,0,0,70,60,0,0,72,60,0,0,76,60,0,0,78,60,0,0,82,60,0,0,84,60,0,0,84,60,0,0,86,60,0,0,88,60,0,0,88,60,0,0,88,60,0,0,88,60,0,0,90,60,0,0,90,60,0,0,90,60,0,0,90,60,0,0,92,60,0,0,92,60,0,0,92,60,0,0,92,60,0,0,92,60,0,0,94,60,0,0,94,60,0,0,94,60,0,0,96,60,0,0,96,60,0,0,102,60,0,0,104,60,0,0,104,60,0,0,104,60,0,0,108,60,0,0,112,60,0,0,112,60,0,0,112,60,0,0,114,60,0,0,114,60,0,0,114,60,0,0,116,60,0,0,116,60,0,0,116,60,0,0,116,60,0,0,116,60,0,0,116,60,0,0,116,60,0,0,116,60,0,0,116,60,0,0,120,60,0,0,120,60,0,0,120,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,126,60,0,0,126,60,0,0,130,60,0,0,130,60,0,0,134,60,0,0,138,60,0,0,138,60,0,0,138,60,0,0,140,60,0,0,144,60,0,0,144,60,0,0,144,60,0,0,144,60,0,0,144,60,0,0,146,60,0,0,146,60,0,0,148,60,0,0,150,60,0,0,150,60,0,0,152,60,0,0,154,60,0,0,154,60,0,0,156,60,0,0,156,60,0,0,156,60,0,0,156,60,0,0,158,60,0,0,160,60,0,0,162,60,0,0,164,60,0,0,164,60,0,0,166,60,0,0,168,60,0,0,168,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,174,60,0,0,174,60,0,0,174,60,0,0,178,60,0,0,180,60,0,0,180,60,0,0,184,60,0,0,184,60,0,0,184,60,0,0,184,60,0,0,184,60,0,0,184,60,0,0,186,60,0,0,186,60,0,0,186,60,0,0,188,60,0,0,190,60,0,0,192,60,0,0,192,60,0,0,194,60,0,0,194,60,0,0,196,60,0,0,196,60,0,0,196,60,0,0,196,60,0,0,196,60,0,0,196,60,0,0,198,60,0,0,200,60,0,0,200,60,0,0,200,60,0,0,200,60,0,0,200,60,0,0,200,60,0,0,200,60,0,0,202,60,0,0,208,60,0,0,208,60,0,0,210,60,0,0,210,60,0,0,210,60,0,0,210,60,0,0,210,60,0,0,210,60,0,0,212,60,0,0,212,60,0,0,212,60,0,0,212,60,0,0,214,60,0,0,214,60,0,0,214,60,0,0,214,60,0,0,214,60,0,0,216,60,0,0,216,60,0,0,216,60,0,0,220,60,0,0,222,60,0,0,222,60,0,0,224,60,0,0,224,60,0,0,224,60,0,0,226,60,0,0,228,60,0,0,232,60,0,0,232,60,0,0,232,60,0,0,232,60,0,0,234,60,0,0,236,60,0,0,236,60,0,0,236,60,0,0,236,60,0,0,236,60,0,0,238,60,0,0,240,60,0,0,240,60,0,0,242,60,0,0,242,60,0,0,242,60,0,0,246,60,0,0,248,60,0,0,248,60,0,0,248,60,0,0,248,60,0,0,248,60,0,0,250,60,0,0,250,60,0,0,250,60,0,0,254,60,0,0,0,61,0,0,2,61,0,0,2,61,0,0,4,61,0,0,4,61,0,0,6,61,0,0,8,61,0,0,8,61,0,0,8,61,0,0,10,61,0,0,10,61,0,0,10,61,0,0,10,61,0,0,10,61,0,0,14,61,0,0,18,61,0,0,22,61,0,0,22,61,0,0,22,61,0,0,22,61,0,0,22,61,0,0,24,61,0,0,24,61,0,0,24,61,0,0,26,61,0,0,26,61,0,0,26,61,0,0,26,61,0,0,26,61,0,0,28,61,0,0,30,61,0,0,32,61,0,0,32,61,0,0,32,61,0,0,34,61,0,0,36,61,0,0,38,61,0,0,38,61,0,0,38,61,0,0,38,61,0,0,38,61,0,0,42,61,0,0,42,61,0,0,42,61,0,0,42,61,0,0,44,61,0,0,46,61,0,0,48,61,0,0,50,61,0,0,50,61,0,0,50,61,0,0,50,61,0,0,50,61,0,0,50,61,0,0,54,61,0,0,54,61,0,0,54,61,0,0,54,61,0,0,54,61,0,0,54,61,0,0,56,61,0,0,56,61,0,0,56,61,0,0,60,61,0,0,62,61,0,0,62,61,0,0,62,61,0,0,62,61,0,0,64,61,0,0,64,61,0,0,64,61,0,0,64,61,0,0,64,61,0,0,66,61,0,0,66,61,0,0,66,61,0,0,66,61,0,0,68,61,0,0,70,61,0,0,70,61,0,0,70,61,0,0,72,61,0,0,72,61,0,0,74,61,0,0,74,61,0,0,74,61,0,0,76,61,0,0,76,61,0,0,76,61,0,0,76,61,0,0,78,61,0,0,78,61,0,0,78,61,0,0,80,61,0,0,82,61,0,0,82,61,0,0,84,61,0,0,84,61,0,0,84,61,0,0,84,61,0,0,84,61,0,0,84,61,0,0,84,61,0,0,84,61,0,0,84,61,0,0,86,61,0,0,86,61,0,0,86,61,0,0,88,61,0,0,88,61,0,0,88,61,0,0,90,61,0,0,94,61,0,0,94,61,0,0,94,61,0,0,94,61,0,0,94,61,0,0,96,61,0,0,96,61,0,0,96,61,0,0,98,61,0,0,98,61,0,0,98,61,0,0,98,61,0,0,98,61,0,0,102,61,0,0,104,61,0,0,106,61,0,0,112,61,0,0,118,61,0,0,120,61,0,0,122,61,0,0,122,61,0,0,122,61,0,0,122,61,0,0,126,61,0,0,126,61,0,0,128,61,0,0,128,61,0,0,128,61,0,0,130,61,0,0,134,61,0,0,134,61,0,0,134,61,0,0,134,61,0,0,134,61,0,0,134,61,0,0,134,61,0,0,136,61,0,0,136,61,0,0,136,61,0,0,138,61,0,0,138,61,0,0,140,61,0,0,140,61,0,0,142,61,0,0,146,61,0,0,148,61,0,0,150,61,0,0,150,61,0,0,150,61,0,0,150,61,0,0,150,61,0,0,150,61,0,0,150,61,0,0,152,61,0,0,154,61,0,0,158,61,0,0,160,61,0,0,160,61,0,0,160,61,0,0,160,61,0,0,160,61,0,0,160,61,0,0,166,61,0,0,166,61,0,0,168,61,0,0,174,61,0,0,174,61,0,0,176,61,0,0,176,61,0,0,178,61,0,0,180,61,0,0,180,61,0,0,180,61,0,0,180,61,0,0,180,61,0,0,184,61,0,0,184,61,0,0,186,61,0,0,186,61,0,0,188,61,0,0,190,61,0,0,190,61,0,0,190,61,0,0,192,61,0,0,194,61,0,0,198,61,0,0,198,61,0,0,200,61,0,0,200,61,0,0,200,61,0,0,202,61,0,0,202,61,0,0,202,61,0,0,206,61,0,0,206,61,0,0,206,61,0,0,206,61,0,0,206,61,0,0,210,61,0,0,210,61,0,0,210,61,0,0,212,61,0,0,212,61,0,0,216,61,0,0,216,61,0,0,216,61,0,0,216,61,0,0,218,61,0,0,218,61,0,0,218,61,0,0,218,61,0,0,218,61,0,0,220,61,0,0,222,61,0,0,222,61,0,0,222,61,0,0,222,61,0,0,230,61,0,0,230,61,0,0,232,61,0,0,234,61,0,0,236,61,0,0,236,61,0,0,238,61,0,0,238,61,0,0,240,61,0,0,244,61,0,0,244,61,0,0,244,61,0,0,246,61,0,0,246,61,0,0,250,61,0,0,250,61,0,0,252,61,0,0,252,61,0,0,254,61,0,0,254,61,0,0,254,61,0,0,0,62,0,0,0,62,0,0,0,62,0,0,0,62,0,0,2,62,0,0,4,62,0,0,4,62,0,0,4,62,0,0,6,62,0,0,6,62,0,0,6,62,0,0,10,62,0,0,10,62,0,0,10,62,0,0,12,62,0,0,16,62,0,0,18,62,0,0,18,62,0,0,18,62,0,0,18,62,0,0,20,62,0,0,20,62,0,0,20,62,0,0,20,62,0,0,24,62,0,0,26,62,0,0,26,62,0,0,26,62,0,0,28,62,0,0,28,62,0,0,28,62,0,0,34,62,0,0,34,62,0,0,36,62,0,0,38,62,0,0,40,62,0,0,42,62,0,0,42,62,0,0,44,62,0,0,44,62,0,0,44,62,0,0,44,62,0,0,44,62,0,0,46,62,0,0,46,62,0,0,48,62,0,0,52,62,0,0,52,62,0,0,52,62,0,0,54,62,0,0,54,62,0,0,54,62,0,0,56,62,0,0,56,62,0,0,56,62,0,0,58,62,0,0,60,62,0,0,62,62,0,0,64,62,0,0,64,62,0,0,68,62,0,0,68,62,0,0,68,62,0,0,70,62,0,0,72,62,0,0,74,62,0,0,76,62,0,0,78,62,0,0,80,62,0,0,80,62,0,0,80,62,0,0,82,62,0,0,82,62,0,0,84,62,0,0,86,62,0,0,86,62,0,0,88,62,0,0,94,62,0,0,98,62,0,0,100,62,0,0,102,62,0,0,102,62,0,0,102,62,0,0,102,62,0,0,106,62,0,0,106,62,0,0,108,62,0,0,110,62,0,0,110,62,0,0,116,62,0,0,116,62,0,0,118,62,0,0,120,62,0,0,120,62,0,0,120,62,0,0,122,62,0,0,122,62,0,0,124,62,0,0,126,62,0,0,126,62,0,0,126,62,0,0,126,62,0,0,126,62,0,0,126,62,0,0,130,62,0,0,132,62,0,0,136,62,0,0,140,62,0,0,140,62,0,0,142,62,0,0,142,62,0,0,142,62,0,0,144,62,0,0,144,62,0,0,144,62,0,0,144,62,0,0,144,62,0,0,146,62,0,0,146,62,0,0,148,62,0,0,150,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,154,62,0,0,154,62,0,0,154,62,0,0,154,62,0,0,156,62,0,0,160,62,0,0,162,62,0,0,162,62,0,0,162,62,0,0,162,62,0,0,168,62,0,0,168,62,0,0,172,62,0,0,172,62,0,0,174,62,0,0,174,62,0,0,174,62,0,0,174,62,0,0,174,62,0,0,178,62,0,0,178,62,0,0,178,62,0,0,180,62,0,0,180,62,0,0,180,62,0,0,182,62,0,0,182,62,0,0,184,62,0,0,186,62,0,0,188,62,0,0,190,62,0,0,190,62,0,0,190,62,0,0,190,62,0,0,192,62,0,0,192,62,0,0,192,62,0,0,192,62,0,0,192,62,0,0,192,62,0,0,194,62,0,0,194,62,0,0,194,62,0,0,194,62,0,0,194,62,0,0,194,62,0,0,198,62,0,0,200,62,0,0,200,62,0,0,200,62,0,0,200,62,0,0,204,62,0,0,208,62,0,0,212,62,0,0,214,62,0,0,214,62,0,0,214,62,0,0,214,62,0,0,216,62,0,0,216,62,0,0,218,62,0,0,220,62,0,0,220,62,0,0,220,62,0,0,220,62,0,0,222,62,0,0,222,62,0,0,226,62,0,0,226,62,0,0,228,62,0,0,228,62,0,0,228,62,0,0,230,62,0,0,234,62,0,0,234,62,0,0,236,62,0,0,236,62,0,0,238,62,0,0,238,62,0,0,238,62,0,0,238,62,0,0,240,62,0,0,240,62,0,0,244,62,0,0,246,62,0,0,246,62,0,0,252,62,0,0,252,62,0,0,252,62,0,0,252,62,0,0,254,62,0,0,0,63,0,0,2,63,0,0,2,63,0,0,4,63,0,0,4,63,0,0,4,63,0,0,8,63,0,0,8,63,0,0,8,63,0,0,8,63,0,0,8,63,0,0,8,63,0,0,12,63,0,0,12,63,0,0,12,63,0,0,12,63,0,0,14,63,0,0,16,63,0,0,16,63,0,0,16,63,0,0,16,63,0,0,18,63,0,0,18,63,0,0,20,63,0,0,22,63,0,0,22,63,0,0,26,63,0,0,26,63,0,0,26,63,0,0,28,63,0,0,28,63,0,0,30,63,0,0,30,63,0,0,30,63,0,0,32,63,0,0,34,63,0,0,36,63,0,0,36,63,0,0,36,63,0,0,36,63,0,0,36,63,0,0,38,63,0,0,38,63,0,0,38,63,0,0,38,63,0,0,38,63,0,0,38,63,0,0,40,63,0,0,44,63,0,0,44,63,0,0,44,63,0,0,48,63,0,0,48,63,0,0,50,63,0,0,50,63,0,0,50,63,0,0,52,63,0,0,52,63,0,0,56,63,0,0,56,63,0,0,56,63,0,0,60,63,0,0,62,63,0,0,62,63,0,0,62,63,0,0,62,63,0,0,62,63,0,0,62,63,0,0,62,63,0,0,64,63,0,0,70,63,0,0,70,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,74,63,0,0,74,63,0,0,78,63,0,0,84,63,0,0,86,63,0,0,88,63,0,0,90,63,0,0,90,63,0,0,90,63,0,0,90,63,0,0,90,63,0,0,90,63,0,0,90,63,0,0,92,63,0,0,92,63,0,0,96,63,0,0,96,63,0,0,96,63,0,0,96,63,0,0,96,63,0,0,96,63,0,0,102,63,0,0,104,63,0,0,104,63,0,0,104,63,0,0,104,63,0,0,104,63,0,0,104,63,0,0,104,63,0,0,106,63,0,0,106,63,0,0,106,63,0,0,108,63,0,0,108,63,0,0,110,63,0,0,110,63,0,0,110,63,0,0,110,63,0,0,110,63,0,0,110,63,0,0,112,63,0,0,112,63,0,0,112,63,0,0,112,63,0,0,112,63,0,0,112,63,0,0,114,63,0,0,116,63,0,0,116,63,0,0,120,63,0,0,122,63,0,0,124,63,0,0,124,63,0,0,124,63,0,0,124,63,0,0,126,63,0,0,126,63,0,0,126,63,0,0,128,63,0,0,130,63,0,0,130,63,0,0,132,63,0,0,136,63,0,0,140,63,0,0,146,63,0,0,148,63,0,0,148,63,0,0,150,63,0,0,150,63,0,0,152,63,0,0,152,63,0,0,154,63,0,0,156,63,0,0,156,63,0,0,156,63,0,0,156,63,0,0,160,63,0,0,160,63,0,0,162,63,0,0,162,63,0,0,162,63,0,0,162,63,0,0,162,63,0,0,162,63,0,0,162,63,0,0,164,63,0,0,166,63,0,0,168,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,174,63,0,0,174,63,0,0,174,63,0,0,174,63,0,0,174,63,0,0,174,63,0,0,178,63,0,0,178,63,0,0,178,63,0,0,178,63,0,0,178,63,0,0,180,63,0,0,182,63,0,0,182,63,0,0,182,63,0,0,182,63,0,0,182,63,0,0,184,63,0,0,186,63,0,0,186,63,0,0,186,63,0,0,188,63,0,0,188,63,0,0,190,63,0,0,192,63,0,0,192,63,0,0,192,63,0,0,194,63,0,0,194,63,0,0,194,63,0,0,194,63,0,0,194,63,0,0,194,63,0,0,194,63,0,0,196,63,0,0,198,63,0,0,198,63,0,0,198,63,0,0,200,63,0,0,202,63,0,0,202,63,0,0,202,63,0,0,202,63,0,0,206,63,0,0,208,63,0,0,212,63,0,0,212,63,0,0,216,63,0,0,218,63,0,0,218,63,0,0,220,63,0,0,220,63,0,0,220,63,0,0,220,63,0,0,220,63,0,0,222,63,0,0,222,63,0,0,224,63,0,0,224,63,0,0,224,63,0,0,224,63,0,0,230,63,0,0,230,63,0,0,232,63,0,0,232,63,0,0,234,63,0,0,234,63,0,0,234,63,0,0,234,63,0,0,238,63,0,0,238,63,0,0,240,63,0,0,244,63,0,0,244,63,0,0,246,63,0,0,252,63,0,0,254,63,0,0,254,63,0,0,254,63,0,0,254,63,0,0,254,63,0,0,254,63,0,0,254,63,0,0,254,63,0,0,254,63,0,0,254,63,0,0,0,64,0,0,2,64,0,0,4,64,0,0,6,64,0,0,10,64,0,0,14,64,0,0,16,64,0,0,16,64,0,0,20,64,0,0,20,64,0,0,20,64,0,0,22,64,0,0,26,64,0,0,26,64,0,0,28,64,0,0,28,64,0,0,28,64,0,0,28,64,0,0,28,64,0,0,32,64,0,0,32,64,0,0,34,64,0,0,34,64,0,0,34,64,0,0,34,64,0,0,36,64,0,0,36,64,0,0,36,64,0,0,36,64,0,0,36,64,0,0,38,64,0,0,38,64,0,0,40,64,0,0,42,64,0,0,44,64,0,0,44,64,0,0,44,64,0,0,46,64,0,0,48,64,0,0,48,64,0,0,48,64,0,0,48,64,0,0,48,64,0,0,48,64,0,0,48,64,0,0,50,64,0,0,50,64,0,0,52,64,0,0,52,64,0,0,52,64,0,0,52,64,0,0,54,64,0,0,54,64,0,0,56,64,0,0,56,64,0,0,56,64,0,0,56,64,0,0,56,64,0,0,58,64,0,0,58,64,0,0,58,64,0,0,60,64,0,0,62,64,0,0,62,64,0,0,64,64,0,0,64,64,0,0,64,64,0,0,70,64,0,0,72,64,0,0,72,64,0,0,74,64,0,0,74,64,0,0,76,64,0,0,76,64,0,0,82,64,0,0,82,64,0,0,82,64,0,0,84,64,0,0,84,64,0,0,84,64,0,0,84,64,0,0,84,64,0,0,88,64,0,0,90,64,0,0,90,64,0,0,90,64,0,0,94,64,0,0,94,64,0,0,94,64,0,0,96,64,0,0,98,64,0,0,102,64,0,0,104,64,0,0,104,64,0,0,104,64,0,0,104,64,0,0,104,64,0,0,104,64,0,0,104,64,0,0,108,64,0,0,110,64,0,0,110,64,0,0,112,64,0,0,116,64,0,0,118,64,0,0,118,64,0,0,118,64,0,0,118,64,0,0,120,64,0,0,122,64,0,0,124,64,0,0,124,64,0,0,128,64,0,0,130,64,0,0,130,64,0,0,130,64,0,0,132,64,0,0,136,64,0,0,136,64,0,0,136,64,0,0,136,64,0,0,136,64,0,0,138,64,0,0,138,64,0,0,138,64,0,0,140,64,0,0,140,64,0,0,142,64,0,0,142,64,0,0,142,64,0,0,144,64,0,0,144,64,0,0,144,64,0,0,144,64,0,0,144,64,0,0,146,64,0,0,150,64,0,0,154,64,0,0,156,64,0,0,158,64,0,0,158,64,0,0,158,64,0,0,158,64,0,0,160,64,0,0,160,64,0,0,162,64,0,0,162,64,0,0,164,64,0,0,164,64,0,0,164,64,0,0,166,64,0,0,166,64,0,0,166,64,0,0,168,64,0,0,168,64,0,0,168,64,0,0,170,64,0,0,172,64,0,0,174,64,0,0,174,64,0,0,176,64,0,0,176,64,0,0,176,64,0,0,180,64,0,0,182,64,0,0,182,64,0,0,0,192,5,138,165,39,2,0,3,128,219,14,241,142,3,0,4,0,71,182,60,242,3,0,7,0,123,147,77,52,4,0,10,64,231,89,23,137,2,0,14,64,225,159,149,220,2,0,17,0,133,96,62,23,2,0,18,128,162,171,107,159,2,0,19,0,152,22,205,127,3,0,20,0,99,194,201,0,4,0,21,192,54,94,23,49,3,0,21,192,17,130,51,253,3,0,29,192,6,129,230,224,3,0,36,64,89,199,14,183,3,0,46,0,230,96,211,61,2,0,46,0,77,126,104,114,2,0,47,192,200,212,16,226,3,0,49,128,156,25,109,36,4,0,51,0,189,53,212,55,3,0,58,64,3,5,135,210,2,0,59,0,48,28,112,155,2,0,64,192,167,60,53,95,2,0,64,192,63,10,160,20,3,0,65,64,6,55,42,3,2,0,65,128,10,215,10,75,2,0,72,0,159,135,164,133,2,0,74,128,111,67,242,40,3,0,75,0,13,85,3,138,3,0,76,64,40,146,129,138,3,0,77,64,162,54,50,154,2,0,81,128,23,104,114,144,4,0,85,128,251,102,17,113,2,0,90,128,35,224,132,86,3,0,95,0,230,218,172,204,3,0,97,192,182,7,204,162,2,0,97,128,52,93,139,213,3,0,103,0,179,87,64,79,3,0,103,192,170,19,120,184,3,0,104,64,62,159,142,253,3,0,105,0,0,110,51,225,2,0,106,0,225,1,172,195,2,0,109,192,29,148,117,169,2,0,110,128,64,178,150,163,3,0,112,64,196,255,216,218,2,0,116,0,14,16,223,81,4,0,118,192,136,184,101,74,3,0,119,128,135,252,227,35,2,0,120,192,70,249,14,22,2,0,120,128,115,12,22,117,2,0,121,192,158,18,226,55,2,0,121,64,7,188,5,49,3,0,125,64,129,14,42,135,3,0,126,128,104,77,28,121,2,0,128,0,234,74,235,193,3,0,129,192,11,48,209,45,2,0,131,128,231,164,98,108,4,0,134,128,63,209,131,47,2,0,135,128,65,251,27,227,3,0,141,0,80,217,148,197,3,0,143,0,248,53,51,144,3,0,144,0,57,195,109,90,2,0,145,192,29,222,195,117,2,0,154,0,15,178,25,235,3,0,155,0,73,47,145,91,3,0,155,64,58,168,58,99,3,0,155,128,127,176,30,228,3,0,157,64,29,196,98,103,2,0,157,64,247,143,79,226,3,0,158,0,102,118,71,43,4,0,161,192,200,5,217,50,3,0,169,192,67,60,219,96,2,0,171,0,144,118,126,189,2,0,173,192,197,235,189,58,2,0,174,0,29,157,8,65,4,0,176,0,9,109,1,219,2,0,177,64,201,14,179,207,3,0,178,0,239,157,73,49,3,0,178,128,27,253,21,224,3,0,180,64,15,222,153,59,4,0,183,192,52,86,191,164,2,0,183,0,177,63,202,141,3,0,183,0,86,191,95,176,3,0,185,0,140,181,166,14,2,0,186,64,12,82,0,111,2,0,187,0,176,248,45,235,2,0,187,128,70,186,130,26,3,0,189,128,42,84,37,60,4,0,191,192,41,111,42,247,3,0,193,64,86,108,222,248,3,0,194,64,253,25,242,228,3,0,198,64,108,31,210,131,3,0,198,64,226,190,75,120,4,0,199,192,162,147,15,190,3,0,200,128,160,248,200,59,2,0,205,128,250,89,130,198,2,0,205,192,89,92,131,87,4,0,206,128,173,87,90,177,2,0,207,64,174,53,174,145,3,0,208,192,60,12,159,192,3,0,209,0,228,55,247,19,4,0,212,64,245,24,20,153,3,0,213,0,34,255,136,121,3,0,217,0,66,62,79,141,2,0,218,128,111,108,253,130,2,0,218,64,207,75,186,165,3,0,219,64,164,189,243,206,2,0,222,192,131,92,238,67,4,0,222,64,32,220,183,110,4,0,228,0,182,150,192,216,3,0,228,192,73,195,203,91,4,0,232,64,110,111,245,144,4,0,235,0,67,249,220,27,2,0,236,64,243,50,182,94,4,0,239,0,188,164,195,105,3,0,240,192,51,13,29,238,2,0,240,128,126,126,38,33,4,0,241,64,2,253,99,215,3,0,242,64,29,36,230,71,2,0,246,128,82,106,86,217,3,0,248,64,193,126,124,143,3,0,249,128,200,54,202,107,3,0,252,0,41,26,122,159,3,0,254,192,72,106,94,193,2,0,1,129,202,126,51,24,2,0,2,129,111,234,23,44,3,0,4,193,70,249,34,22,2,0,7,1,179,76,122,183,2,0,9,1,243,26,46,134,2,0,15,193,95,7,25,25,2,0,17,193,235,230,87,29,2,0,19,193,94,182,24,17,3,0,20,65,36,247,189,252,2,0,25,193,100,182,128,116,4,0,27,65,210,143,35,192,2,0,29,129,157,71,216,41,2,0,29,193,54,193,190,197,2,0,31,129,169,90,97,220,2,0,32,193,212,233,18,85,3,0,35,129,253,219,20,164,2,0,38,129,178,254,162,77,4,0,40,65,47,81,62,244,2,0,42,1,55,81,190,222,2,0,54,1,156,144,157,102,3,0,56,129,185,97,29,17,2,0,62,1,148,53,253,41,3,0,63,193,23,121,48,200,3,0,65,65,167,35,164,103,3,0,65,65,56,175,32,142,4,0,66,129,208,42,20,39,4,0,74,129,37,139,81,63,3,0,75,193,78,120,222,38,3,0,80,65,139,20,164,105,3,0,85,193,65,227,242,120,3,0,86,193,128,53,192,129,4,0,91,65,30,241,185,18,2,0,93,129,26,23,155,253,3,0,94,193,214,204,103,174,2,0,95,1,212,43,70,26,4,0,99,1,169,81,59,213,2,0,100,65,217,193,160,181,3,0,100,193,18,95,248,59,4,0,102,65,35,29,108,136,4,0,103,1,111,245,82,43,3,0,108,193,96,99,193,40,4,0,109,65,223,59,214,246,2,0,109,1,11,168,204,103,3,0,111,129,99,198,41,86,3,0,111,193,74,79,171,192,3,0,113,129,104,45,182,234,3,0,116,65,123,59,104,61,4,0,117,193,253,210,154,57,3,0,121,193,52,248,239,104,3,0,121,193,243,126,43,174,3,0,122,129,210,6,231,126,2,0,124,65,21,41,14,3,3,0,124,129,63,204,71,205,3,0,129,65,134,88,196,124,3,0,131,129,44,210,171,83,3,0,133,129,38,126,134,166,2,0,134,129,238,22,80,213,2,0,136,1,104,248,87,111,2,0,137,1,43,110,67,156,2,0,137,193,19,187,32,197,2,0,140,129,138,197,107,35,2,0,141,65,55,112,64,11,2,0,141,1,5,54,251,39,4,0,142,129,185,199,34,237,2,0,146,193,147,155,1,19,2,0,148,193,212,16,137,91,2,0,151,65,88,30,136,151,2,0,153,1,168,58,202,125,4,0,155,129,76,193,255,44,2,0,157,129,46,6,82,208,3,0,158,193,20,249,246,64,4,0,160,1,66,208,146,31,2,0,161,65,123,167,112,101,3,0,162,65,232,103,115,44,4,0,171,1,57,134,100,137,3,0,176,129,133,90,42,209,3,0,180,1,235,116,12,184,3,0,181,1,48,213,113,125,2,0,181,65,163,185,78,202,3,0,184,1,117,34,73,120,2,0,186,129,57,166,60,123,3,0,187,193,204,58,75,182,2,0,189,129,67,156,40,146,2,0,193,1,200,8,33,56,2,0,196,65,195,240,249,209,2,0,196,193,74,98,255,252,2,0,197,129,202,126,87,24,2,0,200,1,205,50,79,39,3,0,200,65,179,90,250,57,3,0,201,65,126,23,105,159,3,0,206,1,50,81,32,242,2,0,206,129,61,241,22,31,3,0,216,65,232,126,121,129,2,0,220,65,172,118,83,7,2,0,220,129,231,131,245,53,3,0,221,65,249,140,65,54,3,0,223,129,94,186,171,29,3,0,223,193,242,20,193,146,3,0,224,129,196,128,255,124,4,0,225,1,102,6,202,53,4,0,226,65,8,121,99,105,2,0,226,65,158,227,207,34,3,0,227,193,62,207,141,108,2,0,227,129,237,26,173,253,3,0,230,129,231,120,118,8,3,0,233,193,24,196,255,101,3,0,235,65,231,12,75,22,2,0,236,1,56,47,248,209,3,0,236,1,184,90,42,254,3,0,242,193,76,81,225,157,2,0,242,1,183,139,135,193,2,0,242,193,203,113,32,87,3,0,244,1,251,0,205,10,2,0,244,65,225,182,22,59,2,0,248,193,197,53,125,153,2,0,251,65,60,49,231,79,3,0,0,194,116,230,25,7,2,0,0,194,253,53,34,8,3,0,0,2,90,253,72,16,3,0,2,130,222,243,7,102,4,0,6,130,247,46,77,111,4,0,7,194,75,86,212,116,2,0,8,2,223,103,133,12,4,0,11,66,255,76,20,58,2,0,16,2,19,37,182,19,2,0,20,194,80,207,110,230,3,0,21,66,13,172,166,77,3,0,21,130,181,70,137,217,3,0,22,66,80,52,116,208,3,0,22,130,208,27,68,220,3,0,25,194,174,205,2,33,2,0,26,194,117,223,171,13,2,0,27,194,101,52,228,242,2,0,27,194,18,186,147,36,3,0,27,130,239,111,107,64,4,0,30,130,75,131,8,49,4,0,31,194,93,113,88,61,3,0,36,194,233,214,71,21,4,0,39,194,41,177,2,222,2,0,39,2,77,233,161,78,3,0,44,130,137,170,175,8,2,0,44,2,137,80,147,140,3,0,47,130,70,60,47,31,4,0,50,2,119,132,211,105,4,0,54,130,204,27,74,142,3,0,55,2,165,109,185,38,2,0,58,194,181,181,49,218,2,0,62,66,83,33,232,205,2,0,66,2,137,168,133,105,2,0,73,2,221,61,14,23,2,0,73,194,245,250,153,109,3,0,76,2,69,142,182,218,3,0,81,130,170,200,26,127,3,0,83,66,46,143,144,162,2,0,90,194,145,238,58,217,2,0,91,66,112,47,4,202,3,0,92,194,253,53,250,7,3,0,93,130,46,162,94,21,4,0,94,2,126,194,142,24,3,0,95,194,216,73,170,113,4,0,100,194,45,74,34,24,2,0,100,130,73,145,60,117,4,0,102,130,219,47,178,119,2,0,102,130,219,47,196,119,2,0,102,130,219,47,209,119,2,0,102,66,129,106,38,191,2,0,102,130,35,218,90,127,4,0,104,2,180,255,75,144,3,0,105,194,211,43,76,73,4,0,109,66,110,4,140,143,4,0,110,66,232,47,17,12,2,0,111,66,130,192,113,204,3,0,117,2,73,32,113,133,3,0,123,2,222,250,195,42,2,0,125,130,191,39,169,209,3,0,127,2,97,220,131,41,4,0,129,2,179,12,134,17,3,0,129,66,84,125,44,164,3,0,134,194,214,178,99,74,2,0,135,2,252,26,166,92,3,0,140,194,78,211,41,231,2,0,140,130,153,223,131,245,2,0,140,194,105,180,121,73,4,0,141,194,166,130,246,121,4,0,143,66,223,49,48,179,2,0,143,130,59,81,23,209,2,0,146,130,228,96,153,81,3,0,147,194,15,226,22,70,4,0,152,194,137,77,10,136,3,0,156,130,191,174,171,154,3,0,157,194,140,155,132,92,4,0,161,66,30,129,129,219,3,0,163,66,164,100,137,254,2,0,163,130,2,158,4,16,3,0,170,2,233,187,187,245,2,0,172,130,139,195,203,69,2,0,172,2,129,101,116,240,3,0,173,130,129,146,89,198,3,0,174,2,205,153,147,37,2,0,175,130,176,123,150,252,3,0,176,2,34,199,244,220,2,0,180,130,88,193,141,218,2,0,183,194,22,196,73,146,2,0,184,2,49,252,168,253,2,0,188,130,26,40,19,75,4,0,189,194,9,157,168,254,3,0,190,194,159,250,226,174,3,0,192,2,137,223,61,18,4,0,193,66,199,57,31,94,2,0,195,66,96,233,125,86,2,0,195,2,29,120,170,174,3,0,196,130,106,86,104,130,3,0,197,130,99,212,44,110,2,0,199,2,191,226,184,108,4,0,200,2,243,228,186,3,2,0,200,130,21,65,247,110,3,0,201,194,137,197,9,82,4,0,202,66,198,115,255,103,2,0,204,66,169,9,50,176,3,0,204,2,158,13,137,38,4,0,213,66,51,130,153,62,4,0,213,2,251,228,250,80,4,0,217,66,98,178,158,119,3,0,218,2,246,123,76,0,3,0,220,66,163,92,238,8,2,0,222,194,112,163,97,100,4,0,225,2,153,223,15,40,3,0,225,66,106,137,211,57,4,0,227,66,74,7,157,131,2,0,230,194,94,66,255,8,4,0,231,130,228,142,17,112,4,0,232,194,46,255,64,109,3,0,234,130,83,214,242,123,3,0,237,2,228,41,61,165,2,0,237,194,217,38,70,189,2,0,238,130,80,176,66,78,2,0,238,66,106,116,83,112,4,0,243,2,184,85,88,117,3,0,245,194,119,148,95,112,3,0,246,130,249,62,145,85,4,0,247,2,119,172,245,119,3,0,255,130,205,47,141,84,2,0,8,3,195,24,131,254,3,0,10,131,254,215,148,60,4,0,11,67,1,32,63,59,2,0,13,131,136,160,235,67,3,0,16,67,89,96,158,229,3,0,18,3,155,114,89,156,2,0,18,3,20,152,26,86,4,0,20,131,31,30,19,79,2,0,22,131,56,22,72,48,2,0,23,67,172,154,131,54,4,0,24,195,255,104,184,56,2,0,24,131,246,17,165,255,2,0,27,195,233,70,242,30,4,0,28,67,120,99,244,102,2,0,28,3,53,73,63,150,2,0,28,195,159,89,109,219,2,0,29,3,81,203,21,116,2,0,34,3,129,184,50,81,3,0,36,67,223,61,128,89,2,0,36,131,7,57,16,79,4,0,38,3,225,217,33,216,2,0,39,131,41,229,234,87,2,0,39,131,39,81,166,5,3,0,40,67,115,225,189,247,3,0,41,131,83,126,78,239,3,0,43,67,252,118,121,8,2,0,44,195,163,155,177,22,2,0,45,67,150,27,112,34,4,0,46,195,19,20,197,128,4,0,47,131,223,110,111,123,3,0,48,195,208,136,147,68,4,0,50,67,225,172,87,154,3,0,54,131,163,218,208,33,2,0,57,195,226,194,164,177,2,0,57,131,23,81,33,101,3,0,58,195,133,238,23,82,4,0,59,3,63,77,158,242,2,0,64,67,166,244,135,58,3,0,70,131,25,105,235,122,3,0,71,195,71,192,243,153,3,0,72,131,103,52,187,235,3,0,73,195,233,26,25,106,2,0,75,195,76,81,192,157,2,0,77,131,2,219,167,11,2,0,77,195,59,237,211,105,3,0,78,195,225,142,182,4,4,0,80,3,182,186,237,1,3,0,82,195,27,208,124,52,3,0,84,3,205,50,96,39,3,0,84,195,152,223,62,103,3,0,89,3,211,146,66,122,3,0,90,195,202,16,210,7,2,0,91,3,93,157,30,220,3,0,101,195,208,152,182,182,3,0,103,67,113,115,83,63,2,0,104,195,218,98,15,111,4,0,106,3,85,47,157,234,3,0,109,131,98,193,100,57,4,0,109,67,75,86,192,130,4,0,112,195,33,203,205,49,3,0,115,195,155,129,220,3,3,0,117,131,225,7,106,42,2,0,120,67,105,191,13,6,2,0,120,67,46,57,107,156,2,0,120,3,63,219,125,134,4,0,124,195,76,81,54,157,2,0,124,67,66,160,235,168,2,0,128,195,211,39,7,99,3,0,129,3,191,216,129,0,4,0,132,195,28,170,210,12,4,0,138,67,39,49,150,181,2,0,139,195,154,155,231,117,2,0,140,3,178,99,83,18,4,0,143,3,135,209,75,254,3,0,145,67,132,14,31,149,2,0,145,131,32,16,170,187,2,0,148,131,242,147,60,215,2,0,148,195,74,98,16,253,2,0,149,67,44,81,84,248,2,0,150,131,69,119,179,52,4,0,152,131,142,117,69,32,2,0,153,67,248,51,61,202,3,0,153,3,138,13,40,39,4,0,160,3,229,255,18,185,3,0,161,3,126,63,50,147,2,0,165,67,83,144,142,74,2,0,170,195,125,163,116,249,3,0,171,67,204,253,32,132,4,0,173,131,43,76,93,124,2,0,174,131,39,81,54,2,3,0,175,67,251,103,176,148,2,0,176,131,112,24,17,32,2,0,176,131,33,32,69,36,4,0,184,195,121,152,128,135,2,0,186,195,199,22,170,62,4,0,187,195,31,66,218,21,2,0,187,195,85,83,83,30,4,0,188,131,226,175,130,234,2,0,189,67,15,37,163,82,2,0,193,67,56,91,158,190,3,0,193,195,24,245,218,118,4,0,195,195,154,45,110,69,4,0,199,67,215,161,246,11,3,0,202,67,233,187,172,245,2,0,202,131,119,24,60,97,4,0,203,195,78,57,174,89,2,0,203,195,225,173,119,7,3,0,203,131,152,88,95,161,3,0,210,195,140,210,52,224,2,0,211,3,151,182,79,246,3,0,212,131,127,193,112,67,2,0,212,3,127,133,81,67,4,0,215,131,81,60,137,12,2,0,216,195,79,243,65,2,4,0,216,67,54,199,54,72,4,0,219,131,225,107,127,163,3,0,220,3,155,69,7,239,2,0,220,195,128,146,249,240,2,0,222,67,127,212,90,158,2,0,223,131,126,91,114,121,3,0,225,195,47,33,166,69,4,0,226,67,246,27,57,19,3,0,228,131,119,89,32,48,4,0,230,67,40,128,105,8,4,0,231,67,114,129,241,155,2,0,231,195,125,253,54,1,4,0,232,131,142,174,82,191,3,0,233,3,199,11,165,146,2,0,233,195,202,210,219,2,3,0,234,131,26,203,220,4,4,0,238,131,252,65,100,150,3,0,242,195,154,98,126,179,2,0,244,3,169,92,207,191,3,0,245,195,246,27,58,234,3,0,249,67,216,211,8,21,3,0,249,195,23,81,178,99,3,0,251,131,199,70,154,213,3,0,254,3,91,161,57,143,3,0,1,4,70,216,210,209,2,0,1,196,227,195,57,106,3,0,2,132,203,70,47,140,2,0,2,196,146,20,174,159,3,0,3,68,191,23,163,125,3,0,6,196,121,8,33,111,2,0,12,196,200,200,97,126,3,0,14,132,148,196,193,124,4,0,15,132,178,11,250,31,2,0,15,4,48,81,1,246,2,0,17,68,220,151,244,168,3,0,19,68,141,104,191,242,3,0,20,132,199,71,248,130,4,0,21,196,193,61,173,128,3,0,23,132,55,237,156,73,2,0,25,132,81,209,236,196,2,0,29,196,148,246,126,45,4,0,29,4,30,231,87,94,4,0,30,132,177,159,167,6,2,0,33,4,51,9,59,192,2,0,34,132,191,104,150,149,2,0,34,68,51,136,172,37,3,0,35,68,240,250,202,9,4,0,36,68,138,222,172,248,2,0,37,68,195,154,201,108,2,0,38,4,150,229,9,122,4,0,39,68,24,102,80,104,2,0,41,68,117,19,17,22,3,0,41,196,34,11,217,44,4,0,42,132,193,53,66,253,3,0,43,68,14,97,163,29,4,0,45,68,176,69,164,231,2,0,50,196,225,92,115,248,2,0,52,68,244,163,146,99,3,0,57,132,59,184,186,60,3,0,58,4,33,235,94,133,2,0,59,196,70,133,61,181,2,0,60,196,143,9,99,70,3,0,60,132,50,12,108,186,3,0,62,132,197,137,223,207,3,0,62,68,139,21,17,137,4,0,66,196,78,253,62,137,2,0,68,132,15,211,214,75,4,0,71,132,171,121,217,38,4,0,72,4,187,126,212,14,2,0,72,196,166,63,109,53,2,0,72,196,48,246,120,104,2,0,72,196,51,137,129,106,2,0,72,196,248,38,63,64,4,0,72,196,186,243,97,95,4,0,74,196,93,164,241,33,3,0,74,4,153,223,122,43,3,0,77,132,126,119,106,237,2,0,78,4,55,232,55,17,3,0,79,4,196,179,97,210,3,0,80,4,23,44,62,246,3,0,82,132,36,255,145,172,3,0,83,132,199,40,157,86,2,0,89,196,239,39,100,62,2,0,90,68,77,140,80,173,2,0,98,196,149,179,252,122,4,0,102,132,153,223,230,245,2,0,105,4,36,182,81,42,2,0,105,68,115,2,219,100,4,0,106,4,59,184,254,66,3,0,107,132,227,197,28,118,4,0,113,68,191,54,210,67,4,0,114,132,68,236,12,125,2,0,114,132,133,40,26,177,2,0,114,4,57,23,158,147,3,0,116,4,235,217,33,161,2,0,116,68,236,234,228,45,4,0,118,4,143,101,54,41,4,0,119,196,22,10,55,177,3,0,120,196,99,180,252,35,4,0,123,68,134,53,204,97,3,0,124,68,94,53,197,244,2,0,125,196,120,134,168,226,2,0,127,196,128,40,32,178,3,0,129,196,80,80,70,19,2,0,129,68,184,81,245,18,3,0,129,4,255,9,91,57,3,0,129,4,97,188,83,212,3,0,132,4,20,50,178,170,3,0,135,132,183,141,89,36,4,0,137,68,56,236,119,105,2,0,140,196,214,2,150,57,2,0,147,132,120,166,136,119,3,0,155,132,162,48,171,143,2,0,159,68,178,94,164,99,4,0,161,4,63,234,144,237,3,0,161,196,179,44,40,121,4,0,168,132,247,187,35,158,2,0,168,68,90,2,196,188,2,0,169,68,217,238,88,152,4,0,174,132,87,131,184,243,2,0,175,132,82,16,135,47,3,0,176,196,36,243,113,110,2,0,177,4,94,169,218,237,2,0,178,4,161,23,109,121,4,0,181,68,17,107,98,39,4,0,186,4,18,58,229,100,3,0,188,132,78,131,105,191,3,0,189,132,36,150,109,190,2,0,190,132,254,20,200,44,3,0,191,132,209,114,226,156,2,0,193,4,59,159,20,40,2,0,196,196,197,72,65,110,2,0,201,132,56,7,54,22,2,0,202,4,6,180,110,117,3,0,205,132,15,73,86,171,2,0,205,132,122,52,71,28,3,0,205,132,74,228,18,211,3,0,209,196,98,159,112,252,2,0,209,68,233,133,226,85,4,0,210,196,241,72,31,177,3,0,211,196,15,64,203,136,3,0,215,132,111,169,196,72,2,0,215,196,62,161,185,244,3,0,217,4,141,105,39,173,3,0,219,196,251,126,171,95,2,0,219,68,62,59,93,56,4,0,220,196,73,186,145,26,3,0,222,4,64,125,223,235,2,0,224,132,153,223,47,247,2,0,225,196,234,220,59,36,2,0,225,196,182,218,107,178,3,0,229,196,53,191,113,62,2,0,231,4,17,72,192,79,2,0,231,4,87,82,78,20,3,0,233,68,32,147,14,95,2,0,233,132,62,59,86,115,2,0,233,68,232,149,137,200,3,0,235,132,44,142,171,41,3,0,236,68,162,112,113,31,2,0,236,196,56,117,153,27,4,0,237,68,26,255,254,243,3,0,238,132,223,160,20,234,2,0,240,132,65,127,211,92,4,0,241,4,82,177,173,36,4,0,247,132,212,153,207,244,3,0,248,132,46,28,198,154,2,0,250,4,152,6,212,183,2,0,250,4,64,178,240,219,3,0,251,4,71,249,97,22,2,0,254,4,179,191,10,116,4,0,255,4,203,47,44,140,4,0,1,5,138,179,129,43,2,0,2,69,242,55,100,179,2,0,2,5,231,107,141,8,3,0,4,133,151,197,12,141,4,0,6,197,171,184,87,127,3,0,7,69,195,0,224,147,3,0,13,197,41,150,194,158,3,0,14,133,216,244,110,102,4,0,15,5,16,188,183,235,2,0,18,197,217,126,28,72,2,0,18,5,83,86,81,129,3,0,21,133,150,151,3,208,3,0,25,197,86,146,186,226,2,0,27,69,17,74,44,29,4,0,29,197,139,67,97,4,3,0,31,133,26,217,126,213,2,0,32,69,15,210,246,204,3,0,37,197,184,234,224,44,3,0,42,5,196,136,171,99,2,0,42,133,64,3,127,243,3,0,43,5,142,180,14,214,3,0,46,5,90,18,202,176,3,0,47,5,135,184,200,75,3,0,49,197,170,68,23,84,3,0,52,197,106,151,252,67,2,0,55,197,47,214,234,138,4,0,56,197,212,3,192,98,3,0,57,69,201,5,222,113,2,0,58,197,117,97,220,29,3,0,59,133,54,67,241,58,2,0,61,69,182,5,217,5,2,0,61,5,242,118,107,205,3,0,61,133,241,161,209,43,4,0,62,5,81,6,240,78,2,0,67,69,243,47,223,7,2,0,67,69,214,33,223,139,2,0,69,133,223,29,19,107,2,0,70,197,126,3,68,63,4,0,70,133,217,193,91,109,4,0,73,69,189,142,39,143,3,0,73,5,190,23,196,163,3,0,74,133,79,210,188,0,4,0,77,133,52,72,241,222,3,0,78,5,128,212,42,50,2,0,79,197,253,158,87,155,3,0,79,69,45,131,81,15,4,0,80,69,138,67,156,247,2,0,80,5,36,45,155,221,3,0,86,5,181,230,65,78,4,0,87,69,24,19,243,44,3,0,88,133,208,101,219,121,4,0,90,5,114,118,1,140,2,0,90,197,39,222,179,168,2,0,91,197,20,37,124,42,3,0,92,197,66,205,158,17,2,0,93,133,187,14,148,105,3,0,94,5,207,59,178,149,2,0,95,197,70,133,79,181,2,0,97,5,20,85,3,121,2,0,99,69,183,161,49,184,2,0,101,69,209,235,255,9,4,0,102,133,51,146,197,171,3,0,105,5,102,184,82,101,3,0,106,197,142,197,141,8,4,0,107,197,192,165,73,8,2,0,110,133,18,191,243,31,3,0,110,197,225,130,169,202,3,0,111,69,80,206,227,253,3,0,119,133,50,5,118,131,3,0,119,69,49,246,110,52,4,0,121,197,53,126,43,10,2,0,121,133,211,36,134,191,2,0,124,197,128,122,169,105,4,0,125,69,133,78,75,213,3,0,130,69,191,227,188,186,2,0,132,69,104,32,201,192,2,0,135,69,19,15,129,2,3,0,138,5,79,234,34,64,3,0,142,197,115,20,143,82,2,0,143,197,255,107,12,84,2,0,145,69,4,201,190,207,3,0,146,197,142,76,191,41,3,0,148,133,195,127,53,7,3,0,152,133,55,116,112,224,2,0,153,133,204,0,121,131,4,0,156,133,220,243,200,92,2,0,158,5,104,112,145,192,3,0,160,69,44,169,156,145,3,0,161,197,32,69,144,169,3,0,163,197,37,3,19,4,4,0,164,5,207,24,38,190,2,0,164,197,140,155,217,139,3,0,165,5,134,101,116,173,3,0,165,5,136,48,37,45,4,0,166,197,2,167,197,239,2,0,167,69,62,146,15,230,2,0,167,5,166,99,200,126,3,0,171,69,25,81,178,43,3,0,172,69,177,45,237,162,2,0,180,197,35,178,106,46,4,0,183,5,54,254,98,92,3,0,185,197,157,130,178,140,2,0,186,69,229,79,110,207,3,0,188,5,253,16,183,6,4,0,189,5,94,176,21,16,3,0,193,197,5,9,184,233,3,0,198,197,94,216,145,41,2,0,198,5,176,233,225,186,3,0,198,5,164,105,158,53,4,0,199,5,253,70,229,232,2,0,200,5,2,234,193,20,2,0,203,69,17,61,165,227,3,0,204,69,151,81,151,14,2,0,204,5,240,72,254,193,3,0,205,197,133,211,116,70,3,0,207,69,45,245,49,184,3,0,208,197,221,145,181,47,4,0,210,197,42,85,197,145,2,0,214,69,38,0,148,216,2,0,214,5,172,208,172,22,4,0,225,197,205,229,255,99,2,0,228,197,195,138,36,19,2,0,231,5,236,25,111,191,2,0,231,69,201,187,77,245,2,0,234,133,243,199,10,135,4,0,236,5,173,27,179,140,3,0,237,5,158,47,104,179,3,0,237,5,173,196,19,219,3,0,238,197,111,234,4,44,3,0,241,133,184,92,253,175,2,0,242,69,46,64,182,126,4,0,244,5,229,27,94,93,2,0,244,133,167,235,71,233,3,0,244,197,91,216,3,56,4,0,247,69,187,46,122,4,2,0,250,133,16,207,227,197,3,0,251,197,153,154,51,163,2,0,251,197,190,232,67,108,4,0,252,197,101,195,153,13,4,0,1,198,247,4,127,121,2,0,1,70,17,123,119,143,2,0,2,70,121,82,2,16,2,0,2,198,224,253,197,216,2,0,2,198,95,57,7,187,3,0,6,134,250,44,63,203,3,0,7,70,52,36,167,153,3,0,12,134,115,138,31,144,3,0,16,134,38,126,47,166,2,0,23,6,14,150,57,3,2,0,23,70,45,170,171,81,2,0,23,70,40,78,91,242,2,0,29,6,6,37,135,111,3,0,32,134,177,45,225,146,3,0,37,134,114,16,211,174,3,0,39,6,3,131,241,143,3,0,45,198,74,82,215,158,3,0,52,70,58,58,123,63,2,0,53,70,110,105,251,207,2,0,56,134,212,230,49,202,2,0,58,198,71,173,129,71,3,0,60,134,176,28,103,182,3,0,60,134,161,226,89,103,4,0,63,198,41,188,217,240,2,0,64,134,84,255,183,206,2,0,65,70,209,169,193,82,3,0,66,134,232,193,213,133,3,0,66,198,245,192,194,215,3,0,68,198,13,207,200,230,3,0,69,6,47,16,222,43,4,0,76,134,160,129,124,40,3,0,76,134,219,235,85,143,4,0,87,6,162,72,178,145,4,0,88,70,163,88,103,75,3,0,93,70,134,8,223,232,3,0,94,198,217,47,114,187,3,0,94,198,217,47,131,187,3,0,94,198,217,47,110,190,3,0,97,198,57,35,134,248,2,0,97,198,238,169,232,86,3,0,98,198,183,225,202,202,3,0,101,198,39,81,173,22,3,0,102,134,75,58,59,176,2,0,104,134,179,173,160,106,3,0,105,198,142,180,35,52,2,0,105,198,207,46,232,145,2,0,107,134,114,150,153,82,4,0,107,70,62,88,184,90,4,0,108,70,118,67,247,81,2,0,109,198,31,18,241,186,3,0,110,70,39,5,102,20,3,0,110,6,74,127,42,129,4,0,112,198,26,81,170,14,4,0,113,70,118,196,237,120,2,0,113,198,238,169,25,86,3,0,114,134,195,48,1,133,3,0,116,70,129,20,55,145,2,0,116,198,238,253,240,195,2,0,122,134,227,143,140,170,3,0,123,6,10,36,40,245,2,0,129,134,209,20,27,174,2,0,132,198,198,22,166,164,2,0,134,198,86,239,239,186,2,0,137,6,250,94,50,85,4,0,139,134,118,122,105,101,2,0,145,6,61,153,3,219,3,0,147,198,194,32,146,93,2,0,150,6,17,238,1,129,4,0,153,198,125,99,139,4,2,0,158,70,238,117,38,149,3,0,161,6,49,75,47,58,4,0,163,198,34,216,102,14,4,0,166,198,122,77,207,150,2,0,167,6,147,83,35,94,4,0,171,134,108,41,241,76,3,0,173,198,103,139,47,28,3,0,174,6,192,215,75,45,2,0,174,6,194,21,82,115,4,0,175,134,154,171,143,75,3,0,178,198,226,193,53,72,2,0,180,198,0,159,57,8,2,0,180,134,157,14,199,102,3,0,181,134,94,248,96,11,4,0,182,70,40,72,235,212,2,0,184,6,232,207,250,182,3,0,186,70,106,242,142,231,2,0,186,6,54,76,44,146,3,0,190,70,57,108,134,54,3,0,193,198,214,7,206,79,2,0,193,134,89,50,109,168,3,0,195,198,165,35,144,194,2,0,195,198,245,144,21,88,3,0,196,198,211,176,162,21,3,0,200,6,213,250,113,111,2,0,201,198,228,194,48,177,2,0,203,134,203,133,177,131,3,0,204,134,0,112,217,49,2,0,207,198,224,7,251,152,3,0,207,134,84,67,235,127,4,0,210,198,95,104,191,237,3,0,212,134,215,222,31,107,3,0,213,134,141,184,200,101,3,0,214,70,136,21,158,193,3,0,216,198,44,55,220,131,2,0,218,6,177,224,75,127,4,0,221,6,149,118,85,226,2,0,222,70,202,251,247,254,2,0,226,198,163,234,52,141,3,0,230,6,5,174,28,174,3,0,232,70,189,167,150,29,4,0,233,198,4,157,156,108,2,0,234,134,224,76,84,114,2,0,238,70,7,27,249,97,2,0,239,198,179,211,216,165,2,0,240,134,15,44,140,92,3,0,243,6,178,74,62,140,3,0,245,134,76,65,60,239,2,0,248,6,216,155,32,137,3,0,248,198,84,124,254,143,3,0,249,70,111,66,175,97,4,0,251,6,57,45,172,247,3,0,252,198,7,91,97,150,2,0,1,71,146,181,152,12,4,0,3,135,21,169,39,227,2,0,5,7,139,34,202,17,2,0,6,7,17,193,64,222,3,0,8,7,134,175,98,137,4,0,11,71,60,201,79,95,4,0,19,71,206,93,127,198,3,0,19,71,121,102,233,247,3,0,20,199,25,24,235,182,2,0,21,71,74,80,57,20,2,0,22,135,91,203,117,215,3,0,27,199,69,195,227,58,4,0,29,7,7,167,12,221,2,0,29,71,224,176,24,140,3,0,29,135,141,4,250,0,4,0,30,199,67,96,115,141,3,0,32,135,116,240,162,214,3,0,34,199,37,1,149,117,4,0,35,7,153,223,6,43,3,0,39,135,13,151,195,202,2,0,39,135,164,198,220,19,4,0,39,135,117,50,88,114,4,0,40,199,153,68,97,134,4,0,43,199,78,142,13,5,3,0,43,135,168,228,172,193,3,0,51,135,7,192,4,14,2,0,52,199,147,205,18,213,2,0,55,199,233,44,44,73,3,0,59,135,80,187,240,37,2,0,61,71,10,32,11,94,2,0,63,71,46,28,220,154,2,0,63,7,47,81,167,244,2,0,64,71,196,112,32,27,4,0,67,7,225,247,148,251,3,0,70,199,54,146,88,53,2,0,70,199,157,99,51,59,4,0,78,135,7,93,208,180,2,0,81,199,79,158,154,23,4,0,89,135,163,139,239,40,4,0,93,135,144,131,145,162,3,0,97,135,27,123,19,43,3,0,97,7,59,184,170,67,3,0,98,71,154,223,223,202,2,0,98,135,121,248,244,50,3,0,101,135,218,252,65,84,3,0,103,71,90,75,9,222,3,0,104,7,23,104,157,104,3,0,109,71,207,0,27,212,2,0,110,199,10,40,136,126,3,0,110,7,251,158,169,135,4,0,112,199,12,74,133,232,2,0,112,199,49,243,144,145,3,0,115,7,212,8,186,12,3,0,118,135,77,47,232,110,4,0,123,71,11,91,149,61,4,0,124,135,88,35,218,9,2,0,134,7,184,16,114,144,3,0,136,71,103,224,22,45,4,0,136,7,109,36,110,87,4,0,138,7,188,255,30,205,2,0,138,7,8,58,96,106,3,0,143,199,66,96,134,51,2,0,148,71,168,206,160,21,4,0,149,135,102,142,50,238,3,0,151,7,128,236,250,85,4,0,154,135,34,178,248,107,2,0,154,7,98,197,246,62,3,0,156,71,164,151,153,53,3,0,156,71,250,82,145,139,3,0,158,199,84,216,210,80,2,0,159,7,176,18,140,249,2,0,159,199,177,80,208,236,3,0,160,7,47,172,51,136,2,0,163,7,78,140,209,30,2,0,163,199,175,154,94,164,2,0,163,7,102,6,161,170,3,0,164,135,170,68,240,194,3,0,165,135,30,31,189,93,3,0,166,7,121,184,92,38,4,0,173,71,231,38,14,98,2,0,177,71,13,197,143,207,2,0,179,7,166,177,74,49,2,0,180,71,121,37,193,250,2,0,182,7,114,36,181,244,2,0,183,135,50,76,94,85,2,0,184,135,224,253,82,217,2,0,185,199,176,5,14,245,3,0,187,7,227,101,82,105,2,0,188,199,62,107,185,248,3,0,191,7,244,231,70,111,2,0,191,71,155,114,1,191,3,0,192,7,177,156,67,178,3,0,193,135,56,57,70,15,4,0,195,71,178,248,31,157,3,0,196,135,202,17,216,199,2,0,196,199,52,18,69,1,4,0,202,71,208,17,90,78,2,0,205,71,24,182,161,234,2,0,206,135,121,146,130,90,4,0,207,199,252,255,173,248,3,0,209,71,27,128,65,24,2,0,212,7,102,250,81,68,4,0,214,71,88,239,119,56,3,0,215,135,169,230,234,0,3,0,218,7,251,128,134,205,2,0,220,135,139,118,152,95,4,0,231,199,220,71,179,72,4,0,233,71,106,138,1,188,2,0,240,135,140,62,161,196,2,0,241,135,234,135,181,107,4,0,245,199,170,58,180,232,3,0,249,135,157,52,45,100,2,0,250,199,211,156,157,187,3,0,252,135,225,97,155,148,4,0,254,199,104,222,186,4,2,0,255,7,248,227,209,215,3,0,0,200,41,180,180,201,3,0,2,136,251,221,45,122,2,0,3,136,228,99,149,25,4,0,9,72,140,114,76,116,4,0,11,136,196,213,108,116,4,0,12,72,141,216,208,86,3,0,14,72,222,25,151,85,3,0,15,136,151,74,32,0,3,0,15,8,250,6,103,50,3,0,16,8,85,133,189,48,2,0,18,136,143,184,227,73,3,0,19,200,58,15,121,6,2,0,19,72,250,223,179,123,2,0,19,8,148,159,202,15,3,0,22,72,222,233,73,125,3,0,23,8,101,90,190,160,2,0,25,200,216,116,215,180,3,0,26,200,212,11,216,253,2,0,27,8,208,181,24,198,2,0,32,200,161,223,224,48,3,0,36,72,177,235,254,122,2,0,36,136,252,34,242,148,2,0,43,136,159,222,105,12,3,0,44,8,207,79,148,21,2,0,44,8,23,37,232,159,2,0,48,136,194,173,199,179,2,0,49,200,24,42,135,242,2,0,49,200,158,222,98,99,4,0,51,200,247,246,13,71,3,0,51,72,22,70,211,128,3,0,51,136,178,166,195,50,4,0,53,136,187,134,153,136,2,0,58,136,204,190,81,37,4,0,59,72,246,70,26,115,2,0,59,72,239,71,238,141,2,0,61,200,158,102,7,156,2,0,65,8,72,173,167,71,3,0,70,8,21,65,196,141,2,0,76,72,2,121,121,222,2,0,77,136,55,254,221,23,3,0,80,8,10,254,5,143,3,0,80,8,184,146,206,220,3,0,81,72,8,248,72,147,2,0,82,8,182,186,62,4,3,0,83,136,82,69,113,233,3,0,84,72,31,59,121,152,2,0,85,8,244,156,43,68,2,0,85,200,210,207,233,80,3,0,90,8,148,235,101,186,2,0,90,72,18,89,178,25,3,0,92,8,56,160,137,118,2,0,95,136,223,207,199,77,4,0,96,136,131,98,185,241,2,0,97,200,184,194,132,67,2,0,100,72,31,154,13,103,2,0,100,8,158,38,183,71,3,0,102,200,185,142,67,219,3,0,104,8,110,24,110,12,4,0,112,72,178,153,142,66,4,0,115,72,226,123,182,0,3,0,115,8,66,236,216,68,4,0,116,72,131,105,22,18,3,0,118,8,195,234,25,149,4,0,120,72,78,100,220,60,4,0,123,72,152,209,100,73,2,0,126,8,224,232,215,89,2,0,126,200,36,59,139,28,3,0,126,136,108,225,150,127,4,0,128,136,76,240,104,133,2,0,128,136,76,81,89,202,2,0,128,200,253,105,162,208,2,0,129,200,101,86,20,23,3,0,134,136,39,81,168,0,3,0,134,72,25,130,103,143,4,0,135,8,69,212,133,101,2,0,137,72,167,193,198,6,2,0,138,200,152,252,140,78,3,0,139,8,132,88,61,138,4,0,140,72,153,223,205,5,3,0,141,200,76,81,149,169,2,0,143,72,113,198,39,90,4,0,148,72,134,82,128,102,4,0,150,136,216,186,112,45,2,0,150,200,76,81,133,167,2,0,153,200,75,153,70,7,3,0,155,8,250,150,8,253,3,0,157,8,7,235,194,12,4,0,161,72,77,63,158,45,2,0,161,200,175,45,51,161,2,0,162,8,105,147,9,133,2,0,164,8,22,102,69,251,2,0,164,200,152,167,164,241,3,0,169,200,112,231,221,138,4,0,170,8,38,227,100,148,4,0,174,72,154,223,14,200,2,0,175,136,25,192,45,171,2,0,175,8,47,158,199,106,3,0,179,72,5,77,252,57,2,0,182,8,42,31,176,204,2,0,184,200,20,148,52,85,2,0,184,8,162,215,234,146,2,0,185,200,210,124,62,142,3,0,187,200,169,239,53,30,3,0,189,200,184,75,25,64,2,0,193,72,54,140,5,96,2,0,197,136,201,18,31,141,4,0,204,8,53,56,153,166,2,0,206,72,248,132,209,39,2,0,207,72,236,14,176,153,2,0,207,8,125,195,38,157,2,0,210,8,32,159,96,181,3,0,211,200,96,129,25,133,2,0,211,72,115,172,87,119,3,0,212,8,211,143,37,98,2,0,212,200,118,41,223,31,4,0,213,200,152,223,38,104,3,0,213,200,208,193,94,247,3,0,221,8,77,93,92,111,3,0,224,200,51,45,197,112,3,0,225,136,202,114,128,160,3,0,227,200,80,27,108,2,3,0,234,200,80,154,30,12,3,0,235,8,233,192,125,91,3,0,236,8,168,53,91,127,2,0,237,72,153,223,124,0,3,0,237,200,119,169,48,40,3,0,237,8,120,92,253,224,3,0,243,72,24,81,36,81,3,0,244,136,77,41,155,180,2,0,249,200,181,219,210,79,4,0,251,72,78,1,173,179,2,0,252,8,32,43,150,189,2,0,254,72,65,122,159,28,3,0,0,201,158,94,183,15,3,0,2,73,236,111,143,21,3,0,8,137,126,123,244,48,4,0,8,73,50,36,7,90,4,0,9,9,180,18,80,210,3,0,13,201,131,252,122,10,4,0,16,201,72,70,208,36,4,0,18,201,50,77,175,192,2,0,25,137,13,129,38,30,4,0,26,9,114,80,178,138,2,0,26,73,58,76,192,236,3,0,27,201,95,114,89,47,4,0,29,137,132,254,3,217,2,0,34,9,7,248,252,48,2,0,38,9,241,54,42,234,2,0,38,73,210,186,199,139,4,0,41,9,32,239,202,113,3,0,45,73,77,167,98,87,2,0,46,73,189,72,236,200,2,0,48,137,136,111,244,118,2,0,53,137,186,254,95,67,4,0,59,201,140,37,159,30,2,0,59,137,228,230,55,158,2,0,64,73,251,144,216,171,3,0,67,9,159,208,175,78,2,0,69,9,2,80,218,51,4,0,70,9,148,159,206,14,3,0,73,137,186,212,203,106,2,0,75,9,7,165,1,129,2,0,79,73,119,150,196,112,4,0,81,201,121,67,248,72,4,0,82,201,51,32,103,110,4,0,84,9,127,248,105,10,2,0,84,73,177,225,24,167,3,0,86,137,18,223,38,226,3,0,93,9,233,160,242,42,3,0,95,201,187,61,47,2,4,0,95,201,235,182,218,7,4,0,97,137,39,81,220,0,3,0,97,73,248,31,249,93,3,0,100,201,83,204,207,70,4,0,104,9,46,15,116,9,2,0,105,137,66,250,253,59,3,0,106,9,42,31,157,204,2,0,106,73,209,255,225,70,4,0,110,137,27,163,114,3,3,0,110,137,56,27,24,161,3,0,114,137,52,9,118,193,2,0,116,137,189,186,191,14,3,0,116,9,188,245,54,66,3,0,116,201,52,195,116,241,3,0,117,9,220,52,252,92,3,0,118,201,122,77,224,150,2,0,120,137,189,186,137,14,3,0,120,9,180,221,65,89,4,0,121,201,100,197,113,91,2,0,121,73,117,105,229,170,3,0,127,201,165,125,117,22,2,0,127,201,47,194,229,198,2,0,128,73,38,246,133,57,2,0,130,137,19,192,226,178,2,0,130,201,15,44,206,35,3,0,133,137,39,81,222,255,2,0,134,201,80,193,211,5,4,0,135,73,122,71,241,139,2,0,140,137,120,85,85,92,2,0,143,9,29,3,123,217,2,0,145,9,132,64,231,8,3,0,153,201,159,156,62,99,4,0,154,9,14,120,229,3,4,0,157,137,75,8,230,24,2,0,162,201,23,81,249,98,3,0,165,201,147,198,67,200,3,0,166,201,162,232,111,48,2,0,166,201,104,129,142,104,4,0,176,9,19,113,16,118,2,0,178,137,26,226,230,47,4,0,183,73,85,180,203,51,4,0,190,73,97,85,241,86,4,0,193,201,239,81,3,226,2,0,201,201,75,218,101,173,2,0,201,201,173,3,98,172,3,0,204,73,106,147,5,199,3,0,205,137,153,223,246,235,2,0,205,73,189,148,216,129,4,0,208,137,32,35,10,118,3,0,208,137,192,6,17,231,3,0,208,201,16,69,181,85,4,0,213,137,95,146,11,91,3,0,213,9,10,118,63,83,4,0,214,9,225,142,237,27,3,0,214,9,12,65,114,136,3,0,214,73,194,187,4,140,3,0,217,137,102,30,1,59,2,0,218,9,32,158,191,132,2,0,222,73,29,231,216,67,2,0,222,9,116,139,222,101,2,0,223,73,125,43,177,237,2,0,227,201,117,86,66,33,2,0,227,201,4,250,116,126,4,0,230,137,8,181,203,234,3,0,230,137,232,45,24,62,4,0,232,201,59,237,61,39,4,0,233,73,153,223,87,7,3,0,234,201,47,226,4,137,2,0,237,73,49,248,77,23,4,0,241,73,124,222,162,178,3,0,242,9,86,113,161,51,4,0,243,137,36,84,214,215,2,0,243,137,31,254,217,152,3,0,243,9,221,47,198,161,3,0,244,9,188,128,206,153,3,0,247,137,253,129,144,51,4,0,248,9,38,206,197,207,2,0,0,74,153,223,219,15,3,0,3,138,144,206,229,245,3,0,7,202,106,62,141,25,3,0,8,138,178,178,45,92,4,0,10,10,210,235,57,152,2,0,10,202,176,75,39,255,2,0,12,10,222,163,82,33,2,0,12,138,230,144,136,164,3,0,13,202,81,234,32,169,2,0,14,10,46,153,148,103,3,0,16,138,95,146,175,91,3,0,18,138,42,74,180,121,3,0,20,10,18,139,43,82,4,0,25,74,207,235,166,134,2,0,29,74,6,255,152,111,4,0,30,138,253,17,238,248,2,0,31,138,175,100,148,154,2,0,31,74,224,151,228,9,3,0,41,202,43,248,143,147,2,0,41,74,188,205,53,211,2,0,43,202,23,217,156,141,4,0,46,10,51,65,202,90,2,0,46,10,45,211,255,90,2,0,46,74,112,231,226,229,3,0,47,138,143,77,143,83,2,0,49,10,105,76,17,1,3,0,51,10,7,218,80,35,3,0,51,138,102,203,82,86,3,0,53,138,219,8,105,80,3,0,53,202,5,190,197,115,3,0,56,138,63,66,17,104,2,0,56,10,61,106,54,213,3,0,62,202,81,185,47,16,2,0,63,74,75,240,69,151,2,0,66,74,0,53,63,167,3,0,73,202,209,119,42,175,3,0,79,74,24,81,170,80,3,0,81,138,218,242,58,153,3,0,82,74,153,223,25,14,3,0,83,74,177,201,84,197,3,0,87,74,60,166,21,42,2,0,89,138,91,206,203,104,3,0,94,74,154,223,22,158,2,0,94,202,235,232,14,230,3,0,94,74,67,38,177,236,3,0,95,138,215,195,186,152,2,0,95,10,204,187,152,244,2,0,99,138,29,120,135,214,2,0,102,10,0,144,54,12,3,0,102,74,179,185,27,209,3,0,103,10,224,227,154,192,2,0,104,202,18,251,157,238,3,0,105,202,119,169,65,40,3,0,107,202,141,32,107,119,3,0,110,202,97,177,194,94,3,0,112,202,80,167,253,230,3,0,116,74,101,11,95,30,4,0,118,202,135,99,106,247,2,0,127,74,154,223,244,156,2,0,128,74,83,86,70,44,2,0,129,74,158,80,225,112,2,0,129,74,136,42,85,201,2,0,132,10,38,206,233,207,2,0,132,202,217,226,196,195,3,0,133,10,182,88,98,28,4,0,134,74,181,234,162,124,2,0,134,10,138,37,225,223,2,0,137,10,59,58,46,47,3,0,139,10,65,86,101,22,4,0,140,10,242,227,7,255,2,0,143,138,55,54,73,104,4,0,147,10,101,115,92,77,3,0,148,74,94,4,174,254,2,0,150,138,35,107,9,154,3,0,151,202,2,151,147,104,2,0,151,10,30,81,94,42,3,0,152,10,74,171,112,39,4,0,153,10,207,177,1,88,3,0,154,138,162,23,12,146,3,0,155,74,182,79,45,172,2,0,157,202,177,150,26,212,3,0,162,202,245,102,231,39,2,0,162,138,142,60,47,219,2,0,162,138,160,114,143,101,3,0,164,10,107,41,27,77,3,0,164,202,233,142,214,89,3,0,165,202,46,139,74,6,3,0,166,138,140,248,50,56,4,0,171,10,181,126,3,18,2,0,172,10,135,250,137,203,3,0,174,202,199,130,238,38,4,0,180,74,213,49,210,103,4,0,183,138,24,192,180,169,2,0,191,202,105,232,73,129,2,0,193,138,114,48,241,34,3,0,198,202,216,225,251,162,3,0,203,10,158,36,104,163,3,0,204,138,217,244,163,38,2,0,204,202,134,154,8,61,2,0,207,202,194,150,78,62,2,0,208,202,211,17,248,229,3,0,208,138,64,97,102,133,4,0,211,202,102,67,162,103,4,0,213,10,38,206,215,207,2,0,213,74,76,140,230,118,3,0,214,10,216,149,93,120,2,0,216,74,176,0,248,188,3,0,217,138,94,186,91,30,3,0,220,10,30,81,164,42,3,0,223,202,63,202,127,1,4,0,223,138,51,219,165,149,4,0,223,138,51,219,210,149,4,0,223,138,51,219,8,150,4,0,223,138,51,219,62,150,4,0,223,138,51,219,103,150,4,0,223,138,51,219,145,150,4,0,224,74,71,81,108,204,2,0,225,138,157,95,154,205,2,0,225,138,251,211,80,123,4,0,229,74,187,67,60,223,3,0,230,138,220,47,237,144,3,0,232,202,179,30,134,102,2,0,235,138,97,50,210,207,3,0,237,10,3,119,10,48,3,0,238,138,250,212,251,244,2,0,240,10,181,162,230,46,3,0,245,74,182,94,107,251,2,0,245,202,116,61,152,2,3,0,249,138,173,11,214,33,3,0,250,10,86,59,108,26,2,0,250,138,189,79,175,224,2,0,255,138,53,194,79,199,2,0,255,138,82,121,222,13,3,0,255,10,158,164,148,138,3,0,5,11,90,46,204,88,2,0,7,139,114,48,8,146,4,0,9,203,170,18,169,208,3,0,13,139,194,106,106,44,2,0,14,75,115,253,180,151,4,0,15,139,207,176,161,32,4,0,16,75,18,216,66,155,3,0,17,11,220,97,128,132,3,0,18,139,121,95,108,64,2,0,19,203,250,252,230,11,3,0,20,11,128,135,133,97,3,0,21,11,120,177,217,216,2,0,23,139,197,3,236,18,2,0,23,11,215,171,83,239,2,0,24,75,223,224,195,63,3,0,26,139,0,239,185,27,3,0,28,75,47,87,154,254,2,0,29,75,149,41,63,88,3,0,31,75,47,51,63,87,2,0,38,203,231,252,4,199,2,0,46,139,130,180,201,175,2,0,47,11,150,29,72,17,2,0,52,139,174,15,28,220,2,0,54,203,53,42,57,31,2,0,56,11,91,9,48,136,4,0,57,11,182,197,152,95,2,0,58,139,73,140,139,78,2,0,59,139,63,226,105,234,2,0,62,75,68,12,16,188,3,0,63,139,242,174,69,8,4,0,64,203,8,71,213,134,4,0,67,11,160,206,45,16,3,0,67,139,111,184,92,99,3,0,68,11,218,203,55,37,3,0,68,203,29,81,151,43,3,0,75,203,207,7,2,247,3,0,76,139,241,54,233,57,3,0,79,139,155,137,127,15,2,0,79,139,119,224,217,125,2,0,84,203,19,163,82,75,2,0,84,11,172,48,113,79,2,0,85,139,77,34,198,171,2,0,91,75,217,101,219,150,4,0,92,75,80,72,58,27,4,0,93,75,122,36,49,6,3,0,96,203,110,239,218,2,4,0,97,11,7,116,189,134,2,0,98,203,125,220,28,94,3,0,101,75,49,200,145,115,2,0,102,203,42,89,52,6,2,0,102,75,194,12,71,176,3,0,104,75,154,223,5,170,2,0,108,203,224,253,128,216,2,0,109,11,153,223,28,37,3,0,110,75,154,223,18,170,2,0,112,75,36,62,134,240,2,0,116,203,253,79,74,116,2,0,116,75,253,83,2,28,3,0,116,11,124,54,237,107,4,0,117,11,235,13,195,103,2,0,117,11,84,122,74,232,2,0,119,75,98,218,118,180,3,0,119,11,145,183,247,7,4,0,120,75,113,185,174,210,2,0,120,75,32,38,217,123,3,0,121,75,135,144,213,190,3,0,121,203,56,41,95,79,4,0,123,139,170,194,58,88,4,0,125,75,160,174,182,75,3,0,125,11,116,102,232,173,3,0,126,139,160,154,33,165,3,0,128,203,224,253,65,216,2,0,129,75,205,184,186,45,3,0,134,203,48,39,175,26,3,0,137,75,36,114,191,243,3,0,147,11,75,98,208,22,2,0,149,11,58,105,74,163,2,0,150,203,205,249,168,194,2,0,151,75,196,202,5,110,2,0,155,139,40,75,219,76,2,0,155,203,171,218,45,126,4,0,156,11,243,86,213,12,2,0,156,75,62,119,196,122,2,0,156,203,89,205,194,210,2,0,156,203,253,41,161,101,3,0,157,203,246,235,115,138,4,0,160,203,187,16,135,40,2,0,162,203,159,55,72,184,3,0,164,11,3,80,221,15,2,0,166,11,95,77,46,150,2,0,169,11,231,86,166,69,2,0,169,11,169,190,79,72,2,0,170,11,199,78,234,54,3,0,171,139,167,209,16,71,2,0,172,203,214,117,215,117,2,0,176,139,201,79,25,96,4,0,177,75,243,133,31,190,3,0,177,75,250,227,14,115,4,0,178,11,62,248,247,74,3,0,178,203,133,179,48,208,3,0,178,203,175,234,200,146,4,0,179,11,147,68,204,241,2,0,180,139,124,184,140,93,3,0,182,11,113,189,22,3,4,0,184,75,157,100,194,29,2,0,186,203,233,87,66,7,2,0,189,139,150,25,80,149,2,0,189,139,2,177,223,130,3,0,192,11,165,69,147,167,2,0,193,11,128,125,103,89,3,0,193,203,139,155,248,128,3,0,193,139,255,157,229,152,4,0,201,11,169,46,161,40,2,0,201,11,198,104,116,163,3,0,211,203,207,79,133,21,2,0,212,75,149,201,45,19,4,0,214,11,148,59,218,38,2,0,215,11,212,21,150,11,3,0,219,11,161,73,164,109,2,0,222,11,23,217,132,31,4,0,225,11,119,207,33,57,2,0,225,11,153,100,142,224,3,0,227,75,33,156,23,146,2,0,227,75,29,198,171,6,3,0,229,203,223,167,9,197,2,0,229,139,108,219,216,167,3,0,230,11,81,171,108,79,3,0,231,11,105,74,218,128,4,0,232,203,212,11,102,253,2,0,234,139,102,79,91,3,4,0,238,75,160,54,159,58,3,0,242,75,108,31,91,132,3,0,245,75,90,79,200,115,2,0,248,203,121,56,5,118,2,0,250,75,170,7,58,68,4,0,251,11,183,94,101,226,3,0,5,76,62,24,86,78,4,0,7,12,242,42,173,199,3,0,10,140,194,163,72,185,3,0,12,140,53,41,206,31,3,0,16,12,132,24,236,85,3,0,18,76,146,116,121,171,2,0,21,76,114,51,170,29,2,0,21,204,5,129,126,54,2,0,23,204,96,74,71,187,3,0,30,76,164,143,154,129,3,0,30,204,110,106,43,10,4,0,31,12,183,94,118,226,3,0,32,204,210,44,148,65,2,0,34,12,88,12,71,134,2,0,35,76,248,2,128,59,4,0,37,12,236,123,53,44,2,0,37,76,139,243,18,236,2,0,40,140,15,248,20,173,2,0,41,140,177,33,250,12,2,0,43,76,90,75,84,65,4,0,47,76,151,58,254,64,2,0,53,204,24,249,138,125,4,0,59,140,6,148,180,24,2,0,64,140,27,68,176,41,2,0,68,12,81,171,124,79,3,0,71,12,68,4,37,7,4,0,71,140,217,151,5,32,4,0,78,76,166,81,163,60,3,0,79,76,238,112,124,223,3,0,80,140,117,103,135,32,4,0,84,12,224,10,26,65,4,0,85,12,131,233,180,240,3,0,86,12,55,143,193,61,3,0,87,140,129,56,139,73,3,0,87,204,58,119,123,112,3,0,91,204,129,248,166,44,3,0,93,12,145,32,185,112,2,0,93,76,74,199,137,144,4,0,94,76,87,162,142,253,2,0,94,204,119,173,95,130,4,0,95,204,60,123,20,107,3,0,99,140,24,81,179,73,3,0,102,204,207,236,106,40,4,0,103,12,99,74,164,186,2,0,109,76,19,216,201,60,3,0,111,140,215,162,64,3,4,0,115,12,138,3,181,59,2,0,116,76,91,214,54,81,2,0,118,140,211,118,245,237,2,0,118,204,40,48,195,97,4,0,119,12,46,119,88,25,4,0,120,12,244,36,3,151,4,0,121,12,231,203,83,54,2,0,125,140,231,129,85,124,3,0,126,204,82,203,161,151,2,0,126,204,29,228,122,25,4,0,127,12,166,172,73,188,2,0,127,76,244,223,55,80,3,0,129,12,18,192,242,171,2,0,130,12,175,159,130,252,3,0,135,140,208,127,218,6,3,0,136,140,122,229,240,76,2,0,138,204,139,20,217,102,3,0,139,140,165,10,170,55,3,0,140,204,139,20,14,68,3,0,140,204,139,20,32,68,3,0,140,204,139,20,50,68,3,0,140,204,139,20,67,68,3,0,140,204,139,20,88,68,3,0,140,204,139,20,117,68,3,0,140,204,139,20,137,68,3,0,140,204,139,20,158,68,3,0,140,204,139,20,185,68,3,0,140,204,139,20,204,68,3,0,140,204,139,20,228,68,3,0,140,204,139,20,246,68,3,0,140,204,139,20,14,69,3,0,140,204,139,20,35,69,3,0,140,204,139,20,56,69,3,0,140,204,139,20,78,69,3,0,140,204,139,20,92,69,3,0,140,204,139,20,114,69,3,0,140,204,139,20,132,69,3,0,140,204,139,20,153,69,3,0,140,204,139,20,167,69,3,0,140,204,139,20,183,69,3,0,140,204,139,20,205,69,3,0,140,204,139,20,222,69,3,0,140,204,139,20,238,69,3,0,140,204,139,20,253,69,3,0,140,204,139,20,13,70,3,0,140,204,139,20,31,70,3,0,140,204,139,20,51,70,3,0,140,204,139,20,66,70,3,0,140,204,139,20,41,82,3,0,140,204,139,20,78,82,3,0,140,204,139,20,103,82,3,0,140,204,139,20,129,82,3,0,140,204,139,20,111,151,4,0,140,204,139,20,35,153,4,0,142,12,124,56,246,147,3,0,143,204,139,20,175,45,3,0,143,12,71,35,230,29,4,0,147,204,124,93,85,140,4,0,148,76,186,126,198,89,4,0,160,204,139,20,158,250,2,0,166,76,167,178,62,187,2,0,168,12,233,56,112,108,4,0,170,12,82,102,23,72,4,0,172,76,3,152,133,49,4,0,174,204,139,20,11,243,2,0,174,204,66,116,13,67,3,0,177,204,243,3,16,163,3,0,179,12,89,104,161,10,2,0,180,204,177,12,99,30,2,0,180,204,188,34,236,50,4,0,184,140,135,66,15,2,3,0,188,204,139,20,101,212,2,0,189,204,17,100,241,216,3,0,189,12,232,206,180,26,4,0,190,12,82,55,180,118,4,0,192,76,85,103,243,147,4,0,193,12,147,67,94,143,3,0,194,140,200,31,220,122,2,0,200,76,226,179,168,224,3,0,201,204,130,184,184,80,3,0,202,204,7,245,234,37,4,0,202,140,77,241,200,99,4,0,204,204,19,186,253,36,3,0,205,204,139,20,50,204,2,0,206,204,139,20,23,204,2,0,208,12,80,17,241,100,2,0,210,76,29,177,128,78,4,0,211,204,195,166,172,215,2,0,211,140,122,54,112,232,3,0,212,140,188,59,10,43,4,0,215,76,171,254,66,4,4,0,216,140,125,183,95,229,3,0,218,140,79,114,255,96,4,0,219,204,184,28,65,237,3,0,220,204,225,101,35,241,2,0,221,12,123,168,139,98,3,0,221,204,251,94,132,228,3,0,224,76,12,58,183,176,2,0,230,140,28,136,93,189,3,0,231,140,198,246,104,235,2,0,234,204,58,99,108,180,2,0,239,12,39,94,57,42,4,0,240,140,173,139,75,130,2,0,241,76,124,132,51,62,2,0,243,12,255,136,220,87,4,0,247,76,147,49,61,30,2,0,247,76,182,210,192,130,2,0,252,140,21,225,240,104,2,0,253,140,52,111,50,96,3,0,1,13,131,45,255,251,3,0,3,77,168,141,157,8,4,0,6,13,72,177,133,190,2,0,6,13,178,245,124,119,4,0,8,13,54,81,199,232,2,0,11,13,59,239,18,109,2,0,13,205,19,78,37,57,4,0,15,141,187,121,3,215,2,0,15,13,128,117,47,116,4,0,18,77,139,93,148,189,3,0,20,141,185,64,74,138,4,0,23,13,167,123,236,32,2,0,24,205,91,209,133,36,4,0,25,13,88,181,46,3,4,0,26,205,153,44,74,8,3,0,30,141,109,198,152,83,4,0,33,205,190,54,234,125,4,0,34,77,104,88,164,217,3,0,36,141,87,52,180,66,3,0,37,13,135,64,175,144,4,0,38,77,143,232,191,125,3,0,39,77,218,140,166,34,3,0,41,13,243,159,10,105,3,0,42,13,89,116,169,53,2,0,43,13,58,155,53,115,4,0,48,13,157,21,158,131,4,0,50,141,7,38,27,240,2,0,52,13,13,6,31,236,3,0,53,141,254,247,148,54,2,0,53,205,152,221,24,171,2,0,55,141,236,186,164,116,3,0,55,205,10,253,33,210,3,0,58,141,151,145,162,94,3,0,59,141,135,98,255,68,2,0,59,141,246,183,41,144,4,0,61,141,214,202,143,85,2,0,70,13,194,199,249,235,3,0,70,13,29,18,248,77,4,0,71,141,149,177,161,9,3,0,75,205,176,129,0,135,3,0,76,77,229,113,139,4,3,0,81,205,28,134,150,179,2,0,83,77,124,184,166,33,4,0,87,141,163,159,116,147,3,0,88,141,205,63,254,229,2,0,92,141,177,110,2,213,2,0,94,141,238,142,161,240,3,0,96,13,53,81,247,231,2,0,98,13,200,189,209,211,2,0,99,13,235,0,57,139,4,0,100,13,20,192,170,23,3,0,110,141,30,220,116,106,2,0,112,205,51,63,203,156,2,0,114,205,70,155,146,0,4,0,116,205,212,11,122,253,2,0,123,13,160,107,199,225,2,0,123,77,72,92,185,220,3,0,127,141,137,184,6,74,3,0,127,13,112,95,35,119,3,0,131,205,117,36,194,76,2,0,134,13,193,227,121,88,2,0,135,205,76,94,175,50,3,0,135,205,206,155,234,64,3,0,135,141,146,2,112,145,3,0,137,141,82,162,220,239,2,0,144,77,87,182,139,126,4,0,144,205,91,95,192,136,4,0,146,77,103,161,33,0,4,0,148,13,41,40,217,13,2,0,148,141,65,86,173,221,3,0,148,13,90,44,92,224,3,0,149,13,177,200,125,123,3,0,154,141,135,240,18,166,3,0,155,77,45,43,45,137,4,0,163,205,24,192,55,167,2,0,165,205,66,217,220,78,2,0,170,77,218,21,189,60,2,0,175,77,191,28,255,165,2,0,177,13,250,31,12,68,2,0,178,141,77,167,31,154,2,0,179,205,46,103,160,175,3,0,181,77,185,159,148,48,3,0,184,77,147,171,133,96,2,0,184,77,51,195,172,211,2,0,186,205,125,181,32,139,4,0,187,141,29,163,71,25,4,0,191,205,131,46,111,142,4,0,192,77,229,13,136,148,4,0,193,77,7,98,82,10,2,0,193,13,144,197,89,116,3,0,200,77,22,30,109,57,2,0,201,77,68,27,96,135,3,0,204,205,128,241,102,207,2,0,207,141,189,5,64,226,2,0,209,141,164,39,49,90,2,0,213,205,5,76,231,89,2,0,213,205,45,56,112,98,2,0,214,77,250,8,99,80,2,0,216,13,185,142,246,63,2,0,216,141,247,155,51,84,2,0,218,77,84,252,122,1,3,0,220,141,193,98,245,131,3,0,223,13,212,228,191,113,4,0,225,13,226,67,225,109,4,0,226,13,13,120,7,149,2,0,226,205,48,99,124,47,4,0,229,141,136,107,246,96,3,0,231,77,47,89,163,9,4,0,233,13,236,37,69,30,3,0,234,13,69,49,84,114,3,0,235,205,213,3,39,59,2,0,235,141,148,137,244,252,3,0,236,205,173,79,194,223,2,0,244,141,4,128,189,64,2,0,244,13,170,250,54,101,4,0,250,13,173,189,178,208,2,0,253,77,211,25,176,20,4,0,254,77,137,235,115,145,2,0,0,78,141,52,75,71,4,0,12,14,22,254,93,164,3,0,15,142,203,15,203,16,3,0,16,142,36,47,119,142,3,0,19,78,11,143,121,199,2,0,20,14,9,112,218,92,2,0,21,78,133,251,19,126,2,0,21,206,198,184,157,47,3,0,24,206,67,7,214,156,3,0,26,206,166,244,196,24,3,0,26,78,0,18,73,247,3,0,27,142,45,216,20,78,2,0,27,206,156,138,47,26,4,0,27,78,247,23,135,93,4,0,33,142,66,80,40,21,2,0,35,206,45,216,157,17,3,0,36,206,24,181,249,89,2,0,36,142,15,248,236,172,2,0,40,142,26,125,237,140,4,0,43,142,14,221,120,146,2,0,44,14,167,108,198,36,2,0,44,14,217,47,59,223,2,0,44,78,172,8,150,45,4,0,48,78,121,33,152,78,4,0,49,142,152,20,5,7,2,0,52,14,190,186,245,12,3,0,53,142,105,228,62,194,3,0,55,78,12,254,198,152,3,0,57,206,246,20,117,74,2,0,58,14,72,56,37,180,3,0,60,78,5,186,13,8,3,0,60,78,157,183,74,17,3,0,61,14,2,204,8,211,3,0,63,206,55,138,139,65,4,0,64,206,76,81,183,170,2,0,65,78,26,170,47,145,3,0,67,14,14,232,141,47,4,0,67,206,30,200,120,76,4,0,68,142,153,223,151,240,2,0,70,206,129,6,200,78,2,0,70,14,246,9,66,117,2,0,74,78,97,177,149,160,3,0,77,142,40,61,206,27,4,0,78,14,226,110,225,173,2,0,78,78,186,171,173,187,3,0,81,206,225,116,241,146,4,0,82,142,119,244,140,140,2,0,83,78,225,46,64,177,2,0,85,78,45,200,150,9,4,0,86,206,244,65,91,90,3,0,88,142,153,223,21,237,2,0,89,14,195,53,247,231,3,0,92,206,93,188,170,169,3,0,93,206,139,102,13,28,4,0,94,206,139,102,246,27,4,0,97,78,105,10,27,48,3,0,100,14,50,235,14,81,3,0,100,78,212,148,70,119,3,0,103,206,54,124,218,141,2,0,103,206,22,43,246,176,2,0,103,14,18,185,70,18,3,0,104,142,178,16,202,139,2,0,104,14,196,215,235,149,2,0,109,142,128,177,106,218,2,0,109,14,152,13,223,22,4,0,112,14,248,227,194,178,3,0,113,206,45,92,38,112,4,0,115,14,151,103,193,65,3,0,117,78,213,255,94,16,4,0,120,206,53,99,11,87,2,0,123,78,24,128,81,23,2,0,127,206,55,71,133,241,3,0,129,142,146,20,25,160,3,0,132,78,63,32,168,50,4,0,133,206,205,249,190,183,2,0,133,78,228,152,78,81,4,0,134,14,98,216,110,75,4,0,139,206,86,234,171,175,2,0,142,78,121,154,227,176,3,0,145,14,226,26,9,148,2,0,145,206,176,51,36,22,4,0,146,142,245,181,230,25,2,0,147,78,245,37,117,60,4,0,149,142,128,175,154,111,3,0,149,14,175,219,244,232,3,0,150,206,60,222,161,41,2,0,151,206,138,41,93,68,2,0,157,14,155,130,124,155,3,0,158,206,234,140,211,182,2,0,160,14,107,197,226,88,2,0,161,206,180,72,97,106,2,0,161,142,236,103,107,115,2,0,163,142,4,171,181,250,3,0,164,142,221,121,2,164,3,0,165,78,147,164,142,125,2,0,170,206,110,247,21,138,4,0,172,78,138,149,254,33,4,0,174,206,213,35,113,255,2,0,175,206,95,36,123,75,4,0,176,14,210,67,251,219,2,0,176,206,14,176,70,243,3,0,178,206,83,119,222,72,3,0,179,78,2,240,39,4,3,0,180,206,100,186,135,30,3,0,182,142,7,51,109,233,2,0,184,142,110,221,231,72,4,0,185,206,60,160,123,113,2,0,186,206,25,55,225,53,2,0,186,78,168,99,167,126,2,0,193,142,12,223,174,102,4,0,195,14,149,112,206,161,3,0,205,142,93,121,185,188,3,0,206,206,98,112,13,214,2,0,208,78,202,8,34,185,3,0,210,206,98,112,164,214,2,0,212,78,123,37,20,14,2,0,212,206,87,240,153,233,2,0,213,206,209,10,121,157,2,0,215,206,5,66,223,229,2,0,221,206,171,43,200,185,3,0,221,78,33,68,69,77,4,0,225,206,30,196,45,118,4,0,233,142,76,10,174,77,4,0,239,142,202,32,47,54,4,0,242,14,127,237,75,41,2,0,242,14,252,228,146,171,2,0,246,78,64,24,65,119,2,0,250,14,53,154,15,52,4,0,255,14,17,47,54,36,4,0,3,207,76,94,150,50,3,0,5,15,161,181,178,76,2,0,5,207,153,185,99,141,2,0,6,207,124,7,40,114,2,0,8,207,72,26,199,133,4,0,12,207,74,185,209,205,3,0,15,15,157,190,163,176,2,0,15,143,175,242,54,91,3,0,18,143,43,21,253,3,4,0,20,79,15,192,47,199,2,0,20,15,252,250,229,244,3,0,22,15,153,142,213,178,3,0,25,207,191,177,245,255,3,0,26,79,24,126,77,85,2,0,26,15,157,145,183,247,2,0,27,79,166,145,224,122,3,0,29,143,254,233,15,91,2,0,30,143,45,13,185,131,2,0,31,207,196,89,255,111,3,0,32,79,110,225,249,60,2,0,35,79,155,160,182,113,3,0,35,15,133,40,246,36,4,0,36,15,38,231,239,65,3,0,39,15,73,27,53,183,2,0,43,15,69,122,131,228,2,0,48,143,34,167,85,216,2,0,49,207,13,141,51,145,4,0,52,207,25,192,197,170,2,0,53,79,32,222,11,27,4,0,54,207,193,111,219,62,4,0,56,79,180,228,211,113,4,0,57,79,210,8,33,21,3,0,58,143,39,234,232,168,3,0,61,79,38,122,70,54,4,0,62,207,197,132,72,113,4,0,63,207,123,177,238,216,2,0,64,143,153,116,116,48,3,0,64,15,118,179,115,157,3,0,66,15,240,190,28,96,2,0,68,15,70,21,225,64,2,0,70,79,181,132,168,57,4,0,72,143,89,209,125,81,3,0,73,207,65,248,152,139,2,0,79,143,192,21,39,41,2,0,80,15,83,208,49,18,3,0,81,143,4,234,133,146,3,0,85,207,246,135,52,83,2,0,86,143,224,13,43,105,2,0,86,15,247,113,14,81,4,0,89,79,70,23,206,240,3,0,90,79,74,193,174,198,2,0,90,15,223,178,244,121,3,0,93,79,5,52,99,37,2,0,94,207,129,215,33,115,4,0,95,143,251,65,159,1,4,0,99,79,39,28,176,154,2,0,101,15,40,159,140,127,2,0,106,79,229,113,169,59,4,0,107,207,41,218,128,112,2,0,107,15,219,201,151,149,3,0,110,15,94,202,103,88,4,0,113,79,253,14,5,46,2,0,113,15,134,85,226,151,2,0,124,207,150,156,243,29,3,0,125,143,21,163,217,117,4,0,127,143,61,95,107,215,2,0,127,15,117,51,28,184,3,0,127,143,42,59,203,28,4,0,133,143,178,33,78,106,4,0,134,15,29,153,148,182,2,0,134,207,137,152,16,121,4,0,134,143,255,39,34,148,4,0,135,143,248,109,40,44,4,0,135,143,156,28,231,120,4,0,138,143,93,90,249,114,3,0,141,15,42,157,109,77,2,0,141,207,63,79,209,15,4,0,142,79,74,111,94,254,3,0,143,79,92,139,191,66,2,0,152,143,149,64,207,197,3,0,153,207,47,81,202,245,2,0,160,143,91,240,91,63,4,0,163,79,78,236,118,6,4,0,164,79,88,183,135,65,3,0,164,79,214,137,168,95,3,0,166,15,152,115,46,45,2,0,166,79,131,42,167,193,2,0,167,207,22,217,61,129,4,0,168,207,55,38,230,180,2,0,169,207,159,189,200,89,2,0,171,207,66,92,198,220,2,0,172,207,78,160,224,16,3,0,172,15,22,179,137,37,4,0,174,207,112,217,114,177,2,0,174,15,205,215,193,208,2,0,174,79,211,158,97,33,3,0,174,79,167,209,166,167,3,0,175,143,47,137,142,173,2,0,175,143,235,9,123,244,3,0,176,143,48,39,239,39,3,0,176,15,119,34,198,168,3,0,183,15,222,11,184,62,2,0,186,143,248,119,40,215,2,0,188,79,172,231,5,54,2,0,188,207,17,100,16,217,3,0,190,207,236,54,2,87,4,0,192,15,96,227,232,199,3,0,192,79,23,42,79,110,4,0,193,207,129,162,110,102,2,0,193,143,209,7,245,253,3,0,195,207,122,164,88,148,3,0,195,79,190,242,157,128,4,0,197,15,14,17,236,253,2,0,198,143,10,3,46,130,3,0,198,15,55,50,216,33,4,0,200,15,155,130,166,155,3,0,202,79,9,16,90,187,2,0,203,79,172,122,50,154,3,0,204,79,165,201,193,36,4,0,211,143,178,168,170,217,2,0,214,79,64,83,215,24,2,0,215,207,193,57,129,60,2,0,217,143,139,20,132,147,2,0,217,79,189,255,228,214,2,0,222,207,221,7,194,136,2,0,223,79,23,54,62,53,3,0,229,79,183,231,199,0,3,0,232,79,159,224,102,13,3,0,234,207,39,123,241,124,2,0,237,15,35,56,42,23,4,0,239,207,235,234,224,151,4,0,248,143,46,198,231,180,3,0,251,207,252,224,72,188,3,0,255,79,209,242,50,122,4,0,0,16,74,32,27,248,2,0,0,144,211,66,8,124,4,0,2,144,52,185,17,133,4,0,4,144,175,183,33,229,3,0,4,16,98,135,116,103,4,0,6,16,86,221,253,8,3,0,8,208,94,89,193,5,2,0,8,208,181,234,182,168,3,0,10,16,104,41,9,128,3,0,15,144,44,168,8,195,3,0,15,16,65,3,30,80,4,0,15,16,245,136,106,97,4,0,16,80,111,166,234,219,2,0,20,144,235,185,255,46,3,0,20,144,52,62,153,108,4,0,21,208,233,206,215,80,3,0,22,80,107,50,10,172,3,0,22,208,185,177,115,54,4,0,23,16,24,165,128,96,3,0,32,16,64,92,166,57,2,0,33,208,106,227,35,95,2,0,33,80,233,8,51,132,3,0,35,16,133,162,28,53,4,0,37,208,27,57,194,4,3,0,41,208,167,228,107,189,3,0,42,16,229,98,14,55,4,0,48,16,51,44,205,52,4,0,54,16,76,31,192,234,2,0,55,80,112,202,116,65,4,0,61,80,251,194,185,102,2,0,62,208,193,2,157,67,4,0,66,80,168,252,220,63,3,0,67,208,23,81,235,98,3,0,67,16,242,41,240,207,3,0,69,144,8,1,160,75,4,0,70,80,197,238,238,213,2,0,70,16,81,171,140,79,3,0,72,80,243,9,50,71,3,0,75,144,114,187,70,250,2,0,78,80,3,226,148,35,2,0,78,208,118,78,101,160,2,0,78,80,217,47,160,197,3,0,78,80,237,83,12,225,3,0,79,16,219,17,62,199,2,0,79,144,52,248,246,100,3,0,81,208,25,146,198,199,2,0,86,80,65,24,216,54,2,0,86,208,161,6,165,8,3,0,86,144,135,210,130,7,4,0,93,80,236,215,70,112,2,0,93,80,198,103,120,139,3,0,94,80,29,134,164,65,4,0,95,144,52,248,228,95,3,0,96,80,235,168,34,36,2,0,98,16,254,125,67,134,3,0,99,80,127,92,130,172,2,0,99,144,52,248,158,82,3,0,100,80,193,116,119,178,3,0,102,16,152,108,117,154,3,0,103,80,64,227,162,107,3,0,103,208,88,230,65,22,4,0,104,144,52,248,158,80,3,0,105,144,120,108,153,32,2,0,106,16,28,134,17,114,2,0,109,208,76,185,3,254,2,0,111,16,217,128,230,145,3,0,113,80,186,207,207,74,4,0,114,208,226,180,96,67,2,0,115,80,13,73,99,108,3,0,116,80,233,9,36,201,2,0,116,144,52,248,215,101,3,0,117,144,52,248,76,74,3,0,120,80,68,162,153,132,2,0,122,80,59,184,75,55,3,0,124,80,107,131,246,227,3,0,125,16,161,79,215,177,3,0,132,208,97,83,99,211,2,0,135,80,54,118,31,123,3,0,137,144,204,9,191,131,3,0,139,144,214,128,172,26,2,0,139,80,230,123,104,228,3,0,139,144,201,3,45,119,4,0,143,144,1,54,108,132,3,0,146,144,215,25,6,41,3,0,149,80,167,166,62,120,4,0,151,80,22,148,145,77,3,0,153,80,226,229,152,161,2,0,153,208,40,200,77,90,4,0,153,16,198,229,78,130,4,0,158,16,171,101,100,24,4,0,161,16,213,90,242,4,4,0,162,80,76,178,225,176,2,0,162,16,10,146,137,70,3,0,166,16,173,160,31,147,3,0,168,144,33,97,162,98,4,0,172,16,106,44,246,71,3,0,172,144,123,54,114,83,4,0,173,16,98,101,56,175,2,0,175,80,32,244,20,8,2,0,180,16,57,114,104,225,3,0,182,208,215,163,246,13,3,0,182,80,95,85,236,225,3,0,183,144,212,166,206,144,3,0,185,208,214,159,63,20,4,0,187,144,52,248,21,45,3,0,198,144,95,249,94,244,2,0,198,16,199,186,66,24,3,0,200,208,155,210,173,52,2,0,201,80,54,240,28,89,2,0,204,144,79,118,160,5,2,0,206,144,177,45,144,164,2,0,211,80,92,103,148,64,2,0,217,208,2,182,30,182,2,0,219,80,100,55,105,12,2,0,219,208,10,74,190,134,4,0,230,80,92,5,101,46,2,0,231,80,15,213,215,185,3,0,233,208,156,225,119,162,2,0,235,80,222,106,212,64,3,0,238,208,92,198,191,135,2,0,238,80,227,210,238,143,4,0,239,208,201,203,106,5,3,0,242,80,186,236,176,116,2,0,244,144,127,145,255,72,2,0,248,144,112,49,92,122,2,0,249,80,146,38,171,70,2,0,252,16,95,241,122,31,3,0,254,16,76,178,57,44,4,0,0,81,147,176,142,52,3,0,10,17,228,61,252,117,3,0,11,17,242,221,173,158,2,0,11,209,137,64,103,125,3,0,17,209,3,208,39,95,3,0,19,209,225,25,197,53,3,0,20,145,44,194,1,106,3,0,21,81,177,204,230,105,4,0,22,81,113,184,155,98,3,0,22,81,249,163,64,211,3,0,25,81,142,62,81,155,2,0,26,17,178,248,21,103,4,0,27,17,157,68,158,123,2,0,27,17,137,236,177,137,2,0,27,17,182,54,192,253,2,0,29,17,94,106,29,160,2,0,32,81,242,219,18,4,2,0,35,145,20,172,123,137,4,0,36,145,76,23,91,142,3,0,39,17,58,48,26,124,4,0,41,17,245,38,246,108,2,0,42,81,14,67,43,53,3,0,43,81,79,82,202,104,2,0,44,81,158,97,124,154,2,0,44,81,145,204,236,179,3,0,45,145,126,122,16,26,2,0,46,81,138,84,150,219,3,0,48,81,158,98,185,251,2,0,50,17,81,104,175,177,3,0,50,209,79,60,61,254,3,0,51,17,93,23,196,145,3,0,54,145,99,69,98,235,3,0,56,145,52,241,26,63,2,0,56,145,234,173,253,158,3,0,56,145,193,189,65,208,3,0,60,145,64,187,187,196,2,0,60,209,195,171,116,74,3,0,61,209,211,47,201,26,4,0,66,145,47,237,207,66,4,0,68,145,181,61,58,173,2,0,69,17,167,184,42,44,3,0,69,81,215,184,251,47,3,0,70,81,208,126,42,139,3,0,71,81,196,79,80,126,2,0,72,145,182,211,211,135,2,0,75,145,131,82,122,6,3,0,75,17,114,110,18,23,4,0,78,81,33,30,33,201,3,0,79,17,36,25,98,31,4,0,79,209,125,130,115,152,4,0,84,17,83,4,44,58,2,0,93,81,177,162,223,32,2,0,93,145,52,248,226,41,3,0,93,209,210,246,207,160,3,0,94,17,31,19,135,184,3,0,94,209,113,153,134,221,3,0,95,17,163,75,163,58,2,0,95,209,100,65,212,208,2,0,97,17,111,145,15,165,3,0,100,145,217,76,51,121,2,0,103,209,129,74,227,105,3,0,103,209,94,197,23,119,4,0,104,81,49,191,87,191,2,0,105,17,255,143,171,84,3,0,105,209,167,79,45,143,4,0,108,81,177,45,251,161,2,0,109,17,66,21,77,122,2,0,113,17,171,198,22,243,2,0,117,209,113,39,194,150,3,0,119,81,55,240,242,47,2,0,124,17,159,112,51,26,3,0,125,209,195,171,10,75,3,0,126,81,124,9,114,13,4,0,126,17,169,236,241,93,4,0,128,81,177,45,177,161,2,0,130,145,64,231,28,188,3,0,131,81,53,121,223,121,3,0,135,17,93,54,26,20,4,0,137,145,215,85,118,3,2,0,143,17,61,254,171,117,4,0,144,209,72,64,52,33,2,0,144,17,42,196,219,146,2,0,145,17,97,227,78,74,2,0,145,17,153,223,170,38,3,0,145,17,53,244,64,29,4,0,149,209,63,127,90,62,4,0,150,81,97,75,142,67,4,0,150,81,231,232,126,94,4,0,152,209,174,21,67,132,2,0,152,145,190,120,160,227,2,0,154,81,29,254,65,74,4,0,155,209,23,229,64,15,2,0,155,145,149,204,38,54,3,0,157,17,41,19,36,155,2,0,159,81,180,126,176,21,2,0,160,17,223,107,100,73,3,0,163,209,71,202,189,204,3,0,168,209,65,232,164,44,2,0,168,145,39,69,139,116,3,0,170,81,15,169,138,95,3,0,171,209,132,87,1,10,2,0,172,17,175,69,110,113,4,0,180,145,244,184,210,203,3,0,183,17,80,91,20,157,2,0,183,145,35,129,49,240,2,0,184,17,110,181,59,55,4,0,185,17,57,186,14,80,4,0,189,209,57,166,44,222,3,0,194,81,229,231,252,25,2,0,197,209,248,233,141,177,3,0,198,145,151,123,91,167,2,0,199,81,102,184,97,101,3,0,200,81,35,34,123,227,2,0,200,81,53,231,202,248,3,0,201,209,111,60,47,80,2,0,202,145,52,248,150,38,3,0,204,145,32,80,209,40,2,0,204,145,97,177,187,33,4,0,205,145,59,101,20,27,2,0,206,145,187,190,128,220,3,0,210,209,243,116,123,231,2,0,213,81,96,75,109,58,4,0,216,209,8,132,127,237,2,0,219,209,30,81,136,38,3,0,219,81,215,36,81,195,3,0,224,81,234,252,39,81,4,0,225,209,134,153,177,83,2,0,226,17,32,183,106,13,2,0,226,17,74,9,37,188,2,0,226,17,100,118,2,215,3,0,234,81,164,73,244,82,3,0,237,145,183,16,36,176,2,0,237,145,196,48,70,179,3,0,241,17,6,170,94,251,3,0,242,81,36,37,171,142,2,0,243,81,15,80,115,123,4,0,244,81,74,120,96,221,3,0,246,209,89,139,237,23,3,0,247,209,82,48,169,173,3,0,248,81,250,10,213,25,2,0,252,145,209,196,50,88,2,0,252,81,99,168,208,199,3,0,254,17,81,235,20,61,2,0,5,18,230,185,9,223,2,0,6,18,79,191,216,245,3,0,9,210,47,160,178,92,2,0,12,18,61,12,15,191,3,0,13,210,79,212,218,133,4,0,16,146,230,138,215,16,2,0,22,18,123,43,167,92,4,0,23,82,171,209,92,64,3,0,24,82,104,82,106,51,2,0,24,82,243,9,33,71,3,0,34,82,91,86,183,109,4,0,35,210,116,163,95,33,2,0,40,82,212,207,227,183,3,0,40,210,135,40,247,236,3,0,41,82,150,226,165,220,3,0,42,210,82,208,200,18,3,0,48,146,241,116,245,79,4,0,51,146,238,129,209,216,3,0,54,82,230,130,43,202,3,0,55,18,197,24,200,87,4,0,60,82,63,82,111,253,3,0,65,82,185,97,253,21,2,0,65,210,77,75,54,153,2,0,66,146,77,95,68,11,3,0,69,82,138,177,28,218,2,0,72,210,17,54,76,52,3,0,73,210,22,196,58,146,2,0,74,18,69,236,155,152,4,0,77,210,38,235,2,101,3,0,79,146,128,185,238,210,2,0,81,18,99,201,37,92,3,0,81,146,246,223,212,3,4,0,82,18,20,13,18,210,2,0,86,210,0,157,1,130,3,0,88,146,165,200,54,112,3,0,89,18,169,172,79,185,2,0,89,146,46,56,148,179,3,0,90,18,110,129,91,82,4,0,91,146,53,218,185,173,2,0,91,82,167,85,119,71,4,0,92,82,154,11,117,118,3,0,95,82,205,123,22,66,3,0,96,18,112,86,172,108,3,0,98,146,69,71,155,116,2,0,99,210,157,179,154,159,3,0,100,82,183,220,217,209,3,0,101,146,88,212,77,253,3,0,103,18,129,51,185,17,2,0,104,210,149,227,22,186,3,0,111,146,71,61,215,171,2,0,112,210,149,227,23,187,3,0,115,210,37,176,61,79,4,0,116,146,22,63,152,2,4,0,117,146,253,30,20,32,4,0,119,18,132,205,226,81,2,0,119,210,178,141,23,35,3,0,119,210,150,26,156,117,3,0,119,18,118,149,134,186,3,0,120,18,60,194,33,20,3,0,122,82,70,85,112,103,2,0,122,18,93,92,166,251,2,0,122,146,113,224,13,26,3,0,122,146,43,181,0,46,3,0,126,82,41,188,62,80,2,0,126,82,50,4,89,1,4,0,126,82,30,162,157,84,4,0,128,210,213,237,46,204,3,0,128,210,226,233,176,32,4,0,129,82,221,97,187,174,2,0,129,18,15,189,48,38,3,0,130,210,146,80,141,42,3,0,133,82,225,236,33,187,3,0,133,210,66,162,172,31,4,0,136,82,254,167,66,16,2,0,136,210,110,100,157,216,3,0,143,146,55,168,26,99,3,0,146,18,35,66,188,169,3,0,147,210,66,218,241,177,2,0,149,18,168,32,195,110,2,0,150,210,149,251,121,182,2,0,152,146,190,5,108,25,2,0,153,146,252,83,116,40,2,0,153,18,18,29,253,119,4,0,158,82,73,113,238,22,3,0,159,210,76,81,83,150,2,0,159,146,95,252,129,50,3,0,165,82,28,96,35,79,2,0,165,210,131,159,20,42,4,0,165,146,202,157,195,71,4,0,169,210,157,20,63,242,2,0,172,18,149,69,244,156,3,0,180,146,12,222,18,207,3,0,180,210,7,56,252,105,4,0,181,82,48,111,72,15,3,0,182,210,72,147,57,13,2,0,182,210,157,34,54,71,2,0,182,82,216,231,133,239,3,0,185,210,76,81,157,150,2,0,186,18,207,93,30,253,3,0,189,82,224,129,126,227,3,0,190,82,156,180,58,225,3,0,191,18,124,129,109,185,2,0,191,82,21,81,143,104,3,0,192,82,11,74,47,29,3,0,194,210,165,15,43,70,4,0,197,146,50,216,92,28,2,0,197,18,20,15,223,90,2,0,198,18,208,180,9,36,3,0,199,18,234,126,147,44,2,0,201,18,18,167,179,17,4,0,204,82,89,195,206,69,4,0,205,82,231,150,97,56,2,0,207,146,198,117,184,72,3,0,208,18,16,182,16,162,3,0,210,18,68,45,195,218,2,0,214,146,52,248,123,30,3,0,219,82,215,65,215,184,2,0,220,210,64,228,63,142,4,0,221,146,151,145,39,85,2,0,221,82,34,16,37,15,4,0,226,210,101,16,30,141,2,0,228,82,177,45,243,10,2,0,229,82,49,181,78,80,2,0,229,210,111,67,46,40,4,0,231,146,142,116,197,238,2,0,232,18,117,241,12,64,2,0,232,82,236,236,79,255,2,0,233,18,26,3,30,246,2,0,234,146,69,17,227,41,4,0,237,210,168,94,246,211,3,0,240,82,149,192,123,124,3,0,243,82,160,13,45,161,3,0,243,146,168,147,150,49,4,0,244,18,40,139,255,172,2,0,245,82,240,54,251,43,2,0,249,82,139,25,103,149,2,0,249,210,0,42,109,129,3,0,250,18,59,184,144,66,3,0,250,82,74,25,246,57,4,0,253,146,161,87,206,144,2,0,1,19,227,2,223,11,4,0,3,147,61,81,128,212,2,0,5,211,241,232,87,228,2,0,13,211,167,35,21,104,3,0,14,211,227,219,66,79,2,0,14,19,29,117,160,1,3,0,17,147,52,248,169,250,2,0,18,147,52,248,181,250,2,0,19,211,3,125,87,1,3,0,23,19,183,186,109,0,3,0,23,211,173,154,59,139,3,0,24,147,75,58,88,175,2,0,26,83,93,118,88,35,4,0,27,147,68,171,177,85,3,0,28,211,25,192,229,170,2,0,28,211,25,173,54,188,2,0,28,147,189,164,150,29,3,0,30,83,70,248,131,72,2,0,31,83,89,166,186,49,4,0,32,83,169,210,118,85,3,0,32,19,61,12,228,190,3,0,34,211,78,132,53,41,3,0,41,19,182,126,56,19,2,0,41,83,159,195,204,242,2,0,42,147,65,110,181,161,3,0,48,211,202,113,240,136,3,0,61,211,122,128,157,136,4,0,63,19,201,26,163,140,3,0,64,211,207,124,126,161,2,0,64,83,3,5,116,210,2,0,64,211,59,173,233,39,4,0,64,147,13,123,123,142,4,0,66,83,222,125,247,70,2,0,66,211,19,8,77,152,2,0,66,147,52,248,27,255,2,0,69,19,35,81,222,36,3,0,70,147,225,114,221,218,3,0,76,83,22,81,85,70,3,0,77,147,108,0,225,220,2,0,79,19,119,221,181,101,2,0,79,147,2,217,211,143,3,0,83,147,64,71,233,106,2,0,88,147,168,93,130,68,4,0,89,147,45,72,41,225,3,0,91,83,20,139,85,222,3,0,93,147,130,73,189,172,3,0,93,19,219,175,230,54,4,0,97,19,92,244,253,124,2,0,97,147,216,41,247,104,4,0,98,19,227,34,192,217,2,0,102,19,208,210,183,53,2,0,108,83,56,43,76,183,2,0,109,83,233,68,178,80,2,0,109,19,224,254,177,98,4,0,110,147,115,207,226,56,2,0,110,147,88,69,228,103,3,0,110,83,13,47,217,132,4,0,115,211,241,51,7,239,3,0,119,19,187,205,15,254,3,0,119,19,28,87,217,40,4,0,127,19,38,243,33,194,2,0,127,211,163,69,95,244,3,0,128,211,194,238,143,156,3,0,132,211,198,186,126,25,3,0,133,211,245,107,89,204,3,0,134,83,15,181,203,241,3,0,136,83,163,145,213,94,3,0,138,19,208,210,204,53,2,0,138,147,40,44,52,174,2,0,140,19,37,113,176,162,2,0,141,147,124,176,53,227,3,0,142,147,147,64,247,51,4,0,142,19,158,49,33,120,4,0,148,147,6,250,124,123,2,0,149,211,22,241,232,12,4,0,156,83,225,245,99,65,4,0,159,83,121,209,254,125,3,0,161,147,13,13,140,63,4,0,163,147,179,24,4,78,2,0,163,83,138,7,250,25,4,0,163,147,7,2,86,146,4,0,169,147,117,124,76,241,2,0,169,147,228,144,157,48,4,0,170,147,168,116,229,91,2,0,170,83,28,217,9,157,3,0,171,83,188,243,63,146,4,0,174,19,185,154,159,122,4,0,176,147,29,83,73,84,4,0,177,83,68,129,215,210,2,0,178,147,194,79,108,70,2,0,180,147,29,94,65,127,3,0,180,83,177,132,68,136,3,0,183,211,240,251,208,167,2,0,186,211,200,72,86,144,3,0,187,147,238,182,188,184,2,0,187,211,162,56,137,30,4,0,188,19,142,66,140,207,3,0,190,19,174,108,65,232,3,0,192,147,184,238,64,3,3,0,197,147,52,81,142,229,2,0,199,83,74,75,237,38,2,0,209,147,194,35,106,143,3,0,210,147,153,106,137,97,4,0,211,147,67,104,51,220,3,0,213,147,109,229,7,89,2,0,214,19,163,136,173,94,2,0,217,83,149,33,223,10,2,0,217,83,109,110,27,29,4,0,219,211,206,199,88,84,3,0,221,83,235,169,88,88,3,0,223,19,234,130,120,95,2,0,225,211,70,233,80,209,2,0,225,147,118,177,102,217,2,0,229,83,29,253,76,101,2,0,229,211,127,150,154,55,4,0,231,19,21,44,163,185,3,0,232,19,73,132,46,128,2,0,237,147,35,116,111,140,3,0,239,83,173,112,179,171,2,0,240,211,15,54,199,54,3,0,241,211,223,211,163,173,2,0,242,147,107,238,194,167,3,0,243,211,67,50,77,44,4,0,245,83,6,92,38,152,3,0,251,211,164,134,226,89,4,0,252,147,47,129,93,3,2,0,254,83,227,94,126,111,4,0,255,211,89,126,102,112,4,0,0,212,241,123,101,130,2,0,4,84,65,110,248,191,3,0,4,20,142,66,29,195,3,0,5,20,195,150,2,180,3,0,7,148,187,175,215,107,3,0,9,84,84,61,23,134,2,0,9,148,214,252,91,6,3,0,10,148,203,224,234,142,2,0,14,20,229,99,119,7,2,0,14,84,236,162,96,35,3,0,14,148,248,217,175,67,4,0,14,148,200,207,128,77,4,0,15,148,37,44,230,16,4,0,25,20,93,74,4,167,2,0,26,148,146,148,183,50,4,0,27,20,54,164,172,87,4,0,32,148,101,89,100,90,4,0,34,212,32,65,93,118,2,0,36,212,30,110,68,217,3,0,37,148,160,216,65,86,2,0,38,84,242,241,100,65,2,0,38,20,197,8,27,142,3,0,40,84,156,248,49,78,3,0,41,212,52,176,79,123,2,0,42,20,186,220,254,126,4,0,46,148,97,11,17,158,3,0,47,20,107,248,154,43,2,0,47,212,69,100,56,162,3,0,49,20,250,96,196,103,4,0,53,20,38,239,219,127,2,0,55,84,203,47,82,132,4,0,58,84,91,250,207,4,2,0,59,148,144,183,37,83,2,0,59,148,69,201,78,42,3,0,71,84,192,240,32,5,4,0,74,20,123,184,199,95,3,0,76,84,33,189,61,175,3,0,80,148,232,51,102,66,3,0,83,84,45,255,24,246,3,0,85,148,207,235,156,134,2,0,86,84,156,47,125,114,3,0,89,84,6,120,222,106,3,0,90,84,55,51,163,4,2,0,93,148,115,18,88,129,2,0,96,148,109,79,163,210,3,0,100,84,159,193,214,79,3,0,101,20,116,90,183,146,2,0,102,20,154,153,205,111,3,0,103,84,81,67,249,140,2,0,111,20,65,251,74,13,3,0,111,212,149,227,203,190,3,0,114,148,162,109,194,49,2,0,117,212,168,110,82,27,4,0,118,20,249,32,158,172,2,0,121,84,53,189,195,246,2,0,123,84,62,26,235,249,3,0,124,148,36,85,149,48,2,0,124,84,44,198,58,54,2,0,126,148,213,228,67,71,3,0,127,20,122,247,217,133,2,0,128,84,90,29,219,172,2,0,129,212,58,12,49,168,2,0,130,148,76,73,192,99,3,0,133,20,24,81,214,95,3,0,133,212,222,36,13,177,3,0,134,212,38,209,50,168,3,0,136,20,180,201,246,193,2,0,136,148,195,84,54,147,4,0,138,148,127,113,14,43,2,0,138,212,86,65,151,144,2,0,139,212,139,55,245,31,4,0,141,148,38,28,241,221,2,0,142,84,252,188,239,251,3,0,144,84,245,73,110,167,2,0,145,20,217,177,89,156,3,0,147,148,8,229,62,12,4,0,150,84,193,251,69,253,2,0,151,20,113,121,108,160,3,0,154,212,86,3,85,246,2,0,154,84,235,121,90,98,3,0,154,20,160,215,55,157,3,0,154,84,251,31,97,129,4,0,155,20,180,7,89,34,2,0,156,20,85,189,65,1,3,0,156,20,137,41,49,106,4,0,159,148,69,37,3,125,3,0,160,84,3,39,158,63,2,0,160,148,193,53,201,41,4,0,162,148,58,21,217,143,2,0,162,212,166,231,18,216,3,0,164,148,75,58,106,175,2,0,164,84,54,135,206,173,3,0,165,212,111,172,12,229,3,0,168,148,25,222,211,104,4,0,169,148,218,37,57,66,4,0,175,84,146,114,193,33,3,0,176,212,77,22,71,31,4,0,177,20,52,202,89,67,3,0,178,84,88,148,116,176,3,0,179,148,187,172,131,138,4,0,183,148,169,105,39,40,2,0,189,212,166,197,118,67,3,0,190,20,87,3,68,246,2,0,191,84,15,109,88,252,3,0,192,212,130,36,112,87,3,0,193,20,24,81,185,95,3,0,193,148,79,106,193,13,4,0,194,148,105,184,128,101,3,0,194,20,114,130,7,58,4,0,195,84,65,134,205,64,2,0,197,84,77,168,5,57,4,0,199,84,174,151,106,104,3,0,201,84,231,150,77,56,2,0,203,212,80,204,248,130,3,0,203,20,76,11,86,184,3,0,211,84,66,85,69,58,2,0,211,148,52,248,144,245,2,0,211,84,157,20,176,44,4,0,213,84,198,192,222,30,3,0,216,20,217,89,83,50,3,0,216,84,206,40,103,100,3,0,221,212,220,124,16,44,2,0,221,20,24,81,154,95,3,0,223,148,238,182,244,184,2,0,226,212,11,53,105,59,2,0,227,84,79,207,166,138,3,0,230,84,42,71,151,135,2,0,230,212,239,82,250,223,3,0,234,84,0,13,70,154,3,0,234,84,253,102,186,137,4,0,237,84,194,107,5,218,2,0,237,20,138,222,160,113,3,0,240,20,187,238,116,135,3,0,241,20,132,29,97,149,4,0,245,84,15,62,248,173,2,0,245,20,1,50,239,226,2,0,248,84,100,129,150,208,3,0,252,148,57,241,28,26,4,0,253,84,109,49,146,153,2,0,253,212,19,105,38,52,3,0,255,84,74,76,236,246,2,0,0,149,52,248,82,236,2,0,1,21,141,179,27,73,4,0,2,213,153,223,37,209,2,0,2,213,53,90,48,57,3,0,3,21,10,210,105,209,3,0,6,149,241,186,202,52,3,0,8,21,219,23,207,107,2,0,13,149,116,84,87,75,4,0,17,85,147,227,27,32,3,0,19,21,233,114,179,72,2,0,20,149,137,197,89,94,3,0,20,21,10,160,71,50,4,0,21,21,203,239,208,213,3,0,27,149,52,248,139,235,2,0,27,21,199,196,66,189,3,0,45,21,117,153,110,120,4,0,46,213,223,190,85,40,2,0,47,149,76,73,209,99,3,0,57,21,6,162,45,178,3,0,58,21,151,134,72,38,4,0,59,149,52,248,127,235,2,0,60,213,83,21,73,118,2,0,60,21,14,64,37,234,3,0,61,85,217,120,247,183,3,0,62,21,230,152,76,154,2,0,62,149,171,194,190,44,4,0,63,85,177,182,200,189,2,0,68,149,76,81,190,172,2,0,69,213,58,12,74,168,2,0,70,21,207,67,73,31,2,0,72,149,217,169,228,82,3,0,72,213,225,4,113,188,3,0,74,85,205,212,154,134,3,0,74,21,76,50,179,12,4,0,76,213,1,224,80,66,3,0,78,213,25,9,236,36,3,0,80,21,17,175,7,14,3,0,81,149,10,225,182,224,3,0,84,213,222,66,13,131,4,0,85,85,181,99,235,131,2,0,85,149,213,56,124,12,3,0,86,21,15,11,86,131,3,0,95,213,130,174,67,51,2,0,97,85,240,206,193,51,3,0,99,21,38,81,9,35,3,0,99,85,6,120,66,67,3,0,101,213,68,156,166,119,4,0,102,85,218,217,6,228,2,0,103,85,217,90,70,164,2,0,104,21,227,133,170,189,3,0,108,21,35,243,185,139,2,0,108,149,42,222,158,186,3,0,109,149,61,172,125,102,3,0,111,21,251,170,1,242,2,0,112,149,218,170,91,214,3,0,113,149,176,139,36,145,4,0,125,21,35,81,192,36,3,0,134,149,52,248,1,227,2,0,137,213,228,88,186,26,2,0,139,85,182,136,202,58,4,0,140,213,207,105,159,47,2,0,140,21,41,93,120,50,2,0,141,149,247,65,161,218,3,0,142,85,89,8,77,18,2,0,143,21,85,103,193,91,3,0,151,213,99,96,23,232,2,0,158,149,45,233,119,66,3,0,158,85,69,237,109,45,4,0,161,149,217,47,51,97,3,0,162,149,218,90,11,119,2,0,165,85,172,52,247,184,3,0,166,21,27,69,71,42,4,0,169,213,25,110,212,138,2,0,169,149,52,248,38,148,2,0,169,213,169,130,187,252,3,0,172,213,222,20,98,23,2,0,177,149,127,72,154,58,4,0,183,21,191,40,156,245,2,0,183,213,196,35,92,230,3,0,184,149,109,32,55,121,3,0,186,149,130,54,121,124,4,0,187,85,142,33,138,112,4,0,188,21,67,163,116,101,4,0,192,21,160,6,185,138,3,0,195,213,76,81,245,152,2,0,197,213,236,109,7,95,4,0,201,21,225,170,199,80,3,0,204,213,120,244,237,66,4,0,205,149,198,212,26,104,4,0,206,21,174,124,240,227,2,0,209,85,188,166,126,247,2,0,211,21,4,182,141,56,4,0,214,21,17,9,247,80,2,0,215,21,56,130,113,217,3,0,216,213,26,134,82,238,3,0,219,213,175,244,145,9,2,0,219,149,197,66,158,106,2,0,219,149,160,129,81,56,4,0,222,21,65,212,142,30,2,0,225,85,97,209,15,224,2,0,225,85,163,168,100,124,4,0,226,149,215,27,132,41,3,0,233,21,181,118,213,147,2,0,236,213,178,87,219,104,2,0,236,213,153,223,117,206,2,0,236,21,115,54,241,46,4,0,236,213,24,151,120,98,4,0,237,213,82,248,174,133,3,0,244,149,50,36,189,45,4,0,251,149,174,126,58,201,2,0,251,85,107,172,26,172,3,0,255,149,66,239,51,125,4,0,0,150,175,89,95,121,4,0,3,22,48,158,235,127,2,0,3,86,213,134,46,190,3,0,6,22,167,250,118,129,4,0,10,150,52,248,109,223,2,0,11,86,131,53,200,50,3,0,15,22,100,87,25,215,3,0,16,214,53,146,84,50,4,0,19,214,117,184,123,95,3,0,20,150,85,94,76,238,2,0,21,214,211,72,52,75,2,0,25,150,207,226,240,211,2,0,25,150,52,248,121,223,2,0,26,86,124,41,197,38,3,0,26,86,89,171,228,77,3,0,35,86,102,199,135,43,3,0,37,22,149,250,230,156,3,0,38,22,28,8,138,10,4,0,38,214,173,55,199,85,4,0,39,214,255,204,36,28,4,0,42,22,62,99,181,226,3,0,49,86,25,67,19,80,3,0,52,22,196,4,47,246,2,0,52,150,229,130,60,244,3,0,60,150,151,79,142,105,4,0,61,214,46,29,51,192,3,0,61,22,2,241,215,230,3,0,63,22,105,184,2,100,3,0,65,150,147,208,162,244,3,0,72,150,242,241,196,50,2,0,73,150,120,167,237,5,4,0,74,214,221,138,18,81,2,0,79,22,173,184,78,45,3,0,81,86,200,197,218,225,3,0,82,22,97,198,187,187,3,0,86,22,148,71,255,54,3,0,90,150,39,162,151,28,4,0,91,214,38,99,12,17,2,0,92,214,7,229,77,152,3,0,93,22,114,58,240,105,2,0,93,86,63,50,57,197,2,0,95,214,203,113,248,86,3,0,96,214,1,230,113,206,3,0,96,214,1,79,215,222,3,0,98,214,153,223,253,205,2,0,100,86,70,69,100,253,3,0,101,86,20,223,114,225,2,0,101,22,86,187,23,50,3,0,105,22,110,152,4,77,3,0,106,150,70,186,4,79,2,0,106,214,153,223,122,204,2,0,107,86,104,53,2,182,2,0,111,214,136,72,202,13,3,0,112,86,155,195,200,113,2,0,113,22,1,69,44,35,3,0,116,86,190,79,27,226,2,0,119,150,219,159,93,60,2,0,119,150,73,5,249,50,4,0,122,22,44,120,105,1,3,0,123,86,238,104,149,50,4,0,125,22,11,43,175,53,3,0,125,22,202,84,107,122,3,0,130,214,6,242,102,195,2,0,131,86,202,126,201,24,2,0,133,86,109,252,152,0,3,0,135,214,168,224,189,56,4,0,138,22,135,161,179,124,3,0,139,22,10,206,6,83,3,0,140,22,96,22,119,211,2,0,140,214,214,25,152,195,3,0,145,150,13,49,40,213,2,0,147,86,169,97,141,5,2,0,148,214,16,212,84,166,2,0,148,86,230,47,151,114,3,0,151,22,110,105,151,206,2,0,151,150,52,248,27,222,2,0,153,150,13,70,69,77,2,0,157,86,237,246,14,126,4,0,158,86,171,34,145,114,2,0,158,150,14,49,202,213,2,0,160,150,186,81,5,205,3,0,161,150,52,248,217,221,2,0,162,150,43,81,231,247,2,0,163,214,4,173,217,21,3,0,167,86,6,75,200,123,4,0,169,22,12,140,228,185,2,0,170,22,51,240,192,1,4,0,171,214,39,81,125,19,3,0,174,86,202,252,192,248,2,0,176,150,79,59,232,240,2,0,176,214,188,186,21,137,3,0,179,150,68,155,34,118,3,0,179,86,41,160,206,96,4,0,183,22,221,68,169,139,2,0,183,150,52,248,229,221,2,0,183,214,39,81,41,17,3,0,183,22,150,101,108,219,3,0,187,150,243,32,100,241,3,0,187,86,65,163,141,72,4,0,188,86,98,216,43,28,2,0,188,214,120,242,168,30,4,0,189,86,217,90,46,164,2,0,191,86,161,169,36,41,3,0,193,150,66,65,252,84,2,0,193,86,60,227,249,203,3,0,195,214,134,209,193,34,2,0,197,150,50,189,211,226,2,0,197,214,147,152,221,18,3,0,197,214,123,184,57,90,3,0,198,214,204,235,229,174,2,0,201,22,9,174,198,235,2,0,205,22,131,67,16,20,2,0,210,22,82,56,185,228,3,0,211,22,64,151,201,111,2,0,216,22,196,135,97,93,3,0,222,22,255,79,5,73,4,0,223,22,194,90,123,49,3,0,224,150,5,139,234,14,4,0,229,22,43,166,137,75,2,0,229,22,152,32,99,74,4,0,230,86,171,17,247,131,2,0,230,214,211,150,113,235,3,0,233,86,142,24,218,175,3,0,235,150,126,38,219,46,4,0,239,150,95,52,66,94,3,0,241,214,54,81,211,223,2,0,243,150,17,193,161,54,4,0,244,86,126,98,109,142,2,0,245,214,74,203,32,6,4,0,246,150,220,5,49,77,2,0,250,22,153,223,197,39,3,0,253,22,130,36,252,16,3,0,253,150,47,2,126,162,3,0,0,151,46,173,17,56,3,0,6,215,130,146,29,228,2,0,7,87,189,17,141,23,2,0,11,87,83,185,93,118,3,0,13,23,245,15,169,147,3,0,17,23,232,113,104,227,2,0,18,151,52,248,105,206,2,0,18,23,21,41,92,3,3,0,22,151,52,248,50,209,2,0,23,87,182,176,15,4,3,0,25,87,169,42,194,184,3,0,29,151,12,191,245,41,2,0,31,151,9,113,113,127,3,0,32,23,160,227,13,255,3,0,33,87,137,234,233,161,3,0,34,151,52,248,89,212,2,0,34,215,24,95,238,246,3,0,35,23,62,157,251,169,3,0,35,151,87,59,193,67,4,0,36,87,58,176,14,122,2,0,37,215,71,208,95,45,2,0,40,215,94,57,195,125,2,0,42,87,117,159,135,133,2,0,44,23,9,243,124,175,2,0,44,215,80,5,230,45,3,0,46,151,128,182,187,9,3,0,49,151,195,237,46,4,2,0,49,87,60,143,150,103,2,0,52,23,237,48,231,6,4,0,52,151,71,28,72,121,4,0,54,151,185,28,80,46,2,0,55,23,28,210,192,11,2,0,62,87,209,240,106,108,2,0,62,215,253,53,99,8,3,0,63,23,76,216,189,209,2,0,63,23,35,168,149,139,4,0,66,23,48,114,127,146,4,0,71,151,231,150,13,57,2,0,71,23,34,57,7,249,3,0,75,87,21,41,145,11,4,0,76,151,82,255,245,112,2,0,79,151,23,81,164,100,3,0,83,151,105,212,3,63,2,0,83,23,29,101,143,107,4,0,84,23,250,132,229,55,3,0,85,215,23,81,125,98,3,0,87,215,199,10,142,226,2,0,87,151,56,106,235,159,3,0,87,215,38,47,62,11,4,0,88,215,133,109,96,66,4,0,90,215,181,150,32,239,2,0,91,215,30,165,115,28,2,0,92,87,178,186,232,254,2,0,92,151,163,211,204,144,4,0,96,151,172,95,201,1,3,0,98,87,81,243,53,50,4,0,101,23,130,199,183,6,2,0,101,87,14,139,253,61,3,0,104,23,143,120,229,52,3,0,104,23,129,207,218,163,3,0,109,87,101,16,38,15,3,0,111,215,209,183,207,249,3,0,112,23,237,17,111,21,4,0,113,87,113,247,127,9,2,0,118,215,25,20,174,135,3,0,120,151,52,248,142,212,2,0,120,87,10,144,248,134,4,0,121,215,81,108,25,239,3,0,124,87,12,10,41,48,2,0,126,215,186,214,118,26,4,0,128,151,179,182,49,249,3,0,131,23,147,251,179,58,4,0,133,215,166,127,117,164,2,0,133,87,61,254,4,23,3,0,133,23,144,162,26,141,3,0,134,151,15,229,174,225,3,0,136,215,203,255,135,165,2,0,136,87,164,103,85,250,2,0,137,215,63,94,191,142,2,0,137,215,127,91,112,128,3,0,137,151,163,74,70,207,3,0,139,23,19,62,39,199,3,0,139,215,170,50,82,149,4,0,142,23,135,67,187,147,3,0,143,215,81,82,90,52,2,0,148,215,5,63,183,59,3,0,149,151,28,12,40,4,4,0,150,215,64,196,228,143,3,0,154,215,228,54,251,98,2,0,156,215,47,145,120,38,2,0,156,23,159,114,192,143,2,0,157,215,216,245,211,51,3,0,158,151,60,115,80,245,3,0,161,87,192,19,242,110,2,0,162,151,213,70,4,76,4,0,163,215,228,196,63,248,2,0,163,87,227,41,151,248,2,0,163,151,56,51,20,126,3,0,164,151,122,49,255,111,4,0,166,215,36,167,91,138,3,0,166,23,109,29,133,175,3,0,171,151,119,122,48,82,2,0,175,23,114,88,228,51,2,0,177,87,36,121,212,86,2,0,181,215,126,142,176,37,2,0,181,87,248,145,80,33,4,0,191,23,177,126,146,22,2,0,193,23,26,253,212,26,3,0,195,23,222,146,100,38,3,0,196,215,231,186,207,28,3,0,200,151,3,245,229,128,3,0,201,151,231,190,63,191,2,0,202,87,85,2,36,187,2,0,202,215,99,102,203,64,4,0,203,87,254,149,162,17,4,0,205,87,53,165,154,141,3,0,206,151,227,164,114,117,2,0,208,151,99,26,211,75,2,0,210,87,193,79,8,21,2,0,212,87,205,47,110,104,4,0,212,151,5,58,234,130,4,0,214,87,152,137,66,65,4,0,216,151,251,183,33,26,3,0,217,23,101,133,155,212,3,0,228,151,178,191,12,65,3,0,232,215,138,145,51,104,3,0,239,215,241,230,255,79,3,0,244,87,12,93,249,55,2,0,244,215,226,138,84,142,4,0,250,87,76,193,247,197,2,0,253,151,54,136,143,159,2,0,253,23,139,119,188,206,3,0,3,88,164,36,122,88,3,0,9,24,64,182,239,17,2,0,9,88,62,102,220,147,4,0,10,88,161,203,242,41,4,0,11,88,169,116,196,117,3,0,12,152,173,19,142,37,3,0,12,152,173,19,197,37,3,0,12,152,173,19,220,37,3,0,12,152,173,19,253,37,3,0,12,152,173,19,23,38,3,0,12,88,129,67,204,139,3,0,14,152,31,54,59,209,3,0,15,216,64,37,9,233,3,0,20,24,118,39,17,19,4,0,24,216,251,236,48,116,2,0,28,88,25,184,54,32,4,0,31,216,114,109,77,216,3,0,32,152,128,182,55,9,3,0,35,152,201,91,37,20,2,0,35,216,121,210,128,74,4,0,39,152,31,195,173,114,2,0,39,88,79,218,251,60,4,0,41,24,104,62,155,90,2,0,41,88,39,197,179,86,3,0,45,216,208,114,216,134,2,0,54,216,221,40,88,130,2,0,66,152,25,11,139,236,3,0,72,24,73,75,5,8,2,0,72,24,46,249,248,109,4,0,73,216,178,115,141,87,2,0,76,152,121,137,71,41,3,0,81,216,134,75,204,164,3,0,89,216,199,7,62,132,4,0,94,24,105,184,17,100,3,0,94,152,161,48,230,134,4,0,98,88,133,161,98,119,4,0,103,216,91,241,134,193,3,0,104,24,41,166,160,22,2,0,108,216,142,240,133,219,2,0,109,24,136,73,169,139,4,0,113,216,108,253,147,80,2,0,113,24,223,83,224,120,2,0,113,152,255,63,106,114,4,0,114,24,116,37,30,51,4,0,114,152,23,92,158,79,4,0,115,88,22,10,19,125,4,0,116,152,5,234,205,237,3,0,118,152,191,226,199,90,3,0,119,152,173,140,32,6,3,0,120,24,5,232,6,25,3,0,121,152,38,60,146,84,3,0,122,24,171,144,8,34,2,0,122,152,4,195,206,186,2,0,122,216,123,184,184,90,3,0,123,216,37,36,126,166,3,0,125,216,99,87,45,215,3,0,130,152,246,209,102,95,2,0,130,88,209,47,160,76,4,0,130,88,209,47,173,76,4,0,130,88,209,47,193,76,4,0,131,88,200,191,60,21,3,0,132,24,210,235,37,152,2,0,132,24,241,94,152,14,3,0,132,88,209,47,74,75,4,0,134,88,154,234,55,111,2,0,136,216,165,111,244,39,2,0,138,88,248,61,0,111,4,0,140,216,95,126,176,40,3,0,141,24,97,162,135,238,2,0,146,88,40,91,110,96,3,0,149,88,55,232,91,17,3,0,150,24,77,71,136,76,2,0,150,216,125,67,90,2,3,0,152,152,149,120,95,131,4,0,160,24,196,176,70,30,4,0,165,88,13,74,234,43,3,0,166,24,192,251,181,136,3,0,168,24,229,187,34,5,2,0,169,216,88,102,234,132,4,0,173,24,130,112,103,107,4,0,173,24,109,53,131,114,4,0,175,24,165,169,166,96,3,0,175,24,27,226,243,157,3,0,176,24,247,94,127,115,4,0,178,216,193,14,69,136,2,0,180,24,156,12,195,119,3,0,183,88,205,154,122,19,2,0,183,88,216,238,35,5,3,0,183,152,103,149,66,206,3,0,186,152,145,6,126,20,3,0,188,88,24,163,214,39,4,0,195,88,8,104,43,132,2,0,200,24,178,144,206,157,2,0,204,88,210,199,35,194,3,0,205,152,97,247,160,218,2,0,209,24,113,60,176,207,2,0,214,216,182,186,137,0,3,0,215,24,53,120,184,1,3,0,216,152,202,161,66,190,3,0,220,152,147,28,87,242,3,0,220,24,51,111,188,7,4,0,223,216,79,35,60,144,4,0,226,152,51,59,179,148,4,0,227,216,52,74,239,99,3,0,230,216,40,13,122,29,2,0,232,88,28,153,15,132,4,0,240,24,122,206,47,66,2,0,241,152,197,237,35,117,2,0,242,88,99,149,214,122,4,0,245,152,112,99,99,123,4,0,247,88,195,13,30,166,3,0,249,152,118,227,95,190,3,0,253,216,197,8,6,142,3,0,0,25,87,63,10,29,4,0,2,25,188,186,175,7,3,0,2,153,118,49,177,70,3,0,5,89,138,149,154,77,2,0,8,217,136,15,20,40,4,0,9,89,149,46,235,124,4,0,11,217,241,34,162,179,3,0,11,25,50,83,114,145,4,0,14,153,62,167,91,204,2,0,14,217,133,144,33,208,2,0,14,153,59,99,104,17,4,0,17,25,21,33,204,87,2,0,25,89,243,175,254,175,3,0,29,25,168,240,245,1,4,0,34,89,101,155,209,49,4,0,36,25,53,116,139,6,4,0,39,25,110,105,167,206,2,0,39,89,182,77,3,251,2,0,39,25,206,119,179,237,3,0,48,25,59,121,88,122,3,0,48,25,188,189,252,145,3,0,48,89,100,30,225,119,4,0,49,25,110,237,133,132,2,0,50,153,151,122,210,82,4,0,52,89,158,188,11,229,2,0,53,153,152,143,149,228,3,0,53,217,194,8,36,127,4,0,57,89,111,116,177,57,3,0,57,89,232,241,2,47,4,0,59,153,161,109,255,172,3,0,62,217,149,217,167,90,4,0,62,25,159,147,179,152,4,0,64,217,165,83,39,191,3,0,66,25,101,186,150,30,3,0,69,89,3,143,99,46,3,0,70,25,64,68,183,96,2,0,81,153,201,17,79,215,3,0,82,25,69,210,42,37,4,0,84,25,58,59,84,60,4,0,86,89,3,33,162,168,3,0,90,153,247,187,159,246,2,0,95,89,191,203,111,60,3,0,95,217,103,148,155,16,4,0,98,89,164,155,156,12,2,0,98,89,124,130,101,21,2,0,105,153,214,23,61,7,4,0,106,153,102,155,49,253,2,0,106,25,21,209,160,71,4,0,107,153,245,61,122,24,2,0,114,153,210,200,220,69,4,0,119,217,4,19,146,140,4,0,121,25,31,229,134,77,2,0,121,25,196,100,33,238,3,0,124,153,143,127,105,92,4,0,126,153,218,242,167,75,2,0,129,89,62,189,15,101,2,0,130,217,153,223,25,211,2,0,133,217,201,42,250,87,4,0,137,217,145,33,37,252,3,0,137,89,87,1,239,55,4,0,141,25,106,174,153,129,2,0,143,89,100,21,244,85,2,0,147,89,10,203,5,146,2,0,148,89,178,199,41,74,2,0,148,89,161,81,175,128,2,0,150,217,26,177,24,189,2,0,152,153,52,248,61,204,2,0,158,217,153,223,114,209,2,0,160,89,143,155,224,144,4,0,163,153,233,109,138,125,3,0,164,89,144,132,22,125,2,0,165,89,196,44,89,209,3,0,166,153,71,164,183,205,2,0,167,25,232,230,137,29,2,0,170,153,11,196,145,174,3,0,170,153,111,9,33,66,4,0,171,217,46,197,175,79,2,0,173,153,120,130,227,59,2,0,176,153,115,200,63,235,2,0,176,153,59,184,52,58,3,0,181,25,241,4,114,220,3,0,184,25,227,247,27,247,3,0,185,217,6,236,177,120,2,0,189,89,85,71,239,102,4,0,191,217,236,144,62,62,3,0,191,153,66,221,42,160,3,0,192,25,127,44,236,80,4,0,194,25,132,239,25,129,2,0,194,217,35,250,57,39,3,0,195,89,43,193,203,120,2,0,196,153,42,110,57,70,4,0,196,217,213,115,61,152,4,0,198,217,122,77,190,150,2,0,202,153,58,24,225,108,2,0,202,153,200,127,218,90,3,0,203,153,152,99,144,143,2,0,203,217,108,110,167,149,3,0,204,217,207,169,142,116,2,0,204,217,194,94,186,116,2,0,204,89,150,40,65,193,2,0,207,25,57,66,132,230,2,0,211,217,44,226,117,237,3,0,214,217,54,115,56,35,2,0,214,25,181,67,236,178,3,0,215,89,19,195,33,113,4,0,218,25,96,223,220,204,2,0,219,153,113,120,10,159,3,0,221,153,162,116,118,85,2,0,223,153,59,132,56,13,3,0,223,217,243,17,178,143,4,0,224,25,124,184,155,87,3,0,226,25,27,248,171,27,4,0,228,25,62,231,56,110,4,0,231,89,20,150,245,144,3,0,234,153,210,131,105,44,3,0,235,25,146,58,255,233,2,0,239,89,229,167,80,74,4,0,240,89,146,156,90,44,2,0,240,25,211,72,44,200,2,0,240,153,147,249,191,59,4,0,242,25,57,150,130,235,3,0,244,153,179,229,141,240,3,0,245,25,145,16,202,123,2,0,248,217,86,83,69,34,4,0,249,89,154,32,227,19,2,0,250,25,22,115,76,38,3,0,251,153,221,187,4,27,3,0,5,154,240,189,214,103,2,0,6,90,247,239,160,157,3,0,6,26,80,30,143,118,4,0,8,154,28,200,181,120,3,0,10,154,236,109,70,40,4,0,11,218,139,78,28,57,3,0,14,26,145,42,41,64,4,0,17,154,232,242,41,50,3,0,17,218,198,95,243,166,3,0,19,154,117,138,177,239,3,0,20,154,95,8,252,164,3,0,24,218,224,244,150,157,3,0,26,218,208,203,124,93,2,0,26,154,187,185,87,252,2,0,26,90,224,227,88,58,3,0,26,90,21,48,110,118,4,0,27,154,143,8,133,44,3,0,29,218,19,131,243,238,3,0,30,218,123,57,143,137,2,0,30,154,242,211,100,83,3,0,31,218,81,152,34,9,4,0,38,26,40,167,178,100,3,0,38,218,10,254,250,116,3,0,39,218,47,81,124,246,2,0,39,154,193,189,140,100,3,0,41,26,189,185,195,80,2,0,42,90,200,114,94,55,2,0,47,218,236,175,160,110,4,0,52,218,6,45,128,51,4,0,55,26,105,64,26,110,2,0,55,154,27,236,98,26,3,0,56,154,52,248,94,153,2,0,56,154,78,36,153,236,2,0,56,90,89,128,79,53,3,0,57,218,10,110,7,178,2,0,58,26,101,186,165,30,3,0,59,26,107,246,65,137,3,0,60,154,120,86,219,62,2,0,60,218,149,227,183,193,3,0,60,26,38,85,73,92,4,0,63,26,62,27,183,70,4,0,64,218,118,120,176,238,2,0,64,90,118,199,208,42,4,0,65,90,130,85,57,82,4,0,66,90,73,70,189,225,3,0,66,26,107,74,23,67,4,0,67,90,138,231,175,129,2,0,68,218,105,27,198,246,3,0,69,90,104,136,87,7,4,0,71,26,164,244,15,64,3,0,71,26,19,225,196,156,3,0,74,218,26,177,175,188,2,0,76,26,19,180,73,181,3,0,81,218,153,223,159,211,2,0,83,26,8,37,27,119,2,0,83,26,204,226,117,136,2,0,84,154,77,107,108,78,4,0,88,154,21,240,254,254,3,0,92,154,4,192,236,202,2,0,92,218,23,176,106,30,3,0,93,90,32,123,166,64,3,0,94,154,69,206,39,27,2,0,99,218,85,125,51,87,3,0,100,218,180,159,207,93,4,0,101,90,22,81,40,66,3,0,102,218,68,93,82,4,2,0,103,90,90,29,10,174,2,0,104,154,52,248,108,148,2,0,104,154,252,140,171,82,4,0,105,26,218,200,118,189,3,0,105,26,241,93,180,133,4,0,107,154,52,248,96,148,2,0,108,26,210,80,133,17,2,0,109,218,152,12,221,93,4,0,112,90,115,229,36,109,2,0,112,218,98,211,28,78,4,0,113,154,119,17,80,86,2,0,117,218,78,28,237,163,3,0,121,218,207,23,145,109,2,0,123,218,166,78,44,127,3,0,123,218,92,232,136,148,3,0,125,26,215,236,40,111,3,0,125,90,133,171,238,118,4,0,136,90,45,25,187,138,4,0,140,218,152,223,216,100,3,0,140,154,79,88,155,167,3,0,141,26,165,83,17,138,3,0,142,90,26,31,185,9,2,0,142,26,143,189,248,45,2,0,142,154,175,192,84,97,4,0,144,154,133,232,57,218,3,0,147,90,125,91,167,70,4,0,151,154,64,0,16,135,3,0,153,154,236,22,214,31,2,0,153,90,96,27,80,117,4,0,158,26,44,132,218,24,3,0,159,90,58,96,158,161,3,0,160,26,211,169,197,133,2,0,161,90,50,230,27,135,4,0,172,26,66,55,253,23,2,0,172,90,186,160,193,126,2,0,176,154,14,13,112,36,2,0,178,218,126,48,190,68,4,0,179,26,50,10,69,57,3,0,179,90,231,78,235,2,4,0,183,218,112,223,175,28,2,0,183,218,154,23,178,65,2,0,187,154,137,172,144,74,4,0,189,26,189,121,95,220,3,0,195,154,165,215,174,66,2,0,197,218,9,73,52,25,4,0,199,218,224,61,60,61,2,0,201,154,249,126,22,49,2,0,201,218,146,132,191,236,2,0,202,26,138,222,218,248,2,0,203,90,138,63,188,104,2,0,203,26,24,81,7,92,3,0,204,26,139,224,159,158,3,0,207,218,139,78,8,57,3,0,208,154,33,15,6,126,2,0,208,90,150,217,211,90,4,0,210,90,209,47,61,75,4,0,211,218,3,132,47,116,3,0,213,218,20,224,211,194,2,0,213,26,193,245,114,244,2,0,213,154,230,176,78,19,4,0,216,218,240,140,121,173,2,0,217,90,75,97,64,73,3,0,217,26,194,248,217,106,4,0,217,90,97,255,166,108,4,0,218,218,149,24,226,188,2,0,218,218,120,50,5,237,2,0,219,218,69,92,101,26,4,0,224,154,33,15,171,124,2,0,227,90,76,130,185,78,3,0,228,154,231,172,116,56,4,0,230,154,42,201,50,152,3,0,236,154,21,125,193,187,2,0,236,218,147,41,15,62,3,0,236,26,241,57,134,96,4,0,239,26,237,41,193,75,2,0,243,218,91,133,0,96,3,0,245,26,141,252,41,67,4,0,245,26,188,186,232,122,4,0,247,26,5,74,212,170,2,0,247,26,174,45,197,185,2,0,247,154,223,208,146,135,4,0,248,154,139,20,155,147,2,0,251,218,196,9,157,61,3,0,252,26,191,236,116,171,3,0,254,90,202,120,252,79,2,0,0,91,76,81,88,195,2,0,1,155,125,54,43,49,2,0,2,219,99,18,9,141,2,0,4,27,121,176,233,125,3,0,6,27,145,0,51,129,2,0,7,91,77,178,87,102,3,0,7,91,198,156,65,147,3,0,7,91,6,75,183,123,4,0,9,91,80,175,155,44,4,0,11,27,179,167,65,186,2,0,13,155,74,174,14,144,3,0,13,27,76,60,23,106,4,0,15,219,65,122,165,228,2,0,17,155,26,95,177,129,4,0,22,27,235,97,73,222,2,0,23,91,184,91,196,21,3,0,24,219,152,223,20,101,3,0,35,91,31,97,146,217,2,0,40,155,162,142,84,108,4,0,41,91,49,144,223,50,2,0,42,155,63,219,95,22,3,0,42,91,183,165,131,140,3,0,44,219,44,140,66,56,4,0,46,219,153,23,93,128,3,0,52,27,137,168,163,19,2,0,52,91,79,72,206,229,3,0,54,27,162,142,165,89,3,0,55,91,111,84,244,11,4,0,56,27,99,223,232,28,4,0,57,155,150,110,111,116,2,0,59,27,18,56,46,106,2,0,64,27,158,50,104,82,2,0,64,27,162,35,81,140,3,0,65,27,221,196,197,133,3,0,65,27,139,224,141,158,3,0,66,91,165,82,86,186,3,0,74,155,128,87,136,231,3,0,76,27,19,223,135,105,3,0,84,91,76,81,73,196,2,0,84,219,115,180,186,194,3,0,85,91,170,41,147,176,3,0,87,91,45,189,145,24,2,0,90,219,90,41,149,173,3,0,92,155,236,63,181,11,3,0,93,91,37,114,2,181,2,0,94,27,156,223,25,148,2,0,99,219,103,67,230,78,4,0,102,27,155,64,84,180,2,0,102,219,182,233,114,14,4,0,105,219,178,227,42,33,3,0,105,155,24,238,183,99,4,0,105,27,37,159,239,101,4,0,110,91,164,155,169,12,2,0,111,219,253,229,77,28,4,0,113,27,80,171,184,212,3,0,114,27,239,157,206,98,2,0,114,91,104,120,155,101,2,0,114,27,75,39,116,151,3,0,116,91,115,132,169,88,3,0,117,155,193,16,90,151,3,0,119,27,13,162,41,193,2,0,121,219,21,18,160,211,3,0,123,91,151,63,66,191,3,0,124,219,237,240,69,6,2,0,127,27,174,196,115,115,3,0,134,91,125,53,175,50,2,0,135,219,30,95,106,144,2,0,136,219,159,85,195,115,4,0,141,219,152,223,226,99,3,0,142,219,153,223,14,212,2,0,145,27,91,15,208,66,3,0,147,27,178,192,75,91,4,0,152,91,15,31,86,60,3,0,152,219,207,101,91,136,4,0,157,155,7,120,113,246,3,0,160,219,15,1,110,68,2,0,161,91,164,155,237,12,2,0,161,91,37,94,166,147,2,0,163,91,150,146,60,10,3,0,164,219,125,64,170,130,2,0,167,27,17,95,69,61,4,0,170,91,106,134,251,224,2,0,179,27,10,63,172,46,3,0,180,219,61,185,238,41,3,0,180,155,25,163,197,250,3,0,182,155,3,63,170,33,2,0,183,219,204,180,16,46,3,0,186,155,5,119,192,75,4,0,190,155,167,152,148,6,3,0,190,91,247,143,71,12,3,0,190,155,138,81,89,17,4,0,191,91,247,143,88,12,3,0,198,219,152,223,165,99,3,0,204,27,155,165,89,107,3,0,205,27,221,194,230,23,4,0,209,91,230,29,10,33,3,0,210,219,226,88,140,14,4,0,212,27,5,3,16,93,2,0,213,219,55,152,67,126,2,0,213,91,120,58,230,204,3,0,219,27,192,89,123,41,2,0,220,155,26,254,202,20,4,0,221,27,74,128,166,19,3,0,223,155,2,100,99,117,2,0,223,155,233,67,58,124,4,0,225,91,5,72,152,42,2,0,225,91,34,185,157,205,3,0,227,155,88,169,48,228,2,0,229,155,97,102,64,233,2,0,230,219,71,27,94,128,2,0,230,219,222,244,22,154,3,0,237,27,21,181,72,20,2,0,237,219,63,173,134,252,2,0,238,27,100,176,99,161,2,0,238,219,81,222,176,142,3,0,239,219,123,243,15,58,3,0,240,219,239,131,101,40,2,0,241,155,210,126,48,23,2,0,242,91,194,188,86,20,4,0,245,155,85,142,84,91,3,0,248,155,135,30,98,237,3,0,250,91,50,12,102,187,3,0,253,219,90,220,213,29,4,0,0,28,142,131,163,59,2,0,1,220,96,111,106,8,2,0,10,28,3,22,158,50,2,0,13,156,187,124,236,10,4,0,16,28,36,31,195,47,3,0,23,92,75,29,253,174,2,0,26,28,63,119,229,65,4,0,29,92,218,159,183,20,3,0,29,220,224,168,11,143,4,0,31,156,44,81,56,250,2,0,34,156,225,30,100,71,4,0,37,28,174,121,214,160,2,0,39,220,142,251,141,131,2,0,42,28,217,107,41,11,3,0,54,220,128,68,32,249,3,0,55,28,68,12,235,187,3,0,57,28,184,239,134,13,4,0,61,220,169,246,125,66,4,0,64,156,181,110,39,222,2,0,64,156,51,31,251,24,4,0,67,220,146,103,131,108,4,0,70,28,238,165,213,34,2,0,70,28,120,1,105,118,2,0,70,28,0,113,33,214,2,0,73,220,132,59,155,130,2,0,78,220,217,130,249,127,2,0,78,92,177,255,155,39,3,0,82,156,71,241,232,113,3,0,84,220,253,29,223,40,3,0,85,92,134,143,219,85,3,0,87,156,189,79,254,223,2,0,88,92,178,247,86,27,2,0,91,92,196,170,137,5,3,0,93,156,97,11,107,158,3,0,94,28,73,134,7,137,3,0,96,156,93,135,98,208,3,0,97,220,13,81,243,15,2,0,99,156,58,182,205,62,2,0,101,220,155,68,212,221,3,0,103,28,24,81,49,88,3,0,105,220,153,223,1,212,2,0,105,156,225,110,41,74,4,0,106,156,80,198,155,41,3,0,107,92,243,85,123,42,2,0,109,28,97,222,0,80,4,0,110,28,100,115,67,251,3,0,111,220,179,191,205,176,2,0,112,28,153,223,70,36,3,0,115,92,163,45,134,167,3,0,120,92,252,122,154,247,3,0,123,92,73,185,13,152,3,0,125,92,95,238,235,95,2,0,127,92,44,215,157,129,4,0,128,92,22,81,250,49,3,0,128,156,180,14,13,54,3,0,130,156,77,22,144,209,2,0,134,28,230,242,235,51,3,0,135,220,197,217,5,145,3,0,137,220,238,133,133,122,3,0,138,28,33,81,231,35,3,0,139,28,211,124,169,141,3,0,141,220,157,85,192,147,4,0,142,220,207,136,33,134,4,0,147,156,216,219,182,53,4,0,147,92,0,138,190,152,4,0,149,92,165,155,114,29,3,0,151,28,11,165,81,231,2,0,157,28,184,61,177,202,2,0,162,92,227,186,36,251,2,0,164,92,44,163,100,48,3,0,164,92,60,155,246,73,4,0,169,28,245,158,186,155,3,0,169,92,221,46,93,126,4,0,173,156,206,218,74,220,2,0,176,156,81,67,212,196,2,0,179,28,121,69,224,184,3,0,181,220,19,81,246,102,3,0,182,92,253,22,145,71,3,0,184,156,207,90,31,46,2,0,188,92,74,192,119,109,2,0,192,156,245,11,101,211,3,0,195,156,235,105,186,100,2,0,196,28,96,184,212,211,3,0,197,156,237,81,198,12,2,0,197,28,163,19,8,238,3,0,197,28,58,64,20,108,4,0,199,156,27,236,114,26,3,0,199,156,127,95,232,79,4,0,204,28,29,118,179,122,3,0,205,220,109,171,154,130,3,0,206,156,67,111,106,9,2,0,206,92,185,234,57,117,2,0,206,92,112,100,90,162,3,0,211,220,138,64,124,110,4,0,212,156,232,93,151,254,3,0,215,92,148,234,82,86,4,0,225,28,87,110,55,76,2,0,225,156,10,23,45,189,2,0,225,220,250,86,248,82,4,0,227,220,162,105,95,15,3,0,229,220,107,68,15,66,2,0,230,28,24,81,45,85,3,0,231,28,59,85,62,241,3,0,232,92,115,75,24,87,4,0,237,28,141,185,110,69,2,0,237,28,38,219,163,10,4,0,240,156,1,150,3,149,3,0,245,156,174,70,233,169,2,0,255,28,6,72,1,135,2,0,0,221,132,18,216,4,3,0,5,221,111,162,80,142,2,0,5,157,201,135,244,77,3,0,6,93,139,16,234,4,3,0,13,29,154,207,68,14,3,0,20,29,132,201,184,92,3,0,21,157,130,39,30,129,3,0,25,93,234,130,233,165,3,0,28,29,90,148,83,250,3,0,32,221,255,172,121,73,2,0,35,93,246,97,107,105,4,0,38,29,57,54,190,7,3,0,38,29,249,252,156,79,3,0,39,93,136,207,189,140,4,0,42,221,181,28,2,207,2,0,42,29,221,201,178,114,3,0,43,29,160,177,159,41,4,0,50,157,168,234,157,111,2,0,50,157,168,234,173,111,2,0,60,157,166,201,108,42,3,0,63,221,123,67,117,56,2,0,63,29,223,121,206,247,2,0,65,93,20,108,41,78,4,0,66,221,135,129,70,229,3,0,70,93,164,114,231,254,3,0,71,93,13,133,109,81,2,0,71,221,129,150,120,96,2,0,73,157,57,108,24,83,3,0,73,29,150,18,142,110,4,0,74,157,199,193,182,15,4,0,79,157,70,178,62,102,3,0,85,221,37,35,177,160,3,0,86,157,7,75,54,112,2,0,86,29,7,109,46,210,3,0,94,29,158,163,155,40,4,0,95,221,153,227,243,68,4,0,96,93,57,35,98,248,2,0,96,221,133,105,217,134,3,0,97,221,39,52,199,233,3,0,99,221,104,170,247,158,2,0,101,221,52,4,206,21,2,0,101,221,110,184,247,92,2,0,102,221,123,143,217,42,3,0,103,221,188,31,56,183,3,0,104,157,71,135,204,254,2,0,105,29,165,65,0,4,2,0,106,29,246,208,0,70,2,0,107,157,170,32,186,87,2,0,109,29,174,105,209,117,3,0,110,221,200,156,69,114,4,0,117,93,229,217,66,166,2,0,117,29,174,217,241,178,2,0,118,157,56,45,149,124,2,0,121,221,218,246,90,105,4,0,123,93,130,253,160,13,3,0,124,29,64,144,19,195,2,0,124,221,216,23,204,6,4,0,129,29,205,4,69,12,2,0,132,29,168,146,207,132,4,0,137,29,243,163,173,32,3,0,139,29,183,34,144,16,2,0,139,157,169,204,96,104,4,0,139,157,152,125,191,105,4,0,139,157,15,135,217,110,4,0,140,157,5,69,128,64,2,0,145,29,220,196,224,144,2,0,153,157,228,187,115,126,3,0,153,221,224,168,28,143,4,0,155,221,52,4,224,18,2,0,155,221,57,49,29,221,2,0,158,29,97,142,191,211,2,0,161,157,114,243,44,243,3,0,162,221,100,253,56,15,3,0,165,29,0,224,60,64,3,0,166,93,252,34,200,148,2,0,166,93,140,77,10,113,3,0,168,93,219,47,37,125,2,0,169,93,255,149,124,50,4,0,172,157,203,97,140,200,2,0,172,29,13,116,179,163,3,0,172,29,141,76,150,184,3,0,173,29,184,135,133,204,3,0,174,93,44,215,226,208,3,0,175,221,101,150,214,8,4,0,176,29,0,188,114,90,3,0,183,157,61,82,113,113,3,0,184,29,190,82,220,96,3,0,186,221,16,7,141,25,2,0,189,29,81,20,16,30,4,0,192,29,24,65,193,205,3,0,194,157,92,149,192,30,4,0,195,29,156,90,6,149,4,0,198,93,128,184,184,102,3,0,199,29,226,69,178,95,4,0,201,93,251,43,69,212,2,0,208,221,152,223,17,96,3,0,208,29,161,132,248,17,4,0,210,157,16,216,74,131,4,0,212,221,71,39,214,244,2,0,212,29,125,54,161,137,4,0,214,29,149,230,53,149,2,0,218,221,195,38,87,206,2,0,219,157,50,209,78,72,4,0,220,221,76,75,242,154,2,0,220,93,114,253,190,87,3,0,222,93,98,244,170,132,3,0,228,29,56,59,179,240,2,0,229,157,60,98,253,65,4,0,232,29,233,144,157,133,3,0,238,221,141,90,90,62,3,0,239,29,202,128,249,33,2,0,239,29,62,51,166,252,2,0,241,29,249,143,6,84,3,0,242,221,227,60,17,70,2,0,243,221,198,40,143,86,2,0,245,29,68,176,183,35,3,0,249,157,143,196,142,21,4,0,251,157,169,203,223,197,2,0,252,29,111,49,99,189,2,0,252,221,172,189,128,207,2,0,252,29,185,14,39,20,4,0,254,157,220,57,218,25,3,0,254,157,186,148,151,188,3,0,1,158,45,252,75,211,2,0,2,30,64,63,230,118,2,0,2,94,196,255,178,218,2,0,5,94,14,178,160,66,4,0,10,158,182,120,159,206,3,0,11,158,154,37,194,195,2,0,19,94,221,173,121,100,4,0,22,158,221,129,45,137,3,0,23,94,8,22,216,20,2,0,27,158,251,48,206,9,2,0,28,222,27,212,91,41,3,0,32,30,96,130,142,18,3,0,36,94,33,154,87,232,3,0,38,94,99,177,50,51,4,0,41,94,251,167,15,145,4,0,42,94,214,111,208,56,4,0,45,222,152,223,188,84,3,0,47,222,144,153,207,142,4,0,49,30,52,40,160,140,4,0,50,30,87,122,89,32,4,0,52,158,133,253,52,14,3,0,55,30,248,254,207,119,3,0,56,30,46,240,79,0,4,0,57,222,14,223,62,209,2,0,62,94,227,186,21,251,2,0,65,158,66,14,54,34,4,0,66,158,149,243,75,5,4,0,68,222,41,202,246,7,2,0,68,222,7,182,186,16,3,0,68,158,179,209,206,23,4,0,73,158,44,135,143,149,4,0,76,30,239,47,232,37,2,0,77,222,93,144,158,124,3,0,77,30,193,116,136,83,4,0,78,222,89,135,202,109,2,0,79,94,11,216,69,228,3,0,79,158,42,100,97,231,3,0,80,158,98,75,207,137,3,0,82,222,160,210,160,49,2,0,82,158,228,53,43,171,3,0,83,158,230,4,225,192,2,0,85,222,182,51,55,201,3,0,85,158,56,239,122,127,4,0,86,222,122,29,57,9,4,0,87,158,119,113,126,21,4,0,89,94,172,122,4,165,2,0,90,222,123,184,248,91,3,0,90,222,164,114,149,90,4,0,91,30,97,27,132,215,3,0,91,30,114,189,6,221,3,0,92,30,7,64,222,246,3,0,95,30,244,83,132,134,3,0,95,94,185,37,4,196,3,0,95,30,163,56,140,79,4,0,98,94,242,169,201,84,3,0,100,222,7,193,241,54,2,0,103,158,9,159,211,42,2,0,104,30,196,246,199,221,2,0,105,222,5,20,52,195,3,0,105,30,199,68,228,49,4,0,109,30,33,50,227,201,2,0,110,158,179,22,26,146,4,0,111,94,24,81,94,79,3,0,111,222,234,196,211,145,3,0,112,222,8,55,98,138,4,0,113,222,158,27,10,85,4,0,115,158,146,184,231,71,3,0,116,222,215,230,204,116,3,0,126,94,59,81,140,222,2,0,127,222,203,230,138,80,4,0,128,158,128,220,160,176,3,0,128,158,231,248,94,120,4,0,129,94,76,3,145,92,2,0,131,30,253,137,39,133,2,0,132,94,192,172,90,218,3,0,133,222,26,65,218,0,4,0,136,222,232,196,241,139,4,0,137,222,234,147,17,59,4,0,137,158,97,55,199,118,4,0,140,158,163,2,206,191,2,0,149,222,120,255,160,248,3,0,150,30,14,186,31,77,2,0,151,30,123,184,191,174,3,0,155,30,194,88,38,25,3,0,155,94,14,86,167,107,4,0,160,94,246,44,69,76,2,0,160,30,54,14,123,140,2,0,160,94,241,158,209,214,2,0,169,222,153,158,34,117,4,0,174,158,123,0,139,88,4,0,174,158,152,12,35,114,4,0,175,158,43,175,228,83,4,0,177,30,80,46,16,197,3,0,178,94,203,189,74,141,4,0,184,94,147,20,2,211,2,0,185,222,22,61,53,255,3,0,187,158,24,183,48,48,3,0,191,30,162,210,163,165,3,0,193,222,3,76,172,47,3,0,194,158,143,68,155,15,3,0,194,30,188,64,152,249,3,0,194,222,143,216,183,51,4,0,196,158,249,45,105,38,2,0,202,222,235,239,100,71,2,0,202,94,252,34,221,148,2,0,202,222,15,81,49,224,3,0,205,30,167,81,133,244,2,0,205,94,106,136,143,90,3,0,207,94,105,83,40,197,3,0,211,94,231,239,112,81,4,0,214,158,229,181,26,120,3,0,221,30,246,121,4,142,4,0,223,158,115,210,190,255,3,0,227,94,228,29,179,5,2,0,227,94,71,82,241,22,2,0,229,222,213,135,48,61,2,0,230,30,81,170,74,83,3,0,233,30,154,219,45,78,2,0,233,158,27,129,243,204,2,0,235,30,188,189,38,211,2,0,235,222,133,184,213,77,3,0,246,94,59,184,8,50,3,0,246,94,119,163,98,173,3,0,247,158,13,184,183,28,3,0,249,94,124,24,128,188,2,0,250,158,251,131,245,29,2,0,250,158,24,236,17,46,4,0,253,222,109,233,30,170,3,0,5,95,5,19,201,201,3,0,6,159,33,170,104,88,3,0,6,95,31,45,48,228,3,0,7,95,79,79,58,0,4,0,7,31,253,37,89,14,4,0,11,31,145,76,130,106,4,0,19,159,95,140,51,229,3,0,21,95,65,79,207,83,3,0,23,223,52,4,104,14,2,0,23,95,145,59,216,145,4,0,24,159,221,110,186,31,2,0,26,31,102,191,159,47,4,0,26,223,200,106,234,114,4,0,27,223,28,74,193,134,3,0,27,223,103,91,3,119,4,0,28,223,127,190,102,176,2,0,28,223,216,242,101,184,3,0,29,31,220,111,191,10,4,0,30,95,144,169,103,50,2,0,30,159,34,147,183,111,3,0,33,31,60,224,180,127,2,0,36,31,255,46,28,105,2,0,36,159,200,234,134,111,2,0,38,95,236,61,61,128,4,0,40,159,227,119,79,248,3,0,41,95,36,149,187,182,2,0,43,31,56,32,244,148,4,0,45,223,254,94,109,23,2,0,45,31,84,110,150,209,3,0,46,31,138,255,132,141,2,0,48,159,138,20,39,147,2,0,48,159,32,237,29,108,3,0,51,159,26,108,209,71,3,0,52,31,87,234,205,124,2,0,52,31,121,137,153,242,3,0,57,95,132,102,15,62,2,0,64,223,0,188,16,56,4,0,70,31,201,44,131,69,4,0,71,95,28,136,20,16,4,0,72,95,40,35,81,180,3,0,75,95,72,217,222,238,3,0,76,31,172,74,76,120,3,0,79,223,9,89,168,15,4,0,80,31,190,186,41,13,3,0,82,95,182,77,120,93,3,0,84,31,105,206,224,52,2,0,88,95,49,108,140,126,2,0,89,223,11,174,173,107,2,0,90,223,236,139,188,93,2,0,91,95,102,63,178,80,4,0,92,95,14,40,93,185,3,0,95,223,229,190,194,142,4,0,97,31,54,159,184,167,2,0,97,223,98,177,203,143,4,0,101,31,102,0,80,119,2,0,102,95,58,12,7,169,2,0,103,223,209,219,199,252,3,0,107,31,24,81,216,93,3,0,108,95,73,164,38,97,2,0,108,223,24,101,219,148,3,0,110,95,159,42,77,9,3,0,110,223,126,228,254,196,3,0,113,159,31,38,107,255,3,0,116,31,128,145,8,134,2,0,117,31,157,87,118,17,4,0,118,159,214,140,175,145,2,0,122,95,12,192,110,28,4,0,126,31,90,127,1,128,4,0,127,31,78,143,154,125,2,0,129,31,247,132,66,142,2,0,132,95,181,58,153,141,2,0,134,95,93,14,49,64,2,0,134,159,7,160,101,37,4,0,134,31,26,125,205,98,4,0,134,223,177,71,36,100,4,0,136,95,23,167,228,57,4,0,139,31,130,38,52,159,2,0,139,159,237,44,240,202,3,0,142,159,250,39,239,36,2,0,146,31,193,132,178,47,2,0,146,159,202,3,161,34,4,0,151,95,81,245,215,21,4,0,151,159,69,130,109,85,4,0,152,95,184,0,179,34,4,0,155,31,207,87,210,227,2,0,160,31,83,186,1,28,2,0,162,31,89,244,152,94,4,0,165,159,149,215,21,74,3,0,166,223,149,131,120,184,2,0,167,223,17,223,27,122,2,0,169,159,190,166,66,101,3,0,171,159,139,164,87,69,2,0,175,223,19,252,135,195,2,0,180,95,194,51,167,121,2,0,181,223,124,51,142,46,4,0,182,95,124,32,130,180,2,0,183,159,192,99,92,131,2,0,184,95,126,133,121,62,4,0,186,223,22,91,153,163,2,0,186,95,33,227,12,37,3,0,189,159,122,154,154,113,4,0,192,31,184,73,95,238,2,0,195,223,204,133,235,6,3,0,198,95,15,65,85,19,2,0,204,31,181,248,16,24,2,0,204,223,152,223,200,77,3,0,205,31,5,130,196,19,3,0,205,159,3,143,78,141,3,0,205,223,223,128,252,6,4,0,205,223,39,109,1,147,4,0,206,159,132,115,77,127,2,0,209,223,103,129,223,20,4,0,213,223,15,220,225,249,2,0,216,95,87,132,158,8,2,0,217,223,153,223,96,219,2,0,217,159,56,186,86,27,3,0,220,31,87,41,197,2,3,0,223,223,212,53,136,197,2,0,223,31,145,22,230,97,4,0,224,95,59,184,246,48,3,0,230,223,108,104,47,120,4,0,231,159,76,81,47,181,2,0,233,223,87,2,104,196,3,0,235,223,10,15,169,200,2,0,235,31,78,147,56,33,4,0,236,159,160,17,41,233,2,0,236,95,66,54,215,200,3,0,237,31,84,80,213,110,3,0,237,159,26,98,18,208,3,0,241,159,29,172,62,131,2,0,241,159,140,19,116,226,2,0,242,223,117,191,230,47,3,0,244,95,221,239,59,45,4,0,246,223,52,4,57,12,2,0,248,223,227,219,221,104,3,0,253,159,40,20,156,246,3,0,4,96,206,69,195,148,4,0,6,32,99,237,129,55,3,0,6,32,3,109,1,99,4,0,9,32,200,36,199,67,2,0,9,32,102,15,232,114,2,0,10,160,30,138,193,135,4,0,11,96,193,198,68,89,2,0,13,224,123,246,162,91,4,0,15,160,54,81,204,222,2,0,16,224,211,192,218,140,3,0,20,160,218,92,194,100,3,0,24,224,203,207,106,153,2,0,26,96,21,197,100,177,3,0,30,96,153,58,154,201,2,0,37,224,104,4,3,107,3,0,38,96,125,170,225,175,2,0,39,32,101,122,216,2,2,0,39,224,25,252,62,28,2,0,41,32,250,122,204,16,4,0,42,224,110,252,97,255,2,0,44,160,113,234,215,151,4,0,46,32,245,210,183,29,4,0,50,96,216,145,243,2,2,0,50,96,115,112,104,94,2,0,53,32,50,109,72,149,3,0,58,96,16,158,112,20,2,0,59,96,255,38,19,164,3,0,62,96,24,81,241,101,3,0,63,32,90,193,119,195,2,0,65,96,26,147,114,78,2,0,65,96,219,205,136,136,2,0,66,224,26,177,61,190,2,0,68,224,201,199,112,97,3,0,72,32,33,188,151,235,2,0,72,96,57,28,136,63,3,0,75,160,48,69,249,108,4,0,81,224,70,206,250,76,4,0,82,96,239,187,15,246,2,0,83,96,211,65,154,105,2,0,85,224,249,162,11,252,2,0,86,96,78,226,50,159,3,0,87,32,166,166,204,27,3,0,88,224,198,69,126,205,3,0,90,96,103,131,250,83,4,0,91,224,115,90,124,196,2,0,91,160,8,214,58,30,4,0,91,160,113,225,164,85,4,0,93,224,102,209,122,30,4,0,97,32,37,109,186,8,2,0,105,160,205,150,203,209,3,0,108,96,10,34,203,97,2,0,110,96,219,22,98,28,3,0,110,96,13,149,253,192,3,0,111,32,57,14,200,225,3,0,112,224,169,214,53,124,3,0,116,224,123,147,97,147,2,0,116,32,72,134,4,13,3,0,117,224,232,62,210,137,4,0,118,32,142,223,75,105,3,0,118,224,237,244,134,178,3,0,120,32,37,155,206,193,3,0,123,160,201,137,198,4,4,0,124,96,231,47,92,65,3,0,124,32,23,35,137,128,4,0,127,96,181,213,34,111,4,0,128,96,170,201,231,155,3,0,130,32,59,184,238,61,3,0,132,224,5,63,229,208,2,0,133,160,104,212,33,104,2,0,137,32,53,117,131,239,2,0,137,96,16,42,159,207,3,0,140,96,68,244,78,166,3,0,141,224,96,198,252,0,3,0,143,96,64,46,77,10,3,0,143,160,161,22,2,41,4,0,150,160,112,83,236,255,2,0,151,224,118,175,72,52,2,0,158,224,189,114,128,9,4,0,161,160,172,109,136,62,3,0,164,32,159,202,11,248,3,0,165,32,205,90,151,122,2,0,166,32,93,20,85,117,2,0,166,160,18,254,101,54,4,0,170,32,6,48,225,206,2,0,172,160,83,79,149,55,3,0,173,224,152,223,88,74,3,0,179,96,60,203,20,240,3,0,183,160,20,125,16,128,4,0,185,96,252,216,38,244,3,0,192,224,79,217,111,11,3,0,193,32,47,164,55,23,3,0,195,224,219,241,111,82,4,0,199,224,25,1,195,46,2,0,200,224,64,246,250,123,2,0,200,32,30,195,186,69,4,0,203,160,177,211,55,60,2,0,203,96,104,67,234,141,4,0,204,224,76,46,231,49,3,0,204,160,136,218,181,211,3,0,205,32,6,129,194,54,2,0,205,96,133,201,28,129,4,0,207,224,100,162,221,238,2,0,208,160,140,32,87,58,2,0,211,32,44,81,17,250,2,0,212,224,152,223,63,77,3,0,215,96,18,201,218,112,4,0,216,224,54,156,215,154,3,0,216,160,145,171,253,136,4,0,217,224,152,192,237,235,3,0,218,224,193,146,122,177,3,0,220,224,11,11,88,145,3,0,222,160,16,180,205,22,4,0,223,224,115,65,142,130,2,0,224,32,170,100,78,196,3,0,225,224,101,67,123,85,4,0,226,96,19,5,201,74,2,0,227,224,61,172,141,102,3,0,230,32,202,162,171,223,3,0,231,32,15,192,245,198,2,0,232,160,52,52,120,133,2,0,233,32,219,58,53,46,2,0,233,160,123,204,147,68,2,0,234,224,29,152,88,82,2,0,241,224,12,146,81,92,3,0,247,160,113,200,130,251,3,0,248,32,65,123,124,115,2,0,248,224,148,144,222,155,2,0,248,160,111,57,211,198,3,0,250,96,208,47,22,153,4,0,251,160,89,11,107,99,3,0,253,224,174,19,99,63,3,0,0,97,34,58,97,79,2,0,1,225,65,77,117,147,2,0,1,161,213,232,234,21,3,0,7,225,55,116,33,193,3,0,9,33,155,87,82,215,2,0,12,161,226,211,109,25,3,0,21,97,45,28,59,155,2,0,26,161,193,235,21,90,4,0,31,225,134,72,225,48,4,0,34,33,89,135,115,20,4,0,35,225,134,87,246,239,3,0,36,33,82,159,170,82,3,0,40,225,152,223,112,102,3,0,42,97,105,104,29,159,3,0,43,161,223,115,213,132,2,0,46,33,47,166,242,151,3,0,47,161,142,16,251,28,2,0,47,97,40,84,135,25,4,0,50,33,39,199,140,95,2,0,52,161,120,62,212,159,3,0,53,161,209,217,178,185,3,0,54,225,156,237,163,191,3,0,54,97,177,187,73,96,4,0,56,161,236,169,232,88,3,0,57,97,24,81,227,101,3,0,58,97,161,57,147,13,2,0,62,225,195,130,115,4,3,0,62,97,114,178,173,219,3,0,63,33,116,146,36,77,4,0,64,225,76,1,136,134,2,0,64,225,204,97,31,250,2,0,65,33,138,181,195,239,3,0,67,161,145,184,16,102,3,0,67,225,248,208,140,22,4,0,68,225,85,244,139,19,3,0,71,33,155,142,161,197,2,0,71,161,14,169,180,142,4,0,73,33,69,223,79,46,3,0,73,97,18,197,58,95,4,0,74,225,77,25,119,239,3,0,75,161,63,213,244,197,3,0,76,225,130,15,240,236,2,0,78,161,138,30,68,168,3,0,84,225,68,211,96,120,3,0,86,161,15,248,39,173,2,0,92,97,214,177,104,243,3,0,98,97,194,26,36,93,4,0,100,161,248,104,157,97,3,0,103,97,232,152,159,191,2,0,103,33,166,155,178,148,3,0,103,97,189,197,122,158,3,0,103,97,204,103,27,97,4,0,112,97,26,113,152,239,2,0,114,97,187,238,34,36,4,0,116,97,134,184,189,76,3,0,120,225,118,26,21,44,4,0,120,161,157,18,4,132,4,0,125,161,50,124,36,50,4,0,126,225,212,224,5,11,2,0,128,225,59,221,245,116,2,0,130,97,95,77,136,148,2,0,130,97,135,47,217,123,4,0,135,161,114,207,7,77,4,0,137,225,107,231,20,153,2,0,141,225,95,93,228,203,3,0,144,97,93,15,168,152,3,0,145,225,149,19,153,22,3,0,146,33,45,110,126,35,2,0,146,97,103,99,162,133,4,0,149,97,151,223,16,74,4,0,155,33,61,81,154,212,2,0,161,97,30,45,195,30,2,0,166,225,56,18,253,199,2,0,167,225,39,81,137,23,3,0,169,225,86,240,230,76,4,0,171,225,103,136,16,106,3,0,178,161,109,148,44,70,2,0,178,33,49,214,47,55,3,0,179,97,153,219,150,74,3,0,180,161,59,81,246,208,2,0,180,97,126,133,107,62,4,0,181,225,80,246,159,177,3,0,185,161,224,95,98,106,4,0,187,225,116,13,98,39,2,0,192,97,166,239,142,241,2,0,192,33,129,60,192,21,4,0,195,225,192,5,0,143,2,0,195,97,159,122,124,213,3,0,197,225,41,81,144,250,2,0,201,225,37,171,61,141,2,0,205,161,53,23,255,75,2,0,205,225,118,72,78,225,3,0,207,33,161,201,162,100,4,0,210,161,176,44,132,232,3,0,212,161,205,168,245,35,3,0,213,225,6,177,213,72,2,0,215,161,240,85,6,20,3,0,215,225,129,243,67,47,3,0,216,161,120,118,123,172,3,0,217,97,142,48,176,11,4,0,218,225,29,68,244,70,4,0,219,97,233,197,35,55,2,0,219,161,16,175,173,51,3,0,220,33,197,46,237,160,2,0,221,33,142,160,226,26,4,0,225,33,31,183,197,25,3,0,227,225,70,108,173,209,2,0,230,97,18,192,164,171,2,0,232,97,14,94,157,49,3,0,240,225,240,67,7,120,3,0,246,225,138,38,145,71,2,0,246,161,4,223,71,170,3,0,246,161,4,223,98,170,3,0,246,161,4,223,119,170,3,0,246,161,4,223,186,150,4,0,247,225,5,129,172,54,2,0,251,161,72,218,77,3,2,0,254,33,246,124,235,140,2,0,255,97,42,31,92,205,2,0,255,225,89,71,53,13,4,0,1,34,100,68,4,167,3,0,3,34,10,219,114,7,4,0,3,34,129,5,204,40,4,0,4,226,222,176,224,213,3,0,5,226,97,78,125,43,4,0,9,226,131,5,2,66,3,0,9,162,25,80,175,45,4,0,16,226,153,223,143,221,2,0,25,98,205,7,246,42,2,0,25,226,201,49,167,74,2,0,28,98,189,40,35,87,2,0,29,226,58,11,226,80,2,0,31,162,227,200,96,152,3,0,32,226,180,234,247,125,2,0,44,34,198,18,204,19,2,0,44,98,98,60,93,143,2,0,44,34,171,84,0,127,3,0,46,226,61,81,185,221,2,0,46,226,0,35,100,93,4,0,49,226,186,120,137,56,3,0,54,34,240,241,235,84,3,0,59,162,1,37,20,172,2,0,60,98,61,10,219,56,3,0,60,162,185,0,128,169,3,0,61,98,5,39,22,27,3,0,61,34,130,63,7,121,3,0,66,98,201,126,85,15,2,0,74,34,187,21,3,160,2,0,75,162,147,64,135,204,2,0,77,162,108,3,233,162,3,0,79,226,15,70,67,87,4,0,80,226,205,16,61,73,2,0,84,34,119,139,45,88,4,0,88,162,23,120,182,74,2,0,90,162,9,9,201,23,2,0,97,226,130,6,214,132,3,0,101,226,207,188,240,233,2,0,106,98,178,87,39,39,3,0,110,34,11,110,232,224,2,0,111,98,136,30,14,92,2,0,112,98,245,81,43,195,2,0,113,34,177,18,151,10,3,0,113,226,81,45,195,189,3,0,115,98,30,60,175,25,2,0,116,98,188,251,33,253,2,0,119,34,178,7,167,62,3,0,127,162,185,97,213,47,2,0,127,98,214,216,102,9,4,0,135,226,153,83,107,125,4,0,144,226,153,223,50,221,2,0,148,226,201,229,100,36,3,0,149,226,92,254,179,241,3,0,150,226,128,132,95,199,3,0,153,162,192,39,10,216,2,0,154,226,83,152,2,251,3,0,161,34,142,67,184,214,2,0,162,162,152,27,129,128,2,0,163,34,68,72,19,33,4,0,164,226,102,15,141,71,4,0,167,226,199,251,23,203,3,0,169,98,55,84,101,24,2,0,169,34,187,253,79,22,3,0,170,162,143,197,158,128,3,0,172,98,168,155,205,194,3,0,174,98,224,154,133,84,4,0,179,162,90,190,16,231,2,0,194,34,213,193,71,133,4,0,195,162,72,72,106,33,4,0,196,34,189,26,15,213,3,0,196,98,156,192,152,69,4,0,197,162,254,7,130,206,2,0,198,98,147,45,250,71,4,0,199,34,112,240,182,69,2,0,199,226,13,205,55,21,4,0,200,34,99,1,204,205,2,0,204,226,120,172,29,189,3,0,205,34,48,81,243,245,2,0,205,162,93,200,66,43,3,0,205,98,8,228,71,148,4,0,206,226,143,48,47,101,3,0,207,98,68,147,157,37,4,0,208,226,103,144,26,134,3,0,209,226,121,160,167,49,4,0,210,162,84,168,233,191,2,0,211,98,158,186,225,160,3,0,212,98,123,211,171,236,2,0,219,226,61,240,253,192,2,0,219,226,248,186,242,210,3,0,220,162,145,222,212,13,4,0,221,34,57,66,59,230,2,0,224,226,190,51,154,65,3,0,226,98,88,58,234,211,3,0,228,226,207,188,184,232,2,0,228,162,191,53,161,166,3,0,230,98,40,79,94,34,4,0,230,226,21,78,120,133,4,0,232,162,219,13,93,167,3,0,232,226,14,199,135,226,3,0,233,34,123,35,174,216,2,0,236,98,19,231,79,129,4,0,240,34,44,124,136,52,4,0,243,162,105,36,172,255,3,0,244,34,69,60,159,75,3,0,244,226,84,62,11,48,4,0,245,98,42,8,72,26,2,0,248,34,92,202,107,86,2,0,249,226,83,113,78,131,2,0,251,98,216,185,146,157,2,0,251,226,183,5,254,37,4,0,253,34,133,46,232,52,4,0,254,162,60,83,100,91,4,0,255,162,221,8,125,79,2,0,0,35,123,19,109,16,3,0,2,227,22,137,246,42,4,0,5,99,149,126,123,53,3,0,6,163,28,48,59,245,3,0,9,163,1,113,18,15,4,0,9,99,11,88,128,19,4,0,14,99,221,159,240,18,4,0,15,163,102,19,12,18,4,0,18,35,121,5,194,194,2,0,20,99,200,114,157,55,2,0,21,35,39,223,95,199,2,0,22,99,206,168,2,117,2,0,23,227,5,21,194,63,4,0,29,35,124,26,212,187,2,0,30,163,55,21,103,202,2,0,31,163,122,92,22,13,3,0,36,163,113,212,154,143,3,0,38,227,242,12,240,185,3,0,44,227,93,42,208,35,2,0,44,99,45,248,210,174,2,0,45,99,10,10,37,69,2,0,46,227,183,173,20,39,3,0,54,227,73,75,24,63,4,0,56,163,181,43,53,113,4,0,58,163,252,95,102,53,3,0,58,99,103,140,236,181,3,0,59,35,231,150,143,56,2,0,62,35,205,237,70,167,2,0,64,163,163,104,178,63,2,0,67,227,161,76,78,57,2,0,73,35,187,253,115,22,3,0,77,227,112,242,8,127,2,0,78,99,132,166,60,122,2,0,81,35,194,105,94,110,2,0,85,163,12,82,235,230,3,0,93,227,55,116,19,193,3,0,93,163,180,58,238,94,4,0,97,227,216,135,206,37,4,0,100,227,79,217,172,10,3,0,104,227,183,85,7,136,2,0,107,99,45,134,3,179,2,0,107,35,167,210,100,85,3,0,109,35,18,223,106,124,3,0,109,227,75,51,15,91,4,0,109,99,185,39,56,141,4,0,113,35,220,248,197,131,4,0,116,163,175,251,249,205,3,0,116,99,11,48,254,106,4,0,120,35,42,116,60,252,2,0,122,99,100,54,92,17,2,0,123,35,164,155,183,16,2,0,124,99,146,100,239,171,3,0,124,227,187,204,62,60,4,0,125,163,168,90,189,153,3,0,128,227,185,195,99,170,2,0,130,35,12,237,212,115,2,0,130,35,5,212,138,1,3,0,131,227,4,176,71,81,2,0,132,227,159,209,176,55,2,0,133,163,60,157,145,99,4,0,135,163,73,209,135,62,4,0,137,35,248,176,115,75,2,0,143,227,223,144,17,103,3,0,144,227,36,155,111,205,2,0,146,163,23,192,7,158,2,0,146,163,139,52,58,252,3,0,146,99,167,203,234,84,4,0,151,99,66,199,130,76,3,0,153,163,93,120,155,238,2,0,153,227,141,253,216,53,3,0,157,99,12,20,78,55,4,0,160,99,136,8,112,67,4,0,162,227,12,162,204,44,4,0,166,227,253,63,63,66,2,0,166,163,223,200,66,164,3,0,168,35,106,0,176,75,4,0,172,99,150,31,108,252,3,0,175,99,240,245,134,122,4,0,179,163,95,77,175,46,4,0,185,35,206,41,210,39,3,0,185,227,225,183,90,12,4,0,187,163,76,185,144,121,2,0,187,163,134,190,224,189,3,0,189,99,131,247,41,32,4,0,191,227,103,87,174,103,2,0,193,227,50,117,4,71,2,0,193,163,24,186,42,236,2,0,197,35,177,45,205,163,2,0,197,35,106,186,90,31,3,0,198,163,39,81,95,10,3,0,199,163,89,122,202,152,2,0,200,163,222,67,92,223,2,0,201,227,184,218,247,146,2,0,201,99,237,145,49,148,4,0,206,99,108,24,170,229,2,0,206,227,124,149,23,202,3,0,208,227,91,111,86,187,3,0,211,163,96,230,232,115,2,0,213,99,7,110,53,143,2,0,214,163,82,239,199,41,2,0,215,35,92,143,56,165,3,0,217,227,201,236,13,130,2,0,217,163,205,164,55,187,3,0,217,35,13,124,240,123,4,0,219,35,112,226,153,64,4,0,220,227,245,184,121,122,4,0,223,163,198,183,115,45,3,0,224,227,32,229,83,87,2,0,225,35,164,155,34,16,2,0,226,35,187,253,42,22,3,0,226,99,153,38,250,114,4,0,227,163,152,160,118,54,3,0,232,163,84,156,1,15,2,0,233,227,179,3,115,170,2,0,233,163,151,16,53,151,3,0,233,163,71,132,130,34,4,0,236,99,233,118,240,239,2,0,237,35,78,17,94,151,4,0,239,99,181,83,134,46,2,0,239,163,186,54,63,221,2,0,239,99,190,2,237,140,3,0,239,35,58,230,178,213,3,0,239,227,89,216,225,71,4,0,241,163,176,5,162,251,3,0,242,163,63,140,231,83,2,0,242,163,197,207,132,139,2,0,243,163,233,60,208,206,2,0,243,35,212,27,44,226,2,0,245,227,217,42,230,72,2,0,251,227,205,229,8,68,4,0,255,163,97,58,251,84,4,0,0,36,115,243,183,144,3,0,1,164,153,223,26,227,2,0,3,100,229,41,117,216,3,0,4,164,254,226,59,70,2,0,7,100,118,179,75,50,2,0,7,164,147,59,118,3,4,0,10,228,93,89,7,247,2,0,20,164,153,223,13,227,2,0,21,100,156,245,45,147,3,0,22,100,171,14,28,47,2,0,22,228,81,32,29,151,2,0,25,100,94,149,20,65,2,0,26,36,220,6,240,248,3,0,29,228,123,200,174,23,2,0,29,164,90,160,18,73,2,0,30,36,18,174,83,21,2,0,30,36,70,115,165,123,4,0,31,36,237,199,193,160,3,0,33,228,172,1,186,200,2,0,34,36,146,195,180,27,2,0,34,36,66,149,139,108,3,0,37,36,198,237,248,89,3,0,38,164,198,94,73,161,2,0,39,100,251,222,42,18,4,0,40,36,238,236,64,97,2,0,41,100,134,149,14,245,2,0,44,36,117,96,141,154,3,0,54,228,131,168,199,95,4,0,55,100,41,173,123,196,3,0,55,228,210,190,177,10,4,0,56,228,39,81,187,23,3,0,58,36,245,146,241,30,3,0,59,100,128,210,85,11,2,0,59,36,204,235,26,145,2,0,60,36,168,102,30,245,3,0,62,36,56,128,212,47,3,0,63,100,187,84,226,30,2,0,63,36,106,129,0,145,2,0,65,164,204,168,60,249,3,0,68,228,19,192,26,178,2,0,69,100,195,186,40,23,3,0,69,100,66,129,17,252,3,0,70,100,106,243,132,165,3,0,72,36,127,195,187,156,2,0,72,100,28,123,115,77,3,0,73,36,184,145,23,124,2,0,78,228,248,235,131,16,3,0,78,164,80,80,242,63,3,0,78,36,151,47,229,92,4,0,80,228,250,73,231,74,4,0,82,36,20,228,96,31,2,0,84,36,251,86,238,111,3,0,85,164,106,252,125,221,2,0,85,164,68,231,5,24,4,0,85,36,49,221,157,109,4,0,86,36,208,120,56,40,2,0,87,228,71,121,129,44,4,0,88,228,2,215,18,42,3,0,89,228,242,114,56,227,2,0,89,164,208,194,192,110,3,0,91,36,73,32,50,111,4,0,92,228,196,220,158,126,3,0,98,228,193,172,23,142,2,0,101,36,60,37,187,42,4,0,105,100,185,234,166,117,2,0,105,100,197,173,175,117,3,0,105,36,201,117,136,249,3,0,110,100,246,195,244,90,3,0,110,36,3,214,98,139,3,0,115,36,24,28,203,138,4,0,118,164,189,188,167,115,4,0,121,100,206,113,160,86,3,0,122,228,143,201,194,6,3,0,124,164,15,150,229,82,4,0,126,36,164,216,182,110,2,0,131,100,35,117,153,114,4,0,134,36,14,89,171,134,4,0,134,228,208,246,220,136,4,0,141,228,3,142,146,34,2,0,141,36,165,235,101,188,2,0,141,36,212,226,183,126,3,0,141,36,32,61,29,56,4,0,143,36,148,44,97,241,2,0,146,100,36,145,103,59,3,0,148,36,140,57,188,34,3,0,155,100,64,240,84,66,2,0,155,228,22,212,84,175,3,0,157,164,132,52,172,134,3,0,158,164,226,213,227,116,4,0,162,100,22,26,50,185,3,0,171,164,217,53,62,56,3,0,171,36,242,169,115,84,3,0,172,100,111,196,244,189,3,0,172,36,102,85,146,147,4,0,174,164,100,157,175,117,2,0,174,100,254,64,120,130,2,0,175,36,7,146,155,93,3,0,176,164,247,126,161,165,2,0,176,228,52,218,205,173,2,0,178,36,100,63,241,133,4,0,179,228,191,135,218,46,2,0,180,228,87,0,117,222,3,0,181,36,135,89,1,98,3,0,186,164,212,72,93,96,4,0,188,36,86,181,242,111,2,0,188,164,57,244,249,58,4,0,198,100,142,89,145,106,2,0,202,164,154,41,251,29,4,0,205,164,141,198,186,115,2,0,206,228,200,150,56,38,4,0,207,100,186,218,151,151,3,0,207,100,186,218,198,151,3,0,209,100,190,190,252,122,3,0,209,36,183,117,55,151,4,0,212,36,187,154,60,56,2,0,216,164,179,209,58,50,2,0,217,228,123,178,80,211,3,0,219,100,254,88,213,169,2,0,224,228,71,64,250,50,2,0,224,228,164,169,182,96,3,0,226,100,70,184,47,126,2,0,228,228,19,192,41,178,2,0,229,164,11,185,127,70,2,0,232,100,245,19,60,103,4,0,233,36,41,108,94,159,3,0,233,164,177,12,51,231,3,0,237,164,20,172,76,77,3,0,239,228,199,92,69,252,3,0,242,36,163,170,95,178,3,0,244,228,239,129,157,174,2,0,246,164,134,192,222,240,3,0,248,228,100,186,141,131,4,0,249,164,144,145,69,104,3,0,249,228,240,116,150,80,4,0,250,36,119,87,75,214,3,0,4,229,13,115,112,212,2,0,6,165,187,194,85,148,4,0,11,229,167,228,5,188,3,0,11,229,123,103,176,71,4,0,13,165,46,147,46,242,2,0,14,37,209,196,190,190,3,0,16,101,144,180,102,21,3,0,18,229,170,27,140,137,3,0,18,165,72,179,123,104,4,0,22,229,79,83,56,110,3,0,24,101,50,146,160,26,4,0,25,101,24,81,153,76,3,0,27,101,107,166,219,60,3,0,27,37,236,10,36,76,3,0,29,165,33,114,96,240,2,0,30,229,75,215,140,178,2,0,34,37,105,178,212,254,3,0,37,37,7,146,172,93,3,0,41,229,41,16,34,108,2,0,43,101,131,151,122,161,3,0,43,101,224,167,89,168,3,0,44,37,90,119,36,61,3,0,45,229,20,91,240,15,4,0,48,37,63,89,227,161,2,0,53,37,62,169,240,40,2,0,53,165,238,252,108,16,4,0,58,165,81,99,108,30,4,0,61,165,148,36,81,96,2,0,62,229,65,58,101,129,2,0,62,37,210,195,120,148,2,0,62,165,36,222,62,138,3,0,63,37,2,140,110,122,2,0,64,37,82,45,213,1,4,0,66,165,242,47,164,26,2,0,68,165,240,165,224,202,3,0,68,37,157,92,38,239,3,0,69,229,250,169,23,95,3,0,73,37,11,50,254,180,3,0,74,229,4,252,49,53,4,0,76,101,233,248,222,252,3,0,80,229,152,223,165,43,3,0,80,229,78,62,20,77,4,0,81,165,97,124,11,36,2,0,82,229,14,136,133,223,2,0,86,229,96,67,96,76,2,0,86,165,166,2,212,250,2,0,86,37,129,177,156,255,3,0,89,37,79,203,186,166,3,0,90,229,164,44,16,90,2,0,91,101,231,178,20,169,3,0,94,101,199,240,9,50,4,0,98,37,96,179,179,115,3,0,98,101,85,159,183,246,3,0,99,37,88,178,234,27,2,0,99,165,77,124,5,235,3,0,100,229,138,169,109,169,3,0,108,229,234,27,223,94,4,0,111,37,39,52,14,107,4,0,115,37,118,141,255,40,2,0,117,229,122,19,130,158,2,0,118,37,11,38,89,222,2,0,119,165,56,166,127,209,2,0,120,37,219,238,136,127,4,0,121,101,38,121,167,118,3,0,125,37,135,99,166,72,3,0,129,101,220,253,163,190,2,0,130,165,170,172,126,99,4,0,132,165,231,142,231,89,3,0,133,101,25,116,196,137,2,0,133,37,16,219,84,200,3,0,135,165,88,62,187,91,2,0,136,101,222,205,138,26,4,0,139,165,62,166,68,210,2,0,140,229,178,45,240,109,3,0,141,165,18,82,142,212,3,0,143,37,167,141,173,127,3,0,144,101,170,160,133,53,4,0,144,37,9,38,18,76,4,0,148,101,46,109,66,74,2,0,148,101,169,12,143,113,2,0,150,101,235,185,193,46,3,0,151,165,132,22,253,83,2,0,152,229,16,148,131,18,4,0,153,37,34,80,107,126,2,0,153,165,251,196,65,126,3,0,155,37,255,198,82,40,3,0,155,101,52,140,9,123,4,0,156,37,72,87,158,178,2,0,156,229,241,250,105,109,3,0,160,165,213,182,227,214,3,0,161,229,13,80,139,111,4,0,162,37,48,81,216,245,2,0,163,229,58,69,72,148,2,0,166,101,116,140,122,104,3,0,167,37,248,60,239,221,3,0,168,229,43,22,33,252,2,0,169,101,141,14,78,135,3,0,169,229,206,175,189,209,3,0,176,37,11,148,176,48,4,0,180,101,218,238,185,45,2,0,188,165,47,211,0,7,3,0,189,37,157,189,151,243,3,0,192,165,59,161,13,152,2,0,192,37,215,28,71,82,4,0,194,101,202,229,93,55,4,0,195,165,69,128,207,109,3,0,196,101,141,156,243,69,4,0,202,37,198,159,254,171,3,0,208,229,59,108,93,171,3,0,211,101,8,54,77,4,3,0,213,101,165,174,95,69,4,0,214,229,4,11,56,245,2,0,215,37,190,147,53,169,2,0,216,37,95,40,178,249,3,0,218,101,231,228,122,33,3,0,220,229,89,169,210,228,2,0,223,165,188,188,178,106,2,0,225,37,63,29,220,219,3,0,227,229,43,100,119,46,2,0,227,37,201,91,24,68,4,0,233,37,53,117,110,239,2,0,234,101,171,44,239,137,3,0,240,229,231,175,3,39,4,0,247,37,45,108,231,138,2,0,249,101,32,25,101,139,2,0,250,37,6,28,202,128,2,0,251,101,161,192,153,158,2,0,251,229,27,19,102,246,2,0,255,101,49,52,155,63,3,0,5,230,69,138,57,105,4,0,10,38,250,34,207,235,3,0,12,230,15,146,67,47,2,0,12,38,5,235,112,100,2,0,13,230,186,119,139,216,3,0,17,230,73,205,68,133,2,0,22,38,167,29,93,136,2,0,32,102,225,81,29,123,4,0,35,102,143,113,54,196,3,0,35,230,75,60,81,41,4,0,37,102,212,78,126,137,2,0,37,166,238,217,183,131,4,0,47,230,167,228,47,188,3,0,49,230,67,83,165,24,2,0,54,166,21,81,174,104,3,0,54,166,120,233,49,219,3,0,57,102,52,234,100,122,4,0,58,38,149,28,126,5,4,0,59,38,131,121,221,109,2,0,60,166,76,81,74,175,2,0,61,166,167,146,97,96,2,0,62,230,17,9,128,28,2,0,62,38,187,160,8,168,3,0,62,38,205,133,120,135,4,0,65,38,30,123,65,215,3,0,69,102,58,135,25,251,3,0,72,166,109,16,248,88,2,0,72,230,0,69,32,46,3,0,72,166,128,184,8,82,3,0,72,230,182,169,136,194,3,0,74,230,206,67,151,59,3,0,76,166,76,10,138,3,4,0,78,102,232,254,165,16,3,0,81,38,48,240,164,71,2,0,82,166,219,243,118,208,2,0,82,102,129,139,170,245,3,0,82,102,251,93,238,106,4,0,84,230,96,56,234,62,2,0,85,102,174,230,220,234,2,0,87,102,64,142,60,10,2,0,87,38,247,23,233,218,2,0,87,230,136,34,53,240,3,0,89,230,173,231,254,215,3,0,91,102,159,243,20,9,3,0,93,38,100,176,166,87,2,0,94,38,204,21,130,136,4,0,97,102,190,94,129,120,2,0,98,102,89,217,180,106,3,0,99,102,139,151,235,5,3,0,100,230,101,35,81,89,3,0,103,230,54,145,28,175,2,0,106,166,153,223,234,231,2,0,109,230,138,250,108,212,3,0,113,38,213,115,32,90,2,0,116,38,88,28,116,109,4,0,117,102,50,86,118,201,3,0,120,166,104,50,60,255,2,0,121,38,138,214,176,150,3,0,122,166,111,169,219,88,4,0,123,230,255,245,216,51,2,0,123,102,89,229,46,83,3,0,124,38,99,87,204,38,2,0,125,38,222,150,105,230,2,0,128,102,48,20,13,31,2,0,128,38,70,102,55,130,2,0,128,38,233,152,178,189,2,0,128,38,167,69,233,136,4,0,129,166,160,229,185,40,2,0,130,38,98,8,186,254,3,0,131,102,252,27,141,233,3,0,135,102,31,170,140,177,2,0,138,230,105,167,89,102,2,0,141,102,212,96,188,77,4,0,142,230,5,30,162,160,2,0,144,38,84,135,35,37,2,0,145,166,221,247,132,57,3,0,148,230,219,69,82,139,2,0,148,102,204,235,4,147,2,0,148,38,73,173,237,134,3,0,153,166,213,209,127,91,4,0,154,230,179,253,203,22,3,0,155,230,51,166,16,111,2,0,156,38,11,139,128,116,2,0,168,102,233,9,110,201,2,0,169,166,13,169,90,77,2,0,172,38,20,226,67,34,2,0,172,102,188,160,184,91,4,0,173,230,119,7,197,123,3,0,178,38,182,38,8,30,3,0,179,102,138,37,145,33,3,0,180,230,189,18,173,73,4,0,181,38,39,133,237,139,3,0,185,230,103,185,125,140,4,0,186,166,193,251,6,3,2,0,189,166,30,180,33,45,3,0,193,166,43,82,164,76,2,0,193,102,253,186,182,65,4,0,194,102,23,192,191,158,2,0,195,38,53,114,112,251,3,0,196,38,34,178,214,88,3,0,196,166,45,158,234,158,3,0,198,102,147,80,36,3,3,0,201,230,213,173,248,47,4,0,201,38,143,78,231,61,4,0,202,38,22,76,27,183,2,0,204,230,228,64,84,84,2,0,205,166,68,171,98,132,2,0,211,38,131,42,105,68,4,0,212,166,168,188,76,87,3,0,212,38,53,192,210,11,4,0,213,102,140,57,228,113,4,0,214,230,186,4,203,166,3,0,217,230,183,42,104,107,3,0,217,166,62,8,122,120,3,0,217,166,96,232,163,164,3,0,218,166,79,247,190,180,2,0,220,230,168,182,132,237,3,0,222,38,71,85,251,71,2,0,222,166,220,64,3,21,4,0,224,166,42,113,70,126,4,0,225,230,30,115,54,173,3,0,228,102,90,236,51,37,2,0,229,166,162,222,177,158,3,0,230,38,225,253,111,149,3,0,231,166,128,251,61,107,3,0,231,166,49,154,190,142,3,0,232,230,201,35,216,28,4,0,234,102,239,2,242,49,4,0,235,102,62,185,56,52,2,0,237,102,196,27,7,37,2,0,238,230,237,145,223,234,3,0,240,166,198,136,23,221,3,0,250,102,246,8,128,39,2,0,250,102,55,16,83,219,3,0,251,166,28,149,110,34,2,0,252,38,234,255,226,164,2,0,253,166,172,78,178,15,2,0,253,102,249,213,181,103,3,0,255,38,58,159,212,142,2,0,6,103,189,103,10,47,2,0,8,39,68,36,20,45,2,0,8,231,112,58,180,146,4,0,10,231,99,148,69,90,2,0,12,103,181,110,204,201,2,0,12,231,128,228,48,220,2,0,12,167,98,138,246,3,3,0,12,231,103,95,34,91,4,0,17,231,190,239,92,198,2,0,18,231,130,219,212,46,3,0,24,103,215,66,250,78,4,0,27,103,57,222,247,228,2,0,30,39,147,83,51,167,3,0,32,231,73,197,11,88,2,0,34,231,89,68,111,228,2,0,36,103,30,35,43,89,2,0,39,103,6,17,168,111,4,0,42,231,196,51,225,82,2,0,43,103,75,33,227,99,4,0,56,231,93,89,27,247,2,0,56,231,185,194,32,78,3,0,58,39,64,68,217,125,3,0,59,231,127,236,253,25,3,0,60,167,101,153,89,91,2,0,63,103,61,146,190,21,2,0,66,39,227,182,35,11,4,0,74,103,110,4,245,58,3,0,75,167,9,219,224,55,4,0,80,231,51,99,100,175,3,0,81,167,170,18,179,103,4,0,84,231,13,224,176,67,2,0,84,167,79,247,172,180,2,0,84,231,152,223,65,45,3,0,84,39,251,146,97,166,3,0,90,231,190,239,75,198,2,0,93,231,99,40,247,249,3,0,95,167,20,43,138,27,2,0,96,167,235,252,145,10,2,0,100,103,13,139,11,87,3,0,103,103,69,1,97,184,2,0,105,103,6,128,198,32,2,0,106,39,123,95,4,81,2,0,115,167,165,104,143,110,2,0,115,231,66,253,73,224,3,0,118,167,115,19,130,191,3,0,120,231,49,200,137,141,4,0,121,103,91,203,37,138,3,0,121,167,251,236,135,142,3,0,121,231,91,145,186,217,3,0,122,103,195,109,91,25,3,0,125,231,213,72,6,241,3,0,126,39,116,10,81,83,2,0,129,167,37,250,123,94,2,0,129,231,122,251,73,204,2,0,130,231,123,133,238,195,3,0,131,231,60,81,245,214,2,0,133,39,229,245,41,29,2,0,135,103,223,141,68,27,2,0,138,103,217,192,26,135,2,0,139,231,163,155,133,22,2,0,140,231,244,118,174,118,2,0,140,231,84,87,212,45,4,0,144,39,74,27,65,33,3,0,144,103,179,5,80,72,3,0,145,231,60,81,127,218,2,0,145,103,31,81,183,38,3,0,148,103,251,178,203,170,3,0,156,39,111,17,98,23,3,0,156,103,242,166,185,117,4,0,158,231,64,192,32,82,2,0,159,231,112,1,0,23,4,0,162,39,173,128,252,78,3,0,162,103,177,66,84,11,4,0,167,167,153,223,180,231,2,0,168,103,111,5,218,227,3,0,171,39,151,59,143,89,2,0,172,39,216,7,186,90,2,0,172,167,58,12,154,168,2,0,173,103,21,99,219,139,4,0,176,167,119,148,203,159,2,0,177,39,5,84,133,224,2,0,177,231,125,127,16,88,4,0,178,167,169,221,60,93,2,0,180,103,145,100,194,196,3,0,183,231,20,15,220,125,4,0,194,167,198,142,83,81,3,0,197,231,45,203,204,63,2,0,197,231,111,253,59,237,2,0,197,39,193,126,139,143,3,0,198,167,50,130,38,67,2,0,198,39,93,75,140,208,2,0,199,39,75,255,92,113,4,0,200,231,244,64,199,161,2,0,203,167,175,123,158,6,4,0,204,39,28,198,213,123,2,0,209,167,138,47,147,187,2,0,209,167,110,215,43,83,4,0,210,103,51,60,45,35,4,0,214,39,227,88,155,14,4,0,215,39,212,235,167,243,3,0,217,103,194,155,164,85,2,0,218,39,227,74,107,203,3,0,219,167,37,174,94,232,2,0,219,231,202,196,105,25,4,0,221,167,113,251,52,47,2,0,226,103,170,214,54,207,3,0,229,167,154,64,4,120,2,0,233,39,65,21,251,138,2,0,233,39,65,21,12,139,2,0,233,39,65,21,32,139,2,0,233,39,65,21,51,139,2,0,236,167,216,67,210,253,3,0,238,231,79,186,215,10,3,0,239,103,152,171,87,75,3,0,241,39,202,42,213,86,4,0,243,167,217,9,18,9,2,0,244,39,11,143,139,199,2,0,245,103,244,5,130,10,3,0,245,167,42,11,14,19,3,0,245,231,201,234,22,123,3,0,249,167,133,227,61,216,3,0,253,231,48,29,93,45,3,0,0,168,224,205,186,178,2,0,5,168,98,145,68,160,3,0,8,104,177,87,129,163,2,0,9,40,107,149,35,34,4,0,10,232,13,34,233,34,2,0,11,40,12,192,203,200,2,0,13,168,224,219,80,100,3,0,15,104,57,207,22,28,2,0,17,104,4,243,162,137,3,0,18,232,205,113,218,5,3,0,18,40,124,184,120,83,3,0,23,168,255,230,217,121,2,0,23,104,158,0,233,137,4,0,24,168,93,98,79,28,2,0,24,40,3,228,204,108,3,0,25,104,122,54,142,222,3,0,28,104,209,144,75,103,3,0,34,232,170,165,183,57,2,0,34,168,25,166,218,118,2,0,39,40,79,167,110,167,3,0,40,232,76,184,36,25,4,0,40,168,110,103,219,73,4,0,42,104,169,248,85,112,2,0,43,168,51,151,49,160,2,0,48,40,20,229,193,73,3,0,48,104,146,26,13,17,4,0,50,104,221,183,246,107,3,0,52,104,233,9,132,201,2,0,53,232,174,99,121,132,2,0,56,104,190,139,146,122,4,0,57,104,93,229,11,13,2,0,58,232,147,48,109,165,2,0,63,40,99,21,136,98,2,0,63,40,222,252,165,124,4,0,64,40,80,192,34,71,2,0,66,40,79,182,176,136,2,0,68,104,208,138,209,243,3,0,73,168,206,178,87,196,2,0,74,168,43,77,183,127,4,0,76,40,184,123,104,6,4,0,78,232,168,165,204,57,3,0,81,232,164,65,245,198,3,0,81,104,207,85,100,248,3,0,83,104,39,81,241,252,2,0,86,168,36,78,118,76,2,0,86,232,62,231,213,111,2,0,90,232,111,105,179,163,2,0,97,40,164,155,21,16,2,0,100,104,107,145,229,123,2,0,101,40,112,50,171,0,4,0,102,168,59,17,93,108,2,0,103,104,181,29,238,217,3,0,109,40,220,122,136,145,4,0,112,104,162,218,102,32,3,0,112,168,213,71,43,76,4,0,113,40,24,229,35,88,2,0,114,232,255,63,109,66,2,0,114,40,131,135,10,147,3,0,118,104,85,20,153,135,3,0,121,104,190,106,72,128,2,0,124,104,216,14,232,132,3,0,124,40,63,92,236,236,3,0,124,104,179,73,148,146,4,0,128,168,143,146,66,210,3,0,129,40,250,232,34,13,2,0,135,40,158,216,1,61,3,0,138,168,103,54,50,166,3,0,139,104,153,206,219,22,3,0,140,232,189,181,169,64,4,0,146,232,157,222,102,6,2,0,147,232,157,222,83,6,2,0,149,232,98,112,249,247,3,0,156,104,149,241,53,133,2,0,158,104,113,189,106,222,2,0,159,168,153,223,68,231,2,0,159,232,55,175,31,34,3,0,159,168,42,203,144,225,3,0,161,232,155,184,44,122,3,0,161,104,113,151,194,137,3,0,162,104,176,162,251,67,3,0,165,168,100,125,207,130,3,0,169,40,205,179,17,194,3,0,171,104,153,223,4,250,2,0,173,232,55,67,163,169,2,0,177,104,49,68,79,237,3,0,179,232,26,209,217,84,3,0,184,168,120,133,170,24,3,0,185,232,122,100,206,242,3,0,189,168,233,20,140,106,3,0,191,104,79,217,176,49,2,0,196,168,167,119,126,13,2,0,198,232,238,86,131,97,2,0,205,168,79,15,230,4,2,0,205,168,69,132,139,211,2,0,205,104,222,86,249,173,3,0,209,232,167,223,159,12,3,0,209,40,136,68,235,215,3,0,209,168,47,21,121,149,4,0,212,40,59,242,134,49,2,0,212,168,221,195,78,153,2,0,214,168,9,217,231,200,3,0,219,104,246,243,99,18,2,0,219,168,197,230,27,89,4,0,220,232,251,186,131,157,3,0,231,168,240,246,45,93,3,0,235,232,132,140,82,130,3,0,240,104,231,134,105,139,4,0,244,40,37,81,137,27,3,0,244,104,53,114,35,133,4,0,248,104,108,53,11,150,3,0,248,168,148,229,166,86,4,0,249,232,9,199,114,242,3,0,253,232,206,183,33,103,3,0,3,105,109,215,140,214,3,0,4,41,204,63,187,202,3,0,4,233,122,72,176,81,4,0,6,169,83,228,25,136,2,0,7,233,96,51,61,135,4,0,8,169,213,52,241,150,2,0,8,233,203,45,138,255,2,0,9,169,129,154,153,123,4,0,12,169,191,81,226,14,2,0,15,169,200,11,159,132,4,0,18,169,42,223,25,132,2,0,18,233,215,6,3,198,3,0,21,41,180,161,242,144,2,0,23,169,91,89,41,162,2,0,23,169,124,171,196,240,2,0,23,233,225,48,97,51,4,0,24,105,9,48,153,30,4,0,36,233,18,173,165,3,3,0,37,169,0,1,226,111,2,0,38,41,24,169,178,44,2,0,38,41,72,12,172,141,2,0,39,41,21,60,118,120,2,0,47,41,242,130,40,72,3,0,48,169,159,218,57,103,2,0,48,233,214,160,80,153,3,0,49,41,142,170,24,196,2,0,51,233,123,184,248,88,3,0,52,105,127,140,138,3,2,0,53,233,176,23,178,124,2,0,54,233,123,184,7,89,3,0,55,41,157,186,253,139,4,0,58,233,96,254,89,213,3,0,65,233,10,160,231,75,2,0,65,233,129,57,231,92,3,0,67,233,233,236,206,197,2,0,68,41,185,51,6,105,2,0,69,233,247,22,123,225,3,0,70,41,16,192,162,202,2,0,70,169,0,254,149,16,3,0,72,41,108,13,49,129,3,0,73,41,254,246,207,26,2,0,75,41,9,107,244,2,3,0,80,41,82,199,203,8,2,0,80,105,29,177,255,41,4,0,81,169,200,216,53,77,4,0,85,105,227,16,222,70,2,0,86,105,246,58,141,1,4,0,87,41,9,229,110,60,2,0,87,233,42,33,74,151,4,0,94,105,61,52,113,124,2,0,94,41,124,184,50,84,3,0,96,169,98,145,88,160,3,0,101,233,145,7,101,112,2,0,107,41,1,83,115,164,3,0,109,169,237,204,154,18,2,0,109,41,24,190,33,24,3,0,110,105,237,223,198,96,3,0,114,169,152,5,39,113,3,0,116,105,231,169,21,92,3,0,118,233,24,254,50,24,3,0,123,169,10,95,209,32,2,0,125,169,108,95,90,207,3,0,126,105,63,105,57,208,2,0,131,169,222,223,3,220,3,0,132,105,58,83,217,18,4,0,133,233,216,47,51,149,4,0,135,41,37,81,171,27,3,0,137,233,17,75,128,118,4,0,138,233,89,248,206,158,2,0,141,41,108,155,18,47,4,0,141,169,235,204,67,98,4,0,144,169,248,39,16,149,3,0,148,41,14,248,76,94,2,0,153,105,247,105,252,170,3,0,156,169,218,217,122,160,2,0,156,105,74,240,223,195,2,0,158,105,26,220,17,210,3,0,159,233,37,64,142,124,4,0,160,233,32,117,33,138,2,0,161,169,44,157,135,45,3,0,161,41,231,174,145,119,4,0,163,233,159,121,229,32,4,0,165,233,168,105,242,250,2,0,166,233,200,172,183,84,4,0,166,233,250,159,32,98,4,0,167,169,97,195,77,71,2,0,168,233,226,154,181,35,4,0,169,41,251,250,5,95,3,0,171,233,44,21,3,248,2,0,171,169,15,219,32,163,3,0,181,41,0,230,147,57,4,0,182,41,10,213,138,170,2,0,188,41,239,167,69,39,2,0,189,233,212,45,64,25,3,0,193,233,172,189,161,207,2,0,193,233,26,110,114,194,3,0,195,233,54,12,79,30,2,0,195,233,204,208,236,106,3,0,195,41,233,28,54,186,3,0,195,41,132,89,69,201,3,0,196,233,69,230,83,73,3,0,196,41,132,204,113,86,4,0,197,41,121,128,46,53,2,0,203,105,175,60,81,6,4,0,208,105,251,19,75,32,3,0,208,169,189,183,214,195,3,0,210,169,17,125,157,96,4,0,212,41,209,181,196,14,2,0,212,169,190,198,119,27,3,0,212,105,123,42,109,1,4,0,213,41,155,9,85,37,2,0,218,41,213,227,74,25,2,0,218,41,121,220,248,100,4,0,220,105,237,62,193,128,3,0,226,41,158,216,118,61,3,0,228,41,121,180,255,11,2,0,229,41,73,11,14,71,4,0,233,169,202,146,15,13,4,0,234,41,137,67,16,233,2,0,235,105,23,192,174,166,2,0,237,169,41,60,21,8,4,0,244,105,167,240,132,145,2,0,245,169,94,36,201,45,3,0,245,105,49,52,119,63,3,0,246,41,104,201,209,93,2,0,246,41,29,198,230,121,2,0,247,169,138,118,195,42,3,0,247,169,120,239,131,135,3,0,247,41,187,200,151,36,4,0,248,169,244,217,197,85,3,0,254,41,163,190,91,194,3,0,0,234,65,252,119,175,3,0,2,234,102,172,2,9,2,0,2,42,109,142,218,37,2,0,2,170,139,198,121,125,3,0,7,106,25,52,57,65,3,0,7,106,237,81,148,101,4,0,8,42,136,240,47,245,3,0,9,234,221,179,49,45,3,0,13,234,114,58,126,32,3,0,13,234,169,20,231,56,4,0,13,234,14,49,124,112,4,0,13,106,110,27,254,132,4,0,15,234,66,227,145,67,3,0,24,106,127,153,117,18,3,0,27,106,83,76,43,15,2,0,27,42,80,17,154,115,4,0,27,106,214,57,31,126,4,0,28,234,118,168,151,7,4,0,30,42,163,103,37,154,3,0,31,106,240,97,166,242,3,0,39,42,53,50,66,38,2,0,39,106,112,123,36,73,2,0,40,170,118,254,44,99,4,0,41,42,88,233,237,183,2,0,42,170,118,20,98,4,2,0,43,106,23,210,90,36,2,0,46,170,100,125,173,130,3,0,47,42,50,12,162,180,3,0,47,170,69,127,135,218,3,0,48,42,24,242,236,147,2,0,49,106,8,90,134,225,2,0,49,170,226,66,45,229,2,0,50,42,11,177,92,54,3,0,51,106,107,55,75,240,3,0,51,234,67,91,45,46,4,0,53,234,111,240,67,174,3,0,53,234,111,240,108,174,3,0,59,234,84,40,166,123,3,0,59,42,140,171,11,151,3,0,60,170,70,253,11,187,2,0,62,106,39,0,105,92,2,0,65,106,218,255,219,194,3,0,67,234,23,81,243,97,3,0,67,106,198,137,5,186,3,0,68,42,153,223,179,36,3,0,69,42,69,232,185,198,3,0,70,42,207,30,122,95,4,0,72,234,39,77,219,239,3,0,77,106,73,198,217,141,3,0,78,170,165,164,69,171,3,0,79,170,210,110,153,195,2,0,84,234,111,88,252,163,2,0,86,170,97,39,124,168,3,0,87,42,85,135,222,59,4,0,88,106,93,96,15,30,2,0,90,234,35,102,81,145,2,0,92,106,141,151,87,88,2,0,92,106,44,113,186,79,4,0,93,170,175,252,221,76,3,0,94,234,45,50,185,203,3,0,100,106,77,7,198,114,3,0,100,170,170,128,2,16,4,0,107,234,47,254,244,46,2,0,107,106,42,16,96,140,3,0,108,106,181,137,242,167,3,0,113,234,88,91,174,97,3,0,114,170,106,204,43,115,2,0,117,42,75,228,42,119,2,0,117,42,71,55,161,118,4,0,118,234,53,27,173,220,2,0,118,234,63,25,162,110,3,0,118,106,31,143,30,117,3,0,119,234,17,230,125,5,2,0,121,42,83,235,144,63,2,0,121,106,144,228,8,123,2,0,122,42,200,47,240,152,4,0,123,106,190,33,195,140,2,0,124,170,10,160,132,248,3,0,125,170,255,12,85,8,2,0,125,42,162,57,239,157,2,0,126,170,162,81,168,4,4,0,127,42,175,141,240,75,3,0,128,42,101,92,5,155,3,0,131,234,15,245,35,165,2,0,132,170,94,92,38,17,4,0,133,42,17,23,154,128,2,0,133,106,213,210,85,210,2,0,133,170,28,65,154,213,2,0,134,170,87,145,227,61,2,0,134,234,55,23,223,15,4,0,144,170,213,75,32,105,3,0,147,170,210,153,33,200,3,0,150,42,127,93,237,152,3,0,150,106,204,161,88,147,4,0,155,170,101,102,197,230,2,0,155,234,115,188,97,149,3,0,161,234,204,247,31,206,2,0,162,42,124,184,131,84,3,0,162,106,14,66,249,32,4,0,174,234,40,13,26,29,2,0,178,106,110,252,93,0,3,0,179,170,229,15,233,42,4,0,179,106,252,107,131,61,4,0,183,106,29,81,194,40,3,0,184,106,95,75,151,97,4,0,186,170,64,104,31,65,3,0,186,106,80,224,174,79,3,0,190,234,158,134,66,14,2,0,192,234,242,10,83,138,2,0,192,234,164,152,220,137,3,0,194,170,47,188,138,236,2,0,194,234,35,181,178,162,3,0,195,170,219,129,231,129,2,0,195,106,53,180,36,110,3,0,204,170,17,192,175,172,2,0,208,234,93,74,105,117,4,0,214,106,246,247,29,136,3,0,221,42,98,158,80,51,4,0,222,170,179,42,130,36,3,0,225,234,137,65,83,157,2,0,226,106,98,65,238,153,2,0,226,106,98,65,159,155,2,0,227,42,24,18,112,242,2,0,227,106,70,27,79,172,3,0,229,170,184,40,43,43,2,0,230,42,127,238,139,62,2,0,231,170,104,96,160,89,2,0,239,42,2,14,32,26,2,0,239,42,249,194,237,220,3,0,244,170,15,192,3,201,2,0,246,234,69,126,6,53,2,0,249,170,113,178,154,112,2,0,253,170,148,122,50,42,2,0,255,234,106,245,27,41,2,0,255,42,190,216,40,243,2,0,2,235,64,247,119,234,3,0,5,171,87,149,90,76,4,0,6,43,217,111,158,31,3,0,9,43,247,196,119,23,3,0,9,43,147,15,38,148,3,0,9,43,175,153,42,153,3,0,10,235,186,159,42,63,3,0,12,235,99,100,108,98,3,0,13,107,36,73,195,135,3,0,17,235,247,24,30,44,2,0,17,43,151,140,131,82,4,0,25,43,70,114,176,190,3,0,27,171,81,147,4,3,4,0,29,235,186,233,228,98,2,0,29,171,16,234,32,126,2,0,33,171,25,31,65,228,2,0,45,43,37,58,120,186,3,0,47,107,3,141,4,24,3,0,49,171,199,165,202,29,3,0,50,171,130,148,154,232,3,0,51,235,107,112,199,27,2,0,54,171,51,159,73,93,3,0,55,235,194,10,53,182,3,0,56,43,17,195,33,184,2,0,60,235,70,245,81,24,3,0,60,107,40,145,206,172,3,0,61,171,18,52,118,65,3,0,66,43,83,208,213,17,3,0,68,107,24,27,215,98,3,0,69,107,39,81,123,254,2,0,71,43,253,172,98,135,2,0,71,43,240,113,23,254,2,0,72,171,93,193,125,92,2,0,74,107,75,58,18,176,2,0,79,107,244,128,209,252,2,0,79,171,191,219,118,181,3,0,81,43,119,152,120,128,4,0,82,235,165,189,14,180,2,0,84,43,144,153,24,50,4,0,88,43,160,154,58,95,3,0,88,235,86,83,210,186,3,0,91,107,222,36,72,78,3,0,91,43,213,232,102,234,3,0,92,171,164,173,77,119,4,0,94,43,93,224,5,73,3,0,94,43,97,26,235,226,3,0,101,107,154,74,164,80,2,0,102,235,13,254,218,233,2,0,104,235,13,197,223,94,2,0,104,171,206,242,60,61,3,0,108,171,208,203,203,111,4,0,112,107,23,192,201,165,2,0,113,43,222,97,159,70,3,0,113,171,222,241,254,142,4,0,114,171,160,254,129,10,2,0,115,43,140,53,156,51,3,0,120,235,200,187,236,244,2,0,120,107,93,241,44,181,3,0,121,43,138,103,195,132,4,0,125,107,39,101,9,31,4,0,128,43,13,75,118,200,2,0,132,235,22,28,223,151,3,0,134,235,217,89,0,118,4,0,135,235,82,132,118,221,3,0,138,43,184,126,206,112,2,0,139,107,181,168,7,178,3,0,140,107,0,234,18,237,3,0,144,107,13,234,200,223,3,0,144,235,184,17,51,237,3,0,147,43,249,14,152,194,3,0,149,43,4,33,108,33,2,0,149,235,233,208,161,80,4,0,150,107,85,94,199,237,2,0,150,107,121,14,201,48,3,0,152,43,12,80,1,190,3,0,154,107,209,84,12,129,3,0,157,107,189,102,138,136,3,0,158,171,34,175,179,21,3,0,160,171,255,90,1,201,3,0,162,171,139,69,63,98,2,0,163,107,183,186,20,7,3,0,164,43,68,155,245,201,3,0,170,43,50,12,25,180,3,0,173,107,32,42,55,51,3,0,174,171,89,144,35,219,3,0,174,171,58,83,41,97,4,0,176,43,168,121,200,105,2,0,176,43,182,102,14,192,3,0,177,107,165,100,36,99,2,0,178,235,75,184,246,251,2,0,180,43,160,155,140,196,3,0,187,107,49,170,241,52,2,0,190,43,139,20,14,147,2,0,191,171,148,34,175,230,2,0,194,107,24,81,50,75,3,0,195,107,125,79,233,124,3,0,196,107,163,28,60,63,2,0,199,235,145,84,116,192,2,0,200,107,64,197,125,99,3,0,203,171,238,97,205,72,4,0,203,235,93,125,64,122,4,0,206,107,172,136,29,53,2,0,210,171,113,116,101,81,3,0,229,171,151,250,11,155,2,0,229,107,26,24,83,223,3,0,230,43,140,212,189,82,4,0,231,235,205,31,242,137,2,0,232,107,78,35,33,66,2,0,233,107,180,13,71,10,4,0,233,235,146,164,198,104,4,0,234,171,179,221,227,228,2,0,237,235,116,103,164,167,2,0,237,235,58,82,23,10,4,0,240,43,179,93,136,197,3,0,241,235,82,177,56,92,3,0,241,235,196,9,24,2,4,0,242,171,72,172,155,125,4,0,245,107,129,113,178,61,4,0,246,43,50,12,150,180,3,0,247,43,255,117,111,134,3,0,248,107,54,94,180,152,3,0,248,43,207,14,245,120,4,0,249,235,124,59,41,210,2,0,252,171,209,93,165,104,4,0,255,107,96,52,170,98,3,0,255,107,101,44,237,126,4,0,0,108,215,27,15,124,3,0,3,236,206,37,112,77,4,0,4,236,173,120,140,160,2,0,6,172,208,21,177,25,4,0,12,236,248,143,228,83,3,0,12,44,16,101,57,98,3,0,14,172,56,82,229,102,2,0,16,236,35,182,183,109,2,0,17,108,52,81,156,229,2,0,18,108,153,223,131,250,2,0,18,44,124,184,3,85,3,0,20,172,59,255,220,95,2,0,22,108,222,222,42,14,4,0,26,108,202,107,224,131,4,0,31,172,7,25,6,115,2,0,31,172,255,166,190,221,3,0,34,236,29,110,241,56,3,0,35,172,83,32,190,22,2,0,35,172,137,240,155,22,4,0,36,236,152,223,94,47,3,0,37,44,62,105,156,72,2,0,37,172,25,131,247,131,4,0,39,44,181,216,16,57,4,0,41,44,164,73,75,76,4,0,42,108,169,114,142,73,2,0,42,44,217,111,182,31,3,0,42,172,162,131,197,132,3,0,44,236,113,58,74,34,3,0,45,44,212,113,96,180,3,0,47,108,16,195,7,150,2,0,49,108,43,51,181,108,2,0,49,172,102,212,161,39,4,0,50,108,140,184,47,102,3,0,50,108,49,87,177,28,4,0,51,172,79,143,140,95,4,0,53,44,130,7,119,21,3,0,53,44,129,13,159,66,3,0,57,172,135,24,123,134,2,0,57,236,17,105,152,92,4,0,59,44,21,102,210,54,4,0,60,172,248,26,123,224,3,0,60,172,121,108,36,16,4,0,62,172,232,111,168,212,2,0,62,108,19,129,83,165,3,0,65,236,19,135,2,62,2,0,66,236,60,81,66,219,2,0,66,108,64,185,208,40,3,0,67,108,30,195,94,87,3,0,70,44,68,201,157,25,2,0,71,44,146,229,110,43,2,0,73,236,252,92,65,170,2,0,73,172,140,247,210,73,3,0,75,108,208,35,32,217,3,0,75,172,56,172,11,26,4,0,77,44,61,4,58,89,3,0,78,236,175,41,88,193,3,0,79,236,174,70,237,26,3,0,81,236,3,144,131,44,2,0,81,108,167,162,2,67,2,0,85,108,123,102,241,250,3,0,87,172,89,23,122,249,2,0,88,236,55,170,214,137,2,0,92,44,200,209,136,128,3,0,95,44,221,32,109,115,4,0,97,172,61,81,156,221,2,0,97,172,124,54,73,157,3,0,98,108,211,157,200,245,3,0,100,44,254,134,74,178,2,0,100,44,46,87,19,171,3,0,102,236,18,7,125,25,2,0,104,172,222,209,72,13,4,0,105,236,212,47,248,222,2,0,105,172,175,146,80,243,2,0,108,172,254,14,242,20,2,0,108,172,190,65,101,153,3,0,109,44,212,12,37,80,3,0,116,236,255,35,134,48,2,0,118,172,89,23,207,249,2,0,118,108,240,53,45,60,3,0,123,108,208,106,152,45,3,0,124,44,203,159,72,47,4,0,125,172,81,31,134,188,3,0,130,236,5,70,173,136,4,0,131,236,195,241,156,145,2,0,131,44,131,164,174,16,4,0,135,108,157,180,164,139,3,0,136,236,178,5,249,82,2,0,141,236,93,114,25,83,4,0,142,172,70,95,46,236,3,0,145,44,187,126,243,14,2,0,145,108,144,108,205,131,2,0,149,108,111,227,31,6,2,0,149,172,126,15,90,11,3,0,149,44,193,130,182,54,4,0,153,172,140,155,148,64,3,0,153,44,98,208,147,244,3,0,156,172,86,251,152,230,2,0,158,236,115,136,225,29,2,0,162,44,175,205,230,7,3,0,162,236,30,28,193,74,4,0,163,236,60,81,255,213,2,0,168,236,17,139,116,90,4,0,169,108,103,117,75,5,2,0,173,108,71,49,46,120,3,0,173,236,15,177,34,95,4,0,174,172,158,252,182,133,2,0,175,108,159,85,10,151,2,0,177,236,206,169,228,33,2,0,177,236,209,66,56,194,2,0,178,108,101,119,204,72,3,0,181,44,71,112,247,176,3,0,184,172,216,66,144,227,2,0,185,172,60,197,7,168,2,0,186,108,85,94,10,238,2,0,187,108,237,182,98,147,3,0,187,44,133,246,28,122,4,0,190,172,254,226,47,65,4,0,191,108,18,222,35,59,4,0,194,44,9,14,234,66,2,0,196,236,243,254,177,195,3,0,199,44,29,143,9,34,3,0,200,236,36,121,231,86,2,0,205,44,166,208,249,188,2,0,206,108,32,84,151,102,4,0,212,236,152,93,35,62,2,0,212,108,63,20,129,251,2,0,212,172,208,207,98,37,3,0,212,44,55,147,11,131,3,0,212,44,202,28,32,248,3,0,213,172,137,146,75,32,4,0,215,44,242,11,38,81,2,0,215,172,123,123,181,17,3,0,218,108,122,138,240,49,2,0,220,44,31,210,141,80,3,0,222,108,80,113,163,56,4,0,225,236,55,225,227,216,3,0,226,236,183,60,20,206,3,0,227,44,2,73,63,197,3,0,227,44,70,176,123,120,4,0,228,172,178,27,183,43,4,0,235,108,48,142,151,188,2,0,237,108,110,64,173,109,3,0,238,236,122,198,98,19,3,0,241,44,38,119,219,126,4,0,243,44,89,205,190,111,2,0,243,44,172,42,20,64,4,0,245,108,252,162,59,5,4,0,246,108,216,140,211,50,2,0,247,236,147,255,90,78,3,0,249,172,143,223,48,105,3,0,249,236,82,110,221,149,3,0,249,172,212,110,48,11,4,0,250,44,182,238,24,97,2,0,254,108,35,166,207,29,2,0,4,237,213,96,5,232,2,0,4,45,151,50,27,223,3,0,5,237,19,235,80,47,2,0,6,237,168,21,1,52,2,0,8,173,245,31,25,51,2,0,9,109,227,207,230,182,3,0,10,45,194,144,1,27,2,0,12,173,178,206,217,76,4,0,15,173,10,249,182,214,3,0,19,109,52,152,38,11,2,0,20,109,213,237,255,102,4,0,23,45,23,192,206,166,2,0,23,109,170,128,230,78,3,0,23,237,226,150,171,156,3,0,27,109,206,218,126,220,2,0,27,109,249,101,153,145,4,0,28,237,255,26,32,213,3,0,34,45,160,179,4,169,3,0,34,173,173,217,236,44,4,0,35,45,39,106,22,136,4,0,36,173,216,165,194,99,2,0,38,237,13,7,231,209,2,0,48,109,64,185,0,40,3,0,51,109,29,52,228,146,4,0,54,45,217,169,172,194,3,0,56,173,160,29,116,130,4,0,58,45,224,222,234,53,4,0,60,237,114,12,50,51,2,0,63,45,159,154,3,163,2,0,63,109,7,242,137,238,3,0,64,237,113,58,54,34,3,0,66,109,204,235,88,105,3,0,68,109,161,4,31,170,2,0,68,237,213,69,224,36,4,0,72,237,102,48,52,52,4,0,73,45,135,251,40,62,3,0,77,173,247,109,23,112,2,0,78,237,75,184,225,251,2,0,78,45,83,208,234,17,3,0,78,173,17,170,33,69,4,0,79,237,186,94,51,180,3,0,80,173,178,44,195,70,2,0,80,173,111,226,202,114,4,0,82,173,229,58,221,247,3,0,83,109,204,235,251,202,2,0,83,109,204,235,12,203,2,0,83,109,204,235,28,203,2,0,83,109,204,235,52,203,2,0,83,109,204,235,75,203,2,0,83,109,204,235,92,203,2,0,83,109,204,235,109,203,2,0,83,109,204,235,127,203,2,0,83,109,204,235,143,203,2,0,83,109,204,235,166,203,2,0,83,109,204,235,185,203,2,0,83,109,204,235,202,203,2,0,83,109,204,235,216,203,2,0,83,109,204,235,231,203,2,0,83,109,204,235,248,203,2,0,83,109,204,235,7,204,2,0,83,109,53,155,40,203,3,0,83,45,149,175,210,31,4,0,85,173,205,185,224,22,2,0,88,109,80,66,159,121,3,0,89,173,204,122,26,10,2,0,90,109,229,230,181,141,3,0,90,45,241,68,194,154,3,0,94,237,166,78,176,225,2,0,96,173,188,114,227,133,3,0,97,109,16,95,63,69,2,0,98,173,1,153,150,52,2,0,98,173,191,220,67,159,3,0,104,109,94,153,212,63,4,0,109,45,24,185,8,29,3,0,114,45,83,16,221,196,3,0,116,109,37,62,240,3,2,0,118,237,46,205,18,21,4,0,120,237,108,156,195,169,2,0,122,173,12,29,82,192,3,0,123,237,25,100,155,225,2,0,126,45,163,90,137,146,2,0,127,237,57,252,186,84,2,0,131,173,126,195,202,212,3,0,135,173,122,89,28,135,3,0,136,173,88,75,67,58,3,0,136,109,188,139,255,14,4,0,138,109,159,151,214,157,3,0,138,109,1,171,82,39,4,0,138,173,82,122,105,146,4,0,139,45,43,24,176,13,3,0,140,173,30,85,6,237,3,0,143,237,165,149,38,127,2,0,143,45,130,174,153,132,3,0,145,173,122,89,252,135,3,0,146,173,189,45,172,45,2,0,147,237,192,152,46,132,4,0,148,45,141,36,111,52,2,0,149,237,20,129,201,243,2,0,154,45,169,157,157,78,2,0,158,45,101,221,101,91,3,0,161,45,85,196,100,145,2,0,163,45,2,60,221,166,2,0,163,109,18,249,183,230,3,0,168,173,54,81,234,222,2,0,177,237,187,206,79,108,2,0,189,173,62,100,174,252,3,0,190,237,172,243,106,89,2,0,190,109,183,110,72,136,4,0,191,237,214,127,203,121,3,0,192,109,83,62,209,94,2,0,192,173,184,5,94,111,4,0,194,173,139,25,96,134,2,0,194,109,87,24,4,45,3,0,197,45,88,252,17,179,3,0,197,45,165,126,255,241,3,0,201,237,107,109,249,208,3,0,205,237,34,50,189,229,2,0,207,237,188,166,252,34,4,0,208,45,57,66,133,17,4,0,213,45,83,156,6,108,4,0,214,109,69,90,82,128,4,0,218,109,18,186,125,11,4,0,219,109,4,199,202,84,4,0,225,45,142,31,51,91,4,0,226,237,252,28,163,11,4,0,227,237,90,207,2,183,2,0,228,109,45,145,105,250,3,0,231,109,108,240,90,55,3,0,235,109,69,33,118,83,2,0,235,173,203,166,139,234,3,0,236,237,19,220,18,201,2,0,237,45,231,23,234,7,4,0,240,109,146,118,80,121,2,0,241,45,5,211,209,141,4,0,242,173,76,81,167,181,2,0,243,173,195,130,7,51,4,0,243,45,201,245,16,66,4,0,243,45,89,79,35,128,4,0,244,45,137,99,222,242,3,0,249,173,164,13,207,34,4,0,250,45,253,229,112,158,2,0,250,237,104,218,163,121,4,0,253,109,5,53,13,139,4,0,1,46,109,108,226,112,3,0,2,46,231,147,136,61,3,0,3,110,141,233,56,49,2,0,9,174,141,116,199,127,2,0,9,110,66,12,25,133,3,0,10,110,206,192,138,124,3,0,10,110,0,171,121,105,4,0,11,110,239,18,100,249,2,0,13,46,150,217,79,124,4,0,17,174,77,164,147,100,4,0,21,174,0,67,240,212,3,0,24,110,188,242,50,148,2,0,24,46,169,255,221,213,2,0,28,110,142,133,30,255,3,0,30,46,124,184,136,85,3,0,38,238,17,188,3,236,2,0,40,46,137,86,46,1,3,0,42,46,105,25,48,189,3,0,47,110,207,187,223,28,2,0,47,110,187,178,222,64,4,0,51,46,183,138,146,32,3,0,51,110,109,31,70,108,3,0,57,46,154,86,125,72,4,0,58,174,150,55,254,118,3,0,59,238,212,237,57,232,2,0,66,110,194,168,74,98,3,0,67,110,229,220,124,24,4,0,68,174,216,66,194,227,2,0,73,174,200,251,90,88,4,0,81,238,239,206,179,37,4,0,83,174,216,66,178,227,2,0,87,46,97,49,30,96,3,0,87,110,25,208,171,235,3,0,87,46,15,80,214,50,4,0,88,110,64,144,5,11,3,0,89,46,177,110,108,127,4,0,91,46,97,8,40,124,2,0,91,110,131,50,238,175,3,0,91,46,132,137,251,206,3,0,92,46,52,254,182,121,4,0,95,238,177,255,6,144,2,0,96,110,190,214,20,238,3,0,98,46,12,104,77,208,2,0,99,110,89,95,231,65,2,0,100,110,186,171,125,80,3,0,103,110,101,151,17,11,4,0,104,238,162,235,42,65,2,0,106,238,250,236,3,171,2,0,106,174,23,68,136,230,3,0,106,110,229,149,120,18,4,0,108,110,156,65,40,14,2,0,112,46,103,84,122,59,3,0,115,46,183,94,109,227,3,0,116,46,162,98,41,79,4,0,118,46,86,250,48,47,4,0,120,174,180,92,21,95,4,0,121,110,151,113,68,192,3,0,123,46,221,117,18,181,3,0,123,238,115,242,62,118,4,0,126,174,76,81,119,181,2,0,126,110,195,148,12,113,4,0,130,174,161,189,204,147,3,0,141,46,182,229,41,56,3,0,141,174,35,174,226,237,3,0,145,238,33,70,30,150,3,0,152,238,14,34,182,97,2,0,153,174,238,155,227,142,3,0,153,238,245,88,195,102,4,0,158,238,109,157,124,89,3,0,160,238,107,12,142,183,3,0,161,110,205,81,240,11,2,0,162,238,196,116,113,49,4,0,164,110,7,112,187,22,4,0,165,110,149,69,215,219,2,0,168,46,212,79,3,153,2,0,173,174,249,124,127,89,4,0,176,174,145,88,88,146,2,0,177,110,131,57,226,85,2,0,178,46,65,99,2,243,3,0,182,174,49,21,145,202,2,0,182,46,21,67,239,148,3,0,183,46,175,246,153,146,2,0,185,46,244,87,135,229,3,0,187,174,42,203,142,33,2,0,187,46,227,85,101,27,3,0,188,110,102,141,101,11,2,0,189,46,147,65,143,137,4,0,190,46,202,127,122,32,2,0,192,238,160,134,238,119,4,0,199,174,220,170,180,128,4,0,199,238,187,42,31,140,4,0,202,46,34,68,55,48,4,0,203,238,19,41,54,57,2,0,206,46,196,94,4,100,4,0,208,238,11,217,33,18,2,0,209,110,68,19,255,52,3,0,211,46,78,190,98,20,4,0,213,46,11,201,3,246,3,0,213,110,21,44,45,246,3,0,215,110,192,238,102,250,2,0,217,238,37,173,31,102,3,0,218,46,4,73,154,79,2,0,219,174,105,17,65,9,2,0,219,238,190,230,55,125,3,0,221,110,108,236,254,103,3,0,224,174,1,212,50,120,2,0,224,110,226,114,221,250,3,0,225,110,107,150,164,222,3,0,231,110,149,51,203,134,2,0,232,46,222,124,150,184,2,0,239,238,169,47,222,186,2,0,240,46,29,128,192,94,2,0,240,110,89,164,25,1,4,0,243,46,180,75,168,89,4,0,244,110,254,221,168,231,3,0,244,110,254,221,207,231,3,0,244,110,94,153,232,63,4,0,249,238,206,97,214,12,3,0,251,174,0,151,58,180,2,0,254,46,93,37,180,242,2,0,0,239,16,2,70,132,3,0,1,111,43,35,226,230,2,0,2,47,65,115,220,153,2,0,2,47,26,138,27,249,2,0,5,239,155,38,41,131,2,0,6,175,42,95,128,20,2,0,9,175,112,230,1,172,2,0,16,175,108,213,138,19,2,0,16,239,96,17,152,51,2,0,16,175,88,103,66,106,2,0,20,239,195,78,97,18,4,0,22,111,30,92,119,24,3,0,22,47,247,198,198,38,4,0,23,239,213,211,131,52,2,0,24,239,233,109,224,211,2,0,24,47,48,19,147,210,3,0,24,47,183,241,165,106,4,0,25,47,48,91,148,96,3,0,25,239,157,213,20,122,3,0,27,47,163,101,63,41,2,0,29,111,244,108,7,177,2,0,29,111,74,186,209,7,3,0,29,239,9,234,77,234,3,0,41,239,144,197,99,168,2,0,41,111,191,2,77,24,4,0,42,239,127,5,114,247,3,0,43,239,225,250,239,215,2,0,44,239,25,89,67,238,3,0,49,239,24,140,170,60,2,0,50,111,228,220,50,79,2,0,50,111,122,218,64,109,2,0,66,47,192,160,17,33,2,0,71,239,37,75,185,81,2,0,73,239,118,65,44,146,4,0,74,111,129,159,140,115,4,0,76,239,234,36,142,133,3,0,78,111,46,211,10,76,3,0,79,175,113,107,248,13,4,0,80,175,13,177,47,86,4,0,81,111,194,84,6,130,4,0,87,175,218,62,73,225,2,0,88,111,159,35,223,14,3,0,88,111,9,122,28,40,3,0,89,111,137,132,53,36,3,0,89,239,26,156,3,227,3,0,90,47,238,255,131,80,2,0,90,47,35,100,76,179,2,0,93,175,91,106,168,20,2,0,94,175,37,72,175,34,2,0,97,47,225,22,165,115,2,0,97,47,183,207,19,140,2,0,100,239,165,13,82,48,3,0,101,175,189,79,13,225,2,0,102,239,189,33,126,124,2,0,103,111,196,174,176,55,4,0,105,111,209,207,228,96,4,0,111,111,54,186,83,36,3,0,112,47,0,149,189,240,3,0,118,239,192,217,26,80,2,0,118,175,241,125,62,156,3,0,119,239,228,249,182,39,2,0,120,111,22,213,229,99,2,0,121,111,167,143,91,136,3,0,123,47,219,230,98,80,4,0,125,239,54,148,35,39,2,0,125,175,68,141,235,241,3,0,128,239,202,62,88,16,3,0,128,175,116,83,118,245,3,0,129,111,28,235,101,2,4,0,131,47,219,47,215,130,2,0,131,47,71,80,180,186,3,0,132,239,214,183,58,114,3,0,134,175,213,135,138,31,3,0,135,175,3,50,193,251,3,0,140,111,31,11,122,107,3,0,142,47,205,235,17,90,3,0,145,47,201,196,116,192,3,0,149,175,30,221,39,180,2,0,153,175,101,51,234,33,4,0,154,239,71,206,231,7,2,0,155,111,170,239,186,29,3,0,156,239,201,78,214,236,2,0,157,47,53,222,81,167,3,0,160,47,247,124,118,139,2,0,161,111,220,11,208,127,4,0,163,175,240,81,176,143,3,0,164,239,37,206,15,208,2,0,165,239,169,233,57,128,3,0,172,111,221,27,206,59,3,0,177,239,49,100,227,191,3,0,179,111,30,189,130,147,4,0,182,239,10,167,43,96,2,0,182,47,74,230,212,138,3,0,184,111,189,250,246,149,3,0,184,175,64,45,240,234,3,0,187,47,182,216,181,41,4,0,191,239,107,224,58,16,4,0,191,175,173,23,10,60,4,0,192,47,206,78,227,79,2,0,193,47,83,115,87,139,4,0,195,239,155,34,203,118,2,0,197,239,69,83,180,5,3,0,204,239,45,220,96,41,2,0,205,175,87,139,236,115,4,0,207,175,57,160,185,116,3,0,209,111,198,59,254,5,3,0,211,175,76,81,87,186,2,0,214,175,58,82,186,183,3,0,221,111,91,29,33,131,4,0,222,111,118,49,60,171,2,0,223,111,242,20,244,249,2,0,225,111,179,207,160,84,2,0,227,239,34,245,40,68,4,0,228,175,6,169,241,43,4,0,231,175,52,114,170,13,4,0,233,175,238,155,84,101,4,0,235,239,86,255,79,230,2,0,238,175,199,1,17,3,2,0,239,239,118,47,70,151,3,0,242,47,69,188,169,157,2,0,242,175,102,188,122,243,2,0,246,239,150,19,44,38,2,0,246,47,211,255,158,61,2,0,246,111,251,187,37,51,3,0,246,239,108,147,182,164,3,0,249,239,152,160,27,53,3,0,251,47,101,180,98,105,3,0,252,47,118,215,45,206,3,0,2,240,240,203,161,31,4,0,9,176,99,189,231,127,3,0,11,176,40,10,83,169,3,0,11,112,198,47,35,38,4,0,12,48,145,11,61,35,3,0,15,240,152,231,240,19,3,0,15,48,156,214,167,215,3,0,15,112,100,249,188,3,4,0,18,240,181,110,47,135,2,0,18,176,91,106,170,161,3,0,20,112,34,192,14,55,2,0,21,240,148,125,17,35,2,0,21,176,216,59,14,35,4,0,23,176,216,214,112,214,3,0,24,240,31,209,106,5,2,0,32,176,166,16,112,51,4,0,34,240,42,205,105,9,3,0,35,240,157,19,171,86,2,0,38,176,72,30,32,30,3,0,38,240,43,12,15,0,4,0,39,176,39,98,195,140,3,0,46,48,253,242,6,20,4,0,49,240,236,232,231,145,4,0,53,48,82,14,3,196,2,0,56,112,167,35,178,42,3,0,59,176,221,84,87,116,2,0,60,240,55,142,167,90,3,0,65,240,202,4,135,159,3,0,67,240,141,104,22,11,3,0,68,240,129,163,29,58,4,0,69,176,173,154,86,165,2,0,70,240,238,78,39,112,2,0,71,48,42,138,170,74,3,0,72,112,140,31,114,137,3,0,73,240,98,87,107,47,3,0,74,176,74,4,43,155,3,0,76,240,38,239,252,165,3,0,82,112,19,127,85,179,3,0,83,240,224,108,242,214,3,0,89,48,50,12,6,185,3,0,91,112,187,99,47,67,3,0,95,48,170,216,15,86,2,0,95,112,109,42,224,212,3,0,100,240,128,217,230,35,4,0,102,48,85,103,124,114,2,0,106,176,48,61,189,166,2,0,107,176,83,181,29,196,3,0,108,48,185,75,10,111,3,0,111,176,20,16,106,7,2,0,112,48,208,136,13,190,2,0,113,240,90,38,165,64,2,0,114,240,231,195,146,4,4,0,116,112,124,184,13,94,3,0,123,48,20,10,195,181,3,0,126,176,195,204,64,93,4,0,128,48,236,46,217,84,4,0,129,112,31,136,151,27,3,0,133,48,113,14,181,43,2,0,134,240,183,151,65,143,4,0,137,176,35,78,169,152,2,0,137,176,46,156,191,31,4,0,140,112,84,241,83,2,4,0,142,48,151,75,57,44,3,0,146,176,74,210,151,96,2,0,153,112,5,63,230,59,3,0,153,240,115,2,82,99,4,0,153,240,51,105,110,147,4,0,157,112,157,214,48,136,3,0,158,240,120,100,207,193,2,0,159,48,83,55,120,16,2,0,161,112,9,132,203,67,3,0,161,240,45,214,101,42,4,0,163,48,162,76,189,82,2,0,166,176,161,40,232,241,2,0,170,48,9,100,154,81,4,0,171,240,26,17,150,118,3,0,174,176,254,234,29,91,3,0,174,240,53,233,226,98,4,0,177,48,74,40,180,122,4,0,178,48,158,178,13,15,3,0,180,176,49,227,79,56,3,0,182,112,215,13,96,89,4,0,188,112,192,194,54,205,3,0,193,176,51,161,6,218,3,0,194,112,88,125,17,235,2,0,195,112,181,99,203,192,3,0,196,240,210,80,100,7,3,0,200,112,16,47,175,42,2,0,202,240,144,184,234,111,4,0,203,112,175,129,54,76,3,0,206,112,108,157,255,174,3,0,207,176,105,129,240,72,3,0,208,176,31,219,105,76,3,0,211,112,192,247,142,196,2,0,211,176,35,216,189,27,4,0,214,112,202,173,99,43,3,0,215,176,229,217,237,165,2,0,218,176,104,0,233,151,4,0,220,176,131,241,159,113,2,0,220,112,154,72,249,213,3,0,224,112,226,206,215,10,4,0,224,240,232,8,51,134,4,0,226,176,44,125,195,25,2,0,226,48,63,55,153,76,2,0,229,112,89,22,244,99,4,0,232,176,221,25,43,63,2,0,236,112,134,79,27,18,4,0,237,240,67,221,14,52,2,0,237,48,2,71,100,157,2,0,237,48,235,216,105,221,2,0,239,48,142,221,114,15,4,0,240,48,79,143,189,130,3,0,243,240,227,195,195,14,4,0,244,112,149,101,2,142,2,0,245,176,86,211,96,188,3,0,248,176,167,33,160,233,3,0,253,112,102,81,174,2,4,0,254,240,188,181,43,251,3,0,254,48,87,3,199,73,4,0,255,176,23,193,62,204,3,0,0,49,142,33,113,47,2,0,0,49,192,208,101,41,4,0,1,177,217,113,63,86,3,0,3,49,200,67,220,8,2,0,4,241,40,7,23,72,3,0,5,241,107,94,12,51,3,0,5,49,233,15,87,8,4,0,7,113,229,181,53,235,3,0,8,177,15,35,36,230,2,0,8,49,100,210,109,55,4,0,15,49,46,179,0,112,2,0,20,241,26,96,134,192,2,0,20,241,179,188,172,233,2,0,20,113,203,96,36,102,4,0,21,241,95,154,94,126,2,0,23,49,137,230,66,172,2,0,25,49,24,192,172,156,2,0,28,49,150,251,252,90,4,0,32,241,143,2,160,31,2,0,39,241,1,250,48,221,3,0,40,177,211,113,26,244,3,0,43,241,37,112,213,145,2,0,43,49,216,106,81,135,4,0,44,49,9,192,58,196,2,0,47,177,104,0,58,116,2,0,47,49,106,1,120,100,3,0,51,241,164,153,4,249,2,0,52,113,61,46,15,97,3,0,52,241,32,232,19,9,4,0,54,241,30,7,120,202,3,0,56,177,253,76,124,87,2,0,61,49,128,147,80,146,3,0,64,49,131,97,185,229,3,0,65,241,108,126,188,107,2,0,68,49,166,197,39,63,4,0,70,241,41,17,101,154,2,0,70,113,251,19,95,195,3,0,70,177,162,171,38,216,3,0,71,177,16,96,46,142,2,0,72,49,124,177,130,144,2,0,73,241,202,255,155,215,2,0,74,49,16,203,98,111,2,0,78,241,149,238,107,196,2,0,78,241,202,255,138,215,2,0,78,241,7,99,73,31,3,0,78,177,11,173,150,72,3,0,79,49,73,212,125,30,2,0,86,113,70,184,29,118,2,0,86,49,227,184,171,14,3,0,87,113,60,35,129,11,3,0,88,241,202,101,211,120,3,0,88,177,25,21,228,17,4,0,90,113,69,130,249,61,4,0,91,241,218,169,249,4,2,0,91,241,8,194,186,64,4,0,91,177,70,188,217,130,4,0,94,49,36,217,191,88,3,0,94,49,67,125,229,51,4,0,96,113,187,26,138,133,4,0,97,177,103,6,38,52,4,0,98,113,16,198,91,89,2,0,99,113,245,131,56,217,3,0,105,177,229,38,87,194,2,0,105,241,17,138,130,64,3,0,106,177,234,111,4,203,3,0,108,113,250,93,221,62,3,0,109,49,108,107,8,194,2,0,109,113,52,179,247,234,2,0,112,177,142,211,181,191,2,0,112,49,93,92,175,114,4,0,114,177,226,147,185,191,3,0,118,241,43,2,129,46,4,0,122,113,3,52,104,70,4,0,131,241,23,68,213,14,4,0,132,241,121,241,187,86,2,0,132,113,129,111,215,217,3,0,133,113,235,206,62,195,2,0,137,113,178,166,241,113,4,0,139,49,186,143,240,87,3,0,140,177,58,161,25,250,3,0,141,177,221,39,200,155,2,0,142,49,102,102,22,98,3,0,142,113,200,213,191,208,3,0,142,49,100,169,224,243,3,0,143,241,140,41,126,79,4,0,144,241,7,209,73,218,2,0,147,177,165,7,53,150,3,0,150,49,127,156,64,51,4,0,151,49,136,160,31,67,3,0,152,241,95,94,193,85,2,0,155,113,104,216,175,36,2,0,156,113,90,77,157,23,2,0,161,113,18,178,71,173,3,0,167,49,213,253,123,153,3,0,171,113,37,81,59,31,3,0,171,49,48,215,178,147,4,0,173,113,29,78,81,80,3,0,177,241,219,221,87,59,2,0,177,177,68,82,169,102,2,0,177,113,227,119,234,142,4,0,178,49,153,223,73,27,3,0,181,177,17,188,94,236,2,0,183,241,142,160,252,64,3,0,187,241,63,208,235,125,2,0,188,177,17,1,136,152,3,0,188,241,20,187,170,19,4,0,192,49,210,235,101,152,2,0,192,177,5,130,215,114,4,0,194,49,231,88,87,70,2,0,195,113,72,58,229,132,2,0,195,49,42,138,132,74,3,0,198,177,176,87,105,163,2,0,200,241,130,241,208,32,3,0,205,241,142,48,216,124,4,0,206,241,166,50,33,60,2,0,206,177,4,70,35,123,2,0,207,177,173,232,238,104,4,0,210,49,30,85,29,84,2,0,216,241,74,198,80,139,3,0,216,241,116,241,130,199,3,0,219,49,24,192,205,153,2,0,220,241,119,103,69,125,4,0,224,177,166,243,163,142,4,0,225,113,238,226,75,135,2,0,226,177,208,211,165,163,3,0,227,177,185,215,129,151,4,0,231,177,217,225,35,128,3,0,233,49,13,82,28,93,2,0,238,241,60,112,80,59,3,0,241,113,26,135,110,58,3,0,244,177,170,246,21,130,3,0,247,241,246,253,14,145,2,0,247,49,140,175,10,206,2,0,248,177,243,228,197,77,2,0,250,49,66,125,74,51,3,0,251,177,17,152,243,244,3,0,254,177,141,127,153,235,3,0,3,50,88,144,156,19,4,0,4,178,167,228,105,192,3,0,4,178,105,23,188,86,4,0,7,242,124,102,227,74,2,0,7,242,16,116,218,140,2,0,12,114,71,66,221,136,3,0,12,114,189,130,159,200,3,0,14,114,95,49,26,150,2,0,14,178,140,43,200,157,3,0,16,50,93,75,118,34,3,0,16,114,21,169,210,189,3,0,21,114,180,145,247,161,3,0,22,242,17,146,167,5,4,0,23,242,76,104,132,210,3,0,24,50,244,38,221,236,3,0,26,242,119,103,236,107,2,0,28,50,43,175,186,157,3,0,32,242,220,111,86,158,3,0,42,178,121,65,8,110,3,0,43,178,239,143,190,83,3,0,44,242,175,66,110,29,4,0,49,114,185,255,23,215,2,0,49,178,39,81,232,15,3,0,49,242,187,183,252,45,4,0,51,50,163,44,57,241,2,0,52,242,17,235,41,241,3,0,56,242,146,13,233,119,2,0,57,242,235,211,182,12,2,0,58,50,27,7,92,25,2,0,58,178,139,231,188,61,2,0,58,50,61,6,196,101,4,0,61,114,89,197,250,132,2,0,61,114,108,62,94,240,3,0,64,178,220,187,194,26,3,0,65,114,249,4,96,144,4,0,67,114,128,228,159,27,2,0,70,242,245,136,61,107,4,0,73,114,143,58,175,100,4,0,78,50,41,227,112,218,3,0,79,50,56,131,203,70,3,0,88,114,95,24,96,129,3,0,91,242,33,104,235,164,3,0,100,114,32,13,198,109,4,0,101,114,42,199,83,22,4,0,105,242,152,94,170,130,4,0,107,178,187,119,101,229,2,0,108,242,74,230,190,10,3,0,109,114,201,193,134,36,2,0,113,114,138,43,63,123,4,0,115,178,45,116,219,192,3,0,115,114,71,218,19,61,4,0,118,242,189,175,190,173,3,0,119,114,118,147,72,53,4,0,120,114,140,42,217,233,3,0,121,114,169,80,184,35,2,0,121,242,69,14,62,53,2,0,123,242,157,210,38,208,3,0,124,178,8,67,144,202,3,0,126,242,187,166,158,120,4,0,128,178,163,166,83,132,2,0,131,242,191,213,89,12,2,0,134,50,149,60,253,133,3,0,135,114,30,24,74,174,2,0,138,242,20,124,89,183,3,0,142,114,152,55,182,78,4,0,142,178,218,6,177,88,4,0,142,178,26,161,26,105,4,0,145,114,18,176,94,51,3,0,147,50,72,133,102,236,3,0,149,178,32,105,155,36,2,0,150,50,233,27,100,213,2,0,151,50,155,59,240,73,2,0,151,50,236,23,221,30,4,0,151,50,164,110,118,84,4,0,151,242,103,147,39,107,4,0,152,178,57,222,112,151,2,0,152,114,57,115,182,155,2,0,152,178,150,170,247,81,3,0,153,178,111,28,26,145,3,0,155,50,84,26,211,82,2,0,158,178,138,254,218,212,2,0,161,50,59,84,86,100,2,0,161,114,229,206,58,52,3,0,164,178,218,85,90,137,2,0,167,114,154,236,141,58,2,0,168,178,59,76,1,179,3,0,171,178,27,34,131,22,3,0,172,114,160,62,118,38,4,0,175,178,152,160,93,52,3,0,175,50,107,221,166,127,4,0,176,242,98,110,255,201,2,0,179,114,81,169,201,47,4,0,181,50,216,240,68,82,2,0,181,50,19,162,244,245,3,0,181,114,51,164,93,141,4,0,182,178,126,115,55,119,3,0,192,178,20,183,93,162,2,0,192,114,42,199,19,25,4,0,194,178,50,171,231,116,3,0,194,242,16,195,93,145,4,0,195,178,4,28,159,116,4,0,197,114,98,168,39,98,3,0,200,178,189,79,35,224,2,0,204,50,168,11,72,116,3,0,205,178,100,66,227,57,2,0,205,242,148,160,140,51,3,0,208,242,210,3,243,21,4,0,212,50,53,241,247,116,4,0,214,242,204,156,252,63,4,0,216,114,235,38,91,10,4,0,216,50,185,26,50,109,4,0,219,50,96,120,86,227,2,0,220,242,60,12,27,191,3,0,221,242,207,207,10,14,4,0,225,114,247,194,98,238,3,0,226,178,169,66,203,107,4,0,231,114,102,140,116,229,3,0,234,50,57,187,198,255,2,0,235,50,179,221,60,243,2,0,236,114,107,243,177,32,2,0,238,178,6,133,209,65,2,0,239,50,168,227,207,190,2,0,240,114,59,184,148,60,3,0,241,114,51,6,172,91,2,0,242,114,81,242,59,236,2,0,244,114,164,11,94,18,3,0,245,114,146,184,8,72,3,0,246,50,49,235,246,28,4,0,252,242,120,57,227,68,2,0,253,242,79,233,159,140,2,0,253,114,169,155,96,29,3,0,254,178,62,107,7,29,2,0,255,50,208,232,208,43,3,0,1,179,88,207,213,188,3,0,2,115,168,138,218,243,2,0,4,51,149,22,234,67,2,0,7,179,226,189,10,114,3,0,14,115,78,157,241,136,2,0,15,51,241,116,57,80,4,0,18,51,250,169,245,94,3,0,19,243,7,93,25,181,2,0,19,51,131,173,136,144,3,0,22,179,229,217,29,166,2,0,23,243,30,169,132,99,2,0,23,51,116,222,215,115,4,0,24,115,226,25,155,54,3,0,24,115,81,128,126,182,3,0,25,179,227,199,50,233,3,0,27,115,14,107,1,157,2,0,28,51,67,41,191,19,4,0,34,51,246,68,198,129,2,0,35,51,136,201,1,102,2,0,37,51,100,15,111,137,2,0,38,115,183,74,141,130,4,0,39,51,238,39,135,185,3,0,41,243,19,69,153,243,2,0,44,179,59,127,218,124,2,0,44,179,33,203,179,49,3,0,45,51,17,132,114,116,3,0,46,51,162,254,214,124,3,0,46,51,23,34,192,222,3,0,46,243,142,165,251,137,4,0,49,51,111,5,159,25,3,0,50,179,22,141,79,73,2,0,60,115,182,24,250,160,3,0,61,243,21,135,26,179,2,0,66,243,206,130,255,138,4,0,67,179,5,218,86,233,2,0,69,243,98,116,191,39,4,0,70,51,70,68,197,2,4,0,71,243,140,185,128,69,2,0,75,243,205,207,84,77,4,0,75,179,111,58,12,93,4,0,84,51,36,81,59,27,3,0,85,115,137,155,188,51,2,0,87,179,11,212,54,67,2,0,91,179,6,253,30,131,3,0,91,51,213,220,33,31,4,0,92,115,229,19,142,181,3,0,95,179,158,42,45,8,4,0,97,179,234,63,189,118,2,0,103,179,181,172,64,193,3,0,105,115,2,128,223,228,3,0,105,51,153,230,83,79,4,0,107,51,140,55,100,157,3,0,114,115,178,47,36,8,2,0,114,51,66,4,57,248,3,0,119,115,208,238,7,223,3,0,124,115,215,195,189,151,2,0,124,179,24,124,109,166,2,0,127,179,127,209,50,108,3,0,127,243,86,101,129,208,3,0,127,51,123,90,86,46,4,0,128,115,85,196,66,145,2,0,129,243,81,24,135,185,2,0,129,243,23,176,216,54,3,0,133,115,39,74,130,35,3,0,133,179,126,8,11,119,3,0,135,179,139,20,124,105,3,0,135,115,205,174,234,169,3,0,137,243,233,152,224,189,2,0,137,179,139,20,113,105,3,0,138,179,51,148,69,46,4,0,141,243,164,184,129,209,3,0,144,179,26,254,92,47,2,0,150,179,43,210,234,103,4,0,152,179,63,106,219,128,2,0,153,115,190,55,112,127,2,0,153,243,81,119,148,191,3,0,154,179,89,121,249,179,2,0,157,179,107,54,51,32,2,0,162,115,211,56,33,218,3,0,162,115,137,167,85,54,4,0,163,115,244,67,190,8,3,0,167,243,69,156,165,62,2,0,167,115,0,184,127,126,2,0,169,51,154,160,241,60,3,0,169,51,20,81,48,103,3,0,170,179,217,228,28,102,2,0,175,243,154,23,88,59,4,0,175,179,15,177,192,88,4,0,180,243,82,37,1,160,3,0,180,179,161,207,141,55,4,0,183,51,19,180,54,131,4,0,184,243,79,14,162,36,3,0,185,115,186,30,82,159,3,0,187,115,126,200,231,255,3,0,190,115,208,137,144,34,3,0,190,115,188,144,119,130,3,0,192,179,80,212,156,115,3,0,195,115,208,110,215,61,3,0,196,51,139,20,175,105,3,0,198,243,45,117,109,79,4,0,199,51,81,100,124,18,2,0,200,115,183,244,24,144,2,0,200,243,140,233,220,91,3,0,201,179,91,79,191,159,3,0,203,115,143,242,89,200,2,0,203,243,55,237,43,96,4,0,204,179,161,142,15,72,2,0,204,51,153,223,85,26,3,0,204,51,51,13,156,226,3,0,207,179,147,61,225,201,3,0,208,115,47,136,128,156,2,0,209,51,193,198,3,12,4,0,210,51,103,95,2,38,2,0,218,243,136,7,22,128,2,0,219,51,72,110,154,150,3,0,222,51,153,223,72,26,3,0,222,243,103,37,142,127,3,0,223,179,77,104,186,210,3,0,224,243,225,202,75,103,2,0,224,51,217,162,241,196,3,0,227,243,43,169,126,149,2,0,230,115,193,100,208,168,2,0,230,179,50,97,102,5,4,0,231,115,60,81,100,209,2,0,234,179,110,60,81,190,3,0,239,179,111,114,58,22,3,0,239,179,185,123,126,117,4,0,240,179,15,227,87,71,3,0,240,179,59,129,60,226,3,0,241,51,121,141,18,100,2,0,247,51,91,66,147,245,3,0,248,115,182,4,150,86,4,0,251,243,162,51,214,165,3,0,252,179,43,184,245,133,2,0,253,179,137,255,151,237,2,0,255,243,148,34,177,81,3,0,1,244,136,178,155,224,2,0,2,116,213,23,86,81,2,0,3,116,239,234,12,108,3,0,6,244,233,48,151,23,3,0,8,180,149,154,187,8,4,0,16,180,236,223,28,156,2,0,18,116,25,191,7,32,3,0,24,116,196,145,220,162,3,0,26,180,137,237,9,189,3,0,27,116,234,223,133,242,3,0,28,180,88,199,208,183,3,0,30,180,242,247,90,5,2,0,31,52,34,40,131,64,4,0,33,244,170,152,42,92,2,0,34,244,118,9,251,80,3,0,34,116,145,160,112,106,4,0,35,52,72,201,193,193,3,0,36,52,102,1,127,117,2,0,43,52,140,128,228,84,2,0,44,52,131,164,220,20,3,0,45,244,230,234,140,88,2,0,53,180,218,173,230,157,3,0,54,244,99,53,10,48,2,0,56,180,177,156,157,148,3,0,56,180,99,199,160,43,4,0,58,52,69,175,60,68,2,0,61,244,119,74,32,151,3,0,62,180,222,163,217,44,2,0,63,180,150,68,107,0,4,0,64,180,41,25,61,114,2,0,69,52,121,112,205,81,3,0,71,180,78,42,213,187,3,0,77,244,117,185,15,185,2,0,79,244,190,9,32,158,3,0,81,180,153,236,149,33,4,0,83,180,241,134,59,119,4,0,84,180,189,79,72,224,2,0,93,116,54,228,104,88,2,0,96,244,27,151,76,85,3,0,97,52,76,14,163,35,2,0,97,116,33,99,223,148,4,0,99,52,65,139,38,55,4,0,100,52,210,235,249,151,2,0,101,52,128,12,57,127,2,0,102,116,75,10,30,86,2,0,102,52,151,85,169,228,3,0,102,52,91,134,124,35,4,0,102,116,180,74,117,37,4,0,105,52,47,253,114,111,3,0,115,244,4,131,60,73,4,0,116,180,76,32,43,169,3,0,124,180,85,23,210,231,2,0,124,180,4,42,162,249,2,0,125,52,158,62,131,132,4,0,127,244,23,81,77,95,3,0,127,180,21,144,139,15,4,0,128,52,223,247,84,65,2,0,128,116,136,168,65,140,2,0,132,244,169,219,8,77,2,0,133,180,21,234,84,97,3,0,134,52,141,243,171,131,2,0,135,180,244,188,191,227,3,0,142,244,186,251,228,179,2,0,144,244,53,241,206,30,3,0,144,244,68,231,40,223,3,0,144,116,239,145,0,75,4,0,147,180,68,27,4,106,2,0,148,244,243,140,11,50,2,0,152,180,8,129,197,71,2,0,152,116,162,23,53,250,3,0,155,244,125,149,169,212,3,0,156,52,9,249,184,108,3,0,156,244,106,96,226,1,4,0,157,52,143,160,153,117,2,0,157,180,222,136,124,156,3,0,158,52,102,18,135,39,4,0,159,244,144,96,28,121,3,0,161,180,232,169,22,89,3,0,162,116,209,67,94,34,3,0,162,116,129,246,132,129,3,0,169,180,58,162,151,142,3,0,169,52,100,106,132,86,4,0,170,244,224,5,134,150,3,0,176,244,52,69,232,138,3,0,177,180,201,206,159,83,2,0,182,116,158,202,135,14,2,0,182,180,183,228,68,80,4,0,183,244,2,54,236,13,2,0,183,244,114,26,248,190,2,0,184,116,177,95,50,133,3,0,184,116,116,78,222,166,3,0,186,244,115,33,193,127,3,0,186,244,128,221,59,145,3,0,187,244,251,89,178,30,2,0,188,52,254,171,62,131,3,0,190,180,223,103,140,7,2,0,190,52,241,47,185,33,2,0,190,116,62,100,105,121,2,0,190,52,86,121,157,131,3,0,191,244,149,81,17,244,2,0,192,116,176,74,198,145,4,0,194,244,127,131,169,33,3,0,194,52,254,181,123,2,4,0,195,52,215,82,40,140,3,0,196,180,173,192,30,103,2,0,200,116,55,253,77,16,4,0,202,116,206,250,126,145,3,0,205,116,199,117,12,22,4,0,206,116,160,117,57,23,4,0,207,180,14,121,168,7,2,0,208,52,131,164,242,20,3,0,212,180,208,191,156,171,3,0,220,116,31,200,138,246,2,0,221,180,100,98,43,124,4,0,226,52,124,206,115,232,2,0,226,244,44,3,159,236,3,0,226,116,166,212,53,87,4,0,230,116,197,117,65,236,3,0,236,52,153,190,189,92,4,0,240,116,17,192,204,172,2,0,242,180,57,182,197,62,4,0,246,52,214,242,18,232,3,0,253,180,210,65,120,108,2,0,6,53,191,181,99,216,3,0,7,245,88,199,34,182,3,0,14,117,221,16,26,75,3,0,16,181,255,253,244,242,2,0,17,117,110,25,45,108,4,0,19,245,186,4,70,29,3,0,26,245,30,169,107,95,3,0,27,181,189,1,96,49,3,0,29,53,52,80,203,15,2,0,29,53,208,2,179,46,2,0,32,117,83,30,166,185,2,0,33,117,15,234,210,239,3,0,35,53,170,129,99,178,2,0,38,181,87,243,183,9,4,0,39,53,164,140,190,121,2,0,43,117,113,86,143,41,4,0,47,117,40,17,254,112,4,0,48,53,251,170,125,33,4,0,49,53,8,34,206,198,2,0,49,245,223,203,179,119,3,0,49,53,110,13,244,75,4,0,52,245,29,77,218,222,2,0,52,245,133,193,31,233,3,0,54,53,208,38,15,184,2,0,55,117,37,97,244,242,3,0,61,117,178,148,26,217,2,0,62,53,41,125,89,224,2,0,66,53,27,137,220,161,3,0,67,117,103,173,223,17,2,0,69,181,201,130,99,83,2,0,71,117,137,219,80,102,4,0,74,53,214,18,198,126,4,0,76,117,90,71,56,125,2,0,78,181,24,54,209,9,3,0,79,245,205,100,4,162,3,0,83,117,75,185,133,138,2,0,83,181,51,70,11,200,3,0,87,245,251,80,51,251,2,0,88,117,57,123,245,9,3,0,88,245,235,119,10,209,3,0,89,117,85,205,126,75,3,0,92,245,170,171,102,243,2,0,94,181,156,77,65,83,2,0,94,245,53,220,64,111,4,0,98,245,210,214,192,143,3,0,103,181,161,135,6,240,3,0,106,117,138,31,137,130,3,0,110,181,55,195,228,31,2,0,110,53,216,62,35,192,3,0,111,181,244,76,145,88,3,0,115,53,110,21,2,40,2,0,124,181,211,213,250,86,2,0,124,53,129,58,237,115,3,0,128,53,150,104,129,174,2,0,128,181,154,123,199,55,4,0,131,117,191,239,221,27,3,0,131,117,111,243,72,88,4,0,133,53,246,67,82,79,2,0,141,53,221,116,212,226,3,0,142,181,109,202,169,112,2,0,142,53,238,254,57,76,4,0,144,181,144,170,230,81,3,0,144,245,27,97,28,116,4,0,145,245,24,212,35,120,2,0,147,245,150,92,84,197,2,0,147,181,39,81,246,15,3,0,147,53,27,4,203,25,4,0,148,245,17,110,82,190,2,0,149,117,95,199,151,70,2,0,149,245,118,138,31,92,4,0,150,245,219,64,212,84,2,0,150,53,34,17,83,9,4,0,153,245,68,0,7,6,4,0,154,117,179,68,234,77,4,0,155,53,125,31,113,141,4,0,156,245,159,69,134,155,2,0,159,117,167,78,140,211,3,0,159,53,63,240,89,255,3,0,161,245,73,186,160,26,3,0,161,53,45,152,66,94,4,0,162,181,161,242,191,52,2,0,162,181,197,94,51,249,2,0,166,117,8,26,91,90,2,0,167,181,29,138,152,215,3,0,171,117,210,177,226,73,2,0,173,117,117,162,83,70,4,0,174,245,164,40,29,144,4,0,176,245,155,224,242,94,2,0,176,117,187,170,32,49,4,0,180,53,164,102,200,18,4,0,181,181,129,22,16,110,4,0,185,53,120,179,142,153,3,0,191,117,46,28,75,230,3,0,192,181,42,204,155,3,2,0,192,117,33,215,38,74,3,0,193,53,106,154,76,143,3,0,195,117,178,218,122,179,3,0,198,245,113,68,138,103,4,0,199,181,163,208,120,38,3,0,200,245,21,41,154,7,2,0,203,53,247,204,139,247,3,0,213,181,90,104,172,93,2,0,214,53,113,39,136,94,2,0,216,117,90,75,81,66,4,0,218,53,84,167,90,249,3,0,219,245,85,115,89,53,4,0,220,245,255,20,113,55,2,0,222,245,122,49,47,94,3,0,223,117,240,162,90,98,2,0,225,245,175,181,160,120,2,0,226,117,229,206,20,52,3,0,227,53,13,159,109,10,3,0,228,181,234,22,182,213,2,0,230,181,202,120,130,110,2,0,230,53,235,15,165,184,3,0,231,181,71,173,113,71,3,0,231,117,153,230,174,79,4,0,235,53,153,177,254,66,4,0,238,53,153,100,182,171,3,0,241,245,138,132,143,190,3,0,248,181,47,227,98,140,2,0,252,181,132,190,94,13,4,0,252,117,8,252,22,37,4,0,253,117,120,23,153,148,2,0,254,117,225,220,138,206,3,0,254,245,209,246,136,123,4,0,254,181,214,45,154,151,4,0,2,54,91,54,77,176,2,0,2,118,76,136,15,7,4,0,3,54,52,51,224,27,4,0,4,118,49,8,55,214,3,0,5,54,100,183,111,199,3,0,8,118,4,230,37,162,3,0,9,246,40,166,86,113,2,0,19,54,154,202,154,24,4,0,22,182,197,240,92,45,4,0,23,118,152,95,31,159,2,0,24,118,133,182,106,98,4,0,25,54,191,122,61,124,2,0,27,246,29,70,58,96,2,0,27,246,226,85,47,104,4,0,30,118,8,230,5,212,3,0,34,54,178,209,113,57,3,0,35,54,57,170,146,60,2,0,37,118,107,28,62,63,3,0,39,182,250,245,196,148,3,0,39,118,160,240,23,84,4,0,40,54,36,80,80,122,4,0,42,246,58,142,67,21,2,0,44,54,82,126,120,51,3,0,45,246,71,41,216,136,2,0,45,182,130,115,129,60,3,0,45,54,71,233,171,205,3,0,47,54,192,170,58,102,4,0,52,182,182,56,98,48,4,0,54,54,143,25,85,106,2,0,55,246,166,58,35,124,3,0,56,182,80,223,30,54,2,0,61,246,157,190,230,93,3,0,67,246,54,36,149,175,2,0,69,118,205,48,225,220,3,0,72,246,181,106,210,255,3,0,74,246,96,50,60,247,2,0,76,246,241,10,177,18,3,0,78,182,33,15,173,73,2,0,78,182,33,15,191,73,2,0,78,182,33,15,208,73,2,0,78,182,33,15,248,152,4,0,81,182,85,6,147,98,4,0,88,246,106,238,204,57,2,0,90,246,102,79,94,201,3,0,93,54,102,62,70,113,3,0,93,246,28,190,55,28,4,0,94,246,51,71,195,13,2,0,94,54,200,8,21,123,2,0,95,182,254,190,211,155,3,0,97,246,109,83,103,245,3,0,100,118,231,172,8,60,2,0,101,54,141,77,115,195,3,0,103,182,19,110,252,97,4,0,103,54,121,11,19,152,4,0,103,54,121,11,40,152,4,0,110,54,186,217,116,241,2,0,112,246,187,145,125,229,2,0,114,54,110,219,245,59,2,0,114,246,249,250,180,177,2,0,116,118,101,52,114,245,2,0,125,118,164,207,78,99,2,0,125,54,231,40,109,140,4,0,126,54,162,170,44,248,2,0,127,182,187,122,177,4,3,0,127,246,219,247,246,237,3,0,135,118,154,17,193,231,2,0,137,246,126,196,83,13,2,0,143,54,159,198,46,77,3,0,145,182,145,167,232,187,2,0,145,246,123,184,199,89,3,0,146,246,57,91,92,96,3,0,147,118,76,81,5,195,2,0,149,54,63,184,122,15,3,0,152,246,54,185,36,42,3,0,153,54,191,157,104,131,2,0,153,118,110,169,85,140,2,0,153,246,117,109,241,238,2,0,154,54,229,106,208,91,2,0,154,118,3,176,166,235,2,0,155,246,221,7,166,3,4,0,157,118,147,184,252,113,2,0,158,118,244,31,58,37,4,0,159,182,2,210,27,219,2,0,159,118,252,38,139,107,3,0,159,118,230,85,163,136,3,0,161,182,247,130,81,237,2,0,165,246,110,40,183,48,3,0,165,182,24,81,106,72,3,0,166,246,202,237,117,238,2,0,166,182,145,184,29,73,3,0,169,182,198,248,41,138,4,0,170,54,173,198,131,40,4,0,175,246,186,126,182,14,2,0,175,118,227,101,134,39,3,0,178,246,156,254,123,26,2,0,178,182,46,96,73,36,2,0,178,182,173,53,129,176,3,0,180,182,129,156,76,244,2,0,185,118,206,77,91,163,3,0,186,182,40,252,181,56,3,0,187,118,139,211,199,114,2,0,187,182,194,152,88,40,4,0,188,246,221,208,117,78,3,0,189,54,215,84,164,48,3,0,189,54,21,91,10,234,3,0,189,118,176,143,86,133,4,0,189,118,35,119,45,135,4,0,190,54,221,23,56,172,3,0,191,118,73,54,19,61,3,0,191,182,247,18,34,211,3,0,192,246,54,40,91,43,4,0,195,182,183,121,71,88,2,0,197,118,183,172,119,210,3,0,199,118,69,38,241,233,3,0,200,118,40,118,157,28,2,0,208,182,248,67,97,77,4,0,209,246,31,8,154,222,2,0,209,182,28,175,15,134,4,0,212,118,155,188,61,229,2,0,213,182,238,145,118,152,3,0,213,54,87,159,248,89,4,0,217,246,137,42,30,33,2,0,222,54,44,204,143,59,2,0,222,246,17,146,147,5,4,0,224,118,105,145,112,41,3,0,225,182,24,81,66,72,3,0,226,54,202,126,246,24,2,0,226,182,124,183,65,42,2,0,226,54,159,198,204,76,3,0,227,54,141,118,50,34,2,0,228,118,1,177,196,3,3,0,229,118,2,96,27,130,4,0,230,246,124,224,48,194,3,0,230,54,206,56,127,214,3,0,233,54,231,91,127,29,4,0,234,246,84,162,177,239,2,0,236,182,132,42,203,94,4,0,239,54,173,215,31,109,4,0,241,54,73,177,7,37,4,0,242,246,135,185,84,67,2,0,245,182,242,234,82,163,3,0,246,182,131,79,32,9,2,0,249,118,170,21,155,112,4,0,251,54,53,52,176,61,3,0,253,54,156,149,58,188,3,0,0,183,199,252,209,251,3,0,2,119,149,121,239,108,3,0,2,55,52,99,205,204,3,0,2,183,199,137,108,50,4,0,3,183,101,108,89,20,2,0,5,183,199,55,152,126,2,0,6,119,83,23,87,61,4,0,7,55,240,87,26,229,2,0,10,247,38,81,123,150,2,0,10,183,193,98,132,189,3,0,13,183,213,233,28,168,2,0,15,247,30,39,89,172,2,0,15,119,130,230,181,52,3,0,17,55,205,188,34,204,2,0,18,119,121,235,30,225,2,0,19,55,126,9,116,14,2,0,20,55,196,80,105,16,2,0,26,247,197,25,172,196,3,0,29,55,166,188,26,163,2,0,33,119,80,246,65,123,2,0,36,183,106,168,97,123,2,0,36,55,199,61,79,240,2,0,37,119,208,172,246,96,2,0,41,247,49,225,133,117,3,0,42,55,245,68,126,46,3,0,43,247,255,52,241,109,2,0,45,247,16,206,237,128,4,0,47,183,210,117,213,28,2,0,47,119,80,246,144,123,2,0,49,183,198,79,209,92,3,0,50,55,131,224,177,125,4,0,53,183,99,238,231,117,3,0,54,119,163,185,99,202,3,0,59,247,46,43,0,92,2,0,62,183,110,61,80,57,4,0,63,183,243,214,38,125,4,0,65,247,234,9,71,37,3,0,66,55,216,242,89,49,4,0,68,119,39,38,215,126,3,0,70,247,128,42,225,97,3,0,71,119,231,19,94,146,3,0,72,55,56,61,140,186,2,0,76,183,214,194,163,147,4,0,78,55,198,42,224,177,2,0,78,247,90,171,233,192,3,0,78,55,35,101,164,138,4,0,80,183,8,240,7,198,2,0,87,247,233,106,5,132,2,0,87,247,87,209,131,233,3,0,88,119,144,125,53,115,3,0,90,55,125,247,123,121,4,0,91,247,10,173,2,192,2,0,91,55,124,194,220,107,4,0,92,119,124,184,147,94,3,0,92,55,218,40,90,205,3,0,93,247,147,209,206,149,2,0,95,183,204,54,43,144,2,0,95,247,13,177,248,230,2,0,96,119,32,229,23,41,4,0,97,183,172,104,82,214,2,0,97,119,23,96,238,217,2,0,102,55,133,235,233,199,2,0,104,55,212,126,128,68,2,0,107,55,215,105,144,26,2,0,108,183,244,122,141,8,2,0,111,119,120,150,252,5,2,0,118,55,210,246,60,112,4,0,120,247,200,185,115,35,3,0,130,247,226,128,122,176,2,0,132,183,2,210,25,14,4,0,133,183,11,74,213,232,2,0,135,183,22,150,218,3,2,0,137,55,193,180,119,4,4,0,139,55,89,73,208,11,3,0,142,119,60,89,17,162,2,0,143,183,62,193,227,163,2,0,143,183,188,150,148,42,4,0,144,55,129,114,7,205,2,0,144,183,121,19,59,111,3,0,145,119,189,38,188,107,3,0,147,247,25,187,60,49,4,0,148,183,6,158,238,166,2,0,151,247,96,239,238,154,3,0,152,247,119,151,9,5,2,0,152,119,193,228,218,200,2,0,152,247,167,61,134,27,4,0,156,247,249,216,159,230,3,0,157,55,176,4,35,176,3,0,157,183,138,212,24,242,3,0,158,55,119,48,73,235,3,0,159,183,212,96,212,77,4,0,162,119,94,18,79,134,4,0,164,247,199,110,80,219,2,0,167,55,50,84,34,237,3,0,172,183,156,188,179,83,4,0,173,183,219,72,227,104,4,0,174,119,41,93,245,240,3,0,175,119,253,106,106,15,2,0,175,119,201,3,157,112,3,0,176,247,233,186,112,194,2,0,176,55,119,10,233,141,3,0,180,55,81,150,75,160,2,0,181,55,165,55,87,104,3,0,182,247,157,228,206,36,3,0,182,119,248,35,248,145,4,0,185,119,111,105,69,205,2,0,189,183,126,230,209,122,3,0,196,247,137,185,246,38,3,0,197,247,99,168,192,233,2,0,199,247,137,185,5,39,3,0,205,247,114,26,15,191,2,0,205,55,174,78,250,232,2,0,206,55,7,122,144,166,3,0,206,247,199,89,209,17,4,0,208,183,82,225,62,85,4,0,213,183,39,81,106,14,3,0,214,119,219,22,61,102,2,0,215,55,239,137,95,246,3,0,219,183,212,96,223,77,4,0,220,247,32,243,177,219,2,0,225,183,148,26,149,35,3,0,226,247,99,84,43,126,3,0,226,247,12,36,28,85,4,0,227,247,94,105,20,39,2,0,228,55,219,4,47,151,2,0,231,55,255,16,57,6,4,0,232,55,105,184,185,101,3,0,236,119,190,161,160,88,2,0,237,183,242,211,119,61,2,0,237,247,179,90,77,107,2,0,237,247,249,189,215,9,4,0,238,119,124,56,181,106,4,0,239,247,216,66,149,228,2,0,245,183,198,79,23,93,3,0,248,55,138,155,21,85,2,0,250,247,107,207,163,56,2,0,251,247,71,173,23,21,2,0,251,55,145,164,42,254,2,0,254,55,32,40,25,75,2,0,254,55,166,161,156,198,3,0,3,56,171,47,123,186,2,0,4,56,247,225,118,92,3,0,5,120,124,184,179,94,3,0,6,120,25,242,6,116,3,0,8,120,38,241,19,193,2,0,13,56,184,186,107,6,3,0,14,56,72,69,180,24,4,0,17,248,64,22,126,65,2,0,18,248,18,144,59,85,3,0,18,248,238,253,123,22,4,0,19,184,203,224,38,89,3,0,21,248,94,220,124,59,2,0,22,248,177,119,133,16,4,0,23,120,75,7,41,25,2,0,23,120,141,14,60,135,3,0,23,248,71,234,255,157,3,0,26,184,153,223,226,226,2,0,26,120,112,187,9,69,4,0,27,248,246,171,106,47,4,0,31,184,223,181,36,76,2,0,33,248,68,235,150,87,4,0,37,56,209,59,12,131,2,0,37,56,241,219,106,114,3,0,43,184,101,199,183,23,4,0,44,248,101,126,238,143,2,0,46,56,67,51,216,168,3,0,47,56,98,33,48,179,3,0,48,184,132,201,236,34,4,0,62,120,119,162,124,82,2,0,62,248,130,95,203,81,4,0,64,184,163,75,82,38,2,0,64,56,250,1,150,94,2,0,64,56,88,224,49,212,2,0,64,184,152,198,74,182,3,0,66,248,60,38,57,25,2,0,72,248,54,167,168,104,2,0,72,120,59,184,5,52,3,0,72,120,116,20,200,80,4,0,73,120,186,128,38,75,4,0,76,120,185,54,23,12,4,0,77,248,185,19,120,8,4,0,79,56,145,164,104,254,2,0,80,120,9,103,163,239,3,0,82,120,147,245,111,27,4,0,90,120,169,229,110,11,4,0,90,120,68,141,53,24,4,0,91,120,6,211,225,158,2,0,93,248,181,128,237,93,2,0,95,56,52,131,48,142,3,0,96,120,44,113,55,74,3,0,98,56,153,223,251,28,3,0,104,120,237,203,160,162,3,0,104,120,18,24,194,119,4,0,106,120,199,85,59,169,3,0,110,56,104,83,110,138,3,0,112,184,229,13,74,99,3,0,114,56,231,100,17,34,4,0,119,56,42,97,145,43,4,0,123,248,51,124,169,63,4,0,123,184,109,199,51,114,4,0,123,184,203,54,3,144,4,0,124,184,92,201,228,193,2,0,128,56,205,229,196,16,2,0,131,248,22,220,202,224,3,0,132,248,251,74,5,138,2,0,134,56,21,192,226,181,2,0,134,56,68,27,142,123,3,0,137,56,21,192,211,181,2,0,138,56,21,192,196,181,2,0,139,248,41,40,158,203,3,0,142,120,226,33,12,114,4,0,144,120,240,21,216,58,2,0,144,248,64,252,208,247,3,0,146,248,146,77,255,153,2,0,146,248,41,4,211,169,3,0,147,56,65,70,82,110,3,0,149,56,145,61,73,158,2,0,150,184,171,168,31,125,3,0,152,248,106,27,138,129,4,0,156,56,100,162,130,34,2,0,156,56,120,25,246,189,2,0,157,56,136,196,96,44,4,0,160,184,168,5,1,96,4,0,162,120,177,230,52,20,3,0,163,56,234,192,126,28,4,0,165,120,13,12,255,17,3,0,174,56,76,13,27,200,2,0,175,184,222,88,255,52,4,0,177,120,160,143,14,139,3,0,179,120,162,203,159,237,3,0,180,120,40,176,172,40,2,0,180,120,65,66,94,52,4,0,182,184,100,128,59,94,2,0,183,120,126,213,190,116,4,0,187,56,229,104,128,90,2,0,188,184,48,188,136,58,4,0,189,248,175,81,109,198,2,0,189,120,135,203,99,208,2,0,192,56,233,127,0,39,2,0,195,248,71,212,45,49,3,0,196,120,15,80,225,50,4,0,199,120,23,188,68,2,3,0,199,120,69,83,17,236,3,0,200,248,63,213,163,144,4,0,203,56,40,166,190,68,2,0,203,56,86,31,156,93,4,0,204,248,54,92,231,103,2,0,204,184,176,183,188,104,3,0,209,248,206,45,178,238,3,0,209,248,196,179,161,88,4,0,212,120,243,217,154,198,2,0,213,120,130,133,46,91,2,0,214,56,154,33,165,188,3,0,216,248,30,87,216,53,4,0,219,248,63,84,34,231,3,0,223,56,252,216,218,150,3,0,224,184,11,74,88,235,2,0,225,120,114,167,88,49,2,0,229,248,50,38,39,207,2,0,233,56,136,239,82,9,2,0,234,184,148,117,216,110,2,0,235,120,161,138,227,131,3,0,238,184,26,192,39,153,2,0,238,184,6,98,104,142,3,0,238,56,230,230,75,45,4,0,240,120,14,171,112,58,2,0,241,120,247,65,33,147,4,0,247,248,10,143,180,199,2,0,247,56,33,186,55,5,3,0,250,248,244,137,233,69,2,0,251,120,11,98,216,36,2,0,251,120,133,249,112,31,4,0,254,184,192,124,62,60,3,0,0,249,83,145,248,117,2,0,1,249,200,171,75,100,4,0,1,185,2,86,50,133,4,0,2,57,5,160,57,69,4,0,5,249,65,100,17,67,2,0,6,57,233,132,125,125,4,0,7,185,48,49,236,25,3,0,8,121,211,168,66,29,2,0,11,249,157,177,89,121,3,0,21,249,145,142,204,37,2,0,21,185,197,15,243,20,4,0,25,57,41,74,165,152,4,0,28,185,11,218,13,108,2,0,39,185,70,237,17,60,3,0,41,185,66,66,146,69,2,0,42,121,58,168,42,99,3,0,44,57,98,98,112,146,3,0,46,249,184,100,41,7,2,0,52,185,142,250,0,245,3,0,53,57,94,0,212,52,2,0,53,185,104,204,197,200,3,0,54,121,37,81,44,32,3,0,55,57,236,233,37,110,4,0,57,121,193,66,211,102,4,0,58,121,53,81,240,229,2,0,59,57,64,236,191,124,2,0,64,57,180,77,232,28,3,0,67,249,24,234,204,102,2,0,68,249,58,6,170,87,3,0,70,121,19,192,125,178,2,0,71,249,133,254,173,68,2,0,75,121,123,171,244,14,3,0,78,249,141,67,179,2,3,0,81,121,3,41,117,32,4,0,82,57,30,93,176,58,3,0,84,57,21,192,181,181,2,0,86,185,16,15,181,57,4,0,87,57,103,160,1,44,4,0,88,185,29,230,118,200,3,0,90,185,68,37,18,47,3,0,92,249,85,114,126,11,2,0,94,185,185,120,59,5,2,0,100,249,229,192,53,127,4,0,101,57,160,97,153,29,2,0,102,57,17,145,1,54,4,0,104,121,113,119,160,4,3,0,104,185,41,254,227,223,3,0,107,57,67,55,190,11,4,0,108,249,7,217,44,42,4,0,117,185,225,151,38,9,3,0,119,121,125,177,107,216,2,0,122,185,138,218,145,53,2,0,124,57,150,227,195,95,2,0,124,249,188,152,74,161,3,0,124,57,95,117,131,48,4,0,125,57,60,17,64,75,3,0,126,185,160,223,88,4,4,0,128,121,76,81,23,188,2,0,129,121,246,221,200,147,2,0,130,249,131,84,63,129,3,0,132,185,230,33,175,21,4,0,133,249,28,209,86,16,2,0,134,121,142,231,163,241,2,0,138,185,90,75,134,171,3,0,141,249,117,101,25,48,2,0,155,121,194,103,221,80,4,0,156,57,241,98,85,253,2,0,157,249,198,149,79,35,2,0,158,185,122,25,250,121,2,0,160,121,77,86,171,150,2,0,161,249,138,106,175,74,4,0,162,185,31,1,203,81,2,0,163,121,220,211,172,222,2,0,165,121,71,145,79,159,2,0,165,249,8,2,50,134,3,0,173,185,87,103,114,63,4,0,177,185,176,84,219,1,3,0,182,249,221,34,236,9,4,0,184,185,62,199,127,42,4,0,185,249,198,99,119,88,4,0,187,249,68,198,119,73,3,0,188,121,167,35,131,103,3,0,192,57,171,40,22,11,2,0,194,249,113,246,49,26,2,0,197,57,6,73,157,199,2,0,197,185,143,19,8,0,3,0,200,121,224,193,191,193,2,0,201,185,40,189,238,90,2,0,201,57,68,197,43,59,3,0,204,185,224,253,194,215,2,0,204,185,179,129,130,149,3,0,208,249,153,27,107,72,2,0,210,249,75,215,208,178,2,0,212,121,59,184,166,52,3,0,215,57,244,248,166,232,2,0,216,185,83,226,199,43,2,0,216,121,59,184,109,52,3,0,220,249,228,73,82,170,2,0,228,57,105,41,14,204,3,0,229,249,217,215,4,25,2,0,241,57,203,13,174,159,2,0,241,249,161,243,173,112,4,0,242,185,141,88,104,146,2,0,246,249,86,213,62,58,4,0,248,121,138,32,212,6,2,0,248,121,239,142,26,28,3,0,249,249,160,61,70,186,3,0,250,121,190,105,230,134,2,0,252,185,79,131,30,205,3,0,0,122,120,1,121,118,2,0,0,186,88,188,48,230,3,0,5,122,148,241,110,132,4,0,9,250,172,42,86,64,4,0,10,186,78,170,139,3,3,0,14,250,161,188,86,64,2,0,17,122,120,214,64,48,3,0,18,122,225,135,36,168,3,0,22,58,23,25,77,106,3,0,23,250,191,110,154,91,2,0,24,186,170,145,127,13,3,0,26,186,236,203,226,206,3,0,27,58,205,131,108,113,2,0,27,122,18,98,95,119,2,0,28,58,168,130,71,227,3,0,29,186,193,10,160,201,3,0,36,58,241,64,185,66,4,0,46,186,87,209,207,78,3,0,47,250,9,179,208,182,3,0,50,58,50,143,111,103,3,0,52,122,64,104,250,74,2,0,53,250,20,81,97,103,3,0,54,250,33,49,88,43,2,0,58,58,206,61,79,44,3,0,58,250,236,30,4,2,4,0,65,250,226,187,202,162,3,0,67,122,234,171,22,175,3,0,69,58,15,130,172,63,3,0,70,186,194,44,20,74,2,0,70,186,105,214,37,43,3,0,73,58,153,223,180,30,3,0,73,250,223,32,98,206,3,0,74,250,232,153,71,95,2,0,81,250,74,211,4,104,4,0,87,58,254,195,98,15,4,0,88,186,114,25,225,172,3,0,92,186,241,22,168,132,2,0,95,186,90,226,85,5,3,0,96,250,171,167,100,141,3,0,97,122,76,81,21,192,2,0,98,58,237,24,188,10,2,0,98,58,153,223,193,30,3,0,106,186,160,160,174,246,2,0,109,250,36,151,172,60,4,0,110,58,153,223,9,31,3,0,114,250,24,248,188,74,3,0,114,58,236,209,210,108,4,0,118,58,56,21,21,176,3,0,122,250,10,254,224,19,3,0,123,250,66,240,149,134,4,0,126,250,176,184,92,245,2,0,127,58,247,225,116,193,3,0,130,250,164,155,1,23,2,0,130,122,91,228,199,146,2,0,133,186,116,37,202,7,4,0,136,122,211,179,72,90,3,0,136,186,25,169,91,95,3,0,137,250,232,22,214,61,4,0,139,58,236,141,229,25,4,0,140,186,36,25,159,146,3,0,143,122,214,61,31,23,2,0,150,186,195,109,101,24,3,0,150,186,222,214,18,36,4,0,152,186,57,120,36,32,2,0,152,122,70,3,31,43,4,0,154,250,69,212,11,241,2,0,154,122,155,66,199,106,4,0,155,122,163,239,56,206,2,0,157,186,225,164,53,46,3,0,157,58,71,66,63,71,4,0,158,186,144,112,178,18,4,0,161,186,62,219,19,19,2,0,161,186,94,203,130,66,2,0,162,122,28,186,100,200,3,0,163,122,31,217,125,109,3,0,164,122,233,26,76,229,2,0,166,58,237,145,215,75,3,0,167,186,195,62,81,231,3,0,171,250,173,67,165,9,2,0,175,122,124,184,230,94,3,0,177,122,147,113,15,132,3,0,179,122,195,180,231,70,3,0,179,58,251,197,132,23,4,0,188,122,203,61,229,48,2,0,191,122,158,163,51,107,2,0,191,186,231,75,142,89,3,0,193,250,124,53,66,50,3,0,204,122,125,128,229,42,2,0,205,58,49,206,56,178,2,0,205,58,172,86,131,9,3,0,205,186,102,134,243,218,3,0,206,58,63,122,214,66,2,0,206,250,9,118,55,105,2,0,209,58,42,138,207,74,3,0,213,122,39,81,18,6,3,0,215,58,228,207,153,138,2,0,215,122,76,234,197,219,2,0,215,58,84,206,153,83,3,0,217,122,183,94,45,141,2,0,217,58,33,227,110,10,4,0,218,250,185,74,228,102,3,0,220,186,78,61,120,41,4,0,220,122,62,95,106,94,4,0,221,58,179,172,153,102,2,0,224,250,240,237,209,82,3,0,227,122,124,69,132,233,2,0,230,250,35,159,27,68,2,0,242,186,148,231,145,20,2,0,244,186,185,125,195,122,4,0,247,58,144,194,238,16,2,0,248,186,139,7,197,55,2,0,251,58,178,64,105,40,3,0,252,122,83,161,218,58,3,0,253,250,169,207,234,194,2,0,254,58,161,61,25,54,4,0,0,251,163,155,163,21,2,0,0,123,182,115,47,212,3,0,1,59,215,136,123,236,3,0,5,123,237,49,75,150,3,0,6,187,33,61,83,29,4,0,7,59,255,9,205,65,4,0,15,59,65,152,86,83,4,0,16,187,243,91,129,101,4,0,17,123,106,86,36,132,3,0,21,123,34,66,249,19,2,0,21,59,195,142,202,251,2,0,28,187,242,193,131,187,2,0,28,59,238,137,195,204,2,0,30,251,248,113,183,98,2,0,30,187,30,81,41,37,3,0,32,59,68,45,21,83,2,0,34,123,5,253,238,225,2,0,35,123,125,200,37,214,3,0,37,251,37,150,17,18,2,0,38,123,223,100,143,7,3,0,39,251,201,186,128,125,2,0,41,123,159,227,58,32,3,0,44,123,190,73,74,109,4,0,44,187,147,244,224,143,4,0,46,187,39,81,145,12,3,0,46,59,41,187,17,120,4,0,58,187,130,22,69,84,2,0,61,251,181,126,108,19,2,0,62,59,37,92,243,9,2,0,65,123,241,85,224,97,2,0,67,59,3,71,23,82,3,0,70,187,35,46,167,172,3,0,71,59,11,239,153,122,3,0,72,187,86,96,159,137,2,0,78,59,52,30,218,108,3,0,84,187,61,196,255,55,3,0,87,59,145,219,32,186,3,0,89,251,230,35,120,202,2,0,91,187,244,9,73,143,2,0,91,251,92,247,26,199,2,0,94,123,67,109,62,17,4,0,96,59,105,198,200,187,3,0,97,123,198,104,160,127,2,0,105,187,176,126,239,21,2,0,105,251,188,247,128,122,2,0,113,123,83,162,7,240,2,0,116,251,26,152,103,29,2,0,117,59,201,136,110,80,4,0,124,187,219,208,36,30,2,0,126,59,153,225,105,31,3,0,127,123,169,85,176,77,2,0,128,187,9,76,180,113,2,0,128,59,95,15,84,169,2,0,128,251,122,148,2,11,4,0,134,251,158,168,179,105,2,0,135,187,86,83,195,186,3,0,136,59,200,114,138,55,2,0,136,251,44,140,2,182,3,0,138,59,138,238,52,18,2,0,142,251,111,49,133,181,2,0,147,59,108,143,150,183,2,0,148,59,58,64,202,24,4,0,149,59,197,123,155,119,2,0,149,187,59,72,76,69,4,0,152,251,89,64,176,125,2,0,152,59,19,113,181,176,3,0,155,59,129,146,108,198,3,0,156,251,248,143,245,83,3,0,156,187,56,132,43,61,4,0,158,59,154,166,73,115,2,0,158,251,251,121,3,136,4,0,159,251,74,142,190,177,3,0,159,59,11,7,127,113,4,0,163,251,211,53,102,56,3,0,166,187,93,29,83,144,2,0,168,123,14,119,252,4,3,0,169,59,237,102,81,126,3,0,170,251,151,85,88,228,3,0,176,251,53,124,193,100,4,0,179,187,11,30,247,65,2,0,187,251,167,155,132,29,3,0,189,123,13,192,116,187,2,0,190,123,168,99,219,105,2,0,190,251,17,4,254,91,4,0,191,187,111,14,59,214,2,0,192,123,185,213,92,151,2,0,192,123,101,184,11,170,3,0,193,187,217,1,195,15,4,0,195,187,238,84,118,84,2,0,196,251,94,54,64,65,2,0,200,59,236,148,167,76,3,0,204,123,147,248,163,183,3,0,209,59,181,32,116,28,3,0,212,187,174,198,192,224,2,0,214,251,240,102,223,130,2,0,214,123,31,14,65,162,2,0,214,187,129,6,83,80,4,0,215,187,119,31,45,125,2,0,218,59,140,1,54,7,2,0,218,187,241,161,82,221,2,0,219,251,24,192,102,169,2,0,219,187,213,214,158,73,3,0,222,187,25,99,149,144,4,0,225,251,30,199,189,149,3,0,234,251,153,184,60,138,2,0,234,59,24,192,68,157,2,0,237,123,28,203,246,141,3,0,237,59,127,101,122,211,3,0,240,123,183,245,30,204,3,0,242,187,188,49,183,249,2,0,242,59,102,45,145,73,4,0,244,123,198,2,238,167,2,0,244,59,71,87,252,12,4,0,245,123,234,193,54,104,2,0,245,251,151,53,127,250,3,0,248,59,0,140,172,122,2,0,249,59,133,216,252,21,3,0,249,123,152,26,185,175,3,0,254,187,248,241,44,198,2,0,0,188,243,1,188,197,3,0,1,124,142,234,58,0,3,0,3,124,23,157,112,80,2,0,4,124,212,31,227,47,2,0,6,124,206,228,191,253,3,0,10,188,164,186,101,183,2,0,11,252,224,218,243,77,2,0,12,252,15,41,143,168,3,0,13,188,43,216,247,54,4,0,15,60,242,38,137,243,2,0,16,124,138,51,80,207,2,0,18,252,20,25,202,20,3,0,31,252,31,172,83,203,3,0,31,124,160,244,12,147,4,0,34,60,34,86,163,144,3,0,34,60,243,225,187,5,4,0,35,60,246,254,177,179,3,0,37,252,199,114,207,56,2,0,37,188,9,218,214,77,2,0,43,60,206,23,74,7,4,0,46,124,226,182,70,92,2,0,47,188,132,151,192,55,3,0,48,124,235,100,44,137,2,0,50,60,124,176,145,152,2,0,52,188,145,184,135,72,3,0,58,252,132,114,240,190,3,0,59,60,125,165,11,10,3,0,66,252,231,47,80,43,2,0,67,60,158,187,25,38,2,0,67,60,21,123,48,118,2,0,67,60,249,252,14,12,3,0,69,252,25,187,109,53,4,0,75,60,147,34,46,17,2,0,79,60,2,23,146,100,2,0,84,60,108,143,170,183,2,0,87,60,198,161,30,143,2,0,87,252,222,215,41,27,3,0,88,188,146,105,5,83,2,0,90,60,167,107,33,167,2,0,93,60,129,51,199,212,2,0,94,124,9,23,250,88,4,0,95,252,61,243,137,147,3,0,95,124,121,19,228,90,4,0,99,124,56,131,48,185,2,0,100,188,171,239,228,63,2,0,105,188,97,155,33,47,4,0,106,252,67,90,66,163,3,0,108,124,138,51,58,207,2,0,111,188,30,53,153,182,3,0,111,60,207,120,181,200,3,0,112,252,180,166,123,119,2,0,117,188,50,78,56,108,2,0,120,124,63,88,23,199,3,0,120,252,185,235,41,84,4,0,121,60,26,192,244,170,2,0,122,124,207,176,217,23,2,0,124,252,163,247,142,109,4,0,126,60,140,90,113,62,3,0,127,188,40,156,83,58,4,0,130,188,71,0,22,99,4,0,135,124,76,81,14,175,2,0,135,252,246,185,53,8,3,0,136,60,49,194,190,198,2,0,136,124,114,145,148,220,3,0,137,124,171,174,130,81,2,0,137,188,49,81,109,236,2,0,142,124,96,151,8,124,2,0,145,252,87,49,248,115,4,0,150,252,212,241,11,161,2,0,151,188,1,54,13,148,4,0,152,124,104,175,179,251,3,0,155,252,45,117,245,92,4,0,156,252,53,8,100,84,2,0,157,252,4,160,160,118,2,0,162,252,68,212,129,133,3,0,162,60,109,187,9,117,4,0,166,252,244,37,69,125,2,0,167,60,180,131,235,126,3,0,168,124,229,142,40,90,3,0,169,252,73,177,152,6,2,0,175,252,229,161,102,231,2,0,175,188,113,5,101,73,4,0,181,124,199,153,101,223,3,0,184,60,88,117,110,148,3,0,184,188,140,51,202,46,4,0,185,188,236,195,61,57,4,0,189,188,18,167,36,10,3,0,194,188,200,134,74,65,3,0,198,60,42,181,16,76,2,0,199,60,57,126,188,64,3,0,202,252,249,254,194,120,4,0,204,60,218,188,201,210,3,0,207,252,206,240,90,109,2,0,211,252,114,250,45,93,2,0,214,188,46,26,178,132,4,0,215,252,103,30,237,5,2,0,217,60,77,209,51,55,2,0,226,252,98,197,226,116,2,0,229,60,205,189,184,212,2,0,232,188,147,52,178,1,4,0,233,124,169,161,211,179,3,0,233,124,126,162,158,52,4,0,238,252,138,171,183,137,3,0,241,188,151,29,131,151,3,0,246,60,182,180,156,107,2,0,246,60,21,141,1,217,3,0,247,252,45,5,251,115,2,0,248,252,88,237,119,197,2,0,249,188,26,44,36,145,2,0,249,124,239,108,144,176,2,0,249,188,6,215,49,130,4,0,250,188,45,217,84,147,2,0,250,252,39,241,129,192,3,0,250,60,75,163,218,95,4,0,251,188,145,184,120,72,3,0,252,188,97,11,71,158,3,0,0,253,21,85,168,42,4,0,0,125,5,46,255,125,4,0,2,61,216,12,139,246,3,0,5,189,83,157,96,27,4,0,6,253,231,40,120,33,2,0,6,253,131,188,9,5,4,0,13,189,194,227,77,236,3,0,16,189,85,69,35,223,2,0,18,61,63,52,252,1,3,0,20,125,240,248,138,75,4,0,21,189,103,144,48,156,2,0,21,125,184,129,90,227,3,0,22,253,16,43,201,177,2,0,23,253,237,43,62,90,4,0,30,253,166,0,51,42,3,0,31,61,184,136,11,56,2,0,32,61,3,216,101,54,2,0,32,125,135,88,211,100,2,0,33,125,80,254,61,4,2,0,39,189,66,41,239,10,3,0,39,253,128,107,253,140,3,0,39,125,225,36,64,239,3,0,41,61,227,17,72,60,2,0,42,189,185,134,242,243,2,0,42,125,59,184,28,59,3,0,42,125,58,252,71,128,3,0,44,61,77,83,251,16,4,0,46,189,168,169,240,95,3,0,47,253,210,199,83,177,3,0,52,253,173,51,50,158,3,0,52,189,188,163,177,101,4,0,54,253,176,210,41,12,2,0,56,253,93,199,91,87,4,0,57,189,110,117,85,147,3,0,60,253,210,4,19,112,3,0,61,253,123,107,106,128,4,0,62,189,68,23,197,62,3,0,62,61,245,146,100,239,3,0,64,189,77,158,66,200,2,0,67,253,147,181,80,199,3,0,70,125,229,177,242,26,2,0,70,189,222,198,111,43,4,0,75,189,17,210,76,221,3,0,75,61,204,76,238,95,4,0,78,61,200,106,56,170,3,0,80,125,150,207,128,55,4,0,80,125,14,56,111,96,4,0,84,125,48,191,113,49,2,0,89,61,254,53,212,8,3,0,90,253,220,152,8,59,3,0,94,61,200,56,20,15,2,0,94,61,137,100,37,61,2,0,94,189,131,210,135,103,2,0,94,125,222,187,21,109,3,0,96,253,52,59,160,170,2,0,97,253,239,179,142,142,4,0,98,189,241,69,33,58,3,0,100,253,170,94,188,96,4,0,102,61,236,189,170,221,2,0,103,61,84,206,135,83,3,0,103,61,14,127,56,100,4,0,106,125,165,26,145,106,4,0,108,253,170,58,57,62,4,0,108,253,165,172,73,145,4,0,110,189,49,137,244,81,4,0,112,61,164,155,91,14,2,0,115,61,187,217,4,209,2,0,119,253,3,137,207,196,3,0,120,125,62,73,36,105,4,0,123,61,6,66,206,229,2,0,126,125,71,227,246,119,2,0,126,61,2,144,37,19,3,0,129,61,168,221,159,110,2,0,130,61,22,156,29,186,2,0,130,253,86,40,32,100,3,0,131,189,145,135,229,45,2,0,135,189,88,112,117,27,2,0,139,125,96,68,72,55,2,0,139,189,76,81,17,159,2,0,140,253,7,30,158,0,4,0,143,61,129,231,136,32,2,0,146,253,255,122,115,150,3,0,146,125,144,131,111,162,3,0,146,61,54,126,46,232,3,0,148,189,15,192,74,202,2,0,149,253,63,191,35,106,3,0,150,125,68,92,241,117,4,0,151,61,156,5,206,152,4,0,153,125,0,13,26,155,3,0,158,125,11,5,170,90,2,0,160,61,124,100,107,93,2,0,161,125,183,192,229,66,3,0,161,125,63,105,186,192,3,0,164,125,120,136,124,80,4,0,167,253,153,38,89,233,3,0,170,61,56,153,201,23,3,0,171,125,10,47,64,86,4,0,172,189,24,145,140,142,2,0,173,125,60,170,135,195,3,0,175,61,252,78,178,223,2,0,175,253,55,129,18,79,3,0,178,61,60,112,146,223,3,0,179,253,70,232,79,19,3,0,180,189,39,81,92,14,3,0,181,253,3,153,114,17,2,0,182,253,226,203,238,129,4,0,183,253,229,80,195,138,2,0,186,61,196,22,182,77,3,0,188,125,153,203,120,183,3,0,189,189,39,81,38,14,3,0,191,253,30,136,40,79,3,0,192,61,208,19,38,31,3,0,192,125,243,9,252,70,3,0,192,189,152,223,4,103,3,0,193,125,105,84,47,193,3,0,193,253,48,90,102,135,4,0,194,61,150,203,125,139,4,0,195,189,149,68,238,177,3,0,199,125,151,147,89,51,2,0,199,189,30,70,198,238,3,0,201,189,78,145,16,148,3,0,202,189,191,27,154,120,3,0,204,125,20,234,113,39,3,0,204,253,59,95,18,201,3,0,204,253,197,210,175,40,4,0,206,61,127,217,126,53,2,0,207,125,65,147,49,30,2,0,210,125,215,158,81,85,4,0,212,189,164,65,147,251,2,0,213,189,41,188,164,240,2,0,219,189,199,251,71,64,2,0,219,253,118,236,139,20,4,0,220,61,205,81,225,11,2,0,221,253,20,25,84,21,3,0,221,125,247,96,94,84,4,0,222,125,43,229,211,87,3,0,222,189,169,89,109,94,3,0,224,189,214,213,63,140,4,0,227,253,149,246,94,133,3,0,232,189,51,191,102,72,4,0,234,61,232,69,41,242,3,0,235,189,12,91,114,110,3,0,236,61,153,45,72,249,3,0,242,253,147,112,238,130,2,0,246,61,113,215,100,32,2,0,247,61,154,16,171,65,3,0,247,189,212,96,17,78,4,0,248,253,242,129,28,92,2,0,252,125,49,127,202,214,3,0,252,125,103,54,29,222,3,0,252,189,244,164,75,48,4,0,254,125,60,91,76,115,3,0,254,189,10,153,11,174,3,0,0,254,2,1,82,247,2,0,5,62,173,54,130,107,2,0,5,62,213,87,58,67,4,0,8,126,252,214,172,129,3,0,11,62,69,239,107,19,4,0,13,190,161,130,160,250,3,0,14,254,217,171,25,147,2,0,15,126,211,142,61,254,2,0,16,190,89,123,147,46,3,0,20,190,64,185,211,41,3,0,26,126,139,235,233,205,3,0,32,62,252,134,208,11,2,0,32,126,103,122,109,214,2,0,33,254,142,110,179,93,4,0,37,126,37,176,192,43,3,0,37,254,164,119,185,67,3,0,38,126,159,53,136,201,3,0,38,190,124,212,117,57,4,0,39,190,217,2,142,90,2,0,39,254,240,77,76,223,2,0,40,254,94,39,171,10,2,0,44,126,164,186,100,182,2,0,46,254,119,203,144,132,4,0,47,254,72,181,159,46,4,0,51,126,134,26,127,131,2,0,53,254,178,68,41,232,2,0,53,190,47,75,100,23,4,0,55,126,45,80,9,228,3,0,58,126,191,63,105,107,2,0,59,62,27,22,109,55,3,0,59,190,122,27,72,14,4,0,61,190,189,79,97,225,2,0,63,62,182,46,193,33,2,0,67,126,37,81,229,31,3,0,69,62,107,32,105,86,3,0,69,190,91,213,232,91,4,0,70,126,97,200,86,118,4,0,72,190,186,237,116,240,2,0,72,190,112,153,223,153,3,0,72,190,221,198,112,165,3,0,76,254,244,54,92,192,2,0,77,62,162,142,182,89,3,0,78,62,72,96,171,135,2,0,80,254,157,227,224,34,3,0,83,254,92,147,74,133,3,0,83,254,82,162,170,38,4,0,89,190,249,197,184,7,2,0,89,62,93,32,118,37,2,0,93,254,249,225,143,187,3,0,94,62,199,6,218,135,3,0,98,62,56,248,151,199,3,0,100,190,88,169,33,36,3,0,101,62,222,148,47,12,4,0,103,126,80,76,54,238,2,0,103,62,226,124,41,21,4,0,106,126,123,10,63,91,2,0,108,254,85,147,251,106,2,0,111,62,129,100,175,157,3,0,112,254,125,224,40,71,4,0,113,190,89,143,202,32,4,0,118,254,58,152,247,187,3,0,124,254,100,80,197,180,3,0,125,126,4,241,232,32,3,0,125,126,151,85,207,228,3,0,128,126,37,176,184,44,3,0,128,62,17,107,244,150,3,0,130,62,165,87,86,97,2,0,133,126,165,78,191,129,3,0,135,126,180,134,133,70,4,0,135,190,51,101,149,70,4,0,138,126,12,181,50,101,2,0,138,62,188,111,69,137,4,0,139,190,144,56,88,251,2,0,146,190,107,222,251,104,3,0,147,254,210,16,99,63,2,0,147,62,209,181,211,126,2,0,147,190,158,160,203,56,3,0,149,126,40,223,91,125,2,0,160,254,172,245,193,199,3,0,162,126,133,252,72,37,2,0,162,254,168,13,41,103,4,0,163,254,169,217,21,120,2,0,163,62,229,229,222,152,2,0,163,62,32,61,93,125,4,0,164,62,213,158,50,43,4,0,165,254,21,122,218,225,2,0,166,126,64,38,111,185,3,0,173,254,195,79,61,105,3,0,175,62,106,111,203,18,2,0,175,62,22,156,78,184,2,0,181,190,172,240,163,56,3,0,181,126,74,155,209,78,4,0,181,190,116,249,230,108,4,0,182,62,104,59,86,107,4,0,189,126,227,35,203,83,4,0,192,254,179,253,187,22,3,0,194,62,114,252,247,56,2,0,200,190,148,217,81,243,3,0,206,254,35,46,61,118,3,0,207,190,134,1,78,68,2,0,209,62,149,194,78,241,3,0,209,62,28,73,138,121,4,0,210,126,221,137,3,63,4,0,211,190,122,95,150,81,2,0,215,62,143,145,130,94,3,0,218,62,233,9,182,201,2,0,219,254,190,68,195,60,4,0,221,126,28,160,214,129,3,0,222,254,212,31,198,47,2,0,222,126,153,223,171,243,2,0,223,126,52,94,71,96,3,0,223,126,28,33,253,138,3,0,224,62,35,81,116,36,3,0,224,190,224,53,45,117,3,0,224,254,78,232,210,181,3,0,225,190,234,201,150,156,2,0,227,190,56,133,135,81,4,0,229,126,109,59,22,101,4,0,231,126,97,130,105,59,4,0,232,190,107,118,140,50,2,0,236,126,234,106,50,9,2,0,236,126,145,87,179,39,3,0,238,254,8,157,237,129,3,0,245,126,221,146,110,111,4,0,246,62,60,128,10,156,3,0,247,126,199,142,65,81,3,0,248,254,194,53,138,79,2,0,248,190,114,195,76,194,3,0,3,191,55,111,144,155,3,0,9,127,219,210,238,135,2,0,9,127,120,189,58,222,2,0,14,191,2,253,180,165,2,0,15,63,141,208,189,141,4,0,20,63,60,128,36,156,3,0,21,191,218,87,33,2,3,0,24,63,61,102,85,137,3,0,26,255,166,197,14,127,4,0,27,127,23,185,91,134,3,0,30,255,109,216,4,83,4,0,37,63,155,59,2,74,2,0,38,127,122,129,3,186,2,0,41,191,221,119,97,181,2,0,42,127,251,22,243,122,2,0,46,63,3,67,138,141,3,0,46,127,144,131,75,162,3,0,47,63,67,146,12,51,2,0,48,191,129,89,30,116,3,0,48,191,50,249,141,77,4,0,50,191,67,211,37,244,2,0,50,127,94,186,32,29,3,0,51,127,91,247,195,211,3,0,53,191,29,243,212,224,2,0,58,63,167,174,188,219,3,0,60,255,36,208,174,54,3,0,64,127,164,186,54,182,2,0,64,127,48,93,213,118,3,0,64,255,107,197,145,227,3,0,66,191,157,142,139,131,3,0,68,255,229,12,225,74,3,0,72,127,105,7,110,138,2,0,72,63,31,81,114,37,3,0,74,127,234,63,153,66,2,0,75,63,31,81,128,37,3,0,75,191,26,122,16,63,3,0,77,255,69,38,20,207,2,0,78,255,11,196,246,145,2,0,78,127,158,54,201,58,3,0,78,63,130,140,229,114,3,0,79,191,214,50,65,212,3,0,89,127,150,66,92,123,3,0,90,127,8,78,49,100,3,0,91,255,84,255,25,202,2,0,92,127,46,106,198,232,3,0,93,63,102,110,33,183,3,0,93,191,34,92,205,48,4,0,94,127,248,157,3,86,3,0,94,63,13,18,221,193,3,0,95,63,62,155,71,148,3,0,97,63,123,49,48,186,2,0,97,63,217,186,70,234,2,0,100,127,128,237,219,140,4,0,101,255,171,54,103,171,2,0,101,127,154,138,112,197,3,0,103,191,188,168,216,217,2,0,108,127,147,207,151,40,3,0,108,255,207,47,205,35,4,0,110,127,178,234,186,105,3,0,114,127,0,17,77,23,3,0,119,191,21,75,124,107,4,0,121,127,142,163,63,113,2,0,122,63,31,93,147,11,2,0,123,255,196,164,76,61,2,0,126,127,178,234,0,148,2,0,127,127,79,103,226,60,2,0,134,255,179,179,149,232,2,0,136,191,34,185,137,255,3,0,140,191,30,155,231,13,4,0,142,127,104,145,28,24,4,0,147,191,44,115,161,219,2,0,150,63,110,149,152,204,3,0,151,255,249,100,127,168,2,0,153,63,52,179,112,172,2,0,156,255,191,159,120,14,3,0,156,255,215,36,78,76,3,0,156,255,146,145,251,44,4,0,157,63,92,84,236,209,3,0,159,63,228,70,224,135,4,0,161,63,48,188,123,236,2,0,163,191,0,193,154,67,2,0,163,191,42,86,35,7,3,0,163,63,38,72,106,76,4,0,166,255,76,17,78,249,2,0,171,127,242,240,11,78,3,0,171,191,136,114,8,94,4,0,172,255,229,227,79,254,2,0,175,191,120,8,49,163,3,0,175,127,180,198,150,18,4,0,178,127,243,192,21,55,3,0,179,191,163,202,143,120,2,0,180,127,53,62,206,83,2,0,180,63,123,49,241,181,2,0,181,63,113,15,68,105,2,0,188,191,39,12,151,223,2,0,188,191,148,223,144,76,4,0,189,127,212,198,11,140,4,0,191,127,147,69,186,245,3,0,192,63,180,61,194,28,2,0,192,63,219,123,32,35,4,0,193,255,115,185,154,210,2,0,197,63,247,49,38,198,3,0,198,191,94,21,205,151,2,0,199,127,90,168,65,198,3,0,201,127,177,132,137,38,2,0,201,63,44,81,245,247,2,0,202,63,193,204,221,101,4,0,205,255,130,150,23,243,3,0,206,63,102,232,158,92,2,0,206,63,150,203,137,139,4,0,211,63,203,9,8,45,4,0,214,191,51,177,59,199,3,0,216,255,53,123,60,117,3,0,219,63,238,212,110,17,3,0,224,255,73,51,176,134,2,0,225,191,123,127,2,42,2,0,225,191,209,177,40,240,3,0,226,191,1,92,249,87,2,0,226,127,0,13,107,155,3,0,227,191,104,135,216,65,3,0,228,127,94,173,133,87,3,0,232,191,225,6,183,228,2,0,234,191,61,81,14,220,2,0,236,127,148,210,199,7,2,0,239,255,135,121,122,71,2,0,242,127,250,193,76,192,2,0,245,127,189,21,112,254,3,0,246,63,121,38,14,82,2,0,247,63,165,185,162,126,4,0,249,191,154,253,172,68,4,0,252,191,232,105,154,15,2,0,252,255,189,40,49,87,2,0,253,255,36,37,97,104,2,0,16,0,24,35,45,67,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,16,0,16,35,65,67,67,69,84,84,65,95,67,79,79,75,73,69,83,16,0,8,35,65,70,95,71,68,80,82,16,0,22,35,65,84,69,68,73,78,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,16,0,12,35,65,86,71,45,109,101,115,115,97,103,101,16,0,17,35,65,86,71,99,111,111,107,105,101,109,101,108,100,105,110,103,16,0,13,35,65,99,99,101,112,116,67,111,111,107,105,101,16,0,22,35,65,99,99,101,112,116,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,17,35,65,99,99,101,112,116,67,111,111,107,105,101,73,110,102,111,16,0,14,35,65,99,99,101,112,116,67,111,111,107,105,101,115,16,0,28,35,65,99,99,101,112,116,67,111,111,107,105,101,115,66,97,110,110,101,114,84,101,109,112,108,97,116,101,16,0,29,35,65,99,99,101,112,116,80,114,105,118,97,99,121,68,105,115,99,108,97,105,109,66,111,120,87,114,97,112,16,0,19,35,65,100,97,116,118,101,100,101,108,109,105,73,110,102,111,115,97,118,16,0,13,35,65,103,114,101,101,67,111,111,107,105,101,115,16,0,15,35,65,105,114,97,71,100,112,114,68,105,97,108,111,103,16,0,25,35,65,107,97,100,101,109,105,95,67,111,111,107,105,101,80,111,108,105,99,121,95,98,97,114,16,0,12,35,65,108,101,114,116,67,111,111,107,105,101,16,0,18,35,65,108,101,114,116,67,111,111,107,105,101,66,97,110,110,101,114,16,0,13,35,65,108,101,114,116,67,111,111,107,105,101,115,16,0,21,35,65,108,101,114,116,68,105,97,108,111,103,67,111,110,97,116,105,110,101,114,16,0,14,35,65,108,101,114,116,97,67,111,111,107,105,101,115,16,0,21,35,65,108,108,111,119,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,20,35,65,108,108,111,119,67,111,111,107,105,101,115,77,101,115,115,97,103,101,16,0,18,35,65,108,108,111,119,67,111,111,107,105,101,115,77,111,100,97,108,16,0,20,35,65,108,108,111,119,67,111,111,107,105,101,115,87,114,97,112,112,101,114,16,0,16,35,65,110,97,108,121,116,105,99,115,80,114,111,109,112,116,16,0,13,35,65,112,112,67,111,111,107,105,101,66,97,114,16,0,22,35,65,114,115,121,115,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,16,0,22,35,65,115,112,78,101,116,70,111,114,109,32,62,32,35,99,111,111,107,105,101,115,16,0,13,35,65,118,105,115,111,67,79,79,75,73,69,83,16,0,12,35,65,118,105,115,111,67,111,111,107,105,101,16,0,13,35,65,118,105,115,111,67,111,111,107,105,101,115,16,0,16,35,65,118,105,115,111,67,111,111,107,105,101,115,108,97,119,16,0,13,35,65,118,118,105,115,111,67,111,111,107,105,101,16,0,16,35,65,119,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,16,35,66,66,67,111,111,107,105,101,84,111,111,108,68,105,118,16,0,11,35,66,73,80,67,111,111,107,105,101,115,16,0,21,35,66,77,79,68,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,114,16,0,17,35,66,79,88,95,67,111,111,107,105,101,80,111,108,105,99,121,16,0,12,35,66,97,110,100,101,97,117,67,78,73,76,16,0,14,35,66,97,110,100,101,97,117,67,111,111,107,105,101,16,0,15,35,66,97,110,100,101,97,117,67,111,111,107,105,101,115,16,0,18,35,66,97,110,100,101,97,117,73,110,102,111,67,111,111,107,105,101,16,0,14,35,66,97,110,101,114,73,78,99,111,111,107,105,101,16,0,11,35,66,97,110,110,101,114,76,71,80,68,16,0,16,35,66,97,110,110,101,114,95,99,111,111,107,105,101,95,48,16,0,16,35,66,97,110,110,101,114,95,99,111,111,107,105,101,95,49,16,0,28,35,66,97,114,84,97,98,95,100,105,118,73,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,16,0,12,35,66,97,114,114,97,67,111,111,107,105,101,16,0,13,35,66,97,114,114,97,67,111,111,107,105,101,115,16,0,12,35,66,97,115,105,99,67,111,111,107,105,101,16,0,11,35,66,108,107,67,111,111,107,105,101,115,16,0,46,35,66,111,100,121,67,111,110,116,101,110,116,95,117,115,114,65,99,99,101,112,116,67,111,111,107,105,101,115,95,112,110,108,65,99,99,101,112,116,67,111,111,107,105,101,115,16,0,17,35,66,111,114,108,97,98,115,67,111,111,107,105,101,66,111,120,16,0,13,35,66,111,114,116,111,115,67,111,111,107,105,101,16,0,10,35,66,111,120,67,111,111,107,105,101,16,0,9,35,66,115,67,111,111,107,105,101,16,0,14,35,66,117,116,116,111,110,95,67,111,111,107,105,101,16,0,20,35,67,67,67,95,67,111,111,107,105,101,115,95,119,114,97,112,112,101,114,16,0,10,35,67,67,77,95,112,111,112,117,112,16,0,18,35,67,67,80,65,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,11,35,67,67,80,65,66,97,110,110,101,114,16,0,11,35,67,67,80,65,78,111,116,105,99,101,16,0,13,35,67,67,80,65,95,111,112,116,95,111,117,116,16,0,12,35,67,67,111,109,112,108,105,97,110,99,101,16,0,8,35,67,67,111,111,107,105,101,16,0,10,35,67,71,85,67,111,111,107,105,101,16,0,5,35,67,78,73,76,16,0,12,35,67,78,73,76,45,99,111,111,107,105,101,16,0,12,35,67,78,73,76,45,110,111,116,105,99,101,16,0,12,35,67,78,73,76,77,101,115,115,97,103,101,16,0,13,35,67,78,73,76,95,109,101,115,115,97,103,101,16,0,18,35,67,79,45,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,13,35,67,79,77,85,78,45,67,111,111,107,105,101,16,0,9,35,67,79,79,75,45,98,97,110,16,0,18,35,67,79,79,75,73,69,45,67,79,78,83,69,78,84,45,69,85,16,0,12,35,67,79,79,75,73,69,65,76,69,82,84,16,0,17,35,67,79,79,75,73,69,69,88,80,69,82,84,73,78,70,79,16,0,14,35,67,79,79,75,73,69,72,73,78,87,69,73,83,16,0,14,35,67,79,79,75,73,69,77,69,83,83,65,71,69,16,0,8,35,67,79,79,75,73,69,83,16,0,14,35,67,79,79,75,73,69,87,65,82,78,73,78,71,16,0,14,35,67,79,79,75,73,69,95,66,65,78,78,69,82,16,0,15,35,67,79,79,75,73,69,95,72,73,78,87,69,73,83,16,0,17,35,67,79,79,75,73,69,95,77,72,68,95,65,76,69,82,84,16,0,13,35,67,79,79,75,73,69,95,78,79,84,73,70,16,0,11,35,67,79,79,75,73,69,95,79,80,84,16,0,15,35,67,79,79,75,73,69,95,87,65,82,78,73,78,71,16,0,12,35,67,79,79,75,73,69,109,111,100,97,108,16,0,14,35,67,79,79,75,80,77,45,66,65,78,78,69,82,16,0,21,35,67,79,87,73,99,111,111,107,105,101,115,100,105,114,101,99,116,105,118,101,16,0,7,35,67,80,95,98,111,120,16,0,8,35,67,80,111,108,105,99,121,16,0,15,35,67,80,114,105,118,97,99,121,45,80,97,110,101,108,16,0,17,35,67,82,84,76,95,65,108,101,114,116,67,111,111,107,105,101,16,0,17,35,67,82,84,76,95,67,111,111,107,105,101,65,108,101,114,116,16,0,18,35,67,83,71,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,9,35,67,87,67,111,111,107,105,101,16,0,22,35,67,101,110,116,117,114,105,97,67,111,111,107,105,101,77,111,110,115,116,101,114,16,0,11,35,67,101,114,101,122,85,121,97,114,105,16,0,22,35,67,105,110,101,109,97,65,99,99,101,112,116,67,111,111,107,105,101,66,97,114,16,0,14,35,67,111,110,115,101,110,116,66,97,110,110,101,114,16,0,14,35,67,111,110,115,101,110,116,67,111,111,107,105,101,16,0,19,35,67,111,110,115,101,110,116,67,111,111,107,105,101,80,111,112,117,112,16,0,20,35,67,111,110,115,101,110,116,76,97,121,101,114,87,114,97,112,112,101,114,16,0,21,35,67,111,110,115,101,110,116,101,109,101,110,116,45,99,111,111,107,105,101,115,16,0,13,35,67,111,111,99,107,105,101,65,108,101,114,116,16,0,13,35,67,111,111,99,107,105,101,115,80,97,103,101,16,0,7,35,67,111,111,107,105,101,16,0,14,35,67,111,111,107,105,101,45,65,112,112,101,110,100,16,0,14,35,67,111,111,107,105,101,45,66,97,110,110,101,114,16,0,15,35,67,111,111,107,105,101,45,67,111,110,115,101,110,116,16,0,17,35,67,111,111,107,105,101,45,67,111,110,116,97,105,110,101,114,16,0,15,35,67,111,111,107,105,101,45,79,118,101,114,108,97,121,16,0,14,35,67,111,111,107,105,101,45,80,111,108,105,99,121,16,0,13,35,67,111,111,107,105,101,45,80,111,112,117,112,16,0,23,35,67,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,95,111,117,116,101,114,16,0,18,35,67,111,111,107,105,101,45,115,99,114,111,108,108,100,111,119,110,16,0,13,35,67,111,111,107,105,101,65,99,99,101,112,116,16,0,22,35,67,111,111,107,105,101,65,99,99,101,112,116,67,111,110,116,97,105,110,101,114,16,0,18,35,67,111,111,107,105,101,65,99,99,101,112,116,76,97,121,101,114,16,0,17,35,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,16,0,22,35,67,111,111,107,105,101,65,99,107,110,111,119,108,101,100,103,101,73,110,102,111,16,0,13,35,67,111,111,107,105,101,65,100,118,105,99,101,16,0,14,35,67,111,111,107,105,101,65,107,107,111,111,114,100,16,0,12,35,67,111,111,107,105,101,65,108,97,114,109,16,0,12,35,67,111,111,107,105,101,65,108,101,114,116,16,0,15,35,67,111,111,107,105,101,65,108,101,114,116,66,111,120,16,0,21,35,67,111,111,107,105,101,65,108,101,114,116,67,111,110,116,97,105,110,101,114,16,0,13,35,67,111,111,107,105,101,65,108,101,114,116,115,16,0,9,35,67,111,111,107,105,101,66,71,16,0,17,35,67,111,111,107,105,101,66,97,99,107,103,114,111,117,110,100,16,0,13,35,67,111,111,107,105,101,66,97,110,110,101,114,16,0,29,35,67,111,111,107,105,101,66,97,110,110,101,114,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,16,35,67,111,111,107,105,101,66,97,110,110,101,114,78,101,119,16,0,10,35,67,111,111,107,105,101,66,97,114,16,0,10,35,67,111,111,107,105,101,66,111,120,16,0,13,35,67,111,111,107,105,101,66,117,116,116,111,110,16,0,12,35,67,111,111,107,105,101,67,104,101,99,107,16,0,21,35,67,111,111,107,105,101,67,104,101,99,107,95,105,110,106,101,99,116,101,100,16,0,10,35,67,111,111,107,105,101,67,111,110,16,0,14,35,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,20,35,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,16,0,20,35,67,111,111,107,105,101,67,111,110,115,101,110,116,67,104,101,99,107,50,16,0,23,35,67,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,16,0,20,35,67,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,16,0,17,35,67,111,111,107,105,101,67,111,110,115,101,110,116,68,105,118,16,0,18,35,67,111,111,107,105,101,67,111,110,115,101,110,116,71,100,112,114,16,0,21,35,67,111,111,107,105,101,67,111,110,115,101,110,116,77,101,115,115,97,103,101,16,0,21,35,67,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,112,101,114,16,0,19,35,67,111,111,107,105,101,67,111,110,115,101,110,116,101,109,101,110,116,16,0,16,35,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,21,35,67,111,111,107,105,101,67,111,110,116,114,111,108,87,114,97,112,112,101,114,16,0,13,35,67,111,111,107,105,101,68,105,97,108,111,103,16,0,17,35,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,16,0,23,35,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,66,97,110,110,101,114,16,0,22,35,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,80,111,112,117,112,16,0,10,35,67,111,111,107,105,101,68,105,118,16,0,9,35,67,111,111,107,105,101,69,85,16,0,16,35,67,111,111,107,105,101,69,110,97,98,108,101,66,111,120,16,0,13,35,67,111,111,107,105,101,70,111,111,116,101,114,16,0,12,35,67,111,111,107,105,101,70,114,97,103,101,16,0,13,35,67,111,111,107,105,101,72,97,110,100,108,101,16,0,11,35,67,111,111,107,105,101,72,101,97,100,16,0,13,35,67,111,111,107,105,101,72,101,97,100,101,114,16,0,11,35,67,111,111,107,105,101,72,105,110,116,16,0,14,35,67,111,111,107,105,101,72,105,110,119,101,105,115,16,0,11,35,67,111,111,107,105,101,73,110,102,111,16,0,16,35,67,111,111,107,105,101,73,110,102,111,66,108,111,99,107,16,0,20,35,67,111,111,107,105,101,73,110,102,111,67,111,110,116,97,105,110,101,114,16,0,18,35,67,111,111,107,105,101,73,110,102,111,68,101,115,107,116,111,112,16,0,18,35,67,111,111,107,105,101,73,110,102,111,79,118,101,114,108,97,121,16,0,18,35,67,111,111,107,105,101,73,110,102,111,87,114,97,112,112,101,114,16,0,18,35,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,16,0,24,35,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,68,105,97,108,111,103,16,0,21,35,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,68,105,118,16,0,22,35,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,82,111,111,116,16,0,15,35,67,111,111,107,105,101,73,110,102,111,114,109,101,114,16,0,19,35,67,111,111,107,105,101,73,110,102,111,114,109,101,114,86,105,101,119,16,0,12,35,67,111,111,107,105,101,73,110,116,114,111,16,0,16,35,67,111,111,107,105,101,75,111,109,117,110,105,107,97,116,16,0,10,35,67,111,111,107,105,101,76,65,87,16,0,10,35,67,111,111,107,105,101,76,97,119,16,0,16,35,67,111,111,107,105,101,76,97,119,67,104,111,105,99,101,16,0,17,35,67,111,111,107,105,101,76,97,119,67,111,110,116,101,110,116,16,0,16,35,67,111,111,107,105,101,76,97,119,72,111,108,100,101,114,16,0,12,35,67,111,111,107,105,101,76,97,121,101,114,16,0,21,35,67,111,111,107,105,101,76,101,103,97,108,67,111,110,116,97,105,110,101,114,16,0,36,35,67,111,111,107,105,101,76,101,103,105,115,108,97,116,105,111,110,95,67,111,111,107,105,101,65,99,99,101,112,116,80,97,110,101,108,16,0,10,35,67,111,111,107,105,101,76,101,121,16,0,16,35,67,111,111,107,105,101,77,97,110,67,108,105,101,110,116,16,0,20,35,67,111,111,107,105,101,77,97,110,97,103,101,114,68,105,97,108,111,103,16,0,27,35,67,111,111,107,105,101,77,97,110,97,103,101,114,68,105,97,108,111,103,87,114,97,112,112,101,114,16,0,14,35,67,111,111,107,105,101,77,101,108,100,105,110,103,16,0,14,35,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,23,35,67,111,111,107,105,101,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,17,35,67,111,111,107,105,101,77,101,115,115,97,103,101,68,105,118,16,0,19,35,67,111,111,107,105,101,77,101,115,115,97,103,101,73,110,110,101,114,16,0,16,35,67,111,111,107,105,101,77,101,115,115,97,103,105,110,103,16,0,22,35,67,111,111,107,105,101,77,111,100,97,108,46,105,115,45,97,99,116,105,118,101,16,0,24,35,67,111,111,107,105,101,77,111,100,97,108,95,99,111,111,107,105,101,109,111,100,97,108,16,0,14,35,67,111,111,107,105,101,77,111,110,115,116,101,114,16,0,18,35,67,111,111,107,105,101,77,111,110,115,116,101,114,78,65,73,72,16,0,13,35,67,111,111,107,105,101,77,115,103,66,111,120,16,0,17,35,67,111,111,107,105,101,78,97,118,105,103,97,116,105,111,110,16,0,11,35,67,111,111,107,105,101,78,111,116,101,16,0,13,35,67,111,111,107,105,101,78,111,116,105,99,101,16,0,16,35,67,111,111,107,105,101,78,111,116,105,99,101,66,111,120,16,0,22,35,67,111,111,107,105,101,78,111,116,105,99,101,67,111,110,116,97,105,110,101,114,16,0,19,35,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,22,35,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,16,0,27,35,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,83,112,97,99,101,16,0,28,35,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,67,111,110,116,97,105,110,101,114,16,0,15,35,67,111,111,107,105,101,78,111,116,105,102,105,101,114,16,0,18,35,67,111,111,107,105,101,78,111,116,105,102,105,101,114,105,110,103,16,0,9,35,67,111,111,107,105,101,79,75,16,0,18,35,67,111,111,107,105,101,79,112,116,73,110,66,97,110,110,101,114,16,0,15,35,67,111,111,107,105,101,79,112,116,73,110,66,111,120,16,0,14,35,67,111,111,107,105,101,79,118,101,114,108,97,121,16,0,17,35,67,111,111,107,105,101,79,118,101,114,108,97,121,66,111,120,16,0,11,35,67,111,111,107,105,101,80,97,110,101,16,0,12,35,67,111,111,107,105,101,80,97,110,101,108,16,0,20,35,67,111,111,107,105,101,80,97,110,101,108,78,101,103,97,116,105,118,101,16,0,11,35,67,111,111,107,105,101,80,108,117,115,16,0,13,35,67,111,111,107,105,101,80,111,108,105,99,121,16,0,22,35,67,111,111,107,105,101,80,111,108,105,99,121,67,111,110,116,97,105,110,101,114,16,0,16,35,67,111,111,107,105,101,80,111,108,105,99,121,68,105,118,16,0,19,35,67,111,111,107,105,101,80,111,108,105,99,121,72,101,97,100,101,114,16,0,20,35,67,111,111,107,105,101,80,111,108,105,99,121,77,101,115,115,97,103,101,16,0,19,35,67,111,111,107,105,101,80,111,108,105,99,121,78,111,116,105,99,101,16,0,20,35,67,111,111,107,105,101,80,111,108,105,99,121,79,118,101,114,108,97,121,16,0,18,35,67,111,111,107,105,101,80,111,108,105,99,121,80,97,110,101,108,16,0,17,35,67,111,111,107,105,101,80,111,108,105,99,121,95,100,105,118,16,0,12,35,67,111,111,107,105,101,80,111,112,117,112,16,0,14,35,67,111,111,107,105,101,80,114,105,118,97,99,121,16,0,20,35,67,111,111,107,105,101,80,114,105,118,97,99,121,78,111,116,105,99,101,16,0,13,35,67,111,111,107,105,101,80,117,98,83,101,116,16,0,14,35,67,111,111,107,105,101,81,66,97,110,110,101,114,16,0,20,35,67,111,111,107,105,101,82,101,112,111,114,116,115,66,97,110,110,101,114,16,0,22,35,67,111,111,107,105,101,82,101,112,111,114,116,115,66,97,110,110,101,114,65,90,16,0,20,35,67,111,111,107,105,101,82,101,112,111,114,116,115,66,117,116,116,111,110,16,0,23,35,67,111,111,107,105,101,82,101,112,111,114,116,115,77,105,110,105,80,97,110,101,108,16,0,19,35,67,111,111,107,105,101,82,101,112,111,114,116,115,80,97,110,101,108,16,0,12,35,67,111,111,107,105,101,82,117,108,101,115,16,0,14,35,67,111,111,107,105,101,83,97,118,101,77,115,103,16,0,24,35,67,111,111,107,105,101,83,101,116,116,105,110,103,115,67,111,110,116,97,105,110,101,114,16,0,13,35,67,111,111,107,105,101,83,108,105,100,101,114,16,0,15,35,67,111,111,107,105,101,83,110,97,99,107,98,97,114,16,0,29,35,67,111,111,107,105,101,83,116,105,99,107,121,95,112,110,108,67,111,111,107,105,101,83,116,105,99,107,121,16,0,12,35,67,111,111,107,105,101,84,49,66,97,114,16,0,12,35,67,111,111,107,105,101,84,50,66,97,114,16,0,10,35,67,111,111,107,105,101,84,80,67,16,0,11,35,67,111,111,107,105,101,84,111,111,108,16,0,13,35,67,111,111,107,105,101,84,111,112,68,105,118,16,0,9,35,67,111,111,107,105,101,84,114,16,0,18,35,67,111,111,107,105,101,85,115,101,65,112,112,114,111,118,97,108,16,0,11,35,67,111,111,107,105,101,87,97,108,108,16,0,14,35,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,17,35,67,111,111,107,105,101,87,97,114,110,105,110,103,66,97,114,16,0,17,35,67,111,111,107,105,101,87,97,114,110,105,110,103,66,111,120,16,0,18,35,67,111,111,107,105,101,87,97,114,110,105,110,103,76,105,110,107,16,0,19,35,67,111,111,107,105,101,87,97,114,110,105,110,103,80,97,110,101,108,16,0,17,35,67,111,111,107,105,101,87,97,114,110,105,110,103,82,111,119,16,0,13,35,67,111,111,107,105,101,87,105,100,103,101,116,16,0,10,35,67,111,111,107,105,101,87,105,110,16,0,11,35,67,111,111,107,105,101,87,114,97,112,16,0,14,35,67,111,111,107,105,101,87,114,97,112,112,101,114,16,0,10,35,67,111,111,107,105,101,95,69,85,16,0,15,35,67,111,111,107,105,101,95,72,105,110,119,101,105,115,16,0,13,35,67,111,111,107,105,101,95,76,97,121,101,114,16,0,14,35,67,111,111,107,105,101,95,105,110,102,111,114,109,16,0,13,35,67,111,111,107,105,101,98,97,110,110,101,114,16,0,10,35,67,111,111,107,105,101,98,97,114,16,0,14,35,67,111,111,107,105,101,99,111,110,115,101,110,116,16,0,14,35,67,111,111,107,105,101,99,111,110,116,97,105,110,16,0,11,35,67,111,111,107,105,101,105,110,102,111,16,0,16,35,67,111,111,107,105,101,108,97,119,66,97,110,110,101,114,16,0,14,35,67,111,111,107,105,101,109,101,108,100,105,110,103,16,0,8,35,67,111,111,107,105,101,115,16,0,29,35,67,111,111,107,105,101,115,49,95,112,110,108,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,16,0,13,35,67,111,111,107,105,101,115,49,95,117,100,112,16,0,14,35,67,111,111,107,105,101,115,65,99,99,101,112,116,16,0,24,35,67,111,111,107,105,101,115,65,103,114,101,101,109,101,110,116,95,66,111,120,65,108,108,16,0,13,35,67,111,111,107,105,101,115,65,108,101,114,116,16,0,33,35,67,111,111,107,105,101,115,65,108,101,114,116,67,111,110,116,97,105,110,101,114,87,80,81,52,54,95,68,79,67,81,49,16,0,16,35,67,111,111,107,105,101,115,65,108,101,114,116,82,111,119,16,0,15,35,67,111,111,107,105,101,115,65,114,116,105,99,108,101,16,0,14,35,67,111,111,107,105,101,115,66,97,110,110,101,114,16,0,11,35,67,111,111,107,105,101,115,66,97,114,16,0,19,35,67,111,111,107,105,101,115,66,101,115,116,97,101,116,105,103,101,110,16,0,11,35,67,111,111,107,105,101,115,66,111,120,16,0,18,35,67,111,111,107,105,101,115,67,111,109,112,108,105,97,110,99,101,16,0,20,35,67,111,111,107,105,101,115,67,111,110,102,105,114,109,97,116,105,111,110,16,0,17,35,67,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,16,0,12,35,67,111,111,107,105,101,115,67,116,114,108,16,0,18,35,67,111,111,107,105,101,115,68,105,115,99,108,97,105,109,101,114,16,0,11,35,67,111,111,107,105,101,115,68,105,118,16,0,12,35,67,111,111,107,105,101,115,73,110,102,111,16,0,13,35,67,111,111,107,105,101,115,73,110,102,111,115,16,0,11,35,67,111,111,107,105,101,115,76,97,119,16,0,18,35,67,111,111,107,105,101,115,76,97,119,77,101,115,115,97,103,101,16,0,13,35,67,111,111,107,105,101,115,76,97,121,101,114,16,0,13,35,67,111,111,107,105,101,115,77,111,100,97,108,16,0,14,35,67,111,111,107,105,101,115,78,111,116,105,99,101,16,0,15,35,67,111,111,107,105,101,115,79,118,101,114,108,97,121,16,0,13,35,67,111,111,107,105,101,115,80,97,110,101,108,16,0,14,35,67,111,111,107,105,101,115,80,111,108,105,99,121,16,0,13,35,67,111,111,107,105,101,115,80,111,112,117,112,16,0,13,35,67,111,111,107,105,101,115,80,114,105,110,99,16,0,15,35,67,111,111,107,105,101,115,80,114,105,118,97,99,121,16,0,17,35,67,111,111,107,105,101,115,85,115,97,103,101,67,111,110,116,16,0,15,35,67,111,111,107,105,101,115,87,97,114,110,105,110,103,16,0,14,35,67,111,111,107,105,101,115,87,105,110,100,111,119,16,0,19,35,67,111,111,107,105,101,115,95,112,110,108,67,111,111,107,105,101,115,16,0,17,35,67,111,111,107,105,101,122,117,115,116,105,109,109,117,110,103,16,0,13,35,67,111,111,107,105,115,66,97,110,110,101,114,16,0,14,35,67,111,111,107,105,115,87,97,114,110,105,110,103,16,0,20,35,67,112,72,84,77,76,67,111,111,107,105,101,66,97,114,95,98,97,114,16,0,33,35,67,121,98,111,116,67,111,111,107,105,101,98,111,116,68,105,97,108,111,103,66,111,100,121,85,110,100,101,114,108,97,121,16,0,12,35,68,67,67,111,111,107,105,101,76,97,119,16,0,18,35,68,67,73,78,70,79,95,67,79,79,75,73,69,95,65,71,66,16,0,17,35,68,70,76,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,5,35,68,71,80,82,16,0,11,35,68,73,86,99,111,111,107,105,101,115,16,0,18,35,68,73,86,99,111,111,107,105,101,115,119,101,108,99,111,109,101,16,0,32,35,68,76,80,95,101,117,95,99,111,111,107,105,101,95,100,105,115,99,108,111,115,117,114,101,79,118,101,114,108,97,121,16,0,12,35,68,79,95,67,67,95,80,65,78,69,76,16,0,16,35,68,83,71,86,79,95,99,111,110,116,97,105,110,101,114,16,0,16,35,68,83,71,86,79,100,105,115,99,108,97,105,109,101,114,16,0,26,35,68,105,103,105,116,97,108,80,114,105,110,116,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,15,35,68,105,115,99,108,97,105,109,67,111,111,107,105,101,16,0,28,35,68,105,115,99,108,97,105,109,80,114,105,118,97,99,121,66,111,116,116,111,109,66,117,116,116,111,110,16,0,18,35,68,105,115,99,108,97,105,109,101,114,67,111,111,107,105,101,115,16,0,18,35,68,105,115,112,108,97,121,67,111,111,107,105,101,73,110,102,111,16,0,18,35,68,105,118,65,99,101,112,116,97,114,67,111,111,107,105,101,115,16,0,16,35,68,105,118,65,108,108,111,119,67,111,111,107,105,101,115,16,0,18,35,68,105,118,66,97,110,100,101,97,117,67,111,111,107,105,101,115,16,0,11,35,68,105,118,67,111,111,107,105,101,115,16,0,20,35,68,105,118,67,111,111,107,105,101,115,73,110,102,111,80,97,110,101,108,16,0,18,35,68,105,118,67,111,111,107,105,101,115,77,101,115,115,97,103,101,16,0,18,35,68,105,118,73,100,101,97,108,67,111,111,107,76,105,103,104,116,16,0,16,35,68,105,118,80,111,108,105,99,121,67,111,111,107,105,101,16,0,14,35,68,105,118,95,67,111,111,107,105,101,78,97,103,16,0,10,35,68,105,118,99,111,111,107,105,101,16,0,20,35,68,111,87,101,98,67,111,111,107,105,101,115,67,111,110,115,101,110,116,16,0,10,35,69,66,67,111,111,107,105,101,115,16,0,26,35,69,67,45,67,111,111,107,105,101,76,97,119,45,78,111,116,105,102,105,99,97,116,105,111,110,16,0,15,35,69,67,83,99,111,111,107,105,101,112,97,110,101,108,16,0,16,35,69,80,68,105,114,101,99,116,105,118,101,73,110,102,111,16,0,16,35,69,80,95,99,111,111,107,105,101,115,80,111,112,117,112,16,0,7,35,69,85,67,79,79,75,16,0,25,35,69,85,67,111,109,112,108,105,97,110,99,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,9,35,69,85,67,111,111,107,105,101,16,0,16,35,69,85,67,111,111,107,105,101,45,66,97,110,110,101,114,16,0,12,35,69,85,67,111,111,107,105,101,66,97,114,16,0,22,35,69,85,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,16,0,18,35,69,85,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,13,35,69,85,67,111,111,107,105,101,70,97,100,101,16,0,16,35,69,85,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,12,35,69,85,67,111,111,107,105,101,77,115,103,16,0,13,35,69,85,67,111,111,107,105,101,78,111,116,101,16,0,14,35,69,85,67,111,111,107,105,101,80,97,110,101,108,16,0,21,35,69,85,67,111,111,107,105,101,80,111,108,105,99,121,78,111,116,105,99,101,16,0,10,35,69,85,67,111,111,107,105,101,115,16,0,15,35,69,85,67,111,111,107,105,101,115,65,108,101,114,116,16,0,17,35,69,85,67,111,111,107,105,101,115,87,97,114,110,105,110,103,16,0,23,35,69,85,68,105,114,101,99,116,105,118,101,67,111,111,107,105,101,80,97,110,101,108,16,0,18,35,69,85,95,67,111,111,107,105,101,95,77,101,115,115,97,103,101,16,0,10,35,69,85,95,99,111,111,107,105,101,16,0,9,35,69,85,99,111,111,107,105,101,16,0,15,35,69,85,99,111,111,107,105,101,66,97,110,110,101,114,16,0,17,35,69,85,99,111,111,107,105,101,83,116,97,116,109,101,110,116,16,0,23,35,69,110,99,117,114,105,111,71,100,112,114,83,101,99,117,114,105,116,121,66,97,114,16,0,14,35,69,117,67,111,111,107,105,101,66,97,114,45,56,16,0,14,35,69,117,67,111,111,107,105,101,66,108,111,99,107,16,0,16,35,69,117,67,111,111,107,105,101,76,97,119,70,111,114,109,16,0,14,35,69,118,97,115,116,101,95,98,111,116,116,111,109,16,0,11,35,70,84,95,67,111,111,107,105,101,115,16,0,14,35,70,111,111,116,101,114,45,67,111,111,107,105,101,16,0,40,35,70,111,111,116,101,114,49,95,67,111,111,107,105,101,80,111,112,117,112,49,95,112,110,108,68,105,115,99,108,97,105,109,101,114,80,111,112,117,112,16,0,41,35,70,111,111,116,101,114,49,95,99,67,111,111,107,105,101,80,111,112,85,112,49,95,112,110,108,68,105,115,99,108,97,105,109,101,114,80,111,112,117,112,16,0,13,35,70,111,111,116,101,114,67,111,111,107,105,101,16,0,20,35,70,111,111,116,101,114,95,99,111,111,107,105,101,76,97,119,66,111,120,16,0,14,35,70,111,114,98,111,116,67,111,111,107,105,101,115,16,0,30,35,70,111,114,109,76,97,121,111,117,116,95,67,111,111,107,105,101,87,97,114,110,105,110,103,80,97,110,101,108,16,0,11,35,70,114,115,116,67,107,115,68,105,118,16,0,23,35,71,67,85,67,111,111,107,105,101,80,111,108,105,99,121,87,97,114,110,105,110,103,16,0,25,35,71,68,80,82,45,97,99,99,101,112,116,68,105,97,108,111,103,87,114,97,112,112,101,114,16,0,11,35,71,68,80,82,45,97,108,101,114,116,16,0,19,35,71,68,80,82,45,99,111,110,115,101,110,116,45,97,108,101,114,116,16,0,20,35,71,68,80,82,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,16,35,71,68,80,82,65,108,101,114,116,66,97,110,110,101,114,16,0,12,35,71,68,80,82,67,111,110,115,101,110,116,16,0,15,35,71,68,80,82,67,111,110,115,101,110,116,66,97,114,16,0,28,35,71,68,80,82,67,111,110,115,101,110,116,77,97,110,97,103,101,114,67,111,110,116,97,105,110,101,114,16,0,19,35,71,68,80,82,67,111,110,115,101,110,116,79,118,101,114,108,97,121,16,0,11,35,71,68,80,82,67,111,111,107,105,101,16,0,14,35,71,68,80,82,67,111,111,107,105,101,66,111,120,16,0,21,35,71,68,80,82,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,16,0,18,35,71,68,80,82,67,111,111,107,105,101,68,105,115,112,108,97,121,16,0,8,35,71,68,80,82,68,105,118,16,0,11,35,71,68,80,82,70,111,111,116,101,114,16,0,10,35,71,68,80,82,77,111,100,97,108,16,0,19,35,71,68,80,82,80,111,112,117,112,67,111,110,116,97,105,110,101,114,16,0,12,35,71,68,80,82,95,67,79,79,75,73,69,16,0,10,35,71,68,80,82,95,72,105,110,116,16,0,19,35,71,68,80,82,95,77,97,105,110,67,111,110,116,97,105,110,101,114,16,0,11,35,71,68,80,82,95,98,108,111,99,107,16,0,13,35,71,68,80,82,95,119,97,114,110,105,110,103,16,0,10,35,71,68,80,82,112,111,112,117,112,16,0,10,35,71,68,80,82,116,111,97,115,116,16,0,9,35,71,70,83,116,105,99,107,121,16,0,19,35,71,77,73,95,80,114,105,118,97,99,121,95,80,111,108,105,99,121,16,0,25,35,71,82,85,45,99,111,111,107,105,101,115,45,97,108,101,114,116,45,105,102,114,97,109,101,16,0,12,35,71,99,67,111,111,107,105,101,66,111,120,16,0,5,35,71,100,112,114,16,0,12,35,71,100,112,114,45,112,111,108,105,99,121,16,0,17,35,71,100,112,114,67,111,111,107,105,101,66,97,110,110,101,114,16,0,18,35,71,100,112,114,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,12,35,71,100,112,114,69,121,101,98,114,111,119,16,0,39,35,71,101,110,101,114,105,99,116,111,112,109,101,110,117,49,95,83,101,114,118,105,99,101,77,101,110,117,49,95,80,110,108,67,111,111,107,105,101,16,0,14,35,71,105,98,115,111,110,80,114,105,118,97,99,121,16,0,19,35,71,108,111,98,97,108,67,111,111,107,105,101,66,97,110,110,101,114,16,0,18,35,71,111,100,66,108,101,115,115,69,85,67,111,111,107,105,101,115,16,0,17,35,71,114,105,116,116,101,114,67,111,110,116,97,105,110,101,114,16,0,13,35,71,114,117,85,105,87,114,97,112,112,101,114,16,0,26,35,72,67,69,67,111,111,107,105,101,77,97,110,97,103,101,114,67,111,110,116,97,105,110,101,114,16,0,15,35,72,70,83,95,67,111,111,107,105,101,72,105,110,116,16,0,17,35,72,70,83,95,67,111,111,107,105,101,72,105,110,116,66,103,16,0,17,35,72,71,76,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,37,35,72,101,97,100,101,114,95,67,111,111,107,105,101,115,76,101,103,97,99,121,95,112,110,67,111,111,107,105,101,115,76,101,103,97,99,121,16,0,36,35,72,101,97,100,101,114,95,72,101,97,100,101,114,95,99,116,108,48,48,95,99,111,111,107,105,101,68,105,115,99,108,97,109,101,114,16,0,20,35,72,111,108,100,101,114,70,111,114,67,111,111,107,105,101,73,110,102,111,16,0,25,35,72,111,110,101,121,119,101,108,108,69,85,67,111,111,107,105,101,45,66,97,110,110,101,114,16,0,16,35,73,66,84,67,111,111,107,105,101,80,111,108,105,99,121,16,0,19,35,73,67,85,115,101,114,67,111,111,107,105,101,95,98,108,111,99,107,16,0,12,35,73,68,82,111,100,111,80,111,112,85,112,16,0,18,35,73,68,95,68,73,86,95,71,68,80,82,95,65,76,69,82,84,16,0,21,35,73,76,78,98,97,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,16,35,73,76,78,99,111,111,107,105,101,66,97,110,110,101,114,16,0,37,35,73,77,95,99,108,111,115,101,95,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,119,114,97,112,112,101,114,16,0,20,35,73,78,95,99,111,111,107,105,101,98,97,114,119,114,97,112,112,101,114,16,0,22,35,73,100,66,97,110,110,101,114,65,99,99,101,112,116,80,114,105,118,97,99,121,16,0,11,35,73,110,102,111,67,111,111,107,105,101,16,0,14,35,73,110,102,111,67,111,111,107,105,101,84,108,111,16,0,19,35,73,110,102,111,114,109,97,99,106,97,79,67,111,111,107,105,101,115,16,0,19,35,73,110,102,111,114,109,97,116,105,111,110,67,111,111,107,105,101,115,16,0,18,35,73,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,16,0,17,35,74,68,67,111,111,107,105,101,78,111,116,105,102,105,101,114,16,0,20,35,74,77,95,67,111,111,107,105,101,95,67,111,110,116,97,105,110,101,114,16,0,15,35,74,77,95,99,111,111,107,105,101,108,97,121,101,114,16,0,20,35,74,79,73,83,72,57,56,55,95,98,97,114,95,104,111,108,100,101,114,16,0,21,35,74,83,69,87,45,99,111,111,107,105,101,68,101,116,101,99,116,105,111,110,16,0,25,35,74,83,95,99,111,111,107,105,101,115,76,97,119,65,99,99,101,112,116,97,116,105,111,110,16,0,13,35,74,83,99,111,111,107,105,101,73,110,102,111,16,0,18,35,75,66,66,67,111,111,107,105,101,78,111,116,105,102,105,101,114,16,0,10,35,75,80,78,67,111,111,107,105,101,16,0,11,35,75,80,78,95,99,111,111,107,105,101,16,0,16,35,75,83,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,26,35,75,101,116,111,68,105,101,116,79,122,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,26,35,75,105,115,105,115,101,108,86,101,114,105,108,101,114,105,110,75,111,114,117,110,109,97,115,105,16,0,25,35,75,108,105,99,107,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,118,16,0,11,35,76,66,95,99,111,111,107,105,101,115,16,0,11,35,76,67,111,111,107,105,101,66,97,114,16,0,5,35,76,71,80,68,16,0,15,35,76,71,80,68,100,105,115,99,108,97,105,109,101,114,16,0,20,35,76,83,67,111,111,107,105,101,80,111,108,105,99,121,80,111,112,117,112,16,0,16,35,76,97,98,48,99,111,111,107,105,101,95,112,114,101,115,16,0,19,35,76,97,98,101,108,65,110,122,101,105,103,101,67,111,111,107,105,101,16,0,13,35,76,101,103,97,108,67,111,111,107,105,101,115,16,0,20,35,76,101,103,97,108,115,67,111,111,107,105,101,72,105,110,119,101,105,115,16,0,12,35,76,108,101,105,67,111,111,107,105,101,115,16,0,14,35,76,111,103,103,105,110,103,67,111,111,107,105,101,16,0,23,35,77,65,70,73,65,68,79,67,67,79,77,95,99,111,111,107,105,101,95,98,111,120,16,0,19,35,77,67,99,111,111,107,105,101,67,104,111,105,99,101,73,110,102,111,16,0,16,35,77,68,67,77,83,67,111,111,107,105,101,78,111,116,101,16,0,11,35,77,79,68,65,76,95,108,103,112,100,16,0,16,35,77,83,111,102,116,67,111,111,107,105,101,87,97,114,110,16,0,16,35,77,95,99,111,111,107,105,101,87,97,114,110,105,110,103,16,0,17,35,77,97,105,110,67,111,111,107,105,101,66,97,110,110,101,114,16,0,12,35,77,97,105,110,67,111,111,107,105,101,115,16,0,31,35,77,97,110,97,103,101,98,97,115,101,95,67,111,111,107,105,101,66,97,114,95,67,111,110,116,97,105,110,101,114,16,0,26,35,77,101,109,111,71,97,100,103,101,116,67,111,111,107,105,101,98,111,116,68,105,97,108,111,103,16,0,27,35,77,101,110,115,97,106,101,67,111,109,112,114,117,101,98,97,67,111,111,107,105,101,83,105,116,101,16,0,34,35,77,101,110,115,97,106,101,67,111,109,112,114,117,101,98,97,67,111,111,107,105,101,83,105,116,101,84,101,97,108,105,117,109,16,0,14,35,77,101,115,115,97,103,101,67,111,111,107,105,101,16,0,24,35,77,101,115,115,97,103,101,73,110,102,111,95,112,97,110,101,108,67,111,111,107,105,101,16,0,19,35,77,111,100,97,108,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,10,35,77,115,103,67,111,111,107,105,101,16,0,11,35,77,115,106,67,111,111,107,105,101,115,16,0,15,35,78,74,73,45,69,109,101,97,67,111,111,107,105,101,16,0,16,35,78,76,67,95,111,112,97,113,117,101,76,97,121,101,114,16,0,14,35,78,76,67,95,116,101,120,116,76,97,121,101,114,16,0,26,35,78,88,79,84,111,111,108,95,97,117,116,104,111,114,105,122,101,95,99,111,111,107,105,101,115,16,0,13,35,78,101,116,115,78,79,67,111,111,107,105,101,16,0,12,35,78,111,116,97,67,111,111,107,105,101,115,16,0,16,35,78,111,116,105,102,105,99,97,95,99,111,111,107,105,101,16,0,23,35,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,95,99,111,111,107,105,101,16,0,8,35,79,98,115,67,110,105,108,16,0,10,35,79,107,67,111,111,107,105,101,115,16,0,21,35,79,107,110,111,87,105,97,100,111,109,111,115,99,105,67,111,111,107,105,101,16,0,28,35,80,65,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,16,0,12,35,80,67,99,111,111,107,105,101,66,97,114,16,0,25,35,80,67,111,110,115,101,110,116,105,109,101,110,116,111,45,67,111,110,116,97,105,110,101,114,16,0,9,35,80,76,67,111,111,107,105,101,16,0,21,35,80,76,95,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,115,16,0,9,35,80,80,99,111,111,107,105,101,16,0,18,35,80,97,103,101,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,24,35,80,97,110,101,108,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,19,35,80,97,110,101,108,67,111,111,107,105,101,79,118,101,114,108,97,121,16,0,13,35,80,97,110,101,108,67,111,111,107,105,101,115,16,0,12,35,80,97,118,101,67,111,111,107,105,101,115,16,0,20,35,80,101,114,115,111,110,97,108,68,97,116,97,73,110,102,111,66,97,114,16,0,14,35,80,105,112,101,114,45,67,111,110,115,101,110,116,16,0,26,35,80,108,97,121,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,82,111,111,116,16,0,10,35,80,110,108,67,111,111,107,105,101,16,0,16,35,80,110,108,80,114,105,118,97,99,121,65,108,101,114,116,16,0,26,35,80,111,108,105,116,121,107,97,80,114,121,119,97,116,110,111,115,99,105,67,111,111,107,105,101,16,0,12,35,80,111,112,85,112,67,111,111,107,105,101,16,0,13,35,80,111,112,85,112,67,111,111,107,105,101,115,16,0,22,35,80,111,112,117,112,67,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,16,0,14,35,80,114,105,118,97,99,121,66,97,110,110,101,114,16,0,26,35,80,114,105,118,97,99,121,73,110,102,111,114,109,97,116,105,111,110,67,111,110,115,101,110,116,16,0,20,35,80,114,105,118,97,99,121,80,111,108,105,99,121,66,97,110,110,101,114,16,0,17,35,80,114,105,118,97,99,121,80,111,108,105,99,121,66,97,114,16,0,13,35,80,114,105,118,97,99,121,80,111,112,117,112,16,0,15,35,80,114,105,118,97,99,121,87,97,114,110,105,110,103,16,0,14,35,80,114,105,118,97,99,121,95,80,111,112,117,112,16,0,21,35,80,114,111,100,117,99,116,95,99,111,111,107,105,101,115,45,119,114,97,112,16,0,26,35,81,85,85,82,99,111,111,107,105,101,68,105,115,99,108,111,115,117,114,101,79,117,116,101,114,16,0,34,35,82,66,95,82,101,97,99,116,95,67,111,109,112,111,110,101,110,116,95,67,111,111,107,105,101,66,97,110,110,101,114,95,52,16,0,5,35,82,71,80,68,16,0,19,35,82,73,69,85,45,97,99,99,101,112,116,67,111,111,107,105,101,115,16,0,16,35,82,82,90,69,76,101,103,97,108,66,97,110,110,101,114,16,0,22,35,82,97,101,101,114,71,111,111,103,108,101,67,111,111,107,105,101,115,66,111,120,16,0,24,35,82,111,100,111,78,111,116,105,102,105,99,97,116,105,111,110,87,114,97,112,112,101,114,16,0,15,35,82,111,111,116,67,111,111,107,105,101,84,111,111,108,16,0,49,35,82,111,119,49,95,67,111,108,117,109,110,49,95,67,101,108,108,49,95,67,111,111,107,105,101,83,101,116,116,105,110,103,115,95,67,111,111,107,105,101,83,101,116,116,105,110,103,115,16,0,18,35,83,66,83,45,99,111,111,107,105,101,45,119,105,100,103,101,116,16,0,11,35,83,67,45,99,111,111,107,105,101,115,16,0,20,35,83,67,75,95,77,97,120,105,109,105,122,101,100,66,97,110,110,101,114,16,0,14,35,83,72,49,51,53,45,67,79,79,75,73,69,83,16,0,17,35,83,82,80,95,67,111,111,107,105,101,95,66,97,114,114,101,16,0,13,35,83,86,68,118,51,95,99,111,111,107,105,101,16,0,22,35,83,87,67,67,51,95,67,111,111,107,105,101,76,97,119,66,97,110,110,101,114,16,0,13,35,83,95,99,111,111,107,105,101,95,98,111,120,16,0,14,35,83,103,67,111,111,107,105,101,79,112,116,105,110,16,0,11,35,83,104,111,119,67,111,111,107,105,101,16,0,36,35,83,105,116,101,73,110,102,111,66,97,110,110,101,114,91,100,97,116,97,45,99,111,111,107,105,101,45,99,104,101,99,107,101,114,93,16,0,35,35,83,105,116,101,77,97,115,116,101,114,80,97,103,101,95,117,112,100,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,16,0,18,35,83,116,67,111,111,107,105,101,83,116,121,108,101,45,98,97,114,16,0,23,35,83,116,97,110,100,79,117,116,67,111,111,107,105,101,95,67,111,110,115,101,110,116,16,0,26,35,83,116,105,99,107,121,67,111,111,107,105,101,45,99,111,111,107,105,101,83,116,105,99,107,121,16,0,17,35,83,119,79,118,101,114,108,97,121,67,111,111,107,105,101,115,16,0,14,35,84,67,67,73,110,102,111,67,111,111,107,105,101,16,0,43,35,84,78,84,112,97,103,101,67,111,110,116,101,110,116,80,108,97,99,101,72,111,108,100,101,114,95,112,110,108,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,11,35,84,111,83,80,80,65,108,101,114,116,16,0,10,35,84,111,85,95,102,108,111,97,116,16,0,21,35,85,67,67,111,111,107,105,101,115,95,112,110,108,95,99,111,111,107,105,101,16,0,17,35,85,73,70,111,111,116,101,114,45,99,111,110,115,101,110,116,16,0,16,35,85,75,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,10,35,86,80,95,99,111,111,107,105,101,16,0,23,35,86,98,115,70,111,111,116,101,114,95,67,111,111,107,105,101,80,97,110,101,108,49,16,0,19,35,86,105,97,116,111,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,24,35,86,105,110,101,67,111,111,107,105,101,67,111,110,115,101,110,116,80,97,114,101,110,116,16,0,18,35,87,67,80,99,111,111,107,105,101,66,97,110,110,101,114,73,100,16,0,15,35,87,80,45,99,111,111,107,105,101,45,105,110,102,111,16,0,12,35,87,84,67,111,111,107,105,101,68,105,118,16,0,42,35,87,97,114,110,105,110,103,87,101,65,114,101,85,115,105,110,103,67,111,111,107,105,101,115,83,119,101,101,116,83,119,101,101,116,67,111,111,107,105,101,115,16,0,13,35,87,101,85,115,101,67,111,111,107,105,101,115,16,0,20,35,87,101,85,115,101,67,111,111,107,105,101,115,68,101,115,107,116,111,112,16,0,23,35,87,112,97,67,111,111,107,105,101,80,114,105,118,97,99,121,80,111,108,105,99,121,16,0,19,35,89,111,117,114,67,111,111,107,105,101,83,101,116,116,105,110,103,115,16,0,15,35,95,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,21,35,95,67,111,111,107,105,101,67,111,110,115,101,110,116,65,99,99,101,112,116,16,0,12,35,95,67,111,111,107,105,101,84,101,120,116,16,0,10,35,95,68,73,86,95,67,79,79,75,16,0,9,35,95,69,65,80,77,46,84,67,16,0,18,35,95,95,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,15,35,95,95,97,103,114,101,101,109,101,110,116,66,97,114,16,0,25,35,95,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,16,0,16,35,95,95,99,111,111,107,105,101,77,101,115,115,97,103,101,16,0,17,35,95,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,12,35,95,95,99,111,111,107,105,101,109,115,103,16,0,11,35,95,95,99,111,111,107,105,101,115,95,16,0,12,35,95,95,99,111,111,107,105,101,115,95,95,16,0,21,35,95,95,102,114,95,99,111,111,107,105,101,95,110,111,116,105,102,105,101,114,16,0,12,35,95,95,105,99,45,110,111,116,105,99,101,16,0,13,35,95,95,108,111,97,100,67,111,111,107,105,101,16,0,28,35,95,95,110,100,99,99,95,99,111,111,107,105,101,73,109,112,108,105,101,100,67,111,110,115,101,110,116,16,0,36,35,95,95,110,100,99,99,95,99,111,111,107,105,101,73,109,112,108,105,101,100,67,111,110,115,101,110,116,66,97,99,107,100,114,111,112,16,0,20,35,95,95,110,116,107,95,98,97,110,110,101,114,95,99,111,111,107,105,101,16,0,12,35,95,95,112,98,45,99,111,111,107,105,101,16,0,37,35,95,95,115,104,111,112,119,105,114,101,100,95,99,111,110,115,101,110,116,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,37,35,95,95,115,104,111,112,119,105,114,101,100,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,16,0,20,35,95,95,116,101,97,108,105,117,109,68,78,83,95,98,97,110,110,101,114,16,0,23,35,95,95,116,101,97,108,105,117,109,73,109,112,108,105,99,105,116,109,111,100,97,108,16,0,18,35,95,95,116,114,97,99,101,117,114,115,95,119,105,100,103,101,116,16,0,10,35,95,95,117,115,114,112,108,99,121,16,0,15,35,95,97,118,118,105,115,111,95,99,111,111,107,105,101,16,0,11,35,95,99,99,95,98,97,110,110,101,114,16,0,22,35,95,99,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,112,101,114,16,0,18,35,95,99,111,111,107,105,101,77,101,115,115,97,103,101,68,105,118,16,0,23,35,95,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,16,0,13,35,95,99,111,111,107,105,101,80,111,112,117,112,16,0,15,35,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,20,35,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,98,97,114,16,0,20,35,95,99,111,111,107,105,101,95,115,99,114,105,112,116,95,104,97,114,100,16,0,24,35,95,99,111,111,107,105,101,95,115,99,114,105,112,116,95,115,101,116,116,105,110,103,115,16,0,28,35,95,99,111,111,107,105,101,95,115,99,114,105,112,116,95,115,109,97,108,108,95,111,112,101,110,101,114,16,0,13,35,95,99,111,111,107,105,101,97,108,101,114,116,16,0,14,35,95,99,111,111,107,105,101,98,97,110,110,101,114,16,0,25,35,95,99,111,111,107,105,101,98,97,110,110,101,114,45,111,112,116,45,105,110,45,111,117,116,16,0,14,35,95,99,111,111,107,105,101,110,111,116,105,99,101,16,0,17,35,95,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,16,0,15,35,95,99,111,111,107,105,101,115,45,112,111,112,117,112,16,0,14,35,95,99,111,111,107,105,101,115,95,105,110,102,111,16,0,18,35,95,99,116,108,48,95,112,111,112,95,117,112,95,99,110,105,108,16,0,12,35,95,101,118,104,45,98,117,116,116,111,110,16,0,9,35,95,101,118,104,45,114,105,99,16,0,24,35,95,101,118,105,100,111,110,45,98,97,114,114,105,101,114,45,119,114,97,112,112,101,114,16,0,15,35,95,101,118,105,100,111,110,95,98,97,110,110,101,114,16,0,10,35,95,103,100,112,114,95,98,111,120,16,0,22,35,95,103,104,111,115,116,101,114,121,45,109,101,115,115,97,103,101,45,114,111,119,16,0,14,35,95,105,112,104,95,99,112,95,112,111,112,117,112,16,0,19,35,95,108,99,109,115,95,98,97,110,101,114,67,111,111,107,105,101,115,16,0,14,35,95,110,76,111,97,100,67,111,111,107,105,101,115,16,0,25,35,95,111,114,107,108,97,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,15,35,95,112,114,99,121,95,105,110,102,111,95,98,97,114,16,0,33,35,95,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,16,0,25,35,95,117,98,117,110,116,117,45,105,116,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,9,35,97,45,99,111,111,107,105,101,16,0,26,35,97,50,53,45,67,84,85,79,67,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,16,0,10,35,97,51,95,99,111,111,107,105,101,16,0,18,35,97,51,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,97,56,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,13,35,97,97,45,99,111,111,107,105,101,98,97,114,16,0,15,35,97,97,67,111,111,107,105,101,66,97,110,110,101,114,16,0,18,35,97,97,95,112,114,105,118,97,99,121,95,109,111,100,117,108,101,16,0,17,35,97,98,45,99,111,111,107,105,101,45,97,100,118,105,99,101,16,0,16,35,97,98,45,99,111,111,107,105,101,109,111,100,117,108,101,16,0,20,35,97,98,45,99,111,111,107,105,101,109,111,100,117,108,101,45,111,112,99,16,0,15,35,97,98,49,95,99,111,111,107,105,101,95,98,97,114,16,0,18,35,97,98,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,9,35,97,98,101,45,103,100,112,114,16,0,14,35,97,98,111,117,116,45,99,111,111,107,105,101,115,16,0,18,35,97,98,111,117,116,67,111,111,107,105,101,70,111,111,116,101,114,16,0,20,35,97,98,111,117,116,67,111,111,107,105,101,85,115,97,103,101,66,111,120,16,0,14,35,97,98,111,117,116,95,99,111,111,107,105,101,115,16,0,13,35,97,98,111,117,116,99,111,111,107,105,101,115,16,0,23,35,97,98,115,111,108,117,116,101,45,99,111,111,107,105,101,115,45,112,97,110,101,108,16,0,18,35,97,98,119,95,99,111,110,115,101,110,116,98,97,110,110,101,114,16,0,14,35,97,99,95,99,111,111,107,105,101,95,98,97,114,16,0,16,35,97,99,95,99,111,111,107,105,101,98,97,110,110,101,114,16,0,21,35,97,99,95,99,111,111,107,105,101,115,118,97,108,105,100,97,116,105,111,110,16,0,11,35,97,99,98,45,98,97,110,110,101,114,16,0,18,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,98,97,114,16,0,18,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,98,111,120,16,0,33,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,115,101,99,116,105,111,110,16,0,22,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,25,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,16,0,22,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,15,35,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,22,35,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,19,35,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,97,114,16,0,21,35,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,108,111,99,107,16,0,19,35,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,100,105,118,16,0,19,35,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,109,115,103,16,0,22,35,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,26,35,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,114,101,103,117,108,97,116,105,111,110,16,0,18,35,97,99,99,101,112,116,45,117,115,101,45,99,111,111,107,105,101,16,0,13,35,97,99,99,101,112,116,67,111,111,107,105,101,16,0,18,35,97,99,99,101,112,116,67,111,111,107,105,101,65,108,101,114,116,16,0,19,35,97,99,99,101,112,116,67,111,111,107,105,101,66,97,110,110,101,114,16,0,16,35,97,99,99,101,112,116,67,111,111,107,105,101,66,97,114,16,0,22,35,97,99,99,101,112,116,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,16,35,97,99,99,101,112,116,67,111,111,107,105,101,68,105,118,16,0,16,35,97,99,99,101,112,116,67,111,111,107,105,101,77,101,103,16,0,18,35,97,99,99,101,112,116,67,111,111,107,105,101,77,111,100,97,108,16,0,26,35,97,99,99,101,112,116,67,111,111,107,105,101,77,111,100,97,108,84,101,109,112,108,97,116,101,16,0,20,35,97,99,99,101,112,116,67,111,111,107,105,101,79,118,101,114,108,97,121,16,0,15,35,97,99,99,101,112,116,67,111,111,107,105,101,80,71,16,0,19,35,97,99,99,101,112,116,67,111,111,107,105,101,80,111,108,105,99,121,16,0,24,35,97,99,99,101,112,116,67,111,111,107,105,101,80,111,108,105,99,121,80,111,112,117,112,16,0,14,35,97,99,99,101,112,116,67,111,111,107,105,101,115,16,0,17,35,97,99,99,101,112,116,67,111,111,107,105,101,115,66,97,114,16,0,17,35,97,99,99,101,112,116,67,111,111,107,105,101,115,66,111,120,16,0,23,35,97,99,99,101,112,116,67,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,16,0,17,35,97,99,99,101,112,116,67,111,111,107,105,101,115,68,105,118,16,0,18,35,97,99,99,101,112,116,67,111,111,107,105,101,115,70,111,114,109,16,0,20,35,97,99,99,101,112,116,67,111,111,107,105,101,115,72,111,108,100,101,114,16,0,16,35,97,99,99,101,112,116,67,111,111,107,105,101,115,73,100,16,0,18,35,97,99,99,101,112,116,67,111,111,107,105,101,115,73,110,102,111,16,0,19,35,97,99,99,101,112,116,67,111,111,107,105,101,115,80,97,110,101,108,16,0,17,35,97,99,99,101,112,116,67,111,111,107,105,101,115,80,111,112,16,0,18,35,97,99,99,101,112,116,67,111,111,107,105,101,115,84,101,120,116,16,0,21,35,97,99,99,101,112,116,67,111,111,107,105,101,115,87,114,97,112,112,101,114,16,0,28,35,97,99,99,101,112,116,84,114,97,99,107,105,110,103,67,111,111,107,105,101,87,114,97,112,112,101,114,16,0,21,35,97,99,99,101,112,116,85,115,101,114,69,120,112,101,114,105,101,110,99,101,16,0,14,35,97,99,99,101,112,116,95,67,111,111,107,105,101,16,0,13,35,97,99,99,101,112,116,95,97,103,114,101,101,16,0,14,35,97,99,99,101,112,116,95,99,111,111,107,105,101,16,0,18,35,97,99,99,101,112,116,95,99,111,111,107,105,101,95,98,111,120,16,0,20,35,97,99,99,101,112,116,95,99,111,111,107,105,101,95,109,111,100,97,108,16,0,22,35,97,99,99,101,112,116,95,99,111,111,107,105,101,95,111,118,101,114,108,97,121,16,0,21,35,97,99,99,101,112,116,95,99,111,111,107,105,101,95,119,105,100,103,101,116,16,0,21,35,97,99,99,101,112,116,95,99,111,111,107,105,101,95,119,105,110,100,111,119,16,0,22,35,97,99,99,101,112,116,95,99,111,111,107,105,101,95,119,114,97,112,112,101,114,16,0,15,35,97,99,99,101,112,116,95,99,111,111,107,105,101,115,16,0,22,35,97,99,99,101,112,116,95,99,111,111,107,105,101,115,95,98,97,110,110,101,114,16,0,26,35,97,99,99,101,112,116,95,99,111,111,107,105,101,115,95,99,111,110,116,95,111,117,116,101,114,16,0,19,35,97,99,99,101,112,116,95,99,111,111,107,105,101,115,95,100,105,118,16,0,23,35,97,99,99,101,112,116,95,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,16,0,24,35,97,99,99,101,112,116,97,110,99,101,45,99,111,111,107,105,101,45,109,111,100,97,108,16,0,22,35,97,99,99,101,112,116,97,110,99,101,95,111,102,95,99,111,111,107,105,101,115,16,0,13,35,97,99,99,101,112,116,99,111,111,107,105,101,16,0,18,35,97,99,99,101,112,116,99,111,111,107,105,101,97,108,101,114,116,16,0,14,35,97,99,99,101,112,116,99,111,111,107,105,101,115,16,0,21,35,97,99,99,101,112,116,99,111,111,107,105,101,115,87,114,97,112,112,101,114,16,0,21,35,97,99,99,101,112,116,99,111,111,107,105,101,115,119,114,97,112,112,101,114,16,0,15,35,97,99,99,101,112,116,101,67,111,111,107,105,101,115,16,0,16,35,97,99,99,101,112,116,101,95,99,111,111,107,105,101,115,16,0,16,35,97,99,99,101,112,116,101,100,67,111,111,107,105,101,115,16,0,17,35,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,115,16,0,15,35,97,99,99,101,112,116,101,114,67,111,111,107,105,101,16,0,16,35,97,99,99,101,112,116,101,114,67,111,111,107,105,101,115,16,0,24,35,97,99,99,101,115,115,105,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,15,35,97,99,99,101,116,116,97,95,99,111,111,107,105,101,16,0,16,35,97,99,99,101,116,116,97,95,99,111,111,107,105,101,115,16,0,22,35,97,99,99,101,116,116,97,122,105,111,110,101,67,111,111,107,105,101,67,110,116,16,0,19,35,97,99,99,110,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,14,35,97,99,101,105,116,97,67,111,111,107,105,101,115,16,0,18,35,97,99,101,112,116,97,99,105,111,110,99,111,111,107,105,101,115,16,0,14,35,97,99,101,112,116,97,114,67,111,111,107,105,101,16,0,16,35,97,99,101,112,116,97,114,95,99,111,111,107,105,101,115,16,0,14,35,97,99,101,112,116,97,114,99,111,111,107,105,101,16,0,21,35,97,99,101,112,116,97,114,99,111,111,107,105,101,115,95,102,111,110,100,111,16,0,16,35,97,99,107,99,111,111,107,105,101,45,112,111,112,117,112,16,0,34,35,97,99,107,110,111,119,108,101,100,103,101,67,111,111,107,105,101,115,65,110,100,80,114,105,118,97,99,121,77,111,100,97,108,16,0,20,35,97,99,107,110,111,119,108,101,100,103,101,95,99,111,111,107,105,101,115,16,0,12,35,97,99,109,112,45,111,112,116,45,105,110,16,0,9,35,97,99,110,95,99,111,111,107,16,0,14,35,97,99,111,111,107,46,112,114,105,118,97,99,121,16,0,8,35,97,99,111,111,107,105,101,16,0,9,35,97,99,111,111,107,105,101,115,16,0,13,35,97,99,111,111,107,105,101,115,82,111,111,116,16,0,40,35,97,99,114,105,115,45,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,45,109,111,100,97,108,45,111,118,101,114,108,97,121,16,0,36,35,97,99,114,105,115,45,45,112,97,103,101,45,119,114,97,112,45,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,16,0,27,35,97,99,114,105,115,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,112,111,112,117,112,16,0,20,35,97,99,117,97,114,101,108,97,45,99,111,111,107,105,101,45,98,97,114,16,0,13,35,97,100,45,99,111,111,107,105,101,66,97,114,16,0,28,35,97,100,99,95,97,118,105,115,111,95,99,111,111,107,105,101,115,95,98,97,114,95,115,116,121,108,101,16,0,10,35,97,100,99,111,111,107,105,101,115,16,0,17,35,97,100,100,67,111,111,107,105,101,66,97,114,73,110,102,111,16,0,13,35,97,100,105,109,111,45,99,111,111,107,105,101,16,0,24,35,97,100,109,111,114,114,105,115,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,19,35,97,100,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,10,35,97,100,115,99,111,111,107,105,101,16,0,23,35,97,100,115,101,110,115,101,45,99,111,110,115,116,101,110,116,45,109,111,100,97,108,16,0,23,35,97,100,115,105,109,112,108,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,16,35,97,100,116,111,110,105,113,45,109,115,103,45,98,97,114,16,0,18,35,97,100,117,108,116,45,97,110,100,45,99,111,111,107,105,101,115,16,0,11,35,97,100,118,95,99,111,111,107,105,101,16,0,12,35,97,100,118,95,99,111,111,107,105,101,115,16,0,22,35,97,100,118,101,114,116,105,115,101,109,101,110,116,45,99,111,111,107,105,101,115,16,0,20,35,97,100,118,103,100,112,114,112,111,112,105,110,45,103,108,111,98,97,108,16,0,14,35,97,100,118,105,99,101,67,111,111,107,105,101,115,16,0,14,35,97,100,118,105,115,101,67,111,111,107,105,101,115,16,0,20,35,97,100,118,109,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,13,35,97,101,45,99,111,111,107,105,101,98,97,114,16,0,21,35,97,101,45,114,117,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,18,35,97,101,103,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,11,35,97,101,117,99,108,46,115,104,111,119,16,0,17,35,97,102,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,23,35,97,102,67,111,111,107,105,101,67,111,110,116,114,111,108,45,110,111,116,105,99,101,16,0,21,35,97,102,67,111,111,107,105,101,67,111,110,116,114,111,108,45,115,104,111,119,16,0,15,35,97,102,95,99,111,111,107,105,101,115,45,98,97,114,16,0,19,35,97,102,102,105,99,104,101,66,97,110,100,101,97,117,82,103,112,100,16,0,10,35,97,103,97,110,95,103,100,112,114,16,0,21,35,97,103,114,101,101,45,116,111,45,117,115,101,45,99,111,111,107,105,101,115,16,0,19,35,97,103,114,101,101,45,119,105,116,104,45,99,111,111,107,105,101,115,16,0,12,35,97,103,114,101,101,67,111,111,107,105,101,16,0,19,35,97,103,114,101,101,78,111,116,105,99,101,87,114,97,112,112,101,114,16,0,17,35,97,103,114,101,101,87,105,116,104,67,111,111,107,105,101,115,16,0,17,35,97,103,114,101,101,95,99,111,111,107,105,101,95,100,105,118,16,0,14,35,97,103,114,101,101,95,99,111,111,107,105,101,115,16,0,21,35,97,103,114,101,101,95,112,114,105,118,97,99,121,95,112,111,108,105,99,121,16,0,13,35,97,103,114,101,101,99,111,111,107,105,101,115,16,0,17,35,97,103,114,101,101,109,101,110,116,80,114,105,118,97,99,121,16,0,26,35,97,103,114,105,111,95,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,19,35,97,104,104,103,45,99,111,111,107,105,101,45,98,117,116,116,111,110,16,0,19,35,97,104,104,103,45,99,111,111,107,105,101,45,119,105,110,100,111,119,16,0,19,35,97,105,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,17,35,97,105,100,97,45,99,111,111,107,105,101,115,45,98,97,114,16,0,13,35,97,105,103,110,101,115,99,111,111,107,105,101,16,0,23,35,97,105,111,45,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,19,35,97,106,97,120,67,111,111,107,105,101,115,77,101,115,115,97,103,101,16,0,27,35,97,106,97,120,83,116,121,108,101,74,97,109,67,111,111,107,105,101,115,77,101,115,115,97,103,101,16,0,28,35,97,106,97,120,95,99,111,111,107,105,101,115,95,117,115,97,103,101,95,97,112,112,114,111,118,97,108,16,0,19,35,97,107,99,101,112,116,97,99,106,97,95,99,111,111,107,105,101,115,16,0,13,35,97,107,99,101,112,116,99,111,111,107,105,101,16,0,21,35,97,108,100,105,45,110,111,114,100,45,99,111,111,107,105,101,104,105,110,116,16,0,15,35,97,108,101,114,116,45,98,105,115,99,111,116,116,105,16,0,11,35,97,108,101,114,116,45,99,110,105,108,16,0,13,35,97,108,101,114,116,45,99,111,111,107,105,101,16,0,18,35,97,108,101,114,116,45,99,111,111,107,105,101,45,104,105,110,116,16,0,22,35,97,108,101,114,116,45,99,111,111,107,105,101,45,105,110,102,111,45,98,97,114,16,0,18,35,97,108,101,114,116,45,99,111,111,107,105,101,45,108,103,112,100,16,0,20,35,97,108,101,114,116,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,18,35,97,108,101,114,116,45,99,111,111,107,105,101,45,112,114,111,102,16,0,14,35,97,108,101,114,116,45,99,111,111,107,105,101,115,16,0,20,35,97,108,101,114,116,45,99,111,111,107,105,101,115,45,116,111,97,115,116,16,0,17,35,97,108,101,114,116,45,101,117,45,99,111,111,107,105,101,115,16,0,21,35,97,108,101,114,116,45,112,114,105,118,97,99,121,45,117,112,100,97,116,101,16,0,12,35,97,108,101,114,116,67,111,111,107,105,101,16,0,18,35,97,108,101,114,116,67,111,111,107,105,101,80,111,108,105,99,121,16,0,13,35,97,108,101,114,116,67,111,111,107,105,101,115,16,0,27,35,97,108,101,114,116,77,101,110,116,105,111,110,67,111,111,107,105,101,115,77,101,115,115,97,103,101,16,0,9,35,97,108,101,114,116,84,111,112,16,0,13,35,97,108,101,114,116,95,99,111,111,107,105,101,16,0,17,35,97,108,101,114,116,95,99,111,111,107,105,101,95,109,115,103,16,0,19,35,97,108,101,114,116,95,99,111,111,107,105,101,95,111,112,116,105,110,16,0,19,35,97,108,101,114,116,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,20,35,97,108,101,114,116,95,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,14,35,97,108,101,114,116,95,99,111,111,107,105,101,115,16,0,15,35,97,108,101,114,116,97,45,99,111,111,107,105,101,115,16,0,15,35,97,108,101,114,116,97,95,99,111,111,107,105,101,115,16,0,13,35,97,108,101,114,116,97,99,111,111,107,105,101,16,0,12,35,97,108,101,114,116,99,111,111,107,105,101,16,0,13,35,97,108,101,114,116,99,111,111,107,105,101,115,16,0,14,35,97,108,101,114,116,101,45,99,111,111,107,105,101,16,0,15,35,97,108,101,114,116,101,45,99,111,111,107,105,101,115,16,0,12,35,97,108,101,114,116,101,95,99,110,105,108,16,0,14,35,97,108,101,114,116,101,95,99,111,111,107,105,101,16,0,15,35,97,108,101,114,116,101,95,99,111,111,107,105,101,115,16,0,16,35,97,108,101,114,116,101,95,116,114,97,99,107,105,110,103,16,0,23,35,97,108,101,114,116,112,111,112,45,112,114,105,118,97,99,121,112,111,108,105,99,121,16,0,14,35,97,108,101,114,116,115,45,112,111,108,105,99,121,16,0,34,35,97,108,108,52,103,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,25,35,97,108,108,52,110,97,118,45,99,111,111,107,105,101,45,99,111,109,112,111,110,101,110,116,16,0,35,35,97,108,108,52,110,97,118,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,97,108,108,111,119,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,21,35,97,108,108,111,119,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,20,35,97,108,108,111,119,45,99,111,111,107,105,101,115,45,112,111,112,117,112,16,0,15,35,97,108,108,111,119,67,111,111,107,105,101,68,105,118,16,0,15,35,97,108,108,111,119,67,111,111,107,105,101,77,115,103,16,0,17,35,97,108,108,111,119,67,111,111,107,105,101,84,121,112,101,115,16,0,13,35,97,108,108,111,119,67,111,111,107,105,101,115,16,0,18,35,97,108,108,111,119,67,111,111,107,105,101,115,80,111,112,117,112,16,0,27,35,97,108,108,111,119,77,97,114,107,101,116,105,110,103,67,111,111,107,105,101,115,95,99,111,110,116,16,0,20,35,97,108,108,111,119,95,99,111,111,107,105,101,95,104,111,108,100,101,114,16,0,14,35,97,108,108,111,119,95,99,111,111,107,105,101,115,16,0,24,35,97,108,108,111,119,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,16,0,12,35,97,108,108,111,119,99,111,111,107,105,101,16,0,25,35,97,108,108,111,119,99,111,111,107,105,101,97,110,100,116,104,105,114,100,112,97,114,116,121,16,0,18,35,97,108,108,111,119,99,111,111,107,105,101,98,97,110,110,101,114,16,0,16,35,97,108,108,111,119,117,115,101,99,111,111,107,105,101,115,16,0,21,35,97,108,112,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,17,35,97,108,115,98,95,67,78,73,76,95,110,111,116,105,99,101,16,0,21,35,97,108,116,67,111,111,107,105,101,80,111,108,105,99,121,76,101,103,97,108,16,0,24,35,97,108,116,101,97,45,99,111,111,107,105,101,98,111,120,45,119,114,97,112,112,101,114,16,0,22,35,97,108,116,101,114,110,101,116,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,10,35,97,109,45,99,111,111,107,105,101,16,0,9,35,97,109,50,45,103,100,112,114,16,0,15,35,97,109,99,99,111,111,107,105,101,115,45,98,97,114,16,0,17,35,97,109,99,111,111,107,105,101,97,112,112,114,111,118,97,108,16,0,20,35,97,109,100,115,45,99,111,111,107,105,101,45,108,97,121,111,118,101,114,16,0,20,35,97,109,100,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,19,35,97,109,103,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,20,35,97,109,103,100,112,114,45,99,111,111,107,105,101,45,98,108,111,99,107,16,0,16,35,97,109,112,45,117,115,101,114,45,99,111,111,107,105,101,16,0,30,35,97,109,112,45,117,115,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,115,16,0,30,35,97,109,112,45,117,115,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,45,112,114,105,118,97,99,121,16,0,18,35,97,110,97,108,121,116,105,99,115,45,99,111,110,115,101,110,116,16,0,17,35,97,110,97,108,121,116,105,99,115,95,99,111,111,107,105,101,16,0,10,35,97,110,100,99,111,111,107,105,101,16,0,22,35,97,110,100,121,116,105,109,101,115,95,112,114,105,118,97,99,121,95,100,105,118,16,0,23,35,97,110,110,111,117,110,99,101,109,101,110,116,45,101,117,45,99,111,111,107,105,101,16,0,25,35,97,110,110,111,117,110,99,101,109,101,110,116,45,101,117,99,111,111,107,105,101,108,97,119,16,0,21,35,97,110,110,111,117,110,99,101,109,101,110,116,101,67,111,111,107,105,101,115,16,0,22,35,97,110,110,111,121,105,110,103,95,99,111,111,107,105,101,95,97,108,101,114,116,16,0,20,35,97,110,110,111,121,105,110,103,101,117,99,111,111,107,105,101,109,115,103,16,0,14,35,97,110,116,105,108,108,101,115,45,103,100,112,114,16,0,14,35,97,110,117,110,116,95,99,111,111,107,105,101,115,16,0,14,35,97,110,121,45,99,111,111,107,105,101,66,97,114,16,0,22,35,97,110,122,101,105,103,101,110,45,101,105,110,119,105,108,108,105,103,117,110,103,16,0,16,35,97,111,45,67,111,111,107,105,101,80,111,108,105,99,121,16,0,15,35,97,111,67,111,111,107,105,101,80,111,108,105,99,121,16,0,22,35,97,111,110,99,111,111,107,105,101,99,111,110,115,101,110,116,112,111,112,117,112,16,0,15,35,97,112,45,99,111,111,107,105,101,45,119,97,108,108,16,0,18,35,97,112,45,99,111,111,107,105,101,115,67,111,110,102,105,114,109,16,0,18,35,97,112,95,99,111,111,107,105,101,95,116,111,111,108,98,97,114,16,0,18,35,97,112,97,99,104,101,45,99,111,111,107,105,101,45,98,97,114,16,0,11,35,97,112,99,99,111,111,107,105,101,115,16,0,14,35,97,112,101,120,95,99,111,111,107,105,101,95,48,16,0,15,35,97,112,112,32,62,32,35,99,111,111,107,105,101,115,16,0,14,35,97,112,112,32,62,32,46,99,111,111,107,105,101,16,0,15,35,97,112,112,32,62,32,46,99,111,111,107,105,101,115,16,0,11,35,97,112,112,45,99,111,111,107,105,101,16,0,15,35,97,112,112,45,99,111,111,107,105,101,45,98,97,114,16,0,15,35,97,112,112,45,99,111,111,107,105,101,45,100,105,118,16,0,18,35,97,112,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,22,35,97,112,112,45,112,97,103,101,45,115,105,116,101,45,99,111,111,107,105,101,115,16,0,9,35,97,112,112,95,103,100,112,114,16,0,18,35,97,112,112,105,102,121,45,99,111,111,107,105,101,45,98,97,114,16,0,15,35,97,112,112,108,121,67,111,111,107,105,101,66,111,120,16,0,22,35,97,112,112,120,95,99,111,111,107,105,101,95,98,97,110,110,101,114,95,101,117,16,0,22,35,97,114,99,104,105,101,45,119,105,100,103,101,116,45,112,114,105,118,97,99,121,16,0,12,35,97,114,101,97,45,99,111,111,107,105,101,16,0,16,35,97,114,101,97,45,99,111,111,107,105,101,50,48,50,49,16,0,23,35,97,114,101,97,45,99,111,111,107,105,101,50,48,50,49,45,115,102,111,110,100,111,16,0,20,35,97,114,101,97,95,99,111,111,107,105,101,95,99,111,110,116,114,111,108,16,0,13,35,97,114,101,97,95,99,111,111,107,105,101,115,16,0,12,35,97,114,105,97,45,112,111,108,105,99,121,16,0,24,35,97,114,107,67,111,111,107,105,101,115,80,114,105,118,97,99,121,80,111,108,105,99,121,16,0,27,35,97,114,107,111,67,110,105,108,84,114,97,99,107,105,110,103,45,99,111,110,116,101,110,101,117,114,16,0,30,35,97,114,109,95,117,115,101,114,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,112,111,112,117,112,16,0,19,35,97,114,116,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,27,35,97,114,117,98,97,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,112,111,112,117,112,16,0,23,35,97,114,122,45,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,16,0,15,35,97,115,45,97,112,112,45,99,111,111,107,105,101,115,16,0,17,35,97,115,45,99,111,111,107,105,101,45,99,117,116,116,101,114,16,0,21,35,97,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,114,16,0,14,35,97,115,99,95,99,104,95,99,111,111,107,105,101,16,0,17,35,97,115,105,100,101,95,99,111,111,107,105,101,95,112,111,108,16,0,16,35,97,115,107,45,103,100,112,114,45,99,111,111,107,105,101,16,0,11,35,97,115,107,67,111,111,107,105,101,115,16,0,24,35,97,115,107,70,111,114,67,111,111,107,105,101,115,66,97,99,107,103,114,111,117,110,100,16,0,19,35,97,115,107,84,111,65,99,99,101,112,116,67,111,111,107,105,101,115,16,0,15,35,97,115,107,95,99,111,111,107,105,101,95,108,111,119,16,0,14,35,97,115,107,95,99,111,111,107,105,101,95,111,107,16,0,8,35,97,115,107,99,111,111,107,16,0,11,35,97,115,107,99,111,111,107,105,101,115,16,0,13,35,97,115,107,102,111,114,99,111,111,107,105,101,16,0,22,35,97,115,116,101,114,105,120,95,99,111,111,107,105,101,95,119,105,100,103,101,116,16,0,18,35,97,116,101,95,99,111,111,107,105,101,95,100,105,97,108,111,103,16,0,21,35,97,116,103,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,16,0,20,35,97,116,108,97,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,15,35,97,116,116,97,105,110,45,99,111,111,107,105,101,115,16,0,17,35,97,116,116,101,110,116,105,111,110,67,111,111,107,105,101,115,16,0,18,35,97,116,116,101,110,116,105,111,110,95,99,111,111,107,105,101,115,16,0,16,35,97,117,95,99,111,111,107,105,101,115,97,108,101,114,116,16,0,22,35,97,117,116,104,80,111,112,117,112,80,111,108,105,99,121,66,97,110,110,101,114,16,0,17,35,97,117,116,111,101,115,99,97,112,101,99,111,111,107,105,101,16,0,19,35,97,117,116,111,114,105,115,97,116,105,111,110,67,111,111,107,105,101,16,0,18,35,97,118,99,110,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,14,35,97,118,99,110,115,45,119,114,97,112,112,101,114,16,0,26,35,97,118,101,110,99,121,45,110,101,111,115,45,99,111,111,107,105,101,101,110,97,98,108,101,114,16,0,14,35,97,118,101,114,116,95,99,111,111,107,105,101,115,16,0,13,35,97,118,101,114,116,99,111,111,107,98,105,115,16,0,22,35,97,118,101,114,116,105,115,115,101,109,101,110,116,45,99,111,111,107,105,101,115,16,0,18,35,97,118,101,114,116,105,115,115,101,109,101,110,116,67,78,73,76,16,0,21,35,97,118,101,114,116,105,115,115,101,109,101,110,116,67,111,111,107,105,101,115,16,0,21,35,97,118,101,114,116,105,115,115,101,109,101,110,116,95,99,111,111,107,105,101,16,0,22,35,97,118,101,114,116,105,115,115,101,109,101,110,116,95,99,111,111,107,105,101,115,16,0,15,35,97,118,101,114,116,111,45,99,111,111,107,105,101,115,16,0,15,35,97,118,103,45,99,111,111,107,105,101,45,98,97,114,16,0,22,35,97,118,103,45,99,111,111,107,105,101,45,98,97,114,45,104,111,108,100,101,114,16,0,17,35,97,118,103,45,99,111,111,107,105,101,98,97,110,110,101,114,16,0,17,35,97,118,103,79,112,116,73,110,45,119,114,97,112,112,101,114,16,0,17,35,97,118,104,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,12,35,97,118,105,97,110,67,111,111,107,105,101,16,0,13,35,97,118,105,115,45,99,111,111,107,105,101,115,16,0,12,35,97,118,105,115,67,111,111,107,105,101,115,16,0,13,35,97,118,105,115,95,99,111,99,107,105,101,115,16,0,13,35,97,118,105,115,95,99,111,111,107,105,101,115,16,0,12,35,97,118,105,115,99,111,111,107,105,101,115,16,0,13,35,97,118,105,115,111,45,98,97,110,110,101,114,16,0,9,35,97,118,105,115,111,45,99,107,16,0,10,35,97,118,105,115,111,45,99,111,111,16,0,13,35,97,118,105,115,111,45,99,111,111,107,105,101,16,0,18,35,97,118,105,115,111,45,99,111,111,107,105,101,45,108,103,112,100,16,0,14,35,97,118,105,115,111,45,99,111,111,107,105,101,115,16,0,11,35,97,118,105,115,111,45,108,103,112,100,16,0,18,35,97,118,105,115,111,45,110,97,118,101,103,97,100,111,114,101,115,16,0,22,35,97,118,105,115,111,45,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,16,0,27,35,97,118,105,115,111,45,112,111,108,105,116,105,99,97,45,112,114,105,118,97,99,105,100,97,100,101,16,0,18,35,97,118,105,115,111,45,112,114,105,118,97,99,105,100,97,100,101,16,0,12,35,97,118,105,115,111,67,111,111,107,105,101,16,0,13,35,97,118,105,115,111,67,111,111,107,105,101,115,16,0,18,35,97,118,105,115,111,67,111,111,107,105,101,115,76,97,121,101,114,16,0,10,35,97,118,105,115,111,76,71,80,68,16,0,16,35,97,118,105,115,111,85,115,111,67,111,111,107,105,101,115,16,0,13,35,97,118,105,115,111,95,99,111,111,107,105,101,16,0,14,35,97,118,105,115,111,95,99,111,111,107,105,101,115,16,0,11,35,97,118,105,115,111,95,108,103,112,100,16,0,14,35,97,118,105,115,111,99,111,111,99,107,105,101,115,16,0,12,35,97,118,105,115,111,99,111,111,107,105,101,16,0,13,35,97,118,105,115,111,99,111,111,107,105,101,115,16,0,18,35,97,118,105,115,111,108,101,103,97,108,99,111,111,107,105,101,115,16,0,10,35,97,118,105,115,111,108,103,112,100,16,0,11,35,97,118,115,45,99,111,111,107,105,101,16,0,17,35,97,118,116,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,13,35,97,118,118,105,115,111,67,111,111,107,105,101,16,0,14,35,97,118,118,105,115,111,95,99,111,111,107,105,101,16,0,12,35,97,118,118,105,115,111,99,117,99,104,105,16,0,20,35,97,119,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,97,119,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,17,35,97,119,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,18,35,97,119,101,45,112,111,112,105,110,45,99,111,111,107,105,101,115,16,0,11,35,97,119,101,95,99,111,111,107,105,101,16,0,15,35,97,119,115,99,99,99,45,115,98,45,117,120,45,99,16,0,20,35,97,120,97,45,97,99,99,101,112,116,101,100,45,99,111,111,107,105,101,16,0,18,35,97,120,115,95,99,111,111,107,105,101,95,116,111,103,103,108,101,16,0,20,35,98,45,99,111,111,107,105,101,46,98,97,114,114,101,45,104,101,97,100,16,0,15,35,98,49,52,45,99,111,111,107,105,101,109,101,110,117,16,0,13,35,98,67,111,111,107,105,101,83,108,105,100,101,16,0,17,35,98,74,83,95,99,111,111,107,105,101,66,97,110,110,101,114,16,0,17,35,98,97,95,101,117,95,99,111,111,107,105,101,95,108,97,119,16,0,13,35,98,97,98,97,111,114,117,109,45,98,97,114,16,0,17,35,98,97,99,107,66,108,97,99,107,67,111,111,107,105,101,115,16,0,16,35,98,97,99,107,80,111,112,117,112,67,111,111,107,105,101,16,0,17,35,98,97,99,107,99,111,108,111,114,99,111,111,107,105,101,115,16,0,23,35,98,97,99,107,100,114,111,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,19,35,98,97,99,107,103,114,111,117,110,100,45,99,111,111,107,105,101,115,16,0,11,35,98,97,110,45,99,111,111,107,105,101,16,0,21,35,98,97,110,45,109,101,110,116,105,111,110,115,45,108,101,103,97,108,101,115,16,0,9,35,98,97,110,95,114,103,112,100,16,0,13,35,98,97,110,100,45,99,111,111,107,105,101,115,16,0,13,35,98,97,110,100,97,95,99,111,111,107,105,101,16,0,12,35,98,97,110,100,97,99,111,111,107,105,101,16,0,10,35,98,97,110,100,101,97,117,45,99,16,0,13,35,98,97,110,100,101,97,117,45,99,110,105,108,16,0,15,35,98,97,110,100,101,97,117,45,99,111,111,107,105,101,16,0,16,35,98,97,110,100,101,97,117,45,99,111,111,107,105,101,115,16,0,22,35,98,97,110,100,101,97,117,45,100,120,108,97,98,115,45,99,111,111,107,105,101,16,0,13,35,98,97,110,100,101,97,117,45,114,103,112,100,16,0,15,35,98,97,110,100,101,97,117,50,99,111,111,107,105,101,16,0,26,35,98,97,110,100,101,97,117,65,99,99,101,112,116,97,116,105,111,110,67,111,111,107,105,101,115,16,0,22,35,98,97,110,100,101,97,117,65,99,99,101,112,116,101,114,67,111,111,107,105,101,16,0,19,35,98,97,110,100,101,97,117,67,104,111,105,120,67,111,111,107,105,101,16,0,12,35,98,97,110,100,101,97,117,67,110,105,108,16,0,14,35,98,97,110,100,101,97,117,67,111,111,107,105,101,16,0,19,35,98,97,110,100,101,97,117,67,111,111,107,105,101,73,100,119,101,98,16,0,15,35,98,97,110,100,101,97,117,67,111,111,107,105,101,115,16,0,12,35,98,97,110,100,101,97,117,95,99,103,118,16,0,13,35,98,97,110,100,101,97,117,95,99,110,105,108,16,0,15,35,98,97,110,100,101,97,117,95,99,111,111,107,105,101,16,0,20,35,98,97,110,100,101,97,117,95,99,111,111,107,105,101,95,99,110,105,108,16,0,16,35,98,97,110,100,101,97,117,95,99,111,111,107,105,101,115,16,0,23,35,98,97,110,100,101,97,117,95,99,111,111,107,105,101,115,95,102,111,111,116,101,114,16,0,23,35,98,97,110,100,101,97,117,95,99,111,111,107,105,101,115,95,111,110,108,105,110,101,16,0,13,35,98,97,110,100,101,97,117,95,105,110,102,111,16,0,21,35,98,97,110,100,101,97,117,95,112,111,112,105,110,95,99,111,111,107,105,101,16,0,22,35,98,97,110,100,101,97,117,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,15,35,98,97,110,100,101,97,117,99,111,111,107,105,101,115,16,0,10,35,98,97,110,110,45,99,111,111,107,16,0,22,35,98,97,110,110,101,114,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,14,35,98,97,110,110,101,114,45,99,111,111,107,105,101,16,0,21,35,98,97,110,110,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,22,35,98,97,110,110,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,18,35,98,97,110,110,101,114,45,99,111,111,107,105,101,45,108,97,119,16,0,26,35,98,97,110,110,101,114,45,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,98,111,120,16,0,30,35,98,97,110,110,101,114,45,99,111,111,107,105,101,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,15,35,98,97,110,110,101,114,45,99,111,111,107,105,101,115,16,0,24,35,98,97,110,110,101,114,45,102,108,111,116,97,110,116,101,45,99,111,111,107,105,101,115,16,0,12,35,98,97,110,110,101,114,45,103,100,112,114,16,0,32,35,98,97,110,110,101,114,45,103,100,112,114,45,112,97,108,97,122,122,105,110,97,45,99,111,110,116,97,105,110,101,114,16,0,12,35,98,97,110,110,101,114,45,108,103,112,100,16,0,24,35,98,97,110,110,101,114,45,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,16,0,15,35,98,97,110,110,101,114,45,112,114,105,118,97,99,121,16,0,15,35,98,97,110,110,101,114,46,99,111,111,107,105,101,115,16,0,11,35,98,97,110,110,101,114,67,78,73,76,16,0,11,35,98,97,110,110,101,114,67,110,105,108,16,0,13,35,98,97,110,110,101,114,67,111,111,107,105,101,16,0,22,35,98,97,110,110,101,114,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,16,35,98,97,110,110,101,114,67,111,111,107,105,101,76,97,119,16,0,16,35,98,97,110,110,101,114,67,111,111,107,105,101,80,111,108,16,0,14,35,98,97,110,110,101,114,67,111,111,107,105,101,115,16,0,21,35,98,97,110,110,101,114,67,111,111,107,105,101,115,77,111,115,116,114,97,114,16,0,11,35,98,97,110,110,101,114,76,71,80,68,16,0,11,35,98,97,110,110,101,114,76,103,112,100,16,0,17,35,98,97,110,110,101,114,95,99,107,95,112,111,108,105,99,121,16,0,12,35,98,97,110,110,101,114,95,99,110,105,108,16,0,23,35,98,97,110,110,101,114,95,99,111,110,115,101,110,115,111,95,99,111,111,107,105,101,16,0,14,35,98,97,110,110,101,114,95,99,111,111,107,105,101,16,0,22,35,98,97,110,110,101,114,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,16,0,17,35,98,97,110,110,101,114,95,99,111,111,107,105,101,98,97,114,16,0,15,35,98,97,110,110,101,114,95,99,111,111,107,105,101,115,16,0,27,35,98,97,110,110,101,114,95,99,111,111,107,105,101,115,95,116,114,97,115,112,97,114,101,110,116,101,16,0,12,35,98,97,110,110,101,114,95,108,103,112,100,16,0,15,35,98,97,110,110,101,114,95,112,114,105,118,97,99,121,16,0,21,35,98,97,110,110,101,114,95,112,114,105,118,97,99,121,95,98,108,105,116,122,16,0,12,35,98,97,110,110,101,114,95,114,103,112,100,16,0,18,35,98,97,110,110,101,114,95,116,111,112,95,99,111,111,107,105,101,16,0,13,35,98,97,110,110,101,114,99,111,111,107,105,101,16,0,14,35,98,97,110,110,101,114,99,111,111,107,105,101,115,16,0,14,35,98,97,110,110,101,114,112,114,105,118,97,99,121,16,0,16,35,98,97,110,110,105,101,114,101,45,99,111,111,107,105,101,16,0,17,35,98,97,110,110,105,101,114,101,45,99,111,111,107,105,101,115,16,0,41,35,98,97,110,110,105,101,114,101,95,105,110,102,111,114,109,97,116,105,111,110,95,117,116,105,108,105,115,97,116,105,111,110,95,99,111,111,107,105,101,115,16,0,19,35,98,97,110,114,118,95,99,111,111,107,105,101,99,111,111,107,105,101,16,0,19,35,98,97,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,12,35,98,97,114,45,99,111,111,107,105,101,115,16,0,18,35,98,97,114,45,104,101,97,100,101,114,45,99,111,111,107,105,101,16,0,12,35,98,97,114,45,112,114,105,118,97,99,121,16,0,22,35,98,97,114,45,122,111,110,101,45,99,111,111,107,105,101,45,117,115,97,103,101,16,0,20,35,98,97,114,65,103,114,101,101,87,105,116,104,67,111,111,107,105,101,115,16,0,12,35,98,97,114,95,99,111,111,107,105,101,115,16,0,19,35,98,97,114,97,95,109,101,115,97,106,101,95,99,111,111,107,105,101,16,0,12,35,98,97,114,97,99,111,111,107,105,101,115,16,0,14,35,98,97,114,114,97,45,99,111,111,107,105,101,115,16,0,11,35,98,97,114,114,97,45,108,103,112,100,16,0,23,35,98,97,114,114,97,65,99,101,112,116,97,99,105,111,110,67,111,111,107,105,101,115,16,0,12,35,98,97,114,114,97,67,79,79,75,73,69,16,0,13,35,98,97,114,114,97,67,111,111,107,105,101,115,16,0,15,35,98,97,114,114,97,95,97,99,99,101,112,116,97,114,16,0,20,35,98,97,114,114,97,95,97,118,105,115,111,95,99,111,111,107,105,101,115,16,0,13,35,98,97,114,114,97,95,99,111,111,107,105,101,16,0,14,35,98,97,114,114,97,95,99,111,111,107,105,101,115,16,0,17,35,98,97,114,114,97,95,100,101,105,95,99,111,111,107,105,101,16,0,19,35,98,97,114,114,97,95,108,101,103,97,108,95,99,111,111,107,105,101,16,0,15,35,98,97,114,114,97,97,99,101,112,116,97,99,105,111,16,0,16,35,98,97,114,114,97,97,99,101,112,116,97,99,105,111,110,16,0,11,35,98,97,114,114,97,97,118,105,115,111,16,0,10,35,98,97,114,114,97,99,111,107,105,16,0,12,35,98,97,114,114,97,99,111,111,107,105,101,16,0,13,35,98,97,114,114,97,99,111,111,107,105,101,115,16,0,13,35,98,97,114,114,101,45,99,111,111,107,105,101,16,0,18,35,98,97,114,114,101,65,108,101,114,116,101,67,111,111,107,105,101,16,0,12,35,98,97,114,114,101,67,111,111,107,105,101,16,0,14,35,98,97,114,114,101,95,95,99,111,111,107,105,101,16,0,13,35,98,97,114,114,101,95,99,111,111,107,105,101,16,0,28,35,98,97,114,114,101,95,99,111,111,107,105,101,95,99,111,110,116,101,110,117,95,99,101,110,116,114,101,16,0,14,35,98,97,114,114,101,95,99,111,111,107,105,101,115,16,0,23,35,98,97,114,114,101,95,102,108,111,116,116,97,110,116,101,95,99,111,111,107,105,101,16,0,21,35,98,97,114,114,101,95,108,101,103,97,108,101,95,99,111,111,107,105,101,115,16,0,21,35,98,97,114,114,101,95,116,111,112,95,115,101,99,111,110,100,97,105,114,101,16,0,14,35,98,97,114,114,105,116,97,99,111,111,107,105,101,16,0,15,35,98,97,114,114,105,116,97,99,111,111,107,105,101,115,16,0,12,35,98,97,114,114,105,116,97,108,111,99,97,16,0,18,35,98,97,115,97,108,67,111,111,107,105,101,70,111,111,116,101,114,16,0,18,35,98,97,117,101,114,67,111,111,107,105,101,80,111,108,105,99,121,16,0,24,35,98,97,117,101,114,67,111,111,107,105,101,80,111,108,105,99,121,66,97,110,110,101,114,16,0,11,35,98,98,95,99,111,111,107,105,101,115,16,0,11,35,98,98,99,99,111,111,107,105,101,115,16,0,11,35,98,98,99,100,66,97,110,110,101,114,16,0,25,35,98,98,104,95,103,100,112,114,95,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,16,0,12,35,98,98,116,67,111,111,107,105,101,66,71,16,0,17,35,98,98,120,95,109,111,100,97,108,95,99,111,111,107,105,101,16,0,17,35,98,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,17,35,98,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,10,35,98,99,67,111,111,107,105,101,115,16,0,17,35,98,99,95,99,111,111,107,105,101,99,111,110,116,114,111,108,16,0,19,35,98,99,98,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,15,35,98,99,99,45,99,111,111,107,105,101,45,98,97,114,16,0,26,35,98,99,109,115,67,111,111,107,105,101,73,110,102,111,84,101,120,116,87,114,97,112,112,101,114,16,0,22,35,98,99,109,115,67,111,111,107,105,101,73,110,102,111,87,114,97,112,112,101,114,16,0,9,35,98,99,110,45,99,99,119,114,16,0,14,35,98,99,111,111,107,105,101,119,105,100,103,101,116,16,0,12,35,98,99,112,109,45,102,111,111,116,101,114,16,0,31,35,98,99,112,109,45,110,111,116,105,102,105,99,97,116,105,111,110,45,111,117,116,101,114,45,98,111,114,100,101,114,16,0,10,35,98,100,45,99,111,111,107,105,101,16,0,14,35,98,101,99,111,111,107,105,101,98,97,114,105,100,16,0,19,35,98,101,99,111,111,107,105,101,98,97,114,112,97,110,101,108,105,100,16,0,23,35,98,101,108,45,99,111,111,107,105,101,45,105,110,102,111,45,98,97,110,110,101,114,16,0,13,35,98,101,108,107,97,67,111,111,107,105,101,115,16,0,18,35,98,101,116,116,101,114,45,99,111,111,107,105,101,45,98,97,114,16,0,25,35,98,101,116,116,101,114,103,100,112,114,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,27,35,98,101,116,116,101,114,103,100,112,114,95,117,115,101,114,95,109,101,110,117,95,112,111,112,117,112,16,0,17,35,98,102,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,25,35,98,102,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,14,35,98,102,114,45,99,111,111,107,105,101,108,97,119,16,0,25,35,98,103,45,102,111,111,116,101,114,45,112,114,105,118,97,99,101,45,112,111,108,105,99,121,16,0,16,35,98,103,45,112,111,112,117,112,67,111,111,107,105,101,115,16,0,10,35,98,103,95,99,111,111,107,105,101,16,0,11,35,98,103,95,99,111,111,107,105,101,115,16,0,20,35,98,103,101,101,95,112,114,105,118,97,99,121,95,98,97,110,110,101,114,16,0,16,35,98,103,111,110,45,99,111,111,107,105,101,45,98,97,114,16,0,14,35,98,105,98,95,67,111,111,107,105,101,66,111,120,16,0,11,35,98,105,103,99,111,111,107,105,101,115,16,0,16,35,98,105,103,102,45,99,111,111,107,105,101,45,98,97,114,16,0,25,35,98,105,109,45,115,116,117,100,105,111,45,99,111,111,107,105,101,45,104,111,108,100,101,114,16,0,18,35,98,105,112,111,95,97,118,105,115,111,99,111,111,107,105,101,115,16,0,15,35,98,105,115,99,117,105,116,70,111,114,109,68,105,118,16,0,15,35,98,105,116,98,97,121,45,99,111,111,107,105,101,115,16,0,28,35,98,107,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,16,0,15,35,98,107,67,111,111,107,105,101,66,97,110,110,101,114,16,0,17,35,98,107,95,99,111,111,107,105,101,115,95,97,108,101,114,116,16,0,9,35,98,107,99,111,111,107,105,101,16,0,16,35,98,108,97,99,107,111,117,116,95,99,111,111,107,105,101,16,0,21,35,98,108,97,107,101,95,99,111,111,107,105,101,115,95,110,111,116,105,99,101,16,0,22,35,98,108,97,115,116,110,101,115,115,67,111,111,107,105,101,66,97,110,110,101,114,16,0,12,35,98,108,111,99,45,99,111,111,107,105,101,16,0,23,35,98,108,111,99,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,16,0,20,35,98,108,111,99,45,99,111,111,107,105,101,115,45,110,111,114,109,97,108,16,0,12,35,98,108,111,99,67,111,111,107,105,101,115,16,0,12,35,98,108,111,99,95,99,111,111,107,105,101,16,0,20,35,98,108,111,99,95,99,111,111,107,105,101,95,97,110,110,111,110,99,101,16,0,13,35,98,108,111,99,95,99,111,111,107,105,101,115,16,0,20,35,98,108,111,99,95,104,101,97,100,101,114,95,109,101,115,115,97,103,101,16,0,10,35,98,108,111,99,95,114,103,112,100,16,0,15,35,98,108,111,99,95,115,101,116,99,111,111,107,105,101,16,0,29,35,98,108,111,99,107,45,97,103,101,110,99,101,45,109,45,99,111,111,107,105,101,115,45,98,108,111,99,107,16,0,33,35,98,108,111,99,107,45,97,115,110,45,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,112,114,105,118,97,99,121,16,0,24,35,98,108,111,99,107,45,98,101,97,110,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,31,35,98,108,111,99,107,45,98,116,109,95,98,108,111,99,107,115,45,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,11,35,98,108,111,99,107,45,99,99,112,97,16,0,23,35,98,108,111,99,107,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,16,0,19,35,98,108,111,99,107,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,42,35,98,108,111,99,107,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,16,0,48,35,98,108,111,99,107,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,98,108,111,99,107,16,0,18,35,98,108,111,99,107,45,99,111,111,107,105,101,45,102,111,114,109,16,0,18,35,98,108,111,99,107,45,99,111,111,107,105,101,45,105,110,102,111,16,0,22,35,98,108,111,99,107,45,99,111,111,107,105,101,95,112,111,108,105,99,121,45,48,16,0,18,35,98,108,111,99,107,45,99,111,111,107,105,101,98,108,111,99,107,16,0,20,35,98,108,111,99,107,45,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,23,35,98,108,111,99,107,45,99,111,111,107,105,101,99,111,110,115,101,110,116,98,97,114,16,0,24,35,98,108,111,99,107,45,99,111,111,107,105,101,112,111,108,105,99,121,98,108,111,99,107,16,0,19,35,98,108,111,99,107,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,21,35,98,108,111,99,107,45,99,111,111,107,105,101,115,45,112,111,108,105,99,101,16,0,44,35,98,108,111,99,107,45,99,111,111,107,105,101,115,97,99,116,105,118,101,45,99,111,111,107,105,101,115,97,99,116,105,118,101,45,98,108,111,99,107,99,111,100,101,16,0,20,35,98,108,111,99,107,45,99,111,111,107,105,101,115,110,111,116,105,99,101,16,0,19,35,98,108,111,99,107,45,99,111,111,107,105,101,115,112,111,112,117,112,16,0,20,35,98,108,111,99,107,45,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,38,35,98,108,111,99,107,45,99,115,109,45,117,115,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,101,115,115,97,103,101,16,0,39,35,98,108,111,99,107,45,99,117,115,116,111,109,95,99,111,111,107,105,101,115,45,99,117,115,116,111,109,95,99,111,111,107,105,101,115,95,101,117,16,0,51,35,98,108,111,99,107,45,100,98,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,108,111,99,107,16,0,36,35,98,108,111,99,107,45,100,105,114,101,99,116,45,99,111,110,116,114,111,108,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,16,0,20,35,98,108,111,99,107,45,101,117,99,111,111,107,105,101,98,108,111,99,107,16,0,32,35,98,108,111,99,107,45,101,117,99,111,111,107,105,101,98,108,111,99,107,45,99,111,111,107,105,101,45,105,110,102,111,16,0,23,35,98,108,111,99,107,45,103,100,112,114,99,111,111,107,105,101,115,98,108,111,99,107,16,0,16,35,98,108,111,99,107,45,103,100,112,114,109,111,100,97,108,16,0,24,35,98,108,111,99,107,45,104,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,38,35,98,108,111,99,107,45,105,110,102,45,101,117,45,99,111,111,107,105,101,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,23,35,98,108,111,99,107,45,108,104,103,45,99,111,111,107,105,101,45,117,115,97,103,101,16,0,31,35,98,108,111,99,107,45,109,101,110,117,99,109,116,45,112,117,115,104,95,108,111,105,95,99,111,111,107,105,101,115,16,0,37,35,98,108,111,99,107,45,109,110,99,45,99,110,105,108,45,109,110,99,45,99,110,105,108,45,105,110,102,111,45,99,111,111,107,105,101,115,16,0,22,35,98,108,111,99,107,45,109,119,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,27,35,98,108,111,99,107,45,110,101,116,116,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,16,0,27,35,98,108,111,99,107,45,110,111,116,105,102,105,99,97,116,105,111,110,115,45,99,111,111,107,105,101,16,0,32,35,98,108,111,99,107,45,111,121,115,116,101,114,45,103,100,112,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,23,35,98,108,111,99,107,45,112,111,108,105,116,105,99,97,115,99,111,111,107,105,101,115,16,0,26,35,98,108,111,99,107,45,112,114,105,118,97,99,121,112,111,108,105,99,121,98,97,110,110,101,114,16,0,25,35,98,108,111,99,107,45,112,114,105,118,97,99,121,112,111,108,105,99,121,112,111,112,117,112,16,0,19,35,98,108,111,99,107,45,114,103,112,100,45,98,97,110,100,101,97,117,16,0,23,35,98,108,111,99,107,45,114,103,112,100,45,114,103,112,100,45,102,111,111,116,101,114,16,0,38,35,98,108,111,99,107,45,114,109,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,32,35,98,108,111,99,107,45,115,105,116,101,45,97,103,114,101,101,45,97,99,99,101,115,115,45,99,111,111,107,105,101,115,16,0,24,35,98,108,111,99,107,45,116,98,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,30,35,98,108,111,99,107,45,119,98,116,45,98,108,111,99,107,45,100,111,109,97,105,110,45,99,111,111,107,105,101,16,0,25,35,98,108,111,99,107,45,122,111,100,105,97,99,45,115,105,116,101,45,99,111,111,107,105,101,16,0,18,35,98,108,111,99,107,65,99,99,101,112,116,67,111,111,107,105,101,16,0,21,35,98,108,111,99,107,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,16,35,98,108,111,99,107,67,111,111,107,105,101,73,110,102,111,16,0,13,35,98,108,111,99,107,95,99,111,111,107,105,101,16,0,13,35,98,108,111,99,107,99,111,111,107,105,101,115,16,0,16,35,98,108,111,99,107,100,105,115,99,108,97,105,109,101,114,16,0,22,35,98,108,111,103,103,101,114,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,12,35,98,108,111,107,95,99,111,111,107,105,101,16,0,22,35,98,108,111,113,117,101,95,118,101,110,116,97,110,97,67,111,111,107,105,101,115,16,0,14,35,98,108,111,113,117,101,99,111,111,107,105,101,115,16,0,24,35,98,108,117,115,121,115,95,110,111,114,109,97,116,105,118,97,95,99,111,111,107,105,101,16,0,15,35,98,108,122,45,99,111,111,107,105,101,105,110,102,111,16,0,20,35,98,109,119,45,101,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,11,35,98,110,45,99,111,111,107,105,101,115,16,0,20,35,98,111,105,116,101,95,100,105,97,108,111,103,95,99,111,111,107,105,101,16,0,12,35,98,111,110,97,67,111,111,107,105,101,115,16,0,21,35,98,111,110,105,97,108,45,99,109,112,45,99,111,110,116,97,105,110,101,114,16,0,18,35,98,111,111,116,99,111,111,107,101,114,45,98,97,110,110,101,114,16,0,16,35,98,111,116,111,110,101,115,95,99,111,111,107,105,101,115,16,0,14,35,98,111,116,116,111,109,45,99,111,111,107,105,101,16,0,21,35,98,111,116,116,111,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,15,35,98,111,116,116,111,109,45,99,111,111,107,105,101,115,16,0,13,35,98,111,116,116,111,109,67,111,111,107,105,101,16,0,18,35,98,111,116,116,111,109,67,111,111,107,105,101,85,115,97,103,101,16,0,23,35,98,111,116,116,111,109,83,116,105,99,107,121,67,111,111,107,105,101,115,66,111,120,16,0,14,35,98,111,116,116,111,109,95,99,111,111,107,105,101,16,0,20,35,98,111,116,116,111,109,95,105,110,102,111,95,99,111,111,107,105,101,115,16,0,24,35,98,111,120,45,97,99,99,101,116,116,97,122,105,111,110,101,45,99,111,111,107,105,101,16,0,18,35,98,111,120,45,97,103,114,101,101,45,103,100,112,114,45,105,100,16,0,17,35,98,111,120,45,97,108,101,114,116,45,99,111,111,107,105,101,16,0,11,35,98,111,120,45,99,111,111,107,105,101,16,0,14,35,98,111,120,45,99,111,111,107,105,101,45,48,49,16,0,18,35,98,111,120,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,19,35,98,111,120,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,19,35,98,111,120,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,12,35,98,111,120,45,99,111,111,107,105,101,115,16,0,9,35,98,111,120,45,103,100,112,114,16,0,10,35,98,111,120,67,111,111,107,105,101,16,0,11,35,98,111,120,67,111,111,107,105,101,115,16,0,14,35,98,111,120,84,101,120,116,67,111,111,107,105,101,16,0,17,35,98,111,120,90,103,111,100,97,78,97,67,111,111,107,105,101,16,0,11,35,98,111,120,95,99,111,111,107,105,101,16,0,18,35,98,111,120,95,99,111,111,107,105,101,95,97,99,99,101,112,116,16,0,22,35,98,111,120,95,99,111,111,107,105,101,95,97,99,99,101,112,116,97,110,99,101,16,0,18,35,98,111,120,95,99,111,111,107,105,101,95,97,100,118,101,114,116,16,0,16,35,98,111,120,95,99,111,111,107,105,101,95,105,110,102,111,16,0,18,35,98,111,120,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,17,35,98,111,120,95,99,111,111,107,105,101,112,111,108,105,99,121,16,0,18,35,98,111,120,95,99,111,111,107,105,101,115,95,97,108,101,114,116,16,0,18,35,98,111,120,95,99,111,111,107,105,101,115,95,101,114,114,111,114,16,0,17,35,98,111,120,95,99,111,111,107,105,101,115,95,105,110,102,111,16,0,16,35,98,111,120,95,105,110,102,111,95,99,111,111,107,105,101,16,0,9,35,98,111,120,95,108,103,112,100,16,0,16,35,98,111,120,95,108,103,112,100,95,99,111,111,107,105,101,16,0,10,35,98,111,120,99,111,111,107,105,101,16,0,13,35,98,111,120,99,111,111,107,105,101,108,97,119,16,0,10,35,98,112,99,111,111,107,105,101,115,16,0,17,35,98,112,114,95,99,111,111,107,105,101,45,97,108,101,114,116,16,0,22,35,98,112,120,45,114,103,112,100,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,27,35,98,114,45,119,111,114,100,112,114,101,115,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,15,35,98,114,67,111,111,107,105,101,66,97,110,110,101,114,16,0,21,35,98,114,97,95,99,111,111,107,105,101,67,104,111,105,99,101,73,110,102,111,16,0,29,35,98,114,97,105,110,45,99,111,111,107,105,101,45,111,112,116,105,110,45,99,111,111,107,105,101,98,111,120,16,0,23,35,98,114,97,110,100,102,111,117,114,45,99,111,111,107,105,101,45,98,108,111,99,107,16,0,25,35,98,114,105,110,107,45,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,22,35,98,114,111,119,115,101,114,45,99,111,111,107,105,101,45,119,97,114,110,105,110,16,0,23,35,98,114,111,119,115,101,114,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,14,35,98,114,117,110,101,108,99,111,111,107,105,101,115,16,0,12,35,98,114,121,45,99,111,110,115,101,110,116,16,0,16,35,98,115,67,111,111,107,105,101,115,66,97,110,110,101,114,16,0,26,35,98,115,95,99,111,111,107,105,101,95,97,108,101,114,116,95,99,111,110,116,97,105,110,101,114,16,0,9,35,98,115,99,111,111,107,105,101,16,0,18,35,98,115,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,98,116,45,112,114,105,118,97,99,121,45,104,101,97,100,101,114,16,0,19,35,98,116,45,112,114,105,118,97,99,121,45,111,118,101,114,108,97,121,16,0,20,35,98,116,67,111,111,107,105,101,67,111,110,115,101,110,116,82,111,111,116,16,0,11,35,98,116,95,95,99,111,111,107,105,101,16,0,10,35,98,116,95,99,111,111,107,105,101,16,0,11,35,98,116,110,45,99,111,111,107,105,101,16,0,18,35,98,116,110,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,12,35,98,116,110,79,110,101,84,114,117,115,116,16,0,22,35,98,116,115,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,17,35,98,116,122,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,21,35,98,117,107,111,45,103,100,112,114,45,99,111,111,107,105,101,45,98,97,114,16,0,18,35,98,117,110,100,108,101,95,99,111,111,107,105,101,95,98,97,114,16,0,25,35,98,117,115,105,110,101,115,115,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,15,35,98,117,116,116,111,110,45,99,111,111,107,105,101,115,16,0,25,35,98,117,116,116,111,110,95,99,111,111,107,105,101,115,95,118,97,108,105,100,97,116,101,100,16,0,23,35,98,117,122,122,98,108,111,103,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,26,35,98,117,122,122,98,108,111,103,112,114,111,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,23,35,98,118,95,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,16,0,16,35,98,118,105,110,45,99,111,111,107,105,101,45,98,111,120,16,0,16,35,98,119,45,103,100,112,114,95,116,111,97,115,116,101,114,16,0,16,35,98,119,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,16,35,98,119,95,99,111,111,107,105,101,99,104,111,105,99,101,16,0,17,35,98,119,95,99,111,111,107,105,101,111,118,101,114,108,97,121,16,0,17,35,98,119,112,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,18,35,98,119,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,15,35,98,120,95,99,111,111,107,105,101,95,105,110,102,111,16,0,18,35,98,121,115,45,99,111,111,107,105,101,109,101,115,115,97,103,101,16,0,26,35,98,121,116,101,115,105,122,101,95,99,111,111,107,105,101,95,101,120,112,108,97,105,110,101,114,16,0,16,35,98,122,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,14,35,99,45,99,111,111,107,105,101,45,110,111,116,101,16,0,10,35,99,45,99,111,111,107,105,101,115,16,0,13,35,99,45,100,99,120,45,99,111,111,107,105,101,16,0,20,35,99,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,16,0,10,35,99,48,48,107,105,101,77,115,103,16,0,18,35,99,50,103,95,99,111,111,107,105,101,95,100,105,97,108,111,103,16,0,23,35,99,52,115,67,111,111,107,105,101,79,110,101,67,108,105,99,107,77,111,100,97,108,16,0,11,35,99,65,99,99,101,112,116,66,97,114,16,0,13,35,99,67,111,111,107,105,101,65,108,101,114,116,16,0,14,35,99,67,111,111,107,105,101,72,101,97,100,101,114,16,0,19,35,99,67,111,114,101,95,99,111,111,107,105,101,78,111,116,105,99,101,16,0,12,35,99,73,110,102,111,46,99,73,110,102,111,16,0,14,35,99,76,97,121,101,114,46,110,111,116,105,99,101,16,0,8,35,99,80,111,108,105,99,121,16,0,12,35,99,80,114,111,109,112,116,95,98,97,114,16,0,18,35,99,80,114,111,109,112,116,95,98,97,114,83,112,97,99,101,114,16,0,20,35,99,83,112,97,99,101,46,99,111,111,107,105,101,83,112,97,99,101,114,16,0,13,35,99,87,97,114,110,46,99,111,111,107,105,101,16,0,14,35,99,87,97,114,110,46,99,111,111,107,105,101,115,16,0,8,35,99,95,97,103,114,101,109,16,0,9,35,99,95,99,111,111,107,105,101,16,0,10,35,99,97,95,98,97,110,110,101,114,16,0,13,35,99,97,95,105,110,102,111,95,112,108,117,115,16,0,11,35,99,97,98,99,111,111,107,105,101,115,16,0,20,35,99,97,100,114,101,95,97,108,101,114,116,95,99,111,111,107,105,101,115,16,0,13,35,99,97,100,114,101,95,99,111,111,107,105,101,16,0,12,35,99,97,100,118,105,115,101,95,98,97,114,16,0,13,35,99,97,106,97,95,99,111,111,107,105,101,115,16,0,12,35,99,97,106,97,99,111,111,107,105,101,115,16,0,13,35,99,97,108,108,67,111,110,116,114,111,108,108,16,0,24,35,99,97,109,117,115,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,23,35,99,97,112,95,80,111,108,105,116,105,99,97,67,111,111,107,105,101,115,68,105,118,16,0,12,35,99,97,112,97,45,99,111,111,107,105,101,16,0,13,35,99,97,112,97,45,99,111,111,107,105,101,115,16,0,18,35,99,97,112,97,65,99,101,112,116,97,67,111,111,107,105,101,115,16,0,16,35,99,97,112,97,65,118,105,115,111,67,111,111,107,105,101,16,0,17,35,99,97,112,97,65,118,105,115,111,67,111,111,107,105,101,115,16,0,25,35,99,97,112,97,65,118,105,115,111,80,111,108,105,116,105,99,97,67,111,111,107,105,101,115,16,0,43,35,99,97,112,97,65,118,105,115,111,80,111,108,105,116,105,99,97,67,111,111,107,105,101,115,95,115,117,112,101,114,105,111,114,95,109,101,110,115,97,106,101,115,16,0,20,35,99,97,112,97,95,97,99,101,112,116,97,95,99,111,111,107,105,101,115,16,0,19,35,99,97,112,97,95,97,118,105,115,111,95,99,111,111,107,105,101,115,16,0,12,35,99,97,112,97,95,99,111,111,107,105,101,16,0,17,35,99,97,112,97,95,99,111,111,107,105,101,95,114,103,112,100,16,0,13,35,99,97,112,97,95,99,111,111,107,105,101,115,16,0,18,35,99,97,112,97,95,108,111,112,100,95,99,111,111,107,105,101,115,16,0,17,35,99,97,112,97,95,112,111,108,95,99,111,111,107,105,101,115,16,0,19,35,99,97,112,97,101,102,101,99,116,111,115,45,99,111,111,107,105,101,16,0,27,35,99,97,114,114,111,116,45,102,114,97,109,101,45,98,117,109,112,101,114,67,111,111,107,105,101,115,16,0,18,35,99,97,114,116,101,108,99,111,111,107,105,101,108,101,103,97,108,16,0,20,35,99,97,115,101,121,115,45,99,111,111,107,105,101,45,109,111,100,97,108,16,0,18,35,99,97,115,112,105,97,110,95,99,111,111,107,105,101,98,97,114,16,0,20,35,99,97,116,97,112,117,108,116,45,99,111,111,107,105,101,45,98,97,114,16,0,17,35,99,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,17,35,99,98,45,99,111,111,107,105,101,45,104,111,108,100,101,114,16,0,18,35,99,98,45,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,25,35,99,98,95,99,111,111,107,105,101,95,112,111,108,105,99,121,95,100,101,102,97,117,108,116,16,0,23,35,99,98,95,99,111,111,107,105,101,95,112,111,108,105,99,121,95,112,111,112,117,112,16,0,30,35,99,98,95,99,111,111,107,105,101,95,112,111,108,105,99,121,95,112,111,112,117,112,95,115,104,114,111,117,100,16,0,27,35,99,98,95,115,101,116,116,105,110,103,115,95,97,108,101,114,116,95,101,120,116,101,110,100,101,100,16,0,17,35,99,98,99,111,111,107,105,101,115,45,98,111,116,116,111,109,16,0,14,35,99,98,99,111,111,107,105,101,115,45,116,111,112,16,0,27,35,99,98,116,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,10,35,99,99,45,98,97,110,110,101,114,16,0,18,35,99,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,14,35,99,99,45,99,111,111,107,105,101,45,108,97,119,16,0,18,35,99,99,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,17,35,99,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,18,35,99,99,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,11,35,99,99,45,99,111,111,107,105,101,115,16,0,9,35,99,99,45,109,111,100,97,108,16,0,17,35,99,99,45,109,111,100,97,108,45,111,118,101,114,108,97,121,16,0,16,35,99,99,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,99,99,45,110,111,116,105,102,105,99,97,116,105,111,110,45,103,117,116,116,101,114,16,0,24,35,99,99,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,16,0,7,35,99,99,45,116,97,103,16,0,13,35,99,99,46,99,99,95,100,105,97,108,111,103,16,0,10,35,99,99,77,101,115,115,97,103,101,16,0,21,35,99,99,95,95,109,111,100,97,108,95,95,99,111,110,116,97,105,110,101,114,16,0,14,35,99,99,95,95,112,97,103,101,66,108,111,99,107,16,0,11,35,99,99,95,98,97,110,100,101,97,117,16,0,10,35,99,99,95,98,97,110,110,101,114,16,0,18,35,99,99,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,7,35,99,99,95,99,111,110,16,0,23,35,99,99,95,99,111,111,107,105,101,99,111,110,115,101,110,116,110,111,116,105,99,101,16,0,11,35,99,99,95,99,111,111,107,105,101,115,16,0,16,35,99,99,95,100,115,103,118,111,95,98,97,110,110,101,114,16,0,10,35,99,99,95,112,111,108,105,99,121,16,0,17,35,99,99,95,112,114,105,118,97,99,121,95,108,97,121,101,114,16,0,10,35,99,99,95,122,97,103,105,101,108,16,0,19,35,99,99,97,45,99,111,111,107,105,101,115,45,104,111,108,100,101,114,16,0,6,35,99,99,98,97,114,16,0,16,35,99,99,98,97,114,95,99,111,110,116,97,105,110,101,114,16,0,11,35,99,99,99,45,110,111,116,105,102,121,16,0,12,35,99,99,99,45,111,118,101,114,108,97,121,16,0,10,35,99,99,99,45,115,116,97,116,101,16,0,23,35,99,99,99,101,110,116,101,114,45,111,118,101,114,108,97,121,45,102,105,120,101,100,16,0,10,35,99,99,99,111,110,115,101,110,116,16,0,6,35,99,99,99,119,114,16,0,17,35,99,99,102,100,45,101,117,99,111,111,107,105,101,108,97,119,16,0,17,35,99,99,102,119,45,112,97,103,101,45,98,97,110,110,101,114,16,0,13,35,99,99,103,116,109,45,98,97,110,110,101,114,16,0,14,35,99,99,103,116,109,45,119,114,97,112,112,101,114,16,0,10,35,99,99,104,105,110,119,101,105,115,16,0,8,35,99,99,107,45,98,111,120,16,0,10,35,99,99,107,66,97,110,110,101,114,16,0,16,35,99,99,109,45,98,97,110,110,101,114,45,119,114,97,112,16,0,22,35,99,99,109,45,99,111,111,107,105,101,115,68,105,115,99,108,111,115,117,114,101,16,0,17,35,99,99,109,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,9,35,99,99,111,110,115,101,110,116,16,0,13,35,99,99,111,110,115,101,110,116,45,98,97,114,16,0,13,35,99,99,111,110,115,101,110,116,45,112,111,112,16,0,20,35,99,99,111,111,107,105,101,95,98,97,115,101,95,115,116,105,108,101,50,16,0,11,35,99,99,112,45,98,110,114,45,99,107,16,0,12,35,99,99,112,45,111,118,101,114,108,97,121,16,0,11,35,99,99,112,97,45,97,108,101,114,116,16,0,12,35,99,99,112,97,45,98,97,110,110,101,114,16,0,9,35,99,99,112,97,45,98,97,114,16,0,11,35,99,99,112,97,45,98,108,111,99,107,16,0,20,35,99,99,112,97,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,13,35,99,99,112,97,45,99,111,110,116,101,110,116,16,0,12,35,99,99,112,97,45,99,111,111,107,105,101,16,0,20,35,99,99,112,97,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,12,35,99,99,112,97,45,102,111,111,116,101,114,16,0,12,35,99,99,112,97,45,110,111,116,105,99,101,16,0,25,35,99,99,112,97,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,16,0,29,35,99,99,112,97,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,95,49,45,48,16,0,20,35,99,99,112,97,45,112,114,111,109,112,116,45,119,114,97,112,112,101,114,16,0,15,35,99,99,112,97,46,99,111,110,116,97,105,110,101,114,16,0,10,35,99,99,112,97,46,115,104,111,119,16,0,21,35,99,99,112,97,46,119,105,116,104,111,117,116,45,111,118,101,114,108,97,121,16,0,10,35,99,99,112,97,65,108,101,114,116,16,0,11,35,99,99,112,97,66,97,110,110,101,114,16,0,14,35,99,99,112,97,67,111,110,116,97,105,110,101,114,16,0,11,35,99,99,112,97,70,111,111,116,101,114,16,0,12,35,99,99,112,97,95,98,97,110,110,101,114,16,0,20,35,99,99,112,97,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,16,0,17,35,99,99,115,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,22,35,99,99,115,101,114,118,105,99,101,45,99,111,111,107,105,101,115,105,110,102,111,16,0,8,35,99,99,116,45,98,111,120,16,0,11,35,99,99,116,111,111,108,82,111,111,116,16,0,14,35,99,99,116,114,45,106,115,45,109,111,100,97,108,16,0,14,35,99,100,45,99,111,111,107,105,101,45,98,97,114,16,0,23,35,99,100,45,99,111,111,107,105,101,45,98,97,114,45,115,101,116,116,105,110,103,115,16,0,18,35,99,100,102,95,97,110,110,111,110,99,101,67,111,111,107,105,101,16,0,10,35,99,100,105,95,108,97,121,101,114,16,0,19,35,99,100,110,45,98,97,110,110,101,114,45,99,111,111,107,105,101,115,16,0,22,35,99,100,119,101,98,45,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,16,0,20,35,99,101,97,45,100,105,118,67,111,111,107,105,101,80,111,108,105,99,121,16,0,26,35,99,101,108,101,110,117,115,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,16,0,22,35,99,101,110,116,101,114,95,98,97,110,100,101,97,117,95,99,111,111,107,105,101,16,0,19,35,99,101,114,101,107,75,117,108,108,97,110,105,109,85,121,97,114,105,16,0,14,35,99,101,114,101,122,97,121,97,114,108,97,114,105,16,0,20,35,99,101,118,97,95,116,111,111,108,98,97,114,95,99,111,111,107,105,101,16,0,20,35,99,101,119,101,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,24,35,99,101,119,101,45,112,101,114,109,97,110,101,110,116,45,105,110,102,111,45,98,97,114,16,0,10,35,99,102,45,99,111,111,107,105,101,16,0,17,35,99,102,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,17,35,99,103,45,98,97,114,114,97,45,99,111,111,107,105,101,115,16,0,10,35,99,103,67,111,111,107,105,101,115,16,0,15,35,99,103,82,111,100,111,66,97,99,107,100,114,111,112,16,0,12,35,99,103,82,111,100,111,77,111,100,97,108,16,0,14,35,99,103,95,99,111,111,107,105,101,95,98,97,114,16,0,12,35,99,104,101,99,107,67,111,111,107,105,101,16,0,15,35,99,104,101,99,107,67,111,111,107,105,101,66,111,120,16,0,15,35,99,104,101,99,107,85,80,99,111,111,107,105,101,115,16,0,20,35,99,104,101,99,107,109,107,67,111,111,107,105,101,78,111,116,105,99,101,16,0,18,35,99,104,101,108,108,111,99,111,111,107,105,101,115,45,98,97,114,16,0,21,35,99,104,101,114,114,121,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,21,35,99,104,105,108,108,121,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,20,35,99,104,114,111,109,101,102,114,97,109,101,45,99,111,111,107,105,101,115,16,0,8,35,99,105,45,114,111,100,111,16,0,7,35,99,105,97,99,104,111,16,0,10,35,99,105,97,99,104,111,66,97,114,16,0,11,35,99,105,97,99,104,111,105,110,102,111,16,0,27,35,99,105,97,114,95,99,111,111,107,105,101,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,11,35,99,105,97,115,116,101,99,122,107,97,16,0,15,35,99,105,97,115,116,101,99,122,107,97,45,98,111,120,16,0,24,35,99,105,97,115,116,101,99,122,107,97,73,110,102,111,67,111,110,116,97,105,110,101,114,16,0,17,35,99,105,97,115,116,101,99,122,107,97,95,97,108,101,114,116,16,0,11,35,99,105,97,115,116,101,99,122,107,111,16,0,18,35,99,105,97,115,116,101,99,122,107,111,119,101,95,111,107,110,111,16,0,20,35,99,105,97,115,116,101,99,122,107,111,119,121,95,112,111,116,119,111,114,16,0,8,35,99,105,97,115,116,107,97,16,0,13,35,99,105,97,115,116,107,97,95,97,106,97,120,16,0,18,35,99,105,97,115,116,107,97,95,119,105,97,100,111,109,111,115,99,16,0,11,35,99,105,97,115,116,107,111,100,105,118,16,0,12,35,99,105,97,115,116,107,111,100,105,118,102,16,0,14,35,99,105,97,115,116,111,87,97,114,115,116,119,97,16,0,18,35,99,105,99,101,114,111,95,99,111,111,107,105,101,95,109,115,103,16,0,29,35,99,105,103,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,17,35,99,105,110,116,105,108,108,111,46,99,111,111,107,105,101,115,16,0,10,35,99,107,45,97,99,99,101,112,116,16,0,20,35,99,107,45,99,111,111,107,105,101,45,115,116,97,116,101,109,101,110,116,16,0,10,35,99,107,45,100,105,97,108,111,103,16,0,6,35,99,107,66,97,114,16,0,4,35,99,107,67,16,0,10,35,99,107,87,97,114,110,105,110,103,16,0,11,35,99,107,87,114,97,112,46,99,107,87,16,0,10,35,99,107,95,98,97,110,110,101,114,16,0,20,35,99,107,95,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,16,0,9,35,99,107,95,100,115,99,108,114,16,0,12,35,99,107,95,100,115,99,108,114,95,118,50,16,0,7,35,99,107,95,108,97,119,16,0,12,35,99,107,98,114,95,98,97,110,110,101,114,16,0,5,35,99,107,99,104,16,0,8,35,99,107,99,110,115,110,116,16,0,10,35,99,107,99,110,115,116,119,114,112,16,0,19,35,99,107,101,119,45,114,101,115,117,109,45,99,111,111,107,105,101,115,16,0,19,35,99,107,105,101,97,99,112,116,95,99,111,110,116,97,105,110,101,114,16,0,12,35,99,107,105,101,99,111,110,115,101,110,116,16,0,11,35,99,107,105,101,112,114,111,109,112,116,16,0,9,35,99,107,107,97,115,116,101,110,16,0,19,35,99,107,107,97,115,116,101,110,45,99,111,110,116,97,105,110,101,114,16,0,16,35,99,107,109,45,99,111,111,107,105,101,45,99,111,110,116,16,0,19,35,99,107,109,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,16,0,15,35,99,107,109,99,111,111,107,105,101,115,99,111,110,116,16,0,9,35,99,107,112,111,108,105,99,121,16,0,12,35,99,107,112,111,112,46,111,117,116,101,114,16,0,10,35,99,107,115,46,99,107,115,45,118,16,0,10,35,99,107,119,97,114,110,105,110,103,16,0,12,35,99,107,121,45,99,111,110,115,101,110,116,16,0,17,35,99,107,121,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,10,35,99,108,45,98,97,110,110,101,114,16,0,11,35,99,108,45,99,111,110,115,101,110,116,16,0,10,35,99,108,45,99,111,111,107,105,101,16,0,17,35,99,108,95,95,99,111,111,107,105,101,95,97,108,101,114,116,16,0,10,35,99,108,95,98,97,110,110,101,114,16,0,9,35,99,108,95,109,111,100,97,108,16,0,12,35,99,108,97,115,115,67,111,111,107,105,101,16,0,23,35,99,108,98,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,108,103,112,100,16,0,15,35,99,108,101,97,114,102,121,45,99,111,111,107,105,101,16,0,17,35,99,108,101,118,101,114,45,99,111,111,107,105,101,108,97,119,16,0,30,35,99,108,105,99,107,115,107,101,107,115,45,112,111,112,117,112,45,111,117,116,101,114,45,104,111,108,100,101,114,16,0,27,35,99,108,105,111,110,95,99,111,111,107,105,101,66,97,114,95,95,99,111,110,116,97,105,110,101,114,16,0,16,35,99,108,111,115,101,67,111,111,107,101,105,73,110,102,111,16,0,17,35,99,108,111,115,101,71,100,112,114,67,111,110,116,101,110,116,16,0,11,35,99,108,111,115,101,95,99,110,105,108,16,0,18,35,99,108,111,117,100,109,101,67,111,111,107,105,101,73,110,102,111,16,0,25,35,99,108,114,45,99,111,111,107,105,101,45,98,97,114,45,99,111,110,116,97,105,110,101,114,16,0,17,35,99,109,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,17,35,99,109,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,16,35,99,109,45,99,111,111,107,105,101,45,112,111,112,105,110,16,0,17,35,99,109,45,99,111,111,107,105,101,45,119,105,110,100,111,119,16,0,13,35,99,109,45,99,111,111,107,105,101,98,97,114,16,0,11,35,99,109,45,99,111,111,107,105,101,115,16,0,26,35,99,109,52,97,108,108,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,97,103,101,16,0,21,35,99,109,70,108,117,120,77,101,115,115,97,103,101,67,111,111,107,105,101,115,16,0,23,35,99,109,95,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,19,35,99,109,97,110,97,103,101,114,45,99,111,110,116,97,105,110,101,114,16,0,32,35,99,109,99,45,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,102,111,114,109,45,115,116,101,112,49,16,0,22,35,99,109,99,98,45,105,110,102,111,114,109,97,116,105,111,110,76,97,121,101,114,16,0,18,35,99,109,99,111,110,115,101,110,116,45,109,101,115,115,97,103,101,16,0,24,35,99,109,112,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,14,35,99,109,112,45,102,97,107,116,111,114,45,105,111,16,0,35,35,99,109,112,45,102,97,107,116,111,114,45,105,111,45,98,114,97,110,100,45,99,111,110,115,101,110,116,45,110,111,116,105,99,101,16,0,21,35,99,109,112,45,102,97,107,116,111,114,45,105,111,45,112,97,114,101,110,116,16,0,23,35,99,109,112,45,111,118,101,114,108,97,121,46,99,109,112,111,118,101,114,108,97,121,16,0,19,35,99,109,112,45,119,105,100,103,101,116,45,119,114,97,112,112,101,114,16,0,12,35,99,109,112,66,97,99,107,100,114,111,112,16,0,10,35,99,109,112,66,97,110,110,101,114,16,0,17,35,99,109,112,77,105,110,105,109,97,108,80,114,111,109,112,116,16,0,29,35,99,109,112,108,122,45,99,111,111,107,105,101,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,19,35,99,109,115,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,20,35,99,109,115,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,16,0,30,35,99,109,115,45,109,111,100,117,108,101,45,108,101,103,97,108,45,112,114,105,118,97,99,121,45,104,105,110,116,16,0,35,35,99,109,115,45,109,111,100,117,108,101,45,116,114,97,99,107,105,110,103,45,99,111,100,101,115,45,98,97,99,107,100,114,111,112,16,0,39,35,99,109,115,45,109,111,100,117,108,101,45,116,114,97,99,107,105,110,103,45,99,111,100,101,115,45,99,111,110,115,101,110,116,45,104,105,110,116,16,0,17,35,99,109,115,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,10,35,99,109,115,73,110,102,111,67,107,16,0,10,35,99,109,115,99,111,111,107,105,101,16,0,16,35,99,109,115,112,108,117,115,95,99,111,111,107,105,101,115,16,0,19,35,99,109,116,45,119,114,97,112,112,101,114,45,98,97,110,110,101,114,16,0,10,35,99,110,45,99,111,111,107,105,101,16,0,12,35,99,110,67,111,110,116,97,105,110,101,114,16,0,19,35,99,110,100,45,103,100,112,114,45,99,111,110,116,97,105,110,101,114,16,0,20,35,99,110,101,100,95,97,108,101,114,116,101,95,99,111,111,107,105,101,115,16,0,5,35,99,110,105,108,16,0,12,35,99,110,105,108,45,97,100,118,101,114,116,16,0,12,35,99,110,105,108,45,98,97,110,110,101,114,16,0,12,35,99,110,105,108,45,99,111,111,107,105,101,16,0,26,35,99,110,105,108,45,99,111,111,107,105,101,45,97,118,101,114,116,105,115,115,101,109,101,110,116,16,0,18,35,99,110,105,108,45,99,111,111,107,105,101,45,112,97,110,101,108,16,0,13,35,99,110,105,108,45,99,111,111,107,105,101,115,16,0,11,35,99,110,105,108,45,108,97,121,101,114,16,0,9,35,99,110,105,108,45,109,115,103,16,0,20,35,99,110,105,108,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,16,0,11,35,99,110,105,108,66,97,110,110,101,114,16,0,13,35,99,110,105,108,67,111,111,99,107,105,101,115,16,0,11,35,99,110,105,108,67,111,111,107,105,101,16,0,11,35,99,110,105,108,70,111,111,116,101,114,16,0,17,35,99,110,105,108,78,111,116,105,102,105,99,97,116,105,111,110,16,0,12,35,99,110,105,108,87,97,114,110,105,110,103,16,0,12,35,99,110,105,108,87,114,97,112,112,101,114,16,0,9,35,99,110,105,108,90,111,110,101,16,0,11,35,99,110,105,108,95,97,108,101,114,116,16,0,17,35,99,110,105,108,95,97,108,101,114,116,95,105,110,110,101,114,16,0,15,35,99,110,105,108,95,97,108,101,114,116,95,116,111,112,16,0,21,35,99,110,105,108,95,97,108,101,114,116,95,116,111,112,95,105,110,110,101,114,16,0,13,35,99,110,105,108,95,98,97,110,100,101,97,117,16,0,12,35,99,110,105,108,95,98,97,110,110,101,114,16,0,20,35,99,110,105,108,95,98,97,110,110,101,114,95,99,111,110,115,101,110,116,16,0,9,35,99,110,105,108,95,98,97,114,16,0,17,35,99,110,105,108,95,98,97,114,95,119,114,97,112,112,101,114,16,0,12,35,99,110,105,108,95,99,111,111,107,105,101,16,0,20,35,99,110,105,108,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,19,35,99,110,105,108,95,99,111,111,107,105,101,95,111,112,116,111,117,116,16,0,13,35,99,110,105,108,95,99,111,111,107,105,101,115,16,0,18,35,99,110,105,108,95,105,110,102,111,114,109,97,116,105,111,110,115,16,0,12,35,99,110,105,108,95,111,112,116,111,117,116,16,0,13,35,99,110,105,108,95,112,114,105,118,97,99,121,16,0,11,35,99,110,105,108,98,97,110,110,101,114,16,0,11,35,99,110,105,108,99,111,111,107,105,101,16,0,12,35,99,110,105,108,99,111,111,107,105,101,115,16,0,23,35,99,110,105,108,100,105,115,99,108,97,105,109,101,114,76,111,99,97,116,105,111,110,16,0,7,35,99,110,105,108,105,100,16,0,13,35,99,110,105,108,108,95,98,97,110,110,101,114,16,0,12,35,99,110,105,108,109,101,115,115,97,103,101,16,0,26,35,99,110,111,116,105,99,101,45,102,111,111,116,101,114,45,99,111,110,116,101,110,116,45,105,100,16,0,15,35,99,110,116,65,108,101,114,116,67,111,111,107,105,101,16,0,12,35,99,110,116,95,99,111,111,107,105,101,115,16,0,17,35,99,111,95,98,97,110,100,101,97,117,67,111,111,107,105,101,16,0,25,35,99,111,95,99,111,111,107,105,101,80,111,108,105,99,121,67,111,110,116,97,105,110,101,114,16,0,16,35,99,111,98,111,95,99,111,111,107,105,101,95,108,97,119,16,0,12,35,99,111,99,107,105,101,83,108,105,100,101,16,0,20,35,99,111,100,101,109,97,115,116,101,114,115,95,99,111,111,107,105,101,115,16,0,22,35,99,111,101,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,22,35,99,111,101,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,16,0,24,35,99,111,101,95,99,111,111,107,105,101,115,95,112,108,97,99,101,104,111,108,100,101,114,16,0,10,35,99,111,102,99,111,111,107,105,101,16,0,17,35,99,111,105,67,111,110,115,101,110,116,66,97,110,110,101,114,16,0,7,35,99,111,107,80,121,116,16,0,7,35,99,111,107,98,97,114,16,0,10,35,99,111,107,105,101,45,98,97,114,16,0,11,35,99,111,107,105,101,67,111,118,101,114,16,0,10,35,99,111,107,105,101,77,97,105,110,16,0,11,35,99,111,107,105,101,115,105,110,102,111,16,0,24,35,99,111,108,111,114,105,102,121,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,22,35,99,111,109,52,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,16,0,18,35,99,111,109,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,25,35,99,111,109,97,118,111,111,45,103,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,20,35,99,111,109,109,111,110,45,67,111,111,107,105,101,78,111,116,105,99,101,16,0,27,35,99,111,109,109,111,110,45,99,111,111,107,105,101,108,97,119,45,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,109,112,108,105,65,99,99,101,112,116,67,111,111,107,105,101,115,16,0,17,35,99,111,109,112,108,105,97,110,99,101,66,97,110,110,101,114,16,0,17,35,99,111,109,112,108,105,97,110,99,101,67,111,111,107,105,101,16,0,17,35,99,111,109,112,108,105,97,110,99,101,99,111,111,107,105,101,16,0,24,35,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,22,35,99,111,109,115,112,97,99,101,45,117,115,101,114,99,101,110,116,114,105,99,115,16,0,15,35,99,111,110,102,101,114,109,97,67,111,111,107,105,101,16,0,23,35,99,111,110,102,105,100,101,110,116,105,97,108,105,116,101,95,99,111,111,107,105,101,16,0,15,35,99,111,110,102,105,114,109,45,99,111,111,107,105,101,16,0,21,35,99,111,110,102,105,114,109,45,99,111,111,107,105,101,45,109,111,100,97,108,16,0,21,35,99,111,110,102,105,114,109,45,99,111,111,107,105,101,111,110,116,101,110,116,16,0,16,35,99,111,110,102,105,114,109,45,99,111,111,107,105,101,115,16,0,14,35,99,111,110,102,105,114,109,67,111,111,107,105,101,16,0,20,35,99,111,110,102,105,114,109,67,111,111,107,105,101,80,111,108,105,99,121,16,0,15,35,99,111,110,102,105,114,109,95,99,111,111,107,105,101,16,0,19,35,99,111,110,102,105,114,109,95,99,111,111,107,105,101,95,117,115,101,16,0,22,35,99,111,110,102,105,114,109,101,100,67,111,111,107,105,101,78,111,116,101,73,100,16,0,16,35,99,111,110,115,101,110,115,111,67,111,111,107,105,101,115,16,0,16,35,99,111,110,115,101,110,115,111,95,99,111,111,107,105,101,16,0,18,35,99,111,110,115,101,110,116,45,97,103,114,101,101,109,101,110,116,16,0,15,35,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,25,35,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,18,35,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,102,119,16,0,12,35,99,111,110,115,101,110,116,45,98,97,114,16,0,14,35,99,111,110,115,101,110,116,45,98,108,111,99,107,16,0,13,35,99,111,110,115,101,110,116,45,98,117,109,112,16,0,15,35,99,111,110,115,101,110,116,45,99,111,111,107,105,101,16,0,16,35,99,111,110,115,101,110,116,45,99,111,111,107,105,101,115,16,0,15,35,99,111,110,115,101,110,116,45,102,111,111,116,101,114,16,0,25,35,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,45,97,108,101,114,116,16,0,16,35,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,16,0,25,35,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,98,97,99,107,100,114,111,112,16,0,24,35,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,111,118,101,114,108,97,121,16,0,20,35,99,111,110,115,101,110,116,45,109,103,109,116,45,98,97,110,110,101,114,16,0,24,35,99,111,110,115,101,110,116,45,109,111,100,97,108,45,98,111,116,116,111,109,98,97,114,16,0,20,35,99,111,110,115,101,110,116,45,109,111,100,97,108,45,102,105,114,115,116,16,0,17,35,99,111,110,115,101,110,116,45,109,111,100,97,108,45,102,119,16,0,22,35,99,111,110,115,101,110,116,45,111,117,116,101,114,45,119,114,97,112,112,101,114,16,0,14,35,99,111,110,115,101,110,116,45,112,111,112,117,112,16,0,14,35,99,111,110,115,101,110,116,45,115,108,105,100,101,16,0,16,35,99,111,110,115,101,110,116,45,116,111,111,108,98,97,114,16,0,17,35,99,111,110,115,101,110,116,45,116,114,97,99,107,105,110,103,16,0,14,35,99,111,110,115,101,110,116,46,97,108,101,114,116,16,0,17,35,99,111,110,115,101,110,116,46,98,97,99,107,100,114,111,112,16,0,16,35,99,111,110,115,101,110,116,46,99,111,110,115,101,110,116,16,0,28,35,99,111,110,115,101,110,116,46,110,97,118,98,97,114,45,102,105,120,101,100,45,98,111,116,116,111,109,16,0,16,35,99,111,110,115,101,110,116,65,99,99,101,112,116,101,100,16,0,14,35,99,111,110,115,101,110,116,66,97,110,110,101,114,16,0,11,35,99,111,110,115,101,110,116,66,97,114,16,0,17,35,99,111,110,115,101,110,116,67,111,111,107,105,101,68,105,118,16,0,14,35,99,111,110,115,101,110,116,68,105,97,108,111,103,16,0,13,35,99,111,110,115,101,110,116,70,105,114,115,116,16,0,14,35,99,111,110,115,101,110,116,70,111,111,116,101,114,16,0,18,35,99,111,110,115,101,110,116,70,111,111,116,101,114,87,114,97,112,16,0,15,35,99,111,110,115,101,110,116,79,118,101,114,108,97,121,16,0,13,35,99,111,110,115,101,110,116,80,111,112,117,112,16,0,15,35,99,111,110,115,101,110,116,87,114,97,112,112,101,114,16,0,25,35,99,111,110,115,101,110,116,95,97,115,115,105,115,116,95,99,111,110,116,97,105,110,101,114,16,0,15,35,99,111,110,115,101,110,116,95,98,97,110,110,101,114,16,0,17,35,99,111,110,115,101,110,116,95,98,108,97,99,107,98,97,114,16,0,10,35,99,111,110,115,101,110,116,95,99,16,0,22,35,99,111,110,115,101,110,116,95,99,111,111,107,105,101,115,95,112,111,112,117,112,16,0,14,35,99,111,110,115,101,110,116,95,112,111,112,117,112,16,0,16,35,99,111,110,115,101,110,116,95,118,105,115,105,116,111,114,16,0,16,35,99,111,110,115,101,110,116,95,119,114,97,112,112,101,114,16,0,14,35,99,111,110,115,101,110,116,99,111,111,107,105,101,16,0,20,35,99,111,110,115,101,110,116,102,111,114,109,95,119,114,97,112,112,101,114,16,0,14,35,99,111,110,115,101,110,116,102,114,105,101,110,100,16,0,11,35,99,111,110,115,101,110,116,108,121,114,16,0,13,35,99,111,110,115,101,110,116,112,111,112,117,112,16,0,18,35,99,111,110,116,65,100,118,105,115,101,67,111,111,107,105,101,115,16,0,12,35,99,111,110,116,95,99,111,111,107,105,101,16,0,13,35,99,111,110,116,95,99,111,111,107,105,101,115,16,0,15,35,99,111,110,116,97,105,110,101,114,45,99,110,105,108,16,0,17,35,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,16,0,30,35,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,18,35,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,115,16,0,16,35,99,111,110,116,97,105,110,101,114,67,111,111,107,105,101,16,0,21,35,99,111,110,116,97,105,110,101,114,67,111,111,107,105,101,78,111,116,105,102,16,0,19,35,99,111,110,116,97,105,110,101,114,67,111,111,107,105,101,87,101,116,16,0,17,35,99,111,110,116,97,105,110,101,114,67,111,111,107,105,101,115,16,0,17,35,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,16,0,18,35,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,115,16,0,20,35,99,111,110,116,97,105,110,101,114,95,105,110,102,111,95,99,110,105,108,16,0,17,35,99,111,110,116,97,105,110,101,114,99,111,111,107,105,101,115,16,0,11,35,99,111,110,116,99,111,111,107,105,101,16,0,26,35,99,111,110,116,101,110,101,100,111,114,45,98,97,110,110,101,114,45,99,111,111,107,105,101,115,16,0,28,35,99,111,110,116,101,110,101,100,111,114,45,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,16,0,28,35,99,111,110,116,101,110,101,100,111,114,65,99,101,112,116,97,99,105,111,110,67,111,111,107,105,101,115,16,0,17,35,99,111,110,116,101,110,101,100,111,114,67,111,111,107,105,101,16,0,18,35,99,111,110,116,101,110,101,100,111,114,67,111,111,107,105,101,115,16,0,19,35,99,111,110,116,101,110,101,100,111,114,67,111,111,107,105,101,115,50,16,0,19,35,99,111,110,116,101,110,101,100,111,114,95,99,111,111,107,105,101,115,16,0,27,35,99,111,110,116,101,110,101,100,111,114,95,99,111,111,107,105,101,115,95,103,101,110,101,114,97,108,16,0,20,35,99,111,110,116,101,110,101,114,65,108,101,114,116,67,111,111,107,105,101,16,0,17,35,99,111,110,116,101,110,101,117,114,45,99,111,111,107,105,101,16,0,17,35,99,111,110,116,101,110,101,117,114,67,111,111,107,105,101,115,16,0,23,35,99,111,110,116,101,110,105,100,111,95,99,97,112,97,95,99,111,111,107,105,101,115,16,0,22,35,99,111,110,116,101,110,105,100,111,97,118,105,115,111,99,111,111,107,105,101,115,16,0,24,35,99,111,110,116,101,110,105,116,111,114,101,66,97,110,110,101,114,67,111,111,107,105,101,16,0,18,35,99,111,110,116,101,110,105,116,111,114,101,67,111,111,107,105,101,16,0,22,35,99,111,110,116,101,110,105,116,111,114,101,100,105,115,99,108,97,105,109,101,114,16,0,18,35,99,111,110,116,101,110,116,32,62,32,35,99,111,111,107,105,101,16,0,21,35,99,111,110,116,101,110,116,45,97,108,101,114,116,45,99,111,111,107,105,101,16,0,15,35,99,111,110,116,101,110,116,45,99,111,111,107,105,101,16,0,16,35,99,111,110,116,101,110,116,45,99,111,111,107,105,101,115,16,0,37,35,99,111,110,116,101,110,116,45,100,101,45,104,105,110,119,101,105,115,45,99,111,111,107,105,101,45,114,105,99,104,116,108,105,110,105,101,16,0,20,35,99,111,110,116,101,110,116,45,112,111,108,45,99,111,111,107,105,101,115,16,0,21,35,99,111,110,116,101,110,116,45,117,99,111,99,45,99,111,111,107,105,101,115,16,0,18,35,99,111,110,116,101,110,116,73,110,102,111,67,111,111,107,105,101,16,0,52,35,99,111,110,116,101,110,116,82,101,99,111,109,109,101,110,100,97,116,105,111,110,87,105,100,103,101,116,95,80,83,95,67,79,79,75,73,69,83,95,66,65,78,78,69,82,95,69,83,80,79,84,16,0,15,35,99,111,110,116,101,110,116,95,99,111,111,107,105,101,16,0,15,35,99,111,110,116,101,110,116,99,111,111,107,105,101,115,16,0,11,35,99,111,111,45,98,97,110,110,101,114,16,0,11,35,99,111,111,77,101,115,115,97,103,101,16,0,9,35,99,111,111,95,110,111,116,101,16,0,7,35,99,111,111,99,105,101,16,0,16,35,99,111,111,99,105,101,115,95,119,97,114,110,105,110,103,16,0,8,35,99,111,111,99,107,105,101,16,0,12,35,99,111,111,99,107,105,101,45,98,97,114,16,0,16,35,99,111,111,99,107,105,101,45,109,101,115,115,97,103,101,16,0,12,35,99,111,111,99,107,105,101,45,109,101,120,16,0,14,35,99,111,111,99,107,105,101,45,109,111,100,97,108,16,0,21,35,99,111,111,99,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,16,35,99,111,111,99,107,105,101,45,119,97,114,110,105,110,103,16,0,19,35,99,111,111,99,107,105,101,65,80,67,111,110,116,97,105,110,101,114,16,0,13,35,99,111,111,99,107,105,101,65,108,101,114,116,16,0,16,35,99,111,111,99,107,105,101,65,108,101,114,116,66,111,120,16,0,11,35,99,111,111,99,107,105,101,66,97,114,16,0,12,35,99,111,111,99,107,105,101,73,110,102,111,16,0,15,35,99,111,111,99,107,105,101,77,101,115,115,97,103,101,16,0,14,35,99,111,111,99,107,105,101,95,97,103,114,101,101,16,0,15,35,99,111,111,99,107,105,101,95,110,111,116,105,99,101,16,0,12,35,99,111,111,99,107,105,101,95,112,97,115,16,0,12,35,99,111,111,99,107,105,101,95,116,120,116,16,0,13,35,99,111,111,99,107,105,101,97,103,114,101,101,16,0,13,35,99,111,111,99,107,105,101,97,108,101,114,116,16,0,14,35,99,111,111,99,107,105,101,99,104,111,105,99,101,16,0,13,35,99,111,111,99,107,105,101,112,111,112,117,112,16,0,9,35,99,111,111,99,107,105,101,115,16,0,15,35,99,111,111,99,107,105,101,115,51,119,109,68,105,118,16,0,13,35,99,111,111,99,107,105,101,115,95,98,111,120,16,0,17,35,99,111,111,99,107,105,101,115,95,119,97,114,110,105,110,103,16,0,12,35,99,111,111,99,107,105,101,119,114,97,112,16,0,10,35,99,111,111,107,45,99,111,110,116,16,0,10,35,99,111,111,107,65,108,101,114,116,16,0,7,35,99,111,111,107,69,78,16,0,8,35,99,111,111,107,73,110,102,16,0,11,35,99,111,111,107,78,84,114,97,99,107,16,0,8,35,99,111,111,107,80,111,108,16,0,19,35,99,111,111,107,80,111,108,105,99,121,45,119,114,97,112,112,101,114,16,0,9,35,99,111,111,107,95,97,102,102,16,0,10,35,99,111,111,107,95,105,110,102,111,16,0,17,35,99,111,111,107,97,108,101,114,116,45,104,111,108,100,101,114,16,0,12,35,99,111,111,107,98,111,120,98,97,99,107,16,0,8,35,99,111,111,107,99,111,110,16,0,9,35,99,111,111,107,99,111,110,116,16,0,8,35,99,111,111,107,100,105,118,16,0,31,35,99,111,111,107,101,67,111,110,116,114,111,108,95,85,112,100,97,116,101,80,97,110,101,108,67,111,111,107,105,101,16,0,10,35,99,111,111,107,101,72,105,110,116,16,0,20,35,99,111,111,107,101,109,101,115,115,97,103,101,104,97,110,100,108,101,114,16,0,17,35,99,111,111,107,101,114,95,99,111,110,116,97,105,110,101,114,16,0,6,35,99,111,111,107,105,16,0,13,35,99,111,111,107,105,95,97,99,99,101,112,116,16,0,10,35,99,111,111,107,105,99,110,105,108,16,0,9,35,99,111,111,107,105,100,105,118,16,0,19,35,99,111,111,107,105,101,45,45,100,105,115,99,108,97,105,109,101,114,16,0,21,35,99,111,111,107,105,101,45,45,105,110,102,111,45,119,114,97,112,112,101,114,16,0,9,35,99,111,111,107,105,101,45,49,16,0,9,35,99,111,111,107,105,101,45,50,16,0,13,35,99,111,111,107,105,101,45,97,99,99,101,112,16,0,14,35,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,20,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,97,108,101,114,116,16,0,21,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,97,114,16,0,18,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,111,120,16,0,18,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,100,105,118,16,0,21,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,102,111,111,116,101,114,16,0,19,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,108,105,110,101,16,0,24,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,109,111,100,97,108,45,100,105,118,16,0,20,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,112,97,110,101,108,16,0,20,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,112,111,112,117,112,16,0,21,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,119,105,110,100,111,119,16,0,25,35,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,98,97,110,110,101,114,16,0,25,35,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,119,105,100,103,101,116,16,0,26,35,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,119,114,97,112,112,101,114,16,0,25,35,99,111,111,107,105,101,45,97,99,99,101,112,116,97,116,105,111,110,45,112,111,112,117,112,16,0,16,35,99,111,111,107,105,101,45,97,99,99,101,112,116,101,100,16,0,17,35,99,111,111,107,105,101,45,97,99,99,101,112,116,105,111,110,16,0,14,35,99,111,111,107,105,101,45,97,99,99,112,101,116,16,0,17,35,99,111,111,107,105,101,45,97,99,101,112,116,97,110,99,101,16,0,11,35,99,111,111,107,105,101,45,97,99,107,16,0,23,35,99,111,111,107,105,101,45,97,99,107,110,111,119,108,101,100,103,101,109,101,110,116,16,0,31,35,99,111,111,107,105,101,45,97,99,107,110,111,119,108,101,100,103,101,109,101,110,116,45,99,111,110,116,114,111,108,16,0,11,35,99,111,111,107,105,101,45,97,100,118,16,0,16,35,99,111,111,107,105,101,45,97,100,118,97,114,115,101,108,16,0,14,35,99,111,111,107,105,101,45,97,100,118,101,114,116,16,0,14,35,99,111,111,107,105,101,45,97,100,118,105,99,101,16,0,14,35,99,111,111,107,105,101,45,97,100,118,105,115,101,16,0,22,35,99,111,111,107,105,101,45,97,100,118,105,115,101,45,112,97,110,101,108,73,68,16,0,16,35,99,111,111,107,105,101,45,97,100,118,105,115,111,114,121,16,0,15,35,99,111,111,107,105,101,45,97,103,114,101,101,45,49,16,0,19,35,99,111,111,107,105,101,45,97,103,114,101,101,45,109,111,100,97,108,16,0,20,35,99,111,111,107,105,101,45,97,103,114,101,101,45,112,111,108,105,99,121,16,0,17,35,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,16,0,21,35,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,45,98,111,120,16,0,22,35,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,45,105,110,102,111,16,0,25,35,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,45,119,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,45,97,108,101,114,116,16,0,18,35,99,111,111,107,105,101,45,97,108,101,114,116,45,97,114,101,97,16,0,20,35,99,111,111,107,105,101,45,97,108,101,114,116,45,98,97,110,110,101,114,16,0,17,35,99,111,111,107,105,101,45,97,108,101,114,116,45,98,111,120,16,0,21,35,99,111,111,107,105,101,45,97,108,101,114,116,45,99,103,111,115,98,97,114,16,0,17,35,99,111,111,107,105,101,45,97,108,101,114,116,45,99,110,116,16,0,17,35,99,111,111,107,105,101,45,97,108,101,114,116,45,100,105,118,16,0,21,35,99,111,111,107,105,101,45,97,108,101,114,116,45,109,101,115,115,97,103,101,16,0,17,35,99,111,111,107,105,101,45,97,108,101,114,116,45,109,115,103,16,0,21,35,99,111,111,107,105,101,45,97,108,101,114,116,45,115,101,99,116,105,111,110,16,0,21,35,99,111,111,107,105,101,45,97,108,101,114,116,45,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,45,97,108,101,114,116,101,16,0,13,35,99,111,111,107,105,101,45,97,108,108,111,119,16,0,17,35,99,111,111,107,105,101,45,97,108,108,111,119,45,98,111,120,16,0,20,35,99,111,111,107,105,101,45,97,110,110,111,117,110,99,101,109,101,110,116,16,0,11,35,99,111,111,107,105,101,45,97,112,112,16,0,14,35,99,111,111,107,105,101,45,97,112,112,101,110,100,16,0,16,35,99,111,111,107,105,101,45,97,112,112,114,111,118,97,108,16,0,12,35,99,111,111,107,105,101,45,97,117,116,104,16,0,21,35,99,111,111,107,105,101,45,97,117,116,104,111,114,105,122,97,116,105,111,110,16,0,13,35,99,111,111,107,105,101,45,97,118,105,115,111,16,0,9,35,99,111,111,107,105,101,45,98,16,0,16,35,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,16,0,18,35,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,16,0,27,35,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,45,100,105,115,97,98,108,101,100,16,0,26,35,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,45,111,118,101,114,108,97,121,16,0,12,35,99,111,111,107,105,101,45,98,97,110,100,16,0,15,35,99,111,111,107,105,101,45,98,97,110,100,101,97,117,16,0,14,35,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,29,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,45,112,111,112,117,112,45,119,114,97,112,112,101,114,16,0,16,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,49,16,0,23,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,97,99,107,100,114,111,112,16,0,22,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,101,115,112,111,107,101,16,0,20,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,108,111,99,107,16,0,21,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,101,110,116,101,114,16,0,25,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,102,105,114,115,116,45,112,97,103,101,16,0,19,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,104,111,115,116,16,0,19,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,108,103,112,100,16,0,19,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,108,105,110,107,16,0,22,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,101,115,115,97,103,101,16,0,22,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,16,0,20,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,112,97,110,101,108,16,0,19,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,114,111,111,116,16,0,28,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,105,116,104,45,115,101,116,116,105,110,103,115,16,0,19,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,16,0,22,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,20,35,99,111,111,107,105,101,45,98,97,110,110,101,114,46,102,105,120,101,100,16,0,15,35,99,111,111,107,105,101,45,98,97,110,110,101,114,50,16,0,19,35,99,111,111,107,105,101,45,98,97,110,110,101,114,95,102,108,97,103,16,0,16,35,99,111,111,107,105,101,45,98,97,114,45,50,48,49,57,16,0,19,35,99,111,111,107,105,101,45,98,97,114,45,97,114,100,97,110,116,97,16,0,18,35,99,111,111,107,105,101,45,98,97,114,45,98,111,116,116,111,109,16,0,17,35,99,111,111,107,105,101,45,98,97,114,45,102,105,120,101,100,16,0,16,35,99,111,111,107,105,101,45,98,97,114,45,109,97,105,110,16,0,19,35,99,111,111,107,105,101,45,98,97,114,45,109,101,115,115,97,103,101,16,0,15,35,99,111,111,107,105,101,45,98,97,114,45,109,111,98,16,0,18,35,99,111,111,107,105,101,45,98,97,114,45,109,111,100,117,108,101,16,0,19,35,99,111,111,107,105,101,45,98,97,114,45,119,97,114,110,105,110,103,16,0,19,35,99,111,111,107,105,101,45,98,97,114,45,119,114,97,112,112,101,114,16,0,12,35,99,111,111,107,105,101,45,98,97,114,50,16,0,13,35,99,111,111,107,105,101,45,98,97,114,66,101,16,0,20,35,99,111,111,107,105,101,45,98,97,114,95,95,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,45,98,97,114,98,111,100,121,16,0,10,35,99,111,111,107,105,101,45,98,103,16,0,16,35,99,111,111,107,105,101,45,98,103,45,99,111,118,101,114,16,0,15,35,99,111,111,107,105,101,45,98,105,110,100,105,110,103,16,0,13,35,99,111,111,107,105,101,45,98,108,111,99,107,16,0,11,35,99,111,111,107,105,101,45,98,110,114,16,0,12,35,99,111,111,107,105,101,45,98,111,100,121,16,0,14,35,99,111,111,107,105,101,45,98,111,116,116,111,109,16,0,18,35,99,111,111,107,105,101,45,98,111,116,116,111,109,45,98,97,114,16,0,22,35,99,111,111,107,105,101,45,98,111,116,116,111,109,45,99,111,110,116,101,110,116,16,0,20,35,99,111,111,107,105,101,45,98,111,116,116,111,109,45,108,97,121,101,114,16,0,20,35,99,111,111,107,105,101,45,98,111,116,116,111,109,45,112,111,112,117,112,16,0,11,35,99,111,111,107,105,101,45,98,111,120,16,0,16,35,99,111,111,107,105,101,45,98,111,120,45,105,110,102,111,16,0,11,35,99,111,111,107,105,101,45,98,116,110,16,0,21,35,99,111,111,107,105,101,45,98,117,116,116,111,110,45,98,97,110,110,101,114,16,0,12,35,99,111,111,107,105,101,45,99,97,114,100,16,0,10,35,99,111,111,107,105,101,45,99,99,16,0,17,35,99,111,111,107,105,101,45,99,104,101,99,107,45,98,111,120,16,0,15,35,99,111,111,107,105,101,45,99,104,101,99,107,101,114,16,0,14,35,99,111,111,107,105,101,45,99,104,111,105,99,101,16,0,19,35,99,111,111,107,105,101,45,99,104,111,105,99,101,45,105,110,102,111,16,0,15,35,99,111,111,107,105,101,45,99,104,111,105,99,101,115,16,0,20,35,99,111,111,107,105,101,45,99,104,111,105,99,101,115,45,105,110,102,111,16,0,17,35,99,111,111,107,105,101,45,99,108,101,97,114,45,98,97,114,16,0,15,35,99,111,111,107,105,101,45,99,108,105,99,107,101,114,16,0,12,35,99,111,111,107,105,101,45,99,110,105,108,16,0,16,35,99,111,111,107,105,101,45,99,110,105,108,45,98,111,120,16,0,19,35,99,111,111,107,105,101,45,99,110,105,108,45,109,111,98,105,108,101,16,0,23,35,99,111,111,107,105,101,45,99,110,105,108,45,109,111,98,105,108,101,45,98,111,120,16,0,11,35,99,111,111,107,105,101,45,99,110,116,16,0,18,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,16,0,24,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,108,111,99,107,16,0,25,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,111,116,116,111,109,16,0,33,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,111,116,116,111,109,45,111,118,101,114,108,97,121,16,0,28,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,99,111,110,116,97,105,110,101,114,16,0,26,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,109,101,115,115,97,103,101,16,0,26,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,111,118,101,114,108,97,121,16,0,24,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,112,111,112,117,112,16,0,23,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,119,114,97,112,16,0,17,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,116,16,0,23,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,116,45,99,111,110,116,101,16,0,23,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,116,45,102,111,110,100,111,16,0,18,35,99,111,111,107,105,101,45,99,111,110,100,105,116,105,111,110,115,16,0,15,35,99,111,111,107,105,101,45,99,111,110,102,105,114,109,16,0,19,35,99,111,111,107,105,101,45,99,111,110,102,105,114,109,45,98,111,120,16,0,25,35,99,111,111,107,105,101,45,99,111,110,102,105,114,109,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,45,99,111,110,102,105,114,109,45,105,110,110,101,114,16,0,20,35,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,16,0,27,35,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,45,100,105,97,108,111,103,16,0,19,35,99,111,111,107,105,101,45,99,111,110,115,45,98,97,110,110,101,114,16,0,15,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,19,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,106,115,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,110,111,116,105,99,101,16,0,24,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,111,118,101,114,108,97,121,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,99,116,105,111,110,115,16,0,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,19,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,16,0,25,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,45,111,117,116,101,114,16,0,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,108,111,99,107,16,0,19,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,111,120,16,0,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,111,120,101,115,16,0,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,104,101,99,107,16,0,25,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,101,110,116,16,0,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,16,0,29,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,45,98,111,116,116,111,109,16,0,25,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,66,111,120,16,0,30,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,101,120,112,108,105,99,105,116,45,109,111,100,97,108,16,0,19,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,102,97,98,16,0,20,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,102,111,114,109,16,0,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,104,111,108,100,101,114,16,0,20,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,105,110,102,111,16,0,28,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,105,110,102,111,45,119,114,97,112,112,101,114,16,0,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,108,97,121,101,114,16,0,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,108,111,99,97,108,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,101,115,115,97,103,101,16,0,19,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,110,101,119,16,0,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,110,111,116,105,99,101,16,0,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,117,116,101,114,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,16,0,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,105,110,16,0,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,16,0,20,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,114,111,111,116,16,0,24,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,105,100,101,45,111,117,116,16,0,19,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,116,97,98,16,0,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,116,97,114,103,101,116,16,0,32,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,116,111,111,108,45,112,108,97,99,101,104,111,108,100,101,114,16,0,31,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,116,121,112,57,95,98,97,99,107,103,114,111,117,110,100,16,0,28,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,116,121,112,57,95,119,114,97,112,112,101,114,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,97,114,110,105,110,103,16,0,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,105,110,100,111,119,16,0,20,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,98,97,110,110,101,114,16,0,16,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,116,16,0,18,35,99,111,111,107,105,101,45,99,111,110,115,101,116,45,98,97,114,16,0,12,35,99,111,111,107,105,101,45,99,111,110,116,16,0,18,35,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,50,16,0,15,35,99,111,111,107,105,101,45,99,111,110,116,101,110,116,16,0,27,35,99,111,111,107,105,101,45,99,111,110,116,101,110,116,95,112,108,97,99,101,104,111,108,100,101,114,16,0,15,35,99,111,111,107,105,101,45,99,111,110,116,101,115,116,16,0,16,35,99,111,111,107,105,101,45,99,111,110,116,114,97,99,116,16,0,15,35,99,111,111,107,105,101,45,99,111,110,116,114,111,108,16,0,22,35,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,109,97,115,116,101,114,16,0,22,35,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,112,114,111,109,112,116,16,0,16,35,99,111,111,107,105,101,45,99,111,110,116,114,111,108,108,16,0,18,35,99,111,111,107,105,101,45,99,111,111,107,105,101,45,100,105,118,16,0,12,35,99,111,111,107,105,101,45,99,111,112,121,16,0,14,35,99,111,111,107,105,101,45,99,111,115,101,110,116,16,0,12,35,99,111,111,107,105,101,45,99,117,98,101,16,0,14,35,99,111,111,107,105,101,45,99,117,116,116,101,114,16,0,19,35,99,111,111,107,105,101,45,100,101,97,108,45,98,111,116,116,111,109,16,0,26,35,99,111,111,107,105,101,45,100,101,97,108,45,98,111,116,116,111,109,45,99,111,111,107,105,101,16,0,19,35,99,111,111,107,105,101,45,100,101,99,108,97,114,97,116,105,111,110,16,0,12,35,99,111,111,107,105,101,45,100,101,116,116,16,0,18,35,99,111,111,107,105,101,45,100,105,97,108,111,103,45,98,97,114,16,0,16,35,99,111,111,107,105,101,45,100,105,97,108,111,103,117,101,16,0,20,35,99,111,111,107,105,101,45,100,105,97,108,111,103,117,101,45,100,105,118,16,0,11,35,99,111,111,107,105,101,45,100,105,109,16,0,14,35,99,111,111,107,105,101,45,100,105,109,109,101,114,16,0,17,35,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,16,0,21,35,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,45,98,97,114,16,0,27,35,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,45,99,111,110,116,97,105,110,101,114,16,0,22,35,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,45,110,111,116,101,16,0,18,35,99,111,111,107,105,101,45,100,105,115,99,97,108,105,109,101,114,16,0,18,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,22,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,98,97,114,16,0,22,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,98,111,120,16,0,25,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,102,111,111,116,101,114,16,0,24,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,109,111,100,97,108,16,0,22,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,110,101,119,16,0,26,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,111,118,101,114,108,97,121,16,0,24,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,112,111,112,117,112,16,0,25,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,114,101,103,105,111,110,16,0,22,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,118,117,101,16,0,18,35,99,111,111,107,105,101,45,100,105,115,99,108,111,115,117,114,101,16,0,28,35,99,111,111,107,105,101,45,100,105,115,99,108,111,115,117,114,101,45,99,111,110,116,97,105,110,101,114,16,0,15,35,99,111,111,107,105,101,45,100,105,115,112,108,97,121,16,0,12,35,99,111,111,107,105,101,45,100,105,115,115,16,0,29,35,99,111,111,107,105,101,45,100,105,115,116,117,114,98,101,114,45,115,117,114,114,111,117,110,100,105,110,103,16,0,11,35,99,111,111,107,105,101,45,100,105,118,16,0,14,35,99,111,111,107,105,101,45,100,114,97,119,101,114,16,0,12,35,99,111,111,107,105,101,45,100,114,111,112,16,0,15,35,99,111,111,107,105,101,45,101,108,101,109,101,110,116,16,0,17,35,99,111,111,107,105,101,45,101,114,108,97,117,98,110,105,115,16,0,25,35,99,111,111,107,105,101,45,101,114,108,97,117,98,110,105,115,45,119,114,97,112,112,101,114,16,0,10,35,99,111,111,107,105,101,45,101,115,16,0,10,35,99,111,111,107,105,101,45,101,117,16,0,31,35,99,111,111,107,105,101,45,101,117,45,99,111,109,112,108,105,97,110,99,101,45,99,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,45,101,117,45,108,97,119,16,0,14,35,99,111,111,107,105,101,45,102,105,110,100,101,114,16,0,13,35,99,111,111,107,105,101,45,102,105,114,115,116,16,0,20,35,99,111,111,107,105,101,45,102,105,120,101,100,45,98,97,110,110,101,114,16,0,19,35,99,111,111,107,105,101,45,102,105,120,101,100,45,108,97,121,101,114,16,0,20,35,99,111,111,107,105,101,45,102,108,111,97,116,101,114,45,119,114,97,112,16,0,11,35,99,111,111,107,105,101,45,102,111,111,16,0,12,35,99,111,111,107,105,101,45,102,111,111,116,16,0,14,35,99,111,111,107,105,101,45,102,111,111,116,101,114,16,0,12,35,99,111,111,107,105,101,45,102,111,114,109,16,0,12,35,99,111,111,107,105,101,45,102,117,108,108,16,0,18,35,99,111,111,107,105,101,45,102,117,108,108,45,119,105,100,116,104,16,0,18,35,99,111,111,107,105,101,45,102,117,108,108,115,99,114,101,101,110,16,0,12,35,99,111,111,107,105,101,45,103,100,112,114,16,0,23,35,99,111,111,107,105,101,45,103,108,111,98,97,108,45,101,110,118,101,108,111,112,101,16,0,14,35,99,111,111,107,105,101,45,103,109,45,110,101,119,16,0,15,35,99,111,111,107,105,101,45,103,114,101,97,116,105,115,16,0,22,35,99,111,111,107,105,101,45,103,114,101,101,116,105,110,103,45,115,116,114,105,112,16,0,15,35,99,111,111,107,105,101,45,104,97,110,100,108,101,114,16,0,12,35,99,111,111,107,105,101,45,104,101,97,100,16,0,16,35,99,111,111,107,105,101,45,104,101,97,100,98,97,110,100,16,0,14,35,99,111,111,107,105,101,45,104,101,97,100,101,114,16,0,24,35,99,111,111,107,105,101,45,104,101,97,100,101,114,45,99,111,110,116,97,105,110,101,114,16,0,12,35,99,111,111,107,105,101,45,104,105,110,116,16,0,16,35,99,111,111,107,105,101,45,104,105,110,116,45,98,111,120,16,0,22,35,99,111,111,107,105,101,45,104,105,110,116,45,99,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,45,104,105,110,116,45,108,97,121,101,114,16,0,20,35,99,111,111,107,105,101,45,104,105,110,116,45,109,101,115,115,97,103,101,16,0,20,35,99,111,111,107,105,101,45,104,105,110,116,45,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,45,104,105,110,119,101,105,115,16,0,25,35,99,111,111,107,105,101,45,104,105,110,119,101,105,115,45,99,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,45,104,111,108,100,101,114,16,0,12,35,99,111,111,107,105,101,45,105,100,110,97,16,0,11,35,99,111,111,107,105,101,45,105,102,121,16,0,12,35,99,111,111,107,105,101,45,105,110,102,111,16,0,14,35,99,111,111,107,105,101,45,105,110,102,111,45,49,16,0,16,35,99,111,111,107,105,101,45,105,110,102,111,45,98,97,114,16,0,18,35,99,111,111,107,105,101,45,105,110,102,111,45,98,108,111,99,107,16,0,16,35,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,16,0,16,35,99,111,111,107,105,101,45,105,110,102,111,45,100,105,118,16,0,19,35,99,111,111,107,105,101,45,105,110,102,111,45,104,101,114,109,101,114,16,0,18,35,99,111,111,107,105,101,45,105,110,102,111,45,108,97,121,101,114,16,0,17,35,99,111,111,107,105,101,45,105,110,102,111,45,111,112,101,110,16,0,18,35,99,111,111,107,105,101,45,105,110,102,111,45,111,117,116,101,114,16,0,18,35,99,111,111,107,105,101,45,105,110,102,111,45,112,97,110,101,108,16,0,19,35,99,111,111,107,105,101,45,105,110,102,111,45,112,97,110,110,101,108,16,0,17,35,99,111,111,107,105,101,45,105,110,102,111,45,114,111,100,111,16,0,17,35,99,111,111,107,105,101,45,105,110,102,111,45,116,101,120,116,16,0,20,35,99,111,111,107,105,101,45,105,110,102,111,45,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,45,105,110,102,111,98,97,114,16,0,14,35,99,111,111,107,105,101,45,105,110,102,111,114,109,16,0,22,35,99,111,111,107,105,101,45,105,110,102,111,114,109,45,109,101,115,115,97,103,101,16,0,19,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,16,0,26,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,98,97,110,110,101,114,16,0,23,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,98,97,114,16,0,25,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,108,97,121,101,114,16,0,27,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,119,114,97,112,112,101,114,16,0,20,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,115,16,0,16,35,99,111,111,107,105,101,45,105,110,102,111,114,109,101,114,16,0,21,35,99,111,111,107,105,101,45,105,110,110,101,114,45,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,45,105,110,118,105,116,101,16,0,11,35,99,111,111,107,105,101,45,106,97,114,16,0,25,35,99,111,111,107,105,101,45,106,97,114,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,15,35,99,111,111,107,105,101,45,107,111,110,116,114,111,108,16,0,11,35,99,111,111,107,105,101,45,108,97,119,16,0,15,35,99,111,111,107,105,101,45,108,97,119,45,98,97,114,16,0,15,35,99,111,111,107,105,101,45,108,97,119,45,98,111,120,16,0,22,35,99,111,111,107,105,101,45,108,97,119,45,99,111,109,112,108,105,97,110,99,101,16,0,19,35,99,111,111,107,105,101,45,108,97,119,45,99,111,110,115,101,110,116,16,0,27,35,99,111,111,107,105,101,45,108,97,119,45,99,111,110,115,101,110,116,45,115,101,99,116,105,111,110,16,0,21,35,99,111,111,107,105,101,45,108,97,119,45,99,111,110,116,97,105,110,101,114,16,0,25,35,99,111,111,107,105,101,45,108,97,119,45,99,111,110,116,97,105,110,101,114,45,98,111,120,16,0,18,35,99,111,111,107,105,101,45,108,97,119,45,100,105,97,108,111,103,16,0,15,35,99,111,111,107,105,101,45,108,97,119,45,100,105,118,16,0,20,35,99,111,111,107,105,101,45,108,97,119,45,101,110,102,111,114,99,101,114,16,0,15,35,99,111,111,107,105,101,45,108,97,119,45,102,105,120,16,0,22,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,97,103,97,105,110,16,0,17,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,115,16,0,19,35,99,111,111,107,105,101,45,108,97,119,45,109,101,115,115,97,103,101,16,0,16,35,99,111,111,107,105,101,45,108,97,119,45,110,111,116,101,16,0,17,35,99,111,111,107,105,101,45,108,97,119,45,110,111,116,105,102,16,0,19,35,99,111,111,107,105,101,45,108,97,119,45,112,97,100,100,105,110,103,16,0,17,35,99,111,111,107,105,101,45,108,97,119,45,112,111,112,117,112,16,0,18,35,99,111,111,107,105,101,45,108,97,119,45,115,99,114,105,112,116,16,0,14,35,99,111,111,107,105,101,45,108,97,119,45,117,119,16,0,16,35,99,111,111,107,105,101,45,108,97,119,45,119,114,97,112,16,0,19,35,99,111,111,107,105,101,45,108,97,119,45,119,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,45,108,97,121,101,114,16,0,23,35,99,111,111,107,105,101,45,108,97,121,101,114,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,45,108,97,121,101,114,45,111,118,101,114,108,97,121,16,0,23,35,99,111,111,107,105,101,45,108,97,121,101,114,45,112,114,111,116,101,99,116,111,114,16,0,21,35,99,111,111,107,105,101,45,108,97,121,101,114,45,119,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,45,108,101,103,97,108,16,0,18,35,99,111,111,107,105,101,45,108,101,103,97,108,45,105,110,102,111,16,0,20,35,99,111,111,107,105,101,45,108,101,103,97,108,45,110,111,116,105,99,101,16,0,14,35,99,111,111,107,105,101,45,108,101,103,97,108,115,16,0,19,35,99,111,111,107,105,101,45,108,101,103,105,115,108,97,116,105,111,110,16,0,16,35,99,111,111,107,105,101,45,108,105,103,104,116,98,111,120,16,0,12,35,99,111,111,107,105,101,45,108,105,110,101,16,0,12,35,99,111,111,107,105,101,45,108,105,115,116,16,0,15,35,99,111,111,107,105,101,45,109,97,110,97,103,101,114,16,0,22,35,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,100,105,97,108,111,103,16,0,23,35,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,119,114,97,112,112,101,114,16,0,12,35,99,111,111,107,105,101,45,109,97,115,107,16,0,15,35,99,111,111,107,105,101,45,109,101,108,100,105,110,103,16,0,25,35,99,111,111,107,105,101,45,109,101,108,100,105,110,103,45,99,111,110,116,97,105,110,101,114,16,0,19,35,99,111,111,107,105,101,45,109,101,108,100,105,110,103,45,116,111,112,16,0,15,35,99,111,111,107,105,101,45,109,101,108,100,117,110,103,16,0,12,35,99,111,111,107,105,101,45,109,101,115,115,16,0,15,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,20,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,97,114,101,97,16,0,19,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,111,120,16,0,25,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,102,105,120,101,100,16,0,23,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,111,118,101,114,108,97,121,16,0,21,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,112,97,110,101,108,16,0,20,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,116,101,120,116,16,0,23,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,119,114,97,112,112,101,114,16,0,26,35,99,111,111,107,105,101,45,109,101,115,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,45,109,105,110,105,45,112,111,112,117,112,16,0,18,35,99,111,111,107,105,101,45,109,111,100,97,108,45,50,48,50,50,16,0,22,35,99,111,111,107,105,101,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,16,0,16,35,99,111,111,107,105,101,45,109,111,100,97,108,45,98,103,16,0,23,35,99,111,111,107,105,101,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,45,109,111,100,97,108,45,111,118,101,114,108,97,121,16,0,19,35,99,111,111,107,105,101,45,109,111,100,101,114,110,45,105,110,102,111,16,0,22,35,99,111,111,107,105,101,45,109,111,100,101,114,110,45,111,118,101,114,108,97,121,16,0,14,35,99,111,111,107,105,101,45,109,111,100,117,108,101,16,0,15,35,99,111,111,107,105,101,45,109,111,110,115,116,97,104,16,0,15,35,99,111,111,107,105,101,45,109,111,110,115,116,101,114,16,0,19,35,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,98,97,114,16,0,25,35,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,114,111,111,116,16,0,19,35,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,115,97,110,16,0,11,35,99,111,111,107,105,101,45,109,115,103,16,0,15,35,99,111,111,107,105,101,45,109,115,103,45,98,97,114,16,0,15,35,99,111,111,107,105,101,45,109,115,103,45,98,111,120,16,0,19,35,99,111,111,107,105,101,45,109,115,103,45,119,114,97,112,112,101,114,16,0,11,35,99,111,111,107,105,101,45,110,97,103,16,0,14,35,99,111,111,107,105,101,45,110,97,118,98,97,114,16,0,14,35,99,111,111,107,105,101,45,110,98,45,109,115,103,16,0,11,35,99,111,111,107,105,101,45,110,101,119,16,0,12,35,99,111,111,107,105,101,45,110,111,114,109,16,0,12,35,99,111,111,107,105,101,45,110,111,116,101,16,0,12,35,99,111,111,107,105,101,45,110,111,116,102,16,0,12,35,99,111,111,107,105,101,45,110,111,116,105,16,0,14,35,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,25,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,97,99,107,103,114,111,117,110,100,16,0,21,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,97,114,16,0,22,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,108,111,99,107,101,114,16,0,18,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,111,120,16,0,24,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,16,0,36,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,100,97,116,97,45,112,114,105,118,97,99,121,45,115,101,108,101,99,116,111,114,16,0,21,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,100,105,97,108,111,103,16,0,21,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,104,101,97,100,101,114,16,0,20,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,111,117,116,101,114,16,0,22,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,111,118,101,114,108,97,121,16,0,23,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,112,108,97,116,102,111,114,109,16,0,20,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,112,111,112,117,112,16,0,22,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,115,101,99,116,105,111,110,16,0,18,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,116,111,112,16,0,25,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,116,111,112,45,98,97,110,110,101,114,16,0,17,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,117,107,16,0,17,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,118,51,16,0,19,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,16,0,22,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,16,0,31,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,45,97,100,118,97,110,99,101,100,16,0,15,35,99,111,111,107,105,101,45,110,111,116,105,99,101,50,16,0,13,35,99,111,111,107,105,101,45,110,111,116,105,102,16,0,26,35,99,111,111,107,105,101,45,110,111,116,105,102,99,97,116,105,111,110,45,98,97,110,110,101,114,16,0,16,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,16,0,20,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,27,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,16,0,35,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,24,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,16,0,26,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,108,111,99,107,16,0,24,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,111,120,16,0,30,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,16,0,28,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,101,110,116,16,0,27,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,104,101,97,100,101,114,16,0,23,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,106,99,16,0,28,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,109,101,115,115,97,103,101,16,0,28,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,111,118,101,114,108,97,121,16,0,28,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,115,101,99,116,105,111,110,16,0,28,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,16,0,23,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,98,97,114,16,0,16,35,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,16,0,14,35,99,111,111,107,105,101,45,110,111,116,105,102,121,16,0,19,35,99,111,111,107,105,101,45,110,111,116,105,102,121,80,97,110,101,108,16,0,11,35,99,111,111,107,105,101,45,110,116,99,16,0,19,35,99,111,111,107,105,101,45,110,121,105,108,97,116,107,111,122,97,116,16,0,14,35,99,111,111,107,105,101,45,111,112,116,45,105,110,16,0,21,35,99,111,111,107,105,101,45,111,112,116,45,105,110,45,98,117,116,116,111,110,16,0,21,35,99,111,111,107,105,101,45,111,112,116,45,105,110,45,102,111,111,116,101,114,16,0,15,35,99,111,111,107,105,101,45,111,112,116,45,111,117,116,16,0,13,35,99,111,111,107,105,101,45,111,112,116,105,110,16,0,14,35,99,111,111,107,105,101,45,111,112,116,111,117,116,16,0,25,35,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,16,0,22,35,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,102,111,111,116,101,114,16,0,23,35,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,109,101,115,115,97,103,101,16,0,25,35,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,109,111,100,97,108,45,98,111,120,16,0,23,35,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,16,0,12,35,99,111,111,107,105,101,45,112,97,103,101,16,0,13,35,99,111,111,107,105,101,45,112,97,110,101,108,16,0,20,35,99,111,111,107,105,101,45,112,97,110,101,108,45,98,97,110,110,101,114,16,0,20,35,99,111,111,107,105,101,45,112,97,110,101,108,45,100,105,97,108,111,103,16,0,16,35,99,111,111,107,105,101,45,112,101,114,109,45,98,97,114,16,0,17,35,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,101,16,0,22,35,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,98,97,114,16,0,19,35,99,111,111,107,105,101,45,112,108,97,99,101,104,111,108,100,101,114,16,0,11,35,99,111,111,107,105,101,45,112,110,108,16,0,14,35,99,111,111,107,105,101,45,112,111,108,105,99,101,16,0,16,35,99,111,111,107,105,101,45,112,111,108,105,99,105,101,115,16,0,25,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,99,99,101,112,116,45,98,97,114,16,0,24,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,103,114,101,101,109,101,110,116,16,0,20,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,108,101,114,116,16,0,21,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,114,16,0,27,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,115,105,99,45,104,111,108,100,101,114,16,0,20,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,108,111,99,107,16,0,28,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,111,116,116,111,109,45,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,111,120,16,0,22,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,115,101,110,116,16,0,26,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,115,101,110,116,45,98,97,114,16,0,24,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,105,97,108,111,103,16,0,25,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,105,115,99,108,97,105,109,101,114,16,0,19,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,104,105,110,116,16,0,21,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,104,111,108,100,101,114,16,0,19,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,105,110,102,111,16,0,20,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,108,97,121,101,114,16,0,22,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,16,0,20,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,111,100,97,108,16,0,18,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,115,103,16,0,24,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,111,118,101,114,108,97,121,16,0,21,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,99,101,16,0,27,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,41,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,109,105,99,114,111,115,101,114,118,105,99,101,16,0,38,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,111,118,101,114,108,97,121,45,98,108,111,99,107,45,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,105,110,16,0,20,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,117,112,16,0,22,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,101,99,116,105,111,110,16,0,21,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,104,97,100,111,119,16,0,21,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,116,105,99,107,121,16,0,20,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,116,114,97,112,16,0,22,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,97,114,110,105,110,103,16,0,19,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,16,0,22,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,16,0,24,35,99,111,111,107,105,101,45,112,111,108,105,116,105,99,97,115,46,97,99,116,105,118,101,16,0,22,35,99,111,111,107,105,101,45,112,111,108,105,116,105,99,115,45,112,111,112,117,112,16,0,16,35,99,111,111,107,105,101,45,112,111,108,105,116,121,107,97,16,0,11,35,99,111,111,107,105,101,45,112,111,112,16,0,21,35,99,111,111,107,105,101,45,112,111,112,45,99,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,45,112,111,112,45,117,112,16,0,13,35,99,111,111,107,105,101,45,112,111,112,105,110,16,0,21,35,99,111,111,107,105,101,45,112,111,112,105,110,45,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,45,112,111,112,111,118,101,114,16,0,17,35,99,111,111,107,105,101,45,112,111,112,117,112,45,98,97,114,16,0,18,35,99,111,111,107,105,101,45,112,111,112,117,112,45,99,111,110,116,16,0,23,35,99,111,111,107,105,101,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,45,112,111,112,117,112,45,99,111,110,116,101,110,116,16,0,25,35,99,111,111,107,105,101,45,112,111,112,117,112,45,104,105,110,116,101,114,103,114,117,110,100,16,0,19,35,99,111,111,107,105,101,45,112,111,112,117,112,45,105,110,110,101,114,16,0,19,35,99,111,111,107,105,101,45,112,111,112,117,112,45,111,117,116,101,114,16,0,21,35,99,111,111,107,105,101,45,112,111,112,117,112,45,111,118,101,114,108,97,121,16,0,26,35,99,111,111,107,105,101,45,112,111,112,117,112,45,119,105,116,104,45,111,118,101,114,108,97,121,16,0,21,35,99,111,111,107,105,101,45,112,111,112,117,112,45,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,45,112,111,112,117,112,50,16,0,29,35,99,111,111,107,105,101,45,112,111,112,117,112,50,45,115,116,105,99,107,121,45,119,114,97,112,112,101,114,16,0,21,35,99,111,111,107,105,101,45,112,111,119,105,97,100,111,109,105,101,110,105,101,16,0,13,35,99,111,111,107,105,101,45,112,114,101,102,115,16,0,18,35,99,111,111,107,105,101,45,112,114,101,102,115,45,105,99,111,110,16,0,15,35,99,111,111,107,105,101,45,112,114,101,118,101,110,116,16,0,15,35,99,111,111,107,105,101,45,112,114,105,118,97,99,121,16,0,22,35,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,20,35,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,105,110,102,111,16,0,28,35,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,105,110,102,111,45,119,114,97,112,112,101,114,16,0,22,35,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,16,0,29,35,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,21,35,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,112,111,112,117,112,16,0,23,35,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,45,112,114,111,109,112,116,16,0,20,35,99,111,111,107,105,101,45,112,114,111,109,112,116,45,102,105,120,101,100,16,0,24,35,99,111,111,107,105,101,45,112,114,111,109,112,116,45,112,114,111,116,101,99,116,111,114,16,0,11,35,99,111,111,107,105,101,45,112,117,112,16,0,21,35,99,111,111,107,105,101,45,112,117,112,117,112,45,119,114,97,112,112,101,114,16,0,16,35,99,111,111,107,105,101,45,113,117,101,115,116,105,111,110,16,0,23,35,99,111,111,107,105,101,45,113,117,101,115,116,105,111,110,45,98,97,110,110,101,114,16,0,11,35,99,111,111,107,105,101,45,114,97,109,16,0,14,35,99,111,111,107,105,101,45,114,101,103,105,111,110,16,0,13,35,99,111,111,107,105,101,45,114,101,103,108,101,16,0,15,35,99,111,111,107,105,101,45,114,101,113,117,101,115,116,16,0,16,35,99,111,111,107,105,101,45,114,101,113,117,105,114,101,100,16,0,19,35,99,111,111,107,105,101,45,114,101,115,116,114,105,99,116,105,111,110,16,0,26,35,99,111,111,107,105,101,45,114,101,116,97,114,103,101,116,105,110,103,45,109,111,100,117,108,101,16,0,14,35,99,111,111,107,105,101,45,114,105,98,98,111,110,16,0,16,35,99,111,111,107,105,101,45,114,105,98,98,111,110,45,49,16,0,18,35,99,111,111,107,105,101,45,114,105,99,104,116,108,105,110,105,101,16,0,31,35,99,111,111,107,105,101,45,114,105,99,104,116,108,105,110,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,12,35,99,111,111,107,105,101,45,114,111,100,111,16,0,11,35,99,111,111,107,105,101,45,114,111,119,16,0,17,35,99,111,111,107,105,101,45,114,117,108,101,115,45,116,111,112,16,0,14,35,99,111,111,107,105,101,45,115,99,114,101,101,110,16,0,15,35,99,111,111,107,105,101,45,115,101,99,116,105,111,110,16,0,16,35,99,111,111,107,105,101,45,115,101,108,101,99,116,111,114,16,0,23,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,45,115,101,99,116,105,111,110,16,0,22,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,97,108,101,114,116,16,0,21,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,99,111,110,116,16,0,26,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,100,108,103,16,0,22,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,108,97,121,101,114,16,0,24,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,119,114,97,112,112,101,114,16,0,32,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,16,0,14,35,99,111,111,107,105,101,45,115,104,97,100,111,119,16,0,22,35,99,111,111,107,105,101,45,115,105,116,101,45,99,111,110,116,97,105,110,101,114,16,0,26,35,99,111,111,107,105,101,45,115,105,116,101,45,99,111,110,116,97,105,110,101,114,45,98,111,120,16,0,13,35,99,111,111,107,105,101,45,115,108,105,100,101,16,0,14,35,99,111,111,107,105,101,45,115,108,105,100,101,114,16,0,21,35,99,111,111,107,105,101,45,115,108,105,100,105,110,103,45,112,111,112,117,112,16,0,13,35,99,111,111,107,105,101,45,115,112,97,99,101,16,0,14,35,99,111,111,107,105,101,45,115,112,97,99,101,114,16,0,17,35,99,111,111,107,105,101,45,115,116,97,116,101,109,101,110,116,16,0,28,35,99,111,111,107,105,101,45,115,116,97,116,117,115,45,119,105,100,103,101,116,45,104,111,108,100,101,114,16,0,14,35,99,111,111,107,105,101,45,115,116,105,99,107,50,16,0,14,35,99,111,111,107,105,101,45,115,116,105,99,107,121,16,0,18,35,99,111,111,107,105,101,45,115,116,105,99,107,121,45,98,97,114,16,0,21,35,99,111,111,107,105,101,45,115,116,111,114,101,45,115,101,99,116,105,111,110,16,0,17,35,99,111,111,107,105,101,45,115,116,114,97,112,108,105,110,101,16,0,13,35,99,111,111,107,105,101,45,115,116,114,105,112,16,0,13,35,99,111,111,107,105,101,45,116,97,98,108,101,16,0,20,35,99,111,111,107,105,101,45,116,97,106,101,107,111,122,116,97,116,97,115,16,0,13,35,99,111,111,107,105,101,45,116,101,114,109,115,16,0,12,35,99,111,111,107,105,101,45,116,101,120,116,16,0,19,35,99,111,111,107,105,101,45,116,101,120,116,45,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,45,116,105,109,116,117,108,45,98,111,116,16,0,12,35,99,111,111,107,105,101,45,116,105,112,115,16,0,14,35,99,111,111,107,105,101,45,116,105,115,115,117,101,16,0,13,35,99,111,111,107,105,101,45,116,111,97,115,116,16,0,23,35,99,111,111,107,105,101,45,116,111,97,115,116,45,99,111,110,116,97,105,110,101,114,16,0,15,35,99,111,111,107,105,101,45,116,111,111,108,98,97,114,16,0,15,35,99,111,111,107,105,101,45,116,111,111,108,107,105,116,16,0,20,35,99,111,111,107,105,101,45,116,111,111,108,107,105,116,45,119,114,97,112,16,0,15,35,99,111,111,107,105,101,45,116,111,111,108,116,105,112,16,0,15,35,99,111,111,107,105,101,45,116,111,112,45,98,97,114,16,0,14,35,99,111,111,107,105,101,45,116,111,112,98,97,114,16,0,17,35,99,111,111,107,105,101,45,116,111,112,115,116,105,99,107,121,16,0,14,35,99,111,111,107,105,101,45,116,117,110,110,101,108,16,0,10,35,99,111,111,107,105,101,45,117,101,16,0,14,35,99,111,111,107,105,101,45,117,110,105,45,107,108,16,0,19,35,99,111,111,107,105,101,45,117,115,97,103,101,45,97,108,101,114,116,16,0,20,35,99,111,111,107,105,101,45,117,115,97,103,101,45,110,111,116,105,99,101,16,0,26,35,99,111,111,107,105,101,45,117,115,97,103,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,19,35,99,111,111,107,105,101,45,117,115,97,103,101,45,112,97,110,101,108,16,0,26,35,99,111,111,107,105,101,45,117,115,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,45,117,122,101,110,101,116,16,0,14,35,99,111,111,107,105,101,45,118,97,114,115,101,108,16,0,12,35,99,111,111,107,105,101,45,118,105,101,119,16,0,15,35,99,111,111,107,105,101,45,118,117,101,45,97,112,112,16,0,20,35,99,111,111,107,105,101,45,119,97,108,108,45,119,114,97,112,112,101,114,16,0,12,35,99,111,111,107,105,101,45,119,97,114,110,16,0,15,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,19,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,97,112,112,16,0,24,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,98,97,99,107,100,114,111,112,16,0,22,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,98,97,110,110,101,114,16,0,19,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,98,97,114,16,0,19,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,98,111,120,16,0,25,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,16,0,19,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,100,105,118,16,0,20,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,103,100,112,114,16,0,25,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,105,115,45,115,116,117,112,105,100,16,0,23,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,112,97,100,100,105,110,103,16,0,21,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,112,97,110,101,108,16,0,22,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,112,108,117,103,105,110,16,0,12,35,99,111,111,107,105,101,45,119,101,108,108,16,0,11,35,99,111,111,107,105,101,45,119,101,116,16,0,14,35,99,111,111,107,105,101,45,119,105,100,103,101,116,16,0,22,35,99,111,111,107,105,101,45,119,105,100,103,101,116,45,99,111,110,102,105,114,109,16,0,14,35,99,111,111,107,105,101,45,119,105,110,100,111,119,16,0,12,35,99,111,111,107,105,101,45,119,114,97,112,16,0,15,35,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,25,35,99,111,111,107,105,101,45,119,114,97,112,112,101,114,45,99,111,110,116,97,105,110,101,114,16,0,10,35,99,111,111,107,105,101,45,121,109,16,0,12,35,99,111,111,107,105,101,45,122,111,110,101,16,0,14,35,99,111,111,107,105,101,46,97,99,116,105,118,101,16,0,13,35,99,111,111,107,105,101,46,97,108,101,114,116,16,0,21,35,99,111,111,107,105,101,46,97,108,101,114,116,45,119,97,114,110,105,110,103,16,0,20,35,99,111,111,107,105,101,46,97,108,105,103,110,45,99,101,110,116,101,114,16,0,14,35,99,111,111,107,105,101,46,99,111,108,45,49,50,16,0,14,35,99,111,111,107,105,101,46,99,111,111,107,105,101,16,0,15,35,99,111,111,107,105,101,46,99,111,111,107,105,101,115,16,0,13,35,99,111,111,107,105,101,46,102,105,120,101,100,16,0,20,35,99,111,111,107,105,101,46,102,105,120,101,100,45,98,111,116,116,111,109,16,0,16,35,99,111,111,107,105,101,46,110,103,45,115,99,111,112,101,16,0,14,35,99,111,111,107,105,101,46,110,111,116,105,99,101,16,0,11,35,99,111,111,107,105,101,46,112,45,52,16,0,12,35,99,111,111,107,105,101,46,114,103,112,100,16,0,14,35,99,111,111,107,105,101,46,115,104,111,119,109,101,16,0,12,35,99,111,111,107,105,101,46,118,105,101,119,16,0,13,35,99,111,111,107,105,101,46,119,45,49,48,48,16,0,8,35,99,111,111,107,105,101,49,16,0,13,35,99,111,111,107,105,101,49,56,121,101,97,114,16,0,8,35,99,111,111,107,105,101,50,16,0,9,35,99,111,111,107,105,101,50,57,16,0,15,35,99,111,111,107,105,101,50,77,101,108,100,117,110,103,16,0,14,35,99,111,111,107,105,101,51,97,114,104,77,115,103,16,0,11,35,99,111,111,107,105,101,54,56,55,54,16,0,10,35,99,111,111,107,105,101,65,99,99,16,0,19,35,99,111,111,107,105,101,65,99,99,101,112,116,66,97,110,110,101,114,16,0,16,35,99,111,111,107,105,101,65,99,99,101,112,116,66,97,114,16,0,16,35,99,111,111,107,105,101,65,99,99,101,112,116,66,111,120,16,0,22,35,99,111,111,107,105,101,65,99,99,101,112,116,67,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,65,99,99,101,112,116,67,111,110,116,101,110,116,16,0,17,35,99,111,111,107,105,101,65,99,99,101,112,116,73,110,102,111,16,0,20,35,99,111,111,107,105,101,65,99,99,101,112,116,77,101,115,115,97,103,101,16,0,36,35,99,111,111,107,105,101,65,99,99,101,112,116,77,111,100,97,108,95,95,95,66,86,95,109,111,100,97,108,95,111,117,116,101,114,95,16,0,20,35,99,111,111,107,105,101,65,99,99,101,112,116,79,118,101,114,108,97,121,16,0,16,35,99,111,111,107,105,101,65,99,99,101,112,116,80,111,115,16,0,20,35,99,111,111,107,105,101,65,99,99,101,112,116,87,114,97,112,112,101,114,16,0,17,35,99,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,16,0,26,35,99,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,67,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,65,99,99,101,112,116,97,116,105,111,110,16,0,25,35,99,111,111,107,105,101,65,99,99,101,112,116,105,110,103,67,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,65,99,99,101,115,115,70,114,97,109,101,16,0,10,35,99,111,111,107,105,101,65,99,107,16,0,18,35,99,111,111,107,105,101,65,99,107,110,111,119,108,101,100,103,101,16,0,22,35,99,111,111,107,105,101,65,99,107,110,111,119,108,101,100,103,101,109,101,110,116,16,0,28,35,99,111,111,107,105,101,65,99,107,110,111,119,108,101,100,103,101,109,101,110,116,83,112,97,99,101,114,16,0,15,35,99,111,111,107,105,101,65,99,116,105,118,101,73,100,16,0,9,35,99,111,111,107,105,101,65,100,16,0,10,35,99,111,111,107,105,101,65,100,118,16,0,18,35,99,111,111,107,105,101,65,100,118,101,114,116,105,115,105,110,103,16,0,13,35,99,111,111,107,105,101,65,100,118,105,99,101,16,0,13,35,99,111,111,107,105,101,65,100,118,105,115,101,16,0,22,35,99,111,111,107,105,101,65,100,118,105,115,101,67,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,65,100,118,105,115,111,114,16,0,15,35,99,111,111,107,105,101,65,103,101,67,104,101,99,107,16,0,12,35,99,111,111,107,105,101,65,103,114,101,101,16,0,15,35,99,111,111,107,105,101,65,103,114,101,101,66,97,114,16,0,16,35,99,111,111,107,105,101,65,103,114,101,101,70,111,114,109,16,0,16,35,99,111,111,107,105,101,65,103,114,101,101,109,101,110,116,16,0,19,35,99,111,111,107,105,101,65,103,114,101,101,109,101,110,116,66,97,114,16,0,19,35,99,111,111,107,105,101,65,103,114,101,101,109,101,110,116,66,111,120,16,0,23,35,99,111,111,107,105,101,65,103,114,101,101,109,101,110,116,67,111,110,116,101,110,116,16,0,12,35,99,111,111,107,105,101,65,108,97,114,109,16,0,15,35,99,111,111,107,105,101,65,108,97,114,109,66,97,114,16,0,12,35,99,111,111,107,105,101,65,108,101,114,116,16,0,18,35,99,111,111,107,105,101,65,108,101,114,116,66,97,110,110,101,114,16,0,15,35,99,111,111,107,105,101,65,108,101,114,116,66,97,114,16,0,15,35,99,111,111,107,105,101,65,108,101,114,116,66,105,103,16,0,15,35,99,111,111,107,105,101,65,108,101,114,116,66,111,120,16,0,17,35,99,111,111,107,105,101,65,108,101,114,116,66,111,120,73,68,16,0,15,35,99,111,111,107,105,101,65,108,101,114,116,67,110,116,16,0,21,35,99,111,111,107,105,101,65,108,101,114,116,67,111,110,116,97,105,110,101,114,16,0,17,35,99,111,111,107,105,101,65,108,101,114,116,76,97,121,101,114,16,0,19,35,99,111,111,107,105,101,65,108,101,114,116,77,101,115,115,97,103,101,16,0,16,35,99,111,111,107,105,101,65,108,101,114,116,87,114,97,112,16,0,19,35,99,111,111,107,105,101,65,108,101,114,116,87,114,97,112,112,101,114,16,0,19,35,99,111,111,107,105,101,65,108,101,114,116,95,112,111,112,112,101,114,16,0,13,35,99,111,111,107,105,101,65,108,101,114,116,101,16,0,12,35,99,111,111,107,105,101,65,108,108,111,119,16,0,16,35,99,111,111,107,105,101,65,108,108,111,119,87,114,97,112,16,0,14,35,99,111,111,107,105,101,65,110,110,111,121,101,114,16,0,14,35,99,111,111,107,105,101,65,110,122,101,105,103,101,16,0,11,35,99,111,111,107,105,101,65,114,101,97,16,0,16,35,99,111,111,107,105,101,65,115,115,105,115,116,97,110,116,16,0,11,35,99,111,111,107,105,101,65,117,116,104,16,0,10,35,99,111,111,107,105,101,66,65,82,16,0,9,35,99,111,111,107,105,101,66,71,16,0,15,35,99,111,111,107,105,101,66,97,99,107,100,114,111,112,16,0,17,35,99,111,111,107,105,101,66,97,99,107,103,114,111,117,110,100,16,0,11,35,99,111,111,107,105,101,66,97,108,107,16,0,10,35,99,111,111,107,105,101,66,97,110,16,0,14,35,99,111,111,107,105,101,66,97,110,100,101,97,117,16,0,26,35,99,111,111,107,105,101,66,97,110,100,101,97,117,67,111,110,115,101,110,116,101,109,101,110,116,16,0,13,35,99,111,111,107,105,101,66,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,66,97,110,110,101,114,45,103,100,112,114,16,0,18,35,99,111,111,107,105,101,66,97,110,110,101,114,45,109,97,105,110,16,0,15,35,99,111,111,107,105,101,66,97,110,110,101,114,66,71,16,0,22,35,99,111,111,107,105,101,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,66,97,110,110,101,114,67,111,110,116,101,110,116,16,0,24,35,99,111,111,107,105,101,66,97,110,110,101,114,67,111,110,116,101,110,116,95,110,101,119,16,0,14,35,99,111,111,107,105,101,66,97,110,110,101,114,68,16,0,28,35,99,111,111,107,105,101,66,97,110,110,101,114,68,66,80,114,105,118,97,99,121,78,111,116,105,99,101,16,0,16,35,99,111,111,107,105,101,66,97,110,110,101,114,68,105,118,16,0,16,35,99,111,111,107,105,101,66,97,110,110,101,114,71,84,86,16,0,17,35,99,111,111,107,105,101,66,97,110,110,101,114,73,110,102,111,16,0,17,35,99,111,111,107,105,101,66,97,110,110,101,114,77,97,105,110,16,0,18,35,99,111,111,107,105,101,66,97,110,110,101,114,77,111,100,97,108,16,0,20,35,99,111,111,107,105,101,66,97,110,110,101,114,79,118,101,114,108,97,121,16,0,17,35,99,111,111,107,105,101,66,97,110,110,101,114,87,114,97,112,16,0,20,35,99,111,111,107,105,101,66,97,110,110,101,114,87,114,97,112,112,101,114,16,0,10,35,99,111,111,107,105,101,66,97,114,16,0,12,35,99,111,111,107,105,101,66,97,114,66,67,16,0,19,35,99,111,111,107,105,101,66,97,114,67,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,66,97,114,82,71,80,68,79,118,101,114,108,97,121,16,0,17,35,99,111,111,107,105,101,66,97,114,82,71,80,68,80,111,112,16,0,17,35,99,111,111,107,105,101,66,97,114,86,105,115,105,98,108,101,16,0,17,35,99,111,111,107,105,101,66,97,114,87,114,97,112,112,101,114,16,0,10,35,99,111,111,107,105,101,66,99,107,16,0,16,35,99,111,111,107,105,101,66,103,79,118,101,114,108,97,121,16,0,15,35,99,111,111,107,105,101,66,108,97,99,107,111,117,116,16,0,12,35,99,111,111,107,105,101,66,108,111,99,107,16,0,13,35,99,111,111,107,105,101,66,108,111,99,107,50,16,0,14,35,99,111,111,107,105,101,66,108,111,99,107,101,114,16,0,10,35,99,111,111,107,105,101,66,110,114,16,0,10,35,99,111,111,107,105,101,66,111,120,16,0,19,35,99,111,111,107,105,101,66,111,120,67,111,110,116,97,105,110,101,114,16,0,17,35,99,111,111,107,105,101,66,111,120,79,118,101,114,108,97,121,16,0,17,35,99,111,111,107,105,101,66,111,120,87,114,97,112,112,101,114,16,0,9,35,99,111,111,107,105,101,66,115,16,0,8,35,99,111,111,107,105,101,67,16,0,13,35,99,111,111,107,105,101,67,68,107,101,121,115,16,0,11,35,99,111,111,107,105,101,67,78,73,76,16,0,9,35,99,111,111,107,105,101,67,84,16,0,11,35,99,111,111,107,105,101,67,97,114,100,16,0,13,35,99,111,111,107,105,101,67,97,114,100,66,103,16,0,12,35,99,111,111,107,105,101,67,104,101,99,107,16,0,16,35,99,111,111,107,105,101,67,104,101,99,107,45,97,112,112,16,0,14,35,99,111,111,107,105,101,67,104,101,99,107,101,114,16,0,20,35,99,111,111,107,105,101,67,104,101,99,107,101,114,66,97,110,110,101,114,16,0,13,35,99,111,111,107,105,101,67,104,111,105,99,101,16,0,19,35,99,111,111,107,105,101,67,104,111,105,99,101,66,97,110,110,101,114,16,0,16,35,99,111,111,107,105,101,67,104,111,105,99,101,66,97,114,16,0,18,35,99,111,111,107,105,101,67,104,111,105,99,101,66,100,114,111,112,16,0,17,35,99,111,111,107,105,101,67,104,111,105,99,101,73,110,102,111,16,0,23,35,99,111,111,107,105,101,67,104,111,105,99,101,73,110,102,111,65,99,99,101,112,116,16,0,25,35,99,111,111,107,105,101,67,104,111,105,99,101,73,110,102,111,95,103,101,110,101,114,97,108,16,0,25,35,99,111,111,107,105,101,67,104,111,105,99,101,77,111,100,97,108,79,118,101,114,108,97,121,16,0,17,35,99,111,111,107,105,101,67,104,111,105,99,101,78,111,116,101,16,0,16,35,99,111,111,107,105,101,67,104,111,105,99,101,115,73,68,16,0,14,35,99,111,111,107,105,101,67,104,111,111,115,101,114,16,0,14,35,99,111,111,107,105,101,67,108,105,99,107,101,114,16,0,11,35,99,111,111,107,105,101,67,110,105,108,16,0,17,35,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,16,0,23,35,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,66,97,110,110,101,114,16,0,20,35,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,66,111,120,16,0,24,35,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,77,101,115,115,97,103,101,16,0,23,35,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,78,111,116,105,99,101,16,0,26,35,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,80,111,108,105,99,121,66,111,120,16,0,17,35,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,121,16,0,22,35,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,121,77,111,100,97,108,16,0,16,35,99,111,111,107,105,101,67,111,110,97,116,105,110,101,114,16,0,14,35,99,111,111,107,105,101,67,111,110,99,101,110,116,16,0,11,35,99,111,111,107,105,101,67,111,110,102,16,0,17,35,99,111,111,107,105,101,67,111,110,102,105,103,70,111,114,109,16,0,14,35,99,111,111,107,105,101,67,111,110,102,105,114,109,16,0,17,35,99,111,111,107,105,101,67,111,110,102,105,114,109,68,105,118,16,0,19,35,99,111,111,107,105,101,67,111,110,102,105,114,109,97,116,105,111,110,16,0,22,35,99,111,111,107,105,101,67,111,110,102,105,114,109,97,116,105,111,110,66,97,114,16,0,28,35,99,111,111,107,105,101,67,111,110,102,105,114,109,97,116,105,111,110,67,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,67,111,110,115,101,110,115,16,0,14,35,99,111,111,107,105,101,67,111,110,115,101,110,116,16,0,19,35,99,111,111,107,105,101,67,111,110,115,101,110,116,65,108,101,114,116,16,0,17,35,99,111,111,107,105,101,67,111,110,115,101,110,116,65,112,112,16,0,22,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,99,107,100,114,111,112,16,0,24,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,99,107,103,114,111,117,110,100,16,0,20,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,16,0,29,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,16,0,17,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,114,16,0,19,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,108,111,99,107,16,0,18,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,108,111,107,16,0,17,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,111,120,16,0,23,35,99,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,16,0,17,35,99,111,111,107,105,101,67,111,110,115,101,110,116,68,105,118,16,0,18,35,99,111,111,107,105,101,67,111,110,115,101,110,116,69,108,73,100,16,0,18,35,99,111,111,107,105,101,67,111,110,115,101,110,116,70,111,114,109,16,0,20,35,99,111,111,107,105,101,67,111,110,115,101,110,116,72,111,108,100,101,114,16,0,29,35,99,111,111,107,105,101,67,111,110,115,101,110,116,73,110,105,116,105,97,108,66,97,99,107,100,114,111,112,16,0,21,35,99,111,111,107,105,101,67,111,110,115,101,110,116,77,101,115,115,97,103,101,16,0,17,35,99,111,111,107,105,101,67,111,110,115,101,110,116,77,115,103,16,0,18,35,99,111,111,107,105,101,67,111,110,115,101,110,116,78,111,116,101,16,0,20,35,99,111,111,107,105,101,67,111,110,115,101,110,116,78,111,116,105,99,101,16,0,21,35,99,111,111,107,105,101,67,111,110,115,101,110,116,79,118,101,114,108,97,121,16,0,19,35,99,111,111,107,105,101,67,111,110,115,101,110,116,80,97,110,101,108,16,0,21,35,99,111,111,107,105,101,67,111,110,115,101,110,116,80,97,110,101,108,85,112,16,0,19,35,99,111,111,107,105,101,67,111,110,115,101,110,116,80,111,112,117,112,16,0,20,35,99,111,111,107,105,101,67,111,110,115,101,110,116,80,114,111,109,112,116,16,0,20,35,99,111,111,107,105,101,67,111,110,115,101,110,116,87,105,110,100,111,119,16,0,18,35,99,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,16,0,21,35,99,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,112,101,114,16,0,30,35,99,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,112,101,114,67,111,110,72,111,108,100,101,114,16,0,18,35,99,111,111,107,105,101,67,111,110,115,101,110,116,95,68,105,118,16,0,11,35,99,111,111,107,105,101,67,111,110,116,16,0,16,35,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,15,35,99,111,111,107,105,101,67,111,110,116,101,110,101,114,16,0,14,35,99,111,111,107,105,101,67,111,110,116,101,110,116,16,0,18,35,99,111,111,107,105,101,67,111,110,116,114,97,112,116,105,111,110,16,0,14,35,99,111,111,107,105,101,67,111,110,116,114,111,108,16,0,21,35,99,111,111,107,105,101,67,111,110,116,114,111,108,87,114,97,112,112,101,114,16,0,23,35,99,111,111,107,105,101,67,111,110,116,114,111,108,95,112,97,110,101,108,105,99,111,16,0,17,35,99,111,111,107,105,101,67,111,110,116,114,111,108,108,101,114,16,0,16,35,99,111,111,107,105,101,67,111,111,107,105,101,66,97,114,16,0,11,35,99,111,111,107,105,101,67,111,112,121,16,0,13,35,99,111,111,107,105,101,67,111,114,110,101,114,16,0,10,35,99,111,111,107,105,101,67,116,97,16,0,21,35,99,111,111,107,105,101,68,97,116,97,80,114,111,116,101,99,116,105,111,110,16,0,25,35,99,111,111,107,105,101,68,101,99,108,97,114,97,116,105,111,110,87,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,68,105,97,108,111,103,16,0,17,35,99,111,111,107,105,101,68,105,97,108,111,103,67,116,110,114,16,0,15,35,99,111,111,107,105,101,68,105,97,108,111,103,117,101,16,0,16,35,99,111,111,107,105,101,68,105,110,103,115,98,117,109,115,16,0,14,35,99,111,111,107,105,101,68,105,114,87,114,97,112,16,0,16,35,99,111,111,107,105,101,68,105,114,101,99,116,105,118,101,16,0,11,35,99,111,111,107,105,101,68,105,115,99,16,0,17,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,16,0,23,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,66,97,110,110,101,114,16,0,20,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,66,111,120,16,0,26,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,67,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,68,105,118,16,0,21,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,73,110,102,111,16,0,22,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,78,111,116,105,102,16,0,24,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,87,114,97,112,112,101,114,16,0,16,35,99,111,111,107,105,101,68,105,115,99,108,97,109,101,114,16,0,21,35,99,111,111,107,105,101,68,105,115,109,105,115,115,67,111,110,116,101,110,116,16,0,14,35,99,111,111,107,105,101,68,105,115,112,108,97,121,16,0,18,35,99,111,111,107,105,101,68,105,115,112,108,97,121,70,111,114,109,16,0,10,35,99,111,111,107,105,101,68,105,118,16,0,16,35,99,111,111,107,105,101,68,105,118,45,65,108,101,114,116,16,0,20,35,99,111,111,107,105,101,68,105,118,66,97,99,107,103,114,111,117,110,100,16,0,17,35,99,111,111,107,105,101,68,105,118,67,111,110,116,101,110,116,16,0,15,35,99,111,111,107,105,101,68,105,118,67,111,118,101,114,16,0,10,35,99,111,111,107,105,101,68,108,103,16,0,11,35,99,111,111,107,105,101,68,108,103,49,16,0,12,35,99,111,111,107,105,101,68,111,117,103,104,16,0,11,35,99,111,111,107,105,101,68,114,111,112,16,0,15,35,99,111,111,107,105,101,68,114,111,112,68,111,119,110,16,0,9,35,99,111,111,107,105,101,69,67,16,0,9,35,99,111,111,107,105,101,69,85,16,0,14,35,99,111,111,107,105,101,69,108,101,109,101,110,116,16,0,22,35,99,111,111,107,105,101,69,114,114,111,114,77,101,115,115,97,103,101,68,105,118,16,0,9,35,99,111,111,107,105,101,69,117,16,0,16,35,99,111,111,107,105,101,69,117,82,117,108,101,66,97,114,16,0,12,35,99,111,111,107,105,101,70,105,120,101,100,16,0,13,35,99,111,111,107,105,101,70,111,111,116,101,114,16,0,14,35,99,111,111,107,105,101,70,111,117,110,100,114,121,16,0,12,35,99,111,111,107,105,101,70,114,97,109,101,16,0,16,35,99,111,111,107,105,101,71,68,80,82,112,111,112,117,112,16,0,11,35,99,111,111,107,105,101,71,100,112,114,16,0,15,35,99,111,111,107,105,101,71,114,97,100,105,101,110,116,16,0,15,35,99,111,111,107,105,101,71,117,97,114,100,77,115,103,16,0,11,35,99,111,111,107,105,101,72,84,77,76,16,0,11,35,99,111,111,107,105,101,72,101,97,100,16,0,13,35,99,111,111,107,105,101,72,101,97,100,101,114,16,0,11,35,99,111,111,107,105,101,72,105,110,116,16,0,14,35,99,111,111,107,105,101,72,105,110,116,69,120,116,16,0,23,35,99,111,111,107,105,101,72,105,110,116,77,111,100,97,108,71,101,110,101,114,97,108,16,0,21,35,99,111,111,107,105,101,72,105,110,116,95,99,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,72,105,110,119,101,105,115,16,0,13,35,99,111,111,107,105,101,72,111,108,100,101,114,16,0,14,35,99,111,111,107,105,101,72,111,108,115,116,101,114,16,0,9,35,99,111,111,107,105,101,73,68,16,0,9,35,99,111,111,107,105,101,73,87,16,0,15,35,99,111,111,107,105,101,73,100,105,111,116,76,97,119,16,0,24,35,99,111,111,107,105,101,73,100,105,111,116,105,99,80,111,108,105,99,121,73,110,102,111,16,0,13,35,99,111,111,107,105,101,73,102,114,97,109,101,16,0,14,35,99,111,111,107,105,101,73,110,102,67,111,110,116,16,0,11,35,99,111,111,107,105,101,73,110,102,111,16,0,26,35,99,111,111,107,105,101,73,110,102,111,65,99,99,101,112,116,67,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,73,110,102,111,65,114,121,16,0,17,35,99,111,111,107,105,101,73,110,102,111,66,97,110,110,101,114,16,0,14,35,99,111,111,107,105,101,73,110,102,111,66,97,114,16,0,17,35,99,111,111,107,105,101,73,110,102,111,66,111,116,116,111,109,16,0,14,35,99,111,111,107,105,101,73,110,102,111,66,111,120,16,0,20,35,99,111,111,107,105,101,73,110,102,111,67,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,73,110,102,111,67,111,110,116,101,110,116,16,0,19,35,99,111,111,107,105,101,73,110,102,111,68,101,115,105,103,110,95,49,16,0,17,35,99,111,111,107,105,101,73,110,102,111,68,105,97,108,111,103,16,0,14,35,99,111,111,107,105,101,73,110,102,111,68,105,118,16,0,17,35,99,111,111,107,105,101,73,110,102,111,70,111,111,116,101,114,16,0,17,35,99,111,111,107,105,101,73,110,102,111,72,111,108,100,101,114,16,0,16,35,99,111,111,107,105,101,73,110,102,111,76,97,121,101,114,16,0,15,35,99,111,111,107,105,101,73,110,102,111,77,97,105,110,16,0,14,35,99,111,111,107,105,101,73,110,102,111,77,97,120,16,0,18,35,99,111,111,107,105,101,73,110,102,111,77,101,115,115,97,103,101,16,0,19,35,99,111,111,107,105,101,73,110,102,111,77,115,103,79,117,116,101,114,16,0,21,35,99,111,111,107,105,101,73,110,102,111,77,115,103,87,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,73,110,102,111,78,101,119,16,0,17,35,99,111,111,107,105,101,73,110,102,111,79,114,97,110,103,101,16,0,18,35,99,111,111,107,105,101,73,110,102,111,79,117,116,108,105,110,101,16,0,18,35,99,111,111,107,105,101,73,110,102,111,79,118,101,114,108,97,121,16,0,20,35,99,111,111,107,105,101,73,110,102,111,79,118,101,114,108,97,121,66,103,16,0,16,35,99,111,111,107,105,101,73,110,102,111,80,97,110,101,108,16,0,17,35,99,111,111,107,105,101,73,110,102,111,87,105,110,100,111,119,16,0,18,35,99,111,111,107,105,101,73,110,102,111,87,114,97,112,112,101,114,16,0,21,35,99,111,111,107,105,101,73,110,102,111,95,102,105,114,115,116,84,105,109,101,16,0,14,35,99,111,111,107,105,101,73,110,102,111,98,111,120,16,0,17,35,99,111,111,107,105,101,73,110,102,111,114,109,97,99,106,97,16,0,18,35,99,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,16,0,28,35,99,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,66,111,120,87,114,97,112,112,101,114,16,0,23,35,99,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,80,111,112,117,112,16,0,23,35,99,111,111,107,105,101,73,110,102,111,114,109,97,116,105,118,97,66,114,101,118,101,16,0,15,35,99,111,111,107,105,101,73,110,102,111,114,109,101,114,16,0,22,35,99,111,111,107,105,101,73,110,102,111,114,109,101,114,66,111,111,107,108,101,116,16,0,12,35,99,111,111,107,105,101,74,83,100,105,118,16,0,10,35,99,111,111,107,105,101,74,97,114,16,0,15,35,99,111,111,107,105,101,75,111,110,116,101,110,101,114,16,0,9,35,99,111,111,107,105,101,76,89,16,0,10,35,99,111,111,107,105,101,76,97,98,16,0,10,35,99,111,111,107,105,101,76,97,119,16,0,14,35,99,111,111,107,105,101,76,97,119,50,48,49,53,16,0,27,35,99,111,111,107,105,101,76,97,119,65,99,107,110,111,119,108,101,100,103,109,101,110,116,68,105,118,16,0,15,35,99,111,111,107,105,101,76,97,119,65,108,101,114,116,16,0,16,35,99,111,111,107,105,101,76,97,119,66,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,76,97,119,66,97,110,110,101,114,73,100,16,0,13,35,99,111,111,107,105,101,76,97,119,66,97,114,16,0,15,35,99,111,111,107,105,101,76,97,119,66,108,111,99,107,16,0,13,35,99,111,111,107,105,101,76,97,119,66,111,111,16,0,13,35,99,111,111,107,105,101,76,97,119,66,111,120,16,0,27,35,99,111,111,107,105,101,76,97,119,67,111,109,112,108,105,97,110,99,101,77,101,115,115,97,103,101,16,0,19,35,99,111,111,107,105,101,76,97,119,67,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,76,97,119,68,105,115,99,108,97,105,109,101,114,16,0,16,35,99,111,111,107,105,101,76,97,119,72,101,97,100,101,114,16,0,14,35,99,111,111,107,105,101,76,97,119,73,110,102,111,16,0,19,35,99,111,111,107,105,101,76,97,119,73,110,102,111,66,114,101,118,101,16,0,21,35,99,111,111,107,105,101,76,97,119,73,110,102,111,114,109,97,116,105,111,110,16,0,17,35,99,111,111,107,105,101,76,97,119,77,101,115,115,97,103,101,16,0,15,35,99,111,111,107,105,101,76,97,119,80,97,110,101,108,16,0,13,35,99,111,111,107,105,101,76,97,119,80,110,108,16,0,15,35,99,111,111,107,105,101,76,97,119,80,111,112,117,112,16,0,24,35,99,111,111,107,105,101,76,97,119,80,111,112,117,112,67,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,76,97,119,84,101,120,116,16,0,17,35,99,111,111,107,105,101,76,97,119,95,98,97,110,110,101,114,16,0,17,35,99,111,111,107,105,101,76,97,119,95,99,65,108,101,114,116,16,0,12,35,99,111,111,107,105,101,76,97,121,101,114,16,0,16,35,99,111,111,107,105,101,76,97,121,101,114,77,97,105,110,16,0,13,35,99,111,111,107,105,101,76,97,121,111,117,116,16,0,12,35,99,111,111,107,105,101,76,101,103,97,108,16,0,22,35,99,111,111,107,105,101,76,101,103,105,115,108,97,116,105,111,110,73,110,102,111,16,0,21,35,99,111,111,107,105,101,76,101,118,101,108,73,110,116,101,114,99,101,112,116,16,0,14,35,99,111,111,107,105,101,76,105,99,101,110,115,101,16,0,11,35,99,111,111,107,105,101,76,105,110,101,16,0,11,35,99,111,111,107,105,101,76,111,97,100,16,0,16,35,99,111,111,107,105,101,77,97,105,110,80,97,110,101,108,16,0,14,35,99,111,111,107,105,101,77,97,110,100,97,116,101,16,0,14,35,99,111,111,107,105,101,77,101,108,100,105,110,103,16,0,14,35,99,111,111,107,105,101,77,101,108,100,117,110,103,16,0,11,35,99,111,111,107,105,101,77,101,110,115,16,0,14,35,99,111,111,107,105,101,77,101,115,115,97,103,101,16,0,18,35,99,111,111,107,105,101,77,101,115,115,97,103,101,65,114,101,97,16,0,20,35,99,111,111,107,105,101,77,101,115,115,97,103,101,66,97,110,110,101,114,16,0,17,35,99,111,111,107,105,101,77,101,115,115,97,103,101,66,97,114,16,0,23,35,99,111,111,107,105,101,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,24,35,99,111,111,107,105,101,77,101,115,115,97,103,101,68,105,115,112,108,97,121,68,73,86,16,0,17,35,99,111,111,107,105,101,77,101,115,115,97,103,101,68,105,118,16,0,20,35,99,111,111,107,105,101,77,101,115,115,97,103,101,72,111,108,100,101,114,16,0,19,35,99,111,111,107,105,101,77,101,115,115,97,103,101,77,111,100,117,108,16,0,26,35,99,111,111,107,105,101,77,101,115,115,97,103,101,78,111,116,105,102,121,66,97,110,110,101,114,16,0,19,35,99,111,111,107,105,101,77,101,115,115,97,103,101,79,117,116,101,114,16,0,21,35,99,111,111,107,105,101,77,101,115,115,97,103,101,87,114,97,112,112,101,114,16,0,22,35,99,111,111,107,105,101,77,101,115,115,97,103,101,108,105,103,104,116,98,111,120,16,0,24,35,99,111,111,107,105,101,77,101,115,115,97,103,101,115,67,111,110,116,97,105,110,101,114,16,0,10,35,99,111,111,107,105,101,77,103,110,16,0,18,35,99,111,111,107,105,101,77,111,100,97,108,66,111,116,116,111,109,16,0,18,35,99,111,111,107,105,101,77,111,100,97,108,67,101,110,116,101,114,16,0,16,35,99,111,111,107,105,101,77,111,100,97,108,76,105,118,101,16,0,19,35,99,111,111,107,105,101,77,111,100,97,108,79,118,101,114,108,97,121,16,0,13,35,99,111,111,107,105,101,77,111,100,117,108,101,16,0,10,35,99,111,111,107,105,101,77,111,110,16,0,14,35,99,111,111,107,105,101,77,111,110,115,116,101,114,16,0,21,35,99,111,111,107,105,101,77,111,110,115,116,101,114,87,114,97,112,112,101,114,16,0,10,35,99,111,111,107,105,101,77,115,103,16,0,11,35,99,111,111,107,105,101,77,115,103,50,16,0,15,35,99,111,111,107,105,101,77,115,103,65,108,101,114,116,16,0,15,35,99,111,111,107,105,101,77,115,103,66,108,111,99,107,16,0,13,35,99,111,111,107,105,101,77,115,103,68,105,118,16,0,14,35,99,111,111,107,105,101,77,115,103,85,115,101,114,16,0,17,35,99,111,111,107,105,101,77,115,103,87,114,97,112,112,101,114,16,0,18,35,99,111,111,107,105,101,77,115,103,87,114,97,112,112,101,114,50,16,0,15,35,99,111,111,107,105,101,78,111,110,115,101,110,115,101,16,0,13,35,99,111,111,107,105,101,78,111,116,83,101,116,16,0,14,35,99,111,111,107,105,101,78,111,116,101,66,111,120,16,0,15,35,99,111,111,107,105,101,78,111,116,101,87,114,97,112,16,0,12,35,99,111,111,107,105,101,78,111,116,101,115,16,0,11,35,99,111,111,107,105,101,78,111,116,102,16,0,13,35,99,111,111,107,105,101,78,111,116,105,99,101,16,0,18,35,99,111,111,107,105,101,78,111,116,105,99,101,65,108,101,114,116,16,0,19,35,99,111,111,107,105,101,78,111,116,105,99,101,66,97,110,110,101,114,16,0,22,35,99,111,111,107,105,101,78,111,116,105,99,101,67,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,78,111,116,105,99,101,67,111,110,116,101,110,116,16,0,19,35,99,111,111,107,105,101,78,111,116,105,99,101,68,105,97,108,111,103,16,0,20,35,99,111,111,107,105,101,78,111,116,105,99,101,69,108,101,109,101,110,116,16,0,20,35,99,111,111,107,105,101,78,111,116,105,99,101,77,101,115,115,97,103,101,16,0,18,35,99,111,111,107,105,101,78,111,116,105,99,101,80,111,112,117,112,16,0,16,35,99,111,111,107,105,101,78,111,116,105,99,101,80,114,111,16,0,17,35,99,111,111,107,105,101,78,111,116,105,99,101,85,115,101,114,16,0,23,35,99,111,111,107,105,101,78,111,116,105,99,101,95,99,111,110,116,97,105,110,101,114,16,0,19,35,99,111,111,107,105,101,78,111,116,105,99,101,95,111,116,104,101,114,16,0,12,35,99,111,111,107,105,101,78,111,116,105,102,16,0,18,35,99,111,111,107,105,101,78,111,116,105,102,97,99,116,105,111,110,16,0,19,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,25,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,110,110,101,114,16,0,32,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,110,110,101,114,87,114,97,112,112,101,114,16,0,22,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,16,0,28,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,111,111,116,115,116,114,97,112,16,0,28,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,67,111,110,116,97,105,110,101,114,16,0,25,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,68,105,97,108,111,103,16,0,24,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,76,97,121,101,114,16,0,23,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,77,97,105,110,16,0,25,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,83,99,114,101,101,110,16,0,15,35,99,111,111,107,105,101,78,111,116,105,102,105,101,114,16,0,22,35,99,111,111,107,105,101,78,111,116,105,102,105,101,114,87,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,78,111,116,105,102,121,16,0,20,35,99,111,111,107,105,101,78,111,116,105,102,121,87,114,97,112,112,101,114,16,0,9,35,99,111,111,107,105,101,79,75,16,0,9,35,99,111,111,107,105,101,79,107,16,0,12,35,99,111,111,107,105,101,79,107,68,105,118,16,0,14,35,99,111,111,107,105,101,79,112,97,99,105,116,121,16,0,12,35,99,111,111,107,105,101,79,112,116,73,110,16,0,22,35,99,111,111,107,105,101,79,112,116,73,110,66,97,114,87,114,97,112,112,101,114,16,0,20,35,99,111,111,107,105,101,79,112,116,105,111,110,115,70,111,111,116,101,114,16,0,10,35,99,111,111,107,105,101,79,117,116,16,0,12,35,99,111,111,107,105,101,79,117,116,101,114,16,0,21,35,99,111,111,107,105,101,79,117,116,101,114,67,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,79,118,101,114,108,97,121,16,0,20,35,99,111,111,107,105,101,79,118,101,114,108,97,121,78,111,116,105,102,121,16,0,9,35,99,111,111,107,105,101,80,75,16,0,12,35,99,111,111,107,105,101,80,79,80,117,112,16,0,11,35,99,111,111,107,105,101,80,97,110,101,16,0,12,35,99,111,111,107,105,101,80,97,110,101,108,16,0,12,35,99,111,111,107,105,101,80,97,114,97,103,16,0,15,35,99,111,111,107,105,101,80,97,114,105,115,105,101,110,16,0,17,35,99,111,111,107,105,101,80,101,114,109,105,115,115,105,111,110,16,0,20,35,99,111,111,107,105,101,80,101,114,109,105,115,115,105,111,110,66,97,114,16,0,23,35,99,111,111,107,105,101,80,101,114,109,105,115,115,105,111,110,68,105,97,108,111,103,16,0,18,35,99,111,111,107,105,101,80,108,97,99,101,104,111,108,100,101,114,16,0,13,35,99,111,111,107,105,101,80,108,117,103,105,110,16,0,10,35,99,111,111,107,105,101,80,111,108,16,0,22,35,99,111,111,107,105,101,80,111,108,105,99,105,101,115,77,101,115,115,97,103,101,16,0,19,35,99,111,111,107,105,101,80,111,108,105,99,121,45,108,97,121,101,114,16,0,22,35,99,111,111,107,105,101,80,111,108,105,99,121,65,103,114,101,101,109,101,110,116,16,0,18,35,99,111,111,107,105,101,80,111,108,105,99,121,65,108,101,114,116,16,0,21,35,99,111,111,107,105,101,80,111,108,105,99,121,65,108,101,114,116,66,111,120,16,0,23,35,99,111,111,107,105,101,80,111,108,105,99,121,66,97,99,107,103,114,111,117,110,100,16,0,19,35,99,111,111,107,105,101,80,111,108,105,99,121,66,97,110,110,101,114,16,0,16,35,99,111,111,107,105,101,80,111,108,105,99,121,66,97,114,16,0,24,35,99,111,111,107,105,101,80,111,108,105,99,121,66,97,114,45,111,118,101,114,108,97,121,16,0,18,35,99,111,111,107,105,101,80,111,108,105,99,121,66,108,111,99,107,16,0,16,35,99,111,111,107,105,101,80,111,108,105,99,121,66,111,120,16,0,22,35,99,111,111,107,105,101,80,111,108,105,99,121,67,111,110,116,97,105,110,101,114,16,0,19,35,99,111,111,107,105,101,80,111,108,105,99,121,68,105,97,108,111,103,16,0,16,35,99,111,111,107,105,101,80,111,108,105,99,121,68,105,118,16,0,19,35,99,111,111,107,105,101,80,111,108,105,99,121,68,114,97,119,101,114,16,0,15,35,99,111,111,107,105,101,80,111,108,105,99,121,73,100,16,0,17,35,99,111,111,107,105,101,80,111,108,105,99,121,73,110,102,111,16,0,18,35,99,111,111,107,105,101,80,111,108,105,99,121,76,97,98,108,101,16,0,18,35,99,111,111,107,105,101,80,111,108,105,99,121,77,111,100,97,108,16,0,21,35,99,111,111,107,105,101,80,111,108,105,99,121,77,111,100,97,108,45,78,76,16,0,17,35,99,111,111,107,105,101,80,111,108,105,99,121,78,111,116,101,16,0,19,35,99,111,111,107,105,101,80,111,108,105,99,121,78,111,116,105,99,101,16,0,22,35,99,111,111,107,105,101,80,111,108,105,99,121,78,111,116,105,99,101,66,111,120,16,0,25,35,99,111,111,107,105,101,80,111,108,105,99,121,78,111,116,105,102,105,99,97,116,105,111,110,16,0,20,35,99,111,111,107,105,101,80,111,108,105,99,121,79,118,101,114,108,97,121,16,0,24,35,99,111,111,107,105,101,80,111,108,105,99,121,79,118,101,114,108,97,121,82,111,111,116,16,0,18,35,99,111,111,107,105,101,80,111,108,105,99,121,80,111,112,85,112,16,0,18,35,99,111,111,107,105,101,80,111,108,105,99,121,80,111,112,117,112,16,0,22,35,99,111,111,107,105,101,80,111,108,105,99,121,80,111,112,117,112,72,84,77,76,16,0,17,35,99,111,111,107,105,101,80,111,108,105,99,121,84,101,120,116,16,0,20,35,99,111,111,107,105,101,80,111,108,105,99,121,84,111,111,108,116,105,112,16,0,17,35,99,111,111,107,105,101,80,111,108,105,99,121,87,97,114,110,16,0,20,35,99,111,111,107,105,101,80,111,108,105,99,121,87,114,97,112,112,101,114,16,0,17,35,99,111,111,107,105,101,80,111,108,105,99,121,90,111,110,101,16,0,19,35,99,111,111,107,105,101,80,111,108,105,99,121,95,98,97,114,114,97,16,0,27,35,99,111,111,107,105,101,80,111,108,105,99,121,95,99,111,111,107,105,101,95,97,100,118,105,99,101,16,0,14,35,99,111,111,107,105,101,80,111,108,105,99,121,119,16,0,17,35,99,111,111,107,105,101,80,111,108,105,115,121,73,110,102,111,16,0,15,35,99,111,111,107,105,101,80,111,108,105,116,105,99,115,16,0,14,35,99,111,111,107,105,101,80,111,111,108,105,99,121,16,0,10,35,99,111,111,107,105,101,80,111,112,16,0,12,35,99,111,111,107,105,101,80,111,112,85,112,16,0,14,35,99,111,111,107,105,101,80,111,112,85,112,73,100,16,0,18,35,99,111,111,107,105,101,80,111,112,85,112,95,116,101,114,109,111,16,0,12,35,99,111,111,107,105,101,80,111,112,105,110,16,0,14,35,99,111,111,107,105,101,80,111,112,117,112,66,71,16,0,15,35,99,111,111,107,105,101,80,111,112,117,112,66,97,114,16,0,21,35,99,111,111,107,105,101,80,111,112,117,112,67,111,110,116,97,105,110,101,114,16,0,19,35,99,111,111,107,105,101,80,111,112,117,112,67,111,110,116,101,110,116,16,0,16,35,99,111,111,107,105,101,80,111,112,117,112,70,111,114,109,16,0,18,35,99,111,111,107,105,101,80,111,112,117,112,72,111,108,100,101,114,16,0,16,35,99,111,111,107,105,101,80,111,112,117,112,73,110,102,111,16,0,23,35,99,111,111,107,105,101,80,111,112,117,112,80,97,110,101,108,67,108,105,101,110,116,16,0,18,35,99,111,111,107,105,101,80,111,112,117,112,84,97,114,103,101,116,16,0,19,35,99,111,111,107,105,101,80,111,112,117,112,87,114,97,112,112,101,114,16,0,16,35,99,111,111,107,105,101,80,114,101,102,73,110,116,114,111,16,0,25,35,99,111,111,107,105,101,80,114,101,102,73,110,116,114,111,95,117,110,100,101,114,108,97,121,16,0,22,35,99,111,111,107,105,101,80,114,101,102,101,114,101,110,99,101,80,97,110,101,108,16,0,28,35,99,111,111,107,105,101,80,114,101,102,101,114,101,110,99,101,115,95,102,114,111,110,116,45,101,110,100,16,0,11,35,99,111,111,107,105,101,80,114,101,118,16,0,14,35,99,111,111,107,105,101,80,114,105,118,97,99,121,16,0,25,35,99,111,111,107,105,101,80,114,105,118,97,99,121,68,101,99,108,97,114,97,116,105,111,110,16,0,18,35,99,111,111,107,105,101,80,114,105,118,97,99,121,73,110,102,111,16,0,20,35,99,111,111,107,105,101,80,114,105,118,97,99,121,78,111,116,105,99,101,16,0,20,35,99,111,111,107,105,101,80,114,105,118,97,99,121,80,111,108,105,99,121,16,0,19,35,99,111,111,107,105,101,80,114,105,118,97,99,121,80,111,112,117,112,16,0,21,35,99,111,111,107,105,101,80,114,105,118,97,99,121,87,114,97,112,112,101,114,16,0,21,35,99,111,111,107,105,101,80,114,105,118,97,99,121,95,104,101,97,100,101,114,16,0,13,35,99,111,111,107,105,101,80,114,111,109,112,116,16,0,20,35,99,111,111,107,105,101,80,114,111,109,112,116,87,114,97,112,112,101,114,16,0,8,35,99,111,111,107,105,101,81,16,0,15,35,99,111,111,107,105,101,81,117,101,115,116,105,111,110,16,0,17,35,99,111,111,107,105,101,82,101,103,117,108,97,116,105,111,110,16,0,17,35,99,111,111,107,105,101,82,101,113,117,101,115,116,66,111,120,16,0,19,35,99,111,111,107,105,101,82,101,113,117,101,115,116,76,97,121,101,114,16,0,17,35,99,111,111,107,105,101,82,105,99,104,116,108,105,110,105,101,16,0,12,35,99,111,111,107,105,101,82,117,108,101,115,16,0,13,35,99,111,111,107,105,101,83,99,114,101,101,110,16,0,15,35,99,111,111,107,105,101,83,99,114,105,112,116,73,100,16,0,10,35,99,111,111,107,105,101,83,101,99,16,0,14,35,99,111,111,107,105,101,83,101,99,116,105,111,110,16,0,14,35,99,111,111,107,105,101,83,101,116,116,105,110,103,16,0,21,35,99,111,111,107,105,101,83,101,116,116,105,110,103,115,68,105,97,108,111,103,16,0,28,35,99,111,111,107,105,101,83,101,116,116,105,110,103,115,79,118,101,114,108,97,121,84,111,103,103,108,101,16,0,17,35,99,111,111,107,105,101,83,104,111,114,116,65,108,101,114,116,16,0,22,35,99,111,111,107,105,101,83,104,111,114,116,73,110,102,111,70,111,111,116,101,114,16,0,11,35,99,111,111,107,105,101,83,105,103,110,16,0,15,35,99,111,111,107,105,101,83,105,103,110,112,111,115,116,16,0,17,35,99,111,111,107,105,101,83,105,109,112,108,101,72,105,110,116,16,0,16,35,99,111,111,107,105,101,83,108,105,100,101,114,68,105,118,16,0,16,35,99,111,111,107,105,101,83,111,102,116,79,112,116,73,110,16,0,12,35,99,111,111,107,105,101,83,112,97,99,101,16,0,11,35,99,111,111,107,105,101,83,112,97,110,16,0,13,35,99,111,111,107,105,101,83,112,108,97,115,104,16,0,14,35,99,111,111,107,105,101,83,116,97,110,100,97,114,16,0,19,35,99,111,111,107,105,101,83,116,97,114,116,77,101,115,115,97,103,101,16,0,12,35,99,111,111,107,105,101,83,116,97,116,101,16,0,16,35,99,111,111,107,105,101,83,116,97,116,101,109,101,110,116,16,0,23,35,99,111,111,107,105,101,83,116,97,116,101,109,101,110,116,87,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,83,116,97,116,117,115,16,0,18,35,99,111,111,107,105,101,83,116,105,99,107,121,80,97,110,101,108,16,0,12,35,99,111,111,107,105,101,83,116,114,105,112,16,0,19,35,99,111,111,107,105,101,83,117,104,108,97,115,70,111,111,116,101,114,16,0,14,35,99,111,111,107,105,101,83,117,112,112,111,114,116,16,0,10,35,99,111,111,107,105,101,84,97,98,16,0,9,35,99,111,111,107,105,101,84,100,16,0,13,35,99,111,111,107,105,101,84,101,97,115,101,114,16,0,12,35,99,111,111,107,105,101,84,101,107,115,116,16,0,12,35,99,111,111,107,105,101,84,101,114,109,115,16,0,11,35,99,111,111,107,105,101,84,101,115,116,16,0,11,35,99,111,111,107,105,101,84,105,109,101,16,0,10,35,99,111,111,107,105,101,84,105,112,16,0,11,35,99,111,111,107,105,101,84,105,112,115,16,0,11,35,99,111,111,107,105,101,84,106,101,107,16,0,12,35,99,111,111,107,105,101,84,111,97,115,116,16,0,14,35,99,111,111,107,105,101,84,111,97,115,116,101,114,16,0,18,35,99,111,111,107,105,101,84,111,111,108,87,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,84,111,111,108,98,97,114,16,0,14,35,99,111,111,107,105,101,84,111,111,108,116,105,112,16,0,19,35,99,111,111,107,105,101,84,111,112,67,79,110,116,97,105,110,101,114,16,0,11,35,99,111,111,107,105,101,85,66,97,114,16,0,18,35,99,111,111,107,105,101,85,73,67,111,110,116,97,105,110,101,114,16,0,12,35,99,111,111,107,105,101,85,115,97,103,101,16,0,18,35,99,111,111,107,105,101,85,115,97,103,101,66,97,110,110,101,114,16,0,16,35,99,111,111,107,105,101,85,115,97,103,101,72,105,110,116,16,0,19,35,99,111,111,107,105,101,85,115,97,103,101,77,101,115,115,97,103,101,16,0,24,35,99,111,111,107,105,101,85,115,97,103,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,17,35,99,111,111,107,105,101,85,115,97,103,101,80,111,112,73,110,16,0,17,35,99,111,111,107,105,101,85,115,97,103,101,80,111,112,117,112,16,0,10,35,99,111,111,107,105,101,85,115,101,16,0,19,35,99,111,111,107,105,101,85,115,101,65,103,114,101,101,109,101,110,116,16,0,21,35,99,111,111,107,105,101,85,115,101,73,110,102,111,114,109,97,116,105,111,110,16,0,17,35,99,111,111,107,105,101,85,115,101,87,97,114,110,105,110,103,16,0,27,35,99,111,111,107,105,101,85,115,101,114,65,117,116,104,111,114,105,115,97,116,105,111,110,66,97,114,16,0,24,35,99,111,111,107,105,101,85,115,105,110,103,78,111,116,105,102,105,99,97,116,105,111,110,16,0,20,35,99,111,111,107,105,101,86,97,108,105,100,97,116,111,114,77,97,105,110,16,0,22,35,99,111,111,107,105,101,86,101,114,105,102,105,99,97,116,105,111,110,66,97,114,16,0,11,35,99,111,111,107,105,101,86,105,101,119,16,0,11,35,99,111,111,107,105,101,87,97,108,108,16,0,21,35,99,111,111,107,105,101,87,97,108,108,66,97,99,107,103,114,111,117,110,100,16,0,14,35,99,111,111,107,105,101,87,97,108,108,66,97,114,16,0,16,35,99,111,111,107,105,101,87,97,108,108,77,111,100,97,108,16,0,18,35,99,111,111,107,105,101,87,97,108,108,79,118,101,114,108,97,121,16,0,11,35,99,111,111,107,105,101,87,97,114,110,16,0,14,35,99,111,111,107,105,101,87,97,114,110,66,111,120,16,0,16,35,99,111,111,107,105,101,87,97,114,110,76,97,121,101,114,16,0,14,35,99,111,111,107,105,101,87,97,114,110,105,110,103,16,0,18,35,99,111,111,107,105,101,87,97,114,110,105,110,103,45,80,111,112,16,0,17,35,99,111,111,107,105,101,87,97,114,110,105,110,103,66,111,120,16,0,23,35,99,111,111,107,105,101,87,97,114,110,105,110,103,67,111,110,116,97,105,110,101,114,16,0,17,35,99,111,111,107,105,101,87,97,114,110,105,110,103,68,105,118,16,0,19,35,99,111,111,107,105,101,87,97,114,110,105,110,103,76,97,121,101,114,16,0,20,35,99,111,111,107,105,101,87,97,114,110,105,110,103,76,97,121,111,117,116,16,0,21,35,99,111,111,107,105,101,87,97,114,110,105,110,103,77,101,115,115,97,103,101,16,0,24,35,99,111,111,107,105,101,87,97,114,110,105,110,103,77,101,115,115,97,103,101,78,101,119,16,0,19,35,99,111,111,107,105,101,87,97,114,110,105,110,103,77,111,100,97,108,16,0,19,35,99,111,111,107,105,101,87,97,114,110,105,110,103,80,97,110,101,108,16,0,15,35,99,111,111,107,105,101,87,97,114,110,105,110,103,82,16,0,19,35,99,111,111,107,105,101,87,97,114,110,105,110,103,84,97,98,108,101,16,0,18,35,99,111,111,107,105,101,87,97,114,110,105,110,103,84,101,120,116,16,0,21,35,99,111,111,107,105,101,87,97,114,110,105,110,103,87,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,87,97,114,110,105,110,103,115,16,0,16,35,99,111,111,107,105,101,87,101,116,103,101,118,105,110,103,16,0,13,35,99,111,111,107,105,101,87,105,100,103,101,116,16,0,10,35,99,111,111,107,105,101,87,105,110,16,0,11,35,99,111,111,107,105,101,87,105,110,100,16,0,22,35,99,111,111,107,105,101,87,105,110,100,111,119,67,111,110,116,97,105,110,101,114,16,0,11,35,99,111,111,107,105,101,87,114,97,112,16,0,12,35,99,111,111,107,105,101,87,114,97,112,48,16,0,14,35,99,111,111,107,105,101,87,114,97,112,112,101,114,16,0,26,35,99,111,111,107,105,101,87,114,97,112,112,101,114,87,105,116,104,83,101,116,116,105,110,103,115,16,0,10,35,99,111,111,107,105,101,87,114,112,16,0,11,35,99,111,111,107,105,101,90,111,110,101,16,0,8,35,99,111,111,107,105,101,95,16,0,9,35,99,111,111,107,105,101,95,49,16,0,9,35,99,111,111,107,105,101,95,50,16,0,16,35,99,111,111,107,105,101,95,95,87,114,97,112,112,101,114,16,0,27,35,99,111,111,107,105,101,95,95,97,103,114,101,101,109,101,110,116,95,95,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,95,95,97,108,101,114,116,16,0,15,35,99,111,111,107,105,101,95,95,98,97,110,110,101,114,16,0,12,35,99,111,111,107,105,101,95,95,98,97,114,16,0,12,35,99,111,111,107,105,101,95,95,98,111,120,16,0,15,35,99,111,111,107,105,101,95,95,99,111,111,107,105,101,16,0,16,35,99,111,111,107,105,101,95,95,109,101,115,115,97,103,101,16,0,16,35,99,111,111,107,105,101,95,95,109,111,110,115,116,101,114,16,0,19,35,99,111,111,107,105,101,95,95,112,97,110,101,108,45,104,101,108,112,16,0,15,35,99,111,111,107,105,101,95,95,112,111,112,117,112,49,16,0,16,35,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,16,0,16,35,99,111,111,107,105,101,95,97,99,99,95,119,114,97,112,16,0,14,35,99,111,111,107,105,101,95,97,99,99,101,112,116,16,0,20,35,99,111,111,107,105,101,95,97,99,99,101,112,116,95,97,108,101,114,116,16,0,18,35,99,111,111,107,105,101,95,97,99,99,101,112,116,95,98,97,114,16,0,18,35,99,111,111,107,105,101,95,97,99,99,101,112,116,95,98,111,120,16,0,19,35,99,111,111,107,105,101,95,97,99,99,101,112,116,95,99,111,110,116,16,0,24,35,99,111,111,107,105,101,95,97,99,99,101,112,116,95,99,111,110,116,97,105,110,101,114,16,0,24,35,99,111,111,107,105,101,95,97,99,99,101,112,116,95,109,115,103,95,98,108,111,99,107,16,0,22,35,99,111,111,107,105,101,95,97,99,99,101,112,116,95,115,101,99,116,105,111,110,16,0,19,35,99,111,111,107,105,101,95,97,99,99,101,112,116,97,116,105,111,110,16,0,29,35,99,111,111,107,105,101,95,97,99,99,101,112,116,97,116,105,111,110,95,99,111,110,116,101,110,101,117,114,16,0,20,35,99,111,111,107,105,101,95,97,99,99,101,112,116,101,114,95,100,105,118,16,0,17,35,99,111,111,107,105,101,95,97,99,99,101,112,116,105,111,110,16,0,29,35,99,111,111,107,105,101,95,97,99,99,101,115,115,95,109,101,115,115,97,103,101,95,104,111,108,100,101,114,16,0,11,35,99,111,111,107,105,101,95,97,100,118,16,0,14,35,99,111,111,107,105,101,95,97,100,118,105,99,101,16,0,14,35,99,111,111,107,105,101,95,97,100,118,105,115,101,16,0,13,35,99,111,111,107,105,101,95,97,103,114,101,101,16,0,17,35,99,111,111,107,105,101,95,97,103,114,101,101,109,101,110,116,16,0,13,35,99,111,111,107,105,101,95,97,108,101,114,116,16,0,14,35,99,111,111,107,105,101,95,97,108,101,114,116,50,16,0,17,35,99,111,111,107,105,101,95,97,108,101,114,116,95,98,97,114,16,0,17,35,99,111,111,107,105,101,95,97,108,101,114,116,95,98,111,120,16,0,23,35,99,111,111,107,105,101,95,97,108,101,114,116,95,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,95,97,108,101,114,116,95,99,111,110,116,101,110,116,16,0,21,35,99,111,111,107,105,101,95,97,108,101,114,116,95,100,101,115,107,116,111,112,16,0,17,35,99,111,111,107,105,101,95,97,108,101,114,116,95,100,105,118,16,0,20,35,99,111,111,107,105,101,95,97,108,101,114,116,95,109,111,98,105,108,101,16,0,17,35,99,111,111,107,105,101,95,97,108,108,111,119,95,102,105,120,16,0,16,35,99,111,111,107,105,101,95,97,110,110,111,117,110,99,101,16,0,16,35,99,111,111,107,105,101,95,97,112,112,114,111,118,97,108,16,0,15,35,99,111,111,107,105,101,95,97,112,112,114,111,118,101,16,0,22,35,99,111,111,107,105,101,95,97,112,112,114,111,118,101,95,98,97,110,110,101,114,16,0,16,35,99,111,111,107,105,101,95,97,112,112,114,111,118,101,100,16,0,11,35,99,111,111,107,105,101,95,97,115,107,16,0,14,35,99,111,111,107,105,101,95,97,115,115,101,116,115,16,0,17,35,99,111,111,107,105,101,95,97,115,115,105,115,116,97,110,116,16,0,27,35,99,111,111,107,105,101,95,97,115,115,105,115,116,97,110,116,95,99,111,110,116,97,105,110,101,114,16,0,25,35,99,111,111,107,105,101,95,97,115,115,105,115,116,97,110,116,95,119,114,97,112,112,101,114,16,0,12,35,99,111,111,107,105,101,95,97,117,116,104,16,0,13,35,99,111,111,107,105,101,95,97,118,105,115,111,16,0,17,35,99,111,111,107,105,101,95,97,118,105,115,111,95,98,111,120,16,0,9,35,99,111,111,107,105,101,95,98,16,0,18,35,99,111,111,107,105,101,95,98,97,99,107,103,114,111,117,110,100,16,0,16,35,99,111,111,107,105,101,95,98,97,108,107,95,116,111,112,16,0,15,35,99,111,111,107,105,101,95,98,97,110,100,101,97,117,16,0,13,35,99,111,111,107,105,101,95,98,97,110,101,114,16,0,22,35,99,111,111,107,105,101,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,24,35,99,111,111,107,105,101,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,16,0,30,35,99,111,111,107,105,101,95,98,97,110,110,101,114,95,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,16,0,21,35,99,111,111,107,105,101,95,98,97,110,110,101,114,95,102,111,111,116,101,114,16,0,11,35,99,111,111,107,105,101,95,98,97,114,16,0,25,35,99,111,111,107,105,101,95,98,97,114,95,98,105,103,95,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,95,98,97,114,95,99,111,110,116,97,105,110,101,114,16,0,23,35,99,111,111,107,105,101,95,98,97,114,95,101,100,105,116,95,98,117,116,116,111,110,16,0,15,35,99,111,111,107,105,101,95,98,97,114,95,116,111,112,16,0,14,35,99,111,111,107,105,101,95,98,97,114,95,118,50,16,0,13,35,99,111,111,107,105,101,95,98,97,114,114,101,16,0,12,35,99,111,111,107,105,101,95,98,101,108,116,16,0,10,35,99,111,111,107,105,101,95,98,103,16,0,12,35,99,111,111,107,105,101,95,98,108,111,99,16,0,13,35,99,111,111,107,105,101,95,98,108,111,99,107,16,0,11,35,99,111,111,107,105,101,95,98,110,114,16,0,14,35,99,111,111,107,105,101,95,98,111,116,116,111,109,16,0,18,35,99,111,111,107,105,101,95,98,111,116,116,111,109,95,98,97,114,16,0,11,35,99,111,111,107,105,101,95,98,111,120,16,0,15,35,99,111,111,107,105,101,95,98,111,120,95,98,97,114,16,0,18,35,99,111,111,107,105,101,95,98,111,120,95,104,101,97,100,101,114,16,0,26,35,99,111,111,107,105,101,95,98,111,120,95,104,101,97,100,101,114,95,109,101,115,115,97,103,101,16,0,16,35,99,111,111,107,105,101,95,98,111,120,95,105,110,102,111,16,0,19,35,99,111,111,107,105,101,95,98,111,120,95,111,118,101,114,108,97,121,16,0,15,35,99,111,111,107,105,101,95,99,97,117,116,105,111,110,16,0,14,35,99,111,111,107,105,101,95,99,104,97,110,103,101,16,0,13,35,99,111,111,107,105,101,95,99,104,101,99,107,16,0,19,35,99,111,111,107,105,101,95,99,104,101,99,107,95,109,111,100,97,108,16,0,21,35,99,111,111,107,105,101,95,99,104,101,99,107,95,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,95,99,104,111,105,99,101,16,0,15,35,99,111,111,107,105,101,95,99,104,111,105,99,101,115,16,0,15,35,99,111,111,107,105,101,95,99,108,105,99,107,101,114,16,0,12,35,99,111,111,107,105,101,95,99,110,105,108,16,0,16,35,99,111,111,107,105,101,95,99,110,105,108,95,98,111,120,16,0,15,35,99,111,111,107,105,101,95,99,111,105,110,116,101,114,16,0,18,35,99,111,111,107,105,101,95,99,111,109,112,108,105,97,110,99,101,16,0,11,35,99,111,111,107,105,101,95,99,111,110,16,0,19,35,99,111,111,107,105,101,95,99,111,110,102,95,98,97,110,110,101,114,16,0,15,35,99,111,111,107,105,101,95,99,111,110,102,105,114,109,16,0,18,35,99,111,111,107,105,101,95,99,111,110,102,105,114,109,95,100,118,16,0,20,35,99,111,111,107,105,101,95,99,111,110,102,105,114,109,97,116,105,111,110,16,0,24,35,99,111,111,107,105,101,95,99,111,110,102,105,114,109,97,116,105,111,110,95,98,111,120,16,0,15,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,19,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,52,52,51,53,16,0,22,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,16,0,23,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,108,111,99,107,101,114,16,0,19,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,111,120,16,0,25,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,16,0,25,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,99,111,111,107,105,101,98,97,114,16,0,19,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,100,105,118,16,0,22,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,104,101,97,100,101,114,16,0,23,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,101,115,115,97,103,101,16,0,28,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,21,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,111,117,116,101,114,16,0,23,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,111,118,101,114,108,97,121,16,0,22,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,112,108,97,121,122,111,16,0,21,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,112,111,112,117,112,16,0,20,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,119,97,108,108,16,0,12,35,99,111,111,107,105,101,95,99,111,110,116,16,0,17,35,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,15,35,99,111,111,107,105,101,95,99,111,110,116,101,110,116,16,0,21,35,99,111,111,107,105,101,95,99,111,110,116,114,111,108,95,112,111,112,117,112,16,0,18,35,99,111,111,107,105,101,95,99,111,110,116,114,111,108,108,101,114,16,0,14,35,99,111,111,107,105,101,95,99,111,111,107,105,101,16,0,14,35,99,111,111,107,105,101,95,99,117,115,116,111,109,16,0,19,35,99,111,111,107,105,101,95,100,97,116,101,110,115,99,104,117,116,122,16,0,15,35,99,111,111,107,105,101,95,100,101,99,108,105,110,101,16,0,15,35,99,111,111,107,105,101,95,100,101,115,107,116,111,112,16,0,14,35,99,111,111,107,105,101,95,100,105,97,108,111,103,16,0,19,35,99,111,111,107,105,101,95,100,105,97,108,111,103,95,119,114,97,112,16,0,17,35,99,111,111,107,105,101,95,100,105,114,101,99,116,105,118,101,16,0,27,35,99,111,111,107,105,101,95,100,105,114,101,99,116,105,118,101,95,99,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,16,0,28,35,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,95,99,111,110,116,97,105,110,101,114,16,0,26,35,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,95,119,114,97,112,112,101,114,16,0,11,35,99,111,111,107,105,101,95,100,105,118,16,0,22,35,99,111,111,107,105,101,95,100,114,111,112,95,99,111,110,116,97,105,110,101,114,16,0,10,35,99,111,111,107,105,101,95,101,117,16,0,14,35,99,111,111,107,105,101,95,101,117,95,98,97,114,16,0,16,35,99,111,111,107,105,101,95,101,117,95,114,101,99,104,116,16,0,17,35,99,111,111,107,105,101,95,101,120,105,116,95,102,111,114,109,16,0,11,35,99,111,111,107,105,101,95,101,120,112,16,0,14,35,99,111,111,107,105,101,95,102,97,115,99,105,97,16,0,22,35,99,111,111,107,105,101,95,102,105,103,121,101,108,109,101,122,116,101,116,101,115,16,0,14,35,99,111,111,107,105,101,95,102,111,111,116,101,114,16,0,13,35,99,111,111,107,105,101,95,102,114,97,109,101,16,0,12,35,99,111,111,107,105,101,95,103,100,112,114,16,0,23,35,99,111,111,107,105,101,95,103,108,100,95,99,111,111,107,105,101,95,102,108,97,103,16,0,20,35,99,111,111,107,105,101,95,103,117,105,100,97,115,101,114,118,105,122,105,16,0,20,35,99,111,111,107,105,101,95,103,117,105,100,108,105,110,101,95,98,111,120,16,0,21,35,99,111,111,107,105,101,95,104,100,114,95,115,104,111,119,97,103,97,105,110,16,0,14,35,99,111,111,107,105,101,95,104,101,97,100,101,114,16,0,18,35,99,111,111,107,105,101,95,104,101,97,100,101,114,95,116,111,112,16,0,17,35,99,111,111,107,105,101,95,104,101,97,100,101,114,116,111,112,16,0,12,35,99,111,111,107,105,101,95,104,105,110,116,16,0,15,35,99,111,111,107,105,101,95,104,105,110,119,101,105,115,16,0,14,35,99,111,111,107,105,101,95,104,111,108,100,101,114,16,0,14,35,99,111,111,107,105,101,95,105,97,103,114,101,101,16,0,10,35,99,111,111,107,105,101,95,105,100,16,0,16,35,99,111,111,107,105,101,95,105,108,109,111,105,116,117,115,16,0,21,35,99,111,111,107,105,101,95,105,108,109,111,105,116,117,115,95,50,48,50,48,16,0,29,35,99,111,111,107,105,101,95,105,108,109,111,105,116,117,115,95,50,48,50,48,95,111,118,101,114,108,97,121,16,0,12,35,99,111,111,107,105,101,95,105,110,102,111,16,0,16,35,99,111,111,107,105,101,95,105,110,102,111,45,98,97,114,16,0,18,35,99,111,111,107,105,101,95,105,110,102,111,95,97,103,114,101,101,16,0,17,35,99,111,111,107,105,101,95,105,110,102,111,95,97,114,101,97,16,0,16,35,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,16,0,18,35,99,111,111,107,105,101,95,105,110,102,111,95,98,108,111,99,107,16,0,16,35,99,111,111,107,105,101,95,105,110,102,111,95,98,111,120,16,0,18,35,99,111,111,107,105,101,95,105,110,102,111,95,98,114,101,118,101,16,0,22,35,99,111,111,107,105,101,95,105,110,102,111,95,99,111,110,116,97,105,110,101,114,16,0,16,35,99,111,111,107,105,101,95,105,110,102,111,95,100,105,118,16,0,20,35,99,111,111,107,105,101,95,105,110,102,111,95,109,101,115,115,97,103,101,16,0,21,35,99,111,111,107,105,101,95,105,110,102,111,95,114,101,115,112,111,110,115,101,16,0,22,35,99,111,111,107,105,101,95,105,110,102,111,95,115,116,97,114,116,112,97,103,101,16,0,19,35,99,111,111,107,105,101,95,105,110,102,111,95,116,111,112,78,97,118,16,0,16,35,99,111,111,107,105,101,95,105,110,102,111,95,116,120,116,16,0,19,35,99,111,111,107,105,101,95,105,110,102,111,95,119,105,110,100,111,119,16,0,20,35,99,111,111,107,105,101,95,105,110,102,111,95,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,95,105,110,102,111,98,111,120,16,0,14,35,99,111,111,107,105,101,95,105,110,102,111,114,109,16,0,19,35,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,16,0,25,35,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,95,98,108,111,99,107,16,0,23,35,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,95,98,111,120,16,0,27,35,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,95,111,118,101,114,108,97,121,16,0,23,35,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,118,97,95,101,115,100,16,0,19,35,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,118,101,16,0,16,35,99,111,111,107,105,101,95,105,110,102,111,114,109,101,114,16,0,14,35,99,111,111,107,105,101,95,105,110,106,101,99,116,16,0,19,35,99,111,111,107,105,101,95,105,110,108,105,110,101,95,102,111,114,109,16,0,22,35,99,111,111,107,105,101,95,105,116,95,98,97,114,95,119,114,97,112,112,101,114,16,0,21,35,99,111,111,107,105,101,95,106,97,114,95,99,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,95,107,101,117,122,101,115,16,0,15,35,99,111,111,107,105,101,95,107,101,122,101,108,101,115,16,0,11,35,99,111,111,107,105,101,95,108,97,119,16,0,18,35,99,111,111,107,105,101,95,108,97,119,45,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,95,108,97,119,95,97,100,118,105,99,101,16,0,18,35,99,111,111,107,105,101,95,108,97,119,95,98,97,110,110,101,114,16,0,15,35,99,111,111,107,105,101,95,108,97,119,95,98,111,120,16,0,22,35,99,111,111,107,105,101,95,108,97,119,95,99,111,109,112,108,105,97,110,99,101,16,0,21,35,99,111,111,107,105,101,95,108,97,119,95,99,111,110,116,97,105,110,101,114,16,0,19,35,99,111,111,107,105,101,95,108,97,119,95,100,105,97,108,111,103,50,16,0,14,35,99,111,111,107,105,101,95,108,97,119,95,105,100,16,0,16,35,99,111,111,107,105,101,95,108,97,119,95,105,110,102,111,16,0,24,35,99,111,111,107,105,101,95,108,97,119,95,105,110,102,111,114,109,97,116,105,111,110,115,16,0,19,35,99,111,111,107,105,101,95,108,97,119,95,109,101,115,115,97,103,101,16,0,18,35,99,111,111,107,105,101,95,108,97,119,95,109,111,98,105,108,101,16,0,15,35,99,111,111,107,105,101,95,108,97,119,95,109,115,103,16,0,18,35,99,111,111,107,105,101,95,108,97,119,95,110,111,116,105,99,101,16,0,28,35,99,111,111,107,105,101,95,108,97,119,95,110,111,116,105,99,101,95,99,111,110,116,97,105,110,101,114,16,0,24,35,99,111,111,107,105,101,95,108,97,119,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,19,35,99,111,111,107,105,101,95,108,97,119,95,119,97,114,110,105,110,103,16,0,13,35,99,111,111,107,105,101,95,108,97,121,101,114,16,0,21,35,99,111,111,107,105,101,95,108,97,121,101,114,95,119,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,95,108,101,103,97,108,16,0,21,35,99,111,111,107,105,101,95,108,101,103,97,108,95,100,105,115,112,108,97,121,16,0,14,35,99,111,111,107,105,101,95,108,101,105,115,116,101,16,0,14,35,99,111,111,107,105,101,95,108,101,118,101,108,48,16,0,14,35,99,111,111,107,105,101,95,108,101,118,101,108,49,16,0,16,35,99,111,111,107,105,101,95,108,105,103,104,116,98,111,120,16,0,18,35,99,111,111,107,105,101,95,109,97,105,110,95,98,108,111,99,107,16,0,11,35,99,111,111,107,105,101,95,109,97,110,16,0,24,35,99,111,111,107,105,101,95,109,97,110,97,103,101,95,99,111,110,116,97,105,110,101,114,16,0,25,35,99,111,111,107,105,101,95,109,97,110,97,103,101,109,101,110,116,95,104,101,97,100,101,114,16,0,28,35,99,111,111,107,105,101,95,109,97,110,97,103,101,114,95,98,111,100,121,95,111,118,101,114,108,97,121,16,0,12,35,99,111,111,107,105,101,95,109,97,115,107,16,0,15,35,99,111,111,107,105,101,95,109,101,108,100,105,110,103,16,0,16,35,99,111,111,107,105,101,95,109,101,110,115,97,103,101,109,16,0,12,35,99,111,111,107,105,101,95,109,101,115,115,16,0,15,35,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,25,35,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,16,0,22,35,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,104,111,108,100,101,114,16,0,30,35,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,119,101,98,115,105,116,101,95,112,111,108,105,99,121,16,0,13,35,99,111,111,107,105,101,95,109,111,100,97,108,16,0,23,35,99,111,111,107,105,101,95,109,111,100,97,108,95,99,111,110,116,97,105,110,101,114,16,0,17,35,99,111,111,107,105,101,95,109,111,100,97,108,95,100,105,118,16,0,21,35,99,111,111,107,105,101,95,109,111,100,97,108,95,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,95,109,111,100,117,108,101,16,0,15,35,99,111,111,107,105,101,95,109,111,110,115,116,101,114,16,0,10,35,99,111,111,107,105,101,95,109,115,16,0,11,35,99,111,111,107,105,101,95,109,115,103,16,0,13,35,99,111,111,107,105,101,95,109,115,103,95,50,16,0,21,35,99,111,111,107,105,101,95,109,115,103,95,99,111,110,116,97,105,110,101,114,16,0,11,35,99,111,111,107,105,101,95,109,115,110,16,0,11,35,99,111,111,107,105,101,95,110,97,118,16,0,14,35,99,111,111,107,105,101,95,110,97,118,98,97,114,16,0,12,35,99,111,111,107,105,101,95,110,111,116,101,16,0,16,35,99,111,111,107,105,101,95,110,111,116,101,95,100,105,118,16,0,17,35,99,111,111,107,105,101,95,110,111,116,101,95,118,111,108,108,16,0,12,35,99,111,111,107,105,101,95,110,111,116,105,16,0,14,35,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,18,35,99,111,111,107,105,101,95,110,111,116,105,99,101,95,98,97,114,16,0,22,35,99,111,111,107,105,101,95,110,111,116,105,99,101,95,100,101,115,107,116,111,112,16,0,22,35,99,111,111,107,105,101,95,110,111,116,105,99,101,95,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,95,110,111,116,105,99,101,115,16,0,13,35,99,111,111,107,105,101,95,110,111,116,105,102,16,0,20,35,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,24,35,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,98,97,114,16,0,30,35,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,110,116,97,105,110,101,114,16,0,25,35,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,119,114,97,112,16,0,16,35,99,111,111,107,105,101,95,110,111,116,105,102,105,101,114,16,0,14,35,99,111,111,107,105,101,95,110,111,116,105,102,121,16,0,10,35,99,111,111,107,105,101,95,111,107,16,0,11,35,99,111,111,107,105,101,95,111,107,49,16,0,11,35,99,111,111,107,105,101,95,111,112,116,16,0,14,35,99,111,111,107,105,101,95,111,112,116,95,105,110,16,0,21,35,99,111,111,107,105,101,95,111,112,116,95,105,110,95,97,110,99,104,111,114,16,0,24,35,99,111,111,107,105,101,95,111,112,116,95,105,110,95,99,111,110,116,97,105,110,101,114,16,0,13,35,99,111,111,107,105,101,95,111,112,116,105,110,16,0,18,35,99,111,111,107,105,101,95,111,112,116,105,110,95,98,97,99,107,16,0,19,35,99,111,111,107,105,101,95,111,112,116,105,110,95,108,97,121,101,114,16,0,15,35,99,111,111,107,105,101,95,111,118,101,114,108,97,121,16,0,13,35,99,111,111,107,105,101,95,112,97,110,101,108,16,0,18,35,99,111,111,107,105,101,95,112,97,110,101,108,95,50,48,49,56,16,0,14,35,99,111,111,107,105,101,95,112,97,114,101,110,116,16,0,18,35,99,111,111,107,105,101,95,112,101,114,109,105,115,115,105,111,110,16,0,25,35,99,111,111,107,105,101,95,112,101,114,109,105,115,115,105,111,110,95,98,97,110,110,101,114,16,0,25,35,99,111,111,107,105,101,95,112,101,114,109,105,115,115,105,111,110,115,95,97,108,101,114,116,16,0,14,35,99,111,111,107,105,101,95,112,101,114,109,105,116,16,0,11,35,99,111,111,107,105,101,95,112,111,108,16,0,16,35,99,111,111,107,105,101,95,112,111,108,105,99,105,101,115,16,0,14,35,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,16,35,99,111,111,107,105,101,95,112,111,108,105,99,121,45,48,16,0,21,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,97,99,99,101,112,116,16,0,20,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,97,108,101,114,116,16,0,21,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,97,110,110,101,114,16,0,29,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,97,110,110,101,114,95,119,114,97,112,112,101,114,16,0,18,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,97,114,16,0,18,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,111,120,16,0,20,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,99,104,101,99,107,16,0,24,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,99,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,100,105,118,16,0,21,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,104,111,108,100,101,114,16,0,20,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,108,97,121,101,114,16,0,22,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,109,101,115,115,97,103,101,16,0,32,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,109,111,100,97,108,16,0,18,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,109,115,103,16,0,21,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,110,111,116,105,99,101,16,0,22,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,111,118,101,114,108,97,121,16,0,20,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,112,111,112,117,112,16,0,17,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,112,117,16,0,19,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,114,103,112,100,16,0,16,35,99,111,111,107,105,101,95,112,111,108,105,116,105,99,115,16,0,24,35,99,111,111,107,105,101,95,112,111,108,105,116,105,99,115,95,111,118,101,114,108,97,121,16,0,11,35,99,111,111,107,105,101,95,112,111,112,16,0,24,35,99,111,111,107,105,101,95,112,111,112,105,110,95,105,116,115,97,112,95,104,111,109,101,16,0,27,35,99,111,111,107,105,101,95,112,111,112,105,110,95,105,116,115,97,112,95,111,118,101,114,108,97,121,16,0,25,35,99,111,111,107,105,101,95,112,111,112,111,118,101,114,95,99,111,110,116,97,105,110,101,114,16,0,13,35,99,111,111,107,105,101,95,112,111,112,117,112,16,0,19,35,99,111,111,107,105,101,95,112,111,112,117,112,95,97,108,101,114,116,16,0,24,35,99,111,111,107,105,101,95,112,111,112,117,112,95,98,97,99,107,103,114,111,117,110,100,16,0,16,35,99,111,111,107,105,101,95,112,111,112,117,112,95,98,103,16,0,23,35,99,111,111,107,105,101,95,112,111,112,117,112,95,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,95,112,111,112,117,112,95,111,118,101,114,108,97,121,16,0,21,35,99,111,111,107,105,101,95,112,111,112,117,112,95,119,114,97,112,112,101,114,16,0,31,35,99,111,111,107,105,101,95,112,114,101,102,101,114,101,110,99,101,115,95,98,97,110,110,101,114,95,114,111,111,116,16,0,20,35,99,111,111,107,105,101,95,112,114,101,102,115,95,98,117,109,112,101,114,16,0,16,35,99,111,111,107,105,101,95,112,114,105,118,95,100,105,118,16,0,15,35,99,111,111,107,105,101,95,112,114,105,118,97,99,121,16,0,19,35,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,98,97,114,16,0,19,35,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,98,111,120,16,0,22,35,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,104,111,108,100,101,114,16,0,24,35,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,105,110,102,111,95,98,97,114,16,0,21,35,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,112,111,112,117,112,16,0,15,35,99,111,111,107,105,101,95,112,114,105,118,97,116,101,16,0,14,35,99,111,111,107,105,101,95,112,114,111,109,112,116,16,0,21,35,99,111,111,107,105,101,95,112,117,112,117,112,95,99,111,110,102,105,114,109,16,0,16,35,99,111,111,107,105,101,95,113,117,101,115,116,105,111,110,16,0,14,35,99,111,111,107,105,101,95,114,101,118,111,107,101,16,0,14,35,99,111,111,107,105,101,95,114,105,98,98,111,110,16,0,18,35,99,111,111,107,105,101,95,114,105,99,104,116,108,105,110,105,101,16,0,14,35,99,111,111,107,105,101,95,115,99,114,105,112,116,16,0,15,35,99,111,111,107,105,101,95,115,101,99,116,105,111,110,16,0,18,35,99,111,111,107,105,101,95,115,101,116,95,97,99,99,101,112,116,16,0,22,35,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,95,109,111,100,97,108,16,0,13,35,99,111,111,107,105,101,95,115,104,111,114,116,16,0,18,35,99,111,111,107,105,101,95,115,104,111,114,116,95,105,110,102,111,16,0,13,35,99,111,111,107,105,101,95,115,104,111,117,116,16,0,17,35,99,111,111,107,105,101,95,115,104,111,119,95,105,110,102,111,16,0,13,35,99,111,111,107,105,101,95,115,104,111,119,110,16,0,19,35,99,111,111,107,105,101,95,115,111,117,104,108,97,115,95,100,105,118,16,0,17,35,99,111,111,107,105,101,95,115,116,97,116,101,109,101,110,116,16,0,11,35,99,111,111,107,105,101,95,115,116,114,16,0,13,35,99,111,111,107,105,101,95,115,116,114,105,112,16,0,13,35,99,111,111,107,105,101,95,115,116,117,102,102,16,0,16,35,99,111,111,107,105,101,95,116,97,98,95,109,97,105,110,16,0,19,35,99,111,111,107,105,101,95,116,97,106,101,107,111,122,116,97,116,111,16,0,13,35,99,111,111,107,105,101,95,116,101,114,109,115,16,0,17,35,99,111,111,107,105,101,95,116,101,114,109,115,95,100,105,118,16,0,12,35,99,111,111,107,105,101,95,116,101,120,116,16,0,19,35,99,111,111,107,105,101,95,116,101,120,116,95,104,101,97,100,101,114,16,0,18,35,99,111,111,107,105,101,95,116,111,111,108,95,108,97,114,103,101,16,0,18,35,99,111,111,107,105,101,95,116,111,111,108,95,115,109,97,108,108,16,0,15,35,99,111,111,107,105,101,95,116,111,111,108,98,97,114,16,0,11,35,99,111,111,107,105,101,95,116,111,112,16,0,16,35,99,111,111,107,105,101,95,116,111,112,95,105,110,102,111,16,0,14,35,99,111,111,107,105,101,95,116,111,112,100,105,118,16,0,11,35,99,111,111,107,105,101,95,116,120,116,16,0,17,35,99,111,111,107,105,101,95,117,112,112,101,114,95,100,105,118,16,0,13,35,99,111,111,107,105,101,95,117,115,97,103,101,16,0,20,35,99,111,111,107,105,101,95,117,115,97,103,101,95,98,97,110,110,101,114,16,0,26,35,99,111,111,107,105,101,95,117,115,97,103,101,95,99,111,110,116,97,105,110,101,114,95,105,100,16,0,14,35,99,111,111,107,105,101,95,117,115,116,97,119,97,16,0,13,35,99,111,111,107,105,101,95,118,97,108,105,100,16,0,12,35,99,111,111,107,105,101,95,119,97,114,110,16,0,17,35,99,111,111,107,105,101,95,119,97,114,110,95,116,101,120,116,16,0,15,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,16,0,20,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,97,114,101,97,16,0,25,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,99,111,110,116,97,105,110,101,114,16,0,23,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,99,111,110,116,101,110,116,16,0,19,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,100,105,118,16,0,41,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,110,111,116,105,102,105,99,97,116,105,111,110,95,78,79,84,73,70,73,67,65,84,73,79,78,16,0,29,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,111,117,116,101,114,95,119,114,97,112,112,101,114,16,0,23,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,111,118,101,114,108,97,121,16,0,24,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,117,110,100,101,114,108,97,121,16,0,15,35,99,111,111,107,105,101,95,119,97,114,110,117,110,103,16,0,14,35,99,111,111,107,105,101,95,119,105,100,103,101,116,16,0,12,35,99,111,111,107,105,101,95,119,114,97,112,16,0,15,35,99,111,111,107,105,101,95,119,114,97,112,112,101,114,16,0,16,35,99,111,111,107,105,101,95,119,114,97,112,112,101,114,50,16,0,16,35,99,111,111,107,105,101,95,121,101,115,95,105,110,102,111,16,0,18,35,99,111,111,107,105,101,95,122,117,115,116,105,109,109,117,110,103,16,0,15,35,99,111,111,107,105,101,97,95,104,101,97,100,101,114,16,0,14,35,99,111,111,107,105,101,97,98,102,114,97,103,101,16,0,13,35,99,111,111,107,105,101,97,99,99,101,112,116,16,0,17,35,99,111,111,107,105,101,97,99,99,101,112,116,97,110,99,101,16,0,15,35,99,111,111,107,105,101,97,99,99,101,112,116,101,114,16,0,18,35,99,111,111,107,105,101,97,99,99,101,112,116,108,97,121,101,114,16,0,10,35,99,111,111,107,105,101,97,100,100,16,0,10,35,99,111,111,107,105,101,97,100,118,16,0,13,35,99,111,111,107,105,101,97,100,118,105,99,101,16,0,13,35,99,111,111,107,105,101,97,100,118,105,115,101,16,0,12,35,99,111,111,107,105,101,97,103,114,101,101,16,0,12,35,99,111,111,107,105,101,97,108,97,114,109,16,0,12,35,99,111,111,107,105,101,97,108,101,114,116,16,0,16,35,99,111,111,107,105,101,97,108,101,114,116,45,105,98,101,16,0,15,35,99,111,111,107,105,101,97,108,101,114,116,77,115,103,16,0,22,35,99,111,111,107,105,101,97,108,101,114,116,95,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,97,108,101,114,116,95,99,111,110,116,101,110,116,16,0,15,35,99,111,111,107,105,101,97,108,101,114,116,114,111,119,16,0,16,35,99,111,111,107,105,101,97,108,101,114,116,119,114,97,112,16,0,15,35,99,111,111,107,105,101,97,108,108,111,119,98,97,114,16,0,11,35,99,111,111,107,105,101,97,114,101,97,16,0,10,35,99,111,111,107,105,101,97,115,107,16,0,12,35,99,111,111,107,105,101,97,118,105,115,111,16,0,15,35,99,111,111,107,105,101,97,118,105,115,111,105,110,105,16,0,15,35,99,111,111,107,105,101,98,45,98,97,110,110,101,114,16,0,11,35,99,111,111,107,105,101,98,97,99,107,16,0,17,35,99,111,111,107,105,101,98,97,99,107,103,114,111,117,110,100,16,0,11,35,99,111,111,107,105,101,98,97,108,107,16,0,16,35,99,111,111,107,105,101,98,97,108,107,45,119,114,97,112,16,0,14,35,99,111,111,107,105,101,98,97,110,100,101,97,117,16,0,13,35,99,111,111,107,105,101,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,98,97,110,110,101,114,45,109,97,115,107,16,0,21,35,99,111,111,107,105,101,98,97,110,110,101,114,45,111,118,101,114,108,97,121,16,0,18,35,99,111,111,107,105,101,98,97,110,110,101,114,45,114,111,111,116,16,0,21,35,99,111,111,107,105,101,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,24,35,99,111,111,107,105,101,98,97,110,110,101,114,45,119,114,97,112,112,101,114,45,105,100,16,0,15,35,99,111,111,107,105,101,98,97,110,110,101,114,65,72,16,0,20,35,99,111,111,107,105,101,98,97,110,110,101,114,79,118,101,114,108,97,121,16,0,17,35,99,111,111,107,105,101,98,97,110,110,101,114,95,99,111,110,16,0,21,35,99,111,111,107,105,101,98,97,110,110,101,114,95,111,118,101,114,108,97,121,16,0,21,35,99,111,111,107,105,101,98,97,110,110,101,114,95,119,114,97,112,112,101,114,16,0,22,35,99,111,111,107,105,101,98,97,110,110,101,114,99,111,110,116,97,105,110,101,114,16,0,16,35,99,111,111,107,105,101,98,97,110,110,101,114,100,105,118,16,0,10,35,99,111,111,107,105,101,98,97,114,16,0,21,35,99,111,111,107,105,101,98,97,114,45,45,99,111,110,116,97,105,110,101,114,16,0,12,35,99,111,111,107,105,101,98,97,114,45,49,16,0,20,35,99,111,111,107,105,101,98,97,114,45,99,111,110,116,97,105,110,101,114,16,0,23,35,99,111,111,107,105,101,98,97,114,45,99,111,111,107,105,101,112,111,108,105,99,121,16,0,15,35,99,111,111,107,105,101,98,97,114,45,112,101,114,109,16,0,15,35,99,111,111,107,105,101,98,97,114,45,114,111,111,116,16,0,15,35,99,111,111,107,105,101,98,97,114,45,119,114,97,112,16,0,18,35,99,111,111,107,105,101,98,97,114,45,119,114,97,112,112,101,114,16,0,12,35,99,111,111,107,105,101,98,97,114,49,56,16,0,13,35,99,111,111,107,105,101,98,97,114,66,111,120,16,0,15,35,99,111,111,107,105,101,98,97,114,77,111,100,97,108,16,0,20,35,99,111,111,107,105,101,98,97,114,95,99,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,98,97,114,95,99,111,110,116,101,110,116,16,0,21,35,99,111,111,107,105,101,98,97,114,95,112,108,97,121,110,97,116,105,111,110,16,0,18,35,99,111,111,107,105,101,98,97,114,95,119,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,98,97,114,99,110,116,16,0,19,35,99,111,111,107,105,101,98,97,114,99,111,110,116,97,105,110,101,114,16,0,12,35,99,111,111,107,105,101,98,97,114,114,97,16,0,14,35,99,111,111,107,105,101,98,101,114,105,99,104,116,16,0,9,35,99,111,111,107,105,101,98,103,16,0,12,35,99,111,111,107,105,101,98,108,97,99,107,16,0,12,35,99,111,111,107,105,101,98,108,111,99,107,16,0,12,35,99,111,111,107,105,101,98,108,111,107,107,16,0,10,35,99,111,111,107,105,101,98,110,114,16,0,10,35,99,111,111,107,105,101,98,111,116,16,0,13,35,99,111,111,107,105,101,98,111,116,116,111,109,16,0,16,35,99,111,111,107,105,101,98,111,116,116,111,109,98,97,114,16,0,21,35,99,111,111,107,105,101,98,111,116,116,111,109,103,114,97,100,105,101,110,116,16,0,10,35,99,111,111,107,105,101,98,111,120,16,0,13,35,99,111,111,107,105,101,98,111,120,45,98,103,16,0,18,35,99,111,111,107,105,101,98,111,120,45,119,114,97,112,112,101,114,16,0,11,35,99,111,111,107,105,101,98,111,120,77,16,0,14,35,99,111,111,107,105,101,98,117,116,116,111,110,115,16,0,12,35,99,111,111,107,105,101,99,104,101,99,107,16,0,14,35,99,111,111,107,105,101,99,104,101,99,107,101,114,16,0,13,35,99,111,111,107,105,101,99,104,111,105,99,101,16,0,17,35,99,111,111,107,105,101,99,104,111,105,99,101,105,110,102,111,16,0,21,35,99,111,111,107,105,101,99,108,97,105,109,95,105,110,102,111,95,98,97,114,16,0,21,35,99,111,111,107,105,101,99,108,97,105,109,95,105,110,102,111,95,98,111,120,16,0,20,35,99,111,111,107,105,101,99,108,97,105,109,95,111,118,101,114,108,97,121,16,0,11,35,99,111,111,107,105,101,99,110,105,108,16,0,17,35,99,111,111,107,105,101,99,111,109,112,108,105,97,110,99,101,16,0,17,35,99,111,111,107,105,101,99,111,109,112,108,105,101,110,99,101,16,0,14,35,99,111,111,107,105,101,99,111,110,102,105,114,109,16,0,11,35,99,111,111,107,105,101,99,111,110,115,16,0,14,35,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,24,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,98,97,99,107,108,97,121,101,114,16,0,21,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,17,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,98,103,16,0,24,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,16,0,32,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,45,45,115,105,109,112,108,101,16,0,21,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,100,105,97,108,111,103,16,0,31,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,101,120,112,108,105,99,105,116,45,111,118,101,114,108,97,121,16,0,29,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,101,120,112,108,105,99,105,116,45,112,111,112,117,112,16,0,20,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,102,114,97,109,101,16,0,29,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,105,109,112,108,105,99,105,116,45,112,111,112,117,112,16,0,22,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,16,0,20,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,112,111,112,117,112,16,0,21,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,115,116,105,99,107,121,16,0,21,35,99,111,111,107,105,101,99,111,110,115,101,110,116,95,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,99,111,110,115,101,110,116,95,98,97,114,16,0,24,35,99,111,111,107,105,101,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,99,111,110,115,101,110,116,95,100,105,97,108,111,103,16,0,19,35,99,111,111,107,105,101,99,111,110,115,101,110,116,95,116,101,120,116,16,0,20,35,99,111,111,107,105,101,99,111,110,115,101,110,116,95,116,111,97,115,116,16,0,17,35,99,111,111,107,105,101,99,111,110,115,101,110,116,98,97,114,16,0,17,35,99,111,111,107,105,101,99,111,110,115,101,110,116,98,111,120,16,0,21,35,99,111,111,107,105,101,99,111,110,115,101,110,116,102,111,114,109,98,111,120,16,0,23,35,99,111,111,107,105,101,99,111,110,115,101,110,116,103,114,101,121,115,112,97,99,101,16,0,19,35,99,111,111,107,105,101,99,111,110,115,101,110,116,109,111,100,97,108,16,0,19,35,99,111,111,107,105,101,99,111,110,115,101,110,116,112,111,112,117,112,16,0,16,35,99,111,111,107,105,101,99,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,99,111,110,116,101,110,116,16,0,14,35,99,111,111,107,105,101,99,111,110,116,114,111,108,16,0,21,35,99,111,111,107,105,101,99,111,110,116,114,111,108,95,110,111,116,105,99,101,16,0,11,35,99,111,111,107,105,101,99,114,97,112,16,0,18,35,99,111,111,107,105,101,100,101,99,108,97,114,97,116,105,111,110,16,0,14,35,99,111,111,107,105,101,100,101,115,107,116,111,112,16,0,16,35,99,111,111,107,105,101,100,101,116,101,99,116,105,111,110,16,0,13,35,99,111,111,107,105,101,100,105,97,108,111,103,16,0,16,35,99,111,111,107,105,101,100,105,97,108,111,103,98,111,120,16,0,12,35,99,111,111,107,105,101,100,105,110,103,115,16,0,16,35,99,111,111,107,105,101,100,105,110,103,115,98,117,109,115,16,0,31,35,99,111,111,107,105,101,100,105,114,101,99,116,105,118,101,66,117,116,116,111,110,67,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,100,105,115,97,108,108,111,119,45,119,114,97,112,16,0,22,35,99,111,111,107,105,101,100,105,115,97,108,108,111,119,111,118,101,114,108,97,121,16,0,11,35,99,111,111,107,105,101,100,105,115,99,16,0,17,35,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,16,0,21,35,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,50,48,50,50,16,0,17,35,99,111,111,107,105,101,100,105,115,99,108,111,115,117,114,101,16,0,14,35,99,111,111,107,105,101,100,105,115,109,105,115,115,16,0,10,35,99,111,111,107,105,101,100,105,118,16,0,14,35,99,111,111,107,105,101,101,95,97,108,101,114,116,16,0,13,35,99,111,111,107,105,101,102,97,115,99,105,97,16,0,11,35,99,111,111,107,105,101,102,101,108,100,16,0,14,35,99,111,111,107,105,101,102,101,110,115,116,101,114,16,0,12,35,99,111,111,107,105,101,102,108,111,97,116,16,0,14,35,99,111,111,107,105,101,102,108,111,97,116,101,114,16,0,10,35,99,111,111,107,105,101,102,109,116,16,0,11,35,99,111,111,107,105,101,102,111,111,116,16,0,13,35,99,111,111,107,105,101,102,111,111,116,101,114,16,0,11,35,99,111,111,107,105,101,102,111,114,109,16,0,14,35,99,111,111,107,105,101,102,111,114,109,100,105,118,16,0,12,35,99,111,111,107,105,101,102,114,97,103,101,16,0,13,35,99,111,111,107,105,101,102,121,95,98,97,114,16,0,10,35,99,111,111,107,105,101,103,97,112,16,0,11,35,99,111,111,107,105,101,103,100,112,114,16,0,13,35,99,111,111,107,105,101,103,108,111,98,97,108,16,0,24,35,99,111,111,107,105,101,103,117,105,100,101,108,105,110,101,45,119,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,104,101,97,100,101,114,16,0,11,35,99,111,111,107,105,101,104,105,110,116,16,0,11,35,99,111,111,107,105,101,104,105,110,119,16,0,27,35,99,111,111,107,105,101,104,105,110,119,101,105,115,32,62,32,46,122,101,110,116,114,105,101,114,116,16,0,22,35,99,111,111,107,105,101,104,105,110,119,101,105,115,45,119,114,97,112,112,101,114,16,0,20,35,99,111,111,107,105,101,104,105,110,119,101,105,115,46,97,108,101,114,116,16,0,30,35,99,111,111,107,105,101,104,105,110,119,101,105,115,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,16,0,23,35,99,111,111,107,105,101,104,105,110,119,101,105,115,46,106,115,45,97,107,116,105,118,16,0,22,35,99,111,111,107,105,101,104,105,110,119,101,105,115,46,121,109,45,103,114,105,100,16,0,25,35,99,111,111,107,105,101,104,105,110,119,101,105,115,98,111,120,95,119,114,97,112,112,101,114,16,0,21,35,99,111,111,107,105,101,104,105,110,119,101,105,115,98,111,120,98,97,99,107,16,0,17,35,99,111,111,107,105,101,104,105,110,119,101,105,115,100,105,118,16,0,13,35,99,111,111,107,105,101,104,111,108,100,101,114,16,0,11,35,99,111,111,107,105,101,104,117,104,117,16,0,17,35,99,111,111,107,105,101,105,100,46,99,111,111,107,105,101,115,16,0,10,35,99,111,111,107,105,101,105,102,121,16,0,11,35,99,111,111,107,105,101,105,110,102,111,16,0,22,35,99,111,111,107,105,101,105,110,102,111,45,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,105,110,102,111,45,99,111,110,116,97,105,110,101,114,16,0,12,35,99,111,111,107,105,101,105,110,102,111,49,16,0,12,35,99,111,111,107,105,101,105,110,102,111,50,16,0,16,35,99,111,111,107,105,101,105,110,102,111,66,108,97,99,107,16,0,15,35,99,111,111,107,105,101,105,110,102,111,95,116,120,116,16,0,19,35,99,111,111,107,105,101,105,110,102,111,95,120,99,111,111,107,105,101,16,0,14,35,99,111,111,107,105,101,105,110,102,111,98,97,114,16,0,14,35,99,111,111,107,105,101,105,110,102,111,98,111,120,16,0,18,35,99,111,111,107,105,101,105,110,102,111,98,111,120,45,98,111,120,16,0,18,35,99,111,111,107,105,101,105,110,102,111,114,109,97,116,105,111,110,16,0,21,35,99,111,111,107,105,101,105,110,102,111,114,109,97,116,105,111,110,98,97,114,16,0,15,35,99,111,111,107,105,101,105,110,102,111,116,101,120,116,16,0,10,35,99,111,111,107,105,101,106,97,114,16,0,26,35,99,111,111,107,105,101,106,97,114,99,111,110,115,101,110,116,102,117,108,108,119,105,100,116,104,16,0,14,35,99,111,111,107,105,101,107,101,122,101,108,101,115,16,0,12,35,99,111,111,107,105,101,108,97,117,114,97,16,0,10,35,99,111,111,107,105,101,108,97,119,16,0,17,35,99,111,111,107,105,101,108,97,119,45,98,97,110,110,101,114,16,0,14,35,99,111,111,107,105,101,108,97,119,45,98,97,114,16,0,14,35,99,111,111,107,105,101,108,97,119,45,98,111,120,16,0,20,35,99,111,111,107,105,101,108,97,119,45,99,111,110,116,97,105,110,101,114,16,0,16,35,99,111,111,107,105,101,108,97,119,45,108,97,121,101,114,16,0,24,35,99,111,111,107,105,101,108,97,119,45,112,111,112,117,112,45,119,114,97,112,112,101,114,16,0,22,35,99,111,111,107,105,101,108,97,119,45,118,105,101,119,45,104,111,108,100,101,114,16,0,15,35,99,111,111,107,105,101,108,97,119,45,119,114,97,112,16,0,11,35,99,111,111,107,105,101,108,97,119,50,16,0,12,35,99,111,111,107,105,101,108,97,119,50,49,16,0,16,35,99,111,111,107,105,101,108,97,119,95,97,108,101,114,116,16,0,17,35,99,111,111,107,105,101,108,97,119,95,98,97,110,110,101,114,16,0,27,35,99,111,111,107,105,101,108,97,119,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,108,97,119,95,109,115,103,16,0,15,35,99,111,111,107,105,101,108,97,119,95,110,111,100,101,16,0,17,35,99,111,111,107,105,101,108,97,119,95,110,111,116,105,99,101,16,0,18,35,99,111,111,107,105,101,108,97,119,95,111,118,101,114,108,97,121,16,0,17,35,99,111,111,107,105,101,108,97,119,95,115,104,97,100,111,119,16,0,20,35,99,111,111,107,105,101,108,97,119,100,105,115,99,97,108,105,109,101,114,16,0,13,35,99,111,111,107,105,101,108,97,119,100,105,118,16,0,17,35,99,111,111,107,105,101,108,97,119,119,97,114,110,105,110,103,16,0,17,35,99,111,111,107,105,101,108,97,119,119,114,97,112,112,101,114,16,0,12,35,99,111,111,107,105,101,108,97,121,101,114,16,0,9,35,99,111,111,107,105,101,108,98,16,0,12,35,99,111,111,107,105,101,108,101,103,97,108,16,0,18,35,99,111,111,107,105,101,108,101,103,105,115,108,97,116,105,111,110,16,0,15,35,99,111,111,107,105,101,108,105,103,104,116,98,111,120,16,0,12,35,99,111,111,107,105,101,108,105,115,116,97,16,0,24,35,99,111,111,107,105,101,109,97,110,97,103,101,114,95,99,111,111,107,105,101,98,97,114,16,0,13,35,99,111,111,107,105,101,109,97,115,116,101,114,16,0,11,35,99,111,111,107,105,101,109,101,108,100,16,0,13,35,99,111,111,107,105,101,109,101,108,100,101,114,16,0,14,35,99,111,111,107,105,101,109,101,108,100,105,110,103,16,0,20,35,99,111,111,107,105,101,109,101,108,100,105,110,103,95,112,111,112,117,112,16,0,11,35,99,111,111,107,105,101,109,101,110,117,16,0,14,35,99,111,111,107,105,101,109,101,115,115,97,103,101,16,0,19,35,99,111,111,107,105,101,109,101,115,115,97,103,101,45,114,111,111,116,16,0,22,35,99,111,111,107,105,101,109,101,115,115,97,103,101,45,119,114,97,112,112,101,114,16,0,17,35,99,111,111,107,105,101,109,101,115,115,97,103,101,98,97,114,16,0,10,35,99,111,111,107,105,101,109,101,120,16,0,15,35,99,111,111,107,105,101,109,111,100,97,108,98,97,114,16,0,26,35,99,111,111,107,105,101,109,111,100,97,108,98,97,114,112,108,97,99,101,104,111,108,100,101,114,16,0,13,35,99,111,111,107,105,101,109,111,100,117,108,101,16,0,14,35,99,111,111,107,105,101,109,111,110,115,116,101,114,16,0,20,35,99,111,111,107,105,101,109,111,110,115,116,101,114,95,112,111,112,117,112,16,0,10,35,99,111,111,107,105,101,109,115,103,16,0,13,35,99,111,111,107,105,101,109,115,103,98,111,120,16,0,11,35,99,111,111,107,105,101,109,117,117,114,16,0,10,35,99,111,111,107,105,101,110,102,111,16,0,11,35,99,111,111,107,105,101,110,111,116,101,16,0,13,35,99,111,111,107,105,101,110,111,116,105,99,101,16,0,23,35,99,111,111,107,105,101,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,16,0,23,35,99,111,111,107,105,101,110,111,116,105,99,101,95,99,111,110,116,97,105,110,101,114,16,0,16,35,99,111,111,107,105,101,110,111,116,105,99,101,100,105,118,16,0,16,35,99,111,111,107,105,101,110,111,116,105,99,101,116,97,98,16,0,12,35,99,111,111,107,105,101,110,111,116,105,102,16,0,19,35,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,16,0,25,35,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,45,98,108,111,99,107,16,0,30,35,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,95,98,97,99,107,103,114,111,117,110,100,16,0,15,35,99,111,111,107,105,101,110,111,116,105,102,105,101,114,16,0,13,35,99,111,111,107,105,101,110,111,116,105,102,121,16,0,21,35,99,111,111,107,105,101,110,111,116,105,102,121,45,119,114,97,112,112,101,114,16,0,16,35,99,111,111,107,105,101,110,111,116,105,102,121,98,97,114,16,0,14,35,99,111,111,107,105,101,110,116,102,95,100,105,118,16,0,14,35,99,111,111,107,105,101,110,117,116,122,117,110,103,16,0,9,35,99,111,111,107,105,101,111,107,16,0,13,35,99,111,111,107,105,101,111,107,95,98,97,114,16,0,13,35,99,111,111,107,105,101,111,110,112,97,103,101,16,0,10,35,99,111,111,107,105,101,111,112,116,16,0,12,35,99,111,111,107,105,101,111,112,116,105,110,16,0,19,35,99,111,111,107,105,101,111,112,116,105,110,111,118,101,114,108,97,121,16,0,17,35,99,111,111,107,105,101,111,117,116,101,114,102,114,97,109,101,16,0,14,35,99,111,111,107,105,101,111,118,101,114,108,97,121,16,0,20,35,99,111,111,107,105,101,111,118,101,114,108,97,121,95,111,117,116,101,114,16,0,8,35,99,111,111,107,105,101,112,16,0,12,35,99,111,111,107,105,101,112,97,110,101,108,16,0,26,35,99,111,111,107,105,101,112,101,114,109,105,115,115,105,111,110,68,105,97,108,111,103,66,111,120,16,0,23,35,99,111,111,107,105,101,112,101,114,109,105,115,115,105,111,110,112,114,111,109,112,116,16,0,13,35,99,111,111,107,105,101,112,108,117,103,105,110,16,0,13,35,99,111,111,107,105,101,112,111,108,105,99,121,16,0,18,35,99,111,111,107,105,101,112,111,108,105,99,121,45,98,108,111,107,16,0,23,35,99,111,111,107,105,101,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,16,0,17,35,99,111,111,107,105,101,112,111,108,105,99,121,45,100,105,118,16,0,24,35,99,111,111,107,105,101,112,111,108,105,99,121,45,109,97,105,110,45,111,117,116,101,114,16,0,18,35,99,111,111,107,105,101,112,111,108,105,99,121,45,119,114,97,112,16,0,22,35,99,111,111,107,105,101,112,111,108,105,99,121,67,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,112,111,108,105,99,121,95,97,114,101,97,16,0,16,35,99,111,111,107,105,101,112,111,108,105,99,121,98,97,114,16,0,15,35,99,111,111,107,105,101,112,111,108,105,99,121,98,103,16,0,22,35,99,111,111,107,105,101,112,111,108,105,99,121,99,111,110,116,97,105,110,101,114,16,0,16,35,99,111,111,107,105,101,112,111,108,105,99,121,100,105,118,16,0,25,35,99,111,111,107,105,101,112,111,108,105,99,121,110,111,116,105,102,105,99,97,116,105,111,110,16,0,18,35,99,111,111,107,105,101,112,111,108,105,99,121,112,111,112,117,112,16,0,24,35,99,111,111,107,105,101,112,111,108,105,99,121,119,114,97,112,112,101,114,115,104,111,119,16,0,10,35,99,111,111,107,105,101,112,111,112,16,0,25,35,99,111,111,107,105,101,112,111,112,45,108,117,108,117,95,99,111,111,107,105,101,112,111,112,16,0,19,35,99,111,111,107,105,101,112,111,112,99,111,110,116,97,105,110,101,114,16,0,12,35,99,111,111,107,105,101,112,111,112,117,112,16,0,20,35,99,111,111,107,105,101,112,111,112,117,112,45,99,111,110,116,101,110,116,16,0,14,35,99,111,111,107,105,101,112,111,112,117,112,98,103,16,0,15,35,99,111,111,107,105,101,112,111,112,117,112,100,105,118,16,0,18,35,99,111,111,107,105,101,112,111,112,117,112,104,101,97,100,101,114,16,0,12,35,99,111,111,107,105,101,112,114,101,102,115,16,0,14,35,99,111,111,107,105,101,112,114,105,118,97,99,121,16,0,18,35,99,111,111,107,105,101,112,114,105,118,97,99,121,45,98,97,114,16,0,13,35,99,111,111,107,105,101,112,114,111,109,112,116,16,0,15,35,99,111,111,107,105,101,113,117,101,115,116,105,111,110,16,0,15,35,99,111,111,107,105,101,114,45,98,97,110,110,101,114,16,0,13,35,99,111,111,107,105,101,114,66,97,121,101,114,16,0,29,35,99,111,111,107,105,101,114,97,95,102,105,103,121,101,108,109,101,122,116,101,116,111,95,100,111,98,111,122,16,0,13,35,99,111,111,107,105,101,114,101,103,101,108,115,16,0,16,35,99,111,111,107,105,101,114,101,103,112,100,82,111,111,116,16,0,15,35,99,111,111,107,105,101,114,101,109,105,110,100,101,114,16,0,20,35,99,111,111,107,105,101,114,101,112,111,114,116,115,45,98,97,100,103,101,16,0,19,35,99,111,111,107,105,101,115,45,50,48,50,50,45,112,111,112,117,112,16,0,12,35,99,111,111,107,105,101,115,45,97,99,99,16,0,15,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,16,0,19,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,98,97,114,16,0,25,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,105,110,102,111,16,0,24,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,108,105,103,104,116,98,111,120,16,0,31,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,115,101,99,116,105,111,110,45,119,114,97,112,112,101,114,16,0,19,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,110,99,101,16,0,23,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,110,99,101,45,97,99,107,16,0,23,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,110,99,101,45,98,111,120,16,0,16,35,99,111,111,107,105,101,115,45,97,99,107,45,98,97,114,16,0,11,35,99,111,111,107,105,101,115,45,97,100,16,0,12,35,99,111,111,107,105,101,115,45,97,100,118,16,0,15,35,99,111,111,107,105,101,115,45,97,100,118,105,99,101,16,0,22,35,99,111,111,107,105,101,115,45,97,100,118,105,99,101,45,102,111,111,116,101,114,16,0,14,35,99,111,111,107,105,101,115,45,97,103,114,101,101,16,0,17,35,99,111,111,107,105,101,115,45,97,103,114,101,101,98,97,114,16,0,23,35,99,111,111,107,105,101,115,45,97,103,114,101,101,100,45,119,114,97,112,112,101,114,16,0,18,35,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,16,0,22,35,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,98,97,114,16,0,22,35,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,98,111,120,16,0,14,35,99,111,111,107,105,101,115,45,97,108,101,114,116,16,0,24,35,99,111,111,107,105,101,115,45,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,115,45,97,108,101,114,116,45,100,105,97,108,111,103,16,0,22,35,99,111,111,107,105,101,115,45,97,108,101,114,116,45,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,115,45,97,108,101,114,116,97,16,0,16,35,99,111,111,107,105,101,115,45,97,108,108,111,119,101,100,16,0,17,35,99,111,111,107,105,101,115,45,97,112,112,114,111,118,97,108,16,0,23,35,99,111,111,107,105,101,115,45,97,112,112,114,111,118,97,108,45,112,111,112,117,112,16,0,17,35,99,111,111,107,105,101,115,45,97,114,101,45,101,118,105,108,16,0,13,35,99,111,111,107,105,101,115,45,97,117,116,104,16,0,14,35,99,111,111,107,105,101,115,45,97,118,105,115,111,16,0,17,35,99,111,111,107,105,101,115,45,98,97,99,107,100,114,111,112,16,0,15,35,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,21,35,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,98,108,111,99,107,16,0,23,35,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,16,0,12,35,99,111,111,107,105,101,115,45,98,97,114,16,0,15,35,99,111,111,107,105,101,115,45,98,97,114,45,101,110,16,0,17,35,99,111,111,107,105,101,115,45,98,97,114,45,101,116,114,111,16,0,15,35,99,111,111,107,105,101,115,45,98,97,114,45,112,108,16,0,14,35,99,111,111,107,105,101,115,45,98,108,111,99,107,16,0,13,35,99,111,111,107,105,101,115,45,98,108,111,107,16,0,12,35,99,111,111,107,105,101,115,45,98,111,116,16,0,15,35,99,111,111,107,105,101,115,45,98,111,116,116,111,109,16,0,21,35,99,111,111,107,105,101,115,45,98,111,116,116,111,109,45,109,111,100,97,108,16,0,12,35,99,111,111,107,105,101,115,45,98,111,120,16,0,18,35,99,111,111,107,105,101,115,45,98,111,120,45,105,110,110,101,114,16,0,24,35,99,111,111,107,105,101,115,45,98,111,120,45,111,117,116,101,114,45,108,97,121,101,114,16,0,23,35,99,111,111,107,105,101,115,45,98,114,111,119,115,101,114,45,117,105,45,97,112,112,16,0,25,35,99,111,111,107,105,101,115,45,98,117,116,116,111,110,45,99,111,110,116,97,105,110,101,114,16,0,13,35,99,111,111,107,105,101,115,45,99,97,114,100,16,0,16,35,99,111,111,107,105,101,115,45,99,104,97,114,116,101,114,16,0,14,35,99,111,111,107,105,101,115,45,99,104,101,99,107,16,0,20,35,99,111,111,107,105,101,115,45,99,110,105,108,45,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,115,45,99,110,105,108,45,105,110,102,111,16,0,27,35,99,111,111,107,105,101,115,45,99,110,105,108,45,105,110,102,111,115,45,99,111,110,116,101,110,116,16,0,19,35,99,111,111,107,105,101,115,45,99,111,109,112,108,105,97,110,99,101,16,0,19,35,99,111,111,107,105,101,115,45,99,111,110,100,105,116,105,111,110,115,16,0,16,35,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,16,0,26,35,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,102,111,114,109,16,0,22,35,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,112,111,112,117,112,16,0,24,35,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,115,101,99,116,105,111,110,16,0,24,35,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,16,0,23,35,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,105,109,105,101,110,116,111,16,0,13,35,99,111,111,107,105,101,115,45,99,111,110,116,16,0,18,35,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,16,0,16,35,99,111,111,107,105,101,115,45,99,111,110,116,101,110,116,16,0,22,35,99,111,111,107,105,101,115,45,99,111,111,107,105,101,115,45,109,111,100,97,108,16,0,14,35,99,111,111,107,105,101,115,45,99,111,118,101,114,16,0,15,35,99,111,111,107,105,101,115,45,100,105,97,108,111,103,16,0,18,35,99,111,111,107,105,101,115,45,100,105,114,101,99,116,105,118,101,16,0,19,35,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,16,0,23,35,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,45,98,97,114,16,0,25,35,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,45,98,108,111,99,107,16,0,12,35,99,111,111,107,105,101,115,45,100,105,118,16,0,16,35,99,111,111,107,105,101,115,45,101,108,101,109,101,110,116,16,0,17,35,99,111,111,107,105,101,115,45,101,114,108,97,117,98,101,110,16,0,17,35,99,111,111,107,105,101,115,45,101,117,45,98,97,110,110,101,16,0,18,35,99,111,111,107,105,101,115,45,101,117,45,98,97,110,110,101,114,16,0,19,35,99,111,111,107,105,101,115,45,101,117,45,119,114,97,112,112,101,114,16,0,17,35,99,111,111,107,105,101,115,45,102,97,110,99,121,98,111,120,16,0,14,35,99,111,111,107,105,101,115,45,102,105,120,101,100,16,0,23,35,99,111,111,107,105,101,115,45,102,108,111,97,116,105,110,103,45,115,116,114,105,112,16,0,15,35,99,111,111,107,105,101,115,45,102,111,111,116,101,114,16,0,21,35,99,111,111,107,105,101,115,45,102,111,114,109,45,111,118,101,114,108,97,121,16,0,18,35,99,111,111,107,105,101,115,45,103,100,112,114,45,104,111,115,116,16,0,14,35,99,111,111,107,105,101,115,45,103,108,97,115,115,16,0,20,35,99,111,111,107,105,101,115,45,103,114,97,116,107,105,45,105,110,102,111,16,0,14,35,99,111,111,107,105,101,115,45,103,117,105,100,101,16,0,15,35,99,111,111,107,105,101,115,45,104,101,97,100,101,114,16,0,23,35,99,111,111,107,105,101,115,45,104,101,97,100,101,114,45,119,97,114,110,105,110,103,16,0,15,35,99,111,111,107,105,101,115,45,104,111,108,100,101,114,16,0,19,35,99,111,111,107,105,101,115,45,105,109,109,45,119,114,97,112,101,114,16,0,13,35,99,111,111,107,105,101,115,45,105,110,102,111,16,0,19,35,99,111,111,107,105,101,115,45,105,110,102,111,45,97,108,101,114,116,16,0,20,35,99,111,111,107,105,101,115,45,105,110,102,111,45,98,97,110,110,101,114,16,0,17,35,99,111,111,107,105,101,115,45,105,110,102,111,45,98,97,114,16,0,17,35,99,111,111,107,105,101,115,45,105,110,102,111,45,98,111,120,16,0,18,35,99,111,111,107,105,101,115,45,105,110,102,111,45,99,110,105,108,16,0,19,35,99,111,111,107,105,101,115,45,105,110,102,111,45,102,114,97,109,101,16,0,19,35,99,111,111,107,105,101,115,45,105,110,102,111,45,109,111,100,97,108,16,0,16,35,99,111,111,107,105,101,115,45,105,110,102,111,98,97,114,16,0,19,35,99,111,111,107,105,101,115,45,105,110,102,111,114,109,97,99,106,97,16,0,20,35,99,111,111,107,105,101,115,45,105,110,102,111,114,109,97,116,105,111,110,16,0,24,35,99,111,111,107,105,101,115,45,105,110,102,111,114,109,97,116,105,111,110,45,98,97,114,16,0,26,35,99,111,111,107,105,101,115,45,105,110,102,111,114,109,97,116,105,111,110,45,112,111,112,117,112,16,0,14,35,99,111,111,107,105,101,115,45,105,110,102,111,115,16,0,18,35,99,111,111,107,105,101,115,45,105,110,116,101,114,102,97,99,101,16,0,15,35,99,111,111,107,105,101,115,45,105,112,114,105,109,97,16,0,16,35,99,111,111,107,105,101,115,45,105,114,97,105,115,101,114,16,0,12,35,99,111,111,107,105,101,115,45,106,97,114,16,0,18,35,99,111,111,107,105,101,115,45,107,111,109,117,110,105,107,97,116,16,0,19,35,99,111,111,107,105,101,115,45,108,97,119,45,98,97,110,110,101,114,16,0,22,35,99,111,111,107,105,101,115,45,108,97,119,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,115,45,108,97,119,45,105,110,102,111,45,98,111,120,16,0,14,35,99,111,111,107,105,101,115,45,108,97,121,101,114,16,0,22,35,99,111,111,107,105,101,115,45,108,97,121,111,117,116,45,98,97,110,110,101,114,16,0,14,35,99,111,111,107,105,101,115,45,108,101,103,97,108,16,0,24,35,99,111,111,107,105,101,115,45,108,101,103,105,115,108,97,116,105,111,110,45,98,111,120,16,0,16,35,99,111,111,107,105,101,115,45,108,105,99,101,110,115,101,16,0,17,35,99,111,111,107,105,101,115,45,108,105,103,104,116,98,111,120,16,0,12,35,99,111,111,107,105,101,115,45,109,45,99,16,0,34,35,99,111,111,107,105,101,115,45,109,97,110,97,103,101,109,101,110,116,45,98,97,114,45,99,111,105,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,115,45,109,97,110,97,103,101,114,45,109,115,103,16,0,16,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,16,0,26,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,16,0,29,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,45,101,110,16,0,20,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,100,105,118,16,0,21,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,109,97,105,110,16,0,20,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,115,114,99,16,0,17,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,115,16,0,25,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,115,45,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,115,45,109,111,100,97,108,16,0,21,35,99,111,111,107,105,101,115,45,109,111,100,97,108,45,116,97,114,103,101,116,16,0,22,35,99,111,111,107,105,101,115,45,109,111,100,97,108,45,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,115,45,109,111,100,117,108,101,16,0,16,35,99,111,111,107,105,101,115,45,109,111,110,115,116,101,114,16,0,12,35,99,111,111,107,105,101,115,45,109,115,103,16,0,20,35,99,111,111,107,105,101,115,45,109,115,103,45,119,114,97,112,112,101,114,16,0,12,35,99,111,111,107,105,101,115,45,110,97,103,16,0,15,35,99,111,111,107,105,101,115,45,110,97,118,98,97,114,16,0,19,35,99,111,111,107,105,101,115,45,110,97,118,105,103,97,116,105,111,110,16,0,13,35,99,111,111,107,105,101,115,45,110,111,116,101,16,0,15,35,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,14,35,99,111,111,107,105,101,115,45,110,111,116,105,102,16,0,21,35,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,25,35,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,16,0,27,35,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,112,111,112,117,112,16,0,15,35,99,111,111,107,105,101,115,45,110,111,116,105,102,121,16,0,18,35,99,111,111,107,105,101,115,45,111,107,45,115,112,97,99,101,114,16,0,16,35,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,16,0,14,35,99,111,111,107,105,101,115,45,112,97,110,101,108,16,0,19,35,99,111,111,107,105,101,115,45,112,101,114,109,105,115,115,105,111,110,16,0,20,35,99,111,111,107,105,101,115,45,112,101,114,115,111,110,97,108,105,122,101,16,0,12,35,99,111,111,107,105,101,115,45,112,111,108,16,0,15,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,16,0,22,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,19,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,98,97,114,16,0,25,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,105,110,102,111,16,0,20,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,109,115,115,103,16,0,28,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,27,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,112,108,97,99,101,104,111,108,100,101,114,16,0,21,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,112,111,112,117,112,16,0,22,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,112,114,111,109,112,116,16,0,23,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,119,97,114,110,105,110,103,16,0,23,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,16,0,17,35,99,111,111,107,105,101,115,45,112,111,108,105,116,105,99,115,16,0,16,35,99,111,111,107,105,101,115,45,112,111,112,45,111,117,116,16,0,15,35,99,111,111,107,105,101,115,45,112,111,112,45,117,112,16,0,17,35,99,111,111,107,105,101,115,45,112,111,112,97,112,105,116,111,16,0,14,35,99,111,111,107,105,101,115,45,112,111,112,105,110,16,0,16,35,99,111,111,107,105,101,115,45,112,111,112,111,118,101,114,16,0,14,35,99,111,111,107,105,101,115,45,112,111,112,117,112,16,0,20,35,99,111,111,107,105,101,115,45,112,111,112,117,112,45,109,111,100,97,108,16,0,22,35,99,111,111,107,105,101,115,45,112,111,112,117,112,45,111,118,101,114,108,97,121,16,0,19,35,99,111,111,107,105,101,115,45,112,111,112,117,112,45,119,114,97,112,16,0,26,35,99,111,111,107,105,101,115,45,112,114,101,102,101,114,101,110,99,101,115,45,102,105,120,101,100,16,0,16,35,99,111,111,107,105,101,115,45,112,114,105,118,97,99,121,16,0,23,35,99,111,111,107,105,101,115,45,112,114,105,118,97,99,121,45,97,100,118,105,99,101,16,0,29,35,99,111,111,107,105,101,115,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,97,108,101,114,116,16,0,35,35,99,111,111,107,105,101,115,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,97,108,101,114,116,45,115,109,97,108,108,16,0,15,35,99,111,111,107,105,101,115,45,112,114,111,109,112,116,16,0,15,35,99,111,111,107,105,101,115,45,114,101,103,105,111,110,16,0,19,35,99,111,111,107,105,101,115,45,114,101,103,117,108,97,116,105,111,110,16,0,21,35,99,111,111,107,105,101,115,45,114,103,112,100,45,111,118,101,114,108,97,121,16,0,19,35,99,111,111,107,105,101,115,45,114,103,112,100,45,112,111,112,117,112,16,0,15,35,99,111,111,107,105,101,115,45,114,105,98,98,111,110,16,0,13,35,99,111,111,107,105,101,115,45,114,111,100,111,16,0,16,35,99,111,111,107,105,101,115,45,115,101,99,116,105,111,110,16,0,23,35,99,111,111,107,105,101,115,45,115,101,116,116,105,110,103,115,45,109,111,100,97,108,16,0,14,35,99,111,111,107,105,101,115,45,115,104,111,114,116,16,0,15,35,99,111,111,107,105,101,115,45,115,116,105,99,107,121,16,0,23,35,99,111,111,107,105,101,115,45,115,116,105,99,107,121,45,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,115,45,115,116,114,105,112,16,0,16,35,99,111,111,107,105,101,115,45,116,101,110,100,105,110,97,16,0,14,35,99,111,111,107,105,101,115,45,116,101,114,109,115,16,0,19,35,99,111,111,107,105,101,115,45,116,101,114,109,115,45,105,110,102,111,16,0,20,35,99,111,111,107,105,101,115,45,116,101,114,109,115,45,115,104,111,114,116,16,0,20,35,99,111,111,107,105,101,115,45,116,101,120,116,111,45,99,111,114,116,111,16,0,16,35,99,111,111,107,105,101,115,45,116,111,111,108,98,97,114,16,0,17,35,99,111,111,107,105,101,115,45,116,111,112,45,98,108,111,99,16,0,15,35,99,111,111,107,105,101,115,45,116,111,112,98,97,114,16,0,11,35,99,111,111,107,105,101,115,45,117,101,16,0,23,35,99,111,111,107,105,101,115,45,117,101,45,97,103,114,101,101,45,98,108,111,99,107,16,0,19,35,99,111,111,107,105,101,115,45,117,112,111,122,111,114,110,101,110,105,16,0,14,35,99,111,111,107,105,101,115,45,117,115,97,103,101,16,0,22,35,99,111,111,107,105,101,115,45,117,115,97,103,101,45,109,101,115,115,97,103,101,16,0,12,35,99,111,111,107,105,101,115,45,117,115,101,16,0,18,35,99,111,111,107,105,101,115,45,117,115,101,45,97,108,101,114,116,16,0,25,35,99,111,111,107,105,101,115,45,117,115,101,45,112,97,103,101,45,112,97,100,100,105,110,103,16,0,18,35,99,111,111,107,105,101,115,45,117,115,101,45,112,111,112,117,112,16,0,22,35,99,111,111,107,105,101,115,45,117,115,105,110,103,45,109,101,115,115,97,103,101,16,0,12,35,99,111,111,107,105,101,115,45,118,97,108,16,0,15,35,99,111,111,107,105,101,115,45,118,101,114,105,102,121,16,0,13,35,99,111,111,107,105,101,115,45,119,97,114,110,16,0,16,35,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,16,0,20,35,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,45,98,111,120,16,0,26,35,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,16,0,24,35,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,45,109,101,115,115,97,103,101,16,0,22,35,99,111,111,107,105,101,115,45,119,105,97,100,111,109,111,115,99,45,98,111,120,16,0,12,35,99,111,111,107,105,101,115,45,119,105,110,16,0,15,35,99,111,111,107,105,101,115,45,119,105,110,100,111,119,16,0,29,35,99,111,111,107,105,101,115,45,119,105,116,104,45,115,116,97,99,107,101,100,45,98,117,116,116,111,110,115,16,0,13,35,99,111,111,107,105,101,115,45,119,114,97,112,16,0,16,35,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,115,46,97,99,116,105,118,101,16,0,15,35,99,111,111,107,105,101,115,46,97,99,116,105,118,111,16,0,14,35,99,111,111,107,105,101,115,46,97,108,101,114,116,16,0,18,35,99,111,111,107,105,101,115,46,97,108,101,114,116,45,98,111,120,16,0,26,35,99,111,111,107,105,101,115,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,16,0,17,35,99,111,111,107,105,101,115,46,99,108,101,97,114,102,105,120,16,0,18,35,99,111,111,107,105,101,115,46,99,111,110,116,97,105,110,101,114,16,0,24,35,99,111,111,107,105,101,115,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,16,0,16,35,99,111,111,107,105,101,115,46,99,111,111,107,105,101,115,16,0,21,35,99,111,111,107,105,101,115,46,102,105,120,101,100,45,98,111,116,116,111,109,16,0,15,35,99,111,111,107,105,101,115,46,104,105,100,100,101,110,16,0,21,35,99,111,111,107,105,101,115,46,104,105,100,100,101,110,45,112,114,105,110,116,16,0,18,35,99,111,111,107,105,101,115,46,104,105,100,100,101,110,45,115,109,16,0,18,35,99,111,111,107,105,101,115,46,104,105,100,100,101,110,45,120,115,16,0,19,35,99,111,111,107,105,101,115,46,104,105,100,101,45,112,114,105,110,116,16,0,11,35,99,111,111,107,105,101,115,46,105,110,16,0,19,35,99,111,111,107,105,101,115,46,109,111,110,116,115,101,114,114,97,116,16,0,15,35,99,111,111,107,105,101,115,46,110,111,116,105,99,101,16,0,18,35,99,111,111,107,105,101,115,46,110,111,116,105,102,121,66,97,114,16,0,11,35,99,111,111,107,105,101,115,46,111,110,16,0,13,35,99,111,111,107,105,101,115,46,111,112,101,110,16,0,19,35,99,111,111,107,105,101,115,46,112,97,110,101,108,45,112,97,110,101,16,0,14,35,99,111,111,107,105,101,115,46,112,111,112,117,112,16,0,13,35,99,111,111,107,105,101,115,46,112,121,45,50,16,0,12,35,99,111,111,107,105,101,115,46,114,111,119,16,0,13,35,99,111,111,107,105,101,115,46,115,104,111,119,16,0,15,35,99,111,111,107,105,101,115,46,115,116,105,99,107,121,16,0,17,35,99,111,111,107,105,101,115,46,116,111,112,108,97,121,101,114,16,0,12,35,99,111,111,107,105,101,115,46,118,101,114,16,0,16,35,99,111,111,107,105,101,115,46,118,105,115,105,98,108,101,16,0,11,35,99,111,111,107,105,101,115,49,50,51,16,0,14,35,99,111,111,107,105,101,115,65,99,99,101,112,116,16,0,18,35,99,111,111,107,105,101,115,65,99,99,101,112,116,97,110,99,101,16,0,19,35,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,68,105,118,16,0,15,35,99,111,111,107,105,101,115,65,99,101,105,116,97,114,16,0,23,35,99,111,111,107,105,101,115,65,99,107,110,111,119,108,101,100,103,101,109,101,110,116,16,0,25,35,99,111,111,107,105,101,115,65,99,107,110,111,119,108,101,100,103,101,109,101,110,116,66,103,16,0,18,35,99,111,111,107,105,101,115,65,100,114,101,110,97,108,105,110,101,16,0,14,35,99,111,111,107,105,101,115,65,100,118,101,114,116,16,0,17,35,99,111,111,107,105,101,115,65,100,118,101,114,116,105,115,101,16,0,14,35,99,111,111,107,105,101,115,65,100,118,105,99,101,16,0,14,35,99,111,111,107,105,101,115,65,100,118,105,115,101,16,0,17,35,99,111,111,107,105,101,115,65,103,114,101,101,109,101,110,116,16,0,23,35,99,111,111,107,105,101,115,65,103,114,101,101,109,101,110,116,78,111,116,105,99,101,16,0,13,35,99,111,111,107,105,101,115,65,108,97,114,109,16,0,13,35,99,111,111,107,105,101,115,65,108,101,114,116,16,0,19,35,99,111,111,107,105,101,115,65,108,101,114,116,87,105,100,103,101,116,16,0,13,35,99,111,111,107,105,101,115,65,108,108,111,119,16,0,23,35,99,111,111,107,105,101,115,65,108,108,111,119,105,110,103,82,101,113,117,101,115,116,16,0,19,35,99,111,111,107,105,101,115,65,112,112,114,111,98,97,116,105,111,110,16,0,12,35,99,111,111,107,105,101,115,65,114,101,97,16,0,15,35,99,111,111,107,105,101,115,65,114,116,105,99,108,101,16,0,12,35,99,111,111,107,105,101,115,66,97,110,100,16,0,14,35,99,111,111,107,105,101,115,66,97,110,110,101,114,16,0,23,35,99,111,111,107,105,101,115,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,16,0,11,35,99,111,111,107,105,101,115,66,97,114,16,0,23,35,99,111,111,107,105,101,115,66,97,114,65,110,110,111,117,110,99,101,109,101,110,116,16,0,11,35,99,111,111,107,105,101,115,66,111,120,16,0,12,35,99,111,111,107,105,101,115,67,97,112,97,16,0,12,35,99,111,111,107,105,101,115,67,97,114,100,16,0,13,35,99,111,111,107,105,101,115,67,104,101,99,107,16,0,15,35,99,111,111,107,105,101,115,67,104,101,99,107,101,114,16,0,17,35,99,111,111,107,105,101,115,67,111,110,100,105,116,105,111,110,16,0,15,35,99,111,111,107,105,101,115,67,111,110,102,105,114,109,16,0,15,35,99,111,111,107,105,101,115,67,111,110,115,101,110,116,16,0,18,35,99,111,111,107,105,101,115,67,111,110,115,101,110,116,66,97,114,16,0,21,35,99,111,111,107,105,101,115,67,111,110,115,101,110,116,87,105,100,103,101,116,16,0,12,35,99,111,111,107,105,101,115,67,111,110,116,16,0,17,35,99,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,16,0,16,35,99,111,111,107,105,101,115,67,111,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,115,68,105,97,108,111,103,16,0,16,35,99,111,111,107,105,101,115,68,105,97,108,111,103,117,101,16,0,17,35,99,111,111,107,105,101,115,68,105,114,101,99,116,105,118,101,16,0,16,35,99,111,111,107,105,101,115,68,105,115,99,67,111,110,116,16,0,18,35,99,111,111,107,105,101,115,68,105,115,99,108,97,105,109,101,114,16,0,11,35,99,111,111,107,105,101,115,68,105,118,16,0,14,35,99,111,111,107,105,101,115,69,85,45,98,111,120,16,0,14,35,99,111,111,107,105,101,115,70,111,111,116,101,114,16,0,32,35,99,111,111,107,105,101,115,70,111,114,109,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,16,0,12,35,99,111,111,107,105,101,115,72,105,110,116,16,0,14,35,99,111,111,107,105,101,115,72,105,110,116,95,49,16,0,14,35,99,111,111,107,105,101,115,72,111,108,100,101,114,16,0,18,35,99,111,111,107,105,101,115,72,111,109,101,72,101,97,100,101,114,16,0,9,35,99,111,111,107,105,101,115,73,16,0,10,35,99,111,111,107,105,101,115,73,68,16,0,12,35,99,111,111,107,105,101,115,73,110,102,111,16,0,13,35,99,111,111,107,105,101,115,73,110,102,111,50,16,0,15,35,99,111,111,107,105,101,115,73,110,102,111,66,97,114,16,0,17,35,99,111,111,107,105,101,115,73,110,102,111,66,108,111,99,107,16,0,15,35,99,111,111,107,105,101,115,73,110,102,111,66,111,120,16,0,16,35,99,111,111,107,105,101,115,73,110,102,111,66,111,120,49,16,0,15,35,99,111,111,107,105,101,115,73,110,102,111,68,105,118,16,0,19,35,99,111,111,107,105,101,115,73,110,102,111,114,109,97,116,105,111,110,16,0,16,35,99,111,111,107,105,101,115,73,110,102,111,114,109,101,114,16,0,13,35,99,111,111,107,105,101,115,73,110,102,111,115,16,0,21,35,99,111,111,107,105,101,115,73,110,105,116,105,97,108,68,105,97,108,111,103,16,0,11,35,99,111,111,107,105,101,115,76,97,119,16,0,20,35,99,111,111,107,105,101,115,76,97,119,67,111,109,112,108,97,105,110,116,16,0,13,35,99,111,111,107,105,101,115,76,97,121,101,114,16,0,20,35,99,111,111,107,105,101,115,76,97,121,111,117,116,77,111,100,117,108,101,16,0,14,35,99,111,111,107,105,101,115,76,101,103,97,99,121,16,0,13,35,99,111,111,107,105,101,115,76,101,103,97,108,16,0,20,35,99,111,111,107,105,101,115,76,101,103,97,108,77,101,115,115,97,103,101,16,0,15,35,99,111,111,107,105,101,115,76,101,113,117,105,112,101,16,0,12,35,99,111,111,107,105,101,115,77,97,105,110,16,0,22,35,99,111,111,107,105,101,115,77,97,105,110,87,97,114,110,105,110,103,68,105,118,16,0,23,35,99,111,111,107,105,101,115,77,97,110,97,103,101,114,70,114,97,109,101,66,111,120,16,0,23,35,99,111,111,107,105,101,115,77,101,110,115,97,106,101,80,111,108,105,116,105,99,97,16,0,15,35,99,111,111,107,105,101,115,77,101,115,115,97,103,101,16,0,21,35,99,111,111,107,105,101,115,77,101,115,115,97,103,101,66,97,110,110,101,114,16,0,24,35,99,111,111,107,105,101,115,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,22,35,99,111,111,107,105,101,115,77,111,100,97,108,67,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,115,77,111,100,97,108,95,98,111,116,116,111,109,16,0,11,35,99,111,111,107,105,101,115,77,115,103,16,0,19,35,99,111,111,107,105,101,115,78,111,116,65,99,99,101,112,116,101,100,16,0,12,35,99,111,111,107,105,101,115,78,111,116,101,16,0,14,35,99,111,111,107,105,101,115,78,111,116,105,99,101,16,0,17,35,99,111,111,107,105,101,115,78,111,116,105,99,101,68,105,118,16,0,16,35,99,111,111,107,105,101,115,78,111,116,105,99,101,73,100,16,0,20,35,99,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,16,0,16,35,99,111,111,107,105,101,115,78,111,116,105,102,105,101,114,16,0,14,35,99,111,111,107,105,101,115,78,111,116,105,102,121,16,0,10,35,99,111,111,107,105,101,115,79,75,16,0,13,35,99,111,111,107,105,101,115,79,107,66,111,120,16,0,20,35,99,111,111,107,105,101,115,79,112,116,73,110,77,101,115,115,97,103,101,16,0,27,35,99,111,111,107,105,101,115,79,112,116,73,110,77,101,115,115,97,103,101,87,114,97,112,112,101,114,16,0,18,35,99,111,111,107,105,101,115,79,112,116,105,110,76,97,121,101,114,16,0,13,35,99,111,111,107,105,101,115,79,117,116,101,114,16,0,15,35,99,111,111,107,105,101,115,79,118,101,114,108,97,121,16,0,10,35,99,111,111,107,105,101,115,80,80,16,0,12,35,99,111,111,107,105,101,115,80,97,103,101,16,0,13,35,99,111,111,107,105,101,115,80,97,110,101,108,16,0,20,35,99,111,111,107,105,101,115,80,97,110,101,108,87,114,97,112,112,101,114,16,0,18,35,99,111,111,107,105,101,115,80,101,114,109,105,115,115,105,111,110,16,0,14,35,99,111,111,107,105,101,115,80,111,108,105,99,121,16,0,20,35,99,111,111,107,105,101,115,80,111,108,105,99,121,66,97,110,110,101,114,16,0,15,35,99,111,111,107,105,101,115,80,111,108,105,99,121,67,16,0,24,35,99,111,111,107,105,101,115,80,111,108,105,99,121,68,105,115,99,108,97,105,109,101,114,16,0,20,35,99,111,111,107,105,101,115,80,111,108,105,99,121,72,111,108,100,101,114,16,0,18,35,99,111,111,107,105,101,115,80,111,108,105,99,121,73,110,102,111,16,0,21,35,99,111,111,107,105,101,115,80,111,108,105,99,121,77,101,115,115,97,103,101,16,0,19,35,99,111,111,107,105,101,115,80,111,108,105,99,121,77,111,100,97,108,16,0,20,35,99,111,111,107,105,101,115,80,111,108,105,99,121,78,111,116,105,99,101,16,0,19,35,99,111,111,107,105,101,115,80,111,108,105,99,121,80,108,97,99,101,16,0,19,35,99,111,111,107,105,101,115,80,111,108,105,99,121,80,111,112,117,112,16,0,19,35,99,111,111,107,105,101,115,80,111,108,105,99,121,83,108,105,100,101,16,0,21,35,99,111,111,107,105,101,115,80,111,108,105,99,121,87,114,97,112,112,101,114,16,0,27,35,99,111,111,107,105,101,115,80,111,108,105,116,105,99,97,80,114,105,118,97,99,105,100,97,100,101,16,0,11,35,99,111,111,107,105,101,115,80,111,112,16,0,13,35,99,111,111,107,105,101,115,80,111,112,85,112,16,0,13,35,99,111,111,107,105,101,115,80,111,112,105,110,16,0,13,35,99,111,111,107,105,101,115,80,111,112,117,112,16,0,15,35,99,111,111,107,105,101,115,80,114,105,118,97,99,121,16,0,37,35,99,111,111,107,105,101,115,80,114,105,118,97,99,121,80,111,108,105,99,121,67,111,110,116,97,105,110,101,114,87,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,115,80,114,111,109,112,116,16,0,21,35,99,111,111,107,105,101,115,80,114,111,109,112,116,87,114,97,112,112,101,114,16,0,17,35,99,111,111,107,105,101,115,82,101,103,108,101,109,101,110,116,16,0,15,35,99,111,111,107,105,101,115,82,101,113,117,101,115,116,16,0,15,35,99,111,111,107,105,101,115,83,101,99,116,105,111,110,16,0,23,35,99,111,111,107,105,101,115,83,104,111,119,70,108,111,97,116,101,114,70,108,97,116,16,0,21,35,99,111,111,107,105,101,115,83,111,117,104,108,97,115,105,109,66,108,111,107,16,0,17,35,99,111,111,107,105,101,115,83,116,97,116,101,109,101,110,116,16,0,13,35,99,111,111,107,105,101,115,83,116,114,105,112,16,0,14,35,99,111,111,107,105,101,115,83,117,104,108,97,115,16,0,9,35,99,111,111,107,105,101,115,84,16,0,11,35,99,111,111,107,105,101,115,84,97,98,16,0,12,35,99,111,111,107,105,101,115,84,101,120,116,16,0,13,35,99,111,111,107,105,101,115,84,111,97,115,116,16,0,15,35,99,111,111,107,105,101,115,84,111,111,108,98,97,114,16,0,15,35,99,111,111,107,105,101,115,84,111,112,66,108,111,99,16,0,16,35,99,111,111,107,105,101,115,84,111,112,66,108,111,99,107,16,0,19,35,99,111,111,107,105,101,115,85,115,97,103,101,70,111,111,116,101,114,16,0,11,35,99,111,111,107,105,101,115,85,115,101,16,0,12,35,99,111,111,107,105,101,115,87,97,114,110,16,0,15,35,99,111,111,107,105,101,115,87,97,114,110,77,115,103,16,0,15,35,99,111,111,107,105,101,115,87,97,114,110,105,110,103,16,0,21,35,99,111,111,107,105,101,115,87,97,114,110,105,110,103,65,99,116,105,118,101,16,0,25,35,99,111,111,107,105,101,115,87,97,114,110,105,110,103,66,97,99,107,103,114,111,117,110,100,16,0,21,35,99,111,111,107,105,101,115,87,97,114,110,105,110,103,66,97,110,110,101,114,16,0,25,35,99,111,111,107,105,101,115,87,97,114,110,105,110,103,76,111,103,105,110,80,111,112,85,112,16,0,22,35,99,111,111,107,105,101,115,87,97,114,110,105,110,103,77,101,115,115,97,103,101,16,0,14,35,99,111,111,107,105,101,115,87,105,100,103,101,116,16,0,14,35,99,111,111,107,105,101,115,87,105,110,100,111,119,16,0,12,35,99,111,111,107,105,101,115,87,114,97,112,16,0,15,35,99,111,111,107,105,101,115,87,114,97,112,112,101,114,16,0,34,35,99,111,111,107,105,101,115,91,100,97,116,97,45,114,101,103,105,111,110,45,105,100,61,34,99,111,111,107,105,101,115,34,93,16,0,22,35,99,111,111,107,105,101,115,91,114,111,108,101,61,34,97,108,101,114,116,34,93,16,0,23,35,99,111,111,107,105,101,115,91,114,111,108,101,61,34,100,105,97,108,111,103,34,93,16,0,26,35,99,111,111,107,105,101,115,91,115,116,121,108,101,94,61,34,98,111,116,116,111,109,58,34,93,16,0,9,35,99,111,111,107,105,101,115,95,16,0,20,35,99,111,111,107,105,101,115,95,66,97,99,107,103,114,111,117,110,100,49,16,0,13,35,99,111,111,107,105,101,115,95,73,110,102,111,16,0,16,35,99,111,111,107,105,101,115,95,95,98,97,110,110,101,114,16,0,13,35,99,111,111,107,105,101,115,95,95,110,101,119,16,0,15,35,99,111,111,107,105,101,115,95,95,112,111,112,117,112,16,0,15,35,99,111,111,107,105,101,115,95,97,99,99,101,112,116,16,0,19,35,99,111,111,107,105,101,115,95,97,99,99,101,112,116,95,98,111,120,16,0,25,35,99,111,111,107,105,101,115,95,97,99,99,101,112,116,95,99,111,110,116,97,105,110,101,114,16,0,23,35,99,111,111,107,105,101,115,95,97,99,99,101,112,116,95,111,118,101,114,108,97,121,16,0,17,35,99,111,111,107,105,101,115,95,97,99,99,101,112,116,101,100,16,0,12,35,99,111,111,107,105,101,115,95,97,99,107,16,0,15,35,99,111,111,107,105,101,115,95,97,100,118,105,99,101,16,0,15,35,99,111,111,107,105,101,115,95,97,100,118,105,115,101,16,0,16,35,99,111,111,107,105,101,115,95,97,100,118,105,115,111,114,16,0,14,35,99,111,111,107,105,101,115,95,97,103,114,101,101,16,0,18,35,99,111,111,107,105,101,115,95,97,103,114,101,101,109,101,110,116,16,0,14,35,99,111,111,107,105,101,115,95,97,108,97,114,109,16,0,14,35,99,111,111,107,105,101,115,95,97,108,98,105,97,16,0,14,35,99,111,111,107,105,101,115,95,97,108,101,114,116,16,0,24,35,99,111,111,107,105,101,115,95,97,108,101,114,116,95,99,111,110,116,97,105,110,101,114,16,0,12,35,99,111,111,107,105,101,115,95,97,108,108,16,0,20,35,99,111,111,107,105,101,115,95,97,108,108,111,119,101,100,95,98,111,120,16,0,24,35,99,111,111,107,105,101,115,95,97,108,108,111,119,101,100,95,109,101,115,115,97,103,101,16,0,13,35,99,111,111,107,105,101,115,95,97,112,108,97,16,0,12,35,99,111,111,107,105,101,115,95,97,115,107,16,0,22,35,99,111,111,107,105,101,115,95,97,118,101,114,116,105,115,115,101,109,101,110,116,16,0,14,35,99,111,111,107,105,101,115,95,97,118,105,115,111,16,0,10,35,99,111,111,107,105,101,115,95,98,16,0,13,35,99,111,111,107,105,101,115,95,98,97,110,100,16,0,15,35,99,111,111,107,105,101,115,95,98,97,110,110,101,114,16,0,21,35,99,111,111,107,105,101,115,95,98,97,110,110,101,114,95,97,108,101,114,116,16,0,12,35,99,111,111,107,105,101,115,95,98,97,114,16,0,24,35,99,111,111,107,105,101,115,95,98,97,114,114,97,97,99,101,112,116,97,99,105,111,110,16,0,11,35,99,111,111,107,105,101,115,95,98,103,16,0,14,35,99,111,111,107,105,101,115,95,98,108,111,99,107,16,0,21,35,99,111,111,107,105,101,115,95,98,108,111,99,107,95,102,111,111,116,101,114,16,0,15,35,99,111,111,107,105,101,115,95,98,111,114,100,101,114,16,0,15,35,99,111,111,107,105,101,115,95,98,111,116,116,111,109,16,0,12,35,99,111,111,107,105,101,115,95,98,111,120,16,0,23,35,99,111,111,107,105,101,115,95,98,111,120,95,100,105,115,99,108,97,105,109,101,114,16,0,17,35,99,111,111,107,105,101,115,95,98,111,120,95,105,110,102,111,16,0,19,35,99,111,111,107,105,101,115,95,98,114,105,101,102,95,105,110,102,111,16,0,14,35,99,111,111,107,105,101,115,95,99,104,101,99,107,16,0,20,35,99,111,111,107,105,101,115,95,99,110,105,108,95,98,97,110,110,101,114,16,0,19,35,99,111,111,107,105,101,115,95,99,111,109,112,108,105,97,110,99,101,16,0,13,35,99,111,111,107,105,101,115,95,99,111,110,100,16,0,19,35,99,111,111,107,105,101,115,95,99,111,110,100,105,116,105,111,110,115,16,0,16,35,99,111,111,107,105,101,115,95,99,111,110,102,105,114,109,16,0,20,35,99,111,111,107,105,101,115,95,99,111,110,102,105,114,109,95,98,111,120,16,0,24,35,99,111,111,107,105,101,115,95,99,111,110,102,105,114,109,95,119,114,97,112,112,101,114,16,0,25,35,99,111,111,107,105,101,115,95,99,111,110,102,105,114,109,97,116,105,111,110,95,98,97,114,16,0,16,35,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,16,0,26,35,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,95,102,111,114,109,16,0,13,35,99,111,111,107,105,101,115,95,99,111,110,116,16,0,16,35,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,16,0,18,35,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,16,0,16,35,99,111,111,107,105,101,115,95,99,111,110,116,101,110,116,16,0,22,35,99,111,111,107,105,101,115,95,99,111,110,116,101,110,116,95,98,97,114,114,101,16,0,15,35,99,111,111,107,105,101,115,95,99,117,115,116,111,109,16,0,15,35,99,111,111,107,105,101,115,95,100,105,97,108,111,103,16,0,18,35,99,111,111,107,105,101,115,95,100,105,114,101,99,116,105,118,101,16,0,19,35,99,111,111,107,105,101,115,95,100,105,115,99,108,97,105,109,101,114,16,0,12,35,99,111,111,107,105,101,115,95,100,105,118,16,0,17,35,99,111,111,107,105,101,115,95,100,105,118,95,109,97,105,110,16,0,18,35,99,111,111,107,105,101,115,95,101,99,95,110,111,116,105,99,101,16,0,26,35,99,111,111,107,105,101,115,95,101,110,97,98,108,101,100,95,99,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,115,95,101,110,116,114,121,16,0,17,35,99,111,111,107,105,101,115,95,101,114,108,97,117,98,101,110,16,0,25,35,99,111,111,107,105,101,115,95,101,116,95,116,114,97,99,101,117,114,115,95,67,78,73,76,16,0,11,35,99,111,111,107,105,101,115,95,101,117,16,0,22,35,99,111,111,107,105,101,115,95,101,117,95,97,99,99,101,112,116,97,110,99,101,16,0,13,35,99,111,111,107,105,101,115,95,102,97,100,101,16,0,15,35,99,111,111,107,105,101,115,95,102,111,111,116,101,114,16,0,20,35,99,111,111,107,105,101,115,95,102,111,111,116,101,114,95,105,110,102,111,16,0,21,35,99,111,111,107,105,101,115,95,102,111,111,116,101,114,95,112,111,112,117,112,16,0,19,35,99,111,111,107,105,101,115,95,102,111,111,116,101,114,95,115,101,99,16,0,20,35,99,111,111,107,105,101,115,95,103,100,112,114,95,100,114,97,119,101,114,16,0,15,35,99,111,111,107,105,101,115,95,104,101,97,100,101,114,16,0,13,35,99,111,111,107,105,101,115,95,104,105,110,116,16,0,12,35,99,111,111,107,105,101,115,95,105,110,99,16,0,12,35,99,111,111,107,105,101,115,95,105,110,102,16,0,13,35,99,111,111,107,105,101,115,95,105,110,102,111,16,0,17,35,99,111,111,107,105,101,115,95,105,110,102,111,95,98,111,120,16,0,20,35,99,111,111,107,105,101,115,95,105,110,102,111,95,104,101,97,100,101,114,16,0,19,35,99,111,111,107,105,101,115,95,105,110,102,111,95,112,97,110,101,108,16,0,18,35,99,111,111,107,105,101,115,95,105,110,102,111,95,115,104,111,119,16,0,15,35,99,111,111,107,105,101,115,95,105,110,102,111,114,109,16,0,20,35,99,111,111,107,105,101,115,95,105,110,102,111,114,109,97,116,105,111,110,16,0,14,35,99,111,111,107,105,101,115,95,105,110,102,111,115,16,0,14,35,99,111,111,107,105,101,115,95,105,110,110,101,114,16,0,12,35,99,111,111,107,105,101,115,95,108,97,119,16,0,14,35,99,111,111,107,105,101,115,95,108,97,121,101,114,16,0,14,35,99,111,111,107,105,101,115,95,108,101,103,97,108,16,0,22,35,99,111,111,107,105,101,115,95,108,101,103,97,108,95,109,101,110,116,105,111,110,16,0,20,35,99,111,111,107,105,101,115,95,108,101,103,105,115,108,97,116,105,111,110,16,0,14,35,99,111,111,107,105,101,115,95,108,105,115,116,97,16,0,12,35,99,111,111,107,105,101,115,95,109,101,110,16,0,16,35,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,16,0,20,35,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,95,98,97,114,16,0,26,35,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,95,105,110,102,111,16,0,14,35,99,111,111,107,105,101,115,95,109,111,100,97,108,16,0,12,35,99,111,111,107,105,101,115,95,109,115,103,16,0,16,35,99,111,111,107,105,101,115,95,109,115,103,95,100,105,118,16,0,23,35,99,111,111,107,105,101,115,95,109,115,103,95,115,117,98,119,114,97,112,112,101,114,16,0,20,35,99,111,111,107,105,101,115,95,109,115,103,95,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,115,95,110,111,116,105,99,101,16,0,22,35,99,111,111,107,105,101,115,95,110,111,116,105,99,101,95,98,97,110,110,101,114,16,0,27,35,99,111,111,107,105,101,115,95,110,111,116,105,99,101,95,119,105,100,103,101,116,95,114,111,111,116,16,0,14,35,99,111,111,107,105,101,115,95,110,111,116,105,102,16,0,21,35,99,111,111,107,105,101,115,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,17,35,99,111,111,107,105,101,115,95,110,111,116,105,102,105,101,114,16,0,27,35,99,111,111,107,105,101,115,95,110,111,116,105,102,105,101,114,95,99,111,110,116,97,105,110,101,114,16,0,15,35,99,111,111,107,105,101,115,95,110,111,116,105,102,121,16,0,24,35,99,111,111,107,105,101,115,95,110,111,116,105,102,121,95,99,111,110,116,95,97,108,108,16,0,25,35,99,111,111,107,105,101,115,95,110,111,116,105,102,121,95,99,111,110,116,97,105,110,101,114,16,0,12,35,99,111,111,107,105,101,115,95,111,99,117,16,0,11,35,99,111,111,107,105,101,115,95,111,107,16,0,13,35,99,111,111,107,105,101,115,95,111,114,101,111,16,0,16,35,99,111,111,107,105,101,115,95,111,118,101,114,108,97,121,16,0,22,35,99,111,111,107,105,101,115,95,111,118,101,114,108,97,121,95,115,104,97,100,101,16,0,14,35,99,111,111,107,105,101,115,95,112,97,110,101,108,16,0,17,35,99,111,111,107,105,101,115,95,112,97,110,101,108,95,98,103,16,0,19,35,99,111,111,107,105,101,115,95,112,101,114,109,105,115,115,105,111,110,16,0,23,35,99,111,111,107,105,101,115,95,112,111,108,105,99,105,101,115,95,97,108,101,114,116,16,0,15,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,16,0,22,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,98,97,110,110,101,114,16,0,19,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,98,97,114,16,0,18,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,98,103,16,0,24,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,98,105,103,95,102,111,114,109,16,0,19,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,98,111,120,16,0,25,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,112,111,112,117,112,16,0,20,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,119,114,97,112,16,0,17,35,99,111,111,107,105,101,115,95,112,111,108,105,116,121,107,97,16,0,12,35,99,111,111,107,105,101,115,95,112,111,112,16,0,14,35,99,111,111,107,105,101,115,95,112,111,112,105,110,16,0,14,35,99,111,111,107,105,101,115,95,112,111,112,117,112,16,0,24,35,99,111,111,107,105,101,115,95,112,111,112,117,112,95,99,111,110,116,97,105,110,101,114,16,0,11,35,99,111,111,107,105,101,115,95,112,112,16,0,16,35,99,111,111,107,105,101,115,95,112,114,105,118,97,99,121,16,0,17,35,99,111,111,107,105,101,115,95,113,117,101,115,116,105,111,110,16,0,12,35,99,111,111,107,105,101,115,95,114,101,112,16,0,16,35,99,111,111,107,105,101,115,95,114,101,113,117,101,115,116,16,0,16,35,99,111,111,107,105,101,115,95,115,101,99,116,105,111,110,16,0,20,35,99,111,111,107,105,101,115,95,115,104,111,119,95,100,105,97,108,111,103,16,0,17,35,99,111,111,107,105,101,115,95,115,105,100,95,105,110,102,111,16,0,18,35,99,111,111,107,105,101,115,95,115,116,97,116,101,109,101,110,116,16,0,14,35,99,111,111,107,105,101,115,95,115,116,114,105,112,16,0,12,35,99,111,111,107,105,101,115,95,116,97,98,16,0,14,35,99,111,111,107,105,101,115,95,116,101,114,109,115,16,0,12,35,99,111,111,107,105,101,115,95,116,105,99,16,0,16,35,99,111,111,107,105,101,115,95,116,111,111,108,98,97,114,16,0,14,35,99,111,111,107,105,101,115,95,116,114,101,115,99,16,0,12,35,99,111,111,107,105,101,115,95,116,120,116,16,0,13,35,99,111,111,107,105,101,115,95,118,105,101,119,16,0,15,35,99,111,111,107,105,101,115,95,118,105,101,119,101,114,16,0,13,35,99,111,111,107,105,101,115,95,119,97,114,110,16,0,16,35,99,111,111,107,105,101,115,95,119,97,114,110,105,110,103,16,0,16,35,99,111,111,107,105,101,115,95,119,114,97,112,112,101,114,16,0,11,35,99,111,111,107,105,101,115,97,100,118,16,0,13,35,99,111,111,107,105,101,115,97,103,114,101,101,16,0,13,35,99,111,111,107,105,101,115,97,108,101,114,116,16,0,12,35,99,111,111,107,105,101,115,97,114,101,97,16,0,13,35,99,111,111,107,105,101,115,97,118,105,115,111,16,0,11,35,99,111,111,107,105,101,115,98,97,110,16,0,14,35,99,111,111,107,105,101,115,98,97,110,110,101,114,16,0,11,35,99,111,111,107,105,101,115,98,97,114,16,0,12,35,99,111,111,107,105,101,115,98,108,111,107,16,0,11,35,99,111,111,107,105,101,115,98,111,120,16,0,9,35,99,111,111,107,105,101,115,99,16,0,13,35,99,111,111,107,105,101,115,99,104,101,99,107,16,0,14,35,99,111,111,107,105,101,115,99,104,111,105,99,101,16,0,10,35,99,111,111,107,105,101,115,99,107,16,0,17,35,99,111,111,107,105,101,115,99,107,95,97,99,99,101,112,116,16,0,18,35,99,111,111,107,105,101,115,99,107,95,111,118,101,114,108,97,121,16,0,18,35,99,111,111,107,105,101,115,99,111,110,99,101,110,116,98,97,114,16,0,15,35,99,111,111,107,105,101,115,99,111,110,102,105,114,109,16,0,15,35,99,111,111,107,105,101,115,99,111,110,115,101,110,116,16,0,17,35,99,111,111,107,105,101,115,99,111,110,116,97,105,110,101,114,16,0,15,35,99,111,111,107,105,101,115,99,111,110,116,101,110,116,16,0,13,35,99,111,111,107,105,101,115,99,114,101,101,110,16,0,13,35,99,111,111,107,105,101,115,99,114,105,112,116,16,0,19,35,99,111,111,107,105,101,115,99,114,105,112,116,95,98,97,100,103,101,16,0,23,35,99,111,111,107,105,101,115,99,114,105,112,116,95,99,111,110,116,97,105,110,101,114,16,0,22,35,99,111,111,107,105,101,115,99,114,105,112,116,95,105,110,106,101,99,116,101,100,16,0,33,35,99,111,111,107,105,101,115,99,114,105,112,116,95,105,110,106,101,99,116,101,100,95,98,97,99,107,103,114,111,117,110,100,16,0,30,35,99,111,111,107,105,101,115,99,114,105,112,116,95,105,110,106,101,99,116,101,100,95,119,114,97,112,112,101,114,16,0,25,35,99,111,111,107,105,101,115,99,114,105,112,116,95,105,110,106,101,99,116,101,100,111,110,101,16,0,18,35,99,111,111,107,105,101,115,99,114,105,112,116,95,109,97,105,110,16,0,21,35,99,111,111,107,105,101,115,99,114,105,112,116,95,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,115,100,105,97,108,111,103,16,0,27,35,99,111,111,107,105,101,115,100,105,114,101,99,116,105,118,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,115,100,105,115,99,108,97,105,109,101,114,16,0,15,35,99,111,111,107,105,101,115,100,105,115,112,108,97,121,16,0,11,35,99,111,111,107,105,101,115,100,105,118,16,0,18,35,99,111,111,107,105,101,115,101,97,108,45,98,97,110,110,101,114,16,0,14,35,99,111,111,107,105,101,115,101,99,116,105,111,110,16,0,15,35,99,111,111,107,105,101,115,101,110,97,98,108,101,100,16,0,14,35,99,111,111,107,105,101,115,101,115,97,110,116,101,16,0,13,35,99,111,111,107,105,101,115,101,116,100,105,118,16,0,15,35,99,111,111,107,105,101,115,101,116,116,105,110,103,115,16,0,14,35,99,111,111,107,105,101,115,101,117,45,98,97,114,16,0,11,35,99,111,111,107,105,101,115,104,105,116,16,0,13,35,99,111,111,107,105,101,115,104,111,121,101,114,16,0,12,35,99,111,111,107,105,101,115,105,110,102,111,16,0,19,35,99,111,111,107,105,101,115,105,110,102,111,45,110,97,118,98,97,114,16,0,20,35,99,111,111,107,105,101,115,105,110,102,111,45,119,114,97,112,112,101,114,16,0,17,35,99,111,111,107,105,101,115,105,110,102,111,112,110,108,95,99,16,0,11,35,99,111,111,107,105,101,115,106,115,114,16,0,11,35,99,111,111,107,105,101,115,108,97,119,16,0,16,35,99,111,111,107,105,101,115,108,97,119,99,104,101,99,107,16,0,13,35,99,111,111,107,105,101,115,108,101,103,97,108,16,0,13,35,99,111,111,107,105,101,115,108,105,100,101,114,16,0,13,35,99,111,111,107,105,101,115,108,105,115,116,97,16,0,15,35,99,111,111,107,105,101,115,109,101,108,100,105,110,103,16,0,12,35,99,111,111,107,105,101,115,109,101,110,117,16,0,15,35,99,111,111,107,105,101,115,109,101,115,115,97,103,101,16,0,18,35,99,111,111,107,105,101,115,109,101,115,115,97,103,101,100,105,118,16,0,16,35,99,111,111,107,105,101,115,109,101,115,115,97,103,101,115,16,0,10,35,99,111,111,107,105,101,115,109,115,16,0,11,35,99,111,111,107,105,101,115,109,115,103,16,0,14,35,99,111,111,107,105,101,115,110,111,116,105,99,101,16,0,14,35,99,111,111,107,105,101,115,110,111,116,105,102,121,16,0,10,35,99,111,111,107,105,101,115,111,114,16,0,16,35,99,111,111,107,105,101,115,111,118,101,114,118,105,101,119,16,0,12,35,99,111,111,107,105,101,115,112,97,99,101,16,0,12,35,99,111,111,107,105,101,115,112,97,110,101,16,0,14,35,99,111,111,107,105,101,115,112,108,101,97,115,101,16,0,28,35,99,111,111,107,105,101,115,112,108,117,115,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,115,112,108,117,115,45,111,118,101,114,108,97,121,16,0,14,35,99,111,111,107,105,101,115,112,111,108,105,99,121,16,0,17,35,99,111,111,107,105,101,115,112,111,108,105,99,121,100,105,118,16,0,21,35,99,111,111,107,105,101,115,112,111,108,105,99,121,109,101,115,115,97,103,101,16,0,11,35,99,111,111,107,105,101,115,112,111,112,16,0,13,35,99,111,111,107,105,101,115,112,111,112,117,112,16,0,19,35,99,111,111,107,105,101,115,112,111,112,117,112,45,108,97,121,101,114,16,0,10,35,99,111,111,107,105,101,115,112,112,16,0,14,35,99,111,111,107,105,101,115,114,105,98,98,111,110,16,0,9,35,99,111,111,107,105,101,115,115,16,0,15,35,99,111,111,107,105,101,115,115,101,99,116,105,111,110,16,0,10,35,99,111,111,107,105,101,115,115,115,16,0,11,35,99,111,111,107,105,101,115,116,97,116,16,0,16,35,99,111,111,107,105,101,115,116,97,116,101,109,101,110,116,16,0,13,35,99,111,111,107,105,101,115,116,101,114,109,115,16,0,12,35,99,111,111,107,105,101,115,116,101,120,116,16,0,12,35,99,111,111,107,105,101,115,116,114,105,112,16,0,13,35,99,111,111,107,105,101,115,117,115,97,103,101,16,0,12,35,99,111,111,107,105,101,115,119,97,114,110,16,0,15,35,99,111,111,107,105,101,115,119,97,114,110,105,110,103,16,0,21,35,99,111,111,107,105,101,115,119,97,114,110,105,110,103,95,98,108,111,99,107,16,0,12,35,99,111,111,107,105,101,115,119,114,97,112,16,0,12,35,99,111,111,107,105,101,116,97,98,108,101,16,0,9,35,99,111,111,107,105,101,116,99,16,0,11,35,99,111,111,107,105,101,116,101,115,116,16,0,11,35,99,111,111,107,105,101,116,101,120,116,16,0,14,35,99,111,111,107,105,101,116,101,120,116,100,105,118,16,0,12,35,99,111,111,107,105,101,116,104,105,110,103,16,0,13,35,99,111,111,107,105,101,116,105,99,107,101,114,16,0,12,35,99,111,111,107,105,101,116,111,97,115,116,16,0,22,35,99,111,111,107,105,101,116,111,101,115,116,101,109,109,105,110,103,98,97,108,107,16,0,22,35,99,111,111,107,105,101,116,111,101,115,116,101,109,109,105,110,103,118,108,97,107,16,0,10,35,99,111,111,107,105,101,116,111,112,16,0,13,35,99,111,111,107,105,101,116,111,112,98,97,114,16,0,13,35,99,111,111,107,105,101,116,111,112,112,101,114,16,0,24,35,99,111,111,107,105,101,116,114,97,99,107,105,110,103,97,103,114,101,101,109,101,110,116,16,0,12,35,99,111,111,107,105,101,116,114,111,108,108,16,0,15,35,99,111,111,107,105,101,116,114,111,110,45,98,97,114,16,0,8,35,99,111,111,107,105,101,117,16,0,15,35,99,111,111,107,105,101,117,95,104,101,97,100,101,114,16,0,11,35,99,111,111,107,105,101,117,100,105,118,16,0,10,35,99,111,111,107,105,101,117,115,101,16,0,13,35,99,111,111,107,105,101,117,115,101,97,103,101,16,0,12,35,99,111,111,107,105,101,117,115,105,110,103,16,0,11,35,99,111,111,107,105,101,118,101,105,108,16,0,10,35,99,111,111,107,105,101,118,106,119,16,0,19,35,99,111,111,107,105,101,119,97,97,114,115,99,104,117,119,105,110,103,16,0,11,35,99,111,111,107,105,101,119,97,114,110,16,0,17,35,99,111,111,107,105,101,119,97,114,110,45,112,97,110,101,108,16,0,14,35,99,111,111,107,105,101,119,97,114,110,98,97,114,16,0,13,35,99,111,111,107,105,101,119,97,114,110,101,114,16,0,14,35,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,20,35,99,111,111,107,105,101,119,97,114,110,105,110,103,45,98,108,111,99,107,16,0,21,35,99,111,111,107,105,101,119,97,114,110,105,110,103,95,104,101,97,100,101,114,16,0,23,35,99,111,111,107,105,101,119,97,114,110,105,110,103,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,119,97,114,110,105,110,103,105,102,114,97,109,101,16,0,14,35,99,111,111,107,105,101,119,97,114,110,117,110,103,16,0,10,35,99,111,111,107,105,101,119,101,116,16,0,15,35,99,111,111,107,105,101,119,101,116,45,98,97,108,107,16,0,15,35,99,111,111,107,105,101,119,101,116,45,104,111,101,107,16,0,16,35,99,111,111,107,105,101,119,101,116,103,101,118,105,110,103,16,0,13,35,99,111,111,107,105,101,119,105,110,100,111,119,16,0,18,35,99,111,111,107,105,101,119,111,111,107,105,101,98,108,111,99,107,16,0,11,35,99,111,111,107,105,101,119,114,97,112,16,0,14,35,99,111,111,107,105,101,119,114,97,112,112,101,114,16,0,11,35,99,111,111,107,105,101,120,110,100,111,16,0,12,35,99,111,111,107,105,101,122,101,105,108,101,16,0,15,35,99,111,111,107,105,105,45,109,101,115,115,97,103,101,16,0,15,35,99,111,111,107,105,105,45,111,118,101,114,108,97,121,16,0,9,35,99,111,111,107,105,110,102,111,16,0,12,35,99,111,111,107,105,110,102,111,68,73,86,16,0,19,35,99,111,111,107,105,110,102,111,95,99,111,110,116,97,105,110,101,114,16,0,13,35,99,111,111,107,105,114,80,111,108,105,99,121,16,0,10,35,99,111,111,107,105,115,45,98,103,16,0,11,35,99,111,111,107,105,115,45,98,111,120,16,0,10,35,99,111,111,107,105,115,116,111,112,16,0,7,35,99,111,111,107,105,116,16,0,12,35,99,111,111,107,105,120,45,98,111,100,121,16,0,8,35,99,111,111,107,108,97,119,16,0,8,35,99,111,111,107,108,97,121,16,0,10,35,99,111,111,107,108,97,121,101,114,16,0,13,35,99,111,111,107,110,111,116,101,45,100,105,118,16,0,8,35,99,111,111,107,112,111,108,16,0,8,35,99,111,111,107,116,97,98,16,0,6,35,99,111,111,107,121,16,0,13,35,99,111,111,107,121,45,112,111,108,105,99,121,16,0,13,35,99,111,111,107,121,95,112,111,108,105,99,121,16,0,27,35,99,111,111,108,101,114,109,97,115,116,101,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,12,35,99,111,111,111,111,111,111,107,105,101,115,16,0,16,35,99,111,111,112,67,111,111,107,105,101,76,97,121,101,114,16,0,19,35,99,111,112,95,99,111,110,102,105,114,109,95,99,111,111,107,105,101,16,0,17,35,99,111,114,112,67,111,111,107,105,101,66,97,110,110,101,114,16,0,16,35,99,111,117,110,99,105,108,95,67,111,111,107,105,101,115,16,0,41,35,99,111,117,112,108,105,110,103,45,109,101,100,105,97,45,104,105,110,119,101,105,115,45,99,111,111,107,105,101,45,114,105,99,104,116,108,105,110,105,101,16,0,17,35,99,111,122,67,111,110,115,101,110,116,78,117,103,103,101,116,16,0,17,35,99,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,16,35,99,112,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,20,35,99,112,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,16,0,11,35,99,112,50,95,99,111,111,107,105,101,16,0,20,35,99,112,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,16,0,14,35,99,112,95,99,111,111,107,105,101,95,98,97,114,16,0,8,35,99,112,95,119,114,97,112,16,0,27,35,99,112,110,98,95,109,97,110,97,103,101,114,95,119,114,97,112,95,99,108,111,115,101,95,98,103,16,0,25,35,99,112,110,98,95,119,97,114,110,105,110,103,66,111,120,66,103,79,118,101,114,108,97,121,16,0,12,35,99,112,111,108,105,99,121,45,98,97,114,16,0,15,35,99,112,111,108,105,99,121,45,104,111,108,100,101,114,16,0,14,35,99,112,111,108,105,99,121,72,111,108,100,101,114,16,0,20,35,99,112,115,45,115,104,97,109,97,110,45,110,111,116,105,102,105,101,114,16,0,23,35,99,112,115,67,111,111,107,105,101,72,105,110,116,67,111,110,116,97,105,110,101,114,16,0,11,35,99,113,99,113,66,117,116,116,111,110,16,0,10,35,99,113,99,113,80,97,110,101,108,16,0,28,35,99,114,121,111,117,116,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,19,35,99,115,95,112,111,108,105,116,121,107,97,99,111,111,107,105,101,115,16,0,14,35,99,115,109,45,111,112,116,105,110,45,98,97,114,16,0,18,35,99,115,115,70,67,111,110,115,101,110,116,67,111,111,107,105,101,16,0,17,35,99,115,115,95,99,111,111,107,105,101,115,95,110,111,116,101,16,0,26,35,99,116,45,117,98,101,114,45,103,100,112,114,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,37,35,99,116,45,117,108,116,105,109,97,116,101,45,103,100,112,114,45,99,111,111,107,105,101,45,111,112,101,110,45,115,104,97,100,100,111,119,16,0,30,35,99,116,45,117,108,116,105,109,97,116,101,45,103,100,112,114,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,9,35,99,116,67,111,111,107,105,101,16,0,17,35,99,116,95,99,111,111,107,105,101,95,112,114,111,109,112,116,16,0,11,35,99,116,97,45,99,111,111,107,105,101,16,0,18,35,99,116,97,95,112,114,111,109,112,116,95,98,111,116,116,111,109,16,0,35,35,99,116,108,48,48,95,66,97,114,84,97,98,49,95,100,105,118,73,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,16,0,40,35,99,116,108,48,48,95,67,105,97,115,116,101,99,122,107,97,80,111,108,105,116,121,107,97,95,82,78,67,111,99,107,105,101,95,112,111,112,117,112,16,0,38,35,99,116,108,48,48,95,67,111,110,116,101,110,116,80,108,97,99,101,72,111,108,100,101,114,49,95,100,105,118,95,99,111,111,107,105,101,115,16,0,17,35,99,116,108,48,48,95,67,111,111,107,105,101,65,114,101,97,16,0,25,35,99,116,108,48,48,95,67,111,111,107,105,101,67,111,110,102,105,114,109,80,97,110,101,108,16,0,17,35,99,116,108,48,48,95,67,111,111,107,105,101,73,110,102,111,16,0,31,35,99,116,108,48,48,95,67,111,111,107,105,101,77,101,115,115,97,103,101,49,95,100,105,118,67,111,111,107,105,101,16,0,30,35,99,116,108,48,48,95,67,111,111,107,105,101,77,101,115,115,97,103,101,49,95,117,112,67,111,111,107,105,101,16,0,21,35,99,116,108,48,48,95,67,111,111,107,105,101,87,97,114,110,105,110,103,49,16,0,25,35,99,116,108,48,48,95,67,111,111,107,105,101,115,95,112,110,108,67,111,111,107,105,101,115,16,0,17,35,99,116,108,48,48,95,68,105,118,67,111,111,107,105,101,115,16,0,23,35,99,116,108,48,48,95,69,85,67,111,111,107,105,101,115,87,97,114,110,105,110,103,16,0,29,35,99,116,108,48,48,95,70,111,111,116,101,114,95,114,110,67,111,111,107,105,101,115,95,112,111,112,117,112,16,0,45,35,99,116,108,48,48,95,72,101,97,100,101,114,95,67,111,111,107,105,101,67,111,110,116,114,111,108,95,112,110,108,67,111,111,107,105,101,84,114,105,97,110,103,108,101,16,0,27,35,99,116,108,48,48,95,73,100,67,111,111,107,105,101,115,95,68,105,118,66,108,97,110,99,104,101,16,0,18,35,99,116,108,48,48,95,80,97,110,101,108,67,111,111,107,105,101,16,0,31,35,99,116,108,48,48,95,80,97,110,101,108,80,111,108,105,116,121,107,97,80,114,121,119,97,116,110,111,115,99,105,16,0,16,35,99,116,108,48,48,95,80,97,110,101,108,82,71,80,68,16,0,27,35,99,116,108,48,48,95,99,104,100,114,95,112,110,108,67,111,111,107,105,101,72,101,97,100,101,114,16,0,16,35,99,116,108,48,48,95,99,107,87,97,114,110,105,110,103,16,0,30,35,99,116,108,48,48,95,99,111,111,107,105,101,67,111,110,115,101,110,116,95,112,110,108,67,111,111,107,105,101,16,0,19,35,99,116,108,48,48,95,99,111,111,107,105,101,78,111,116,105,99,101,16,0,18,35,99,116,108,48,48,95,99,111,111,107,105,101,80,97,110,101,108,16,0,16,35,99,116,108,48,48,95,99,111,111,107,105,101,80,110,108,16,0,26,35,99,116,108,48,48,95,99,111,111,107,105,101,95,99,111,111,107,105,101,95,112,97,110,101,108,16,0,19,35,99,116,108,48,48,95,99,111,111,107,105,101,95,112,97,110,101,108,16,0,30,35,99,116,108,48,48,95,99,111,111,107,105,101,99,111,110,115,101,110,116,95,97,106,97,120,80,97,110,101,108,16,0,14,35,99,116,108,48,48,95,99,111,111,107,105,101,115,16,0,17,35,99,116,108,48,48,95,99,111,111,107,105,101,115,95,112,108,16,0,32,35,99,116,108,48,48,95,99,116,108,48,48,95,67,111,111,107,105,101,80,111,108,105,99,121,77,101,115,115,97,103,101,16,0,38,35,99,116,108,48,48,95,99,116,108,48,48,95,67,111,111,107,105,101,80,111,108,105,99,121,95,99,111,111,107,105,101,80,111,108,105,99,121,16,0,25,35,99,116,108,48,48,95,99,116,108,48,48,95,99,111,111,107,105,101,78,111,116,105,99,101,16,0,31,35,99,116,108,48,48,95,99,116,108,48,48,95,99,116,108,48,48,95,99,111,111,107,105,101,76,97,119,80,110,108,16,0,37,35,99,116,108,48,48,95,99,116,108,48,48,95,100,105,118,67,111,111,107,105,101,80,111,108,105,99,121,67,111,110,116,97,105,110,101,114,16,0,26,35,99,116,108,48,48,95,99,116,108,48,48,95,112,114,105,118,97,99,121,85,112,100,97,116,101,16,0,37,35,99,116,108,48,48,95,99,116,108,48,48,95,117,99,67,111,111,107,105,101,65,108,101,114,116,95,117,112,100,116,67,111,111,107,105,101,16,0,26,35,99,116,108,48,48,95,99,116,108,48,54,95,67,111,111,107,105,101,87,114,97,112,112,101,114,16,0,28,35,99,116,108,48,48,95,99,116,108,49,52,95,112,110,108,87,101,85,115,101,67,111,111,107,105,101,115,16,0,40,35,99,116,108,48,48,95,99,116,108,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,95,112,110,108,68,105,115,99,108,97,105,109,101,114,16,0,44,35,99,116,108,48,48,95,99,116,114,108,85,115,101,114,83,116,97,116,105,99,77,101,110,117,95,99,111,111,107,105,101,68,105,97,108,111,103,84,111,112,68,105,118,16,0,19,35,99,116,108,48,48,95,100,105,118,67,111,111,107,105,101,77,115,103,16,0,17,35,99,116,108,48,48,95,100,105,118,67,111,111,107,105,101,115,16,0,27,35,99,116,108,48,48,95,104,101,97,100,101,114,49,95,67,111,111,107,105,101,72,101,97,100,101,114,16,0,31,35,99,116,108,48,48,95,105,110,102,111,114,109,97,99,106,97,67,111,111,107,105,101,115,76,97,121,111,117,116,52,16,0,45,35,99,116,108,48,48,95,105,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,95,100,105,118,73,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,16,0,23,35,99,116,108,48,48,95,112,97,110,67,111,111,107,105,101,65,98,102,114,97,103,101,16,0,19,35,99,116,108,48,48,95,112,97,110,101,108,95,99,111,111,107,105,101,16,0,16,35,99,116,108,48,48,95,112,110,108,67,111,111,107,105,101,16,0,23,35,99,116,108,48,48,95,112,110,108,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,24,35,99,116,108,48,48,95,112,110,108,67,111,111,107,105,101,83,101,116,116,105,110,103,115,16,0,17,35,99,116,108,48,48,95,112,110,108,67,111,111,107,105,101,115,16,0,28,35,99,116,108,48,48,95,112,110,108,73,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,115,16,0,17,35,99,116,108,48,48,95,112,110,108,95,99,111,111,107,105,101,16,0,57,35,99,116,108,48,48,95,112,114,105,118,97,99,121,67,111,111,107,105,101,115,95,76,73,80,67,78,66,95,80,114,105,118,97,99,121,97,110,100,67,111,111,107,105,101,115,78,111,116,105,99,101,80,97,110,101,108,16,0,20,35,99,116,108,48,48,95,112,114,105,118,97,99,121,85,112,100,97,116,101,16,0,36,35,99,116,108,48,48,95,116,104,101,115,101,117,115,67,111,111,107,105,101,80,111,108,105,99,121,95,99,111,111,107,105,101,80,111,108,16,0,38,35,99,116,108,48,48,95,116,104,101,115,101,117,115,67,111,111,107,105,101,80,111,108,105,99,121,95,117,108,67,111,111,107,105,101,80,111,108,16,0,20,35,99,116,108,48,48,95,117,99,68,97,116,101,110,115,99,104,117,116,122,16,0,15,35,99,116,108,48,48,95,117,112,67,111,111,107,105,101,16,0,37,35,99,116,108,48,49,95,99,116,108,48,48,95,67,111,111,107,105,101,80,114,101,102,101,114,101,110,99,101,115,67,111,110,116,114,111,108,16,0,22,35,99,116,108,48,49,95,112,110,108,67,111,111,107,105,101,66,97,110,110,101,114,16,0,21,35,99,116,108,48,49,95,117,105,67,111,111,107,105,101,66,97,110,110,101,114,16,0,14,35,99,116,108,48,52,95,99,111,111,107,105,101,115,16,0,22,35,99,116,108,48,54,95,112,110,108,67,111,111,107,105,101,66,97,110,110,101,114,16,0,14,35,99,116,108,48,56,95,67,111,111,107,105,101,115,16,0,22,35,99,116,108,48,56,95,112,110,108,67,111,111,107,105,101,80,111,108,105,99,121,16,0,22,35,99,116,108,48,57,95,117,120,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,22,35,99,116,108,49,48,95,112,110,108,67,111,111,107,105,101,66,97,110,110,101,114,16,0,18,35,99,116,108,49,51,95,67,111,111,107,105,101,80,97,110,101,108,16,0,16,35,99,116,108,50,48,95,112,110,108,67,111,111,107,105,101,16,0,24,35,99,116,108,50,54,95,85,112,100,97,116,101,80,97,110,101,108,67,111,111,107,105,101,16,0,16,35,99,116,108,51,48,95,112,110,108,67,111,111,107,105,101,16,0,33,35,99,116,108,109,65,99,116,105,111,110,115,68,105,118,95,99,108,111,115,101,67,111,111,107,105,101,66,97,110,110,101,114,16,0,12,35,99,116,110,95,99,111,111,107,105,101,115,16,0,12,35,99,116,114,45,99,111,111,107,105,101,115,16,0,25,35,99,116,114,108,72,101,97,100,101,114,95,100,105,118,67,111,111,107,105,101,84,101,120,116,16,0,19,35,99,116,114,108,95,98,97,114,114,97,95,99,111,111,107,105,101,115,16,0,20,35,99,116,116,95,119,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,20,35,99,116,119,45,105,109,112,108,105,101,100,45,99,111,110,115,101,110,116,16,0,16,35,99,117,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,18,35,99,117,45,112,114,105,118,97,99,121,45,110,111,116,105,99,101,16,0,10,35,99,117,67,111,110,115,101,110,116,16,0,19,35,99,117,108,116,95,99,111,111,107,105,101,95,97,99,99,101,112,116,16,0,18,35,99,117,115,116,45,99,111,111,107,105,101,45,109,111,100,97,108,16,0,11,35,99,117,115,116,99,111,111,107,105,101,16,0,21,35,99,117,115,116,111,109,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,24,35,99,117,115,116,111,109,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,29,35,99,117,115,116,111,109,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,97,110,110,101,114,16,0,21,35,99,117,115,116,111,109,45,104,101,97,100,101,114,45,99,111,111,107,105,101,16,0,30,35,99,117,115,116,111,109,67,111,111,107,105,101,76,111,97,100,105,110,103,66,97,99,107,103,114,111,117,110,100,16,0,14,35,99,117,115,116,111,109,95,99,111,111,107,105,101,16,0,43,35,99,117,115,116,111,109,105,115,101,45,99,111,111,107,105,101,115,45,109,97,105,110,45,98,111,116,116,111,109,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,14,35,99,119,45,99,111,111,107,105,101,73,110,102,111,16,0,21,35,99,119,45,100,97,116,97,45,99,111,111,107,105,101,45,108,101,103,97,108,16,0,10,35,99,119,97,114,110,45,98,111,120,16,0,21,35,99,120,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,16,0,17,35,99,120,95,98,111,116,116,111,109,95,98,97,110,110,101,114,16,0,12,35,99,122,103,100,112,114,45,109,97,115,107,16,0,14,35,99,122,103,100,112,114,45,110,111,116,105,99,101,16,0,17,35,100,45,99,111,111,107,105,101,115,87,97,114,110,105,110,103,16,0,26,35,100,45,99,111,111,107,105,101,115,87,97,114,110,105,110,103,65,100,115,76,97,121,111,117,116,16,0,19,35,100,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,16,0,18,35,100,52,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,13,35,100,65,118,105,115,111,67,111,111,107,105,101,16,0,9,35,100,67,111,111,107,105,101,115,16,0,35,35,100,97,101,120,116,108,119,99,110,102,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,16,0,15,35,100,97,112,45,99,111,111,107,105,101,45,98,97,114,16,0,16,35,100,97,114,107,101,110,101,114,95,99,111,111,107,105,101,16,0,17,35,100,97,115,67,111,111,107,105,101,67,111,110,116,114,111,108,16,0,27,35,100,97,116,97,45,100,105,115,99,108,97,105,109,101,114,46,100,105,115,99,108,97,105,109,101,114,16,0,17,35,100,97,116,97,45,112,114,105,118,97,99,121,45,98,97,114,16,0,23,35,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,98,97,110,110,101,114,16,0,29,35,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,24,35,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,111,118,101,114,108,97,121,16,0,27,35,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,114,101,103,117,108,97,116,105,111,110,16,0,28,35,100,97,116,97,45,115,116,111,114,101,45,112,101,114,109,105,115,115,105,111,110,45,112,111,112,117,112,16,0,18,35,100,97,116,97,67,111,108,108,101,99,116,80,111,108,105,99,121,16,0,18,35,100,97,116,97,80,114,105,118,97,99,121,68,105,97,108,111,103,16,0,24,35,100,97,116,97,95,112,114,111,116,101,99,116,105,111,110,95,99,111,109,109,101,110,116,16,0,31,35,100,97,116,97,95,112,114,111,116,101,99,116,105,111,110,95,99,111,109,109,101,110,116,95,109,111,98,105,108,101,16,0,22,35,100,97,116,97,112,114,111,116,101,99,116,105,111,110,109,101,115,115,97,103,101,16,0,19,35,100,97,116,101,110,115,99,104,117,116,122,45,98,97,110,110,101,114,16,0,20,35,100,97,116,101,110,115,99,104,117,116,122,45,99,111,110,115,101,110,116,16,0,18,35,100,97,116,101,110,115,99,104,117,116,122,45,108,97,121,101,114,16,0,20,35,100,97,116,101,110,115,99,104,117,116,122,95,104,105,110,119,101,105,115,16,0,17,35,100,97,116,101,110,115,99,104,117,116,122,95,105,110,102,111,16,0,18,35,100,97,116,101,110,115,99,104,117,116,122,95,112,111,112,117,112,16,0,29,35,100,97,116,101,110,115,99,104,117,116,122,95,112,111,112,117,112,95,98,97,99,107,103,114,111,117,110,100,16,0,21,35,100,97,116,101,110,115,99,104,117,116,122,99,111,110,116,97,105,110,101,114,16,0,19,35,100,97,116,101,110,115,99,104,117,116,122,99,111,111,99,107,105,101,16,0,19,35,100,97,116,101,110,115,99,104,117,116,122,104,105,110,119,101,105,115,16,0,16,35,100,97,116,101,110,115,99,104,117,116,122,105,110,102,111,16,0,23,35,100,97,116,101,110,115,99,104,117,116,122,105,110,102,111,95,115,112,97,99,101,114,16,0,17,35,100,97,116,101,110,115,99,104,117,116,122,108,97,121,101,114,16,0,23,35,100,98,45,103,100,112,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,27,35,100,99,99,95,99,111,111,107,105,101,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,12,35,100,99,107,45,99,111,111,107,105,101,115,16,0,8,35,100,99,111,111,107,105,101,16,0,14,35,100,100,95,99,111,111,107,105,101,95,98,97,114,16,0,23,35,100,100,109,95,99,111,111,107,105,101,112,111,108,105,99,121,98,97,110,110,101,114,16,0,6,35,100,100,110,101,117,16,0,26,35,100,101,97,108,101,114,115,69,80,114,105,118,97,99,121,68,105,115,99,108,97,105,109,101,114,16,0,29,35,100,101,98,117,103,103,101,100,45,99,111,111,107,105,101,98,97,114,45,99,111,110,116,97,105,110,101,114,16,0,16,35,100,101,99,108,97,114,101,45,99,111,111,107,105,101,115,16,0,11,35,100,101,108,116,97,45,103,100,112,114,16,0,14,35,100,101,108,117,120,101,99,111,111,107,105,101,115,16,0,21,35,100,101,110,110,105,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,28,35,100,101,110,110,105,115,45,99,111,111,107,105,101,110,111,116,101,45,99,111,110,116,97,105,110,101,114,16,0,17,35,100,101,115,101,116,45,99,111,111,107,105,101,45,98,97,114,16,0,22,35,100,101,115,107,116,111,112,45,98,97,110,110,101,114,45,115,116,114,105,112,101,16,0,26,35,100,101,115,107,116,111,112,45,99,111,111,107,105,101,45,100,105,115,99,108,111,115,117,114,101,16,0,17,35,100,101,115,107,116,111,112,67,111,111,107,105,101,77,115,103,16,0,15,35,100,101,118,105,99,111,111,107,105,101,105,110,102,111,16,0,29,35,100,102,99,45,99,111,111,107,105,101,45,99,111,110,99,101,114,110,45,99,111,110,116,97,105,110,101,114,16,0,18,35,100,103,99,111,111,107,105,101,115,65,108,101,114,116,66,105,103,16,0,14,35,100,103,100,115,103,118,111,99,111,111,107,105,101,16,0,12,35,100,103,112,95,99,111,111,107,105,101,115,16,0,17,35,100,103,112,114,99,111,111,107,105,101,98,97,110,110,101,114,16,0,18,35,100,105,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,14,35,100,105,97,108,111,103,45,99,111,111,107,105,101,16,0,15,35,100,105,97,108,111,103,45,99,111,111,107,105,101,115,16,0,16,35,100,105,97,108,111,103,45,101,117,67,111,111,107,105,101,16,0,23,35,100,105,97,108,111,103,45,109,111,100,97,108,45,99,111,111,107,105,101,97,100,118,16,0,25,35,100,105,97,108,111,103,65,99,99,101,112,116,67,111,111,107,105,101,80,111,108,105,99,121,16,0,21,35,100,105,97,108,111,103,67,111,110,102,105,114,109,67,111,111,107,105,101,115,16,0,15,35,100,105,97,108,111,103,95,99,111,111,107,105,101,115,16,0,27,35,100,105,97,108,111,103,95,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,111,107,105,101,16,0,15,35,100,105,97,108,111,103,111,67,111,111,107,105,101,115,16,0,14,35,100,105,100,111,109,105,45,110,111,116,105,99,101,16,0,22,35,100,105,102,102,117,115,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,25,35,100,105,103,105,112,117,98,108,105,99,97,45,99,111,111,107,105,101,45,115,104,97,100,101,16,0,23,35,100,105,103,105,115,99,104,111,111,108,95,99,111,111,107,105,101,95,112,117,115,104,16,0,13,35,100,105,103,111,95,99,111,111,107,105,101,115,16,0,18,35,100,105,110,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,19,35,100,105,110,97,109,111,80,114,105,118,97,99,121,80,111,112,117,112,16,0,20,35,100,105,115,45,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,16,0,19,35,100,105,115,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,13,35,100,105,115,99,108,95,99,111,111,107,105,101,16,0,13,35,100,105,115,99,108,97,105,109,95,98,97,114,16,0,15,35,100,105,115,99,108,97,105,109,101,114,45,98,111,120,16,0,18,35,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,16,0,19,35,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,115,16,0,22,35,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,115,95,98,103,16,0,14,35,100,105,115,99,108,97,105,109,101,114,66,111,120,16,0,12,35,100,105,115,99,108,97,105,109,101,114,67,16,0,17,35,100,105,115,99,108,97,105,109,101,114,67,111,111,107,105,101,16,0,18,35,100,105,115,99,108,97,105,109,101,114,67,111,111,107,105,101,115,16,0,23,35,100,105,115,99,108,97,105,109,101,114,68,105,97,108,111,103,95,109,111,100,97,108,16,0,15,35,100,105,115,99,108,97,105,109,101,114,71,68,80,82,16,0,18,35,100,105,115,99,108,97,105,109,101,114,95,99,111,111,107,105,101,16,0,19,35,100,105,115,99,108,97,105,109,101,114,95,99,111,111,107,105,101,115,16,0,23,35,100,105,115,109,105,115,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,26,35,100,105,115,109,105,115,115,97,98,108,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,28,35,100,105,115,110,101,121,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,17,35,100,105,115,111,102,108,101,120,45,99,111,111,107,105,101,115,16,0,9,35,100,105,115,112,67,80,65,65,16,0,23,35,100,105,115,112,108,97,121,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,31,35,100,105,115,112,108,97,121,67,111,111,107,105,101,85,115,97,103,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,100,105,115,112,108,97,121,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,19,35,100,105,118,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,11,35,100,105,118,45,99,111,111,107,105,101,16,0,19,35,100,105,118,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,16,35,100,105,118,45,99,111,111,107,105,101,45,105,110,102,111,16,0,21,35,100,105,118,45,99,111,111,107,105,101,45,107,111,109,117,110,105,107,97,116,16,0,19,35,100,105,118,45,99,111,111,107,105,101,45,109,111,110,115,116,101,114,16,0,12,35,100,105,118,45,99,111,111,107,105,101,115,16,0,17,35,100,105,118,45,105,110,102,111,45,99,111,111,107,105,101,115,16,0,15,35,100,105,118,45,116,111,45,99,111,111,107,105,101,115,16,0,15,35,100,105,118,45,117,115,101,45,99,111,111,107,105,101,16,0,16,35,100,105,118,65,99,99,101,112,116,67,111,111,107,105,101,16,0,17,35,100,105,118,65,99,101,112,116,97,67,111,111,107,105,101,115,16,0,15,35,100,105,118,65,118,105,115,67,111,111,107,105,101,115,16,0,16,35,100,105,118,65,118,105,115,111,67,111,111,107,105,101,115,16,0,11,35,100,105,118,67,80,77,111,100,97,108,16,0,15,35,100,105,118,67,104,101,99,107,67,111,111,107,105,101,16,0,12,35,100,105,118,67,111,111,107,73,110,102,111,16,0,10,35,100,105,118,67,111,111,107,105,101,16,0,20,35,100,105,118,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,16,0,19,35,100,105,118,67,111,111,107,105,101,65,103,114,101,101,109,101,110,116,16,0,15,35,100,105,118,67,111,111,107,105,101,65,108,101,114,116,16,0,16,35,100,105,118,67,111,111,107,105,101,66,97,110,110,101,114,16,0,20,35,100,105,118,67,111,111,107,105,101,67,104,111,105,99,101,73,110,102,111,16,0,20,35,100,105,118,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,16,0,17,35,100,105,118,67,111,111,107,105,101,67,111,110,102,105,114,109,16,0,17,35,100,105,118,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,22,35,100,105,118,67,111,111,107,105,101,67,111,110,115,101,110,116,73,110,110,101,114,16,0,33,35,100,105,118,67,111,111,107,105,101,67,111,110,115,101,110,116,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,19,35,100,105,118,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,12,35,100,105,118,67,111,111,107,105,101,69,85,16,0,15,35,100,105,118,67,111,111,107,105,101,69,103,97,116,101,16,0,14,35,100,105,118,67,111,111,107,105,101,73,110,102,111,16,0,16,35,100,105,118,67,111,111,107,105,101,73,110,102,111,114,109,16,0,13,35,100,105,118,67,111,111,107,105,101,76,97,119,16,0,15,35,100,105,118,67,111,111,107,105,101,76,101,97,114,110,16,0,13,35,100,105,118,67,111,111,107,105,101,77,115,103,16,0,22,35,100,105,118,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,16,35,100,105,118,67,111,111,107,105,101,78,111,116,105,102,121,16,0,16,35,100,105,118,67,111,111,107,105,101,80,111,108,105,99,121,16,0,29,35,100,105,118,67,111,111,107,105,101,80,111,108,105,116,105,99,97,80,114,105,118,97,99,105,100,97,100,101,16,0,21,35,100,105,118,67,111,111,107,105,101,83,116,105,99,107,121,76,97,121,101,114,16,0,29,35,100,105,118,67,111,111,107,105,101,83,116,105,99,107,121,76,97,121,101,114,66,97,99,107,100,114,111,112,16,0,18,35,100,105,118,67,111,111,107,105,101,85,115,101,100,78,111,116,101,16,0,15,35,100,105,118,67,111,111,107,105,101,85,121,97,114,105,16,0,17,35,100,105,118,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,11,35,100,105,118,67,111,111,107,105,101,115,16,0,16,35,100,105,118,67,111,111,107,105,101,115,65,108,101,114,116,16,0,14,35,100,105,118,67,111,111,107,105,101,115,66,111,120,16,0,15,35,100,105,118,67,111,111,107,105,101,115,67,78,73,76,16,0,23,35,100,105,118,67,111,111,107,105,101,115,67,111,110,102,105,114,109,97,116,105,111,110,16,0,18,35,100,105,118,67,111,111,107,105,101,115,67,111,110,115,101,110,116,16,0,12,35,100,105,118,67,111,111,107,105,101,115,70,16,0,16,35,100,105,118,67,111,111,107,105,101,115,70,105,120,101,100,16,0,18,35,100,105,118,67,111,111,107,105,101,115,77,101,115,115,97,103,101,16,0,14,35,100,105,118,67,111,111,107,105,101,115,77,115,103,16,0,17,35,100,105,118,67,111,111,107,105,101,115,80,111,108,105,99,121,16,0,22,35,100,105,118,67,111,111,107,105,101,115,95,112,110,108,67,111,111,107,105,101,115,16,0,14,35,100,105,118,68,105,115,99,108,97,105,109,101,114,16,0,24,35,100,105,118,70,114,109,85,115,101,114,67,111,111,107,105,101,67,111,110,102,105,114,109,16,0,14,35,100,105,118,73,110,102,111,67,111,111,107,105,101,16,0,15,35,100,105,118,73,110,102,111,67,111,111,107,105,101,115,16,0,22,35,100,105,118,73,110,102,111,114,109,97,99,105,111,110,67,111,111,107,105,101,115,16,0,21,35,100,105,118,73,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,16,0,22,35,100,105,118,73,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,115,16,0,21,35,100,105,118,77,97,105,110,67,111,111,107,105,101,115,80,111,108,105,99,121,16,0,17,35,100,105,118,77,101,110,115,97,106,101,67,111,111,107,105,101,16,0,16,35,100,105,118,77,101,114,97,99,67,111,111,107,105,101,115,16,0,13,35,100,105,118,77,115,103,67,111,111,107,105,101,16,0,10,35,100,105,118,80,105,115,107,111,116,16,0,12,35,100,105,118,80,105,115,107,111,116,107,105,16,0,14,35,100,105,118,80,111,108,67,111,111,107,105,101,115,16,0,20,35,100,105,118,80,111,108,105,99,121,65,99,99,101,112,116,97,110,99,101,16,0,13,35,100,105,118,80,111,108,105,99,121,66,97,114,16,0,11,35,100,105,118,80,114,105,118,97,99,121,16,0,23,35,100,105,118,80,114,111,116,101,99,116,105,111,110,86,105,101,80,114,105,118,101,101,16,0,26,35,100,105,118,86,97,108,105,100,97,116,105,111,110,67,111,111,107,105,101,67,104,97,114,116,101,16,0,21,35,100,105,118,95,67,79,79,75,73,69,82,73,67,72,84,76,73,78,73,69,16,0,14,35,100,105,118,95,67,111,111,107,105,101,76,97,119,16,0,21,35,100,105,118,95,67,111,111,107,105,101,76,97,119,95,112,97,114,101,110,116,16,0,17,35,100,105,118,95,67,111,111,107,105,101,80,111,108,105,99,121,16,0,18,35,100,105,118,95,95,95,95,95,101,95,112,114,105,118,97,99,121,16,0,19,35,100,105,118,95,97,99,99,101,112,116,95,99,111,111,107,105,101,115,16,0,15,35,100,105,118,95,97,107,99,101,112,116,97,99,106,97,16,0,18,35,100,105,118,95,97,108,101,114,116,95,99,111,111,107,105,101,115,16,0,21,35,100,105,118,95,98,97,114,95,99,111,111,107,105,101,115,95,105,110,102,111,16,0,17,35,100,105,118,95,99,105,97,115,116,107,97,95,105,110,102,111,16,0,16,35,100,105,118,95,99,110,105,108,95,99,111,111,107,105,101,16,0,13,35,100,105,118,95,99,111,111,99,107,105,101,115,16,0,9,35,100,105,118,95,99,111,111,107,16,0,11,35,100,105,118,95,99,111,111,107,105,101,16,0,15,35,100,105,118,95,99,111,111,107,105,101,73,110,102,111,16,0,15,35,100,105,118,95,99,111,111,107,105,101,95,105,110,100,16,0,15,35,100,105,118,95,99,111,111,107,105,101,95,109,115,103,16,0,17,35,100,105,118,95,99,111,111,107,105,101,110,111,116,105,99,101,16,0,12,35,100,105,118,95,99,111,111,107,105,101,115,16,0,19,35,100,105,118,95,99,111,111,107,105,101,115,95,97,99,99,101,112,116,16,0,18,35,100,105,118,95,99,111,111,107,105,101,115,95,97,108,108,111,119,16,0,18,35,100,105,118,95,99,111,111,107,105,101,115,95,110,117,101,118,97,16,0,20,35,100,105,118,95,99,111,111,107,105,101,115,95,119,97,114,110,105,110,103,16,0,31,35,100,105,118,95,99,111,111,107,105,101,115,112,111,108,105,99,121,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,11,35,100,105,118,95,99,111,111,107,105,115,16,0,16,35,100,105,118,95,103,100,112,114,95,102,111,111,116,101,114,16,0,16,35,100,105,118,95,105,110,102,111,95,99,111,111,107,105,101,16,0,17,35,100,105,118,95,105,110,102,111,95,99,111,111,107,105,101,115,16,0,20,35,100,105,118,95,109,101,115,115,97,103,101,95,99,111,111,107,105,101,115,16,0,20,35,100,105,118,95,112,111,108,105,116,105,99,97,95,99,111,111,107,105,101,16,0,21,35,100,105,118,95,112,111,108,105,116,105,113,117,101,95,99,111,111,107,105,101,16,0,22,35,100,105,118,95,112,111,108,105,116,105,113,117,101,95,99,111,111,107,105,101,115,16,0,15,35,100,105,118,95,112,111,112,95,99,111,111,107,105,101,16,0,19,35,100,105,118,95,115,105,116,101,99,111,111,107,105,101,95,97,115,107,16,0,15,35,100,105,118,95,117,115,101,95,99,111,111,107,105,101,16,0,16,35,100,105,118,95,117,115,101,95,99,111,111,107,105,101,115,16,0,20,35,100,105,118,99,99,110,99,111,111,107,105,101,112,114,105,118,97,99,121,16,0,11,35,100,105,118,99,111,110,115,101,110,116,16,0,8,35,100,105,118,99,111,111,107,16,0,10,35,100,105,118,99,111,111,107,105,101,16,0,17,35,100,105,118,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,17,35,100,105,118,99,111,111,107,105,101,104,105,110,119,101,105,115,16,0,12,35,100,105,118,99,111,111,107,105,101,111,107,16,0,11,35,100,105,118,99,111,111,107,105,101,115,16,0,23,35,100,105,118,105,45,108,105,102,101,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,19,35,100,105,118,109,101,110,115,97,103,101,109,99,111,111,107,105,101,49,16,0,18,35,100,105,118,112,114,105,118,97,99,121,99,111,111,107,105,101,115,16,0,8,35,100,107,95,103,100,112,114,16,0,10,35,100,107,109,99,111,111,107,105,101,16,0,10,35,100,108,95,99,111,111,107,105,101,16,0,16,35,100,108,95,99,111,111,107,105,101,66,97,110,110,101,114,16,0,17,35,100,108,95,99,111,111,107,105,101,95,102,111,111,116,101,114,16,0,11,35,100,108,103,67,111,111,107,105,101,115,16,0,17,35,100,108,103,95,99,111,111,107,105,101,95,102,114,97,109,101,16,0,22,35,100,108,105,99,111,111,107,105,101,117,115,97,103,101,119,97,114,110,105,110,103,16,0,26,35,100,109,45,99,111,111,107,105,101,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,16,0,16,35,100,109,95,99,111,111,107,105,101,108,97,95,98,97,114,16,0,16,35,100,109,95,115,104,111,119,95,99,111,111,107,105,101,115,16,0,16,35,100,109,112,99,111,111,107,105,101,110,111,116,105,99,101,16,0,15,35,100,109,115,67,111,111,107,105,101,80,111,112,117,112,16,0,16,35,100,109,120,80,111,112,117,112,67,111,111,107,105,101,115,16,0,24,35,100,110,95,99,111,111,107,105,101,95,110,111,116,105,99,101,95,98,97,110,110,101,114,16,0,17,35,100,110,105,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,18,35,100,110,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,14,35,100,110,110,95,112,108,67,111,111,107,105,101,115,16,0,25,35,100,111,45,99,111,111,107,105,101,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,16,0,14,35,100,111,67,111,111,107,105,101,65,108,101,114,116,16,0,18,35,100,111,99,45,98,97,110,110,101,114,45,99,111,111,107,105,101,16,0,15,35,100,111,99,111,111,107,105,101,99,111,111,107,105,101,16,0,19,35,100,111,99,117,109,101,110,116,67,111,111,107,105,101,73,110,102,111,16,0,22,35,100,111,103,45,115,112,45,112,114,105,118,97,99,121,45,98,117,116,116,111,110,16,0,16,35,100,111,103,109,97,99,111,111,107,105,101,104,105,110,116,16,0,37,35,100,111,109,67,111,111,107,105,101,87,97,114,110,105,110,103,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,16,0,10,35,100,111,110,117,116,45,108,97,119,16,0,17,35,100,111,116,98,97,110,100,101,97,117,99,111,111,107,105,101,16,0,20,35,100,112,45,99,99,45,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,17,35,100,112,87,97,114,110,105,110,103,87,114,97,112,112,101,114,16,0,13,35,100,112,99,99,45,119,114,97,112,112,101,114,16,0,19,35,100,114,45,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,16,0,16,35,100,114,95,98,108,111,99,107,105,110,103,95,100,105,118,16,0,12,35,100,114,100,115,103,118,111,95,100,105,118,16,0,12,35,100,114,111,112,45,99,111,111,107,105,101,16,0,17,35,100,115,45,115,116,45,99,111,111,107,105,101,115,98,97,114,16,0,13,35,100,115,95,99,111,111,107,105,101,98,97,114,16,0,13,35,100,115,103,118,111,45,45,112,111,112,117,112,16,0,13,35,100,115,103,118,111,45,98,97,110,110,101,114,16,0,13,35,100,115,103,118,111,45,98,111,116,116,111,109,16,0,20,35,100,115,103,118,111,45,99,111,110,115,101,110,116,45,108,97,121,101,114,16,0,16,35,100,115,103,118,111,45,99,111,110,116,97,105,110,101,114,16,0,13,35,100,115,103,118,111,45,99,111,111,107,105,101,16,0,26,35,100,115,103,118,111,45,99,111,111,107,105,101,45,99,111,110,102,105,103,117,114,97,116,111,114,16,0,23,35,100,115,103,118,111,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,23,35,100,115,103,118,111,45,99,111,111,107,105,101,45,100,110,116,45,108,97,121,101,114,16,0,19,35,100,115,103,118,111,45,99,111,111,107,105,101,45,108,97,121,101,114,16,0,12,35,100,115,103,118,111,45,109,111,100,97,108,16,0,20,35,100,115,103,118,111,45,109,111,100,97,108,45,119,114,97,112,112,101,114,16,0,13,35,100,115,103,118,111,45,111,112,116,45,105,110,16,0,12,35,100,115,103,118,111,45,112,97,110,101,108,16,0,9,35,100,115,103,118,111,66,111,120,16,0,18,35,100,115,103,118,111,67,111,111,107,105,101,66,97,110,110,101,114,16,0,12,35,100,115,103,118,111,70,111,111,116,101,114,16,0,13,35,100,115,103,118,111,95,98,97,110,110,101,114,16,0,10,35,100,115,103,118,111,95,98,111,120,16,0,13,35,100,115,103,118,111,95,99,111,111,107,105,101,16,0,18,35,100,115,103,118,111,95,99,111,111,107,105,101,95,104,105,110,116,16,0,18,35,100,115,103,118,111,95,99,111,111,107,105,101,95,110,111,116,101,16,0,11,35,100,115,103,118,111,95,105,110,102,111,16,0,9,35,100,115,103,118,111,95,118,50,16,0,14,35,100,115,103,118,111,95,119,114,97,112,112,101,114,16,0,10,35,100,115,112,99,111,111,107,105,101,16,0,12,35,100,115,118,103,111,65,99,99,101,112,116,16,0,13,35,100,115,118,103,111,79,118,101,114,108,97,121,16,0,13,35,100,115,118,103,111,95,99,111,111,107,105,101,16,0,22,35,100,116,95,50,48,49,56,95,116,111,115,95,112,112,95,117,112,100,97,116,101,16,0,11,35,100,116,120,45,99,111,111,107,105,101,16,0,34,35,100,116,121,114,100,45,104,105,103,104,108,105,103,104,116,45,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,16,0,11,35,100,117,112,67,111,111,107,105,101,115,16,0,17,35,100,118,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,31,35,100,118,45,116,51,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,45,109,111,100,97,108,16,0,15,35,100,118,65,99,99,101,112,116,67,111,111,107,105,101,16,0,16,35,100,118,65,99,99,101,112,116,67,111,111,107,105,101,115,16,0,15,35,100,118,67,101,114,101,122,66,105,108,103,105,115,105,16,0,9,35,100,118,67,111,111,107,105,101,16,0,15,35,100,118,67,111,111,107,105,101,66,97,110,110,101,114,16,0,12,35,100,118,67,111,111,107,105,101,66,97,114,16,0,12,35,100,118,67,111,111,107,105,101,67,104,107,16,0,19,35,100,118,67,111,111,107,105,101,67,104,111,105,99,101,73,110,102,111,16,0,13,35,100,118,67,111,111,107,105,101,73,110,102,111,16,0,16,35,100,118,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,14,35,100,118,67,111,111,107,105,101,80,111,112,117,112,16,0,10,35,100,118,67,111,111,107,105,101,115,16,0,10,35,100,118,80,114,105,118,97,99,121,16,0,13,35,100,118,82,71,80,68,99,111,111,107,105,101,16,0,14,35,100,118,83,105,116,101,67,111,111,107,105,101,115,16,0,17,35,100,118,95,99,111,111,107,105,101,115,95,97,108,101,114,116,16,0,21,35,100,118,116,95,99,111,111,107,105,101,99,104,111,105,99,101,105,110,102,111,16,0,8,35,100,120,45,99,111,107,105,16,0,25,35,100,120,67,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,16,0,19,35,100,120,109,95,99,107,83,99,114,95,105,110,106,101,99,116,101,100,16,0,24,35,100,121,45,99,111,111,107,105,101,73,110,102,111,45,99,111,110,116,97,105,110,101,114,16,0,17,35,100,121,95,99,111,111,107,105,101,98,97,114,95,48,48,49,16,0,20,35,100,121,110,97,109,105,99,45,99,111,111,107,105,101,115,45,98,97,114,16,0,28,35,100,121,110,97,109,105,99,45,99,111,111,107,105,101,115,45,98,97,114,45,111,118,101,114,108,97,121,16,0,5,35,100,121,119,99,16,0,13,35,100,121,119,99,95,98,103,108,97,121,101,114,16,0,18,35,101,45,112,114,105,118,97,99,121,45,109,101,115,115,97,103,101,16,0,18,35,101,50,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,9,35,101,51,99,111,111,107,105,101,16,0,26,35,101,51,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,21,35,101,67,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,16,0,11,35,101,67,111,111,107,105,101,77,115,103,16,0,15,35,101,75,80,67,95,67,111,110,116,97,105,110,101,114,16,0,9,35,101,80,114,105,118,97,99,121,16,0,15,35,101,80,114,105,118,97,99,121,66,97,110,110,101,114,16,0,19,35,101,80,114,105,118,97,99,121,68,105,115,99,108,97,105,109,101,114,16,0,12,35,101,83,116,111,114,101,95,103,100,112,114,16,0,16,35,101,95,99,111,111,107,105,101,87,97,114,110,105,110,103,16,0,19,35,101,97,99,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,13,35,101,97,102,119,45,99,111,111,107,105,101,115,16,0,29,35,101,97,103,101,114,108,121,45,116,111,111,108,115,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,33,35,101,97,115,121,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,109,97,105,110,45,119,114,97,112,112,101,114,16,0,11,35,101,97,115,121,67,111,111,107,105,101,16,0,15,35,101,97,115,121,99,111,111,107,105,101,105,110,102,111,16,0,18,35,101,97,119,101,95,99,111,111,107,105,101,115,95,105,110,102,111,16,0,23,35,101,98,115,110,105,110,106,97,98,97,114,45,99,111,111,107,105,101,45,98,97,114,16,0,31,35,101,98,117,116,111,111,45,101,97,115,121,45,100,115,103,118,111,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,29,35,101,99,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,115,45,99,111,110,116,97,105,110,101,114,16,0,38,35,101,99,45,112,111,112,117,112,45,109,111,100,97,108,91,115,116,121,108,101,61,34,100,105,115,112,108,97,121,58,98,108,111,99,107,34,93,16,0,18,35,101,99,100,95,111,112,116,95,105,110,95,98,97,110,110,101,114,16,0,11,35,101,99,108,45,110,111,116,105,99,101,16,0,17,35,101,99,108,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,17,35,101,99,108,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,10,35,101,99,108,99,111,111,107,105,101,16,0,15,35,101,99,111,109,97,115,45,115,99,99,104,45,101,120,16,0,18,35,101,99,111,109,97,115,45,115,99,99,104,45,101,120,45,98,103,16,0,18,35,101,99,111,110,100,97,45,112,112,50,45,98,97,110,110,101,114,16,0,8,35,101,99,111,111,107,105,101,16,0,15,35,101,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,14,35,101,99,114,97,110,45,99,111,111,107,105,101,115,16,0,17,35,101,99,114,97,110,67,111,111,107,105,101,65,108,101,114,116,16,0,19,35,101,100,45,103,100,112,114,45,99,111,111,107,105,101,45,98,97,114,16,0,23,35,101,100,99,67,111,111,107,105,101,115,80,111,108,105,99,121,66,97,110,110,101,114,16,0,19,35,101,100,112,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,30,35,101,100,112,95,67,111,111,107,105,101,115,95,68,105,115,99,108,97,105,109,101,114,95,66,97,110,110,101,114,16,0,14,35,101,100,117,110,101,116,67,111,111,107,105,101,115,16,0,19,35,101,101,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,16,0,23,35,101,101,97,45,99,111,110,102,105,114,109,97,116,105,111,110,45,111,117,116,101,114,16,0,18,35,101,101,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,101,102,120,45,98,97,110,110,101,114,45,112,114,111,109,112,116,16,0,15,35,101,103,103,45,99,111,111,107,105,101,45,98,97,114,16,0,20,35,101,103,109,111,110,116,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,17,35,101,103,115,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,17,35,101,104,109,115,45,99,111,111,107,105,101,45,105,110,102,111,16,0,10,35,101,105,95,99,111,111,107,105,101,16,0,19,35,101,105,107,121,111,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,31,35,101,105,109,109,95,98,111,120,95,99,111,111,107,105,101,95,97,108,101,114,116,101,95,109,101,115,115,97,103,101,16,0,22,35,101,105,114,99,111,109,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,11,35,101,107,45,99,111,111,107,105,101,115,16,0,16,35,101,107,115,67,111,111,107,105,101,80,114,111,109,112,116,16,0,18,35,101,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,13,35,101,108,71,117,101,115,116,84,101,114,109,115,16,0,19,35,101,108,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,29,35,101,108,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,16,0,22,35,101,108,101,109,101,110,116,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,18,35,101,108,113,79,112,116,73,110,66,97,110,110,101,114,68,105,118,16,0,16,35,101,108,117,109,98,117,115,45,99,111,111,107,105,101,115,16,0,20,35,101,108,117,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,19,35,101,109,99,50,112,100,99,45,100,105,115,99,108,97,105,109,101,114,16,0,22,35,101,109,99,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,12,35,101,109,101,97,45,99,111,111,107,105,101,16,0,16,35,101,109,101,97,45,99,111,111,107,105,101,45,109,115,103,16,0,17,35,101,109,101,114,103,101,110,116,101,67,111,111,107,105,101,115,16,0,19,35,101,109,101,114,115,101,45,99,111,110,115,101,110,116,45,112,111,112,16,0,15,35,101,109,103,95,99,111,111,107,105,101,119,97,108,108,16,0,21,35,101,109,110,112,114,105,118,97,99,121,115,101,114,118,105,99,101,95,117,105,16,0,23,35,101,109,111,98,105,108,101,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,20,35,101,109,112,111,114,105,45,99,111,111,107,105,101,45,109,111,100,97,108,16,0,18,35,101,110,97,98,108,101,45,99,111,111,107,105,101,45,98,97,114,16,0,18,35,101,110,97,98,108,101,67,111,111,107,105,101,45,99,111,110,116,16,0,14,35,101,110,97,98,108,101,99,111,111,107,105,101,115,16,0,17,35,101,110,101,100,117,101,95,99,111,111,107,105,101,66,111,120,16,0,23,35,101,110,104,97,110,99,101,100,45,112,114,105,118,97,99,121,45,112,111,112,117,112,16,0,12,35,101,110,115,66,97,110,110,101,114,66,71,16,0,17,35,101,110,115,67,111,110,115,101,110,116,87,105,100,103,101,116,16,0,44,35,101,110,115,77,111,100,97,108,87,114,97,112,112,101,114,91,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,42,61,34,67,111,110,115,101,110,116,34,93,16,0,22,35,101,110,115,77,111,100,97,108,87,114,97,112,112,101,114,91,114,111,108,101,93,16,0,16,35,101,110,115,78,111,116,105,102,121,66,97,110,110,101,114,16,0,24,35,101,110,115,95,112,114,95,109,105,110,105,46,101,110,115,95,112,114,95,109,105,110,105,16,0,22,35,101,110,116,114,121,67,111,111,107,105,101,58,110,111,116,40,98,111,100,121,41,16,0,9,35,101,111,99,111,111,107,105,101,16,0,24,35,101,112,45,99,111,111,107,105,101,115,80,111,112,117,112,95,119,114,97,112,112,101,114,16,0,16,35,101,112,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,19,35,101,112,95,99,111,111,107,105,101,115,95,111,118,101,114,108,97,121,16,0,15,35,101,112,100,80,108,97,99,101,104,111,108,100,101,114,16,0,29,35,101,112,112,99,99,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,16,0,9,35,101,112,114,105,118,97,99,121,16,0,15,35,101,112,114,105,118,97,99,121,45,111,117,116,101,114,16,0,16,35,101,112,115,95,99,111,111,107,105,101,95,105,110,102,111,16,0,17,35,101,114,119,45,112,114,105,118,97,99,121,45,105,110,102,111,16,0,11,35,101,115,45,99,111,110,115,101,110,116,16,0,22,35,101,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,112,112,16,0,19,35,101,115,95,99,111,111,107,105,101,95,115,111,108,117,116,105,111,110,16,0,13,35,101,115,99,111,111,107,105,101,45,98,111,120,16,0,19,35,101,115,105,65,99,99,101,112,116,67,111,111,107,105,101,66,97,114,16,0,18,35,101,115,105,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,19,35,101,115,105,116,101,115,45,99,111,111,107,105,101,45,105,110,102,111,16,0,16,35,101,115,108,95,99,111,111,107,105,101,95,105,110,102,111,16,0,22,35,101,115,110,115,95,98,97,99,107,103,114,111,117,110,100,95,108,97,121,101,114,16,0,19,35,101,115,118,45,104,101,97,100,101,114,45,99,111,111,107,105,101,115,16,0,14,35,101,116,45,103,100,112,114,45,112,111,112,117,112,16,0,14,35,101,116,95,99,111,111,107,105,101,95,108,97,119,16,0,17,35,101,116,100,95,99,111,111,107,105,101,95,97,108,101,114,116,16,0,19,35,101,116,116,99,108,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,10,35,101,117,45,98,97,110,110,101,114,16,0,12,35,101,117,45,98,105,115,99,117,105,116,115,16,0,10,35,101,117,45,99,111,111,107,105,101,16,0,17,35,101,117,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,14,35,101,117,45,99,111,111,107,105,101,45,98,97,114,16,0,27,35,101,117,45,99,111,111,107,105,101,45,98,97,114,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,21,35,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,16,0,27,35,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,109,111,100,97,108,16,0,20,35,101,117,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,101,117,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,16,0,20,35,101,117,45,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,16,0,20,35,101,117,45,99,111,111,107,105,101,45,103,117,105,100,101,108,105,110,101,16,0,18,35,101,117,45,99,111,111,107,105,101,45,105,114,114,115,105,110,110,16,0,14,35,101,117,45,99,111,111,107,105,101,45,108,97,119,16,0,20,35,101,117,45,99,111,111,107,105,101,45,108,97,119,45,112,111,112,117,112,16,0,18,35,101,117,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,17,35,101,117,45,99,111,111,107,105,101,45,109,111,98,105,108,101,16,0,14,35,101,117,45,99,111,111,107,105,101,45,109,115,103,16,0,17,35,101,117,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,19,35,101,117,45,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,16,0,17,35,101,117,45,99,111,111,107,105,101,45,110,111,116,105,102,121,16,0,22,35,101,117,45,99,111,111,107,105,101,45,110,111,116,105,102,121,45,119,114,97,112,16,0,17,35,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,32,35,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,23,35,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,111,112,16,0,23,35,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,117,112,16,0,24,35,101,117,45,99,111,111,107,105,101,45,115,108,105,100,105,110,103,45,112,111,112,117,112,16,0,32,35,101,117,45,99,111,111,107,105,101,45,115,108,105,100,105,110,103,45,112,111,112,117,112,45,111,118,101,114,108,97,121,16,0,16,35,101,117,45,99,111,111,107,105,101,45,115,116,117,102,102,16,0,25,35,101,117,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,98,97,110,110,101,114,16,0,22,35,101,117,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,100,105,118,16,0,15,35,101,117,45,99,111,111,107,105,101,45,119,114,97,112,16,0,13,35,101,117,45,99,111,111,107,105,101,108,97,119,16,0,11,35,101,117,45,99,111,111,107,105,101,115,16,0,18,35,101,117,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,19,35,101,117,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,16,0,21,35,101,117,45,99,111,111,107,105,101,115,45,100,105,114,101,99,116,105,118,101,16,0,15,35,101,117,45,99,111,111,107,105,101,115,45,108,97,119,16,0,24,35,101,117,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,12,35,101,117,45,99,111,111,107,105,101,115,50,16,0,13,35,101,117,45,99,112,45,98,97,110,110,101,114,16,0,16,35,101,117,45,103,100,112,114,45,111,118,101,114,108,97,121,16,0,7,35,101,117,45,108,97,119,16,0,12,35,101,117,45,110,111,116,105,102,105,101,114,16,0,8,35,101,117,45,111,107,110,111,16,0,11,35,101,117,45,112,114,105,118,97,99,121,16,0,11,35,101,117,45,115,117,115,101,110,107,97,16,0,13,35,101,117,67,111,109,112,108,105,97,110,99,101,16,0,10,35,101,117,67,111,110,115,101,110,116,16,0,9,35,101,117,67,111,111,107,105,101,16,0,15,35,101,117,67,111,111,107,105,101,66,97,110,110,101,114,16,0,12,35,101,117,67,111,111,107,105,101,66,97,114,16,0,15,35,101,117,67,111,111,107,105,101,68,105,97,108,111,103,16,0,18,35,101,117,67,111,111,107,105,101,68,105,114,101,99,116,105,118,101,16,0,12,35,101,117,67,111,111,107,105,101,68,105,118,16,0,18,35,101,117,67,111,111,107,105,101,73,110,102,111,79,117,116,101,114,16,0,12,35,101,117,67,111,111,107,105,101,76,97,119,16,0,16,35,101,117,67,111,111,107,105,101,76,97,119,73,110,102,111,16,0,15,35,101,117,67,111,111,107,105,101,78,111,116,105,99,101,16,0,15,35,101,117,67,111,111,107,105,101,78,111,116,105,102,121,16,0,14,35,101,117,67,111,111,107,105,101,80,97,110,101,108,16,0,18,35,101,117,67,111,111,107,105,101,82,101,113,117,101,115,116,101,114,16,0,16,35,101,117,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,16,35,101,117,67,111,111,107,105,101,87,114,97,112,112,101,114,16,0,10,35,101,117,67,111,111,107,105,101,115,16,0,16,35,101,117,67,111,111,107,105,101,115,76,97,119,66,97,114,16,0,18,35,101,117,67,111,111,107,105,101,115,81,117,101,115,116,105,111,110,16,0,14,35,101,117,67,111,111,107,105,101,115,90,111,110,101,16,0,12,35,101,117,76,97,119,45,97,108,101,114,116,16,0,9,35,101,117,78,111,116,105,99,101,16,0,8,35,101,117,80,111,112,117,112,16,0,14,35,101,117,95,99,111,109,112,108,105,97,110,99,101,16,0,10,35,101,117,95,99,111,111,107,105,101,16,0,16,35,101,117,95,99,111,111,107,105,101,95,97,108,101,114,116,16,0,17,35,101,117,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,14,35,101,117,95,99,111,111,107,105,101,95,98,97,114,16,0,18,35,101,117,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,20,35,101,117,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,19,35,101,117,95,99,111,111,107,105,101,95,100,105,97,108,111,103,117,101,16,0,21,35,101,117,95,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,16,0,14,35,101,117,95,99,111,111,107,105,101,95,108,97,119,16,0,23,35,101,117,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,104,105,100,101,16,0,17,35,101,117,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,17,35,101,117,95,99,111,111,107,105,101,95,110,111,116,105,102,121,16,0,17,35,101,117,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,18,35,101,117,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,16,0,25,35,101,117,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,98,97,110,110,101,114,16,0,13,35,101,117,95,99,111,111,107,105,101,98,111,120,16,0,11,35,101,117,95,99,111,111,107,105,101,115,16,0,15,35,101,117,95,99,111,111,107,105,101,115,95,98,111,120,16,0,22,35,101,117,95,99,111,111,107,105,101,115,95,100,105,115,99,108,97,105,109,101,114,16,0,27,35,101,117,95,99,111,111,107,105,101,115,95,111,118,101,114,108,97,121,95,99,111,110,116,101,110,116,16,0,18,35,101,117,95,99,111,111,107,105,101,115,95,115,112,97,99,101,114,16,0,26,35,101,117,95,108,97,119,95,99,111,111,107,105,101,95,101,120,116,95,119,114,97,112,112,101,114,16,0,18,35,101,117,95,110,111,116,105,99,101,95,99,111,110,116,101,110,116,16,0,24,35,101,117,95,111,112,116,95,105,110,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,33,35,101,117,95,117,115,101,114,95,99,111,110,115,101,110,116,95,112,111,108,105,99,121,95,99,111,110,116,97,105,110,101,114,16,0,9,35,101,117,98,97,110,110,101,114,16,0,8,35,101,117,99,95,98,111,120,16,0,14,35,101,117,99,95,99,111,111,107,105,101,66,111,120,16,0,5,35,101,117,99,99,16,0,11,35,101,117,99,99,66,97,110,110,101,114,16,0,10,35,101,117,99,107,45,110,111,116,101,16,0,11,35,101,117,99,108,95,112,97,110,101,108,16,0,10,35,101,117,99,111,110,115,101,110,116,16,0,9,35,101,117,99,111,111,107,105,101,16,0,18,35,101,117,99,111,111,107,105,101,45,99,111,110,116,101,110,101,114,16,0,16,35,101,117,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,16,35,101,117,99,111,111,107,105,101,95,98,111,116,116,111,109,16,0,12,35,101,117,99,111,111,107,105,101,98,97,114,16,0,18,35,101,117,99,111,111,107,105,101,98,97,114,45,111,117,116,101,114,16,0,12,35,101,117,99,111,111,107,105,101,98,111,120,16,0,16,35,101,117,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,12,35,101,117,99,111,111,107,105,101,108,97,119,16,0,15,35,101,117,99,111,111,107,105,101,108,97,119,98,111,120,16,0,21,35,101,117,99,111,111,107,105,101,108,97,119,99,111,110,116,97,105,110,101,114,16,0,15,35,101,117,99,111,111,107,105,101,110,111,116,105,99,101,16,0,10,35,101,117,99,111,111,107,105,101,115,16,0,15,35,101,117,99,111,111,107,105,101,115,45,110,111,116,101,16,0,18,35,101,117,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,13,35,101,117,99,111,111,107,105,101,119,97,114,110,16,0,14,35,101,117,100,111,109,105,110,116,108,45,99,109,98,16,0,14,35,101,117,103,100,112,114,45,98,97,110,110,101,114,16,0,13,35,101,117,103,100,112,114,95,109,111,100,97,108,16,0,6,35,101,117,108,97,119,16,0,10,35,101,117,108,97,119,45,98,97,114,16,0,9,35,101,117,112,111,108,105,99,121,16,0,8,35,101,117,112,111,112,117,112,16,0,20,35,101,117,114,111,95,99,111,111,107,105,101,95,99,111,110,116,101,110,116,16,0,12,35,101,117,114,111,99,105,97,115,116,107,111,16,0,11,35,101,117,114,111,99,111,111,107,105,101,16,0,14,35,101,117,114,111,99,111,111,107,105,101,108,97,119,16,0,19,35,101,117,114,111,112,101,67,111,111,107,105,101,78,111,116,105,99,101,16,0,16,35,101,117,116,45,112,114,105,118,97,99,121,45,98,97,114,16,0,18,35,101,117,116,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,14,35,101,118,45,99,111,111,107,105,101,84,101,120,116,16,0,22,35,101,118,97,110,99,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,19,35,101,118,101,110,116,45,97,108,101,114,116,45,99,111,111,107,105,101,16,0,24,35,101,118,101,110,116,109,97,103,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,19,35,101,118,105,100,101,67,111,111,107,105,101,115,78,111,116,105,102,121,16,0,18,35,101,119,45,99,111,111,107,105,101,98,97,114,45,102,117,108,108,16,0,24,35,101,119,45,99,111,111,107,105,101,105,110,102,111,45,99,111,110,116,97,105,110,101,114,16,0,16,35,101,119,99,109,50,95,99,111,110,116,97,105,110,101,114,16,0,19,35,101,120,101,110,116,95,99,111,111,107,105,101,95,109,111,100,97,108,16,0,28,35,101,120,111,108,111,103,67,111,111,107,105,101,76,97,119,66,97,114,67,111,110,116,97,105,110,101,114,16,0,14,35,101,120,112,97,116,95,99,111,111,107,105,101,115,16,0,16,35,101,120,112,108,45,103,100,112,114,45,109,111,100,97,108,16,0,15,35,101,120,112,108,45,103,100,112,114,45,119,97,108,108,16,0,20,35,101,120,112,108,105,99,105,116,67,111,111,107,105,101,77,111,100,97,108,16,0,24,35,101,120,112,108,105,99,105,116,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,26,35,101,120,112,111,110,101,97,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,16,0,17,35,101,120,112,114,101,115,115,111,45,99,111,111,107,105,101,115,16,0,28,35,101,120,116,101,110,100,101,100,80,114,105,118,97,99,121,87,97,114,110,105,110,103,80,97,110,101,108,16,0,20,35,101,120,116,101,114,110,97,108,45,99,111,111,107,105,101,45,98,97,114,16,0,25,35,101,122,45,99,111,111,107,105,101,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,16,0,16,35,101,122,45,99,111,111,107,105,101,115,45,119,114,97,112,16,0,16,35,102,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,19,35,102,54,45,99,112,45,99,111,111,107,105,101,98,97,110,110,101,114,16,0,9,35,102,95,99,111,111,107,105,101,16,0,17,35,102,95,103,100,112,114,104,101,97,100,101,114,97,114,101,97,16,0,25,35,102,97,99,101,98,111,111,107,45,116,114,97,99,107,105,110,103,45,110,111,116,105,99,101,16,0,16,35,102,97,99,101,114,105,103,45,99,111,111,107,105,101,115,16,0,26,35,102,97,99,116,111,114,95,99,111,111,107,105,101,99,111,110,115,101,110,116,95,111,112,101,110,16,0,15,35,102,97,108,100,111,110,45,99,111,111,107,105,101,115,16,0,14,35,102,97,108,100,111,110,67,111,111,107,105,101,115,16,0,22,35,102,97,114,109,97,99,106,97,95,99,111,111,107,105,101,95,97,108,101,114,116,16,0,14,35,102,97,115,99,105,97,45,99,111,111,107,105,101,16,0,16,35,102,97,115,99,105,97,45,117,101,45,112,111,112,117,112,16,0,18,35,102,97,115,116,45,99,109,112,45,115,101,116,116,105,110,103,115,16,0,14,35,102,98,45,99,111,111,107,105,101,45,108,97,119,16,0,17,35,102,98,45,112,105,120,101,108,45,99,111,110,115,101,110,116,16,0,24,35,102,99,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,9,35,102,99,67,111,111,107,105,101,16,0,15,35,102,99,99,67,111,111,107,105,101,77,111,100,97,108,16,0,9,35,102,99,111,45,103,100,112,114,16,0,14,35,102,99,111,45,103,100,112,114,45,109,97,115,107,16,0,21,35,102,100,45,110,111,116,101,115,45,116,111,112,45,99,111,111,107,105,101,115,16,0,18,35,102,100,67,111,111,107,105,101,76,97,119,66,97,110,110,101,114,16,0,8,35,102,100,105,104,45,99,98,16,0,25,35,102,100,105,104,95,99,111,111,107,105,101,98,97,100,103,101,95,119,114,97,112,112,101,114,16,0,19,35,102,100,106,84,114,97,99,107,101,114,115,67,111,110,115,101,110,116,16,0,23,35,102,101,97,116,117,114,101,95,112,114,105,118,97,99,121,45,110,111,116,105,99,101,16,0,19,35,102,101,109,117,110,100,111,45,99,111,111,107,105,101,45,98,97,114,16,0,25,35,102,103,95,99,111,111,107,105,101,95,112,108,117,103,105,110,95,103,101,110,101,114,97,108,16,0,11,35,102,104,98,45,99,111,111,107,105,101,16,0,15,35,102,104,114,45,99,111,111,107,105,101,45,98,97,114,16,0,18,35,102,104,119,95,99,111,111,107,105,101,104,105,110,119,101,105,115,16,0,17,35,102,105,45,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,12,35,102,105,108,116,101,114,95,103,100,112,114,16,0,16,35,102,105,114,115,116,76,111,103,78,97,110,111,98,97,114,16,0,16,35,102,105,114,115,116,84,105,109,101,67,111,111,107,105,101,16,0,17,35,102,105,116,45,99,111,111,107,105,101,87,97,108,108,73,100,16,0,13,35,102,105,120,101,100,45,99,111,111,107,105,101,16,0,15,35,102,105,120,101,100,67,111,111,107,105,101,66,97,114,16,0,13,35,102,105,120,101,100,67,111,111,107,105,101,115,16,0,9,35,102,107,45,116,101,114,109,115,16,0,13,35,102,108,97,103,45,99,111,111,107,105,101,115,16,0,13,35,102,108,97,115,104,45,99,111,111,107,105,101,16,0,20,35,102,108,97,115,104,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,13,35,102,108,97,115,104,67,111,111,107,105,101,115,16,0,21,35,102,108,97,115,104,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,16,0,23,35,102,108,101,120,105,98,111,111,107,95,99,111,111,107,105,101,95,108,97,121,101,114,16,0,16,35,102,108,111,97,116,105,110,103,95,99,111,111,107,105,101,16,0,13,35,102,108,120,67,111,111,107,105,101,66,97,114,16,0,23,35,102,108,120,67,111,111,107,105,101,67,111,110,116,114,111,108,67,111,114,110,101,114,16,0,15,35,102,111,67,111,111,107,105,101,78,111,116,105,99,101,16,0,20,35,102,111,110,100,111,45,97,118,105,115,111,45,99,111,111,107,105,101,115,16,0,20,35,102,111,110,100,111,95,97,118,105,115,111,95,99,111,111,107,105,101,115,16,0,14,35,102,111,110,100,111,95,99,111,111,107,105,101,115,16,0,13,35,102,111,110,116,111,95,111,115,99,117,114,111,16,0,16,35,102,111,111,100,102,111,111,100,95,99,111,111,107,105,101,16,0,23,35,102,111,111,100,105,102,121,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,12,35,102,111,111,116,95,99,111,111,107,105,101,16,0,24,35,102,111,111,116,101,114,32,62,32,35,99,111,111,107,105,101,67,111,110,115,101,110,116,16,0,18,35,102,111,111,116,101,114,32,62,32,35,99,111,111,107,105,101,115,16,0,18,35,102,111,111,116,101,114,32,62,32,46,99,111,111,107,105,101,115,16,0,18,35,102,111,111,116,101,114,45,99,110,105,108,45,115,112,97,99,101,16,0,14,35,102,111,111,116,101,114,45,99,111,111,107,105,101,16,0,22,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,23,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,105,110,102,111,45,98,97,114,16,0,20,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,105,116,108,97,119,16,0,20,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,108,97,121,101,114,16,0,21,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,23,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,16,0,21,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,20,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,15,35,102,111,111,116,101,114,45,99,111,111,107,105,101,115,16,0,19,35,102,111,111,116,101,114,45,99,111,111,107,105,101,115,45,100,105,118,16,0,23,35,102,111,111,116,101,114,45,99,111,111,107,105,101,117,115,101,45,98,108,111,99,107,16,0,12,35,102,111,111,116,101,114,45,103,100,112,114,16,0,16,35,102,111,111,116,101,114,45,103,100,112,114,45,98,111,120,16,0,20,35,102,111,111,116,101,114,45,103,100,112,114,45,119,114,97,112,112,101,114,16,0,12,35,102,111,111,116,101,114,45,108,103,112,100,16,0,9,35,102,111,111,116,101,114,67,107,16,0,13,35,102,111,111,116,101,114,67,111,111,107,105,101,16,0,27,35,102,111,111,116,101,114,67,111,111,107,105,101,65,108,101,114,116,67,111,110,116,97,105,110,101,114,16,0,20,35,102,111,111,116,101,114,67,111,111,107,105,101,65,114,116,105,99,108,101,16,0,16,35,102,111,111,116,101,114,67,111,111,107,105,101,66,97,114,16,0,22,35,102,111,111,116,101,114,67,111,111,107,105,101,68,105,114,101,99,116,105,118,101,16,0,19,35,102,111,111,116,101,114,67,111,111,107,105,101,78,111,116,105,99,101,16,0,19,35,102,111,111,116,101,114,67,111,111,107,105,101,80,111,108,105,99,121,16,0,19,35,102,111,111,116,101,114,67,111,111,107,105,101,97,99,99,101,112,116,16,0,14,35,102,111,111,116,101,114,67,111,111,107,105,101,115,16,0,16,35,102,111,111,116,101,114,71,100,112,114,77,111,100,97,108,16,0,27,35,102,111,111,116,101,114,95,97,103,114,101,101,80,114,105,118,97,99,121,67,111,111,107,105,101,115,16,0,37,35,102,111,111,116,101,114,95,98,111,116,116,111,109,95,102,108,111,97,116,105,110,103,95,108,105,110,101,95,95,99,111,111,107,105,101,115,16,0,12,35,102,111,111,116,101,114,95,99,111,111,107,16,0,14,35,102,111,111,116,101,114,95,99,111,111,107,105,101,16,0,24,35,102,111,111,116,101,114,95,99,111,111,107,105,101,95,98,97,114,95,98,108,111,99,107,16,0,15,35,102,111,111,116,101,114,95,99,111,111,107,105,101,115,16,0,30,35,102,111,111,116,101,114,95,99,111,111,107,105,101,115,95,98,97,110,110,101,114,95,119,114,97,112,112,101,114,16,0,17,35,102,111,111,116,101,114,95,99,111,111,107,105,101,115,95,111,16,0,18,35,102,111,111,116,101,114,95,116,99,95,112,114,105,118,97,99,121,16,0,13,35,102,111,111,116,101,114,99,111,111,107,105,101,16,0,23,35,102,111,111,116,101,114,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,14,35,102,111,111,116,101,114,99,111,111,107,105,101,115,16,0,15,35,102,111,111,116,109,101,115,115,99,111,111,107,105,101,16,0,14,35,102,111,114,109,95,67,111,111,107,105,101,79,75,16,0,12,35,102,111,114,109,95,99,111,111,107,105,101,16,0,21,35,102,111,114,109,95,99,111,111,107,105,101,115,95,119,114,97,112,112,101,114,16,0,38,35,102,111,114,109,97,108,65,103,114,101,101,109,101,110,116,77,111,100,97,108,32,126,32,35,109,111,100,97,108,66,97,99,107,100,114,111,112,16,0,34,35,102,111,114,109,97,108,65,103,114,101,101,109,101,110,116,77,111,100,97,108,46,99,117,115,116,111,109,45,109,111,100,97,108,16,0,22,35,102,111,120,105,102,121,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,18,35,102,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,17,35,102,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,12,35,102,112,45,103,100,112,114,45,98,97,114,16,0,26,35,102,112,95,99,111,111,107,105,101,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,20,35,102,114,51,101,120,45,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,17,35,102,114,95,99,111,111,107,105,101,77,101,115,115,97,103,101,16,0,16,35,102,114,95,99,111,111,107,105,101,95,97,108,101,114,116,16,0,20,35,102,114,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,13,35,102,114,97,109,101,45,99,111,111,107,105,101,16,0,16,35,102,114,97,109,101,67,111,111,107,105,101,115,66,111,120,16,0,11,35,102,114,97,109,101,97,118,105,115,111,16,0,24,35,102,114,97,109,101,119,111,114,107,95,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,22,35,102,114,111,110,116,45,110,111,45,99,111,111,107,105,101,115,45,119,97,114,110,16,0,30,35,102,114,111,115,109,111,45,99,111,111,107,105,101,45,110,111,116,105,102,45,99,111,110,116,97,105,110,101,114,16,0,17,35,102,115,45,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,13,35,102,115,67,111,111,107,78,84,114,97,99,107,16,0,20,35,102,115,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,11,35,102,116,102,97,99,111,111,107,105,101,16,0,12,35,102,116,114,45,99,111,111,107,105,101,115,16,0,18,35,102,117,99,107,105,110,103,45,101,117,45,99,111,111,107,105,101,16,0,21,35,102,117,108,108,45,99,111,110,116,101,110,116,45,99,111,111,107,105,101,115,16,0,18,35,102,117,116,117,114,101,45,99,111,111,107,105,101,45,98,97,114,16,0,10,35,102,118,45,99,111,111,107,105,101,16,0,15,35,102,119,67,111,111,107,105,101,66,97,110,110,101,114,16,0,10,35,102,119,95,99,111,111,107,105,101,16,0,18,35,102,119,95,99,111,111,107,105,101,115,95,111,112,116,111,117,116,16,0,18,35,102,120,67,111,111,107,105,101,73,110,102,111,76,97,121,101,114,16,0,22,35,102,120,67,111,111,107,105,101,73,110,102,111,87,105,110,100,111,119,66,111,120,16,0,17,35,103,52,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,19,35,103,80,114,105,118,97,99,121,80,97,110,101,108,70,114,97,109,101,16,0,15,35,103,83,101,114,118,105,99,101,67,111,111,107,105,101,16,0,21,35,103,95,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,25,35,103,97,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,16,0,14,35,103,97,98,67,111,111,107,105,101,78,111,116,101,16,0,19,35,103,97,98,97,114,105,116,95,99,110,105,108,99,111,111,107,105,101,16,0,16,35,103,97,99,111,111,107,105,101,109,101,115,115,97,103,101,16,0,15,35,103,97,100,103,101,116,45,99,111,111,107,105,101,115,16,0,13,35,103,97,109,105,103,111,67,111,111,107,105,101,16,0,12,35,103,97,110,95,112,114,105,118,97,99,121,16,0,22,35,103,97,110,116,45,99,111,111,107,105,101,45,108,97,119,45,109,111,100,97,108,16,0,20,35,103,97,114,110,105,101,114,45,99,111,111,107,105,101,45,105,110,102,111,16,0,22,35,103,97,114,114,97,109,112,97,45,99,111,111,107,105,101,110,111,116,105,99,101,16,0,22,35,103,98,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,16,0,10,35,103,98,95,99,99,95,98,97,114,16,0,19,35,103,98,95,115,109,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,25,35,103,98,99,45,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,45,116,111,112,16,0,9,35,103,98,99,111,111,107,105,101,16,0,9,35,103,98,112,108,95,111,98,97,16,0,12,35,103,98,116,101,99,99,111,111,107,105,101,16,0,25,35,103,99,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,16,0,29,35,103,99,95,119,101,98,95,117,115,101,114,95,97,108,108,111,119,95,99,111,111,107,105,101,95,98,111,120,16,0,16,35,103,99,99,111,111,107,105,101,109,101,115,115,97,103,101,16,0,20,35,103,99,109,115,95,99,111,111,107,105,101,95,109,97,110,97,103,101,114,16,0,18,35,103,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,13,35,103,100,45,99,111,111,107,105,101,98,97,114,16,0,28,35,103,100,99,45,99,111,110,116,97,105,110,101,114,46,103,100,99,45,99,111,110,116,97,105,110,101,114,16,0,19,35,103,100,99,45,99,111,111,107,105,101,83,101,116,116,105,110,103,115,16,0,12,35,103,100,112,114,45,45,108,105,115,116,97,16,0,16,35,103,100,112,114,45,97,99,99,101,112,116,97,110,99,101,16,0,15,35,103,100,112,114,45,97,103,114,101,101,109,101,110,116,16,0,23,35,103,100,112,114,45,97,103,114,101,101,109,101,110,116,45,119,114,97,112,112,101,114,16,0,11,35,103,100,112,114,45,97,108,101,114,116,16,0,12,35,103,100,112,114,45,98,97,110,110,101,114,16,0,31,35,103,100,112,114,45,98,97,110,110,101,114,45,98,108,117,114,114,101,100,45,98,97,99,107,103,114,111,117,110,100,16,0,22,35,103,100,112,114,45,98,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,16,0,19,35,103,100,112,114,45,98,97,110,110,101,114,45,109,111,100,117,108,101,16,0,20,35,103,100,112,114,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,9,35,103,100,112,114,45,98,97,114,16,0,11,35,103,100,112,114,45,98,108,111,99,107,16,0,27,35,103,100,112,114,45,98,108,111,99,107,105,110,103,45,112,97,103,101,45,111,118,101,114,108,97,121,16,0,12,35,103,100,112,114,45,98,111,116,116,111,109,16,0,19,35,103,100,112,114,45,98,111,116,116,111,109,45,98,97,110,110,101,114,16,0,29,35,103,100,112,114,45,98,111,116,116,111,109,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,9,35,103,100,112,114,45,98,111,120,16,0,32,35,103,100,112,114,45,98,116,110,58,110,111,116,40,98,117,116,116,111,110,41,58,110,111,116,40,105,110,112,117,116,41,16,0,15,35,103,100,112,114,45,99,104,97,108,108,101,110,103,101,16,0,13,35,103,100,112,114,45,99,111,110,102,105,114,109,16,0,20,35,103,100,112,114,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,17,35,103,100,112,114,45,99,111,110,115,101,110,116,45,98,111,120,16,0,23,35,103,100,112,114,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,16,0,26,35,103,100,112,114,45,99,111,110,115,101,110,116,45,102,111,114,109,45,119,114,97,112,112,101,114,16,0,20,35,103,100,112,114,45,99,111,110,115,101,110,116,45,104,111,108,100,101,114,16,0,19,35,103,100,112,114,45,99,111,110,115,101,110,116,45,112,111,112,117,112,16,0,21,35,103,100,112,114,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,16,0,15,35,103,100,112,114,45,99,111,110,116,97,105,110,101,114,16,0,32,35,103,100,112,114,45,99,111,110,116,97,105,110,101,114,45,98,97,99,107,103,114,111,117,110,100,45,102,105,120,101,100,16,0,12,35,103,100,112,114,45,99,111,111,107,105,101,16,0,23,35,103,100,112,114,45,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,16,0,19,35,103,100,112,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,29,35,103,100,112,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,16,35,103,100,112,114,45,99,111,111,107,105,101,45,98,97,114,16,0,18,35,103,100,112,114,45,99,111,111,107,105,101,45,98,108,111,99,107,16,0,26,35,103,100,112,114,45,99,111,111,107,105,101,45,98,108,111,99,107,101,100,45,108,97,121,101,114,16,0,20,35,103,100,112,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,24,35,103,100,112,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,16,0,26,35,103,100,112,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,16,0,23,35,103,100,112,114,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,19,35,103,100,112,114,45,99,111,111,107,105,101,45,102,111,111,116,101,114,16,0,17,35,103,100,112,114,45,99,111,111,107,105,101,45,104,105,110,116,16,0,17,35,103,100,112,114,45,99,111,111,107,105,101,45,105,110,102,111,16,0,16,35,103,100,112,114,45,99,111,111,107,105,101,45,108,97,119,16,0,20,35,103,100,112,114,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,30,35,103,100,112,114,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,16,0,28,35,103,100,112,114,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,111,118,101,114,108,97,121,16,0,19,35,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,18,35,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,102,16,0,20,35,103,100,112,114,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,19,35,103,100,112,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,16,35,103,100,112,114,45,99,111,111,107,105,101,45,114,111,119,16,0,17,35,103,100,112,114,45,99,111,111,107,105,101,45,119,97,108,108,16,0,18,35,103,100,112,114,45,99,111,111,107,105,101,78,111,116,105,99,101,16,0,13,35,103,100,112,114,45,99,111,111,107,105,101,115,16,0,18,35,103,100,112,114,45,99,111,111,107,105,101,115,45,102,111,114,109,16,0,20,35,103,100,112,114,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,11,35,103,100,112,114,45,99,111,118,101,114,16,0,12,35,103,100,112,114,45,100,105,97,108,111,103,16,0,16,35,103,100,112,114,45,100,105,115,99,108,97,105,109,101,114,16,0,12,35,103,100,112,114,45,102,105,108,116,101,114,16,0,12,35,103,100,112,114,45,102,111,111,116,101,114,16,0,12,35,103,100,112,114,45,104,101,97,100,101,114,16,0,26,35,103,100,112,114,45,105,101,115,76,120,122,45,99,111,111,107,105,101,45,99,97,110,118,97,115,16,0,27,35,103,100,112,114,45,105,101,115,76,120,122,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,20,35,103,100,112,114,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,16,0,12,35,103,100,112,114,45,105,115,45,102,117,110,16,0,9,35,103,100,112,114,45,108,97,119,16,0,13,35,103,100,112,114,45,109,97,110,97,103,101,114,16,0,13,35,103,100,112,114,45,109,101,115,115,97,103,101,16,0,19,35,103,100,112,114,45,109,101,115,115,97,103,101,45,109,111,100,97,108,16,0,18,35,103,100,112,114,45,109,111,100,97,108,45,98,111,116,116,111,109,16,0,15,35,103,100,112,114,45,109,111,100,97,108,45,98,111,120,16,0,21,35,103,100,112,114,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,16,0,25,35,103,100,112,114,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,45,110,101,119,16,0,12,35,103,100,112,114,45,110,97,118,98,97,114,16,0,19,35,103,100,112,114,45,110,101,119,45,99,111,110,116,97,105,110,101,114,16,0,12,35,103,100,112,114,45,110,111,116,105,99,101,16,0,22,35,103,100,112,114,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,103,100,112,114,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,14,35,103,100,112,114,45,110,111,116,105,102,105,101,114,16,0,7,35,103,100,112,114,45,111,16,0,19,35,103,100,112,114,45,111,112,116,105,110,45,115,101,99,116,105,111,110,16,0,13,35,103,100,112,114,45,111,112,116,105,111,110,115,16,0,13,35,103,100,112,114,45,111,118,101,114,108,97,121,16,0,19,35,103,100,112,114,45,112,111,108,105,99,121,45,110,97,118,98,97,114,16,0,9,35,103,100,112,114,45,112,111,112,16,0,11,35,103,100,112,114,45,112,111,112,117,112,16,0,21,35,103,100,112,114,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,16,0,19,35,103,100,112,114,45,112,114,105,118,97,99,121,45,115,116,114,105,112,16,0,12,35,103,100,112,114,45,114,101,103,105,111,110,16,0,12,35,103,100,112,114,45,115,99,114,101,101,110,16,0,12,35,103,100,112,114,45,115,99,114,105,112,116,16,0,13,35,103,100,112,114,45,115,101,99,116,105,111,110,16,0,19,35,103,100,112,114,45,115,116,105,99,107,121,45,98,97,110,110,101,114,16,0,13,35,103,100,112,114,45,116,111,111,108,116,105,112,16,0,7,35,103,100,112,114,45,119,16,0,19,35,103,100,112,114,45,119,97,114,100,101,110,45,98,97,110,110,101,114,16,0,13,35,103,100,112,114,45,119,97,114,110,105,110,103,16,0,12,35,103,100,112,114,45,119,105,100,103,101,116,16,0,13,35,103,100,112,114,45,119,114,97,112,112,101,114,16,0,9,35,103,100,112,114,45,119,114,112,16,0,14,35,103,100,112,114,46,109,45,97,99,116,105,118,101,16,0,9,35,103,100,112,114,46,114,111,119,16,0,11,35,103,100,112,114,49,65,108,101,114,116,16,0,13,35,103,100,112,114,50,48,49,56,48,56,50,57,16,0,11,35,103,100,112,114,65,99,99,101,112,116,16,0,10,35,103,100,112,114,65,103,114,101,101,16,0,10,35,103,100,112,114,65,108,101,114,116,16,0,19,35,103,100,112,114,65,110,100,67,67,80,65,77,101,115,115,97,103,101,16,0,9,35,103,100,112,114,66,97,110,100,16,0,11,35,103,100,112,114,66,97,110,110,101,114,16,0,8,35,103,100,112,114,66,97,114,16,0,9,35,103,100,112,114,66,110,110,114,16,0,16,35,103,100,112,114,66,111,116,116,111,109,76,97,121,101,114,16,0,8,35,103,100,112,114,66,111,120,16,0,11,35,103,100,112,114,67,101,110,116,101,114,16,0,21,35,103,100,112,114,67,111,109,112,108,105,97,110,99,101,66,97,110,110,101,114,16,0,14,35,103,100,112,114,67,111,109,112,111,110,101,110,116,16,0,18,35,103,100,112,114,67,111,110,115,101,110,116,80,114,111,109,112,116,16,0,14,35,103,100,112,114,67,111,110,116,97,105,110,101,114,16,0,11,35,103,100,112,114,67,111,111,107,105,101,16,0,17,35,103,100,112,114,67,111,111,107,105,101,66,97,110,110,101,114,16,0,25,35,103,100,112,114,67,111,111,107,105,101,66,97,110,110,101,114,45,45,99,117,115,116,111,109,16,0,32,35,103,100,112,114,67,111,111,107,105,101,67,111,110,115,101,110,116,77,97,110,97,103,101,100,83,117,109,109,97,114,121,16,0,14,35,103,100,112,114,67,111,111,107,105,101,76,97,119,16,0,17,35,103,100,112,114,67,111,111,107,105,101,80,111,108,105,99,121,16,0,16,35,103,100,112,114,67,111,111,107,105,101,80,111,112,117,112,16,0,15,35,103,100,112,114,67,111,111,107,105,101,87,114,97,112,16,0,24,35,103,100,112,114,67,111,111,107,105,101,109,77,97,110,97,103,101,114,77,111,100,97,108,16,0,11,35,103,100,112,114,68,105,97,108,111,103,16,0,8,35,103,100,112,114,68,105,118,16,0,11,35,103,100,112,114,72,101,97,100,101,114,16,0,13,35,103,100,112,114,76,80,68,105,97,108,111,103,16,0,19,35,103,100,112,114,76,80,68,105,97,108,111,103,95,109,111,100,97,108,16,0,22,35,103,100,112,114,76,101,103,97,108,78,111,116,105,102,105,99,97,116,105,111,110,16,0,12,35,103,100,112,114,77,101,115,115,97,103,101,16,0,11,35,103,100,112,114,78,111,116,105,99,101,16,0,17,35,103,100,112,114,78,111,116,105,102,105,99,97,116,105,111,110,16,0,10,35,103,100,112,114,80,111,112,117,112,16,0,11,35,103,100,112,114,82,105,98,98,111,110,16,0,13,35,103,100,112,114,83,101,116,116,105,110,103,115,16,0,12,35,103,100,112,114,84,114,101,97,116,101,100,16,0,17,35,103,100,112,114,86,120,67,111,110,115,101,110,116,66,97,114,16,0,12,35,103,100,112,114,87,97,114,110,105,110,103,16,0,11,35,103,100,112,114,87,105,110,100,111,119,16,0,12,35,103,100,112,114,87,114,97,112,112,101,114,16,0,30,35,103,100,112,114,91,100,97,116,97,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,117,114,108,93,16,0,12,35,103,100,112,114,95,97,99,99,101,112,116,16,0,15,35,103,100,112,114,95,97,99,99,101,112,116,105,111,110,16,0,11,35,103,100,112,114,95,97,103,114,101,101,16,0,10,35,103,100,112,114,95,97,114,101,97,16,0,7,35,103,100,112,114,95,98,16,0,12,35,103,100,112,114,95,98,97,110,110,101,114,16,0,9,35,103,100,112,114,95,98,97,114,16,0,14,35,103,100,112,114,95,98,97,114,114,101,116,116,97,16,0,11,35,103,100,112,114,95,98,97,115,105,99,16,0,9,35,103,100,112,114,95,98,111,120,16,0,9,35,103,100,112,114,95,99,110,116,16,0,24,35,103,100,112,114,95,99,111,109,112,108,105,97,110,99,101,95,119,114,97,112,112,101,114,16,0,13,35,103,100,112,114,95,99,111,110,115,101,110,116,16,0,20,35,103,100,112,114,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,16,0,22,35,103,100,112,114,95,99,111,110,115,101,110,116,95,100,105,97,108,111,103,117,101,16,0,15,35,103,100,112,114,95,99,111,110,116,97,105,110,101,114,16,0,12,35,103,100,112,114,95,99,111,111,107,105,101,16,0,19,35,103,100,112,114,95,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,19,35,103,100,112,114,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,17,35,103,100,112,114,95,99,111,111,107,105,101,95,108,105,110,101,16,0,18,35,103,100,112,114,95,99,111,111,107,105,101,95,109,111,100,97,108,16,0,19,35,103,100,112,114,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,18,35,103,100,112,114,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,13,35,103,100,112,114,95,99,111,111,107,105,101,115,16,0,14,35,103,100,112,114,95,100,105,97,108,111,103,117,101,16,0,11,35,103,100,112,114,95,102,108,111,97,116,16,0,20,35,103,100,112,114,95,104,101,97,100,101,114,95,119,114,97,112,112,101,114,16,0,8,35,103,100,112,114,95,105,112,16,0,10,35,103,100,112,114,95,108,105,110,107,16,0,13,35,103,100,112,114,95,109,101,115,115,97,103,101,16,0,11,35,103,100,112,114,95,109,111,100,97,108,16,0,9,35,103,100,112,114,95,110,97,118,16,0,12,35,103,100,112,114,95,110,111,116,105,99,101,16,0,14,35,103,100,112,114,95,111,118,101,114,102,108,111,119,16,0,13,35,103,100,112,114,95,111,118,101,114,108,97,121,16,0,11,35,103,100,112,114,95,112,97,110,101,108,16,0,17,35,103,100,112,114,95,112,108,97,99,101,104,111,108,100,101,114,16,0,19,35,103,100,112,114,95,112,111,112,95,99,111,110,116,97,105,110,101,114,16,0,11,35,103,100,112,114,95,112,111,112,105,110,16,0,11,35,103,100,112,114,95,112,111,112,117,112,16,0,14,35,103,100,112,114,95,112,111,112,117,112,95,98,103,16,0,21,35,103,100,112,114,95,112,111,112,117,112,95,99,111,110,116,97,105,110,101,114,16,0,25,35,103,100,112,114,95,117,115,101,114,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,16,0,15,35,103,100,112,114,95,118,101,114,121,102,105,114,115,116,16,0,21,35,103,100,112,114,95,118,101,114,121,102,105,114,115,116,95,108,97,121,101,114,16,0,11,35,103,100,112,114,98,97,110,110,101,114,16,0,8,35,103,100,112,114,98,97,114,16,0,7,35,103,100,112,114,98,120,16,0,10,35,103,100,112,114,99,95,98,97,114,16,0,12,35,103,100,112,114,99,111,110,115,101,110,116,16,0,11,35,103,100,112,114,99,111,111,107,105,101,16,0,16,35,103,100,112,114,99,111,111,107,105,101,97,108,101,114,116,16,0,16,35,103,100,112,114,99,111,111,107,105,101,112,111,112,117,112,16,0,15,35,103,100,112,114,100,105,115,99,108,97,105,109,101,114,16,0,10,35,103,100,112,114,112,111,112,117,112,16,0,11,35,103,100,112,114,112,114,111,109,112,116,16,0,11,35,103,100,112,114,115,116,105,99,107,121,16,0,12,35,103,100,112,114,119,97,114,110,105,110,103,16,0,20,35,103,100,114,112,45,98,111,116,116,111,109,45,109,101,115,115,97,103,101,16,0,19,35,103,100,114,112,45,99,111,111,107,105,101,111,118,101,114,108,97,121,16,0,13,35,103,100,114,112,45,119,114,97,112,112,101,114,16,0,17,35,103,100,114,112,78,111,116,105,102,105,99,97,116,105,111,110,16,0,11,35,103,100,115,45,99,111,111,107,105,101,16,0,16,35,103,100,121,99,110,95,99,111,110,116,97,105,110,101,114,16,0,11,35,103,101,108,45,99,111,111,107,105,101,16,0,18,35,103,101,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,21,35,103,101,110,105,101,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,18,35,103,101,110,105,117,109,45,99,111,111,107,105,101,45,98,97,114,16,0,20,35,103,101,116,73,110,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,26,35,103,102,107,108,95,111,112,116,95,105,110,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,11,35,103,104,45,99,111,111,107,105,101,98,16,0,17,35,103,104,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,17,35,103,104,111,115,116,101,114,121,45,99,111,110,115,101,110,116,16,0,14,35,103,107,45,99,111,111,107,105,101,45,108,97,119,16,0,22,35,103,108,100,95,98,97,115,101,95,99,111,111,107,105,101,95,98,114,101,118,101,16,0,16,35,103,108,100,95,99,111,111,107,105,101,95,102,108,97,103,16,0,15,35,103,108,111,98,97,108,32,62,32,46,114,103,112,100,16,0,21,35,103,108,111,98,97,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,19,35,103,108,111,98,97,108,45,99,111,111,107,105,101,45,105,110,102,111,16,0,22,35,103,108,111,98,97,108,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,22,35,103,108,111,98,97,108,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,21,35,103,108,111,98,97,108,45,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,23,35,103,108,111,98,97,108,45,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,16,0,16,35,103,108,111,98,97,108,67,111,111,107,105,101,66,97,114,16,0,14,35,103,108,111,98,97,108,67,111,111,107,105,101,115,16,0,29,35,103,108,111,98,97,108,95,100,101,102,97,117,108,116,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,19,35,103,108,111,119,67,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,10,35,103,109,45,99,111,111,107,105,101,16,0,11,35,103,109,45,99,111,111,107,105,101,115,16,0,17,35,103,110,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,10,35,103,110,99,111,110,115,101,110,116,16,0,15,35,103,110,99,111,111,107,105,101,98,97,110,110,101,114,16,0,21,35,103,110,101,119,115,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,20,35,103,111,108,101,109,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,18,35,103,111,111,103,108,101,45,112,111,108,105,99,121,45,98,111,120,16,0,25,35,103,111,111,103,108,101,95,97,110,97,108,121,116,105,99,115,95,104,105,110,119,101,105,115,16,0,21,35,103,112,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,115,16,0,9,35,103,112,67,111,111,107,105,101,16,0,9,35,103,112,99,45,108,103,112,100,16,0,25,35,103,112,100,114,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,16,0,16,35,103,112,100,114,66,97,110,110,101,114,65,115,105,100,101,16,0,17,35,103,112,101,45,99,111,111,107,105,101,115,45,119,97,114,110,16,0,14,35,103,112,102,45,99,111,111,107,105,101,98,97,114,16,0,12,35,103,112,108,45,102,108,97,115,104,101,115,16,0,32,35,103,112,115,101,99,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,67,111,110,116,97,105,110,101,114,16,0,24,35,103,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,97,110,110,101,114,16,0,21,35,103,114,97,122,101,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,16,35,103,114,100,112,95,98,97,114,114,101,95,109,97,120,105,16,0,16,35,103,114,100,112,95,98,97,114,114,101,95,109,105,110,105,16,0,26,35,103,114,101,121,45,98,97,114,45,99,111,111,107,105,101,115,45,99,111,110,116,101,110,116,115,16,0,26,35,103,114,104,95,99,111,111,107,105,101,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,23,35,103,114,105,116,116,101,114,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,16,0,31,35,103,114,111,107,105,116,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,16,0,13,35,103,114,112,100,45,99,111,110,115,101,110,116,16,0,15,35,103,114,115,78,111,116,105,102,121,83,104,101,108,108,16,0,13,35,103,114,117,110,116,121,67,111,111,107,105,101,16,0,17,35,103,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,18,35,103,115,45,99,111,111,107,105,101,115,45,114,101,118,105,101,119,16,0,12,35,103,115,107,45,99,111,110,115,101,110,116,16,0,13,35,103,115,111,105,45,99,111,110,115,101,110,116,16,0,16,35,103,116,99,111,111,107,105,101,115,45,109,111,100,97,108,16,0,18,35,103,116,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,16,0,19,35,103,116,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,17,35,103,116,109,95,99,111,111,107,105,101,95,112,97,110,101,108,16,0,12,35,103,116,109,95,112,114,105,118,97,99,121,16,0,21,35,103,117,106,101,109,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,32,35,103,118,101,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,99,111,110,115,101,110,116,45,112,111,112,117,112,16,0,19,35,103,119,95,99,111,111,107,105,101,68,105,114,101,99,116,105,118,101,16,0,12,35,103,119,122,45,99,111,111,107,105,101,115,16,0,16,35,104,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,14,35,104,50,52,45,67,111,111,107,105,101,66,97,114,16,0,13,35,104,67,111,111,107,105,101,80,97,110,101,108,16,0,15,35,104,76,105,98,67,111,111,107,105,101,73,110,102,111,16,0,16,35,104,76,105,98,67,111,111,107,105,101,73,110,102,111,50,16,0,19,35,104,80,111,108,105,99,121,67,111,111,107,105,101,65,108,101,114,116,16,0,19,35,104,97,109,111,110,45,97,108,101,114,116,45,99,111,111,107,105,101,16,0,13,35,104,97,109,111,110,45,98,97,110,110,101,114,16,0,15,35,104,97,110,45,99,111,111,107,105,101,45,98,97,114,16,0,13,35,104,97,112,112,121,99,111,111,107,105,101,115,16,0,23,35,104,97,114,100,108,111,111,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,14,35,104,97,118,101,45,97,45,99,111,111,107,105,101,16,0,12,35,104,97,118,101,97,99,111,111,107,105,101,16,0,19,35,104,97,121,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,11,35,104,98,45,99,99,45,119,114,97,112,16,0,22,35,104,98,67,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,16,0,21,35,104,99,95,101,118,116,95,116,111,111,108,116,105,112,95,109,111,100,97,108,16,0,15,35,104,99,95,104,117,103,115,95,99,111,111,107,105,101,16,0,21,35,104,99,109,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,17,35,104,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,18,35,104,100,103,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,21,35,104,101,97,100,45,98,97,114,45,99,111,111,107,105,101,45,105,110,102,111,16,0,17,35,104,101,97,100,67,111,111,107,105,101,65,99,99,101,112,116,16,0,12,35,104,101,97,100,95,99,111,111,107,105,101,16,0,16,35,104,101,97,100,98,97,110,100,45,99,111,111,107,105,101,16,0,17,35,104,101,97,100,98,97,110,100,95,99,111,111,107,105,101,115,16,0,15,35,104,101,97,100,101,114,45,99,111,111,99,107,105,101,16,0,14,35,104,101,97,100,101,114,45,99,111,111,107,105,101,16,0,18,35,104,101,97,100,101,114,45,99,111,111,107,105,101,45,98,97,114,16,0,18,35,104,101,97,100,101,114,45,99,111,111,107,105,101,45,108,97,119,16,0,21,35,104,101,97,100,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,22,35,104,101,97,100,101,114,45,99,111,111,107,105,101,108,97,119,45,102,111,114,109,16,0,15,35,104,101,97,100,101,114,45,99,111,111,107,105,101,115,16,0,12,35,104,101,97,100,101,114,45,103,100,112,114,16,0,19,35,104,101,97,100,101,114,45,105,110,102,111,45,99,111,111,107,105,101,16,0,13,35,104,101,97,100,101,114,67,111,111,107,105,101,16,0,17,35,104,101,97,100,101,114,67,111,111,107,105,101,65,114,101,97,16,0,16,35,104,101,97,100,101,114,67,111,111,107,105,101,76,97,119,16,0,14,35,104,101,97,100,101,114,67,111,111,107,105,101,115,16,0,20,35,104,101,97,100,101,114,67,111,111,107,105,101,115,65,100,118,105,99,101,16,0,17,35,104,101,97,100,101,114,67,111,111,107,105,101,115,66,97,114,16,0,21,35,104,101,97,100,101,114,80,114,105,118,97,99,121,77,115,103,87,114,97,112,16,0,27,35,104,101,97,100,101,114,84,111,112,66,97,114,77,101,115,115,97,103,101,67,111,111,107,105,101,115,16,0,18,35,104,101,97,100,101,114,84,111,112,84,114,97,99,107,105,110,103,16,0,24,35,104,101,97,100,101,114,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,22,35,104,101,97,100,101,114,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,16,0,15,35,104,101,97,100,101,114,95,99,111,111,107,105,101,115,16,0,18,35,104,101,97,100,101,114,95,116,99,95,112,114,105,118,97,99,121,16,0,18,35,104,101,97,100,101,114,98,97,114,95,99,111,111,107,105,101,115,16,0,13,35,104,101,97,100,101,114,99,111,111,107,105,101,16,0,13,35,104,101,98,115,45,99,111,110,115,101,110,116,16,0,13,35,104,101,108,108,111,45,99,111,111,107,105,101,16,0,24,35,104,101,108,108,111,116,114,117,115,116,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,21,35,104,101,114,111,107,117,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,17,35,104,102,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,16,35,104,102,99,45,112,114,105,118,97,99,121,45,98,97,114,16,0,17,35,104,104,95,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,14,35,104,105,45,99,111,111,107,105,101,45,98,111,120,16,0,13,35,104,105,45,101,117,45,111,112,116,45,105,110,16,0,22,35,104,105,100,100,101,110,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,13,35,104,105,100,100,101,110,67,111,111,107,105,101,16,0,12,35,104,105,100,101,95,99,111,111,107,105,101,16,0,22,35,104,105,100,101,99,111,111,107,105,101,105,110,102,111,67,111,110,116,101,110,116,16,0,21,35,104,105,100,101,99,111,111,107,105,101,105,110,102,111,79,98,106,101,99,116,16,0,14,35,104,105,110,119,101,105,115,67,111,111,107,105,101,16,0,16,35,104,105,110,119,101,105,115,95,99,111,111,107,105,101,115,16,0,14,35,104,105,110,119,101,105,115,99,111,111,107,105,101,16,0,16,35,104,105,110,119,101,105,115,99,111,111,107,105,101,105,100,16,0,28,35,104,105,118,101,101,120,116,99,111,111,107,105,101,95,110,111,116,105,99,101,95,114,101,110,100,101,114,16,0,11,35,104,109,45,99,111,110,115,101,110,116,16,0,19,35,104,109,99,102,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,13,35,104,110,99,111,111,107,105,101,103,100,112,114,16,0,21,35,104,111,102,102,102,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,13,35,104,111,109,101,45,99,111,111,107,105,101,115,16,0,24,35,104,111,109,101,45,108,101,103,97,108,45,105,110,102,111,115,45,98,111,116,116,111,109,16,0,22,35,104,111,109,101,45,112,114,105,118,97,99,121,45,99,111,111,111,107,105,101,115,16,0,18,35,104,111,111,100,67,111,111,107,105,101,73,110,102,111,66,111,120,16,0,29,35,104,111,116,67,111,111,107,105,101,66,111,116,68,105,97,108,111,103,66,97,99,107,103,114,111,117,110,100,16,0,12,35,104,112,95,99,99,111,110,115,101,110,116,16,0,22,35,104,114,45,99,111,111,107,105,101,115,45,45,99,111,110,116,97,105,110,101,114,16,0,18,35,104,114,119,45,99,111,111,107,105,101,45,100,105,97,108,111,103,16,0,26,35,104,115,45,101,117,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,16,0,35,35,104,115,95,99,111,115,95,119,114,97,112,112,101,114,95,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,22,35,104,115,95,115,104,111,119,95,98,97,110,110,101,114,95,98,117,116,116,111,110,16,0,20,35,104,115,111,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,16,0,33,35,104,115,116,51,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,99,111,110,115,101,110,116,45,112,111,112,117,112,16,0,13,35,104,116,95,99,111,111,107,105,101,108,97,119,16,0,17,35,104,116,109,108,80,111,112,105,110,67,111,111,107,105,101,115,16,0,17,35,104,116,109,108,95,99,111,111,107,105,101,65,103,114,101,101,16,0,27,35,104,117,107,95,99,111,111,107,105,101,95,112,114,101,102,101,114,110,99,101,95,112,97,110,101,108,16,0,16,35,104,117,108,107,95,99,111,111,107,105,101,95,98,97,114,16,0,17,35,104,118,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,8,35,104,118,45,103,100,112,114,16,0,17,35,104,118,99,111,111,107,105,101,101,117,68,105,97,108,111,103,16,0,10,35,104,119,95,99,111,111,107,105,101,16,0,14,35,104,119,95,99,111,111,107,105,101,95,108,97,119,16,0,16,35,104,121,100,114,97,45,102,98,45,110,111,116,105,99,101,16,0,12,35,104,122,45,99,111,110,115,101,110,116,115,16,0,17,35,105,45,99,97,110,45,104,97,115,45,99,111,111,107,105,101,16,0,7,35,105,45,99,111,111,107,16,0,14,35,105,45,99,111,111,107,105,101,45,99,110,105,108,16,0,14,35,105,45,99,111,111,107,105,101,115,45,98,97,114,16,0,13,35,105,51,45,98,111,120,67,111,111,107,105,101,16,0,15,35,105,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,10,35,105,95,99,111,111,107,105,101,115,16,0,18,35,105,97,45,99,111,111,107,105,101,45,99,104,111,105,99,101,115,16,0,16,35,105,97,50,95,112,111,112,117,112,99,111,111,107,105,101,16,0,19,35,105,97,105,95,99,111,111,107,105,101,95,119,114,97,112,112,101,114,16,0,32,35,105,98,117,45,111,110,108,105,110,101,45,117,115,101,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,20,35,105,98,119,97,114,110,105,110,103,95,101,117,99,111,111,107,105,101,115,16,0,14,35,105,99,95,99,111,111,107,105,101,115,95,97,114,16,0,14,35,105,99,97,110,104,97,115,99,111,111,107,105,101,16,0,12,35,105,99,99,95,109,101,115,115,97,103,101,16,0,14,35,105,99,101,67,111,111,107,105,101,87,114,97,112,16,0,27,35,105,99,101,103,114,97,109,95,109,101,115,115,97,103,101,115,95,99,111,110,116,97,105,110,101,114,16,0,13,35,105,99,101,121,95,99,111,111,107,105,101,115,16,0,21,35,105,99,109,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,18,35,105,99,110,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,16,35,105,99,111,67,111,111,107,105,101,78,111,116,105,102,121,16,0,17,35,105,99,111,67,111,111,107,105,101,115,66,97,110,110,101,114,16,0,11,35,105,99,111,95,98,97,110,110,101,114,16,0,11,35,105,99,111,95,99,111,111,107,105,101,16,0,16,35,105,99,111,99,111,111,107,105,101,95,111,117,116,101,114,16,0,9,35,105,99,111,111,107,105,101,115,16,0,22,35,105,99,115,45,112,112,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,16,0,13,35,105,99,116,115,117,99,95,98,108,111,99,107,16,0,10,35,105,100,45,99,111,111,107,105,101,16,0,17,35,105,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,11,35,105,100,45,99,111,111,107,105,101,115,16,0,14,35,105,100,45,99,111,111,107,105,101,119,97,114,110,16,0,19,35,105,100,45,119,97,114,110,105,110,103,45,99,111,111,107,105,101,115,16,0,10,35,105,100,67,111,107,87,114,97,112,16,0,12,35,105,100,67,111,111,107,105,101,77,115,103,16,0,13,35,105,100,67,111,111,107,105,101,80,101,114,109,16,0,20,35,105,100,67,111,111,107,105,101,80,111,108,105,99,121,80,97,110,101,108,16,0,12,35,105,100,67,111,111,107,105,101,98,97,114,16,0,38,35,105,100,72,114,83,121,115,71,105,112,115,68,105,118,66,108,97,99,107,84,114,97,110,115,112,97,114,101,110,116,79,118,101,114,108,97,121,16,0,19,35,105,100,73,110,102,111,114,109,97,99,97,111,67,111,111,107,105,101,16,0,7,35,105,100,76,71,80,68,16,0,13,35,105,100,76,101,121,67,111,111,107,105,101,115,16,0,27,35,105,100,85,115,101,114,67,111,110,115,101,110,116,80,111,108,105,99,121,87,97,114,110,105,110,103,16,0,13,35,105,100,95,95,99,111,111,107,105,101,111,107,16,0,18,35,105,100,95,97,118,118,105,115,111,95,99,111,111,107,105,101,115,16,0,18,35,105,100,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,15,35,105,100,95,99,111,111,107,105,101,95,115,104,111,119,16,0,17,35,105,100,95,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,18,35,105,100,95,100,105,118,95,85,115,101,67,111,111,107,105,101,115,16,0,11,35,105,100,95,109,115,103,67,110,105,108,16,0,14,35,105,100,95,116,114,95,99,111,111,107,105,101,115,16,0,19,35,105,100,97,105,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,9,35,105,100,99,111,111,107,105,101,16,0,12,35,105,100,101,97,95,99,111,111,107,105,101,16,0,18,35,105,100,101,97,108,105,110,103,45,99,111,110,115,101,110,116,115,16,0,18,35,105,100,101,111,99,111,111,107,105,101,45,119,105,100,103,101,116,16,0,15,35,105,100,103,45,99,111,111,107,105,101,45,98,97,114,16,0,15,35,105,100,103,99,112,95,95,115,101,99,116,105,111,110,16,0,22,35,105,100,105,100,105,116,97,108,108,102,111,114,116,104,101,99,111,111,107,105,101,16,0,31,35,105,100,105,117,109,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,16,0,10,35,105,100,119,99,111,111,107,105,101,16,0,11,35,105,100,120,99,111,111,107,105,101,115,16,0,12,35,105,100,120,114,99,111,111,107,105,101,115,16,0,15,35,105,101,116,67,111,111,107,105,101,80,97,110,101,108,16,0,19,35,105,102,97,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,13,35,105,102,111,111,100,95,99,111,111,107,105,101,16,0,28,35,105,102,114,97,109,101,45,119,114,97,112,45,110,101,116,105,110,102,111,45,99,111,110,115,101,110,116,16,0,14,35,105,102,114,97,109,101,95,99,111,111,107,105,101,16,0,19,35,105,102,114,97,109,101,95,99,111,111,107,105,101,95,115,105,116,101,16,0,18,35,105,103,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,11,35,105,103,111,95,99,111,111,107,105,101,16,0,32,35,105,103,111,119,101,98,95,99,111,111,107,105,101,112,111,108,105,99,121,95,111,112,116,111,117,116,95,105,110,102,111,16,0,12,35,105,105,98,45,99,111,111,107,105,101,115,16,0,12,35,105,105,109,71,100,112,114,82,111,111,116,16,0,21,35,105,106,45,112,111,108,105,99,121,45,100,105,115,99,108,97,105,109,101,114,16,0,27,35,105,107,97,110,111,115,45,112,114,105,118,97,99,121,45,99,111,111,107,105,101,108,97,121,101,114,16,0,13,35,105,108,111,118,101,99,111,111,107,105,101,115,16,0,22,35,105,109,80,111,108,105,99,121,99,111,111,107,105,101,109,101,115,115,97,103,101,16,0,18,35,105,109,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,20,35,105,109,112,108,105,99,105,116,67,111,111,107,105,101,77,111,100,97,108,16,0,15,35,105,109,112,114,105,110,116,45,99,111,111,107,105,101,16,0,17,35,105,109,112,114,111,111,118,101,45,99,111,111,107,105,101,115,16,0,13,35,105,110,100,101,120,99,111,111,107,105,101,115,16,0,18,35,105,110,100,105,99,97,116,105,111,110,95,99,111,111,107,105,101,16,0,12,35,105,110,102,95,112,114,105,118,97,99,121,16,0,10,35,105,110,102,99,111,111,107,105,101,16,0,19,35,105,110,102,111,45,97,98,111,117,116,45,99,111,111,107,105,101,115,16,0,17,35,105,110,102,111,45,98,97,110,110,101,114,45,103,100,112,114,16,0,17,35,105,110,102,111,45,98,97,114,45,99,111,111,107,105,101,115,16,0,22,35,105,110,102,111,45,98,97,114,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,12,35,105,110,102,111,45,99,111,111,107,105,101,16,0,13,35,105,110,102,111,45,99,111,111,107,105,101,115,16,0,20,35,105,110,102,111,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,17,35,105,110,102,111,45,99,111,111,107,105,101,115,45,98,97,114,16,0,17,35,105,110,102,111,45,99,111,111,107,105,101,115,45,116,111,112,16,0,11,35,105,110,102,111,67,111,111,107,105,101,16,0,17,35,105,110,102,111,67,111,111,107,105,101,66,97,110,110,101,114,16,0,15,35,105,110,102,111,67,111,111,107,105,101,67,78,73,76,16,0,12,35,105,110,102,111,67,111,111,107,105,101,115,16,0,17,35,105,110,102,111,76,111,99,97,108,67,111,111,107,105,101,115,16,0,12,35,105,110,102,111,80,114,105,118,97,99,121,16,0,24,35,105,110,102,111,95,97,98,111,117,116,95,99,111,111,107,105,101,115,95,97,114,101,97,16,0,12,35,105,110,102,111,95,99,111,111,107,105,101,16,0,23,35,105,110,102,111,95,99,111,111,107,105,101,95,98,97,99,107,103,114,111,117,110,100,16,0,16,35,105,110,102,111,95,99,111,111,107,105,101,95,101,120,101,16,0,17,35,105,110,102,111,95,99,111,111,107,105,101,95,101,120,101,108,16,0,17,35,105,110,102,111,95,99,111,111,107,105,101,95,105,112,122,112,16,0,20,35,105,110,102,111,95,99,111,111,107,105,101,95,119,114,97,112,112,101,114,16,0,13,35,105,110,102,111,95,99,111,111,107,105,101,115,16,0,19,35,105,110,102,111,95,99,111,111,107,105,101,115,95,98,108,111,99,107,16,0,15,35,105,110,102,111,95,99,111,111,107,105,101,115,95,108,16,0,19,35,105,110,102,111,98,97,110,110,101,114,45,99,111,111,107,105,101,115,16,0,15,35,105,110,102,111,98,97,114,45,99,111,111,107,105,101,16,0,32,35,105,110,102,111,98,97,114,91,100,97,116,97,45,115,101,116,116,105,110,103,115,61,34,98,111,116,116,111,109,34,93,16,0,14,35,105,110,102,111,98,111,120,99,111,111,107,105,101,16,0,15,35,105,110,102,111,99,105,97,115,116,101,99,122,107,97,16,0,11,35,105,110,102,111,99,111,111,107,105,101,16,0,13,35,105,110,102,111,99,111,111,107,105,101,102,114,16,0,12,35,105,110,102,111,99,111,111,107,105,101,115,16,0,13,35,105,110,102,111,99,111,111,107,105,101,115,50,16,0,21,35,105,110,102,111,114,67,111,111,107,105,101,87,97,108,108,80,111,112,117,112,16,0,9,35,105,110,102,111,114,99,119,112,16,0,15,35,105,110,102,111,114,109,45,99,111,111,107,105,101,115,16,0,24,35,105,110,102,111,114,109,97,99,105,111,110,83,111,98,114,101,67,111,111,107,105,101,115,16,0,21,35,105,110,102,111,114,109,97,99,106,97,45,111,45,99,111,111,107,105,101,115,16,0,24,35,105,110,102,111,114,109,97,99,106,97,79,67,105,97,115,116,101,99,122,107,97,99,104,16,0,19,35,105,110,102,111,114,109,97,99,106,97,95,99,105,97,115,116,107,97,16,0,26,35,105,110,102,111,114,109,97,99,106,97,95,111,95,99,105,97,115,116,101,99,122,107,97,99,104,16,0,20,35,105,110,102,111,114,109,97,99,106,97,95,111,95,99,111,111,107,105,101,16,0,21,35,105,110,102,111,114,109,97,99,106,97,95,111,95,99,111,111,107,105,101,115,16,0,24,35,105,110,102,111,114,109,97,116,105,111,110,65,98,111,117,116,67,111,111,107,105,101,115,16,0,21,35,105,110,102,111,114,109,97,116,105,111,110,115,45,99,111,111,107,105,101,115,16,0,30,35,105,110,102,111,114,109,97,116,105,118,97,45,98,114,101,118,101,45,99,111,111,107,105,101,95,119,114,97,112,16,0,19,35,105,110,102,111,114,109,97,116,105,118,97,45,99,111,111,107,105,101,16,0,20,35,105,110,102,111,114,109,97,116,105,118,97,45,112,114,105,118,97,99,121,16,0,23,35,105,110,102,111,114,109,97,116,105,118,97,66,114,101,118,101,67,111,111,107,105,101,16,0,18,35,105,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,16,0,36,35,105,110,102,111,114,109,97,116,105,118,97,80,114,105,118,97,99,121,67,111,111,107,105,101,115,68,111,109,69,108,101,109,101,110,116,16,0,19,35,105,110,102,111,114,109,97,116,105,118,97,95,99,111,111,107,105,101,16,0,13,35,105,110,102,111,115,67,111,111,107,105,101,115,16,0,13,35,105,110,102,111,115,95,99,111,111,107,105,101,16,0,13,35,105,110,102,111,115,99,111,111,107,105,101,115,16,0,11,35,105,110,103,45,67,111,111,107,105,101,16,0,15,35,105,110,103,45,67,111,111,107,105,101,98,111,100,121,16,0,13,35,105,110,103,97,109,101,67,111,111,107,105,101,16,0,22,35,105,110,105,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,105,110,105,116,45,112,111,112,117,112,45,99,111,111,107,105,101,16,0,18,35,105,110,108,105,110,101,45,99,111,111,107,105,101,45,116,97,98,16,0,20,35,105,110,110,111,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,12,35,105,110,112,108,95,99,112,95,99,110,116,16,0,29,35,105,110,112,115,121,100,101,95,99,111,111,107,105,101,95,98,97,114,95,99,111,110,116,97,105,110,101,114,16,0,17,35,105,110,115,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,16,35,105,110,116,45,99,111,111,107,105,101,115,45,98,97,114,16,0,24,35,105,110,116,101,114,97,99,116,45,112,111,108,105,99,121,45,99,111,110,115,101,110,116,16,0,18,35,105,110,116,101,114,99,101,112,116,45,99,111,111,107,105,101,115,16,0,14,35,105,110,116,115,101,114,95,99,111,111,107,105,101,16,0,24,35,105,110,118,101,110,116,105,115,101,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,16,35,105,112,45,117,115,101,114,45,99,111,110,115,101,110,116,16,0,11,35,105,112,101,114,99,111,111,107,105,101,16,0,17,35,105,112,114,111,109,95,99,112,95,119,114,97,112,112,101,114,16,0,14,35,105,113,105,116,99,111,111,107,105,101,108,97,119,16,0,17,35,105,114,115,95,99,111,111,107,105,101,95,112,97,110,101,108,16,0,18,35,105,115,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,16,35,105,115,45,99,111,111,107,105,101,97,108,101,114,116,114,16,0,9,35,105,115,67,111,111,107,105,101,16,0,22,35,105,115,97,99,97,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,16,0,14,35,105,115,105,100,101,45,99,111,111,107,105,101,115,16,0,22,35,105,115,108,97,101,100,101,110,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,25,35,105,116,45,99,111,111,107,105,101,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,16,0,17,35,105,116,45,101,112,114,105,118,97,99,121,45,114,111,111,116,16,0,19,35,105,116,97,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,16,0,13,35,105,116,97,120,105,45,99,111,111,107,105,101,16,0,18,35,105,116,99,45,99,111,111,107,105,101,45,110,111,116,105,102,121,16,0,15,35,105,116,99,95,99,111,111,107,105,101,105,110,102,111,16,0,14,35,105,116,108,67,111,111,107,105,101,73,110,102,111,16,0,19,35,105,116,115,98,111,111,116,115,116,114,97,112,99,111,111,107,105,101,16,0,24,35,105,116,118,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,105,116,118,45,103,108,111,98,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,17,35,105,117,114,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,12,35,105,118,117,95,112,114,105,118,97,99,121,16,0,17,35,105,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,105,119,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,29,35,105,119,115,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,16,0,22,35,106,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,19,35,106,50,52,45,99,111,110,115,101,110,116,45,99,111,111,107,105,101,16,0,25,35,106,67,111,111,107,105,101,80,114,105,118,97,99,121,95,100,105,118,95,116,101,115,116,111,16,0,20,35,106,81,65,108,101,114,116,65,99,99,101,112,116,67,111,111,107,105,101,16,0,23,35,106,81,117,101,114,121,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,16,0,19,35,106,97,99,107,115,111,110,118,105,108,108,101,45,111,112,116,105,110,16,0,17,35,106,97,110,101,108,97,45,97,118,105,115,111,45,108,103,112,16,0,10,35,106,98,99,111,111,107,105,101,115,16,0,17,35,106,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,20,35,106,101,110,116,105,115,45,99,111,110,115,101,110,116,45,109,97,105,110,16,0,15,35,106,101,110,116,105,115,95,99,111,110,115,101,110,116,16,0,20,35,106,105,118,101,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,19,35,106,105,120,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,22,35,106,105,120,95,97,99,99,101,112,116,99,111,111,107,105,101,115,95,98,111,120,16,0,26,35,106,108,99,111,111,107,105,101,95,99,111,110,116,114,111,108,67,111,110,116,97,105,110,101,114,16,0,24,35,106,108,99,111,111,107,105,101,95,99,111,110,116,114,111,108,67,111,110,116,101,110,116,16,0,20,35,106,108,99,111,111,107,105,101,95,99,111,110,116,114,111,108,77,115,103,16,0,24,35,106,108,99,111,111,107,105,101,95,99,111,110,116,114,111,108,77,115,103,68,101,110,121,16,0,25,35,106,108,99,111,111,107,105,101,95,99,111,110,116,114,111,108,77,115,103,70,105,114,115,116,16,0,21,35,106,108,112,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,16,35,106,109,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,28,35,106,109,115,95,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,115,99,114,101,101,110,16,0,16,35,106,111,117,114,110,97,108,45,99,111,111,107,105,101,115,16,0,23,35,106,113,45,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,16,0,11,35,106,113,95,99,111,111,107,105,101,115,16,0,17,35,106,113,109,67,111,111,107,105,101,77,111,110,115,116,101,114,16,0,25,35,106,113,117,101,114,121,45,99,111,111,107,105,101,45,108,97,119,45,115,99,114,105,112,116,16,0,20,35,106,113,117,101,114,121,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,12,35,106,115,45,45,99,111,111,107,105,101,115,16,0,26,35,106,115,45,45,102,108,97,115,104,45,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,16,0,14,35,106,115,45,84,111,115,80,114,105,118,97,99,121,16,0,17,35,106,115,45,97,99,99,101,112,116,45,99,111,111,107,105,101,16,0,23,35,106,115,45,97,108,101,114,116,45,99,111,111,107,105,101,45,119,105,110,100,111,119,16,0,16,35,106,115,45,98,97,110,100,45,99,111,111,107,105,101,115,16,0,18,35,106,115,45,98,97,110,110,101,114,45,99,111,111,107,105,101,115,16,0,27,35,106,115,45,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,12,35,106,115,45,99,67,111,110,115,101,110,116,16,0,8,35,106,115,45,99,99,112,97,16,0,15,35,106,115,45,99,99,112,97,45,98,97,110,110,101,114,16,0,15,35,106,115,45,99,110,105,108,45,45,97,108,101,114,116,16,0,33,35,106,115,45,99,111,110,115,101,110,116,45,105,110,102,111,114,109,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,16,0,19,35,106,115,45,99,111,111,107,105,101,45,48,50,45,112,111,112,117,112,16,0,19,35,106,115,45,99,111,111,107,105,101,45,48,51,45,112,111,112,117,112,16,0,16,35,106,115,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,19,35,106,115,45,99,111,111,107,105,101,45,97,112,112,114,111,118,97,108,16,0,14,35,106,115,45,99,111,111,107,105,101,45,98,97,114,16,0,14,35,106,115,45,99,111,111,107,105,101,45,98,111,120,16,0,18,35,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,22,35,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,16,0,28,35,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,16,0,20,35,106,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,21,35,106,115,45,99,111,111,107,105,101,45,100,105,97,108,111,103,45,98,111,120,16,0,21,35,106,115,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,23,35,106,115,45,99,111,111,107,105,101,45,102,111,111,116,101,114,45,98,108,111,99,107,16,0,15,35,106,115,45,99,111,111,107,105,101,45,104,105,110,116,16,0,16,35,106,115,45,99,111,111,107,105,101,45,105,110,110,101,114,16,0,16,35,106,115,45,99,111,111,107,105,101,45,108,97,121,101,114,16,0,14,35,106,115,45,99,111,111,107,105,101,45,109,115,103,16,0,16,35,106,115,45,99,111,111,107,105,101,45,110,111,116,101,115,16,0,17,35,106,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,23,35,106,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,24,35,106,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,25,35,106,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,101,102,97,117,108,116,16,0,16,35,106,115,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,18,35,106,115,45,99,111,111,107,105,101,45,115,101,99,116,105,111,110,16,0,15,35,106,115,45,99,111,111,107,105,101,45,116,101,120,116,16,0,18,35,106,115,45,99,111,111,107,105,101,45,116,114,105,103,103,101,114,16,0,16,35,106,115,45,99,111,111,107,105,101,66,97,110,110,101,114,16,0,13,35,106,115,45,99,111,111,107,105,101,66,111,120,16,0,25,35,106,115,45,99,111,111,107,105,101,67,111,110,115,101,110,116,45,119,114,97,112,112,101,114,16,0,14,35,106,115,45,99,111,111,107,105,101,73,110,102,111,16,0,17,35,106,115,45,99,111,111,107,105,101,87,97,114,110,105,110,103,16,0,13,35,106,115,45,99,111,111,107,105,101,98,97,114,16,0,19,35,106,115,45,99,111,111,107,105,101,108,97,119,45,97,108,101,114,116,16,0,13,35,106,115,45,99,111,111,107,105,101,108,111,105,16,0,16,35,106,115,45,99,111,111,107,105,101,110,111,116,105,99,101,16,0,23,35,106,115,45,99,111,111,107,105,101,110,111,116,105,99,101,45,115,112,97,99,101,114,16,0,18,35,106,115,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,15,35,106,115,45,99,111,111,107,105,101,115,45,98,97,114,16,0,16,35,106,115,45,99,111,111,107,105,101,115,45,98,108,111,99,16,0,22,35,106,115,45,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,16,0,18,35,106,115,45,99,111,111,107,105,101,115,45,102,111,111,116,101,114,16,0,16,35,106,115,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,20,35,106,115,45,99,111,111,107,105,101,115,45,109,115,103,45,104,105,100,101,16,0,24,35,106,115,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,18,35,106,115,45,99,111,111,107,105,101,115,45,115,116,114,105,112,101,16,0,17,35,106,115,45,99,111,111,107,105,101,115,45,116,101,114,109,115,16,0,19,35,106,115,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,19,35,106,115,45,99,111,111,107,105,101,115,46,99,111,111,107,105,101,115,16,0,31,35,106,115,45,99,121,98,111,116,45,99,111,111,107,105,101,98,111,116,45,112,108,97,99,101,104,111,108,100,101,114,16,0,24,35,106,115,45,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,110,111,116,101,16,0,14,35,106,115,45,101,120,116,45,99,111,111,107,105,101,16,0,15,35,106,115,45,103,100,112,114,45,98,97,110,110,101,114,16,0,23,35,106,115,45,103,100,112,114,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,20,35,106,115,45,103,100,112,114,45,99,111,111,107,105,101,45,111,112,101,110,16,0,21,35,106,115,45,103,100,112,114,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,14,35,106,115,45,103,100,112,114,45,111,112,116,105,110,16,0,12,35,106,115,45,103,100,112,114,70,111,114,109,16,0,17,35,106,115,45,104,101,97,100,101,114,45,99,111,111,107,105,101,16,0,15,35,106,115,45,104,111,111,107,45,99,111,111,107,105,101,16,0,17,35,106,115,45,105,110,102,111,115,45,99,111,111,107,105,101,115,16,0,14,35,106,115,45,105,112,45,99,111,111,107,105,101,115,16,0,14,35,106,115,45,108,97,119,45,45,97,108,101,114,116,16,0,27,35,106,115,45,109,98,67,111,111,107,105,101,78,111,116,105,99,101,67,111,110,116,97,105,110,101,114,16,0,13,35,106,115,45,109,100,45,99,111,111,107,105,101,16,0,36,35,106,115,45,109,101,115,115,97,103,101,45,98,97,114,45,99,111,111,107,105,101,45,97,117,116,104,111,114,105,122,97,116,105,111,110,16,0,29,35,106,115,45,109,101,115,115,97,103,101,45,98,97,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,36,35,106,115,45,109,101,115,115,97,103,101,91,100,97,116,97,45,105,100,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,34,93,16,0,37,35,106,115,45,109,101,115,115,97,103,101,91,100,97,116,97,45,113,97,61,34,99,111,111,107,105,101,45,109,101,115,115,97,103,101,34,93,16,0,24,35,106,115,45,109,111,100,117,108,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,25,35,106,115,45,111,110,108,105,110,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,16,35,106,115,45,111,112,116,73,110,45,98,97,110,110,101,114,16,0,19,35,106,115,45,112,111,108,105,99,121,45,101,117,99,111,111,107,105,101,16,0,22,35,106,115,45,112,111,112,117,112,45,99,111,111,107,105,101,45,98,108,111,99,107,16,0,17,35,106,115,45,112,111,112,117,112,45,99,111,111,107,105,101,115,16,0,19,35,106,115,45,112,117,108,108,111,117,116,45,99,111,111,107,105,101,115,16,0,23,35,106,115,45,114,101,97,99,116,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,15,35,106,115,45,115,105,116,101,45,99,111,111,107,105,101,16,0,22,35,106,115,45,115,105,116,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,106,115,45,115,116,111,114,109,99,99,45,98,97,110,110,101,114,16,0,18,35,106,115,45,116,97,114,95,99,111,111,107,105,101,115,66,97,114,16,0,19,35,106,115,45,117,115,101,114,45,99,111,111,107,105,101,45,106,97,114,16,0,16,35,106,115,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,18,35,106,115,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,15,35,106,115,67,111,111,107,105,101,78,111,116,105,99,101,16,0,21,35,106,115,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,15,35,106,115,67,111,111,107,105,101,115,80,97,110,101,108,16,0,7,35,106,115,71,68,80,82,16,0,16,35,106,115,85,115,101,67,111,111,107,105,101,84,105,112,115,16,0,21,35,106,115,95,97,99,99,101,112,116,95,99,111,111,107,105,101,95,98,97,114,16,0,12,35,106,115,95,99,110,105,108,45,98,97,114,16,0,15,35,106,115,95,99,111,110,115,101,110,116,95,98,97,114,16,0,21,35,106,115,95,99,111,111,107,105,101,45,98,97,110,110,101,114,45,97,115,107,16,0,22,35,106,115,95,99,111,111,107,105,101,45,98,97,110,110,101,114,45,122,111,110,101,16,0,24,35,106,115,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,109,97,105,110,16,0,18,35,106,115,95,99,111,111,107,105,101,45,109,111,110,115,116,101,114,16,0,16,35,106,115,95,99,111,111,107,105,101,95,109,111,100,97,108,16,0,22,35,106,115,95,99,111,111,107,105,101,95,109,111,100,97,108,95,108,97,121,101,114,16,0,14,35,106,115,95,99,111,111,107,105,101,95,109,115,103,16,0,17,35,106,115,95,99,111,111,107,105,101,95,119,105,110,100,111,119,16,0,15,35,106,115,95,99,111,111,107,105,101,95,119,105,115,104,16,0,22,35,106,115,95,100,97,116,97,78,111,116,105,99,101,83,101,116,116,105,110,103,115,16,0,18,35,106,115,95,101,117,67,111,111,107,105,101,66,97,110,110,101,114,16,0,17,35,106,115,95,101,117,67,111,111,107,105,101,77,111,100,97,108,16,0,14,35,106,115,95,103,100,112,114,84,111,112,66,97,114,16,0,18,35,106,115,95,103,108,111,98,97,108,45,99,111,111,107,105,101,115,16,0,17,35,106,115,95,112,111,112,117,112,95,99,111,111,107,105,101,115,16,0,25,35,106,115,95,112,117,115,104,68,111,119,110,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,17,35,106,115,95,116,111,112,114,111,119,95,99,111,111,107,105,101,16,0,22,35,106,115,97,108,101,114,116,45,99,111,111,107,105,101,115,97,99,99,101,112,116,16,0,12,35,106,115,110,45,99,111,111,107,105,101,115,16,0,14,35,106,115,116,95,101,117,95,99,111,111,107,105,101,16,0,20,35,106,117,108,105,97,110,97,67,111,111,107,105,101,115,65,108,101,114,116,16,0,15,35,106,117,109,112,101,114,95,99,111,111,107,105,101,115,16,0,13,35,106,117,110,99,111,111,107,105,101,98,97,114,16,0,17,35,106,119,115,100,119,45,99,111,111,107,105,101,72,105,110,116,16,0,27,35,106,119,115,100,119,45,99,111,111,107,105,101,72,105,110,116,45,99,111,110,116,97,105,110,101,114,16,0,9,35,107,45,99,111,111,107,105,101,16,0,21,35,107,95,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,11,35,107,97,45,99,111,111,107,105,101,115,16,0,12,35,107,97,67,111,111,107,105,101,66,97,114,16,0,16,35,107,97,105,111,45,99,111,111,107,105,101,45,98,97,110,16,0,9,35,107,97,107,101,98,111,107,115,16,0,22,35,107,97,108,101,118,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,18,35,107,97,110,101,119,115,45,99,111,111,107,105,101,45,98,111,120,16,0,13,35,107,97,115,104,117,98,67,111,111,107,105,101,16,0,17,35,107,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,15,35,107,98,67,111,111,107,105,101,80,111,108,105,99,121,16,0,12,35,107,99,111,111,107,105,101,105,110,102,111,16,0,13,35,107,101,99,111,111,107,105,101,104,105,110,116,16,0,10,35,107,101,107,115,78,111,116,105,122,16,0,12,35,107,101,107,115,95,110,111,116,105,99,101,16,0,8,35,107,101,107,115,98,97,114,16,0,12,35,107,101,107,115,99,104,101,99,107,101,114,16,0,9,35,107,101,107,115,100,111,115,101,16,0,13,35,107,101,107,115,101,46,100,105,97,108,111,103,16,0,14,35,107,101,107,115,105,45,99,111,110,115,101,110,116,16,0,11,35,107,101,107,115,105,118,101,104,106,101,16,0,11,35,107,101,107,115,108,101,105,115,116,101,16,0,16,35,107,103,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,16,35,107,103,67,111,111,107,105,101,87,114,97,112,112,101,114,16,0,12,35,107,103,99,45,99,111,110,115,101,110,116,16,0,9,35,107,104,99,111,111,107,105,101,16,0,12,35,107,105,110,103,45,99,111,111,107,105,101,16,0,17,35,107,106,102,67,111,111,107,105,101,73,110,102,111,66,111,120,16,0,9,35,107,107,99,111,111,107,105,101,16,0,11,35,107,108,45,99,111,111,107,105,101,115,16,0,18,35,107,108,97,114,111,32,46,99,111,111,107,45,109,111,100,97,108,16,0,17,35,107,109,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,15,35,107,110,45,103,100,112,114,45,100,105,97,108,111,103,16,0,9,35,107,111,101,107,98,97,108,107,16,0,10,35,107,111,101,107,105,101,66,97,114,16,0,14,35,107,111,101,107,105,101,109,101,108,100,105,110,103,16,0,14,35,107,111,101,107,105,101,109,111,110,115,116,101,114,16,0,12,35,107,111,101,107,106,101,80,111,112,117,112,16,0,13,35,107,111,108,97,99,105,99,105,45,100,105,118,16,0,36,35,107,111,109,112,108,101,116,116,45,98,101,115,99,104,101,117,101,114,116,101,45,99,111,111,107,105,101,45,119,97,114,110,117,110,103,16,0,17,35,107,111,109,117,110,105,107,97,116,45,99,111,111,107,105,101,16,0,18,35,107,111,109,117,110,105,107,97,116,45,99,111,111,107,105,101,115,16,0,17,35,107,111,109,117,110,105,107,97,116,67,111,111,107,105,101,115,16,0,21,35,107,111,109,117,110,105,107,97,116,95,99,105,97,115,116,101,99,122,107,97,16,0,18,35,107,111,109,117,110,105,107,97,116,95,99,105,97,115,116,107,97,16,0,17,35,107,111,109,117,110,105,107,97,116,95,99,111,111,107,105,101,16,0,15,35,107,111,109,117,110,105,107,97,116,95,114,111,100,111,16,0,10,35,107,111,112,97,103,101,66,97,114,16,0,23,35,107,111,115,105,108,107,97,95,99,111,111,107,105,101,115,95,104,108,97,115,107,97,16,0,11,35,107,113,115,45,99,111,111,107,105,101,16,0,19,35,107,114,110,45,112,114,105,118,97,99,121,45,99,101,110,116,101,114,16,0,16,35,107,115,102,45,103,100,112,114,45,110,111,116,105,99,101,16,0,11,35,107,116,45,99,111,111,107,105,101,115,16,0,27,35,107,116,67,111,111,107,105,101,83,116,97,116,101,109,101,110,116,67,111,110,116,97,105,110,101,114,16,0,11,35,107,116,95,99,111,111,107,105,101,115,16,0,15,35,107,117,107,105,45,111,112,111,122,111,114,105,108,111,16,0,12,35,107,117,107,105,117,111,114,110,105,110,103,16,0,6,35,107,117,107,105,122,16,0,24,35,107,118,95,103,100,112,114,95,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,16,0,13,35,107,118,107,107,95,111,118,101,114,108,97,121,16,0,11,35,107,118,107,107,95,112,111,112,117,112,16,0,17,35,107,119,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,10,35,108,45,99,111,111,107,105,101,115,16,0,19,35,108,97,100,105,101,115,99,111,111,107,105,101,110,111,116,105,99,101,16,0,16,35,108,97,103,111,95,99,111,111,107,105,101,95,98,97,114,16,0,19,35,108,97,112,103,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,22,35,108,97,112,105,101,99,104,95,99,111,111,107,105,101,115,95,102,105,101,108,100,16,0,17,35,108,97,114,103,101,110,101,116,95,99,111,110,115,101,110,116,16,0,16,35,108,97,117,109,97,116,99,111,111,107,105,101,98,111,120,16,0,6,35,108,97,119,69,85,16,0,14,35,108,97,121,45,99,111,111,107,105,101,108,97,119,16,0,13,35,108,97,121,101,114,45,99,111,111,107,105,101,16,0,20,35,108,97,121,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,14,35,108,97,121,101,114,45,99,111,111,107,105,101,115,16,0,32,35,108,97,121,101,114,45,112,111,108,105,116,105,113,117,101,45,103,101,115,116,105,111,110,45,99,111,111,107,105,101,115,16,0,18,35,108,97,121,101,114,65,99,99,101,112,116,67,111,111,107,105,101,16,0,13,35,108,97,121,101,114,67,111,111,107,105,101,115,16,0,19,35,108,97,121,101,114,67,111,111,107,105,101,115,80,111,112,103,111,109,16,0,13,35,108,97,121,101,114,95,99,111,111,107,105,101,16,0,14,35,108,97,121,101,114,95,99,111,111,107,105,101,115,16,0,28,35,108,97,121,101,114,95,99,111,111,107,105,101,115,95,112,117,98,108,105,99,105,116,97,105,114,101,115,16,0,12,35,108,97,121,101,114,99,111,111,107,105,101,16,0,21,35,108,97,121,111,117,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,29,35,108,97,121,111,117,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,17,35,108,97,121,111,117,116,45,99,111,111,107,105,101,109,115,103,16,0,22,35,108,97,121,111,117,116,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,14,35,108,99,45,99,111,111,107,105,101,45,98,97,114,16,0,16,35,108,99,95,99,111,111,107,105,101,115,45,109,97,105,110,16,0,24,35,108,99,95,119,101,98,97,112,112,67,111,111,107,105,101,81,117,101,115,116,105,111,110,16,0,24,35,108,99,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,16,35,108,100,67,111,111,107,105,101,67,111,110,102,105,114,109,16,0,17,35,108,100,95,112,114,105,118,97,99,121,95,112,111,112,117,112,16,0,10,35,108,100,99,119,101,98,45,99,110,16,0,22,35,108,100,100,119,45,99,111,111,107,105,101,45,109,111,100,97,108,45,98,111,120,16,0,12,35,108,100,110,107,45,99,111,111,107,105,101,16,0,13,35,108,101,103,97,108,45,99,111,111,107,105,101,16,0,19,35,108,101,103,97,108,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,11,35,108,101,103,97,108,76,97,121,101,114,16,0,18,35,108,101,103,97,108,78,111,116,105,99,101,67,111,111,107,105,101,16,0,18,35,108,101,103,97,108,78,111,116,105,99,101,72,101,97,100,101,114,16,0,23,35,108,101,103,97,108,78,111,116,105,102,105,99,97,116,105,111,110,69,108,116,73,100,16,0,8,35,108,101,103,97,108,85,69,16,0,20,35,108,101,103,97,108,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,20,35,108,101,103,97,108,95,99,111,111,107,105,101,95,104,111,108,100,101,114,16,0,21,35,108,101,103,97,108,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,16,0,13,35,108,101,103,97,108,95,110,111,116,105,99,101,16,0,21,35,108,101,103,97,108,95,112,111,108,105,99,121,95,99,111,111,107,105,101,115,16,0,15,35,108,101,103,97,108,98,97,114,46,108,101,103,97,108,16,0,12,35,108,101,103,97,108,99,111,111,107,105,101,16,0,27,35,108,101,103,97,108,105,110,99,108,117,100,101,45,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,25,35,108,101,103,97,108,112,108,117,115,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,9,35,108,101,103,99,111,111,107,105,16,0,19,35,108,101,103,105,115,108,97,116,105,111,110,95,99,111,111,107,105,101,16,0,32,35,108,101,109,109,67,111,111,107,105,101,67,111,110,116,114,111,108,68,105,118,67,111,110,116,97,105,110,101,114,66,71,16,0,25,35,108,101,109,109,67,111,111,107,105,101,74,115,68,105,118,67,111,110,116,97,105,110,101,114,16,0,21,35,108,101,114,117,109,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,12,35,108,101,115,95,99,111,111,107,105,101,115,16,0,20,35,108,101,120,97,114,45,97,99,99,101,112,116,45,99,111,111,107,105,101,16,0,19,35,108,101,120,105,115,110,101,120,105,115,45,99,111,111,107,105,101,115,16,0,19,35,108,101,120,116,114,111,95,99,111,111,107,105,101,115,45,98,97,114,16,0,11,35,108,101,121,67,111,111,107,105,101,115,16,0,10,35,108,101,121,99,111,111,107,105,101,16,0,11,35,108,101,121,99,111,111,107,105,101,115,16,0,13,35,108,101,121,100,101,99,111,111,107,105,101,115,16,0,14,35,108,102,95,99,111,111,107,105,101,95,109,115,103,16,0,9,35,108,103,112,100,45,98,97,114,16,0,18,35,108,103,112,100,45,99,111,110,102,105,114,109,97,116,105,111,110,16,0,20,35,108,103,112,100,45,99,111,110,115,101,110,116,45,119,105,100,103,101,116,16,0,12,35,108,103,112,100,45,99,111,111,107,105,101,16,0,26,35,108,103,112,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,106,97,110,101,108,97,16,0,20,35,108,103,112,100,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,13,35,108,103,112,100,45,109,101,115,115,97,103,101,16,0,11,35,108,103,112,100,45,112,111,112,117,112,16,0,13,35,108,103,112,100,45,119,114,97,112,112,101,114,16,0,10,35,108,103,112,100,80,111,112,117,112,16,0,12,35,108,103,112,100,95,100,105,97,108,111,103,16,0,12,35,108,103,112,100,95,111,112,116,97,108,108,16,0,18,35,108,104,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,16,0,18,35,108,105,103,104,116,95,99,111,111,107,105,101,115,95,98,97,114,16,0,14,35,108,105,103,104,116,98,111,120,45,99,110,105,108,16,0,14,35,108,105,103,104,116,98,111,120,45,103,100,112,114,16,0,13,35,108,105,110,99,111,115,99,111,111,107,105,101,16,0,15,35,108,105,110,101,67,111,111,107,105,101,73,110,102,111,16,0,23,35,108,105,115,97,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,16,0,14,35,108,105,115,116,97,45,99,111,111,107,105,101,115,16,0,24,35,108,105,116,101,115,112,111,116,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,12,35,108,108,67,111,111,107,105,101,66,97,114,16,0,21,35,108,108,97,114,45,108,111,103,105,110,45,112,97,103,101,45,103,100,112,114,16,0,13,35,108,108,100,99,111,111,107,105,101,112,111,112,16,0,17,35,108,109,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,22,35,108,109,102,95,112,114,105,118,97,99,121,95,99,111,111,107,105,101,98,97,114,16,0,12,35,108,110,67,111,111,107,105,101,66,97,114,16,0,28,35,108,110,107,67,101,114,114,97,114,73,110,102,111,114,109,97,99,105,111,110,67,111,111,107,105,101,115,16,0,18,35,108,111,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,17,35,108,111,97,100,67,111,111,107,105,101,80,111,108,105,99,121,16,0,22,35,108,111,103,111,110,45,115,110,105,112,112,101,116,45,105,99,111,111,107,105,101,16,0,12,35,108,111,105,45,99,111,111,107,105,101,115,16,0,15,35,108,111,105,95,117,101,95,99,111,111,107,105,101,101,16,0,14,35,108,111,114,101,97,108,45,99,111,111,107,105,101,16,0,16,35,108,112,95,101,117,95,99,111,110,116,97,105,110,101,114,16,0,10,35,108,112,99,111,111,107,105,101,115,16,0,9,35,108,113,100,45,103,100,112,114,16,0,13,35,108,115,99,111,111,107,105,101,115,77,97,120,16,0,15,35,108,115,112,95,99,111,111,107,105,101,95,98,97,114,16,0,18,35,108,115,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,22,35,108,115,119,45,99,111,111,107,105,101,45,98,111,116,116,111,109,45,98,111,120,16,0,19,35,108,117,105,65,99,99,101,112,116,67,111,111,107,105,101,66,97,114,16,0,18,35,108,118,112,95,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,29,35,108,119,99,110,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,16,0,25,35,108,119,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,111,117,116,101,114,16,0,10,35,109,45,99,111,110,115,101,110,116,16,0,9,35,109,45,99,111,111,107,105,101,16,0,14,35,109,45,99,111,111,107,105,101,45,105,110,102,111,16,0,17,35,109,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,15,35,109,45,99,111,111,107,105,101,110,111,116,105,99,101,16,0,20,35,109,45,103,108,111,98,97,108,45,100,105,115,99,108,97,105,109,101,114,16,0,22,35,109,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,16,0,14,35,109,51,49,67,111,111,107,105,101,73,110,102,111,16,0,8,35,109,67,67,70,111,114,109,16,0,9,35,109,67,111,111,107,105,101,115,16,0,15,35,109,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,23,35,109,95,119,99,116,114,108,70,73,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,17,35,109,97,45,99,109,112,45,99,111,110,116,97,105,110,101,114,16,0,13,35,109,97,67,111,111,107,105,101,73,110,102,111,16,0,23,35,109,97,98,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,16,0,26,35,109,97,99,99,104,105,97,116,111,95,99,111,111,107,105,101,115,95,119,114,97,112,112,101,114,16,0,25,35,109,97,99,104,101,116,101,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,9,35,109,97,99,111,111,107,105,101,16,0,31,35,109,97,100,45,99,108,105,101,110,116,45,103,100,112,114,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,25,35,109,97,103,101,99,111,109,112,45,99,111,111,107,105,101,45,116,101,109,112,108,97,116,101,16,0,27,35,109,97,103,101,115,116,97,116,45,99,111,111,107,105,101,45,108,97,119,45,98,97,110,110,101,114,16,0,19,35,109,97,105,110,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,19,35,109,97,105,110,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,30,35,109,97,105,110,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,18,35,109,97,105,110,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,13,35,109,97,105,110,45,112,114,105,118,97,99,121,16,0,21,35,109,97,105,110,67,111,110,116,97,105,110,101,114,67,111,111,107,105,101,115,16,0,17,35,109,97,105,110,67,111,111,107,105,101,66,97,110,110,101,114,16,0,14,35,109,97,105,110,67,111,111,107,105,101,66,97,114,16,0,20,35,109,97,105,110,68,105,118,76,101,103,97,99,121,67,111,111,107,105,101,16,0,15,35,109,97,105,110,80,114,105,118,97,99,121,68,105,118,16,0,21,35,109,97,105,110,84,114,97,99,107,105,110,103,79,112,116,105,110,66,111,120,16,0,24,35,109,97,107,115,105,109,101,114,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,15,35,109,97,108,105,104,117,45,99,111,111,107,105,101,115,16,0,15,35,109,97,110,103,101,114,45,99,111,111,107,105,101,115,16,0,15,35,109,97,111,102,114,101,101,95,99,111,111,107,105,101,16,0,11,35,109,97,112,112,99,111,111,107,105,101,16,0,14,35,109,97,114,97,99,111,111,107,105,101,98,111,120,16,0,11,35,109,97,114,99,111,67,105,118,105,108,16,0,13,35,109,97,115,107,95,99,111,111,107,105,101,115,16,0,27,35,109,97,115,116,101,114,112,97,103,101,95,100,105,118,67,111,111,107,105,101,66,97,110,110,101,114,16,0,13,35,109,97,116,45,101,117,99,111,111,107,105,101,16,0,15,35,109,97,116,111,109,111,45,99,111,110,115,101,110,116,16,0,17,35,109,97,116,111,109,111,105,110,102,111,45,102,108,121,105,110,16,0,18,35,109,97,116,114,105,120,45,99,111,111,107,105,101,45,98,97,114,16,0,8,35,109,98,95,103,100,112,114,16,0,16,35,109,98,95,103,100,112,114,95,119,97,114,110,105,110,103,16,0,17,35,109,98,101,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,19,35,109,98,105,101,110,116,67,111,111,107,105,101,78,111,116,105,99,101,16,0,17,35,109,98,109,45,99,111,111,107,105,101,111,107,95,98,97,114,16,0,21,35,109,98,109,45,101,117,95,99,111,111,107,105,101,95,110,111,116,105,102,121,16,0,10,35,109,98,109,99,111,111,107,105,101,16,0,9,35,109,99,67,111,111,107,105,101,16,0,20,35,109,99,67,111,111,107,105,101,115,76,97,119,77,101,115,115,97,103,101,16,0,19,35,109,99,99,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,17,35,109,99,100,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,19,35,109,99,104,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,18,35,109,99,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,12,35,109,99,111,45,99,111,110,115,101,110,116,16,0,8,35,109,99,111,111,107,105,101,16,0,20,35,109,100,45,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,16,0,8,35,109,100,45,108,103,112,100,16,0,28,35,109,100,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,16,0,10,35,109,100,118,67,111,111,107,105,101,16,0,15,35,109,101,95,99,111,111,107,105,101,95,122,111,110,101,16,0,15,35,109,101,107,111,114,109,97,67,111,110,115,101,110,116,16,0,16,35,109,101,110,115,97,106,101,45,99,111,111,107,105,101,115,16,0,14,35,109,101,110,115,97,106,101,67,111,111,107,105,101,16,0,15,35,109,101,110,115,97,106,101,67,111,111,107,105,101,115,16,0,23,35,109,101,110,115,97,106,101,95,97,99,101,112,116,97,95,99,111,111,107,105,101,115,16,0,24,35,109,101,110,115,97,106,101,95,97,99,101,112,116,97,114,95,99,111,111,107,105,101,115,16,0,16,35,109,101,110,115,97,106,101,95,99,111,111,107,105,101,115,16,0,11,35,109,101,110,115,99,111,111,107,105,101,16,0,16,35,109,101,110,116,105,111,110,45,99,111,111,107,105,101,115,16,0,15,35,109,101,110,116,105,111,110,95,99,111,111,107,105,101,16,0,16,35,109,101,110,116,105,111,110,95,99,111,111,107,105,101,115,16,0,17,35,109,101,110,116,105,111,110,115,45,99,111,111,107,105,101,115,16,0,14,35,109,101,115,115,97,103,101,45,45,99,110,105,108,16,0,15,35,109,101,115,115,97,103,101,45,99,111,111,107,105,101,16,0,23,35,109,101,115,115,97,103,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,16,35,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,16,0,20,35,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,45,98,97,114,16,0,12,35,109,101,115,115,97,103,101,67,110,105,108,16,0,14,35,109,101,115,115,97,103,101,67,111,111,107,105,101,16,0,20,35,109,101,115,115,97,103,101,67,111,111,107,105,101,80,111,108,105,99,121,16,0,33,35,109,101,115,115,97,103,101,73,68,95,117,115,101,114,95,105,110,102,111,95,99,111,111,107,105,101,80,111,108,105,99,121,16,0,15,35,109,101,115,115,97,103,101,95,99,111,111,107,105,101,16,0,27,35,109,101,115,115,97,103,101,95,99,111,111,107,105,101,95,105,110,102,111,95,97,99,99,101,112,116,16,0,16,35,109,101,115,115,97,103,101,95,99,111,111,107,105,101,115,16,0,13,35,109,101,115,115,97,103,101,95,114,103,112,100,16,0,15,35,109,101,115,115,97,103,101,99,111,111,107,105,101,115,16,0,17,35,109,101,115,115,97,103,103,105,111,95,99,111,111,107,105,101,16,0,18,35,109,101,115,115,97,103,103,105,111,95,99,111,111,107,105,101,115,16,0,11,35,109,101,115,115,99,111,111,107,105,101,16,0,23,35,109,101,115,115,101,110,103,101,114,83,112,101,99,105,97,108,67,111,111,107,105,101,16,0,15,35,109,101,116,97,67,105,97,115,116,101,99,122,107,111,16,0,22,35,109,101,116,101,111,114,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,18,35,109,101,116,105,115,67,111,111,107,105,101,84,111,112,66,97,114,16,0,25,35,109,101,116,114,111,95,99,111,111,107,105,101,95,99,104,111,105,99,101,95,105,110,102,111,16,0,19,35,109,101,118,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,14,35,109,102,95,99,111,111,107,105,101,95,98,111,120,16,0,9,35,109,102,110,45,103,100,112,114,16,0,10,35,109,103,45,99,111,111,107,105,101,16,0,14,35,109,103,45,117,115,101,114,99,111,111,107,105,101,16,0,10,35,109,103,99,111,111,107,105,101,115,16,0,14,35,109,104,112,45,99,108,46,109,104,112,45,99,108,16,0,29,35,109,105,99,114,111,100,105,103,105,116,97,108,45,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,16,0,28,35,109,105,99,114,111,100,105,103,105,116,97,108,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,26,35,109,105,110,100,109,101,100,105,97,95,99,111,111,107,105,101,95,97,99,99,101,112,116,101,100,16,0,12,35,109,105,110,105,99,99,111,111,107,105,101,16,0,17,35,109,105,110,111,99,45,99,111,111,107,105,101,45,98,97,114,16,0,17,35,109,105,111,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,15,35,109,105,114,118,97,110,111,115,99,111,111,107,105,101,16,0,11,35,109,105,115,99,111,111,107,105,101,115,16,0,15,35,109,105,115,101,117,99,111,111,107,105,101,108,97,119,16,0,16,35,109,105,115,115,97,116,103,101,95,99,111,111,107,105,101,16,0,11,35,109,105,120,99,111,111,107,105,101,115,16,0,18,35,109,106,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,10,35,109,107,45,99,111,111,107,105,101,16,0,16,35,109,107,67,111,111,107,105,101,66,97,114,45,98,97,114,16,0,12,35,109,107,116,103,95,67,111,111,107,105,101,16,0,17,35,109,107,116,103,95,67,111,111,107,105,101,95,87,114,97,112,16,0,20,35,109,107,116,122,114,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,15,35,109,108,85,115,105,110,103,67,111,111,107,105,101,115,16,0,15,35,109,108,97,45,103,100,112,114,45,108,105,103,104,116,16,0,15,35,109,109,45,99,99,112,97,45,110,111,116,105,99,101,16,0,19,35,109,109,45,99,111,110,116,101,110,116,45,99,111,111,107,105,101,115,16,0,26,35,109,109,77,83,45,45,98,111,116,116,111,109,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,19,35,109,109,77,83,45,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,20,35,109,109,95,99,99,95,109,111,100,97,108,95,111,118,101,114,108,97,121,16,0,18,35,109,109,95,116,48,55,95,99,111,111,107,105,101,95,98,111,120,16,0,14,35,109,109,109,109,109,45,99,111,111,107,105,101,115,16,0,22,35,109,109,115,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,15,35,109,109,115,67,111,111,107,105,101,76,97,121,101,114,16,0,21,35,109,110,95,99,111,111,107,105,101,105,110,102,111,95,104,111,108,100,101,114,16,0,15,35,109,110,100,45,99,111,111,107,105,101,45,98,97,114,16,0,24,35,109,110,112,95,99,111,111,107,105,101,95,99,111,110,102,105,114,109,97,116,105,111,110,16,0,24,35,109,110,116,115,105,110,102,111,116,101,99,104,45,99,111,111,107,105,101,45,98,97,114,16,0,17,35,109,111,98,105,85,115,105,110,103,67,111,111,107,105,101,115,16,0,25,35,109,111,98,105,108,101,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,19,35,109,111,98,105,108,101,45,112,114,105,118,97,99,121,45,108,97,119,16,0,21,35,109,111,98,105,108,101,45,115,116,105,99,107,121,45,98,111,116,116,111,109,16,0,14,35,109,111,100,45,99,111,111,107,105,101,66,97,114,16,0,21,35,109,111,100,45,99,111,111,107,105,101,115,45,119,97,114,114,110,105,110,103,16,0,19,35,109,111,100,45,100,97,114,109,97,115,45,99,111,111,107,105,101,115,16,0,18,35,109,111,100,45,101,112,114,105,118,97,99,121,111,112,116,105,110,16,0,23,35,109,111,100,45,101,117,45,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,16,0,19,35,109,111,100,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,16,0,28,35,109,111,100,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,110,110,101,114,45,49,16,0,24,35,109,111,100,45,115,118,109,98,45,99,111,111,107,105,101,45,108,97,121,101,114,45,49,16,0,19,35,109,111,100,80,114,105,118,97,99,121,83,101,116,116,105,110,103,115,16,0,11,35,109,111,100,95,99,111,111,107,105,101,16,0,13,35,109,111,100,95,99,111,111,107,105,101,95,99,16,0,19,35,109,111,100,95,103,100,112,114,95,99,111,110,116,97,105,110,101,114,16,0,19,35,109,111,100,97,108,45,97,118,105,115,111,45,99,111,111,107,105,101,16,0,20,35,109,111,100,97,108,45,97,118,105,115,111,45,99,111,111,107,105,101,115,16,0,20,35,109,111,100,97,108,45,98,97,110,110,101,114,99,111,111,107,105,101,115,16,0,24,35,109,111,100,97,108,45,99,97,114,100,45,101,109,97,105,108,45,110,111,116,105,99,101,16,0,13,35,109,111,100,97,108,45,99,111,107,105,101,115,16,0,24,35,109,111,100,97,108,45,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,16,0,21,35,109,111,100,97,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,18,35,109,111,100,97,108,45,99,111,111,107,105,101,45,105,110,102,111,16,0,17,35,109,111,100,97,108,45,99,111,111,107,105,101,45,108,97,119,16,0,17,35,109,111,100,97,108,45,99,111,111,107,105,101,45,109,97,110,16,0,21,35,109,111,100,97,108,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,16,0,23,35,109,111,100,97,108,45,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,16,0,23,35,109,111,100,97,108,45,99,111,111,107,105,101,115,45,98,97,99,107,100,114,111,112,16,0,22,35,109,111,100,97,108,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,16,0,22,35,109,111,100,97,108,45,99,111,111,107,105,101,115,45,103,101,110,101,114,97,108,16,0,21,35,109,111,100,97,108,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,16,0,20,35,109,111,100,97,108,45,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,11,35,109,111,100,97,108,45,103,100,112,114,16,0,18,35,109,111,100,97,108,45,108,101,121,45,99,111,111,107,105,101,115,16,0,16,35,109,111,100,97,108,45,114,111,100,111,45,105,110,102,111,16,0,22,35,109,111,100,97,108,45,114,111,111,116,32,46,82,103,112,100,80,111,112,117,112,16,0,18,35,109,111,100,97,108,65,99,101,112,116,67,111,111,107,105,101,115,16,0,24,35,109,111,100,97,108,67,111,111,107,46,109,111,115,116,114,97,114,45,109,111,100,97,108,16,0,18,35,109,111,100,97,108,67,111,111,107,105,101,66,97,110,110,101,114,16,0,16,35,109,111,100,97,108,67,111,111,107,105,101,67,111,109,112,16,0,19,35,109,111,100,97,108,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,21,35,109,111,100,97,108,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,10,35,109,111,100,97,108,71,68,80,82,16,0,10,35,109,111,100,97,108,76,71,80,68,16,0,24,35,109,111,100,97,108,83,116,97,116,105,99,65,118,105,115,111,67,111,111,107,105,101,115,16,0,13,35,109,111,100,97,108,95,99,111,111,107,105,101,16,0,18,35,109,111,100,97,108,95,99,111,111,107,105,101,45,109,97,115,107,16,0,34,35,109,111,100,97,108,95,99,111,111,107,105,101,115,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,16,0,11,35,109,111,100,97,108,95,108,103,112,100,16,0,13,35,109,111,100,97,108,98,97,107,103,100,112,114,16,0,13,35,109,111,100,97,108,99,111,111,107,105,101,115,16,0,10,35,109,111,100,97,108,114,103,112,100,16,0,27,35,109,111,100,97,108,115,111,117,114,99,101,95,112,114,105,118,97,99,121,95,119,105,100,103,101,116,16,0,21,35,109,111,100,115,115,103,100,112,114,95,99,111,111,107,105,101,95,98,97,114,16,0,21,35,109,111,100,117,108,101,45,97,98,111,117,116,45,99,111,111,107,105,101,115,16,0,15,35,109,111,100,117,108,101,45,99,111,111,107,105,101,115,16,0,15,35,109,111,100,117,108,101,95,99,111,111,107,105,101,115,16,0,12,35,109,111,110,105,116,99,111,111,107,105,101,16,0,18,35,109,111,111,109,111,111,99,111,111,107,105,101,97,108,101,114,116,16,0,13,35,109,111,111,110,45,99,111,111,107,105,101,115,16,0,27,35,109,111,111,118,101,95,103,100,112,114,95,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,16,0,24,35,109,111,111,118,101,95,103,100,112,114,95,99,111,111,107,105,101,95,109,111,100,97,108,16,0,38,35,109,111,111,118,101,95,103,100,112,114,95,115,97,118,101,95,112,111,112,117,112,95,115,101,116,116,105,110,103,115,95,98,117,116,116,111,110,16,0,17,35,109,111,114,112,104,45,99,111,111,107,105,101,45,98,97,114,16,0,12,35,109,111,115,99,97,99,111,111,107,105,101,16,0,20,35,109,111,115,116,114,97,114,95,97,99,101,112,116,99,111,111,107,105,101,16,0,23,35,109,111,116,111,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,16,0,16,35,109,111,116,111,114,115,67,111,111,107,105,101,77,115,103,16,0,23,35,109,111,119,95,99,111,111,107,105,101,95,105,110,102,111,95,100,105,97,108,111,103,16,0,19,35,109,112,45,109,105,115,99,45,99,111,111,107,105,101,45,98,97,114,16,0,10,35,109,112,95,99,111,111,107,105,101,16,0,17,35,109,112,99,95,99,111,111,107,105,101,95,105,110,116,114,111,16,0,16,35,109,112,115,45,99,111,111,107,105,101,45,104,105,110,116,16,0,10,35,109,114,99,111,111,99,107,105,101,16,0,18,35,109,114,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,16,35,109,114,118,67,111,111,107,105,101,66,97,110,110,101,114,16,0,21,35,109,114,119,95,99,111,111,107,105,101,108,97,119,95,98,97,110,110,101,114,16,0,17,35,109,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,25,35,109,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,17,35,109,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,16,35,109,115,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,9,35,109,115,67,111,111,107,105,101,16,0,13,35,109,115,95,99,111,111,107,105,101,95,111,107,16,0,22,35,109,115,99,99,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,11,35,109,115,99,99,66,97,110,110,101,114,16,0,11,35,109,115,103,45,99,111,111,107,105,101,16,0,21,35,109,115,103,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,109,115,103,45,99,111,111,107,105,101,45,108,101,118,101,108,48,16,0,19,35,109,115,103,45,99,111,111,107,105,101,45,116,97,103,103,97,114,101,16,0,12,35,109,115,103,45,99,111,111,107,105,101,115,16,0,15,35,109,115,103,45,108,118,45,99,111,111,107,105,101,115,16,0,10,35,109,115,103,67,111,111,107,105,101,16,0,11,35,109,115,103,67,111,111,107,105,101,115,16,0,19,35,109,115,103,67,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,9,35,109,115,103,95,76,71,80,68,16,0,11,35,109,115,103,95,99,111,111,107,105,101,16,0,12,35,109,115,103,95,99,111,111,107,105,101,115,16,0,17,35,109,115,103,95,99,111,111,107,105,101,115,95,102,98,111,120,16,0,15,35,109,115,103,98,111,120,95,99,111,111,107,105,101,115,16,0,10,35,109,115,103,99,111,111,107,105,101,16,0,11,35,109,115,103,99,111,111,107,105,101,115,16,0,17,35,109,115,103,101,120,112,97,110,100,99,111,111,107,105,101,115,16,0,10,35,109,115,105,99,111,111,107,105,101,16,0,18,35,109,115,112,98,95,97,108,101,114,116,95,99,111,111,107,105,101,16,0,12,35,109,115,114,95,99,111,111,107,105,101,115,16,0,17,35,109,115,115,45,108,101,103,97,108,45,98,97,110,110,101,114,16,0,21,35,109,115,115,103,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,16,0,12,35,109,115,116,109,45,99,111,111,107,105,101,16,0,25,35,109,116,45,99,111,111,107,105,101,45,109,97,105,110,45,99,111,110,116,97,105,110,101,114,16,0,17,35,109,116,50,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,20,35,109,116,98,110,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,16,35,109,116,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,24,35,109,116,118,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,12,35,109,116,118,45,99,111,111,107,105,101,115,16,0,13,35,109,117,109,97,45,99,111,111,107,105,101,115,16,0,19,35,109,118,111,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,17,35,109,119,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,16,35,109,120,119,95,114,103,112,100,95,99,111,111,107,105,101,16,0,35,35,109,121,45,97,103,105,108,101,45,112,114,105,118,97,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,45,97,114,101,97,16,0,16,35,109,121,45,98,97,114,114,97,99,111,111,107,105,101,115,16,0,19,35,109,121,45,99,111,111,107,105,101,95,95,99,111,110,115,101,110,116,16,0,17,35,109,121,45,99,111,111,107,105,101,95,95,112,111,112,117,112,16,0,17,35,109,121,45,99,111,111,107,105,101,115,45,97,108,101,114,116,16,0,16,35,109,121,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,14,35,109,121,67,111,111,107,105,101,77,111,100,97,108,16,0,20,35,109,121,67,117,115,116,111,109,67,111,111,107,105,101,76,97,121,101,114,16,0,16,35,109,121,76,111,97,100,101,114,67,111,111,107,105,101,115,16,0,16,35,109,121,77,111,100,97,108,46,99,99,77,111,100,97,108,16,0,14,35,109,121,77,111,100,97,108,67,111,111,107,105,101,16,0,15,35,109,121,77,111,100,97,108,67,111,111,107,105,101,115,16,0,12,35,109,121,77,111,100,97,108,114,103,112,100,16,0,14,35,109,121,85,115,101,114,67,111,110,115,101,110,116,16,0,27,35,109,121,98,121,116,101,95,109,101,100,105,97,95,99,111,111,107,105,101,104,105,110,119,101,105,115,16,0,14,35,109,121,99,109,112,65,108,101,114,116,66,105,103,16,0,10,35,109,121,99,109,112,82,111,111,116,16,0,9,35,109,121,99,111,111,107,105,101,16,0,23,35,109,121,99,111,111,107,105,101,95,108,111,97,100,101,114,95,119,105,110,100,111,119,16,0,12,35,109,121,99,111,111,107,105,101,98,97,114,16,0,12,35,109,121,99,111,111,107,105,101,116,105,112,16,0,22,35,109,121,104,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,98,111,120,16,0,15,35,109,121,109,111,100,97,108,95,99,111,111,107,105,101,16,0,18,35,109,122,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,16,0,18,35,109,122,95,103,101,110,101,114,105,99,79,118,101,114,108,97,121,16,0,16,35,110,45,112,111,112,117,112,45,99,111,111,107,105,101,115,16,0,16,35,110,45,112,111,112,117,112,45,112,114,105,118,97,99,121,16,0,30,35,110,50,103,95,98,111,120,95,99,111,111,107,105,101,95,97,108,101,114,116,101,95,109,101,115,115,97,103,101,16,0,8,35,110,67,111,111,107,105,101,16,0,14,35,110,95,99,111,111,107,105,101,95,105,110,102,111,16,0,13,35,110,97,99,99,45,111,118,101,114,108,97,121,16,0,22,35,110,97,102,101,116,115,95,105,109,112,114,105,110,116,45,99,111,111,107,105,101,16,0,26,35,110,97,109,101,45,103,97,45,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,97,114,16,0,11,35,110,97,118,45,99,111,111,107,105,101,16,0,10,35,110,97,118,67,111,111,107,105,101,16,0,11,35,110,97,118,67,111,111,107,105,101,115,16,0,11,35,110,97,118,95,99,111,111,107,105,101,16,0,14,35,110,97,118,98,97,114,45,99,111,111,107,105,101,16,0,15,35,110,97,118,98,97,114,45,99,111,111,107,105,101,115,16,0,15,35,110,97,118,98,97,114,45,112,114,105,118,97,99,121,16,0,13,35,110,97,118,98,97,114,67,111,111,107,105,101,16,0,19,35,110,97,118,118,101,45,99,111,111,107,105,101,45,98,108,111,99,107,16,0,16,35,110,98,99,67,111,111,107,105,101,67,104,111,105,99,101,16,0,14,35,110,99,67,111,111,107,105,101,65,108,101,114,116,16,0,11,35,110,99,82,103,112,100,82,111,111,116,16,0,22,35,110,99,97,45,99,111,111,107,105,101,97,99,99,101,112,116,45,108,105,110,101,16,0,19,35,110,99,108,45,99,111,111,107,105,101,45,111,112,116,45,111,117,116,16,0,16,35,110,100,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,27,35,110,101,98,117,108,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,110,101,102,111,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,110,101,111,95,99,111,111,107,105,101,95,97,100,118,105,99,101,16,0,15,35,110,101,114,111,108,105,115,67,111,111,107,105,101,115,16,0,22,35,110,101,115,116,105,103,111,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,21,35,110,101,116,103,114,97,102,95,99,111,111,107,105,101,95,97,108,101,114,116,16,0,24,35,110,101,116,105,114,115,95,116,111,112,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,12,35,110,101,116,121,95,99,111,111,107,105,101,16,0,11,35,110,101,119,45,99,111,111,107,105,101,16,0,12,35,110,101,119,45,99,111,111,107,105,101,115,16,0,26,35,110,101,119,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,66,97,110,110,101,114,16,0,14,35,110,101,119,67,111,111,107,105,101,72,101,97,100,16,0,27,35,110,101,119,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,76,97,121,101,114,16,0,16,35,110,101,119,67,111,111,107,105,101,115,65,108,101,114,116,16,0,17,35,110,101,119,67,111,111,107,105,101,115,66,97,110,110,101,114,16,0,17,35,110,101,119,80,111,108,105,99,121,87,114,97,112,112,101,114,16,0,12,35,110,101,119,95,99,111,111,107,105,101,115,16,0,12,35,110,101,119,99,111,111,107,105,101,95,120,16,0,16,35,110,101,119,99,111,111,107,105,101,98,97,110,110,101,114,16,0,19,35,110,101,120,116,95,97,99,99,101,112,116,95,99,111,111,107,105,101,16,0,11,35,110,101,120,116,99,111,111,107,105,101,16,0,20,35,110,101,120,116,108,101,118,101,108,115,67,111,111,107,105,101,66,111,120,16,0,8,35,110,102,80,80,66,97,114,16,0,16,35,110,102,95,99,111,111,107,105,101,98,97,110,110,101,114,16,0,25,35,110,102,97,45,99,111,111,107,105,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,19,35,110,102,98,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,14,35,110,102,99,67,111,111,107,105,101,78,111,116,101,16,0,20,35,110,102,99,111,111,107,105,101,65,99,99,101,112,116,77,111,100,97,108,16,0,30,35,110,103,101,95,98,111,120,95,99,111,111,107,105,101,95,97,108,101,114,116,101,95,109,101,115,115,97,103,101,16,0,25,35,110,103,111,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,30,35,110,103,111,95,98,111,120,95,99,111,111,107,105,101,95,97,108,101,114,116,101,95,109,101,115,115,97,103,101,16,0,26,35,110,104,45,110,101,116,104,45,103,100,112,114,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,18,35,110,104,109,45,99,111,111,107,105,101,45,110,111,116,105,102,121,16,0,25,35,110,105,98,105,114,117,109,97,105,108,95,99,111,111,107,105,101,95,97,100,118,105,99,101,16,0,11,35,110,105,109,103,114,111,119,108,101,114,16,0,18,35,110,107,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,26,35,110,107,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,109,101,115,115,97,103,101,16,0,24,35,110,108,95,105,100,95,99,111,111,107,105,101,45,45,99,111,110,116,97,105,110,101,114,16,0,12,35,110,108,100,95,99,111,111,107,105,101,115,16,0,17,35,110,109,45,99,111,111,107,105,101,87,114,97,112,112,101,114,16,0,10,35,110,111,45,99,111,111,107,105,101,16,0,21,35,110,111,45,99,111,111,107,105,101,45,100,111,111,114,107,101,101,112,101,114,16,0,20,35,110,111,67,111,110,115,101,110,116,65,108,101,114,116,77,111,100,97,108,16,0,9,35,110,111,99,111,111,107,105,101,16,0,14,35,110,111,99,111,111,107,105,101,97,107,116,105,118,16,0,21,35,110,111,108,105,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,34,35,110,111,110,45,98,108,111,99,107,105,110,103,45,99,111,110,115,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,110,111,114,100,105,99,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,115,16,0,18,35,110,111,114,105,102,105,99,97,114,101,95,99,111,111,107,105,101,16,0,17,35,110,111,114,109,95,99,111,111,107,105,101,95,110,111,116,101,16,0,13,35,110,111,114,109,95,99,111,111,107,105,101,115,16,0,12,35,110,111,114,109,97,116,105,118,97,69,85,16,0,20,35,110,111,116,65,103,114,101,101,100,70,111,114,67,111,111,107,105,101,115,16,0,11,35,110,111,116,97,67,111,111,107,105,101,16,0,13,35,110,111,116,97,95,99,111,111,107,105,101,115,16,0,20,35,110,111,116,97,116,101,107,112,108,95,99,111,111,107,105,101,108,97,119,16,0,14,35,110,111,116,101,79,110,67,111,111,107,105,101,115,16,0,12,35,110,111,116,101,95,99,111,111,107,105,101,16,0,13,35,110,111,116,101,115,99,111,111,107,105,101,115,16,0,15,35,110,111,116,105,99,101,45,45,99,111,111,107,105,101,16,0,12,35,110,111,116,105,99,101,45,99,111,111,107,16,0,14,35,110,111,116,105,99,101,45,99,111,111,107,105,101,16,0,20,35,110,111,116,105,99,101,45,99,111,111,107,105,101,45,98,108,111,99,107,16,0,25,35,110,111,116,105,99,101,45,99,111,111,107,105,101,45,98,108,111,99,107,45,105,110,102,111,16,0,22,35,110,111,116,105,99,101,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,16,0,21,35,110,111,116,105,99,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,26,35,110,111,116,105,99,101,45,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,16,0,15,35,110,111,116,105,99,101,45,99,111,111,107,105,101,115,16,0,15,35,110,111,116,105,99,101,46,99,111,111,107,105,101,115,16,0,19,35,110,111,116,105,99,101,65,98,111,117,116,67,111,111,107,105,101,115,16,0,14,35,110,111,116,105,99,101,67,111,111,107,105,101,115,16,0,12,35,110,111,116,105,99,101,80,111,112,117,112,16,0,14,35,110,111,116,105,99,101,80,114,105,118,97,99,121,16,0,12,35,110,111,116,105,99,101,95,99,110,105,108,16,0,15,35,110,111,116,105,99,101,95,112,114,105,118,97,99,121,16,0,15,35,110,111,116,105,99,101,95,118,105,115,105,116,111,114,16,0,30,35,110,111,116,105,99,101,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,97,114,110,105,110,103,16,0,15,35,110,111,116,105,102,45,45,112,114,105,118,97,99,121,16,0,21,35,110,111,116,105,102,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,12,35,110,111,116,105,102,67,111,111,107,105,101,16,0,17,35,110,111,116,105,102,105,99,97,95,99,111,111,107,105,101,115,16,0,20,35,110,111,116,105,102,105,99,97,99,105,111,45,99,111,111,107,105,101,115,16,0,29,35,110,111,116,105,102,105,99,97,99,105,111,110,95,109,101,110,115,97,106,101,95,99,111,111,107,105,101,115,16,0,19,35,110,111,116,105,102,105,99,97,114,101,45,99,111,111,107,105,101,115,16,0,26,35,110,111,116,105,102,105,99,97,116,105,111,110,45,97,108,108,111,119,67,111,111,107,105,101,115,16,0,20,35,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,16,0,21,35,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,115,16,0,28,35,110,111,116,105,102,105,99,97,116,105,111,110,66,111,120,67,111,111,107,105,101,115,85,115,97,103,101,16,0,20,35,110,111,116,105,102,105,99,97,116,105,111,110,67,111,111,107,105,101,115,16,0,22,35,110,111,116,105,102,105,99,97,116,105,111,110,95,52,99,111,111,107,105,101,115,16,0,21,35,110,111,116,105,102,105,99,97,116,105,111,110,95,95,99,111,111,107,105,101,16,0,20,35,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,111,107,105,101,16,0,21,35,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,111,107,105,101,115,16,0,27,35,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,23,35,110,111,116,105,102,105,99,97,116,105,111,110,95,111,102,95,99,111,111,107,105,101,16,0,19,35,110,111,116,105,102,105,99,97,116,105,111,110,99,111,111,107,105,101,16,0,46,35,110,111,116,105,102,121,45,98,97,114,91,100,97,116,97,45,99,111,111,107,105,101,45,110,97,109,101,61,34,110,111,116,105,102,121,45,99,111,111,107,105,101,115,34,93,16,0,21,35,110,111,116,105,102,121,45,112,111,108,105,99,121,45,99,111,111,107,105,101,16,0,14,35,110,111,116,105,102,121,46,99,111,111,107,105,101,16,0,13,35,110,111,116,105,102,121,67,111,111,107,105,101,16,0,16,35,110,111,116,105,102,121,67,111,111,107,105,101,66,111,116,16,0,14,35,110,111,116,105,102,121,67,111,111,107,105,101,115,16,0,14,35,110,111,116,105,102,121,95,99,111,111,107,105,101,16,0,14,35,110,111,116,105,102,121,99,111,111,107,105,101,115,16,0,10,35,110,111,116,121,45,99,110,105,108,16,0,11,35,110,111,116,121,67,111,111,107,105,101,16,0,25,35,110,111,118,95,112,111,112,117,112,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,16,0,23,35,110,111,118,97,95,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,16,0,23,35,110,111,118,97,98,108,111,103,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,110,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,14,35,110,112,45,103,100,112,114,45,109,111,100,97,108,16,0,14,35,110,112,95,99,111,111,107,105,101,95,108,97,119,16,0,16,35,110,112,109,67,111,111,107,105,101,66,97,110,110,101,114,16,0,20,35,110,112,111,95,99,99,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,28,35,110,112,111,95,99,99,95,110,111,116,105,102,105,99,97,116,105,111,110,95,119,114,97,112,112,101,114,16,0,14,35,110,113,95,99,110,105,108,98,97,110,110,101,114,16,0,17,35,110,113,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,19,35,110,114,100,113,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,17,35,110,115,45,99,111,111,107,105,101,45,98,117,116,116,111,110,16,0,18,35,110,115,111,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,22,35,110,116,99,99,91,100,97,116,97,45,99,111,111,107,105,101,45,98,97,114,93,16,0,38,35,110,117,95,98,111,116,116,111,109,95,97,108,101,114,116,95,100,105,97,108,111,103,95,97,99,99,101,112,116,95,99,111,111,107,105,101,115,16,0,18,35,110,117,107,45,99,111,111,107,105,101,77,101,115,115,97,103,101,16,0,23,35,110,117,114,95,99,119,95,99,111,111,107,105,101,115,95,111,118,101,114,108,97,121,16,0,21,35,110,117,114,95,99,119,95,99,111,111,107,105,101,115,95,112,111,112,117,112,16,0,11,35,110,118,101,95,99,111,111,107,105,101,16,0,12,35,110,118,120,45,99,111,111,107,105,101,115,16,0,20,35,110,119,95,99,111,111,107,105,101,95,97,108,101,114,116,95,98,111,120,16,0,16,35,110,119,95,103,100,112,114,95,118,105,101,119,95,105,100,16,0,15,35,110,119,99,111,111,107,45,109,101,115,115,97,103,101,16,0,15,35,110,119,101,45,99,111,111,107,105,101,45,98,97,114,16,0,14,35,110,120,95,103,100,112,114,95,109,111,100,97,108,16,0,15,35,110,120,95,103,100,112,114,95,109,111,100,97,108,50,16,0,19,35,110,120,95,103,100,112,114,95,109,111,100,97,108,95,109,97,105,110,16,0,20,35,110,120,95,103,100,112,114,95,109,111,100,97,108,95,109,97,105,110,49,16,0,20,35,110,120,95,103,100,112,114,95,109,111,100,97,108,95,109,97,105,110,50,16,0,16,35,110,120,115,45,99,99,112,97,45,98,97,110,110,101,114,16,0,19,35,110,121,104,95,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,18,35,110,122,109,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,9,35,111,45,99,111,111,107,105,101,16,0,13,35,111,45,99,111,111,107,105,101,45,108,97,119,16,0,22,35,111,45,99,111,111,107,105,101,80,111,108,105,99,121,79,118,101,114,108,97,121,16,0,23,35,111,50,102,67,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,16,0,23,35,111,57,57,95,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,16,0,10,35,111,72,95,99,111,111,107,105,101,16,0,13,35,111,80,114,105,118,97,108,108,121,65,112,112,16,0,11,35,111,98,45,99,111,111,107,105,101,115,16,0,17,35,111,98,106,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,14,35,111,98,116,95,103,97,95,98,97,110,110,101,114,16,0,14,35,111,99,95,99,98,95,119,114,97,112,112,101,114,16,0,17,35,111,99,110,45,99,111,111,107,105,101,45,105,110,110,101,114,16,0,16,35,111,99,110,45,99,111,111,107,105,101,45,119,114,97,112,16,0,24,35,111,99,116,45,112,111,108,105,99,121,46,102,105,120,101,100,45,98,111,116,116,111,109,16,0,14,35,111,99,119,95,99,111,110,116,101,110,101,117,114,16,0,20,35,111,100,97,118,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,10,35,111,100,100,99,111,111,107,105,101,16,0,17,35,111,100,101,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,27,35,111,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,117,101,16,0,14,35,111,101,109,97,99,101,112,116,97,99,105,111,110,16,0,18,35,111,102,116,95,99,111,111,107,105,101,67,111,110,115,101,110,116,16,0,18,35,111,103,99,99,95,98,97,114,67,111,110,116,97,105,110,101,114,16,0,19,35,111,105,108,45,112,114,105,118,97,99,121,45,98,117,116,116,111,110,16,0,17,35,111,105,108,45,112,114,105,118,97,99,121,45,102,111,114,109,16,0,9,35,111,107,67,111,111,107,105,101,16,0,10,35,111,107,95,99,111,111,107,105,101,16,0,9,35,111,107,99,111,111,107,105,101,16,0,10,35,111,107,99,111,111,107,105,101,115,16,0,11,35,111,107,110,111,67,111,111,107,105,101,16,0,12,35,111,107,110,111,95,99,111,111,107,105,101,16,0,13,35,111,107,110,111,95,114,99,111,111,107,105,101,16,0,12,35,111,107,111,111,107,105,101,45,98,111,120,16,0,21,35,111,109,110,105,108,101,103,97,108,45,99,111,111,107,105,101,45,98,97,114,16,0,26,35,111,109,116,111,109,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,18,35,111,110,101,116,97,103,95,99,111,111,107,105,101,95,108,97,119,16,0,20,35,111,110,101,116,114,117,115,116,45,98,97,110,110,101,114,45,115,100,107,16,0,21,35,111,110,101,116,114,117,115,116,45,99,111,110,115,101,110,116,45,115,100,107,16,0,11,35,111,110,108,121,67,111,111,107,105,101,16,0,21,35,111,110,121,120,95,99,111,111,107,105,101,115,105,110,102,111,95,98,97,114,16,0,24,35,111,110,121,120,95,99,111,111,107,105,101,115,105,110,102,111,95,115,112,97,99,101,114,16,0,11,35,111,112,101,110,67,111,111,107,105,101,16,0,17,35,111,112,101,110,77,111,100,97,108,67,111,111,107,105,101,115,16,0,26,35,111,112,101,110,103,108,111,98,97,108,95,112,114,105,118,97,99,121,95,119,105,100,103,101,116,16,0,8,35,111,112,116,97,110,111,110,16,0,16,35,111,112,116,97,110,111,110,45,111,118,101,114,108,97,121,16,0,16,35,111,112,116,105,110,45,98,97,110,110,101,114,68,105,118,16,0,10,35,111,112,116,105,110,45,98,97,114,16,0,19,35,111,112,116,105,110,45,111,112,116,105,110,45,104,101,97,100,101,114,16,0,13,35,111,112,116,105,110,45,111,112,116,111,117,116,16,0,12,35,111,112,116,105,110,67,111,111,107,105,101,16,0,18,35,111,112,116,105,110,99,107,121,99,111,110,116,97,105,110,101,114,16,0,10,35,111,114,95,99,111,111,107,105,101,16,0,18,35,111,115,95,97,112,112,95,99,111,111,107,105,101,119,97,114,110,16,0,11,35,111,115,111,109,99,111,111,107,105,101,16,0,25,35,111,115,116,45,99,111,111,107,105,101,119,97,108,108,45,99,111,110,116,97,105,110,101,114,16,0,15,35,111,116,45,99,99,112,97,45,98,97,110,110,101,114,16,0,23,35,111,116,45,115,100,107,45,98,116,110,58,110,111,116,40,98,117,116,116,111,110,41,16,0,12,35,111,116,112,45,112,114,105,118,97,99,121,16,0,23,35,111,116,114,99,111,111,107,105,101,99,111,109,112,108,105,97,110,99,101,100,105,118,16,0,24,35,111,117,112,99,111,111,107,105,101,112,111,108,105,99,121,95,109,101,115,115,97,103,101,16,0,17,35,111,118,101,114,45,99,111,111,107,105,101,115,45,109,115,103,16,0,23,35,111,118,101,114,108,97,121,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,16,35,111,118,101,114,108,97,121,45,99,111,111,99,107,105,101,16,0,15,35,111,118,101,114,108,97,121,45,99,111,111,107,105,101,16,0,21,35,111,118,101,114,108,97,121,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,23,35,111,118,101,114,108,97,121,45,99,111,111,107,105,101,108,97,119,45,102,111,114,109,16,0,16,35,111,118,101,114,108,97,121,45,99,111,111,107,105,101,115,16,0,21,35,111,118,101,114,108,97,121,67,111,110,116,101,110,116,67,111,111,107,105,101,16,0,14,35,111,118,101,114,108,97,121,67,111,111,107,105,101,16,0,18,35,111,118,101,114,108,97,121,67,111,111,107,105,101,50,48,49,53,16,0,26,35,111,118,101,114,108,97,121,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,15,35,111,118,101,114,108,97,121,67,111,111,107,105,101,115,16,0,17,35,111,118,101,114,108,97,121,84,114,97,100,101,67,67,84,50,16,0,16,35,111,118,101,114,108,97,121,95,99,111,110,115,101,110,116,16,0,15,35,111,118,101,114,108,97,121,95,99,111,111,107,105,101,16,0,16,35,111,118,101,114,108,97,121,95,99,111,111,107,105,101,115,16,0,12,35,111,118,101,114,108,97,121,95,112,114,105,16,0,22,35,111,118,101,114,108,97,121,95,112,114,105,118,97,99,121,67,111,111,107,105,101,16,0,15,35,111,118,101,114,108,97,121,99,111,111,107,105,101,115,16,0,15,35,111,118,101,114,116,111,112,99,111,111,107,105,101,115,16,0,28,35,111,119,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,16,0,15,35,111,119,110,67,111,111,107,105,101,76,97,121,101,114,16,0,25,35,111,122,121,45,99,111,111,107,105,101,95,110,111,116,105,99,101,95,98,97,110,110,101,114,16,0,26,35,112,56,48,95,99,111,111,107,105,101,95,110,111,116,105,99,101,95,119,114,97,112,112,101,114,16,0,13,35,112,67,111,111,107,105,101,77,111,100,97,108,16,0,15,35,112,67,111,111,107,105,101,77,111,100,97,108,86,49,16,0,15,35,112,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,10,35,112,95,99,105,73,110,110,101,114,16,0,40,35,112,95,108,116,95,99,116,108,48,48,95,67,111,111,107,105,101,78,111,116,105,99,101,95,112,110,108,67,111,111,107,105,101,78,111,116,105,99,101,16,0,33,35,112,95,112,95,105,100,95,99,111,111,107,105,101,95,87,65,82,95,99,111,111,107,105,101,112,111,114,116,108,101,116,95,16,0,54,35,112,95,112,95,105,100,95,99,111,111,107,105,101,115,112,111,108,105,99,121,112,111,114,116,108,101,116,95,87,65,82,95,99,111,111,107,105,101,115,112,111,108,105,99,121,112,111,114,116,108,101,116,95,16,0,21,35,112,97,99,107,116,95,103,100,112,114,95,99,111,110,116,97,105,110,101,114,16,0,22,35,112,97,103,101,32,62,32,46,112,114,105,118,97,99,121,45,111,112,116,105,110,16,0,19,35,112,97,103,101,45,97,100,118,105,99,101,45,99,111,111,107,105,101,16,0,19,35,112,97,103,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,13,35,112,97,103,101,45,99,111,111,107,105,101,115,16,0,17,35,112,97,103,101,45,99,111,111,107,105,101,115,45,98,97,114,16,0,12,35,112,97,103,101,67,111,111,107,105,101,115,16,0,17,35,112,97,103,101,85,115,101,67,111,111,107,105,101,68,105,118,16,0,17,35,112,97,103,101,95,99,111,111,107,105,101,95,109,101,110,117,16,0,21,35,112,97,103,101,115,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,15,35,112,97,109,67,111,111,107,105,101,76,97,121,101,114,16,0,19,35,112,97,110,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,17,35,112,97,110,67,111,111,107,105,101,82,101,113,117,101,115,116,16,0,12,35,112,97,110,95,99,111,111,107,105,101,115,16,0,13,35,112,97,110,101,108,45,99,111,111,107,105,101,16,0,19,35,112,97,110,101,108,45,99,111,111,107,105,101,45,117,115,97,103,101,16,0,14,35,112,97,110,101,108,45,99,111,111,107,105,101,115,16,0,12,35,112,97,110,101,108,67,111,111,107,105,101,16,0,17,35,112,97,110,101,108,67,111,111,107,105,101,115,73,110,102,111,16,0,13,35,112,97,110,101,108,95,99,111,111,107,105,101,16,0,20,35,112,97,110,101,108,95,99,111,111,107,105,101,95,98,111,116,116,111,109,16,0,17,35,112,97,110,101,108,95,99,111,111,107,105,101,95,100,111,108,16,0,13,35,112,97,110,101,108,99,111,111,107,105,101,115,16,0,17,35,112,97,110,116,97,108,108,97,45,67,111,111,107,105,101,115,16,0,17,35,112,97,110,116,97,108,108,97,95,99,111,111,107,105,101,115,16,0,19,35,112,97,111,95,119,97,114,110,105,110,103,95,99,111,111,107,105,101,16,0,24,35,112,97,112,101,114,105,102,121,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,25,35,112,97,112,101,114,112,108,97,110,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,17,35,112,97,114,97,103,114,97,112,104,95,99,111,111,107,105,101,16,0,34,35,112,97,114,101,110,116,95,83,105,116,101,67,111,111,107,105,101,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,18,35,112,97,114,107,45,99,111,111,107,105,101,98,97,114,45,101,108,16,0,13,35,112,97,114,116,45,99,111,111,107,105,101,115,16,0,17,35,112,97,115,101,107,95,99,105,97,115,116,101,99,122,107,97,16,0,23,35,112,97,115,101,107,95,107,111,109,117,110,105,107,97,116,95,99,111,111,107,105,101,16,0,16,35,112,97,115,116,105,108,108,97,45,99,111,111,107,105,101,16,0,30,35,112,97,120,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,16,0,25,35,112,98,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,16,35,112,98,65,99,99,101,112,116,67,111,111,107,105,101,115,16,0,18,35,112,98,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,18,35,112,98,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,14,35,112,98,98,45,99,111,111,107,105,101,108,97,119,16,0,17,35,112,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,18,35,112,99,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,18,35,112,99,99,109,115,67,111,111,107,105,101,115,65,108,101,114,116,16,0,13,35,112,100,95,99,111,111,107,105,101,108,97,119,16,0,11,35,112,100,112,97,45,112,111,112,117,112,16,0,20,35,112,100,112,97,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,16,0,23,35,112,101,99,114,45,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,16,0,27,35,112,101,99,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,20,35,112,101,99,114,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,16,35,112,101,114,109,105,115,111,95,99,111,111,107,105,101,115,16,0,15,35,112,101,114,109,105,115,115,105,111,110,45,98,97,114,16,0,22,35,112,101,114,109,105,115,115,105,111,110,45,98,97,114,45,112,114,111,109,112,116,16,0,23,35,112,101,114,109,105,115,115,105,111,110,95,114,101,113,117,101,115,116,95,98,111,120,16,0,21,35,112,101,114,112,101,116,117,117,109,45,99,111,111,107,105,101,45,98,97,114,16,0,15,35,112,102,45,99,111,111,107,105,101,45,104,105,110,116,16,0,15,35,112,102,67,111,111,107,105,101,78,111,116,105,99,101,16,0,22,35,112,102,105,122,101,114,95,99,111,111,107,105,101,115,95,112,111,108,105,99,121,16,0,21,35,112,102,119,67,111,111,107,105,101,80,114,101,102,101,114,101,110,99,101,115,16,0,17,35,112,103,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,15,35,112,103,45,99,111,111,107,105,101,115,73,110,102,111,16,0,8,35,112,103,45,103,100,112,114,16,0,10,35,112,103,100,103,45,103,100,112,114,16,0,19,35,112,104,45,99,111,111,107,105,101,115,45,97,107,107,111,111,114,100,16,0,16,35,112,104,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,18,35,112,104,101,119,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,28,35,112,104,114,97,115,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,111,107,105,101,115,16,0,24,35,112,105,97,110,111,45,105,110,102,111,98,97,114,45,99,111,110,116,97,105,110,101,114,16,0,17,35,112,105,101,95,109,101,110,117,95,99,111,111,107,105,101,115,16,0,16,35,112,105,115,107,111,116,79,112,111,122,111,114,105,108,111,16,0,8,35,112,105,115,107,111,116,105,16,0,9,35,112,105,115,107,111,116,107,105,16,0,13,35,112,105,115,107,111,116,107,105,95,100,105,118,16,0,19,35,112,105,115,107,111,116,107,105,95,111,98,118,101,115,116,105,108,111,16,0,17,35,112,105,115,107,111,116,107,105,95,119,114,97,112,112,101,114,16,0,23,35,112,105,119,105,107,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,12,35,112,105,119,105,107,45,102,108,121,105,110,16,0,10,35,112,105,120,99,111,111,107,105,101,16,0,18,35,112,106,65,99,99,101,112,116,67,111,111,107,105,101,66,97,114,16,0,21,35,112,108,45,115,112,45,112,114,105,118,97,99,121,45,98,117,116,116,111,110,16,0,10,35,112,108,95,99,111,111,107,105,101,16,0,11,35,112,108,95,99,111,111,107,105,101,115,16,0,27,35,112,108,97,116,102,111,114,109,95,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,97,114,16,0,23,35,112,108,101,97,115,101,45,97,112,112,114,111,118,101,45,99,111,111,107,105,101,115,16,0,18,35,112,108,101,110,116,121,45,99,111,111,107,105,101,45,98,97,114,16,0,17,35,112,108,103,45,99,111,111,107,105,101,110,111,116,105,99,101,16,0,16,35,112,108,105,107,105,67,111,111,107,105,101,115,80,111,112,16,0,18,35,112,108,117,103,105,110,95,99,111,111,107,105,101,95,105,110,116,16,0,22,35,112,109,45,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,16,0,10,35,112,109,45,99,111,111,107,105,101,16,0,17,35,112,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,112,109,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,16,35,112,109,45,99,111,111,107,105,101,45,110,111,116,105,102,16,0,18,35,112,109,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,17,35,112,109,49,51,95,99,111,111,107,105,101,95,105,110,102,111,16,0,17,35,112,109,49,53,95,99,111,111,107,105,101,95,105,110,102,111,16,0,11,35,112,109,95,99,111,111,107,105,101,115,16,0,17,35,112,109,99,95,116,111,117,112,112,95,110,111,116,105,99,101,16,0,12,35,112,110,108,45,99,111,111,107,105,101,115,16,0,20,35,112,110,108,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,16,0,23,35,112,110,108,65,112,112,114,111,118,101,67,111,111,107,105,101,115,85,115,97,103,101,16,0,10,35,112,110,108,67,111,111,107,105,101,16,0,16,35,112,110,108,67,111,111,107,105,101,66,97,110,110,101,114,16,0,13,35,112,110,108,67,111,111,107,105,101,66,97,114,16,0,17,35,112,110,108,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,16,35,112,110,108,67,111,111,107,105,101,70,111,111,116,101,114,16,0,14,35,112,110,108,67,111,111,107,105,101,73,110,102,111,16,0,17,35,112,110,108,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,16,35,112,110,108,67,111,111,107,105,101,78,111,116,105,99,101,16,0,16,35,112,110,108,67,111,111,107,105,101,83,116,97,116,117,115,16,0,11,35,112,110,108,67,111,111,107,105,101,115,16,0,23,35,112,110,108,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,16,0,18,35,112,110,108,69,85,67,111,111,107,105,101,66,97,110,110,101,114,16,0,11,35,112,110,108,80,114,105,118,97,99,121,16,0,11,35,112,110,110,45,99,111,111,107,105,101,16,0,10,35,112,110,115,99,111,111,107,105,101,16,0,16,35,112,111,105,116,121,107,97,45,99,105,97,115,116,101,107,16,0,12,35,112,111,108,45,99,111,111,107,105,101,115,16,0,10,35,112,111,108,67,111,99,107,105,101,16,0,11,35,112,111,108,67,111,111,107,105,101,115,16,0,12,35,112,111,108,95,99,111,111,107,105,101,115,16,0,19,35,112,111,108,97,110,100,95,99,111,111,107,105,101,95,99,111,110,116,16,0,13,35,112,111,108,105,99,105,121,65,108,101,114,116,16,0,14,35,112,111,108,105,99,121,45,97,99,99,101,112,116,16,0,14,35,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,14,35,112,111,108,105,99,121,45,99,111,111,107,105,101,16,0,21,35,112,111,108,105,99,121,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,22,35,112,111,108,105,99,121,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,11,35,112,111,108,105,99,121,45,100,105,118,16,0,20,35,112,111,108,105,99,121,45,109,111,100,97,108,45,98,97,110,110,101,114,16,0,13,35,112,111,108,105,99,121,45,112,111,112,117,112,16,0,21,35,112,111,108,105,99,121,45,115,101,116,116,105,110,103,115,45,105,110,102,111,16,0,18,35,112,111,108,105,99,121,45,118,97,108,105,100,97,116,105,111,110,16,0,25,35,112,111,108,105,99,121,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,16,0,21,35,112,111,108,105,99,121,45,119,97,114,110,105,110,103,45,112,111,112,117,112,16,0,14,35,112,111,108,105,99,121,45,119,105,110,100,111,119,16,0,17,35,112,111,108,105,99,121,65,108,101,114,116,80,97,110,101,108,16,0,20,35,112,111,108,105,99,121,66,97,110,110,101,114,87,114,97,112,112,101,114,16,0,10,35,112,111,108,105,99,121,66,97,114,16,0,14,35,112,111,108,105,99,121,67,111,110,115,101,110,116,16,0,13,35,112,111,108,105,99,121,67,111,111,107,105,101,16,0,24,35,112,111,108,105,99,121,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,16,0,14,35,112,111,108,105,99,121,67,111,111,107,105,101,115,16,0,19,35,112,111,108,105,99,121,67,111,111,107,105,101,115,76,97,121,101,114,16,0,14,35,112,111,108,105,99,121,77,101,115,115,97,103,101,16,0,13,35,112,111,108,105,99,121,78,111,116,105,99,101,16,0,12,35,112,111,108,105,99,121,80,97,110,101,108,16,0,12,35,112,111,108,105,99,121,80,111,112,117,112,16,0,21,35,112,111,108,105,99,121,80,111,112,117,112,67,111,110,116,97,105,110,101,114,16,0,14,35,112,111,108,105,99,121,95,99,111,111,107,105,101,16,0,14,35,112,111,108,105,99,121,95,104,101,97,100,101,114,16,0,15,35,112,111,108,105,99,121,95,109,101,115,115,97,103,101,16,0,14,35,112,111,108,105,99,121,95,110,111,116,105,99,101,16,0,15,35,112,111,108,105,99,121,95,119,114,97,112,112,101,114,16,0,19,35,112,111,108,105,115,104,45,99,111,111,107,105,101,45,110,111,116,101,16,0,17,35,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,16,0,26,35,112,111,108,105,116,105,99,97,45,112,114,105,118,97,99,105,100,97,100,101,45,108,103,112,100,16,0,15,35,112,111,108,105,116,105,99,97,67,111,111,107,105,101,16,0,16,35,112,111,108,105,116,105,99,97,67,111,111,107,105,101,115,16,0,18,35,112,111,108,105,116,105,99,97,68,101,67,111,111,107,105,101,115,16,0,20,35,112,111,108,105,116,105,99,97,80,114,105,118,97,99,105,100,97,100,101,16,0,17,35,112,111,108,105,116,105,99,97,95,99,111,111,107,105,101,115,16,0,20,35,112,111,108,105,116,105,99,97,95,100,101,95,99,111,111,107,105,101,115,16,0,30,35,112,111,108,105,116,105,99,97,95,100,101,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,16,0,23,35,112,111,108,105,116,105,99,97,95,100,101,95,112,114,105,118,97,99,105,100,97,100,16,0,16,35,112,111,108,105,116,105,99,97,99,111,111,107,105,101,115,16,0,26,35,112,111,108,105,116,105,113,117,101,95,99,111,110,102,105,100,101,110,116,105,97,108,105,116,101,16,0,17,35,112,111,108,105,116,121,107,97,45,99,105,97,115,116,101,107,16,0,16,35,112,111,108,105,116,121,107,97,45,99,111,111,107,105,101,16,0,17,35,112,111,108,105,116,121,107,97,45,99,111,111,107,105,101,115,16,0,21,35,112,111,108,105,116,121,107,97,45,112,114,121,119,97,116,110,111,115,99,105,16,0,25,35,112,111,108,105,116,121,107,97,45,112,114,121,119,97,116,110,111,115,99,105,45,116,108,111,16,0,26,35,112,111,108,105,116,121,107,97,80,114,121,119,97,116,110,111,115,99,105,72,111,108,100,101,114,16,0,21,35,112,111,108,105,116,121,107,97,95,99,111,111,107,105,101,95,101,120,101,108,16,0,17,35,112,111,108,105,116,121,107,97,95,99,111,111,107,105,101,115,16,0,14,35,112,111,108,105,116,121,107,97,95,111,107,110,111,16,0,14,35,112,111,108,105,116,121,107,97,99,111,111,107,105,16,0,16,35,112,111,108,105,116,121,107,97,99,111,111,107,105,101,115,16,0,20,35,112,111,108,105,116,121,107,97,112,114,121,119,97,116,110,111,115,99,105,16,0,16,35,112,111,111,108,99,111,111,107,105,101,98,97,100,103,101,16,0,11,35,112,111,112,45,99,111,111,107,105,101,16,0,20,35,112,111,112,45,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,16,0,12,35,112,111,112,45,99,111,111,107,105,101,115,16,0,9,35,112,111,112,45,103,100,112,114,16,0,14,35,112,111,112,45,117,112,45,99,111,111,107,105,101,16,0,15,35,112,111,112,45,117,112,45,99,111,111,107,105,101,115,16,0,10,35,112,111,112,67,111,111,107,105,101,16,0,21,35,112,111,112,73,110,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,13,35,112,111,112,85,112,67,111,111,107,105,101,115,16,0,22,35,112,111,112,85,112,67,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,16,0,16,35,112,111,112,85,112,73,110,102,111,115,76,101,103,97,108,16,0,12,35,112,111,112,95,99,111,111,107,105,101,115,16,0,9,35,112,111,112,95,114,103,112,100,16,0,16,35,112,111,112,95,115,105,116,101,95,99,111,111,107,105,101,16,0,8,35,112,111,112,99,99,49,50,16,0,8,35,112,111,112,99,111,111,107,16,0,10,35,112,111,112,99,111,111,107,105,101,16,0,11,35,112,111,112,99,111,111,107,105,101,115,16,0,20,35,112,111,112,105,110,45,97,99,99,101,112,116,45,99,111,111,107,105,101,16,0,17,35,112,111,112,105,110,45,99,103,117,45,99,111,111,107,105,101,16,0,11,35,112,111,112,105,110,45,99,110,105,108,16,0,13,35,112,111,112,105,110,45,99,111,111,107,105,101,16,0,14,35,112,111,112,105,110,45,99,111,111,107,105,101,115,16,0,12,35,112,111,112,105,110,67,111,111,107,105,101,16,0,13,35,112,111,112,105,110,67,111,111,107,105,101,115,16,0,13,35,112,111,112,105,110,95,99,111,111,107,105,101,16,0,14,35,112,111,112,105,110,95,99,111,111,107,105,101,115,16,0,19,35,112,111,112,105,110,95,105,110,102,111,115,99,111,111,107,105,101,115,16,0,17,35,112,111,112,105,110,95,116,99,95,112,114,105,118,97,99,121,16,0,12,35,112,111,112,105,110,99,111,111,107,105,101,16,0,8,35,112,111,112,114,103,112,100,16,0,15,35,112,111,112,117,112,45,45,99,111,111,107,105,101,115,16,0,21,35,112,111,112,117,112,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,20,35,112,111,112,117,112,45,97,110,110,111,117,110,99,101,109,101,110,116,115,16,0,11,35,112,111,112,117,112,45,99,99,112,97,16,0,22,35,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,45,97,118,105,115,111,16,0,14,35,112,111,112,117,112,45,99,111,111,99,107,105,101,16,0,13,35,112,111,112,117,112,45,99,111,111,107,105,101,16,0,23,35,112,111,112,117,112,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,16,0,19,35,112,111,112,117,112,45,99,111,111,107,105,101,45,98,108,111,99,107,16,0,18,35,112,111,112,117,112,45,99,111,111,107,105,101,45,99,110,105,108,16,0,23,35,112,111,112,117,112,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,24,35,112,111,112,117,112,45,99,111,111,107,105,101,45,99,111,110,116,101,110,101,100,111,114,16,0,20,35,112,111,112,117,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,26,35,112,111,112,117,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,109,97,108,108,16,0,18,35,112,111,112,117,112,45,99,111,111,107,105,101,45,119,97,108,108,16,0,20,35,112,111,112,117,112,45,99,111,111,107,105,101,67,111,110,115,101,110,116,16,0,14,35,112,111,112,117,112,45,99,111,111,107,105,101,115,16,0,17,35,112,111,112,117,112,45,99,111,111,107,105,101,115,45,49,56,16,0,21,35,112,111,112,117,112,45,99,111,111,107,105,101,115,45,98,111,116,116,111,109,16,0,22,35,112,111,112,117,112,45,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,16,0,21,35,112,111,112,117,112,45,99,111,111,107,105,101,115,45,112,111,108,105,99,101,16,0,17,35,112,111,112,117,112,45,100,105,115,99,108,97,105,109,101,114,16,0,11,35,112,111,112,117,112,45,103,100,112,114,16,0,15,35,112,111,112,117,112,45,109,97,115,107,45,114,100,111,16,0,20,35,112,111,112,117,112,45,112,114,105,118,97,99,121,112,111,108,105,99,121,16,0,21,35,112,111,112,117,112,45,119,101,98,112,97,103,101,45,99,111,111,107,105,101,16,0,19,35,112,111,112,117,112,65,118,118,105,115,111,67,111,111,107,105,101,115,16,0,20,35,112,111,112,117,112,67,78,73,76,45,99,111,110,116,97,105,110,101,114,16,0,12,35,112,111,112,117,112,67,111,111,107,105,101,16,0,13,35,112,111,112,117,112,67,111,111,107,105,101,115,16,0,11,35,112,111,112,117,112,95,99,110,105,108,16,0,13,35,112,111,112,117,112,95,99,111,111,107,105,101,16,0,27,35,112,111,112,117,112,95,99,111,111,107,105,101,95,99,111,110,116,101,110,101,114,95,109,97,105,110,16,0,18,35,112,111,112,117,112,95,99,111,111,107,105,101,95,105,110,102,111,16,0,25,35,112,111,112,117,112,95,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,16,0,17,35,112,111,112,117,112,95,99,111,111,107,105,101,95,108,97,119,16,0,14,35,112,111,112,117,112,95,99,111,111,107,105,101,115,16,0,20,35,112,111,112,117,112,95,99,111,111,107,105,101,115,95,109,111,100,97,108,16,0,21,35,112,111,112,117,112,95,99,111,111,107,105,101,115,95,112,111,108,105,99,121,16,0,18,35,112,111,112,117,112,95,105,110,102,111,95,99,111,111,107,105,101,16,0,16,35,112,111,112,117,112,95,108,111,105,99,111,111,107,105,101,16,0,12,35,112,111,112,117,112,99,111,111,107,105,101,16,0,13,35,112,111,112,117,112,99,111,111,107,105,101,115,16,0,16,35,112,111,112,117,112,100,101,115,99,111,111,107,105,101,115,16,0,10,35,112,111,112,117,112,103,100,112,114,16,0,10,35,112,111,112,117,112,114,103,112,100,16,0,19,35,112,111,114,116,97,108,45,99,111,111,107,105,101,45,105,110,102,111,16,0,20,35,112,111,114,116,97,108,45,99,111,111,107,105,101,111,112,116,111,117,116,16,0,22,35,112,111,115,105,116,105,118,95,99,111,111,107,105,101,115,95,102,105,101,108,100,16,0,12,35,112,111,119,97,45,99,111,111,107,105,101,16,0,17,35,112,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,10,35,112,112,67,111,111,107,105,101,115,16,0,10,35,112,112,95,99,111,111,107,105,101,16,0,18,35,112,112,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,13,35,112,112,95,99,111,111,107,105,101,108,97,119,16,0,12,35,112,112,97,45,99,111,111,107,105,101,115,16,0,9,35,112,112,99,111,111,107,105,101,16,0,20,35,112,112,109,115,95,99,109,95,98,97,114,95,111,118,101,114,108,97,121,16,0,22,35,112,112,109,115,95,99,109,95,112,111,112,117,112,95,111,118,101,114,108,97,121,16,0,19,35,112,113,45,112,97,103,101,45,116,111,112,45,99,111,111,107,105,101,16,0,23,35,112,114,97,105,118,97,99,121,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,16,35,112,114,97,105,118,97,99,121,45,110,111,116,105,99,101,16,0,20,35,112,114,97,118,100,97,45,99,111,111,107,105,101,45,117,115,97,103,101,16,0,27,35,112,114,101,102,101,114,101,110,99,101,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,8,35,112,114,101,103,100,112,114,16,0,18,35,112,114,101,104,101,97,100,101,114,95,99,111,111,107,105,101,115,16,0,21,35,112,114,101,116,116,121,67,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,16,35,112,114,101,118,101,110,116,95,99,111,111,107,105,101,115,16,0,17,35,112,114,102,114,109,95,99,111,111,107,105,101,95,98,110,114,16,0,14,35,112,114,105,99,97,99,121,95,112,111,112,117,112,16,0,27,35,112,114,105,99,101,112,105,114,97,116,101,115,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,18,35,112,114,105,104,118,97,99,97,109,75,111,108,97,99,105,99,101,16,0,10,35,112,114,105,109,117,115,45,99,99,16,0,27,35,112,114,105,111,49,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,109,97,108,108,16,0,14,35,112,114,105,118,97,99,105,100,97,100,66,97,114,16,0,15,35,112,114,105,118,97,99,121,45,97,100,118,105,115,101,16,0,14,35,112,114,105,118,97,99,121,45,97,108,101,114,116,16,0,19,35,112,114,105,118,97,99,121,45,97,108,101,114,116,45,98,108,117,114,16,0,15,35,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,12,35,112,114,105,118,97,99,121,45,98,97,114,16,0,18,35,112,114,105,118,97,99,121,45,98,111,116,116,111,109,98,97,114,16,0,23,35,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,24,35,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,16,0,15,35,112,114,105,118,97,99,121,45,99,111,111,107,105,101,16,0,22,35,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,20,35,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,105,110,102,111,16,0,22,35,112,114,105,118,97,99,121,45,99,111,111,107,105,101,77,101,115,115,97,103,101,16,0,19,35,112,114,105,118,97,99,121,45,100,105,115,99,108,97,105,109,101,114,16,0,21,35,112,114,105,118,97,99,121,45,102,105,120,101,100,45,98,111,116,116,111,109,16,0,15,35,112,114,105,118,97,99,121,45,102,111,111,116,101,114,16,0,13,35,112,114,105,118,97,99,121,45,104,105,110,116,16,0,34,35,112,114,105,118,97,99,121,45,105,110,102,111,114,109,97,116,105,111,110,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,14,35,112,114,105,118,97,99,121,45,108,97,121,101,114,16,0,20,35,112,114,105,118,97,99,121,45,109,101,115,115,97,103,101,45,98,97,114,16,0,22,35,112,114,105,118,97,99,121,45,109,115,103,45,99,111,110,116,97,105,110,101,114,16,0,13,35,112,114,105,118,97,99,121,45,110,111,116,101,16,0,19,35,112,114,105,118,97,99,121,45,110,111,116,105,99,101,45,98,111,120,16,0,28,35,112,114,105,118,97,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,16,0,23,35,112,114,105,118,97,99,121,45,111,118,101,114,108,97,121,45,98,97,110,110,101,114,16,0,15,35,112,114,105,118,97,99,121,45,112,111,108,105,99,101,16,0,24,35,112,114,105,118,97,99,121,45,112,111,108,105,99,105,101,115,45,98,97,110,110,101,114,16,0,22,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,19,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,114,16,0,30,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,103,108,111,98,97,108,45,109,101,115,115,97,103,101,16,0,28,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,108,105,110,107,45,119,114,97,112,112,101,114,16,0,21,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,109,111,100,97,108,16,0,20,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,110,111,116,101,16,0,22,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,110,111,116,105,99,101,16,0,28,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,21,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,97,110,101,108,16,0,21,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,111,112,117,112,16,0,23,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,117,112,100,97,116,101,100,16,0,15,35,112,114,105,118,97,99,121,45,112,111,112,45,117,112,16,0,14,35,112,114,105,118,97,99,121,45,112,111,112,117,112,16,0,24,35,112,114,105,118,97,99,121,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,16,0,15,35,112,114,105,118,97,99,121,45,115,104,105,101,108,100,16,0,26,35,112,114,105,118,97,99,121,45,115,116,97,116,101,109,101,110,116,45,119,114,97,112,112,101,114,16,0,33,35,112,114,105,118,97,99,121,45,115,116,97,116,101,109,101,110,116,58,110,111,116,40,46,99,104,101,99,107,98,111,120,41,16,0,14,35,112,114,105,118,97,99,121,45,116,111,97,115,116,16,0,15,35,112,114,105,118,97,99,121,45,117,112,100,97,116,101,16,0,28,35,112,114,105,118,97,99,121,65,110,100,67,111,111,107,105,101,78,111,116,105,99,101,80,97,110,101,108,16,0,30,35,112,114,105,118,97,99,121,65,110,100,67,111,111,107,105,101,115,67,111,110,102,105,114,109,97,116,105,111,110,16,0,30,35,112,114,105,118,97,99,121,65,110,110,111,117,110,99,101,109,101,110,116,58,110,111,116,40,98,111,100,121,41,16,0,14,35,112,114,105,118,97,99,121,66,97,110,110,101,114,16,0,11,35,112,114,105,118,97,99,121,66,97,114,16,0,11,35,112,114,105,118,97,99,121,66,111,120,16,0,15,35,112,114,105,118,97,99,121,67,111,110,115,101,110,116,16,0,14,35,112,114,105,118,97,99,121,67,111,111,107,105,101,16,0,24,35,112,114,105,118,97,99,121,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,16,0,19,35,112,114,105,118,97,99,121,67,111,111,107,105,101,76,97,121,101,114,16,0,37,35,112,114,105,118,97,99,121,67,111,111,107,105,101,115,80,111,108,105,99,121,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,18,35,112,114,105,118,97,99,121,68,105,115,99,108,97,105,109,101,114,16,0,12,35,112,114,105,118,97,99,121,72,105,110,116,16,0,26,35,112,114,105,118,97,99,121,78,111,116,101,80,111,112,117,112,67,111,110,116,97,105,110,101,114,16,0,20,35,112,114,105,118,97,99,121,78,111,116,105,99,101,85,112,100,97,116,101,16,0,20,35,112,114,105,118,97,99,121,78,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,112,114,105,118,97,99,121,78,111,116,105,102,121,67,111,110,116,97,105,110,101,114,16,0,26,35,112,114,105,118,97,99,121,79,112,116,105,111,110,115,67,111,111,107,105,101,79,112,116,73,110,16,0,22,35,112,114,105,118,97,99,121,79,117,116,101,114,67,111,110,116,97,105,110,101,114,16,0,15,35,112,114,105,118,97,99,121,79,118,101,114,108,97,121,16,0,17,35,112,114,105,118,97,99,121,80,111,108,105,99,121,66,97,114,16,0,17,35,112,114,105,118,97,99,121,80,111,108,105,99,121,66,111,120,16,0,21,35,112,114,105,118,97,99,121,80,111,108,105,99,121,67,111,111,107,105,101,115,16,0,18,35,112,114,105,118,97,99,121,80,111,108,105,99,121,73,110,102,111,16,0,19,35,112,114,105,118,97,99,121,80,111,108,105,99,121,76,97,121,101,114,16,0,20,35,112,114,105,118,97,99,121,80,111,108,105,99,121,76,97,121,101,114,78,16,0,18,35,112,114,105,118,97,99,121,80,111,108,105,99,121,78,111,116,101,16,0,21,35,112,114,105,118,97,99,121,80,111,108,105,99,121,79,118,101,114,108,97,121,16,0,19,35,112,114,105,118,97,99,121,80,111,108,105,99,121,80,111,112,117,112,16,0,13,35,112,114,105,118,97,99,121,80,111,112,117,112,16,0,14,35,112,114,105,118,97,99,121,83,108,105,100,101,114,16,0,14,35,112,114,105,118,97,99,121,84,111,112,66,97,114,16,0,16,35,112,114,105,118,97,99,121,87,97,114,105,110,105,110,103,16,0,21,35,112,114,105,118,97,99,121,87,97,114,110,105,110,103,66,97,110,110,101,114,16,0,15,35,112,114,105,118,97,99,121,87,114,97,112,112,101,114,16,0,15,35,112,114,105,118,97,99,121,95,97,99,99,101,112,116,16,0,18,35,112,114,105,118,97,99,121,95,97,103,114,101,101,109,101,110,116,16,0,16,35,112,114,105,118,97,99,121,95,98,97,110,100,101,97,117,16,0,15,35,112,114,105,118,97,99,121,95,98,97,110,110,101,114,16,0,12,35,112,114,105,118,97,99,121,95,98,97,114,16,0,14,35,112,114,105,118,97,99,121,95,98,97,114,114,101,16,0,20,35,112,114,105,118,97,99,121,95,98,108,111,99,107,115,99,114,101,101,110,16,0,22,35,112,114,105,118,97,99,121,95,98,111,120,95,99,111,110,116,97,105,110,101,114,16,0,15,35,112,114,105,118,97,99,121,95,99,111,111,107,105,101,16,0,20,35,112,114,105,118,97,99,121,95,99,111,111,107,105,101,95,110,111,116,101,16,0,21,35,112,114,105,118,97,99,121,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,21,35,112,114,105,118,97,99,121,95,99,111,111,107,105,101,112,111,108,105,99,121,16,0,16,35,112,114,105,118,97,99,121,95,99,111,111,107,105,101,115,16,0,14,35,112,114,105,118,97,99,121,95,99,111,118,101,114,16,0,21,35,112,114,105,118,97,99,121,95,105,110,102,111,95,99,111,110,116,101,110,116,16,0,21,35,112,114,105,118,97,99,121,95,105,110,102,111,95,111,118,101,114,108,97,121,16,0,12,35,112,114,105,118,97,99,121,95,108,97,119,16,0,26,35,112,114,105,118,97,99,121,95,109,101,115,115,97,103,101,95,97,108,101,114,116,95,100,105,118,16,0,14,35,112,114,105,118,97,99,121,95,109,111,100,97,108,16,0,15,35,112,114,105,118,97,99,121,95,110,111,116,105,99,101,16,0,22,35,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,98,97,110,110,101,114,16,0,19,35,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,98,97,114,16,0,27,35,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,108,105,110,107,95,119,105,110,100,111,119,16,0,14,35,112,114,105,118,97,99,121,95,112,111,112,117,112,16,0,22,35,112,114,105,118,97,99,121,95,116,101,114,109,115,95,99,111,111,107,105,101,115,16,0,15,35,112,114,105,118,97,99,121,95,119,105,100,103,101,116,16,0,14,35,112,114,105,118,97,99,121,98,97,110,110,101,114,16,0,20,35,112,114,105,118,97,99,121,98,97,110,110,101,114,95,109,111,100,97,108,16,0,11,35,112,114,105,118,97,99,121,98,97,114,16,0,14,35,112,114,105,118,97,99,121,99,111,111,107,105,101,16,0,27,35,112,114,105,118,97,99,121,99,111,111,107,105,101,45,100,105,118,45,115,117,112,101,114,116,111,112,16,0,12,35,112,114,105,118,97,99,121,104,105,110,116,16,0,15,35,112,114,105,118,97,99,121,109,97,110,97,103,101,114,16,0,15,35,112,114,105,118,97,99,121,109,101,115,115,97,103,101,16,0,14,35,112,114,105,118,97,99,121,110,111,116,105,99,101,16,0,25,35,112,114,105,118,97,99,121,112,111,108,105,99,121,58,110,111,116,40,105,110,112,117,116,41,16,0,23,35,112,114,105,118,97,99,121,112,111,108,105,99,121,99,111,110,116,97,105,110,101,114,16,0,13,35,112,114,105,118,97,99,121,112,111,112,117,112,16,0,13,35,112,114,105,118,97,116,66,97,110,110,101,114,16,0,15,35,112,114,105,118,97,116,101,45,112,111,108,105,99,121,16,0,20,35,112,114,105,118,97,116,101,80,111,108,105,99,121,72,111,108,100,101,114,16,0,21,35,112,114,111,45,99,112,45,100,105,97,108,111,103,45,98,97,110,110,101,114,16,0,22,35,112,114,111,45,99,112,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,16,0,14,35,112,114,111,95,99,111,111,107,105,101,98,111,120,16,0,22,35,112,114,111,95,101,117,99,108,112,95,99,111,111,107,105,101,115,95,98,111,120,16,0,15,35,112,114,111,109,112,116,45,99,111,111,107,105,101,115,16,0,23,35,112,114,111,110,97,109,105,99,95,99,111,111,107,105,101,95,104,111,108,100,101,114,16,0,24,35,112,114,111,115,105,116,101,95,99,111,111,107,105,101,95,97,100,118,97,114,115,101,108,16,0,19,35,112,115,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,16,0,21,35,112,115,67,111,111,107,105,101,83,108,105,100,101,114,67,111,110,66,111,116,16,0,21,35,112,115,95,99,111,111,107,105,101,98,97,114,95,99,111,111,107,105,101,115,16,0,16,35,112,116,67,111,111,107,105,101,66,97,114,87,114,97,112,16,0,16,35,112,116,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,12,35,112,116,97,108,107,99,111,111,107,105,101,16,0,18,35,112,117,98,108,105,99,67,111,111,107,105,101,85,115,97,103,101,16,0,18,35,112,117,114,99,104,45,103,100,112,114,45,98,97,110,110,101,114,16,0,11,35,112,117,115,104,95,97,108,101,114,116,16,0,17,35,112,118,45,99,111,111,107,105,101,45,100,105,97,108,111,103,16,0,17,35,112,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,11,35,112,119,95,99,111,111,107,105,101,115,16,0,20,35,112,119,99,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,32,35,112,119,99,114,45,99,100,45,99,111,111,107,105,101,45,117,115,97,103,101,45,100,105,115,99,108,97,105,109,101,114,16,0,18,35,112,119,101,98,99,111,111,107,105,101,115,110,111,116,105,102,105,16,0,11,35,112,119,119,45,99,111,111,107,105,101,16,0,23,35,112,120,45,99,111,111,107,105,101,45,98,97,114,45,101,120,116,101,110,100,101,100,16,0,18,35,112,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,26,35,112,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,16,0,13,35,112,120,45,99,111,111,107,105,101,98,97,114,16,0,15,35,112,120,97,45,99,111,111,107,105,101,45,98,97,114,16,0,13,35,113,45,99,111,111,107,105,101,45,98,111,120,16,0,21,35,113,56,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,16,0,15,35,113,80,114,105,118,97,99,121,66,97,110,110,101,114,16,0,16,35,113,98,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,23,35,113,98,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,97,105,110,16,0,23,35,113,98,97,108,108,95,99,111,95,99,111,111,107,105,101,45,102,111,111,116,101,114,16,0,20,35,113,99,95,99,104,111,105,99,101,95,51,112,99,95,102,114,97,109,101,16,0,9,35,113,103,45,116,111,97,115,116,16,0,22,35,113,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,111,120,16,0,16,35,113,111,111,107,105,101,115,95,104,97,98,105,116,97,116,16,0,19,35,113,116,104,101,109,101,67,111,111,107,105,101,66,97,110,110,101,114,16,0,16,35,113,117,98,105,116,45,101,117,45,99,111,111,107,105,101,16,0,13,35,114,52,50,67,111,111,107,105,101,66,97,114,16,0,16,35,114,97,98,67,111,111,107,105,101,83,108,105,100,101,114,16,0,27,35,114,97,105,115,105,111,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,22,35,114,97,109,107,97,95,99,105,97,115,116,101,99,122,107,97,95,105,110,102,111,16,0,26,35,114,97,112,105,100,115,116,97,102,102,45,99,111,111,107,105,101,95,95,98,97,110,110,101,114,16,0,28,35,114,97,112,105,100,119,101,97,118,101,114,95,112,114,105,118,97,99,121,95,109,101,115,115,97,103,101,16,0,21,35,114,97,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,21,35,114,97,122,101,114,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,20,35,114,98,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,13,35,114,98,95,99,111,111,107,105,101,66,111,120,16,0,35,35,114,98,105,67,111,111,107,105,101,80,111,108,105,99,121,95,112,117,115,104,68,111,119,110,66,111,120,87,114,97,112,112,101,114,16,0,23,35,114,98,105,67,111,111,107,105,101,80,111,108,105,99,121,95,115,112,97,99,101,114,16,0,23,35,114,99,45,108,101,121,45,99,111,111,107,105,101,115,45,100,105,97,108,111,103,111,16,0,14,35,114,99,67,111,111,107,105,101,80,111,112,85,112,16,0,10,35,114,99,67,111,111,107,105,101,115,16,0,19,35,114,100,109,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,30,35,114,101,97,99,116,45,97,112,112,45,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,16,0,13,35,114,101,97,99,116,45,99,111,111,107,105,101,16,0,22,35,114,101,97,99,116,45,99,111,111,107,105,101,45,97,112,112,114,111,118,97,108,16,0,17,35,114,101,97,99,116,45,99,111,111,107,105,101,45,98,97,114,16,0,21,35,114,101,97,99,116,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,25,35,114,101,97,99,116,95,101,108,101,109,101,110,116,95,95,99,111,111,107,105,101,98,97,114,16,0,23,35,114,101,100,95,99,111,111,107,105,101,95,114,101,115,116,114,105,99,116,105,111,110,16,0,17,35,114,101,100,105,109,45,99,111,111,107,105,101,104,105,110,116,16,0,24,35,114,101,100,105,109,45,99,111,111,107,105,101,104,105,110,116,45,98,111,116,116,111,109,16,0,23,35,114,101,100,105,109,45,99,111,111,107,105,101,104,105,110,116,45,109,111,100,97,108,16,0,22,35,114,101,103,101,110,115,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,16,0,21,35,114,101,103,105,111,110,95,99,111,111,107,105,101,115,95,105,110,102,111,115,16,0,12,35,114,101,107,95,98,108,111,99,107,101,114,16,0,16,35,114,101,109,101,109,98,101,114,95,99,111,111,107,105,101,16,0,26,35,114,101,109,105,110,100,101,114,46,112,114,105,118,97,99,121,45,114,101,109,105,110,100,101,114,16,0,13,35,114,101,109,111,116,101,67,111,111,107,105,101,16,0,28,35,114,101,110,100,101,114,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,15,35,114,101,113,117,101,115,116,67,111,111,107,105,101,115,16,0,11,35,114,101,115,45,99,111,99,107,105,101,16,0,21,35,114,101,115,117,108,116,67,104,101,99,107,67,111,111,107,105,101,77,83,71,16,0,22,35,114,101,115,117,108,116,115,45,99,111,111,107,105,101,115,45,97,108,101,114,116,16,0,16,35,114,103,45,99,111,111,107,105,101,45,99,104,101,99,107,16,0,16,35,114,103,80,114,105,118,97,99,121,66,97,110,110,101,114,16,0,20,35,114,103,95,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,16,0,10,35,114,103,100,112,46,114,103,112,100,16,0,10,35,114,103,112,98,46,114,103,112,100,16,0,20,35,114,103,112,100,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,10,35,114,103,112,100,45,98,97,110,100,16,0,12,35,114,103,112,100,45,98,97,110,110,101,114,16,0,19,35,114,103,112,100,45,98,97,114,45,99,111,110,116,97,105,110,101,114,16,0,13,35,114,103,112,100,45,99,111,110,115,101,110,116,16,0,13,35,114,103,112,100,45,99,111,111,107,105,101,115,16,0,19,35,114,103,112,100,45,99,111,111,107,105,101,115,45,109,111,100,97,108,16,0,27,35,114,103,112,100,45,99,111,111,107,105,101,115,45,109,111,100,97,108,45,119,114,97,112,112,101,114,16,0,13,35,114,103,112,100,45,103,101,110,101,114,97,108,16,0,11,35,114,103,112,100,45,105,110,102,111,115,16,0,22,35,114,103,112,100,45,108,105,116,116,108,101,45,118,97,108,105,100,97,116,101,100,16,0,11,35,114,103,112,100,45,109,111,100,97,108,16,0,15,35,114,103,112,100,45,109,115,103,46,97,108,101,114,116,16,0,12,35,114,103,112,100,45,110,111,116,105,99,101,16,0,13,35,114,103,112,100,45,111,118,101,114,108,97,121,16,0,11,35,114,103,112,100,45,112,111,112,105,110,16,0,21,35,114,103,112,100,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,16,0,13,35,114,103,112,100,45,119,114,97,112,112,101,114,16,0,10,35,114,103,112,100,46,114,103,112,100,16,0,17,35,114,103,112,100,46,115,109,97,114,116,45,112,111,112,105,110,16,0,21,35,114,103,112,100,46,119,105,116,104,111,117,116,45,111,118,101,114,108,97,121,16,0,10,35,114,103,112,100,65,108,101,114,116,16,0,17,35,114,103,112,100,67,111,111,107,105,101,115,72,97,99,99,101,16,0,10,35,114,103,112,100,77,111,100,97,108,16,0,10,35,114,103,112,100,88,111,111,105,116,16,0,13,35,114,103,112,100,95,95,105,110,102,111,95,95,16,0,14,35,114,103,112,100,95,98,97,99,107,100,114,111,112,16,0,13,35,114,103,112,100,95,98,97,110,100,101,97,117,16,0,12,35,114,103,112,100,95,98,97,110,110,101,114,16,0,10,35,114,103,112,100,95,98,108,111,99,16,0,12,35,114,103,112,100,95,98,111,117,116,111,110,16,0,13,35,114,103,112,100,95,100,101,109,97,110,100,101,16,0,10,35,114,103,112,100,95,109,97,105,110,16,0,18,35,114,103,112,100,95,109,97,105,110,95,99,111,110,116,101,110,116,16,0,9,35,114,103,112,100,95,111,98,106,16,0,11,35,114,103,112,100,95,112,111,112,105,110,16,0,8,35,114,103,112,100,95,112,112,16,0,10,35,114,103,112,100,95,116,114,97,121,16,0,8,35,114,103,112,100,98,97,114,16,0,8,35,114,103,112,100,98,111,120,16,0,11,35,114,103,112,100,99,111,111,107,105,101,16,0,22,35,114,103,112,100,99,111,111,107,105,101,45,112,97,110,101,108,45,114,111,111,116,16,0,8,35,114,103,112,100,109,115,103,16,0,10,35,114,103,112,100,112,111,112,117,112,16,0,21,35,114,103,115,45,109,97,105,110,45,99,111,110,116,101,120,116,45,98,97,114,16,0,18,35,114,103,119,112,45,99,111,111,107,105,101,45,109,111,100,97,108,16,0,19,35,114,103,119,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,17,35,114,104,117,108,99,111,111,107,105,101,97,99,99,101,112,116,16,0,21,35,114,105,98,98,111,110,45,99,111,111,107,105,101,115,45,97,103,114,101,101,16,0,27,35,114,105,99,104,45,105,100,45,99,111,111,107,105,101,115,45,114,101,103,117,108,97,116,105,111,110,16,0,24,35,114,105,99,104,112,97,103,101,115,95,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,18,35,114,107,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,17,35,114,109,45,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,19,35,114,109,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,22,35,114,110,67,111,111,107,105,101,67,111,110,115,101,110,116,95,112,111,112,117,112,16,0,17,35,114,110,100,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,19,35,114,110,119,95,99,111,111,107,105,101,115,95,98,97,110,110,101,114,16,0,9,35,114,111,100,111,45,98,97,114,16,0,11,35,114,111,100,111,45,98,108,111,99,107,16,0,14,35,114,111,100,111,45,105,110,102,111,45,98,111,120,16,0,11,35,114,111,100,111,45,109,111,100,97,108,16,0,15,35,114,111,100,111,45,109,111,100,97,108,45,97,108,108,16,0,13,35,114,111,100,111,45,111,118,101,114,108,97,121,16,0,9,35,114,111,100,111,45,112,111,112,16,0,21,35,114,111,100,111,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,16,0,19,35,114,111,100,111,45,112,111,112,117,112,45,111,118,101,114,108,97,121,16,0,10,35,114,111,100,111,65,108,101,114,116,16,0,8,35,114,111,100,111,66,111,120,16,0,11,35,114,111,100,111,67,111,111,107,105,101,16,0,13,35,114,111,100,111,73,110,102,111,70,111,114,109,16,0,24,35,114,111,100,111,78,111,116,105,102,105,99,97,116,105,111,110,87,114,97,112,112,101,114,16,0,8,35,114,111,100,111,82,111,119,16,0,12,35,114,111,100,111,87,114,97,112,112,101,114,16,0,12,35,114,111,100,111,95,97,99,99,101,112,116,16,0,9,35,114,111,100,111,95,101,110,118,16,0,11,35,114,111,100,111,95,109,111,100,97,108,16,0,11,35,114,111,100,111,95,112,111,112,117,112,16,0,9,35,114,111,100,111,105,110,102,111,16,0,8,35,114,111,100,111,110,101,119,16,0,14,35,114,111,100,111,110,102,45,97,112,112,45,117,120,16,0,19,35,114,111,111,116,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,18,35,114,111,111,116,45,99,111,111,107,105,101,98,97,110,110,101,114,16,0,12,35,114,111,116,111,114,67,111,111,107,105,101,16,0,11,35,114,111,119,45,99,111,111,107,105,101,16,0,17,35,114,113,105,102,95,105,110,102,111,95,98,97,110,110,101,114,16,0,22,35,114,115,95,99,111,111,107,105,101,95,100,101,99,108,97,114,97,116,105,111,110,16,0,36,35,114,115,95,99,111,111,107,105,101,95,109,97,110,97,103,101,114,95,112,111,112,117,112,58,110,111,116,40,46,109,111,100,97,108,41,16,0,31,35,114,115,95,99,111,111,107,105,101,95,109,97,110,97,103,101,114,95,112,111,112,117,112,95,115,104,97,100,111,119,16,0,20,35,114,115,115,101,111,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,16,35,114,116,80,114,105,118,97,99,121,66,97,110,110,101,114,16,0,19,35,114,116,108,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,24,35,114,116,108,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,17,35,114,116,108,95,99,111,111,107,105,101,95,115,109,97,108,108,16,0,18,35,114,116,111,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,18,35,114,116,112,112,114,105,118,97,99,121,99,111,110,116,101,110,116,16,0,11,35,114,116,115,67,111,111,107,105,101,115,16,0,17,35,114,116,118,101,67,111,111,107,105,101,80,111,108,105,99,121,16,0,11,35,114,117,98,97,110,45,99,110,105,108,16,0,11,35,114,118,97,99,111,111,107,105,101,115,16,0,17,35,114,118,100,119,67,111,111,107,105,101,80,111,108,105,99,121,16,0,17,35,114,119,95,97,99,99,101,112,116,95,99,111,111,107,105,101,16,0,17,35,114,119,95,97,108,101,114,116,95,99,111,111,107,105,101,115,16,0,19,35,114,119,100,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,15,35,114,119,100,99,111,111,107,105,101,115,105,110,102,111,16,0,15,35,114,119,115,45,99,111,111,107,105,101,45,98,97,114,16,0,18,35,114,120,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,16,35,114,121,110,67,111,111,107,105,101,80,111,108,105,99,121,16,0,16,35,115,45,97,118,118,105,115,111,45,99,111,111,107,105,101,16,0,9,35,115,45,99,111,111,107,105,101,16,0,18,35,115,45,117,105,45,99,99,45,99,111,110,116,97,105,110,101,114,16,0,15,35,115,45,117,105,45,99,99,45,110,97,118,98,97,114,16,0,17,35,115,49,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,20,35,115,49,49,50,95,97,99,99,101,112,116,95,99,111,111,107,105,101,115,16,0,25,35,115,50,109,95,99,111,111,107,105,101,115,95,111,112,116,105,110,95,100,105,97,108,111,103,16,0,19,35,115,52,99,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,13,35,115,95,99,111,111,107,105,101,95,109,115,103,16,0,24,35,115,95,115,95,99,111,111,107,105,101,73,110,102,111,67,111,110,116,97,105,110,101,114,16,0,21,35,115,97,103,108,97,115,110,111,115,116,45,99,111,110,116,97,105,110,101,114,16,0,22,35,115,97,108,115,97,45,112,111,108,105,99,105,101,115,45,97,100,118,105,99,101,16,0,19,35,115,97,110,111,109,97,45,99,111,110,115,101,110,116,45,98,97,114,16,0,26,35,115,97,110,111,109,97,45,99,111,110,115,101,110,116,45,98,97,114,45,109,111,98,105,108,101,16,0,15,35,115,97,112,45,100,105,115,99,108,97,105,109,101,114,16,0,29,35,115,98,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,111,118,101,114,108,97,121,16,0,18,35,115,98,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,16,0,21,35,115,98,69,117,67,111,111,107,105,101,67,111,110,115,101,110,116,66,111,120,16,0,12,35,115,98,101,117,45,99,111,111,107,105,101,16,0,21,35,115,99,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,16,0,23,35,115,99,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,16,35,115,99,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,12,35,115,99,45,103,100,112,114,45,98,111,120,16,0,14,35,115,99,67,111,111,107,105,101,77,111,100,97,108,16,0,14,35,115,99,95,116,104,105,115,112,111,108,105,99,121,16,0,12,35,115,99,99,45,99,111,110,115,101,110,116,16,0,15,35,115,99,99,45,99,111,111,107,105,101,45,98,97,114,16,0,19,35,115,99,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,9,35,115,99,99,45,109,97,115,107,16,0,16,35,115,99,99,67,111,111,107,105,101,66,97,110,110,101,114,16,0,25,35,115,99,104,105,102,116,101,114,115,45,103,100,112,114,45,99,111,110,116,97,105,110,101,114,16,0,11,35,115,99,109,112,45,112,111,112,105,110,16,0,19,35,115,99,109,115,45,99,99,45,99,111,111,107,105,101,45,98,97,114,16,0,16,35,115,99,110,98,45,99,111,111,107,105,101,45,98,97,114,16,0,14,35,115,100,45,101,117,45,99,111,111,107,105,101,115,16,0,15,35,115,100,67,111,111,107,105,101,66,97,110,110,101,114,16,0,24,35,115,100,98,67,111,111,107,105,101,76,101,103,97,108,67,111,110,116,97,105,110,101,114,16,0,21,35,115,100,103,100,112,114,95,109,111,100,97,108,95,119,114,97,112,112,101,114,16,0,29,35,115,101,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,115,101,99,99,97,111,49,32,62,32,35,99,111,111,107,105,101,16,0,14,35,115,101,99,99,105,111,99,111,111,107,105,101,115,16,0,15,35,115,101,99,116,105,111,110,45,99,111,111,107,105,101,16,0,28,35,115,101,99,116,105,111,110,45,99,111,111,107,105,101,95,110,111,116,105,116,105,99,97,116,105,111,110,16,0,16,35,115,101,99,116,105,111,110,45,99,111,111,107,105,101,115,16,0,15,35,115,101,99,116,105,111,110,95,99,111,111,107,105,101,16,0,13,35,115,101,99,116,105,111,110,95,114,103,112,100,16,0,19,35,115,101,101,100,68,105,118,67,111,111,107,105,101,76,97,119,73,100,16,0,22,35,115,101,101,100,68,105,118,67,111,111,107,105,101,119,76,97,119,73,110,102,111,16,0,25,35,115,101,103,110,97,108,97,122,105,111,110,101,95,99,111,111,107,105,101,115,95,101,120,116,16,0,14,35,115,101,108,108,121,45,99,111,111,107,105,101,115,16,0,19,35,115,101,109,111,99,111,111,107,105,101,45,104,97,110,100,108,101,114,16,0,26,35,115,101,111,98,108,111,103,103,101,114,116,105,112,115,45,99,111,111,107,105,101,45,105,102,121,16,0,11,35,115,101,114,97,67,111,111,107,105,101,16,0,21,35,115,101,114,97,118,111,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,16,35,115,101,114,118,105,99,101,115,45,99,111,111,107,105,101,16,0,18,35,115,102,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,16,35,115,102,45,99,111,111,107,105,101,45,109,111,100,97,108,16,0,19,35,115,102,67,111,111,107,105,101,87,97,114,110,105,110,103,66,97,114,16,0,25,35,115,102,67,111,111,107,105,101,87,97,114,110,105,110,103,66,97,114,83,112,97,99,101,114,16,0,17,35,115,102,104,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,27,35,115,103,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,45,111,117,116,115,105,100,101,16,0,19,35,115,103,67,111,111,107,105,101,115,80,111,108,105,99,121,66,97,114,16,0,26,35,115,103,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,101,115,115,97,103,101,16,0,10,35,115,103,99,111,111,107,105,101,115,16,0,11,35,115,103,115,95,99,111,111,107,105,101,16,0,15,35,115,104,97,100,111,119,45,99,111,111,107,105,101,115,16,0,10,35,115,104,97,105,109,95,99,107,115,16,0,13,35,115,104,97,105,109,95,99,107,115,95,101,117,16,0,17,35,115,104,97,114,101,80,114,111,102,105,108,101,76,105,110,107,16,0,19,35,115,104,97,114,101,100,95,103,100,112,114,95,102,111,111,116,101,114,16,0,13,35,115,104,97,114,107,45,99,111,111,107,105,101,16,0,12,35,115,104,111,112,45,99,111,111,107,105,101,16,0,24,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,115,16,0,28,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,115,95,108,97,119,16,0,30,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,115,95,112,111,112,117,112,16,0,35,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,28,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,103,100,112,114,45,100,105,97,108,111,103,16,0,28,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,103,100,112,114,45,110,111,116,105,99,101,16,0,38,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,103,108,111,98,97,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,27,35,115,104,111,112,105,108,108,97,120,99,111,111,107,105,101,108,97,119,45,119,114,97,112,112,101,114,16,0,25,35,115,104,111,114,116,104,97,110,100,45,103,100,112,114,45,99,111,110,116,97,105,110,101,114,16,0,19,35,115,104,111,114,116,112,105,120,101,108,45,99,111,111,107,105,101,115,16,0,12,35,115,104,111,119,45,99,111,111,107,105,101,16,0,11,35,115,104,111,119,67,111,111,107,105,101,16,0,15,35,115,104,111,119,67,111,111,107,105,101,73,110,102,111,16,0,20,35,115,104,111,119,95,98,97,110,110,101,114,95,99,111,111,107,105,101,115,16,0,12,35,115,104,111,119,95,99,111,111,107,105,101,16,0,20,35,115,104,111,119,95,99,111,111,107,105,101,95,99,111,110,116,101,110,116,16,0,13,35,115,104,111,119,95,99,111,111,107,105,101,115,16,0,11,35,115,104,111,119,99,111,111,107,105,101,16,0,16,35,115,104,111,119,99,111,111,107,105,101,97,108,101,114,116,16,0,15,35,115,104,111,119,99,111,111,107,105,101,105,110,102,111,16,0,14,35,115,104,111,119,99,111,111,107,105,101,108,97,119,16,0,24,35,115,104,111,119,99,111,111,107,105,101,112,114,105,118,97,99,121,95,112,111,112,117,112,16,0,14,35,115,104,111,119,99,111,111,107,105,101,116,120,116,16,0,21,35,115,105,45,98,115,116,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,16,35,115,105,101,101,45,99,111,111,107,105,101,45,98,97,114,16,0,16,35,115,105,107,111,109,111,114,95,99,111,111,107,105,101,115,16,0,14,35,115,105,109,112,108,101,45,99,111,111,107,105,101,16,0,21,35,115,105,109,112,108,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,22,35,115,105,109,112,108,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,24,35,115,105,109,112,108,101,45,101,117,45,99,111,111,107,105,101,99,111,110,116,114,111,108,16,0,32,35,115,105,109,112,108,101,45,101,117,45,99,111,111,107,105,101,99,111,110,116,114,111,108,45,111,118,101,114,108,97,121,16,0,19,35,115,105,109,112,108,101,65,99,99,101,112,116,67,111,111,107,105,101,16,0,16,35,115,105,109,112,108,101,67,111,111,107,105,101,66,97,114,16,0,26,35,115,105,109,112,108,101,67,111,111,107,105,101,67,111,110,115,101,110,116,45,112,111,112,117,112,16,0,19,35,115,105,109,112,108,101,67,111,111,107,105,101,68,105,97,108,111,103,16,0,30,35,115,105,109,112,108,101,99,108,105,99,107,95,117,105,115,95,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,11,35,115,105,109,112,108,101,99,111,111,107,16,0,25,35,115,105,109,112,108,101,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,16,0,29,35,115,105,109,112,108,101,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,95,118,48,49,16,0,24,35,115,105,116,101,45,97,108,101,114,116,45,99,111,111,107,105,101,110,111,116,105,99,101,16,0,17,35,115,105,116,101,45,98,97,110,110,101,114,45,103,100,112,114,16,0,12,35,115,105,116,101,45,99,111,111,107,105,101,16,0,19,35,115,105,116,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,19,35,115,105,116,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,15,35,115,105,116,101,45,99,111,111,107,105,101,98,97,114,16,0,13,35,115,105,116,101,45,99,111,111,107,105,101,115,16,0,20,35,115,105,116,101,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,21,35,115,105,116,101,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,115,16,0,25,35,115,105,116,101,45,102,111,111,116,101,114,95,97,108,101,114,116,95,99,111,111,107,105,101,16,0,33,35,115,105,116,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,32,35,115,105,116,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,112,111,108,105,99,121,45,99,104,97,110,103,101,16,0,18,35,115,105,116,101,45,111,112,116,105,110,45,104,101,97,100,101,114,16,0,20,35,115,105,116,101,45,119,101,45,117,115,101,45,99,111,111,107,105,101,115,16,0,25,35,115,105,116,101,45,119,105,100,101,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,11,35,115,105,116,101,67,111,111,107,105,101,16,0,17,35,115,105,116,101,80,114,105,118,97,99,121,77,111,100,97,108,16,0,20,35,115,105,116,101,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,16,0,24,35,115,105,116,101,95,99,111,111,107,105,101,115,95,119,97,114,110,105,110,103,95,105,100,16,0,28,35,115,105,116,101,95,102,111,111,116,101,114,95,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,18,35,115,105,116,101,95,105,110,102,111,95,99,111,111,107,105,101,115,16,0,16,35,115,105,116,101,95,109,115,103,95,99,111,111,107,105,101,16,0,17,35,115,105,116,101,99,111,111,107,105,101,98,97,110,110,101,114,16,0,23,35,115,105,116,101,109,97,110,97,103,101,114,45,99,111,111,107,105,101,45,98,97,114,16,0,27,35,115,105,116,101,117,115,101,115,99,111,111,107,105,101,119,97,114,110,105,110,103,115,116,114,105,112,16,0,18,35,115,105,117,95,99,111,111,107,105,101,104,105,110,119,101,105,115,16,0,17,35,115,105,118,95,99,111,111,107,105,101,66,97,110,110,101,114,16,0,12,35,115,105,122,122,108,101,45,103,100,112,114,16,0,22,35,115,105,122,122,108,101,45,103,100,112,114,45,115,117,112,114,101,115,115,111,114,16,0,11,35,115,107,45,99,111,111,107,105,101,115,16,0,10,35,115,107,99,111,111,107,105,101,115,16,0,21,35,115,107,112,99,115,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,115,107,118,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,15,35,115,107,121,45,99,111,111,107,105,101,45,98,97,114,16,0,22,35,115,107,121,99,111,109,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,15,35,115,108,95,99,111,111,107,105,101,95,105,110,102,111,16,0,9,35,115,108,97,112,117,107,97,105,16,0,23,35,115,108,97,115,104,97,100,109,105,110,95,101,117,99,111,111,107,105,101,108,97,119,16,0,18,35,115,108,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,16,35,115,108,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,17,35,115,108,105,99,107,77,111,100,97,108,67,111,111,107,105,101,16,0,16,35,115,108,105,100,101,45,105,110,45,99,111,111,107,105,101,16,0,21,35,115,108,105,100,101,95,104,101,97,100,101,114,95,99,111,111,107,105,101,115,16,0,15,35,115,108,105,100,101,105,116,45,99,111,111,107,105,101,16,0,27,35,115,108,105,100,105,110,103,45,112,111,112,117,112,45,99,111,111,107,105,101,115,45,99,111,110,116,16,0,17,35,115,108,105,100,105,110,103,67,111,111,107,105,101,68,105,118,16,0,15,35,115,108,120,95,99,111,111,107,105,101,95,108,97,119,16,0,20,35,115,109,45,101,117,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,20,35,115,109,95,111,112,116,105,110,95,98,116,110,95,114,101,118,105,101,119,16,0,28,35,115,109,97,108,108,45,112,111,112,117,112,45,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,16,0,15,35,115,109,97,114,116,45,99,109,112,45,104,111,115,116,16,0,19,35,115,109,97,114,116,99,111,111,107,105,101,115,95,102,114,97,109,101,16,0,24,35,115,109,97,114,116,119,101,98,45,101,117,99,111,111,107,105,101,45,119,101,114,114,97,16,0,25,35,115,109,99,99,95,104,101,97,100,101,114,95,99,111,111,107,105,101,97,99,99,101,112,116,16,0,11,35,115,109,101,95,99,111,111,107,105,101,16,0,16,35,115,109,101,99,111,111,107,105,101,110,111,116,105,99,101,16,0,21,35,115,109,105,108,101,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,19,35,115,109,105,108,101,67,111,111,107,105,101,67,111,110,116,114,111,108,16,0,28,35,115,109,105,108,101,95,99,111,111,107,105,101,99,101,112,116,105,111,110,95,98,97,110,100,101,97,117,16,0,11,35,115,110,95,99,111,111,107,105,101,115,16,0,21,35,115,110,97,99,107,98,97,114,45,99,111,111,107,105,101,45,105,110,102,111,16,0,17,35,115,110,105,112,112,101,116,45,45,99,111,111,107,105,101,115,16,0,32,35,115,110,105,112,112,101,116,45,99,111,111,107,105,101,65,108,108,111,119,45,99,111,111,107,105,101,65,108,108,111,119,16,0,19,35,115,110,105,112,112,101,116,45,99,111,111,107,105,101,66,97,114,45,16,0,33,35,115,110,105,112,112,101,116,45,99,111,111,107,105,101,67,111,110,116,114,111,108,45,99,111,111,107,105,101,73,110,102,111,16,0,32,35,115,110,105,112,112,101,116,45,99,111,111,107,105,101,83,116,114,105,112,45,99,111,111,107,105,101,83,116,114,105,112,16,0,36,35,115,110,105,112,112,101,116,45,99,111,111,107,105,101,115,65,103,114,101,101,109,101,110,116,67,111,110,116,114,111,108,45,98,97,114,16,0,11,35,115,110,109,99,111,111,107,105,101,115,16,0,24,35,115,111,105,45,103,108,111,98,97,108,45,112,114,105,118,97,99,121,45,105,110,102,111,16,0,12,35,115,111,111,112,97,99,111,111,107,105,101,16,0,12,35,115,111,116,116,111,99,111,111,107,105,101,16,0,25,35,115,111,121,45,103,116,109,99,111,111,107,105,101,115,45,109,97,105,110,98,108,111,99,107,16,0,18,35,115,111,121,99,111,110,116,114,111,108,99,111,111,107,105,101,115,16,0,28,35,115,111,121,99,111,110,116,114,111,108,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,16,0,18,35,115,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,19,35,115,112,45,103,100,112,114,45,99,111,110,115,101,110,116,45,117,105,16,0,15,35,115,112,97,114,116,111,111,67,111,111,107,105,101,115,16,0,17,35,115,112,99,45,112,111,112,117,112,45,99,111,111,107,105,101,16,0,13,35,115,112,99,111,111,107,105,101,103,100,112,114,16,0,25,35,115,112,101,97,107,111,117,116,45,99,111,111,107,105,101,45,116,101,109,112,108,97,116,101,16,0,16,35,115,112,102,99,111,111,107,105,101,98,97,110,110,101,114,16,0,16,35,115,112,105,99,111,111,107,105,101,98,97,110,110,101,114,16,0,16,35,115,112,108,101,116,107,111,45,99,111,111,107,105,101,115,16,0,14,35,115,112,111,105,108,101,114,67,111,111,107,105,101,16,0,24,35,115,112,111,116,98,117,122,122,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,14,35,115,112,114,97,99,104,104,105,110,119,101,105,115,16,0,13,35,115,112,114,100,45,99,111,110,115,101,110,116,16,0,29,35,115,112,117,116,110,105,107,95,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,97,110,110,101,114,16,0,17,35,115,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,16,35,115,114,97,67,111,111,107,105,101,66,97,110,110,101,114,16,0,19,35,115,115,99,67,111,111,107,105,101,83,116,97,116,101,109,101,110,116,16,0,21,35,115,115,116,45,102,111,111,116,101,114,45,99,99,112,97,45,110,111,116,101,16,0,23,35,115,116,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,117,112,16,0,12,35,115,116,67,111,111,107,105,101,98,111,120,16,0,10,35,115,116,95,99,111,111,107,105,101,16,0,15,35,115,116,95,103,100,112,114,95,105,102,114,97,109,101,16,0,23,35,115,116,97,45,103,100,112,114,45,109,111,100,97,108,45,111,118,101,114,108,97,121,16,0,26,35,115,116,97,114,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,27,35,115,116,97,114,116,101,114,45,112,114,111,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,29,35,115,116,97,114,116,115,105,100,101,110,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,27,35,115,116,97,114,116,115,105,100,101,110,45,103,100,112,114,45,100,105,115,99,108,97,105,109,101,114,16,0,29,35,115,116,97,116,105,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,16,0,10,35,115,116,100,67,111,111,107,105,101,16,0,16,35,115,116,103,45,112,114,105,118,97,99,121,45,98,97,114,16,0,26,35,115,116,105,99,107,121,45,98,97,114,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,16,35,115,116,105,99,107,121,45,98,97,114,45,103,100,112,114,16,0,22,35,115,116,105,99,107,121,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,15,35,115,116,105,99,107,121,45,99,111,111,107,105,101,115,16,0,21,35,115,116,105,99,107,121,45,112,111,112,117,112,45,99,111,111,107,105,101,115,16,0,26,35,115,116,105,99,107,121,87,97,114,110,105,110,103,67,111,111,107,105,101,80,111,108,105,99,121,16,0,19,35,115,116,105,99,107,121,99,111,111,107,105,101,80,111,108,105,99,121,16,0,19,35,115,116,105,99,107,121,110,111,116,101,52,99,111,111,107,105,101,115,16,0,27,35,115,116,105,116,99,104,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,15,35,115,116,107,45,99,111,111,107,105,101,45,98,97,114,16,0,20,35,115,116,109,95,103,100,112,114,95,112,111,112,117,112,45,109,97,105,110,16,0,20,35,115,116,110,99,45,99,111,111,107,105,101,99,111,110,116,114,97,99,116,16,0,18,35,115,116,111,45,99,111,111,107,105,101,77,101,115,115,97,103,101,16,0,13,35,115,116,111,112,99,111,111,107,105,110,102,111,16,0,25,35,115,116,111,114,101,102,114,111,110,116,95,99,111,111,107,105,101,95,119,105,100,103,101,116,16,0,13,35,115,116,111,114,109,45,99,111,111,107,105,101,16,0,19,35,115,116,111,114,109,67,111,111,107,105,101,77,101,108,100,105,110,103,16,0,17,35,115,116,111,114,109,67,111,111,107,105,101,80,111,112,117,112,16,0,16,35,115,116,111,114,109,67,111,111,107,105,101,87,97,108,108,16,0,26,35,115,116,111,114,109,100,105,103,105,116,97,108,45,99,111,111,107,105,101,87,97,108,108,73,100,16,0,24,35,115,116,111,114,121,105,102,121,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,19,35,115,116,114,97,118,97,67,111,111,107,105,101,66,97,110,110,101,114,16,0,21,35,115,116,114,97,119,98,101,114,114,121,45,99,111,111,107,105,101,98,97,114,16,0,14,35,115,116,114,105,112,101,45,99,111,111,107,105,101,16,0,14,35,115,116,114,105,112,101,95,104,97,109,109,111,110,16,0,11,35,115,116,116,45,99,111,111,107,105,101,16,0,21,35,115,117,98,115,101,114,118,105,99,101,67,111,111,107,105,101,115,66,97,114,16,0,23,35,115,117,105,45,84,99,102,70,105,114,115,116,76,97,121,101,114,77,111,100,97,108,16,0,19,35,115,117,109,109,117,115,95,99,111,111,107,105,101,95,105,110,102,111,16,0,18,35,115,117,110,45,99,111,111,107,105,101,77,101,115,115,97,103,101,16,0,23,35,115,117,110,45,99,111,111,107,105,101,77,101,115,115,97,103,101,73,110,110,101,114,16,0,20,35,115,117,112,101,114,109,97,103,45,99,111,111,107,105,101,45,105,102,121,16,0,11,35,115,117,114,118,101,121,95,98,97,114,16,0,10,35,115,117,116,105,46,115,117,116,105,16,0,16,35,115,117,116,105,84,97,106,101,107,111,122,116,97,116,111,16,0,20,35,115,117,116,105,95,102,105,103,121,101,108,109,101,122,116,101,116,101,115,16,0,30,35,115,117,116,105,95,102,105,103,121,101,108,109,101,122,116,101,116,101,115,95,97,98,108,97,107,95,102,105,120,16,0,10,35,115,117,116,105,95,105,110,102,111,16,0,13,35,115,117,116,105,95,107,101,122,101,108,101,115,16,0,8,35,115,117,116,105,98,111,120,16,0,6,35,115,117,116,105,107,16,0,32,35,115,117,116,105,107,95,104,97,115,122,110,97,108,97,116,97,95,102,105,103,121,101,108,109,101,122,116,101,116,101,115,16,0,7,35,115,117,116,105,107,101,16,0,18,35,115,118,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,30,35,115,118,116,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,67,111,110,116,97,105,110,101,114,16,0,14,35,115,119,69,85,67,111,111,107,105,101,115,73,68,16,0,11,35,115,119,95,99,111,111,107,105,101,115,16,0,18,35,115,119,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,24,35,115,119,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,115,109,97,108,108,16,0,19,35,115,119,108,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,17,35,115,120,99,95,99,111,110,102,105,114,109,97,116,105,111,110,16,0,16,35,115,120,111,67,111,111,107,105,101,115,65,108,101,114,116,16,0,19,35,115,121,108,45,99,111,111,107,105,101,45,109,111,110,115,116,101,114,16,0,24,35,115,121,110,97,112,115,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,49,16,0,23,35,115,121,110,101,114,103,105,95,99,111,111,107,105,101,95,119,114,97,112,112,101,114,16,0,26,35,115,121,110,101,114,103,105,95,105,110,110,101,114,95,105,110,102,111,114,109,97,116,105,111,110,16,0,17,35,115,121,115,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,11,35,115,121,115,67,111,111,107,105,101,115,16,0,15,35,115,122,67,111,111,107,105,101,80,111,108,105,99,121,16,0,12,35,115,122,99,111,111,107,105,101,119,114,112,16,0,17,35,115,122,107,67,111,111,107,105,101,73,110,102,111,66,111,120,16,0,13,35,115,122,111,67,111,111,107,105,101,66,97,114,16,0,15,35,116,50,109,101,117,99,111,111,107,105,101,108,97,119,16,0,15,35,116,51,67,111,111,107,105,101,78,111,116,105,99,101,16,0,18,35,116,52,109,45,100,115,103,118,111,45,99,111,110,115,101,110,116,16,0,13,35,116,95,99,111,111,107,105,101,73,110,102,111,16,0,13,35,116,97,98,108,101,45,99,111,111,107,105,101,16,0,22,35,116,97,114,116,101,97,117,99,105,116,114,111,110,45,111,118,101,114,108,97,121,16,0,19,35,116,97,114,116,101,97,117,99,105,116,114,111,110,45,114,111,111,116,16,0,22,35,116,97,114,116,101,97,117,99,105,116,114,111,110,65,108,101,114,116,66,105,103,16,0,14,35,116,97,118,105,115,111,99,111,111,107,105,101,115,16,0,18,35,116,97,120,105,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,16,35,116,98,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,21,35,116,98,119,101,98,95,99,111,111,107,105,101,115,95,102,111,111,116,101,114,16,0,11,35,116,99,45,99,111,110,115,101,110,116,16,0,19,35,116,99,45,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,16,0,14,35,116,99,95,99,110,105,108,95,112,111,112,117,112,16,0,14,35,116,99,95,99,111,111,107,105,101,95,111,112,116,16,0,22,35,116,99,95,112,114,105,118,95,67,117,115,116,111,109,79,118,101,114,108,97,121,16,0,11,35,116,99,95,112,114,105,118,97,99,121,16,0,22,35,116,99,95,112,114,105,118,97,99,121,95,98,111,116,116,111,109,95,102,105,120,16,0,19,35,116,99,95,112,114,105,118,97,99,121,95,119,114,97,112,112,101,114,16,0,14,35,116,99,95,114,103,112,100,95,112,111,112,117,112,16,0,11,35,116,99,99,99,111,111,107,105,101,115,16,0,11,35,116,99,110,95,110,111,116,105,99,101,16,0,16,35,116,101,97,108,105,117,109,45,99,111,111,107,105,101,115,16,0,19,35,116,101,97,108,105,117,109,95,101,110,115,77,111,100,97,108,66,71,16,0,10,35,116,101,99,111,110,115,101,110,116,16,0,15,35,116,101,109,101,108,99,111,111,107,105,101,112,111,112,16,0,23,35,116,101,109,112,108,97,116,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,17,35,116,101,110,97,110,116,65,99,99,101,112,116,84,101,120,116,16,0,16,35,116,101,114,109,105,110,111,115,67,111,111,107,105,101,115,16,0,35,35,116,101,114,109,108,121,45,99,111,100,101,45,115,110,105,112,112,101,116,45,115,117,112,112,111,114,116,45,98,97,110,110,101,114,16,0,16,35,116,101,114,109,111,45,100,101,45,99,111,111,107,105,101,16,0,21,35,116,101,114,109,111,45,100,101,45,99,111,111,107,105,101,95,105,110,118,105,16,0,14,35,116,101,114,109,111,115,45,99,111,111,107,105,101,16,0,22,35,116,101,114,109,115,45,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,16,0,23,35,116,101,114,109,115,65,110,100,80,114,105,118,97,99,121,70,108,111,97,116,101,114,16,0,12,35,116,101,114,109,115,78,111,116,105,99,101,16,0,23,35,116,101,114,109,115,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,12,35,116,101,114,109,115,99,111,111,107,105,101,16,0,24,35,116,101,115,99,111,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,20,35,116,101,115,99,111,95,99,111,111,107,105,101,95,119,105,100,103,101,116,16,0,21,35,116,101,115,99,111,95,112,111,108,105,99,121,95,119,105,100,103,101,116,49,16,0,18,35,116,101,120,116,65,99,99,101,112,116,67,111,111,107,105,101,115,16,0,16,35,116,101,120,116,73,110,102,111,67,111,111,107,105,101,115,16,0,20,35,116,101,120,116,111,95,97,118,105,115,111,95,99,111,111,107,105,101,115,16,0,21,35,116,101,120,120,97,115,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,18,35,116,102,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,16,0,15,35,116,102,99,111,111,107,105,101,45,109,111,100,97,108,16,0,15,35,116,102,101,45,99,111,111,107,105,101,45,98,97,114,16,0,20,35,116,102,101,45,99,111,111,107,105,101,45,108,105,103,104,116,98,111,120,16,0,31,35,116,102,101,45,99,111,111,107,105,101,45,108,105,103,104,116,98,111,120,45,115,109,111,107,101,108,97,121,101,114,16,0,12,35,116,102,108,45,99,111,111,107,105,101,115,16,0,21,35,116,102,109,95,100,115,103,118,111,95,100,105,115,99,108,97,105,109,101,114,16,0,12,35,116,102,111,95,99,111,111,107,105,101,115,16,0,16,35,116,103,98,103,100,112,114,45,111,118,101,114,108,97,121,16,0,13,35,116,104,45,45,101,117,99,111,111,107,105,101,16,0,11,35,116,104,101,45,99,111,111,107,105,101,16,0,10,35,116,104,101,67,111,111,107,105,101,16,0,14,35,116,104,101,67,111,111,107,105,101,78,111,116,101,16,0,13,35,116,104,101,76,97,119,67,111,111,107,105,101,16,0,13,35,116,104,101,95,99,111,111,107,105,101,115,51,16,0,10,35,116,104,101,99,111,111,107,105,101,16,0,10,35,116,104,101,101,99,108,98,111,120,16,0,13,35,116,104,101,109,101,95,99,111,111,107,105,101,16,0,32,35,116,104,101,115,101,117,115,67,111,111,107,105,101,80,111,108,105,99,121,95,117,108,67,111,111,107,105,101,80,111,108,16,0,28,35,116,104,105,110,107,99,111,110,115,101,110,116,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,16,0,18,35,116,104,105,115,99,111,111,107,105,101,109,101,115,115,97,103,101,16,0,15,35,116,105,70,121,95,67,111,111,107,105,101,76,97,119,16,0,18,35,116,105,100,95,99,111,111,107,105,101,87,97,114,110,105,110,103,16,0,19,35,116,105,102,121,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,20,35,116,105,110,100,105,101,95,99,111,111,107,105,101,95,97,108,101,114,116,16,0,16,35,116,105,110,115,95,99,111,111,107,105,101,95,98,97,114,16,0,19,35,116,105,110,121,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,11,35,116,105,112,67,111,111,107,105,101,115,16,0,14,35,116,105,114,111,105,114,95,99,111,111,107,105,101,16,0,15,35,116,105,118,45,99,111,111,107,105,101,45,98,97,114,16,0,20,35,116,108,45,99,111,111,107,105,101,45,112,111,112,117,112,45,98,111,120,16,0,19,35,116,108,67,111,109,109,111,110,71,100,112,114,66,97,110,110,101,114,16,0,33,35,116,108,67,111,111,107,105,101,67,111,109,112,108,105,101,110,99,101,73,110,105,116,105,97,108,87,114,97,112,112,101,114,16,0,11,35,116,108,111,95,99,111,111,107,105,101,16,0,18,35,116,108,112,45,99,111,111,107,105,101,115,45,112,111,112,117,112,16,0,17,35,116,108,115,99,111,111,107,105,101,115,101,117,45,98,97,114,16,0,16,35,116,109,80,114,105,118,97,99,121,68,105,97,108,111,103,16,0,17,35,116,109,80,114,105,118,97,99,121,79,118,101,114,108,97,121,16,0,15,35,116,109,80,114,105,118,97,99,121,83,116,121,108,101,16,0,14,35,116,109,112,95,108,101,103,97,108,95,98,97,114,16,0,24,35,116,109,114,99,95,99,111,111,107,105,101,95,102,111,111,116,101,114,95,105,110,102,111,16,0,13,35,116,110,45,99,111,111,107,105,101,98,97,114,16,0,18,35,116,110,119,95,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,17,35,116,110,122,99,111,111,107,105,101,95,98,111,116,116,111,109,16,0,14,35,116,111,97,115,116,45,99,111,111,107,105,101,115,16,0,10,35,116,111,97,115,116,76,103,112,100,16,0,24,35,116,111,97,115,116,115,32,62,32,35,116,111,97,115,116,115,87,114,97,112,112,101,114,16,0,20,35,116,111,102,105,110,111,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,13,35,116,111,111,103,45,99,111,111,107,105,101,115,16,0,15,35,116,111,111,108,98,97,114,45,99,111,111,107,105,101,16,0,16,35,116,111,111,108,98,97,114,95,99,111,111,107,105,101,115,16,0,15,35,116,111,111,108,116,105,112,45,99,111,111,107,105,101,16,0,22,35,116,111,111,108,116,105,112,45,112,114,105,118,97,99,121,45,115,104,111,119,110,16,0,19,35,116,111,112,45,99,111,111,107,105,101,45,115,101,99,116,105,111,110,16,0,19,35,116,111,112,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,24,35,116,111,112,45,109,101,115,115,97,103,101,45,105,110,102,111,45,99,111,111,107,105,101,16,0,10,35,116,111,112,67,111,111,107,105,101,16,0,16,35,116,111,112,67,111,111,107,105,101,66,97,110,110,101,114,16,0,13,35,116,111,112,67,111,111,107,105,101,115,73,68,16,0,17,35,116,111,112,69,117,67,111,111,107,105,101,65,108,101,114,116,16,0,16,35,116,111,112,95,99,111,111,107,105,101,80,111,112,85,112,16,0,17,35,116,111,112,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,26,35,116,111,112,95,104,101,97,100,101,114,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,24,35,116,111,112,98,97,114,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,15,35,116,111,112,98,97,114,45,99,111,111,107,105,101,115,16,0,10,35,116,111,112,99,111,111,107,105,101,16,0,11,35,116,111,115,45,98,97,110,110,101,114,16,0,10,35,116,111,115,98,97,110,110,101,114,16,0,25,35,116,111,119,110,115,105,100,101,45,99,111,111,107,105,101,98,97,114,45,111,117,116,101,114,16,0,17,35,116,112,45,99,111,111,107,105,101,45,115,99,114,105,112,116,16,0,18,35,116,112,108,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,9,35,116,114,67,111,111,107,105,101,16,0,15,35,116,114,97,99,107,67,111,111,107,105,101,66,97,114,16,0,15,35,116,114,97,99,107,101,114,45,98,97,110,110,101,114,16,0,16,35,116,114,97,99,107,101,114,45,119,97,114,110,105,110,103,16,0,26,35,116,114,97,99,107,101,114,115,45,97,115,107,45,99,111,110,115,101,110,116,45,103,100,112,114,16,0,29,35,116,114,97,99,107,105,110,103,45,97,103,114,101,101,46,115,116,105,99,107,121,45,98,111,116,116,111,109,16,0,17,35,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,16,0,28,35,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,98,108,111,99,107,45,112,97,103,101,16,0,28,35,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,45,110,101,119,16,0,34,35,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,104,101,97,100,101,114,45,99,111,110,116,97,105,110,101,114,16,0,17,35,116,114,97,99,107,105,110,103,45,99,111,111,107,105,101,115,16,0,15,35,116,114,97,99,107,105,110,103,67,111,111,107,105,101,16,0,22,35,116,114,97,99,107,105,110,103,80,101,114,109,105,115,115,105,111,110,66,97,114,16,0,23,35,116,114,97,99,107,105,110,103,95,99,111,110,115,101,110,116,95,109,111,100,97,108,16,0,17,35,116,114,97,99,107,105,110,103,95,104,105,110,119,101,105,115,16,0,22,35,116,114,97,99,107,105,110,103,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,116,114,97,110,122,121,115,116,111,114,99,111,111,107,105,101,115,16,0,20,35,116,114,97,118,101,108,116,97,45,99,111,111,107,105,101,45,98,97,114,16,0,19,35,116,114,105,97,100,95,103,100,112,114,95,99,111,110,115,101,110,116,16,0,11,35,116,114,105,103,67,111,111,107,105,101,16,0,29,35,116,114,105,112,105,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,110,111,116,105,99,101,16,0,21,35,116,114,106,115,45,99,111,111,107,105,101,115,45,101,108,101,109,101,110,116,16,0,12,35,116,114,111,110,105,99,45,103,100,112,114,16,0,25,35,116,114,117,111,110,103,98,108,111,103,103,101,114,45,99,111,111,107,105,101,45,105,102,121,16,0,14,35,116,114,117,115,116,101,45,98,97,110,110,101,114,16,0,14,35,116,114,117,115,116,101,45,98,117,116,116,111,110,16,0,21,35,116,114,117,115,116,101,45,99,111,110,115,101,110,116,45,116,114,97,99,107,16,0,21,35,116,114,117,121,111,45,99,111,110,115,101,110,116,45,109,111,100,117,108,101,16,0,15,35,116,115,95,99,111,111,107,105,101,95,105,110,102,111,16,0,12,35,116,115,99,111,111,107,105,101,98,97,114,16,0,15,35,116,115,111,45,99,111,111,107,105,101,45,98,97,114,16,0,16,35,116,116,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,16,35,116,116,45,99,111,111,107,105,101,45,98,97,100,103,101,16,0,16,35,116,116,45,99,111,111,107,105,101,45,99,104,101,99,107,16,0,17,35,116,116,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,18,35,116,116,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,17,35,116,116,45,99,111,111,107,105,101,45,119,105,110,100,111,119,16,0,19,35,116,116,45,99,111,111,107,105,101,98,97,114,45,102,114,97,109,101,16,0,11,35,116,116,95,99,111,111,107,105,101,115,16,0,15,35,116,116,99,111,111,107,105,101,45,111,117,116,101,114,16,0,18,35,116,116,103,45,97,99,99,101,112,116,45,99,111,111,107,105,101,16,0,23,35,116,116,103,70,111,111,116,101,114,67,111,111,107,105,101,72,105,110,119,101,105,115,16,0,18,35,116,116,111,45,99,111,111,107,105,101,77,101,115,115,97,103,101,16,0,18,35,116,116,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,25,35,116,117,45,99,111,111,107,105,101,115,45,101,117,45,99,111,109,112,108,105,97,110,99,101,16,0,28,35,116,117,105,95,119,105,100,103,101,116,95,67,111,111,107,105,101,78,111,116,105,102,105,101,114,95,48,16,0,10,35,116,118,45,99,111,111,107,105,101,16,0,12,35,116,118,45,99,111,111,107,105,101,45,49,16,0,17,35,116,118,50,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,13,35,116,118,50,99,111,111,107,105,101,98,97,114,16,0,11,35,116,118,108,99,111,111,107,105,101,115,16,0,12,35,116,118,115,97,45,99,111,111,107,105,101,16,0,10,35,116,119,45,99,111,111,107,105,101,16,0,16,35,116,119,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,13,35,116,119,99,67,111,111,107,105,101,68,105,118,16,0,10,35,116,119,101,67,111,111,107,105,101,16,0,32,35,116,120,45,101,109,104,99,111,111,107,105,101,98,97,110,110,101,114,45,98,97,110,110,101,114,119,105,100,103,101,116,16,0,33,35,116,120,45,109,103,101,110,98,97,115,101,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,110,111,116,105,99,101,16,0,34,35,116,120,95,99,111,111,107,105,101,99,111,110,115,101,110,116,95,112,114,101,102,101,114,101,110,99,101,115,95,101,100,105,116,16,0,11,35,116,120,95,99,111,111,107,105,101,115,16,0,24,35,116,120,95,99,112,115,99,111,111,107,105,101,105,110,102,111,98,111,120,95,112,105,49,16,0,21,35,116,120,95,102,101,95,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,29,35,116,120,95,109,112,99,112,105,119,105,107,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,16,0,20,35,116,120,95,119,119,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,11,35,116,120,116,67,111,111,107,105,101,115,16,0,11,35,116,121,116,117,108,95,114,111,100,111,16,0,12,35,117,97,112,112,45,98,97,110,110,101,114,16,0,22,35,117,98,50,52,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,16,35,117,99,45,98,97,110,110,101,114,45,109,111,100,97,108,16,0,34,35,117,99,45,98,116,110,45,111,117,116,115,105,100,101,45,99,108,105,99,107,45,98,97,110,110,101,114,45,109,111,100,97,108,16,0,24,35,117,99,45,99,101,110,116,114,97,108,45,98,97,110,110,101,114,45,109,111,100,97,108,16,0,16,35,117,99,45,112,114,105,118,97,99,121,45,99,104,105,112,16,0,16,35,117,99,110,45,103,100,112,114,45,98,97,110,110,101,114,16,0,19,35,117,100,102,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,11,35,117,100,108,45,99,111,111,107,105,101,16,0,13,35,117,100,116,67,111,111,107,105,101,98,111,120,16,0,17,35,117,101,45,99,111,111,107,105,101,45,110,111,116,105,102,121,16,0,18,35,117,101,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,10,35,117,101,95,99,111,111,107,105,101,16,0,9,35,117,101,99,111,111,107,105,101,16,0,10,35,117,101,99,111,111,107,105,101,115,16,0,18,35,117,102,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,12,35,117,102,103,45,99,111,111,107,105,101,115,16,0,16,35,117,103,51,45,99,111,111,107,105,101,45,105,110,102,111,16,0,15,35,117,104,102,67,111,111,107,105,101,65,108,101,114,116,16,0,17,35,117,105,45,97,108,108,111,119,45,99,111,111,107,105,101,115,16,0,10,35,117,105,45,99,111,111,107,105,101,16,0,17,35,117,105,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,31,35,117,105,45,99,111,111,107,105,101,45,115,117,112,112,111,114,116,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,14,35,117,105,45,105,100,45,99,111,111,107,105,101,115,16,0,16,35,117,105,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,13,35,117,105,95,99,111,111,107,105,101,98,108,107,16,0,18,35,117,106,115,122,111,95,99,111,111,107,105,101,97,108,101,114,116,16,0,14,35,117,107,45,99,111,111,107,105,101,45,117,115,101,16,0,9,35,117,107,67,111,111,107,105,101,16,0,15,35,117,107,67,111,111,107,105,101,72,101,97,100,101,114,16,0,14,35,117,107,67,111,111,107,105,101,80,111,112,85,112,16,0,14,35,117,107,67,111,111,107,105,101,80,111,112,117,112,16,0,20,35,117,107,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,21,35,117,107,111,111,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,15,35,117,107,111,111,95,99,111,111,107,105,101,108,97,119,16,0,14,35,117,107,111,111,99,111,111,107,105,101,108,97,119,16,0,12,35,117,110,67,111,111,107,105,101,67,110,116,16,0,18,35,117,110,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,18,35,117,110,105,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,18,35,117,110,105,95,97,99,99,101,112,116,95,99,111,111,107,105,101,16,0,18,35,117,110,105,100,101,98,45,103,100,112,114,45,98,108,111,99,107,16,0,20,35,117,110,105,108,101,118,101,114,67,111,111,107,105,101,80,111,112,117,112,16,0,25,35,117,110,105,115,97,110,116,97,45,99,111,111,107,105,101,45,109,101,110,115,97,103,101,109,16,0,20,35,117,110,105,116,99,111,111,107,105,101,111,110,112,97,103,101,66,97,114,16,0,16,35,117,110,105,116,115,99,111,111,107,105,101,45,108,97,119,16,0,17,35,117,111,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,17,35,117,111,99,95,99,111,111,107,105,101,95,105,110,116,114,111,16,0,16,35,117,111,100,99,111,111,107,105,101,110,111,116,105,99,101,16,0,10,35,117,112,45,99,111,111,107,105,101,16,0,15,35,117,112,45,103,100,112,114,45,98,97,110,110,101,114,16,0,21,35,117,112,100,97,116,101,100,80,114,105,118,97,99,121,80,111,108,105,99,121,16,0,11,35,117,115,45,99,111,111,107,105,101,115,16,0,15,35,117,115,95,99,111,111,107,105,101,115,95,109,115,103,16,0,10,35,117,115,99,111,111,107,105,101,115,16,0,14,35,117,115,101,45,111,102,45,99,111,111,107,105,101,16,0,19,35,117,115,101,67,111,111,107,105,101,65,103,114,101,101,109,101,110,116,16,0,22,35,117,115,101,67,111,111,107,105,101,115,65,99,99,101,112,116,66,108,111,99,107,16,0,15,35,117,115,101,67,111,111,107,105,101,115,67,111,110,116,16,0,11,35,117,115,101,95,99,111,111,107,105,101,16,0,18,35,117,115,101,95,99,111,111,107,105,101,95,114,101,109,105,110,100,16,0,12,35,117,115,101,95,99,111,111,107,105,101,115,16,0,14,35,117,115,101,95,111,102,95,99,111,111,107,105,101,16,0,11,35,117,115,101,99,111,111,107,105,101,115,16,0,22,35,117,115,101,114,45,97,103,114,101,101,109,101,110,116,45,110,111,116,105,102,121,16,0,20,35,117,115,101,114,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,16,0,20,35,117,115,101,114,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,20,35,117,115,101,114,45,99,111,111,107,105,101,45,109,115,103,45,98,111,120,16,0,20,35,117,115,101,114,65,103,114,101,101,109,101,110,116,66,97,110,110,101,114,16,0,17,35,117,115,101,114,67,111,110,115,101,110,116,68,97,116,97,115,16,0,13,35,117,115,101,114,95,99,111,111,107,105,101,115,16,0,18,35,117,115,101,114,95,111,112,116,105,110,95,98,97,110,110,101,114,16,0,15,35,117,115,101,114,99,111,111,107,105,101,115,104,111,119,16,0,14,35,117,115,101,114,109,115,103,67,111,111,107,105,101,16,0,13,35,117,115,105,110,103,67,111,111,107,105,101,115,16,0,19,35,117,115,105,110,103,67,111,111,107,105,101,115,66,97,110,110,101,114,16,0,14,35,117,115,105,110,103,95,99,111,111,107,105,101,115,16,0,19,35,117,115,111,80,111,108,105,116,105,99,97,67,111,111,107,105,101,115,16,0,12,35,117,115,111,95,99,111,111,107,105,101,115,16,0,15,35,117,115,111,95,100,101,105,95,99,111,111,107,105,101,16,0,11,35,117,115,111,99,111,111,107,105,101,115,16,0,11,35,117,115,114,67,111,110,115,101,110,116,16,0,11,35,117,115,114,99,111,111,107,105,101,115,16,0,13,35,117,115,116,97,119,97,67,111,111,107,105,101,16,0,14,35,117,116,45,99,111,111,107,105,101,45,98,97,114,16,0,22,35,117,116,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,98,97,114,16,0,24,35,117,116,105,108,105,115,97,116,105,111,110,45,100,101,115,45,99,111,111,107,105,101,115,16,0,19,35,117,116,105,108,105,115,97,116,105,111,110,67,111,111,107,105,101,115,16,0,12,35,118,45,99,111,111,107,105,101,108,97,119,16,0,16,35,118,45,99,111,111,107,105,101,109,101,115,115,97,103,101,16,0,23,35,118,52,99,111,114,101,95,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,16,0,18,35,118,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,21,35,118,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,103,16,0,11,35,118,97,100,45,99,111,111,107,105,101,16,0,14,35,118,97,108,105,100,95,99,111,111,107,105,101,115,16,0,17,35,118,97,108,105,100,97,116,105,111,110,67,111,111,107,105,101,16,0,20,35,118,97,114,105,97,110,45,103,100,112,114,45,99,111,110,115,101,110,116,16,0,14,35,118,99,45,98,97,114,45,99,111,111,107,105,101,16,0,18,35,118,99,109,45,118,45,99,111,110,115,101,110,116,45,115,100,107,16,0,16,35,118,100,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,17,35,118,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,24,35,118,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,115,112,97,99,101,114,16,0,11,35,118,101,110,99,111,111,107,105,101,115,16,0,16,35,118,101,110,116,97,110,97,45,99,111,111,107,105,101,115,16,0,15,35,118,101,110,116,97,110,97,67,111,111,107,105,101,115,16,0,15,35,118,101,114,97,118,105,115,111,99,111,111,107,105,101,16,0,18,35,118,101,114,105,102,105,99,97,114,45,99,111,111,107,105,101,115,16,0,17,35,118,101,115,116,105,45,71,68,80,82,45,102,114,97,109,101,16,0,16,35,118,104,45,99,111,111,107,105,101,45,116,101,114,109,115,16,0,17,35,118,104,98,45,99,111,110,115,101,110,116,108,97,121,101,114,16,0,12,35,118,105,101,119,67,111,111,107,105,101,115,16,0,21,35,118,105,101,119,108,101,116,45,99,111,111,107,105,101,112,111,108,105,99,121,16,0,19,35,118,105,101,119,108,101,116,45,100,105,115,99,108,97,105,109,101,114,16,0,21,35,118,105,115,109,111,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,18,35,118,105,117,99,111,109,45,99,111,111,107,105,101,45,98,97,114,16,0,19,35,118,105,118,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,26,35,118,107,95,99,111,111,107,105,101,95,109,97,110,97,103,101,114,45,45,98,97,110,110,101,114,16,0,14,35,118,109,45,99,111,111,107,105,101,45,98,97,114,16,0,18,35,118,109,108,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,22,35,118,111,103,111,110,115,45,99,111,111,107,105,101,115,45,109,97,115,116,101,114,16,0,26,35,118,111,105,101,108,108,111,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,19,35,118,111,112,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,16,0,22,35,118,112,45,106,115,45,99,111,111,107,105,101,115,95,95,110,111,116,105,99,101,16,0,14,35,118,114,103,112,100,95,98,97,110,100,101,97,117,16,0,11,35,118,114,110,45,99,111,111,107,105,101,16,0,18,35,118,115,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,17,35,118,115,45,99,111,111,107,105,101,104,105,110,119,101,105,115,16,0,18,35,118,115,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,16,0,17,35,118,115,99,99,111,111,107,105,101,67,111,110,115,101,110,116,16,0,18,35,118,115,99,111,111,107,105,101,65,108,101,114,116,67,111,110,116,16,0,23,35,118,115,101,98,105,110,97,79,112,111,122,111,114,105,108,97,67,111,111,107,105,101,16,0,17,35,118,115,109,95,99,111,111,107,105,101,95,99,104,101,99,107,16,0,14,35,118,116,45,99,99,98,45,110,111,116,105,102,121,16,0,22,35,118,116,114,105,99,107,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,11,35,118,117,95,99,111,110,115,101,110,116,16,0,24,35,118,117,95,108,97,121,101,114,95,99,111,111,107,105,101,95,99,111,110,116,101,110,116,16,0,20,35,118,117,101,45,97,112,112,45,112,114,105,118,97,99,121,45,98,97,114,16,0,10,35,118,117,101,67,111,111,107,105,101,16,0,8,35,118,117,101,71,100,112,114,16,0,14,35,118,117,101,95,99,111,111,107,105,101,108,97,119,16,0,11,35,118,118,99,95,99,111,111,107,105,101,16,0,13,35,118,119,100,67,111,111,107,105,101,66,97,114,16,0,17,35,119,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,25,35,119,49,56,108,97,114,97,95,116,103,112,108,117,103,105,110,95,99,111,110,115,101,110,116,16,0,18,35,119,50,117,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,10,35,119,51,53,55,95,99,112,110,98,16,0,12,35,119,51,115,45,99,111,111,107,105,101,115,16,0,16,35,119,52,117,45,99,111,111,107,105,101,45,105,110,102,111,16,0,14,35,119,67,111,111,107,105,101,78,111,116,105,99,101,16,0,9,35,119,97,67,111,111,107,105,101,16,0,7,35,119,97,71,68,80,82,16,0,14,35,119,97,95,99,109,112,79,118,101,114,108,97,121,16,0,17,35,119,97,102,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,16,35,119,97,103,101,110,116,111,45,99,112,45,119,114,97,112,16,0,15,35,119,97,104,45,103,100,112,114,45,112,111,112,117,112,16,0,12,35,119,97,110,116,99,111,111,107,105,101,115,16,0,18,35,119,97,114,110,45,99,111,111,107,105,101,115,45,97,114,101,97,16,0,12,35,119,97,114,110,67,111,111,107,105,101,115,16,0,13,35,119,97,114,110,95,99,111,111,107,105,101,115,16,0,15,35,119,97,114,110,105,110,103,45,99,111,111,107,105,101,16,0,15,35,119,97,114,110,105,110,103,67,111,111,107,105,101,115,16,0,21,35,119,97,114,110,105,110,103,95,69,85,95,99,111,111,107,105,101,109,115,103,16,0,15,35,119,97,114,110,105,110,103,95,99,111,111,107,105,101,16,0,16,35,119,97,114,110,105,110,103,95,99,111,111,107,105,101,115,16,0,16,35,119,97,114,110,105,110,103,99,111,111,107,105,101,73,100,16,0,20,35,119,97,114,112,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,16,0,27,35,119,97,114,112,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,109,111,98,105,108,101,16,0,15,35,119,97,114,115,116,119,97,95,99,111,111,107,105,101,16,0,15,35,119,98,67,111,111,107,105,101,80,111,108,105,99,121,16,0,25,35,119,98,111,45,99,111,111,107,105,101,45,108,97,121,101,114,45,119,114,97,112,112,101,114,16,0,15,35,119,99,45,103,100,112,114,45,119,105,100,103,101,116,16,0,25,35,119,99,107,45,99,111,111,107,105,101,45,112,111,112,117,112,45,105,110,102,111,98,111,120,16,0,21,35,119,99,112,67,111,110,115,101,110,116,66,97,110,110,101,114,67,116,114,108,16,0,19,35,119,99,115,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,16,35,119,100,45,99,111,110,115,101,110,116,45,116,111,111,108,16,0,20,35,119,100,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,14,35,119,100,103,80,114,105,118,97,99,121,66,111,120,16,0,15,35,119,100,103,95,99,111,111,107,105,101,95,98,97,114,16,0,15,35,119,100,109,45,99,111,111,107,105,101,110,111,116,101,16,0,14,35,119,101,45,117,115,101,45,99,111,111,107,105,101,16,0,15,35,119,101,45,117,115,101,45,99,111,111,107,105,101,115,16,0,13,35,119,101,85,115,101,67,111,111,107,105,101,115,16,0,17,35,119,101,85,115,101,67,111,111,107,105,101,115,73,110,102,111,16,0,18,35,119,101,85,115,101,67,111,111,107,105,101,115,80,111,112,117,112,16,0,15,35,119,101,95,117,115,101,95,99,111,111,107,105,101,115,16,0,23,35,119,101,98,76,105,97,110,100,101,114,67,111,111,107,105,101,66,97,110,110,101,114,16,0,20,35,119,101,98,95,99,111,111,107,105,101,108,97,119,95,112,111,112,117,112,16,0,21,35,119,101,98,97,114,120,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,28,35,119,101,98,100,101,118,67,111,111,107,105,101,115,65,108,101,114,116,67,111,110,116,97,105,110,101,114,16,0,32,35,119,101,98,101,102,101,107,116,105,118,95,103,100,112,114,95,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,16,0,16,35,119,101,98,115,105,116,101,45,99,111,111,107,105,101,115,16,0,23,35,119,101,98,115,105,116,101,45,99,111,111,107,105,101,115,45,112,114,111,109,112,116,16,0,21,35,119,101,98,115,105,116,101,73,115,85,115,105,110,103,67,111,111,107,105,101,16,0,16,35,119,101,98,119,101,114,107,45,99,111,111,107,105,101,115,16,0,14,35,119,101,104,97,118,101,99,111,111,107,105,101,115,16,0,19,35,119,101,108,99,111,109,101,98,97,114,45,119,114,97,112,112,101,114,16,0,24,35,119,101,108,99,111,109,101,98,97,114,45,119,114,97,112,112,101,114,45,103,100,112,114,16,0,13,35,119,101,117,115,101,99,111,111,107,105,101,115,16,0,16,35,119,102,80,114,105,118,97,99,121,78,111,116,105,99,101,16,0,25,35,119,102,95,99,111,111,107,105,101,95,110,111,116,105,99,101,95,119,114,97,112,112,101,114,16,0,10,35,119,103,45,99,111,111,107,105,101,16,0,17,35,119,103,100,112,114,45,99,111,111,107,105,101,45,98,97,114,16,0,17,35,119,104,95,99,111,111,107,105,101,95,97,100,118,105,99,101,16,0,25,35,119,104,105,116,98,114,101,97,100,95,99,111,111,107,105,101,95,119,114,97,112,112,101,114,16,0,21,35,119,105,65,99,99,101,112,116,99,111,111,107,105,101,115,66,108,111,99,107,16,0,26,35,119,105,100,103,101,116,45,97,108,101,114,116,45,117,115,105,110,103,45,99,111,111,107,105,101,16,0,22,35,119,105,100,103,101,116,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,17,35,119,105,100,103,101,116,45,99,111,111,107,105,101,98,97,114,16,0,15,35,119,105,100,103,101,116,45,99,111,111,107,105,101,115,16,0,22,35,119,105,100,103,101,116,45,99,111,111,107,105,101,115,45,97,99,99,101,115,115,16,0,21,35,119,105,100,103,101,116,45,118,114,116,99,111,111,107,105,101,98,97,108,107,16,0,20,35,119,105,100,103,101,116,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,15,35,119,105,100,103,101,116,95,99,111,111,107,105,101,115,16,0,23,35,119,105,100,103,101,116,95,112,114,105,118,97,99,121,95,99,111,111,107,105,101,115,16,0,17,35,119,105,109,80,114,105,118,97,99,121,66,97,110,110,101,114,16,0,17,35,119,105,110,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,10,35,119,105,110,99,111,111,107,105,101,16,0,21,35,119,105,110,101,114,105,115,116,45,99,111,111,107,105,101,45,105,110,102,111,16,0,14,35,119,105,122,106,111,45,99,111,111,107,105,101,115,16,0,13,35,119,107,95,99,111,111,107,105,101,98,97,114,16,0,30,35,119,108,45,99,111,111,107,105,101,45,100,97,116,101,110,115,99,104,117,116,122,45,109,101,115,115,97,103,101,16,0,20,35,119,109,104,45,99,111,111,107,105,101,45,101,117,45,97,108,101,114,116,16,0,13,35,119,110,95,99,111,111,107,105,101,98,97,114,16,0,15,35,119,110,100,95,99,111,111,107,105,101,95,98,97,114,16,0,10,35,119,111,108,102,45,103,100,112,114,16,0,18,35,119,112,45,99,111,111,107,105,101,45,104,105,110,119,101,105,115,16,0,11,35,119,112,45,99,111,111,107,105,101,115,16,0,16,35,119,112,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,22,35,119,112,45,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,27,35,119,112,45,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,16,0,15,35,119,112,85,115,105,110,103,67,111,111,107,105,101,115,16,0,17,35,119,112,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,9,35,119,112,99,97,45,98,97,114,16,0,9,35,119,112,99,97,45,98,111,120,16,0,17,35,119,112,99,97,45,112,111,112,117,112,45,109,111,100,97,108,16,0,27,35,119,112,99,117,105,95,99,111,111,107,105,101,95,98,97,114,95,109,97,105,110,95,98,111,100,121,16,0,17,35,119,112,102,95,99,111,111,107,105,101,45,97,108,101,114,116,16,0,19,35,119,112,107,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,9,35,119,112,110,98,45,98,97,114,16,0,11,35,119,112,120,95,99,111,111,107,105,101,16,0,17,35,119,113,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,10,35,119,114,45,99,111,111,107,105,101,16,0,16,35,119,114,97,112,32,62,32,35,99,111,111,107,105,101,115,16,0,19,35,119,114,97,112,45,99,111,111,107,105,101,45,98,111,116,116,111,109,16,0,21,35,119,114,97,112,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,115,16,0,13,35,119,114,97,112,45,99,111,111,107,105,101,115,16,0,18,35,119,114,97,112,45,99,111,111,107,105,101,115,45,103,100,112,114,16,0,11,35,119,114,97,112,67,111,111,107,105,101,16,0,26,35,119,114,97,112,95,97,108,101,114,116,95,109,101,115,115,97,103,101,95,99,111,111,107,105,101,16,0,27,35,119,114,97,112,95,97,108,101,114,116,95,109,101,115,115,97,103,101,95,99,111,111,107,105,101,50,16,0,15,35,119,114,97,112,95,105,110,102,111,95,103,100,112,114,16,0,28,35,119,114,97,112,112,101,114,32,62,32,35,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,16,35,119,114,97,112,112,101,114,45,45,99,111,111,107,105,101,16,0,22,35,119,114,97,112,112,101,114,45,97,118,105,115,111,45,99,111,111,107,105,101,115,16,0,15,35,119,114,97,112,112,101,114,45,99,111,111,107,105,101,16,0,16,35,119,114,97,112,112,101,114,45,99,111,111,107,105,101,115,16,0,17,35,119,114,97,112,112,101,114,67,111,111,107,105,101,66,97,114,16,0,21,35,119,114,97,112,112,101,114,77,101,110,115,97,106,101,67,111,111,107,105,101,16,0,16,35,119,114,97,112,112,101,114,95,99,111,111,107,105,101,115,16,0,30,35,119,115,45,98,97,110,110,101,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,17,35,119,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,22,35,119,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,115,103,16,0,23,35,119,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,45,98,97,114,16,0,25,35,119,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,45,109,111,100,97,108,16,0,28,35,119,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,45,109,111,100,97,108,45,98,103,16,0,18,35,119,115,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,24,35,119,115,77,111,100,97,108,65,103,114,101,101,109,101,110,116,80,114,105,118,97,99,121,16,0,9,35,119,115,77,115,103,87,110,100,16,0,16,35,119,115,95,99,111,111,107,105,101,95,108,97,121,101,114,16,0,18,35,119,115,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,16,0,14,35,119,115,98,99,111,111,107,95,97,108,101,114,116,16,0,11,35,119,115,106,99,111,110,115,101,110,116,16,0,10,35,119,115,106,112,101,99,114,103,97,16,0,24,35,119,115,120,103,111,110,45,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,16,0,17,35,119,116,45,99,111,110,102,105,114,109,45,108,97,121,101,114,16,0,10,35,119,116,45,99,111,111,107,105,101,16,0,14,35,119,116,45,99,111,111,107,105,101,45,98,97,114,16,0,14,35,119,116,45,99,111,111,107,105,101,45,98,111,120,16,0,17,35,119,116,95,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,17,35,119,116,95,110,111,116,105,99,101,95,99,111,111,107,105,101,16,0,15,35,119,116,109,95,99,111,111,107,105,101,95,98,97,114,16,0,34,35,119,117,99,65,99,99,101,112,116,67,111,111,107,105,101,115,95,112,97,110,65,99,99,101,112,116,67,111,111,107,105,101,115,16,0,35,35,119,118,99,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,45,99,111,110,116,101,110,116,16,0,22,35,119,119,45,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,16,0,18,35,119,119,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,11,35,119,119,102,45,99,111,111,107,105,101,16,0,18,35,119,121,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,23,35,119,121,109,97,103,97,110,105,97,95,115,107,108,101,112,117,95,97,108,101,114,116,16,0,9,35,120,45,99,111,111,107,105,101,16,0,16,35,120,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,33,35,120,45,99,111,114,101,45,116,111,97,115,116,45,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,45,100,105,118,16,0,15,35,120,49,51,112,109,99,111,111,107,105,101,98,97,114,16,0,20,35,120,97,110,100,97,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,9,35,120,99,107,80,111,112,117,112,16,0,11,35,120,99,111,111,107,105,101,98,97,114,16,0,9,35,120,99,111,111,107,105,101,115,16,0,26,35,120,109,45,99,111,111,107,105,101,80,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,16,0,17,35,120,114,111,111,116,67,111,111,107,105,101,82,117,108,101,115,16,0,18,35,120,116,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,16,0,23,35,120,116,101,95,95,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,18,35,120,120,45,99,111,111,107,105,101,115,45,112,108,117,103,105,110,16,0,12,35,120,120,48,111,45,99,111,111,107,105,101,16,0,19,35,121,100,112,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,17,35,121,110,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,121,111,117,114,67,111,111,107,105,101,67,104,111,105,99,101,115,16,0,19,35,121,111,117,114,67,111,111,107,105,101,83,101,116,116,105,110,103,115,16,0,14,35,121,117,99,115,45,101,112,114,105,118,97,99,121,16,0,22,35,121,117,100,101,110,95,103,100,112,114,95,98,97,99,107,103,114,111,117,110,100,16,0,17,35,121,117,100,101,110,95,103,100,112,114,95,112,111,112,117,112,16,0,15,35,121,119,45,99,111,111,107,105,101,45,103,100,112,114,16,0,12,35,121,119,45,99,111,111,107,105,101,45,110,16,0,14,35,122,45,99,111,111,107,105,101,45,110,111,116,101,16,0,13,35,122,55,99,111,111,107,105,101,110,111,116,101,16,0,15,35,122,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,15,35,122,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,16,35,122,95,99,111,111,107,105,101,95,97,99,99,101,112,116,16,0,20,35,122,97,100,105,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,16,35,122,97,106,97,100,97,109,95,99,111,111,107,105,101,115,16,0,19,35,122,97,112,102,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,122,97,112,121,116,97,106,95,111,95,99,111,111,107,105,101,115,16,0,29,35,122,97,122,45,110,98,45,112,108,117,103,105,110,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,17,35,122,99,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,25,35,122,99,95,104,111,109,101,112,97,103,101,95,98,97,114,97,95,99,111,111,107,105,101,115,16,0,10,35,122,99,95,110,111,116,105,99,101,16,0,13,35,122,99,111,98,45,99,111,111,107,105,101,115,16,0,8,35,122,99,111,111,107,105,101,16,0,18,35,122,100,112,114,105,118,97,99,121,45,99,111,110,116,101,110,116,16,0,18,35,122,101,114,97,120,111,45,99,111,111,107,105,101,45,98,97,114,16,0,31,35,122,101,114,111,116,105,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,19,35,122,101,122,119,111,108,101,110,105,101,78,97,67,111,111,107,105,101,16,0,17,35,122,103,111,100,97,45,99,111,111,107,105,101,45,115,101,99,16,0,13,35,122,103,111,100,97,95,99,111,111,107,105,101,16,0,14,35,122,103,111,100,97,95,99,111,111,107,105,101,115,16,0,12,35,122,103,111,100,97,99,111,111,107,105,101,16,0,11,35,122,105,100,95,98,97,110,110,101,114,16,0,25,35,122,106,101,107,111,122,97,95,99,105,97,115,116,101,99,122,107,97,95,97,108,101,114,116,16,0,20,35,122,107,95,112,111,108,105,116,121,107,97,95,99,105,97,115,116,101,107,16,0,23,35,122,109,98,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,16,0,18,35,122,110,45,112,114,105,118,97,99,121,45,110,111,116,105,99,101,16,0,12,35,122,111,110,97,67,111,111,107,105,101,115,16,0,19,35,122,111,110,101,45,97,99,99,101,112,116,45,99,111,111,107,105,101,16,0,11,35,122,111,110,101,67,111,111,107,105,101,16,0,12,35,122,111,110,101,95,99,111,111,107,105,101,16,0,33,35,122,112,45,102,111,111,116,101,114,45,99,111,111,107,105,101,115,101,116,116,105,110,103,115,45,111,118,101,114,108,97,121,16,0,16,35,122,112,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,21,35,122,115,101,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,13,35,122,115,109,115,103,45,112,111,108,105,99,121,16,0,25,35,122,119,95,99,111,111,107,105,101,95,108,97,119,95,115,104,111,114,116,95,105,110,102,111,16,0,18,35,100,105,115,99,108,97,105,109,101,114,95,97,109,117,110,100,105,16,0,15,35,97,115,50,52,45,99,109,112,45,112,111,112,117,112,16,0,16,35,114,111,100,111,112,111,112,117,112,46,112,111,112,117,112,16,0,23,35,99,116,108,48,50,32,62,32,46,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,28,35,102,111,114,109,32,62,32,100,105,118,32,62,32,46,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,12,35,99,99,109,95,119,101,108,99,111,109,101,16,0,21,35,99,112,45,100,105,97,108,111,103,46,99,112,45,119,114,97,112,112,101,114,16,0,19,35,99,111,110,102,105,114,109,46,106,113,109,67,111,110,102,105,114,109,16,0,19,35,115,116,95,112,111,112,117,112,46,115,116,69,108,101,109,101,110,116,16,0,42,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,32,126,32,46,99,108,105,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,16,0,51,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,91,115,116,121,108,101,42,61,34,98,111,114,100,101,114,45,98,111,120,59,32,100,105,115,112,108,97,121,58,34,93,16,0,51,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,91,115,116,121,108,101,42,61,34,98,111,114,100,101,114,45,98,111,120,59,32,112,97,100,100,105,110,103,58,34,93,16,0,38,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,91,115,116,121,108,101,42,61,34,98,111,116,116,111,109,58,34,93,16,0,39,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,91,115,116,121,108,101,42,61,34,116,111,112,58,32,48,112,120,34,93,16,0,38,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,91,115,116,121,108,101,42,61,34,116,111,112,58,48,112,120,34,93,16,0,30,35,102,111,111,116,101,114,32,62,32,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,16,0,37,35,102,111,111,116,101,114,99,111,110,116,101,110,116,32,62,32,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,16,0,49,35,112,97,103,101,45,119,114,97,112,112,101,114,45,99,111,109,112,111,110,101,110,116,32,62,32,46,108,101,103,97,108,45,98,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,16,0,16,35,97,112,112,45,114,111,111,116,46,99,32,62,32,46,122,16,0,17,35,99,109,112,45,99,111,110,116,97,105,110,101,114,45,105,100,16,0,14,35,99,109,112,45,117,105,45,105,102,114,97,109,101,16,0,15,35,99,111,111,107,105,101,115,32,62,32,102,111,114,109,16,0,22,35,97,109,112,45,117,115,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,97,109,112,45,117,115,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,49,16,0,32,35,115,108,105,100,105,110,103,45,112,111,112,117,112,46,115,108,105,100,105,110,103,45,112,111,112,117,112,45,116,111,112,16,0,6,35,103,104,45,103,98,16,0,6,35,101,112,98,97,114,16,0,39,35,103,98,91,115,116,121,108,101,61,34,109,105,110,45,119,105,100,116,104,58,32,57,56,48,112,120,59,34,93,32,62,32,46,103,98,95,119,98,16,0,18,35,112,117,115,104,100,111,119,110,32,62,32,46,103,98,95,105,98,16,0,18,35,112,117,115,104,100,111,119,110,32,62,32,46,103,98,95,119,98,16,0,24,35,112,114,105,115,109,45,109,111,100,97,108,46,112,114,105,115,109,45,109,111,100,97,108,16,0,24,35,110,101,119,112,114,105,118,97,99,121,32,62,32,46,97,108,101,114,116,45,98,111,120,16,0,37,35,98,111,116,116,111,109,95,100,105,97,108,111,103,32,62,32,35,98,111,116,116,111,109,95,100,105,97,108,111,103,95,105,110,110,101,114,16,0,7,35,99,107,95,114,111,119,16,0,11,35,100,103,115,118,111,76,97,121,101,114,16,0,8,35,107,107,105,95,100,105,118,16,0,13,35,108,121,116,105,99,95,97,115,107,98,111,120,16,0,20,35,115,102,45,109,105,110,105,115,105,116,101,45,116,111,111,108,98,97,114,16,0,8,35,120,99,109,45,98,97,114,16,0,5,35,122,119,99,99,16,0,27,35,97,112,112,32,62,32,100,105,118,32,62,32,46,118,109,45,45,99,111,110,116,97,105,110,101,114,16,0,10,35,112,112,95,98,46,112,112,45,112,16,0,26,35,99,111,111,107,105,101,115,46,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,0,0,8,0,0,0,13,134,0,0,1,150,128,0,0,148,117,0,0,0,0,0,0,0,12,0,0,0,12,0,0,0,18,0,0,0,18,0,0,0,18,0,0,0,28,0,0,0,30,0,0,0,38,0,0,0,40,0,0,0,40,0,0,0,44,0,0,0,48,0,0,0,48,0,0,0,48,0,0,0,50,0,0,0,52,0,0,0,52,0,0,0,52,0,0,0,52,0,0,0,52,0,0,0,62,0,0,0,62,0,0,0,62,0,0,0,64,0,0,0,64,0,0,0,68,0,0,0,80,0,0,0,86,0,0,0,88,0,0,0,94,0,0,0,100,0,0,0,102,0,0,0,102,0,0,0,102,0,0,0,102,0,0,0,102,0,0,0,102,0,0,0,104,0,0,0,104,0,0,0,104,0,0,0,108,0,0,0,110,0,0,0,110,0,0,0,110,0,0,0,110,0,0,0,110,0,0,0,110,0,0,0,112,0,0,0,112,0,0,0,114,0,0,0,122,0,0,0,122,0,0,0,122,0,0,0,126,0,0,0,126,0,0,0,134,0,0,0,136,0,0,0,138,0,0,0,140,0,0,0,144,0,0,0,144,0,0,0,144,0,0,0,154,0,0,0,156,0,0,0,166,0,0,0,166,0,0,0,168,0,0,0,168,0,0,0,168,0,0,0,170,0,0,0,170,0,0,0,174,0,0,0,174,0,0,0,174,0,0,0,182,0,0,0,182,0,0,0,194,0,0,0,194,0,0,0,194,0,0,0,206,0,0,0,206,0,0,0,206,0,0,0,206,0,0,0,208,0,0,0,218,0,0,0,224,0,0,0,224,0,0,0,226,0,0,0,232,0,0,0,234,0,0,0,234,0,0,0,236,0,0,0,242,0,0,0,250,0,0,0,0,1,0,0,2,1,0,0,4,1,0,0,4,1,0,0,4,1,0,0,8,1,0,0,8,1,0,0,8,1,0,0,8,1,0,0,10,1,0,0,10,1,0,0,10,1,0,0,10,1,0,0,10,1,0,0,10,1,0,0,10,1,0,0,18,1,0,0,18,1,0,0,18,1,0,0,18,1,0,0,28,1,0,0,28,1,0,0,30,1,0,0,34,1,0,0,36,1,0,0,36,1,0,0,42,1,0,0,42,1,0,0,50,1,0,0,50,1,0,0,52,1,0,0,52,1,0,0,54,1,0,0,54,1,0,0,56,1,0,0,56,1,0,0,58,1,0,0,58,1,0,0,58,1,0,0,58,1,0,0,58,1,0,0,58,1,0,0,58,1,0,0,58,1,0,0,60,1,0,0,62,1,0,0,62,1,0,0,64,1,0,0,64,1,0,0,64,1,0,0,64,1,0,0,68,1,0,0,68,1,0,0,68,1,0,0,70,1,0,0,76,1,0,0,76,1,0,0,76,1,0,0,76,1,0,0,76,1,0,0,82,1,0,0,82,1,0,0,82,1,0,0,82,1,0,0,82,1,0,0,82,1,0,0,82,1,0,0,82,1,0,0,82,1,0,0,90,1,0,0,100,1,0,0,100,1,0,0,108,1,0,0,112,1,0,0,112,1,0,0,118,1,0,0,118,1,0,0,118,1,0,0,120,1,0,0,120,1,0,0,130,1,0,0,132,1,0,0,136,1,0,0,136,1,0,0,136,1,0,0,136,1,0,0,136,1,0,0,136,1,0,0,136,1,0,0,142,1,0,0,142,1,0,0,142,1,0,0,142,1,0,0,142,1,0,0,142,1,0,0,142,1,0,0,146,1,0,0,154,1,0,0,154,1,0,0,162,1,0,0,162,1,0,0,162,1,0,0,162,1,0,0,162,1,0,0,162,1,0,0,164,1,0,0,172,1,0,0,172,1,0,0,172,1,0,0,172,1,0,0,172,1,0,0,174,1,0,0,176,1,0,0,178,1,0,0,184,1,0,0,184,1,0,0,186,1,0,0,186,1,0,0,186,1,0,0,186,1,0,0,186,1,0,0,188,1,0,0,190,1,0,0,192,1,0,0,194,1,0,0,196,1,0,0,196,1,0,0,196,1,0,0,196,1,0,0,198,1,0,0,198,1,0,0,198,1,0,0,198,1,0,0,208,1,0,0,208,1,0,0,208,1,0,0,210,1,0,0,210,1,0,0,210,1,0,0,212,1,0,0,212,1,0,0,212,1,0,0,212,1,0,0,212,1,0,0,218,1,0,0,220,1,0,0,220,1,0,0,220,1,0,0,220,1,0,0,222,1,0,0,222,1,0,0,222,1,0,0,222,1,0,0,226,1,0,0,226,1,0,0,226,1,0,0,228,1,0,0,228,1,0,0,228,1,0,0,228,1,0,0,230,1,0,0,230,1,0,0,230,1,0,0,230,1,0,0,230,1,0,0,230,1,0,0,230,1,0,0,230,1,0,0,238,1,0,0,240,1,0,0,242,1,0,0,244,1,0,0,250,1,0,0,250,1,0,0,252,1,0,0,252,1,0,0,252,1,0,0,254,1,0,0,0,2,0,0,8,2,0,0,12,2,0,0,12,2,0,0,12,2,0,0,14,2,0,0,14,2,0,0,14,2,0,0,14,2,0,0,16,2,0,0,16,2,0,0,18,2,0,0,18,2,0,0,24,2,0,0,24,2,0,0,28,2,0,0,32,2,0,0,34,2,0,0,34,2,0,0,34,2,0,0,34,2,0,0,34,2,0,0,34,2,0,0,38,2,0,0,38,2,0,0,38,2,0,0,38,2,0,0,38,2,0,0,38,2,0,0,38,2,0,0,38,2,0,0,40,2,0,0,40,2,0,0,48,2,0,0,52,2,0,0,52,2,0,0,54,2,0,0,54,2,0,0,54,2,0,0,60,2,0,0,60,2,0,0,62,2,0,0,62,2,0,0,64,2,0,0,64,2,0,0,64,2,0,0,64,2,0,0,66,2,0,0,66,2,0,0,66,2,0,0,74,2,0,0,76,2,0,0,76,2,0,0,80,2,0,0,80,2,0,0,80,2,0,0,80,2,0,0,80,2,0,0,90,2,0,0,90,2,0,0,90,2,0,0,90,2,0,0,90,2,0,0,90,2,0,0,90,2,0,0,90,2,0,0,90,2,0,0,90,2,0,0,104,2,0,0,112,2,0,0,112,2,0,0,116,2,0,0,126,2,0,0,126,2,0,0,126,2,0,0,128,2,0,0,128,2,0,0,132,2,0,0,134,2,0,0,154,2,0,0,154,2,0,0,156,2,0,0,158,2,0,0,158,2,0,0,160,2,0,0,162,2,0,0,162,2,0,0,162,2,0,0,164,2,0,0,172,2,0,0,172,2,0,0,174,2,0,0,178,2,0,0,178,2,0,0,178,2,0,0,178,2,0,0,180,2,0,0,182,2,0,0,188,2,0,0,188,2,0,0,188,2,0,0,190,2,0,0,190,2,0,0,192,2,0,0,194,2,0,0,194,2,0,0,194,2,0,0,194,2,0,0,194,2,0,0,194,2,0,0,196,2,0,0,196,2,0,0,196,2,0,0,196,2,0,0,196,2,0,0,200,2,0,0,200,2,0,0,200,2,0,0,202,2,0,0,202,2,0,0,202,2,0,0,208,2,0,0,218,2,0,0,220,2,0,0,222,2,0,0,222,2,0,0,222,2,0,0,222,2,0,0,232,2,0,0,234,2,0,0,234,2,0,0,236,2,0,0,236,2,0,0,236,2,0,0,236,2,0,0,236,2,0,0,240,2,0,0,242,2,0,0,242,2,0,0,248,2,0,0,252,2,0,0,4,3,0,0,4,3,0,0,4,3,0,0,4,3,0,0,4,3,0,0,6,3,0,0,6,3,0,0,6,3,0,0,6,3,0,0,8,3,0,0,8,3,0,0,14,3,0,0,14,3,0,0,14,3,0,0,14,3,0,0,14,3,0,0,14,3,0,0,14,3,0,0,14,3,0,0,14,3,0,0,16,3,0,0,16,3,0,0,16,3,0,0,18,3,0,0,18,3,0,0,18,3,0,0,18,3,0,0,20,3,0,0,24,3,0,0,24,3,0,0,24,3,0,0,24,3,0,0,24,3,0,0,24,3,0,0,24,3,0,0,24,3,0,0,28,3,0,0,28,3,0,0,32,3,0,0,32,3,0,0,34,3,0,0,34,3,0,0,34,3,0,0,34,3,0,0,34,3,0,0,34,3,0,0,34,3,0,0,34,3,0,0,34,3,0,0,34,3,0,0,34,3,0,0,36,3,0,0,44,3,0,0,44,3,0,0,44,3,0,0,44,3,0,0,44,3,0,0,44,3,0,0,46,3,0,0,46,3,0,0,46,3,0,0,46,3,0,0,46,3,0,0,46,3,0,0,46,3,0,0,46,3,0,0,46,3,0,0,48,3,0,0,54,3,0,0,54,3,0,0,62,3,0,0,62,3,0,0,64,3,0,0,66,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,70,3,0,0,70,3,0,0,70,3,0,0,80,3,0,0,80,3,0,0,82,3,0,0,92,3,0,0,92,3,0,0,98,3,0,0,106,3,0,0,112,3,0,0,114,3,0,0,116,3,0,0,118,3,0,0,126,3,0,0,126,3,0,0,126,3,0,0,130,3,0,0,130,3,0,0,142,3,0,0,144,3,0,0,148,3,0,0,148,3,0,0,148,3,0,0,148,3,0,0,150,3,0,0,152,3,0,0,152,3,0,0,154,3,0,0,156,3,0,0,160,3,0,0,164,3,0,0,168,3,0,0,174,3,0,0,174,3,0,0,174,3,0,0,174,3,0,0,176,3,0,0,176,3,0,0,176,3,0,0,180,3,0,0,180,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,194,3,0,0,194,3,0,0,198,3,0,0,198,3,0,0,200,3,0,0,200,3,0,0,200,3,0,0,206,3,0,0,210,3,0,0,212,3,0,0,218,3,0,0,222,3,0,0,228,3,0,0,228,3,0,0,228,3,0,0,228,3,0,0,228,3,0,0,232,3,0,0,232,3,0,0,236,3,0,0,236,3,0,0,236,3,0,0,242,3,0,0,246,3,0,0,248,3,0,0,248,3,0,0,248,3,0,0,250,3,0,0,254,3,0,0,254,3,0,0,2,4,0,0,2,4,0,0,2,4,0,0,2,4,0,0,2,4,0,0,2,4,0,0,6,4,0,0,8,4,0,0,8,4,0,0,12,4,0,0,12,4,0,0,12,4,0,0,12,4,0,0,16,4,0,0,16,4,0,0,16,4,0,0,22,4,0,0,22,4,0,0,22,4,0,0,22,4,0,0,22,4,0,0,22,4,0,0,22,4,0,0,22,4,0,0,22,4,0,0,26,4,0,0,30,4,0,0,30,4,0,0,30,4,0,0,30,4,0,0,30,4,0,0,30,4,0,0,32,4,0,0,34,4,0,0,36,4,0,0,36,4,0,0,36,4,0,0,36,4,0,0,40,4,0,0,40,4,0,0,48,4,0,0,48,4,0,0,48,4,0,0,48,4,0,0,54,4,0,0,56,4,0,0,58,4,0,0,60,4,0,0,60,4,0,0,60,4,0,0,60,4,0,0,70,4,0,0,72,4,0,0,72,4,0,0,74,4,0,0,76,4,0,0,76,4,0,0,76,4,0,0,86,4,0,0,90,4,0,0,90,4,0,0,90,4,0,0,92,4,0,0,104,4,0,0,104,4,0,0,104,4,0,0,104,4,0,0,104,4,0,0,112,4,0,0,120,4,0,0,120,4,0,0,120,4,0,0,120,4,0,0,120,4,0,0,120,4,0,0,120,4,0,0,120,4,0,0,120,4,0,0,136,4,0,0,136,4,0,0,136,4,0,0,136,4,0,0,136,4,0,0,140,4,0,0,140,4,0,0,140,4,0,0,140,4,0,0,142,4,0,0,142,4,0,0,144,4,0,0,144,4,0,0,146,4,0,0,146,4,0,0,146,4,0,0,156,4,0,0,156,4,0,0,166,4,0,0,166,4,0,0,170,4,0,0,170,4,0,0,172,4,0,0,172,4,0,0,172,4,0,0,172,4,0,0,172,4,0,0,178,4,0,0,178,4,0,0,178,4,0,0,178,4,0,0,178,4,0,0,178,4,0,0,178,4,0,0,188,4,0,0,192,4,0,0,194,4,0,0,194,4,0,0,194,4,0,0,202,4,0,0,202,4,0,0,204,4,0,0,210,4,0,0,212,4,0,0,214,4,0,0,218,4,0,0,226,4,0,0,230,4,0,0,232,4,0,0,232,4,0,0,232,4,0,0,232,4,0,0,232,4,0,0,232,4,0,0,238,4,0,0,238,4,0,0,246,4,0,0,246,4,0,0,246,4,0,0,246,4,0,0,246,4,0,0,248,4,0,0,248,4,0,0,248,4,0,0,248,4,0,0,248,4,0,0,250,4,0,0,250,4,0,0,252,4,0,0,254,4,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,5,0,0,6,5,0,0,10,5,0,0,10,5,0,0,12,5,0,0,12,5,0,0,16,5,0,0,16,5,0,0,16,5,0,0,16,5,0,0,16,5,0,0,16,5,0,0,18,5,0,0,24,5,0,0,26,5,0,0,34,5,0,0,38,5,0,0,38,5,0,0,38,5,0,0,38,5,0,0,38,5,0,0,38,5,0,0,38,5,0,0,38,5,0,0,38,5,0,0,46,5,0,0,46,5,0,0,48,5,0,0,48,5,0,0,48,5,0,0,50,5,0,0,50,5,0,0,52,5,0,0,54,5,0,0,64,5,0,0,64,5,0,0,64,5,0,0,68,5,0,0,68,5,0,0,68,5,0,0,68,5,0,0,68,5,0,0,68,5,0,0,68,5,0,0,72,5,0,0,72,5,0,0,72,5,0,0,72,5,0,0,72,5,0,0,72,5,0,0,72,5,0,0,74,5,0,0,74,5,0,0,74,5,0,0,76,5,0,0,76,5,0,0,76,5,0,0,76,5,0,0,78,5,0,0,78,5,0,0,78,5,0,0,78,5,0,0,78,5,0,0,78,5,0,0,78,5,0,0,78,5,0,0,80,5,0,0,82,5,0,0,82,5,0,0,82,5,0,0,82,5,0,0,82,5,0,0,82,5,0,0,84,5,0,0,84,5,0,0,84,5,0,0,86,5,0,0,86,5,0,0,88,5,0,0,88,5,0,0,88,5,0,0,88,5,0,0,88,5,0,0,88,5,0,0,90,5,0,0,90,5,0,0,90,5,0,0,102,5,0,0,106,5,0,0,106,5,0,0,106,5,0,0,106,5,0,0,106,5,0,0,106,5,0,0,108,5,0,0,116,5,0,0,118,5,0,0,118,5,0,0,118,5,0,0,120,5,0,0,120,5,0,0,122,5,0,0,122,5,0,0,122,5,0,0,122,5,0,0,122,5,0,0,122,5,0,0,122,5,0,0,122,5,0,0,122,5,0,0,124,5,0,0,124,5,0,0,126,5,0,0,126,5,0,0,126,5,0,0,126,5,0,0,128,5,0,0,140,5,0,0,140,5,0,0,140,5,0,0,146,5,0,0,146,5,0,0,146,5,0,0,146,5,0,0,146,5,0,0,154,5,0,0,154,5,0,0,158,5,0,0,158,5,0,0,158,5,0,0,162,5,0,0,162,5,0,0,162,5,0,0,162,5,0,0,162,5,0,0,162,5,0,0,162,5,0,0,162,5,0,0,172,5,0,0,182,5,0,0,182,5,0,0,182,5,0,0,182,5,0,0,184,5,0,0,184,5,0,0,188,5,0,0,188,5,0,0,190,5,0,0,190,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,198,5,0,0,198,5,0,0,198,5,0,0,198,5,0,0,198,5,0,0,202,5,0,0,202,5,0,0,204,5,0,0,208,5,0,0,210,5,0,0,210,5,0,0,212,5,0,0,212,5,0,0,212,5,0,0,212,5,0,0,216,5,0,0,216,5,0,0,216,5,0,0,218,5,0,0,218,5,0,0,218,5,0,0,218,5,0,0,220,5,0,0,220,5,0,0,220,5,0,0,220,5,0,0,220,5,0,0,222,5,0,0,232,5,0,0,232,5,0,0,232,5,0,0,238,5,0,0,248,5,0,0,248,5,0,0,252,5,0,0,252,5,0,0,252,5,0,0,252,5,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,8,6,0,0,10,6,0,0,10,6,0,0,10,6,0,0,12,6,0,0,12,6,0,0,14,6,0,0,16,6,0,0,16,6,0,0,18,6,0,0,18,6,0,0,18,6,0,0,24,6,0,0,24,6,0,0,26,6,0,0,26,6,0,0,30,6,0,0,30,6,0,0,34,6,0,0,34,6,0,0,34,6,0,0,36,6,0,0,36,6,0,0,36,6,0,0,36,6,0,0,36,6,0,0,36,6,0,0,36,6,0,0,44,6,0,0,44,6,0,0,44,6,0,0,44,6,0,0,46,6,0,0,46,6,0,0,56,6,0,0,58,6,0,0,58,6,0,0,58,6,0,0,58,6,0,0,64,6,0,0,64,6,0,0,64,6,0,0,66,6,0,0,68,6,0,0,70,6,0,0,70,6,0,0,70,6,0,0,86,6,0,0,86,6,0,0,86,6,0,0,86,6,0,0,86,6,0,0,100,6,0,0,106,6,0,0,106,6,0,0,110,6,0,0,110,6,0,0,122,6,0,0,122,6,0,0,122,6,0,0,122,6,0,0,126,6,0,0,126,6,0,0,126,6,0,0,126,6,0,0,126,6,0,0,138,6,0,0,138,6,0,0,140,6,0,0,140,6,0,0,144,6,0,0,144,6,0,0,144,6,0,0,146,6,0,0,148,6,0,0,148,6,0,0,148,6,0,0,148,6,0,0,148,6,0,0,148,6,0,0,148,6,0,0,164,6,0,0,166,6,0,0,168,6,0,0,168,6,0,0,168,6,0,0,168,6,0,0,168,6,0,0,168,6,0,0,168,6,0,0,170,6,0,0,170,6,0,0,172,6,0,0,172,6,0,0,180,6,0,0,180,6,0,0,180,6,0,0,180,6,0,0,182,6,0,0,182,6,0,0,182,6,0,0,194,6,0,0,194,6,0,0,194,6,0,0,196,6,0,0,196,6,0,0,198,6,0,0,208,6,0,0,208,6,0,0,212,6,0,0,212,6,0,0,212,6,0,0,214,6,0,0,222,6,0,0,222,6,0,0,222,6,0,0,226,6,0,0,226,6,0,0,226,6,0,0,226,6,0,0,226,6,0,0,226,6,0,0,236,6,0,0,236,6,0,0,236,6,0,0,236,6,0,0,236,6,0,0,236,6,0,0,244,6,0,0,244,6,0,0,244,6,0,0,244,6,0,0,244,6,0,0,250,6,0,0,252,6,0,0,252,6,0,0,252,6,0,0,254,6,0,0,254,6,0,0,254,6,0,0,254,6,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,4,7,0,0,10,7,0,0,10,7,0,0,12,7,0,0,16,7,0,0,16,7,0,0,16,7,0,0,28,7,0,0,28,7,0,0,28,7,0,0,30,7,0,0,32,7,0,0,34,7,0,0,36,7,0,0,38,7,0,0,40,7,0,0,40,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,48,7,0,0,48,7,0,0,50,7,0,0,52,7,0,0,52,7,0,0,52,7,0,0,52,7,0,0,52,7,0,0,54,7,0,0,54,7,0,0,54,7,0,0,54,7,0,0,54,7,0,0,56,7,0,0,58,7,0,0,64,7,0,0,70,7,0,0,70,7,0,0,72,7,0,0,72,7,0,0,72,7,0,0,72,7,0,0,74,7,0,0,76,7,0,0,76,7,0,0,76,7,0,0,76,7,0,0,76,7,0,0,78,7,0,0,78,7,0,0,78,7,0,0,78,7,0,0,78,7,0,0,78,7,0,0,78,7,0,0,78,7,0,0,78,7,0,0,78,7,0,0,78,7,0,0,78,7,0,0,90,7,0,0,90,7,0,0,94,7,0,0,94,7,0,0,94,7,0,0,94,7,0,0,94,7,0,0,100,7,0,0,108,7,0,0,110,7,0,0,112,7,0,0,116,7,0,0,116,7,0,0,116,7,0,0,120,7,0,0,120,7,0,0,136,7,0,0,136,7,0,0,136,7,0,0,136,7,0,0,142,7,0,0,144,7,0,0,146,7,0,0,146,7,0,0,148,7,0,0,152,7,0,0,152,7,0,0,152,7,0,0,154,7,0,0,158,7,0,0,158,7,0,0,158,7,0,0,162,7,0,0,162,7,0,0,166,7,0,0,168,7,0,0,168,7,0,0,168,7,0,0,168,7,0,0,174,7,0,0,174,7,0,0,176,7,0,0,178,7,0,0,178,7,0,0,182,7,0,0,184,7,0,0,184,7,0,0,184,7,0,0,192,7,0,0,192,7,0,0,192,7,0,0,192,7,0,0,192,7,0,0,194,7,0,0,198,7,0,0,198,7,0,0,198,7,0,0,198,7,0,0,198,7,0,0,200,7,0,0,200,7,0,0,202,7,0,0,202,7,0,0,204,7,0,0,204,7,0,0,204,7,0,0,206,7,0,0,206,7,0,0,206,7,0,0,214,7,0,0,220,7,0,0,224,7,0,0,226,7,0,0,228,7,0,0,230,7,0,0,238,7,0,0,238,7,0,0,238,7,0,0,238,7,0,0,244,7,0,0,244,7,0,0,250,7,0,0,252,7,0,0,252,7,0,0,252,7,0,0,252,7,0,0,252,7,0,0,252,7,0,0,252,7,0,0,0,8,0,0,0,8,0,0,0,8,0,0,2,8,0,0,4,8,0,0,4,8,0,0,4,8,0,0,6,8,0,0,14,8,0,0,14,8,0,0,14,8,0,0,14,8,0,0,14,8,0,0,18,8,0,0,20,8,0,0,22,8,0,0,22,8,0,0,22,8,0,0,28,8,0,0,28,8,0,0,34,8,0,0,40,8,0,0,40,8,0,0,40,8,0,0,40,8,0,0,40,8,0,0,46,8,0,0,46,8,0,0,52,8,0,0,58,8,0,0,60,8,0,0,60,8,0,0,60,8,0,0,62,8,0,0,62,8,0,0,62,8,0,0,62,8,0,0,62,8,0,0,62,8,0,0,62,8,0,0,62,8,0,0,62,8,0,0,78,8,0,0,78,8,0,0,80,8,0,0,80,8,0,0,80,8,0,0,88,8,0,0,88,8,0,0,90,8,0,0,90,8,0,0,90,8,0,0,100,8,0,0,100,8,0,0,100,8,0,0,102,8,0,0,108,8,0,0,108,8,0,0,108,8,0,0,110,8,0,0,112,8,0,0,118,8,0,0,118,8,0,0,122,8,0,0,122,8,0,0,122,8,0,0,122,8,0,0,124,8,0,0,124,8,0,0,124,8,0,0,126,8,0,0,126,8,0,0,126,8,0,0,126,8,0,0,126,8,0,0,128,8,0,0,128,8,0,0,134,8,0,0,134,8,0,0,142,8,0,0,148,8,0,0,148,8,0,0,152,8,0,0,152,8,0,0,162,8,0,0,162,8,0,0,166,8,0,0,166,8,0,0,170,8,0,0,174,8,0,0,174,8,0,0,174,8,0,0,174,8,0,0,174,8,0,0,180,8,0,0,182,8,0,0,182,8,0,0,182,8,0,0,184,8,0,0,184,8,0,0,184,8,0,0,192,8,0,0,192,8,0,0,196,8,0,0,196,8,0,0,196,8,0,0,212,8,0,0,216,8,0,0,216,8,0,0,216,8,0,0,216,8,0,0,220,8,0,0,220,8,0,0,226,8,0,0,228,8,0,0,228,8,0,0,228,8,0,0,228,8,0,0,238,8,0,0,238,8,0,0,244,8,0,0,244,8,0,0,244,8,0,0,254,8,0,0,0,9,0,0,10,9,0,0,12,9,0,0,12,9,0,0,12,9,0,0,12,9,0,0,12,9,0,0,12,9,0,0,24,9,0,0,28,9,0,0,28,9,0,0,28,9,0,0,28,9,0,0,28,9,0,0,28,9,0,0,28,9,0,0,40,9,0,0,40,9,0,0,40,9,0,0,40,9,0,0,40,9,0,0,40,9,0,0,40,9,0,0,40,9,0,0,50,9,0,0,58,9,0,0,64,9,0,0,64,9,0,0,66,9,0,0,66,9,0,0,66,9,0,0,66,9,0,0,66,9,0,0,68,9,0,0,70,9,0,0,74,9,0,0,74,9,0,0,84,9,0,0,84,9,0,0,84,9,0,0,84,9,0,0,90,9,0,0,90,9,0,0,90,9,0,0,90,9,0,0,90,9,0,0,90,9,0,0,90,9,0,0,92,9,0,0,92,9,0,0,92,9,0,0,98,9,0,0,98,9,0,0,100,9,0,0,100,9,0,0,102,9,0,0,104,9,0,0,104,9,0,0,106,9,0,0,106,9,0,0,106,9,0,0,126,9,0,0,126,9,0,0,126,9,0,0,126,9,0,0,126,9,0,0,126,9,0,0,130,9,0,0,130,9,0,0,132,9,0,0,142,9,0,0,152,9,0,0,156,9,0,0,156,9,0,0,156,9,0,0,156,9,0,0,158,9,0,0,160,9,0,0,162,9,0,0,162,9,0,0,164,9,0,0,168,9,0,0,168,9,0,0,168,9,0,0,168,9,0,0,170,9,0,0,170,9,0,0,172,9,0,0,172,9,0,0,172,9,0,0,172,9,0,0,176,9,0,0,176,9,0,0,176,9,0,0,178,9,0,0,184,9,0,0,184,9,0,0,184,9,0,0,190,9,0,0,192,9,0,0,194,9,0,0,200,9,0,0,200,9,0,0,200,9,0,0,202,9,0,0,202,9,0,0,202,9,0,0,204,9,0,0,204,9,0,0,204,9,0,0,212,9,0,0,212,9,0,0,214,9,0,0,216,9,0,0,216,9,0,0,216,9,0,0,216,9,0,0,224,9,0,0,224,9,0,0,240,9,0,0,240,9,0,0,240,9,0,0,240,9,0,0,246,9,0,0,246,9,0,0,248,9,0,0,248,9,0,0,248,9,0,0,248,9,0,0,2,10,0,0,2,10,0,0,2,10,0,0,2,10,0,0,6,10,0,0,6,10,0,0,6,10,0,0,6,10,0,0,6,10,0,0,6,10,0,0,8,10,0,0,10,10,0,0,10,10,0,0,10,10,0,0,12,10,0,0,12,10,0,0,12,10,0,0,12,10,0,0,14,10,0,0,26,10,0,0,28,10,0,0,28,10,0,0,28,10,0,0,28,10,0,0,28,10,0,0,28,10,0,0,28,10,0,0,32,10,0,0,32,10,0,0,32,10,0,0,32,10,0,0,32,10,0,0,32,10,0,0,32,10,0,0,34,10,0,0,34,10,0,0,34,10,0,0,44,10,0,0,50,10,0,0,50,10,0,0,50,10,0,0,50,10,0,0,50,10,0,0,50,10,0,0,50,10,0,0,52,10,0,0,54,10,0,0,56,10,0,0,58,10,0,0,58,10,0,0,60,10,0,0,60,10,0,0,60,10,0,0,66,10,0,0,66,10,0,0,66,10,0,0,66,10,0,0,66,10,0,0,66,10,0,0,66,10,0,0,66,10,0,0,66,10,0,0,66,10,0,0,68,10,0,0,70,10,0,0,70,10,0,0,72,10,0,0,72,10,0,0,72,10,0,0,72,10,0,0,74,10,0,0,74,10,0,0,76,10,0,0,76,10,0,0,76,10,0,0,76,10,0,0,78,10,0,0,80,10,0,0,84,10,0,0,84,10,0,0,86,10,0,0,86,10,0,0,88,10,0,0,88,10,0,0,90,10,0,0,90,10,0,0,90,10,0,0,90,10,0,0,90,10,0,0,92,10,0,0,94,10,0,0,102,10,0,0,102,10,0,0,102,10,0,0,102,10,0,0,104,10,0,0,106,10,0,0,108,10,0,0,110,10,0,0,110,10,0,0,114,10,0,0,114,10,0,0,122,10,0,0,122,10,0,0,122,10,0,0,122,10,0,0,122,10,0,0,132,10,0,0,132,10,0,0,134,10,0,0,144,10,0,0,154,10,0,0,154,10,0,0,154,10,0,0,156,10,0,0,156,10,0,0,156,10,0,0,156,10,0,0,158,10,0,0,158,10,0,0,158,10,0,0,158,10,0,0,158,10,0,0,162,10,0,0,162,10,0,0,162,10,0,0,162,10,0,0,162,10,0,0,162,10,0,0,164,10,0,0,164,10,0,0,164,10,0,0,164,10,0,0,164,10,0,0,164,10,0,0,164,10,0,0,164,10,0,0,166,10,0,0,166,10,0,0,166,10,0,0,168,10,0,0,176,10,0,0,180,10,0,0,192,10,0,0,194,10,0,0,204,10,0,0,210,10,0,0,218,10,0,0,220,10,0,0,220,10,0,0,222,10,0,0,222,10,0,0,222,10,0,0,222,10,0,0,236,10,0,0,236,10,0,0,236,10,0,0,236,10,0,0,236,10,0,0,236,10,0,0,238,10,0,0,238,10,0,0,238,10,0,0,238,10,0,0,238,10,0,0,242,10,0,0,242,10,0,0,242,10,0,0,242,10,0,0,246,10,0,0,248,10,0,0,248,10,0,0,250,10,0,0,250,10,0,0,250,10,0,0,6,11,0,0,6,11,0,0,6,11,0,0,6,11,0,0,8,11,0,0,10,11,0,0,18,11,0,0,18,11,0,0,18,11,0,0,22,11,0,0,28,11,0,0,30,11,0,0,30,11,0,0,30,11,0,0,30,11,0,0,34,11,0,0,34,11,0,0,34,11,0,0,36,11,0,0,38,11,0,0,38,11,0,0,38,11,0,0,38,11,0,0,38,11,0,0,44,11,0,0,44,11,0,0,44,11,0,0,54,11,0,0,54,11,0,0,54,11,0,0,54,11,0,0,74,11,0,0,80,11,0,0,80,11,0,0,86,11,0,0,92,11,0,0,92,11,0,0,94,11,0,0,94,11,0,0,94,11,0,0,94,11,0,0,96,11,0,0,96,11,0,0,96,11,0,0,96,11,0,0,96,11,0,0,100,11,0,0,100,11,0,0,100,11,0,0,100,11,0,0,100,11,0,0,100,11,0,0,100,11,0,0,100,11,0,0,102,11,0,0,102,11,0,0,102,11,0,0,112,11,0,0,112,11,0,0,112,11,0,0,112,11,0,0,112,11,0,0,112,11,0,0,112,11,0,0,112,11,0,0,112,11,0,0,116,11,0,0,116,11,0,0,118,11,0,0,118,11,0,0,118,11,0,0,118,11,0,0,118,11,0,0,118,11,0,0,118,11,0,0,120,11,0,0,120,11,0,0,120,11,0,0,124,11,0,0,124,11,0,0,126,11,0,0,126,11,0,0,128,11,0,0,128,11,0,0,130,11,0,0,132,11,0,0,132,11,0,0,138,11,0,0,138,11,0,0,138,11,0,0,148,11,0,0,148,11,0,0,152,11,0,0,154,11,0,0,154,11,0,0,154,11,0,0,154,11,0,0,154,11,0,0,156,11,0,0,156,11,0,0,160,11,0,0,162,11,0,0,162,11,0,0,162,11,0,0,164,11,0,0,164,11,0,0,174,11,0,0,174,11,0,0,180,11,0,0,180,11,0,0,180,11,0,0,184,11,0,0,186,11,0,0,186,11,0,0,186,11,0,0,186,11,0,0,186,11,0,0,186,11,0,0,186,11,0,0,188,11,0,0,188,11,0,0,188,11,0,0,188,11,0,0,188,11,0,0,188,11,0,0,188,11,0,0,188,11,0,0,192,11,0,0,192,11,0,0,192,11,0,0,192,11,0,0,192,11,0,0,192,11,0,0,202,11,0,0,202,11,0,0,206,11,0,0,206,11,0,0,206,11,0,0,208,11,0,0,212,11,0,0,212,11,0,0,218,11,0,0,218,11,0,0,218,11,0,0,218,11,0,0,218,11,0,0,220,11,0,0,220,11,0,0,220,11,0,0,220,11,0,0,230,11,0,0,230,11,0,0,240,11,0,0,240,11,0,0,244,11,0,0,244,11,0,0,246,11,0,0,248,11,0,0,248,11,0,0,250,11,0,0,250,11,0,0,250,11,0,0,250,11,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,12,0,0,4,12,0,0,6,12,0,0,6,12,0,0,8,12,0,0,8,12,0,0,12,12,0,0,12,12,0,0,12,12,0,0,14,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,20,12,0,0,32,12,0,0,32,12,0,0,36,12,0,0,38,12,0,0,38,12,0,0,48,12,0,0,48,12,0,0,50,12,0,0,50,12,0,0,58,12,0,0,64,12,0,0,66,12,0,0,68,12,0,0,68,12,0,0,72,12,0,0,72,12,0,0,72,12,0,0,78,12,0,0,78,12,0,0,78,12,0,0,78,12,0,0,78,12,0,0,78,12,0,0,78,12,0,0,80,12,0,0,84,12,0,0,88,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,94,12,0,0,96,12,0,0,96,12,0,0,98,12,0,0,102,12,0,0,108,12,0,0,108,12,0,0,110,12,0,0,112,12,0,0,120,12,0,0,120,12,0,0,120,12,0,0,120,12,0,0,120,12,0,0,122,12,0,0,122,12,0,0,122,12,0,0,122,12,0,0,130,12,0,0,130,12,0,0,132,12,0,0,132,12,0,0,132,12,0,0,132,12,0,0,134,12,0,0,138,12,0,0,144,12,0,0,144,12,0,0,148,12,0,0,148,12,0,0,152,12,0,0,152,12,0,0,152,12,0,0,152,12,0,0,156,12,0,0,158,12,0,0,160,12,0,0,160,12,0,0,160,12,0,0,160,12,0,0,160,12,0,0,160,12,0,0,160,12,0,0,160,12,0,0,160,12,0,0,168,12,0,0,168,12,0,0,172,12,0,0,172,12,0,0,174,12,0,0,176,12,0,0,184,12,0,0,188,12,0,0,188,12,0,0,190,12,0,0,192,12,0,0,194,12,0,0,194,12,0,0,194,12,0,0,206,12,0,0,206,12,0,0,206,12,0,0,206,12,0,0,206,12,0,0,206,12,0,0,206,12,0,0,206,12,0,0,208,12,0,0,208,12,0,0,210,12,0,0,212,12,0,0,218,12,0,0,218,12,0,0,222,12,0,0,224,12,0,0,224,12,0,0,228,12,0,0,230,12,0,0,232,12,0,0,232,12,0,0,234,12,0,0,244,12,0,0,244,12,0,0,246,12,0,0,246,12,0,0,246,12,0,0,246,12,0,0,246,12,0,0,246,12,0,0,246,12,0,0,246,12,0,0,254,12,0,0,0,13,0,0,4,13,0,0,6,13,0,0,6,13,0,0,6,13,0,0,6,13,0,0,6,13,0,0,6,13,0,0,6,13,0,0,6,13,0,0,6,13,0,0,6,13,0,0,6,13,0,0,6,13,0,0,12,13,0,0,16,13,0,0,18,13,0,0,20,13,0,0,22,13,0,0,28,13,0,0,28,13,0,0,30,13,0,0,34,13,0,0,34,13,0,0,34,13,0,0,34,13,0,0,34,13,0,0,34,13,0,0,34,13,0,0,34,13,0,0,34,13,0,0,38,13,0,0,38,13,0,0,48,13,0,0,50,13,0,0,50,13,0,0,50,13,0,0,64,13,0,0,64,13,0,0,66,13,0,0,66,13,0,0,66,13,0,0,68,13,0,0,70,13,0,0,70,13,0,0,70,13,0,0,70,13,0,0,74,13,0,0,76,13,0,0,76,13,0,0,76,13,0,0,82,13,0,0,82,13,0,0,82,13,0,0,84,13,0,0,84,13,0,0,84,13,0,0,86,13,0,0,88,13,0,0,90,13,0,0,90,13,0,0,90,13,0,0,90,13,0,0,94,13,0,0,98,13,0,0,102,13,0,0,102,13,0,0,108,13,0,0,108,13,0,0,110,13,0,0,118,13,0,0,118,13,0,0,118,13,0,0,118,13,0,0,120,13,0,0,120,13,0,0,122,13,0,0,124,13,0,0,124,13,0,0,128,13,0,0,128,13,0,0,132,13,0,0,132,13,0,0,132,13,0,0,132,13,0,0,0,160,21,50,146,104,0,0,0,232,185,6,107,109,0,0,0,232,185,6,247,109,0,0,0,232,185,6,220,112,0,0,0,232,185,6,177,140,0,0,0,232,185,6,236,142,0,0,2,160,184,120,253,98,0,0,2,88,181,225,151,108,0,0,2,152,140,213,70,143,0,0,5,0,246,29,206,91,0,0,5,0,246,29,23,93,0,0,5,0,246,29,99,110,0,0,5,0,246,29,96,120,0,0,5,0,246,29,206,140,0,0,6,144,44,105,223,96,0,0,7,192,176,20,50,90,0,0,7,192,176,20,28,114,0,0,7,192,176,20,182,114,0,0,7,192,176,20,94,123,0,0,8,120,234,109,203,142,0,0,10,80,158,115,18,100,0,0,10,80,158,115,35,102,0,0,11,56,11,62,118,97,0,0,11,56,11,62,196,126,0,0,14,80,123,29,223,96,0,0,15,120,135,52,218,133,0,0,20,192,57,106,206,91,0,0,20,192,57,106,23,93,0,0,20,192,57,106,99,110,0,0,20,192,57,106,96,120,0,0,20,192,57,106,206,140,0,0,23,168,139,128,218,133,0,0,25,96,187,117,18,100,0,0,25,96,187,117,35,102,0,0,26,80,205,164,50,90,0,0,26,80,205,164,28,114,0,0,26,80,205,164,182,114,0,0,26,80,205,164,94,123,0,0,26,120,219,193,153,125,0,0,26,136,144,95,218,133,0,0,27,160,29,179,55,116,0,0,27,200,44,209,218,133,0,0,27,160,29,179,98,144,0,0,28,56,38,210,218,133,0,0,29,0,120,139,18,100,0,0,29,0,120,139,35,102,0,0,29,48,118,175,164,121,0,0,30,112,75,4,199,122,0,0,30,112,75,4,201,130,0,0,30,112,75,4,1,132,0,0,31,80,228,210,218,133,0,0,37,240,81,200,254,126,0,0,40,128,123,247,204,115,0,0,40,128,123,247,121,131,0,0,41,88,18,86,218,133,0,0,47,128,191,105,31,113,0,0,49,176,50,206,218,133,0,0,50,96,58,164,69,104,0,0,50,96,58,164,179,105,0,0,50,56,151,234,152,111,0,0,50,96,58,164,131,132,0,0,53,80,137,195,152,111,0,0,53,24,62,238,218,133,0,0,55,8,127,192,157,86,0,0,55,8,127,192,62,137,0,0,55,8,127,192,211,139,0,0,55,8,127,192,65,146,0,0,56,208,54,63,210,95,0,0,57,0,195,115,69,130,0,0,58,16,212,160,218,133,0,0,59,32,234,43,152,129,0,0,59,32,234,43,183,137,0,0,62,144,148,159,206,91,0,0,62,144,148,159,23,93,0,0,62,144,148,159,99,110,0,0,62,144,148,159,96,120,0,0,62,144,148,159,206,140,0,0,63,144,227,101,132,145,0,0,64,248,55,101,231,106,0,0,64,248,55,101,47,107,0,0,64,248,55,101,106,107,0,0,64,248,55,101,142,107,0,0,64,248,55,101,194,107,0,0,66,88,70,10,179,109,0,0,69,208,63,41,218,133,0,0,71,136,133,242,31,113,0,0,71,24,4,60,40,130,0,0,74,216,98,173,50,90,0,0,74,216,98,173,28,114,0,0,74,216,98,173,182,114,0,0,74,216,98,173,94,123,0,0,76,184,60,165,50,90,0,0,76,200,179,230,105,106,0,0,76,184,60,165,28,114,0,0,76,184,60,165,182,114,0,0,76,200,179,230,108,117,0,0,76,184,60,165,94,123,0,0,79,128,215,157,206,91,0,0,79,128,215,157,23,93,0,0,79,128,215,157,99,110,0,0,79,128,215,157,96,120,0,0,79,208,138,110,218,133,0,0,79,128,215,157,206,140,0,0,83,168,42,140,128,127,0,0,84,64,249,67,206,91,0,0,84,64,249,67,23,93,0,0,84,64,249,67,99,110,0,0,84,64,249,67,96,120,0,0,84,64,249,67,206,140,0,0,85,32,211,145,18,100,0,0,85,32,211,145,35,102,0,0,85,56,153,111,218,133,0,0,87,200,35,86,132,145,0,0,88,96,158,175,91,91,0,0,88,96,158,175,128,111,0,0,88,96,158,175,204,115,0,0,89,16,237,97,47,144,0,0,91,0,125,27,6,119,0,0,92,240,131,12,165,91,0,0,92,240,131,12,199,109,0,0,92,240,131,12,32,142,0,0,93,144,223,74,50,90,0,0,93,144,223,74,28,114,0,0,93,144,223,74,182,114,0,0,93,144,223,74,94,123,0,0,94,208,44,117,196,106,0,0,94,208,44,117,237,119,0,0,94,208,44,117,0,139,0,0,95,200,98,244,111,137,0,0,96,48,30,248,252,124,0,0,99,160,186,147,55,111,0,0,99,120,208,138,6,119,0,0,103,168,211,126,218,133,0,0,110,168,111,122,23,90,0,0,110,168,111,122,128,111,0,0,110,168,111,122,224,116,0,0,110,168,111,122,183,118,0,0,114,56,145,75,50,90,0,0,114,168,5,121,81,108,0,0,114,56,145,75,28,114,0,0,114,56,145,75,182,114,0,0,114,56,145,75,94,123,0,0,116,88,120,192,6,119,0,0,117,72,203,138,240,88,0,0,117,72,203,138,47,133,0,0,118,40,244,44,250,99,0,0,120,192,119,124,230,92,0,0,120,0,70,107,218,133,0,0,120,192,119,124,239,144,0,0,122,216,9,213,192,97,0,0,122,216,9,213,223,97,0,0,122,104,236,202,6,119,0,0,122,216,9,213,103,127,0,0,124,216,81,151,163,133,0,0,126,160,106,188,151,108,0,0,128,56,20,224,58,108,0,0,130,112,33,19,218,133,0,0,138,56,183,255,218,133,0,0,139,216,72,3,218,133,0,0,141,16,190,129,101,108,0,0,145,120,31,254,112,113,0,0,145,120,31,254,129,142,0,0,148,0,61,146,218,133,0,0,149,192,27,171,157,92,0,0,149,96,34,63,218,133,0,0,149,192,27,171,98,144,0,0,154,160,132,182,108,104,0,0,154,160,132,182,202,104,0,0,154,160,132,182,63,138,0,0,163,240,233,155,50,90,0,0,163,240,233,155,28,114,0,0,163,240,233,155,182,114,0,0,163,240,233,155,94,123,0,0,164,112,1,182,206,91,0,0,164,112,1,182,23,93,0,0,164,112,1,182,99,110,0,0,164,112,1,182,96,120,0,0,164,112,1,182,206,140,0,0,166,40,185,148,85,87,0,0,166,144,85,40,32,117,0,0,166,144,85,40,72,117,0,0,166,144,85,40,240,143,0,0,167,128,3,163,118,97,0,0,167,128,3,163,196,126,0,0,169,136,215,178,186,91,0,0,169,136,215,178,44,121,0,0,169,136,215,178,94,121,0,0,172,128,28,135,218,133,0,0,174,136,67,142,206,91,0,0,174,136,67,142,23,93,0,0,174,136,67,142,99,110,0,0,174,136,67,142,96,120,0,0,174,136,67,142,206,140,0,0,175,104,250,16,133,122,0,0,176,200,9,182,18,100,0,0,176,200,9,182,35,102,0,0,183,248,47,128,1,93,0,0,183,144,154,3,218,133,0,0,183,184,134,125,132,145,0,0,190,240,80,196,93,118,0,0,190,240,80,196,252,125,0,0,191,200,225,26,35,99,0,0,191,216,21,233,55,116,0,0,191,200,225,26,70,143,0,0,191,216,21,233,98,144,0,0,193,32,22,171,151,108,0,0,193,32,22,171,38,109,0,0,193,88,105,47,253,113,0,0,193,88,105,47,211,139,0,0,199,24,215,198,46,126,0,0,200,216,166,248,117,105,0,0,200,152,243,109,199,122,0,0,200,152,243,109,201,130,0,0,200,152,243,109,1,132,0,0,205,232,217,27,218,133,0,0,206,192,223,232,218,133,0,0,207,104,157,38,22,88,0,0,208,144,206,229,18,100,0,0,208,144,206,229,35,102,0,0,208,200,253,111,218,133,0,0,210,184,45,12,254,126,0,0,215,208,198,207,39,108,0,0,216,232,214,141,172,129,0,0,217,64,161,188,157,92,0,0,218,176,186,148,132,145,0,0,219,136,121,186,218,133,0,0,223,32,18,231,88,89,0,0,227,88,156,13,50,90,0,0,227,32,104,135,223,96,0,0,227,88,156,13,28,114,0,0,227,88,156,13,182,114,0,0,227,88,156,13,94,123,0,0,230,128,19,204,218,133,0,0,233,48,108,167,218,133,0,0,238,128,234,183,46,86,0,0,238,24,70,159,171,117,0,0,238,24,70,159,39,118,0,0,239,72,120,15,244,93,0,0,243,32,11,231,33,120,0,0,247,88,161,212,18,100,0,0,247,88,161,212,35,102,0,0,250,144,159,145,223,96,0,0,254,112,29,173,218,133,0,0,6,113,42,53,50,90,0,0,6,113,42,53,28,114,0,0,6,113,42,53,182,114,0,0,6,113,42,53,94,123,0,0,7,129,34,163,9,105,0,0,8,89,112,168,107,124,0,0,9,249,161,202,160,98,0,0,10,33,126,246,114,91,0,0,10,33,126,246,110,119,0,0,10,33,126,246,237,119,0,0,12,137,190,127,182,98,0,0,15,41,180,148,186,112,0,0,16,1,33,87,177,125,0,0,17,49,230,213,50,90,0,0,17,49,230,213,28,114,0,0,17,49,230,213,182,114,0,0,17,49,230,213,94,123,0,0,18,9,101,125,218,133,0,0,18,89,20,235,218,133,0,0,21,233,245,186,223,96,0,0,25,233,185,148,132,145,0,0,27,145,171,15,218,133,0,0,29,217,142,104,199,122,0,0,29,217,142,104,201,130,0,0,29,217,142,104,1,132,0,0,31,161,150,227,18,100,0,0,31,161,150,227,35,102,0,0,32,33,190,175,169,88,0,0,32,33,190,175,30,140,0,0,33,137,201,148,146,104,0,0,39,121,88,207,24,86,0,0,39,121,88,207,206,140,0,0,47,201,236,107,218,133,0,0,49,81,214,158,50,90,0,0,49,81,214,158,28,114,0,0,49,81,214,158,182,114,0,0,49,81,214,158,94,123,0,0,50,57,154,112,154,109,0,0,50,57,154,112,17,145,0,0,52,153,237,244,132,145,0,0,55,113,78,72,36,89,0,0,55,25,157,38,35,102,0,0,55,113,78,72,206,140,0,0,57,113,126,24,218,133,0,0,59,121,193,165,111,137,0,0,63,49,180,3,218,133,0,0,66,217,117,114,50,90,0,0,66,217,117,114,185,113,0,0,66,233,138,249,218,133,0,0,66,217,117,114,214,141,0,0,67,137,14,191,218,133,0,0,69,137,239,3,18,100,0,0,69,137,239,3,35,102,0,0,74,113,81,117,206,91,0,0,74,113,81,117,23,93,0,0,74,113,81,117,99,110,0,0,74,113,81,117,96,120,0,0,74,113,81,117,206,140,0,0,84,17,87,206,206,91,0,0,84,17,87,206,23,93,0,0,84,17,87,206,99,110,0,0,84,17,87,206,96,120,0,0,84,41,234,162,24,128,0,0,84,41,234,162,46,128,0,0,84,17,87,206,206,140,0,0,85,217,40,127,46,119,0,0,85,217,40,127,78,119,0,0,85,113,97,11,218,133,0,0,85,217,40,127,164,139,0,0,87,209,238,218,18,100,0,0,87,209,238,218,35,102,0,0,88,145,218,52,206,91,0,0,88,145,218,52,23,93,0,0,88,145,218,52,99,110,0,0,88,145,218,52,96,120,0,0,88,145,218,52,206,140,0,0,91,1,171,122,70,143,0,0,93,57,69,24,112,95,0,0,93,41,123,37,211,139,0,0,94,193,166,27,206,138,0,0,95,129,58,197,206,91,0,0,95,129,58,197,23,93,0,0,95,209,202,154,18,100,0,0,95,177,50,218,18,100,0,0,95,209,202,154,35,102,0,0,95,177,50,218,35,102,0,0,95,129,58,197,99,110,0,0,95,129,58,197,96,120,0,0,95,209,202,154,166,132,0,0,95,129,58,197,206,140,0,0,97,105,233,20,39,146,0,0,98,17,236,114,98,144,0,0,100,81,229,36,218,133,0,0,101,65,181,55,40,127,0,0,104,1,233,126,252,90,0,0,105,145,243,10,18,100,0,0,105,145,243,10,35,102,0,0,105,89,166,8,215,111,0,0,105,89,166,8,105,112,0,0,107,105,89,94,70,143,0,0,108,57,25,193,218,133,0,0,108,49,154,250,32,142,0,0,112,17,49,77,80,106,0,0,113,225,65,111,195,129,0,0,114,89,155,19,50,90,0,0,114,89,155,19,220,112,0,0,114,89,155,19,4,113,0,0,117,49,214,49,70,143,0,0,119,25,5,77,149,96,0,0,120,145,223,66,143,133,0,0,126,137,56,75,218,133,0,0,131,185,143,46,18,100,0,0,131,185,143,46,35,102,0,0,134,97,173,2,254,123,0,0,137,17,206,98,132,109,0,0,137,121,171,202,218,133,0,0,137,17,206,98,144,139,0,0,138,113,157,38,18,100,0,0,138,25,65,217,18,100,0,0,138,113,157,38,35,102,0,0,138,25,65,217,35,102,0,0,138,25,65,217,166,132,0,0,139,57,160,40,70,143,0,0,140,25,35,202,218,133,0,0,144,201,186,58,50,90,0,0,144,129,66,43,0,107,0,0,144,201,186,58,28,114,0,0,144,201,186,58,182,114,0,0,144,201,186,58,94,123,0,0,145,241,105,0,33,120,0,0,147,241,185,13,218,133,0,0,152,41,216,224,18,100,0,0,152,41,216,224,35,102,0,0,153,193,19,65,146,88,0,0,155,1,217,248,118,97,0,0,155,1,217,248,196,126,0,0,155,65,110,160,218,133,0,0,156,153,237,24,218,133,0,0,156,177,35,104,218,133,0,0,157,33,32,210,50,90,0,0,157,33,32,210,28,114,0,0,157,33,32,210,182,114,0,0,157,33,32,210,94,123,0,0,162,137,83,181,41,112,0,0,166,233,88,129,13,146,0,0,168,185,113,21,18,100,0,0,168,185,113,21,35,102,0,0,168,185,113,21,166,132,0,0,177,129,155,235,31,113,0,0,180,49,97,175,173,126,0,0,184,129,241,82,117,146,0,0,185,225,189,83,140,91,0,0,185,9,174,241,0,107,0,0,193,129,17,91,18,100,0,0,193,129,17,91,35,102,0,0,195,217,243,28,55,116,0,0,195,217,243,28,98,144,0,0,197,129,35,154,44,145,0,0,208,249,225,133,46,86,0,0,209,209,62,232,50,90,0,0,209,209,62,232,28,114,0,0,209,209,62,232,182,114,0,0,209,209,62,232,94,123,0,0,215,1,46,126,59,94,0,0,224,121,38,141,1,117,0,0,225,17,75,233,240,88,0,0,225,17,75,233,215,111,0,0,225,17,75,233,74,123,0,0,227,113,229,42,240,88,0,0,227,241,75,54,18,100,0,0,227,241,75,54,35,102,0,0,227,113,229,42,47,133,0,0,229,137,210,252,218,133,0,0,230,201,191,116,218,133,0,0,231,81,13,214,98,126,0,0,235,249,5,126,38,147,0,0,238,49,93,189,206,91,0,0,238,49,93,189,23,93,0,0,238,49,93,189,99,110,0,0,238,49,93,189,96,120,0,0,238,49,93,189,206,140,0,0,240,145,23,90,123,108,0,0,241,209,103,176,39,98,0,0,241,209,103,176,177,127,0,0,241,209,103,176,214,127,0,0,241,209,103,176,225,128,0,0,241,225,18,234,218,133,0,0,243,89,40,245,199,122,0,0,243,89,40,245,201,130,0,0,243,89,40,245,1,132,0,0,244,81,134,132,118,97,0,0,244,57,236,159,18,100,0,0,244,57,236,159,35,102,0,0,244,81,134,132,196,126,0,0,245,169,102,224,29,124,0,0,245,81,156,151,218,133,0,0,245,33,143,78,235,146,0,0,246,9,22,52,70,143,0,0,247,41,5,165,133,89,0,0,248,145,132,198,55,111,0,0,249,193,252,30,18,100,0,0,249,193,252,30,35,102,0,0,249,193,252,30,166,132,0,0,249,177,82,42,218,133,0,0,252,209,232,219,218,133,0,0,252,193,229,126,228,137,0,0,254,17,180,68,18,100,0,0,254,49,117,249,18,100,0,0,254,17,180,68,35,102,0,0,254,49,117,249,35,102,0,0,254,225,151,159,206,140,0,0,254,161,14,102,132,145,0,0,255,153,9,157,62,127,0,0,0,178,191,254,255,89,0,0,0,178,191,254,106,125,0,0,4,82,34,158,70,143,0,0,5,74,143,239,218,133,0,0,7,242,239,179,146,104,0,0,8,82,75,152,70,112,0,0,9,210,140,64,55,116,0,0,9,210,140,64,98,144,0,0,10,114,145,228,18,100,0,0,10,114,145,228,35,102,0,0,11,18,81,92,168,95,0,0,11,18,81,92,177,122,0,0,12,202,183,136,18,100,0,0,12,202,183,136,35,102,0,0,12,154,85,167,218,133,0,0,16,74,60,175,0,140,0,0,19,50,208,169,18,100,0,0,19,50,208,169,35,102,0,0,21,26,13,227,50,90,0,0,21,26,13,227,28,114,0,0,21,26,13,227,182,114,0,0,21,26,13,227,94,123,0,0,38,130,150,234,18,100,0,0,38,130,150,234,35,102,0,0,38,130,150,234,166,132,0,0,40,66,19,210,18,100,0,0,40,66,19,210,35,102,0,0,42,226,141,59,20,95,0,0,45,26,78,227,18,100,0,0,45,26,78,227,35,102,0,0,45,26,78,227,90,132,0,0,46,66,146,174,229,99,0,0,46,170,198,84,218,133,0,0,47,218,101,161,85,124,0,0,48,74,40,202,246,129,0,0,48,154,27,102,218,133,0,0,48,74,40,202,214,141,0,0,49,178,118,8,218,133,0,0,49,202,44,145,218,133,0,0,50,162,36,65,18,100,0,0,50,162,36,65,35,102,0,0,50,162,36,65,132,145,0,0,55,74,145,199,152,111,0,0,55,26,19,1,189,144,0,0,57,82,250,107,204,128,0,0,57,82,250,107,132,145,0,0,60,170,131,19,18,100,0,0,60,170,131,19,35,102,0,0,60,170,131,19,90,132,0,0,61,82,203,204,18,100,0,0,61,82,203,204,35,102,0,0,62,82,215,197,191,139,0,0,65,250,161,133,70,143,0,0,66,66,133,82,18,100,0,0,66,66,133,82,35,102,0,0,68,18,186,112,157,92,0,0,68,18,186,112,204,92,0,0,74,186,29,157,6,119,0,0,74,138,133,199,218,133,0,0,75,90,237,105,47,122,0,0,77,42,10,126,48,110,0,0,77,66,77,81,112,145,0,0,81,170,145,2,223,96,0,0,81,10,66,226,218,133,0,0,84,130,56,66,79,96,0,0,84,130,56,66,69,130,0,0,84,130,56,66,113,140,0,0,93,154,236,237,18,100,0,0,93,154,236,237,35,102,0,0,94,74,253,166,212,86,0,0,94,42,254,54,218,133,0,0,100,26,1,152,218,133,0,0,101,130,216,132,218,133,0,0,102,122,149,145,218,133,0,0,106,2,57,11,218,133,0,0,106,250,197,194,132,145,0,0,108,234,6,185,59,147,0,0,108,234,6,185,117,147,0,0,108,234,6,185,179,147,0,0,108,234,6,185,239,147,0,0,112,226,114,219,231,106,0,0,112,226,114,219,142,107,0,0,112,226,114,219,194,107,0,0,113,50,220,140,70,143,0,0,114,154,74,229,218,133,0,0,115,58,18,12,218,133,0,0,119,226,212,220,73,99,0,0,119,170,255,235,18,100,0,0,119,170,255,235,35,102,0,0,119,226,212,220,95,115,0,0,119,170,255,235,166,132,0,0,120,250,103,86,131,99,0,0,122,26,234,219,70,143,0,0,123,26,16,100,218,133,0,0,126,242,178,129,18,100,0,0,126,218,49,185,18,100,0,0,126,242,178,129,35,102,0,0,126,218,49,185,35,102,0,0,126,42,113,150,45,143,0,0,127,178,19,61,18,100,0,0,127,178,19,61,35,102,0,0,130,226,111,36,202,108,0,0,131,202,215,197,18,100,0,0,131,202,215,197,35,102,0,0,131,82,135,171,59,147,0,0,131,82,135,171,117,147,0,0,131,82,135,171,179,147,0,0,131,82,135,171,239,147,0,0,136,146,31,30,139,94,0,0,136,146,31,30,180,94,0,0,136,146,31,30,227,94,0,0,136,34,211,183,145,137,0,0,137,90,194,228,50,90,0,0,137,90,194,228,28,114,0,0,137,90,194,228,182,114,0,0,137,90,194,228,94,123,0,0,146,226,224,156,50,90,0,0,146,226,224,156,28,114,0,0,146,226,224,156,182,114,0,0,146,226,224,156,94,123,0,0,146,146,157,38,59,147,0,0,146,146,157,38,117,147,0,0,146,146,157,38,179,147,0,0,146,146,157,38,239,147,0,0,151,50,249,74,73,98,0,0,151,50,249,74,70,107,0,0,155,242,114,86,218,133,0,0,157,226,236,172,204,87,0,0,159,34,133,152,218,133,0,0,162,122,21,240,18,100,0,0,162,114,210,250,18,100,0,0,162,122,21,240,35,102,0,0,162,114,210,250,35,102,0,0,162,194,242,76,70,143,0,0,164,210,112,234,206,91,0,0,164,210,112,234,23,93,0,0,164,210,112,234,99,110,0,0,164,210,112,234,96,120,0,0,164,210,112,234,206,140,0,0,166,34,82,115,223,96,0,0,166,154,219,231,218,133,0,0,168,26,34,174,132,145,0,0,173,194,190,92,215,111,0,0,173,194,190,92,105,112,0,0,173,26,32,211,70,143,0,0,180,146,219,104,206,91,0,0,180,146,219,104,23,93,0,0,180,146,219,104,99,110,0,0,180,146,219,104,96,120,0,0,180,146,219,104,206,140,0,0,181,98,19,188,18,100,0,0,181,98,19,188,35,102,0,0,182,66,244,86,218,133,0,0,185,42,191,172,59,147,0,0,185,42,191,172,117,147,0,0,185,42,191,172,179,147,0,0,185,42,191,172,239,147,0,0,187,194,203,7,94,123,0,0,188,202,4,227,196,88,0,0,188,82,74,186,41,95,0,0,188,178,48,98,132,145,0,0,189,26,185,92,159,116,0,0,190,122,171,101,218,133,0,0,191,50,149,30,18,100,0,0,191,50,149,30,35,102,0,0,192,90,49,212,199,122,0,0,192,82,159,129,56,129,0,0,192,90,49,212,201,130,0,0,192,90,49,212,1,132,0,0,193,66,173,157,18,100,0,0,193,66,173,157,35,102,0,0,194,82,202,100,46,126,0,0,200,26,157,38,86,104,0,0,200,2,122,185,218,133,0,0,200,74,203,70,239,144,0,0,202,50,243,140,50,90,0,0,202,50,243,140,28,114,0,0,202,50,243,140,182,114,0,0,202,50,243,140,94,123,0,0,207,250,68,228,183,116,0,0,212,250,44,213,223,96,0,0,214,114,182,205,218,133,0,0,215,2,142,110,248,97,0,0,216,250,205,87,218,133,0,0,223,26,67,82,18,100,0,0,223,26,67,82,35,102,0,0,223,34,169,22,218,133,0,0,224,226,52,60,152,111,0,0,224,162,48,142,222,125,0,0,226,114,64,222,160,140,0,0,228,210,53,240,70,126,0,0,228,210,53,240,98,126,0,0,234,2,6,146,171,117,0,0,235,194,69,55,18,100,0,0,235,194,69,55,35,102,0,0,235,194,69,55,9,133,0,0,236,218,125,146,132,145,0,0,237,34,234,228,50,90,0,0,237,34,234,228,28,114,0,0,237,34,234,228,182,114,0,0,237,34,234,228,94,123,0,0,238,178,236,44,31,113,0,0,238,202,105,230,122,130,0,0,247,194,114,14,50,90,0,0,247,194,114,14,28,114,0,0,247,194,114,14,182,114,0,0,247,194,114,14,94,123,0,0,249,18,142,127,123,108,0,0,252,226,96,246,223,96,0,0,254,50,156,132,157,99,0,0,255,74,140,143,132,145,0,0,0,163,246,81,240,88,0,0,0,163,246,81,50,90,0,0,0,235,22,132,55,116,0,0,0,163,246,81,47,133,0,0,0,163,246,81,20,144,0,0,3,195,131,98,18,100,0,0,3,195,131,98,35,102,0,0,10,43,81,172,136,119,0,0,10,43,81,172,74,120,0,0,17,131,113,22,38,109,0,0,20,83,146,126,31,113,0,0,24,139,206,74,69,121,0,0,32,251,197,194,86,105,0,0,33,179,189,98,157,99,0,0,39,51,165,153,98,144,0,0,42,187,122,77,131,125,0,0,44,211,235,52,152,111,0,0,50,43,63,107,253,113,0,0,53,123,84,200,50,90,0,0,53,123,84,200,28,114,0,0,53,123,84,200,182,114,0,0,53,131,205,68,108,117,0,0,53,123,84,200,94,123,0,0,53,19,19,28,218,133,0,0,54,195,96,248,18,100,0,0,54,195,96,248,35,102,0,0,60,107,218,203,135,140,0,0,61,179,189,8,18,100,0,0,61,179,189,8,35,102,0,0,61,43,185,73,11,112,0,0,61,51,254,76,218,133,0,0,62,3,255,178,223,96,0,0,65,147,224,133,218,133,0,0,67,75,146,160,223,96,0,0,76,155,137,150,109,98,0,0,78,67,216,108,223,96,0,0,82,59,255,174,108,117,0,0,83,59,130,192,18,100,0,0,83,59,130,192,35,102,0,0,83,123,48,33,199,122,0,0,83,123,48,33,201,130,0,0,83,123,48,33,1,132,0,0,83,43,178,8,86,140,0,0,86,171,254,166,136,105,0,0,86,171,254,166,243,105,0,0,86,171,254,166,31,106,0,0,91,91,86,43,174,124,0,0,91,91,86,43,217,124,0,0,91,227,226,195,37,138,0,0,91,227,226,195,9,147,0,0,93,235,14,55,4,113,0,0,93,155,90,44,218,133,0,0,96,35,78,121,37,138,0,0,96,35,78,121,9,147,0,0,104,75,165,55,15,98,0,0,104,115,231,242,18,100,0,0,104,115,231,242,35,102,0,0,104,75,165,55,135,128,0,0,104,75,165,55,110,129,0,0,105,243,151,229,206,91,0,0,105,243,151,229,23,93,0,0,105,243,151,229,99,110,0,0,105,243,151,229,96,120,0,0,105,243,151,229,206,140,0,0,109,123,208,240,240,107,0,0,111,115,175,193,150,106,0,0,111,139,207,70,218,133,0,0,113,67,218,48,218,133,0,0,115,19,52,36,199,122,0,0,115,19,52,36,201,130,0,0,115,19,52,36,1,132,0,0,118,83,200,198,239,144,0,0,123,219,178,8,18,100,0,0,123,219,178,8,35,102,0,0,125,227,221,81,70,143,0,0,126,35,95,163,18,100,0,0,126,35,95,163,35,102,0,0,127,219,166,149,128,106,0,0,129,171,177,114,152,122,0,0,133,91,233,96,207,137,0,0,133,91,233,96,12,138,0,0,136,99,92,220,7,116,0,0,140,115,145,25,183,146,0,0,145,27,21,108,200,96,0,0,146,147,37,151,206,91,0,0,146,147,37,151,23,93,0,0,146,147,37,151,99,110,0,0,146,147,37,151,96,120,0,0,146,147,37,151,206,140,0,0,149,195,16,87,18,100,0,0,149,195,16,87,35,102,0,0,149,251,80,165,218,133,0,0,150,43,204,105,206,91,0,0,150,43,204,105,23,93,0,0,150,43,204,105,99,110,0,0,150,43,204,105,96,120,0,0,150,43,204,105,206,140,0,0,152,227,27,98,18,100,0,0,152,227,27,98,35,102,0,0,156,219,152,7,83,111,0,0,156,219,152,7,98,144,0,0,160,123,180,252,223,96,0,0,160,155,73,151,199,122,0,0,160,155,73,151,201,130,0,0,160,155,73,151,1,132,0,0,161,203,195,111,33,120,0,0,164,187,194,8,218,133,0,0,166,107,28,198,218,133,0,0,167,67,228,117,218,133,0,0,169,243,206,88,93,95,0,0,172,83,202,89,14,120,0,0,172,115,159,37,218,133,0,0,172,83,202,89,32,142,0,0,174,227,243,154,32,142,0,0,176,155,231,242,18,100,0,0,176,155,231,242,35,102,0,0,178,235,146,205,178,119,0,0,178,235,146,205,208,119,0,0,181,27,5,210,97,88,0,0,188,59,217,195,107,87,0,0,188,59,217,195,173,89,0,0,188,59,217,195,204,89,0,0,188,59,217,195,109,94,0,0,192,139,218,99,70,118,0,0,194,3,126,33,206,91,0,0,194,3,126,33,23,93,0,0,194,3,126,33,99,110,0,0,194,3,126,33,96,120,0,0,194,3,126,33,206,140,0,0,195,147,7,53,218,133,0,0,199,227,39,60,139,94,0,0,199,227,39,60,180,94,0,0,199,227,39,60,227,94,0,0,202,155,51,79,218,133,0,0,203,219,34,129,240,88,0,0,204,35,222,192,218,133,0,0,207,59,170,147,206,91,0,0,207,59,170,147,23,93,0,0,207,59,170,147,99,110,0,0,207,195,15,88,136,119,0,0,207,59,170,147,96,120,0,0,207,139,55,198,218,133,0,0,207,59,170,147,206,140,0,0,207,83,188,148,70,143,0,0,212,211,100,244,206,91,0,0,212,211,100,244,23,93,0,0,212,83,197,188,18,100,0,0,212,83,197,188,35,102,0,0,212,211,100,244,99,110,0,0,212,211,100,244,96,120,0,0,212,211,100,244,206,140,0,0,213,195,202,97,151,108,0,0,213,195,202,97,128,127,0,0,213,83,149,86,218,133,0,0,215,147,143,117,18,100,0,0,215,147,143,117,35,102,0,0,217,147,45,144,206,91,0,0,217,147,45,144,23,93,0,0,217,147,45,144,99,110,0,0,217,147,45,144,96,120,0,0,217,67,191,131,218,133,0,0,217,147,45,144,206,140,0,0,221,115,195,184,202,108,0,0,221,115,195,184,38,109,0,0,226,195,3,16,223,96,0,0,226,91,136,50,18,100,0,0,226,107,12,142,18,100,0,0,226,91,136,50,35,102,0,0,226,107,12,142,35,102,0,0,226,227,183,53,144,121,0,0,228,163,168,43,132,145,0,0,230,187,188,178,93,86,0,0,230,187,188,178,132,145,0,0,233,243,134,154,67,89,0,0,234,75,179,148,151,108,0,0,241,131,219,33,18,100,0,0,241,131,219,33,35,102,0,0,241,59,76,37,158,113,0,0,241,59,76,37,129,116,0,0,241,59,76,37,206,117,0,0,241,59,76,37,237,117,0,0,241,27,14,217,218,133,0,0,241,59,76,37,73,144,0,0,242,243,74,45,62,127,0,0,243,83,242,122,218,133,0,0,250,219,241,2,218,133,0,0,252,19,117,13,152,111,0,0,254,163,7,142,59,147,0,0,254,163,7,142,117,147,0,0,254,163,7,142,179,147,0,0,254,163,7,142,239,147,0,0,2,140,210,198,218,133,0,0,5,228,1,254,50,90,0,0,5,228,1,254,28,114,0,0,5,228,1,254,182,114,0,0,5,132,11,170,47,122,0,0,5,228,1,254,94,123,0,0,5,252,199,199,32,142,0,0,8,36,155,110,0,139,0,0,10,204,223,17,218,133,0,0,11,156,138,192,50,90,0,0,11,156,138,192,28,114,0,0,11,156,138,192,182,114,0,0,11,156,138,192,94,123,0,0,11,180,242,46,218,133,0,0,13,124,218,249,18,100,0,0,13,124,218,249,35,102,0,0,16,164,244,211,132,145,0,0,17,156,138,192,50,90,0,0,17,156,138,192,28,114,0,0,17,156,138,192,182,114,0,0,17,156,138,192,94,123,0,0,20,244,18,197,63,95,0,0,20,244,18,197,72,122,0,0,26,28,86,47,206,91,0,0,26,28,86,47,23,93,0,0,26,28,86,47,99,110,0,0,26,28,86,47,96,120,0,0,26,28,86,47,206,140,0,0,32,228,217,16,191,86,0,0,32,60,204,168,31,113,0,0,32,68,46,5,94,123,0,0,32,36,249,128,218,133,0,0,37,44,193,111,136,105,0,0,37,44,193,111,243,105,0,0,37,44,193,111,31,106,0,0,38,52,32,136,70,143,0,0,41,52,205,50,218,133,0,0,45,252,55,89,153,89,0,0,49,188,176,148,18,100,0,0,49,188,176,148,35,102,0,0,50,180,90,205,35,99,0,0,50,180,90,205,162,142,0,0,50,180,90,205,70,143,0,0,52,116,159,2,218,133,0,0,53,68,157,38,18,100,0,0,53,68,157,38,35,102,0,0,56,84,187,202,226,87,0,0,56,84,187,202,45,88,0,0,56,116,81,165,50,90,0,0,56,116,81,165,28,114,0,0,56,116,81,165,182,114,0,0,56,116,81,165,94,123,0,0,59,36,147,174,218,133,0,0,60,84,113,193,132,145,0,0,61,100,24,208,218,133,0,0,62,148,185,94,218,133,0,0,63,108,155,47,157,92,0,0,64,132,55,147,150,115,0,0,66,220,13,152,218,133,0,0,72,140,183,152,18,100,0,0,72,140,183,152,35,102,0,0,72,100,161,202,38,109,0,0,74,164,127,138,218,133,0,0,75,212,154,78,154,112,0,0,80,164,167,155,218,133,0,0,85,100,228,169,218,133,0,0,86,84,107,168,104,122,0,0,87,220,61,55,157,92,0,0,87,220,61,55,86,94,0,0,87,140,65,77,70,143,0,0,88,92,45,122,18,100,0,0,88,92,45,122,35,102,0,0,88,108,120,183,218,133,0,0,90,180,52,218,149,124,0,0,94,124,171,64,254,126,0,0,95,116,145,76,146,104,0,0,100,108,157,38,35,125,0,0,112,132,7,116,206,91,0,0,112,132,7,116,23,93,0,0,112,28,214,214,253,98,0,0,112,132,7,116,99,110,0,0,112,132,7,116,96,120,0,0,112,132,7,116,206,140,0,0,114,252,161,157,55,116,0,0,114,252,161,157,98,144,0,0,119,156,70,208,18,100,0,0,119,156,70,208,35,102,0,0,119,116,11,251,70,143,0,0,120,172,68,144,39,98,0,0,120,172,68,144,177,127,0,0,120,172,68,144,214,127,0,0,120,172,68,144,225,128,0,0,121,36,250,15,218,133,0,0,122,84,202,222,132,145,0,0,123,156,224,253,18,100,0,0,123,156,224,253,35,102,0,0,126,172,242,215,67,91,0,0,126,180,179,63,84,145,0,0,128,44,44,101,18,100,0,0,128,44,44,101,35,102,0,0,128,60,160,139,108,104,0,0,128,60,160,139,202,104,0,0,128,180,61,220,212,105,0,0,128,100,10,185,23,126,0,0,128,44,44,101,9,133,0,0,128,60,160,139,63,138,0,0,132,116,61,94,18,100,0,0,132,116,61,94,35,102,0,0,132,60,189,2,218,133,0,0,133,212,203,110,146,104,0,0,134,212,223,38,146,104,0,0,136,60,150,250,218,133,0,0,137,180,60,166,18,100,0,0,137,180,60,166,35,102,0,0,140,52,155,17,132,145,0,0,141,148,45,16,18,100,0,0,141,148,45,16,35,102,0,0,144,180,172,244,18,100,0,0,144,180,172,244,35,102,0,0,146,212,145,254,18,100,0,0,146,212,145,254,35,102,0,0,147,4,51,126,117,146,0,0,151,52,174,213,18,100,0,0,151,52,174,213,35,102,0,0,151,52,174,213,166,132,0,0,153,252,22,87,132,145,0,0,154,100,57,105,173,97,0,0,156,76,237,65,33,120,0,0,156,164,166,6,218,133,0,0,157,148,68,174,218,133,0,0,160,108,51,3,18,100,0,0,160,108,51,3,35,102,0,0,160,172,250,29,94,121,0,0,160,108,51,3,166,132,0,0,165,140,82,158,218,133,0,0,166,44,63,193,18,100,0,0,166,44,63,193,35,102,0,0,171,12,161,241,218,133,0,0,173,172,126,242,218,133,0,0,175,116,149,89,104,96,0,0,178,212,182,94,37,94,0,0,181,156,138,192,50,90,0,0,181,156,138,192,28,114,0,0,181,156,138,192,182,114,0,0,181,156,138,192,94,123,0,0,182,188,135,23,157,92,0,0,182,188,135,23,128,115,0,0,182,60,200,79,218,133,0,0,183,236,211,138,18,100,0,0,183,236,211,138,35,102,0,0,184,100,198,6,218,133,0,0,185,52,249,43,31,113,0,0,186,76,157,38,132,145,0,0,187,140,157,38,59,147,0,0,187,140,157,38,117,147,0,0,187,140,157,38,179,147,0,0,187,140,157,38,239,147,0,0,191,28,72,92,215,111,0,0,191,28,72,92,105,112,0,0,191,196,239,149,218,133,0,0,193,84,100,139,18,100,0,0,193,84,100,139,35,102,0,0,193,188,58,127,220,112,0,0,194,124,198,139,218,133,0,0,201,164,21,58,18,100,0,0,201,164,21,58,35,102,0,0,204,36,63,131,70,112,0,0,205,28,25,130,70,143,0,0,208,156,36,172,218,133,0,0,209,76,86,75,50,90,0,0,209,76,86,75,28,114,0,0,209,76,86,75,182,114,0,0,209,76,86,75,94,123,0,0,214,220,227,114,18,100,0,0,214,220,227,114,35,102,0,0,215,68,181,35,24,87,0,0,216,196,73,119,128,127,0,0,219,60,135,110,114,91,0,0,219,60,135,110,110,119,0,0,219,60,135,110,237,119,0,0,221,52,95,31,218,133,0,0,221,124,169,247,218,133,0,0,221,20,156,251,218,133,0,0,222,76,158,27,200,99,0,0,222,140,13,188,42,105,0,0,222,76,158,27,234,131,0,0,227,252,186,128,30,96,0,0,227,252,186,128,83,125,0,0,227,228,108,108,218,133,0,0,229,60,246,142,18,100,0,0,229,60,246,142,35,102,0,0,229,60,246,142,166,132,0,0,230,68,245,113,18,100,0,0,230,68,245,113,35,102,0,0,230,68,245,113,166,132,0,0,231,204,121,224,11,129,0,0,234,124,144,47,146,104,0,0,243,204,91,64,206,91,0,0,243,204,91,64,23,93,0,0,243,164,228,146,139,94,0,0,243,164,228,146,180,94,0,0,243,164,228,146,227,94,0,0,243,204,91,64,99,110,0,0,243,204,91,64,96,120,0,0,243,204,91,64,206,140,0,0,245,68,31,54,218,133,0,0,248,132,156,6,39,98,0,0,248,132,156,6,177,127,0,0,248,132,156,6,214,127,0,0,248,132,156,6,225,128,0,0,250,212,185,148,132,145,0,0,253,4,246,52,18,100,0,0,253,4,246,52,35,102,0,0,253,92,125,228,199,122,0,0,253,92,125,228,201,130,0,0,253,92,125,228,1,132,0,0,0,117,1,126,35,129,0,0,1,149,53,160,13,130,0,0,1,29,76,71,236,142,0,0,1,29,76,71,98,144,0,0,4,229,191,63,70,143,0,0,5,5,29,18,218,133,0,0,6,101,246,172,18,100,0,0,6,101,246,172,35,102,0,0,6,181,38,91,121,121,0,0,8,149,191,253,2,122,0,0,8,253,204,103,218,133,0,0,12,93,228,52,218,133,0,0,15,165,195,127,18,108,0,0,20,213,125,203,218,133,0,0,22,173,92,206,240,88,0,0,22,173,92,206,135,128,0,0,22,173,92,206,225,128,0,0,24,45,112,17,152,111,0,0,24,93,41,156,220,112,0,0,24,93,41,156,203,116,0,0,24,85,64,95,218,133,0,0,25,61,241,154,18,100,0,0,25,61,241,154,35,102,0,0,25,61,241,154,166,132,0,0,27,85,106,124,18,100,0,0,27,85,106,124,35,102,0,0,29,253,25,46,136,105,0,0,29,253,25,46,243,105,0,0,29,253,25,46,31,106,0,0,29,37,97,73,55,116,0,0,29,37,97,73,98,144,0,0,31,149,65,35,70,112,0,0,31,149,60,215,32,142,0,0,33,29,184,10,240,88,0,0,33,53,254,236,218,133,0,0,34,109,64,228,218,133,0,0,34,253,197,194,132,145,0,0,39,245,118,59,199,122,0,0,39,245,118,59,201,130,0,0,39,245,118,59,1,132,0,0,40,5,176,203,218,133,0,0,43,37,193,148,145,146,0,0,46,69,14,57,55,116,0,0,46,149,223,190,41,131,0,0,46,157,73,243,218,133,0,0,46,69,14,57,98,144,0,0,48,141,171,35,18,100,0,0,48,141,171,35,35,102,0,0,51,125,36,87,23,90,0,0,51,13,73,145,206,91,0,0,51,13,73,145,23,93,0,0,51,13,73,145,99,110,0,0,51,21,35,187,46,119,0,0,51,13,73,145,96,120,0,0,51,125,36,87,96,131,0,0,51,13,73,145,206,140,0,0,52,85,148,190,59,125,0,0,52,45,254,115,132,145,0,0,56,13,253,6,18,100,0,0,56,13,253,6,35,102,0,0,58,101,85,7,50,90,0,0,58,101,85,7,185,113,0,0,58,101,85,7,214,141,0,0,59,189,44,236,70,143,0,0,63,157,216,53,206,91,0,0,63,157,216,53,23,93,0,0,63,157,216,53,99,110,0,0,63,157,216,53,96,120,0,0,63,157,216,53,206,140,0,0,65,181,9,171,223,96,0,0,65,237,158,186,10,118,0,0,65,237,158,186,147,130,0,0,68,197,7,68,206,91,0,0,68,197,7,68,23,93,0,0,68,197,7,68,99,110,0,0,68,197,7,68,96,120,0,0,68,197,7,68,206,140,0,0,69,21,107,234,15,94,0,0,70,213,102,142,136,105,0,0,70,213,102,142,243,105,0,0,70,213,102,142,31,106,0,0,70,117,50,210,218,133,0,0,70,229,238,25,206,140,0,0,71,229,181,147,218,133,0,0,77,101,178,13,50,90,0,0,77,157,166,62,31,113,0,0,77,101,178,13,28,114,0,0,77,101,178,13,182,114,0,0,77,101,178,13,94,123,0,0,77,165,60,29,218,133,0,0,78,117,143,150,18,100,0,0,78,117,143,150,35,102,0,0,85,109,70,23,230,86,0,0,85,109,70,23,125,96,0,0,85,109,70,23,83,111,0,0,85,109,70,23,208,121,0,0,85,109,70,23,234,121,0,0,85,109,70,23,203,142,0,0,93,109,99,5,206,91,0,0,93,109,99,5,23,93,0,0,93,109,99,5,99,110,0,0,93,109,99,5,96,120,0,0,93,109,99,5,206,140,0,0,94,13,215,89,18,100,0,0,94,13,215,89,35,102,0,0,94,253,43,179,152,111,0,0,94,13,215,89,166,132,0,0,95,37,13,64,199,122,0,0,95,37,13,64,201,130,0,0,95,37,13,64,1,132,0,0,97,165,240,104,190,95,0,0,102,165,105,160,218,133,0,0,103,53,165,122,132,145,0,0,104,197,79,75,18,100,0,0,104,197,79,75,35,102,0,0,106,141,246,20,206,91,0,0,106,141,246,20,23,93,0,0,106,141,246,20,99,110,0,0,106,141,246,20,96,120,0,0,106,141,246,20,206,140,0,0,110,245,100,110,18,100,0,0,110,245,100,110,35,102,0,0,110,245,100,110,166,132,0,0,117,245,13,86,213,118,0,0,120,109,238,50,199,122,0,0,120,109,238,50,201,130,0,0,120,109,238,50,1,132,0,0,122,101,177,211,86,105,0,0,124,109,181,217,45,139,0,0,125,21,231,235,95,142,0,0,127,37,178,92,218,133,0,0,130,21,197,88,206,91,0,0,130,21,197,88,23,93,0,0,130,229,148,247,108,104,0,0,130,229,148,247,202,104,0,0,130,21,197,88,99,110,0,0,130,21,197,88,96,120,0,0,130,229,148,247,63,138,0,0,130,229,148,247,102,138,0,0,130,21,197,88,206,140,0,0,130,173,200,118,206,140,0,0,136,85,207,121,18,100,0,0,136,85,207,121,35,102,0,0,138,125,147,241,70,143,0,0,139,101,250,251,39,98,0,0,139,245,106,20,33,120,0,0,139,101,250,251,177,127,0,0,139,101,250,251,214,127,0,0,139,101,250,251,225,128,0,0,140,173,1,165,133,87,0,0,140,13,108,36,171,87,0,0,140,13,108,36,179,99,0,0,140,13,108,36,48,110,0,0,140,13,108,36,186,112,0,0,141,165,208,18,223,96,0,0,141,165,208,18,98,126,0,0,145,173,81,102,223,96,0,0,146,173,248,113,177,140,0,0,147,125,67,18,183,146,0,0,149,205,157,128,7,116,0,0,150,77,29,217,26,137,0,0,150,77,29,217,132,145,0,0,154,237,169,240,218,133,0,0,156,109,85,85,218,133,0,0,160,221,103,81,18,100,0,0,160,221,103,81,35,102,0,0,163,45,231,242,63,95,0,0,164,85,106,88,18,100,0,0,164,85,106,88,35,102,0,0,164,13,213,34,108,117,0,0,167,141,152,112,216,88,0,0,167,141,152,112,221,109,0,0,167,141,152,112,5,142,0,0,168,165,104,191,218,133,0,0,169,189,102,99,38,109,0,0,170,109,114,36,78,128,0,0,170,109,114,36,105,128,0,0,170,109,114,36,78,129,0,0,173,149,186,148,108,117,0,0,176,213,113,13,223,96,0,0,179,85,129,83,59,147,0,0,179,85,129,83,117,147,0,0,179,85,129,83,179,147,0,0,179,85,129,83,239,147,0,0,181,85,103,101,55,111,0,0,182,13,83,14,202,108,0,0,186,253,197,194,118,97,0,0,186,173,55,41,215,111,0,0,186,173,55,41,105,112,0,0,186,253,197,194,196,126,0,0,188,93,32,204,249,87,0,0,188,141,46,227,39,98,0,0,188,93,32,204,151,108,0,0,188,93,32,204,38,109,0,0,188,141,46,227,177,127,0,0,188,141,46,227,214,127,0,0,188,141,46,227,225,128,0,0,188,133,154,199,70,143,0,0,192,197,132,12,18,100,0,0,192,197,132,12,35,102,0,0,192,197,132,12,166,132,0,0,194,157,13,33,31,113,0,0,198,93,250,126,206,91,0,0,198,93,250,126,23,93,0,0,198,93,250,126,99,110,0,0,198,93,250,126,96,120,0,0,198,93,250,126,206,140,0,0,202,141,184,239,11,129,0,0,202,77,97,253,32,142,0,0,208,5,111,226,218,133,0,0,209,237,178,249,178,106,0,0,212,133,143,140,171,117,0,0,216,13,229,69,79,139,0,0,217,245,12,98,215,111,0,0,217,245,12,98,105,112,0,0,217,45,75,215,55,116,0,0,217,93,185,70,218,133,0,0,217,45,75,215,98,144,0,0,217,117,114,101,132,145,0,0,218,141,50,130,218,133,0,0,225,221,124,37,18,100,0,0,225,221,124,37,35,102,0,0,232,93,47,122,218,133,0,0,235,61,234,243,206,91,0,0,235,61,234,243,23,93,0,0,235,61,234,243,99,110,0,0,235,61,234,243,96,120,0,0,235,61,234,243,206,140,0,0,236,221,200,163,182,98,0,0,236,189,246,194,206,140,0,0,236,189,246,194,180,141,0,0,243,109,236,61,218,133,0,0,244,165,44,230,38,109,0,0,245,157,214,28,55,116,0,0,246,29,227,183,46,86,0,0,248,181,245,57,223,96,0,0,251,13,21,182,139,94,0,0,251,13,21,182,180,94,0,0,251,13,21,182,227,94,0,0,5,70,111,69,46,86,0,0,6,102,225,57,218,133,0,0,8,126,120,157,123,108,0,0,12,54,73,164,218,133,0,0,14,174,193,78,32,142,0,0,18,22,226,222,218,133,0,0,19,70,211,4,70,143,0,0,20,174,41,4,18,100,0,0,20,174,41,4,35,102,0,0,22,118,140,230,218,133,0,0,24,238,155,121,70,131,0,0,26,70,28,171,240,107,0,0,31,134,157,38,161,118,0,0,32,190,207,103,240,88,0,0,33,30,92,58,222,113,0,0,33,30,92,58,172,115,0,0,33,30,92,58,153,126,0,0,33,30,92,58,236,142,0,0,37,134,91,235,38,109,0,0,38,214,219,156,70,143,0,0,39,126,34,57,70,143,0,0,40,182,7,125,96,146,0,0,42,238,117,211,218,133,0,0,42,38,46,153,32,142,0,0,44,222,211,252,50,90,0,0,44,222,211,252,28,114,0,0,44,222,211,252,182,114,0,0,44,222,211,252,94,123,0,0,49,110,68,15,206,91,0,0,49,110,68,15,23,93,0,0,49,110,68,15,99,110,0,0,49,110,68,15,96,120,0,0,49,110,68,15,206,140,0,0,51,46,57,126,71,88,0,0,52,110,183,37,206,91,0,0,52,110,183,37,23,93,0,0,52,110,183,37,99,110,0,0,52,110,183,37,96,120,0,0,52,110,183,37,206,140,0,0,53,30,90,20,50,90,0,0,53,182,78,6,48,110,0,0,53,30,90,20,28,114,0,0,53,30,90,20,182,114,0,0,53,30,90,20,94,123,0,0,56,94,92,240,202,108,0,0,60,78,181,187,135,95,0,0,65,134,79,103,35,102,0,0,65,134,79,103,9,133,0,0,71,118,74,136,23,110,0,0,79,14,231,49,38,109,0,0,82,86,48,59,202,108,0,0,83,150,163,89,18,100,0,0,83,150,163,89,35,102,0,0,83,142,209,187,38,109,0,0,83,150,163,89,166,132,0,0,84,62,219,176,18,100,0,0,84,62,219,176,35,102,0,0,85,78,97,216,131,98,0,0,85,110,117,232,95,99,0,0,85,86,154,44,18,100,0,0,85,86,154,44,35,102,0,0,85,110,117,232,169,131,0,0,85,110,117,232,202,131,0,0,86,190,195,165,38,109,0,0,87,254,121,69,206,91,0,0,87,254,121,69,23,93,0,0,87,254,121,69,99,110,0,0,87,254,121,69,96,120,0,0,87,254,121,69,206,140,0,0,88,174,224,186,199,122,0,0,88,174,224,186,201,130,0,0,88,174,224,186,1,132,0,0,89,94,179,191,18,100,0,0,89,94,179,191,35,102,0,0,89,94,179,191,166,132,0,0,89,70,73,183,218,133,0,0,90,254,101,107,240,107,0,0,92,30,52,187,218,133,0,0,96,118,183,60,206,91,0,0,96,118,183,60,23,93,0,0,96,118,183,60,99,110,0,0,96,230,165,7,55,116,0,0,96,118,183,60,96,120,0,0,96,118,183,60,206,140,0,0,96,230,165,7,98,144,0,0,102,62,63,101,70,143,0,0,107,214,246,98,18,100,0,0,107,214,246,98,35,102,0,0,111,14,134,250,48,87,0,0,111,70,231,242,33,120,0,0,112,254,50,98,218,133,0,0,114,46,236,94,196,106,0,0,117,62,174,217,108,104,0,0,117,62,174,217,202,104,0,0,117,190,16,249,186,112,0,0,117,190,16,249,31,113,0,0,117,62,174,217,63,138,0,0,117,62,174,217,102,138,0,0,121,62,244,210,218,133,0,0,122,78,185,237,35,102,0,0,123,206,147,73,146,104,0,0,123,62,124,98,199,122,0,0,123,62,124,98,201,130,0,0,123,62,124,98,1,132,0,0,126,102,12,43,231,138,0,0,126,102,12,43,44,145,0,0,127,174,91,108,50,90,0,0,127,174,91,108,185,113,0,0,127,174,91,108,214,141,0,0,128,246,255,3,0,107,0,0,132,86,200,156,118,97,0,0,132,86,200,156,196,126,0,0,135,142,129,235,218,133,0,0,136,86,144,189,218,133,0,0,141,190,244,70,199,122,0,0,141,190,244,70,201,130,0,0,141,190,244,70,1,132,0,0,144,22,74,165,50,90,0,0,144,22,74,165,28,114,0,0,144,22,74,165,182,114,0,0,144,22,74,165,94,123,0,0,144,198,93,59,218,133,0,0,148,110,157,71,206,91,0,0,148,110,157,71,23,93,0,0,148,102,85,77,18,100,0,0,148,22,93,111,18,100,0,0,148,102,85,77,35,102,0,0,148,22,93,111,35,102,0,0,148,110,157,71,99,110,0,0,148,110,157,71,96,120,0,0,148,102,85,77,90,132,0,0,148,110,157,71,206,140,0,0,149,38,243,39,35,99,0,0,149,38,243,39,162,142,0,0,149,38,243,39,70,143,0,0,151,190,155,204,242,104,0,0,151,190,155,204,134,138,0,0,151,190,155,204,162,138,0,0,152,174,128,229,199,122,0,0,152,174,128,229,201,130,0,0,152,174,128,229,1,132,0,0,154,238,41,120,82,97,0,0,158,46,151,232,223,96,0,0,163,134,157,6,151,108,0,0,163,38,231,208,218,133,0,0,171,70,60,56,218,133,0,0,174,198,29,96,206,91,0,0,174,198,29,96,23,93,0,0,174,198,29,96,99,110,0,0,174,198,29,96,96,120,0,0,174,198,29,96,206,140,0,0,183,126,161,67,6,96,0,0,183,126,161,67,54,96,0,0,185,174,251,184,196,106,0,0,192,238,60,166,233,95,0,0,195,190,131,53,175,96,0,0,195,190,131,53,173,130,0,0,197,198,13,189,70,143,0,0,199,182,74,199,55,140,0,0,201,30,100,119,118,97,0,0,202,94,194,220,218,133,0,0,204,102,40,127,229,115,0,0,204,102,40,127,171,117,0,0,204,150,44,36,70,143,0,0,207,46,103,52,206,91,0,0,207,46,103,52,23,93,0,0,207,46,103,52,99,110,0,0,207,46,103,52,96,120,0,0,207,46,103,52,206,140,0,0,209,38,103,27,18,100,0,0,209,38,103,27,35,102,0,0,210,126,231,20,51,123,0,0,215,70,198,33,46,86,0,0,217,46,162,223,169,88,0,0,217,46,162,223,220,112,0,0,218,86,84,94,159,119,0,0,221,46,150,190,218,133,0,0,223,22,225,218,218,133,0,0,223,198,45,100,59,147,0,0,223,198,45,100,117,147,0,0,223,198,45,100,179,147,0,0,223,198,45,100,239,147,0,0,225,182,241,36,18,100,0,0,225,182,241,36,35,102,0,0,225,182,241,36,166,132,0,0,228,134,145,39,240,107,0,0,228,134,197,5,218,133,0,0,229,22,172,213,223,96,0,0,236,46,81,254,230,90,0,0,244,166,215,176,18,100,0,0,244,166,215,176,35,102,0,0,250,206,67,87,206,91,0,0,250,206,67,87,23,93,0,0,250,206,67,87,99,110,0,0,250,206,67,87,96,120,0,0,250,206,67,87,206,140,0,0,252,118,18,126,55,116,0,0,252,118,18,126,98,144,0,0,255,158,243,43,218,133,0,0,0,31,120,86,93,133,0,0,0,111,9,117,218,133,0,0,2,231,9,78,199,122,0,0,2,231,9,78,201,130,0,0,2,231,9,78,1,132,0,0,7,23,143,94,115,118,0,0,11,167,122,198,206,91,0,0,11,167,122,198,23,93,0,0,11,167,122,198,99,110,0,0,11,167,122,198,96,120,0,0,11,167,122,198,206,140,0,0,13,31,213,213,206,91,0,0,13,31,213,213,23,93,0,0,13,31,213,213,99,110,0,0,13,31,213,213,96,120,0,0,13,31,213,213,206,140,0,0,15,87,254,203,18,100,0,0,15,87,254,203,35,102,0,0,17,183,211,55,218,133,0,0,18,151,132,235,46,91,0,0,20,135,251,194,218,133,0,0,24,159,52,128,139,94,0,0,24,159,52,128,180,94,0,0,24,159,52,128,227,94,0,0,31,95,61,116,215,111,0,0,31,95,61,116,105,112,0,0,32,95,4,140,202,108,0,0,34,191,98,70,254,126,0,0,36,159,69,44,18,100,0,0,36,159,69,44,35,102,0,0,39,247,146,90,218,133,0,0,40,175,35,203,252,124,0,0,40,31,170,142,218,133,0,0,47,95,76,76,62,127,0,0,48,127,155,237,206,91,0,0,48,127,155,237,23,93,0,0,48,127,155,237,99,110,0,0,48,127,155,237,96,120,0,0,48,191,222,177,60,124,0,0,48,127,155,237,206,140,0,0,50,111,179,110,218,133,0,0,50,183,44,244,218,133,0,0,51,247,108,217,218,133,0,0,53,23,23,146,206,91,0,0,53,23,23,146,23,93,0,0,53,23,23,146,99,110,0,0,53,23,23,146,96,120,0,0,53,23,23,146,206,140,0,0,55,31,228,197,31,113,0,0,57,239,218,132,139,94,0,0,57,239,218,132,180,94,0,0,57,239,218,132,227,94,0,0,57,47,108,239,172,129,0,0,58,119,240,250,18,100,0,0,58,119,240,250,35,102,0,0,58,119,240,250,166,132,0,0,59,215,245,234,214,141,0,0,60,63,39,23,70,143,0,0,62,207,191,73,18,100,0,0,62,207,191,73,35,102,0,0,65,231,221,77,196,106,0,0,65,231,221,77,47,107,0,0,65,231,221,77,0,139,0,0,72,119,152,194,46,86,0,0,73,255,156,38,15,109,0,0,73,7,152,232,186,133,0,0,74,159,92,34,220,129,0,0,74,159,92,34,90,137,0,0,75,159,62,153,135,113,0,0,75,159,62,153,240,143,0,0,78,71,158,25,218,133,0,0,79,7,80,112,199,125,0,0,81,135,244,220,70,143,0,0,82,247,1,90,18,100,0,0,82,247,1,90,35,102,0,0,83,79,225,241,50,90,0,0,83,79,225,241,185,113,0,0,83,79,225,241,214,141,0,0,85,87,103,72,218,133,0,0,86,23,8,62,97,97,0,0,87,191,69,102,18,100,0,0,87,31,212,214,18,100,0,0,87,191,69,102,35,102,0,0,87,31,212,214,35,102,0,0,92,231,239,51,70,143,0,0,96,87,167,247,0,87,0,0,96,87,167,247,25,122,0,0,96,87,167,247,214,144,0,0,96,135,157,38,132,145,0,0,98,87,148,190,223,93,0,0,102,135,18,243,218,133,0,0,103,239,172,77,18,100,0,0,103,239,172,77,35,102,0,0,104,119,230,228,118,97,0,0,104,39,47,220,146,104,0,0,104,119,230,228,196,126,0,0,106,191,149,33,18,100,0,0,106,191,149,33,35,102,0,0,108,47,56,223,46,119,0,0,108,47,56,223,98,126,0,0,112,255,161,9,59,148,0,0,112,255,161,9,88,148,0,0,113,255,45,127,65,105,0,0,114,223,250,192,66,87,0,0,123,135,69,18,223,96,0,0,123,63,16,179,18,100,0,0,123,63,16,179,35,102,0,0,123,87,129,214,218,133,0,0,125,255,71,35,119,133,0,0,125,159,69,241,218,133,0,0,127,39,139,106,218,133,0,0,128,215,94,99,55,116,0,0,129,207,23,10,50,90,0,0,129,207,23,10,28,114,0,0,129,207,23,10,182,114,0,0,129,207,23,10,94,123,0,0,130,7,33,83,18,100,0,0,130,7,33,83,35,102,0,0,132,255,75,144,218,133,0,0,133,135,120,36,249,87,0,0,134,143,227,150,214,141,0,0,137,7,65,137,242,104,0,0,137,7,65,137,132,145,0,0,137,7,65,137,59,147,0,0,137,7,65,137,117,147,0,0,137,7,65,137,179,147,0,0,137,7,65,137,239,147,0,0,145,215,205,43,46,86,0,0,147,255,46,57,248,137,0,0,148,183,165,193,233,95,0,0,149,127,117,110,199,122,0,0,149,127,117,110,201,130,0,0,149,127,117,110,1,132,0,0,151,159,187,84,218,133,0,0,151,7,211,140,218,133,0,0,152,127,194,202,218,133,0,0,154,199,168,158,18,100,0,0,154,199,168,158,35,102,0,0,155,39,116,221,218,133,0,0,156,239,83,75,108,117,0,0,158,255,6,113,218,133,0,0,159,183,131,211,206,91,0,0,159,183,131,211,23,93,0,0,159,183,131,211,99,110,0,0,159,183,131,211,96,120,0,0,159,183,131,211,206,140,0,0,161,167,190,225,218,133,0,0,169,71,40,129,208,98,0,0,169,7,136,216,18,100,0,0,169,7,136,216,35,102,0,0,169,71,40,129,130,129,0,0,170,79,215,48,63,95,0,0,171,39,149,70,115,86,0,0,171,247,230,188,70,143,0,0,172,111,217,50,132,145,0,0,184,95,227,169,18,100,0,0,184,95,227,169,35,102,0,0,184,135,255,171,183,128,0,0,185,191,95,26,218,133,0,0,185,247,60,73,218,133,0,0,186,191,164,65,31,113,0,0,187,183,206,64,218,133,0,0,188,39,175,138,32,142,0,0,189,23,249,112,35,99,0,0,189,23,249,112,162,142,0,0,189,23,249,112,70,143,0,0,191,183,114,52,218,133,0,0,192,183,201,84,18,100,0,0,192,183,201,84,35,102,0,0,201,183,107,238,232,98,0,0,201,215,103,62,218,133,0,0,203,247,60,19,206,91,0,0,203,247,60,19,23,93,0,0,203,247,60,19,99,110,0,0,203,247,60,19,96,120,0,0,203,247,60,19,206,140,0,0,204,151,241,158,29,124,0,0,207,143,178,63,157,86,0,0,207,111,212,34,118,97,0,0,207,111,212,34,196,126,0,0,207,143,178,63,62,137,0,0,207,143,178,63,211,139,0,0,207,191,98,158,239,144,0,0,207,143,178,63,65,146,0,0,209,55,189,152,70,143,0,0,212,23,233,20,15,143,0,0,213,95,193,76,223,96,0,0,217,143,237,65,239,118,0,0,217,87,14,87,161,128,0,0,218,151,9,45,218,133,0,0,221,7,27,118,123,88,0,0,221,31,15,76,223,96,0,0,221,7,27,118,146,131,0,0,224,207,74,192,218,133,0,0,227,127,44,134,218,133,0,0,228,63,95,104,38,109,0,0,229,127,12,36,218,133,0,0,233,119,52,221,50,90,0,0,233,119,52,221,147,117,0,0,234,55,211,204,25,91,0,0,234,55,211,204,152,111,0,0,235,223,226,96,55,116,0,0,235,223,226,96,98,144,0,0,237,31,246,120,157,92,0,0,237,63,9,99,247,108,0,0,237,63,9,99,3,128,0,0,239,175,29,108,196,106,0,0,240,31,7,227,50,90,0,0,240,31,7,227,28,114,0,0,240,31,7,227,182,114,0,0,240,31,7,227,94,123,0,0,244,207,162,88,119,133,0,0,246,239,50,86,137,118,0,0,247,39,152,0,218,133,0,0,249,199,111,204,18,100,0,0,249,199,111,204,35,102,0,0,251,135,244,26,108,111,0,0,251,71,81,63,218,133,0,0,255,167,61,33,98,144,0,0,17,1,13,35,67,111,111,107,105,101,66,97,110,110,101,114,2,1,207,88,121,39,17,1,14,35,67,111,111,107,105,101,67,111,110,115,101,110,116,2,7,33,198,70,215,43,205,215,145,69,111,70,5,133,225,249,208,183,227,29,246,183,234,128,238,194,152,119,72,17,1,13,35,67,111,111,107,105,101,78,111,116,105,99,101,2,1,178,188,187,230,17,1,33,35,67,121,98,111,116,67,111,111,107,105,101,98,111,116,68,105,97,108,111,103,66,111,100,121,85,110,100,101,114,108,97,121,2,1,70,149,39,171,17,1,21,35,95,95,116,101,97,108,105,117,109,71,68,80,82,99,112,80,114,101,102,115,2,2,63,178,143,207,192,127,8,55,17,1,12,35,95,101,118,104,45,98,117,116,116,111,110,2,1,16,217,228,32,17,1,9,35,95,101,118,104,45,114,105,99,2,1,166,253,74,94,17,1,17,35,97,110,97,108,121,116,105,99,115,95,99,111,111,107,105,101,2,1,23,70,109,85,17,1,15,35,97,112,112,45,99,111,111,107,105,101,45,100,105,118,2,1,247,167,87,96,17,1,15,35,98,97,110,110,101,114,45,112,114,105,118,97,99,121,2,1,35,181,68,215,17,1,9,35,99,99,45,109,111,100,97,108,2,1,250,134,14,111,17,1,10,35,99,99,95,98,97,110,110,101,114,2,1,192,250,223,114,17,1,13,35,99,99,95,99,111,110,116,97,105,110,101,114,2,1,148,185,40,166,17,1,17,35,99,108,105,83,101,116,116,105,110,103,115,80,111,112,117,112,2,1,195,217,59,188,17,1,29,35,99,109,112,108,122,45,99,111,111,107,105,101,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,165,1,173,140,17,1,24,35,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,36,108,13,140,17,1,13,35,99,111,110,115,101,110,116,45,98,117,109,112,2,1,172,236,226,157,17,1,14,35,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,202,187,84,56,17,1,16,35,99,111,110,115,101,110,116,46,99,111,110,115,101,110,116,2,2,36,120,135,133,204,32,93,188,17,1,14,35,99,111,110,115,101,110,116,66,97,110,110,101,114,2,1,38,157,104,207,17,1,17,35,99,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,2,1,202,187,84,56,17,1,17,35,99,111,110,115,101,110,116,95,98,108,97,99,107,98,97,114,2,1,126,57,46,51,17,1,17,35,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,2,1,210,5,27,181,17,1,14,35,99,111,111,99,107,105,101,45,109,111,100,97,108,2,1,118,27,7,221,17,1,14,35,99,111,111,107,105,101,45,97,99,99,101,112,116,2,1,65,19,193,153,17,1,14,35,99,111,111,107,105,101,45,98,97,110,110,101,114,2,2,175,190,33,32,223,162,46,217,17,1,11,35,99,111,111,107,105,101,45,98,97,114,2,1,227,4,202,188,17,1,15,35,99,111,111,107,105,101,45,99,111,110,102,105,114,109,2,1,112,152,141,167,17,1,15,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,8,10,184,29,33,42,229,113,227,81,246,163,0,103,207,190,32,129,34,219,203,138,203,72,117,206,92,173,22,233,75,17,225,17,1,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,72,78,113,55,17,1,12,35,99,111,111,107,105,101,45,105,110,102,111,2,1,154,134,243,233,17,1,36,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,116,101,109,112,108,97,116,101,45,119,114,97,112,112,101,114,2,1,231,18,32,223,17,1,11,35,99,111,111,107,105,101,45,106,97,114,2,1,165,5,41,247,17,1,11,35,99,111,111,107,105,101,45,108,97,119,2,1,89,55,252,45,17,1,22,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,97,103,97,105,110,2,1,195,217,59,188,17,1,42,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,32,126,32,46,99,108,105,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,195,217,59,188,17,1,15,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,254,191,178,0,17,1,14,35,99,111,111,107,105,101,45,110,111,116,105,99,101,2,2,87,36,125,51,122,111,168,110,17,1,15,35,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,40,7,85,101,58,10,23,207,129,13,156,88,227,13,178,101,77,14,114,194,247,19,155,89,114,20,90,30,53,20,176,192,7,53,42,113,6,58,186,201,144,74,223,144,93,75,86,76,209,75,145,56,114,81,246,163,0,108,91,174,127,114,117,217,66,140,243,50,202,155,233,240,163,156,224,226,146,158,214,81,49,164,205,80,26,165,60,184,76,165,74,22,144,165,81,116,56,173,98,216,74,192,138,156,11,192,138,156,17,192,138,156,181,200,84,123,53,210,32,33,157,213,230,49,17,221,52,119,233,227,7,31,240,227,13,26,21,228,194,90,137,228,234,34,237,232,62,209,209,241,225,79,83,252,211,222,44,254,1,228,5,17,1,13,35,99,111,111,107,105,101,45,112,97,110,101,108,2,1,254,81,46,236,17,1,20,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,111,100,97,108,2,1,126,233,1,104,17,1,12,35,99,111,111,107,105,101,45,116,101,120,116,2,1,204,211,55,234,17,1,12,35,99,111,111,107,105,101,45,119,114,97,112,2,1,235,132,151,18,17,1,15,35,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,215,242,172,126,17,1,14,35,99,111,111,107,105,101,46,99,111,111,107,105,101,2,1,175,158,96,88,17,1,13,35,99,111,111,107,105,101,65,99,99,101,112,116,2,2,110,135,60,219,246,126,33,10,17,1,16,35,99,111,111,107,105,101,65,99,99,101,112,116,66,97,114,2,1,83,189,225,185,17,1,12,35,99,111,111,107,105,101,65,103,114,101,101,2,1,12,131,240,92,17,1,11,35,99,111,111,107,105,101,65,114,101,97,2,1,178,215,136,169,17,1,18,35,99,111,111,107,105,101,66,97,110,110,101,114,77,111,100,97,108,2,46,5,99,109,93,15,68,110,49,19,60,247,203,20,246,141,106,29,246,0,5,33,126,3,194,37,183,110,52,47,86,28,26,52,103,46,207,52,218,145,88,53,216,157,63,60,183,118,96,64,91,204,243,67,249,64,84,68,7,197,68,69,121,254,87,71,157,110,148,87,67,206,250,88,197,21,130,96,29,198,174,104,219,146,180,105,204,43,150,106,57,192,20,116,7,132,112,117,81,113,74,126,250,93,198,142,67,136,174,144,45,147,217,145,73,13,51,146,23,23,53,147,170,59,207,151,37,147,146,157,215,128,79,159,148,144,62,182,1,112,164,189,93,49,238,197,58,129,95,198,122,167,11,206,87,17,84,211,131,183,159,213,213,31,13,229,151,243,105,234,112,210,164,237,155,127,48,243,234,61,235,244,100,211,212,17,1,14,35,99,111,111,107,105,101,67,111,110,115,101,110,116,2,7,23,135,188,182,47,155,108,63,55,61,220,87,112,186,18,68,120,246,31,237,171,27,192,149,188,161,64,217,17,1,17,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,111,120,2,1,112,186,18,68,17,1,18,35,99,111,111,107,105,101,67,111,110,115,101,110,116,70,111,114,109,2,1,124,119,192,120,17,1,13,35,99,111,111,107,105,101,68,105,97,108,111,103,2,1,128,47,248,183,17,1,11,35,99,111,111,107,105,101,73,110,102,111,2,46,5,99,109,93,15,68,110,49,19,60,247,203,20,246,141,106,29,246,0,5,33,126,3,194,37,183,110,52,47,86,28,26,52,103,46,207,52,218,145,88,53,216,157,63,60,183,118,96,64,91,204,243,67,249,64,84,68,7,197,68,69,121,254,87,71,157,110,148,87,67,206,250,88,197,21,130,96,29,198,174,104,219,146,180,105,204,43,150,106,57,192,20,116,7,132,112,117,81,113,74,126,250,93,198,142,67,136,174,144,45,147,217,145,73,13,51,146,23,23,53,147,170,59,207,151,37,147,146,157,215,128,79,159,148,144,62,182,1,112,164,189,93,49,238,197,58,129,95,198,122,167,11,206,87,17,84,211,131,183,159,213,213,31,13,229,151,243,105,234,112,210,164,237,155,127,48,243,234,61,235,244,100,211,212,17,1,12,35,99,111,111,107,105,101,76,97,121,101,114,2,1,190,148,87,98,17,1,18,35,99,111,111,107,105,101,77,111,100,97,108,67,101,110,116,101,114,2,1,15,120,72,239,17,1,13,35,99,111,111,107,105,101,78,111,116,105,99,101,2,1,234,107,21,69,17,1,13,35,99,111,111,107,105,101,80,111,108,105,99,121,2,1,94,182,212,178,17,1,18,35,99,111,111,107,105,101,80,111,108,105,99,121,77,111,100,97,108,2,1,126,46,1,215,17,1,14,35,99,111,111,107,105,101,87,114,97,112,112,101,114,2,1,55,61,220,87,17,1,21,35,99,111,111,107,105,101,95,104,100,114,95,115,104,111,119,97,103,97,105,110,2,1,195,217,59,188,17,1,12,35,99,111,111,107,105,101,95,105,110,102,111,2,6,30,31,146,136,60,39,227,199,128,52,159,24,132,218,239,57,146,228,164,243,182,21,13,251,17,1,18,35,99,111,111,107,105,101,95,105,110,102,111,95,98,108,111,99,107,2,6,30,31,146,136,60,39,227,199,128,52,159,24,132,218,239,57,146,228,164,243,182,21,13,251,17,1,20,35,99,111,111,107,105,101,95,105,110,102,111,95,119,114,97,112,112,101,114,2,6,30,31,146,136,60,39,227,199,128,52,159,24,132,218,239,57,146,228,164,243,182,21,13,251,17,1,12,35,99,111,111,107,105,101,95,119,97,108,108,2,1,59,141,226,42,17,1,13,35,99,111,111,107,105,101,97,99,99,101,112,116,2,1,186,74,82,188,17,1,13,35,99,111,111,107,105,101,98,97,110,110,101,114,2,3,48,215,79,170,197,18,244,20,242,231,45,163,17,1,10,35,99,111,111,107,105,101,98,97,114,2,1,88,206,243,169,17,1,14,35,99,111,111,107,105,101,99,111,110,115,101,110,116,2,1,24,69,57,93,17,1,24,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,187,181,78,60,17,1,13,35,99,111,111,107,105,101,100,105,97,108,111,103,2,1,92,81,18,11,17,1,11,35,99,111,111,107,105,101,104,105,110,116,2,1,104,240,165,97,17,1,14,35,99,111,111,107,105,101,104,105,110,119,101,105,115,2,1,63,54,208,56,17,1,16,35,99,111,111,107,105,101,109,97,110,45,109,111,100,97,108,2,2,166,60,238,192,193,165,183,148,17,1,15,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,2,1,67,161,126,183,17,1,15,35,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,128,186,252,227,17,1,16,35,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,2,1,67,161,126,183,17,1,16,35,99,111,111,107,105,101,115,45,99,111,110,116,101,110,116,2,1,66,56,130,84,17,1,12,35,99,111,111,107,105,101,115,45,110,97,103,2,1,89,149,116,175,17,1,15,35,99,111,111,107,105,101,115,46,97,99,116,105,118,101,2,1,23,70,109,85,17,1,17,35,99,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,2,1,77,5,25,119,17,1,16,35,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,2,1,53,131,190,195,17,1,14,35,99,111,111,107,105,101,115,95,109,111,100,97,108,2,1,108,21,27,145,17,1,14,35,99,111,111,107,105,101,119,97,114,110,105,110,103,2,24,2,145,170,81,13,113,213,176,16,3,195,226,18,69,135,123,18,208,165,141,29,123,80,14,57,245,181,248,76,15,31,221,76,193,95,213,102,81,173,145,105,44,144,6,108,216,67,78,115,82,34,166,135,104,32,227,145,159,144,250,160,146,75,67,171,9,181,65,178,255,3,62,186,245,233,21,213,44,250,212,213,172,22,229,232,151,46,158,246,96,226,252,252,180,123,160,17,1,6,35,99,111,111,107,121,2,1,120,41,238,154,17,1,12,35,100,105,100,111,109,105,45,104,111,115,116,2,1,62,8,23,86,17,1,14,35,100,105,100,111,109,105,45,110,111,116,105,99,101,2,9,34,212,111,207,62,11,56,11,119,100,30,201,132,134,81,244,156,200,86,132,163,3,128,167,194,197,253,186,228,230,119,104,248,217,1,155,17,1,10,35,100,105,118,67,111,111,107,105,101,2,1,105,57,100,154,17,1,22,35,101,110,115,77,111,100,97,108,87,114,97,112,112,101,114,91,114,111,108,101,93,2,1,213,9,216,122,17,1,16,35,101,110,115,78,111,116,105,102,121,66,97,110,110,101,114,2,1,213,9,216,122,17,1,14,35,101,117,45,99,111,111,107,105,101,45,108,97,119,2,1,110,142,2,215,17,1,15,35,103,100,112,114,45,97,103,114,101,101,109,101,110,116,2,1,55,165,75,104,17,1,9,35,103,100,112,114,45,98,97,114,2,5,6,156,132,248,144,68,172,120,176,103,209,241,227,46,141,188,251,250,101,139,17,1,27,35,103,100,112,114,45,98,108,111,99,107,105,110,103,45,112,97,103,101,45,111,118,101,114,108,97,121,2,1,74,249,50,151,17,1,13,35,103,100,112,114,45,99,111,110,115,101,110,116,2,1,150,137,155,76,17,1,20,35,103,100,112,114,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,216,97,78,85,17,1,13,35,103,100,112,114,83,101,116,116,105,110,103,115,2,1,202,161,249,9,17,1,13,35,103,100,112,114,95,99,111,110,115,101,110,116,2,2,127,190,137,12,163,200,221,236,17,1,15,35,103,100,112,114,95,99,111,110,116,97,105,110,101,114,2,1,129,40,71,169,17,1,12,35,103,100,112,114,99,111,110,115,101,110,116,2,1,238,107,183,201,17,1,25,35,103,112,100,114,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,2,120,184,160,2,214,214,28,112,17,1,17,35,106,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,4,26,225,200,191,39,243,38,149,112,249,23,189,205,90,180,50,17,1,13,35,109,111,100,97,108,95,99,111,111,107,105,101,2,1,220,212,226,119,17,1,27,35,109,111,111,118,101,95,103,100,112,114,95,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,2,1,232,117,110,85,17,1,17,35,109,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,86,103,250,120,17,1,9,35,109,121,99,111,111,107,105,101,2,2,98,189,179,33,132,156,50,254,17,1,12,35,110,101,119,45,99,111,111,107,105,101,115,2,1,36,108,13,140,17,1,20,35,110,111,116,105,99,101,45,99,111,111,107,105,101,45,98,108,111,99,107,2,1,27,158,76,222,17,1,12,35,110,111,116,105,99,101,80,111,112,117,112,2,1,174,146,66,46,17,1,15,35,110,111,116,105,99,101,95,118,105,115,105,116,111,114,2,1,44,244,40,118,17,1,20,35,111,110,101,116,114,117,115,116,45,98,97,110,110,101,114,45,115,100,107,2,126,3,51,108,160,3,239,137,69,4,41,174,20,6,253,13,56,8,178,219,123,8,189,179,61,10,243,145,105,12,132,197,192,16,45,148,141,19,131,170,60,21,113,185,168,27,103,38,209,30,149,50,191,30,252,193,249,33,149,191,106,33,219,131,241,35,171,141,48,36,241,182,225,37,124,221,225,38,157,68,53,38,157,113,138,44,69,159,36,44,154,86,85,46,143,185,131,50,136,91,226,52,246,4,253,54,75,241,227,55,69,194,235,58,21,164,201,61,19,178,127,65,36,162,50,68,180,17,254,73,191,207,62,75,79,197,104,77,85,102,148,77,172,239,103,81,103,221,160,82,67,26,223,82,133,66,66,83,33,7,130,84,201,183,192,87,16,195,149,88,106,85,164,89,163,150,83,89,215,13,94,90,1,247,82,91,17,129,193,94,61,116,132,98,27,227,152,98,131,195,3,98,246,214,107,101,44,44,128,102,69,191,87,110,100,245,110,111,93,22,148,113,245,68,230,114,227,220,214,115,158,80,10,117,143,147,215,117,187,96,25,121,207,85,136,122,45,92,88,124,106,85,27,129,178,242,126,136,183,202,12,138,211,236,183,139,100,84,193,139,120,0,29,142,12,107,226,142,246,60,229,145,211,32,85,148,176,188,49,150,143,117,78,152,183,140,72,154,202,209,95,154,241,61,25,157,173,66,193,158,168,199,154,159,236,57,244,163,95,35,126,166,60,180,137,169,208,50,19,169,227,95,184,172,246,101,6,176,215,166,244,176,219,62,84,179,16,63,123,182,9,200,176,185,49,218,126,188,19,98,181,188,197,83,212,191,179,94,89,192,130,59,83,193,63,44,166,197,215,202,131,203,254,87,15,204,111,199,249,204,203,82,61,208,70,156,119,210,19,66,40,212,161,88,247,213,174,52,151,214,212,31,87,216,136,7,169,217,65,25,138,218,50,177,95,218,238,209,87,224,216,41,152,227,78,26,45,227,150,161,31,228,145,114,10,229,206,144,208,234,150,130,38,235,255,170,119,237,236,154,93,240,21,122,162,242,231,115,104,242,231,155,176,244,172,180,144,248,96,195,54,249,117,49,254,249,218,124,13,250,210,114,162,250,240,119,58,253,224,156,123,254,145,212,146,17,1,21,35,111,110,101,116,114,117,115,116,45,99,111,110,115,101,110,116,45,115,100,107,2,128,0,0,0,129,3,51,108,160,3,239,137,69,4,41,174,20,6,253,13,56,8,178,219,123,8,189,179,61,10,243,145,105,12,132,197,192,16,45,148,141,19,131,170,60,21,113,185,168,27,103,38,209,30,149,50,191,30,252,193,249,33,149,191,106,33,219,131,241,35,171,141,48,36,241,182,225,37,124,221,225,38,157,25,55,38,157,68,53,38,157,113,138,44,69,159,36,44,154,86,85,46,143,185,131,50,136,91,226,52,246,4,253,54,75,241,227,55,69,194,235,58,21,164,201,61,19,178,127,65,36,162,50,68,180,17,254,73,191,207,62,75,79,197,104,77,85,102,148,77,172,239,103,81,103,221,160,82,67,26,223,82,133,66,66,83,33,7,130,84,201,183,192,87,16,195,149,88,106,85,164,89,163,150,83,89,215,13,94,90,1,247,82,91,17,129,193,94,61,116,132,98,27,227,152,98,131,195,3,98,246,214,107,101,44,44,128,102,69,191,87,103,79,134,65,110,100,245,110,111,93,22,148,113,245,68,230,114,227,220,214,115,158,80,10,117,143,147,215,117,187,96,25,121,207,85,136,122,45,92,88,124,106,85,27,129,178,242,126,136,183,202,12,138,211,236,183,139,100,84,193,139,120,0,29,142,12,107,226,142,246,60,229,145,211,32,85,148,176,188,49,150,143,117,78,152,183,140,72,154,202,209,95,154,241,61,25,157,173,66,193,158,168,199,154,159,236,57,244,163,95,35,126,166,60,180,137,169,208,50,19,169,227,95,184,172,246,101,6,176,215,166,244,176,219,62,84,179,16,63,123,182,9,200,176,185,49,218,126,188,19,98,181,188,197,83,212,191,179,94,89,192,130,59,83,193,63,44,166,197,215,202,131,203,254,87,15,204,111,199,249,204,203,82,61,208,70,156,119,210,19,66,40,212,161,88,247,213,174,52,151,214,212,31,87,216,136,7,169,217,65,25,138,218,50,177,95,218,238,209,87,224,216,41,152,227,78,26,45,227,150,161,31,228,145,114,10,229,206,144,208,234,150,130,38,235,255,170,119,237,185,78,122,237,236,154,93,240,21,122,162,242,231,115,104,242,231,155,176,244,172,180,144,248,96,195,54,249,117,49,254,249,218,124,13,250,210,114,162,250,240,119,58,253,224,156,123,254,145,212,146,17,1,8,35,111,112,116,97,110,111,110,2,1,164,58,96,50,17,1,13,35,112,111,108,105,99,121,78,111,116,105,99,101,2,1,38,157,26,200,17,1,17,35,112,111,112,105,110,95,116,99,95,112,114,105,118,97,99,121,2,4,139,160,60,128,182,132,160,154,217,174,62,117,247,148,229,130,17,1,15,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,2,9,38,223,212,134,47,144,124,234,50,21,160,0,73,147,206,123,76,145,116,95,110,203,212,133,148,201,137,33,179,239,242,7,220,47,39,104,17,1,19,35,116,99,45,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,2,4,139,160,60,128,182,132,160,154,217,174,62,117,247,148,229,130,17,1,10,35,116,101,99,111,110,115,101,110,116,2,2,137,65,7,137,204,155,190,151,17,1,24,35,116,111,97,115,116,115,32,62,32,35,116,111,97,115,116,115,87,114,97,112,112,101,114,2,1,163,34,129,7,9,1,14,46,66,111,114,108,97,98,115,67,111,111,107,105,101,2,1,188,13,140,222,9,1,12,46,67,111,111,107,105,101,80,111,112,117,112,2,1,127,45,255,113,9,1,18,46,67,111,111,107,105,101,115,58,110,111,116,40,98,111,100,121,41,2,2,194,197,251,32,211,177,101,122,9,1,10,46,67,111,111,107,105,101,115,79,75,2,1,248,166,216,200,9,1,22,46,80,111,115,105,116,105,111,110,66,111,116,116,111,109,46,97,115,45,111,105,108,2,4,46,25,253,29,111,193,44,37,142,102,213,70,166,254,171,86,9,1,24,46,97,99,99,101,112,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,164,58,96,50,9,1,22,46,97,99,99,101,112,116,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,2,1,220,61,180,128,9,1,23,46,97,115,45,111,105,108,45,99,111,110,116,101,110,116,45,111,118,101,114,108,97,121,2,4,46,25,253,29,111,193,44,37,142,102,213,70,166,254,171,86,9,1,28,46,97,115,45,111,105,108,91,100,97,116,97,45,113,97,61,34,111,105,108,45,76,97,121,101,114,34,93,2,4,46,25,253,29,111,193,44,37,142,102,213,70,166,254,171,86,9,1,16,46,98,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,77,49,17,112,9,1,14,46,98,97,110,110,101,114,45,99,111,111,107,105,101,2,1,230,179,200,76,9,1,13,46,98,97,110,110,101,114,95,99,111,107,105,101,2,1,149,166,219,127,9,1,19,46,98,99,112,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,2,1,193,175,115,111,9,1,9,46,99,45,99,111,111,107,105,101,2,1,249,178,237,209,9,1,10,46,99,99,45,98,97,110,110,101,114,2,5,77,221,231,65,94,236,46,114,108,29,175,239,117,44,208,94,184,251,174,185,9,1,12,46,99,99,45,102,108,111,97,116,105,110,103,2,2,101,55,248,64,219,114,226,112,9,1,30,46,99,99,45,105,110,100,105,118,105,100,117,97,108,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,2,3,3,255,246,128,43,66,129,144,241,174,9,185,9,1,10,46,99,99,45,114,101,118,111,107,101,2,2,77,221,231,65,101,55,248,64,9,1,27,46,99,99,45,116,104,101,109,101,45,99,108,97,115,115,105,99,46,99,99,45,119,105,110,100,111,119,2,1,74,249,50,151,9,1,27,46,99,99,45,116,121,112,101,45,111,112,116,45,105,110,46,99,99,45,102,108,111,97,116,105,110,103,2,1,101,55,248,64,9,1,39,46,99,99,45,119,105,110,100,111,119,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,42,61,34,99,111,110,115,101,110,116,34,93,2,2,101,55,248,64,219,114,226,112,9,1,33,46,99,99,45,119,105,110,100,111,119,91,97,114,105,97,45,108,97,98,101,108,42,61,34,99,111,110,115,101,110,116,34,93,2,2,101,55,248,64,219,114,226,112,9,1,13,46,99,99,95,99,111,110,116,97,105,110,101,114,2,4,39,145,134,228,107,101,254,90,171,28,70,26,240,208,123,109,9,1,12,46,99,99,112,97,45,98,97,110,110,101,114,2,1,127,195,165,15,9,1,10,46,99,101,45,98,97,110,110,101,114,2,1,207,198,208,215,9,1,14,46,99,108,111,115,101,45,99,111,111,107,105,101,115,2,1,224,20,56,128,9,1,11,46,99,109,45,109,101,115,115,97,103,101,2,1,121,5,168,114,9,1,13,46,99,109,112,45,97,112,112,95,103,100,112,114,2,1,129,190,16,141,9,1,11,46,99,109,112,119,114,97,112,112,101,114,2,3,90,23,145,240,127,142,18,249,157,120,126,8,9,1,18,46,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,2,7,6,157,134,163,97,202,195,213,148,179,75,234,171,22,32,193,188,106,160,126,204,32,93,188,225,181,88,2,9,1,16,46,99,111,110,115,101,110,116,45,99,111,110,116,101,110,116,2,6,14,83,13,182,36,111,226,130,59,48,86,82,140,4,95,32,184,195,115,221,240,92,94,56,9,1,15,46,99,111,110,115,101,110,116,45,104,111,108,100,101,114,2,1,99,9,63,237,9,1,14,46,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,38,156,255,73,9,1,16,46,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,2,12,22,113,131,17,49,231,14,79,99,102,189,169,104,95,63,228,165,195,190,86,171,22,32,193,184,195,115,221,187,209,142,83,202,161,100,72,204,32,93,188,230,44,165,244,235,91,134,37,9,1,16,46,99,111,110,115,101,110,116,46,99,111,111,107,105,101,115,2,1,6,185,232,0,9,1,13,46,99,111,110,115,101,110,116,80,111,112,117,112,2,1,98,206,17,137,9,1,16,46,99,111,110,116,101,110,116,45,99,111,111,107,105,101,115,2,1,112,154,57,50,9,1,11,46,99,111,111,107,105,101,45,97,103,101,2,1,10,70,88,66,9,1,13,46,99,111,111,107,105,101,45,97,103,114,101,101,2,1,12,131,240,92,9,1,17,46,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,2,1,112,152,141,167,9,1,23,46,99,111,111,107,105,101,45,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,2,1,6,185,232,0,9,1,16,46,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,2,1,136,74,118,71,9,1,34,46,99,111,111,107,105,101,45,98,97,110,110,101,114,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,3,6,78,182,53,36,108,13,140,126,10,42,77,9,1,23,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,119,114,97,112,112,101,114,2,46,5,99,109,93,15,68,110,49,19,60,247,203,20,246,141,106,29,246,0,5,33,126,3,194,37,183,110,52,47,86,28,26,52,103,46,207,52,218,145,88,53,216,157,63,60,183,118,96,64,91,204,243,67,249,64,84,68,7,197,68,69,121,254,87,71,157,110,148,87,67,206,250,88,197,21,130,96,29,198,174,104,219,146,180,105,204,43,150,106,57,192,20,116,7,132,112,117,81,113,74,126,250,93,198,142,67,136,174,144,45,147,217,145,73,13,51,146,23,23,53,147,170,59,207,151,37,147,146,157,215,128,79,159,148,144,62,182,1,112,164,189,93,49,238,197,58,129,95,198,122,167,11,206,87,17,84,211,131,183,159,213,213,31,13,229,151,243,105,234,112,210,164,237,155,127,48,243,234,61,235,244,100,211,212,9,1,11,46,99,111,111,107,105,101,45,98,97,114,2,3,101,103,85,181,147,186,160,99,198,132,145,248,9,1,12,46,99,111,111,107,105,101,45,98,111,100,121,2,2,7,152,219,156,23,70,109,85,9,1,11,46,99,111,111,107,105,101,45,98,111,120,2,1,26,244,135,251,9,1,11,46,99,111,111,107,105,101,45,98,116,110,2,2,122,111,168,110,175,158,96,88,9,1,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,9,13,117,19,252,17,112,45,24,52,235,211,44,60,52,226,224,179,43,253,94,195,137,80,53,199,145,74,55,204,211,55,234,234,151,56,50,9,1,19,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,111,120,2,7,8,166,89,105,41,55,173,186,92,72,28,191,92,190,194,173,98,12,245,217,116,61,95,31,233,75,17,225,9,1,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,73,185,43,61,9,1,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,104,111,119,2,1,181,83,137,162,9,1,18,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,118,50,2,3,35,65,149,31,131,63,36,204,152,75,82,8,9,1,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,2,6,8,166,89,105,41,55,173,186,92,72,28,191,92,190,194,173,98,12,245,217,116,61,95,31,9,1,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,2,1,78,154,212,75,9,1,17,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,3,36,108,13,140,148,180,41,15,249,16,190,117,9,1,15,46,99,111,111,107,105,101,45,99,111,110,116,101,110,116,2,5,6,185,232,0,19,155,89,114,127,58,188,193,156,41,93,24,223,162,46,217,9,1,14,46,99,111,111,107,105,101,45,100,105,97,108,111,103,2,2,19,155,89,114,55,14,235,93,9,1,28,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,58,110,111,116,40,98,111,100,121,41,2,12,33,13,157,194,43,249,52,185,44,236,178,238,62,166,157,77,65,164,191,186,105,191,128,47,126,146,83,20,168,204,60,32,197,228,31,55,235,155,129,177,242,133,136,71,249,16,190,117,9,1,14,46,99,111,111,107,105,101,45,102,111,111,116,101,114,2,1,254,31,120,145,9,1,14,46,99,111,111,107,105,101,45,104,111,108,100,101,114,2,1,153,62,159,75,9,1,18,46,99,111,111,107,105,101,45,105,110,102,111,45,98,108,111,99,107,2,1,37,76,59,241,9,1,16,46,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,2,4,7,85,101,58,108,91,174,127,114,117,217,66,241,225,79,83,9,1,22,46,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,2,1,58,92,30,33,9,1,18,46,99,111,111,107,105,101,45,105,110,102,111,45,109,111,100,97,108,2,2,47,105,88,193,107,63,43,50,9,1,17,46,99,111,111,107,105,101,45,105,110,102,111,45,116,101,120,116,2,33,10,23,207,129,13,156,88,227,13,178,101,77,14,114,194,247,20,90,30,53,20,176,192,7,53,42,113,6,58,186,201,144,74,223,144,93,75,86,76,209,75,145,56,114,140,243,50,202,155,233,240,163,156,224,226,146,158,214,81,49,164,205,80,26,165,60,184,76,165,74,22,144,165,81,116,56,173,98,216,74,192,138,156,11,192,138,156,17,192,138,156,181,200,84,123,53,210,32,33,157,213,230,49,17,227,7,31,240,227,13,26,21,228,194,90,137,228,234,34,237,232,62,209,209,252,211,222,44,254,1,228,5,9,1,32,46,99,111,111,107,105,101,45,105,110,102,111,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,33,10,23,207,129,13,156,88,227,13,178,101,77,14,114,194,247,20,90,30,53,20,176,192,7,53,42,113,6,58,186,201,144,74,223,144,93,75,86,76,209,75,145,56,114,140,243,50,202,155,233,240,163,156,224,226,146,158,214,81,49,164,205,80,26,165,60,184,76,165,74,22,144,165,81,116,56,173,98,216,74,192,138,156,11,192,138,156,17,192,138,156,181,200,84,123,53,210,32,33,157,213,230,49,17,227,7,31,240,227,13,26,21,228,194,90,137,228,234,34,237,232,62,209,209,252,211,222,44,254,1,228,5,9,1,24,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,116,101,120,116,2,1,220,212,226,119,9,1,13,46,99,111,111,107,105,101,45,105,110,102,111,115,2,1,23,135,188,182,9,1,13,46,99,111,111,107,105,101,45,105,110,110,101,114,2,1,147,55,132,64,9,1,23,46,99,111,111,107,105,101,45,105,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,58,92,30,33,9,1,12,46,99,111,111,107,105,101,45,105,116,101,109,2,2,175,158,96,88,247,123,128,40,9,1,25,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,2,1,127,40,102,204,9,1,35,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,2,2,128,157,205,149,220,92,99,136,9,1,13,46,99,111,111,107,105,101,45,109,111,100,97,108,2,14,7,165,230,96,28,214,157,245,28,243,217,195,57,14,69,46,64,140,210,9,73,97,37,29,96,226,223,235,99,94,215,128,126,18,118,252,132,22,235,0,157,161,252,114,179,29,160,27,215,75,45,217,233,21,216,191,9,1,21,46,99,111,111,107,105,101,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,37,76,59,241,9,1,15,46,99,111,111,107,105,101,45,109,111,110,115,116,101,114,2,1,92,185,26,189,9,1,11,46,99,111,111,107,105,101,45,109,115,103,2,1,228,68,250,207,9,1,12,46,99,111,111,107,105,101,45,110,111,116,101,2,1,156,41,93,24,9,1,24,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,2,1,122,111,168,110,9,1,22,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,118,105,115,105,98,108,101,2,1,141,38,121,224,9,1,31,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,99,107,103,114,111,117,110,100,2,1,40,85,144,166,9,1,27,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,104,101,97,100,101,114,2,1,40,85,144,166,9,1,10,46,99,111,111,107,105,101,45,111,110,2,6,34,213,13,164,68,205,131,53,75,83,239,156,148,186,149,173,174,255,59,82,230,179,200,76,9,1,15,46,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,221,52,119,233,9,1,14,46,99,111,111,107,105,101,45,112,111,108,105,99,121,2,4,127,40,102,204,140,143,133,212,146,6,2,234,159,70,24,238,9,1,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,115,101,110,116,2,1,37,76,59,241,9,1,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,111,100,97,108,2,1,37,76,59,241,9,1,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,117,112,2,1,186,158,237,65,9,1,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,2,1,159,70,24,238,9,1,14,46,99,111,111,107,105,101,45,112,111,112,45,117,112,2,1,99,218,139,192,9,1,13,46,99,111,111,107,105,101,45,112,111,112,85,112,2,1,196,80,240,190,9,1,13,46,99,111,111,107,105,101,45,112,111,112,117,112,2,1,94,143,23,7,9,1,15,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,2,1,86,50,239,246,9,1,13,46,99,111,111,107,105,101,45,112,114,111,109,111,2,1,38,157,134,31,9,1,21,46,99,111,111,107,105,101,45,114,101,118,111,107,101,45,104,105,100,100,101,110,2,1,122,111,168,110,9,1,17,46,99,111,111,107,105,101,45,115,116,97,116,101,109,101,110,116,2,1,86,13,245,117,9,1,14,46,99,111,111,107,105,101,45,115,116,105,99,107,121,2,1,65,237,143,217,9,1,15,46,99,111,111,107,105,101,45,118,105,115,105,98,108,101,2,5,27,125,0,91,138,208,120,99,157,29,186,74,192,120,88,116,202,236,104,122,9,1,15,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,2,3,127,40,217,85,187,35,21,51,223,56,47,108,9,1,23,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,99,111,110,116,101,110,116,2,1,127,40,217,85,9,1,13,46,99,111,111,107,105,101,65,99,99,101,112,116,2,2,110,135,60,219,246,126,33,10,9,1,10,46,99,111,111,107,105,101,66,97,114,2,2,88,15,195,207,172,81,43,10,9,1,10,46,99,111,111,107,105,101,66,111,120,2,1,94,84,86,218,9,1,21,46,99,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,101,110,116,2,1,205,146,235,178,9,1,20,46,99,111,111,107,105,101,67,111,110,115,101,110,116,70,111,111,116,101,114,2,1,205,146,235,178,9,1,16,46,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,2,3,110,135,60,219,117,44,208,94,246,126,33,10,9,1,10,46,99,111,111,107,105,101,68,105,118,2,1,89,202,83,172,9,1,12,46,99,111,111,107,105,101,77,111,100,97,108,2,6,0,105,241,145,20,106,245,139,65,237,76,156,111,195,203,161,231,11,32,243,242,231,70,111,9,1,13,46,99,111,111,107,105,101,78,111,116,105,99,101,2,1,172,81,43,10,9,1,15,46,99,111,111,107,105,101,83,101,116,116,105,110,103,115,2,46,5,99,109,93,15,68,110,49,19,60,247,203,20,246,141,106,29,246,0,5,33,126,3,194,37,183,110,52,47,86,28,26,52,103,46,207,52,218,145,88,53,216,157,63,60,183,118,96,64,91,204,243,67,249,64,84,68,7,197,68,69,121,254,87,71,157,110,148,87,67,206,250,88,197,21,130,96,29,198,174,104,219,146,180,105,204,43,150,106,57,192,20,116,7,132,112,117,81,113,74,126,250,93,198,142,67,136,174,144,45,147,217,145,73,13,51,146,23,23,53,147,170,59,207,151,37,147,146,157,215,128,79,159,148,144,62,182,1,112,164,189,93,49,238,197,58,129,95,198,122,167,11,206,87,17,84,211,131,183,159,213,213,31,13,229,151,243,105,234,112,210,164,237,155,127,48,243,234,61,235,244,100,211,212,9,1,16,46,99,111,111,107,105,101,83,116,97,116,101,109,101,110,116,2,1,178,215,136,169,9,1,16,46,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,2,1,74,206,139,24,9,1,14,46,99,111,111,107,105,101,95,97,99,99,101,112,116,2,2,29,250,172,160,178,215,136,169,9,1,14,46,99,111,111,107,105,101,95,98,97,110,110,101,114,2,1,91,38,181,6,9,1,11,46,99,111,111,107,105,101,95,98,97,114,2,1,53,183,227,226,9,1,35,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,1,175,118,48,29,9,1,17,46,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,2,1,23,70,109,85,9,1,15,46,99,111,111,107,105,101,95,109,101,115,115,97,103,101,2,1,23,70,109,85,9,1,14,46,99,111,111,107,105,101,95,112,111,108,105,99,121,2,1,253,191,149,8,9,1,13,46,99,111,111,107,105,101,95,112,111,112,117,112,2,1,247,167,87,96,9,1,12,46,99,111,111,107,105,101,97,108,101,114,116,2,2,105,237,90,75,170,11,132,5,9,1,23,46,99,111,111,107,105,101,98,97,110,110,101,114,58,110,111,116,40,98,111,100,121,41,2,1,197,18,244,20,9,1,20,46,99,111,111,107,105,101,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,168,107,84,86,9,1,10,46,99,111,111,107,105,101,98,111,120,2,1,16,250,104,175,9,1,16,46,99,111,111,107,105,101,99,111,110,116,97,105,110,101,114,2,1,114,177,171,129,9,1,13,46,99,111,111,107,105,101,100,105,97,108,111,103,2,1,92,81,18,11,9,1,31,46,99,111,111,107,105,101,108,97,119,45,115,101,116,99,111,111,107,105,101,112,111,108,105,99,121,45,102,111,114,109,2,18,4,75,112,30,33,48,123,83,36,52,19,115,50,238,109,120,59,118,245,39,64,13,37,95,70,244,190,141,78,9,231,2,98,124,62,123,104,142,217,29,109,243,152,200,110,117,127,149,151,73,155,160,186,224,174,88,212,49,90,192,228,125,92,253,229,128,174,152,245,40,89,243,9,1,14,46,99,111,111,107,105,101,109,101,115,115,97,103,101,2,1,20,231,126,210,9,1,11,46,99,111,111,107,105,101,110,111,116,101,2,1,233,75,17,225,9,1,15,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,2,35,5,46,68,32,7,203,194,187,10,23,207,129,13,156,88,227,13,178,101,77,14,114,194,247,20,90,30,53,20,176,192,7,53,42,113,6,58,186,201,144,74,223,144,93,75,86,76,209,75,145,56,114,140,243,50,202,155,233,240,163,156,224,226,146,158,214,81,49,164,205,80,26,165,60,184,76,165,74,22,144,165,81,116,56,173,98,216,74,192,138,156,11,192,138,156,17,192,138,156,181,200,84,123,53,210,32,33,157,213,230,49,17,227,7,31,240,227,13,26,21,228,194,90,137,228,234,34,237,232,62,209,209,252,211,222,44,254,1,228,5,9,1,22,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,112,111,112,117,112,2,1,2,173,97,134,9,1,18,46,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,2,2,158,241,151,204,224,102,169,245,9,1,16,46,99,111,111,107,105,101,115,45,99,111,110,116,101,110,116,2,1,177,222,191,48,9,1,13,46,99,111,111,107,105,101,115,45,105,110,102,111,2,1,161,101,218,47,9,1,33,46,99,111,111,107,105,101,115,45,105,110,102,111,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,2,1,168,112,89,8,9,1,16,46,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,2,1,218,52,180,90,9,1,34,46,99,111,111,107,105,101,115,45,109,111,100,97,108,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,1,43,86,91,91,9,1,26,46,99,111,111,107,105,101,115,45,109,111,100,97,108,95,95,98,97,99,107,103,114,111,117,110,100,2,1,43,86,91,91,9,1,26,46,99,111,111,107,105,101,115,45,110,111,116,45,115,101,116,58,110,111,116,40,98,111,100,121,41,2,2,203,35,175,40,248,30,48,96,9,1,15,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,2,1,38,157,108,100,9,1,15,46,99,111,111,107,105,101,115,45,112,111,112,45,117,112,2,1,190,148,85,52,9,1,14,46,99,111,111,107,105,101,115,45,112,111,112,117,112,2,1,128,186,252,227,9,1,16,46,99,111,111,107,105,101,115,45,118,105,115,105,98,108,101,2,1,254,191,178,0,9,1,13,46,99,111,111,107,105,101,115,45,119,114,97,112,2,1,77,122,187,42,9,1,15,46,99,111,111,107,105,101,115,46,97,99,116,105,118,101,2,1,193,219,120,26,9,1,13,46,99,111,111,107,105,101,115,77,111,100,97,108,2,1,87,33,1,16,9,1,14,46,99,111,111,107,105,101,115,95,95,105,110,102,111,2,1,112,80,7,79,9,1,21,46,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,45,115,104,111,119,2,1,142,48,162,224,9,1,18,46,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,2,1,196,80,240,190,9,1,14,46,99,111,111,107,105,101,115,95,112,111,112,117,112,2,1,185,10,100,128,9,1,11,46,99,111,111,107,105,101,116,101,120,116,2,2,100,202,82,194,198,215,24,199,9,1,19,46,99,111,111,107,105,101,118,97,114,110,105,110,103,45,119,114,97,112,2,1,240,53,210,228,9,1,34,46,99,111,111,107,105,101,119,97,114,110,105,110,103,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,4,18,208,165,141,214,13,81,231,223,56,47,108,240,53,210,228,9,1,11,46,99,111,111,107,105,101,119,114,97,112,2,1,58,92,30,33,9,1,14,46,99,117,115,116,111,109,95,99,111,111,107,105,101,2,1,175,97,49,180,9,1,21,46,100,105,100,111,109,105,45,110,111,116,105,99,101,45,98,97,110,110,101,114,2,8,34,212,111,207,62,11,56,11,132,134,81,244,156,200,86,132,163,3,128,167,194,197,253,186,228,230,119,104,248,217,1,155,9,1,21,46,100,105,100,111,109,105,45,115,99,114,101,101,110,45,120,108,97,114,103,101,2,4,12,45,184,210,64,171,124,94,70,98,191,34,200,81,240,37,9,1,13,46,100,115,103,118,111,45,98,97,110,110,101,114,2,1,55,181,65,101,9,1,24,46,101,99,45,103,116,109,45,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,2,3,45,74,243,242,76,76,95,47,157,9,153,255,9,1,16,46,101,110,115,78,111,116,105,102,121,66,97,110,110,101,114,2,1,213,9,216,122,9,1,32,46,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,112,111,112,117,112,45,111,112,101,110,2,3,97,202,195,213,119,73,196,216,140,42,168,83,9,1,12,46,103,100,112,114,45,98,97,110,110,101,114,2,5,6,156,132,248,144,68,172,120,176,103,209,241,227,46,141,188,251,250,101,139,9,1,20,46,103,100,112,114,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,5,6,156,132,248,144,68,172,120,176,103,209,241,227,46,141,188,251,250,101,139,9,1,12,46,103,100,112,114,45,98,117,116,116,111,110,2,1,99,9,63,237,9,1,13,46,103,100,112,114,45,99,111,110,115,101,110,116,2,1,162,234,41,84,9,1,23,46,103,100,112,114,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,162,234,41,84,9,1,18,46,103,100,112,114,45,99,111,110,115,101,110,116,45,116,97,98,115,2,1,36,114,109,170,9,1,21,46,103,100,112,114,45,99,111,110,115,101,110,116,45,116,97,98,115,45,118,50,2,1,36,114,109,170,9,1,13,46,103,100,112,114,45,99,111,110,116,101,110,116,2,2,55,165,75,104,206,92,173,22,9,1,13,46,103,100,112,114,45,99,111,111,107,105,101,115,2,1,87,14,87,217,9,1,12,46,103,100,112,114,45,100,105,97,108,111,103,2,1,171,255,135,184,9,1,12,46,103,100,112,114,45,102,111,111,116,101,114,2,1,107,250,82,57,9,1,13,46,103,100,112,114,45,111,118,101,114,108,97,121,2,6,6,156,132,248,144,68,172,120,176,103,209,241,206,92,173,22,227,46,141,188,251,250,101,139,9,1,11,46,103,100,112,114,45,112,111,112,117,112,2,2,224,121,204,231,239,184,141,202,9,1,12,46,103,100,112,114,45,112,114,111,109,112,116,2,1,126,1,117,0,9,1,13,46,103,100,112,114,45,119,97,114,110,105,110,103,2,1,129,159,82,192,9,1,23,46,103,100,112,114,77,111,100,97,108,95,95,112,108,97,99,101,104,111,108,100,101,114,2,1,36,114,109,170,9,1,11,46,103,100,112,114,78,111,116,105,99,101,2,1,55,165,75,104,9,1,13,46,103,100,112,114,95,119,114,97,112,112,101,114,2,1,129,40,71,169,9,1,11,46,105,110,102,111,99,111,111,107,105,101,2,1,43,234,32,59,9,1,10,46,106,115,45,99,111,111,107,105,101,2,2,141,214,232,216,239,108,47,57,9,1,16,46,106,115,45,99,111,111,107,105,101,45,97,108,101,114,116,2,1,111,65,225,113,9,1,17,46,106,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,34,92,159,74,9,1,14,46,106,115,45,99,111,111,107,105,101,45,98,97,114,2,1,202,40,74,48,9,1,18,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,160,53,149,1,9,1,20,46,106,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,60,4,24,71,9,1,40,46,106,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,2,2,66,56,130,84,115,195,0,57,9,1,16,46,106,115,45,99,111,111,107,105,101,45,109,111,100,97,108,2,1,230,105,202,238,9,1,17,46,106,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,186,158,237,65,9,1,19,46,106,115,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,2,1,53,131,190,195,9,1,19,46,106,115,45,115,101,116,99,111,111,107,105,101,112,111,108,105,99,121,2,18,4,75,112,30,33,48,123,83,36,52,19,115,50,238,109,120,59,118,245,39,64,13,37,95,70,244,190,141,78,9,231,2,98,124,62,123,104,142,217,29,109,243,152,200,110,117,127,149,151,73,155,160,186,224,174,88,212,49,90,192,228,125,92,253,229,128,174,152,245,40,89,243,9,1,20,46,108,103,99,111,111,107,105,101,115,108,97,119,95,98,97,110,110,101,114,2,1,190,223,149,46,9,1,17,46,109,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,121,155,238,24,9,1,16,46,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,87,36,125,51,9,1,16,46,109,45,99,111,111,107,105,101,99,111,110,116,114,111,108,2,1,247,123,128,40,9,1,14,46,109,111,100,97,108,45,99,111,111,99,107,105,101,2,1,118,27,7,221,9,1,24,46,109,111,111,118,101,45,103,100,112,114,45,97,108,105,103,110,45,99,101,110,116,101,114,2,1,232,117,110,85,9,1,23,46,109,111,111,118,101,45,103,100,112,114,45,100,97,114,107,45,115,99,104,101,109,101,2,1,232,117,110,85,9,1,14,46,110,111,116,105,99,101,45,99,111,111,107,105,101,2,1,27,158,76,222,9,1,12,46,111,45,99,111,111,107,105,101,108,97,119,2,18,4,75,112,30,33,48,123,83,36,52,19,115,50,238,109,120,59,118,245,39,64,13,37,95,70,244,190,141,78,9,231,2,98,124,62,123,104,142,217,29,109,243,152,200,110,117,127,149,151,73,155,160,186,224,174,88,212,49,90,192,228,125,92,253,229,128,174,152,245,40,89,243,9,1,24,46,111,110,101,116,114,117,115,116,45,112,99,45,100,97,114,107,45,102,105,108,116,101,114,2,3,19,131,170,60,77,85,102,148,227,78,26,45,9,1,26,46,111,112,116,97,110,111,110,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,2,1,164,58,96,50,9,1,22,46,111,112,116,97,110,111,110,45,115,104,111,119,45,115,101,116,116,105,110,103,115,2,18,3,51,108,160,12,132,197,192,21,113,185,168,30,252,193,249,36,241,182,225,89,163,150,83,89,215,13,94,110,100,245,110,113,245,68,230,142,246,60,229,154,202,209,95,154,241,61,25,191,179,94,89,213,174,52,151,217,65,25,138,234,150,130,38,235,255,170,119,250,240,119,58,9,1,21,46,111,116,45,115,100,107,45,115,104,111,119,45,115,101,116,116,105,110,103,115,2,3,55,69,194,235,101,44,44,128,103,79,134,65,9,1,29,46,112,97,103,101,45,119,114,97,112,45,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,2,3,42,229,113,227,81,246,163,0,138,203,72,117,9,1,17,46,112,101,97,95,99,111,111,107,95,119,114,97,112,112,101,114,2,1,86,120,31,0,9,1,11,46,112,111,108,105,99,121,45,98,111,120,2,2,35,71,255,125,88,162,207,244,9,1,11,46,112,111,112,117,112,45,103,100,112,114,2,1,66,223,145,120,9,1,14,46,112,114,105,118,97,99,121,45,97,108,101,114,116,2,1,151,81,216,124,9,1,23,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,99,111,110,115,101,110,116,2,1,232,152,7,73,9,1,11,46,112,114,105,118,97,99,121,66,97,114,2,128,0,0,0,203,0,152,39,247,2,159,116,52,2,189,60,132,2,241,219,250,3,72,216,139,3,154,144,183,3,180,49,63,5,197,134,228,6,166,164,156,6,198,100,184,8,118,178,49,8,194,187,164,11,57,2,106,11,97,113,85,12,18,58,115,13,185,241,147,15,171,145,27,15,250,36,121,17,223,204,10,18,29,5,5,19,33,112,130,22,169,34,223,24,126,113,57,24,237,153,156,25,158,71,78,26,95,191,185,27,217,232,205,28,19,19,53,29,60,165,77,31,95,52,221,36,12,127,229,36,229,81,100,37,159,115,172,41,63,208,69,42,82,177,249,43,243,158,255,44,90,155,93,45,9,151,218,46,242,180,11,48,218,67,113,50,205,52,41,52,114,183,191,52,135,120,15,52,228,93,12,53,7,147,195,54,31,68,245,54,254,42,94,55,211,183,17,56,60,70,171,57,225,102,6,59,93,198,144,61,236,109,243,62,103,215,201,63,34,96,149,63,81,71,251,64,206,183,187,70,185,93,217,70,207,139,111,72,103,87,85,73,60,247,185,75,56,137,126,76,254,51,61,79,51,155,202,79,200,60,182,84,187,159,151,84,198,170,46,85,85,109,156,86,18,88,41,86,114,242,155,86,149,83,213,86,244,66,182,87,205,250,216,90,146,247,39,92,178,37,127,94,185,148,62,95,64,85,24,95,144,136,26,98,50,254,112,100,16,26,123,101,171,122,190,102,27,154,48,103,204,253,8,104,35,177,156,106,139,39,127,107,70,0,120,107,236,201,47,108,108,228,227,110,138,208,79,110,179,111,50,111,153,56,85,111,253,200,208,113,6,255,158,116,191,201,230,117,9,111,0,117,228,67,167,122,47,93,232,122,242,83,243,125,101,9,18,126,211,168,103,128,139,168,23,128,249,36,32,130,50,141,218,131,191,67,217,132,216,130,101,133,224,147,65,134,44,127,227,135,28,128,172,138,127,164,74,139,198,124,194,140,211,7,151,142,170,31,40,144,75,255,132,145,44,202,49,145,149,122,102,146,61,0,148,147,181,229,71,149,239,196,191,151,156,81,245,152,1,26,100,152,13,220,66,152,133,34,159,155,167,164,80,158,82,140,165,160,105,165,102,160,110,65,155,160,212,16,58,164,73,54,12,165,80,251,149,167,85,154,12,167,108,48,233,169,228,100,85,172,36,156,208,173,29,112,254,174,68,148,157,174,147,36,59,183,73,70,89,183,120,108,88,185,122,2,200,186,121,136,219,187,52,30,92,189,144,86,136,190,150,46,221,191,14,137,67,191,104,165,168,192,74,207,224,192,222,35,204,193,25,57,108,194,251,135,20,198,28,107,166,198,55,139,207,198,210,140,2,199,133,138,74,202,35,25,140,202,171,121,137,202,194,127,152,203,125,213,20,203,176,5,40,204,19,128,230,205,182,114,214,206,50,176,49,208,24,100,61,208,231,38,163,209,44,200,27,210,38,56,28,210,50,117,70,210,228,80,31,210,244,62,121,211,117,238,42,214,129,87,123,217,14,27,241,217,108,247,51,218,225,22,223,219,232,209,252,220,194,94,202,221,116,39,155,222,226,22,18,225,190,167,161,226,66,10,81,226,111,5,208,228,64,109,34,229,74,154,114,230,140,118,22,231,219,154,166,232,223,192,206,234,18,225,241,235,20,89,18,235,129,142,135,236,254,53,33,238,62,24,53,239,143,74,5,240,169,237,154,241,69,159,125,241,161,12,171,242,126,172,173,243,18,135,102,243,73,157,46,244,44,183,50,247,169,124,221,249,138,233,66,250,150,60,136,251,156,20,221,252,210,137,229,255,183,56,138,9,1,27,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,109,101,115,115,97,103,101,95,98,111,120,2,1,217,29,77,150,9,1,15,46,112,114,105,118,97,99,121,95,112,114,111,109,112,116,2,2,63,178,143,207,192,127,8,55,9,1,12,46,112,114,105,118,97,99,121,104,105,110,116,2,1,34,92,159,74,9,1,21,46,112,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,118,50,2,2,165,193,121,59,244,98,200,95,9,1,29,46,112,119,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,117,115,116,111,109,105,122,101,2,1,183,211,34,136,9,1,15,46,112,119,115,95,99,111,111,107,105,101,95,98,97,114,2,1,43,234,32,59,9,1,12,46,114,111,100,111,45,97,99,99,101,112,116,2,1,96,233,91,133,9,1,11,46,114,111,100,111,45,109,111,100,97,108,2,1,126,229,193,252,9,1,11,46,114,111,100,111,45,112,111,112,117,112,2,1,57,46,255,147,9,1,16,46,114,111,100,111,95,95,99,111,110,116,97,105,110,101,114,2,1,96,233,91,133,9,1,13,46,115,105,98,98,111,45,108,97,121,111,117,116,2,2,121,78,35,96,195,226,227,91,9,1,18,46,116,99,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,2,4,139,160,60,128,182,132,160,154,217,174,62,117,247,148,229,130,9,1,19,46,116,99,45,112,114,105,118,97,99,121,45,111,118,101,114,108,97,121,2,2,217,174,62,117,247,148,229,130,9,1,19,46,116,114,117,115,116,101,95,98,111,120,95,111,118,101,114,108,97,121,2,1,204,155,190,151,9,1,35,46,116,114,117,115,116,101,95,111,118,101,114,108,97,121,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,1,204,155,190,151,9,1,16,46,119,101,108,99,111,109,101,45,112,114,105,118,97,99,121,2,1,27,166,193,94,9,1,16,46,120,45,99,111,111,107,105,101,115,45,109,111,100,97,108,2,1,43,12,102,126,1,1,28,91,97,114,105,97,45,108,97,98,101,108,61,34,99,111,111,107,105,101,99,111,110,115,101,110,116,34,93,2,3,77,221,231,65,110,155,36,8,117,44,208,94,1,1,25,91,100,97,116,97,45,99,121,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,2,1,217,181,109,124,33,1,56,91,104,114,101,102,61,34,104,116,116,112,115,58,47,47,100,101,118,111,119,108,46,105,111,47,119,111,114,100,112,114,101,115,115,45,114,101,97,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,47,34,93,2,1,69,229,13,216,1,1,11,97,109,112,45,99,111,110,115,101,110,116,2,1,98,206,17,137,1,1,18,97,112,112,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,2,1,127,40,217,85,1,1,11,97,112,112,45,99,111,111,107,105,101,115,2,1,197,215,82,62,1,1,24,100,105,118,35,95,95,116,101,97,108,105,117,109,71,68,80,82,101,99,77,111,100,97,108,2,4,37,123,41,93,47,105,88,193,63,178,143,207,192,127,8,55,1,1,21,100,105,118,35,99,109,112,45,97,112,112,45,99,111,110,116,97,105,110,101,114,2,1,175,60,74,16,1,1,16,100,105,118,35,99,111,111,107,105,101,45,112,111,112,117,112,2,1,175,190,33,32,1,1,22,100,105,118,35,99,111,111,107,105,101,67,111,110,115,101,110,116,77,111,100,97,108,2,1,199,74,182,199,1,1,18,100,105,118,35,112,114,105,118,97,99,121,95,112,111,108,105,99,121,2,1,8,178,43,83,1,1,13,100,105,118,46,99,45,99,111,111,107,105,101,115,2,1,66,56,130,84,1,1,16,100,105,118,46,99,99,112,97,45,109,101,115,115,97,103,101,2,1,203,218,107,60,1,1,8,100,105,118,46,99,110,105,108,2,1,222,64,114,226,1,1,16,100,105,118,46,99,111,111,107,105,101,45,97,108,101,114,116,2,2,6,185,232,0,113,248,173,146,1,1,17,100,105,118,46,99,111,111,107,105,101,45,98,97,110,110,101,114,2,52,5,99,109,93,15,68,110,49,19,60,247,203,20,246,141,106,25,238,229,70,29,246,0,5,33,126,3,194,37,183,110,52,47,86,28,26,52,103,46,207,52,218,145,88,53,216,157,63,60,183,118,96,64,91,204,243,67,249,64,84,68,7,197,68,69,121,254,87,71,157,110,148,72,78,113,55,87,67,206,250,88,197,21,130,96,29,198,174,104,219,146,180,105,204,43,150,106,57,192,20,116,7,132,112,117,81,113,74,118,200,173,130,126,250,93,198,142,67,136,174,144,45,147,217,145,73,13,51,146,23,23,53,147,170,59,207,151,37,147,146,157,215,128,79,159,148,144,62,159,151,225,254,182,1,112,164,189,93,49,238,194,246,189,236,197,58,129,95,198,122,167,11,206,87,17,84,207,88,121,39,211,131,183,159,213,213,31,13,229,151,243,105,234,112,210,164,237,155,127,48,243,234,61,235,244,100,211,212,1,1,25,100,105,118,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,1,194,246,189,236,1,1,14,100,105,118,46,99,111,111,107,105,101,45,98,97,114,2,7,7,85,101,58,108,91,174,127,114,117,217,66,150,227,143,134,202,40,74,48,234,245,215,59,241,225,79,83,1,1,18,100,105,118,46,99,111,111,107,105,101,45,99,111,110,102,105,114,109,2,1,112,152,141,167,1,1,18,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,10,12,131,240,92,78,193,174,14,89,202,83,172,138,175,39,188,153,46,38,42,154,243,227,174,199,199,252,5,215,60,149,31,250,154,49,108,253,97,77,202,1,1,25,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,235,231,21,125,1,1,24,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,254,31,120,145,1,1,24,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,2,3,39,243,38,149,112,249,23,189,205,90,180,50,1,1,20,100,105,118,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,2,23,70,109,85,109,234,120,8,1,1,18,100,105,118,46,99,111,111,107,105,101,45,99,111,110,116,101,110,116,2,3,6,185,232,0,58,92,30,33,71,76,29,1,1,1,21,100,105,118,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,2,1,20,233,23,212,1,1,16,100,105,118,46,99,111,111,107,105,101,45,108,97,121,101,114,2,1,150,113,42,126,1,1,17,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,99,101,2,37,4,211,70,19,23,39,63,60,26,225,200,191,36,44,150,204,39,243,38,149,40,160,57,139,49,214,49,117,51,239,231,92,52,22,9,246,57,34,126,39,63,191,229,4,76,242,194,162,77,65,140,87,81,221,227,125,94,89,105,107,101,63,62,102,112,249,23,189,122,171,1,91,130,25,28,205,133,161,250,65,136,32,52,38,140,220,50,113,148,188,83,207,152,189,55,209,156,219,214,38,158,34,82,4,188,230,247,171,189,13,198,197,199,154,133,188,205,90,180,50,211,32,26,173,213,140,152,2,219,234,26,122,220,244,135,81,236,44,189,59,241,147,125,138,251,11,116,119,1,1,23,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,2,40,85,144,166,153,62,159,75,1,1,18,100,105,118,46,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,81,246,163,0,1,1,17,100,105,118,46,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,97,237,16,89,1,1,16,100,105,118,46,99,111,111,107,105,101,45,112,111,112,117,112,2,1,37,76,59,241,1,1,18,100,105,118,46,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,17,7,152,219,156,7,165,230,96,28,243,217,195,33,61,167,255,57,14,69,46,64,140,210,9,71,76,29,1,73,97,37,29,96,226,223,235,114,236,17,98,126,18,118,252,153,165,51,39,157,161,252,114,171,27,192,149,179,29,160,27,215,75,45,217,233,21,216,191,1,1,16,100,105,118,46,99,111,111,107,105,101,72,111,108,100,101,114,2,1,1,19,26,55,1,1,16,100,105,118,46,99,111,111,107,105,101,95,112,111,112,117,112,2,1,247,167,87,96,1,1,13,100,105,118,46,99,111,111,107,105,101,98,97,114,2,4,70,203,74,200,124,119,192,120,158,98,191,207,198,200,83,118,1,1,18,100,105,118,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,112,154,57,50,1,1,27,100,105,118,46,99,111,111,107,105,101,115,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,2,43,12,102,126,154,35,129,197,1,1,19,100,105,118,46,99,111,111,107,105,101,115,45,118,105,115,105,98,108,101,2,1,63,179,180,126,1,1,11,100,105,118,46,101,117,112,111,112,117,112,2,1,81,77,66,77,1,1,8,100,105,118,46,103,100,112,114,2,31,17,155,52,140,38,157,76,186,38,157,135,96,43,168,163,228,50,217,111,172,65,36,162,50,86,35,200,87,87,22,252,153,98,48,178,188,101,114,117,217,101,227,144,63,102,14,161,254,107,250,82,57,115,254,45,52,122,165,53,103,125,134,184,183,137,65,7,137,143,140,74,255,146,125,218,236,148,185,212,250,148,185,233,25,148,186,176,218,174,34,26,168,178,188,187,230,193,113,84,60,194,197,250,106,194,197,253,34,211,244,164,16,217,29,77,150,222,202,84,122,244,237,153,52,1,1,17,100,105,118,46,106,115,45,100,105,115,99,108,97,105,109,101,114,2,1,129,88,233,166,1,1,17,100,105,118,46,112,114,105,118,97,99,121,45,109,111,100,97,108,2,1,20,233,105,97,1,1,18,100,105,118,46,112,114,105,118,97,99,121,95,112,114,111,109,112,116,2,2,63,178,143,207,192,127,8,55,1,1,12,100,105,118,46,118,45,99,111,111,107,105,101,2,1,125,7,182,40,1,1,15,100,105,118,46,119,105,116,104,45,99,111,111,107,105,101,2,2,82,241,129,184,126,51,4,147,1,1,29,100,105,118,91,100,97,116,97,45,103,100,112,114,45,99,111,110,115,101,110,116,45,112,114,111,109,112,116,93,2,1,148,193,37,43,1,1,39,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,34,93,2,2,18,67,125,147,25,145,115,140,1,1,21,115,101,99,116,105,111,110,46,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,78,143,33,245,1,1,16,115,105,98,98,111,45,99,109,112,45,108,97,121,111,117,116,2,2,121,78,35,96,195,226,227,91,1,1,12,116,104,111,114,45,99,111,111,107,105,101,115,2,1,126,5,249,235,17,1,17,35,99,111,110,115,101,110,116,95,98,108,97,99,107,98,97,114,2,9,38,157,140,187,38,157,146,146,83,129,85,179,100,45,198,223,137,65,7,137,142,7,163,254,171,135,82,131,172,191,42,185,185,6,234,108,17,1,21,35,116,114,117,115,116,101,45,99,111,110,115,101,110,116,45,116,114,97,99,107,2,9,38,157,140,187,38,157,146,146,83,129,85,179,100,45,198,223,137,65,7,137,142,7,163,254,171,135,82,131,172,191,42,185,185,6,234,108,9,1,19,46,116,114,117,115,116,101,95,98,111,120,95,111,118,101,114,108,97,121,2,9,38,157,140,187,38,157,146,146,83,129,85,179,100,45,198,223,137,65,7,137,142,7,163,254,171,135,82,131,172,191,42,185,185,6,234,108,9,1,35,46,116,114,117,115,116,101,95,111,118,101,114,108,97,121,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,9,38,157,140,187,38,157,146,146,83,129,85,179,100,45,198,223,137,65,7,137,142,7,163,254,171,135,82,131,172,191,42,185,185,6,234,108,1,1,20,108,105,91,100,97,116,97,45,108,97,121,111,117,116,61,34,97,100,34,93,2,1,9,161,255,112,1,1,20,108,105,91,100,97,116,97,45,108,97,121,111,117,116,61,34,97,100,34,93,2,1,9,161,255,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,10,252,226,29]);function Ri(e){try{const t=Xe(location.href),o=t.hostname||"",i=t.domain||"";return e.getCosmeticsFilters({url:location.href,hostname:o,domain:i,...zi([document.documentElement]),getBaseRules:!0,getInjectionRules:!1,getExtendedRules:!0,getRulesFromDOM:!0,getRulesFromHostname:!0}).styles}catch(e){return console.error("Error getting cosmetic rules",e),""}}var Bi=[{name:"192.com",detectCmp:[{exists:".ont-cookies"}],detectPopup:[{visible:".ont-cookies"}],optIn:[{click:".ont-btn-main.ont-cookies-btn.js-ont-btn-ok2"}],optOut:[{click:".ont-cookes-btn-manage"},{click:".ont-btn-main.ont-cookies-btn.js-ont-btn-choose"}],test:[{eval:"EVAL_ONENINETWO_0"}]},{name:"1password-com",cosmetic:!0,prehideSelectors:['footer #footer-root [aria-label="Cookie Consent"]'],detectCmp:[{exists:'footer #footer-root [aria-label="Cookie Consent"]'}],detectPopup:[{visible:'footer #footer-root [aria-label="Cookie Consent"]'}],optIn:[{click:'footer #footer-root [aria-label="Cookie Consent"] button'}],optOut:[{hide:'footer #footer-root [aria-label="Cookie Consent"]'}]},{name:"aa",vendorUrl:"https://aa.com",prehideSelectors:[],cosmetic:!0,detectCmp:[{exists:"#aa_optoutmulti-Modal,#cookieBannerMessage"}],detectPopup:[{visible:"#aa_optoutmulti-Modal,#cookieBannerMessage"}],optIn:[{hide:"#aa_optoutmulti-Modal,#cookieBannerMessage"},{waitForThenClick:"#aa_optoutmulti_checkBox"},{waitForThenClick:"#aa_optoutmulti-Modal button.optoutmulti_button"}],optOut:[{hide:"#aa_optoutmulti-Modal,#cookieBannerMessage"}]},{name:"abc",vendorUrl:"https://abc.net.au",runContext:{urlPattern:"^https://([a-z0-9-]+\\.)?abc\\.net\\.au/"},prehideSelectors:[],detectCmp:[{exists:"[data-component=CookieBanner]"}],detectPopup:[{visible:"[data-component=CookieBanner] [data-component=CookieBanner_AcceptAll]"}],optIn:[{waitForThenClick:"[data-component=CookieBanner] [data-component=CookieBanner_AcceptAll]"}],optOut:[{waitForThenClick:"[data-component=CookieBanner] [data-component=CookieBanner_AcceptABCRequired]"}],test:[{eval:"EVAL_ABC_TEST"}]},{name:"abconcerts.be",vendorUrl:"https://unknown",intermediate:!1,prehideSelectors:["dialog.cookie-consent"],detectCmp:[{exists:"dialog.cookie-consent form.cookie-consent__form"}],detectPopup:[{visible:"dialog.cookie-consent form.cookie-consent__form"}],optIn:[{waitForThenClick:"dialog.cookie-consent form.cookie-consent__form button[value=yes]"}],optOut:[{if:{exists:"dialog.cookie-consent form.cookie-consent__form button[value=no]"},then:[{click:"dialog.cookie-consent form.cookie-consent__form button[value=no]"}],else:[{click:"dialog.cookie-consent form.cookie-consent__form button.cookie-consent__options-toggle"},{waitForThenClick:'dialog.cookie-consent form.cookie-consent__form button[value="save_options"]'}]}]},{name:"acris",prehideSelectors:["div.acris-cookie-consent"],detectCmp:[{exists:"[data-acris-cookie-consent]"}],detectPopup:[{visible:".acris-cookie-consent.is--modal"}],optIn:[{waitForVisible:"#ccConsentAcceptAllButton",check:"any"},{wait:500},{waitForThenClick:"#ccConsentAcceptAllButton"}],optOut:[{waitForVisible:"#ccAcceptOnlyFunctional",check:"any"},{wait:500},{waitForThenClick:"#ccAcceptOnlyFunctional"}]},{name:"activobank.pt",runContext:{urlPattern:"^https://(www\\.)?activobank\\.pt"},prehideSelectors:["aside#cookies,.overlay-cookies"],detectCmp:[{exists:"#cookies .cookies-btn"}],detectPopup:[{visible:"#cookies #submitCookies"}],optIn:[{waitForThenClick:"#cookies #submitCookies"}],optOut:[{waitForThenClick:"#cookies #rejectCookies"}]},{name:"Adroll",prehideSelectors:["#adroll_consent_container"],detectCmp:[{exists:"#adroll_consent_container"}],detectPopup:[{visible:"#adroll_consent_container"}],optIn:[{waitForThenClick:"#adroll_consent_accept"}],optOut:[{waitForThenClick:"#adroll_consent_reject"}],test:[{eval:"EVAL_ADROLL_0"}]},{name:"affinity.serif.com",detectCmp:[{exists:".c-cookie-banner button[data-qa='allow-all-cookies']"}],detectPopup:[{visible:".c-cookie-banner"}],optIn:[{click:'button[data-qa="allow-all-cookies"]'}],optOut:[{click:'button[data-qa="manage-cookies"]'},{waitFor:'.c-cookie-banner ~ [role="dialog"]'},{waitForThenClick:'.c-cookie-banner ~ [role="dialog"] input[type="checkbox"][value="true"]',all:!0},{click:'.c-cookie-banner ~ [role="dialog"] .c-modal__action button'}],test:[{wait:500},{eval:"EVAL_AFFINITY_SERIF_COM_0"}]},{name:"agolde.com",cosmetic:!0,prehideSelectors:["#modal-1 div[data-micromodal-close]"],detectCmp:[{exists:"#modal-1 div[aria-labelledby=modal-1-title]"}],detectPopup:[{exists:"#modal-1 div[data-micromodal-close]"}],optIn:[{click:'button[aria-label="Close modal"]'}],optOut:[{hide:"#modal-1 div[data-micromodal-close]"}]},{name:"aliexpress",vendorUrl:"https://aliexpress.com/",runContext:{urlPattern:"^https://.*\\.aliexpress\\.com/"},prehideSelectors:["#gdpr-new-container"],detectCmp:[{exists:"#gdpr-new-container,#voyager-gdpr > div"}],detectPopup:[{visible:"#gdpr-new-container,#voyager-gdpr > div"}],optIn:[{waitForThenClick:"#gdpr-new-container .btn-accept,#voyager-gdpr > div > div > button:nth-child(1)"}],optOut:[{if:{exists:"#voyager-gdpr > div"},then:[{waitForThenClick:"#voyager-gdpr > div > div > button:nth-child(2)"}],else:[{waitForThenClick:"#gdpr-new-container .btn-more"},{waitFor:"#gdpr-new-container .gdpr-dialog-switcher"},{click:"#gdpr-new-container .switcher-on",all:!0,optional:!0},{click:"#gdpr-new-container .btn-save"}]}]},{name:"almacmp",prehideSelectors:["#alma-cmpv2-container"],detectCmp:[{exists:"#alma-cmpv2-container"}],detectPopup:[{visible:"#alma-cmpv2-container #almacmp-modal-layer1"}],optIn:[{waitForThenClick:"#alma-cmpv2-container #almacmp-modal-layer1 #almacmp-modalConfirmBtn"}],optOut:[{waitForThenClick:"#alma-cmpv2-container #almacmp-modal-layer1 #almacmp-modalSettingBtn"},{waitFor:"#alma-cmpv2-container #almacmp-modal-layer2"},{waitForThenClick:"#alma-cmpv2-container #almacmp-modal-layer2 #almacmp-reject-all-layer2"}],test:[{eval:"EVAL_ALMACMP_0"}]},{name:"altium.com",cosmetic:!0,prehideSelectors:[".altium-privacy-bar"],detectCmp:[{exists:".altium-privacy-bar"}],detectPopup:[{exists:".altium-privacy-bar"}],optIn:[{click:"a.altium-privacy-bar__btn"}],optOut:[{hide:".altium-privacy-bar"}]},{name:"amazon.com",prehideSelectors:['span[data-action="sp-cc"][data-sp-cc*="rejectAllAction"]'],detectCmp:[{exists:'span[data-action="sp-cc"][data-sp-cc*="rejectAllAction"]'}],detectPopup:[{visible:'span[data-action="sp-cc"][data-sp-cc*="rejectAllAction"]'}],optIn:[{waitForVisible:"#sp-cc-accept"},{wait:500},{click:"#sp-cc-accept"}],optOut:[{waitForVisible:"#sp-cc-rejectall-link"},{wait:500},{click:"#sp-cc-rejectall-link"}]},{name:"aquasana.com",prehideSelectors:["#consent-tracking"],detectCmp:[{exists:"#consent-tracking"}],detectPopup:[{exists:"#consent-tracking"}],optIn:[{waitForThenClick:"#consent-tracking .affirm.btn"}],optOut:[{if:{exists:"#consent-tracking .decline.btn"},then:[{click:"#consent-tracking .decline.btn"}],else:[{hide:"#consent-tracking"}]}]},{name:"arbeitsagentur",vendorUrl:"https://www.arbeitsagentur.de/",prehideSelectors:[".modal-open bahf-cookie-disclaimer-dpl3"],detectCmp:[{exists:"bahf-cookie-disclaimer-dpl3"}],detectPopup:[{visible:"bahf-cookie-disclaimer-dpl3"}],optIn:[{waitForThenClick:["bahf-cookie-disclaimer-dpl3","bahf-cd-modal-dpl3 .ba-btn-primary"]}],optOut:[{waitForThenClick:["bahf-cookie-disclaimer-dpl3","bahf-cd-modal-dpl3 .ba-btn-contrast"]}],test:[{eval:"EVAL_ARBEITSAGENTUR_TEST"}]},{name:"asus",vendorUrl:"https://www.asus.com/",runContext:{urlPattern:"^https://www\\.asus\\.com/"},prehideSelectors:["#cookie-policy-info,#cookie-policy-info-bg"],detectCmp:[{exists:"#cookie-policy-info"}],detectPopup:[{visible:"#cookie-policy-info"}],optIn:[{waitForThenClick:'#cookie-policy-info [data-agree="Accept Cookies"]'}],optOut:[{if:{exists:"#cookie-policy-info .btn-reject"},then:[{waitForThenClick:"#cookie-policy-info .btn-reject"}],else:[{waitForThenClick:"#cookie-policy-info .btn-setting"},{waitForThenClick:'#cookie-policy-lightbox-wrapper [data-agree="Save Settings"]'}]}]},{name:"athlinks-com",runContext:{urlPattern:"^https://(www\\.)?athlinks\\.com/"},cosmetic:!0,prehideSelectors:["#footer-container ~ div"],detectCmp:[{exists:"#footer-container ~ div"}],detectPopup:[{visible:"#footer-container > div"}],optIn:[{click:"#footer-container ~ div button"}],optOut:[{hide:"#footer-container ~ div"}]},{name:"ausopen.com",cosmetic:!0,detectCmp:[{exists:".gdpr-popup__message"}],detectPopup:[{visible:".gdpr-popup__message"}],optOut:[{hide:".gdpr-popup__message"}],optIn:[{click:".gdpr-popup__message button"}]},{name:"automattic-cmp-optout",prehideSelectors:['form[class*="cookie-banner"][method="post"]'],detectCmp:[{exists:'form[class*="cookie-banner"][method="post"]'}],detectPopup:[{visible:'form[class*="cookie-banner"][method="post"]'}],optIn:[{click:'a[class*="accept-all-button"]'}],optOut:[{click:'form[class*="cookie-banner"] div[class*="simple-options"] a[class*="customize-button"]'},{waitForThenClick:"input[type=checkbox][checked]:not([disabled])",all:!0},{click:'a[class*="accept-selection-button"]'}]},{name:"aws.amazon.com",prehideSelectors:["#awsccc-cb-content","#awsccc-cs-container","#awsccc-cs-modalOverlay","#awsccc-cs-container-inner"],detectCmp:[{exists:"#awsccc-cb-content"}],detectPopup:[{visible:"#awsccc-cb-content"}],optIn:[{click:"button[data-id=awsccc-cb-btn-accept"}],optOut:[{click:"button[data-id=awsccc-cb-btn-customize]"},{waitFor:"input[aria-checked]"},{click:"input[aria-checked=true]",all:!0,optional:!0},{click:"button[data-id=awsccc-cs-btn-save]"}]},{name:"axeptio",prehideSelectors:[".axeptio_widget"],detectCmp:[{exists:".axeptio_widget"}],detectPopup:[{visible:".axeptio_widget"}],optIn:[{waitFor:".axeptio-widget--open"},{click:"button#axeptio_btn_acceptAll"}],optOut:[{waitFor:".axeptio-widget--open"},{click:"button#axeptio_btn_dismiss"}],test:[{eval:"EVAL_AXEPTIO_0"}]},{name:"baden-wuerttemberg.de",prehideSelectors:[".cookie-alert.t-dark"],cosmetic:!0,detectCmp:[{exists:".cookie-alert.t-dark"}],detectPopup:[{visible:".cookie-alert.t-dark"}],optIn:[{click:".cookie-alert__form input:not([disabled]):not([checked])"},{click:".cookie-alert__button button"}],optOut:[{hide:".cookie-alert.t-dark"}]},{name:"bahn-de",vendorUrl:"https://www.bahn.de/",cosmetic:!1,runContext:{main:!0,frame:!1,urlPattern:"^https://(www\\.)?bahn\\.de/"},intermediate:!1,prehideSelectors:[],detectCmp:[{exists:["body > div:first-child","#consent-layer"]}],detectPopup:[{visible:["body > div:first-child","#consent-layer"]}],optIn:[{waitForThenClick:["body > div:first-child","#consent-layer .js-accept-all-cookies"]}],optOut:[{waitForThenClick:["body > div:first-child","#consent-layer .js-accept-essential-cookies"]}],test:[{eval:"EVAL_BAHN_TEST"}]},{name:"bbb.org",runContext:{urlPattern:"^https://www\\.bbb\\.org/"},cosmetic:!0,prehideSelectors:['div[aria-label="use of cookies on bbb.org"]'],detectCmp:[{exists:'div[aria-label="use of cookies on bbb.org"]'}],detectPopup:[{visible:'div[aria-label="use of cookies on bbb.org"]'}],optIn:[{click:'div[aria-label="use of cookies on bbb.org"] button.bds-button-unstyled span.visually-hidden'}],optOut:[{hide:'div[aria-label="use of cookies on bbb.org"]'}]},{name:"bing.com",prehideSelectors:["#bnp_container"],detectCmp:[{exists:"#bnp_cookie_banner"}],detectPopup:[{visible:"#bnp_cookie_banner"}],optIn:[{click:"#bnp_btn_accept"}],optOut:[{click:"#bnp_btn_preference"},{click:"#mcp_savesettings"}],test:[{eval:"EVAL_BING_0"}]},{name:"blocksy",vendorUrl:"https://creativethemes.com/blocksy/docs/extensions/cookies-consent/",cosmetic:!1,runContext:{main:!0,frame:!1},intermediate:!1,prehideSelectors:[".cookie-notification"],detectCmp:[{exists:"#blocksy-ext-cookies-consent-styles-css"}],detectPopup:[{visible:".cookie-notification"}],optIn:[{click:".cookie-notification .ct-cookies-decline-button"}],optOut:[{waitForThenClick:".cookie-notification .ct-cookies-decline-button"}],test:[{eval:"EVAL_BLOCKSY_0"}]},{name:"borlabs",detectCmp:[{exists:"._brlbs-block-content"}],detectPopup:[{visible:"._brlbs-bar-wrap,._brlbs-box-wrap"}],optIn:[{click:"a[data-cookie-accept-all]"}],optOut:[{click:"a[data-cookie-individual]"},{waitForVisible:".cookie-preference"},{click:"input[data-borlabs-cookie-checkbox]:checked",all:!0,optional:!0},{click:"#CookiePrefSave"},{wait:500}],prehideSelectors:["#BorlabsCookieBox"],test:[{eval:"EVAL_BORLABS_0"}]},{name:"bundesregierung.de",prehideSelectors:[".bpa-cookie-banner"],detectCmp:[{exists:".bpa-cookie-banner"}],detectPopup:[{visible:".bpa-cookie-banner .bpa-module-full-hero"}],optIn:[{click:".bpa-accept-all-button"}],optOut:[{wait:500,comment:"click is not immediately recognized"},{waitForThenClick:".bpa-close-button"}],test:[{eval:"EVAL_BUNDESREGIERUNG_DE_0"}]},{name:"burpee.com",cosmetic:!0,prehideSelectors:["#notice-cookie-block"],detectCmp:[{exists:"#notice-cookie-block"}],detectPopup:[{exists:"#html-body #notice-cookie-block"}],optIn:[{click:"#btn-cookie-allow"}],optOut:[{hide:"#html-body #notice-cookie-block, #notice-cookie"}]},{name:"canva.com",prehideSelectors:['div[role="dialog"] a[data-anchor-id="cookie-policy"]'],detectCmp:[{exists:'div[role="dialog"] a[data-anchor-id="cookie-policy"]'}],detectPopup:[{exists:'div[role="dialog"] a[data-anchor-id="cookie-policy"]'}],optIn:[{click:'div[role="dialog"] button:nth-child(1)'}],optOut:[{if:{exists:'div[role="dialog"] button:nth-child(3)'},then:[{click:'div[role="dialog"] button:nth-child(2)'}],else:[{click:'div[role="dialog"] button:nth-child(2)'},{waitFor:'div[role="dialog"] a[data-anchor-id="cookie-policy"]'},{waitFor:'div[role="dialog"] button[role=switch]'},{click:'div[role="dialog"] button:nth-child(2):not([role])'},{click:'div[role="dialog"] div:last-child button:only-child'}]}],test:[{eval:"EVAL_CANVA_0"}]},{name:"canyon.com",runContext:{urlPattern:"^https://www\\.canyon\\.com/"},prehideSelectors:["div.modal.cookiesModal.is-open"],detectCmp:[{exists:"div.modal.cookiesModal.is-open"}],detectPopup:[{visible:"div.modal.cookiesModal.is-open"}],optIn:[{click:'div.cookiesModal__buttonWrapper > button[data-closecause="close-by-submit"]'}],optOut:[{click:'div.cookiesModal__buttonWrapper > button[data-closecause="close-by-manage-cookies"]'},{waitForThenClick:"button#js-manage-data-privacy-save-button"}]},{name:"cc-banner-springer",prehideSelectors:[".cc-banner[data-cc-banner]"],detectCmp:[{exists:".cc-banner[data-cc-banner]"}],detectPopup:[{visible:".cc-banner[data-cc-banner]"}],optIn:[{waitForThenClick:".cc-banner[data-cc-banner] button[data-cc-action=accept]"}],optOut:[{if:{exists:".cc-banner[data-cc-banner] button[data-cc-action=reject]"},then:[{click:".cc-banner[data-cc-banner] button[data-cc-action=reject]"}],else:[{waitForThenClick:".cc-banner[data-cc-banner] button[data-cc-action=preferences]"},{waitFor:".cc-preferences[data-cc-preferences]"},{click:".cc-preferences[data-cc-preferences] input[type=radio][data-cc-action=toggle-category][value=off]",all:!0,optional:!0},{if:{exists:".cc-preferences[data-cc-preferences] button[data-cc-action=reject]"},then:[{click:".cc-preferences[data-cc-preferences] button[data-cc-action=reject]"}],else:[{click:".cc-preferences[data-cc-preferences] button[data-cc-action=save]"}]}]}],test:[{eval:"EVAL_CC_BANNER2_0"}]},{name:"cc_banner",cosmetic:!0,prehideSelectors:[".cc_banner-wrapper"],detectCmp:[{exists:".cc_banner-wrapper"}],detectPopup:[{visible:".cc_banner"}],optIn:[{click:".cc_btn_accept_all"}],optOut:[{hide:".cc_banner-wrapper"}]},{name:"check24-partnerprogramm-de",prehideSelectors:["[data-modal-content]:has([data-toggle-target^='cookie'])"],detectCmp:[{exists:"[data-toggle-target^='cookie']"}],detectPopup:[{visible:"[data-toggle-target^='cookie']",check:"any"}],optIn:[{waitForThenClick:"[data-cookie-accept-all]"}],optOut:[{waitForThenClick:"[data-cookie-dismiss-all]"}]},{name:"ciaopeople.it",prehideSelectors:["#cp-gdpr-choices"],detectCmp:[{exists:"#cp-gdpr-choices"}],detectPopup:[{visible:"#cp-gdpr-choices"}],optIn:[{waitForThenClick:".gdpr-btm__right > button:nth-child(2)"}],optOut:[{waitForThenClick:".gdpr-top-content > button"},{waitFor:".gdpr-top-back"},{waitForThenClick:".gdpr-btm__right > button:nth-child(1)"}],test:[{visible:"#cp-gdpr-choices",check:"none"}]},{vendorUrl:"https://www.civicuk.com/cookie-control/",name:"civic-cookie-control",prehideSelectors:["#ccc-module,#ccc-overlay"],detectCmp:[{exists:"#ccc-module"}],detectPopup:[{visible:"#ccc"},{visible:"#ccc-module"}],optOut:[{click:"#ccc-reject-settings"}],optIn:[{click:"#ccc-recommended-settings"}]},{name:"click.io",prehideSelectors:["#cl-consent"],detectCmp:[{exists:"#cl-consent"}],detectPopup:[{visible:"#cl-consent"}],optIn:[{waitForThenClick:'#cl-consent [data-role="b_agree"]'}],optOut:[{waitFor:'#cl-consent [data-role="b_options"]'},{wait:500},{click:'#cl-consent [data-role="b_options"]'},{waitFor:'.cl-consent-popup.cl-consent-visible [data-role="alloff"]'},{click:'.cl-consent-popup.cl-consent-visible [data-role="alloff"]',all:!0},{click:'[data-role="b_save"]'}],test:[{eval:"EVAL_CLICKIO_0",comment:"TODO: this only checks if we interacted at all"}]},{name:"clinch",intermediate:!1,runContext:{frame:!1,main:!0},prehideSelectors:[".consent-modal[role=dialog]"],detectCmp:[{exists:".consent-modal[role=dialog]"}],detectPopup:[{visible:".consent-modal[role=dialog]"}],optIn:[{click:"#consent_agree"}],optOut:[{if:{exists:"#consent_reject"},then:[{click:"#consent_reject"}],else:[{click:"#manage_cookie_preferences"},{click:"#cookie_consent_preferences input:checked",all:!0,optional:!0},{click:"#consent_save"}]}],test:[{eval:"EVAL_CLINCH_0"}]},{name:"clustrmaps.com",runContext:{urlPattern:"^https://(www\\.)?clustrmaps\\.com/"},cosmetic:!0,prehideSelectors:["#gdpr-cookie-message"],detectCmp:[{exists:"#gdpr-cookie-message"}],detectPopup:[{visible:"#gdpr-cookie-message"}],optIn:[{click:"button#gdpr-cookie-accept"}],optOut:[{hide:"#gdpr-cookie-message"}]},{name:"coinbase",intermediate:!1,runContext:{frame:!0,main:!0,urlPattern:"^https://(www|help)\\.coinbase\\.com"},prehideSelectors:[],detectCmp:[{exists:"div[class^=CookieBannerContent__Container]"}],detectPopup:[{visible:"div[class^=CookieBannerContent__Container]"}],optIn:[{click:"div[class^=CookieBannerContent__CTA] :nth-last-child(1)"}],optOut:[{click:"button[class^=CookieBannerContent__Settings]"},{click:"div[class^=CookiePreferencesModal__CategoryContainer] input:checked",all:!0,optional:!0},{click:"div[class^=CookiePreferencesModal__ButtonContainer] > button"}],test:[{eval:"EVAL_COINBASE_0"}]},{name:"Complianz banner",prehideSelectors:["#cmplz-cookiebanner-container"],detectCmp:[{exists:"#cmplz-cookiebanner-container .cmplz-cookiebanner"}],detectPopup:[{visible:"#cmplz-cookiebanner-container .cmplz-cookiebanner",check:"any"}],optIn:[{waitForThenClick:".cmplz-cookiebanner .cmplz-accept"}],optOut:[{waitForThenClick:".cmplz-cookiebanner .cmplz-deny"}],test:[{eval:"EVAL_COMPLIANZ_BANNER_0"}]},{name:"Complianz categories",prehideSelectors:['.cc-type-categories[aria-describedby="cookieconsent:desc"]'],detectCmp:[{exists:'.cc-type-categories[aria-describedby="cookieconsent:desc"]'}],detectPopup:[{visible:'.cc-type-categories[aria-describedby="cookieconsent:desc"]'}],optIn:[{any:[{click:".cc-accept-all"},{click:".cc-allow-all"},{click:".cc-allow"},{click:".cc-dismiss"}]}],optOut:[{if:{exists:'.cc-type-categories[aria-describedby="cookieconsent:desc"] .cc-dismiss'},then:[{click:".cc-dismiss"}],else:[{click:".cc-type-categories input[type=checkbox]:not([disabled]):checked",all:!0,optional:!0},{click:".cc-save"}]}]},{name:"Complianz notice",prehideSelectors:['.cc-type-info[aria-describedby="cookieconsent:desc"]'],cosmetic:!0,detectCmp:[{exists:'.cc-type-info[aria-describedby="cookieconsent:desc"] .cc-compliance .cc-btn'}],detectPopup:[{visible:'.cc-type-info[aria-describedby="cookieconsent:desc"] .cc-compliance .cc-btn'}],optIn:[{click:".cc-accept-all",optional:!0},{click:".cc-allow",optional:!0},{click:".cc-dismiss",optional:!0}],optOut:[{if:{exists:".cc-deny"},then:[{click:".cc-deny"}],else:[{hide:'[aria-describedby="cookieconsent:desc"]'}]}]},{name:"Complianz opt-both",prehideSelectors:['[aria-describedby="cookieconsent:desc"] .cc-type-opt-both'],detectCmp:[{exists:'[aria-describedby="cookieconsent:desc"] .cc-type-opt-both'}],detectPopup:[{visible:'[aria-describedby="cookieconsent:desc"] .cc-type-opt-both'}],optIn:[{click:".cc-accept-all",optional:!0},{click:".cc-allow",optional:!0},{click:".cc-dismiss",optional:!0}],optOut:[{waitForThenClick:".cc-deny"}]},{name:"Complianz opt-out",prehideSelectors:['[aria-describedby="cookieconsent:desc"].cc-type-opt-out'],detectCmp:[{exists:'[aria-describedby="cookieconsent:desc"].cc-type-opt-out'}],detectPopup:[{visible:'[aria-describedby="cookieconsent:desc"].cc-type-opt-out'}],optIn:[{click:".cc-accept-all",optional:!0},{click:".cc-allow",optional:!0},{click:".cc-dismiss",optional:!0}],optOut:[{if:{exists:".cc-deny"},then:[{click:".cc-deny"}],else:[{if:{exists:".cmp-pref-link"},then:[{click:".cmp-pref-link"},{waitForThenClick:".cmp-body [id*=rejectAll]"},{waitForThenClick:".cmp-body .cmp-save-btn"}]}]}]},{name:"Complianz optin",prehideSelectors:['.cc-type-opt-in[aria-describedby="cookieconsent:desc"]'],detectCmp:[{exists:'.cc-type-opt-in[aria-describedby="cookieconsent:desc"]'}],detectPopup:[{visible:'.cc-type-opt-in[aria-describedby="cookieconsent:desc"]'}],optIn:[{any:[{click:".cc-accept-all"},{click:".cc-allow"},{click:".cc-dismiss"}]}],optOut:[{if:{visible:".cc-deny"},then:[{click:".cc-deny"}],else:[{if:{visible:".cc-settings"},then:[{waitForThenClick:".cc-settings"},{waitForVisible:".cc-settings-view"},{click:".cc-settings-view input[type=checkbox]:not([disabled]):checked",all:!0,optional:!0},{click:".cc-settings-view .cc-btn-accept-selected"}],else:[{click:".cc-dismiss"}]}]}]},{name:"cookie-law-info",prehideSelectors:["#cookie-law-info-bar"],detectCmp:[{exists:"#cookie-law-info-bar"},{eval:"EVAL_COOKIE_LAW_INFO_DETECT"}],detectPopup:[{visible:"#cookie-law-info-bar"}],optIn:[{click:'[data-cli_action="accept_all"]'}],optOut:[{hide:"#cookie-law-info-bar"},{eval:"EVAL_COOKIE_LAW_INFO_0"}],test:[{eval:"EVAL_COOKIE_LAW_INFO_1"}]},{name:"cookie-manager-popup",cosmetic:!1,runContext:{main:!0,frame:!1},intermediate:!1,detectCmp:[{exists:"#notice-cookie-block #allow-functional-cookies, #notice-cookie-block #btn-cookie-settings"}],detectPopup:[{visible:"#notice-cookie-block"}],optIn:[{click:"#btn-cookie-allow"}],optOut:[{if:{exists:"#allow-functional-cookies"},then:[{click:"#allow-functional-cookies"}],else:[{waitForThenClick:"#btn-cookie-settings"},{waitForVisible:".modal-body"},{click:'.modal-body input:checked, .switch[data-switch="on"]',all:!0,optional:!0},{click:'[role="dialog"] .modal-footer button'}]}],prehideSelectors:["#btn-cookie-settings"],test:[{eval:"EVAL_COOKIE_MANAGER_POPUP_0"}]},{name:"cookie-notice",prehideSelectors:["#cookie-notice"],cosmetic:!0,detectCmp:[{visible:"#cookie-notice .cookie-notice-container"}],detectPopup:[{visible:"#cookie-notice"}],optIn:[{click:"#cn-accept-cookie"}],optOut:[{hide:"#cookie-notice"}]},{name:"cookie-script",vendorUrl:"https://cookie-script.com/",prehideSelectors:["#cookiescript_injected"],detectCmp:[{exists:"#cookiescript_injected"}],detectPopup:[{visible:"#cookiescript_injected"}],optOut:[{if:{exists:"#cookiescript_reject"},then:[{wait:100},{click:"#cookiescript_reject"}],else:[{click:"#cookiescript_manage"},{waitForVisible:".cookiescript_fsd_main"},{waitForThenClick:"#cookiescript_reject"}]}],optIn:[{click:"#cookiescript_accept"}]},{name:"cookieacceptbar",vendorUrl:"https://unknown",cosmetic:!0,prehideSelectors:["#cookieAcceptBar.cookieAcceptBar"],detectCmp:[{exists:"#cookieAcceptBar.cookieAcceptBar"}],detectPopup:[{visible:"#cookieAcceptBar.cookieAcceptBar"}],optIn:[{waitForThenClick:"#cookieAcceptBarConfirm"}],optOut:[{hide:"#cookieAcceptBar.cookieAcceptBar"}]},{name:"cookiealert",intermediate:!1,prehideSelectors:[],runContext:{frame:!0,main:!0},detectCmp:[{exists:".cookie-alert-extended"}],detectPopup:[{visible:".cookie-alert-extended-modal"}],optIn:[{click:"button[data-controller='cookie-alert/extended/button/accept']"},{eval:"EVAL_COOKIEALERT_0"}],optOut:[{click:"a[data-controller='cookie-alert/extended/detail-link']"},{click:".cookie-alert-configuration-input:checked",all:!0,optional:!0},{click:"button[data-controller='cookie-alert/extended/button/configuration']"},{eval:"EVAL_COOKIEALERT_0"}],test:[{eval:"EVAL_COOKIEALERT_2"}]},{name:"cookieconsent2",vendorUrl:"https://www.github.com/orestbida/cookieconsent",comment:"supports v2.x.x of the library",prehideSelectors:["#cc--main"],detectCmp:[{exists:"#cc--main"}],detectPopup:[{visible:"#cm"},{exists:"#s-all-bn"}],optIn:[{waitForThenClick:"#s-all-bn"}],optOut:[{waitForThenClick:"#s-rall-bn"}],test:[{eval:"EVAL_COOKIECONSENT2_TEST"}]},{name:"cookieconsent3",vendorUrl:"https://www.github.com/orestbida/cookieconsent",comment:"supports v3.x.x of the library",prehideSelectors:["#cc-main"],detectCmp:[{exists:"#cc-main"}],detectPopup:[{visible:"#cc-main .cm-wrapper"}],optIn:[{waitForThenClick:".cm__btn[data-role=all]"}],optOut:[{waitForThenClick:".cm__btn[data-role=necessary]"}],test:[{eval:"EVAL_COOKIECONSENT3_TEST"}]},{name:"cookiecuttr",vendorUrl:"https://github.com/cdwharton/cookieCuttr",cosmetic:!1,runContext:{main:!0,frame:!1,urlPattern:""},prehideSelectors:[".cc-cookies"],detectCmp:[{exists:".cc-cookies .cc-cookie-accept"}],detectPopup:[{visible:".cc-cookies .cc-cookie-accept"}],optIn:[{waitForThenClick:".cc-cookies .cc-cookie-accept"}],optOut:[{if:{exists:".cc-cookies .cc-cookie-decline"},then:[{click:".cc-cookies .cc-cookie-decline"}],else:[{hide:".cc-cookies"}]}]},{name:"cookiefirst.com",prehideSelectors:["#cookiefirst-root,.cookiefirst-root,[aria-labelledby=cookie-preference-panel-title]"],detectCmp:[{exists:"#cookiefirst-root,.cookiefirst-root"}],detectPopup:[{visible:"#cookiefirst-root,.cookiefirst-root"}],optIn:[{click:"button[data-cookiefirst-action=accept]"}],optOut:[{if:{exists:"button[data-cookiefirst-action=adjust]"},then:[{click:"button[data-cookiefirst-action=adjust]"},{waitForVisible:"[data-cookiefirst-widget=modal]",timeout:1e3},{eval:"EVAL_COOKIEFIRST_1"},{wait:1e3},{click:"button[data-cookiefirst-action=save]"}],else:[{click:"button[data-cookiefirst-action=reject]"}]}],test:[{eval:"EVAL_COOKIEFIRST_0"}]},{name:"Cookie Information Banner",prehideSelectors:["#cookie-information-template-wrapper"],detectCmp:[{exists:"#cookie-information-template-wrapper"}],detectPopup:[{visible:"#cookie-information-template-wrapper"}],optIn:[{eval:"EVAL_COOKIEINFORMATION_1"}],optOut:[{hide:"#cookie-information-template-wrapper",comment:"some templates don't hide the banner automatically"},{eval:"EVAL_COOKIEINFORMATION_0"}],test:[{eval:"EVAL_COOKIEINFORMATION_2"}]},{name:"cookieyes",prehideSelectors:[".cky-overlay,.cky-consent-container"],detectCmp:[{exists:".cky-consent-container"}],detectPopup:[{visible:".cky-consent-container"}],optIn:[{waitForThenClick:".cky-consent-container [data-cky-tag=accept-button]"}],optOut:[{if:{exists:".cky-consent-container [data-cky-tag=reject-button]"},then:[{waitForThenClick:".cky-consent-container [data-cky-tag=reject-button]"}],else:[{if:{exists:".cky-consent-container [data-cky-tag=settings-button]"},then:[{click:".cky-consent-container [data-cky-tag=settings-button]"},{waitFor:".cky-modal-open input[type=checkbox]"},{click:".cky-modal-open input[type=checkbox]:checked",all:!0,optional:!0},{waitForThenClick:".cky-modal [data-cky-tag=detail-save-button]"}],else:[{hide:".cky-consent-container,.cky-overlay"}]}]}],test:[{eval:"EVAL_COOKIEYES_0"}]},{name:"corona-in-zahlen.de",prehideSelectors:[".cookiealert"],detectCmp:[{exists:".cookiealert"}],detectPopup:[{visible:".cookiealert"}],optOut:[{click:".configurecookies"},{click:".confirmcookies"}],optIn:[{click:".acceptcookies"}]},{name:"crossfit-com",cosmetic:!0,prehideSelectors:['body #modal > div > div[class^="_wrapper_"]'],detectCmp:[{exists:'body #modal > div > div[class^="_wrapper_"]'}],detectPopup:[{visible:'body #modal > div > div[class^="_wrapper_"]'}],optIn:[{click:'button[aria-label="accept cookie policy"]'}],optOut:[{hide:'body #modal > div > div[class^="_wrapper_"]'}]},{name:"csu-landtag-de",runContext:{urlPattern:"^https://(www\\.|)?csu-landtag\\.de"},prehideSelectors:["#cookie-disclaimer"],detectCmp:[{exists:"#cookie-disclaimer"}],detectPopup:[{visible:"#cookie-disclaimer"}],optIn:[{click:"#cookieall"}],optOut:[{click:"#cookiesel"}]},{name:"dailymotion-us",cosmetic:!0,prehideSelectors:['div[class*="CookiePopup__desktopContainer"]:has(div[class*="CookiePopup"])'],detectCmp:[{exists:'div[class*="CookiePopup__desktopContainer"]'}],detectPopup:[{visible:'div[class*="CookiePopup__desktopContainer"]'}],optIn:[{click:'div[class*="CookiePopup__desktopContainer"] > button > span'}],optOut:[{hide:'div[class*="CookiePopup__desktopContainer"]'}]},{name:"dailymotion.com",runContext:{urlPattern:"^https://(www\\.)?dailymotion\\.com/"},prehideSelectors:['div[class*="Overlay__container"]:has(div[class*="TCF2Popup"])'],detectCmp:[{exists:'div[class*="TCF2Popup"]'}],detectPopup:[{visible:'[class*="TCF2Popup"] a[href^="https://www.dailymotion.com/legal/cookiemanagement"]'}],optIn:[{waitForThenClick:'button[class*="TCF2Popup__button"]:not([class*="TCF2Popup__personalize"])'}],optOut:[{waitForThenClick:'button[class*="TCF2ContinueWithoutAcceptingButton"]'}],test:[{eval:"EVAL_DAILYMOTION_0"}]},{name:"dan-com",vendorUrl:"https://unknown",runContext:{main:!0,frame:!1},prehideSelectors:[],detectCmp:[{exists:".cookie-banner.show .cookie-banner__content-all-btn"}],detectPopup:[{visible:".cookie-banner.show .cookie-banner__content-all-btn"}],optIn:[{waitForThenClick:".cookie-banner__content-all-btn"}],optOut:[{waitForThenClick:".cookie-banner__content-essential-btn"}]},{name:"deepl.com",prehideSelectors:[".dl_cookieBanner_container"],detectCmp:[{exists:".dl_cookieBanner_container"}],detectPopup:[{visible:".dl_cookieBanner_container"}],optOut:[{click:".dl_cookieBanner--buttonSelected"}],optIn:[{click:".dl_cookieBanner--buttonAll"}]},{name:"delta.com",runContext:{urlPattern:"^https://www\\.delta\\.com/"},cosmetic:!0,prehideSelectors:["ngc-cookie-banner"],detectCmp:[{exists:"div.cookie-footer-container"}],detectPopup:[{visible:"div.cookie-footer-container"}],optIn:[{click:" button.cookie-close-icon"}],optOut:[{hide:"div.cookie-footer-container"}]},{name:"dmgmedia-us",prehideSelectors:["#mol-ads-cmp-iframe, div.mol-ads-cmp > form > div"],detectCmp:[{exists:"div.mol-ads-cmp > form > div"}],detectPopup:[{waitForVisible:"div.mol-ads-cmp > form > div"}],optIn:[{waitForThenClick:"button.mol-ads-cmp--btn-primary"}],optOut:[{waitForThenClick:"div.mol-ads-ccpa--message > u > a"},{waitForVisible:".mol-ads-cmp--modal-dialog"},{waitForThenClick:"a.mol-ads-cmp-footer-privacy"},{waitForThenClick:"button.mol-ads-cmp--btn-secondary"}]},{name:"dmgmedia",prehideSelectors:['[data-project="mol-fe-cmp"]'],detectCmp:[{exists:'[data-project="mol-fe-cmp"] [class*=footer]'}],detectPopup:[{visible:'[data-project="mol-fe-cmp"] [class*=footer]'}],optIn:[{waitForThenClick:'[data-project="mol-fe-cmp"] button[class*=primary]'}],optOut:[{waitForThenClick:'[data-project="mol-fe-cmp"] button[class*=basic]'},{waitForVisible:'[data-project="mol-fe-cmp"] div[class*="tabContent"]'},{waitForThenClick:'[data-project="mol-fe-cmp"] div[class*="toggle"][class*="enabled"]',all:!0},{waitForThenClick:['[data-project="mol-fe-cmp"] [class*=footer]',"xpath///button[contains(., 'Save & Exit')]"]}]},{name:"dndbeyond",vendorUrl:"https://www.dndbeyond.com/",runContext:{urlPattern:"^https://(www\\.)?dndbeyond\\.com/"},prehideSelectors:["[id^=cookie-consent-banner]"],detectCmp:[{exists:"[id^=cookie-consent-banner]"}],detectPopup:[{visible:"[id^=cookie-consent-banner]"}],optIn:[{waitForThenClick:"#cookie-consent-granted"}],optOut:[{waitForThenClick:"#cookie-consent-denied"}],test:[{eval:"EVAL_DNDBEYOND_TEST"}]},{name:"dpgmedia-nl",prehideSelectors:["#pg-shadow-host"],detectCmp:[{exists:"#pg-shadow-host"}],detectPopup:[{visible:["#pg-shadow-host","#pg-modal"]}],optIn:[{waitForThenClick:["#pg-shadow-host","#pg-accept-btn"]}],optOut:[{waitForThenClick:["#pg-shadow-host","#pg-configure-btn"]},{waitForThenClick:["#pg-shadow-host","#pg-reject-btn"]}]},{name:"Drupal",detectCmp:[{exists:"#drupalorg-crosssite-gdpr"}],detectPopup:[{visible:"#drupalorg-crosssite-gdpr"}],optOut:[{click:".no"}],optIn:[{click:".yes"}]},{name:"WP DSGVO Tools",link:"https://wordpress.org/plugins/shapepress-dsgvo/",prehideSelectors:[".sp-dsgvo"],cosmetic:!0,detectCmp:[{exists:".sp-dsgvo.sp-dsgvo-popup-overlay"}],detectPopup:[{visible:".sp-dsgvo.sp-dsgvo-popup-overlay",check:"any"}],optIn:[{click:".sp-dsgvo-privacy-btn-accept-all",all:!0}],optOut:[{hide:".sp-dsgvo.sp-dsgvo-popup-overlay"}],test:[{eval:"EVAL_DSGVO_0"}]},{name:"dunelm.com",prehideSelectors:["div[data-testid=cookie-consent-modal-backdrop]"],detectCmp:[{exists:"div[data-testid=cookie-consent-message-contents]"}],detectPopup:[{visible:"div[data-testid=cookie-consent-message-contents]"}],optIn:[{click:'[data-testid="cookie-consent-allow-all"]'}],optOut:[{click:"button[data-testid=cookie-consent-adjust-settings]"},{click:"button[data-testid=cookie-consent-preferences-save]"}],test:[{eval:"EVAL_DUNELM_0"}]},{name:"ebay",vendorUrl:"https://ebay.com",cosmetic:!1,runContext:{main:!0,frame:!1,urlPattern:"^https://(www\\.)?ebay\\.([.a-z]+)/"},prehideSelectors:["#gdpr-banner"],detectCmp:[{exists:"#gdpr-banner"}],detectPopup:[{visible:"#gdpr-banner"}],optIn:[{waitForThenClick:"#gdpr-banner-accept"}],optOut:[{waitForThenClick:"#gdpr-banner-decline"}]},{name:"ecosia",vendorUrl:"https://www.ecosia.org/",runContext:{urlPattern:"^https://www\\.ecosia\\.org/"},prehideSelectors:[".cookie-wrapper"],detectCmp:[{exists:".cookie-wrapper > .cookie-notice"}],detectPopup:[{visible:".cookie-wrapper > .cookie-notice"}],optIn:[{waitForThenClick:"[data-test-id=cookie-notice-accept]"}],optOut:[{waitForThenClick:"[data-test-id=cookie-notice-reject]"}]},{name:"Ensighten ensModal",prehideSelectors:[".ensModal"],detectCmp:[{exists:".ensModal"}],detectPopup:[{visible:"#ensModalWrapper[style*=block]"}],optIn:[{waitForThenClick:"#modalAcceptButton"}],optOut:[{wait:500},{visible:"#ensModalWrapper[style*=block]"},{waitForThenClick:".ensCheckbox:checked",all:!0},{waitForThenClick:"#ensSave"}]},{name:"Ensighten ensNotifyBanner",prehideSelectors:["#ensNotifyBanner"],detectCmp:[{exists:"#ensNotifyBanner"}],detectPopup:[{visible:"#ensNotifyBanner[style*=block]"}],optIn:[{waitForThenClick:"#ensCloseBanner"}],optOut:[{wait:500},{visible:"#ensNotifyBanner[style*=block]"},{waitForThenClick:"#ensRejectAll,#rejectAll,#ensRejectBanner,.rejectAll,#ensCloseBanner",timeout:2e3}]},{name:"espace-personnel.agirc-arrco.fr",runContext:{urlPattern:"^https://espace-personnel\\.agirc-arrco\\.fr/"},prehideSelectors:[".cdk-overlay-container"],detectCmp:[{exists:".cdk-overlay-container app-esaa-cookie-component"}],detectPopup:[{visible:".cdk-overlay-container app-esaa-cookie-component"}],optIn:[{waitForThenClick:".btn-cookie-accepter"}],optOut:[{waitForThenClick:".btn-cookie-refuser"}]},{name:"etsy",prehideSelectors:["#gdpr-single-choice-overlay","#gdpr-privacy-settings"],detectCmp:[{exists:"#gdpr-single-choice-overlay"}],detectPopup:[{visible:"#gdpr-single-choice-overlay"}],optOut:[{click:"button[data-gdpr-open-full-settings]"},{waitForVisible:".gdpr-overlay-body input",timeout:3e3},{wait:1e3},{eval:"EVAL_ETSY_0"},{eval:"EVAL_ETSY_1"}],optIn:[{click:"button[data-gdpr-single-choice-accept]"}]},{name:"eu-cookie-compliance-banner",detectCmp:[{exists:"body.eu-cookie-compliance-popup-open"}],detectPopup:[{exists:"body.eu-cookie-compliance-popup-open"}],optIn:[{click:".agree-button"}],optOut:[{if:{visible:".decline-button,.eu-cookie-compliance-save-preferences-button"},then:[{click:".decline-button,.eu-cookie-compliance-save-preferences-button"}]},{hide:".eu-cookie-compliance-banner-info, #sliding-popup"}],test:[{eval:"EVAL_EU_COOKIE_COMPLIANCE_0"}]},{name:"EU Cookie Law",prehideSelectors:[".pea_cook_wrapper,.pea_cook_more_info_popover"],cosmetic:!0,detectCmp:[{exists:".pea_cook_wrapper"}],detectPopup:[{wait:500},{visible:".pea_cook_wrapper"}],optIn:[{click:"#pea_cook_btn"}],optOut:[{hide:".pea_cook_wrapper"}],test:[{eval:"EVAL_EU_COOKIE_LAW_0"}]},{name:"europa-eu",vendorUrl:"https://ec.europa.eu/",runContext:{urlPattern:"^https://[^/]*europa\\.eu/"},prehideSelectors:["#cookie-consent-banner"],detectCmp:[{exists:".cck-container"}],detectPopup:[{visible:".cck-container"}],optIn:[{waitForThenClick:'.cck-actions-button[href="#accept"]'}],optOut:[{waitForThenClick:'.cck-actions-button[href="#refuse"]',hide:".cck-container"}]},{name:"EZoic",prehideSelectors:["#ez-cookie-dialog-wrapper"],detectCmp:[{exists:"#ez-cookie-dialog-wrapper"}],detectPopup:[{visible:"#ez-cookie-dialog-wrapper"}],optIn:[{click:"#ez-accept-all",optional:!0},{eval:"EVAL_EZOIC_0",optional:!0}],optOut:[{wait:500},{click:"#ez-manage-settings"},{waitFor:"#ez-cookie-dialog input[type=checkbox]"},{click:"#ez-cookie-dialog input[type=checkbox]:checked",all:!0},{click:"#ez-save-settings"}],test:[{eval:"EVAL_EZOIC_1"}]},{name:"facebook",runContext:{urlPattern:"^https://([a-z0-9-]+\\.)?facebook\\.com/"},prehideSelectors:['div[data-testid="cookie-policy-manage-dialog"]'],detectCmp:[{exists:'div[data-testid="cookie-policy-manage-dialog"]'}],detectPopup:[{visible:'div[data-testid="cookie-policy-manage-dialog"]'}],optIn:[{waitForThenClick:'button[data-cookiebanner="accept_button"]'},{waitForVisible:'div[data-testid="cookie-policy-manage-dialog"]',check:"none"}],optOut:[{waitForThenClick:'button[data-cookiebanner="accept_only_essential_button"]'},{waitForVisible:'div[data-testid="cookie-policy-manage-dialog"]',check:"none"}]},{name:"fides",vendorUrl:"https://github.com/ethyca/fides",prehideSelectors:["#fides-overlay"],detectCmp:[{exists:"#fides-overlay #fides-banner"}],detectPopup:[{visible:"#fides-overlay #fides-banner"},{eval:"EVAL_FIDES_DETECT_POPUP"}],optIn:[{waitForThenClick:"#fides-banner .fides-accept-all-button"}],optOut:[{waitForThenClick:"#fides-banner .fides-reject-all-button"}]},{name:"funding-choices",prehideSelectors:[".fc-consent-root,.fc-dialog-container,.fc-dialog-overlay,.fc-dialog-content"],detectCmp:[{exists:".fc-consent-root"}],detectPopup:[{exists:".fc-dialog-container"}],optOut:[{click:".fc-cta-do-not-consent,.fc-cta-manage-options"},{click:".fc-preference-consent:checked,.fc-preference-legitimate-interest:checked",all:!0,optional:!0},{click:".fc-confirm-choices",optional:!0}],optIn:[{click:".fc-cta-consent"}]},{name:"geeks-for-geeks",runContext:{urlPattern:"^https://www\\.geeksforgeeks\\.org/"},cosmetic:!0,prehideSelectors:[".cookie-consent"],detectCmp:[{exists:".cookie-consent"}],detectPopup:[{visible:".cookie-consent"}],optIn:[{click:".cookie-consent button.consent-btn"}],optOut:[{hide:".cookie-consent"}]},{name:"google-consent-standalone",prehideSelectors:[],detectCmp:[{exists:'a[href^="https://policies.google.com/technologies/cookies"'},{exists:'form[action^="https://consent.google."][action$=".com/save"]'}],detectPopup:[{visible:'a[href^="https://policies.google.com/technologies/cookies"'}],optIn:[{waitForThenClick:'form[action^="https://consent.google."][action$=".com/save"]:has(input[name=set_eom][value=false]) button'}],optOut:[{waitForThenClick:'form[action^="https://consent.google."][action$=".com/save"]:has(input[name=set_eom][value=true]) button'}]},{name:"google.com",prehideSelectors:[".HTjtHe#xe7COe"],detectCmp:[{exists:".HTjtHe#xe7COe"},{exists:'.HTjtHe#xe7COe a[href^="https://policies.google.com/technologies/cookies"]'}],detectPopup:[{visible:".HTjtHe#xe7COe button#W0wltc"}],optIn:[{waitForThenClick:".HTjtHe#xe7COe button#L2AGLb"}],optOut:[{waitForThenClick:".HTjtHe#xe7COe button#W0wltc"}],test:[{eval:"EVAL_GOOGLE_0"}]},{name:"gov.uk",detectCmp:[{exists:"#global-cookie-message"}],detectPopup:[{exists:"#global-cookie-message"}],optIn:[{click:"button[data-accept-cookies=true]"}],optOut:[{click:"button[data-reject-cookies=true],#reject-cookies"},{click:"button[data-hide-cookie-banner=true],#hide-cookie-decision"}]},{name:"hashicorp",vendorUrl:"https://hashicorp.com/",runContext:{urlPattern:"^https://[^.]*\\.hashicorp\\.com/"},prehideSelectors:["[data-testid=consent-banner]"],detectCmp:[{exists:"[data-testid=consent-banner]"}],detectPopup:[{visible:"[data-testid=consent-banner]"}],optIn:[{waitForThenClick:"[data-testid=accept]"}],optOut:[{waitForThenClick:"[data-testid=manage-preferences]"},{waitForThenClick:"[data-testid=consent-mgr-dialog] [data-ga-button=save-preferences]"}]},{name:"healthline-media",prehideSelectors:["#modal-host > div.no-hash > div.window-wrapper"],detectCmp:[{exists:"#modal-host > div.no-hash > div.window-wrapper, div[data-testid=qualtrics-container]"}],detectPopup:[{exists:"#modal-host > div.no-hash > div.window-wrapper, div[data-testid=qualtrics-container]"}],optIn:[{click:"#modal-host > div.no-hash > div.window-wrapper > div:last-child button"}],optOut:[{if:{exists:'#modal-host > div.no-hash > div.window-wrapper > div:last-child a[href="/privacy-settings"]'},then:[{click:'#modal-host > div.no-hash > div.window-wrapper > div:last-child a[href="/privacy-settings"]'}],else:[{waitForVisible:"div#__next"},{click:"#__next div:nth-child(1) > button:first-child"}]}]},{name:"hema",prehideSelectors:[".cookie-modal"],detectCmp:[{visible:".cookie-modal .cookie-accept-btn"}],detectPopup:[{visible:".cookie-modal .cookie-accept-btn"}],optIn:[{waitForThenClick:".cookie-modal .cookie-accept-btn"}],optOut:[{waitForThenClick:".cookie-modal .js-cookie-reject-btn"}],test:[{eval:"EVAL_HEMA_TEST_0"}]},{name:"hetzner.com",runContext:{urlPattern:"^https://www\\.hetzner\\.com/"},prehideSelectors:["#CookieConsent"],detectCmp:[{exists:"#CookieConsent"}],detectPopup:[{visible:"#CookieConsent"}],optIn:[{click:"#CookieConsentGiven"}],optOut:[{click:"#CookieConsentDeclined"}]},{name:"hl.co.uk",prehideSelectors:[".cookieModalContent","#cookie-banner-overlay"],detectCmp:[{exists:"#cookie-banner-overlay"}],detectPopup:[{exists:"#cookie-banner-overlay"}],optIn:[{click:"#acceptCookieButton"}],optOut:[{click:"#manageCookie"},{hide:".cookieSettingsModal"},{waitFor:"#AOCookieToggle"},{click:"#AOCookieToggle[aria-pressed=true]",optional:!0},{waitFor:"#TPCookieToggle"},{click:"#TPCookieToggle[aria-pressed=true]",optional:!0},{click:"#updateCookieButton"}]},{name:"holidaymedia",vendorUrl:"https://holidaymedia.nl/",prehideSelectors:["dialog[data-cookie-consent]"],detectCmp:[{exists:"dialog[data-cookie-consent]"}],detectPopup:[{visible:"dialog[data-cookie-consent]"}],optIn:[{waitForThenClick:"button.cookie-consent__button--accept-all"}],optOut:[{waitForThenClick:'a[data-cookie-accept="functional"]',timeout:2e3}]},{name:"hu-manity",vendorUrl:"https://hu-manity.co/",prehideSelectors:["#hu.hu-wrapper"],detectCmp:[{exists:"#hu.hu-visible"}],detectPopup:[{visible:"#hu.hu-visible"}],optIn:[{waitForThenClick:"[data-hu-action=cookies-notice-consent-choices-3]"},{waitForThenClick:"#hu-cookies-save"}],optOut:[{waitForThenClick:"#hu-cookies-save"}]},{name:"hubspot",detectCmp:[{exists:"#hs-eu-cookie-confirmation"}],detectPopup:[{visible:"#hs-eu-cookie-confirmation"}],optIn:[{click:"#hs-eu-confirmation-button"}],optOut:[{click:"#hs-eu-decline-button"}]},{name:"indeed.com",cosmetic:!0,prehideSelectors:["#CookiePrivacyNotice"],detectCmp:[{exists:"#CookiePrivacyNotice"}],detectPopup:[{visible:"#CookiePrivacyNotice"}],optIn:[{click:"#CookiePrivacyNotice button[data-gnav-element-name=CookiePrivacyNoticeOk]"}],optOut:[{hide:"#CookiePrivacyNotice"}]},{name:"ing.de",runContext:{urlPattern:"^https://www\\.ing\\.de/"},cosmetic:!0,prehideSelectors:['div[slot="backdrop"]'],detectCmp:[{exists:'[data-tag-name="ing-cc-dialog-frame"]'}],detectPopup:[{visible:'[data-tag-name="ing-cc-dialog-frame"]'}],optIn:[{click:['[data-tag-name="ing-cc-dialog-level0"]','[data-tag-name="ing-cc-button"][class*="accept"]']}],optOut:[{click:['[data-tag-name="ing-cc-dialog-level0"]','[data-tag-name="ing-cc-button"][class*="more"]']}]},{name:"instagram",vendorUrl:"https://instagram.com",runContext:{urlPattern:"^https://www\\.instagram\\.com/"},prehideSelectors:[],detectCmp:[{exists:'xpath///span[contains(., "Vill du tillåta användningen av cookies från Instagram i den här webbläsaren?") or contains(., "Allow the use of cookies from Instagram on this browser?") or contains(., "Povolit v prohlížeči použití souborů cookie z Instagramu?") or contains(., "Dopustiti upotrebu kolačića s Instagrama na ovom pregledniku?") or contains(., "Разрешить использование файлов cookie от Instagram в этом браузере?") or contains(., "Vuoi consentire l\'uso dei cookie di Instagram su questo browser?") or contains(., "Povoliť používanie cookies zo služby Instagram v tomto prehliadači?") or contains(., "Die Verwendung von Cookies durch Instagram in diesem Browser erlauben?") or contains(., "Sallitaanko Instagramin evästeiden käyttö tällä selaimella?") or contains(., "Engedélyezed az Instagram cookie-jainak használatát ebben a böngészőben?") or contains(., "Het gebruik van cookies van Instagram toestaan in deze browser?") or contains(., "Bu tarayıcıda Instagram\'dan çerez kullanımına izin verilsin mi?") or contains(., "Permitir o uso de cookies do Instagram neste navegador?") or contains(., "Permiţi folosirea modulelor cookie de la Instagram în acest browser?") or contains(., "Autoriser l’utilisation des cookies d’Instagram sur ce navigateur ?") or contains(., "¿Permitir el uso de cookies de Instagram en este navegador?") or contains(., "Zezwolić na użycie plików cookie z Instagramu w tej przeglądarce?") or contains(., "Να επιτρέπεται η χρήση cookies από τo Instagram σε αυτό το πρόγραμμα περιήγησης;") or contains(., "Разрешавате ли използването на бисквитки от Instagram на този браузър?") or contains(., "Vil du tillade brugen af cookies fra Instagram i denne browser?") or contains(., "Vil du tillate bruk av informasjonskapsler fra Instagram i denne nettleseren?")]'}],detectPopup:[{visible:'xpath///span[contains(., "Vill du tillåta användningen av cookies från Instagram i den här webbläsaren?") or contains(., "Allow the use of cookies from Instagram on this browser?") or contains(., "Povolit v prohlížeči použití souborů cookie z Instagramu?") or contains(., "Dopustiti upotrebu kolačića s Instagrama na ovom pregledniku?") or contains(., "Разрешить использование файлов cookie от Instagram в этом браузере?") or contains(., "Vuoi consentire l\'uso dei cookie di Instagram su questo browser?") or contains(., "Povoliť používanie cookies zo služby Instagram v tomto prehliadači?") or contains(., "Die Verwendung von Cookies durch Instagram in diesem Browser erlauben?") or contains(., "Sallitaanko Instagramin evästeiden käyttö tällä selaimella?") or contains(., "Engedélyezed az Instagram cookie-jainak használatát ebben a böngészőben?") or contains(., "Het gebruik van cookies van Instagram toestaan in deze browser?") or contains(., "Bu tarayıcıda Instagram\'dan çerez kullanımına izin verilsin mi?") or contains(., "Permitir o uso de cookies do Instagram neste navegador?") or contains(., "Permiţi folosirea modulelor cookie de la Instagram în acest browser?") or contains(., "Autoriser l’utilisation des cookies d’Instagram sur ce navigateur ?") or contains(., "¿Permitir el uso de cookies de Instagram en este navegador?") or contains(., "Zezwolić na użycie plików cookie z Instagramu w tej przeglądarce?") or contains(., "Να επιτρέπεται η χρήση cookies από τo Instagram σε αυτό το πρόγραμμα περιήγησης;") or contains(., "Разрешавате ли използването на бисквитки от Instagram на този браузър?") or contains(., "Vil du tillade brugen af cookies fra Instagram i denne browser?") or contains(., "Vil du tillate bruk av informasjonskapsler fra Instagram i denne nettleseren?")]'}],optIn:[{waitForThenClick:"xpath///button[contains(., 'Tillad alle cookies') or contains(., 'Alle Cookies erlauben') or contains(., 'Allow all cookies') or contains(., 'Разрешаване на всички бисквитки') or contains(., 'Tillåt alla cookies') or contains(., 'Povolit všechny soubory cookie') or contains(., 'Tüm çerezlere izin ver') or contains(., 'Permite toate modulele cookie') or contains(., 'Να επιτρέπονται όλα τα cookies') or contains(., 'Tillat alle informasjonskapsler') or contains(., 'Povoliť všetky cookies') or contains(., 'Permitir todas las cookies') or contains(., 'Permitir todos os cookies') or contains(., 'Alle cookies toestaan') or contains(., 'Salli kaikki evästeet') or contains(., 'Consenti tutti i cookie') or contains(., 'Az összes cookie engedélyezése') or contains(., 'Autoriser tous les cookies') or contains(., 'Zezwól na wszystkie pliki cookie') or contains(., 'Разрешить все cookie') or contains(., 'Dopusti sve kolačiće')]"}],optOut:[{waitForThenClick:"xpath///button[contains(., 'Отклонить необязательные файлы cookie') or contains(., 'Decline optional cookies') or contains(., 'Refuser les cookies optionnels') or contains(., 'Hylkää valinnaiset evästeet') or contains(., 'Afvis valgfrie cookies') or contains(., 'Odmietnuť nepovinné cookies') or contains(., 'Απόρριψη προαιρετικών cookies') or contains(., 'Neka valfria cookies') or contains(., 'Optionale Cookies ablehnen') or contains(., 'Rifiuta cookie facoltativi') or contains(., 'Odbij neobavezne kolačiće') or contains(., 'Avvis valgfrie informasjonskapsler') or contains(., 'İsteğe bağlı çerezleri reddet') or contains(., 'Recusar cookies opcionais') or contains(., 'Optionele cookies afwijzen') or contains(., 'Rechazar cookies opcionales') or contains(., 'Odrzuć opcjonalne pliki cookie') or contains(., 'Отхвърляне на бисквитките по избор') or contains(., 'Odmítnout volitelné soubory cookie') or contains(., 'Refuză modulele cookie opţionale') or contains(., 'A nem kötelező cookie-k elutasítása')]"},{wait:2e3}]},{name:"ionos.de",prehideSelectors:[".privacy-consent--backdrop",".privacy-consent--modal"],detectCmp:[{exists:".privacy-consent--modal"}],detectPopup:[{visible:".privacy-consent--modal"}],optIn:[{click:"#selectAll"}],optOut:[{click:".footer-config-link"},{click:"#confirmSelection"}]},{name:"itopvpn.com",cosmetic:!0,prehideSelectors:[".pop-cookie"],detectCmp:[{exists:".pop-cookie"}],detectPopup:[{exists:".pop-cookie"}],optIn:[{click:"#_pcookie"}],optOut:[{hide:".pop-cookie"}]},{name:"iubenda",prehideSelectors:["#iubenda-cs-banner"],detectCmp:[{exists:"#iubenda-cs-banner"}],detectPopup:[{visible:".iubenda-cs-accept-btn"}],optIn:[{waitForThenClick:".iubenda-cs-accept-btn"}],optOut:[{waitForThenClick:".iubenda-cs-customize-btn"},{eval:"EVAL_IUBENDA_0"},{waitForThenClick:"#iubFooterBtn"}],test:[{eval:"EVAL_IUBENDA_1"}]},{name:"iWink",prehideSelectors:["body.cookies-request #cookie-bar"],detectCmp:[{exists:"body.cookies-request #cookie-bar"}],detectPopup:[{visible:"body.cookies-request #cookie-bar"}],optIn:[{waitForThenClick:"body.cookies-request #cookie-bar .allow-cookies"}],optOut:[{waitForThenClick:"body.cookies-request #cookie-bar .disallow-cookies"}],test:[{eval:"EVAL_IWINK_TEST"}]},{name:"jdsports",vendorUrl:"https://www.jdsports.co.uk/",runContext:{urlPattern:"^https://(www|m)\\.jdsports\\."},prehideSelectors:[".miniConsent,#PrivacyPolicyBanner"],detectCmp:[{exists:".miniConsent,#PrivacyPolicyBanner"}],detectPopup:[{visible:".miniConsent,#PrivacyPolicyBanner"}],optIn:[{waitForThenClick:".miniConsent .accept-all-cookies"}],optOut:[{if:{exists:"#PrivacyPolicyBanner"},then:[{hide:"#PrivacyPolicyBanner"}],else:[{waitForThenClick:"#cookie-settings"},{waitForThenClick:"#reject-all-cookies"}]}]},{name:"johnlewis.com",prehideSelectors:["div[class^=pecr-cookie-banner-]"],detectCmp:[{exists:"div[class^=pecr-cookie-banner-]"}],detectPopup:[{exists:"div[class^=pecr-cookie-banner-]"}],optOut:[{click:"button[data-test^=manage-cookies]"},{wait:"500"},{click:"label[data-test^=toggle][class*=checked]:not([class*=disabled])",all:!0,optional:!0},{click:"button[data-test=save-preferences]"}],optIn:[{click:"button[data-test=allow-all]"}]},{name:"jquery.cookieBar",vendorUrl:"https://github.com/kovarp/jquery.cookieBar",prehideSelectors:[".cookie-bar"],cosmetic:!0,detectCmp:[{exists:".cookie-bar .cookie-bar__message,.cookie-bar .cookie-bar__buttons"}],detectPopup:[{visible:".cookie-bar .cookie-bar__message,.cookie-bar .cookie-bar__buttons",check:"any"}],optIn:[{click:".cookie-bar .cookie-bar__btn"}],optOut:[{hide:".cookie-bar"}],test:[{visible:".cookie-bar .cookie-bar__message,.cookie-bar .cookie-bar__buttons",check:"none"},{eval:"EVAL_JQUERY_COOKIEBAR_0"}]},{name:"justwatch.com",prehideSelectors:[".consent-banner"],detectCmp:[{exists:".consent-banner .consent-banner__actions"}],detectPopup:[{visible:".consent-banner .consent-banner__actions"}],optIn:[{click:".consent-banner__actions button.basic-button.primary"}],optOut:[{click:".consent-banner__actions button.basic-button.secondary"},{waitForThenClick:".consent-modal__footer button.basic-button.secondary"},{waitForThenClick:".consent-modal ion-content > div > a:nth-child(9)"},{click:"label.consent-switch input[type=checkbox]:checked",all:!0,optional:!0},{waitForVisible:".consent-modal__footer button.basic-button.primary"},{click:".consent-modal__footer button.basic-button.primary"}]},{name:"ketch",vendorUrl:"https://www.ketch.com",runContext:{frame:!1,main:!0},intermediate:!1,prehideSelectors:["#lanyard_root div[role='dialog']"],detectCmp:[{exists:"#lanyard_root div[role='dialog']"}],detectPopup:[{visible:"#lanyard_root div[role='dialog']"}],optIn:[{if:{exists:"#lanyard_root button[class='confirmButton']"},then:[{waitForThenClick:"#lanyard_root div[class*=buttons] > :nth-child(2)"},{click:"#lanyard_root button[class='confirmButton']"}],else:[{waitForThenClick:"#lanyard_root div[class*=buttons] > :nth-child(2)"}]}],optOut:[{if:{exists:"#lanyard_root [aria-describedby=banner-description]"},then:[{waitForThenClick:"#lanyard_root div[class*=buttons] > button[class*=secondaryButton], #lanyard_root button[class*=buttons-secondary]",comment:"can be either settings or reject button"}]},{waitFor:"#lanyard_root [aria-describedby=preference-description],#lanyard_root [aria-describedby=modal-description], #ketch-preferences",timeout:1e3,optional:!0},{if:{exists:"#lanyard_root [aria-describedby=preference-description],#lanyard_root [aria-describedby=modal-description], #ketch-preferences"},then:[{waitForThenClick:"#lanyard_root button[class*=rejectButton], #lanyard_root button[class*=rejectAllButton]"},{click:"#lanyard_root button[class*=confirmButton],#lanyard_root div[class*=actions_] > button:nth-child(1), #lanyard_root button[class*=actionButton]"}]}],test:[{eval:"EVAL_KETCH_TEST"}]},{name:"kleinanzeigen-de",runContext:{urlPattern:"^https?://(www\\.)?kleinanzeigen\\.de"},prehideSelectors:["#gdpr-banner-container"],detectCmp:[{any:[{exists:"#gdpr-banner-container #gdpr-banner [data-testid=gdpr-banner-cmp-button]"},{exists:"#ConsentManagementPage"}]}],detectPopup:[{any:[{visible:"#gdpr-banner-container #gdpr-banner [data-testid=gdpr-banner-cmp-button]"},{visible:"#ConsentManagementPage"}]}],optIn:[{if:{exists:"#gdpr-banner-container #gdpr-banner"},then:[{click:"#gdpr-banner-container #gdpr-banner [data-testid=gdpr-banner-accept]"}],else:[{click:"#ConsentManagementPage .Button-primary"}]}],optOut:[{if:{exists:"#gdpr-banner-container #gdpr-banner"},then:[{click:"#gdpr-banner-container #gdpr-banner [data-testid=gdpr-banner-cmp-button]"}],else:[{click:"#ConsentManagementPage .Button-secondary"}]}]},{name:"lightbox",prehideSelectors:[".darken-layer.open,.lightbox.lightbox--cookie-consent"],detectCmp:[{exists:"body.cookie-consent-is-active div.lightbox--cookie-consent > div.lightbox__content > div.cookie-consent[data-jsb]"}],detectPopup:[{visible:"body.cookie-consent-is-active div.lightbox--cookie-consent > div.lightbox__content > div.cookie-consent[data-jsb]"}],optOut:[{click:".cookie-consent__footer > button[type='submit']:not([data-button='selectAll'])"}],optIn:[{click:".cookie-consent__footer > button[type='submit'][data-button='selectAll']"}]},{name:"lineagrafica",vendorUrl:"https://addons.prestashop.com/en/legal/8734-eu-cookie-law-gdpr-banner-blocker.html",cosmetic:!0,prehideSelectors:["#lgcookieslaw_banner,#lgcookieslaw_modal,.lgcookieslaw-overlay"],detectCmp:[{exists:"#lgcookieslaw_banner,#lgcookieslaw_modal,.lgcookieslaw-overlay"}],detectPopup:[{exists:"#lgcookieslaw_banner,#lgcookieslaw_modal,.lgcookieslaw-overlay"}],optIn:[{waitForThenClick:"#lgcookieslaw_accept"}],optOut:[{hide:"#lgcookieslaw_banner,#lgcookieslaw_modal,.lgcookieslaw-overlay"}]},{name:"linkedin.com",prehideSelectors:[".artdeco-global-alert[type=COOKIE_CONSENT]"],detectCmp:[{exists:".artdeco-global-alert[type=COOKIE_CONSENT]"}],detectPopup:[{visible:".artdeco-global-alert[type=COOKIE_CONSENT]"}],optIn:[{waitForVisible:".artdeco-global-alert[type=COOKIE_CONSENT] button[action-type=ACCEPT]"},{wait:500},{waitForThenClick:".artdeco-global-alert[type=COOKIE_CONSENT] button[action-type=ACCEPT]"}],optOut:[{waitForVisible:".artdeco-global-alert[type=COOKIE_CONSENT] button[action-type=DENY]"},{wait:500},{waitForThenClick:".artdeco-global-alert[type=COOKIE_CONSENT] button[action-type=DENY]"}],test:[{waitForVisible:".artdeco-global-alert[type=COOKIE_CONSENT]",check:"none"}]},{name:"livejasmin",vendorUrl:"https://www.livejasmin.com/",runContext:{urlPattern:"^https://(m|www)\\.livejasmin\\.com/"},prehideSelectors:["#consent_modal"],detectCmp:[{exists:"#consent_modal"}],detectPopup:[{visible:"#consent_modal"}],optIn:[{waitForThenClick:"#consent_modal button[data-testid=ButtonStyledButton]:first-of-type"}],optOut:[{waitForThenClick:"#consent_modal button[data-testid=ButtonStyledButton]:nth-of-type(2)"},{waitForVisible:"[data-testid=PrivacyPreferenceCenterWithConsentCookieContent]"},{click:"[data-testid=PrivacyPreferenceCenterWithConsentCookieContent] input[data-testid=PrivacyPreferenceCenterWithConsentCookieSwitch]:checked",optional:!0,all:!0},{waitForThenClick:"[data-testid=PrivacyPreferenceCenterWithConsentCookieContent] button[data-testid=ButtonStyledButton]:last-child"}]},{name:"macpaw.com",cosmetic:!0,prehideSelectors:['div[data-banner="cookies"]'],detectCmp:[{exists:'div[data-banner="cookies"]'}],detectPopup:[{exists:'div[data-banner="cookies"]'}],optIn:[{click:'button[data-banner-close="cookies"]'}],optOut:[{hide:'div[data-banner="cookies"]'}]},{name:"marksandspencer.com",cosmetic:!0,detectCmp:[{exists:".navigation-cookiebbanner"}],detectPopup:[{visible:".navigation-cookiebbanner"}],optOut:[{hide:".navigation-cookiebbanner"}],optIn:[{click:".navigation-cookiebbanner__submit"}]},{name:"mediamarkt.de",prehideSelectors:["div[aria-labelledby=pwa-consent-layer-title]","div[class^=StyledConsentLayerWrapper-]"],detectCmp:[{exists:"div[aria-labelledby^=pwa-consent-layer-title]"}],detectPopup:[{exists:"div[aria-labelledby^=pwa-consent-layer-title]"}],optOut:[{click:"button[data-test^=pwa-consent-layer-deny-all]"}],optIn:[{click:"button[data-test^=pwa-consent-layer-accept-all"}]},{name:"Mediavine",prehideSelectors:['[data-name="mediavine-gdpr-cmp"]'],detectCmp:[{exists:'[data-name="mediavine-gdpr-cmp"]'}],detectPopup:[{wait:500},{visible:'[data-name="mediavine-gdpr-cmp"]'}],optIn:[{waitForThenClick:'[data-name="mediavine-gdpr-cmp"] [format="primary"]'}],optOut:[{waitForThenClick:'[data-name="mediavine-gdpr-cmp"] [data-view="manageSettings"]'},{waitFor:'[data-name="mediavine-gdpr-cmp"] input[type=checkbox]'},{eval:"EVAL_MEDIAVINE_0",optional:!0},{click:'[data-name="mediavine-gdpr-cmp"] [format="secondary"]'}]},{name:"medium",vendorUrl:"https://medium.com",cosmetic:!0,runContext:{main:!0,frame:!1,urlPattern:"^https://([a-z0-9-]+\\.)?medium\\.com/"},prehideSelectors:[],detectCmp:[{exists:'div:has(> div > div > div[role=alert] > a[href^="https://policy.medium.com/medium-privacy-policy-"])'}],detectPopup:[{visible:'div:has(> div > div > div[role=alert] > a[href^="https://policy.medium.com/medium-privacy-policy-"])'}],optIn:[{waitForThenClick:"[data-testid=close-button]"}],optOut:[{hide:'div:has(> div > div > div[role=alert] > a[href^="https://policy.medium.com/medium-privacy-policy-"])'}]},{name:"microsoft.com",prehideSelectors:["#wcpConsentBannerCtrl"],detectCmp:[{exists:"#wcpConsentBannerCtrl"}],detectPopup:[{exists:"#wcpConsentBannerCtrl"}],optOut:[{eval:"EVAL_MICROSOFT_0"}],optIn:[{eval:"EVAL_MICROSOFT_1"}],test:[{eval:"EVAL_MICROSOFT_2"}]},{name:"midway-usa",runContext:{urlPattern:"^https://www\\.midwayusa\\.com/"},cosmetic:!0,prehideSelectors:["#cookie-container"],detectCmp:[{exists:['div[aria-label="Cookie Policy Banner"]']}],detectPopup:[{visible:"#cookie-container"}],optIn:[{click:"button#cookie-btn"}],optOut:[{hide:'div[aria-label="Cookie Policy Banner"]'}]},{name:"moneysavingexpert.com",detectCmp:[{exists:"dialog[data-testid=accept-our-cookies-dialog]"}],detectPopup:[{visible:"dialog[data-testid=accept-our-cookies-dialog]"}],optIn:[{click:"#banner-accept"}],optOut:[{click:"#banner-manage"},{click:"#pc-confirm"}]},{name:"monzo.com",prehideSelectors:[".cookie-alert, cookie-alert__content"],detectCmp:[{exists:'div.cookie-alert[role="dialog"]'},{exists:'a[href*="monzo"]'}],detectPopup:[{visible:".cookie-alert__content"}],optIn:[{click:".js-accept-cookie-policy"}],optOut:[{click:".js-decline-cookie-policy"}]},{name:"Moove",prehideSelectors:["#moove_gdpr_cookie_info_bar"],detectCmp:[{exists:"#moove_gdpr_cookie_info_bar"}],detectPopup:[{visible:"#moove_gdpr_cookie_info_bar:not(.moove-gdpr-info-bar-hidden)"}],optIn:[{waitForThenClick:".moove-gdpr-infobar-allow-all"}],optOut:[{if:{exists:"#moove_gdpr_cookie_info_bar .change-settings-button"},then:[{click:"#moove_gdpr_cookie_info_bar .change-settings-button"},{waitForVisible:"#moove_gdpr_cookie_modal"},{eval:"EVAL_MOOVE_0"},{click:".moove-gdpr-modal-save-settings"}],else:[{hide:"#moove_gdpr_cookie_info_bar"}]}],test:[{visible:"#moove_gdpr_cookie_info_bar",check:"none"}]},{name:"national-lottery.co.uk",detectCmp:[{exists:".cuk_cookie_consent"}],detectPopup:[{visible:".cuk_cookie_consent",check:"any"}],optOut:[{click:".cuk_cookie_consent_manage_pref"},{click:".cuk_cookie_consent_save_pref"},{click:".cuk_cookie_consent_close"}],optIn:[{click:".cuk_cookie_consent_accept_all"}]},{name:"nba.com",runContext:{urlPattern:"^https://(www\\.)?nba.com/"},cosmetic:!0,prehideSelectors:["#onetrust-banner-sdk"],detectCmp:[{exists:"#onetrust-banner-sdk"}],detectPopup:[{visible:"#onetrust-banner-sdk"}],optIn:[{click:"#onetrust-accept-btn-handler"}],optOut:[{hide:"#onetrust-banner-sdk"}]},{name:"netbeat.de",runContext:{urlPattern:"^https://(www\\.)?netbeat\\.de/"},prehideSelectors:["div#cookieWarning"],detectCmp:[{exists:"div#cookieWarning"}],detectPopup:[{visible:"div#cookieWarning"}],optIn:[{waitForThenClick:"a#btnCookiesAcceptAll"}],optOut:[{waitForThenClick:"a#btnCookiesDenyAll"}]},{name:"netflix.de",detectCmp:[{exists:"#cookie-disclosure"}],detectPopup:[{visible:".cookie-disclosure-message",check:"any"}],optIn:[{click:".btn-accept"}],optOut:[{hide:"#cookie-disclosure"},{click:".btn-reject"}]},{name:"nhs.uk",prehideSelectors:["#nhsuk-cookie-banner"],detectCmp:[{exists:"#nhsuk-cookie-banner"}],detectPopup:[{exists:"#nhsuk-cookie-banner"}],optOut:[{click:"#nhsuk-cookie-banner__link_accept"}],optIn:[{click:"#nhsuk-cookie-banner__link_accept_analytics"}]},{name:"nike",vendorUrl:"https://nike.com",runContext:{urlPattern:"^https://(www\\.)?nike\\.com/"},prehideSelectors:[],detectCmp:[{exists:"[data-testid=cookie-dialog-root]"}],detectPopup:[{visible:"[data-testid=cookie-dialog-root]"}],optIn:[{waitForThenClick:"[data-testid=dialog-accept-button]"}],optOut:[{waitForThenClick:"input[type=radio][id$=-declineLabel]",all:!0},{waitForThenClick:"[data-testid=confirm-choice-button]"}]},{name:"notice-cookie",prehideSelectors:[".button--notice"],cosmetic:!0,detectCmp:[{exists:".notice--cookie"}],detectPopup:[{visible:".notice--cookie"}],optIn:[{click:".button--notice"}],optOut:[{hide:".notice--cookie"}]},{name:"nrk.no",cosmetic:!0,prehideSelectors:[".nrk-masthead__info-banner--cookie"],detectCmp:[{exists:".nrk-masthead__info-banner--cookie"}],detectPopup:[{exists:".nrk-masthead__info-banner--cookie"}],optIn:[{click:"div.nrk-masthead__info-banner--cookie button > span:has(+ svg.nrk-close)"}],optOut:[{hide:".nrk-masthead__info-banner--cookie"}]},{name:"obi.de",prehideSelectors:[".disc-cp--active"],detectCmp:[{exists:".disc-cp-modal__modal"}],detectPopup:[{visible:".disc-cp-modal__modal"}],optIn:[{click:".js-disc-cp-accept-all"}],optOut:[{click:".js-disc-cp-deny-all"}]},{name:"om",vendorUrl:"https://olli-machts.de/en/extension/cookie-manager",prehideSelectors:[".tx-om-cookie-consent"],detectCmp:[{exists:".tx-om-cookie-consent .active[data-omcookie-panel]"}],detectPopup:[{exists:".tx-om-cookie-consent .active[data-omcookie-panel]"}],optIn:[{waitForThenClick:"[data-omcookie-panel-save=all]"}],optOut:[{if:{exists:"[data-omcookie-panel-save=min]"},then:[{waitForThenClick:"[data-omcookie-panel-save=min]"}],else:[{click:"input[data-omcookie-panel-grp]:checked:not(:disabled)",all:!0,optional:!0},{waitForThenClick:"[data-omcookie-panel-save=save]"}]}]},{name:"onlyFans.com",runContext:{urlPattern:"^https://onlyfans\\.com/"},prehideSelectors:["div.b-cookies-informer"],detectCmp:[{exists:"div.b-cookies-informer"}],detectPopup:[{exists:"div.b-cookies-informer"}],optIn:[{click:"div.b-cookies-informer__nav > button:nth-child(2)"}],optOut:[{click:"div.b-cookies-informer__nav > button:nth-child(1)"},{if:{exists:"div.b-cookies-informer__switchers"},then:[{click:"div.b-cookies-informer__switchers input:not([disabled])",all:!0},{click:"div.b-cookies-informer__nav > button"}]}]},{name:"openli",vendorUrl:"https://openli.com",prehideSelectors:[".legalmonster-cleanslate"],detectCmp:[{exists:".legalmonster-cleanslate"}],detectPopup:[{visible:".legalmonster-cleanslate #lm-cookie-wall-container",check:"any"}],optIn:[{waitForThenClick:"#lm-accept-all"}],optOut:[{waitForThenClick:"#lm-accept-necessary"}]},{name:"opera.com",vendorUrl:"https://unknown",cosmetic:!1,runContext:{main:!0,frame:!1},intermediate:!1,prehideSelectors:[],detectCmp:[{exists:"#cookie-consent .manage-cookies__btn"}],detectPopup:[{visible:"#cookie-consent .cookie-basic-consent__btn"}],optIn:[{waitForThenClick:"#cookie-consent .cookie-basic-consent__btn"}],optOut:[{waitForThenClick:"#cookie-consent .manage-cookies__btn"},{waitForThenClick:"#cookie-consent .active.marketing_option_switch.cookie-consent__switch",all:!0},{waitForThenClick:"#cookie-consent .cookie-selection__btn"}],test:[{eval:"EVAL_OPERA_0"}]},{name:"osano",prehideSelectors:[".osano-cm-window,.osano-cm-dialog"],detectCmp:[{exists:".osano-cm-window"}],detectPopup:[{visible:".osano-cm-dialog"}],optIn:[{click:".osano-cm-accept-all",optional:!0}],optOut:[{waitForThenClick:".osano-cm-denyAll"}]},{name:"otto.de",prehideSelectors:[".cookieBanner--visibility"],detectCmp:[{exists:".cookieBanner--visibility"}],detectPopup:[{visible:".cookieBanner__wrapper"}],optIn:[{click:".js_cookieBannerPermissionButton"}],optOut:[{click:".js_cookieBannerProhibitionButton"}]},{name:"ourworldindata",vendorUrl:"https://ourworldindata.org/",runContext:{urlPattern:"^https://ourworldindata\\.org/"},prehideSelectors:[".cookie-manager"],detectCmp:[{exists:".cookie-manager"}],detectPopup:[{visible:".cookie-manager .cookie-notice.open"}],optIn:[{waitForThenClick:".cookie-notice [data-test=accept]"}],optOut:[{waitForThenClick:".cookie-notice [data-test=reject]"}]},{name:"pabcogypsum",vendorUrl:"https://unknown",prehideSelectors:[".js-cookie-notice:has(#cookie_settings-form)"],detectCmp:[{exists:".js-cookie-notice #cookie_settings-form"}],detectPopup:[{visible:".js-cookie-notice #cookie_settings-form"}],optIn:[{waitForThenClick:".js-cookie-notice button[value=allow]"}],optOut:[{waitForThenClick:".js-cookie-notice button[value=disable]"}]},{name:"paypal-us",prehideSelectors:["#ccpaCookieContent_wrapper, article.ppvx_modal--overpanel"],detectCmp:[{exists:"#ccpaCookieBanner, .privacy-sheet-content"}],detectPopup:[{exists:"#ccpaCookieBanner, .privacy-sheet-content"}],optIn:[{click:"#acceptAllButton"}],optOut:[{if:{exists:"#bannerDeclineButton"},then:[{click:"#bannerDeclineButton"}],else:[{if:{exists:"a#manageCookiesLink"},then:[{click:"a#manageCookiesLink"}],else:[{waitForVisible:".privacy-sheet-content #formContent"},{click:"#formContent .cookiepref-11m2iee-checkbox_base input:checked",all:!0,optional:!0},{click:".confirmCookie #submitCookiesBtn"}]}]}]},{name:"paypal.com",prehideSelectors:["#gdprCookieBanner"],detectCmp:[{exists:"#gdprCookieBanner"}],detectPopup:[{visible:"#gdprCookieContent_wrapper"}],optIn:[{click:"#acceptAllButton"}],optOut:[{wait:200},{click:".gdprCookieBanner_decline-button"}],test:[{wait:500},{eval:"EVAL_PAYPAL_0"}]},{name:"pinetools.com",cosmetic:!0,prehideSelectors:["#aviso_cookies"],detectCmp:[{exists:"#aviso_cookies"}],detectPopup:[{exists:".lang_en #aviso_cookies"}],optIn:[{click:"#aviso_cookies .a_boton_cerrar"}],optOut:[{hide:"#aviso_cookies"}]},{name:"pinterest-business",vendorUrl:"https://business.pinterest.com/",runContext:{urlPattern:"^https://.*\\.pinterest\\.com/"},prehideSelectors:[".BusinessCookieConsent"],detectCmp:[{exists:".BusinessCookieConsent"}],detectPopup:[{visible:".BusinessCookieConsent [data-id=cookie-consent-banner-buttons]"}],optIn:[{waitForThenClick:"[data-id=cookie-consent-banner-buttons] > div:nth-child(1) button"}],optOut:[{waitForThenClick:"[data-id=cookie-consent-banner-buttons] > div:nth-child(2) button"}]},{name:"pmc",cosmetic:!0,prehideSelectors:["#pmc-pp-tou--notice"],detectCmp:[{exists:"#pmc-pp-tou--notice"}],detectPopup:[{visible:"#pmc-pp-tou--notice"}],optIn:[{click:"span.pmc-pp-tou--notice-close-btn"}],optOut:[{hide:"#pmc-pp-tou--notice"}]},{name:"pornhub.com",runContext:{urlPattern:"^https://(www\\.)?pornhub\\.com/"},cosmetic:!0,prehideSelectors:[".cookiesBanner"],detectCmp:[{exists:".cookiesBanner"}],detectPopup:[{visible:".cookiesBanner"}],optIn:[{click:".cookiesBanner .okButton"}],optOut:[{hide:".cookiesBanner"}]},{name:"pornpics.com",cosmetic:!0,prehideSelectors:["#cookie-contract"],detectCmp:[{exists:"#cookie-contract"}],detectPopup:[{visible:"#cookie-contract"}],optIn:[{click:"#cookie-contract .icon-cross"}],optOut:[{hide:"#cookie-contract"}]},{name:"PrimeBox CookieBar",prehideSelectors:["#cookie-bar"],detectCmp:[{exists:"#cookie-bar .cb-enable,#cookie-bar .cb-disable,#cookie-bar .cb-policy"}],detectPopup:[{visible:"#cookie-bar .cb-enable,#cookie-bar .cb-disable,#cookie-bar .cb-policy",check:"any"}],optIn:[{waitForThenClick:"#cookie-bar .cb-enable"}],optOut:[{click:"#cookie-bar .cb-disable",optional:!0},{hide:"#cookie-bar"}],test:[{eval:"EVAL_PRIMEBOX_0"}]},{name:"privacymanager.io",prehideSelectors:["#gdpr-consent-tool-wrapper",'iframe[src^="https://cmp-consent-tool.privacymanager.io"]'],runContext:{urlPattern:"^https://cmp-consent-tool\\.privacymanager\\.io/",main:!1,frame:!0},detectCmp:[{exists:"button#save"}],detectPopup:[{visible:"button#save"}],optIn:[{click:"button#save"}],optOut:[{if:{exists:"#denyAll"},then:[{click:"#denyAll"},{waitForThenClick:".okButton"}],else:[{waitForThenClick:"#manageSettings"},{waitFor:".purposes-overview-list"},{waitFor:"button#saveAndExit"},{click:"span[role=checkbox][aria-checked=true]",all:!0,optional:!0},{click:"button#saveAndExit"}]}]},{name:"productz.com",vendorUrl:"https://productz.com/",runContext:{urlPattern:"^https://productz\\.com/"},prehideSelectors:[],detectCmp:[{exists:".c-modal.is-active"}],detectPopup:[{visible:".c-modal.is-active"}],optIn:[{waitForThenClick:".c-modal.is-active .is-accept"}],optOut:[{waitForThenClick:".c-modal.is-active .is-dismiss"}]},{name:"pubtech",prehideSelectors:["#pubtech-cmp"],detectCmp:[{exists:"#pubtech-cmp"}],detectPopup:[{visible:"#pubtech-cmp #pt-actions"}],optIn:[{if:{exists:"#pt-accept-all"},then:[{click:"#pubtech-cmp #pt-actions #pt-accept-all"}],else:[{click:"#pubtech-cmp #pt-actions button:nth-of-type(2)"}]}],optOut:[{click:"#pubtech-cmp #pt-close"}],test:[{eval:"EVAL_PUBTECH_0"}]},{name:"quantcast",prehideSelectors:["#qc-cmp2-main,#qc-cmp2-container"],detectCmp:[{exists:"#qc-cmp2-container"}],detectPopup:[{visible:"#qc-cmp2-ui"}],optOut:[{waitFor:'.qc-cmp2-summary-buttons > button[mode="secondary"]',timeout:2e3},{if:{exists:'.qc-cmp2-summary-buttons > button[mode="secondary"]:nth-of-type(2)'},then:[{click:'.qc-cmp2-summary-buttons > button[mode="secondary"]:nth-of-type(2)'}],else:[{click:'.qc-cmp2-summary-buttons > button[mode="secondary"]:nth-of-type(1)'},{waitFor:"#qc-cmp2-ui"},{click:'.qc-cmp2-toggle-switch > button[aria-checked="true"]',all:!0,optional:!0},{click:'.qc-cmp2-main button[aria-label="REJECT ALL"]',optional:!0},{waitForThenClick:'.qc-cmp2-main button[aria-label="SAVE & EXIT"],.qc-cmp2-buttons-desktop > button[mode="primary"]',timeout:5e3}]}],optIn:[{click:'.qc-cmp2-summary-buttons > button[mode="primary"]'}]},{name:"reddit.com",runContext:{urlPattern:"^https://www\\.reddit\\.com/"},prehideSelectors:["[bundlename=reddit_cookie_banner]"],detectCmp:[{exists:"reddit-cookie-banner"}],detectPopup:[{visible:"reddit-cookie-banner"}],optIn:[{waitForThenClick:["reddit-cookie-banner","#accept-all-cookies-button > button"]}],optOut:[{waitForThenClick:["reddit-cookie-banner","#reject-nonessential-cookies-button > button"]}],test:[{eval:"EVAL_REDDIT_0"}]},{name:"roblox",vendorUrl:"https://roblox.com",cosmetic:!1,runContext:{main:!0,frame:!1,urlPattern:"^https://(www\\.)?roblox\\.com/"},prehideSelectors:[],detectCmp:[{exists:".cookie-banner-wrapper"}],detectPopup:[{visible:".cookie-banner-wrapper .cookie-banner"}],optIn:[{waitForThenClick:".cookie-banner-wrapper button.btn-cta-lg"}],optOut:[{waitForThenClick:".cookie-banner-wrapper button.btn-secondary-lg"}],test:[{eval:"EVAL_ROBLOX_TEST"}]},{name:"rog-forum.asus.com",runContext:{urlPattern:"^https://rog-forum\\.asus\\.com/"},prehideSelectors:["#cookie-policy-info"],detectCmp:[{exists:"#cookie-policy-info"}],detectPopup:[{visible:"#cookie-policy-info"}],optIn:[{click:'div.cookie-btn-box > div[aria-label="Accept"]'}],optOut:[{click:'div.cookie-btn-box > div[aria-label="Reject"]'},{waitForThenClick:'.cookie-policy-lightbox-bottom > div[aria-label="Save Settings"]'}]},{name:"roofingmegastore.co.uk",runContext:{urlPattern:"^https://(www\\.)?roofingmegastore\\.co\\.uk"},prehideSelectors:["#m-cookienotice"],detectCmp:[{exists:"#m-cookienotice"}],detectPopup:[{visible:"#m-cookienotice"}],optIn:[{click:"#accept-cookies"}],optOut:[{click:"#manage-cookies"},{waitForThenClick:"#accept-selected"}]},{name:"samsung.com",runContext:{urlPattern:"^https://www\\.samsung\\.com/"},cosmetic:!0,prehideSelectors:["div.cookie-bar"],detectCmp:[{exists:"div.cookie-bar"}],detectPopup:[{visible:"div.cookie-bar"}],optIn:[{click:"div.cookie-bar__manage > a"}],optOut:[{hide:"div.cookie-bar"}]},{name:"setapp.com",vendorUrl:"https://setapp.com/",cosmetic:!0,runContext:{urlPattern:"^https://setapp\\.com/"},prehideSelectors:[],detectCmp:[{exists:".cookie-banner.js-cookie-banner"}],detectPopup:[{visible:".cookie-banner.js-cookie-banner"}],optIn:[{waitForThenClick:".cookie-banner.js-cookie-banner button"}],optOut:[{hide:".cookie-banner.js-cookie-banner"}]},{name:"sibbo",prehideSelectors:["sibbo-cmp-layout"],detectCmp:[{exists:"sibbo-cmp-layout"}],detectPopup:[{visible:"#rejectAllMain"}],optIn:[{click:"#acceptAllMain"}],optOut:[{click:"#rejectAllMain"}]},{name:"similarweb.com",cosmetic:!0,prehideSelectors:[".app-cookies-notification"],detectCmp:[{exists:".app-cookies-notification"}],detectPopup:[{exists:".app-layout .app-cookies-notification"}],optIn:[{click:"button.app-cookies-notification__dismiss"}],optOut:[{hide:".app-layout .app-cookies-notification"}]},{name:"Sirdata",cosmetic:!1,prehideSelectors:["#sd-cmp"],detectCmp:[{exists:"#sd-cmp"}],detectPopup:[{visible:"#sd-cmp"}],optIn:[{waitForThenClick:"#sd-cmp .sd-cmp-3cRQ2"}],optOut:[{waitForThenClick:["#sd-cmp","xpath///span[contains(., 'Do not accept') or contains(., 'Acceptera inte') or contains(., 'No aceptar') or contains(., 'Ikke acceptere') or contains(., 'Nicht akzeptieren') or contains(., 'Не приемам') or contains(., 'Να μην γίνει αποδοχή') or contains(., 'Niet accepteren') or contains(., 'Nepřijímat') or contains(., 'Nie akceptuj') or contains(., 'Nu acceptați') or contains(., 'Não aceitar') or contains(., 'Continuer sans accepter') or contains(., 'Non accettare') or contains(., 'Nem fogad el')]"]}]},{name:"snigel",detectCmp:[{exists:".snigel-cmp-framework"}],detectPopup:[{visible:".snigel-cmp-framework"}],optOut:[{click:"#sn-b-custom"},{click:"#sn-b-save"}],test:[{eval:"EVAL_SNIGEL_0"}],optIn:[{click:".snigel-cmp-framework #accept-choices"}]},{name:"steampowered.com",detectCmp:[{exists:".cookiepreferences_popup"},{visible:".cookiepreferences_popup"}],detectPopup:[{visible:".cookiepreferences_popup"}],optOut:[{click:"#rejectAllButton"}],optIn:[{click:"#acceptAllButton"}],test:[{wait:1e3},{eval:"EVAL_STEAMPOWERED_0"}]},{name:"strato.de",prehideSelectors:[".consent__wrapper"],runContext:{urlPattern:"^https://www\\.strato\\.de/"},detectCmp:[{exists:".consent"}],detectPopup:[{visible:".consent"}],optIn:[{click:"button.consentAgree"}],optOut:[{click:"button.consentSettings"},{waitForThenClick:"button#consentSubmit"}]},{name:"svt.se",vendorUrl:"https://www.svt.se/",runContext:{urlPattern:"^https://www\\.svt\\.se/"},prehideSelectors:["[class*=CookieConsent__root___]"],detectCmp:[{exists:"[class*=CookieConsent__root___]"}],detectPopup:[{visible:"[class*=CookieConsent__modal___]"}],optIn:[{waitForThenClick:"[class*=CookieConsent__modal___] > div > button[class*=primary]"}],optOut:[{waitForThenClick:"[class*=CookieConsent__modal___] > div > button[class*=secondary]:nth-child(2)"}],test:[{eval:"EVAL_SVT_TEST"}]},{name:"takealot.com",cosmetic:!0,prehideSelectors:['div[class^="cookies-banner-module_"]'],detectCmp:[{exists:'div[class^="cookies-banner-module_cookie-banner_"]'}],detectPopup:[{exists:'div[class^="cookies-banner-module_cookie-banner_"]'}],optIn:[{click:'button[class*="cookies-banner-module_dismiss-button_"]'}],optOut:[{hide:'div[class^="cookies-banner-module_"]'},{if:{exists:'div[class^="cookies-banner-module_small-cookie-banner_"]'},then:[{eval:"EVAL_TAKEALOT_0"}],else:[]}]},{name:"tarteaucitron.js",prehideSelectors:["#tarteaucitronRoot"],detectCmp:[{exists:"#tarteaucitronRoot"}],detectPopup:[{visible:"#tarteaucitronRoot #tarteaucitronAlertBig",check:"any"}],optIn:[{eval:"EVAL_TARTEAUCITRON_1"}],optOut:[{eval:"EVAL_TARTEAUCITRON_0"}],test:[{eval:"EVAL_TARTEAUCITRON_2",comment:"sometimes there are required categories, so we check that at least something is false"}]},{name:"taunton",vendorUrl:"https://www.taunton.com/",prehideSelectors:["#taunton-user-consent__overlay"],detectCmp:[{exists:"#taunton-user-consent__overlay"}],detectPopup:[{exists:"#taunton-user-consent__overlay:not([aria-hidden=true])"}],optIn:[{click:"#taunton-user-consent__toolbar input[type=checkbox]:not(:checked)"},{click:"#taunton-user-consent__toolbar button[type=submit]"}],optOut:[{click:"#taunton-user-consent__toolbar input[type=checkbox]:checked",optional:!0,all:!0},{click:"#taunton-user-consent__toolbar button[type=submit]"}],test:[{eval:"EVAL_TAUNTON_TEST"}]},{name:"Tealium",prehideSelectors:["#__tealiumGDPRecModal,#__tealiumGDPRcpPrefs,#__tealiumImplicitmodal,#consent-layer"],detectCmp:[{exists:"#__tealiumGDPRecModal *,#__tealiumGDPRcpPrefs *,#__tealiumImplicitmodal *"},{eval:"EVAL_TEALIUM_0"}],detectPopup:[{visible:"#__tealiumGDPRecModal *,#__tealiumGDPRcpPrefs *,#__tealiumImplicitmodal *",check:"any"}],optOut:[{eval:"EVAL_TEALIUM_1"},{eval:"EVAL_TEALIUM_DONOTSELL"},{hide:"#__tealiumGDPRecModal,#__tealiumGDPRcpPrefs,#__tealiumImplicitmodal"},{waitForThenClick:"#cm-acceptNone,.js-accept-essential-cookies",timeout:1e3,optional:!0}],optIn:[{hide:"#__tealiumGDPRecModal,#__tealiumGDPRcpPrefs"},{eval:"EVAL_TEALIUM_2"}],test:[{eval:"EVAL_TEALIUM_3"},{eval:"EVAL_TEALIUM_DONOTSELL_CHECK"},{visible:"#__tealiumGDPRecModal,#__tealiumGDPRcpPrefs",check:"none"}]},{name:"temu",vendorUrl:"https://temu.com",runContext:{urlPattern:"^https://([a-z0-9-]+\\.)?temu\\.com/"},prehideSelectors:[],detectCmp:[{exists:'div > div > div > div > span[href*="/cookie-and-similar-technologies-policy.html"]'}],detectPopup:[{visible:'div > div > div > div > span[href*="/cookie-and-similar-technologies-policy.html"]'}],optIn:[{waitForThenClick:'div > div > div:has(> div > span[href*="/cookie-and-similar-technologies-policy.html"]) > [role=button]:nth-child(3)'}],optOut:[{if:{exists:"xpath///span[contains(., 'Alle afwijzen') or contains(., 'Reject all') or contains(., 'Tümünü reddet') or contains(., 'Odrzuć wszystko')]"},then:[{waitForThenClick:"xpath///span[contains(., 'Alle afwijzen') or contains(., 'Reject all') or contains(., 'Tümünü reddet') or contains(., 'Odrzuć wszystko')]"}],else:[{waitForThenClick:'div > div > div:has(> div > span[href*="/cookie-and-similar-technologies-policy.html"]) > [role=button]:nth-child(2)'}]}]},{name:"Termly",prehideSelectors:["#termly-code-snippet-support"],detectCmp:[{exists:"#termly-code-snippet-support"}],detectPopup:[{visible:"#termly-code-snippet-support div"}],optIn:[{waitForThenClick:'[data-tid="banner-accept"]'}],optOut:[{if:{exists:'[data-tid="banner-decline"]'},then:[{click:'[data-tid="banner-decline"]'}],else:[{click:".t-preference-button"},{wait:500},{if:{exists:".t-declineAllButton"},then:[{click:".t-declineAllButton"}],else:[{waitForThenClick:".t-preference-modal input[type=checkbox][checked]:not([disabled])",all:!0},{waitForThenClick:".t-saveButton"}]}]}]},{name:"termsfeed",vendorUrl:"https://termsfeed.com",comment:"v4.x.x",prehideSelectors:[".termsfeed-com---nb"],detectCmp:[{exists:".termsfeed-com---nb"}],detectPopup:[{visible:".termsfeed-com---nb"}],optIn:[{waitForThenClick:".cc-nb-okagree"}],optOut:[{waitForThenClick:".cc-nb-reject"}]},{name:"termsfeed3",vendorUrl:"https://termsfeed.com",comment:"v3.x.x",prehideSelectors:[".cc_dialog.cc_css_reboot,.cc_overlay_lock"],detectCmp:[{exists:".cc_dialog.cc_css_reboot"}],detectPopup:[{visible:".cc_dialog.cc_css_reboot"}],optIn:[{waitForThenClick:".cc_dialog.cc_css_reboot .cc_b_ok"}],optOut:[{if:{exists:".cc_dialog.cc_css_reboot .cc_b_cp"},then:[{click:".cc_dialog.cc_css_reboot .cc_b_cp"},{waitForVisible:".cookie-consent-preferences-dialog .cc_cp_f_save button"},{waitForThenClick:".cookie-consent-preferences-dialog .cc_cp_f_save button"}],else:[{hide:".cc_dialog.cc_css_reboot,.cc_overlay_lock"}]}]},{name:"tesla",vendorUrl:"https://tesla.com/",runContext:{main:!0,frame:!1,urlPattern:"^https://(www\\.)?tesla\\.com/"},prehideSelectors:[],detectCmp:[{exists:"#cookie_banner"}],detectPopup:[{visible:"#cookie_banner"}],optIn:[{waitForThenClick:"#tsla-accept-cookie"}],optOut:[{waitForThenClick:"#tsla-reject-cookie"}],test:[{eval:"EVAL_TESLA_TEST"}]},{name:"Test page cosmetic CMP",cosmetic:!0,prehideSelectors:["#privacy-test-page-cmp-test-prehide"],detectCmp:[{exists:"#privacy-test-page-cmp-test-banner"}],detectPopup:[{visible:"#privacy-test-page-cmp-test-banner"}],optIn:[{waitFor:"#accept-all"},{click:"#accept-all"}],optOut:[{hide:"#privacy-test-page-cmp-test-banner"}],test:[{wait:500},{eval:"EVAL_TESTCMP_COSMETIC_0"}]},{name:"Test page CMP",prehideSelectors:["#reject-all"],detectCmp:[{exists:"#privacy-test-page-cmp-test"}],detectPopup:[{visible:"#privacy-test-page-cmp-test"}],optIn:[{waitFor:"#accept-all"},{click:"#accept-all"}],optOut:[{waitFor:"#reject-all"},{click:"#reject-all"}],test:[{eval:"EVAL_TESTCMP_0"}]},{name:"thalia.de",prehideSelectors:[".consent-banner-box"],detectCmp:[{exists:"consent-banner[component=consent-banner]"}],detectPopup:[{visible:".consent-banner-box"}],optIn:[{click:".button-zustimmen"}],optOut:[{click:"button[data-consent=disagree]"}]},{name:"thefreedictionary.com",prehideSelectors:["#cmpBanner"],detectCmp:[{exists:"#cmpBanner"}],detectPopup:[{visible:"#cmpBanner"}],optIn:[{eval:"EVAL_THEFREEDICTIONARY_1"}],optOut:[{eval:"EVAL_THEFREEDICTIONARY_0"}]},{name:"theverge",runContext:{frame:!1,main:!0,urlPattern:"^https://(www)?\\.theverge\\.com"},intermediate:!1,prehideSelectors:[".duet--cta--cookie-banner"],detectCmp:[{exists:".duet--cta--cookie-banner"}],detectPopup:[{visible:".duet--cta--cookie-banner"}],optIn:[{click:".duet--cta--cookie-banner button.tracking-12",all:!1}],optOut:[{click:".duet--cta--cookie-banner button.tracking-12 > span"}],test:[{eval:"EVAL_THEVERGE_0"}]},{name:"tidbits-com",cosmetic:!0,prehideSelectors:["#eu_cookie_law_widget-2"],detectCmp:[{exists:"#eu_cookie_law_widget-2"}],detectPopup:[{visible:"#eu_cookie_law_widget-2"}],optIn:[{click:"#eu-cookie-law form > input.accept"}],optOut:[{hide:"#eu_cookie_law_widget-2"}]},{name:"tractor-supply",runContext:{urlPattern:"^https://www\\.tractorsupply\\.com/"},cosmetic:!0,prehideSelectors:[".tsc-cookie-banner"],detectCmp:[{exists:".tsc-cookie-banner"}],detectPopup:[{visible:".tsc-cookie-banner"}],optIn:[{click:"#cookie-banner-cancel"}],optOut:[{hide:".tsc-cookie-banner"}]},{name:"trader-joes-com",cosmetic:!0,prehideSelectors:['div.aem-page > div[class^="CookiesAlert_cookiesAlert__"]'],detectCmp:[{exists:'div.aem-page > div[class^="CookiesAlert_cookiesAlert__"]'}],detectPopup:[{visible:'div.aem-page > div[class^="CookiesAlert_cookiesAlert__"]'}],optIn:[{click:'div[class^="CookiesAlert_cookiesAlert__container__"] button'}],optOut:[{hide:'div.aem-page > div[class^="CookiesAlert_cookiesAlert__"]'}]},{name:"transcend",vendorUrl:"https://unknown",cosmetic:!0,prehideSelectors:["#transcend-consent-manager"],detectCmp:[{exists:"#transcend-consent-manager"}],detectPopup:[{visible:"#transcend-consent-manager"}],optIn:[{waitForThenClick:["#transcend-consent-manager","#consentManagerMainDialog .inner-container button"]}],optOut:[{hide:"#transcend-consent-manager"}]},{name:"transip-nl",runContext:{urlPattern:"^https://www\\.transip\\.nl/"},prehideSelectors:["#consent-modal"],detectCmp:[{any:[{exists:"#consent-modal"},{exists:"#privacy-settings-content"}]}],detectPopup:[{any:[{visible:"#consent-modal"},{visible:"#privacy-settings-content"}]}],optIn:[{click:'button[type="submit"]'}],optOut:[{if:{exists:"#privacy-settings-content"},then:[{click:'button[type="submit"]'}],else:[{click:"div.one-modal__action-footer-column--secondary > a"}]}]},{name:"tropicfeel-com",prehideSelectors:["#shopify-section-cookies-controller"],detectCmp:[{exists:"#shopify-section-cookies-controller"}],detectPopup:[{visible:"#shopify-section-cookies-controller #cookies-controller-main-pane",check:"any"}],optIn:[{waitForThenClick:"#cookies-controller-main-pane form[data-form-allow-all] button"}],optOut:[{click:"#cookies-controller-main-pane a[data-tab-target=manage-cookies]"},{waitFor:"#manage-cookies-pane.active"},{click:"#manage-cookies-pane.active input[type=checkbox][checked]:not([disabled])",all:!0},{click:"#manage-cookies-pane.active button[type=submit]"}],test:[]},{name:"true-car",runContext:{urlPattern:"^https://www\\.truecar\\.com/"},cosmetic:!0,prehideSelectors:[['div[aria-labelledby="cookie-banner-heading"]']],detectCmp:[{exists:'div[aria-labelledby="cookie-banner-heading"]'}],detectPopup:[{visible:'div[aria-labelledby="cookie-banner-heading"]'}],optIn:[{click:'div[aria-labelledby="cookie-banner-heading"] > button[aria-label="Close"]'}],optOut:[{hide:'div[aria-labelledby="cookie-banner-heading"]'}]},{name:"truyo",prehideSelectors:["#truyo-consent-module"],detectCmp:[{exists:"#truyo-cookieBarContent"}],detectPopup:[{visible:"#truyo-consent-module"}],optIn:[{click:"button#acceptAllCookieButton"}],optOut:[{click:"button#declineAllCookieButton"}]},{name:"twcc",vendorUrl:"https://unknown",cosmetic:!1,runContext:{main:!0,frame:!1,urlPattern:""},prehideSelectors:["#twcc__mechanism"],detectCmp:[{exists:"#twcc__mechanism .twcc__notice"}],detectPopup:[{visible:"#twcc__mechanism .twcc__notice"}],optIn:[{waitForThenClick:"#twcc__accept-button"}],optOut:[{waitForThenClick:"#twcc__decline-button"}],test:[{eval:"EVAL_TWCC_TEST"}]},{name:"twitch-mobile",vendorUrl:"https://m.twitch.tv/",cosmetic:!0,runContext:{urlPattern:"^https?://m\\.twitch\\.tv"},prehideSelectors:[],detectCmp:[{exists:'.ReactModal__Overlay [href="https://www.twitch.tv/p/cookie-policy"]'}],detectPopup:[{visible:'.ReactModal__Overlay [href="https://www.twitch.tv/p/cookie-policy"]'}],optIn:[{waitForThenClick:'.ReactModal__Overlay:has([href="https://www.twitch.tv/p/cookie-policy"]) button'}],optOut:[{hide:'.ReactModal__Overlay:has([href="https://www.twitch.tv/p/cookie-policy"])'}]},{name:"twitch.tv",runContext:{urlPattern:"^https?://(www\\.)?twitch\\.tv"},prehideSelectors:["div:has(> .consent-banner .consent-banner__content--gdpr-v2),.ReactModalPortal:has([data-a-target=consent-modal-save])"],detectCmp:[{exists:".consent-banner .consent-banner__content--gdpr-v2"}],detectPopup:[{visible:".consent-banner .consent-banner__content--gdpr-v2"}],optIn:[{click:'button[data-a-target="consent-banner-accept"]'}],optOut:[{hide:"div:has(> .consent-banner .consent-banner__content--gdpr-v2)"},{click:'button[data-a-target="consent-banner-manage-preferences"]'},{waitFor:"input[type=checkbox][data-a-target=tw-checkbox]"},{click:"input[type=checkbox][data-a-target=tw-checkbox][checked]:not([disabled])",all:!0,optional:!0},{waitForThenClick:"[data-a-target=consent-modal-save]"},{waitForVisible:".ReactModalPortal:has([data-a-target=consent-modal-save])",check:"none"}]},{name:"twitter",runContext:{urlPattern:"^https://([a-z0-9-]+\\.)?(twitter|x)\\.com/"},prehideSelectors:['[data-testid="BottomBar"]'],detectCmp:[{exists:'[data-testid="BottomBar"] div'}],detectPopup:[{visible:'[data-testid="BottomBar"] div'}],optIn:[{waitForThenClick:'[data-testid="BottomBar"] > div:has(>div:first-child>div:last-child>button[role=button]>span) > div:last-child > button[role=button]:first-child'}],optOut:[{waitForThenClick:'[data-testid="BottomBar"] > div:has(>div:first-child>div:last-child>button[role=button]>span) > div:last-child > button[role=button]:last-child'}],TODOtest:[{eval:"EVAL_document.cookie.includes('d_prefs=MjoxLGNvbnNlbnRfdmVyc2lvbjoy')"}]},{name:"ubuntu.com",prehideSelectors:["dialog.cookie-policy"],detectCmp:[{any:[{exists:"dialog.cookie-policy header"},{exists:'xpath///*[@id="modal"]/div/header'}]}],detectPopup:[{any:[{visible:"dialog header"},{visible:'xpath///*[@id="modal"]/div/header'}]}],optIn:[{any:[{waitForThenClick:"#cookie-policy-button-accept"},{waitForThenClick:'xpath///*[@id="cookie-policy-button-accept"]'}]}],optOut:[{any:[{waitForThenClick:"button.js-manage"},{waitForThenClick:'xpath///*[@id="cookie-policy-content"]/p[4]/button[2]'}]},{waitForThenClick:"dialog.cookie-policy .p-switch__input:checked",optional:!0,all:!0,timeout:500},{any:[{waitForThenClick:"dialog.cookie-policy .js-save-preferences"},{waitForThenClick:'xpath///*[@id="modal"]/div/button'}]}],test:[{eval:"EVAL_UBUNTU_COM_0"}]},{name:"UK Cookie Consent",prehideSelectors:["#catapult-cookie-bar"],cosmetic:!0,detectCmp:[{exists:"#catapult-cookie-bar"}],detectPopup:[{exists:".has-cookie-bar #catapult-cookie-bar"}],optIn:[{click:"#catapultCookie"}],optOut:[{hide:"#catapult-cookie-bar"}],test:[{eval:"EVAL_UK_COOKIE_CONSENT_0"}]},{name:"urbanarmorgear-com",cosmetic:!0,prehideSelectors:['div[class^="Layout__CookieBannerContainer-"]'],detectCmp:[{exists:'div[class^="Layout__CookieBannerContainer-"]'}],detectPopup:[{visible:'div[class^="Layout__CookieBannerContainer-"]'}],optIn:[{click:'button[class^="CookieBanner__AcceptButton"]'}],optOut:[{hide:'div[class^="Layout__CookieBannerContainer-"]'}]},{name:"usercentrics-api",detectCmp:[{exists:"#usercentrics-root,#usercentrics-cmp-ui"}],detectPopup:[{eval:"EVAL_USERCENTRICS_API_0"},{if:{exists:"#usercentrics-cmp-ui"},then:[{waitForVisible:"#usercentrics-cmp-ui",timeout:2e3}],else:[{exists:["#usercentrics-root","[data-testid=uc-container]"]},{waitForVisible:"#usercentrics-root",timeout:2e3}]}],optIn:[{eval:"EVAL_USERCENTRICS_API_3"},{eval:"EVAL_USERCENTRICS_API_1"},{eval:"EVAL_USERCENTRICS_API_5"}],optOut:[{eval:"EVAL_USERCENTRICS_API_1"},{eval:"EVAL_USERCENTRICS_API_2"}],test:[{eval:"EVAL_USERCENTRICS_API_6"}]},{name:"usercentrics-button",detectCmp:[{exists:"#usercentrics-button"}],detectPopup:[{visible:"#usercentrics-button #uc-btn-accept-banner"}],optIn:[{click:"#usercentrics-button #uc-btn-accept-banner"}],optOut:[{click:"#usercentrics-button #uc-btn-deny-banner"}],test:[{eval:"EVAL_USERCENTRICS_BUTTON_0"}]},{name:"uswitch.com",runContext:{main:!0,frame:!1,urlPattern:"^https://(www\\.)?uswitch\\.com/"},prehideSelectors:[".ucb"],detectCmp:[{exists:".ucb-banner"}],detectPopup:[{visible:".ucb-banner"}],optIn:[{waitForThenClick:".ucb-banner .ucb-btn-accept"}],optOut:[{waitForThenClick:".ucb-banner .ucb-btn-save"}]},{name:"vodafone.de",runContext:{urlPattern:"^https://www\\.vodafone\\.de/"},prehideSelectors:[".dip-consent,.dip-consent-container"],detectCmp:[{exists:".dip-consent-container"}],detectPopup:[{visible:".dip-consent-content"}],optOut:[{click:'.dip-consent-btn[tabindex="2"]'}],optIn:[{click:'.dip-consent-btn[tabindex="1"]'}]},{name:"waitrose.com",prehideSelectors:["div[aria-labelledby=CookieAlertModalHeading]","section[data-test=initial-waitrose-cookie-consent-banner]","section[data-test=cookie-consent-modal]"],detectCmp:[{exists:"section[data-test=initial-waitrose-cookie-consent-banner]"}],detectPopup:[{visible:"section[data-test=initial-waitrose-cookie-consent-banner]"}],optIn:[{click:"button[data-test=accept-all]"}],optOut:[{click:"button[data-test=manage-cookies]"},{wait:200},{eval:"EVAL_WAITROSE_0"},{click:"button[data-test=submit]"}],test:[{eval:"EVAL_WAITROSE_1"}]},{name:"webflow",vendorUrl:"https://webflow.com/",prehideSelectors:[".fs-cc-components"],detectCmp:[{exists:".fs-cc-components"}],detectPopup:[{visible:".fs-cc-components"},{visible:"[fs-cc=banner]"}],optIn:[{wait:500},{waitForThenClick:"[fs-cc=banner] [fs-cc=allow]"}],optOut:[{wait:500},{waitForThenClick:"[fs-cc=banner] [fs-cc=deny]"}]},{name:"wetransfer.com",detectCmp:[{exists:".welcome__cookie-notice"}],detectPopup:[{visible:".welcome__cookie-notice"}],optIn:[{click:".welcome__button--accept"}],optOut:[{click:".welcome__button--decline"}]},{name:"whitepages.com",runContext:{urlPattern:"^https://www\\.whitepages\\.com/"},cosmetic:!0,prehideSelectors:[".cookie-wrapper, .cookie-overlay"],detectCmp:[{exists:".cookie-wrapper"}],detectPopup:[{visible:".cookie-overlay"}],optIn:[{click:'button[aria-label="Got it"]'}],optOut:[{hide:".cookie-wrapper"}]},{name:"wolframalpha",vendorUrl:"https://www.wolframalpha.com",prehideSelectors:[],cosmetic:!0,runContext:{urlPattern:"^https://www\\.wolframalpha\\.com/"},detectCmp:[{exists:"section._a_yb"}],detectPopup:[{visible:"section._a_yb"}],optIn:[{waitForThenClick:"section._a_yb button"}],optOut:[{hide:"section._a_yb"}]},{name:"woo-commerce-com",prehideSelectors:[".wccom-comp-privacy-banner .wccom-privacy-banner"],detectCmp:[{exists:".wccom-comp-privacy-banner .wccom-privacy-banner"}],detectPopup:[{exists:".wccom-comp-privacy-banner .wccom-privacy-banner"}],optIn:[{click:".wccom-privacy-banner__content-buttons button.is-primary"}],optOut:[{click:".wccom-privacy-banner__content-buttons button.is-secondary"},{waitForThenClick:"input[type=checkbox][checked]:not([disabled])",all:!0},{click:"div.wccom-modal__footer > button"}]},{name:"WP Cookie Notice for GDPR",vendorUrl:"https://wordpress.org/plugins/gdpr-cookie-consent/",prehideSelectors:["#gdpr-cookie-consent-bar"],detectCmp:[{exists:"#gdpr-cookie-consent-bar"}],detectPopup:[{visible:"#gdpr-cookie-consent-bar"}],optIn:[{waitForThenClick:"#gdpr-cookie-consent-bar #cookie_action_accept"}],optOut:[{waitForThenClick:"#gdpr-cookie-consent-bar #cookie_action_reject"}],test:[{eval:"EVAL_WP_COOKIE_NOTICE_0"}]},{name:"wpcc",cosmetic:!0,prehideSelectors:[".wpcc-container"],detectCmp:[{exists:".wpcc-container"}],detectPopup:[{exists:".wpcc-container .wpcc-message"}],optIn:[{click:".wpcc-compliance .wpcc-btn"}],optOut:[{hide:".wpcc-container"}]},{name:"xe.com",vendorUrl:"https://www.xe.com/",runContext:{urlPattern:"^https://www\\.xe\\.com/"},prehideSelectors:["[class*=ConsentBanner]"],detectCmp:[{exists:"[class*=ConsentBanner]"}],detectPopup:[{visible:"[class*=ConsentBanner]"}],optIn:[{waitForThenClick:"[class*=ConsentBanner] .egnScw"}],optOut:[{wait:1e3},{waitForThenClick:"[class*=ConsentBanner] .frDWEu"},{waitForThenClick:"[class*=ConsentBanner] .hXIpFU"}],test:[{eval:"EVAL_XE_TEST"}]},{name:"xhamster-eu",prehideSelectors:[".cookies-modal"],detectCmp:[{exists:".cookies-modal"}],detectPopup:[{exists:".cookies-modal"}],optIn:[{click:"button.cmd-button-accept-all"}],optOut:[{click:"button.cmd-button-reject-all"}]},{name:"xhamster-us",runContext:{urlPattern:"^https://(www\\.)?xhamster\\d?\\.com"},cosmetic:!0,prehideSelectors:[".cookie-announce"],detectCmp:[{exists:".cookie-announce"}],detectPopup:[{visible:".cookie-announce .announce-text"}],optIn:[{click:".cookie-announce button.xh-button"}],optOut:[{hide:".cookie-announce"}]},{name:"xing.com",detectCmp:[{exists:"div[class^=cookie-consent-CookieConsent]"}],detectPopup:[{exists:"div[class^=cookie-consent-CookieConsent]"}],optIn:[{click:"#consent-accept-button"}],optOut:[{click:"#consent-settings-button"},{click:".consent-banner-button-accept-overlay"}],test:[{eval:"EVAL_XING_0"}]},{name:"xnxx-com",cosmetic:!0,prehideSelectors:["#cookies-use-alert"],detectCmp:[{exists:"#cookies-use-alert"}],detectPopup:[{visible:"#cookies-use-alert"}],optIn:[{click:"#cookies-use-alert .close"}],optOut:[{hide:"#cookies-use-alert"}]},{name:"xvideos",vendorUrl:"https://xvideos.com",runContext:{urlPattern:"^https://[^/]*xvideos\\.com/"},prehideSelectors:[],detectCmp:[{exists:".disclaimer-opened #disclaimer-cookies"}],detectPopup:[{visible:".disclaimer-opened #disclaimer-cookies"}],optIn:[{waitForThenClick:"#disclaimer-accept_cookies"}],optOut:[{waitForThenClick:"#disclaimer-reject_cookies"}]},{name:"Yahoo",runContext:{urlPattern:"^https://consent\\.yahoo\\.com/v2/"},prehideSelectors:["#reject-all"],detectCmp:[{exists:"#consent-page"}],detectPopup:[{visible:"#consent-page"}],optIn:[{waitForThenClick:"#consent-page button[value=agree]"}],optOut:[{waitForThenClick:"#consent-page button[value=reject]"}]},{name:"youporn.com",cosmetic:!0,prehideSelectors:[".euCookieModal, #js_euCookieModal"],detectCmp:[{exists:".euCookieModal"}],detectPopup:[{exists:".euCookieModal, #js_euCookieModal"}],optIn:[{click:'button[name="user_acceptCookie"]'}],optOut:[{hide:".euCookieModal"}]},{name:"youtube-desktop",prehideSelectors:["tp-yt-iron-overlay-backdrop.opened","ytd-consent-bump-v2-lightbox"],detectCmp:[{exists:"ytd-consent-bump-v2-lightbox tp-yt-paper-dialog"},{exists:'ytd-consent-bump-v2-lightbox tp-yt-paper-dialog a[href^="https://consent.youtube.com/"]'}],detectPopup:[{visible:"ytd-consent-bump-v2-lightbox tp-yt-paper-dialog"}],optIn:[{waitForThenClick:"ytd-consent-bump-v2-lightbox .eom-buttons .eom-button-row:first-child ytd-button-renderer:last-child #button,ytd-consent-bump-v2-lightbox .eom-buttons .eom-button-row:first-child ytd-button-renderer:last-child button"},{wait:500}],optOut:[{waitForThenClick:"ytd-consent-bump-v2-lightbox .eom-buttons .eom-button-row:first-child ytd-button-renderer:first-child #button,ytd-consent-bump-v2-lightbox .eom-buttons .eom-button-row:first-child ytd-button-renderer:first-child button"},{wait:500}],test:[{wait:500},{eval:"EVAL_YOUTUBE_DESKTOP_0"}]},{name:"youtube-mobile",prehideSelectors:[".consent-bump-v2-lightbox"],detectCmp:[{exists:"ytm-consent-bump-v2-renderer"}],detectPopup:[{visible:"ytm-consent-bump-v2-renderer"}],optIn:[{waitForThenClick:"ytm-consent-bump-v2-renderer .privacy-terms + .one-col-dialog-buttons c3-material-button:first-child button, ytm-consent-bump-v2-renderer .privacy-terms + .one-col-dialog-buttons ytm-button-renderer:first-child button"},{wait:500}],optOut:[{waitForThenClick:"ytm-consent-bump-v2-renderer .privacy-terms + .one-col-dialog-buttons c3-material-button:nth-child(2) button, ytm-consent-bump-v2-renderer .privacy-terms + .one-col-dialog-buttons ytm-button-renderer:nth-child(2) button"},{wait:500}],test:[{wait:500},{eval:"EVAL_YOUTUBE_MOBILE_0"}]},{name:"zdf",prehideSelectors:["#zdf-cmp-banner-sdk"],detectCmp:[{exists:"#zdf-cmp-banner-sdk"}],detectPopup:[{visible:"#zdf-cmp-main.zdf-cmp-show"}],optIn:[{waitForThenClick:"#zdf-cmp-main #zdf-cmp-accept-btn"}],optOut:[{waitForThenClick:"#zdf-cmp-main #zdf-cmp-deny-btn"}],test:[]},{name:"zentralruf-de",runContext:{urlPattern:"^https://(www\\.)?zentralruf\\.de"},prehideSelectors:["#cookie_modal_wrapper"],detectCmp:[{exists:"#cookie_modal_wrapper"}],detectPopup:[{visible:"#cookie_modal_wrapper"}],optIn:[{waitForThenClick:"#cookie_modal_wrapper #cookie_modal_button_consent_all"}],optOut:[{waitForThenClick:"#cookie_modal_wrapper #cookie_modal_button_choose"}]}],Ui={"didomi.io":{detectors:[{presentMatcher:{target:{selector:"#didomi-host, #didomi-notice"},type:"css"},showingMatcher:{target:{selector:"body.didomi-popup-open, .didomi-notice-banner"},type:"css"}}],methods:[{action:{target:{selector:".didomi-popup-notice-buttons .didomi-button:not(.didomi-button-highlight), .didomi-notice-banner .didomi-learn-more-button"},type:"click"},name:"OPEN_OPTIONS"},{action:{actions:[{retries:50,target:{selector:"#didomi-purpose-cookies"},type:"waitcss",waitTime:50},{consents:[{description:"Share (everything) with others",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-share_whith_others]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-share_whith_others]:last-child"},type:"click"},type:"X"},{description:"Information storage and access",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-cookies]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-cookies]:last-child"},type:"click"},type:"D"},{description:"Content selection, offers and marketing",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-CL-T1Rgm7]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-CL-T1Rgm7]:last-child"},type:"click"},type:"E"},{description:"Analytics",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-analytics]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-analytics]:last-child"},type:"click"},type:"B"},{description:"Analytics",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-M9NRHJe3G]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-M9NRHJe3G]:last-child"},type:"click"},type:"B"},{description:"Ad and content selection",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-advertising_personalization]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-advertising_personalization]:last-child"},type:"click"},type:"F"},{description:"Ad and content selection",falseAction:{parent:{childFilter:{target:{selector:"#didomi-purpose-pub-ciblee"}},selector:".didomi-consent-popup-data-processing, .didomi-components-accordion-label-container"},target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-pub-ciblee]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-pub-ciblee]:last-child"},type:"click"},type:"F"},{description:"Ad and content selection - basics",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-q4zlJqdcD]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-q4zlJqdcD]:last-child"},type:"click"},type:"F"},{description:"Ad and content selection - partners and subsidiaries",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-partenaire-cAsDe8jC]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-partenaire-cAsDe8jC]:last-child"},type:"click"},type:"F"},{description:"Ad and content selection - social networks",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-p4em9a8m]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-p4em9a8m]:last-child"},type:"click"},type:"F"},{description:"Ad and content selection - others",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-autres-pub]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-autres-pub]:last-child"},type:"click"},type:"F"},{description:"Social networks",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-reseauxsociaux]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-reseauxsociaux]:last-child"},type:"click"},type:"A"},{description:"Social networks",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-social_media]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-social_media]:last-child"},type:"click"},type:"A"},{description:"Content selection",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-content_personalization]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-content_personalization]:last-child"},type:"click"},type:"E"},{description:"Ad delivery",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-ad_delivery]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-ad_delivery]:last-child"},type:"click"},type:"F"}],type:"consent"},{action:{consents:[{matcher:{childFilter:{target:{selector:":not(.didomi-components-radio__option--selected)"}},type:"css"},trueAction:{target:{selector:":nth-child(2)"},type:"click"},falseAction:{target:{selector:":first-child"},type:"click"},type:"X"}],type:"consent"},target:{selector:".didomi-components-radio"},type:"foreach"}],type:"list"},name:"DO_CONSENT"},{action:{parent:{selector:".didomi-consent-popup-footer .didomi-consent-popup-actions"},target:{selector:".didomi-components-button:first-child"},type:"click"},name:"SAVE_CONSENT"}]},oil:{detectors:[{presentMatcher:{target:{selector:".as-oil-content-overlay"},type:"css"},showingMatcher:{target:{selector:".as-oil-content-overlay"},type:"css"}}],methods:[{action:{actions:[{target:{selector:".as-js-advanced-settings"},type:"click"},{retries:"10",target:{selector:".as-oil-cpc__purpose-container"},type:"waitcss",waitTime:"250"}],type:"list"},name:"OPEN_OPTIONS"},{action:{actions:[{consents:[{matcher:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:["Information storage and access","Opbevaring af og adgang til oplysninger på din enhed"]},target:{selector:"input"},type:"checkbox"},toggleAction:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:["Information storage and access","Opbevaring af og adgang til oplysninger på din enhed"]},target:{selector:".as-oil-cpc__switch"},type:"click"},type:"D"},{matcher:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:["Personlige annoncer","Personalisation"]},target:{selector:"input"},type:"checkbox"},toggleAction:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:["Personlige annoncer","Personalisation"]},target:{selector:".as-oil-cpc__switch"},type:"click"},type:"E"},{matcher:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:["Annoncevalg, levering og rapportering","Ad selection, delivery, reporting"]},target:{selector:"input"},type:"checkbox"},toggleAction:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:["Annoncevalg, levering og rapportering","Ad selection, delivery, reporting"]},target:{selector:".as-oil-cpc__switch"},type:"click"},type:"F"},{matcher:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:["Personalisering af indhold","Content selection, delivery, reporting"]},target:{selector:"input"},type:"checkbox"},toggleAction:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:["Personalisering af indhold","Content selection, delivery, reporting"]},target:{selector:".as-oil-cpc__switch"},type:"click"},type:"E"},{matcher:{parent:{childFilter:{target:{selector:".as-oil-cpc__purpose-header",textFilter:["Måling","Measurement"]}},selector:".as-oil-cpc__purpose-container"},target:{selector:"input"},type:"checkbox"},toggleAction:{parent:{childFilter:{target:{selector:".as-oil-cpc__purpose-header",textFilter:["Måling","Measurement"]}},selector:".as-oil-cpc__purpose-container"},target:{selector:".as-oil-cpc__switch"},type:"click"},type:"B"},{matcher:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:"Google"},target:{selector:"input"},type:"checkbox"},toggleAction:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:"Google"},target:{selector:".as-oil-cpc__switch"},type:"click"},type:"F"}],type:"consent"}],type:"list"},name:"DO_CONSENT"},{action:{target:{selector:".as-oil__btn-optin"},type:"click"},name:"SAVE_CONSENT"},{action:{target:{selector:"div.as-oil"},type:"hide"},name:"HIDE_CMP"}]},optanon:{detectors:[{presentMatcher:{target:{selector:"#optanon-menu, .optanon-alert-box-wrapper"},type:"css"},showingMatcher:{target:{displayFilter:!0,selector:".optanon-alert-box-wrapper"},type:"css"}}],methods:[{action:{actions:[{target:{selector:".optanon-alert-box-wrapper .optanon-toggle-display, a[onclick*='OneTrust.ToggleInfoDisplay()'], a[onclick*='Optanon.ToggleInfoDisplay()']"},type:"click"}],type:"list"},name:"OPEN_OPTIONS"},{action:{actions:[{target:{selector:".preference-menu-item #Your-privacy"},type:"click"},{target:{selector:"#optanon-vendor-consent-text"},type:"click"},{action:{consents:[{matcher:{target:{selector:"input"},type:"checkbox"},toggleAction:{target:{selector:"label"},type:"click"},type:"X"}],type:"consent"},target:{selector:"#optanon-vendor-consent-list .vendor-item"},type:"foreach"},{target:{selector:".vendor-consent-back-link"},type:"click"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-performance"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-performance"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"B"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-functional"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-functional"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"E"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-advertising"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-advertising"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"F"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-social"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-social"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"B"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Social Media Cookies"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Social Media Cookies"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"B"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Personalisation"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Personalisation"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"E"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Site monitoring cookies"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Site monitoring cookies"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"B"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Third party privacy-enhanced content"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Third party privacy-enhanced content"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"X"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Performance & Advertising Cookies"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Performance & Advertising Cookies"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"F"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Information storage and access"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Information storage and access"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"D"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Ad selection, delivery, reporting"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Ad selection, delivery, reporting"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"F"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Content selection, delivery, reporting"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Content selection, delivery, reporting"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"E"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Measurement"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Measurement"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"B"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Recommended Cookies"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Recommended Cookies"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"X"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Unclassified Cookies"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Unclassified Cookies"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"X"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Analytical Cookies"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Analytical Cookies"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"B"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Marketing Cookies"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Marketing Cookies"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"F"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Personalization"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Personalization"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"E"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Ad Selection, Delivery & Reporting"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Ad Selection, Delivery & Reporting"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"F"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Content Selection, Delivery & Reporting"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Content Selection, Delivery & Reporting"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"E"}],type:"consent"}],type:"list"},type:"ifcss"}],type:"list"},name:"DO_CONSENT"},{action:{parent:{selector:".optanon-save-settings-button"},target:{selector:".optanon-white-button-middle"},type:"click"},name:"SAVE_CONSENT"},{action:{actions:[{target:{selector:"#optanon-popup-wrapper"},type:"hide"},{target:{selector:"#optanon-popup-bg"},type:"hide"},{target:{selector:".optanon-alert-box-wrapper"},type:"hide"}],type:"list"},name:"HIDE_CMP"}]},quantcast2:{detectors:[{presentMatcher:{target:{selector:"[data-tracking-opt-in-overlay]"},type:"css"},showingMatcher:{target:{selector:"[data-tracking-opt-in-overlay] [data-tracking-opt-in-learn-more]"},type:"css"}}],methods:[{action:{target:{selector:"[data-tracking-opt-in-overlay] [data-tracking-opt-in-learn-more]"},type:"click"},name:"OPEN_OPTIONS"},{action:{actions:[{type:"wait",waitTime:500},{action:{actions:[{target:{selector:"div",textFilter:["Information storage and access"]},trueAction:{consents:[{matcher:{target:{selector:"input"},type:"checkbox"},toggleAction:{target:{selector:"label"},type:"click"},type:"D"}],type:"consent"},type:"ifcss"},{target:{selector:"div",textFilter:["Personalization"]},trueAction:{consents:[{matcher:{target:{selector:"input"},type:"checkbox"},toggleAction:{target:{selector:"label"},type:"click"},type:"F"}],type:"consent"},type:"ifcss"},{target:{selector:"div",textFilter:["Ad selection, delivery, reporting"]},trueAction:{consents:[{matcher:{target:{selector:"input"},type:"checkbox"},toggleAction:{target:{selector:"label"},type:"click"},type:"F"}],type:"consent"},type:"ifcss"},{target:{selector:"div",textFilter:["Content selection, delivery, reporting"]},trueAction:{consents:[{matcher:{target:{selector:"input"},type:"checkbox"},toggleAction:{target:{selector:"label"},type:"click"},type:"E"}],type:"consent"},type:"ifcss"},{target:{selector:"div",textFilter:["Measurement"]},trueAction:{consents:[{matcher:{target:{selector:"input"},type:"checkbox"},toggleAction:{target:{selector:"label"},type:"click"},type:"B"}],type:"consent"},type:"ifcss"},{target:{selector:"div",textFilter:["Other Partners"]},trueAction:{consents:[{matcher:{target:{selector:"input"},type:"checkbox"},toggleAction:{target:{selector:"label"},type:"click"},type:"X"}],type:"consent"},type:"ifcss"}],type:"list"},parent:{childFilter:{target:{selector:"input"}},selector:"[data-tracking-opt-in-overlay] > div > div"},target:{childFilter:{target:{selector:"input"}},selector:":scope > div"},type:"foreach"}],type:"list"},name:"DO_CONSENT"},{action:{target:{selector:"[data-tracking-opt-in-overlay] [data-tracking-opt-in-save]"},type:"click"},name:"SAVE_CONSENT"}]},springer:{detectors:[{presentMatcher:{parent:null,target:{selector:".cmp-app_gdpr"},type:"css"},showingMatcher:{parent:null,target:{displayFilter:!0,selector:".cmp-popup_popup"},type:"css"}}],methods:[{action:{actions:[{target:{selector:".cmp-intro_rejectAll"},type:"click"},{type:"wait",waitTime:250},{target:{selector:".cmp-purposes_purposeItem:not(.cmp-purposes_selectedPurpose)"},type:"click"}],type:"list"},name:"OPEN_OPTIONS"},{action:{consents:[{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Przechowywanie informacji na urządzeniu lub dostęp do nich",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Przechowywanie informacji na urządzeniu lub dostęp do nich",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"D"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Wybór podstawowych reklam",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Wybór podstawowych reklam",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"F"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Tworzenie profilu spersonalizowanych reklam",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Tworzenie profilu spersonalizowanych reklam",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"F"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Wybór spersonalizowanych reklam",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Wybór spersonalizowanych reklam",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"E"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Tworzenie profilu spersonalizowanych treści",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Tworzenie profilu spersonalizowanych treści",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"E"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Wybór spersonalizowanych treści",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Wybór spersonalizowanych treści",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"B"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Pomiar wydajności reklam",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Pomiar wydajności reklam",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"B"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Pomiar wydajności treści",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Pomiar wydajności treści",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"B"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Stosowanie badań rynkowych w celu generowania opinii odbiorców",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Stosowanie badań rynkowych w celu generowania opinii odbiorców",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"X"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Opracowywanie i ulepszanie produktów",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Opracowywanie i ulepszanie produktów",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"X"}],type:"consent"},name:"DO_CONSENT"},{action:{target:{selector:".cmp-details_save"},type:"click"},name:"SAVE_CONSENT"}]},wordpressgdpr:{detectors:[{presentMatcher:{parent:null,target:{selector:".wpgdprc-consent-bar"},type:"css"},showingMatcher:{parent:null,target:{displayFilter:!0,selector:".wpgdprc-consent-bar"},type:"css"}}],methods:[{action:{parent:null,target:{selector:".wpgdprc-consent-bar .wpgdprc-consent-bar__settings",textFilter:null},type:"click"},name:"OPEN_OPTIONS"},{action:{actions:[{target:{selector:".wpgdprc-consent-modal .wpgdprc-button",textFilter:"Eyeota"},type:"click"},{consents:[{description:"Eyeota Cookies",matcher:{parent:{selector:".wpgdprc-consent-modal__description",textFilter:"Eyeota"},target:{selector:"input"},type:"checkbox"},toggleAction:{parent:{selector:".wpgdprc-consent-modal__description",textFilter:"Eyeota"},target:{selector:"label"},type:"click"},type:"X"}],type:"consent"},{target:{selector:".wpgdprc-consent-modal .wpgdprc-button",textFilter:"Advertising"},type:"click"},{consents:[{description:"Advertising Cookies",matcher:{parent:{selector:".wpgdprc-consent-modal__description",textFilter:"Advertising"},target:{selector:"input"},type:"checkbox"},toggleAction:{parent:{selector:".wpgdprc-consent-modal__description",textFilter:"Advertising"},target:{selector:"label"},type:"click"},type:"F"}],type:"consent"}],type:"list"},name:"DO_CONSENT"},{action:{parent:null,target:{selector:".wpgdprc-button",textFilter:"Save my settings"},type:"click"},name:"SAVE_CONSENT"}]}},Vi={autoconsent:Bi,consentomatic:Ui},ji=Object.freeze({__proto__:null,autoconsent:Bi,consentomatic:Ui,default:Vi}); +!function(){"use strict";var e=class e{static setBase(t){e.base=t}static findElement(t,o=null,i=!1){let n=null;return n=null!=o?Array.from(o.querySelectorAll(t.selector)):null!=e.base?Array.from(e.base.querySelectorAll(t.selector)):Array.from(document.querySelectorAll(t.selector)),null!=t.textFilter&&(n=n.filter((e=>{const o=e.textContent.toLowerCase();if(Array.isArray(t.textFilter)){let e=!1;for(const i of t.textFilter)if(-1!==o.indexOf(i.toLowerCase())){e=!0;break}return e}if(null!=t.textFilter)return-1!==o.indexOf(t.textFilter.toLowerCase())}))),null!=t.styleFilters&&(n=n.filter((e=>{const o=window.getComputedStyle(e);let i=!0;for(const e of t.styleFilters){const t=o[e.option];i=e.negated?i&&t!==e.value:i&&t===e.value}return i}))),null!=t.displayFilter&&(n=n.filter((e=>t.displayFilter?0!==e.offsetHeight:0===e.offsetHeight))),null!=t.iframeFilter&&(n=n.filter((()=>t.iframeFilter?window.location!==window.parent.location:window.location===window.parent.location))),null!=t.childFilter&&(n=n.filter((o=>{const i=e.base;e.setBase(o);const n=e.find(t.childFilter);return e.setBase(i),null!=n.target}))),i?n:(n.length>1&&console.warn("Multiple possible targets: ",n,t,o),n[0])}static find(t,o=!1){const i=[];if(null!=t.parent){const n=e.findElement(t.parent,null,o);if(null!=n){if(n instanceof Array)return n.forEach((n=>{const s=e.findElement(t.target,n,o);s instanceof Array?s.forEach((e=>{i.push({parent:n,target:e})})):i.push({parent:n,target:s})})),i;{const s=e.findElement(t.target,n,o);s instanceof Array?s.forEach((e=>{i.push({parent:n,target:e})})):i.push({parent:n,target:s})}}}else{const n=e.findElement(t.target,null,o);n instanceof Array?n.forEach((e=>{i.push({parent:null,target:e})})):i.push({parent:null,target:n})}return 0===i.length&&i.push({parent:null,target:null}),o?i:(1!==i.length&&console.warn("Multiple results found, even though multiple false",i),i[0])}};e.base=null;var t=e;function o(e){const o=t.find(e);return"css"===e.type?!!o.target:"checkbox"===e.type?!!o.target&&o.target.checked:void 0}async function i(e,s){switch(e.type){case"click":return async function(e){const o=t.find(e);null!=o.target&&o.target.click();return n(0)}(e);case"list":return async function(e,t){for(const o of e.actions)await i(o,t)}(e,s);case"consent":return async function(e,t){for(const n of e.consents){const e=-1!==t.indexOf(n.type);if(n.matcher&&n.toggleAction){o(n.matcher)!==e&&await i(n.toggleAction)}else e?await i(n.trueAction):await i(n.falseAction)}}(e,s);case"ifcss":return async function(e,o){const n=t.find(e);n.target?e.falseAction&&await i(e.falseAction,o):e.trueAction&&await i(e.trueAction,o)}(e,s);case"waitcss":return async function(e){await new Promise((o=>{let i=e.retries||10;const n=e.waitTime||250,s=()=>{const c=t.find(e);(e.negated&&c.target||!e.negated&&!c.target)&&i>0?(i-=1,setTimeout(s,n)):o()};s()}))}(e);case"foreach":return async function(e,o){const n=t.find(e,!0),s=t.base;for(const s of n)s.target&&(t.setBase(s.target),await i(e.action,o));t.setBase(s)}(e,s);case"hide":return async function(e){const o=t.find(e);o.target&&o.target.classList.add("Autoconsent-Hidden")}(e);case"slide":return async function(e){const o=t.find(e),i=t.find(e.dragTarget);if(o.target){const e=o.target.getBoundingClientRect(),t=i.target.getBoundingClientRect();let n=t.top-e.top,s=t.left-e.left;"y"===this.config.axis.toLowerCase()&&(s=0),"x"===this.config.axis.toLowerCase()&&(n=0);const c=window.screenX+e.left+e.width/2,r=window.screenY+e.top+e.height/2,a=e.left+e.width/2,l=e.top+e.height/2,p=document.createEvent("MouseEvents");p.initMouseEvent("mousedown",!0,!0,window,0,c,r,a,l,!1,!1,!1,!1,0,o.target);const d=document.createEvent("MouseEvents");d.initMouseEvent("mousemove",!0,!0,window,0,c+s,r+n,a+s,l+n,!1,!1,!1,!1,0,o.target);const u=document.createEvent("MouseEvents");u.initMouseEvent("mouseup",!0,!0,window,0,c+s,r+n,a+s,l+n,!1,!1,!1,!1,0,o.target),o.target.dispatchEvent(p),await this.waitTimeout(10),o.target.dispatchEvent(d),await this.waitTimeout(10),o.target.dispatchEvent(u)}}(e);case"close":return async function(){window.close()}();case"wait":return async function(e){await n(e.waitTime)}(e);case"eval":return async function(e){return console.log("eval!",e.code),new Promise((t=>{try{e.async?(window.eval(e.code),setTimeout((()=>{t(window.eval("window.__consentCheckResult"))}),e.timeout||250)):t(window.eval(e.code))}catch(o){console.warn("eval error",o,e.code),t(!1)}}))}(e);default:throw"Unknown action type: "+e.type}}function n(e){return new Promise((t=>{setTimeout((()=>{t()}),e)}))}function s(){return crypto&&void 0!==crypto.randomUUID?crypto.randomUUID():Math.random().toString()}var c={pending:new Map,sendContentMessage:null};function r(e,t){const o=s();c.sendContentMessage({type:"eval",id:o,code:e,snippetId:t});const i=new class{constructor(e,t=1e3){this.id=e,this.promise=new Promise(((e,t)=>{this.resolve=e,this.reject=t})),this.timer=window.setTimeout((()=>{this.reject(new Error("timeout"))}),t)}}(o);return c.pending.set(i.id,i),i.promise}var a={EVAL_0:()=>console.log(1),EVAL_CONSENTMANAGER_1:()=>window.__cmp&&"object"==typeof __cmp("getCMPData"),EVAL_CONSENTMANAGER_2:()=>!__cmp("consentStatus").userChoiceExists,EVAL_CONSENTMANAGER_3:()=>__cmp("setConsent",0),EVAL_CONSENTMANAGER_4:()=>__cmp("setConsent",1),EVAL_CONSENTMANAGER_5:()=>__cmp("consentStatus").userChoiceExists,EVAL_COOKIEBOT_1:()=>!!window.Cookiebot,EVAL_COOKIEBOT_2:()=>!window.Cookiebot.hasResponse&&!0===window.Cookiebot.dialog?.visible,EVAL_COOKIEBOT_3:()=>window.Cookiebot.withdraw()||!0,EVAL_COOKIEBOT_4:()=>window.Cookiebot.hide()||!0,EVAL_COOKIEBOT_5:()=>!0===window.Cookiebot.declined,EVAL_KLARO_1:()=>{const e=globalThis.klaroConfig||globalThis.klaro?.getManager&&globalThis.klaro.getManager().config;if(!e)return!0;const t=(e.services||e.apps).filter((e=>!e.required)).map((e=>e.name));if(klaro&&klaro.getManager){const e=klaro.getManager();return t.every((t=>!e.consents[t]))}if(klaroConfig&&"cookie"===klaroConfig.storageMethod){const e=klaroConfig.cookieName||klaroConfig.storageName,o=JSON.parse(decodeURIComponent(document.cookie.split(";").find((t=>t.trim().startsWith(e))).split("=")[1]));return Object.keys(o).filter((e=>t.includes(e))).every((e=>!1===o[e]))}},EVAL_KLARO_OPEN_POPUP:()=>{klaro.show(void 0,!0)},EVAL_KLARO_TRY_API_OPT_OUT:()=>{if(window.klaro&&"function"==typeof klaro.show&&"function"==typeof klaro.getManager)try{return klaro.getManager().changeAll(!1),klaro.getManager().saveAndApplyConsents(),!0}catch(e){return console.warn(e),!1}return!1},EVAL_ONETRUST_1:()=>window.OnetrustActiveGroups.split(",").filter((e=>e.length>0)).length<=1,EVAL_TRUSTARC_TOP:()=>window&&window.truste&&"0"===window.truste.eu.bindMap.prefCookie,EVAL_TRUSTARC_FRAME_TEST:()=>window&&window.QueryString&&"0"===window.QueryString.preferences,EVAL_TRUSTARC_FRAME_GTM:()=>window&&window.QueryString&&"1"===window.QueryString.gtm,EVAL_ABC_TEST:()=>document.cookie.includes("trackingconsent"),EVAL_ADROLL_0:()=>!document.cookie.includes("__adroll_fpc"),EVAL_ALMACMP_0:()=>document.cookie.includes('"name":"Google","consent":false'),EVAL_AFFINITY_SERIF_COM_0:()=>document.cookie.includes("serif_manage_cookies_viewed")&&!document.cookie.includes("serif_allow_analytics"),EVAL_ARBEITSAGENTUR_TEST:()=>document.cookie.includes("cookie_consent=denied"),EVAL_AXEPTIO_0:()=>document.cookie.includes("axeptio_authorized_vendors=%2C%2C"),EVAL_BAHN_TEST:()=>1===utag.gdpr.getSelectedCategories().length,EVAL_BING_0:()=>document.cookie.includes("AL=0")&&document.cookie.includes("AD=0")&&document.cookie.includes("SM=0"),EVAL_BLOCKSY_0:()=>document.cookie.includes("blocksy_cookies_consent_accepted=no"),EVAL_BORLABS_0:()=>!JSON.parse(decodeURIComponent(document.cookie.split(";").find((e=>-1!==e.indexOf("borlabs-cookie"))).split("=",2)[1])).consents.statistics,EVAL_BUNDESREGIERUNG_DE_0:()=>document.cookie.match("cookie-allow-tracking=0"),EVAL_CANVA_0:()=>!document.cookie.includes("gtm_fpc_engagement_event"),EVAL_CC_BANNER2_0:()=>!!document.cookie.match(/sncc=[^;]+D%3Dtrue/),EVAL_CLICKIO_0:()=>document.cookie.includes("__lxG__consent__v2_daisybit="),EVAL_CLINCH_0:()=>document.cookie.includes("ctc_rejected=1"),EVAL_COOKIECONSENT2_TEST:()=>document.cookie.includes("cc_cookie="),EVAL_COOKIECONSENT3_TEST:()=>document.cookie.includes("cc_cookie="),EVAL_COINBASE_0:()=>JSON.parse(decodeURIComponent(document.cookie.match(/cm_(eu|default)_preferences=([0-9a-zA-Z\\{\\}\\[\\]%:]*);?/)[2])).consent.length<=1,EVAL_COMPLIANZ_BANNER_0:()=>document.cookie.includes("cmplz_banner-status=dismissed"),EVAL_COOKIE_LAW_INFO_0:()=>CLI.disableAllCookies()||CLI.reject_close()||!0,EVAL_COOKIE_LAW_INFO_1:()=>-1===document.cookie.indexOf("cookielawinfo-checkbox-non-necessary=yes"),EVAL_COOKIE_LAW_INFO_DETECT:()=>!!window.CLI,EVAL_COOKIE_MANAGER_POPUP_0:()=>!1===JSON.parse(document.cookie.split(";").find((e=>e.trim().startsWith("CookieLevel"))).split("=")[1]).social,EVAL_COOKIEALERT_0:()=>document.querySelector("body").removeAttribute("style")||!0,EVAL_COOKIEALERT_1:()=>document.querySelector("body").removeAttribute("style")||!0,EVAL_COOKIEALERT_2:()=>!0===window.CookieConsent.declined,EVAL_COOKIEFIRST_0:()=>{return!1===(e=JSON.parse(decodeURIComponent(document.cookie.split(";").find((e=>-1!==e.indexOf("cookiefirst"))).trim()).split("=")[1])).performance&&!1===e.functional&&!1===e.advertising;var e},EVAL_COOKIEFIRST_1:()=>document.querySelectorAll("button[data-cookiefirst-accent-color=true][role=checkbox]:not([disabled])").forEach((e=>"true"==e.getAttribute("aria-checked")&&e.click()))||!0,EVAL_COOKIEINFORMATION_0:()=>CookieInformation.declineAllCategories()||!0,EVAL_COOKIEINFORMATION_1:()=>CookieInformation.submitAllCategories()||!0,EVAL_COOKIEINFORMATION_2:()=>document.cookie.includes("CookieInformationConsent="),EVAL_COOKIEYES_0:()=>document.cookie.includes("advertisement:no"),EVAL_DAILYMOTION_0:()=>!!document.cookie.match("dm-euconsent-v2"),EVAL_DNDBEYOND_TEST:()=>document.cookie.includes("cookie-consent=denied"),EVAL_DSGVO_0:()=>!document.cookie.includes("sp_dsgvo_cookie_settings"),EVAL_DUNELM_0:()=>document.cookie.includes("cc_functional=0")&&document.cookie.includes("cc_targeting=0"),EVAL_ETSY_0:()=>document.querySelectorAll(".gdpr-overlay-body input").forEach((e=>{e.checked=!1}))||!0,EVAL_ETSY_1:()=>document.querySelector(".gdpr-overlay-view button[data-wt-overlay-close]").click()||!0,EVAL_EU_COOKIE_COMPLIANCE_0:()=>-1===document.cookie.indexOf("cookie-agreed=2"),EVAL_EU_COOKIE_LAW_0:()=>!document.cookie.includes("euCookie"),EVAL_EZOIC_0:()=>ezCMP.handleAcceptAllClick(),EVAL_EZOIC_1:()=>!!document.cookie.match(/ez-consent-tcf/),EVAL_FIDES_DETECT_POPUP:()=>window.Fides?.initialized,EVAL_GOOGLE_0:()=>!!document.cookie.match(/SOCS=CAE/),EVAL_HEMA_TEST_0:()=>document.cookie.includes("cookies_rejected=1"),EVAL_IUBENDA_0:()=>document.querySelectorAll(".purposes-item input[type=checkbox]:not([disabled])").forEach((e=>{e.checked&&e.click()}))||!0,EVAL_IUBENDA_1:()=>!!document.cookie.match(/_iub_cs-\d+=/),EVAL_IWINK_TEST:()=>document.cookie.includes("cookie_permission_granted=no"),EVAL_JQUERY_COOKIEBAR_0:()=>!document.cookie.includes("cookies-state=accepted"),EVAL_KETCH_TEST:()=>document.cookie.includes("_ketch_consent_v1_"),EVAL_MEDIAVINE_0:()=>document.querySelectorAll('[data-name="mediavine-gdpr-cmp"] input[type=checkbox]').forEach((e=>e.checked&&e.click()))||!0,EVAL_MICROSOFT_0:()=>Array.from(document.querySelectorAll("div > button")).filter((e=>e.innerText.match("Reject|Ablehnen")))[0].click()||!0,EVAL_MICROSOFT_1:()=>Array.from(document.querySelectorAll("div > button")).filter((e=>e.innerText.match("Accept|Annehmen")))[0].click()||!0,EVAL_MICROSOFT_2:()=>!!document.cookie.match("MSCC|GHCC"),EVAL_MOOVE_0:()=>document.querySelectorAll("#moove_gdpr_cookie_modal input").forEach((e=>{e.disabled||(e.checked="moove_gdpr_strict_cookies"===e.name||"moove_gdpr_strict_cookies"===e.id)}))||!0,EVAL_ONENINETWO_0:()=>document.cookie.includes("CC_ADVERTISING=NO")&&document.cookie.includes("CC_ANALYTICS=NO"),EVAL_OPENAI_TEST:()=>document.cookie.includes("oai-allow-ne=false"),EVAL_OPERA_0:()=>document.cookie.includes("cookie_consent_essential=true")&&!document.cookie.includes("cookie_consent_marketing=true"),EVAL_PAYPAL_0:()=>!0===document.cookie.includes("cookie_prefs"),EVAL_PRIMEBOX_0:()=>!document.cookie.includes("cb-enabled=accepted"),EVAL_PUBTECH_0:()=>document.cookie.includes("euconsent-v2")&&(document.cookie.match(/.YAAAAAAAAAAA/)||document.cookie.match(/.aAAAAAAAAAAA/)||document.cookie.match(/.YAAACFgAAAAA/)),EVAL_REDDIT_0:()=>document.cookie.includes("eu_cookie={%22opted%22:true%2C%22nonessential%22:false}"),EVAL_ROBLOX_TEST:()=>document.cookie.includes("RBXcb"),EVAL_SIRDATA_UNBLOCK_SCROLL:()=>(document.documentElement.classList.forEach((e=>{e.startsWith("sd-cmp-")&&document.documentElement.classList.remove(e)})),!0),EVAL_SNIGEL_0:()=>!!document.cookie.match("snconsent"),EVAL_STEAMPOWERED_0:()=>2===JSON.parse(decodeURIComponent(document.cookie.split(";").find((e=>e.trim().startsWith("cookieSettings"))).split("=")[1])).preference_state,EVAL_SVT_TEST:()=>document.cookie.includes('cookie-consent-1={"optedIn":true,"functionality":false,"statistics":false}'),EVAL_TAKEALOT_0:()=>document.body.classList.remove("freeze")||(document.body.style="")||!0,EVAL_TARTEAUCITRON_0:()=>tarteaucitron.userInterface.respondAll(!1)||!0,EVAL_TARTEAUCITRON_1:()=>tarteaucitron.userInterface.respondAll(!0)||!0,EVAL_TARTEAUCITRON_2:()=>document.cookie.match(/tarteaucitron=[^;]*/)?.[0].includes("false"),EVAL_TAUNTON_TEST:()=>document.cookie.includes("taunton_user_consent_submitted=true"),EVAL_TEALIUM_0:()=>void 0!==window.utag&&"object"==typeof utag.gdpr,EVAL_TEALIUM_1:()=>utag.gdpr.setConsentValue(!1)||!0,EVAL_TEALIUM_DONOTSELL:()=>utag.gdpr.dns?.setDnsState(!1)||!0,EVAL_TEALIUM_2:()=>utag.gdpr.setConsentValue(!0)||!0,EVAL_TEALIUM_3:()=>1!==utag.gdpr.getConsentState(),EVAL_TEALIUM_DONOTSELL_CHECK:()=>1!==utag.gdpr.dns?.getDnsState(),EVAL_TESLA_TEST:()=>document.cookie.includes("tsla-cookie-consent=rejected"),EVAL_TESTCMP_0:()=>"button_clicked"===window.results.results[0],EVAL_TESTCMP_COSMETIC_0:()=>"banner_hidden"===window.results.results[0],EVAL_THEFREEDICTIONARY_0:()=>cmpUi.showPurposes()||cmpUi.rejectAll()||!0,EVAL_THEFREEDICTIONARY_1:()=>cmpUi.allowAll()||!0,EVAL_THEVERGE_0:()=>document.cookie.includes("_duet_gdpr_acknowledged=1"),EVAL_TWCC_TEST:()=>document.cookie.includes("twCookieConsent="),EVAL_UBUNTU_COM_0:()=>document.cookie.includes("_cookies_accepted=essential"),EVAL_UK_COOKIE_CONSENT_0:()=>!document.cookie.includes("catAccCookies"),EVAL_USERCENTRICS_API_0:()=>"object"==typeof UC_UI,EVAL_USERCENTRICS_API_1:()=>!!UC_UI.closeCMP(),EVAL_USERCENTRICS_API_2:()=>!!UC_UI.denyAllConsents(),EVAL_USERCENTRICS_API_3:()=>!!UC_UI.acceptAllConsents(),EVAL_USERCENTRICS_API_4:()=>!!UC_UI.closeCMP(),EVAL_USERCENTRICS_API_5:()=>!0===UC_UI.areAllConsentsAccepted(),EVAL_USERCENTRICS_API_6:()=>!1===UC_UI.areAllConsentsAccepted(),EVAL_USERCENTRICS_BUTTON_0:()=>JSON.parse(localStorage.getItem("usercentrics")).consents.every((e=>e.isEssential||!e.consentStatus)),EVAL_WAITROSE_0:()=>Array.from(document.querySelectorAll("label[id$=cookies-deny-label]")).forEach((e=>e.click()))||!0,EVAL_WAITROSE_1:()=>document.cookie.includes("wtr_cookies_advertising=0")&&document.cookie.includes("wtr_cookies_analytics=0"),EVAL_WP_COOKIE_NOTICE_0:()=>document.cookie.includes("wpl_viewed_cookie=no"),EVAL_XE_TEST:()=>document.cookie.includes("xeConsentState={%22performance%22:false%2C%22marketing%22:false%2C%22compliance%22:false}"),EVAL_XING_0:()=>document.cookie.includes("userConsent=%7B%22marketing%22%3Afalse"),EVAL_YOUTUBE_DESKTOP_0:()=>!!document.cookie.match(/SOCS=CAE/),EVAL_YOUTUBE_MOBILE_0:()=>!!document.cookie.match(/SOCS=CAE/)};var l={main:!0,frame:!1,urlPattern:""},p=class{constructor(e){this.runContext=l,this.autoconsent=e}get hasSelfTest(){throw new Error("Not Implemented")}get isIntermediate(){throw new Error("Not Implemented")}get isCosmetic(){throw new Error("Not Implemented")}mainWorldEval(e){const t=a[e];if(!t)return console.warn("Snippet not found",e),Promise.resolve(!1);const o=this.autoconsent.config.logs;if(this.autoconsent.config.isMainWorld){o.evals&&console.log("inline eval:",e,t);let i=!1;try{i=!!t.call(globalThis)}catch(t){o.evals&&console.error("error evaluating rule",e,t)}return Promise.resolve(i)}const i=`(${t.toString()})()`;return o.evals&&console.log("async eval:",e,i),r(i,e).catch((t=>(o.evals&&console.error("error evaluating rule",e,t),!1)))}checkRunContext(){const e={...l,...this.runContext},t=window.top===window;return!(t&&!e.main)&&(!(!t&&!e.frame)&&!(e.urlPattern&&!window.location.href.match(e.urlPattern)))}detectCmp(){throw new Error("Not Implemented")}async detectPopup(){return!1}optOut(){throw new Error("Not Implemented")}optIn(){throw new Error("Not Implemented")}openCmp(){throw new Error("Not Implemented")}async test(){return Promise.resolve(!0)}click(e,t=!1){return this.autoconsent.domActions.click(e,t)}elementExists(e){return this.autoconsent.domActions.elementExists(e)}elementVisible(e,t){return this.autoconsent.domActions.elementVisible(e,t)}waitForElement(e,t){return this.autoconsent.domActions.waitForElement(e,t)}waitForVisible(e,t,o){return this.autoconsent.domActions.waitForVisible(e,t,o)}waitForThenClick(e,t,o){return this.autoconsent.domActions.waitForThenClick(e,t,o)}wait(e){return this.autoconsent.domActions.wait(e)}hide(e,t){return this.autoconsent.domActions.hide(e,t)}prehide(e){return this.autoconsent.domActions.prehide(e)}undoPrehide(){return this.autoconsent.domActions.undoPrehide()}querySingleReplySelector(e,t){return this.autoconsent.domActions.querySingleReplySelector(e,t)}querySelectorChain(e){return this.autoconsent.domActions.querySelectorChain(e)}elementSelector(e){return this.autoconsent.domActions.elementSelector(e)}},d=class extends p{constructor(e,t){super(t),this.rule=e,this.name=e.name,this.runContext=e.runContext||l}get hasSelfTest(){return!!this.rule.test}get isIntermediate(){return!!this.rule.intermediate}get isCosmetic(){return!!this.rule.cosmetic}get prehideSelectors(){return this.rule.prehideSelectors}async detectCmp(){return!!this.rule.detectCmp&&this._runRulesParallel(this.rule.detectCmp)}async detectPopup(){return!!this.rule.detectPopup&&this._runRulesSequentially(this.rule.detectPopup)}async optOut(){const e=this.autoconsent.config.logs;return!!this.rule.optOut&&(e.lifecycle&&console.log("Initiated optOut()",this.rule.optOut),this._runRulesSequentially(this.rule.optOut))}async optIn(){const e=this.autoconsent.config.logs;return!!this.rule.optIn&&(e.lifecycle&&console.log("Initiated optIn()",this.rule.optIn),this._runRulesSequentially(this.rule.optIn))}async openCmp(){return!!this.rule.openCmp&&this._runRulesSequentially(this.rule.openCmp)}async test(){return this.hasSelfTest?this._runRulesSequentially(this.rule.test):super.test()}async evaluateRuleStep(e){const t=[],o=this.autoconsent.config.logs;if(e.exists&&t.push(this.elementExists(e.exists)),e.visible&&t.push(this.elementVisible(e.visible,e.check)),e.eval){const o=this.mainWorldEval(e.eval);t.push(o)}if(e.waitFor&&t.push(this.waitForElement(e.waitFor,e.timeout)),e.waitForVisible&&t.push(this.waitForVisible(e.waitForVisible,e.timeout,e.check)),e.click&&t.push(this.click(e.click,e.all)),e.waitForThenClick&&t.push(this.waitForThenClick(e.waitForThenClick,e.timeout,e.all)),e.wait&&t.push(this.wait(e.wait)),e.hide&&t.push(this.hide(e.hide,e.method)),e.if){if(!e.if.exists&&!e.if.visible)return console.error("invalid conditional rule",e.if),!1;const i=await this.evaluateRuleStep(e.if);o.rulesteps&&console.log("Condition is",i),i?t.push(this._runRulesSequentially(e.then)):e.else?t.push(this._runRulesSequentially(e.else)):t.push(!0)}if(e.any){for(const t of e.any)if(await this.evaluateRuleStep(t))return!0;return!1}if(0===t.length)return o.errors&&console.warn("Unrecognized rule",e),!1;return(await Promise.all(t)).reduce(((e,t)=>e&&t),!0)}async _runRulesParallel(e){const t=e.map((e=>this.evaluateRuleStep(e)));return(await Promise.all(t)).every((e=>!!e))}async _runRulesSequentially(e){const t=this.autoconsent.config.logs;for(const o of e){t.rulesteps&&console.log("Running rule...",o);const e=await this.evaluateRuleStep(o);if(t.rulesteps&&console.log("...rule result",e),!e&&!o.optional)return!1}return!0}};function u(e="autoconsent-css-rules"){const t=`style#${e}`,o=document.querySelector(t);if(o&&o instanceof HTMLStyleElement)return o;{const t=document.head||document.getElementsByTagName("head")[0]||document.documentElement,o=document.createElement("style");return o.id=e,t.appendChild(o),o}}function h(e){return`${"opacity"===e?"opacity: 0":"display: none"} !important; z-index: -1 !important; pointer-events: none !important;`}function m(e,t,o="display"){const i=`${t} { ${h(o)} } `;return e instanceof HTMLStyleElement&&(e.innerText+=i,t.length>0)}async function A(e,t,o){const i=await e();return!i&&t>0?new Promise((i=>{setTimeout((async()=>{i(A(e,t-1,o))}),o)})):Promise.resolve(i)}function g(e){if(!e)return!1;if(null!==e.offsetParent)return!0;{const t=window.getComputedStyle(e);if("fixed"===t.position&&"none"!==t.display)return!0}return!1}function f(e){const t={enabled:!0,autoAction:"optOut",disabledCmps:[],enablePrehide:!0,enableCosmeticRules:!0,detectRetries:20,isMainWorld:!1,prehideTimeout:2e3,enableFilterList:!1,logs:{lifecycle:!1,rulesteps:!1,evals:!1,errors:!0,messages:!1}},o=(i=t,globalThis.structuredClone?structuredClone(i):JSON.parse(JSON.stringify(i)));var i;for(const i of Object.keys(t))void 0!==e[i]&&(o[i]=e[i]);return o}var k="#truste-show-consent",b="#truste-consent-track",y=[class extends p{constructor(e){super(e),this.name="TrustArc-top",this.prehideSelectors=[".trustarc-banner-container",`.truste_popframe,.truste_overlay,.truste_box_overlay,${b}`],this.runContext={main:!0,frame:!1},this._shortcutButton=null,this._optInDone=!1}get hasSelfTest(){return!0}get isIntermediate(){return!this._optInDone&&!this._shortcutButton}get isCosmetic(){return!1}async detectCmp(){const e=this.elementExists(`${k},${b}`);return e&&(this._shortcutButton=document.querySelector("#truste-consent-required")),e}async detectPopup(){return this.elementVisible(`#truste-consent-content,#trustarc-banner-overlay,${b}`,"all")}openFrame(){this.click(k)}async optOut(){return this._shortcutButton?(this._shortcutButton.click(),!0):(m(u(),`.truste_popframe, .truste_overlay, .truste_box_overlay, ${b}`),this.click(k),setTimeout((()=>{u().remove()}),1e4),!0)}async optIn(){return this._optInDone=!0,this.click("#truste-consent-button")}async openCmp(){return!0}async test(){return await this.wait(500),await this.mainWorldEval("EVAL_TRUSTARC_TOP")}},class extends p{constructor(){super(...arguments),this.name="TrustArc-frame",this.runContext={main:!1,frame:!0,urlPattern:"^https://consent-pref\\.trustarc\\.com/\\?"}}get hasSelfTest(){return!0}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return!0}async detectPopup(){return this.elementVisible("#defaultpreferencemanager","any")&&this.elementVisible(".mainContent","any")}async navigateToSettings(){return await A((async()=>this.elementExists(".shp")||this.elementVisible(".advance","any")||this.elementExists(".switch span:first-child")),10,500),this.elementExists(".shp")&&this.click(".shp"),await this.waitForElement(".prefPanel",5e3),this.elementVisible(".advance","any")&&this.click(".advance"),await A((()=>this.elementVisible(".switch span:first-child","any")),5,1e3)}async optOut(){if(await this.mainWorldEval("EVAL_TRUSTARC_FRAME_TEST"))return!0;let e=3e3;return await this.mainWorldEval("EVAL_TRUSTARC_FRAME_GTM")&&(e=1500),await A((()=>"complete"===document.readyState),20,100),await this.waitForElement(".mainContent[aria-hidden=false]",e),!!this.click(".rejectAll")||(this.elementExists(".prefPanel")&&await this.waitForElement('.prefPanel[style="visibility: visible;"]',e),this.click("#catDetails0")?(this.click(".submit"),this.waitForThenClick("#gwt-debug-close_id",e),!0):this.click(".required")?(this.waitForThenClick("#gwt-debug-close_id",e),!0):(await this.navigateToSettings(),this.click(".switch span:nth-child(1):not(.active)",!0),this.click(".submit"),this.waitForThenClick("#gwt-debug-close_id",10*e),!0))}async optIn(){return this.click(".call")||(await this.navigateToSettings(),this.click(".switch span:nth-child(2)",!0),this.click(".submit"),this.waitForElement("#gwt-debug-close_id",3e5).then((()=>{this.click("#gwt-debug-close_id")}))),!0}async test(){return await this.wait(500),await this.mainWorldEval("EVAL_TRUSTARC_FRAME_TEST")}},class extends p{constructor(){super(...arguments),this.name="Cybotcookiebot",this.prehideSelectors=["#CybotCookiebotDialog,#CybotCookiebotDialogBodyUnderlay,#dtcookie-container,#cookiebanner,#cb-cookieoverlay,.modal--cookie-banner,#cookiebanner_outer,#CookieBanner"]}get hasSelfTest(){return!0}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return await this.mainWorldEval("EVAL_COOKIEBOT_1")}async detectPopup(){return this.mainWorldEval("EVAL_COOKIEBOT_2")}async optOut(){await this.wait(500);let e=await this.mainWorldEval("EVAL_COOKIEBOT_3");return await this.wait(500),e=e&&await this.mainWorldEval("EVAL_COOKIEBOT_4"),e}async optIn(){return this.elementExists("#dtcookie-container")?this.click(".h-dtcookie-accept"):(this.click(".CybotCookiebotDialogBodyLevelButton:not(:checked):enabled",!0),this.click("#CybotCookiebotDialogBodyLevelButtonAccept"),this.click("#CybotCookiebotDialogBodyButtonAccept"),!0)}async test(){return await this.wait(500),await this.mainWorldEval("EVAL_COOKIEBOT_5")}},class extends p{constructor(){super(...arguments),this.name="Sourcepoint-frame",this.prehideSelectors=["div[id^='sp_message_container_'],.message-overlay","#sp_privacy_manager_container"],this.ccpaNotice=!1,this.ccpaPopup=!1,this.runContext={main:!0,frame:!0}}get hasSelfTest(){return!1}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){const e=new URL(location.href);return e.searchParams.has("message_id")&&"ccpa-notice.sp-prod.net"===e.hostname?(this.ccpaNotice=!0,!0):"ccpa-pm.sp-prod.net"===e.hostname?(this.ccpaPopup=!0,!0):("/index.html"===e.pathname||"/privacy-manager/index.html"===e.pathname||"/ccpa_pm/index.html"===e.pathname)&&(e.searchParams.has("message_id")||e.searchParams.has("requestUUID")||e.searchParams.has("consentUUID"))}async detectPopup(){return!!this.ccpaNotice||(this.ccpaPopup?await this.waitForElement(".priv-save-btn",2e3):(await this.waitForElement(".sp_choice_type_11,.sp_choice_type_12,.sp_choice_type_13,.sp_choice_type_ACCEPT_ALL,.sp_choice_type_SAVE_AND_EXIT",2e3),!this.elementExists(".sp_choice_type_9")))}async optIn(){return await this.waitForElement(".sp_choice_type_11,.sp_choice_type_ACCEPT_ALL",2e3),!!this.click(".sp_choice_type_11")||!!this.click(".sp_choice_type_ACCEPT_ALL")}isManagerOpen(){return"/privacy-manager/index.html"===location.pathname||"/ccpa_pm/index.html"===location.pathname}async optOut(){const e=this.autoconsent.config.logs;if(this.ccpaPopup){const e=document.querySelectorAll(".priv-purpose-container .sp-switch-arrow-block a.neutral.on .right");for(const t of e)t.click();const t=document.querySelectorAll(".priv-purpose-container .sp-switch-arrow-block a.switch-bg.on");for(const e of t)e.click();return this.click(".priv-save-btn")}if(!this.isManagerOpen()){if(!await this.waitForElement(".sp_choice_type_12,.sp_choice_type_13"))return!1;if(!this.elementExists(".sp_choice_type_12"))return this.click(".sp_choice_type_13");this.click(".sp_choice_type_12"),await A((()=>this.isManagerOpen()),200,100)}await this.waitForElement(".type-modal",2e4),this.waitForThenClick(".ccpa-stack .pm-switch[aria-checked=true] .slider",500,!0);try{const e=".sp_choice_type_REJECT_ALL",t=".reject-toggle",o=await Promise.race([this.waitForElement(e,2e3).then((e=>e?0:-1)),this.waitForElement(t,2e3).then((e=>e?1:-1)),this.waitForElement(".pm-features",2e3).then((e=>e?2:-1))]);if(0===o)return await this.wait(1500),this.click(e);1===o?this.click(t):2===o&&(await this.waitForElement(".pm-features",1e4),this.click(".checked > span",!0),this.click(".chevron"))}catch(t){e.errors&&console.warn(t)}return this.click(".sp_choice_type_SAVE_AND_EXIT")}},class extends p{constructor(){super(...arguments),this.name="consentmanager.net",this.prehideSelectors=["#cmpbox,#cmpbox2"],this.apiAvailable=!1}get hasSelfTest(){return this.apiAvailable}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return this.apiAvailable=await this.mainWorldEval("EVAL_CONSENTMANAGER_1"),!!this.apiAvailable||this.elementExists("#cmpbox")}async detectPopup(){return this.apiAvailable?(await this.wait(500),await this.mainWorldEval("EVAL_CONSENTMANAGER_2")):this.elementVisible("#cmpbox .cmpmore","any")}async optOut(){return await this.wait(500),this.apiAvailable?await this.mainWorldEval("EVAL_CONSENTMANAGER_3"):!!this.click(".cmpboxbtnno")||(this.elementExists(".cmpwelcomeprpsbtn")?(this.click(".cmpwelcomeprpsbtn > a[aria-checked=true]",!0),this.click(".cmpboxbtnsave"),!0):(this.click(".cmpboxbtncustom"),await this.waitForElement(".cmptblbox",2e3),this.click(".cmptdchoice > a[aria-checked=true]",!0),this.click(".cmpboxbtnyescustomchoices"),this.hide("#cmpwrapper,#cmpbox","display"),!0))}async optIn(){return this.apiAvailable?await this.mainWorldEval("EVAL_CONSENTMANAGER_4"):this.click(".cmpboxbtnyes")}async test(){if(this.apiAvailable)return await this.mainWorldEval("EVAL_CONSENTMANAGER_5")}},class extends p{constructor(){super(...arguments),this.name="Evidon"}get hasSelfTest(){return!1}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return this.elementExists("#_evidon_banner")}async detectPopup(){return this.elementVisible("#_evidon_banner","any")}async optOut(){return this.click("#_evidon-decline-button")||(m(u(),"#evidon-prefdiag-overlay,#evidon-prefdiag-background,#_evidon-background"),await this.waitForThenClick("#_evidon-option-button"),await this.waitForElement("#evidon-prefdiag-overlay",5e3),await this.wait(500),await this.waitForThenClick("#evidon-prefdiag-decline")),!0}async optIn(){return this.click("#_evidon-accept-button")}},class extends p{constructor(){super(...arguments),this.name="Onetrust",this.prehideSelectors=["#onetrust-banner-sdk,#onetrust-consent-sdk,.onetrust-pc-dark-filter,.js-consent-banner"],this.runContext={urlPattern:"^(?!.*https://www\\.nba\\.com/)"}}get hasSelfTest(){return!0}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return this.elementExists("#onetrust-banner-sdk,#onetrust-pc-sdk")}async detectPopup(){return this.elementVisible("#onetrust-banner-sdk,#onetrust-pc-sdk","any")}async optOut(){return this.elementVisible("#onetrust-reject-all-handler,.ot-pc-refuse-all-handler,.js-reject-cookies","any")?this.click("#onetrust-reject-all-handler,.ot-pc-refuse-all-handler,.js-reject-cookies"):(this.elementExists("#onetrust-pc-btn-handler")?this.click("#onetrust-pc-btn-handler"):this.click(".ot-sdk-show-settings,button.js-cookie-settings"),await this.waitForElement("#onetrust-consent-sdk",2e3),await this.wait(1e3),this.click("#onetrust-consent-sdk input.category-switch-handler:checked,.js-editor-toggle-state:checked",!0),await this.wait(1e3),await this.waitForElement(".save-preference-btn-handler,.js-consent-save",2e3),this.click(".save-preference-btn-handler,.js-consent-save"),await this.waitForVisible("#onetrust-banner-sdk",5e3,"none"),!0)}async optIn(){return this.click("#onetrust-accept-btn-handler,#accept-recommended-btn-handler,.js-accept-cookies")}async test(){return await A((()=>this.mainWorldEval("EVAL_ONETRUST_1")),10,500)}},class extends p{constructor(){super(...arguments),this.name="Klaro",this.prehideSelectors=[".klaro"],this.settingsOpen=!1}get hasSelfTest(){return!0}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return this.elementExists(".klaro > .cookie-modal")?(this.settingsOpen=!0,!0):this.elementExists(".klaro > .cookie-notice")}async detectPopup(){return this.elementVisible(".klaro > .cookie-notice,.klaro > .cookie-modal","any")}async optOut(){return!!await this.mainWorldEval("EVAL_KLARO_TRY_API_OPT_OUT")||(!!this.click(".klaro .cn-decline")||(await this.mainWorldEval("EVAL_KLARO_OPEN_POPUP"),!!this.click(".klaro .cn-decline")||(this.click(".cm-purpose:not(.cm-toggle-all) > input:not(.half-checked,.required,.only-required),.cm-purpose:not(.cm-toggle-all) > div > input:not(.half-checked,.required,.only-required)",!0),this.click(".cm-btn-accept,.cm-button"))))}async optIn(){return!!this.click(".klaro .cm-btn-accept-all")||(this.settingsOpen?(this.click(".cm-purpose:not(.cm-toggle-all) > input.half-checked",!0),this.click(".cm-btn-accept")):this.click(".klaro .cookie-notice .cm-btn-success"))}async test(){return await this.mainWorldEval("EVAL_KLARO_1")}},class extends p{constructor(){super(...arguments),this.name="Uniconsent"}get prehideSelectors(){return[".unic",".modal:has(.unic)"]}get hasSelfTest(){return!0}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return this.elementExists(".unic .unic-box,.unic .unic-bar,.unic .unic-modal")}async detectPopup(){return this.elementVisible(".unic .unic-box,.unic .unic-bar,.unic .unic-modal","any")}async optOut(){if(await this.waitForElement(".unic button",1e3),document.querySelectorAll(".unic button").forEach((e=>{const t=e.textContent;(t.includes("Manage Options")||t.includes("Optionen verwalten"))&&e.click()})),await this.waitForElement(".unic input[type=checkbox]",1e3)){await this.waitForElement(".unic button",1e3),document.querySelectorAll(".unic input[type=checkbox]").forEach((e=>{e.checked&&e.click()}));for(const e of document.querySelectorAll(".unic button")){const t=e.textContent;for(const o of["Confirm Choices","Save Choices","Auswahl speichern"])if(t.includes(o))return e.click(),await this.wait(500),!0}}return!1}async optIn(){return this.waitForThenClick(".unic #unic-agree")}async test(){await this.wait(1e3);return!this.elementExists(".unic .unic-box,.unic .unic-bar")}},class extends p{constructor(){super(...arguments),this.prehideSelectors=[".cmp-root"],this.name="Conversant"}get hasSelfTest(){return!0}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return this.elementExists(".cmp-root .cmp-receptacle")}async detectPopup(){return this.elementVisible(".cmp-root .cmp-receptacle","any")}async optOut(){if(!await this.waitForThenClick(".cmp-main-button:not(.cmp-main-button--primary)"))return!1;if(!await this.waitForElement(".cmp-view-tab-tabs"))return!1;await this.waitForThenClick(".cmp-view-tab-tabs > :first-child"),await this.waitForThenClick(".cmp-view-tab-tabs > .cmp-view-tab--active:first-child");for(const e of Array.from(document.querySelectorAll(".cmp-accordion-item"))){e.querySelector(".cmp-accordion-item-title").click(),await A((()=>!!e.querySelector(".cmp-accordion-item-content.cmp-active")),10,50);const t=e.querySelector(".cmp-accordion-item-content.cmp-active");t.querySelectorAll(".cmp-toggle-actions .cmp-toggle-deny:not(.cmp-toggle-deny--active)").forEach((e=>e.click())),t.querySelectorAll(".cmp-toggle-actions .cmp-toggle-checkbox:not(.cmp-toggle-checkbox--active)").forEach((e=>e.click()))}return await this.click(".cmp-main-button:not(.cmp-main-button--primary)"),!0}async optIn(){return this.waitForThenClick(".cmp-main-button.cmp-main-button--primary")}async test(){return document.cookie.includes("cmp-data=0")}},class extends p{constructor(){super(...arguments),this.name="tiktok.com",this.runContext={urlPattern:"tiktok"}}get hasSelfTest(){return!0}get isIntermediate(){return!1}get isCosmetic(){return!1}getShadowRoot(){const e=document.querySelector("tiktok-cookie-banner");return e?e.shadowRoot:null}async detectCmp(){return this.elementExists("tiktok-cookie-banner")}async detectPopup(){return g(this.getShadowRoot().querySelector(".tiktok-cookie-banner"))}async optOut(){const e=this.autoconsent.config.logs,t=this.getShadowRoot().querySelector(".button-wrapper button:first-child");return t?(e.rulesteps&&console.log("[clicking]",t),t.click(),!0):(e.errors&&console.log("no decline button found"),!1)}async optIn(){const e=this.autoconsent.config.logs,t=this.getShadowRoot().querySelector(".button-wrapper button:last-child");return t?(e.rulesteps&&console.log("[clicking]",t),t.click(),!0):(e.errors&&console.log("no accept button found"),!1)}async test(){const e=document.cookie.match(/cookie-consent=([^;]+)/);if(!e)return!1;const t=JSON.parse(decodeURIComponent(e[1]));return Object.values(t).every((e=>"boolean"!=typeof e||!1===e))}},class extends p{constructor(){super(...arguments),this.name="airbnb",this.runContext={urlPattern:"^https://(www\\.)?airbnb\\.[^/]+/"},this.prehideSelectors=["div[data-testid=main-cookies-banner-container]",'div:has(> div:first-child):has(> div:last-child):has(> section [data-testid="strictly-necessary-cookies"])']}get hasSelfTest(){return!0}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return this.elementExists("div[data-testid=main-cookies-banner-container]")}async detectPopup(){return this.elementVisible("div[data-testid=main-cookies-banner-container","any")}async optOut(){let e;for(await this.waitForThenClick("div[data-testid=main-cookies-banner-container] button._snbhip0");e=document.querySelector("[data-testid=modal-container] button[aria-checked=true]:not([disabled])");)e.click();return this.waitForThenClick("button[data-testid=save-btn]")}async optIn(){return this.waitForThenClick("div[data-testid=main-cookies-banner-container] button._148dgdpk")}async test(){return await A((()=>!!document.cookie.match("OptanonAlertBoxClosed")),20,200)}},class extends p{constructor(){super(...arguments),this.name="tumblr-com",this.runContext={urlPattern:"^https://(www\\.)?tumblr\\.com/"}}get hasSelfTest(){return!1}get isIntermediate(){return!1}get isCosmetic(){return!1}get prehideSelectors(){return["#cmp-app-container"]}async detectCmp(){return this.elementExists("#cmp-app-container")}async detectPopup(){return this.elementVisible("#cmp-app-container","any")}async optOut(){let e=document.querySelector("#cmp-app-container iframe"),t=e.contentDocument?.querySelector(".cmp-components-button.is-secondary");return!!t&&(t.click(),await A((()=>!!document.querySelector("#cmp-app-container iframe").contentDocument?.querySelector(".cmp__dialog input")),5,500),e=document.querySelector("#cmp-app-container iframe"),t=e.contentDocument?.querySelector(".cmp-components-button.is-secondary"),!!t&&(t.click(),!0))}async optIn(){const e=document.querySelector("#cmp-app-container iframe").contentDocument.querySelector(".cmp-components-button.is-primary");return!!e&&(e.click(),!0)}},class extends p{constructor(){super(...arguments),this.name="Admiral"}get hasSelfTest(){return!1}get isIntermediate(){return!1}get isCosmetic(){return!1}async detectCmp(){return this.elementExists("div > div[class*=Card] > div[class*=Frame] > div[class*=Pills] > button[class*=Pills__StyledPill]")}async detectPopup(){return this.elementVisible("div > div[class*=Card] > div[class*=Frame] > div[class*=Pills] > button[class*=Pills__StyledPill]","any")}async optOut(){const e="xpath///button[contains(., 'Afvis alle') or contains(., 'Reject all') or contains(., 'Odbaci sve') or contains(., 'Rechazar todo') or contains(., 'Atmesti visus') or contains(., 'Odmítnout vše') or contains(., 'Απόρριψη όλων') or contains(., 'Rejeitar tudo') or contains(., 'Tümünü reddet') or contains(., 'Отклонить все') or contains(., 'Noraidīt visu') or contains(., 'Avvisa alla') or contains(., 'Odrzuć wszystkie') or contains(., 'Alles afwijzen') or contains(., 'Отхвърляне на всички') or contains(., 'Rifiuta tutto') or contains(., 'Zavrni vse') or contains(., 'Az összes elutasítása') or contains(., 'Respingeți tot') or contains(., 'Alles ablehnen') or contains(., 'Tout rejeter') or contains(., 'Odmietnuť všetko') or contains(., 'Lükka kõik tagasi') or contains(., 'Hylkää kaikki')]";if(await this.waitForElement(e,500))return this.click(e);const t="xpath///button[contains(., 'Spara & avsluta') or contains(., 'Save & exit') or contains(., 'Uložit a ukončit') or contains(., 'Enregistrer et quitter') or contains(., 'Speichern & Verlassen') or contains(., 'Tallenna ja poistu') or contains(., 'Išsaugoti ir išeiti') or contains(., 'Opslaan & afsluiten') or contains(., 'Guardar y salir') or contains(., 'Shrani in zapri') or contains(., 'Uložiť a ukončiť') or contains(., 'Kaydet ve çıkış yap') or contains(., 'Сохранить и выйти') or contains(., 'Salvesta ja välju') or contains(., 'Salva ed esci') or contains(., 'Gem & afslut') or contains(., 'Αποθήκευση και έξοδος') or contains(., 'Saglabāt un iziet') or contains(., 'Mentés és kilépés') or contains(., 'Guardar e sair') or contains(., 'Zapisz & zakończ') or contains(., 'Salvare și ieșire') or contains(., 'Spremi i izađi') or contains(., 'Запазване и изход')]";if(await this.waitForThenClick("xpath///button[contains(., 'Zwecke') or contains(., 'Σκοποί') or contains(., 'Purposes') or contains(., 'Цели') or contains(., 'Eesmärgid') or contains(., 'Tikslai') or contains(., 'Svrhe') or contains(., 'Cele') or contains(., 'Účely') or contains(., 'Finalidades') or contains(., 'Mērķi') or contains(., 'Scopuri') or contains(., 'Fines') or contains(., 'Ändamål') or contains(., 'Finalités') or contains(., 'Doeleinden') or contains(., 'Tarkoitukset') or contains(., 'Scopi') or contains(., 'Amaçlar') or contains(., 'Nameni') or contains(., 'Célok') or contains(., 'Formål')]")&&await this.waitForVisible(t)){return this.elementSelector(t)[0].parentElement.parentElement.querySelectorAll("input[type=checkbox]:checked").forEach((e=>e.click())),this.click(t)}return!1}async optIn(){return this.click("xpath///button[contains(., 'Sprejmi vse') or contains(., 'Prihvati sve') or contains(., 'Godkänn alla') or contains(., 'Prijať všetko') or contains(., 'Принять все') or contains(., 'Aceptar todo') or contains(., 'Αποδοχή όλων') or contains(., 'Zaakceptuj wszystkie') or contains(., 'Accetta tutto') or contains(., 'Priimti visus') or contains(., 'Pieņemt visu') or contains(., 'Tümünü kabul et') or contains(., 'Az összes elfogadása') or contains(., 'Accept all') or contains(., 'Приемане на всички') or contains(., 'Accepter alle') or contains(., 'Hyväksy kaikki') or contains(., 'Tout accepter') or contains(., 'Alles accepteren') or contains(., 'Aktsepteeri kõik') or contains(., 'Přijmout vše') or contains(., 'Alles akzeptieren') or contains(., 'Aceitar tudo') or contains(., 'Acceptați tot')]")}}];function w(){return{chars:new Map,code:void 0}}var v=new Uint8Array(0),_=class{constructor(e,t=3e4){this.codebook=e,this.compressor=new class{constructor(e,t=3e4){this.trie=function(e){const t=w();for(let o=0;o ","%3D","%7C","age","box","div","ent","out","rap","set","__",", ",'"]',"%2","%5",'="',"00","ac","ad","Ad","al","an","ar","at","e-","ed","en","er","he","id","in","la","le","lo","ol","om","on","op","or","re","s_","s-","se","st","t-","te","ti","un","_","-",";",":",".","(",")","[","]","*","/","#","^","0","1","2","3","4","5","6","7","8","9","b","B","c","C","d","D","e","E","f","F","g","G","h","H","I","j","J","k","K","l","L","m","M","n","N","O","p","P","q","Q","R","s","S","t","T","u","U","v","V","w","W","x","y","Y","z"],x=["sandbox allow-forms allow-same-origin allow-scripts allow-modals allow-orientation-lock allow-pointer-lock allow-presentation allow-top-navigation","script-src 'self' 'unsafe-inline' 'unsafe-eval' "," *.google.com *.gstatic.com *.googleapis.com",".com *.google.com *.googletagmanager.com *.","script-src 'self' '*' 'unsafe-inline'","default-src 'unsafe-inline' 'self'","script-src 'self' 'unsafe-eval' "," *.google.com *.gstatic.com *.","t-src 'self' 'unsafe-inline' ","script-src * 'unsafe-inline'",".com *.googleapis.com *."," *.googletagmanager.com",".com *.bootstrapcdn.com","default-src 'self' *.","frame-src 'self' *"," *.cloudflare.com","child-src 'none';","worker-src 'none'","google-analytics","'unsafe-inline'","*.googleapis","connect-src ","child-src *"," *.gstatic","script-src","style-src ","frame-src","facebook","https://"," 'self'",".com *.",".net *.","addthis","captcha","gstatic","https: ","youtube","defaul","disqus","google","jquery","blob:","data:","http:","media","scrip","-src",".com",".net","n.cc"," *.","age","img","str","vic"," *","*.","bo","cd","ch","el","le","m:","ns","pi","ra","re","te","wi","wp","yt"," ","-",";",":",".","'","*","/","3","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y"],S=["/homad-global-configs.schneevonmorgen.com/global_config","/videojs-vast-vpaid@2.0.2/bin/videojs_5.vast.vpaid.min","/etc.clientlibs/logitech-common/clientlibs/onetrust.","/^https?:\\/\\/[-a-z]{8,15}\\.(?:com|net)\\/","/pagead/managed/js/gpt/*/pubads_impl","/pagead/js/adsbygoogle.js","/js/sdkloader/ima3.js","/js/sdkloader/ima3_d","/videojs-contrib-ads","/wp-content/plugins/","/wp-content/uploads/","/wp-content/themes/","/detroitchicago/","/appmeasurement","/413gkwmt/init","/cdn-cgi/trace","/^https?:\\/\\/","[a-zA-Z0-9]{","/^https:\\/\\/","notification","\\/[a-z0-9]{","fingerprint","/ljub4etb/","impression","/plugins/","affiliate","analytics","telemetry","(.+?\\.)?","[0-9a-z]","/assets/","/images/","/pagead/","pageview","template","tracking","/public","300x250","ampaign","collect","consent","content","counter","metrics","privacy","[a-z]{","/embed","728x90","banner","bundle","client","cookie","detect","dn-cgi","google","iframe","module","prebid","script","source","widget",".aspx",".cgi?",".com/",".html","/api/","/beac","/img/","/java","/stat","block","click","count","event","manag","media","pixel","popup","tegra","track","type=","video","visit",".css",".gif",".jpg",".min",".php",".png","/jqu","/js/","/lib","/log","/web","/wp-","468x","data","gdpr","gi-b","http","ight","mail","play","plug","publ","show","stat","uild","view",".js","/ad","=*&","age","com","ext","fig","gpt","id=","jax","key","log","new","sdk","tag","web","ync","*/","*^","/_","/?","/*","/d","/f","/g","/h","/l","/n","/r","/u","/w","^*","00","1/","ac","ad","al","am","an","ap","ar","as","at","bo","ce","ch","co","de","e-","e/","ec","ed","el","em","en","er","es","et","g/","ic","id","im","in","is","it","js","la","le","li","lo","mo","mp","ol","om","on","op","or","ot","re","ro","s_","s-","s?","s/","si","sp","st","t/","ti","tm","tr","ub","un","ur","us","ut","ve","_","-",":","?",".","}","*","/","\\","&","^","=","0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"],E=["securepubads.g.doubleclick.net","pagead2.googlesyndication",".actonservice.com","googlesyndication","imasdk.googleapis",".cloudfront.net","analytics.","marketing.","tracking.","metrics.","images.",".co.uk","a8clk.","stats.","a8cv.","media","track",".com",".net",".top",".xyz","ight","tion","www.",".io",".jp","app","cdn","new","web",".b",".c",".d",".f",".g",".h",".k",".l",".m",".n",".p",".s",".t",".v",".w","a1","a2","a4","a8","ab","ac","ad","af","ag","ai","ak","al","am","an","ap","ar","as","at","au","av","aw","ax","ay","az","be","bl","bo","br","bu","ca","ce","ch","ci","ck","cl","cr","ct","cu","de","di","dn","do","dr","ds","dy","e-","eb","ec","ed","ef","eg","el","em","en","ep","er","es","et","eu","ev","ew","ex","ey","fe","fi","fl","fo","fr","ge","gh","go","gr","gs","gu","he","ho","ia","ib","ic","id","ie","if","ig","ik","il","im","in","io","ip","ir","is","it","iv","ix","iz","jo","ks","la","ld","le","li","ll","lo","lu","ly","ma","me","mo","mp","my","no","ob","od","of","ok","ol","om","on","op","or","ot","ou","ov","ow","pa","ph","pl","po","pr","pu","qu","re","ro","ru","s-","sc","se","sh","si","sk","sn","so","sp","ss","st","su","sw","sy","t-","ta","te","th","ti","tn","to","tr","ts","tu","ty","ub","ud","ul","um","un","up","ur","us","ut","ve","vi","we","-",".","0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"],I=["google-analytics.com/analytics.js","googlesyndication_adsbygoogle.js","googletagmanager.com/gtm.js","googletagservices_gpt.js","googletagmanager_gtm.js","fuckadblock.js-3.2.0","amazon_apstag.js","google-analytics","fingerprint2.js","noop-1s.mp4:10","google-ima.js","noop-0.1s.mp3","prebid-ads.js","nobab2.js:10","noopmp3-0.1s","noop-1s.mp4","hd-main.js","noopmp4-1s","32x32.png","noop.html","noopframe","noop.txt","nooptext","1x1.gif","2x2.png","noop.js","noopjs",".com/",".js:5","none","noop",":10",".js","ads","bea","_a",":5","ar","ch","ic","in","le","ma","re","st","_","-",":",".","/","0","1","2","3","4","5","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","r","s","t","u","v","w","x","y","z"],F=["/js/sdkloader/ima3.j","/wp-content/plugins/",".com^$third-party","googlesyndication","imasdk.googleapis",".cloudfront.net^","$script,domain=","redirect-rule=","xmlhttprequest",".actonservice","^$third-party","3p,denyallow=","redirect=noop","||smetrics.","third-party","marketing.","analytics",",domain=","/assets/","$script,","metrics.","tracking",".co.uk","$ghide","a8clk.","cookie","google","script",".com^",".top^",".xyz^","$doma","a8cv.","image","media","track",".au^",".com",".fr^",".gif",".jp^",".net","/js/","$doc","$xhr","www.",".jp",".js","app","cdn","new","web",".b",".c",".f",".m",".n",".p",".s","@@","/*","/p","||","1p","3p","a1","a2","ab","ac","ad","af","ag","ai","ak","al","am","an","ap","ar","as","at","au","av","aw","ax","ay","az","be","bo","br","ca","ce","ch","ck","cl","ct","cu","de","di","do","ds","e-","e^","eb","ec","ed","el","em","en","ep","er","es","et","ev","ew","ex","ff","fi","fo","fr","g^","ge","gi","go","gr","he","hi","ho","hp","ht","ic","id","ig","il","im","in","io","ip","ir","is","it","ix","iz","jo","js","ke","le","li","ll","lo","lu","ly","ma","me","mo","mp","my","no","od","ok","ol","om","on","op","or","ot","pl","po","pr","qu","re","ri","ro","ru","s-","s/","sc","se","sh","si","sk","so","sp","ss","st","te","th","ti","to","tr","ts","tv","ty","ub","ud","ul","um","un","up","ur","us","ut","ve","vi","we","yo","_","-",",","?",".","*","/","^","=","|","~","$","0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"],O=["-webkit-touch-callo",", 1year, , domain, ",", googlesyndication","##^script:has-text(","3AwGgJmaSADGgYIgOu0","Eitib3FfaWRlbnRpdHl","mcm9udGVuZHVpc2Vydm","position: initial !","set-local-storage-i","set, blurred, false","user-select: text !","VyXzIwMjQwNTE0LjA2X","decodeURIComponent",", SOCS, CAISNQgQ",'[href^="https://',"rmnt, script, ","ut: default !"," !important)","trusted-set-",", document.",", noopFunc)","##body,html","contextmenu","no-fetch-if","otification",".com##+js(",'="https://',"background","important;"," -webkit-","container",": auto !","AAAAAAAA","nostif, ",",google",":style(","consent","message","nowoif)","privacy","-wrapp",",kayak",".co.uk","[class","##+js(","accept","aopr, ","banner","bottom","cookie","Cookie","google","notice","policy","widget",":has(","##div","block","cript","true)",".co.",".com",".de,",".fr,",".net",".nl,",".pl,",".xyz","#@#.","2%3A","gdpr","html","ight","news","text","wrap","www."," > ",",xh","##.","###","%3D","%7C","ent","lay","web","__","-s",", ",",b",",c",",f",",g",",h",",m",",p",",s",",t",": ",".*",".b",".c",".m",".p",".s",'"]',"##","%2","%5",'="',"00","a-","ab","ac","ad","Ad","af","ag","ak","al","am","an","ap","ar","as","at","au","av","ay","az","bo","ch","ck","cl","ct","de","di","do","e-","ed","el","em","en","er","es","et","ex","fi","fo","he","ic","id","if","ig","il","im","in","is","it","iv","le","lo","mo","ol","om","on","op","or","ot","ov","ow","pl","po","re","ro","s_","s-","se","sh","si","sp","st","t-","th","ti","tr","tv","ub","ul","um","un","up","ur","us","ut","vi"," ","_","-",",",":",".","(",")","[","*","/","^","0","1","2","3","4","5","6","7","8","9","a","b","B","c","C","d","D","e","E","f","F","g","h","i","j","k","l","L","m","M","n","o","p","P","q","r","s","S","t","T","u","v","w","x","y","z"],T=(()=>{let e=0;const t=new Int32Array(256);for(let o=0;256!==o;o+=1)e=o,e=1&e?-306674912^e>>>1:e>>>1,e=1&e?-306674912^e>>>1:e>>>1,e=1&e?-306674912^e>>>1:e>>>1,e=1&e?-306674912^e>>>1:e>>>1,e=1&e?-306674912^e>>>1:e>>>1,e=1&e?-306674912^e>>>1:e>>>1,e=1&e?-306674912^e>>>1:e>>>1,e=1&e?-306674912^e>>>1:e>>>1,t[o]=e;return t})();var P=2147483647,R=36,z=/[^\0-\x7E]/,L=/[\x2E\u3002\uFF0E\uFF61]/g,U={"invalid-input":"Invalid input","not-basic":"Illegal input >= 0x80 (not a basic code point)",overflow:"Overflow: input needs wider integers to process"};function B(e){throw new RangeError(U[e])}function V(e,t){return e+22+75*(e<26?1:0)-((0!==t?1:0)<<5)}function N(e,t,o){let i=0;for(e=o?Math.floor(e/700):e>>1,e+=Math.floor(e/t);e>455;i+=R)e=Math.floor(e/35);return Math.floor(i+36*e/(e+38))}function M(e){const t=[],o=e.length;let i=0,n=128,s=72,c=e.lastIndexOf("-");c<0&&(c=0);for(let o=0;o=128&&B("not-basic"),t.push(e.charCodeAt(o));for(let a=c>0?c+1:0;a=o&&B("invalid-input");const c=(r=e.charCodeAt(a++))-48<10?r-22:r-65<26?r-65:r-97<26?r-97:R;(c>=R||c>Math.floor((P-i)/t))&&B("overflow"),i+=c*t;const l=n<=s?1:n>=s+26?26:n-s;if(cMath.floor(P/p)&&B("overflow"),t*=p}const l=t.length+1;s=N(i-c,l,0===c),Math.floor(i/l)>P-n&&B("overflow"),n+=Math.floor(i/l),i%=l,t.splice(i++,0,n)}var r;return String.fromCodePoint.apply(null,t)}function j(e){const t=[],o=function(e){const t=[];let o=0;const i=e.length;for(;o=55296&&n<=56319&&o=n&&iMath.floor((P-s)/i)&&B("overflow"),s+=(e-n)*i,n=e;for(let e=0;eP&&B("overflow"),l===n){let e=s;for(let o=R;;o+=R){const i=o<=c?1:o>=c+26?26:o-c;if(e{const e=new class{constructor(){this.cosmeticSelector=new _(C),this.networkCSP=new _(x),this.networkRedirect=new _(I),this.networkHostname=new _(E),this.networkFilter=new _(S),this.networkRaw=new _(F),this.cosmeticRaw=new _(O)}};return G=()=>e,e};function $(e){return e<=127?1:5}function K(e,t){return Q(e.length,t)}function Q(e,t){return(t?3:0)+e+$(e)}function Y(e){return e.length+$(e.length)}function X(e){const t=j(e).length;return t+$(t)}function Z(e){return e.byteLength+$(e.length)}var J,ee=class e{static empty(t){return e.fromUint8Array(H,t)}static fromUint8Array(t,o){return new e(t,o)}static allocate(t,o){return new e(new Uint8Array(t),o)}constructor(e,{enableCompression:t}){if(!1===q)throw new Error("Adblocker currently does not support Big-endian systems");!0===t&&this.enableCompression(),this.buffer=e,this.pos=0}enableCompression(){this.compression=G()}checksum(){return function(e,t,o){let i=-1;const n=o-7;let s=t;for(;s>>8^T[255&(i^e[s++])],i=i>>>8^T[255&(i^e[s++])],i=i>>>8^T[255&(i^e[s++])],i=i>>>8^T[255&(i^e[s++])],i=i>>>8^T[255&(i^e[s++])],i=i>>>8^T[255&(i^e[s++])],i=i>>>8^T[255&(i^e[s++])],i=i>>>8^T[255&(i^e[s++])];for(;s>>8^T[255&(i^e[s++])];return(-1^i)>>>0}(this.buffer,0,this.pos)}dataAvailable(){return this.pos>>8,this.buffer[this.pos++]=e}getUint16(){return(this.buffer[this.pos++]<<8|this.buffer[this.pos++])>>>0}pushUint32(e){this.buffer[this.pos++]=e>>>24,this.buffer[this.pos++]=e>>>16,this.buffer[this.pos++]=e>>>8,this.buffer[this.pos++]=e}getUint32(){return(this.buffer[this.pos++]<<24>>>0)+(this.buffer[this.pos++]<<16|this.buffer[this.pos++]<<8|this.buffer[this.pos++])>>>0}pushUint32Array(e){this.pushLength(e.length);for(const t of e)this.pushUint32(t)}getUint32Array(){const e=this.getLength(),t=new Uint32Array(e);for(let o=0;othis.buffer.byteLength)throw new Error(`StaticDataView too small: ${this.buffer.byteLength}, but required ${this.pos} bytes`)}pushLength(e){e<=127?this.pushUint8(e):(this.pushUint8(128),this.pushUint32(e))}getLength(){const e=this.getUint8();return 128===e?this.getUint32():e}},te=class e{static deserialize(t){return new e({debug:t.getBool(),enableCompression:t.getBool(),enableHtmlFiltering:t.getBool(),enableInMemoryCache:t.getBool(),enableMutationObserver:t.getBool(),enableOptimizations:t.getBool(),enablePushInjectionsOnNavigationEvents:t.getBool(),guessRequestTypeFromUrl:t.getBool(),integrityCheck:t.getBool(),loadCSPFilters:t.getBool(),loadCosmeticFilters:t.getBool(),loadExceptionFilters:t.getBool(),loadExtendedSelectors:t.getBool(),loadGenericCosmeticsFilters:t.getBool(),loadNetworkFilters:t.getBool(),loadPreprocessors:t.getBool()})}constructor({debug:e=!1,enableCompression:t=!1,enableHtmlFiltering:o=!1,enableInMemoryCache:i=!0,enableMutationObserver:n=!0,enableOptimizations:s=!0,enablePushInjectionsOnNavigationEvents:c=!0,guessRequestTypeFromUrl:r=!1,integrityCheck:a=!0,loadCSPFilters:l=!0,loadCosmeticFilters:p=!0,loadExceptionFilters:d=!0,loadExtendedSelectors:u=!1,loadGenericCosmeticsFilters:h=!0,loadNetworkFilters:m=!0,loadPreprocessors:A=!1}={}){this.debug=e,this.enableCompression=t,this.enableHtmlFiltering=o,this.enableInMemoryCache=i,this.enableMutationObserver=n,this.enableOptimizations=s,this.enablePushInjectionsOnNavigationEvents=c,this.guessRequestTypeFromUrl=r,this.integrityCheck=a,this.loadCSPFilters=l,this.loadCosmeticFilters=p,this.loadExceptionFilters=d,this.loadExtendedSelectors=u,this.loadGenericCosmeticsFilters=h,this.loadNetworkFilters=m,this.loadPreprocessors=A}getSerializedSize(){return 16}serialize(e){e.pushBool(this.debug),e.pushBool(this.enableCompression),e.pushBool(this.enableHtmlFiltering),e.pushBool(this.enableInMemoryCache),e.pushBool(this.enableMutationObserver),e.pushBool(this.enableOptimizations),e.pushBool(this.enablePushInjectionsOnNavigationEvents),e.pushBool(this.guessRequestTypeFromUrl),e.pushBool(this.integrityCheck),e.pushBool(this.loadCSPFilters),e.pushBool(this.loadCosmeticFilters),e.pushBool(this.loadExceptionFilters),e.pushBool(this.loadExtendedSelectors),e.pushBool(this.loadGenericCosmeticsFilters),e.pushBool(this.loadNetworkFilters),e.pushBool(this.loadPreprocessors)}},oe="undefined"!=typeof window&&"function"==typeof window.queueMicrotask?e=>window.queueMicrotask(e):e=>(J||(J=Promise.resolve())).then(e).catch((e=>setTimeout((()=>{throw e}),0)));function ie(e,t,o){let i=o.get(e);void 0===i&&(i=[],o.set(e,i)),i.push(t)}function ne(e,t,o){const i=o.get(e);if(void 0!==i){const e=i.indexOf(t);-1!==e&&i.splice(e,1)}}function se(e,t,o){if(0===o.size)return!1;const i=o.get(e);return void 0!==i&&(oe((()=>{for(const e of i)e(...t)})),!0)}var ce=class{constructor(){this.onceListeners=new Map,this.onListeners=new Map}on(e,t){ie(e,t,this.onListeners)}once(e,t){ie(e,t,this.onceListeners)}unsubscribe(e,t){ne(e,t,this.onListeners),ne(e,t,this.onceListeners)}emit(e,...t){se(e,t,this.onListeners),!0===se(e,t,this.onceListeners)&&this.onceListeners.delete(e)}};function re(e,t){return function(e,t){let o=3;const i=()=>e(t).catch((e=>{if(o>0)return o-=1,new Promise(((e,t)=>{setTimeout((()=>{i().then(e).catch(t)}),500)}));throw e}));return i()}(e,t).then((e=>e.text()))}var ae="https://raw.githubusercontent.com/ghostery/adblocker/master/packages/adblocker/assets",le=[`${ae}/easylist/easylist.txt`,`${ae}/peter-lowe/serverlist.txt`,`${ae}/ublock-origin/badware.txt`,`${ae}/ublock-origin/filters-2020.txt`,`${ae}/ublock-origin/filters-2021.txt`,`${ae}/ublock-origin/filters-2022.txt`,`${ae}/ublock-origin/filters-2023.txt`,`${ae}/ublock-origin/filters-2024.txt`,`${ae}/ublock-origin/filters.txt`,`${ae}/ublock-origin/quick-fixes.txt`,`${ae}/ublock-origin/resource-abuse.txt`,`${ae}/ublock-origin/unbreak.txt`],pe=[...le,`${ae}/easylist/easyprivacy.txt`,`${ae}/ublock-origin/privacy.txt`],de=[...pe,`${ae}/easylist/easylist-cookie.txt`,`${ae}/ublock-origin/annoyances-others.txt`,`${ae}/ublock-origin/annoyances-cookies.txt`];function ue(){return new class{constructor(){this.options=new Set,this.prefix=void 0,this.infix=void 0,this.suffix=void 0,this.redirect=void 0}blockRequestsWithType(e){if(this.options.has(e))throw new Error(`Already blocking type ${e}`);return this.options.add(e),this}images(){return this.blockRequestsWithType("image")}scripts(){return this.blockRequestsWithType("script")}frames(){return this.blockRequestsWithType("frame")}fonts(){return this.blockRequestsWithType("font")}medias(){return this.blockRequestsWithType("media")}styles(){return this.blockRequestsWithType("css")}redirectTo(e){if(void 0!==this.redirect)throw new Error(`Already redirecting: ${this.redirect}`);return this.redirect=`redirect=${e}`,this}urlContains(e){if(void 0!==this.infix)throw new Error(`Already matching pattern: ${this.infix}`);return this.infix=e,this}urlStartsWith(e){if(void 0!==this.prefix)throw new Error(`Already matching prefix: ${this.prefix}`);return this.prefix=`|${e}`,this}urlEndsWith(e){if(void 0!==this.suffix)throw new Error(`Already matching suffix: ${this.suffix}`);return this.suffix=`${e}|`,this}withHostname(e){if(void 0!==this.prefix)throw new Error(`Cannot match hostname if filter already has prefix: ${this.prefix}`);return this.prefix=`||${e}^`,this}toString(){const e=[];void 0!==this.prefix&&e.push(this.prefix),void 0!==this.infix&&e.push(this.infix),void 0!==this.suffix&&e.push(this.suffix);const t=["important"];if(0!==this.options.size)for(const e of this.options)t.push(e);return void 0!==this.redirect&&t.push(this.redirect),`${0===e.length?"*":e.join("*")}$${t.join(",")}`}}}var he=new Set(["any","dir","has","host-context","if","if-not","is","matches","not","where"]),me={attribute:/\[\s*(?:(?\*|[-\w]*)\|)?(?[-\w\u{0080}-\u{FFFF}]+)\s*(?:(?\W?=)\s*(?.+?)\s*(?[iIsS])?\s*)?\]/gu,id:/#(?(?:[-\w\u{0080}-\u{FFFF}]|\\.)+)/gu,class:/\.(?(?:[-\w\u{0080}-\u{FFFF}]|\\.)+)/gu,comma:/\s*,\s*/g,combinator:/\s*[\s>+~]\s*/g,"pseudo-element":/::(?[-\w\u{0080}-\u{FFFF}]+)(?:\((?:¶*)\))?/gu,"pseudo-class":/:(?[-\w\u{0080}-\u{FFFF}]+)(?:\((?¶*)\))?/gu,type:/(?:(?\*|[-\w]*)\|)?(?[-\w\u{0080}-\u{FFFF}]+)|\*/gu},Ae=new Set(["pseudo-class","pseudo-element"]),ge=new Set([...Ae,"attribute"]),fe=new Set(["combinator","comma"]),ke=Object.assign({},me);function be(e,t){e.lastIndex=0;const o=e.exec(t);if(null===o)return;const i=o.index-1,n=o[0],s=t.slice(0,i+1),c=t.slice(i+n.length+1);return[s,[n,o.groups||{}],c]}ke["pseudo-element"]=RegExp(me["pseudo-element"].source.replace("(?¶*)","(?.*?)"),"gu"),ke["pseudo-class"]=RegExp(me["pseudo-class"].source.replace("(?¶*)","(?.*)"),"gu");var ye=[e=>{const t=be(me.attribute,e);if(void 0===t)return;const[o,[i,{name:n,operator:s,value:c,namespace:r,caseSensitive:a}],l]=t;return void 0!==n?[o,{type:"attribute",content:i,length:i.length,namespace:r,caseSensitive:a,pos:[],name:n,operator:s,value:c},l]:void 0},e=>{const t=be(me.id,e);if(void 0===t)return;const[o,[i,{name:n}],s]=t;return void 0!==n?[o,{type:"id",content:i,length:i.length,pos:[],name:n},s]:void 0},e=>{const t=be(me.class,e);if(void 0===t)return;const[o,[i,{name:n}],s]=t;return void 0!==n?[o,{type:"class",content:i,length:i.length,pos:[],name:n},s]:void 0},e=>{const t=be(me.comma,e);if(void 0===t)return;const[o,[i],n]=t;return[o,{type:"comma",content:i,length:i.length,pos:[]},n]},e=>{const t=be(me.combinator,e);if(void 0===t)return;const[o,[i],n]=t;return[o,{type:"combinator",content:i,length:i.length,pos:[]},n]},e=>{const t=be(me["pseudo-element"],e);if(void 0===t)return;const[o,[i,{name:n}],s]=t;return void 0!==n?[o,{type:"pseudo-element",content:i,length:i.length,pos:[],name:n},s]:void 0},e=>{const t=be(me["pseudo-class"],e);if(void 0===t)return;const[o,[i,{name:n,argument:s}],c]=t;return void 0!==n?[o,{type:"pseudo-class",content:i,length:i.length,pos:[],name:n,argument:s,subtree:void 0},c]:void 0},e=>{const t=be(me.type,e);if(void 0===t)return;const[o,[i,{name:n,namespace:s}],c]=t;return[o,{type:"type",content:i,length:i.length,namespace:s,pos:[],name:n},c]}];function we(e,t,o,i){for(const n of t)for(const t of e)if(i.has(t.type)&&t.pos[0]=0&&"\\"===e[t];)o+=1,t-=1;return o%2!=0}function _e(e,t,o){let i=o+1;for(;-1!==(i=e.indexOf(t,i))&&!0===ve(e,i);)i+=1;if(-1!==i)return e.slice(o,i+1)}function Ce(e,t){let o=0;for(let i=t;i0))return;o-=1}if(0===o)return e.slice(t,i+1)}}function xe(e,t,o,i){const n=[];let s=0;for(;-1!==(s=e.indexOf(o,s));){const o=i(e,s);if(void 0===o)break;n.push({str:o,start:s}),e=`${e.slice(0,s+1)}${t.repeat(o.length-2)}${e.slice(s+o.length-1)}`,s+=o.length}return[n,e]}function Se(e){if("string"!=typeof e)return[];if(0===(e=e.trim()).length)return[];const[t,o]=xe(e,"§",'"',((e,t)=>_e(e,'"',t))),[i,n]=xe(o,"§","'",((e,t)=>_e(e,"'",t))),[s,c]=xe(n,"¶","(",Ce),r=function(e){if(!e)return[];const t=[e];for(const e of ye)for(let o=0;o0!==e.length)))}}let o=0;for(const e of t)"string"!=typeof e&&(e.pos=[o,o+e.length],fe.has(e.type)&&(e.content=e.content.trim()||" ")),o+=e.length;return t.every((e=>"string"!=typeof e))?t:[]}(c);return we(r,s,/\(¶*\)/,Ae),we(r,t,/"§*"/,ge),we(r,i,/'§*'/,ge),r}function Ee(e,{list:t=!0}={}){if(!0===t&&e.some((e=>"comma"===e.type))){const t=[],o=[];for(let i=0;i=0;t--){const o=e[t];if("combinator"===o.type){const i=Ee(e.slice(0,t)),n=Ee(e.slice(t+1));if(void 0===n)return;if(" "!==o.content&&"~"!==o.content&&"+"!==o.content&&">"!==o.content)return;return{type:"complex",combinator:o.content,left:i,right:n}}}if(0!==e.length)return function(e){return e.every((e=>"comma"!==e.type&&"combinator"!==e.type))}(e)?1===e.length?e[0]:{type:"compound",compound:[...e]}:void 0}function Ie(e,t,o,i){if(void 0!==e){if("complex"===e.type)Ie(e.left,t,o,e),Ie(e.right,t,o,e);else if("compound"===e.type)for(const i of e.compound)Ie(i,t,o,e);else"pseudo-class"===e.type&&void 0!==e.subtree&&void 0!==o&&"pseudo-class"===o.type&&void 0!==o.subtree&&Ie(e.subtree,t,o,e);t(e,i)}}function Fe(e,{recursive:t=!0,list:o=!0}={}){const i=Se(e);if(0===i.length)return;const n=Ee(i,{list:o});return!0===t&&Ie(n,(e=>{"pseudo-class"===e.type&&e.argument&&void 0!==e.name&&he.has(e.name)&&(e.subtree=Fe(e.argument,{recursive:!0,list:!0}))})),n}var Oe,Te,Pe=new Set(["has","has-text","if"]),Re=new Set(["active","any","any-link","blank","checked","default","defined","dir","disabled","empty","enabled","first","first-child","first-of-type","focus","focus-visible","focus-within","fullscreen","host","host-context","hover","in-range","indeterminate","invalid","is","lang","last-child","last-of-type","left","link","matches","not","nth-child","nth-last-child","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","placeholder-shown","read-only","read-write","required","right","root","scope","target","valid","visited","where"]),ze=new Set(["after","before","first-letter","first-line"]);function Le(e){if(-1===e.indexOf(":"))return Oe.Normal;const t=Se(e);let o=!1;for(const e of t)if("pseudo-class"===e.type){const{name:t}=e;if(!0===Pe.has(t))o=!0;else if(!1===Re.has(t)&&!1===ze.has(t))return Oe.Invalid;if(!1===o&&void 0!==e.argument&&!0===he.has(t)){const t=Le(e.argument);if(t===Oe.Invalid)return t;t===Oe.Extended&&(o=!0)}}return!0===o?Oe.Extended:Oe.Normal}(Te=Oe||(Oe={}))[Te.Normal=0]="Normal",Te[Te.Extended=1]="Extended",Te[Te.Invalid=2]="Invalid";var Ue=new Set(["htm","html","xhtml"]),Be=new Set(["eot","otf","sfnt","ttf","woff","woff2"]),Ve=new Set(["apng","bmp","cur","dib","eps","gif","heic","heif","ico","j2k","jfi","jfif","jif","jp2","jpe","jpeg","jpf","jpg","jpm","jpx","mj2","pjp","pjpeg","png","svg","svgz","tif","tiff","webp"]),Ne=new Set(["avi","flv","mp3","mp4","ogg","wav","weba","webm","wmv"]),Me=new Set(["js","ts","jsx","esm"]),je=new Set(["css","scss"]);function De(e,t){let o=0,i=e.length,n=!1;if(!t){if(e.startsWith("data:"))return null;for(;oo+1&&e.charCodeAt(i-1)<=32;)i-=1;if(47===e.charCodeAt(o)&&47===e.charCodeAt(o+1))o+=2;else{const t=e.indexOf(":/",o);if(-1!==t){const i=t-o,n=e.charCodeAt(o),s=e.charCodeAt(o+1),c=e.charCodeAt(o+2),r=e.charCodeAt(o+3),a=e.charCodeAt(o+4);if(5===i&&104===n&&116===s&&116===c&&112===r&&115===a);else if(4===i&&104===n&&116===s&&116===c&&112===r);else if(3===i&&119===n&&115===s&&115===c);else if(2===i&&119===n&&115===s);else for(let i=o;i=97&&t<=122||t>=48&&t<=57||46===t||45===t||43===t))return null}for(o=t+2;47===e.charCodeAt(o);)o+=1}}let t=-1,s=-1,c=-1;for(let r=o;r=65&&o<=90&&(n=!0)}if(-1!==t&&t>o&&to&&co+1&&46===e.charCodeAt(i-1);)i-=1;const s=0!==o||i!==e.length?e.slice(o,i):e;return n?s.toLowerCase():s}function He(e){return e>=97&&e<=122||e>=48&&e<=57||e>127}function We(e){if(e.length>255)return!1;if(0===e.length)return!1;if(!He(e.charCodeAt(0))&&46!==e.charCodeAt(0)&&95!==e.charCodeAt(0))return!1;let t=-1,o=-1;const i=e.length;for(let n=0;n64||46===o||45===o||95===o)return!1;t=n}else if(!He(i)&&45!==i&&95!==i)return!1;o=i}return i-t-1<=63&&45!==o}var qe=function({allowIcannDomains:e=!0,allowPrivateDomains:t=!1,detectIp:o=!0,extractHostname:i=!0,mixedInputs:n=!0,validHosts:s=null,validateHostname:c=!0}){return{allowIcannDomains:e,allowPrivateDomains:t,detectIp:o,extractHostname:i,mixedInputs:n,validHosts:s,validateHostname:c}}({});function Ge(e,t,o,i,n){const s=function(e){return void 0===e?qe:function({allowIcannDomains:e=!0,allowPrivateDomains:t=!1,detectIp:o=!0,extractHostname:i=!0,mixedInputs:n=!0,validHosts:s=null,validateHostname:c=!0}){return{allowIcannDomains:e,allowPrivateDomains:t,detectIp:o,extractHostname:i,mixedInputs:n,validHosts:s,validateHostname:c}}(e)}(i);return"string"!=typeof e?n:(s.extractHostname?s.mixedInputs?n.hostname=De(e,We(e)):n.hostname=De(e,!1):n.hostname=e,0===t||null===n.hostname||s.detectIp&&(n.isIp=function(e){if(e.length<3)return!1;let t=e.startsWith("[")?1:0,o=e.length;if("]"===e[o-1]&&(o-=1),o-t>39)return!1;let i=!1;for(;t=48&&o<=57||o>=97&&o<=102||o>=65&&o<=90))return!1}return i}(c=n.hostname)||function(e){if(e.length<7)return!1;if(e.length>15)return!1;let t=0;for(let o=0;o57)return!1}return 3===t&&46!==e.charCodeAt(0)&&46!==e.charCodeAt(e.length-1)}(c),n.isIp)?n:s.validateHostname&&s.extractHostname&&!We(n.hostname)?(n.hostname=null,n):(o(n.hostname,s,n),2===t||null===n.publicSuffix?n:(n.domain=function(e,t,o){if(null!==o.validHosts){const e=o.validHosts;for(const o of e)if(function(e,t){return!!e.endsWith(t)&&(e.length===t.length||"."===e[e.length-t.length-1])}(t,o))return o}let i=0;if(t.startsWith("."))for(;i=i)return!1;let n=o,s=i-1;for(;n<=s;){const o=n+s>>>1,i=e[o];if(it))return!0;s=o-1}}return!1}var Qe=new Uint32Array(20);function Ye(e,t,o){if(function(e,t,o){if(!t.allowPrivateDomains&&e.length>3){const t=e.length-1,i=e.charCodeAt(t),n=e.charCodeAt(t-1),s=e.charCodeAt(t-2),c=e.charCodeAt(t-3);if(109===i&&111===n&&99===s&&46===c)return o.isIcann=!0,o.isPrivate=!1,o.publicSuffix="com",!0;if(103===i&&114===n&&111===s&&46===c)return o.isIcann=!0,o.isPrivate=!1,o.publicSuffix="org",!0;if(117===i&&100===n&&101===s&&46===c)return o.isIcann=!0,o.isPrivate=!1,o.publicSuffix="edu",!0;if(118===i&&111===n&&103===s&&46===c)return o.isIcann=!0,o.isPrivate=!1,o.publicSuffix="gov",!0;if(116===i&&101===n&&110===s&&46===c)return o.isIcann=!0,o.isPrivate=!1,o.publicSuffix="net",!0;if(101===i&&100===n&&46===s)return o.isIcann=!0,o.isPrivate=!1,o.publicSuffix="de",!0}return!1}(e,t,o))return;const{allowIcannDomains:i,allowPrivateDomains:n}=t;let s=-1,c=0,r=0,a=1;const l=function(e,t){let o=5381,i=0;for(let n=e.length-1;n>=0;n-=1){const s=e.charCodeAt(n);if(46===s&&(Qe[i<<1]=o>>>0,Qe[1+(i<<1)]=n+1,i+=1,i===t))return i;o=33*o^s}return Qe[i<<1]=o>>>0,Qe[1+(i<<1)]=0,i+=1,i}(e,$e[0]);for(let e=0;er;)t.shift();o.publicSuffix=t.join(".")}else o.publicSuffix=e.slice(Qe[1+(r-2<<1)]);else o.publicSuffix=1===l?e:e.slice(Qe[1])}function Xe(e,t={}){return Ge(e,5,Ye,t,{domain:null,domainWithoutSuffix:null,hostname:null,isIcann:null,isIp:null,isPrivate:null,publicSuffix:null,subdomain:null})}var Ze=new class{constructor(e){this.pos=0,this.buffer=new Uint32Array(e)}reset(){this.pos=0}slice(){return this.buffer.slice(0,this.pos)}push(e){this.buffer[this.pos++]=e}empty(){return 0===this.pos}full(){return this.pos===this.buffer.length}remaining(){return this.buffer.length-this.pos}}(1024),Je=37,et=5011;function tt(e){return 16843009*((e=(858993459&(e-=e>>1&1431655765))+(e>>2&858993459))+(e>>4)&252645135)>>24}function ot(e,t){return!!(e&t)}function it(e,t){return e|t}function nt(e,t){return e&~t}function st(e,t,o){let i=et;for(let n=t;n>>0}function ct(e){return"string"!=typeof e||0===e.length?et:st(e,0,e.length)}function rt(e){const t=new Uint32Array(e.length);let o=0;for(const i of e)t[o++]=ct(i);return t}function at(e,t){if(e.length=48&&e<=57}function dt(e){return e>=97&&e<=122||e>=65&&e<=90}function ut(e){return dt(e)||pt(e)||37===e||function(e){return e>=192&&e<=450}(e)||function(e){return e>=1024&&e<=1279}(e)}function ht(e,t,o,i){const n=Math.min(e.length,2*i.remaining());let s=!1,c=0,r=et;for(let o=0;o1&&(!1===t||0!==c)&&i.push(r>>>0))}!0===s&&!1===o&&e.length-c>1&&!1===i.full()&&i.push(r>>>0)}function mt(e,t){const o=Math.min(e.length,2*t.remaining());let i=!1,n=0,s=et;for(let c=0;c1&&t.push(s>>>0))}!0===i&&e.length-n>1&&!1===t.full()&&t.push(s>>>0)}function At(e,t){return-1!==function(e,t){if(0===e.length)return-1;let o=0,i=e.length-1;for(;o<=i;){const n=o+i>>>1,s=e[n];if(st))return n;i=n-1}}return-1}(e,t)}var gt=/[^\u0000-\u00ff]/;function ft(e){return gt.test(e)}var kt={extractHostname:!0,mixedInputs:!1,validateHostname:!1},bt={beacon:ct("type:beacon"),cspReport:ct("type:csp"),csp_report:ct("type:csp"),cspviolationreport:ct("type:cspviolationreport"),document:ct("type:document"),eventsource:ct("type:other"),fetch:ct("type:xhr"),font:ct("type:font"),image:ct("type:image"),imageset:ct("type:image"),mainFrame:ct("type:document"),main_frame:ct("type:document"),manifest:ct("type:other"),media:ct("type:media"),object:ct("type:object"),object_subrequest:ct("type:object"),other:ct("type:other"),ping:ct("type:ping"),prefetch:ct("type:other"),preflight:ct("type:preflight"),script:ct("type:script"),signedexchange:ct("type:signedexchange"),speculative:ct("type:other"),stylesheet:ct("type:stylesheet"),subFrame:ct("type:subdocument"),sub_frame:ct("type:subdocument"),texttrack:ct("type:other"),webSocket:ct("type:websocket"),web_manifest:ct("type:other"),websocket:ct("type:websocket"),xhr:ct("type:xhr"),xml_dtd:ct("type:other"),xmlhttprequest:ct("type:xhr"),xslt:ct("type:other")};function yt(e){let t=et;for(let o=e.length-1;o>=0;o-=1)t=t*Je^e.charCodeAt(o);return t>>>0}function wt(e,t,o){Ze.reset();let i=et;for(let n=t-1;n>=0;n-=1){const t=e.charCodeAt(n);46===t&&n>>0),i=i*Je^t}return Ze.push(i>>>0),Ze.slice()}function vt(e,t){const o=function(e,t){let o=null;const i=t.indexOf(".");if(-1!==i){const n=t.slice(i+1);o=e.slice(0,-n.length-1)}return o}(e,t);return null!==o?wt(o,o.length,o.length):W}function _t(e,t){return wt(e,e.length,e.length-t.length)}var Ct=class e{static fromRawDetails({requestId:t="0",tabId:o=0,url:i="",hostname:n,domain:s,sourceUrl:c="",sourceHostname:r,sourceDomain:a,type:l="main_frame",_originalRequestDetails:p}){if(i=i.toLowerCase(),void 0===n||void 0===s){const e=Xe(i,kt);n=n||e.hostname||"",s=s||e.domain||""}if(void 0===r||void 0===a){const e=Xe(r||a||c,kt);r=r||e.hostname||"",a=a||e.domain||r||""}return new e({requestId:t,tabId:o,domain:s,hostname:n,url:i,sourceDomain:a,sourceHostname:r,sourceUrl:c,type:l,_originalRequestDetails:p})}constructor({requestId:e,tabId:t,type:o,domain:i,hostname:n,url:s,sourceDomain:c,sourceHostname:r,_originalRequestDetails:a}){if(this.tokens=void 0,this.hostnameHashes=void 0,this.entityHashes=void 0,this._originalRequestDetails=a,this.id=e,this.tabId=t,this.type=o,this.url=s,this.hostname=n,this.domain=i,this.sourceHostnameHashes=0===r.length?W:_t(r,c),this.sourceEntityHashes=0===r.length?W:vt(r,c),this.isThirdParty=function(e,t,o,i,n){return"main_frame"!==n&&"mainFrame"!==n&&(0!==t.length&&0!==i.length?t!==i:0!==t.length&&0!==o.length?t!==o:0!==i.length&&0!==e.length&&e!==i)}(n,i,r,c,o),this.isFirstParty=!this.isThirdParty,this.isSupported=!0,"websocket"===this.type||this.url.startsWith("ws:")||this.url.startsWith("wss:"))this.isHttp=!1,this.isHttps=!1,this.type="websocket",this.isSupported=!0;else if(this.url.startsWith("http:"))this.isHttp=!0,this.isHttps=!1;else if(this.url.startsWith("https:"))this.isHttps=!0,this.isHttp=!1;else if(this.url.startsWith("data:")){this.isHttp=!1,this.isHttps=!1;const e=this.url.indexOf(",");-1!==e&&(this.url=this.url.slice(0,e))}else this.isHttp=!1,this.isHttps=!1,this.isSupported=!1}getHostnameHashes(){return void 0===this.hostnameHashes&&(this.hostnameHashes=0===this.hostname.length?W:_t(this.hostname,this.domain)),this.hostnameHashes}getEntityHashes(){return void 0===this.entityHashes&&(this.entityHashes=0===this.hostname.length?W:vt(this.hostname,this.domain)),this.entityHashes}getTokens(){if(void 0===this.tokens){Ze.reset();for(const e of this.sourceHostnameHashes)Ze.push(e);Ze.push(bt[this.type]),mt(this.url,Ze),this.tokens=Ze.slice()}return this.tokens}isMainFrame(){return"main_frame"===this.type||"mainFrame"===this.type}isSubFrame(){return"sub_frame"===this.type||"subFrame"===this.type}guessTypeOfRequest(){const e=this.type;return this.type=function(e){const t=function(e){let t=e.length;const o=e.indexOf("#");-1!==o&&(t=o);const i=e.indexOf("?");-1!==i&&i=0&&(s=e.charCodeAt(n),0!=(s>=65&&s<=90||s>=97&&s<=122||s>=48&&s<=57));n-=1);return 46!==s||n<0||t-n>=10?"":e.slice(n+1,t)}(e);return Ve.has(t)||e.startsWith("data:image/")||e.startsWith("https://frog.wix.com/bt")?"image":Ne.has(t)||e.startsWith("data:audio/")||e.startsWith("data:video/")?"media":je.has(t)||e.startsWith("data:text/css")?"stylesheet":Me.has(t)||e.startsWith("data:")&&(e.startsWith("data:application/ecmascript")||e.startsWith("data:application/javascript")||e.startsWith("data:application/x-ecmascript")||e.startsWith("data:application/x-javascript")||e.startsWith("data:text/ecmascript")||e.startsWith("data:text/javascript")||e.startsWith("data:text/javascript1.0")||e.startsWith("data:text/javascript1.1")||e.startsWith("data:text/javascript1.2")||e.startsWith("data:text/javascript1.3")||e.startsWith("data:text/javascript1.4")||e.startsWith("data:text/javascript1.5")||e.startsWith("data:text/jscript")||e.startsWith("data:text/livescript")||e.startsWith("data:text/x-ecmascript")||e.startsWith("data:text/x-javascript"))||e.startsWith("https://maps.googleapis.com/maps/api/js")||e.startsWith("https://www.googletagmanager.com/gtag/js")?"script":Ue.has(t)||e.startsWith("data:text/html")||e.startsWith("data:application/xhtml")||e.startsWith("https://www.youtube.com/embed/")||e.startsWith("https://www.google.com/gen_204")?"document":Be.has(t)||e.startsWith("data:font/")?"font":"other"}(this.url),e!==this.type&&(this.tokens=void 0),this.type}},xt=class e{static parse(t,o=!1){if(0===t.length)return;const i=[],n=[],s=[],c=[];for(let e of t){ft(e)&&(e=D(e));const t=126===e.charCodeAt(0),o=42===e.charCodeAt(e.length-1)&&46===e.charCodeAt(e.length-2),r=t?1:0,a=o?e.length-2:e.length,l=yt(!0===t||!0===o?e.slice(r,a):e);t?o?n.push(l):c.push(l):o?i.push(l):s.push(l)}return new e({entities:0!==i.length?new Uint32Array(i).sort():void 0,hostnames:0!==s.length?new Uint32Array(s).sort():void 0,notEntities:0!==n.length?new Uint32Array(n).sort():void 0,notHostnames:0!==c.length?new Uint32Array(c).sort():void 0,parts:!0===o?t.join(","):void 0})}static deserialize(t){const o=t.getUint8();return new e({entities:1==(1&o)?t.getUint32Array():void 0,hostnames:2==(2&o)?t.getUint32Array():void 0,notEntities:4==(4&o)?t.getUint32Array():void 0,notHostnames:8==(8&o)?t.getUint32Array():void 0,parts:16==(16&o)?t.getUTF8():void 0})}constructor({entities:e,hostnames:t,notEntities:o,notHostnames:i,parts:n}){this.entities=e,this.hostnames=t,this.notEntities=o,this.notHostnames=i,this.parts=n}updateId(e){const{hostnames:t,entities:o,notHostnames:i,notEntities:n}=this;if(void 0!==t)for(const o of t)e=e*Je^o;if(void 0!==o)for(const t of o)e=e*Je^t;if(void 0!==i)for(const t of i)e=e*Je^t;if(void 0!==n)for(const t of n)e=e*Je^t;return e}serialize(e){const t=e.getPos();e.pushUint8(0);let o=0;void 0!==this.entities&&(o|=1,e.pushUint32Array(this.entities)),void 0!==this.hostnames&&(o|=2,e.pushUint32Array(this.hostnames)),void 0!==this.notEntities&&(o|=4,e.pushUint32Array(this.notEntities)),void 0!==this.notHostnames&&(o|=8,e.pushUint32Array(this.notHostnames)),void 0!==this.parts&&(o|=16,e.pushUTF8(this.parts)),e.setByte(t,o)}getSerializedSize(){let e=1;return void 0!==this.entities&&(e+=Z(this.entities)),void 0!==this.hostnames&&(e+=Z(this.hostnames)),void 0!==this.notHostnames&&(e+=Z(this.notHostnames)),void 0!==this.notEntities&&(e+=Z(this.notEntities)),void 0!==this.parts&&(e+=X(this.parts)),e}match(e,t){if(void 0!==this.notHostnames)for(const t of e)if(At(this.notHostnames,t))return!1;if(void 0!==this.notEntities)for(const e of t)if(At(this.notEntities,e))return!1;if(void 0!==this.hostnames||void 0!==this.entities){if(void 0!==this.hostnames)for(const t of e)if(At(this.hostnames,t))return!0;if(void 0!==this.entities)for(const e of t)if(At(this.entities,e))return!0;return!1}return!0}};function St(e){if(!1===e.startsWith("^script"))return;const t=":has-text(",o=[];let i=7;for(;e.startsWith(t,i);){i+=t.length;let n=1;const s=i;let c=-1;for(;i=48&&o<=57||o>=65&&o<=90||o>=97&&o<=122)){if(t{}},t=/^[#.]?[\w-.]+$/;return function(o){if(t.test(o))return!0;try{(t=>{e.matches(t)})(o)}catch(e){return!1}return!0}})();(Lt=zt||(zt={}))[Lt.unhide=1]="unhide",Lt[Lt.scriptInject=2]="scriptInject",Lt[Lt.isUnicode=4]="isUnicode",Lt[Lt.isClassSelector=8]="isClassSelector",Lt[Lt.isIdSelector=16]="isIdSelector",Lt[Lt.isHrefSelector=32]="isHrefSelector",Lt[Lt.remove=64]="remove",Lt[Lt.extended=128]="extended";var Bt,Vt,Nt=class e{static parse(t,o=!1){const i=t;let n,s,c,r=0;const a=t.indexOf("#"),l=a+1;let p=l+1;if(t.length>l&&("@"===t[l]?(r=it(r,zt.unhide),p+=1):"?"===t[l]&&(p+=1)),p>=t.length)return null;if(a>0&&(s=xt.parse(t.slice(0,a).split(","),o)),t.endsWith(":remove()"))r=it(r,zt.remove),r=it(r,zt.extended),t=t.slice(0,-9);else if(t.length-p>=8&&t.endsWith(")")&&-1!==t.indexOf(":style(",p)){const e=t.indexOf(":style(",p);c=t.slice(e+7,-1),t=t.slice(0,e)}if(94===t.charCodeAt(p)){if(!1===lt(t,"script:has-text(",p+1)||41!==t.charCodeAt(t.length-1))return null;if(n=t.slice(p,t.length),void 0===St(n))return null}else if(t.length-p>4&&43===t.charCodeAt(p)&<(t,"+js(",p)){if((void 0===s||void 0===s.hostnames&&void 0===s.entities)&&!1===ot(r,zt.unhide))return null;if(r=it(r,zt.scriptInject),n=t.slice(p+4,t.length-1),!1===ot(r,zt.unhide)&&0===n.length)return null}else{n=t.slice(p);const e=Le(n);if(e===Oe.Extended)r=it(r,zt.extended);else if(e===Oe.Invalid||!Ut(n))return null}if(void 0===s&&!0===ot(r,zt.extended))return null;if(void 0!==n&&(ft(n)&&(r=it(r,zt.isUnicode)),!1===ot(r,zt.scriptInject)&&!1===ot(r,zt.remove)&&!1===ot(r,zt.extended)&&!1===n.startsWith("^"))){const e=n.charCodeAt(0),t=n.charCodeAt(1),o=n.charCodeAt(2);!1===ot(r,zt.scriptInject)&&(46===e&&Pt(n)?r=it(r,zt.isClassSelector):35===e&&Pt(n)?r=it(r,zt.isIdSelector):(97===e&&91===t&&104===o&&Rt(n,2)||91===e&&104===t&&Rt(n,1))&&(r=it(r,zt.isHrefSelector)))}return new e({mask:r,rawLine:!0===o?i:void 0,selector:n,style:c,domains:s})}static deserialize(t){const o=t.getUint8(),i=ot(o,zt.isUnicode),n=t.getUint8(),s=i?t.getUTF8():t.getCosmeticSelector();return new e({mask:o,selector:s,domains:1==(1&n)?xt.deserialize(t):void 0,rawLine:2==(2&n)?t.getRawCosmetic():void 0,style:4==(4&n)?t.getASCII():void 0})}constructor({mask:e,selector:t,domains:o,rawLine:i,style:n}){this.mask=e,this.selector=t,this.domains=o,this.style=n,this.id=void 0,this.rawLine=i}isCosmeticFilter(){return!0}isNetworkFilter(){return!1}serialize(e){e.pushUint8(this.mask);const t=e.getPos();e.pushUint8(0),this.isUnicode()?e.pushUTF8(this.selector):e.pushCosmeticSelector(this.selector);let o=0;void 0!==this.domains&&(o|=1,this.domains.serialize(e)),void 0!==this.rawLine&&(o|=2,e.pushRawCosmetic(this.rawLine)),void 0!==this.style&&(o|=4,e.pushASCII(this.style)),e.setByte(t,o)}getSerializedSize(e){let t=2;return this.isUnicode()?t+=X(this.selector):t+=function(e,t){return!0===t?Q(G().cosmeticSelector.getCompressedSize(e),!1):Y(e)}(this.selector,e),void 0!==this.domains&&(t+=this.domains.getSerializedSize()),void 0!==this.rawLine&&(t+=function(e,t){return!0===t?Q(G().cosmeticRaw.getCompressedSize(j(e)),!1):X(e)}(this.rawLine,e)),void 0!==this.style&&(t+=Y(this.style)),t}toString(){if(void 0!==this.rawLine)return this.rawLine;let e="";return void 0!==this.domains&&(void 0!==this.domains.parts?e+=this.domains.parts:e+=""),this.isUnhide()?e+="#@#":e+="##",this.isScriptInject()?(e+="+js(",e+=this.selector,e+=")"):e+=this.selector,e}match(e,t){return!1===this.hasHostnameConstraint()||!(!e&&this.hasHostnameConstraint())&&(void 0===this.domains||this.domains.match(0===e.length?W:_t(e,t),0===e.length?W:vt(e,t)))}getTokens(){const e=[];if(void 0!==this.domains){const{hostnames:t,entities:o}=this.domains;if(void 0!==t)for(const o of t)e.push(new Uint32Array([o]));if(void 0!==o)for(const t of o)e.push(new Uint32Array([t]))}if(0===e.length&&!1===this.isUnhide())if(this.isIdSelector()||this.isClassSelector()){let t=1;const o=this.selector;for(;t0?n=!0:"'"===p&&e.indexOf("'",o+1)>0?s=!0:"{"===p&&e.indexOf("}",o+1)>0?r+=1:"/"===p&&e.indexOf("/",o+1)>0?c=!0:l=!0)),","===p&&(t.push(e.slice(i+1,o).trim()),i=o,l=!1))),a="\\"===p}if(t.push(e.slice(i+1).trim()),0===t.length)return;const p=t.slice(1).map((e=>e.startsWith("'")&&e.endsWith("'")||e.startsWith('"')&&e.endsWith('"')?e.substring(1,e.length-1):e)).map((e=>e.replace(Ft,",").replace(Ot,"\\").replace(Tt,",")));return{name:t[0],args:p}}getScript(e){const t=this.parseScript();if(void 0===t)return;const{name:o,args:i}=t;let n=e.get(o);if(void 0!==n){for(let e=0;e>>0}(this.mask,this.selector,this.domains,this.style)),this.id}hasCustomStyle(){return void 0!==this.style}getStyle(e=It){return this.style||e}getStyleAttributeHash(){return`s${ct(this.getStyle())}`}getSelector(){return this.selector}getSelectorAST(){return Fe(this.getSelector())}getExtendedSelector(){return St(this.selector)}isExtended(){return ot(this.mask,zt.extended)}isRemove(){return ot(this.mask,zt.remove)}isUnhide(){return ot(this.mask,zt.unhide)}isScriptInject(){return ot(this.mask,zt.scriptInject)}isCSS(){return!1===this.isScriptInject()}isIdSelector(){return ot(this.mask,zt.isIdSelector)}isClassSelector(){return ot(this.mask,zt.isClassSelector)}isHrefSelector(){return ot(this.mask,zt.isHrefSelector)}isUnicode(){return ot(this.mask,zt.isUnicode)}isHtmlFiltering(){return this.getSelector().startsWith("^")}isGenericHide(){var e,t;return void 0===(null===(e=null==this?void 0:this.domains)||void 0===e?void 0:e.hostnames)&&void 0===(null===(t=null==this?void 0:this.domains)||void 0===t?void 0:t.entities)}},Mt=ct("http"),jt=ct("https");(Vt=Bt||(Bt={}))[Vt.fromDocument=1]="fromDocument",Vt[Vt.fromFont=2]="fromFont",Vt[Vt.fromHttp=4]="fromHttp",Vt[Vt.fromHttps=8]="fromHttps",Vt[Vt.fromImage=16]="fromImage",Vt[Vt.fromMedia=32]="fromMedia",Vt[Vt.fromObject=64]="fromObject",Vt[Vt.fromOther=128]="fromOther",Vt[Vt.fromPing=256]="fromPing",Vt[Vt.fromScript=512]="fromScript",Vt[Vt.fromStylesheet=1024]="fromStylesheet",Vt[Vt.fromSubdocument=2048]="fromSubdocument",Vt[Vt.fromWebsocket=4096]="fromWebsocket",Vt[Vt.fromXmlHttpRequest=8192]="fromXmlHttpRequest",Vt[Vt.firstParty=16384]="firstParty",Vt[Vt.thirdParty=32768]="thirdParty",Vt[Vt.isReplace=65536]="isReplace",Vt[Vt.isBadFilter=131072]="isBadFilter",Vt[Vt.isCSP=262144]="isCSP",Vt[Vt.isGenericHide=524288]="isGenericHide",Vt[Vt.isImportant=1048576]="isImportant",Vt[Vt.isSpecificHide=2097152]="isSpecificHide",Vt[Vt.isFullRegex=4194304]="isFullRegex",Vt[Vt.isRegex=8388608]="isRegex",Vt[Vt.isUnicode=16777216]="isUnicode",Vt[Vt.isLeftAnchor=33554432]="isLeftAnchor",Vt[Vt.isRightAnchor=67108864]="isRightAnchor",Vt[Vt.isException=134217728]="isException",Vt[Vt.isHostnameAnchor=268435456]="isHostnameAnchor",Vt[Vt.isRedirectRule=536870912]="isRedirectRule",Vt[Vt.isRedirect=1073741824]="isRedirect";var Dt=Bt.fromDocument|Bt.fromFont|Bt.fromImage|Bt.fromMedia|Bt.fromObject|Bt.fromOther|Bt.fromPing|Bt.fromScript|Bt.fromStylesheet|Bt.fromSubdocument|Bt.fromWebsocket|Bt.fromXmlHttpRequest,Ht={beacon:Bt.fromPing,document:Bt.fromDocument,cspviolationreport:Bt.fromOther,fetch:Bt.fromXmlHttpRequest,font:Bt.fromFont,image:Bt.fromImage,imageset:Bt.fromImage,mainFrame:Bt.fromDocument,main_frame:Bt.fromDocument,media:Bt.fromMedia,object:Bt.fromObject,object_subrequest:Bt.fromObject,ping:Bt.fromPing,script:Bt.fromScript,stylesheet:Bt.fromStylesheet,subFrame:Bt.fromSubdocument,sub_frame:Bt.fromSubdocument,webSocket:Bt.fromWebsocket,websocket:Bt.fromWebsocket,xhr:Bt.fromXmlHttpRequest,xmlhttprequest:Bt.fromXmlHttpRequest,cspReport:Bt.fromOther,csp_report:Bt.fromOther,eventsource:Bt.fromOther,manifest:Bt.fromOther,other:Bt.fromOther,prefetch:Bt.fromOther,preflight:Bt.fromOther,signedexchange:Bt.fromOther,speculative:Bt.fromOther,texttrack:Bt.fromOther,web_manifest:Bt.fromOther,xml_dtd:Bt.fromOther,xslt:Bt.fromOther};function Wt(e){const t=[];return e.fromDocument()&&t.push("document"),e.fromImage()&&t.push("image"),e.fromMedia()&&t.push("media"),e.fromObject()&&t.push("object"),e.fromOther()&&t.push("other"),e.fromPing()&&t.push("ping"),e.fromScript()&&t.push("script"),e.fromStylesheet()&&t.push("stylesheet"),e.fromSubdocument()&&t.push("sub_frame"),e.fromWebsocket()&&t.push("websocket"),e.fromXmlHttpRequest()&&t.push("xhr"),e.fromFont()&&t.push("font"),t}function qt(e,t,o,i,n,s){let c=185407^e;if(void 0!==i&&(c=i.updateId(c)),void 0!==n&&(c=n.updateId(c)),void 0!==t)for(let e=0;e>>0}function Gt(e,t,o,i){return!0===i?new RegExp(e.slice(1,e.length-1),"i"):(e=(e=(e=e.replace(/([|.$+?{}()[\]\\])/g,"\\$1")).replace(/\*/g,".*")).replace(/\^/g,"(?:[^\\w\\d_.%-]|$)"),o&&(e=`${e}$`),t&&(e=`^${e}`),new RegExp(e))}function $t(e,t,o){const i=t;for(;t=48&&e<=57||e<=65&&e<=70||e>=97&&e<=102}function Xt(e,t,o){const i=e.charCodeAt(t+1);return 44===i||47===i?[t+1,!1]:function(e,t,o){const i=e.charCodeAt(t+1);if(44===i||Qt.has(i))return[t+1,!0];if(99===i){const o=e.charCodeAt(t+2);if(o>=65&&o<=90||o>=97&&o<=122)return[t+2,!0]}if(120===i&&Yt(e.charCodeAt(t+2))&&Yt(e.charCodeAt(t+3)))return[t+3,!0];if(117===i)if(123===e.charCodeAt(t+2)){const o=e.indexOf("}",t+3),i=o-t+3;if(i>=1&&i<=6)return[o,!0]}else if(Yt(e.charCodeAt(t+2))&&Yt(e.charCodeAt(t+3))&&Yt(e.charCodeAt(t+4))&&Yt(e.charCodeAt(t+5)))return[t+5,!0];return[t+1,!1]}(e,t)}function Zt(e,t,o){if(47!==e.charCodeAt(t++))return[o,void 0];const i=["","",""];let n=t,s=0;for(;t0&&92===e.charCodeAt(o-1);)o=e.lastIndexOf(t,o-1);return o}(t,"$");if(-1!==u&&47!==t.charCodeAt(u+1)){d=u;for(const e of function(e,t,o){const i=[];let n,s;for(;t0&&(c=p);break;case"ehide":case"elemhide":if(t)return null;r=it(r,Bt.isGenericHide),r=it(r,Bt.isSpecificHide);break;case"shide":case"specifichide":if(t)return null;r=it(r,Bt.isSpecificHide);break;case"ghide":case"generichide":if(t)return null;r=it(r,Bt.isGenericHide);break;case"inline-script":if(t)return null;r=it(r,Bt.isCSP),c="script-src 'self' 'unsafe-eval' http: https: data: blob: mediastream: filesystem:";break;case"inline-font":if(t)return null;r=it(r,Bt.isCSP),c="font-src 'self' 'unsafe-eval' http: https: data: blob: mediastream: filesystem:";break;case"replace":case"content":if(t||(0===p.length?!1===ot(r,Bt.isException):null===Jt(p)))return null;r=it(r,Bt.isReplace),c=p;break;default:{let e=0;switch(i){case"all":if(t)return null;break;case"image":e=Bt.fromImage;break;case"media":e=Bt.fromMedia;break;case"object":case"object-subrequest":e=Bt.fromObject;break;case"other":e=Bt.fromOther;break;case"ping":case"beacon":e=Bt.fromPing;break;case"script":e=Bt.fromScript;break;case"css":case"stylesheet":e=Bt.fromStylesheet;break;case"frame":case"subdocument":e=Bt.fromSubdocument;break;case"xhr":case"xmlhttprequest":e=Bt.fromXmlHttpRequest;break;case"websocket":e=Bt.fromWebsocket;break;case"font":e=Bt.fromFont;break;case"doc":case"document":e=Bt.fromDocument;break;default:return null}t?l=nt(l,e):a=it(a,e);break}}}}let h;if(r|=0===a?l:l===Dt?a:a&l,d-p>=2&&47===t.charCodeAt(p)&&47===t.charCodeAt(d-1)){h=t.slice(p,d);try{Gt(h,!1,!1,!0)}catch(e){return null}r=it(r,Bt.isFullRegex)}else{if(d>0&&124===t.charCodeAt(d-1)&&(r=it(r,Bt.isRightAnchor),d-=1),p0&&42===t.charCodeAt(d-1)&&(d-=1),!1===ot(r,Bt.isHostnameAnchor)&&d-p>0&&42===t.charCodeAt(p)&&(r=nt(r,Bt.isLeftAnchor),p+=1),ot(r,Bt.isLeftAnchor)&&(d-p==5&<(t,"ws://",p)?(r=it(r,Bt.fromWebsocket),r=nt(r,Bt.isLeftAnchor),r=nt(r,Bt.fromHttp),r=nt(r,Bt.fromHttps),p=d):d-p==7&<(t,"http://",p)?(r=it(r,Bt.fromHttp),r=nt(r,Bt.fromHttps),r=nt(r,Bt.isLeftAnchor),p=d):d-p==8&<(t,"https://",p)?(r=it(r,Bt.fromHttps),r=nt(r,Bt.fromHttp),r=nt(r,Bt.isLeftAnchor),p=d):d-p==8&<(t,"http*://",p)&&(r=it(r,Bt.fromHttps),r=it(r,Bt.fromHttp),r=nt(r,Bt.isLeftAnchor),p=d)),d-p>0&&(h=t.slice(p,d).toLowerCase(),r=oo(r,Bt.isUnicode,ft(h)),!1===ot(r,Bt.isRegex)&&(r=oo(r,Bt.isRegex,function(e,t,o){const i=e.indexOf("^",t);if(-1!==i&&it.length)return!1;if(e.length===t.length)return e===t;const i=t.indexOf(e);if(-1===i)return!1;if(0===i)return!0===o||46===t.charCodeAt(e.length)||46===e.charCodeAt(e.length-1);if(t.length===i+e.length)return 46===t.charCodeAt(i-1)||46===e.charCodeAt(0);return!(!0!==o&&46!==t.charCodeAt(e.length)&&46!==e.charCodeAt(e.length-1)||46!==t.charCodeAt(i-1)&&46!==e.charCodeAt(0))}(i,t.hostname,void 0!==e.filter&&42===e.filter.charCodeAt(0)))return!1;if(e.isRegex())return e.getRegex().test(t.url.slice(t.url.indexOf(i)+i.length));if(e.isRightAnchor()&&e.isLeftAnchor()){return o===t.url.slice(t.url.indexOf(i)+i.length)}if(e.isRightAnchor()){const n=t.hostname;return!1===e.hasFilter()?i.length===n.length||n.endsWith(i):t.url.endsWith(o)}return e.isLeftAnchor()?lt(t.url,o,t.url.indexOf(i)+i.length):!1===e.hasFilter()||-1!==t.url.indexOf(o,t.url.indexOf(i)+i.length)}if(e.isRegex())return e.getRegex().test(t.url);if(e.isLeftAnchor()&&e.isRightAnchor())return t.url===o;if(e.isLeftAnchor())return at(t.url,o);if(e.isRightAnchor())return t.url.endsWith(o);if(!1===e.hasFilter())return!0;return-1!==t.url.indexOf(o)}(this,e)}serialize(e){e.pushUint32(this.mask);const t=e.getPos();e.pushUint8(0);let o=0;void 0!==this.filter&&(o|=1,this.isUnicode()?e.pushUTF8(this.filter):e.pushNetworkFilter(this.filter)),void 0!==this.hostname&&(o|=2,e.pushNetworkHostname(this.hostname)),void 0!==this.domains&&(o|=4,this.domains.serialize(e)),void 0!==this.rawLine&&(o|=8,e.pushRawNetwork(this.rawLine)),void 0!==this.denyallow&&(o|=16,this.denyallow.serialize(e)),void 0!==this.optionValue&&(o|=32,this.isCSP()?e.pushNetworkCSP(this.optionValue):this.isRedirect()?e.pushNetworkRedirect(this.optionValue):e.pushUTF8(this.optionValue)),e.setByte(t,o)}getSerializedSize(e){let t=5;return void 0!==this.filter&&(!0===this.isUnicode()?t+=X(this.filter):t+=function(e,t){return!0===t?Q(G().networkFilter.getCompressedSize(e),!1):Y(e)}(this.filter,e)),void 0!==this.hostname&&(t+=function(e,t){return!0===t?Q(G().networkHostname.getCompressedSize(e),!1):Y(e)}(this.hostname,e)),void 0!==this.domains&&(t+=this.domains.getSerializedSize()),void 0!==this.rawLine&&(t+=function(e,t){return!0===t?Q(G().networkRaw.getCompressedSize(j(e)),!1):X(e)}(this.rawLine,e)),void 0!==this.denyallow&&(t+=this.denyallow.getSerializedSize()),void 0!==this.optionValue&&(this.isCSP()?t+=function(e,t){return!0===t?Q(G().networkCSP.getCompressedSize(e),!1):Y(e)}(this.optionValue,e):this.isRedirect()?t+=function(e,t){return!0===t?Q(G().networkRedirect.getCompressedSize(e),!1):Y(e)}(this.optionValue,e):t+=X(this.optionValue)),t}toString(e){if(void 0!==this.rawLine)return this.rawLine;let t="";this.isException()&&(t+="@@"),this.isHostnameAnchor()?t+="||":this.fromHttp()!==this.fromHttps()?this.fromHttp()?t+="|http://":t+="|https://":this.isLeftAnchor()&&(t+="|"),this.hasHostname()&&(t+=this.getHostname(),t+="^"),this.isFullRegex()?t+=`/${this.getRegex().source}/`:this.isRegex()?t+=this.getRegex().source:t+=this.getFilter(),this.isRightAnchor()&&"^"!==t[t.length-1]&&(t+="|");const o=[];if(!1===this.fromAny()){const e=tt(this.getCptMask());if(tt(Dt)-e")),void 0!==this.denyallow&&(void 0!==this.denyallow.parts?o.push(`denyallow=${this.denyallow.parts}`):o.push("denyallow=")),this.isBadFilter()&&o.push("badfilter"),o.length>0&&(t+="function"==typeof e?`$${o.map(e).join(",")}`:`$${o.join(",")}`),t}getIdWithoutBadFilter(){return qt(this.mask&~Bt.isBadFilter,this.filter,this.hostname,this.domains,this.denyallow,this.optionValue)}getId(){return void 0===this.id&&(this.id=qt(this.mask,this.filter,this.hostname,this.domains,this.denyallow,this.optionValue)),this.id}hasFilter(){return void 0!==this.filter}hasDomains(){return void 0!==this.domains}getMask(){return this.mask}getCptMask(){return this.getMask()&Dt}isRedirect(){return ot(this.getMask(),Bt.isRedirect)}isRedirectRule(){return ot(this.mask,Bt.isRedirectRule)}getRedirect(){var e;return null!==(e=this.optionValue)&&void 0!==e?e:""}isReplace(){return ot(this.getMask(),Bt.isReplace)}getHtmlModifier(){var e;return 0===(null===(e=this.optionValue)||void 0===e?void 0:e.length)?null:Jt(this.optionValue)}isHtmlFilteringRule(){return this.isReplace()}getRedirectResource(){const e=this.getRedirect(),t=e.lastIndexOf(":");return-1===t?e:e.slice(0,t)}getRedirectPriority(){const e=this.getRedirect(),t=e.lastIndexOf(":");return-1===t?0:Number(e.slice(t+1))}hasHostname(){return void 0!==this.hostname}getHostname(){return this.hostname||""}getFilter(){return this.filter||""}getRegex(){return void 0===this.regex&&(this.regex=void 0!==this.filter&&this.isRegex()?Gt(this.filter,this.isLeftAnchor(),this.isRightAnchor(),this.isFullRegex()):eo),this.regex}getTokens(){if(Ze.reset(),void 0!==this.domains&&void 0!==this.domains.hostnames&&void 0===this.domains.entities&&void 0===this.domains.notHostnames&&void 0===this.domains.notEntities&&1===this.domains.hostnames.length&&Ze.push(this.domains.hostnames[0]),!1===this.isFullRegex()){if(void 0!==this.filter){const e=!this.isRightAnchor(),t=!this.isLeftAnchor();!function(e,t,o,i){const n=Math.min(e.length,2*i.remaining());let s=!1,c=0,r=0,a=et;for(let o=0;o1&&42!==n&&42!==c&&(!1===t||0!==r)&&i.push(a>>>0)),c=n)}!1===o&&!0===s&&42!==c&&e.length-r>1&&!1===i.full()&&i.push(a>>>0)}(this.filter,t,e,Ze)}void 0!==this.hostname&&ht(this.hostname,!1,void 0!==this.filter&&42===this.filter.charCodeAt(0),Ze)}else void 0!==this.filter&&function(e,t){let o=e.length-1,i=1,n=0;for(;i=i;o-=1){const t=e.charCodeAt(o);if(124===t)return;if(41===t||42===t||43===t||63===t||93===t||125===t||46===t&&92!==e.charCodeAt(o-1)||92===t&&dt(n))break;n=t}if(o1&&ht(e.slice(1,i),94!==e.charCodeAt(1),!0,t),oObject.prototype.hasOwnProperty.call(uo,e),mo=(e,t)=>"true"===e&&!t.has("true")||!("false"===e&&!t.has("false"))&&!!t.get(e),Ao=(e,t)=>{if(0===e.length)return!1;if((e=>po.test(e))(e))return"!"===e[0]?!mo(e.slice(1),t):mo(e,t);const o=(e=>e.match(lo))(e);if(!o||0===o.length)return!1;if(e.length!==o.reduce(((e,t)=>e+t.length),0))return!1;const i=[],n=[];for(const e of o)if("("===e)n.push(e);else if(")"===e){for(;0!==n.length&&"("!==n[n.length-1];)i.push(n.pop());if(0===n.length)return!1;n.pop()}else if(ho(e)){for(;n.length&&ho(n[n.length-1])&&uo[e]<=uo[n[n.length-1]];)i.push(n.pop());n.push(e)}else i.push(mo(e,t));if("("===n[0]||")"===n[0])return!1;for(;0!==n.length;)i.push(n.pop());for(const e of i)if(!0===e||!1===e)n.push(e);else if("!"===e)n.push(!n.pop());else if(ho(e)){const t=n.pop(),o=n.pop();"&&"===e?n.push(o&&t):n.push(o||t)}return!0===n[0]},go=class e{static getCondition(e){return e.slice(5).replace(/\s/g,"")}static parse(t,o){return new this({condition:e.getCondition(t),filterIDs:o})}static deserialize(e){const t=e.getUTF8(),o=new Set;for(let t=0,i=e.getUint32();t2)for(;e4&&32===t.charCodeAt(0)&&32===t.charCodeAt(1)&&32===t.charCodeAt(2)&&32===t.charCodeAt(3)&&32!==t.charCodeAt(4)))break;a+=t.slice(4),e+=1}0!==a.length&&a.charCodeAt(a.length-1)<=32&&(a=a.trim());const l=fo(a,{extendedNonSupportedTypes:!0});if(l===ro.NETWORK&&!0===t.loadNetworkFilters){const i=to.parse(a,t.debug);null!==i?(o.push(i),r.length>0&&r[r.length-1].filterIDs.add(i.getId())):n.push({lineNumber:e,filter:a,filterType:l})}else if(l===ro.COSMETIC&&!0===t.loadCosmeticFilters){const o=Nt.parse(a,t.debug);null!==o?!0!==t.loadGenericCosmeticsFilters&&!1!==o.isGenericHide()||(i.push(o),r.length>0&&r[r.length-1].filterIDs.add(o.getId())):n.push({lineNumber:e,filter:a,filterType:ro.COSMETIC})}else if(t.loadPreprocessors){const t=co(a);if(t===io.BEGIF)r.length>0?r.push(new go({condition:`(${r[r.length-1].condition})&&(${go.getCondition(a)})`})):r.push(go.parse(a));else if((t===io.ENDIF||t===io.ELSE)&&r.length>0){const e=r.pop();c.push(e),t===io.ELSE&&r.push(new go({condition:`!(${e.condition})`}))}else l===ro.NOT_SUPPORTED_ADGUARD&&n.push({lineNumber:e,filter:a,filterType:l})}else l===ro.NOT_SUPPORTED_ADGUARD&&n.push({lineNumber:e,filter:a,filterType:l})}return{networkFilters:o,cosmeticFilters:i,preprocessors:c.filter((e=>e.filterIDs.size>0)),notSupportedFilters:n}}(ao=ro||(ro={}))[ao.NOT_SUPPORTED=0]="NOT_SUPPORTED",ao[ao.NETWORK=1]="NETWORK",ao[ao.COSMETIC=2]="COSMETIC",ao[ao.NOT_SUPPORTED_EMPTY=100]="NOT_SUPPORTED_EMPTY",ao[ao.NOT_SUPPORTED_COMMENT=101]="NOT_SUPPORTED_COMMENT",ao[ao.NOT_SUPPORTED_ADGUARD=102]="NOT_SUPPORTED_ADGUARD";var bo="video/flv",yo={contentType:`${bo};base64`,aliases:[bo,".flv","flv"],body:"RkxWAQEAAAAJAAAAABIAALgAAAAAAAAAAgAKb25NZXRhRGF0YQgAAAAIAAhkdXJhdGlvbgAAAAAAAAAAAAAFd2lkdGgAP/AAAAAAAAAABmhlaWdodAA/8AAAAAAAAAANdmlkZW9kYXRhcmF0ZQBAaGoAAAAAAAAJZnJhbWVyYXRlAEBZAAAAAAAAAAx2aWRlb2NvZGVjaWQAQAAAAAAAAAAAB2VuY29kZXICAA1MYXZmNTcuNDEuMTAwAAhmaWxlc2l6ZQBAaoAAAAAAAAAACQAAAMM="},wo="image/gif",vo={contentType:`${wo};base64`,aliases:[wo,".gif","gif"],body:"R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"},_o="text/html",Co={contentType:_o,aliases:[_o,".html","html",".htm","htm","noopframe","noop.html"],body:""},xo="image/vnd.microsoft.icon",So={contentType:`${xo};base64`,aliases:[xo,".ico","ico"],body:"AAABAAEAAQEAAAEAGAAwAAAAFgAAACgAAAABAAAAAgAAAAEAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8AAAAAAA=="},Eo="image/jpeg",Io={contentType:`${Eo};base64`,aliases:[Eo,".jpg","jpg",".jpeg","jpeg"],body:"/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k="},Fo="application/javascript",Oo={contentType:Fo,aliases:[Fo,".js","js","javascript",".jsx","jsx","typescript",".ts","ts","noop.js","noopjs"],body:""},To="application/json",Po={contentType:To,aliases:[To,".json","json"],body:"0"},Ro="audio/mpeg",zo={contentType:`${Ro};base64`,aliases:[Ro,".mp3","mp3","noop-0.1s.mp3","noopmp3-0.1s"],body:"/+MYxAAAAANIAAAAAExBTUUzLjk4LjIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"},Lo="video/mp4",Uo={contentType:`${Lo};base64`,aliases:[Lo,".mp4","mp4",".m4a","m4a",".m4p","m4p",".m4b","m4b",".m4r","m4r",".m4v","m4v","noop-1s.mp4","noopmp4-1s"],body:"AAAAHGZ0eXBpc29tAAACAGlzb21pc28ybXA0MQAAAAhmcmVlAAAC721kYXQhEAUgpBv/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3pwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcCEQBSCkG//AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADengAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAsJtb292AAAAbG12aGQAAAAAAAAAAAAAAAAAAAPoAAAALwABAAABAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAB7HRyYWsAAABcdGtoZAAAAAMAAAAAAAAAAAAAAAIAAAAAAAAALwAAAAAAAAAAAAAAAQEAAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAACRlZHRzAAAAHGVsc3QAAAAAAAAAAQAAAC8AAAAAAAEAAAAAAWRtZGlhAAAAIG1kaGQAAAAAAAAAAAAAAAAAAKxEAAAIAFXEAAAAAAAtaGRscgAAAAAAAAAAc291bgAAAAAAAAAAAAAAAFNvdW5kSGFuZGxlcgAAAAEPbWluZgAAABBzbWhkAAAAAAAAAAAAAAAkZGluZgAAABxkcmVmAAAAAAAAAAEAAAAMdXJsIAAAAAEAAADTc3RibAAAAGdzdHNkAAAAAAAAAAEAAABXbXA0YQAAAAAAAAABAAAAAAAAAAAAAgAQAAAAAKxEAAAAAAAzZXNkcwAAAAADgICAIgACAASAgIAUQBUAAAAAAfQAAAHz+QWAgIACEhAGgICAAQIAAAAYc3R0cwAAAAAAAAABAAAAAgAABAAAAAAcc3RzYwAAAAAAAAABAAAAAQAAAAIAAAABAAAAHHN0c3oAAAAAAAAAAAAAAAIAAAFzAAABdAAAABRzdGNvAAAAAAAAAAEAAAAsAAAAYnVkdGEAAABabWV0YQAAAAAAAAAhaGRscgAAAAAAAAAAbWRpcmFwcGwAAAAAAAAAAAAAAAAtaWxzdAAAACWpdG9vAAAAHWRhdGEAAAABAAAAAExhdmY1Ni40MC4xMDE="},Bo="application/pdf",Vo={contentType:`${Bo};base64`,aliases:[Bo,".pdf","pdf"],body:"JVBERi0xLgoxIDAgb2JqPDwvUGFnZXMgMiAwIFI+PmVuZG9iagoyIDAgb2JqPDwvS2lkc1szIDAgUl0vQ291bnQgMT4+ZW5kb2JqCjMgMCBvYmo8PC9QYXJlbnQgMiAwIFI+PmVuZG9iagp0cmFpbGVyIDw8L1Jvb3QgMSAwIFI+Pg=="},No="image/png",Mo={contentType:`${No};base64`,aliases:[No,".png","png"],body:"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg=="},jo="image/svg+xml",Do={contentType:jo,aliases:[jo,".svg","svg"],body:"https://raw.githubusercontent.com/mathiasbynens/small/master/svg.svg"},Ho="text/plain",Wo={contentType:Ho,aliases:[Ho,".txt","txt","text","nooptext","noop.txt"],body:""},qo="audio/wav",Go={contentType:`${qo};base64`,aliases:[qo,".wav","wav"],body:"UklGRiQAAABXQVZFZm10IBAAAAABAAEARKwAAIhYAQACABAAZGF0YQAAAAA="},$o="video/webm",Ko={contentType:`${$o};base64`,aliases:[$o,".webm","webm"],body:"GkXfo0AgQoaBAUL3gQFC8oEEQvOBCEKCQAR3ZWJtQoeBAkKFgQIYU4BnQI0VSalmQCgq17FAAw9CQE2AQAZ3aGFtbXlXQUAGd2hhbW15RIlACECPQAAAAAAAFlSua0AxrkAu14EBY8WBAZyBACK1nEADdW5khkAFVl9WUDglhohAA1ZQOIOBAeBABrCBCLqBCB9DtnVAIueBAKNAHIEAAIAwAQCdASoIAAgAAUAmJaQAA3AA/vz0AAA="},Qo="image/webp",Yo={contentType:`${Qo};base64`,aliases:[Qo,".webp","webp"],body:"UklGRhIAAABXRUJQVlA4TAYAAAAvQWxvAGs="},Xo="video/wmv",Zo={contentType:`${Xo};base64`,aliases:[Xo,".wmv","wmv"],body:"MCaydY5mzxGm2QCqAGLObOUBAAAAAAAABQAAAAECodyrjEepzxGO5ADADCBTZWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcCAAAAAAAAAIA+1d6xnQEAAAAAAAAAAMAF2QEAAAAAAAAAAAAAAAAcDAAAAAAAAAIAAACADAAAgAwAAEANAwC1A79fLqnPEY7jAMAMIFNlLgAAAAAAAAAR0tOruqnPEY7mAMAMIFNlBgAAAAAAQKTQ0gfj0hGX8ACgyV6oUGQAAAAAAAAAAQAoAFcATQAvAEUAbgBjAG8AZABpAG4AZwBTAGUAdAB0AGkAbgBnAHMAAAAAABwATABhAHYAZgA1ADcALgA0ADEALgAxADAAMAAAAJEH3Le3qc8RjuYAwAwgU2WBAAAAAAAAAMDvGbxNW88RqP0AgF9cRCsAV/sgVVvPEaj9AIBfXEQrAAAAAAAAAAAzAAAAAAAAAAEAAAAAAAEAAAABAAAAAigAKAAAAAEAAAABAAAAAQAYAE1QNDMDAAAAAAAAAAAAAAAAAAAAAAAAAEBS0YYdMdARo6QAoMkDSPZMAAAAAAAAAEFS0YYdMdARo6QAoMkDSPYBAAAAAQAKAG0AcwBtAHAAZQBnADQAdgAzAAAAAAAEAE1QNDM2JrJ1jmbPEabZAKoAYs5sMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQ=="},Jo=(()=>{const e={};for(const t of[yo,vo,Co,So,Io,Oo,Po,zo,Uo,Vo,Mo,Do,Wo,Go,Ko,Yo,Zo])for(const o of t.aliases)e[o]=t;return e})();function ei(e){return Jo[e]||Wo}var ti=class e{static deserialize(t){const o=t.getASCII(),i=new Map,n=t.getUint16();for(let e=0;e{"application/javascript"===e&&s.set(o,t)})),new e({checksum:o,js:s,resources:i})}static parse(t,{checksum:o}){const i=new Map,n=t.split("\n\n");for(const e of n){const t=(s=e,s.replace(/^\s*#.*$/gm,"")).trim();if(0!==t.length){const e=t.indexOf("\n"),o=t.slice(0,e).split(/\s+/),n=o[0],s=o[1],c=t.slice(e+1);if(void 0===n||void 0===s||void 0===c)continue;let r=i.get(s);void 0===r&&(r=new Map,i.set(s,r)),r.set(n,c)}}var s;const c=i.get("application/javascript")||new Map;for(const[e,t]of c.entries())e.endsWith(".js")&&c.set(e.slice(0,-3),t);const r=new Map;return i.forEach(((e,t)=>{e.forEach(((e,o)=>{r.set(o,{contentType:t,body:e})}))})),new e({checksum:o,js:c,resources:r})}constructor({checksum:e="",js:t=new Map,resources:o=new Map}={}){this.checksum=e,this.js=t,this.resources=o}getResource(e){const{body:t,contentType:o}=this.resources.get(e)||ei(e);let i;var n;return i=-1!==o.indexOf(";")?`data:${o},${t}`:`data:${o};base64,${n=t,"undefined"!=typeof btoa?btoa(n):"undefined"!=typeof Buffer?Buffer.from(n).toString("base64"):n}`,{body:t,contentType:o,dataUrl:i}}getSerializedSize(){let e=Y(this.checksum)+2;return this.resources.forEach((({contentType:t,body:o},i)=>{e+=Y(i)+Y(t)+X(o)})),e}serialize(e){e.pushASCII(this.checksum),e.pushUint16(this.resources.size),this.resources.forEach((({contentType:t,body:o},i)=>{e.pushASCII(i),e.pushASCII(t),e.pushUTF8(o)}))}};var oi=new Uint32Array(0);function ii(e){return`(?:${e.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&")})`}function ni(e,t,o){let i=e.get(t);void 0===i&&(i=[],e.set(t,i)),i.push(o)}function si(e,t){const o=new Map;for(const i of e)ni(o,t(i),i);return Array.from(o.values())}function ci(e,t){const o=[],i=[];for(const n of e)t(n)?o.push(n):i.push(n);return{negative:i,positive:o}}var ri=[{description:"Remove duplicated filters by ID",fusion:e=>e[0],groupByCriteria:e=>""+e.getId(),select:()=>!0},{description:"Group idential filter with same mask but different domains in single filters",fusion:e=>{const t=[],o=new Set,i=new Set,n=new Set,s=new Set;for(const{domains:c}of e)if(void 0!==c){if(void 0!==c.parts&&t.push(c.parts),void 0!==c.hostnames)for(const e of c.hostnames)o.add(e);if(void 0!==c.entities)for(const e of c.entities)n.add(e);if(void 0!==c.notHostnames)for(const e of c.notHostnames)i.add(e);if(void 0!==c.notEntities)for(const e of c.notEntities)s.add(e)}return new to(Object.assign({},e[0],{domains:new xt({hostnames:0!==o.size?new Uint32Array(o).sort():void 0,entities:0!==n.size?new Uint32Array(n).sort():void 0,notHostnames:0!==i.size?new Uint32Array(i).sort():void 0,notEntities:0!==s.size?new Uint32Array(s).sort():void 0,parts:0!==t.length?t.join(","):void 0}),rawLine:void 0!==e[0].rawLine?e.map((({rawLine:e})=>e)).join(" <+> "):void 0}))},groupByCriteria:e=>{var t;return e.getHostname()+e.getFilter()+e.getMask()+(null!==(t=e.optionValue)&&void 0!==t?t:"")},select:e=>!e.isCSP()&&void 0===e.denyallow&&void 0!==e.domains},{description:"Group simple patterns, into a single filter",fusion:e=>{const t=[];for(const o of e)o.isRegex()?t.push(`(?:${o.getRegex().source})`):o.isRightAnchor()?t.push(`${ii(o.getFilter())}$`):o.isLeftAnchor()?t.push(`^${ii(o.getFilter())}`):t.push(ii(o.getFilter()));return new to(Object.assign({},e[0],{mask:it(e[0].mask,Bt.isRegex),rawLine:void 0!==e[0].rawLine?e.map((({rawLine:e})=>e)).join(" <+> "):void 0,regex:new RegExp(t.join("|"))}))},groupByCriteria:e=>""+(e.getMask()&~Bt.isRegex&~Bt.isFullRegex),select:e=>void 0===e.domains&&void 0===e.denyallow&&!e.isHostnameAnchor()&&!e.isRedirect()&&!e.isCSP()}];function ai(e){return e}function li(e){return e}function pi(e){const t=[];let o=e;for(const{select:e,fusion:i,groupByCriteria:n}of ri){const{positive:s,negative:c}=ci(o,e);o=c;const r=si(s,n);for(const e of r)e.length>1?t.push(i(e)):o.push(e[0])}for(const e of o)t.push(e);return t}function di(e){return e--,e|=e>>1,e|=e>>2,e|=e>>4,e|=e>>8,e|=e>>16,++e}var ui=1;var hi=Number.MAX_SAFE_INTEGER>>>0,mi=class e{static deserialize(t,o,i,n){const s=t.getUint32(),c=t.getUint32(),r=t.getUint32(),a=ee.fromUint8Array(t.getBytes(!0),n),l=a.getUint32ArrayView(s),p=a.getUint32ArrayView(c),d=a.pos;return a.seekZero(),new e({config:n,deserialize:o,filters:[],optimize:i}).updateInternals({bucketsIndex:p,filtersIndexStart:d,numberOfFilters:r,tokensLookupIndex:l,view:a})}constructor({deserialize:e,filters:t,optimize:o,config:i}){this.bucketsIndex=W,this.filtersIndexStart=0,this.numberOfFilters=0,this.tokensLookupIndex=W,this.cache=new Map,this.view=ee.empty(i),this.deserializeFilter=e,this.optimize=o,this.config=i,0!==t.length&&this.update(t,void 0)}getFilters(){const e=[];if(0===this.numberOfFilters)return e;this.view.setPos(this.filtersIndexStart);for(let t=0;t!t.has(e.getId())||(r-=e.getSerializedSize(o),!1))));for(const t of e)r+=t.getSerializedSize(o),a.push(t)}else{a=e;for(const t of e)r+=t.getSerializedSize(o)}if(0===a.length)return void this.updateInternals({bucketsIndex:W,filtersIndexStart:0,numberOfFilters:0,tokensLookupIndex:W,view:ee.empty(this.config)});!0===this.config.debug&&a.sort(((e,t)=>e.getId()-t.getId()));const l=new Uint32Array(Math.max(di(2*a.length),256));for(const e of a){const t=e.getTokens();s.push(t),c+=2*t.length,n+=t.length;for(const e of t){i+=e.length;for(const t of e)l[t%l.length]+=1}}r+=4*c;const p=Math.max(2,di(n)),d=p-1,u=[];for(let e=0;e1?this.optimize(c):c,lastRequestSeen:-1},!0===this.config.enableInMemoryCache&&this.cache.set(e,i)}if(i.lastRequestSeen!==t){i.lastRequestSeen=t;const e=i.filters;for(let t=0;t0){const o=e[t];e[t]=e[t-1],e[t-1]=o}return!1}}return!0}},Ai=new Uint8Array(4),gi=class e{static deserialize(t,o,i){const n=new e({deserialize:o,config:i,filters:[]});return n.filters=t.getBytes(),n}constructor({config:e,deserialize:t,filters:o}){this.deserialize=t,this.filters=Ai,this.config=e,0!==o.length&&this.update(o,void 0)}update(e,t){let o=this.filters.byteLength,i=[];const n=this.config.enableCompression,s=this.getFilters();if(0!==s.length)if(void 0===t||0===t.size)i=s;else for(const e of s)!1===t.has(e.getId())?i.push(e):o-=e.getSerializedSize(n);const c=i.length!==s.length,r=i.length;for(const t of e)o+=t.getSerializedSize(n),i.push(t);const a=i.length>r;if(0===i.length)this.filters=Ai;else if(!0===a||!0===c){const e=ee.allocate(o,this.config);e.pushUint32(i.length),!0===this.config.debug&&i.sort(((e,t)=>e.getId()-t.getId()));for(const t of i)t.serialize(e);this.filters=e.buffer}}getSerializedSize(){return K(this.filters,!1)}serialize(e){e.pushBytes(this.filters)}getFilters(){if(this.filters.byteLength<=4)return[];const e=[],t=ee.fromUint8Array(this.filters,this.config),o=t.getUint32();for(let i=0;i(!0!==c&&!0!==o.isScriptInject()||!o.match(t,e)||(null==p?void 0:p(o))||u.push(o),!0))),!0===s&&!0===a){const o=this.getGenericRules(l);for(const i of o)!0!==i.match(t,e)||(null==p?void 0:p(i))||u.push(i)}!0===s&&!0===r&&0!==o.length&&this.classesIndex.iterMatchingFilters(rt(o),(o=>(o.match(t,e)&&!(null==p?void 0:p(o))&&u.push(o),!0))),!0===s&&!0===r&&0!==n.length&&this.idsIndex.iterMatchingFilters(rt(n),(o=>(o.match(t,e)&&!(null==p?void 0:p(o))&&u.push(o),!0))),!0===s&&!0===r&&0!==i.length&&this.hrefsIndex.iterMatchingFilters(function(e){const t=e.sort();let o=1;for(let e=1;e{return t=e,Ze.reset(),mt(t,Ze),Ze.slice();var t})))),(o=>(o.match(t,e)&&!(null==p?void 0:p(o))&&u.push(o),!0)));const h=[];return 0!==u.length&&this.unhideIndex.iterMatchingFilters(d,(o=>(o.match(t,e)&&!(null==p?void 0:p(o))&&h.push(o),!0))),{filters:u,unhides:h}}getStylesheetsFromFilters({filters:e,extendedFilters:t},{getBaseRules:o,allowGenericHides:i,hidingStyle:n=It}){let s=!1===o||!1===i?"":this.getBaseStylesheet(n);0!==e.length&&(0!==s.length&&(s+="\n\n"),s+=bi(e,n));const c=[];if(0!==t.length){const e=new Map;for(const o of t){const t=o.getSelectorAST();if(void 0!==t){const i=o.isRemove()?void 0:o.getStyleAttributeHash();void 0!==i&&e.set(o.getStyle(n),i),c.push({ast:t,remove:o.isRemove(),attribute:i})}}0!==e.size&&(0!==s.length&&(s+="\n\n"),s+=[...e.entries()].map((([e,t])=>`[${t}] { ${e} }`)).join("\n\n"))}return{stylesheet:s,extended:c}}getGenericRules(e){return null===this.extraGenericRules?this.lazyPopulateGenericRulesCache(e).genericRules:this.extraGenericRules}getBaseStylesheet(e){return null===this.baseStylesheet?this.lazyPopulateGenericRulesCache(e).baseStylesheet:this.baseStylesheet}lazyPopulateGenericRulesCache(e){if(null===this.baseStylesheet||null===this.extraGenericRules){const t=this.unhideIndex.getFilters(),o=new Set;for(const e of t)o.add(e.getSelector());const i=this.genericRules.getFilters(),n=[],s=[];for(const e of i)e.hasCustomStyle()||e.isScriptInject()||e.hasHostnameConstraint()||o.has(e.getSelector())?s.push(e):n.push(e);this.baseStylesheet=bi(n,e),this.extraGenericRules=s}return{baseStylesheet:this.baseStylesheet,genericRules:this.extraGenericRules}}},vi=class e{static deserialize(t,o){const i=new e({config:o});return i.index=mi.deserialize(t,to.deserialize,o.enableOptimizations?pi:ai,o),i.badFilters=gi.deserialize(t,to.deserialize,o),i}constructor({filters:e=[],config:t}){this.index=new mi({config:t,deserialize:to.deserialize,filters:[],optimize:t.enableOptimizations?pi:ai}),this.badFiltersIds=null,this.badFilters=new gi({config:t,deserialize:to.deserialize,filters:[]}),0!==e.length&&this.update(e,void 0)}getFilters(){return[].concat(this.badFilters.getFilters(),this.index.getFilters())}update(e,t){const o=[],i=[];for(const t of e)t.isBadFilter()?o.push(t):i.push(t);this.badFilters.update(o,t),this.index.update(i,t),this.badFiltersIds=null}getSerializedSize(){return this.badFilters.getSerializedSize()+this.index.getSerializedSize()}serialize(e){this.index.serialize(e),this.badFilters.serialize(e)}matchAll(e,t){const o=[];return this.index.iterMatchingFilters(e.getTokens(),(i=>(i.match(e)&&!1===this.isFilterDisabled(i)&&!(null==t?void 0:t(i))&&o.push(i),!0))),o}match(e,t){let o;return this.index.iterMatchingFilters(e.getTokens(),(i=>!(i.match(e)&&!1===this.isFilterDisabled(i)&&!(null==t?void 0:t(i)))||(o=i,!1))),o}isFilterDisabled(e){if(null===this.badFiltersIds){const e=this.badFilters.getFilters();if(0===e.length)return!1;const t=new Set;for(const o of e)t.add(o.getIdWithoutBadFilter());this.badFiltersIds=t}return this.badFiltersIds.has(e.getId())}},_i=class e{static deserialize(t,o){const i=new e({config:o});return i.networkIndex=mi.deserialize(t,to.deserialize,o.enableOptimizations?pi:ai,o),i.exceptionsIndex=mi.deserialize(t,to.deserialize,o.enableOptimizations?pi:ai,o),i.cosmeticIndex=mi.deserialize(t,Nt.deserialize,li,o),i.unhideIndex=mi.deserialize(t,Nt.deserialize,li,o),i}constructor({filters:e=[],config:t}){this.config=t,this.networkIndex=new mi({config:t,deserialize:to.deserialize,filters:[],optimize:t.enableOptimizations?pi:ai}),this.exceptionsIndex=new mi({config:t,deserialize:to.deserialize,filters:[],optimize:t.enableOptimizations?pi:ai}),this.cosmeticIndex=new mi({config:t,deserialize:Nt.deserialize,filters:[],optimize:li}),this.unhideIndex=new mi({config:t,deserialize:Nt.deserialize,filters:[],optimize:li}),0!==e.length&&this.update(e,void 0)}update(e,t){const o=[],i=[],n=[],s=[];for(const t of e)t.isNetworkFilter()?t.isException()?i.push(t):o.push(t):t.isCosmeticFilter()&&(t.isUnhide()?s.push(t):n.push(t));this.networkIndex.update(o,t),this.exceptionsIndex.update(i,t),this.cosmeticIndex.update(n,t),this.unhideIndex.update(s,t)}serialize(e){this.networkIndex.serialize(e),this.exceptionsIndex.serialize(e),this.cosmeticIndex.serialize(e),this.unhideIndex.serialize(e)}getSerializedSize(){return this.networkIndex.getSerializedSize()+this.exceptionsIndex.getSerializedSize()+this.cosmeticIndex.getSerializedSize()+this.unhideIndex.getSerializedSize()}getHTMLFilters(e,t){const o=[],i=[],n=[],s=[];if(!0===this.config.loadNetworkFilters&&this.networkIndex.iterMatchingFilters(e.getTokens(),(i=>(i.match(e)&&!(null==t?void 0:t(i))&&o.push(i),!0))),0!==o.length&&this.exceptionsIndex.iterMatchingFilters(e.getTokens(),(o=>(o.match(e)&&!(null==t?void 0:t(o))&&n.push(o),!0))),!0===this.config.loadCosmeticFilters&&e.isMainFrame()){const{hostname:o,domain:n=""}=e,c=yi(o,n);this.cosmeticIndex.iterMatchingFilters(c,(e=>(e.match(o,n)&&!(null==t?void 0:t(e))&&i.push(e),!0))),0!==i.length&&this.unhideIndex.iterMatchingFilters(c,(e=>(e.match(o,n)&&!(null==t?void 0:t(e))&&s.push(e),!0)))}return{networkFilters:o,cosmeticFilters:i,unhides:s,exceptions:n}}getFilters(){return[].concat(this.networkIndex.getFilters(),this.exceptionsIndex.getFilters(),this.cosmeticIndex.getFilters(),this.unhideIndex.getFilters())}},Ci=Number.MAX_SAFE_INTEGER>>>0,xi=class e{static deserialize(t,o){const i=t.getUint32(),n=t.getUint32(),s=t.getUint32(),c=ee.fromUint8Array(t.getBytes(!0),{enableCompression:!1}),r=c.getUint32ArrayView(i),a=c.getUint32ArrayView(n),l=c.pos;return c.seekZero(),new e({deserialize:o,values:[],getKeys:()=>[],getSerializedSize:()=>0,serialize:()=>{}}).updateInternals({bucketsIndex:a,valuesIndexStart:l,numberOfValues:s,tokensLookupIndex:r,view:c})}constructor({serialize:e,deserialize:t,getKeys:o,getSerializedSize:i,values:n}){if(this.cache=new Map,this.bucketsIndex=W,this.tokensLookupIndex=W,this.valuesIndexStart=0,this.numberOfValues=0,this.view=ee.empty({enableCompression:!1}),this.deserializeValue=t,0!==n.length){const t=[];let s=0,c=0;for(const e of n)c+=i(e);if(0===n.length)return void this.updateInternals({bucketsIndex:W,valuesIndexStart:0,numberOfValues:0,tokensLookupIndex:W,view:ee.empty({enableCompression:!1})});for(const e of n){const i=o(e);t.push(i),s+=2*i.length}c+=4*s;const r=Math.max(2,di(n.length)),a=r-1,l=[];for(let e=0;e[Ei(e)],serialize:Fi,deserialize:Oi,values:e})}function Pi(e){if(null===e)return!1;if("object"!=typeof e)return!1;const{key:t,name:o,description:i,country:n,website_url:s,privacy_policy_url:c,privacy_contact:r,ghostery_id:a}=e;return"string"==typeof t&&("string"==typeof o&&((null===i||"string"==typeof i)&&((null===n||"string"==typeof n)&&((null===s||"string"==typeof s)&&((null===c||"string"==typeof c)&&((null===r||"string"==typeof r)&&(null===a||"string"==typeof a)))))))}function Ri(e){return ct(e.key)}function zi(e){return X(e.key)+X(e.name)+X(e.description||"")+X(e.website_url||"")+X(e.country||"")+X(e.privacy_policy_url||"")+X(e.privacy_contact||"")+X(e.ghostery_id||"")}function Li(e,t){t.pushUTF8(e.key),t.pushUTF8(e.name),t.pushUTF8(e.description||""),t.pushUTF8(e.website_url||""),t.pushUTF8(e.country||""),t.pushUTF8(e.privacy_policy_url||""),t.pushUTF8(e.privacy_contact||""),t.pushUTF8(e.ghostery_id||"")}function Ui(e){return{key:e.getUTF8(),name:e.getUTF8(),description:e.getUTF8()||null,website_url:e.getUTF8()||null,country:e.getUTF8()||null,privacy_policy_url:e.getUTF8()||null,privacy_contact:e.getUTF8()||null,ghostery_id:e.getUTF8()||null}}function Bi(e){return new xi({getSerializedSize:zi,getKeys:e=>[Ri(e)],serialize:Li,deserialize:Ui,values:e})}function Vi(e){if(null===e)return!1;if("object"!=typeof e)return!1;const{key:t,name:o,category:i,organization:n,alias:s,website_url:c,domains:r,filters:a}=e;return"string"==typeof t&&("string"==typeof o&&("string"==typeof i&&((null===n||"string"==typeof n)&&(("string"==typeof s||null===s)&&((null===c||"string"==typeof c)&&(!(!Array.isArray(r)||!r.every((e=>"string"==typeof e)))&&!(!Array.isArray(a)||!a.every((e=>"string"==typeof e)))))))))}function Ni(e){const t=[];for(const o of e.filters){const e=to.parse(o);null!==e&&t.push(e.getId())}for(const o of e.domains){const e=to.parse(`||${o}^`);null!==e&&t.push(e.getId())}return[...new Set(t)]}function Mi(e){let t=$(e.domains.length);for(const o of e.domains)t+=X(o);let o=$(e.filters.length);for(const t of e.filters)o+=X(t);return X(e.key)+X(e.name)+X(e.category)+X(e.organization||"")+X(e.alias||"")+X(e.website_url||"")+X(e.ghostery_id||"")+t+o}function ji(e,t){t.pushUTF8(e.key),t.pushUTF8(e.name),t.pushUTF8(e.category),t.pushUTF8(e.organization||""),t.pushUTF8(e.alias||""),t.pushUTF8(e.website_url||""),t.pushUTF8(e.ghostery_id||""),t.pushLength(e.domains.length);for(const o of e.domains)t.pushUTF8(o);t.pushLength(e.filters.length);for(const o of e.filters)t.pushUTF8(o)}function Di(e){const t=e.getUTF8(),o=e.getUTF8(),i=e.getUTF8(),n=e.getUTF8()||null,s=e.getUTF8()||null,c=e.getUTF8()||null,r=e.getUTF8()||null,a=e.getLength(),l=[];for(let t=0;t=2;t.shift()){const e=t.join("."),o=to.parse(`||${e}^`);if(null===o)continue;const i=this.fromId(o.getId());if(i.length>0)return i}return[]}fromId(e){var t,o;const i=[];for(const n of this.patterns.get(e))i.push({pattern:n,category:null===(t=this.categories.get(Ei({key:n.category})))||void 0===t?void 0:t[0],organization:null!==n.organization?null===(o=this.organizations.get(Ri({key:n.organization})))||void 0===o?void 0:o[0]:null});return i}},qi=class{static deserialize(e){const t=new Set;for(let o=0,i=e.getUint32();ot.condition===e.condition));if(t)for(const o of e.filterIDs)t.filterIDs.delete(o)}if(e)for(const t of e){const e=this.preprocessors.find((e=>e.condition===t.condition));if(e)for(const o of t.filterIDs)e.filterIDs.add(o);else this.preprocessors.push(t)}(t&&0!==t.length||e&&0!==e.length)&&this.updateEnv(o)}serialize(e){e.pushUint32(this.excluded.size);for(const t of this.excluded)e.pushUint32(t);e.pushUint32(this.preprocessors.length);for(const t of this.preprocessors)t.serialize(e)}getSerializedSize(){let e=4*(1+this.excluded.size);e+=4;for(const t of this.preprocessors)e+=t.getSerializedSize();return e}};function Gi(e){if(0===e.length)return!1;let t,o=0;for(const i of e){const e=(i.isImportant()?4:0)|(i.isException()?1:2);e>=o&&(o=e,t=i)}return void 0!==t&&t.isException()}var $i=class extends ce{static fromCached(e,t){if(void 0===t)return e();const{path:o,read:i,write:n}=t;return i(o).then((e=>this.deserialize(e))).catch((()=>e().then((e=>n(o,e.serialize()).then((()=>e))))))}static empty(e={}){return new this({config:e})}static fromLists(e,t,o={},i){return this.fromCached((()=>{const i=function(e,t){return Promise.all(t.map((t=>re(e,t))))}(e,t),n=function(e){return re(e,`${ae}/ublock-origin/resources.txt`)}(e);return Promise.all([i,n]).then((([e,t])=>{const i=this.parse(e.join("\n"),o);return void 0!==t&&i.updateResources(t,""+t.length),i}))}),i)}static fromPrebuiltAdsOnly(e=fetch,t){return this.fromLists(e,le,{},t)}static fromPrebuiltAdsAndTracking(e=fetch,t){return this.fromLists(e,pe,{},t)}static fromPrebuiltFull(e=fetch,t){return this.fromLists(e,de,{},t)}static fromTrackerDB(e,t={}){const o=new te(t),i=new Wi(e),n=[];for(const e of i.getPatterns())n.push(...e.filters);const s=this.parse(n.join("\n"),o);return s.metadata=i,s}static merge(e){if(!e||e.length<2)throw new Error("merging engines requires at least two engines");const t=e[0].config,o=new Map,i=new Map,n=new Map,s=[],c={organizations:{},categories:{},patterns:{}},r=new Map,a=[],l=Object.keys(t).filter((function(e){return"boolean"==typeof t[e]&&!a.includes(e)}));for(const a of e){for(const e of l)if(t[e]!==a.config[e])throw new Error(`config "${e}" of all merged engines must be the same`);const e=a.getFilters();for(const t of e.networkFilters)i.set(t.getId(),t);for(const t of e.cosmeticFilters)n.set(t.getId(),t);for(const e of a.preprocessors.preprocessors)s.push(e);for(const[e,t]of a.lists)o.has(e)||o.set(e,t);if(void 0!==a.metadata){for(const e of a.metadata.organizations.getValues())void 0===c.organizations[e.key]&&(c.organizations[e.key]=e);for(const e of a.metadata.categories.getValues())void 0===c.categories[e.key]&&(c.categories[e.key]=e);for(const e of a.metadata.patterns.getValues())void 0===c.patterns[e.key]&&(c.patterns[e.key]=e)}for(const[e,t]of a.resources.resources)r.has(e)||r.set(e,t)}const p=[...r.entries()].reduce(((e,[t,o])=>[...e,`${t} ${o.contentType}\n${o.body}`]),[]).join("\n\n"),d=new this({networkFilters:Array.from(i.values()),cosmeticFilters:Array.from(n.values()),preprocessors:s,lists:o,config:t});return Object.keys(c.categories).length+Object.keys(c.organizations).length+Object.keys(c.patterns).length!==0&&(d.metadata=new Wi(c)),d.resources=ti.parse(p,{checksum:ct(p).toString(16)}),d}static parse(e,t={}){const o=new te(t);return new this({...ko(e,o),config:o})}static deserialize(e){const t=ee.fromUint8Array(e,{enableCompression:!1}),o=t.getUint16();if(669!==o)throw new Error(`serialized engine version mismatch, expected 669 but got ${o}`);const i=te.deserialize(t);if(i.enableCompression&&t.enableCompression(),i.integrityCheck){const o=t.pos;t.pos=e.length-4;const i=t.checksum(),n=t.getUint32();if(i!==n)throw new Error(`serialized engine checksum mismatch, expected ${n} but got ${i}`);t.pos=o}const n=new this({config:i});n.resources=ti.deserialize(t);const s=new Map,c=t.getUint16();for(let e=0;ee.getId()))).concat(o.map((e=>e.getId()))));l.push(new go({condition:e,filterIDs:n}))}if(void 0!==t.added&&0!==t.added.length){const{networkFilters:o,cosmeticFilters:i}=ko(t.added.join("\n"),this.config),n=new Set([].concat(i.map((e=>e.getId()))).concat(o.map((e=>e.getId()))));c.push(new go({condition:e,filterIDs:n}))}}return this.update({newCosmeticFilters:n,newNetworkFilters:s,newPreprocessors:c,removedCosmeticFilters:r.map((e=>e.getId())),removedNetworkFilters:a.map((e=>e.getId())),removedPreprocessors:l},i)}getHtmlFilters(e){const t=[];if(!1===this.config.enableHtmlFiltering)return t;const{networkFilters:o,exceptions:i,cosmeticFilters:n,unhides:s}=this.htmlFilters.getHTMLFilters(e,this.isFilterExcluded.bind(this));if(0!==n.length){const o=new Map(s.map((e=>[e.getSelector(),e])));for(const i of n){const n=i.getExtendedSelector();if(void 0===n)continue;const s=o.get(i.getSelector());void 0===s&&t.push(n),this.emit("filter-matched",{filter:i,exception:s},{request:e,filterType:ro.COSMETIC})}}if(0!==o.length){const n=new Map;let s;for(const e of i){const t=e.optionValue;if(""===t){s=e;break}n.set(t,e)}for(const i of o){const o=i.getHtmlModifier();if(null===o)continue;const c=s||n.get(i.optionValue);this.emit("filter-matched",{filter:i,exception:c},{request:e,filterType:ro.NETWORK}),void 0===c&&t.push(["replace",o])}}return 0!==t.length&&this.emit("html-filtered",t,e.url),t}getCosmeticsFilters({url:e,hostname:t,domain:o,classes:i,hrefs:n,ids:s,getBaseRules:c=!0,getInjectionRules:r=!0,getExtendedRules:a=!0,getRulesFromDOM:l=!0,getRulesFromHostname:p=!0,hidingStyle:d,callerContext:u}){if(!1===this.config.loadCosmeticFilters)return{active:!1,extended:[],scripts:[],styles:""};o||(o="");let h=!0,m=!0;const A=this.hideExceptions.matchAll(Ct.fromRawDetails({domain:o,hostname:t,url:e,sourceDomain:"",sourceHostname:"",sourceUrl:""}),this.isFilterExcluded.bind(this)),g=[],f=[];for(const e of A){if(e.isElemHide()){h=!1,m=!1;break}e.isSpecificHide()?f.push(e):e.isGenericHide()&&g.push(e)}!0===h&&(h=!1===Gi(g)),!0===m&&(m=!1===Gi(f));const{filters:k,unhides:b}=this.cosmetics.getCosmeticsFilters({domain:o,hostname:t,classes:i,hrefs:n,ids:s,allowGenericHides:h,allowSpecificHides:m,getRulesFromDOM:l,getRulesFromHostname:p,hidingStyle:d,isFilterExcluded:this.isFilterExcluded.bind(this)});let y=!1;const w=new Map;for(const e of b)!0===e.isScriptInject()&&!0===e.isUnhide()&&0===e.getSelector().length&&(y=!0),w.set(e.getSelector(),e);const v=[],_=[],C=[];if(0!==k.length)for(const t of k){const o=w.get(t.getSelector());if(void 0!==o)continue;let i=!1;!0===t.isScriptInject()?!0===r&&!1===y&&(v.push(t),i=!0):t.isExtended()?!0===a&&(C.push(t),i=!0):(_.push(t),i=!0),i&&this.emit("filter-matched",{filter:t,exception:o},{url:e,callerContext:u,filterType:ro.COSMETIC})}const x=[];for(const t of v){const o=t.getScript(this.resources.js);void 0!==o&&(this.emit("script-injected",o,e),x.push(o))}const{stylesheet:S,extended:E}=this.cosmetics.getStylesheetsFromFilters({filters:_,extendedFilters:C},{getBaseRules:c,allowGenericHides:h,hidingStyle:d});return 0!==S.length&&this.emit("style-injected",S,e),{active:!0,extended:E,scripts:x,styles:S}}matchAll(e){const t=[];return e.isSupported&&(Array.prototype.push.apply(t,this.importants.matchAll(e,this.isFilterExcluded.bind(this))),Array.prototype.push.apply(t,this.filters.matchAll(e,this.isFilterExcluded.bind(this))),Array.prototype.push.apply(t,this.exceptions.matchAll(e,this.isFilterExcluded.bind(this))),Array.prototype.push.apply(t,this.csp.matchAll(e,this.isFilterExcluded.bind(this))),Array.prototype.push.apply(t,this.hideExceptions.matchAll(e,this.isFilterExcluded.bind(this))),Array.prototype.push.apply(t,this.redirects.matchAll(e,this.isFilterExcluded.bind(this)))),new Set(t)}getCSPDirectives(e){if(!this.config.loadNetworkFilters)return;if(!0!==e.isSupported||!1===e.isMainFrame())return;const t=this.csp.matchAll(e,this.isFilterExcluded.bind(this));if(0===t.length)return;const o=new Map,i=[];for(const n of t)if(n.isException()){if(void 0===n.csp)return void this.emit("filter-matched",{exception:n},{request:e,filterType:ro.NETWORK});o.set(n.csp,n)}else i.push(n);if(0===i.length)return;const n=new Set;for(const t of i.values()){const i=o.get(t.csp);void 0===i&&n.add(t.csp),this.emit("filter-matched",{filter:t,exception:i},{request:e,filterType:ro.NETWORK})}const s=Array.from(n).join("; ");return s.length>0&&this.emit("csp-injected",e,s),s}match(e,t=!1){const o={exception:void 0,filter:void 0,match:!1,redirect:void 0,metadata:void 0};if(!this.config.loadNetworkFilters)return o;if(e.isSupported){let t,i;if(o.filter=this.importants.match(e,this.isFilterExcluded.bind(this)),void 0===o.filter){const n=this.redirects.matchAll(e,this.isFilterExcluded.bind(this)).sort(((e,t)=>t.getRedirectPriority()-e.getRedirectPriority()));if(0!==n.length)for(const e of n)"none"===e.getRedirectResource()?t=e:e.isRedirectRule()?void 0===i&&(i=e):void 0===o.filter&&(o.filter=e);void 0===o.filter&&(o.filter=this.filters.match(e,this.isFilterExcluded.bind(this)),void 0!==i&&void 0!==o.filter&&(o.filter=i)),void 0!==o.filter&&(o.exception=this.exceptions.match(e,this.isFilterExcluded.bind(this)))}void 0!==o.filter&&void 0===o.exception&&o.filter.isRedirect()&&(void 0!==t?o.exception=t:o.redirect=this.resources.getResource(o.filter.getRedirectResource()))}return o.match=void 0===o.exception&&void 0!==o.filter,o.filter&&this.emit("filter-matched",{filter:o.filter,exception:o.exception},{request:e,filterType:ro.NETWORK}),void 0!==o.exception?this.emit("request-whitelisted",e,o):void 0!==o.redirect?this.emit("request-redirected",e,o):void 0!==o.filter?this.emit("request-blocked",e,o):this.emit("request-allowed",e,o),!0===t&&void 0!==o.filter&&this.metadata&&(o.metadata=this.metadata.fromFilter(o.filter)),o}getPatternMetadata(e,{getDomainMetadata:t=!1}={}){if(void 0===this.metadata)return[];const o=new Set,i=[];for(const t of this.matchAll(e))for(const e of this.metadata.fromFilter(t))o.has(e.pattern.key)||(o.add(e.pattern.key),i.push(e));if(t)for(const t of this.metadata.fromDomain(e.hostname))o.has(t.pattern.key)||(o.add(t.pattern.key),i.push(t));return i}blockScripts(){return this.updateFromDiff({added:[ue().scripts().redirectTo("javascript").toString()]}),this}blockImages(){return this.updateFromDiff({added:[ue().images().redirectTo("png").toString()]}),this}blockMedias(){return this.updateFromDiff({added:[ue().medias().redirectTo("mp4").toString()]}),this}blockFrames(){return this.updateFromDiff({added:[ue().frames().redirectTo("html").toString()]}),this}blockFonts(){return this.updateFromDiff({added:[ue().fonts().toString()]}),this}blockStyles(){return this.updateFromDiff({added:[ue().styles().toString()]}),this}};function Ki(e){const t=new Set(["br","head","link","meta","script","style","s"]),o=new Set,i=new Set,n=new Set,s=new Set;for(const c of e)for(const e of[c,...c.querySelectorAll("[id]:not(html):not(body),[class]:not(html):not(body),[href]:not(html):not(body)")]){if(s.has(e))continue;if(s.add(e),t.has(e.nodeName.toLowerCase()))continue;const c=e.getAttribute("id");"string"==typeof c&&n.add(c);const r=e.classList;for(const e of r)o.add(e);const a=e.getAttribute("href");"string"==typeof a&&i.add(a)}return{classes:Array.from(o),hrefs:Array.from(i),ids:Array.from(n)}}function Qi(e){try{const t=Xe(location.href),o=t.hostname||"",i=t.domain||"";return e.getCosmeticsFilters({url:location.href,hostname:o,domain:i,...Ki([document.documentElement]),getBaseRules:!0,getInjectionRules:!1,getExtendedRules:!0,getRulesFromDOM:!0,getRulesFromHostname:!0,hidingStyle:h("opacity")}).styles}catch(e){return console.error("Error getting cosmetic rules",e),""}}var Yi=new Uint8Array([2,157,0,0,0,1,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,128,0,0,70,148,0,0,2,241,0,0,15,35,92,53,102,32,67,111,111,107,105,101,84,101,120,116,0,0,19,35,92,53,102,32,95,97,99,99,101,112,116,95,99,111,111,107,105,101,0,0,15,35,92,53,102,32,95,105,99,45,110,111,116,105,99,101,0,0,31,35,92,53,102,32,95,110,100,99,99,95,99,111,111,107,105,101,73,109,112,108,105,101,100,67,111,110,115,101,110,116,0,0,25,35,92,53,102,32,99,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,112,101,114,0,0,17,35,92,53,102,32,105,112,104,95,99,112,95,112,111,112,117,112,0,0,21,35,99,111,111,107,105,101,66,97,110,110,101,114,92,46,98,97,110,110,101,114,0,0,19,35,106,115,92,46,99,111,111,107,105,101,92,46,98,97,110,110,101,114,0,0,15,46,115,194,183,102,111,111,116,101,114,45,103,100,112,114,4,0,19,46,111,111,107,105,101,65,103,114,101,101,109,101,110,116,45,109,116,109,0,0,13,67,79,79,75,73,69,45,72,69,65,68,69,82,0,0,17,68,67,73,78,70,79,95,67,79,79,75,73,69,95,65,71,66,0,0,11,71,68,80,82,45,78,79,84,73,67,69,0,0,27,91,97,112,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,114,111,108,93,0,0,39,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,99,111,111,107,105,101,45,98,111,120,45,109,101,115,115,97,103,101,34,93,0,0,39,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,34,93,0,0,34,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,99,111,111,107,105,101,112,114,105,118,97,99,121,34,93,0,0,43,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,34,93,0,0,41,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,100,105,97,108,111,103,45,101,117,45,99,111,111,107,105,101,45,108,97,119,34,93,0,0,34,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,94,61,34,99,111,111,107,105,101,45,119,97,108,108,45,34,93,0,0,29,91,97,114,105,97,45,108,97,98,101,108,61,34,67,111,111,107,105,101,115,32,98,97,110,110,101,114,34,93,0,0,33,91,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,99,111,111,107,105,101,45,100,105,97,108,111,103,34,93,0,0,39,91,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,99,111,111,107,105,101,45,119,97,108,108,45,104,101,97,100,105,110,103,34,93,0,0,45,91,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,117,105,45,100,105,97,108,111,103,45,116,105,116,108,101,45,99,111,111,107,105,101,98,111,120,34,93,0,0,19,91,99,110,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,93,0,0,20,91,99,111,111,107,105,101,45,117,110,105,113,117,101,45,110,97,109,101,93,0,0,19,91,100,97,116,97,45,97,108,101,114,116,45,99,111,111,107,105,101,93,0,0,34,91,100,97,116,97,45,97,116,45,115,101,108,101,99,116,111,114,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,0,0,34,91,100,97,116,97,45,97,117,116,111,109,97,116,105,111,110,61,34,99,111,111,107,105,101,115,45,98,97,110,110,101,114,34,93,0,0,31,91,100,97,116,97,45,98,101,104,97,118,105,111,117,114,61,34,99,111,111,107,105,101,45,112,111,112,117,112,34,93,0,0,40,91,100,97,116,97,45,98,105,110,100,61,34,118,105,115,105,98,108,101,58,32,115,104,111,119,67,111,111,107,105,101,87,97,114,110,105,110,103,34,93,0,0,11,91,100,97,116,97,45,99,99,112,97,93,0,0,44,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,45,99,108,97,115,115,45,110,97,109,101,61,34,99,111,111,107,105,101,76,105,103,104,116,98,111,120,34,93,0,0,37,91,100,97,116,97,45,99,111,111,107,105,101,45,110,97,109,101,61,34,99,111,111,107,105,101,115,68,105,114,101,99,116,105,118,101,34,93,0,0,20,91,100,97,116,97,45,99,111,111,107,105,101,45,110,117,109,98,101,114,93,0,0,19,91,100,97,116,97,45,99,111,111,107,105,101,45,112,111,112,117,112,93,0,0,27,91,100,97,116,97,45,99,111,111,107,105,101,45,118,97,108,105,100,105,116,121,45,100,97,121,115,93,0,0,34,91,100,97,116,97,45,99,111,111,107,105,101,61,34,117,115,111,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,34,93,0,0,34,91,100,97,116,97,45,99,111,111,107,105,101,94,61,34,99,111,111,107,105,101,46,100,105,115,99,108,97,105,109,101,114,34,93,0,0,31,91,100,97,116,97,45,99,118,101,110,116,45,105,100,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,0,0,25,91,100,97,116,97,45,99,121,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,0,0,25,91,100,97,116,97,45,99,121,61,34,99,111,111,107,105,101,45,110,111,116,105,99,101,34,93,0,0,21,91,100,97,116,97,45,99,121,61,34,99,111,111,107,105,101,98,97,114,34,93,0,0,33,91,100,97,116,97,45,100,105,97,108,111,103,45,105,100,61,34,97,99,99,101,112,116,45,99,111,111,107,105,101,115,34,93,0,0,25,91,100,97,116,97,45,100,109,105,100,42,61,34,99,111,111,107,105,101,98,97,114,45,34,93,0,0,16,91,100,97,116,97,45,100,109,115,99,111,111,107,105,101,93,0,0,28,91,100,97,116,97,45,103,45,110,97,109,101,61,34,67,111,111,107,105,101,66,97,110,110,101,114,34,93,0,0,29,91,100,97,116,97,45,103,97,111,111,112,95,104,105,100,101,95,97,102,116,101,114,95,99,108,111,115,101,93,0,0,20,91,100,97,116,97,45,105,110,99,61,34,99,111,111,107,105,101,115,34,93,0,0,23,91,100,97,116,97,45,105,110,99,108,117,100,101,61,34,99,111,111,107,105,101,34,93,0,0,24,91,100,97,116,97,45,105,110,99,108,117,100,101,61,34,99,111,111,107,105,101,115,34,93,0,0,28,91,100,97,116,97,45,107,101,121,61,34,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,34,93,0,0,28,91,100,97,116,97,45,109,111,100,117,108,101,61,34,67,111,111,107,105,101,66,97,110,110,101,114,34,93,0,0,23,91,100,97,116,97,45,109,111,100,117,108,101,61,34,99,111,111,107,105,101,115,34,93,0,0,26,91,100,97,116,97,45,110,97,109,101,61,34,99,111,111,107,105,101,78,111,116,105,99,101,34,93,0,0,34,91,100,97,116,97,45,110,97,109,101,94,61,34,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,34,93,0,0,43,91,100,97,116,97,45,110,111,116,105,102,105,99,97,116,105,111,110,61,34,67,111,111,107,105,101,80,111,108,105,99,121,65,103,114,101,101,109,101,110,116,34,93,0,0,21,91,100,97,116,97,45,113,97,61,34,67,111,111,107,105,101,66,97,114,34,93,0,0,30,91,100,97,116,97,45,113,97,61,34,116,120,116,71,100,112,114,67,111,111,107,105,101,80,111,112,117,112,34,93,0,0,41,91,100,97,116,97,45,114,101,97,99,116,45,99,108,97,115,115,42,61,34,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,34,93,0,0,35,91,100,97,116,97,45,114,101,97,99,116,45,99,108,97,115,115,61,34,69,85,67,111,111,107,105,101,66,97,110,110,101,114,34,93,0,0,37,91,100,97,116,97,45,114,101,97,99,116,45,99,111,109,112,111,110,101,110,116,61,34,67,111,111,107,105,101,80,114,111,109,112,116,34,93,0,0,20,91,100,97,116,97,45,114,101,102,61,34,99,111,111,107,105,101,115,34,93,0,0,15,91,100,97,116,97,45,114,103,112,100,45,105,110,99,93,0,0,27,91,100,97,116,97,45,114,111,108,101,61,34,99,111,111,107,105,101,45,110,111,116,105,99,101,34,93,0,0,30,91,100,97,116,97,45,115,45,116,121,112,101,61,34,99,111,111,107,105,101,45,109,101,115,115,97,103,101,34,93,0,0,31,91,100,97,116,97,45,115,101,108,101,99,116,111,114,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,34,93,0,0,23,91,100,97,116,97,45,116,97,114,103,101,116,61,34,99,111,111,99,107,105,101,34,93,0,0,28,91,100,97,116,97,45,116,101,115,116,45,105,100,61,34,67,111,111,107,105,101,80,111,112,117,112,34,93,0,0,37,91,100,97,116,97,45,116,101,115,116,45,105,100,61,34,99,104,101,99,107,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,34,93,0,0,38,91,100,97,116,97,45,116,101,115,116,45,105,100,61,34,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,34,93,0,0,37,91,100,97,116,97,45,116,101,115,116,45,105,100,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,34,93,0,0,27,91,100,97,116,97,45,116,101,115,116,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,0,0,33,91,100,97,116,97,45,116,101,115,116,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,104,101,101,116,34,93,0,0,32,91,100,97,116,97,45,116,101,115,116,61,34,103,100,112,114,45,99,111,111,107,105,101,115,45,112,111,112,117,112,34,93,0,0,24,91,100,97,116,97,45,116,101,115,116,61,34,103,100,112,114,45,109,111,100,97,108,34,93,0,0,37,91,100,97,116,97,45,116,101,115,116,105,100,61,34,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,34,93,0,0,30,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,110,115,101,110,116,45,98,97,110,110,101,114,34,93,0,0,26,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,98,97,114,34,93,0,0,29,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,34,93,0,0,30,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,112,111,112,111,118,101,114,34,93,0,0,35,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,66,97,110,110,101,114,45,119,105,100,103,101,116,34,93,0,0,35,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,34,93,0,0,42,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,95,98,97,110,110,101,114,95,118,50,95,99,111,110,116,97,105,110,101,114,34,93,0,0,38,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,34,93,0,0,30,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,115,45,109,111,100,117,108,101,34,93,0,0,30,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,115,95,102,111,111,116,101,114,34,93,0,0,45,91,100,97,116,97,45,116,101,115,116,105,100,61,34,109,97,105,110,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,34,93,0,0,33,91,100,97,116,97,45,116,111,107,101,110,61,34,103,100,112,114,95,99,111,111,107,105,101,95,110,111,116,105,99,101,34,93,0,0,29,91,100,97,116,97,45,116,121,112,101,61,34,99,111,111,107,105,101,45,97,100,100,115,101,110,115,101,34,93,0,0,28,91,100,97,116,97,45,117,105,45,116,101,115,116,61,34,99,111,111,107,105,101,65,108,101,114,116,34,93,0,0,25,91,100,97,116,97,45,117,110,105,113,117,101,45,99,111,111,107,105,101,45,110,97,109,101,93,0,0,28,91,100,97,116,97,45,118,101,99,105,61,34,99,111,111,107,105,101,115,45,112,111,108,105,99,121,34,93,0,0,41,91,100,97,116,97,45,118,105,101,119,45,110,97,109,101,61,34,112,114,105,118,97,99,121,45,117,112,100,97,116,101,100,45,110,111,116,105,99,101,34,93,0,0,24,91,105,100,61,34,108,117,120,45,99,111,111,107,105,101,45,100,105,97,108,111,103,34,93,0,0,20,91,110,97,109,101,61,34,99,111,111,107,105,101,45,105,110,102,111,34,93,0,0,22,91,110,97,109,101,61,34,99,111,111,107,105,101,119,97,114,110,105,110,103,34,93,0,0,34,91,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,67,111,111,107,105,101,66,97,110,110,101,114,67,116,114,108,34,93,0,0,29,91,110,103,45,115,104,111,119,94,61,34,99,111,111,107,105,101,80,111,108,105,99,121,67,116,114,108,34,93,0,0,28,91,116,121,112,101,61,34,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,34,93,0,0,25,91,120,45,100,97,116,97,61,34,99,111,111,107,105,101,66,97,110,110,101,114,40,41,34,93,0,0,28,91,120,45,115,104,111,119,61,34,115,104,111,119,67,111,111,107,105,101,67,111,110,115,101,110,116,34,93,0,0,17,97,99,99,101,112,116,45,99,111,111,107,105,101,45,98,111,120,0,0,22,97,99,105,100,106,115,45,120,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,9,97,100,99,111,111,107,105,101,115,0,0,21,97,108,116,101,114,100,97,116,97,45,99,111,111,107,105,101,45,116,111,111,108,0,0,17,97,109,101,100,105,97,45,112,114,105,118,97,99,121,98,111,120,0,0,11,97,109,112,45,99,111,110,115,101,110,116,0,0,21,97,109,112,45,117,115,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,17,97,112,112,45,97,99,99,101,112,116,45,99,111,111,107,105,101,0,0,16,97,112,112,45,97,118,105,115,111,45,99,111,111,107,105,101,0,0,17,97,112,112,45,97,118,105,115,111,45,99,111,111,107,105,101,115,0,0,32,97,112,112,45,98,97,110,110,101,114,91,97,114,105,97,108,97,98,101,108,42,61,34,67,111,111,107,105,101,115,34,93,0,0,14,97,112,112,45,99,98,45,99,111,111,107,105,101,115,0,0,15,97,112,112,45,99,99,112,97,45,98,97,110,110,101,114,0,0,10,97,112,112,45,99,111,111,107,105,101,0,0,17,97,112,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,14,97,112,112,45,99,111,111,107,105,101,45,98,97,114,0,0,18,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,25,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,0,0,26,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,102,101,97,116,117,114,101,0,0,24,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,0,0,24,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,0,0,17,97,112,112,45,99,111,111,107,105,101,45,102,111,111,116,101,114,0,0,15,97,112,112,45,99,111,111,107,105,101,45,105,110,102,111,0,0,14,97,112,112,45,99,111,111,107,105,101,45,109,115,103,0,0,23,97,112,112,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,17,97,112,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,0,0,16,97,112,112,45,99,111,111,107,105,101,45,112,111,112,117,112,0,0,17,97,112,112,45,99,111,111,107,105,101,45,112,114,111,109,112,116,0,0,16,97,112,112,45,99,111,111,107,105,101,45,114,117,108,101,115,0,0,18,97,112,112,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,0,0,17,97,112,112,45,99,111,111,107,105,101,45,119,105,100,103,101,116,0,0,11,97,112,112,45,99,111,111,107,105,101,115,0,0,21,97,112,112,45,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,0,0,17,97,112,112,45,99,111,111,107,105,101,115,45,97,108,101,114,116,0,0,18,97,112,112,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,0,0,15,97,112,112,45,99,111,111,107,105,101,115,45,98,111,120,0,0,19,97,112,112,45,99,111,111,107,105,101,115,45,99,111,110,102,105,114,109,0,0,19,97,112,112,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,0,0,17,97,112,112,45,99,111,111,107,105,101,115,45,109,111,100,97,108,0,0,18,97,112,112,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,0,0,18,97,112,112,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,0,0,26,97,112,112,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,117,112,100,97,116,101,100,0,0,17,97,112,112,45,99,111,111,107,105,101,115,45,112,111,112,117,112,0,0,17,97,112,112,45,99,111,111,107,105,101,115,45,116,111,97,115,116,0,0,24,97,112,112,45,102,111,110,99,105,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,23,97,112,112,45,102,111,111,116,101,114,45,109,111,100,97,108,45,99,111,111,107,105,101,0,0,18,97,112,112,45,112,111,112,45,117,112,45,99,111,111,107,105,101,115,0,0,8,97,112,112,45,114,111,100,111,0,0,30,97,112,112,45,114,111,111,116,32,97,112,112,45,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,0,0,13,97,114,107,45,99,111,111,107,105,101,98,97,114,0,0,19,97,115,105,100,101,91,99,108,97,115,115,61,34,114,103,112,100,34,93,0,0,25,97,116,108,97,115,45,108,111,103,111,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,0,0,12,97,118,105,115,45,99,111,111,107,105,101,115,0,0,36,97,119,115,117,105,45,97,108,101,114,116,91,100,105,115,109,105,115,115,42,61,34,67,111,111,107,105,101,66,97,110,110,101,114,34,93,0,0,18,97,122,97,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,0,0,24,98,50,99,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,18,98,111,100,121,32,62,32,46,98,116,110,45,99,111,111,107,105,101,0,0,33,98,114,111,119,115,101,114,45,108,111,103,105,110,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,33,99,45,99,111,109,109,117,110,105,116,121,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,0,0,16,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,20,99,45,101,99,112,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,0,0,27,99,45,111,115,102,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,0,0,11,99,98,110,45,99,111,111,107,105,101,115,0,0,17,99,103,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,0,0,31,99,108,111,117,100,102,108,97,114,101,45,97,112,112,91,97,112,112,61,34,99,111,111,107,105,108,101,115,115,34,93,0,0,42,99,108,111,117,100,102,108,97,114,101,45,97,112,112,91,97,112,112,61,34,116,105,98,114,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,34,93,0,0,17,99,109,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,23,99,109,112,118,105,101,119,115,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,0,0,19,99,110,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,0,0,22,99,111,108,45,99,111,111,107,105,101,45,105,110,102,111,45,98,97,110,110,101,114,0,0,22,99,111,109,112,108,121,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,0,0,16,99,111,110,45,99,111,111,107,105,101,45,112,111,112,117,112,0,0,7,99,111,110,115,101,110,116,0,0,20,99,111,110,115,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,15,99,111,111,107,45,100,105,115,99,108,97,105,109,101,114,0,0,22,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,45,98,108,111,99,107,0,0,12,99,111,111,107,105,101,45,97,108,101,114,116,0,0,13,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,10,99,111,111,107,105,101,45,98,97,114,0,0,19,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,0,0,14,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,21,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,0,0,24,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,109,112,111,110,101,110,116,0,0,20,99,111,111,107,105,101,45,100,114,97,119,101,114,45,112,111,108,105,99,121,0,0,11,99,111,111,107,105,101,45,105,110,102,111,0,0,17,99,111,111,107,105,101,45,108,97,119,45,98,97,110,110,101,114,0,0,12,99,111,111,107,105,101,45,109,111,100,97,108,0,0,13,99,111,111,107,105,101,45,110,111,116,105,99,101,0,0,19,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,17,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,0,0,13,99,111,111,107,105,101,45,112,111,108,105,99,121,0,0,19,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,105,110,0,0,12,99,111,111,107,105,101,45,112,111,112,117,112,0,0,14,99,111,111,107,105,101,45,119,97,114,110,105,110,103,0,0,11,99,111,111,107,105,101,45,119,114,97,112,0,0,13,99,111,111,107,105,101,95,110,111,116,105,99,101,0,0,9,99,111,111,107,105,101,98,111,120,0,0,15,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,0,0,12,99,111,111,107,105,101,115,45,103,100,112,114,0,0,12,99,111,111,107,105,101,115,45,104,105,110,116,0,0,20,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,15,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,0,0,14,99,111,111,107,105,101,115,45,112,111,108,105,99,121,0,0,13,99,111,111,107,105,101,115,45,112,111,112,117,112,0,0,19,99,111,111,107,105,101,115,45,114,101,113,117,105,114,101,109,101,110,116,0,0,15,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,0,0,16,99,111,111,107,105,101,115,46,110,103,45,115,99,111,112,101,0,0,13,99,111,111,107,105,108,101,115,115,45,100,105,118,0,0,17,99,114,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,0,0,22,99,116,115,45,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,115,0,0,22,100,97,121,97,119,97,121,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,20,100,105,97,108,111,103,46,99,111,111,107,105,101,45,112,111,108,105,99,121,0,0,20,100,105,108,101,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,0,0,45,100,105,118,91,100,97,116,97,45,97,117,116,111,109,97,116,105,111,110,61,34,112,114,105,118,97,99,121,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,34,93,0,0,26,100,105,118,91,100,97,116,97,45,98,97,110,110,101,114,61,34,99,111,111,107,105,101,115,34,93,0,0,29,100,105,118,91,100,97,116,97,45,98,111,114,108,97,98,115,45,99,111,111,107,105,101,45,119,114,97,112,93,0,0,34,100,105,118,91,100,97,116,97,45,98,111,120,45,110,97,109,101,61,34,99,111,111,107,105,101,32,112,111,108,105,99,121,34,93,0,0,24,100,105,118,91,100,97,116,97,45,99,109,112,45,110,111,45,99,111,110,115,101,110,116,93,0,0,35,100,105,118,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,34,93,0,0,35,100,105,118,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,61,34,99,111,111,107,105,101,67,111,110,116,101,110,116,34,93,0,0,40,100,105,118,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,115,61,34,112,100,114,45,119,115,49,108,105,98,45,104,101,97,100,101,114,34,93,0,0,33,100,105,118,91,100,97,116,97,45,99,111,110,116,97,105,110,101,114,45,97,99,99,101,112,116,99,111,111,107,105,101,115,93,0,0,36,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,45,108,97,119,45,98,97,110,110,101,114,45,115,101,108,101,99,116,111,114,93,0,0,29,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,93,0,0,21,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,45,112,97,116,104,93,0,0,24,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,93,0,0,22,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,98,97,110,110,101,114,93,0,0,19,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,98,97,114,93,0,0,26,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,108,97,121,101,114,45,105,110,105,116,93,0,0,41,100,105,118,91,100,97,116,97,45,99,111,114,103,105,45,99,111,109,112,111,110,101,110,116,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,0,0,35,100,105,118,91,100,97,116,97,45,101,116,115,121,45,112,114,111,109,111,45,99,111,111,107,105,101,45,101,120,112,105,114,101,115,93,0,0,29,100,105,118,91,100,97,116,97,45,103,100,112,114,45,99,111,110,115,101,110,116,45,112,114,111,109,112,116,93,0,0,24,100,105,118,91,100,97,116,97,45,105,100,61,34,99,111,111,107,105,101,66,97,114,34,93,0,0,28,100,105,118,91,100,97,116,97,45,105,100,61,34,99,111,111,107,105,101,95,100,105,97,108,111,103,34,93,0,0,23,100,105,118,91,100,97,116,97,45,105,115,45,99,111,111,107,105,101,105,110,102,111,93,0,0,32,100,105,118,91,100,97,116,97,45,109,111,100,117,108,101,61,34,99,111,111,107,105,101,95,98,97,110,110,101,114,34,93,0,0,33,100,105,118,91,100,97,116,97,45,110,111,116,105,102,105,99,97,116,105,111,110,105,100,61,34,99,111,111,107,105,101,34,93,0,0,32,100,105,118,91,100,97,116,97,45,112,110,112,45,109,105,45,105,100,61,34,109,105,45,99,111,111,107,105,101,115,34,93,0,0,36,100,105,118,91,100,97,116,97,45,112,111,118,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,93,0,0,25,100,105,118,91,100,97,116,97,45,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,93,0,0,36,100,105,118,91,100,97,116,97,45,114,101,97,99,116,45,99,108,97,115,115,61,34,67,111,111,107,105,101,78,111,116,105,99,101,34,93,0,0,37,100,105,118,91,100,97,116,97,45,114,111,108,101,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,34,93,0,0,38,100,105,118,91,100,97,116,97,45,115,101,99,116,105,111,110,45,116,121,112,101,61,34,67,111,111,107,105,101,115,66,97,110,110,101,114,34,93,0,0,40,100,105,118,91,100,97,116,97,45,115,101,108,101,99,116,111,114,61,34,99,111,110,116,97,105,110,101,114,64,99,111,111,107,105,101,98,97,114,34,93,0,0,35,100,105,118,91,100,97,116,97,45,115,101,108,101,110,45,103,114,111,117,112,61,34,99,111,111,107,105,101,115,45,98,97,114,34,93,0,0,33,100,105,118,91,100,97,116,97,45,115,101,108,101,110,105,117,109,61,34,67,111,111,107,105,101,66,97,110,110,101,114,34,93,0,0,33,100,105,118,91,100,97,116,97,45,116,101,115,116,45,115,101,108,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,93,0,0,37,100,105,118,91,100,97,116,97,45,116,101,115,116,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,34,93,0,0,36,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,34,93,0,0,39,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,34,93,0,0,34,100,105,118,91,100,97,116,97,45,119,122,98,61,34,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,34,93,0,0,36,100,105,118,91,101,108,101,109,101,110,116,45,115,116,114,117,99,116,117,114,101,45,99,111,111,107,105,101,109,111,110,115,116,101,114,93,0,0,15,100,105,118,91,106,115,45,99,111,111,107,105,101,115,93,0,0,30,100,105,118,91,108,100,45,115,99,111,112,101,61,34,99,111,111,107,105,101,45,99,111,110,115,101,110,116,34,93,0,0,42,100,105,118,91,110,103,45,99,108,105,99,107,61,34,115,101,108,102,46,115,101,116,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,40,41,34,93,0,0,29,100,105,118,91,115,112,101,99,61,34,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,34,93,0,0,17,100,107,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,0,0,19,100,118,97,45,109,45,99,111,111,107,105,101,45,102,108,121,111,117,116,0,0,21,101,97,45,116,114,117,115,116,101,45,99,111,110,115,101,110,116,45,98,97,114,0,0,10,101,100,110,45,99,111,111,107,105,101,0,0,39,101,109,118,45,97,110,111,110,121,109,111,117,115,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,45,98,97,110,110,101,114,0,0,13,101,111,45,99,111,111,107,105,101,45,98,97,114,0,0,26,101,112,97,97,115,45,99,111,110,115,101,110,116,45,100,114,97,119,101,114,45,115,104,101,108,108,0,0,21,101,115,110,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,0,0,20,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,0,0,26,102,97,98,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,98,97,110,110,101,114,50,0,0,25,102,100,112,45,119,105,100,103,101,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,17,102,111,111,116,101,114,32,62,32,35,99,111,111,107,105,101,115,0,0,16,102,111,111,116,101,114,32,62,32,46,99,111,111,107,105,101,0,0,29,102,111,114,109,91,110,97,109,101,61,34,70,111,114,109,76,101,103,103,101,67,111,111,107,105,101,115,34,93,0,0,15,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,0,0,22,103,100,112,114,45,97,103,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,0,0,12,103,100,112,114,45,99,111,110,115,101,110,116,0,0,12,103,100,112,114,45,99,111,111,107,105,101,115,0,0,13,103,100,112,114,45,112,111,108,105,99,105,101,115,0,0,12,103,100,112,114,112,111,112,117,112,109,111,100,0,0,19,103,100,115,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,0,0,24,103,102,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,99,101,0,0,16,103,106,45,99,111,111,107,105,101,45,112,114,111,109,112,116,0,0,23,104,109,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,19,105,100,103,45,99,111,111,107,105,101,45,105,110,102,111,45,98,97,114,0,0,30,105,102,114,97,109,101,91,110,97,109,101,61,34,103,111,111,103,108,101,102,99,80,114,101,115,101,110,116,34,93,0,0,17,105,110,103,45,117,105,45,114,98,97,45,99,111,111,107,105,101,0,0,17,105,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,10,106,115,97,45,99,111,111,107,105,101,0,0,15,107,117,109,97,45,99,111,111,107,105,101,45,98,97,114,0,0,11,108,103,112,100,45,99,111,111,107,105,101,0,0,17,108,103,112,100,45,99,111,111,107,105,101,45,116,101,114,109,115,0,0,24,108,105,98,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,116,111,97,115,116,0,0,25,108,110,98,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,111,118,101,114,108,97,121,0,0,11,108,111,111,112,45,99,111,111,107,105,101,0,0,23,108,117,110,111,45,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,0,0,16,109,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,0,0,28,109,99,116,45,116,101,109,112,108,97,116,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,22,109,100,45,116,111,97,115,116,46,99,111,111,107,105,101,115,45,116,111,97,115,116,0,0,15,109,105,112,45,99,111,111,107,105,101,45,105,110,102,111,0,0,21,110,57,45,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,115,0,0,24,110,103,101,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,16,110,108,45,99,111,111,107,105,101,45,110,111,116,105,99,101,0,0,19,110,111,115,105,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,21,110,115,45,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,116,105,112,0,0,12,111,45,99,111,111,107,105,101,45,108,97,119,0,0,18,111,99,97,115,111,45,103,108,111,98,97,108,45,109,111,100,97,108,0,0,18,111,99,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,26,111,100,115,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,0,0,17,111,102,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,0,0,21,111,102,105,45,99,111,111,107,105,101,45,98,111,120,45,119,105,100,103,101,116,0,0,10,111,110,108,45,99,111,111,107,105,101,0,0,20,111,117,116,101,114,45,119,114,97,112,112,101,114,45,99,111,111,107,105,101,0,0,16,112,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,18,112,100,111,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,0,0,16,112,112,45,99,111,111,107,105,101,45,100,105,97,108,111,103,0,0,20,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,116,111,97,115,116,0,0,23,112,114,111,97,99,116,117,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,18,112,117,109,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,18,114,116,107,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,0,0,18,115,55,50,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,17,115,100,45,99,111,111,107,105,101,115,45,119,105,100,103,101,116,0,0,17,115,101,99,116,105,111,110,32,62,32,46,99,111,111,107,105,101,0,0,31,115,101,99,116,105,111,110,91,99,108,97,115,115,42,61,34,95,67,111,111,107,105,101,78,111,116,105,99,101,34,93,0,0,36,115,101,99,116,105,111,110,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,61,34,67,111,109,51,67,111,111,107,105,101,34,93,0,0,37,115,101,99,116,105,111,110,91,100,97,116,97,45,116,101,115,116,45,105,100,61,34,99,111,111,107,105,101,45,110,111,116,105,99,101,34,93,0,0,33,115,101,99,116,105,111,110,91,100,97,116,97,45,118,105,101,119,61,34,99,111,111,107,105,101,80,111,108,105,99,121,34,93,0,0,18,115,101,108,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,17,115,104,98,45,99,111,111,107,105,101,45,97,99,99,101,112,116,0,0,18,115,104,98,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,16,115,106,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,18,115,111,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,23,115,116,97,101,100,116,108,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,27,115,117,99,104,101,110,45,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,116,111,97,115,116,0,0,17,116,97,103,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,12,116,104,111,114,45,99,111,111,107,105,101,115,0,0,20,116,104,114,101,97,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,0,0,17,116,112,108,45,99,111,111,107,105,101,99,111,110,115,101,110,116,0,0,13,116,115,45,99,111,111,107,105,101,45,109,115,103,0,0,14,116,117,105,45,99,111,111,107,105,101,45,98,97,114,0,0,18,116,117,105,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,18,116,117,117,103,111,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,22,117,99,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,17,117,103,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,15,117,120,45,99,111,111,107,105,101,45,108,97,121,101,114,0,0,27,118,99,45,115,105,116,101,45,99,111,111,107,105,101,112,111,108,105,99,121,45,100,105,97,108,111,103,0,0,13,118,101,105,115,115,45,99,111,111,107,105,101,115,0,0,17,118,108,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,18,118,111,99,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,0,0,10,119,99,45,99,111,111,107,105,101,115,0,0,18,119,101,98,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,11,119,101,99,111,109,97,45,108,105,116,101,0,0,21,119,105,101,108,97,110,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,29,119,112,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,0,0,29,119,120,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,24,120,107,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,97,114,110,105,110,103,0,0,16,121,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,0,0,17,121,103,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,0,0,31,121,116,100,45,97,112,112,32,126,32,105,114,111,110,45,111,118,101,114,108,97,121,45,98,97,99,107,100,114,111,112,0,0,25,121,116,100,45,99,111,110,115,101,110,116,45,98,117,109,112,45,114,101,110,100,101,114,101,114,0,0,26,121,116,100,45,109,101,97,108,98,97,114,45,112,114,111,109,111,45,114,101,110,100,101,114,101,114,0,0,23,121,116,103,45,110,111,116,105,102,105,99,97,116,105,111,110,45,102,111,111,116,101,114,0,0,18,122,97,112,102,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,17,97,114,116,105,99,108,101,46,99,45,99,111,111,107,105,101,115,0,0,21,97,114,116,105,99,108,101,46,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,24,97,114,116,105,99,108,101,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,0,0,18,97,115,105,100,101,35,99,111,111,107,105,101,45,112,111,112,117,112,0,0,28,97,115,105,100,101,35,101,117,95,99,111,111,107,105,101,95,108,97,119,95,119,105,100,103,101,116,45,50,0,0,27,97,115,105,100,101,46,97,109,103,100,112,114,106,115,45,98,97,114,45,116,101,109,112,108,97,116,101,0,0,20,97,115,105,100,101,46,98,111,116,116,111,109,45,99,111,111,107,105,101,115,0,0,19,97,115,105,100,101,46,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,16,97,115,105,100,101,46,99,111,111,107,105,101,45,98,97,114,0,0,18,97,115,105,100,101,46,99,111,111,107,105,101,45,112,111,112,117,112,0,0,22,100,105,118,35,65,67,67,108,97,121,101,114,66,97,99,107,103,114,111,117,110,100,0,0,23,100,105,118,35,65,67,67,115,109,97,108,108,67,111,111,107,105,101,76,97,121,101,114,0,0,24,100,105,118,35,95,95,116,101,97,108,105,117,109,71,68,80,82,101,99,77,111,100,97,108,0,0,17,100,105,118,35,97,99,99,101,112,116,45,99,111,111,107,105,101,0,0,27,100,105,118,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,0,0,21,100,105,118,35,97,99,101,112,116,97,114,95,99,111,110,116,97,105,110,101,114,0,0,17,100,105,118,35,97,108,108,111,119,45,99,111,111,107,105,101,115,0,0,24,100,105,118,35,99,99,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,0,0,16,100,105,118,35,99,99,95,99,111,110,116,97,105,110,101,114,0,0,16,100,105,118,35,99,99,112,97,45,99,111,110,115,101,110,116,0,0,20,100,105,118,35,99,99,112,97,67,111,111,107,105,101,66,97,110,110,101,114,0,0,28,100,105,118,35,99,109,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,0,0,21,100,105,118,35,99,109,112,45,97,112,112,45,99,111,110,116,97,105,110,101,114,0,0,28,100,105,118,35,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,0,0,29,100,105,118,35,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,99,111,110,116,97,105,110,101,114,0,0,29,100,105,118,35,99,111,110,115,101,110,116,67,111,109,112,111,110,101,110,116,67,111,110,116,97,105,110,101,114,0,0,20,100,105,118,35,99,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,0,0,16,100,105,118,35,99,111,110,115,101,110,116,102,114,97,109,101,0,0,22,100,105,118,35,99,111,110,116,101,110,101,100,111,114,45,99,111,111,107,105,101,115,0,0,27,100,105,118,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,99,111,110,116,97,105,110,101,114,0,0,21,100,105,118,35,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,0,0,26,100,105,118,35,99,111,111,107,105,101,45,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,0,0,27,100,105,118,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,0,0,27,100,105,118,35,99,111,111,107,105,101,45,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,0,0,14,100,105,118,35,99,111,111,107,105,101,45,98,97,114,0,0,24,100,105,118,35,99,111,111,107,105,101,45,98,97,114,45,99,111,110,116,97,105,110,101,114,0,0,21,100,105,118,35,99,111,111,107,105,101,45,98,97,114,45,112,114,111,109,112,116,0,0,16,100,105,118,35,99,111,111,107,105,101,45,99,104,101,99,107,0,0,27,100,105,118,35,99,111,111,107,105,101,45,99,104,111,105,99,101,45,99,111,110,116,97,105,110,101,114,0,0,25,100,105,118,35,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,0,0,21,100,105,118,35,99,111,111,107,105,101,45,108,97,119,45,98,97,110,110,101,114,0,0,16,100,105,118,35,99,111,111,107,105,101,45,112,111,112,117,112,0,0,18,100,105,118,35,99,111,111,107,105,101,66,111,116,72,105,100,101,49,0,0,22,100,105,118,35,99,111,111,107,105,101,67,111,110,115,101,110,116,77,111,100,97,108,0,0,29,100,105,118,35,99,111,111,107,105,101,67,111,110,115,101,110,116,83,116,105,99,107,121,70,111,111,116,101,114,0,0,15,100,105,118,35,99,111,111,107,105,101,80,111,112,117,112,0,0,17,100,105,118,35,99,111,111,107,105,101,95,98,97,110,110,101,114,0,0,22,100,105,118,35,99,111,111,107,105,101,115,45,98,97,99,107,103,114,111,117,110,100,0,0,15,100,105,118,35,99,111,111,107,105,101,115,45,112,111,112,0,0,19,100,105,118,35,99,111,111,107,105,101,115,65,112,112,114,111,118,97,108,0,0,19,100,105,118,35,99,111,111,107,105,101,115,76,105,103,104,116,98,111,120,0,0,20,100,105,118,35,99,111,111,107,105,101,115,100,105,114,101,99,116,105,118,101,0,0,18,100,105,118,35,100,99,67,111,111,107,105,101,72,101,108,112,101,114,0,0,22,100,105,118,35,100,99,67,111,111,107,105,101,72,101,108,112,101,114,45,45,98,103,0,0,20,100,105,118,35,101,117,45,99,111,111,107,105,101,115,45,112,111,112,117,112,0,0,22,100,105,118,35,103,100,112,114,45,99,111,111,107,105,101,45,97,99,99,101,112,116,0,0,17,100,105,118,35,103,100,112,114,67,111,111,107,105,101,66,97,114,0,0,24,100,105,118,35,103,100,112,114,112,97,116,114,111,110,73,110,102,111,108,101,105,115,116,101,0,0,31,100,105,118,35,103,100,112,114,112,97,116,114,111,110,73,110,102,111,108,101,105,115,116,101,79,118,101,114,108,97,121,0,0,8,100,105,118,35,108,103,112,100,0,0,15,100,105,118,35,108,103,112,100,45,98,97,110,110,101,114,0,0,26,100,105,118,35,108,103,112,100,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,0,0,18,100,105,118,35,112,114,105,118,97,99,121,95,112,111,108,105,99,121,0,0,14,100,105,118,35,115,104,97,100,67,111,111,107,105,101,0,0,27,100,105,118,35,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,0,0,19,100,105,118,35,119,104,67,111,111,107,105,101,77,97,110,97,103,101,114,0,0,11,100,105,118,46,45,99,111,111,107,105,101,0,0,18,100,105,118,46,45,99,111,111,107,105,101,45,110,111,116,105,99,101,0,0,12,100,105,118,46,45,99,111,111,107,105,101,115,0,0,19,100,105,118,46,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,0,0,19,100,105,118,46,45,99,111,111,107,105,101,115,95,95,97,108,101,114,116,0,0,17,100,105,118,46,65,99,99,101,112,116,67,111,111,107,105,101,115,0,0,13,100,105,118,46,66,111,120,67,111,111,107,105,101,0,0,17,100,105,118,46,67,111,110,115,101,110,116,67,111,111,107,105,101,0,0,10,100,105,118,46,67,111,111,107,105,101,0,0,17,100,105,118,46,67,111,111,107,105,101,45,98,97,110,110,101,114,0,0,17,100,105,118,46,67,111,111,107,105,101,45,110,111,116,105,99,101,0,0,18,100,105,118,46,67,111,111,107,105,101,45,119,114,97,112,112,101,114,0,0,16,100,105,118,46,67,111,111,107,105,101,65,99,99,101,112,116,0,0,15,100,105,118,46,67,111,111,107,105,101,65,108,101,114,116,0,0,22,100,105,118,46,67,111,111,107,105,101,67,111,110,102,105,114,109,97,116,105,111,110,0,0,14,100,105,118,46,67,111,111,107,105,101,73,110,102,111,0,0,32,100,105,118,46,67,111,111,107,105,101,77,101,115,115,97,103,101,95,95,99,111,111,107,105,101,77,101,115,115,97,103,101,0,0,16,100,105,118,46,67,111,111,107,105,101,80,114,111,109,112,116,0,0,17,100,105,118,46,67,111,111,107,105,101,87,114,97,112,112,101,114,0,0,17,100,105,118,46,67,111,111,107,105,101,95,95,80,111,112,117,112,0,0,11,100,105,118,46,67,111,111,107,105,101,115,0,0,15,100,105,118,46,67,111,111,107,105,101,115,87,114,97,112,0,0,12,100,105,118,46,69,85,67,111,111,107,105,101,0,0,38,100,105,118,46,71,100,112,114,67,111,111,107,105,101,67,111,110,115,101,110,116,45,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,0,0,45,100,105,118,46,71,100,112,114,67,111,111,107,105,101,67,111,110,115,101,110,116,45,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,79,118,101,114,108,97,121,0,0,17,100,105,118,46,80,114,105,118,97,99,121,66,97,110,110,101,114,0,0,17,100,105,118,46,80,114,105,118,97,99,121,67,111,111,107,105,101,0,0,17,100,105,118,46,97,99,99,101,112,116,45,99,111,111,107,105,101,0,0,18,100,105,118,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,0,0,15,100,105,118,46,97,99,99,101,112,116,45,114,103,112,100,0,0,16,100,105,118,46,97,99,99,101,112,116,67,111,111,107,105,101,0,0,17,100,105,118,46,97,99,99,101,112,116,67,111,111,107,105,101,115,0,0,19,100,105,118,46,97,99,99,101,112,116,95,95,99,111,111,107,105,101,115,0,0,16,100,105,118,46,97,99,99,101,112,116,99,111,111,107,105,101,0,0,17,100,105,118,46,97,99,99,101,112,116,99,111,111,107,105,101,115,0,0,20,100,105,118,46,97,99,99,101,112,116,101,100,45,99,111,111,107,105,101,115,0,0,15,100,105,118,46,97,103,114,101,101,99,111,111,107,105,101,0,0,14,100,105,118,46,97,108,101,114,116,45,99,111,111,107,0,0,16,100,105,118,46,97,108,101,114,116,45,99,111,111,107,105,101,0,0,17,100,105,118,46,97,108,101,114,116,45,99,111,111,107,105,101,115,0,0,14,100,105,118,46,97,108,101,114,116,45,103,100,112,114,0,0,15,100,105,118,46,97,108,101,114,116,67,111,111,107,105,101,0,0,16,100,105,118,46,97,108,101,114,116,67,111,111,107,105,101,115,0,0,18,100,105,118,46,97,108,101,114,116,95,95,99,111,111,107,105,101,115,0,0,16,100,105,118,46,97,108,108,111,119,45,99,111,111,107,105,101,0,0,17,100,105,118,46,97,108,108,111,119,45,99,111,111,107,105,101,115,0,0,15,100,105,118,46,97,108,108,111,119,99,111,111,107,105,101,0,0,21,100,105,118,46,97,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,15,100,105,118,46,97,112,112,45,99,111,111,107,105,101,115,0,0,14,100,105,118,46,97,115,107,45,99,111,111,107,105,101,0,0,11,100,105,118,46,97,115,107,99,111,111,107,0,0,16,100,105,118,46,97,118,105,115,111,45,99,111,111,107,105,101,0,0,20,100,105,118,46,97,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,13,100,105,118,46,98,45,45,99,111,111,107,105,101,0,0,12,100,105,118,46,98,45,99,111,111,107,105,101,0,0,14,100,105,118,46,98,108,111,99,107,45,99,110,105,108,0,0,16,100,105,118,46,98,108,111,99,107,45,99,111,111,107,105,101,0,0,24,100,105,118,46,98,108,111,99,107,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,0,0,17,100,105,118,46,98,108,111,99,107,45,99,111,111,107,105,101,115,0,0,15,100,105,118,46,98,108,111,103,45,99,111,111,107,105,101,0,0,18,100,105,118,46,98,111,116,116,111,109,45,99,111,111,107,105,101,115,0,0,12,100,105,118,46,98,111,120,95,108,103,112,100,0,0,13,100,105,118,46,99,45,99,111,110,115,101,110,116,0,0,12,100,105,118,46,99,45,99,111,111,107,105,101,0,0,19,100,105,118,46,99,45,99,111,111,107,105,101,67,111,110,115,101,110,116,0,0,19,100,105,118,46,99,45,99,111,111,107,105,101,99,111,110,115,101,110,116,0,0,13,100,105,118,46,99,45,99,111,111,107,105,101,115,0,0,10,100,105,118,46,99,45,103,100,112,114,0,0,11,100,105,118,46,99,80,111,108,105,99,121,0,0,20,100,105,118,46,99,99,45,67,111,111,107,105,101,87,97,114,110,105,110,103,0,0,13,100,105,118,46,99,99,45,114,101,118,111,107,101,0,0,16,100,105,118,46,99,99,112,97,45,109,101,115,115,97,103,101,0,0,15,100,105,118,46,99,99,112,97,45,110,111,116,105,99,101,0,0,24,100,105,118,46,99,105,118,105,99,95,99,111,111,107,105,101,95,95,98,97,110,110,101,114,0,0,25,100,105,118,46,99,105,118,105,99,95,99,111,111,107,105,101,95,95,111,118,101,114,108,97,121,0,0,8,100,105,118,46,99,110,105,108,0,0,14,100,105,118,46,99,110,105,108,45,112,111,112,117,112,0,0,18,100,105,118,46,99,111,110,102,105,114,109,45,99,111,111,107,105,101,0,0,28,100,105,118,46,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,0,0,14,100,105,118,46,99,111,110,115,101,110,116,45,98,103,0,0,18,100,105,118,46,99,111,110,115,101,110,116,45,100,105,97,108,111,103,0,0,16,100,105,118,46,99,111,110,115,101,110,116,45,115,104,111,119,0,0,25,100,105,118,46,99,111,110,115,101,110,116,45,115,117,109,109,97,114,121,45,115,104,111,119,110,0,0,20,100,105,118,46,99,111,110,115,101,110,116,45,116,114,97,99,107,105,110,103,0,0,17,100,105,118,46,99,111,110,115,101,110,116,98,97,110,110,101,114,0,0,20,100,105,118,46,99,111,110,116,97,105,110,101,114,67,111,111,107,105,101,115,0,0,18,100,105,118,46,99,111,110,116,101,110,45,99,111,111,107,105,101,115,0,0,15,100,105,118,46,99,111,111,99,107,105,101,115,100,105,118,0,0,15,100,105,118,46,99,111,111,107,105,101,45,45,98,97,114,0,0,16,100,105,118,46,99,111,111,107,105,101,45,45,98,108,117,114,0,0,18,100,105,118,46,99,111,111,107,105,101,45,45,110,111,116,105,99,101,0,0,19,100,105,118,46,99,111,111,107,105,101,45,45,119,114,97,112,112,101,114,0,0,27,100,105,118,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,99,111,110,116,97,105,110,101,114,0,0,21,100,105,118,46,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,0,0,17,100,105,118,46,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,25,100,105,118,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,0,0,14,100,105,118,46,99,111,111,107,105,101,45,98,97,114,0,0,26,100,105,118,46,99,111,111,107,105,101,45,98,97,114,45,45,105,115,45,118,105,115,105,98,108,101,0,0,22,100,105,118,46,99,111,111,107,105,101,45,98,97,114,45,118,105,115,105,98,108,101,0,0,16,100,105,118,46,99,111,111,107,105,101,45,98,108,97,99,107,0,0,15,100,105,118,46,99,111,111,107,105,101,45,98,108,111,99,0,0,18,100,105,118,46,99,111,111,107,105,101,45,99,104,111,105,99,101,115,0,0,21,100,105,118,46,99,111,111,107,105,101,45,99,111,109,112,105,108,97,110,99,101,0,0,21,100,105,118,46,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,0,0,18,100,105,118,46,99,111,111,107,105,101,45,99,111,110,102,105,114,109,0,0,18,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,25,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,0,0,22,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,0,0,24,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,108,111,99,107,0,0,24,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,0,0,23,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,112,101,110,0,0,26,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,0,0,24,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,0,0,23,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,104,111,119,0,0,25,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,105,110,100,111,119,0,0,20,100,105,118,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,0,0,18,100,105,118,46,99,111,111,107,105,101,45,99,111,110,116,101,110,116,0,0,18,100,105,118,46,99,111,111,107,105,101,45,100,101,116,97,105,108,115,0,0,20,100,105,118,46,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,0,0,21,100,105,118,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,0,0,20,100,105,118,46,99,111,111,107,105,101,45,100,105,115,99,108,97,109,101,114,0,0,21,100,105,118,46,99,111,111,107,105,101,45,100,105,115,99,108,111,115,117,114,101,0,0,14,100,105,118,46,99,111,111,107,105,101,45,100,105,118,0,0,13,100,105,118,46,99,111,111,107,105,101,45,101,117,0,0,15,100,105,118,46,99,111,111,107,105,101,45,103,100,112,114,0,0,17,100,105,118,46,99,111,111,107,105,101,45,104,101,97,100,101,114,0,0,15,100,105,118,46,99,111,111,107,105,101,45,104,105,110,116,0,0,18,100,105,118,46,99,111,111,107,105,101,45,104,105,110,119,101,105,115,0,0,15,100,105,118,46,99,111,111,107,105,101,45,104,111,108,100,0,0,15,100,105,118,46,99,111,111,107,105,101,45,105,110,102,111,0,0,16,100,105,118,46,99,111,111,107,105,101,45,108,97,121,101,114,0,0,14,100,105,118,46,99,111,111,107,105,101,45,109,115,103,0,0,17,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,99,101,0,0,21,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,105,103,0,0,22,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,111,100,121,0,0,25,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,115,101,110,116,0,0,22,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,111,112,101,110,0,0,25,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,118,105,115,105,98,108,101,0,0,25,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,0,0,23,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,0,0,31,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,0,0,13,100,105,118,46,99,111,111,107,105,101,45,111,110,0,0,18,100,105,118,46,99,111,111,107,105,101,45,111,118,101,114,108,97,121,0,0,18,100,105,118,46,99,111,111,107,105,101,45,112,97,100,100,105,110,103,0,0,16,100,105,118,46,99,111,111,107,105,101,45,112,97,110,101,108,0,0,17,100,105,118,46,99,111,111,107,105,101,45,112,97,114,101,110,116,0,0,17,100,105,118,46,99,111,111,107,105,101,45,112,111,108,105,99,121,0,0,24,100,105,118,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,0,0,22,100,105,118,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,104,101,97,100,0,0,22,100,105,118,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,105,110,102,111,0,0,30,100,105,118,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,105,110,102,111,45,45,99,101,110,116,101,114,0,0,22,100,105,118,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,111,112,101,110,0,0,16,100,105,118,46,99,111,111,107,105,101,45,112,111,112,117,112,0,0,29,100,105,118,46,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,45,98,97,110,110,101,114,0,0,19,100,105,118,46,99,111,111,107,105,101,45,114,101,109,105,110,100,101,114,0,0,15,100,105,118,46,99,111,111,107,105,101,45,115,104,111,119,0,0,18,100,105,118,46,99,111,111,107,105,101,45,118,105,115,105,98,108,101,0,0,15,100,105,118,46,99,111,111,107,105,101,45,119,97,114,110,0,0,18,100,105,118,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,0,0,18,100,105,118,46,99,111,111,107,105,101,45,119,114,97,112,112,101,114,0,0,21,100,105,118,46,99,111,111,107,105,101,66,97,99,107,103,97,114,111,117,110,100,0,0,16,100,105,118,46,99,111,111,107,105,101,66,97,110,110,101,114,0,0,13,100,105,118,46,99,111,111,107,105,101,66,97,114,0,0,17,100,105,118,46,99,111,111,107,105,101,67,111,110,115,101,110,116,0,0,20,100,105,118,46,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,0,0,16,100,105,118,46,99,111,111,107,105,101,72,111,108,100,101,114,0,0,14,100,105,118,46,99,111,111,107,105,101,73,110,102,111,0,0,17,100,105,118,46,99,111,111,107,105,101,77,101,115,115,97,103,101,0,0,13,100,105,118,46,99,111,111,107,105,101,77,115,103,0,0,13,100,105,118,46,99,111,111,107,105,101,78,97,118,0,0,16,100,105,118,46,99,111,111,107,105,101,80,111,108,105,99,121,0,0,13,100,105,118,46,99,111,111,107,105,101,80,111,112,0,0,16,100,105,118,46,99,111,111,107,105,101,80,114,111,109,112,116,0,0,22,100,105,118,46,99,111,111,107,105,101,84,101,120,116,115,87,114,97,112,112,101,114,0,0,17,100,105,118,46,99,111,111,107,105,101,95,95,97,108,101,114,116,0,0,20,100,105,118,46,99,111,111,107,105,101,95,95,98,97,99,107,100,114,111,112,0,0,22,100,105,118,46,99,111,111,107,105,101,95,95,99,111,109,112,108,105,97,110,99,101,0,0,22,100,105,118,46,99,111,111,107,105,101,95,95,100,105,115,99,108,97,105,109,101,114,0,0,17,100,105,118,46,99,111,111,107,105,101,95,95,108,97,121,101,114,0,0,18,100,105,118,46,99,111,111,107,105,101,95,95,110,111,116,105,99,101,0,0,17,100,105,118,46,99,111,111,107,105,101,95,95,112,111,112,117,112,0,0,16,100,105,118,46,99,111,111,107,105,101,95,97,103,114,101,101,0,0,21,100,105,118,46,99,111,111,107,105,101,95,97,103,114,101,101,95,119,114,97,112,0,0,16,100,105,118,46,99,111,111,107,105,101,95,97,108,97,114,109,0,0,15,100,105,118,46,99,111,111,107,105,101,95,104,101,97,100,0,0,17,100,105,118,46,99,111,111,107,105,101,95,104,101,97,100,101,114,0,0,14,100,105,118,46,99,111,111,107,105,101,95,109,115,103,0,0,16,100,105,118,46,99,111,111,107,105,101,95,112,111,112,117,112,0,0,15,100,105,118,46,99,111,111,107,105,101,95,116,101,120,116,0,0,18,100,105,118,46,99,111,111,107,105,101,95,118,105,115,105,98,108,101,0,0,20,100,105,118,46,99,111,111,107,105,101,98,97,99,107,103,114,111,117,110,100,0,0,16,100,105,118,46,99,111,111,107,105,101,98,97,110,110,101,114,0,0,13,100,105,118,46,99,111,111,107,105,101,98,97,114,0,0,13,100,105,118,46,99,111,111,107,105,101,98,111,120,0,0,17,100,105,118,46,99,111,111,107,105,101,99,111,110,102,105,114,109,0,0,17,100,105,118,46,99,111,111,107,105,101,99,111,110,115,101,110,116,0,0,16,100,105,118,46,99,111,111,107,105,101,104,111,108,100,101,114,0,0,14,100,105,118,46,99,111,111,107,105,101,104,116,109,108,0,0,16,100,105,118,46,99,111,111,107,105,101,110,111,116,105,99,101,0,0,13,100,105,118,46,99,111,111,107,105,101,112,111,112,0,0,16,100,105,118,46,99,111,111,107,105,101,112,114,111,109,112,116,0,0,20,100,105,118,46,99,111,111,107,105,101,115,45,45,118,105,115,105,98,108,101,0,0,18,100,105,118,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,0,0,16,100,105,118,46,99,111,111,107,105,101,115,45,98,111,100,121,0,0,15,100,105,118,46,99,111,111,107,105,101,115,45,98,116,109,0,0,19,100,105,118,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,0,0,16,100,105,118,46,99,111,111,107,105,101,115,45,99,111,110,116,0,0,17,100,105,118,46,99,111,111,107,105,101,115,45,102,105,120,101,100,0,0,19,100,105,118,46,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,0,0,27,100,105,118,46,99,111,111,107,105,101,115,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,0,0,18,100,105,118,46,99,111,111,107,105,101,115,45,110,111,116,105,99,101,0,0,15,100,105,118,46,99,111,111,107,105,101,115,45,112,97,110,0,0,18,100,105,118,46,99,111,111,107,105,101,115,45,112,97,114,101,110,116,0,0,15,100,105,118,46,99,111,111,107,105,101,115,45,112,111,112,0,0,18,100,105,118,46,99,111,111,107,105,101,115,45,115,112,108,97,115,104,0,0,19,100,105,118,46,99,111,111,107,105,101,115,45,118,105,115,105,98,108,101,0,0,21,100,105,118,46,99,111,111,107,105,101,115,65,99,99,101,112,116,97,110,99,101,0,0,17,100,105,118,46,99,111,111,107,105,101,115,66,97,110,110,101,114,0,0,18,100,105,118,46,99,111,111,107,105,101,115,95,95,97,108,101,114,116,0,0,18,100,105,118,46,99,111,111,107,105,101,115,95,95,102,105,114,115,116,0,0,18,100,105,118,46,99,111,111,107,105,101,115,95,95,111,117,116,101,114,0,0,18,100,105,118,46,99,111,111,107,105,101,115,95,98,97,110,110,101,114,0,0,18,100,105,118,46,99,111,111,107,105,101,115,95,100,101,115,105,103,110,0,0,16,100,105,118,46,99,111,111,107,105,101,115,95,111,112,101,110,0,0,17,100,105,118,46,99,111,111,107,105,101,115,95,112,97,110,101,108,0,0,15,100,105,118,46,99,111,111,107,105,101,115,95,112,111,112,0,0,16,100,105,118,46,99,111,111,107,105,101,115,99,114,101,101,110,0,0,17,100,105,118,46,99,111,111,107,105,101,115,101,99,116,105,111,110,0,0,15,100,105,118,46,99,111,111,107,105,101,115,112,97,99,101,0,0,16,100,105,118,46,99,111,111,107,105,101,115,112,108,97,99,101,0,0,19,100,105,118,46,99,111,111,107,105,101,115,116,97,116,101,109,101,110,116,0,0,17,100,105,118,46,99,111,111,107,105,101,115,119,105,110,100,111,119,0,0,14,100,105,118,46,100,101,118,45,99,111,111,107,105,101,0,0,22,100,105,118,46,100,112,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,20,100,105,118,46,101,100,117,45,109,111,100,97,108,45,99,111,111,107,105,101,0,0,13,100,105,118,46,101,117,45,99,111,111,107,105,101,0,0,14,100,105,118,46,101,117,45,111,118,101,114,108,97,121,0,0,13,100,105,118,46,101,117,95,99,111,111,107,105,101,0,0,13,100,105,118,46,101,117,99,111,110,115,101,110,116,0,0,11,100,105,118,46,101,117,112,111,112,117,112,0,0,16,100,105,118,46,101,122,109,111,98,45,102,111,111,116,101,114,0,0,15,100,105,118,46,103,100,112,114,45,98,111,116,116,111,109,0,0,16,100,105,118,46,103,100,112,114,45,99,111,110,102,105,114,109,0,0,15,100,105,118,46,103,100,112,114,45,99,111,111,107,105,101,0,0,32,100,105,118,46,103,100,112,114,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,0,0,30,100,105,118,46,103,100,112,114,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,0,0,31,100,105,118,46,103,100,112,114,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,115,101,116,116,105,110,103,115,0,0,21,100,105,118,46,103,100,112,114,45,112,111,112,117,112,45,98,111,114,100,101,114,0,0,13,100,105,118,46,103,100,112,114,45,115,104,111,119,0,0,16,100,105,118,46,103,100,112,114,45,119,114,97,112,112,101,114,0,0,15,100,105,118,46,103,100,112,114,87,114,97,112,112,101,114,0,0,15,100,105,118,46,103,114,105,100,45,99,111,111,107,105,101,0,0,12,100,105,118,46,105,45,99,111,111,107,105,101,0,0,13,100,105,118,46,105,115,45,99,111,111,107,105,101,0,0,14,100,105,118,46,105,115,45,99,111,111,107,105,101,115,0,0,29,100,105,118,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,0,0,18,100,105,118,46,106,115,45,99,111,111,107,105,101,45,110,111,116,101,0,0,27,100,105,118,46,106,115,45,99,111,111,107,105,101,45,110,111,116,101,45,45,111,118,101,114,108,97,121,0,0,22,100,105,118,46,106,115,45,99,111,111,107,105,101,45,116,101,109,112,108,97,116,101,0,0,17,100,105,118,46,106,115,45,100,105,115,99,108,97,105,109,101,114,0,0,17,100,105,118,46,108,97,121,101,114,95,99,111,111,107,105,101,115,0,0,17,100,105,118,46,108,97,121,111,117,116,45,99,111,111,107,105,101,0,0,14,100,105,118,46,108,103,112,100,45,112,111,112,117,112,0,0,16,100,105,118,46,108,103,112,100,45,119,97,114,110,105,110,103,0,0,18,100,105,118,46,109,101,115,115,97,103,101,99,111,111,107,105,101,115,0,0,15,100,105,118,46,109,111,100,95,99,111,111,107,105,101,115,0,0,13,100,105,118,46,109,115,103,67,111,111,107,105,101,0,0,18,100,105,118,46,110,111,116,105,99,101,45,45,99,111,111,107,105,101,0,0,21,100,105,118,46,110,111,116,105,102,105,99,97,116,105,111,110,112,111,112,117,112,0,0,15,100,105,118,46,110,119,109,45,99,111,111,107,105,101,115,0,0,14,100,105,118,46,112,97,103,101,67,111,111,107,105,101,0,0,15,100,105,118,46,112,97,103,101,99,111,111,107,105,101,115,0,0,16,100,105,118,46,112,97,110,101,108,67,111,111,107,105,101,115,0,0,16,100,105,118,46,112,111,112,85,112,67,111,111,107,105,101,115,0,0,16,100,105,118,46,112,111,112,117,112,99,111,111,107,105,101,115,0,0,19,100,105,118,46,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,0,0,16,100,105,118,46,112,114,105,118,97,99,121,45,105,110,102,111,0,0,19,100,105,118,46,112,114,105,118,97,99,121,45,109,101,115,115,97,103,101,0,0,17,100,105,118,46,112,114,105,118,97,99,121,45,109,111,100,97,108,0,0,18,100,105,118,46,112,114,105,118,97,99,121,45,109,111,100,117,108,101,0,0,16,100,105,118,46,112,114,105,118,97,99,121,45,110,111,116,101,0,0,19,100,105,118,46,112,114,105,118,97,99,121,45,111,118,101,114,108,97,121,0,0,18,100,105,118,46,112,114,105,118,97,99,121,45,112,111,108,105,99,101,0,0,27,100,105,118,46,112,114,105,118,97,99,121,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,0,0,19,100,105,118,46,115,101,99,116,105,111,110,45,45,99,111,111,107,105,101,0,0,16,100,105,118,46,115,101,99,116,105,111,110,45,103,100,112,114,0,0,19,100,105,118,46,115,104,111,119,45,99,111,111,107,105,101,45,98,111,120,0,0,23,100,105,118,46,115,104,111,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,22,100,105,118,46,115,104,111,119,45,99,111,111,107,105,101,45,112,111,108,105,99,121,0,0,16,100,105,118,46,115,104,111,119,45,99,111,111,107,105,101,115,0,0,15,100,105,118,46,115,105,116,101,45,99,111,111,107,105,101,0,0,24,100,105,118,46,115,113,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,118,50,0,0,12,100,105,118,46,118,45,99,111,111,107,105,101,0,0,12,100,105,118,46,119,45,99,111,111,107,105,101,0,0,15,100,105,118,46,119,105,116,104,45,99,111,111,107,105,101,0,0,27,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,93,0,0,22,102,111,114,109,46,99,111,111,107,105,101,45,98,97,114,45,45,102,108,117,105,100,0,0,17,102,111,114,109,46,99,111,111,107,105,101,66,97,110,110,101,114,0,0,25,110,97,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,0,0,14,112,46,97,108,101,114,116,45,99,111,111,107,105,101,0,0,31,115,101,99,116,105,111,110,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,0,0,31,115,101,99,116,105,111,110,35,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,0,0,21,115,101,99,116,105,111,110,46,67,111,111,107,105,101,45,110,111,116,105,99,101,0,0,16,115,101,99,116,105,111,110,46,99,45,99,111,111,107,105,101,0,0,23,115,101,99,116,105,111,110,46,99,45,99,111,111,107,105,101,99,111,110,115,101,110,116,0,0,17,115,101,99,116,105,111,110,46,99,45,99,111,111,107,105,101,115,0,0,20,115,101,99,116,105,111,110,46,99,111,111,107,105,101,45,97,108,101,114,116,0,0,21,115,101,99,116,105,111,110,46,99,111,111,107,105,101,45,98,97,110,110,101,114,0,0,18,115,101,99,116,105,111,110,46,99,111,111,107,105,101,45,98,97,114,0,0,22,115,101,99,116,105,111,110,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,0,0,22,115,101,99,116,105,111,110,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,0,0,20,115,101,99,116,105,111,110,46,99,111,111,107,105,101,45,112,111,112,117,112,0,0,23,115,101,99,116,105,111,110,46,99,111,111,107,105,101,95,95,112,114,105,118,97,99,121,0,0,22,115,101,99,116,105,111,110,46,99,111,111,107,105,101,115,95,98,97,110,110,101,114,0,0,32,100,105,118,46,97,109,103,100,112,114,99,111,111,107,105,101,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,0,0,20,100,105,118,46,97,109,109,111,100,97,108,115,45,111,118,101,114,108,97,121,0,0,23,102,111,111,116,101,114,32,62,32,46,67,111,111,107,105,101,67,111,110,115,101,110,116,0,0,23,104,101,97,100,101,114,32,62,32,46,67,111,111,107,105,101,67,111,110,115,101,110,116,0,0,27,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,118,105,115,105,98,108,101,0,0,31,115,101,99,116,105,111,110,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,118,105,115,105,98,108,101,0,0,21,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,66,111,120,45,34,93,0,0,45,98,111,100,121,46,115,108,105,100,105,110,103,45,112,111,112,117,112,45,112,114,111,99,101,115,115,101,100,32,62,32,35,115,108,105,100,105,110,103,45,112,111,112,117,112,0,0,20,104,101,97,100,101,114,32,62,32,35,110,111,116,105,102,121,45,98,97,114,0,0,36,100,105,118,32,62,32,35,99,110,115,104,91,115,116,121,108,101,61,34,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,34,93,0,0,39,100,105,118,91,115,116,121,108,101,61,34,109,105,110,45,119,105,100,116,104,58,32,55,53,48,112,120,59,34,93,32,62,32,46,103,98,95,119,98,0,0,66,100,105,118,91,115,116,121,108,101,42,61,34,98,111,120,45,115,104,97,100,111,119,58,32,114,103,98,40,49,51,54,44,32,49,51,54,44,32,49,51,54,41,32,48,112,120,32,48,112,120,32,49,50,112,120,59,32,99,111,108,111,114,58,32,34,93,0,0,64,0,0,0,64,56,0,0,32,28,128,0,4,187,3,0,0,0,0,0,0,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,10,0,0,0,12,0,0,0,14,0,0,0,14,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,18,0,0,0,18,0,0,0,18,0,0,0,18,0,0,0,18,0,0,0,18,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,26,0,0,0,26,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,30,0,0,0,30,0,0,0,30,0,0,0,32,0,0,0,34,0,0,0,36,0,0,0,36,0,0,0,36,0,0,0,38,0,0,0,40,0,0,0,40,0,0,0,40,0,0,0,42,0,0,0,42,0,0,0,42,0,0,0,42,0,0,0,42,0,0,0,42,0,0,0,44,0,0,0,46,0,0,0,46,0,0,0,48,0,0,0,48,0,0,0,48,0,0,0,50,0,0,0,50,0,0,0,52,0,0,0,52,0,0,0,52,0,0,0,52,0,0,0,52,0,0,0,54,0,0,0,54,0,0,0,56,0,0,0,56,0,0,0,60,0,0,0,60,0,0,0,64,0,0,0,66,0,0,0,68,0,0,0,68,0,0,0,70,0,0,0,72,0,0,0,74,0,0,0,74,0,0,0,74,0,0,0,74,0,0,0,74,0,0,0,76,0,0,0,78,0,0,0,80,0,0,0,82,0,0,0,86,0,0,0,86,0,0,0,86,0,0,0,86,0,0,0,88,0,0,0,90,0,0,0,90,0,0,0,90,0,0,0,94,0,0,0,96,0,0,0,98,0,0,0,98,0,0,0,98,0,0,0,98,0,0,0,102,0,0,0,102,0,0,0,102,0,0,0,102,0,0,0,102,0,0,0,106,0,0,0,108,0,0,0,112,0,0,0,116,0,0,0,120,0,0,0,120,0,0,0,120,0,0,0,122,0,0,0,122,0,0,0,122,0,0,0,126,0,0,0,126,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,130,0,0,0,130,0,0,0,130,0,0,0,132,0,0,0,132,0,0,0,132,0,0,0,132,0,0,0,136,0,0,0,140,0,0,0,142,0,0,0,144,0,0,0,146,0,0,0,146,0,0,0,146,0,0,0,148,0,0,0,148,0,0,0,148,0,0,0,148,0,0,0,150,0,0,0,150,0,0,0,150,0,0,0,152,0,0,0,154,0,0,0,156,0,0,0,158,0,0,0,158,0,0,0,160,0,0,0,160,0,0,0,162,0,0,0,162,0,0,0,164,0,0,0,164,0,0,0,168,0,0,0,168,0,0,0,170,0,0,0,170,0,0,0,170,0,0,0,170,0,0,0,170,0,0,0,170,0,0,0,172,0,0,0,172,0,0,0,172,0,0,0,172,0,0,0,174,0,0,0,174,0,0,0,176,0,0,0,178,0,0,0,178,0,0,0,180,0,0,0,180,0,0,0,182,0,0,0,184,0,0,0,184,0,0,0,184,0,0,0,184,0,0,0,188,0,0,0,188,0,0,0,188,0,0,0,188,0,0,0,188,0,0,0,188,0,0,0,190,0,0,0,190,0,0,0,192,0,0,0,192,0,0,0,192,0,0,0,192,0,0,0,194,0,0,0,196,0,0,0,198,0,0,0,200,0,0,0,202,0,0,0,202,0,0,0,202,0,0,0,202,0,0,0,202,0,0,0,202,0,0,0,202,0,0,0,202,0,0,0,202,0,0,0,206,0,0,0,208,0,0,0,208,0,0,0,208,0,0,0,208,0,0,0,208,0,0,0,208,0,0,0,208,0,0,0,208,0,0,0,212,0,0,0,214,0,0,0,216,0,0,0,218,0,0,0,220,0,0,0,222,0,0,0,222,0,0,0,222,0,0,0,224,0,0,0,226,0,0,0,226,0,0,0,226,0,0,0,226,0,0,0,228,0,0,0,230,0,0,0,230,0,0,0,230,0,0,0,230,0,0,0,232,0,0,0,234,0,0,0,234,0,0,0,236,0,0,0,238,0,0,0,246,0,0,0,246,0,0,0,248,0,0,0,250,0,0,0,252,0,0,0,252,0,0,0,254,0,0,0,2,1,0,0,2,1,0,0,2,1,0,0,2,1,0,0,2,1,0,0,2,1,0,0,2,1,0,0,4,1,0,0,8,1,0,0,8,1,0,0,12,1,0,0,12,1,0,0,12,1,0,0,12,1,0,0,12,1,0,0,12,1,0,0,12,1,0,0,14,1,0,0,14,1,0,0,16,1,0,0,16,1,0,0,16,1,0,0,16,1,0,0,16,1,0,0,20,1,0,0,20,1,0,0,22,1,0,0,22,1,0,0,22,1,0,0,24,1,0,0,24,1,0,0,24,1,0,0,24,1,0,0,24,1,0,0,26,1,0,0,26,1,0,0,26,1,0,0,28,1,0,0,30,1,0,0,30,1,0,0,32,1,0,0,34,1,0,0,34,1,0,0,34,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,36,1,0,0,38,1,0,0,38,1,0,0,38,1,0,0,38,1,0,0,40,1,0,0,40,1,0,0,40,1,0,0,40,1,0,0,44,1,0,0,44,1,0,0,44,1,0,0,44,1,0,0,46,1,0,0,46,1,0,0,46,1,0,0,46,1,0,0,48,1,0,0,50,1,0,0,54,1,0,0,54,1,0,0,54,1,0,0,56,1,0,0,56,1,0,0,56,1,0,0,56,1,0,0,56,1,0,0,58,1,0,0,58,1,0,0,60,1,0,0,60,1,0,0,60,1,0,0,60,1,0,0,60,1,0,0,60,1,0,0,60,1,0,0,62,1,0,0,66,1,0,0,66,1,0,0,66,1,0,0,66,1,0,0,66,1,0,0,66,1,0,0,68,1,0,0,68,1,0,0,70,1,0,0,70,1,0,0,72,1,0,0,72,1,0,0,74,1,0,0,74,1,0,0,74,1,0,0,76,1,0,0,78,1,0,0,78,1,0,0,78,1,0,0,78,1,0,0,78,1,0,0,80,1,0,0,84,1,0,0,86,1,0,0,88,1,0,0,88,1,0,0,88,1,0,0,88,1,0,0,90,1,0,0,90,1,0,0,90,1,0,0,90,1,0,0,90,1,0,0,98,1,0,0,100,1,0,0,102,1,0,0,102,1,0,0,104,1,0,0,106,1,0,0,106,1,0,0,106,1,0,0,106,1,0,0,108,1,0,0,110,1,0,0,112,1,0,0,116,1,0,0,116,1,0,0,118,1,0,0,118,1,0,0,118,1,0,0,120,1,0,0,120,1,0,0,120,1,0,0,122,1,0,0,122,1,0,0,122,1,0,0,124,1,0,0,124,1,0,0,124,1,0,0,126,1,0,0,126,1,0,0,132,1,0,0,132,1,0,0,132,1,0,0,136,1,0,0,140,1,0,0,140,1,0,0,140,1,0,0,144,1,0,0,144,1,0,0,150,1,0,0,152,1,0,0,152,1,0,0,154,1,0,0,156,1,0,0,158,1,0,0,160,1,0,0,162,1,0,0,162,1,0,0,164,1,0,0,168,1,0,0,168,1,0,0,168,1,0,0,168,1,0,0,168,1,0,0,170,1,0,0,170,1,0,0,172,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,176,1,0,0,178,1,0,0,182,1,0,0,182,1,0,0,182,1,0,0,184,1,0,0,186,1,0,0,186,1,0,0,190,1,0,0,192,1,0,0,192,1,0,0,194,1,0,0,196,1,0,0,196,1,0,0,196,1,0,0,198,1,0,0,200,1,0,0,200,1,0,0,200,1,0,0,200,1,0,0,200,1,0,0,206,1,0,0,206,1,0,0,206,1,0,0,206,1,0,0,208,1,0,0,208,1,0,0,210,1,0,0,210,1,0,0,212,1,0,0,212,1,0,0,214,1,0,0,214,1,0,0,218,1,0,0,218,1,0,0,218,1,0,0,218,1,0,0,220,1,0,0,220,1,0,0,222,1,0,0,222,1,0,0,222,1,0,0,222,1,0,0,222,1,0,0,222,1,0,0,222,1,0,0,224,1,0,0,224,1,0,0,224,1,0,0,224,1,0,0,228,1,0,0,232,1,0,0,232,1,0,0,232,1,0,0,232,1,0,0,234,1,0,0,234,1,0,0,234,1,0,0,236,1,0,0,238,1,0,0,238,1,0,0,238,1,0,0,238,1,0,0,238,1,0,0,244,1,0,0,244,1,0,0,244,1,0,0,246,1,0,0,246,1,0,0,248,1,0,0,248,1,0,0,248,1,0,0,248,1,0,0,248,1,0,0,250,1,0,0,250,1,0,0,250,1,0,0,252,1,0,0,252,1,0,0,252,1,0,0,252,1,0,0,254,1,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,4,2,0,0,4,2,0,0,8,2,0,0,8,2,0,0,10,2,0,0,10,2,0,0,10,2,0,0,14,2,0,0,16,2,0,0,16,2,0,0,16,2,0,0,20,2,0,0,22,2,0,0,24,2,0,0,24,2,0,0,28,2,0,0,28,2,0,0,28,2,0,0,32,2,0,0,34,2,0,0,38,2,0,0,38,2,0,0,40,2,0,0,40,2,0,0,40,2,0,0,40,2,0,0,40,2,0,0,40,2,0,0,40,2,0,0,42,2,0,0,44,2,0,0,44,2,0,0,44,2,0,0,44,2,0,0,44,2,0,0,46,2,0,0,48,2,0,0,48,2,0,0,50,2,0,0,50,2,0,0,50,2,0,0,50,2,0,0,50,2,0,0,50,2,0,0,52,2,0,0,54,2,0,0,54,2,0,0,56,2,0,0,56,2,0,0,56,2,0,0,56,2,0,0,56,2,0,0,62,2,0,0,64,2,0,0,64,2,0,0,64,2,0,0,64,2,0,0,64,2,0,0,64,2,0,0,64,2,0,0,64,2,0,0,66,2,0,0,66,2,0,0,68,2,0,0,68,2,0,0,68,2,0,0,68,2,0,0,70,2,0,0,70,2,0,0,70,2,0,0,70,2,0,0,70,2,0,0,70,2,0,0,70,2,0,0,70,2,0,0,70,2,0,0,70,2,0,0,70,2,0,0,70,2,0,0,72,2,0,0,72,2,0,0,72,2,0,0,74,2,0,0,74,2,0,0,76,2,0,0,80,2,0,0,80,2,0,0,82,2,0,0,84,2,0,0,86,2,0,0,86,2,0,0,86,2,0,0,86,2,0,0,86,2,0,0,88,2,0,0,88,2,0,0,90,2,0,0,92,2,0,0,92,2,0,0,94,2,0,0,94,2,0,0,96,2,0,0,96,2,0,0,96,2,0,0,96,2,0,0,96,2,0,0,96,2,0,0,98,2,0,0,98,2,0,0,98,2,0,0,98,2,0,0,100,2,0,0,102,2,0,0,102,2,0,0,102,2,0,0,104,2,0,0,108,2,0,0,110,2,0,0,110,2,0,0,112,2,0,0,112,2,0,0,112,2,0,0,112,2,0,0,114,2,0,0,114,2,0,0,114,2,0,0,116,2,0,0,116,2,0,0,116,2,0,0,122,2,0,0,122,2,0,0,124,2,0,0,124,2,0,0,124,2,0,0,126,2,0,0,126,2,0,0,126,2,0,0,130,2,0,0,132,2,0,0,134,2,0,0,134,2,0,0,134,2,0,0,134,2,0,0,134,2,0,0,136,2,0,0,136,2,0,0,140,2,0,0,142,2,0,0,142,2,0,0,146,2,0,0,148,2,0,0,152,2,0,0,154,2,0,0,154,2,0,0,154,2,0,0,154,2,0,0,158,2,0,0,158,2,0,0,158,2,0,0,160,2,0,0,160,2,0,0,160,2,0,0,160,2,0,0,164,2,0,0,164,2,0,0,164,2,0,0,164,2,0,0,164,2,0,0,164,2,0,0,164,2,0,0,166,2,0,0,166,2,0,0,166,2,0,0,166,2,0,0,172,2,0,0,174,2,0,0,174,2,0,0,176,2,0,0,176,2,0,0,178,2,0,0,178,2,0,0,180,2,0,0,184,2,0,0,188,2,0,0,192,2,0,0,192,2,0,0,192,2,0,0,194,2,0,0,194,2,0,0,198,2,0,0,200,2,0,0,200,2,0,0,200,2,0,0,200,2,0,0,202,2,0,0,204,2,0,0,206,2,0,0,208,2,0,0,210,2,0,0,210,2,0,0,210,2,0,0,212,2,0,0,216,2,0,0,216,2,0,0,216,2,0,0,216,2,0,0,218,2,0,0,220,2,0,0,220,2,0,0,220,2,0,0,220,2,0,0,220,2,0,0,222,2,0,0,224,2,0,0,228,2,0,0,228,2,0,0,230,2,0,0,230,2,0,0,230,2,0,0,234,2,0,0,234,2,0,0,234,2,0,0,234,2,0,0,234,2,0,0,234,2,0,0,236,2,0,0,238,2,0,0,238,2,0,0,238,2,0,0,240,2,0,0,240,2,0,0,240,2,0,0,244,2,0,0,244,2,0,0,244,2,0,0,244,2,0,0,244,2,0,0,244,2,0,0,246,2,0,0,246,2,0,0,246,2,0,0,246,2,0,0,246,2,0,0,248,2,0,0,252,2,0,0,252,2,0,0,254,2,0,0,0,3,0,0,0,3,0,0,2,3,0,0,2,3,0,0,2,3,0,0,4,3,0,0,6,3,0,0,8,3,0,0,8,3,0,0,8,3,0,0,8,3,0,0,8,3,0,0,8,3,0,0,10,3,0,0,12,3,0,0,14,3,0,0,18,3,0,0,22,3,0,0,24,3,0,0,24,3,0,0,24,3,0,0,26,3,0,0,28,3,0,0,30,3,0,0,32,3,0,0,32,3,0,0,34,3,0,0,34,3,0,0,36,3,0,0,36,3,0,0,40,3,0,0,42,3,0,0,42,3,0,0,42,3,0,0,42,3,0,0,44,3,0,0,46,3,0,0,50,3,0,0,52,3,0,0,54,3,0,0,56,3,0,0,56,3,0,0,60,3,0,0,64,3,0,0,66,3,0,0,66,3,0,0,66,3,0,0,66,3,0,0,66,3,0,0,66,3,0,0,66,3,0,0,68,3,0,0,68,3,0,0,72,3,0,0,74,3,0,0,78,3,0,0,80,3,0,0,80,3,0,0,82,3,0,0,82,3,0,0,84,3,0,0,84,3,0,0,84,3,0,0,84,3,0,0,84,3,0,0,84,3,0,0,84,3,0,0,86,3,0,0,86,3,0,0,86,3,0,0,86,3,0,0,86,3,0,0,86,3,0,0,88,3,0,0,94,3,0,0,100,3,0,0,102,3,0,0,102,3,0,0,106,3,0,0,108,3,0,0,110,3,0,0,112,3,0,0,112,3,0,0,116,3,0,0,116,3,0,0,118,3,0,0,120,3,0,0,120,3,0,0,120,3,0,0,122,3,0,0,122,3,0,0,122,3,0,0,124,3,0,0,124,3,0,0,126,3,0,0,126,3,0,0,126,3,0,0,126,3,0,0,126,3,0,0,126,3,0,0,126,3,0,0,126,3,0,0,126,3,0,0,128,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,132,3,0,0,134,3,0,0,134,3,0,0,136,3,0,0,136,3,0,0,136,3,0,0,140,3,0,0,142,3,0,0,142,3,0,0,142,3,0,0,142,3,0,0,142,3,0,0,142,3,0,0,144,3,0,0,144,3,0,0,144,3,0,0,144,3,0,0,146,3,0,0,150,3,0,0,150,3,0,0,152,3,0,0,154,3,0,0,154,3,0,0,154,3,0,0,154,3,0,0,154,3,0,0,156,3,0,0,158,3,0,0,158,3,0,0,158,3,0,0,160,3,0,0,160,3,0,0,160,3,0,0,160,3,0,0,160,3,0,0,160,3,0,0,160,3,0,0,162,3,0,0,166,3,0,0,172,3,0,0,174,3,0,0,174,3,0,0,174,3,0,0,174,3,0,0,176,3,0,0,176,3,0,0,178,3,0,0,178,3,0,0,182,3,0,0,184,3,0,0,184,3,0,0,186,3,0,0,186,3,0,0,186,3,0,0,186,3,0,0,186,3,0,0,186,3,0,0,186,3,0,0,188,3,0,0,190,3,0,0,192,3,0,0,192,3,0,0,192,3,0,0,196,3,0,0,196,3,0,0,196,3,0,0,198,3,0,0,198,3,0,0,200,3,0,0,202,3,0,0,202,3,0,0,204,3,0,0,204,3,0,0,204,3,0,0,208,3,0,0,210,3,0,0,210,3,0,0,210,3,0,0,212,3,0,0,212,3,0,0,212,3,0,0,214,3,0,0,214,3,0,0,214,3,0,0,214,3,0,0,214,3,0,0,214,3,0,0,214,3,0,0,214,3,0,0,214,3,0,0,214,3,0,0,214,3,0,0,218,3,0,0,218,3,0,0,218,3,0,0,222,3,0,0,224,3,0,0,224,3,0,0,224,3,0,0,226,3,0,0,226,3,0,0,226,3,0,0,226,3,0,0,226,3,0,0,226,3,0,0,226,3,0,0,228,3,0,0,232,3,0,0,234,3,0,0,234,3,0,0,234,3,0,0,236,3,0,0,238,3,0,0,240,3,0,0,242,3,0,0,242,3,0,0,242,3,0,0,244,3,0,0,244,3,0,0,244,3,0,0,244,3,0,0,244,3,0,0,244,3,0,0,244,3,0,0,246,3,0,0,250,3,0,0,250,3,0,0,252,3,0,0,252,3,0,0,254,3,0,0,254,3,0,0,254,3,0,0,254,3,0,0,254,3,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,4,0,0,4,4,0,0,8,4,0,0,8,4,0,0,8,4,0,0,8,4,0,0,8,4,0,0,8,4,0,0,8,4,0,0,10,4,0,0,10,4,0,0,12,4,0,0,12,4,0,0,12,4,0,0,12,4,0,0,12,4,0,0,14,4,0,0,14,4,0,0,14,4,0,0,16,4,0,0,18,4,0,0,18,4,0,0,18,4,0,0,18,4,0,0,18,4,0,0,18,4,0,0,18,4,0,0,20,4,0,0,24,4,0,0,26,4,0,0,26,4,0,0,28,4,0,0,30,4,0,0,32,4,0,0,32,4,0,0,34,4,0,0,36,4,0,0,38,4,0,0,38,4,0,0,40,4,0,0,42,4,0,0,42,4,0,0,46,4,0,0,48,4,0,0,48,4,0,0,52,4,0,0,52,4,0,0,52,4,0,0,56,4,0,0,60,4,0,0,62,4,0,0,64,4,0,0,64,4,0,0,64,4,0,0,64,4,0,0,64,4,0,0,66,4,0,0,66,4,0,0,66,4,0,0,68,4,0,0,70,4,0,0,76,4,0,0,76,4,0,0,76,4,0,0,76,4,0,0,76,4,0,0,76,4,0,0,76,4,0,0,78,4,0,0,78,4,0,0,78,4,0,0,78,4,0,0,78,4,0,0,80,4,0,0,80,4,0,0,80,4,0,0,80,4,0,0,80,4,0,0,84,4,0,0,84,4,0,0,86,4,0,0,90,4,0,0,90,4,0,0,92,4,0,0,92,4,0,0,92,4,0,0,94,4,0,0,94,4,0,0,96,4,0,0,96,4,0,0,96,4,0,0,96,4,0,0,96,4,0,0,96,4,0,0,98,4,0,0,98,4,0,0,98,4,0,0,98,4,0,0,98,4,0,0,100,4,0,0,100,4,0,0,102,4,0,0,102,4,0,0,102,4,0,0,104,4,0,0,108,4,0,0,108,4,0,0,108,4,0,0,108,4,0,0,108,4,0,0,110,4,0,0,110,4,0,0,110,4,0,0,110,4,0,0,110,4,0,0,110,4,0,0,112,4,0,0,112,4,0,0,112,4,0,0,112,4,0,0,116,4,0,0,116,4,0,0,116,4,0,0,118,4,0,0,120,4,0,0,132,4,0,0,134,4,0,0,134,4,0,0,134,4,0,0,136,4,0,0,138,4,0,0,140,4,0,0,142,4,0,0,142,4,0,0,144,4,0,0,144,4,0,0,144,4,0,0,144,4,0,0,146,4,0,0,148,4,0,0,148,4,0,0,150,4,0,0,152,4,0,0,152,4,0,0,158,4,0,0,158,4,0,0,160,4,0,0,162,4,0,0,162,4,0,0,164,4,0,0,164,4,0,0,164,4,0,0,164,4,0,0,166,4,0,0,166,4,0,0,166,4,0,0,166,4,0,0,166,4,0,0,166,4,0,0,166,4,0,0,166,4,0,0,166,4,0,0,170,4,0,0,174,4,0,0,174,4,0,0,178,4,0,0,178,4,0,0,178,4,0,0,178,4,0,0,178,4,0,0,182,4,0,0,182,4,0,0,186,4,0,0,186,4,0,0,186,4,0,0,186,4,0,0,186,4,0,0,186,4,0,0,186,4,0,0,186,4,0,0,188,4,0,0,190,4,0,0,192,4,0,0,194,4,0,0,194,4,0,0,196,4,0,0,196,4,0,0,198,4,0,0,202,4,0,0,202,4,0,0,202,4,0,0,202,4,0,0,204,4,0,0,204,4,0,0,204,4,0,0,204,4,0,0,204,4,0,0,204,4,0,0,206,4,0,0,206,4,0,0,206,4,0,0,206,4,0,0,208,4,0,0,208,4,0,0,208,4,0,0,210,4,0,0,210,4,0,0,210,4,0,0,210,4,0,0,210,4,0,0,210,4,0,0,212,4,0,0,212,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,220,4,0,0,224,4,0,0,226,4,0,0,226,4,0,0,230,4,0,0,232,4,0,0,236,4,0,0,236,4,0,0,236,4,0,0,236,4,0,0,240,4,0,0,240,4,0,0,240,4,0,0,240,4,0,0,240,4,0,0,244,4,0,0,244,4,0,0,246,4,0,0,246,4,0,0,248,4,0,0,248,4,0,0,250,4,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,5,0,0,2,5,0,0,2,5,0,0,4,5,0,0,8,5,0,0,8,5,0,0,10,5,0,0,10,5,0,0,10,5,0,0,12,5,0,0,12,5,0,0,12,5,0,0,12,5,0,0,14,5,0,0,14,5,0,0,16,5,0,0,18,5,0,0,22,5,0,0,22,5,0,0,22,5,0,0,22,5,0,0,22,5,0,0,22,5,0,0,24,5,0,0,24,5,0,0,24,5,0,0,24,5,0,0,24,5,0,0,24,5,0,0,26,5,0,0,26,5,0,0,26,5,0,0,26,5,0,0,26,5,0,0,26,5,0,0,26,5,0,0,26,5,0,0,26,5,0,0,28,5,0,0,30,5,0,0,30,5,0,0,30,5,0,0,30,5,0,0,32,5,0,0,32,5,0,0,32,5,0,0,32,5,0,0,34,5,0,0,34,5,0,0,34,5,0,0,34,5,0,0,36,5,0,0,36,5,0,0,40,5,0,0,40,5,0,0,40,5,0,0,42,5,0,0,42,5,0,0,42,5,0,0,42,5,0,0,42,5,0,0,42,5,0,0,44,5,0,0,50,5,0,0,50,5,0,0,50,5,0,0,52,5,0,0,52,5,0,0,54,5,0,0,54,5,0,0,56,5,0,0,56,5,0,0,58,5,0,0,58,5,0,0,58,5,0,0,58,5,0,0,60,5,0,0,60,5,0,0,60,5,0,0,60,5,0,0,60,5,0,0,64,5,0,0,68,5,0,0,70,5,0,0,70,5,0,0,70,5,0,0,70,5,0,0,72,5,0,0,76,5,0,0,76,5,0,0,76,5,0,0,76,5,0,0,78,5,0,0,78,5,0,0,78,5,0,0,80,5,0,0,80,5,0,0,90,5,0,0,90,5,0,0,92,5,0,0,92,5,0,0,92,5,0,0,92,5,0,0,92,5,0,0,96,5,0,0,98,5,0,0,104,5,0,0,104,5,0,0,106,5,0,0,108,5,0,0,108,5,0,0,108,5,0,0,108,5,0,0,108,5,0,0,110,5,0,0,110,5,0,0,112,5,0,0,112,5,0,0,114,5,0,0,114,5,0,0,114,5,0,0,118,5,0,0,118,5,0,0,118,5,0,0,120,5,0,0,122,5,0,0,122,5,0,0,122,5,0,0,126,5,0,0,126,5,0,0,126,5,0,0,128,5,0,0,128,5,0,0,130,5,0,0,132,5,0,0,134,5,0,0,134,5,0,0,136,5,0,0,136,5,0,0,138,5,0,0,138,5,0,0,138,5,0,0,140,5,0,0,140,5,0,0,142,5,0,0,142,5,0,0,142,5,0,0,142,5,0,0,142,5,0,0,146,5,0,0,146,5,0,0,146,5,0,0,146,5,0,0,146,5,0,0,146,5,0,0,146,5,0,0,148,5,0,0,150,5,0,0,152,5,0,0,154,5,0,0,154,5,0,0,158,5,0,0,162,5,0,0,164,5,0,0,164,5,0,0,166,5,0,0,166,5,0,0,166,5,0,0,168,5,0,0,172,5,0,0,176,5,0,0,178,5,0,0,178,5,0,0,178,5,0,0,180,5,0,0,182,5,0,0,184,5,0,0,188,5,0,0,190,5,0,0,190,5,0,0,190,5,0,0,190,5,0,0,190,5,0,0,192,5,0,0,194,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,198,5,0,0,198,5,0,0,198,5,0,0,200,5,0,0,200,5,0,0,204,5,0,0,204,5,0,0,204,5,0,0,206,5,0,0,206,5,0,0,206,5,0,0,206,5,0,0,206,5,0,0,208,5,0,0,208,5,0,0,208,5,0,0,212,5,0,0,212,5,0,0,212,5,0,0,212,5,0,0,212,5,0,0,218,5,0,0,218,5,0,0,218,5,0,0,220,5,0,0,220,5,0,0,222,5,0,0,222,5,0,0,222,5,0,0,224,5,0,0,226,5,0,0,232,5,0,0,236,5,0,0,236,5,0,0,236,5,0,0,236,5,0,0,236,5,0,0,238,5,0,0,238,5,0,0,238,5,0,0,238,5,0,0,240,5,0,0,240,5,0,0,242,5,0,0,244,5,0,0,244,5,0,0,244,5,0,0,244,5,0,0,244,5,0,0,244,5,0,0,244,5,0,0,244,5,0,0,246,5,0,0,246,5,0,0,246,5,0,0,248,5,0,0,248,5,0,0,248,5,0,0,248,5,0,0,252,5,0,0,252,5,0,0,252,5,0,0,252,5,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,2,6,0,0,2,6,0,0,2,6,0,0,2,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,10,6,0,0,12,6,0,0,12,6,0,0,14,6,0,0,20,6,0,0,20,6,0,0,20,6,0,0,20,6,0,0,24,6,0,0,26,6,0,0,26,6,0,0,28,6,0,0,28,6,0,0,28,6,0,0,30,6,0,0,32,6,0,0,32,6,0,0,32,6,0,0,34,6,0,0,34,6,0,0,36,6,0,0,38,6,0,0,38,6,0,0,38,6,0,0,42,6,0,0,42,6,0,0,44,6,0,0,44,6,0,0,44,6,0,0,44,6,0,0,44,6,0,0,48,6,0,0,50,6,0,0,50,6,0,0,50,6,0,0,54,6,0,0,58,6,0,0,60,6,0,0,60,6,0,0,60,6,0,0,64,6,0,0,64,6,0,0,64,6,0,0,66,6,0,0,66,6,0,0,68,6,0,0,70,6,0,0,70,6,0,0,70,6,0,0,72,6,0,0,74,6,0,0,74,6,0,0,76,6,0,0,78,6,0,0,78,6,0,0,80,6,0,0,80,6,0,0,80,6,0,0,86,6,0,0,90,6,0,0,94,6,0,0,94,6,0,0,94,6,0,0,96,6,0,0,98,6,0,0,100,6,0,0,100,6,0,0,100,6,0,0,100,6,0,0,100,6,0,0,100,6,0,0,100,6,0,0,100,6,0,0,102,6,0,0,102,6,0,0,104,6,0,0,104,6,0,0,104,6,0,0,104,6,0,0,104,6,0,0,108,6,0,0,110,6,0,0,112,6,0,0,112,6,0,0,116,6,0,0,118,6,0,0,128,6,0,0,128,6,0,0,130,6,0,0,136,6,0,0,138,6,0,0,138,6,0,0,138,6,0,0,140,6,0,0,142,6,0,0,142,6,0,0,144,6,0,0,148,6,0,0,150,6,0,0,150,6,0,0,152,6,0,0,154,6,0,0,158,6,0,0,158,6,0,0,158,6,0,0,158,6,0,0,158,6,0,0,158,6,0,0,160,6,0,0,160,6,0,0,162,6,0,0,162,6,0,0,164,6,0,0,166,6,0,0,166,6,0,0,166,6,0,0,170,6,0,0,170,6,0,0,170,6,0,0,174,6,0,0,174,6,0,0,176,6,0,0,178,6,0,0,178,6,0,0,178,6,0,0,178,6,0,0,178,6,0,0,178,6,0,0,178,6,0,0,178,6,0,0,178,6,0,0,182,6,0,0,184,6,0,0,186,6,0,0,186,6,0,0,188,6,0,0,188,6,0,0,190,6,0,0,190,6,0,0,190,6,0,0,192,6,0,0,192,6,0,0,192,6,0,0,196,6,0,0,196,6,0,0,196,6,0,0,200,6,0,0,200,6,0,0,200,6,0,0,200,6,0,0,200,6,0,0,200,6,0,0,200,6,0,0,202,6,0,0,204,6,0,0,204,6,0,0,204,6,0,0,204,6,0,0,208,6,0,0,208,6,0,0,208,6,0,0,212,6,0,0,214,6,0,0,216,6,0,0,218,6,0,0,218,6,0,0,218,6,0,0,218,6,0,0,218,6,0,0,218,6,0,0,222,6,0,0,222,6,0,0,224,6,0,0,226,6,0,0,228,6,0,0,228,6,0,0,228,6,0,0,228,6,0,0,228,6,0,0,232,6,0,0,232,6,0,0,232,6,0,0,234,6,0,0,236,6,0,0,236,6,0,0,238,6,0,0,238,6,0,0,240,6,0,0,240,6,0,0,240,6,0,0,240,6,0,0,240,6,0,0,242,6,0,0,242,6,0,0,242,6,0,0,246,6,0,0,250,6,0,0,252,6,0,0,252,6,0,0,252,6,0,0,252,6,0,0,254,6,0,0,254,6,0,0,254,6,0,0,254,6,0,0,254,6,0,0,254,6,0,0,0,7,0,0,0,7,0,0,2,7,0,0,4,7,0,0,6,7,0,0,6,7,0,0,6,7,0,0,6,7,0,0,8,7,0,0,8,7,0,0,8,7,0,0,10,7,0,0,10,7,0,0,10,7,0,0,10,7,0,0,10,7,0,0,10,7,0,0,12,7,0,0,14,7,0,0,14,7,0,0,18,7,0,0,18,7,0,0,20,7,0,0,20,7,0,0,20,7,0,0,20,7,0,0,22,7,0,0,22,7,0,0,22,7,0,0,22,7,0,0,24,7,0,0,24,7,0,0,24,7,0,0,26,7,0,0,26,7,0,0,26,7,0,0,26,7,0,0,28,7,0,0,30,7,0,0,30,7,0,0,30,7,0,0,30,7,0,0,30,7,0,0,34,7,0,0,36,7,0,0,36,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,42,7,0,0,42,7,0,0,42,7,0,0,44,7,0,0,46,7,0,0,46,7,0,0,46,7,0,0,48,7,0,0,48,7,0,0,50,7,0,0,52,7,0,0,54,7,0,0,54,7,0,0,54,7,0,0,54,7,0,0,54,7,0,0,56,7,0,0,56,7,0,0,58,7,0,0,58,7,0,0,58,7,0,0,60,7,0,0,62,7,0,0,66,7,0,0,68,7,0,0,74,7,0,0,74,7,0,0,74,7,0,0,74,7,0,0,76,7,0,0,76,7,0,0,76,7,0,0,78,7,0,0,80,7,0,0,80,7,0,0,80,7,0,0,84,7,0,0,86,7,0,0,88,7,0,0,90,7,0,0,90,7,0,0,92,7,0,0,92,7,0,0,92,7,0,0,92,7,0,0,94,7,0,0,94,7,0,0,94,7,0,0,94,7,0,0,96,7,0,0,96,7,0,0,98,7,0,0,102,7,0,0,104,7,0,0,108,7,0,0,108,7,0,0,110,7,0,0,114,7,0,0,114,7,0,0,116,7,0,0,118,7,0,0,118,7,0,0,120,7,0,0,120,7,0,0,120,7,0,0,120,7,0,0,120,7,0,0,120,7,0,0,120,7,0,0,120,7,0,0,120,7,0,0,122,7,0,0,124,7,0,0,124,7,0,0,128,7,0,0,132,7,0,0,132,7,0,0,134,7,0,0,134,7,0,0,134,7,0,0,134,7,0,0,134,7,0,0,134,7,0,0,136,7,0,0,136,7,0,0,136,7,0,0,138,7,0,0,138,7,0,0,140,7,0,0,140,7,0,0,140,7,0,0,140,7,0,0,142,7,0,0,142,7,0,0,144,7,0,0,144,7,0,0,144,7,0,0,146,7,0,0,148,7,0,0,148,7,0,0,148,7,0,0,150,7,0,0,150,7,0,0,150,7,0,0,150,7,0,0,150,7,0,0,150,7,0,0,150,7,0,0,150,7,0,0,150,7,0,0,150,7,0,0,150,7,0,0,152,7,0,0,154,7,0,0,156,7,0,0,156,7,0,0,156,7,0,0,158,7,0,0,160,7,0,0,160,7,0,0,164,7,0,0,164,7,0,0,164,7,0,0,164,7,0,0,164,7,0,0,166,7,0,0,166,7,0,0,166,7,0,0,166,7,0,0,166,7,0,0,166,7,0,0,170,7,0,0,170,7,0,0,172,7,0,0,172,7,0,0,174,7,0,0,174,7,0,0,174,7,0,0,178,7,0,0,178,7,0,0,180,7,0,0,182,7,0,0,182,7,0,0,182,7,0,0,184,7,0,0,186,7,0,0,186,7,0,0,188,7,0,0,188,7,0,0,190,7,0,0,190,7,0,0,198,7,0,0,198,7,0,0,198,7,0,0,200,7,0,0,200,7,0,0,200,7,0,0,204,7,0,0,204,7,0,0,204,7,0,0,204,7,0,0,204,7,0,0,206,7,0,0,210,7,0,0,210,7,0,0,214,7,0,0,216,7,0,0,220,7,0,0,220,7,0,0,222,7,0,0,224,7,0,0,226,7,0,0,228,7,0,0,228,7,0,0,228,7,0,0,232,7,0,0,232,7,0,0,232,7,0,0,232,7,0,0,234,7,0,0,234,7,0,0,234,7,0,0,234,7,0,0,236,7,0,0,240,7,0,0,240,7,0,0,240,7,0,0,246,7,0,0,248,7,0,0,254,7,0,0,2,8,0,0,4,8,0,0,4,8,0,0,4,8,0,0,4,8,0,0,4,8,0,0,8,8,0,0,8,8,0,0,8,8,0,0,8,8,0,0,12,8,0,0,12,8,0,0,12,8,0,0,12,8,0,0,12,8,0,0,14,8,0,0,16,8,0,0,16,8,0,0,18,8,0,0,20,8,0,0,22,8,0,0,22,8,0,0,22,8,0,0,22,8,0,0,24,8,0,0,26,8,0,0,28,8,0,0,28,8,0,0,28,8,0,0,30,8,0,0,30,8,0,0,30,8,0,0,30,8,0,0,32,8,0,0,32,8,0,0,36,8,0,0,36,8,0,0,38,8,0,0,44,8,0,0,46,8,0,0,46,8,0,0,46,8,0,0,46,8,0,0,46,8,0,0,46,8,0,0,46,8,0,0,46,8,0,0,50,8,0,0,54,8,0,0,56,8,0,0,56,8,0,0,56,8,0,0,56,8,0,0,56,8,0,0,56,8,0,0,58,8,0,0,62,8,0,0,62,8,0,0,62,8,0,0,64,8,0,0,64,8,0,0,70,8,0,0,70,8,0,0,72,8,0,0,72,8,0,0,72,8,0,0,74,8,0,0,78,8,0,0,80,8,0,0,82,8,0,0,82,8,0,0,82,8,0,0,82,8,0,0,82,8,0,0,82,8,0,0,84,8,0,0,86,8,0,0,86,8,0,0,86,8,0,0,86,8,0,0,86,8,0,0,86,8,0,0,88,8,0,0,90,8,0,0,92,8,0,0,92,8,0,0,94,8,0,0,96,8,0,0,96,8,0,0,96,8,0,0,96,8,0,0,96,8,0,0,98,8,0,0,98,8,0,0,100,8,0,0,100,8,0,0,100,8,0,0,102,8,0,0,106,8,0,0,106,8,0,0,106,8,0,0,108,8,0,0,108,8,0,0,110,8,0,0,112,8,0,0,114,8,0,0,114,8,0,0,116,8,0,0,116,8,0,0,116,8,0,0,116,8,0,0,116,8,0,0,118,8,0,0,122,8,0,0,122,8,0,0,122,8,0,0,122,8,0,0,122,8,0,0,122,8,0,0,122,8,0,0,124,8,0,0,124,8,0,0,124,8,0,0,124,8,0,0,124,8,0,0,128,8,0,0,128,8,0,0,138,8,0,0,138,8,0,0,140,8,0,0,142,8,0,0,144,8,0,0,148,8,0,0,154,8,0,0,154,8,0,0,154,8,0,0,154,8,0,0,154,8,0,0,154,8,0,0,154,8,0,0,154,8,0,0,154,8,0,0,156,8,0,0,156,8,0,0,156,8,0,0,156,8,0,0,160,8,0,0,160,8,0,0,162,8,0,0,164,8,0,0,164,8,0,0,166,8,0,0,166,8,0,0,170,8,0,0,170,8,0,0,170,8,0,0,172,8,0,0,172,8,0,0,172,8,0,0,172,8,0,0,176,8,0,0,176,8,0,0,178,8,0,0,178,8,0,0,180,8,0,0,182,8,0,0,184,8,0,0,184,8,0,0,184,8,0,0,186,8,0,0,186,8,0,0,186,8,0,0,188,8,0,0,190,8,0,0,190,8,0,0,190,8,0,0,190,8,0,0,190,8,0,0,190,8,0,0,192,8,0,0,194,8,0,0,198,8,0,0,198,8,0,0,200,8,0,0,200,8,0,0,200,8,0,0,200,8,0,0,200,8,0,0,202,8,0,0,206,8,0,0,206,8,0,0,208,8,0,0,210,8,0,0,210,8,0,0,212,8,0,0,212,8,0,0,212,8,0,0,212,8,0,0,212,8,0,0,212,8,0,0,216,8,0,0,220,8,0,0,222,8,0,0,224,8,0,0,224,8,0,0,226,8,0,0,228,8,0,0,228,8,0,0,232,8,0,0,234,8,0,0,234,8,0,0,234,8,0,0,236,8,0,0,238,8,0,0,238,8,0,0,238,8,0,0,240,8,0,0,240,8,0,0,240,8,0,0,242,8,0,0,242,8,0,0,242,8,0,0,242,8,0,0,244,8,0,0,248,8,0,0,248,8,0,0,250,8,0,0,252,8,0,0,252,8,0,0,252,8,0,0,254,8,0,0,2,9,0,0,2,9,0,0,6,9,0,0,8,9,0,0,8,9,0,0,8,9,0,0,8,9,0,0,8,9,0,0,8,9,0,0,8,9,0,0,10,9,0,0,10,9,0,0,10,9,0,0,10,9,0,0,12,9,0,0,12,9,0,0,12,9,0,0,14,9,0,0,14,9,0,0,16,9,0,0,16,9,0,0,16,9,0,0,16,9,0,0,16,9,0,0,20,9,0,0,22,9,0,0,24,9,0,0,28,9,0,0,28,9,0,0,28,9,0,0,30,9,0,0,32,9,0,0,34,9,0,0,34,9,0,0,34,9,0,0,36,9,0,0,38,9,0,0,38,9,0,0,42,9,0,0,42,9,0,0,46,9,0,0,54,9,0,0,54,9,0,0,56,9,0,0,56,9,0,0,56,9,0,0,56,9,0,0,58,9,0,0,58,9,0,0,60,9,0,0,62,9,0,0,62,9,0,0,64,9,0,0,64,9,0,0,68,9,0,0,68,9,0,0,68,9,0,0,72,9,0,0,74,9,0,0,74,9,0,0,76,9,0,0,78,9,0,0,80,9,0,0,80,9,0,0,82,9,0,0,82,9,0,0,84,9,0,0,84,9,0,0,86,9,0,0,90,9,0,0,92,9,0,0,92,9,0,0,92,9,0,0,92,9,0,0,94,9,0,0,96,9,0,0,98,9,0,0,100,9,0,0,100,9,0,0,100,9,0,0,102,9,0,0,102,9,0,0,102,9,0,0,102,9,0,0,102,9,0,0,106,9,0,0,106,9,0,0,106,9,0,0,106,9,0,0,108,9,0,0,110,9,0,0,112,9,0,0,112,9,0,0,114,9,0,0,114,9,0,0,114,9,0,0,114,9,0,0,116,9,0,0,116,9,0,0,118,9,0,0,118,9,0,0,120,9,0,0,122,9,0,0,122,9,0,0,124,9,0,0,124,9,0,0,124,9,0,0,124,9,0,0,124,9,0,0,124,9,0,0,124,9,0,0,126,9,0,0,126,9,0,0,126,9,0,0,128,9,0,0,132,9,0,0,134,9,0,0,134,9,0,0,138,9,0,0,146,9,0,0,146,9,0,0,148,9,0,0,148,9,0,0,150,9,0,0,152,9,0,0,152,9,0,0,154,9,0,0,156,9,0,0,156,9,0,0,158,9,0,0,158,9,0,0,158,9,0,0,162,9,0,0,164,9,0,0,164,9,0,0,166,9,0,0,168,9,0,0,168,9,0,0,170,9,0,0,170,9,0,0,170,9,0,0,170,9,0,0,172,9,0,0,174,9,0,0,176,9,0,0,176,9,0,0,176,9,0,0,176,9,0,0,176,9,0,0,178,9,0,0,178,9,0,0,178,9,0,0,178,9,0,0,178,9,0,0,180,9,0,0,180,9,0,0,180,9,0,0,182,9,0,0,182,9,0,0,182,9,0,0,184,9,0,0,184,9,0,0,184,9,0,0,186,9,0,0,186,9,0,0,190,9,0,0,192,9,0,0,194,9,0,0,194,9,0,0,196,9,0,0,202,9,0,0,202,9,0,0,202,9,0,0,202,9,0,0,204,9,0,0,204,9,0,0,204,9,0,0,204,9,0,0,204,9,0,0,206,9,0,0,206,9,0,0,206,9,0,0,208,9,0,0,210,9,0,0,210,9,0,0,210,9,0,0,214,9,0,0,216,9,0,0,218,9,0,0,218,9,0,0,220,9,0,0,224,9,0,0,224,9,0,0,226,9,0,0,228,9,0,0,228,9,0,0,228,9,0,0,228,9,0,0,228,9,0,0,228,9,0,0,230,9,0,0,232,9,0,0,232,9,0,0,236,9,0,0,236,9,0,0,236,9,0,0,240,9,0,0,240,9,0,0,242,9,0,0,242,9,0,0,242,9,0,0,242,9,0,0,242,9,0,0,242,9,0,0,242,9,0,0,242,9,0,0,242,9,0,0,242,9,0,0,242,9,0,0,244,9,0,0,244,9,0,0,244,9,0,0,244,9,0,0,244,9,0,0,244,9,0,0,246,9,0,0,248,9,0,0,250,9,0,0,250,9,0,0,250,9,0,0,250,9,0,0,252,9,0,0,2,10,0,0,2,10,0,0,2,10,0,0,4,10,0,0,6,10,0,0,6,10,0,0,6,10,0,0,8,10,0,0,8,10,0,0,10,10,0,0,14,10,0,0,14,10,0,0,14,10,0,0,14,10,0,0,16,10,0,0,16,10,0,0,16,10,0,0,16,10,0,0,18,10,0,0,20,10,0,0,20,10,0,0,20,10,0,0,22,10,0,0,22,10,0,0,22,10,0,0,24,10,0,0,24,10,0,0,24,10,0,0,26,10,0,0,26,10,0,0,28,10,0,0,30,10,0,0,32,10,0,0,32,10,0,0,32,10,0,0,36,10,0,0,36,10,0,0,38,10,0,0,42,10,0,0,42,10,0,0,42,10,0,0,46,10,0,0,46,10,0,0,48,10,0,0,48,10,0,0,48,10,0,0,50,10,0,0,50,10,0,0,52,10,0,0,54,10,0,0,54,10,0,0,56,10,0,0,62,10,0,0,64,10,0,0,66,10,0,0,66,10,0,0,70,10,0,0,72,10,0,0,72,10,0,0,72,10,0,0,72,10,0,0,74,10,0,0,74,10,0,0,76,10,0,0,78,10,0,0,82,10,0,0,82,10,0,0,82,10,0,0,82,10,0,0,84,10,0,0,86,10,0,0,88,10,0,0,88,10,0,0,88,10,0,0,90,10,0,0,92,10,0,0,92,10,0,0,94,10,0,0,94,10,0,0,94,10,0,0,98,10,0,0,100,10,0,0,100,10,0,0,100,10,0,0,100,10,0,0,100,10,0,0,100,10,0,0,102,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,106,10,0,0,108,10,0,0,112,10,0,0,112,10,0,0,114,10,0,0,116,10,0,0,118,10,0,0,120,10,0,0,120,10,0,0,120,10,0,0,120,10,0,0,122,10,0,0,122,10,0,0,122,10,0,0,124,10,0,0,124,10,0,0,124,10,0,0,124,10,0,0,126,10,0,0,126,10,0,0,126,10,0,0,126,10,0,0,126,10,0,0,126,10,0,0,126,10,0,0,128,10,0,0,128,10,0,0,130,10,0,0,132,10,0,0,132,10,0,0,132,10,0,0,132,10,0,0,132,10,0,0,134,10,0,0,134,10,0,0,134,10,0,0,134,10,0,0,134,10,0,0,136,10,0,0,136,10,0,0,136,10,0,0,138,10,0,0,138,10,0,0,140,10,0,0,140,10,0,0,142,10,0,0,144,10,0,0,144,10,0,0,146,10,0,0,150,10,0,0,152,10,0,0,154,10,0,0,156,10,0,0,156,10,0,0,156,10,0,0,156,10,0,0,156,10,0,0,156,10,0,0,160,10,0,0,160,10,0,0,160,10,0,0,162,10,0,0,162,10,0,0,162,10,0,0,162,10,0,0,162,10,0,0,162,10,0,0,164,10,0,0,164,10,0,0,166,10,0,0,166,10,0,0,166,10,0,0,166,10,0,0,166,10,0,0,166,10,0,0,166,10,0,0,166,10,0,0,168,10,0,0,168,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,170,10,0,0,174,10,0,0,174,10,0,0,174,10,0,0,174,10,0,0,174,10,0,0,176,10,0,0,178,10,0,0,178,10,0,0,194,10,0,0,196,10,0,0,198,10,0,0,198,10,0,0,200,10,0,0,202,10,0,0,202,10,0,0,204,10,0,0,206,10,0,0,206,10,0,0,206,10,0,0,206,10,0,0,206,10,0,0,208,10,0,0,210,10,0,0,212,10,0,0,212,10,0,0,212,10,0,0,212,10,0,0,212,10,0,0,214,10,0,0,216,10,0,0,216,10,0,0,218,10,0,0,218,10,0,0,220,10,0,0,222,10,0,0,224,10,0,0,226,10,0,0,228,10,0,0,232,10,0,0,232,10,0,0,234,10,0,0,234,10,0,0,234,10,0,0,238,10,0,0,240,10,0,0,240,10,0,0,240,10,0,0,242,10,0,0,246,10,0,0,246,10,0,0,246,10,0,0,248,10,0,0,248,10,0,0,248,10,0,0,248,10,0,0,248,10,0,0,248,10,0,0,248,10,0,0,248,10,0,0,248,10,0,0,248,10,0,0,250,10,0,0,252,10,0,0,254,10,0,0,254,10,0,0,0,11,0,0,2,11,0,0,4,11,0,0,6,11,0,0,8,11,0,0,8,11,0,0,8,11,0,0,10,11,0,0,10,11,0,0,10,11,0,0,12,11,0,0,12,11,0,0,12,11,0,0,16,11,0,0,18,11,0,0,18,11,0,0,18,11,0,0,22,11,0,0,22,11,0,0,24,11,0,0,28,11,0,0,30,11,0,0,32,11,0,0,32,11,0,0,32,11,0,0,36,11,0,0,36,11,0,0,36,11,0,0,36,11,0,0,40,11,0,0,40,11,0,0,40,11,0,0,42,11,0,0,42,11,0,0,42,11,0,0,44,11,0,0,46,11,0,0,48,11,0,0,48,11,0,0,48,11,0,0,50,11,0,0,52,11,0,0,52,11,0,0,52,11,0,0,58,11,0,0,58,11,0,0,58,11,0,0,60,11,0,0,60,11,0,0,60,11,0,0,62,11,0,0,64,11,0,0,64,11,0,0,64,11,0,0,68,11,0,0,70,11,0,0,70,11,0,0,70,11,0,0,70,11,0,0,70,11,0,0,72,11,0,0,72,11,0,0,74,11,0,0,78,11,0,0,80,11,0,0,80,11,0,0,80,11,0,0,84,11,0,0,84,11,0,0,86,11,0,0,86,11,0,0,88,11,0,0,90,11,0,0,90,11,0,0,90,11,0,0,90,11,0,0,90,11,0,0,90,11,0,0,92,11,0,0,92,11,0,0,92,11,0,0,92,11,0,0,92,11,0,0,94,11,0,0,96,11,0,0,96,11,0,0,96,11,0,0,98,11,0,0,98,11,0,0,102,11,0,0,102,11,0,0,102,11,0,0,104,11,0,0,110,11,0,0,110,11,0,0,110,11,0,0,110,11,0,0,112,11,0,0,112,11,0,0,114,11,0,0,114,11,0,0,116,11,0,0,116,11,0,0,116,11,0,0,118,11,0,0,118,11,0,0,118,11,0,0,118,11,0,0,120,11,0,0,124,11,0,0,124,11,0,0,124,11,0,0,124,11,0,0,124,11,0,0,124,11,0,0,124,11,0,0,126,11,0,0,126,11,0,0,128,11,0,0,128,11,0,0,132,11,0,0,136,11,0,0,136,11,0,0,136,11,0,0,136,11,0,0,136,11,0,0,138,11,0,0,140,11,0,0,142,11,0,0,142,11,0,0,142,11,0,0,142,11,0,0,148,11,0,0,148,11,0,0,148,11,0,0,150,11,0,0,150,11,0,0,150,11,0,0,150,11,0,0,150,11,0,0,150,11,0,0,150,11,0,0,150,11,0,0,150,11,0,0,152,11,0,0,156,11,0,0,156,11,0,0,156,11,0,0,158,11,0,0,160,11,0,0,162,11,0,0,164,11,0,0,164,11,0,0,164,11,0,0,164,11,0,0,164,11,0,0,164,11,0,0,164,11,0,0,166,11,0,0,168,11,0,0,168,11,0,0,172,11,0,0,172,11,0,0,172,11,0,0,174,11,0,0,176,11,0,0,180,11,0,0,180,11,0,0,184,11,0,0,186,11,0,0,188,11,0,0,190,11,0,0,190,11,0,0,192,11,0,0,198,11,0,0,198,11,0,0,202,11,0,0,202,11,0,0,204,11,0,0,204,11,0,0,204,11,0,0,204,11,0,0,204,11,0,0,204,11,0,0,208,11,0,0,210,11,0,0,212,11,0,0,212,11,0,0,214,11,0,0,214,11,0,0,216,11,0,0,218,11,0,0,218,11,0,0,220,11,0,0,220,11,0,0,220,11,0,0,222,11,0,0,224,11,0,0,228,11,0,0,230,11,0,0,230,11,0,0,230,11,0,0,230,11,0,0,232,11,0,0,232,11,0,0,232,11,0,0,232,11,0,0,234,11,0,0,234,11,0,0,234,11,0,0,234,11,0,0,236,11,0,0,236,11,0,0,238,11,0,0,238,11,0,0,238,11,0,0,238,11,0,0,238,11,0,0,242,11,0,0,244,11,0,0,244,11,0,0,246,11,0,0,246,11,0,0,248,11,0,0,248,11,0,0,250,11,0,0,250,11,0,0,250,11,0,0,254,11,0,0,0,12,0,0,2,12,0,0,4,12,0,0,6,12,0,0,6,12,0,0,6,12,0,0,6,12,0,0,8,12,0,0,8,12,0,0,10,12,0,0,10,12,0,0,10,12,0,0,12,12,0,0,12,12,0,0,14,12,0,0,14,12,0,0,14,12,0,0,16,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,20,12,0,0,20,12,0,0,20,12,0,0,20,12,0,0,22,12,0,0,22,12,0,0,22,12,0,0,24,12,0,0,24,12,0,0,24,12,0,0,24,12,0,0,26,12,0,0,28,12,0,0,28,12,0,0,34,12,0,0,34,12,0,0,34,12,0,0,34,12,0,0,36,12,0,0,38,12,0,0,40,12,0,0,42,12,0,0,44,12,0,0,46,12,0,0,46,12,0,0,46,12,0,0,46,12,0,0,46,12,0,0,46,12,0,0,52,12,0,0,54,12,0,0,56,12,0,0,56,12,0,0,56,12,0,0,58,12,0,0,60,12,0,0,60,12,0,0,60,12,0,0,60,12,0,0,62,12,0,0,64,12,0,0,66,12,0,0,66,12,0,0,66,12,0,0,66,12,0,0,68,12,0,0,68,12,0,0,70,12,0,0,70,12,0,0,70,12,0,0,70,12,0,0,70,12,0,0,70,12,0,0,70,12,0,0,70,12,0,0,70,12,0,0,70,12,0,0,72,12,0,0,72,12,0,0,74,12,0,0,76,12,0,0,78,12,0,0,80,12,0,0,80,12,0,0,84,12,0,0,84,12,0,0,88,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,94,12,0,0,94,12,0,0,94,12,0,0,94,12,0,0,94,12,0,0,98,12,0,0,98,12,0,0,98,12,0,0,100,12,0,0,102,12,0,0,102,12,0,0,104,12,0,0,104,12,0,0,106,12,0,0,106,12,0,0,108,12,0,0,110,12,0,0,110,12,0,0,110,12,0,0,110,12,0,0,110,12,0,0,112,12,0,0,112,12,0,0,112,12,0,0,112,12,0,0,112,12,0,0,114,12,0,0,116,12,0,0,116,12,0,0,116,12,0,0,118,12,0,0,120,12,0,0,120,12,0,0,124,12,0,0,124,12,0,0,124,12,0,0,126,12,0,0,126,12,0,0,126,12,0,0,126,12,0,0,126,12,0,0,126,12,0,0,126,12,0,0,130,12,0,0,130,12,0,0,132,12,0,0,134,12,0,0,134,12,0,0,134,12,0,0,138,12,0,0,138,12,0,0,138,12,0,0,138,12,0,0,138,12,0,0,138,12,0,0,138,12,0,0,138,12,0,0,138,12,0,0,138,12,0,0,140,12,0,0,140,12,0,0,146,12,0,0,146,12,0,0,146,12,0,0,146,12,0,0,146,12,0,0,146,12,0,0,146,12,0,0,146,12,0,0,146,12,0,0,146,12,0,0,152,12,0,0,152,12,0,0,152,12,0,0,152,12,0,0,152,12,0,0,152,12,0,0,152,12,0,0,152,12,0,0,154,12,0,0,156,12,0,0,158,12,0,0,158,12,0,0,158,12,0,0,158,12,0,0,160,12,0,0,160,12,0,0,162,12,0,0,164,12,0,0,164,12,0,0,168,12,0,0,168,12,0,0,168,12,0,0,168,12,0,0,168,12,0,0,168,12,0,0,168,12,0,0,168,12,0,0,168,12,0,0,168,12,0,0,170,12,0,0,170,12,0,0,174,12,0,0,174,12,0,0,176,12,0,0,176,12,0,0,176,12,0,0,176,12,0,0,176,12,0,0,180,12,0,0,180,12,0,0,180,12,0,0,182,12,0,0,182,12,0,0,184,12,0,0,186,12,0,0,186,12,0,0,188,12,0,0,188,12,0,0,188,12,0,0,188,12,0,0,190,12,0,0,194,12,0,0,194,12,0,0,196,12,0,0,198,12,0,0,198,12,0,0,198,12,0,0,198,12,0,0,198,12,0,0,200,12,0,0,202,12,0,0,202,12,0,0,202,12,0,0,202,12,0,0,202,12,0,0,204,12,0,0,208,12,0,0,208,12,0,0,208,12,0,0,208,12,0,0,208,12,0,0,208,12,0,0,208,12,0,0,210,12,0,0,210,12,0,0,210,12,0,0,214,12,0,0,216,12,0,0,216,12,0,0,216,12,0,0,216,12,0,0,216,12,0,0,216,12,0,0,216,12,0,0,216,12,0,0,216,12,0,0,222,12,0,0,226,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,234,12,0,0,236,12,0,0,238,12,0,0,238,12,0,0,238,12,0,0,238,12,0,0,238,12,0,0,34,13,0,0,34,13,0,0,34,13,0,0,34,13,0,0,34,13,0,0,34,13,0,0,36,13,0,0,38,13,0,0,38,13,0,0,40,13,0,0,40,13,0,0,40,13,0,0,40,13,0,0,42,13,0,0,44,13,0,0,46,13,0,0,46,13,0,0,46,13,0,0,46,13,0,0,46,13,0,0,46,13,0,0,46,13,0,0,46,13,0,0,46,13,0,0,48,13,0,0,48,13,0,0,54,13,0,0,54,13,0,0,54,13,0,0,56,13,0,0,56,13,0,0,56,13,0,0,56,13,0,0,60,13,0,0,62,13,0,0,64,13,0,0,64,13,0,0,64,13,0,0,64,13,0,0,64,13,0,0,66,13,0,0,66,13,0,0,66,13,0,0,66,13,0,0,66,13,0,0,68,13,0,0,68,13,0,0,68,13,0,0,68,13,0,0,70,13,0,0,72,13,0,0,74,13,0,0,76,13,0,0,76,13,0,0,78,13,0,0,78,13,0,0,78,13,0,0,80,13,0,0,80,13,0,0,80,13,0,0,80,13,0,0,84,13,0,0,86,13,0,0,86,13,0,0,86,13,0,0,86,13,0,0,88,13,0,0,88,13,0,0,92,13,0,0,92,13,0,0,94,13,0,0,96,13,0,0,96,13,0,0,96,13,0,0,96,13,0,0,96,13,0,0,98,13,0,0,100,13,0,0,100,13,0,0,100,13,0,0,100,13,0,0,106,13,0,0,106,13,0,0,108,13,0,0,108,13,0,0,108,13,0,0,108,13,0,0,108,13,0,0,110,13,0,0,112,13,0,0,112,13,0,0,114,13,0,0,116,13,0,0,118,13,0,0,120,13,0,0,120,13,0,0,124,13,0,0,124,13,0,0,124,13,0,0,124,13,0,0,124,13,0,0,128,13,0,0,128,13,0,0,128,13,0,0,128,13,0,0,130,13,0,0,130,13,0,0,130,13,0,0,132,13,0,0,134,13,0,0,134,13,0,0,134,13,0,0,134,13,0,0,134,13,0,0,134,13,0,0,134,13,0,0,134,13,0,0,134,13,0,0,134,13,0,0,136,13,0,0,136,13,0,0,136,13,0,0,140,13,0,0,142,13,0,0,142,13,0,0,144,13,0,0,144,13,0,0,146,13,0,0,148,13,0,0,148,13,0,0,148,13,0,0,148,13,0,0,150,13,0,0,150,13,0,0,152,13,0,0,152,13,0,0,154,13,0,0,154,13,0,0,156,13,0,0,156,13,0,0,158,13,0,0,160,13,0,0,162,13,0,0,162,13,0,0,162,13,0,0,162,13,0,0,166,13,0,0,170,13,0,0,170,13,0,0,170,13,0,0,172,13,0,0,172,13,0,0,172,13,0,0,174,13,0,0,174,13,0,0,176,13,0,0,176,13,0,0,178,13,0,0,178,13,0,0,178,13,0,0,178,13,0,0,178,13,0,0,178,13,0,0,180,13,0,0,180,13,0,0,180,13,0,0,180,13,0,0,180,13,0,0,180,13,0,0,180,13,0,0,182,13,0,0,182,13,0,0,182,13,0,0,182,13,0,0,184,13,0,0,184,13,0,0,184,13,0,0,184,13,0,0,184,13,0,0,184,13,0,0,184,13,0,0,186,13,0,0,186,13,0,0,188,13,0,0,192,13,0,0,192,13,0,0,192,13,0,0,194,13,0,0,194,13,0,0,194,13,0,0,196,13,0,0,196,13,0,0,196,13,0,0,196,13,0,0,196,13,0,0,198,13,0,0,198,13,0,0,200,13,0,0,200,13,0,0,202,13,0,0,204,13,0,0,208,13,0,0,208,13,0,0,210,13,0,0,210,13,0,0,212,13,0,0,212,13,0,0,214,13,0,0,214,13,0,0,214,13,0,0,214,13,0,0,214,13,0,0,214,13,0,0,214,13,0,0,218,13,0,0,220,13,0,0,220,13,0,0,220,13,0,0,220,13,0,0,222,13,0,0,222,13,0,0,222,13,0,0,222,13,0,0,222,13,0,0,224,13,0,0,226,13,0,0,226,13,0,0,228,13,0,0,232,13,0,0,234,13,0,0,234,13,0,0,236,13,0,0,236,13,0,0,236,13,0,0,238,13,0,0,238,13,0,0,240,13,0,0,240,13,0,0,240,13,0,0,240,13,0,0,242,13,0,0,242,13,0,0,242,13,0,0,244,13,0,0,244,13,0,0,246,13,0,0,250,13,0,0,254,13,0,0,254,13,0,0,2,14,0,0,4,14,0,0,6,14,0,0,6,14,0,0,6,14,0,0,6,14,0,0,6,14,0,0,8,14,0,0,8,14,0,0,8,14,0,0,10,14,0,0,10,14,0,0,10,14,0,0,10,14,0,0,10,14,0,0,14,14,0,0,16,14,0,0,16,14,0,0,18,14,0,0,18,14,0,0,20,14,0,0,22,14,0,0,22,14,0,0,22,14,0,0,24,14,0,0,24,14,0,0,24,14,0,0,26,14,0,0,26,14,0,0,26,14,0,0,28,14,0,0,28,14,0,0,28,14,0,0,30,14,0,0,30,14,0,0,30,14,0,0,30,14,0,0,32,14,0,0,32,14,0,0,32,14,0,0,32,14,0,0,32,14,0,0,32,14,0,0,32,14,0,0,34,14,0,0,36,14,0,0,38,14,0,0,38,14,0,0,40,14,0,0,40,14,0,0,42,14,0,0,42,14,0,0,42,14,0,0,42,14,0,0,44,14,0,0,46,14,0,0,46,14,0,0,46,14,0,0,46,14,0,0,46,14,0,0,50,14,0,0,56,14,0,0,56,14,0,0,56,14,0,0,56,14,0,0,56,14,0,0,56,14,0,0,58,14,0,0,62,14,0,0,62,14,0,0,62,14,0,0,62,14,0,0,62,14,0,0,64,14,0,0,66,14,0,0,66,14,0,0,68,14,0,0,68,14,0,0,68,14,0,0,68,14,0,0,68,14,0,0,72,14,0,0,72,14,0,0,74,14,0,0,74,14,0,0,76,14,0,0,76,14,0,0,76,14,0,0,76,14,0,0,76,14,0,0,76,14,0,0,76,14,0,0,76,14,0,0,76,14,0,0,76,14,0,0,76,14,0,0,76,14,0,0,82,14,0,0,82,14,0,0,82,14,0,0,86,14,0,0,86,14,0,0,86,14,0,0,86,14,0,0,86,14,0,0,88,14,0,0,88,14,0,0,90,14,0,0,92,14,0,0,94,14,0,0,96,14,0,0,100,14,0,0,102,14,0,0,102,14,0,0,102,14,0,0,104,14,0,0,104,14,0,0,104,14,0,0,104,14,0,0,104,14,0,0,104,14,0,0,104,14,0,0,104,14,0,0,106,14,0,0,108,14,0,0,110,14,0,0,110,14,0,0,110,14,0,0,112,14,0,0,112,14,0,0,114,14,0,0,116,14,0,0,118,14,0,0,120,14,0,0,122,14,0,0,126,14,0,0,126,14,0,0,126,14,0,0,128,14,0,0,132,14,0,0,132,14,0,0,134,14,0,0,136,14,0,0,136,14,0,0,136,14,0,0,136,14,0,0,136,14,0,0,136,14,0,0,138,14,0,0,138,14,0,0,140,14,0,0,140,14,0,0,142,14,0,0,146,14,0,0,146,14,0,0,148,14,0,0,148,14,0,0,148,14,0,0,150,14,0,0,152,14,0,0,152,14,0,0,152,14,0,0,152,14,0,0,156,14,0,0,156,14,0,0,158,14,0,0,158,14,0,0,162,14,0,0,162,14,0,0,168,14,0,0,172,14,0,0,172,14,0,0,172,14,0,0,174,14,0,0,174,14,0,0,174,14,0,0,176,14,0,0,176,14,0,0,178,14,0,0,178,14,0,0,178,14,0,0,180,14,0,0,180,14,0,0,182,14,0,0,182,14,0,0,186,14,0,0,186,14,0,0,186,14,0,0,186,14,0,0,186,14,0,0,186,14,0,0,186,14,0,0,186,14,0,0,186,14,0,0,186,14,0,0,188,14,0,0,190,14,0,0,190,14,0,0,190,14,0,0,192,14,0,0,192,14,0,0,196,14,0,0,196,14,0,0,196,14,0,0,196,14,0,0,196,14,0,0,198,14,0,0,198,14,0,0,198,14,0,0,200,14,0,0,200,14,0,0,204,14,0,0,204,14,0,0,204,14,0,0,204,14,0,0,204,14,0,0,204,14,0,0,204,14,0,0,206,14,0,0,206,14,0,0,206,14,0,0,208,14,0,0,208,14,0,0,208,14,0,0,210,14,0,0,214,14,0,0,214,14,0,0,214,14,0,0,216,14,0,0,216,14,0,0,216,14,0,0,216,14,0,0,216,14,0,0,216,14,0,0,216,14,0,0,218,14,0,0,218,14,0,0,218,14,0,0,218,14,0,0,218,14,0,0,218,14,0,0,220,14,0,0,220,14,0,0,224,14,0,0,224,14,0,0,224,14,0,0,224,14,0,0,226,14,0,0,226,14,0,0,228,14,0,0,228,14,0,0,228,14,0,0,230,14,0,0,232,14,0,0,234,14,0,0,238,14,0,0,240,14,0,0,240,14,0,0,240,14,0,0,242,14,0,0,248,14,0,0,250,14,0,0,252,14,0,0,252,14,0,0,252,14,0,0,252,14,0,0,254,14,0,0,0,15,0,0,0,15,0,0,2,15,0,0,4,15,0,0,4,15,0,0,6,15,0,0,6,15,0,0,8,15,0,0,8,15,0,0,8,15,0,0,8,15,0,0,8,15,0,0,8,15,0,0,10,15,0,0,12,15,0,0,12,15,0,0,14,15,0,0,14,15,0,0,14,15,0,0,16,15,0,0,22,15,0,0,24,15,0,0,26,15,0,0,32,15,0,0,32,15,0,0,32,15,0,0,32,15,0,0,34,15,0,0,36,15,0,0,40,15,0,0,44,15,0,0,46,15,0,0,52,15,0,0,52,15,0,0,56,15,0,0,56,15,0,0,56,15,0,0,60,15,0,0,60,15,0,0,62,15,0,0,64,15,0,0,66,15,0,0,66,15,0,0,68,15,0,0,70,15,0,0,72,15,0,0,72,15,0,0,76,15,0,0,76,15,0,0,76,15,0,0,76,15,0,0,76,15,0,0,76,15,0,0,78,15,0,0,78,15,0,0,78,15,0,0,78,15,0,0,78,15,0,0,80,15,0,0,80,15,0,0,80,15,0,0,80,15,0,0,86,15,0,0,86,15,0,0,88,15,0,0,88,15,0,0,88,15,0,0,90,15,0,0,90,15,0,0,90,15,0,0,92,15,0,0,96,15,0,0,98,15,0,0,98,15,0,0,98,15,0,0,98,15,0,0,100,15,0,0,104,15,0,0,106,15,0,0,108,15,0,0,108,15,0,0,108,15,0,0,108,15,0,0,108,15,0,0,112,15,0,0,112,15,0,0,112,15,0,0,112,15,0,0,112,15,0,0,112,15,0,0,112,15,0,0,112,15,0,0,112,15,0,0,114,15,0,0,114,15,0,0,114,15,0,0,114,15,0,0,118,15,0,0,120,15,0,0,120,15,0,0,120,15,0,0,120,15,0,0,120,15,0,0,120,15,0,0,120,15,0,0,122,15,0,0,122,15,0,0,124,15,0,0,124,15,0,0,124,15,0,0,124,15,0,0,130,15,0,0,134,15,0,0,134,15,0,0,134,15,0,0,134,15,0,0,136,15,0,0,138,15,0,0,138,15,0,0,140,15,0,0,140,15,0,0,140,15,0,0,142,15,0,0,142,15,0,0,142,15,0,0,142,15,0,0,142,15,0,0,142,15,0,0,146,15,0,0,146,15,0,0,146,15,0,0,146,15,0,0,148,15,0,0,148,15,0,0,150,15,0,0,150,15,0,0,150,15,0,0,150,15,0,0,152,15,0,0,154,15,0,0,154,15,0,0,156,15,0,0,160,15,0,0,160,15,0,0,160,15,0,0,164,15,0,0,164,15,0,0,166,15,0,0,166,15,0,0,166,15,0,0,166,15,0,0,168,15,0,0,170,15,0,0,170,15,0,0,170,15,0,0,170,15,0,0,174,15,0,0,176,15,0,0,176,15,0,0,176,15,0,0,176,15,0,0,176,15,0,0,176,15,0,0,176,15,0,0,176,15,0,0,176,15,0,0,176,15,0,0,176,15,0,0,178,15,0,0,180,15,0,0,182,15,0,0,182,15,0,0,184,15,0,0,186,15,0,0,188,15,0,0,188,15,0,0,188,15,0,0,188,15,0,0,192,15,0,0,192,15,0,0,194,15,0,0,194,15,0,0,194,15,0,0,194,15,0,0,196,15,0,0,198,15,0,0,198,15,0,0,200,15,0,0,200,15,0,0,200,15,0,0,200,15,0,0,200,15,0,0,200,15,0,0,202,15,0,0,202,15,0,0,202,15,0,0,204,15,0,0,204,15,0,0,206,15,0,0,208,15,0,0,208,15,0,0,210,15,0,0,212,15,0,0,212,15,0,0,212,15,0,0,214,15,0,0,214,15,0,0,216,15,0,0,216,15,0,0,216,15,0,0,218,15,0,0,220,15,0,0,220,15,0,0,220,15,0,0,220,15,0,0,220,15,0,0,222,15,0,0,222,15,0,0,222,15,0,0,222,15,0,0,222,15,0,0,224,15,0,0,224,15,0,0,228,15,0,0,230,15,0,0,230,15,0,0,232,15,0,0,232,15,0,0,232,15,0,0,234,15,0,0,236,15,0,0,236,15,0,0,236,15,0,0,238,15,0,0,242,15,0,0,242,15,0,0,242,15,0,0,242,15,0,0,244,15,0,0,244,15,0,0,244,15,0,0,244,15,0,0,246,15,0,0,246,15,0,0,248,15,0,0,250,15,0,0,250,15,0,0,250,15,0,0,250,15,0,0,252,15,0,0,254,15,0,0,254,15,0,0,254,15,0,0,254,15,0,0,254,15,0,0,0,16,0,0,0,16,0,0,4,16,0,0,4,16,0,0,6,16,0,0,12,16,0,0,14,16,0,0,14,16,0,0,16,16,0,0,16,16,0,0,16,16,0,0,20,16,0,0,20,16,0,0,22,16,0,0,22,16,0,0,22,16,0,0,22,16,0,0,24,16,0,0,24,16,0,0,24,16,0,0,32,16,0,0,34,16,0,0,40,16,0,0,40,16,0,0,44,16,0,0,46,16,0,0,50,16,0,0,50,16,0,0,52,16,0,0,52,16,0,0,52,16,0,0,54,16,0,0,54,16,0,0,54,16,0,0,56,16,0,0,56,16,0,0,56,16,0,0,56,16,0,0,56,16,0,0,58,16,0,0,58,16,0,0,58,16,0,0,60,16,0,0,62,16,0,0,64,16,0,0,66,16,0,0,66,16,0,0,66,16,0,0,66,16,0,0,66,16,0,0,66,16,0,0,66,16,0,0,68,16,0,0,68,16,0,0,68,16,0,0,72,16,0,0,76,16,0,0,76,16,0,0,76,16,0,0,78,16,0,0,82,16,0,0,84,16,0,0,86,16,0,0,90,16,0,0,90,16,0,0,90,16,0,0,90,16,0,0,90,16,0,0,92,16,0,0,92,16,0,0,92,16,0,0,94,16,0,0,94,16,0,0,100,16,0,0,104,16,0,0,104,16,0,0,104,16,0,0,104,16,0,0,104,16,0,0,104,16,0,0,108,16,0,0,108,16,0,0,108,16,0,0,110,16,0,0,110,16,0,0,110,16,0,0,114,16,0,0,114,16,0,0,114,16,0,0,116,16,0,0,116,16,0,0,118,16,0,0,118,16,0,0,118,16,0,0,120,16,0,0,120,16,0,0,120,16,0,0,120,16,0,0,120,16,0,0,120,16,0,0,122,16,0,0,122,16,0,0,122,16,0,0,122,16,0,0,124,16,0,0,128,16,0,0,128,16,0,0,128,16,0,0,128,16,0,0,130,16,0,0,130,16,0,0,130,16,0,0,132,16,0,0,132,16,0,0,136,16,0,0,136,16,0,0,136,16,0,0,138,16,0,0,138,16,0,0,140,16,0,0,142,16,0,0,144,16,0,0,144,16,0,0,144,16,0,0,146,16,0,0,146,16,0,0,148,16,0,0,150,16,0,0,150,16,0,0,152,16,0,0,152,16,0,0,154,16,0,0,154,16,0,0,156,16,0,0,156,16,0,0,162,16,0,0,164,16,0,0,164,16,0,0,164,16,0,0,166,16,0,0,170,16,0,0,170,16,0,0,174,16,0,0,176,16,0,0,178,16,0,0,182,16,0,0,182,16,0,0,182,16,0,0,182,16,0,0,184,16,0,0,184,16,0,0,186,16,0,0,186,16,0,0,186,16,0,0,186,16,0,0,186,16,0,0,186,16,0,0,186,16,0,0,188,16,0,0,192,16,0,0,192,16,0,0,192,16,0,0,192,16,0,0,192,16,0,0,192,16,0,0,192,16,0,0,194,16,0,0,194,16,0,0,194,16,0,0,194,16,0,0,194,16,0,0,194,16,0,0,194,16,0,0,194,16,0,0,194,16,0,0,194,16,0,0,196,16,0,0,198,16,0,0,198,16,0,0,198,16,0,0,198,16,0,0,200,16,0,0,206,16,0,0,208,16,0,0,208,16,0,0,208,16,0,0,208,16,0,0,208,16,0,0,208,16,0,0,208,16,0,0,210,16,0,0,212,16,0,0,214,16,0,0,214,16,0,0,214,16,0,0,214,16,0,0,214,16,0,0,214,16,0,0,216,16,0,0,220,16,0,0,222,16,0,0,222,16,0,0,222,16,0,0,222,16,0,0,222,16,0,0,222,16,0,0,222,16,0,0,222,16,0,0,224,16,0,0,224,16,0,0,226,16,0,0,228,16,0,0,230,16,0,0,230,16,0,0,230,16,0,0,230,16,0,0,230,16,0,0,230,16,0,0,230,16,0,0,230,16,0,0,232,16,0,0,232,16,0,0,234,16,0,0,234,16,0,0,234,16,0,0,234,16,0,0,234,16,0,0,236,16,0,0,236,16,0,0,238,16,0,0,238,16,0,0,238,16,0,0,238,16,0,0,240,16,0,0,240,16,0,0,242,16,0,0,242,16,0,0,242,16,0,0,242,16,0,0,244,16,0,0,252,16,0,0,252,16,0,0,252,16,0,0,252,16,0,0,252,16,0,0,252,16,0,0,252,16,0,0,0,17,0,0,2,17,0,0,2,17,0,0,2,17,0,0,4,17,0,0,6,17,0,0,8,17,0,0,8,17,0,0,8,17,0,0,10,17,0,0,12,17,0,0,12,17,0,0,12,17,0,0,12,17,0,0,14,17,0,0,16,17,0,0,16,17,0,0,16,17,0,0,16,17,0,0,18,17,0,0,18,17,0,0,18,17,0,0,18,17,0,0,22,17,0,0,24,17,0,0,24,17,0,0,24,17,0,0,24,17,0,0,24,17,0,0,26,17,0,0,26,17,0,0,26,17,0,0,26,17,0,0,26,17,0,0,26,17,0,0,26,17,0,0,26,17,0,0,28,17,0,0,28,17,0,0,30,17,0,0,32,17,0,0,34,17,0,0,34,17,0,0,36,17,0,0,42,17,0,0,42,17,0,0,42,17,0,0,44,17,0,0,48,17,0,0,52,17,0,0,54,17,0,0,54,17,0,0,54,17,0,0,54,17,0,0,54,17,0,0,56,17,0,0,58,17,0,0,58,17,0,0,60,17,0,0,62,17,0,0,62,17,0,0,62,17,0,0,62,17,0,0,64,17,0,0,66,17,0,0,66,17,0,0,66,17,0,0,66,17,0,0,68,17,0,0,68,17,0,0,70,17,0,0,74,17,0,0,74,17,0,0,74,17,0,0,76,17,0,0,76,17,0,0,76,17,0,0,78,17,0,0,78,17,0,0,78,17,0,0,78,17,0,0,78,17,0,0,82,17,0,0,84,17,0,0,84,17,0,0,86,17,0,0,88,17,0,0,88,17,0,0,90,17,0,0,90,17,0,0,90,17,0,0,90,17,0,0,90,17,0,0,94,17,0,0,96,17,0,0,98,17,0,0,98,17,0,0,100,17,0,0,100,17,0,0,102,17,0,0,102,17,0,0,102,17,0,0,106,17,0,0,106,17,0,0,106,17,0,0,108,17,0,0,110,17,0,0,112,17,0,0,112,17,0,0,112,17,0,0,114,17,0,0,114,17,0,0,114,17,0,0,116,17,0,0,118,17,0,0,120,17,0,0,122,17,0,0,122,17,0,0,124,17,0,0,124,17,0,0,124,17,0,0,124,17,0,0,124,17,0,0,124,17,0,0,124,17,0,0,126,17,0,0,126,17,0,0,128,17,0,0,130,17,0,0,130,17,0,0,130,17,0,0,132,17,0,0,132,17,0,0,132,17,0,0,134,17,0,0,136,17,0,0,136,17,0,0,138,17,0,0,138,17,0,0,142,17,0,0,142,17,0,0,142,17,0,0,142,17,0,0,142,17,0,0,148,17,0,0,150,17,0,0,150,17,0,0,152,17,0,0,152,17,0,0,154,17,0,0,154,17,0,0,156,17,0,0,160,17,0,0,160,17,0,0,160,17,0,0,160,17,0,0,160,17,0,0,164,17,0,0,164,17,0,0,164,17,0,0,164,17,0,0,166,17,0,0,166,17,0,0,166,17,0,0,166,17,0,0,168,17,0,0,168,17,0,0,168,17,0,0,168,17,0,0,168,17,0,0,170,17,0,0,170,17,0,0,170,17,0,0,170,17,0,0,170,17,0,0,172,17,0,0,172,17,0,0,172,17,0,0,178,17,0,0,178,17,0,0,180,17,0,0,180,17,0,0,184,17,0,0,184,17,0,0,184,17,0,0,184,17,0,0,186,17,0,0,186,17,0,0,188,17,0,0,190,17,0,0,190,17,0,0,190,17,0,0,192,17,0,0,194,17,0,0,196,17,0,0,198,17,0,0,198,17,0,0,200,17,0,0,202,17,0,0,202,17,0,0,202,17,0,0,202,17,0,0,204,17,0,0,206,17,0,0,208,17,0,0,208,17,0,0,208,17,0,0,208,17,0,0,208,17,0,0,208,17,0,0,208,17,0,0,208,17,0,0,210,17,0,0,210,17,0,0,210,17,0,0,212,17,0,0,214,17,0,0,216,17,0,0,216,17,0,0,218,17,0,0,222,17,0,0,222,17,0,0,224,17,0,0,226,17,0,0,230,17,0,0,232,17,0,0,234,17,0,0,234,17,0,0,236,17,0,0,236,17,0,0,238,17,0,0,240,17,0,0,242,17,0,0,244,17,0,0,244,17,0,0,246,17,0,0,246,17,0,0,246,17,0,0,248,17,0,0,248,17,0,0,250,17,0,0,250,17,0,0,252,17,0,0,254,17,0,0,0,18,0,0,2,18,0,0,4,18,0,0,4,18,0,0,8,18,0,0,8,18,0,0,8,18,0,0,8,18,0,0,8,18,0,0,8,18,0,0,10,18,0,0,10,18,0,0,10,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,18,18,0,0,18,18,0,0,20,18,0,0,26,18,0,0,28,18,0,0,28,18,0,0,28,18,0,0,30,18,0,0,30,18,0,0,30,18,0,0,32,18,0,0,32,18,0,0,34,18,0,0,36,18,0,0,36,18,0,0,36,18,0,0,36,18,0,0,38,18,0,0,44,18,0,0,44,18,0,0,44,18,0,0,44,18,0,0,44,18,0,0,46,18,0,0,46,18,0,0,46,18,0,0,46,18,0,0,46,18,0,0,46,18,0,0,46,18,0,0,46,18,0,0,46,18,0,0,46,18,0,0,46,18,0,0,46,18,0,0,46,18,0,0,50,18,0,0,50,18,0,0,50,18,0,0,52,18,0,0,52,18,0,0,52,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,58,18,0,0,62,18,0,0,62,18,0,0,66,18,0,0,66,18,0,0,68,18,0,0,68,18,0,0,68,18,0,0,70,18,0,0,70,18,0,0,72,18,0,0,72,18,0,0,72,18,0,0,72,18,0,0,72,18,0,0,72,18,0,0,72,18,0,0,74,18,0,0,78,18,0,0,78,18,0,0,78,18,0,0,78,18,0,0,78,18,0,0,78,18,0,0,78,18,0,0,78,18,0,0,78,18,0,0,84,18,0,0,86,18,0,0,88,18,0,0,88,18,0,0,90,18,0,0,90,18,0,0,90,18,0,0,90,18,0,0,90,18,0,0,92,18,0,0,92,18,0,0,94,18,0,0,94,18,0,0,98,18,0,0,98,18,0,0,98,18,0,0,104,18,0,0,106,18,0,0,106,18,0,0,106,18,0,0,106,18,0,0,108,18,0,0,108,18,0,0,110,18,0,0,112,18,0,0,114,18,0,0,114,18,0,0,116,18,0,0,116,18,0,0,116,18,0,0,118,18,0,0,118,18,0,0,120,18,0,0,120,18,0,0,120,18,0,0,122,18,0,0,124,18,0,0,128,18,0,0,128,18,0,0,130,18,0,0,132,18,0,0,132,18,0,0,132,18,0,0,134,18,0,0,134,18,0,0,134,18,0,0,134,18,0,0,136,18,0,0,136,18,0,0,136,18,0,0,138,18,0,0,138,18,0,0,138,18,0,0,140,18,0,0,140,18,0,0,140,18,0,0,140,18,0,0,142,18,0,0,142,18,0,0,142,18,0,0,142,18,0,0,144,18,0,0,146,18,0,0,148,18,0,0,150,18,0,0,150,18,0,0,150,18,0,0,150,18,0,0,150,18,0,0,150,18,0,0,150,18,0,0,152,18,0,0,152,18,0,0,152,18,0,0,152,18,0,0,152,18,0,0,152,18,0,0,152,18,0,0,152,18,0,0,152,18,0,0,152,18,0,0,154,18,0,0,156,18,0,0,158,18,0,0,158,18,0,0,158,18,0,0,158,18,0,0,160,18,0,0,160,18,0,0,160,18,0,0,162,18,0,0,164,18,0,0,166,18,0,0,168,18,0,0,168,18,0,0,168,18,0,0,170,18,0,0,172,18,0,0,176,18,0,0,178,18,0,0,180,18,0,0,180,18,0,0,180,18,0,0,184,18,0,0,184,18,0,0,184,18,0,0,184,18,0,0,184,18,0,0,184,18,0,0,184,18,0,0,186,18,0,0,186,18,0,0,188,18,0,0,188,18,0,0,188,18,0,0,190,18,0,0,192,18,0,0,192,18,0,0,192,18,0,0,192,18,0,0,196,18,0,0,198,18,0,0,198,18,0,0,198,18,0,0,200,18,0,0,200,18,0,0,200,18,0,0,204,18,0,0,204,18,0,0,206,18,0,0,206,18,0,0,206,18,0,0,208,18,0,0,210,18,0,0,212,18,0,0,212,18,0,0,212,18,0,0,212,18,0,0,214,18,0,0,216,18,0,0,216,18,0,0,216,18,0,0,218,18,0,0,218,18,0,0,222,18,0,0,224,18,0,0,224,18,0,0,226,18,0,0,226,18,0,0,226,18,0,0,226,18,0,0,228,18,0,0,228,18,0,0,230,18,0,0,230,18,0,0,230,18,0,0,230,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,232,18,0,0,234,18,0,0,236,18,0,0,240,18,0,0,244,18,0,0,244,18,0,0,246,18,0,0,246,18,0,0,246,18,0,0,246,18,0,0,246,18,0,0,246,18,0,0,246,18,0,0,248,18,0,0,0,19,0,0,2,19,0,0,2,19,0,0,2,19,0,0,2,19,0,0,2,19,0,0,2,19,0,0,6,19,0,0,8,19,0,0,8,19,0,0,8,19,0,0,12,19,0,0,12,19,0,0,12,19,0,0,14,19,0,0,14,19,0,0,14,19,0,0,14,19,0,0,14,19,0,0,14,19,0,0,14,19,0,0,14,19,0,0,18,19,0,0,22,19,0,0,24,19,0,0,24,19,0,0,24,19,0,0,28,19,0,0,28,19,0,0,32,19,0,0,36,19,0,0,36,19,0,0,40,19,0,0,42,19,0,0,44,19,0,0,46,19,0,0,48,19,0,0,48,19,0,0,48,19,0,0,48,19,0,0,48,19,0,0,50,19,0,0,50,19,0,0,52,19,0,0,54,19,0,0,54,19,0,0,56,19,0,0,58,19,0,0,58,19,0,0,58,19,0,0,60,19,0,0,62,19,0,0,62,19,0,0,66,19,0,0,66,19,0,0,68,19,0,0,70,19,0,0,70,19,0,0,70,19,0,0,70,19,0,0,72,19,0,0,74,19,0,0,74,19,0,0,76,19,0,0,76,19,0,0,78,19,0,0,80,19,0,0,80,19,0,0,80,19,0,0,82,19,0,0,82,19,0,0,82,19,0,0,82,19,0,0,82,19,0,0,84,19,0,0,86,19,0,0,88,19,0,0,88,19,0,0,90,19,0,0,92,19,0,0,94,19,0,0,96,19,0,0,96,19,0,0,98,19,0,0,102,19,0,0,102,19,0,0,104,19,0,0,106,19,0,0,108,19,0,0,108,19,0,0,110,19,0,0,112,19,0,0,114,19,0,0,114,19,0,0,120,19,0,0,120,19,0,0,120,19,0,0,120,19,0,0,122,19,0,0,122,19,0,0,126,19,0,0,126,19,0,0,128,19,0,0,130,19,0,0,130,19,0,0,130,19,0,0,130,19,0,0,132,19,0,0,134,19,0,0,134,19,0,0,134,19,0,0,136,19,0,0,136,19,0,0,136,19,0,0,136,19,0,0,136,19,0,0,136,19,0,0,136,19,0,0,136,19,0,0,136,19,0,0,138,19,0,0,138,19,0,0,140,19,0,0,142,19,0,0,150,19,0,0,150,19,0,0,154,19,0,0,154,19,0,0,154,19,0,0,158,19,0,0,164,19,0,0,164,19,0,0,164,19,0,0,164,19,0,0,168,19,0,0,170,19,0,0,172,19,0,0,176,19,0,0,180,19,0,0,180,19,0,0,180,19,0,0,182,19,0,0,184,19,0,0,184,19,0,0,184,19,0,0,184,19,0,0,184,19,0,0,186,19,0,0,188,19,0,0,188,19,0,0,188,19,0,0,188,19,0,0,188,19,0,0,188,19,0,0,188,19,0,0,190,19,0,0,190,19,0,0,190,19,0,0,192,19,0,0,196,19,0,0,196,19,0,0,200,19,0,0,200,19,0,0,200,19,0,0,200,19,0,0,200,19,0,0,202,19,0,0,204,19,0,0,206,19,0,0,208,19,0,0,208,19,0,0,212,19,0,0,214,19,0,0,214,19,0,0,214,19,0,0,218,19,0,0,220,19,0,0,222,19,0,0,222,19,0,0,222,19,0,0,222,19,0,0,222,19,0,0,224,19,0,0,224,19,0,0,224,19,0,0,224,19,0,0,224,19,0,0,228,19,0,0,228,19,0,0,228,19,0,0,228,19,0,0,236,19,0,0,236,19,0,0,236,19,0,0,238,19,0,0,240,19,0,0,242,19,0,0,242,19,0,0,242,19,0,0,242,19,0,0,244,19,0,0,244,19,0,0,244,19,0,0,244,19,0,0,246,19,0,0,248,19,0,0,250,19,0,0,252,19,0,0,254,19,0,0,0,20,0,0,2,20,0,0,2,20,0,0,4,20,0,0,6,20,0,0,12,20,0,0,12,20,0,0,16,20,0,0,18,20,0,0,20,20,0,0,20,20,0,0,20,20,0,0,20,20,0,0,22,20,0,0,26,20,0,0,28,20,0,0,28,20,0,0,30,20,0,0,30,20,0,0,32,20,0,0,32,20,0,0,32,20,0,0,32,20,0,0,32,20,0,0,32,20,0,0,32,20,0,0,32,20,0,0,32,20,0,0,32,20,0,0,32,20,0,0,34,20,0,0,36,20,0,0,36,20,0,0,36,20,0,0,40,20,0,0,40,20,0,0,40,20,0,0,40,20,0,0,44,20,0,0,46,20,0,0,46,20,0,0,46,20,0,0,46,20,0,0,48,20,0,0,50,20,0,0,52,20,0,0,52,20,0,0,52,20,0,0,52,20,0,0,52,20,0,0,54,20,0,0,54,20,0,0,56,20,0,0,56,20,0,0,56,20,0,0,58,20,0,0,58,20,0,0,58,20,0,0,60,20,0,0,60,20,0,0,62,20,0,0,62,20,0,0,64,20,0,0,68,20,0,0,70,20,0,0,72,20,0,0,76,20,0,0,80,20,0,0,80,20,0,0,82,20,0,0,84,20,0,0,88,20,0,0,90,20,0,0,92,20,0,0,92,20,0,0,92,20,0,0,96,20,0,0,96,20,0,0,96,20,0,0,98,20,0,0,102,20,0,0,102,20,0,0,102,20,0,0,102,20,0,0,102,20,0,0,102,20,0,0,102,20,0,0,104,20,0,0,106,20,0,0,106,20,0,0,106,20,0,0,110,20,0,0,110,20,0,0,110,20,0,0,112,20,0,0,114,20,0,0,114,20,0,0,114,20,0,0,116,20,0,0,116,20,0,0,116,20,0,0,118,20,0,0,122,20,0,0,122,20,0,0,122,20,0,0,122,20,0,0,124,20,0,0,124,20,0,0,124,20,0,0,126,20,0,0,128,20,0,0,128,20,0,0,128,20,0,0,128,20,0,0,130,20,0,0,130,20,0,0,130,20,0,0,130,20,0,0,132,20,0,0,132,20,0,0,136,20,0,0,136,20,0,0,136,20,0,0,136,20,0,0,136,20,0,0,136,20,0,0,136,20,0,0,136,20,0,0,138,20,0,0,138,20,0,0,140,20,0,0,140,20,0,0,142,20,0,0,142,20,0,0,144,20,0,0,144,20,0,0,144,20,0,0,146,20,0,0,146,20,0,0,146,20,0,0,148,20,0,0,150,20,0,0,150,20,0,0,150,20,0,0,152,20,0,0,156,20,0,0,158,20,0,0,162,20,0,0,162,20,0,0,164,20,0,0,168,20,0,0,168,20,0,0,168,20,0,0,168,20,0,0,170,20,0,0,172,20,0,0,172,20,0,0,172,20,0,0,172,20,0,0,172,20,0,0,172,20,0,0,172,20,0,0,174,20,0,0,174,20,0,0,174,20,0,0,174,20,0,0,176,20,0,0,176,20,0,0,176,20,0,0,176,20,0,0,176,20,0,0,176,20,0,0,178,20,0,0,180,20,0,0,182,20,0,0,184,20,0,0,184,20,0,0,186,20,0,0,186,20,0,0,186,20,0,0,186,20,0,0,186,20,0,0,188,20,0,0,188,20,0,0,188,20,0,0,192,20,0,0,194,20,0,0,194,20,0,0,194,20,0,0,194,20,0,0,194,20,0,0,196,20,0,0,196,20,0,0,196,20,0,0,198,20,0,0,198,20,0,0,200,20,0,0,200,20,0,0,200,20,0,0,200,20,0,0,202,20,0,0,202,20,0,0,204,20,0,0,204,20,0,0,204,20,0,0,204,20,0,0,204,20,0,0,204,20,0,0,206,20,0,0,206,20,0,0,206,20,0,0,208,20,0,0,210,20,0,0,210,20,0,0,210,20,0,0,214,20,0,0,214,20,0,0,216,20,0,0,216,20,0,0,216,20,0,0,216,20,0,0,216,20,0,0,218,20,0,0,220,20,0,0,222,20,0,0,224,20,0,0,224,20,0,0,224,20,0,0,224,20,0,0,224,20,0,0,226,20,0,0,226,20,0,0,228,20,0,0,228,20,0,0,228,20,0,0,230,20,0,0,230,20,0,0,230,20,0,0,232,20,0,0,232,20,0,0,232,20,0,0,232,20,0,0,232,20,0,0,234,20,0,0,234,20,0,0,240,20,0,0,240,20,0,0,240,20,0,0,240,20,0,0,240,20,0,0,240,20,0,0,240,20,0,0,240,20,0,0,240,20,0,0,242,20,0,0,242,20,0,0,244,20,0,0,246,20,0,0,248,20,0,0,250,20,0,0,250,20,0,0,250,20,0,0,250,20,0,0,252,20,0,0,254,20,0,0,2,21,0,0,2,21,0,0,4,21,0,0,4,21,0,0,6,21,0,0,6,21,0,0,10,21,0,0,10,21,0,0,12,21,0,0,14,21,0,0,16,21,0,0,18,21,0,0,18,21,0,0,20,21,0,0,20,21,0,0,20,21,0,0,22,21,0,0,22,21,0,0,22,21,0,0,24,21,0,0,26,21,0,0,28,21,0,0,28,21,0,0,28,21,0,0,28,21,0,0,28,21,0,0,28,21,0,0,30,21,0,0,32,21,0,0,32,21,0,0,34,21,0,0,34,21,0,0,34,21,0,0,34,21,0,0,38,21,0,0,40,21,0,0,40,21,0,0,40,21,0,0,40,21,0,0,42,21,0,0,42,21,0,0,44,21,0,0,46,21,0,0,46,21,0,0,48,21,0,0,50,21,0,0,52,21,0,0,52,21,0,0,52,21,0,0,54,21,0,0,56,21,0,0,60,21,0,0,62,21,0,0,64,21,0,0,64,21,0,0,64,21,0,0,64,21,0,0,68,21,0,0,72,21,0,0,76,21,0,0,78,21,0,0,78,21,0,0,78,21,0,0,80,21,0,0,80,21,0,0,80,21,0,0,82,21,0,0,82,21,0,0,84,21,0,0,86,21,0,0,88,21,0,0,88,21,0,0,88,21,0,0,92,21,0,0,92,21,0,0,92,21,0,0,92,21,0,0,94,21,0,0,94,21,0,0,96,21,0,0,102,21,0,0,102,21,0,0,102,21,0,0,106,21,0,0,106,21,0,0,108,21,0,0,110,21,0,0,112,21,0,0,112,21,0,0,114,21,0,0,116,21,0,0,118,21,0,0,120,21,0,0,120,21,0,0,120,21,0,0,120,21,0,0,122,21,0,0,124,21,0,0,124,21,0,0,124,21,0,0,124,21,0,0,124,21,0,0,124,21,0,0,126,21,0,0,126,21,0,0,126,21,0,0,126,21,0,0,128,21,0,0,128,21,0,0,128,21,0,0,130,21,0,0,130,21,0,0,130,21,0,0,130,21,0,0,132,21,0,0,132,21,0,0,132,21,0,0,132,21,0,0,132,21,0,0,132,21,0,0,134,21,0,0,134,21,0,0,134,21,0,0,134,21,0,0,136,21,0,0,138,21,0,0,138,21,0,0,140,21,0,0,140,21,0,0,140,21,0,0,140,21,0,0,140,21,0,0,142,21,0,0,142,21,0,0,144,21,0,0,144,21,0,0,144,21,0,0,146,21,0,0,148,21,0,0,148,21,0,0,150,21,0,0,150,21,0,0,150,21,0,0,150,21,0,0,150,21,0,0,150,21,0,0,152,21,0,0,152,21,0,0,152,21,0,0,152,21,0,0,152,21,0,0,154,21,0,0,154,21,0,0,154,21,0,0,160,21,0,0,160,21,0,0,162,21,0,0,166,21,0,0,166,21,0,0,166,21,0,0,168,21,0,0,168,21,0,0,170,21,0,0,174,21,0,0,174,21,0,0,180,21,0,0,182,21,0,0,182,21,0,0,182,21,0,0,182,21,0,0,184,21,0,0,184,21,0,0,184,21,0,0,186,21,0,0,186,21,0,0,186,21,0,0,188,21,0,0,188,21,0,0,190,21,0,0,190,21,0,0,190,21,0,0,190,21,0,0,190,21,0,0,190,21,0,0,190,21,0,0,192,21,0,0,194,21,0,0,198,21,0,0,198,21,0,0,198,21,0,0,198,21,0,0,198,21,0,0,198,21,0,0,202,21,0,0,204,21,0,0,206,21,0,0,208,21,0,0,212,21,0,0,212,21,0,0,212,21,0,0,212,21,0,0,214,21,0,0,214,21,0,0,216,21,0,0,216,21,0,0,220,21,0,0,220,21,0,0,222,21,0,0,222,21,0,0,224,21,0,0,226,21,0,0,226,21,0,0,226,21,0,0,226,21,0,0,226,21,0,0,226,21,0,0,230,21,0,0,232,21,0,0,234,21,0,0,234,21,0,0,234,21,0,0,236,21,0,0,236,21,0,0,236,21,0,0,238,21,0,0,238,21,0,0,238,21,0,0,238,21,0,0,238,21,0,0,238,21,0,0,242,21,0,0,242,21,0,0,242,21,0,0,242,21,0,0,242,21,0,0,244,21,0,0,246,21,0,0,246,21,0,0,246,21,0,0,246,21,0,0,248,21,0,0,250,21,0,0,250,21,0,0,250,21,0,0,252,21,0,0,252,21,0,0,252,21,0,0,252,21,0,0,252,21,0,0,252,21,0,0,252,21,0,0,252,21,0,0,252,21,0,0,252,21,0,0,252,21,0,0,252,21,0,0,254,21,0,0,254,21,0,0,254,21,0,0,254,21,0,0,0,22,0,0,0,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,4,22,0,0,4,22,0,0,8,22,0,0,8,22,0,0,10,22,0,0,12,22,0,0,14,22,0,0,16,22,0,0,18,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,22,22,0,0,22,22,0,0,22,22,0,0,24,22,0,0,24,22,0,0,24,22,0,0,26,22,0,0,26,22,0,0,28,22,0,0,28,22,0,0,30,22,0,0,42,22,0,0,42,22,0,0,42,22,0,0,42,22,0,0,42,22,0,0,42,22,0,0,46,22,0,0,46,22,0,0,46,22,0,0,48,22,0,0,52,22,0,0,52,22,0,0,54,22,0,0,54,22,0,0,62,22,0,0,64,22,0,0,66,22,0,0,66,22,0,0,88,22,0,0,90,22,0,0,92,22,0,0,92,22,0,0,92,22,0,0,94,22,0,0,94,22,0,0,94,22,0,0,94,22,0,0,94,22,0,0,98,22,0,0,100,22,0,0,102,22,0,0,102,22,0,0,104,22,0,0,106,22,0,0,106,22,0,0,112,22,0,0,112,22,0,0,114,22,0,0,114,22,0,0,114,22,0,0,114,22,0,0,114,22,0,0,114,22,0,0,114,22,0,0,114,22,0,0,114,22,0,0,114,22,0,0,116,22,0,0,116,22,0,0,118,22,0,0,122,22,0,0,122,22,0,0,122,22,0,0,122,22,0,0,124,22,0,0,126,22,0,0,126,22,0,0,126,22,0,0,126,22,0,0,126,22,0,0,128,22,0,0,130,22,0,0,132,22,0,0,134,22,0,0,136,22,0,0,136,22,0,0,136,22,0,0,138,22,0,0,138,22,0,0,140,22,0,0,142,22,0,0,142,22,0,0,142,22,0,0,148,22,0,0,148,22,0,0,148,22,0,0,148,22,0,0,148,22,0,0,148,22,0,0,148,22,0,0,150,22,0,0,150,22,0,0,150,22,0,0,152,22,0,0,152,22,0,0,152,22,0,0,152,22,0,0,154,22,0,0,156,22,0,0,160,22,0,0,160,22,0,0,160,22,0,0,162,22,0,0,162,22,0,0,162,22,0,0,162,22,0,0,166,22,0,0,166,22,0,0,170,22,0,0,170,22,0,0,170,22,0,0,170,22,0,0,170,22,0,0,172,22,0,0,174,22,0,0,174,22,0,0,176,22,0,0,180,22,0,0,180,22,0,0,182,22,0,0,182,22,0,0,182,22,0,0,184,22,0,0,184,22,0,0,184,22,0,0,186,22,0,0,186,22,0,0,186,22,0,0,186,22,0,0,188,22,0,0,188,22,0,0,188,22,0,0,190,22,0,0,190,22,0,0,190,22,0,0,190,22,0,0,190,22,0,0,192,22,0,0,192,22,0,0,192,22,0,0,196,22,0,0,200,22,0,0,200,22,0,0,200,22,0,0,200,22,0,0,202,22,0,0,202,22,0,0,202,22,0,0,204,22,0,0,204,22,0,0,204,22,0,0,204,22,0,0,212,22,0,0,212,22,0,0,214,22,0,0,214,22,0,0,214,22,0,0,216,22,0,0,216,22,0,0,218,22,0,0,220,22,0,0,220,22,0,0,220,22,0,0,222,22,0,0,222,22,0,0,222,22,0,0,222,22,0,0,224,22,0,0,224,22,0,0,224,22,0,0,224,22,0,0,224,22,0,0,224,22,0,0,224,22,0,0,224,22,0,0,224,22,0,0,224,22,0,0,224,22,0,0,224,22,0,0,226,22,0,0,226,22,0,0,226,22,0,0,230,22,0,0,230,22,0,0,230,22,0,0,230,22,0,0,230,22,0,0,232,22,0,0,232,22,0,0,234,22,0,0,236,22,0,0,236,22,0,0,238,22,0,0,240,22,0,0,242,22,0,0,244,22,0,0,244,22,0,0,246,22,0,0,246,22,0,0,246,22,0,0,246,22,0,0,248,22,0,0,250,22,0,0,250,22,0,0,252,22,0,0,252,22,0,0,252,22,0,0,254,22,0,0,0,23,0,0,2,23,0,0,4,23,0,0,4,23,0,0,6,23,0,0,6,23,0,0,10,23,0,0,10,23,0,0,10,23,0,0,12,23,0,0,12,23,0,0,12,23,0,0,14,23,0,0,14,23,0,0,16,23,0,0,16,23,0,0,18,23,0,0,20,23,0,0,20,23,0,0,20,23,0,0,22,23,0,0,22,23,0,0,22,23,0,0,22,23,0,0,22,23,0,0,24,23,0,0,24,23,0,0,26,23,0,0,28,23,0,0,28,23,0,0,28,23,0,0,30,23,0,0,30,23,0,0,36,23,0,0,40,23,0,0,40,23,0,0,40,23,0,0,40,23,0,0,40,23,0,0,44,23,0,0,44,23,0,0,44,23,0,0,44,23,0,0,44,23,0,0,44,23,0,0,46,23,0,0,48,23,0,0,48,23,0,0,48,23,0,0,48,23,0,0,48,23,0,0,50,23,0,0,52,23,0,0,52,23,0,0,56,23,0,0,58,23,0,0,58,23,0,0,58,23,0,0,58,23,0,0,58,23,0,0,58,23,0,0,58,23,0,0,58,23,0,0,60,23,0,0,60,23,0,0,60,23,0,0,60,23,0,0,62,23,0,0,62,23,0,0,68,23,0,0,70,23,0,0,70,23,0,0,70,23,0,0,70,23,0,0,72,23,0,0,72,23,0,0,72,23,0,0,72,23,0,0,76,23,0,0,76,23,0,0,76,23,0,0,76,23,0,0,78,23,0,0,78,23,0,0,78,23,0,0,78,23,0,0,80,23,0,0,80,23,0,0,82,23,0,0,84,23,0,0,86,23,0,0,86,23,0,0,86,23,0,0,86,23,0,0,86,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,92,23,0,0,94,23,0,0,94,23,0,0,96,23,0,0,98,23,0,0,100,23,0,0,102,23,0,0,102,23,0,0,102,23,0,0,108,23,0,0,108,23,0,0,110,23,0,0,110,23,0,0,110,23,0,0,112,23,0,0,112,23,0,0,112,23,0,0,112,23,0,0,112,23,0,0,112,23,0,0,112,23,0,0,114,23,0,0,114,23,0,0,114,23,0,0,114,23,0,0,114,23,0,0,114,23,0,0,114,23,0,0,114,23,0,0,120,23,0,0,120,23,0,0,122,23,0,0,124,23,0,0,126,23,0,0,126,23,0,0,126,23,0,0,130,23,0,0,130,23,0,0,130,23,0,0,132,23,0,0,134,23,0,0,138,23,0,0,138,23,0,0,138,23,0,0,138,23,0,0,138,23,0,0,140,23,0,0,140,23,0,0,140,23,0,0,142,23,0,0,142,23,0,0,142,23,0,0,142,23,0,0,146,23,0,0,146,23,0,0,150,23,0,0,150,23,0,0,152,23,0,0,152,23,0,0,152,23,0,0,152,23,0,0,152,23,0,0,156,23,0,0,160,23,0,0,162,23,0,0,162,23,0,0,162,23,0,0,164,23,0,0,168,23,0,0,168,23,0,0,170,23,0,0,170,23,0,0,172,23,0,0,172,23,0,0,172,23,0,0,172,23,0,0,176,23,0,0,176,23,0,0,180,23,0,0,184,23,0,0,184,23,0,0,184,23,0,0,184,23,0,0,184,23,0,0,186,23,0,0,186,23,0,0,186,23,0,0,186,23,0,0,188,23,0,0,190,23,0,0,190,23,0,0,194,23,0,0,194,23,0,0,194,23,0,0,194,23,0,0,194,23,0,0,194,23,0,0,196,23,0,0,196,23,0,0,196,23,0,0,196,23,0,0,196,23,0,0,196,23,0,0,196,23,0,0,196,23,0,0,196,23,0,0,198,23,0,0,200,23,0,0,202,23,0,0,204,23,0,0,206,23,0,0,208,23,0,0,208,23,0,0,208,23,0,0,208,23,0,0,208,23,0,0,208,23,0,0,208,23,0,0,210,23,0,0,210,23,0,0,210,23,0,0,210,23,0,0,210,23,0,0,210,23,0,0,210,23,0,0,212,23,0,0,214,23,0,0,214,23,0,0,214,23,0,0,218,23,0,0,218,23,0,0,218,23,0,0,218,23,0,0,218,23,0,0,218,23,0,0,218,23,0,0,218,23,0,0,220,23,0,0,220,23,0,0,220,23,0,0,220,23,0,0,222,23,0,0,222,23,0,0,224,23,0,0,228,23,0,0,228,23,0,0,230,23,0,0,230,23,0,0,230,23,0,0,234,23,0,0,234,23,0,0,234,23,0,0,236,23,0,0,236,23,0,0,236,23,0,0,236,23,0,0,236,23,0,0,240,23,0,0,242,23,0,0,242,23,0,0,242,23,0,0,244,23,0,0,244,23,0,0,244,23,0,0,246,23,0,0,246,23,0,0,246,23,0,0,246,23,0,0,246,23,0,0,246,23,0,0,248,23,0,0,250,23,0,0,250,23,0,0,252,23,0,0,252,23,0,0,254,23,0,0,0,24,0,0,0,24,0,0,0,24,0,0,2,24,0,0,4,24,0,0,8,24,0,0,10,24,0,0,12,24,0,0,14,24,0,0,14,24,0,0,14,24,0,0,14,24,0,0,14,24,0,0,14,24,0,0,14,24,0,0,14,24,0,0,16,24,0,0,18,24,0,0,20,24,0,0,22,24,0,0,22,24,0,0,24,24,0,0,24,24,0,0,24,24,0,0,24,24,0,0,24,24,0,0,26,24,0,0,26,24,0,0,28,24,0,0,28,24,0,0,30,24,0,0,30,24,0,0,32,24,0,0,34,24,0,0,34,24,0,0,34,24,0,0,34,24,0,0,36,24,0,0,38,24,0,0,38,24,0,0,40,24,0,0,40,24,0,0,40,24,0,0,40,24,0,0,40,24,0,0,40,24,0,0,42,24,0,0,42,24,0,0,42,24,0,0,42,24,0,0,42,24,0,0,42,24,0,0,42,24,0,0,42,24,0,0,42,24,0,0,42,24,0,0,42,24,0,0,42,24,0,0,42,24,0,0,42,24,0,0,42,24,0,0,46,24,0,0,50,24,0,0,50,24,0,0,50,24,0,0,52,24,0,0,58,24,0,0,60,24,0,0,60,24,0,0,62,24,0,0,62,24,0,0,62,24,0,0,62,24,0,0,64,24,0,0,68,24,0,0,68,24,0,0,68,24,0,0,68,24,0,0,68,24,0,0,70,24,0,0,72,24,0,0,72,24,0,0,72,24,0,0,76,24,0,0,76,24,0,0,76,24,0,0,80,24,0,0,80,24,0,0,80,24,0,0,80,24,0,0,82,24,0,0,82,24,0,0,82,24,0,0,82,24,0,0,84,24,0,0,84,24,0,0,84,24,0,0,90,24,0,0,90,24,0,0,90,24,0,0,94,24,0,0,96,24,0,0,98,24,0,0,98,24,0,0,98,24,0,0,98,24,0,0,98,24,0,0,102,24,0,0,104,24,0,0,104,24,0,0,108,24,0,0,110,24,0,0,112,24,0,0,112,24,0,0,112,24,0,0,114,24,0,0,116,24,0,0,118,24,0,0,120,24,0,0,122,24,0,0,124,24,0,0,126,24,0,0,128,24,0,0,130,24,0,0,130,24,0,0,130,24,0,0,130,24,0,0,130,24,0,0,132,24,0,0,132,24,0,0,134,24,0,0,136,24,0,0,136,24,0,0,136,24,0,0,136,24,0,0,136,24,0,0,136,24,0,0,138,24,0,0,138,24,0,0,138,24,0,0,140,24,0,0,140,24,0,0,140,24,0,0,140,24,0,0,140,24,0,0,140,24,0,0,144,24,0,0,144,24,0,0,148,24,0,0,148,24,0,0,148,24,0,0,150,24,0,0,150,24,0,0,150,24,0,0,150,24,0,0,150,24,0,0,150,24,0,0,150,24,0,0,150,24,0,0,150,24,0,0,150,24,0,0,150,24,0,0,154,24,0,0,154,24,0,0,154,24,0,0,156,24,0,0,158,24,0,0,158,24,0,0,158,24,0,0,160,24,0,0,164,24,0,0,164,24,0,0,166,24,0,0,166,24,0,0,166,24,0,0,166,24,0,0,166,24,0,0,166,24,0,0,166,24,0,0,166,24,0,0,170,24,0,0,170,24,0,0,170,24,0,0,170,24,0,0,170,24,0,0,170,24,0,0,170,24,0,0,170,24,0,0,170,24,0,0,170,24,0,0,170,24,0,0,172,24,0,0,172,24,0,0,172,24,0,0,174,24,0,0,178,24,0,0,178,24,0,0,178,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,184,24,0,0,184,24,0,0,188,24,0,0,188,24,0,0,188,24,0,0,188,24,0,0,188,24,0,0,188,24,0,0,190,24,0,0,192,24,0,0,192,24,0,0,192,24,0,0,198,24,0,0,200,24,0,0,202,24,0,0,202,24,0,0,202,24,0,0,204,24,0,0,204,24,0,0,204,24,0,0,204,24,0,0,206,24,0,0,206,24,0,0,206,24,0,0,206,24,0,0,206,24,0,0,206,24,0,0,206,24,0,0,206,24,0,0,206,24,0,0,206,24,0,0,208,24,0,0,208,24,0,0,208,24,0,0,208,24,0,0,210,24,0,0,210,24,0,0,210,24,0,0,212,24,0,0,212,24,0,0,216,24,0,0,216,24,0,0,216,24,0,0,218,24,0,0,218,24,0,0,220,24,0,0,220,24,0,0,220,24,0,0,222,24,0,0,222,24,0,0,222,24,0,0,222,24,0,0,222,24,0,0,222,24,0,0,224,24,0,0,224,24,0,0,224,24,0,0,226,24,0,0,226,24,0,0,228,24,0,0,230,24,0,0,232,24,0,0,234,24,0,0,236,24,0,0,236,24,0,0,236,24,0,0,238,24,0,0,238,24,0,0,244,24,0,0,244,24,0,0,244,24,0,0,244,24,0,0,248,24,0,0,248,24,0,0,248,24,0,0,248,24,0,0,250,24,0,0,254,24,0,0,254,24,0,0,6,25,0,0,8,25,0,0,12,25,0,0,14,25,0,0,14,25,0,0,14,25,0,0,16,25,0,0,16,25,0,0,18,25,0,0,20,25,0,0,22,25,0,0,22,25,0,0,22,25,0,0,22,25,0,0,24,25,0,0,28,25,0,0,30,25,0,0,30,25,0,0,34,25,0,0,34,25,0,0,34,25,0,0,34,25,0,0,36,25,0,0,38,25,0,0,38,25,0,0,38,25,0,0,38,25,0,0,38,25,0,0,38,25,0,0,38,25,0,0,40,25,0,0,40,25,0,0,40,25,0,0,40,25,0,0,40,25,0,0,40,25,0,0,42,25,0,0,42,25,0,0,42,25,0,0,42,25,0,0,42,25,0,0,42,25,0,0,42,25,0,0,46,25,0,0,46,25,0,0,46,25,0,0,48,25,0,0,48,25,0,0,48,25,0,0,50,25,0,0,50,25,0,0,50,25,0,0,52,25,0,0,52,25,0,0,54,25,0,0,56,25,0,0,58,25,0,0,58,25,0,0,62,25,0,0,66,25,0,0,66,25,0,0,66,25,0,0,66,25,0,0,66,25,0,0,66,25,0,0,68,25,0,0,68,25,0,0,68,25,0,0,68,25,0,0,70,25,0,0,72,25,0,0,72,25,0,0,74,25,0,0,76,25,0,0,76,25,0,0,76,25,0,0,76,25,0,0,76,25,0,0,76,25,0,0,82,25,0,0,84,25,0,0,84,25,0,0,84,25,0,0,84,25,0,0,84,25,0,0,88,25,0,0,88,25,0,0,88,25,0,0,90,25,0,0,90,25,0,0,90,25,0,0,92,25,0,0,92,25,0,0,92,25,0,0,94,25,0,0,96,25,0,0,98,25,0,0,100,25,0,0,100,25,0,0,100,25,0,0,100,25,0,0,100,25,0,0,100,25,0,0,102,25,0,0,102,25,0,0,102,25,0,0,104,25,0,0,104,25,0,0,106,25,0,0,112,25,0,0,114,25,0,0,114,25,0,0,116,25,0,0,116,25,0,0,116,25,0,0,116,25,0,0,116,25,0,0,118,25,0,0,118,25,0,0,118,25,0,0,118,25,0,0,118,25,0,0,120,25,0,0,120,25,0,0,120,25,0,0,120,25,0,0,120,25,0,0,120,25,0,0,122,25,0,0,122,25,0,0,126,25,0,0,126,25,0,0,128,25,0,0,130,25,0,0,134,25,0,0,136,25,0,0,136,25,0,0,136,25,0,0,136,25,0,0,136,25,0,0,136,25,0,0,138,25,0,0,138,25,0,0,140,25,0,0,140,25,0,0,140,25,0,0,140,25,0,0,142,25,0,0,142,25,0,0,142,25,0,0,142,25,0,0,144,25,0,0,144,25,0,0,144,25,0,0,146,25,0,0,146,25,0,0,146,25,0,0,146,25,0,0,146,25,0,0,146,25,0,0,146,25,0,0,150,25,0,0,152,25,0,0,152,25,0,0,154,25,0,0,156,25,0,0,156,25,0,0,158,25,0,0,158,25,0,0,158,25,0,0,158,25,0,0,158,25,0,0,158,25,0,0,158,25,0,0,158,25,0,0,160,25,0,0,160,25,0,0,162,25,0,0,162,25,0,0,166,25,0,0,168,25,0,0,168,25,0,0,168,25,0,0,170,25,0,0,172,25,0,0,172,25,0,0,172,25,0,0,172,25,0,0,172,25,0,0,172,25,0,0,176,25,0,0,176,25,0,0,176,25,0,0,178,25,0,0,180,25,0,0,182,25,0,0,182,25,0,0,184,25,0,0,186,25,0,0,186,25,0,0,186,25,0,0,188,25,0,0,188,25,0,0,188,25,0,0,188,25,0,0,188,25,0,0,190,25,0,0,190,25,0,0,192,25,0,0,192,25,0,0,192,25,0,0,192,25,0,0,196,25,0,0,198,25,0,0,198,25,0,0,198,25,0,0,200,25,0,0,200,25,0,0,202,25,0,0,202,25,0,0,202,25,0,0,202,25,0,0,202,25,0,0,204,25,0,0,208,25,0,0,210,25,0,0,212,25,0,0,212,25,0,0,212,25,0,0,212,25,0,0,212,25,0,0,212,25,0,0,212,25,0,0,212,25,0,0,212,25,0,0,212,25,0,0,218,25,0,0,220,25,0,0,222,25,0,0,222,25,0,0,222,25,0,0,224,25,0,0,224,25,0,0,226,25,0,0,226,25,0,0,228,25,0,0,230,25,0,0,232,25,0,0,234,25,0,0,234,25,0,0,236,25,0,0,236,25,0,0,238,25,0,0,240,25,0,0,240,25,0,0,240,25,0,0,240,25,0,0,242,25,0,0,242,25,0,0,242,25,0,0,244,25,0,0,244,25,0,0,244,25,0,0,244,25,0,0,250,25,0,0,252,25,0,0,254,25,0,0,254,25,0,0,0,26,0,0,2,26,0,0,2,26,0,0,6,26,0,0,8,26,0,0,12,26,0,0,12,26,0,0,12,26,0,0,14,26,0,0,14,26,0,0,14,26,0,0,18,26,0,0,18,26,0,0,20,26,0,0,20,26,0,0,22,26,0,0,26,26,0,0,30,26,0,0,34,26,0,0,36,26,0,0,36,26,0,0,36,26,0,0,36,26,0,0,36,26,0,0,36,26,0,0,40,26,0,0,40,26,0,0,40,26,0,0,42,26,0,0,44,26,0,0,44,26,0,0,46,26,0,0,46,26,0,0,50,26,0,0,52,26,0,0,52,26,0,0,52,26,0,0,52,26,0,0,54,26,0,0,54,26,0,0,54,26,0,0,54,26,0,0,54,26,0,0,54,26,0,0,56,26,0,0,56,26,0,0,56,26,0,0,58,26,0,0,60,26,0,0,60,26,0,0,62,26,0,0,68,26,0,0,68,26,0,0,68,26,0,0,68,26,0,0,68,26,0,0,68,26,0,0,68,26,0,0,70,26,0,0,70,26,0,0,70,26,0,0,70,26,0,0,70,26,0,0,74,26,0,0,74,26,0,0,76,26,0,0,76,26,0,0,76,26,0,0,76,26,0,0,76,26,0,0,78,26,0,0,80,26,0,0,82,26,0,0,82,26,0,0,84,26,0,0,84,26,0,0,84,26,0,0,86,26,0,0,88,26,0,0,90,26,0,0,92,26,0,0,92,26,0,0,92,26,0,0,92,26,0,0,92,26,0,0,92,26,0,0,92,26,0,0,92,26,0,0,94,26,0,0,96,26,0,0,96,26,0,0,100,26,0,0,100,26,0,0,100,26,0,0,106,26,0,0,108,26,0,0,108,26,0,0,108,26,0,0,110,26,0,0,114,26,0,0,118,26,0,0,118,26,0,0,118,26,0,0,120,26,0,0,120,26,0,0,122,26,0,0,122,26,0,0,122,26,0,0,122,26,0,0,124,26,0,0,128,26,0,0,128,26,0,0,130,26,0,0,130,26,0,0,130,26,0,0,130,26,0,0,130,26,0,0,132,26,0,0,134,26,0,0,136,26,0,0,136,26,0,0,144,26,0,0,144,26,0,0,148,26,0,0,150,26,0,0,152,26,0,0,152,26,0,0,152,26,0,0,152,26,0,0,152,26,0,0,154,26,0,0,154,26,0,0,154,26,0,0,154,26,0,0,154,26,0,0,156,26,0,0,156,26,0,0,158,26,0,0,158,26,0,0,164,26,0,0,166,26,0,0,166,26,0,0,168,26,0,0,168,26,0,0,168,26,0,0,168,26,0,0,168,26,0,0,170,26,0,0,172,26,0,0,172,26,0,0,172,26,0,0,174,26,0,0,174,26,0,0,176,26,0,0,180,26,0,0,180,26,0,0,180,26,0,0,182,26,0,0,182,26,0,0,182,26,0,0,184,26,0,0,184,26,0,0,184,26,0,0,184,26,0,0,184,26,0,0,184,26,0,0,184,26,0,0,186,26,0,0,186,26,0,0,188,26,0,0,188,26,0,0,190,26,0,0,190,26,0,0,192,26,0,0,192,26,0,0,196,26,0,0,198,26,0,0,200,26,0,0,200,26,0,0,200,26,0,0,200,26,0,0,200,26,0,0,202,26,0,0,204,26,0,0,206,26,0,0,208,26,0,0,212,26,0,0,214,26,0,0,214,26,0,0,216,26,0,0,220,26,0,0,220,26,0,0,222,26,0,0,222,26,0,0,224,26,0,0,224,26,0,0,224,26,0,0,226,26,0,0,226,26,0,0,228,26,0,0,228,26,0,0,230,26,0,0,230,26,0,0,230,26,0,0,230,26,0,0,232,26,0,0,234,26,0,0,238,26,0,0,240,26,0,0,240,26,0,0,240,26,0,0,240,26,0,0,240,26,0,0,244,26,0,0,244,26,0,0,244,26,0,0,244,26,0,0,244,26,0,0,244,26,0,0,246,26,0,0,248,26,0,0,250,26,0,0,250,26,0,0,252,26,0,0,254,26,0,0,254,26,0,0,254,26,0,0,254,26,0,0,0,27,0,0,2,27,0,0,4,27,0,0,4,27,0,0,4,27,0,0,6,27,0,0,6,27,0,0,6,27,0,0,6,27,0,0,6,27,0,0,6,27,0,0,6,27,0,0,6,27,0,0,6,27,0,0,6,27,0,0,6,27,0,0,8,27,0,0,8,27,0,0,12,27,0,0,14,27,0,0,16,27,0,0,16,27,0,0,18,27,0,0,20,27,0,0,22,27,0,0,22,27,0,0,22,27,0,0,24,27,0,0,26,27,0,0,26,27,0,0,26,27,0,0,26,27,0,0,26,27,0,0,26,27,0,0,26,27,0,0,26,27,0,0,26,27,0,0,30,27,0,0,30,27,0,0,30,27,0,0,30,27,0,0,32,27,0,0,36,27,0,0,36,27,0,0,38,27,0,0,38,27,0,0,38,27,0,0,38,27,0,0,38,27,0,0,40,27,0,0,42,27,0,0,42,27,0,0,44,27,0,0,46,27,0,0,52,27,0,0,52,27,0,0,52,27,0,0,52,27,0,0,54,27,0,0,58,27,0,0,58,27,0,0,58,27,0,0,60,27,0,0,62,27,0,0,64,27,0,0,64,27,0,0,64,27,0,0,66,27,0,0,66,27,0,0,68,27,0,0,70,27,0,0,72,27,0,0,72,27,0,0,76,27,0,0,76,27,0,0,76,27,0,0,76,27,0,0,76,27,0,0,76,27,0,0,76,27,0,0,76,27,0,0,76,27,0,0,76,27,0,0,76,27,0,0,78,27,0,0,78,27,0,0,78,27,0,0,80,27,0,0,82,27,0,0,82,27,0,0,82,27,0,0,84,27,0,0,86,27,0,0,86,27,0,0,86,27,0,0,86,27,0,0,86,27,0,0,86,27,0,0,88,27,0,0,90,27,0,0,94,27,0,0,94,27,0,0,96,27,0,0,96,27,0,0,100,27,0,0,100,27,0,0,102,27,0,0,106,27,0,0,106,27,0,0,108,27,0,0,108,27,0,0,108,27,0,0,108,27,0,0,108,27,0,0,112,27,0,0,114,27,0,0,116,27,0,0,120,27,0,0,120,27,0,0,120,27,0,0,120,27,0,0,122,27,0,0,124,27,0,0,124,27,0,0,124,27,0,0,128,27,0,0,130,27,0,0,130,27,0,0,132,27,0,0,138,27,0,0,138,27,0,0,138,27,0,0,138,27,0,0,140,27,0,0,140,27,0,0,140,27,0,0,140,27,0,0,140,27,0,0,140,27,0,0,140,27,0,0,140,27,0,0,140,27,0,0,140,27,0,0,142,27,0,0,142,27,0,0,142,27,0,0,142,27,0,0,144,27,0,0,144,27,0,0,146,27,0,0,146,27,0,0,146,27,0,0,146,27,0,0,146,27,0,0,146,27,0,0,146,27,0,0,146,27,0,0,146,27,0,0,146,27,0,0,148,27,0,0,148,27,0,0,148,27,0,0,152,27,0,0,154,27,0,0,154,27,0,0,156,27,0,0,158,27,0,0,160,27,0,0,160,27,0,0,160,27,0,0,160,27,0,0,160,27,0,0,160,27,0,0,162,27,0,0,164,27,0,0,164,27,0,0,166,27,0,0,166,27,0,0,168,27,0,0,168,27,0,0,168,27,0,0,168,27,0,0,170,27,0,0,172,27,0,0,172,27,0,0,172,27,0,0,172,27,0,0,174,27,0,0,174,27,0,0,176,27,0,0,176,27,0,0,176,27,0,0,176,27,0,0,176,27,0,0,176,27,0,0,178,27,0,0,180,27,0,0,182,27,0,0,184,27,0,0,184,27,0,0,184,27,0,0,184,27,0,0,186,27,0,0,186,27,0,0,186,27,0,0,186,27,0,0,188,27,0,0,188,27,0,0,188,27,0,0,188,27,0,0,190,27,0,0,194,27,0,0,194,27,0,0,198,27,0,0,200,27,0,0,200,27,0,0,200,27,0,0,202,27,0,0,202,27,0,0,202,27,0,0,202,27,0,0,206,27,0,0,206,27,0,0,206,27,0,0,208,27,0,0,208,27,0,0,210,27,0,0,210,27,0,0,212,27,0,0,212,27,0,0,216,27,0,0,216,27,0,0,216,27,0,0,220,27,0,0,220,27,0,0,222,27,0,0,224,27,0,0,224,27,0,0,224,27,0,0,226,27,0,0,226,27,0,0,226,27,0,0,226,27,0,0,230,27,0,0,232,27,0,0,232,27,0,0,232,27,0,0,232,27,0,0,232,27,0,0,232,27,0,0,232,27,0,0,236,27,0,0,236,27,0,0,238,27,0,0,238,27,0,0,238,27,0,0,238,27,0,0,238,27,0,0,238,27,0,0,238,27,0,0,242,27,0,0,242,27,0,0,242,27,0,0,244,27,0,0,244,27,0,0,246,27,0,0,248,27,0,0,248,27,0,0,250,27,0,0,250,27,0,0,250,27,0,0,250,27,0,0,250,27,0,0,250,27,0,0,250,27,0,0,254,27,0,0,254,27,0,0,254,27,0,0,254,27,0,0,0,28,0,0,0,28,0,0,2,28,0,0,2,28,0,0,2,28,0,0,2,28,0,0,2,28,0,0,2,28,0,0,2,28,0,0,2,28,0,0,2,28,0,0,2,28,0,0,4,28,0,0,4,28,0,0,4,28,0,0,6,28,0,0,8,28,0,0,10,28,0,0,12,28,0,0,12,28,0,0,12,28,0,0,12,28,0,0,12,28,0,0,12,28,0,0,12,28,0,0,12,28,0,0,14,28,0,0,16,28,0,0,26,28,0,0,28,28,0,0,32,28,0,0,32,28,0,0,32,28,0,0,32,28,0,0,32,28,0,0,34,28,0,0,36,28,0,0,38,28,0,0,40,28,0,0,40,28,0,0,42,28,0,0,42,28,0,0,42,28,0,0,42,28,0,0,42,28,0,0,42,28,0,0,42,28,0,0,42,28,0,0,44,28,0,0,44,28,0,0,44,28,0,0,46,28,0,0,46,28,0,0,46,28,0,0,48,28,0,0,48,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,54,28,0,0,54,28,0,0,56,28,0,0,56,28,0,0,56,28,0,0,58,28,0,0,58,28,0,0,58,28,0,0,58,28,0,0,60,28,0,0,62,28,0,0,66,28,0,0,66,28,0,0,68,28,0,0,68,28,0,0,68,28,0,0,68,28,0,0,68,28,0,0,70,28,0,0,70,28,0,0,70,28,0,0,72,28,0,0,72,28,0,0,72,28,0,0,74,28,0,0,74,28,0,0,74,28,0,0,74,28,0,0,74,28,0,0,76,28,0,0,80,28,0,0,80,28,0,0,80,28,0,0,80,28,0,0,80,28,0,0,82,28,0,0,86,28,0,0,86,28,0,0,86,28,0,0,86,28,0,0,86,28,0,0,86,28,0,0,86,28,0,0,86,28,0,0,86,28,0,0,86,28,0,0,88,28,0,0,88,28,0,0,92,28,0,0,92,28,0,0,92,28,0,0,94,28,0,0,96,28,0,0,96,28,0,0,96,28,0,0,96,28,0,0,100,28,0,0,100,28,0,0,102,28,0,0,102,28,0,0,106,28,0,0,106,28,0,0,106,28,0,0,106,28,0,0,106,28,0,0,106,28,0,0,112,28,0,0,116,28,0,0,116,28,0,0,118,28,0,0,118,28,0,0,118,28,0,0,118,28,0,0,118,28,0,0,122,28,0,0,124,28,0,0,124,28,0,0,124,28,0,0,124,28,0,0,126,28,0,0,126,28,0,0,128,28,0,0,130,28,0,0,134,28,0,0,134,28,0,0,134,28,0,0,134,28,0,0,134,28,0,0,134,28,0,0,134,28,0,0,134,28,0,0,134,28,0,0,134,28,0,0,134,28,0,0,134,28,0,0,134,28,0,0,136,28,0,0,138,28,0,0,140,28,0,0,140,28,0,0,140,28,0,0,140,28,0,0,140,28,0,0,140,28,0,0,140,28,0,0,140,28,0,0,140,28,0,0,140,28,0,0,140,28,0,0,140,28,0,0,142,28,0,0,142,28,0,0,142,28,0,0,142,28,0,0,142,28,0,0,142,28,0,0,142,28,0,0,142,28,0,0,142,28,0,0,146,28,0,0,146,28,0,0,146,28,0,0,148,28,0,0,150,28,0,0,150,28,0,0,150,28,0,0,150,28,0,0,152,28,0,0,152,28,0,0,154,28,0,0,154,28,0,0,154,28,0,0,158,28,0,0,158,28,0,0,162,28,0,0,162,28,0,0,166,28,0,0,168,28,0,0,168,28,0,0,170,28,0,0,170,28,0,0,172,28,0,0,172,28,0,0,174,28,0,0,174,28,0,0,174,28,0,0,174,28,0,0,174,28,0,0,174,28,0,0,174,28,0,0,174,28,0,0,174,28,0,0,174,28,0,0,174,28,0,0,174,28,0,0,174,28,0,0,174,28,0,0,176,28,0,0,176,28,0,0,176,28,0,0,180,28,0,0,182,28,0,0,182,28,0,0,182,28,0,0,184,28,0,0,186,28,0,0,188,28,0,0,188,28,0,0,188,28,0,0,190,28,0,0,190,28,0,0,190,28,0,0,192,28,0,0,192,28,0,0,194,28,0,0,194,28,0,0,194,28,0,0,194,28,0,0,194,28,0,0,194,28,0,0,196,28,0,0,196,28,0,0,198,28,0,0,198,28,0,0,202,28,0,0,202,28,0,0,202,28,0,0,202,28,0,0,202,28,0,0,202,28,0,0,202,28,0,0,204,28,0,0,204,28,0,0,208,28,0,0,210,28,0,0,212,28,0,0,212,28,0,0,212,28,0,0,214,28,0,0,214,28,0,0,214,28,0,0,214,28,0,0,216,28,0,0,216,28,0,0,216,28,0,0,218,28,0,0,220,28,0,0,220,28,0,0,226,28,0,0,226,28,0,0,228,28,0,0,230,28,0,0,230,28,0,0,230,28,0,0,230,28,0,0,236,28,0,0,236,28,0,0,236,28,0,0,236,28,0,0,238,28,0,0,238,28,0,0,238,28,0,0,240,28,0,0,244,28,0,0,246,28,0,0,246,28,0,0,248,28,0,0,248,28,0,0,254,28,0,0,254,28,0,0,2,29,0,0,2,29,0,0,4,29,0,0,6,29,0,0,6,29,0,0,8,29,0,0,8,29,0,0,8,29,0,0,8,29,0,0,8,29,0,0,8,29,0,0,12,29,0,0,16,29,0,0,18,29,0,0,18,29,0,0,18,29,0,0,20,29,0,0,22,29,0,0,22,29,0,0,22,29,0,0,22,29,0,0,22,29,0,0,22,29,0,0,22,29,0,0,26,29,0,0,26,29,0,0,26,29,0,0,26,29,0,0,28,29,0,0,30,29,0,0,30,29,0,0,30,29,0,0,30,29,0,0,32,29,0,0,34,29,0,0,34,29,0,0,36,29,0,0,36,29,0,0,36,29,0,0,40,29,0,0,40,29,0,0,40,29,0,0,40,29,0,0,40,29,0,0,42,29,0,0,42,29,0,0,46,29,0,0,46,29,0,0,46,29,0,0,48,29,0,0,50,29,0,0,52,29,0,0,54,29,0,0,54,29,0,0,54,29,0,0,54,29,0,0,54,29,0,0,54,29,0,0,58,29,0,0,58,29,0,0,58,29,0,0,58,29,0,0,58,29,0,0,58,29,0,0,60,29,0,0,60,29,0,0,62,29,0,0,62,29,0,0,64,29,0,0,64,29,0,0,64,29,0,0,64,29,0,0,66,29,0,0,66,29,0,0,66,29,0,0,68,29,0,0,68,29,0,0,68,29,0,0,68,29,0,0,68,29,0,0,70,29,0,0,70,29,0,0,70,29,0,0,70,29,0,0,70,29,0,0,74,29,0,0,76,29,0,0,78,29,0,0,78,29,0,0,78,29,0,0,78,29,0,0,80,29,0,0,82,29,0,0,82,29,0,0,84,29,0,0,84,29,0,0,84,29,0,0,86,29,0,0,86,29,0,0,86,29,0,0,86,29,0,0,86,29,0,0,88,29,0,0,90,29,0,0,94,29,0,0,96,29,0,0,96,29,0,0,96,29,0,0,98,29,0,0,98,29,0,0,98,29,0,0,98,29,0,0,100,29,0,0,102,29,0,0,102,29,0,0,102,29,0,0,104,29,0,0,104,29,0,0,106,29,0,0,106,29,0,0,106,29,0,0,106,29,0,0,106,29,0,0,106,29,0,0,106,29,0,0,106,29,0,0,106,29,0,0,112,29,0,0,114,29,0,0,114,29,0,0,114,29,0,0,114,29,0,0,114,29,0,0,116,29,0,0,116,29,0,0,116,29,0,0,116,29,0,0,116,29,0,0,116,29,0,0,118,29,0,0,120,29,0,0,122,29,0,0,122,29,0,0,122,29,0,0,124,29,0,0,124,29,0,0,124,29,0,0,124,29,0,0,124,29,0,0,124,29,0,0,126,29,0,0,128,29,0,0,128,29,0,0,128,29,0,0,128,29,0,0,132,29,0,0,134,29,0,0,134,29,0,0,138,29,0,0,142,29,0,0,146,29,0,0,148,29,0,0,152,29,0,0,152,29,0,0,152,29,0,0,152,29,0,0,152,29,0,0,154,29,0,0,154,29,0,0,154,29,0,0,154,29,0,0,154,29,0,0,156,29,0,0,158,29,0,0,160,29,0,0,162,29,0,0,162,29,0,0,162,29,0,0,164,29,0,0,164,29,0,0,166,29,0,0,166,29,0,0,168,29,0,0,168,29,0,0,170,29,0,0,170,29,0,0,172,29,0,0,172,29,0,0,176,29,0,0,176,29,0,0,176,29,0,0,178,29,0,0,178,29,0,0,182,29,0,0,182,29,0,0,182,29,0,0,184,29,0,0,184,29,0,0,184,29,0,0,184,29,0,0,186,29,0,0,186,29,0,0,186,29,0,0,186,29,0,0,186,29,0,0,186,29,0,0,186,29,0,0,186,29,0,0,190,29,0,0,190,29,0,0,190,29,0,0,190,29,0,0,190,29,0,0,190,29,0,0,190,29,0,0,190,29,0,0,190,29,0,0,194,29,0,0,194,29,0,0,198,29,0,0,198,29,0,0,200,29,0,0,200,29,0,0,200,29,0,0,202,29,0,0,202,29,0,0,204,29,0,0,206,29,0,0,208,29,0,0,210,29,0,0,210,29,0,0,212,29,0,0,216,29,0,0,216,29,0,0,216,29,0,0,218,29,0,0,222,29,0,0,222,29,0,0,222,29,0,0,222,29,0,0,222,29,0,0,224,29,0,0,226,29,0,0,226,29,0,0,226,29,0,0,226,29,0,0,228,29,0,0,228,29,0,0,228,29,0,0,230,29,0,0,232,29,0,0,234,29,0,0,234,29,0,0,234,29,0,0,238,29,0,0,238,29,0,0,240,29,0,0,240,29,0,0,240,29,0,0,242,29,0,0,242,29,0,0,248,29,0,0,248,29,0,0,250,29,0,0,250,29,0,0,250,29,0,0,250,29,0,0,252,29,0,0,252,29,0,0,252,29,0,0,254,29,0,0,0,30,0,0,0,30,0,0,0,30,0,0,0,30,0,0,0,30,0,0,0,30,0,0,0,30,0,0,0,30,0,0,0,30,0,0,4,30,0,0,4,30,0,0,4,30,0,0,4,30,0,0,4,30,0,0,4,30,0,0,4,30,0,0,6,30,0,0,6,30,0,0,8,30,0,0,10,30,0,0,10,30,0,0,10,30,0,0,10,30,0,0,10,30,0,0,16,30,0,0,20,30,0,0,22,30,0,0,24,30,0,0,24,30,0,0,24,30,0,0,24,30,0,0,26,30,0,0,26,30,0,0,28,30,0,0,28,30,0,0,28,30,0,0,30,30,0,0,32,30,0,0,32,30,0,0,32,30,0,0,32,30,0,0,34,30,0,0,34,30,0,0,38,30,0,0,38,30,0,0,40,30,0,0,42,30,0,0,42,30,0,0,44,30,0,0,46,30,0,0,46,30,0,0,46,30,0,0,48,30,0,0,50,30,0,0,50,30,0,0,50,30,0,0,50,30,0,0,52,30,0,0,54,30,0,0,56,30,0,0,56,30,0,0,56,30,0,0,58,30,0,0,58,30,0,0,62,30,0,0,62,30,0,0,62,30,0,0,64,30,0,0,68,30,0,0,68,30,0,0,68,30,0,0,68,30,0,0,68,30,0,0,68,30,0,0,70,30,0,0,76,30,0,0,82,30,0,0,82,30,0,0,84,30,0,0,84,30,0,0,84,30,0,0,84,30,0,0,86,30,0,0,88,30,0,0,96,30,0,0,98,30,0,0,98,30,0,0,98,30,0,0,98,30,0,0,98,30,0,0,102,30,0,0,104,30,0,0,104,30,0,0,106,30,0,0,108,30,0,0,108,30,0,0,108,30,0,0,110,30,0,0,112,30,0,0,112,30,0,0,114,30,0,0,114,30,0,0,116,30,0,0,116,30,0,0,118,30,0,0,120,30,0,0,120,30,0,0,120,30,0,0,122,30,0,0,122,30,0,0,122,30,0,0,122,30,0,0,124,30,0,0,124,30,0,0,126,30,0,0,126,30,0,0,128,30,0,0,130,30,0,0,132,30,0,0,134,30,0,0,134,30,0,0,134,30,0,0,138,30,0,0,138,30,0,0,140,30,0,0,140,30,0,0,144,30,0,0,146,30,0,0,146,30,0,0,146,30,0,0,146,30,0,0,146,30,0,0,146,30,0,0,148,30,0,0,150,30,0,0,152,30,0,0,152,30,0,0,152,30,0,0,152,30,0,0,152,30,0,0,152,30,0,0,152,30,0,0,156,30,0,0,156,30,0,0,156,30,0,0,158,30,0,0,160,30,0,0,160,30,0,0,160,30,0,0,164,30,0,0,164,30,0,0,164,30,0,0,170,30,0,0,172,30,0,0,174,30,0,0,176,30,0,0,178,30,0,0,180,30,0,0,180,30,0,0,182,30,0,0,184,30,0,0,184,30,0,0,184,30,0,0,184,30,0,0,186,30,0,0,188,30,0,0,188,30,0,0,188,30,0,0,188,30,0,0,188,30,0,0,188,30,0,0,188,30,0,0,194,30,0,0,194,30,0,0,194,30,0,0,196,30,0,0,196,30,0,0,198,30,0,0,198,30,0,0,200,30,0,0,200,30,0,0,200,30,0,0,200,30,0,0,200,30,0,0,200,30,0,0,200,30,0,0,202,30,0,0,202,30,0,0,202,30,0,0,204,30,0,0,204,30,0,0,210,30,0,0,210,30,0,0,210,30,0,0,212,30,0,0,214,30,0,0,214,30,0,0,214,30,0,0,216,30,0,0,216,30,0,0,220,30,0,0,224,30,0,0,224,30,0,0,224,30,0,0,224,30,0,0,228,30,0,0,228,30,0,0,228,30,0,0,230,30,0,0,230,30,0,0,230,30,0,0,230,30,0,0,230,30,0,0,230,30,0,0,230,30,0,0,230,30,0,0,230,30,0,0,230,30,0,0,232,30,0,0,232,30,0,0,232,30,0,0,234,30,0,0,236,30,0,0,236,30,0,0,238,30,0,0,238,30,0,0,238,30,0,0,238,30,0,0,240,30,0,0,242,30,0,0,242,30,0,0,242,30,0,0,242,30,0,0,244,30,0,0,244,30,0,0,244,30,0,0,246,30,0,0,246,30,0,0,246,30,0,0,246,30,0,0,246,30,0,0,246,30,0,0,248,30,0,0,250,30,0,0,250,30,0,0,250,30,0,0,252,30,0,0,252,30,0,0,252,30,0,0,252,30,0,0,252,30,0,0,252,30,0,0,254,30,0,0,254,30,0,0,254,30,0,0,254,30,0,0,0,31,0,0,2,31,0,0,2,31,0,0,6,31,0,0,6,31,0,0,8,31,0,0,8,31,0,0,10,31,0,0,10,31,0,0,12,31,0,0,12,31,0,0,16,31,0,0,16,31,0,0,18,31,0,0,20,31,0,0,20,31,0,0,26,31,0,0,26,31,0,0,28,31,0,0,28,31,0,0,28,31,0,0,28,31,0,0,28,31,0,0,28,31,0,0,28,31,0,0,28,31,0,0,28,31,0,0,30,31,0,0,30,31,0,0,30,31,0,0,36,31,0,0,36,31,0,0,36,31,0,0,38,31,0,0,38,31,0,0,40,31,0,0,42,31,0,0,44,31,0,0,48,31,0,0,50,31,0,0,50,31,0,0,52,31,0,0,52,31,0,0,52,31,0,0,54,31,0,0,58,31,0,0,64,31,0,0,64,31,0,0,64,31,0,0,64,31,0,0,68,31,0,0,68,31,0,0,68,31,0,0,68,31,0,0,68,31,0,0,68,31,0,0,68,31,0,0,68,31,0,0,68,31,0,0,68,31,0,0,68,31,0,0,72,31,0,0,72,31,0,0,72,31,0,0,74,31,0,0,80,31,0,0,80,31,0,0,80,31,0,0,84,31,0,0,86,31,0,0,86,31,0,0,88,31,0,0,88,31,0,0,90,31,0,0,90,31,0,0,90,31,0,0,94,31,0,0,94,31,0,0,94,31,0,0,94,31,0,0,94,31,0,0,96,31,0,0,96,31,0,0,96,31,0,0,96,31,0,0,98,31,0,0,102,31,0,0,104,31,0,0,106,31,0,0,106,31,0,0,106,31,0,0,106,31,0,0,108,31,0,0,112,31,0,0,112,31,0,0,114,31,0,0,116,31,0,0,116,31,0,0,120,31,0,0,120,31,0,0,120,31,0,0,122,31,0,0,124,31,0,0,124,31,0,0,124,31,0,0,128,31,0,0,128,31,0,0,128,31,0,0,130,31,0,0,134,31,0,0,134,31,0,0,136,31,0,0,138,31,0,0,138,31,0,0,138,31,0,0,138,31,0,0,138,31,0,0,140,31,0,0,140,31,0,0,144,31,0,0,148,31,0,0,150,31,0,0,154,31,0,0,154,31,0,0,154,31,0,0,154,31,0,0,156,31,0,0,156,31,0,0,156,31,0,0,156,31,0,0,156,31,0,0,156,31,0,0,156,31,0,0,156,31,0,0,156,31,0,0,158,31,0,0,158,31,0,0,160,31,0,0,160,31,0,0,160,31,0,0,160,31,0,0,162,31,0,0,162,31,0,0,162,31,0,0,164,31,0,0,164,31,0,0,166,31,0,0,168,31,0,0,172,31,0,0,176,31,0,0,176,31,0,0,178,31,0,0,178,31,0,0,178,31,0,0,178,31,0,0,178,31,0,0,178,31,0,0,178,31,0,0,178,31,0,0,178,31,0,0,178,31,0,0,180,31,0,0,180,31,0,0,180,31,0,0,180,31,0,0,180,31,0,0,180,31,0,0,182,31,0,0,182,31,0,0,182,31,0,0,182,31,0,0,182,31,0,0,184,31,0,0,184,31,0,0,186,31,0,0,188,31,0,0,190,31,0,0,192,31,0,0,194,31,0,0,196,31,0,0,198,31,0,0,198,31,0,0,198,31,0,0,200,31,0,0,200,31,0,0,200,31,0,0,200,31,0,0,200,31,0,0,200,31,0,0,200,31,0,0,200,31,0,0,202,31,0,0,202,31,0,0,202,31,0,0,202,31,0,0,204,31,0,0,204,31,0,0,204,31,0,0,206,31,0,0,208,31,0,0,208,31,0,0,208,31,0,0,208,31,0,0,208,31,0,0,210,31,0,0,212,31,0,0,216,31,0,0,218,31,0,0,218,31,0,0,218,31,0,0,218,31,0,0,220,31,0,0,222,31,0,0,224,31,0,0,224,31,0,0,228,31,0,0,228,31,0,0,228,31,0,0,228,31,0,0,228,31,0,0,228,31,0,0,230,31,0,0,232,31,0,0,232,31,0,0,232,31,0,0,232,31,0,0,238,31,0,0,240,31,0,0,240,31,0,0,240,31,0,0,240,31,0,0,240,31,0,0,242,31,0,0,244,31,0,0,248,31,0,0,248,31,0,0,248,31,0,0,248,31,0,0,250,31,0,0,250,31,0,0,252,31,0,0,252,31,0,0,252,31,0,0,252,31,0,0,252,31,0,0,254,31,0,0,0,32,0,0,2,32,0,0,2,32,0,0,4,32,0,0,4,32,0,0,4,32,0,0,6,32,0,0,8,32,0,0,10,32,0,0,10,32,0,0,10,32,0,0,10,32,0,0,12,32,0,0,12,32,0,0,12,32,0,0,12,32,0,0,14,32,0,0,16,32,0,0,16,32,0,0,18,32,0,0,18,32,0,0,22,32,0,0,22,32,0,0,22,32,0,0,22,32,0,0,22,32,0,0,22,32,0,0,22,32,0,0,24,32,0,0,26,32,0,0,30,32,0,0,30,32,0,0,30,32,0,0,30,32,0,0,30,32,0,0,36,32,0,0,38,32,0,0,38,32,0,0,42,32,0,0,44,32,0,0,48,32,0,0,52,32,0,0,52,32,0,0,52,32,0,0,54,32,0,0,54,32,0,0,56,32,0,0,58,32,0,0,58,32,0,0,58,32,0,0,58,32,0,0,58,32,0,0,60,32,0,0,60,32,0,0,64,32,0,0,64,32,0,0,64,32,0,0,68,32,0,0,70,32,0,0,74,32,0,0,74,32,0,0,76,32,0,0,78,32,0,0,78,32,0,0,78,32,0,0,78,32,0,0,80,32,0,0,82,32,0,0,84,32,0,0,84,32,0,0,84,32,0,0,84,32,0,0,84,32,0,0,84,32,0,0,86,32,0,0,86,32,0,0,86,32,0,0,86,32,0,0,86,32,0,0,86,32,0,0,90,32,0,0,92,32,0,0,94,32,0,0,94,32,0,0,94,32,0,0,94,32,0,0,94,32,0,0,98,32,0,0,98,32,0,0,100,32,0,0,100,32,0,0,102,32,0,0,104,32,0,0,106,32,0,0,106,32,0,0,106,32,0,0,108,32,0,0,110,32,0,0,112,32,0,0,112,32,0,0,112,32,0,0,112,32,0,0,112,32,0,0,112,32,0,0,112,32,0,0,114,32,0,0,116,32,0,0,118,32,0,0,120,32,0,0,120,32,0,0,120,32,0,0,122,32,0,0,124,32,0,0,124,32,0,0,124,32,0,0,124,32,0,0,126,32,0,0,126,32,0,0,128,32,0,0,128,32,0,0,128,32,0,0,132,32,0,0,132,32,0,0,132,32,0,0,132,32,0,0,134,32,0,0,134,32,0,0,134,32,0,0,134,32,0,0,136,32,0,0,136,32,0,0,140,32,0,0,142,32,0,0,146,32,0,0,150,32,0,0,154,32,0,0,154,32,0,0,154,32,0,0,154,32,0,0,156,32,0,0,156,32,0,0,160,32,0,0,160,32,0,0,160,32,0,0,160,32,0,0,162,32,0,0,162,32,0,0,164,32,0,0,166,32,0,0,166,32,0,0,166,32,0,0,168,32,0,0,168,32,0,0,168,32,0,0,168,32,0,0,170,32,0,0,170,32,0,0,170,32,0,0,170,32,0,0,170,32,0,0,172,32,0,0,172,32,0,0,172,32,0,0,172,32,0,0,172,32,0,0,172,32,0,0,174,32,0,0,174,32,0,0,178,32,0,0,178,32,0,0,178,32,0,0,180,32,0,0,182,32,0,0,184,32,0,0,184,32,0,0,184,32,0,0,184,32,0,0,188,32,0,0,190,32,0,0,190,32,0,0,190,32,0,0,190,32,0,0,190,32,0,0,190,32,0,0,192,32,0,0,194,32,0,0,196,32,0,0,198,32,0,0,198,32,0,0,198,32,0,0,200,32,0,0,202,32,0,0,202,32,0,0,202,32,0,0,202,32,0,0,202,32,0,0,202,32,0,0,202,32,0,0,204,32,0,0,204,32,0,0,204,32,0,0,204,32,0,0,206,32,0,0,206,32,0,0,208,32,0,0,212,32,0,0,212,32,0,0,212,32,0,0,216,32,0,0,218,32,0,0,218,32,0,0,218,32,0,0,222,32,0,0,222,32,0,0,222,32,0,0,222,32,0,0,222,32,0,0,226,32,0,0,226,32,0,0,226,32,0,0,226,32,0,0,226,32,0,0,226,32,0,0,226,32,0,0,226,32,0,0,226,32,0,0,230,32,0,0,232,32,0,0,232,32,0,0,234,32,0,0,234,32,0,0,234,32,0,0,236,32,0,0,240,32,0,0,240,32,0,0,242,32,0,0,244,32,0,0,244,32,0,0,244,32,0,0,244,32,0,0,244,32,0,0,246,32,0,0,246,32,0,0,246,32,0,0,248,32,0,0,250,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,254,32,0,0,254,32,0,0,254,32,0,0,254,32,0,0,254,32,0,0,254,32,0,0,254,32,0,0,254,32,0,0,254,32,0,0,254,32,0,0,254,32,0,0,0,33,0,0,0,33,0,0,0,33,0,0,2,33,0,0,2,33,0,0,2,33,0,0,4,33,0,0,6,33,0,0,6,33,0,0,6,33,0,0,8,33,0,0,10,33,0,0,10,33,0,0,14,33,0,0,14,33,0,0,14,33,0,0,14,33,0,0,14,33,0,0,14,33,0,0,14,33,0,0,14,33,0,0,16,33,0,0,18,33,0,0,18,33,0,0,20,33,0,0,20,33,0,0,20,33,0,0,22,33,0,0,22,33,0,0,26,33,0,0,26,33,0,0,28,33,0,0,28,33,0,0,28,33,0,0,28,33,0,0,32,33,0,0,32,33,0,0,34,33,0,0,34,33,0,0,38,33,0,0,38,33,0,0,42,33,0,0,42,33,0,0,42,33,0,0,42,33,0,0,42,33,0,0,46,33,0,0,48,33,0,0,48,33,0,0,48,33,0,0,50,33,0,0,50,33,0,0,52,33,0,0,52,33,0,0,52,33,0,0,56,33,0,0,56,33,0,0,56,33,0,0,56,33,0,0,56,33,0,0,56,33,0,0,58,33,0,0,62,33,0,0,64,33,0,0,66,33,0,0,68,33,0,0,72,33,0,0,72,33,0,0,72,33,0,0,74,33,0,0,74,33,0,0,76,33,0,0,78,33,0,0,78,33,0,0,78,33,0,0,78,33,0,0,78,33,0,0,78,33,0,0,78,33,0,0,80,33,0,0,82,33,0,0,84,33,0,0,84,33,0,0,86,33,0,0,86,33,0,0,88,33,0,0,88,33,0,0,88,33,0,0,88,33,0,0,90,33,0,0,92,33,0,0,92,33,0,0,92,33,0,0,94,33,0,0,94,33,0,0,96,33,0,0,96,33,0,0,98,33,0,0,100,33,0,0,100,33,0,0,102,33,0,0,104,33,0,0,106,33,0,0,110,33,0,0,110,33,0,0,112,33,0,0,114,33,0,0,114,33,0,0,114,33,0,0,114,33,0,0,116,33,0,0,116,33,0,0,116,33,0,0,116,33,0,0,116,33,0,0,116,33,0,0,118,33,0,0,118,33,0,0,120,33,0,0,120,33,0,0,122,33,0,0,122,33,0,0,122,33,0,0,124,33,0,0,126,33,0,0,128,33,0,0,128,33,0,0,128,33,0,0,128,33,0,0,128,33,0,0,128,33,0,0,128,33,0,0,128,33,0,0,130,33,0,0,132,33,0,0,136,33,0,0,136,33,0,0,136,33,0,0,136,33,0,0,136,33,0,0,136,33,0,0,138,33,0,0,138,33,0,0,140,33,0,0,140,33,0,0,140,33,0,0,140,33,0,0,142,33,0,0,142,33,0,0,142,33,0,0,144,33,0,0,148,33,0,0,148,33,0,0,148,33,0,0,148,33,0,0,150,33,0,0,154,33,0,0,154,33,0,0,154,33,0,0,154,33,0,0,156,33,0,0,158,33,0,0,158,33,0,0,160,33,0,0,160,33,0,0,162,33,0,0,162,33,0,0,164,33,0,0,164,33,0,0,164,33,0,0,164,33,0,0,164,33,0,0,164,33,0,0,164,33,0,0,164,33,0,0,164,33,0,0,166,33,0,0,166,33,0,0,166,33,0,0,166,33,0,0,168,33,0,0,170,33,0,0,170,33,0,0,170,33,0,0,170,33,0,0,172,33,0,0,172,33,0,0,172,33,0,0,172,33,0,0,172,33,0,0,172,33,0,0,172,33,0,0,172,33,0,0,172,33,0,0,172,33,0,0,174,33,0,0,174,33,0,0,174,33,0,0,174,33,0,0,176,33,0,0,178,33,0,0,180,33,0,0,182,33,0,0,182,33,0,0,184,33,0,0,186,33,0,0,190,33,0,0,190,33,0,0,190,33,0,0,190,33,0,0,190,33,0,0,190,33,0,0,194,33,0,0,194,33,0,0,194,33,0,0,194,33,0,0,194,33,0,0,194,33,0,0,196,33,0,0,198,33,0,0,202,33,0,0,202,33,0,0,202,33,0,0,202,33,0,0,204,33,0,0,204,33,0,0,206,33,0,0,208,33,0,0,208,33,0,0,208,33,0,0,208,33,0,0,210,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,214,33,0,0,214,33,0,0,216,33,0,0,216,33,0,0,216,33,0,0,216,33,0,0,216,33,0,0,216,33,0,0,216,33,0,0,218,33,0,0,218,33,0,0,218,33,0,0,218,33,0,0,218,33,0,0,218,33,0,0,220,33,0,0,220,33,0,0,224,33,0,0,224,33,0,0,224,33,0,0,224,33,0,0,224,33,0,0,224,33,0,0,224,33,0,0,226,33,0,0,226,33,0,0,226,33,0,0,226,33,0,0,226,33,0,0,226,33,0,0,230,33,0,0,230,33,0,0,230,33,0,0,230,33,0,0,238,33,0,0,238,33,0,0,244,33,0,0,246,33,0,0,246,33,0,0,246,33,0,0,246,33,0,0,246,33,0,0,246,33,0,0,246,33,0,0,246,33,0,0,248,33,0,0,248,33,0,0,250,33,0,0,252,33,0,0,252,33,0,0,252,33,0,0,254,33,0,0,0,34,0,0,2,34,0,0,2,34,0,0,2,34,0,0,2,34,0,0,4,34,0,0,4,34,0,0,4,34,0,0,4,34,0,0,4,34,0,0,4,34,0,0,6,34,0,0,6,34,0,0,12,34,0,0,14,34,0,0,14,34,0,0,16,34,0,0,18,34,0,0,18,34,0,0,18,34,0,0,18,34,0,0,22,34,0,0,22,34,0,0,22,34,0,0,22,34,0,0,22,34,0,0,22,34,0,0,22,34,0,0,24,34,0,0,26,34,0,0,28,34,0,0,28,34,0,0,28,34,0,0,30,34,0,0,32,34,0,0,32,34,0,0,32,34,0,0,34,34,0,0,36,34,0,0,36,34,0,0,36,34,0,0,36,34,0,0,38,34,0,0,42,34,0,0,42,34,0,0,42,34,0,0,42,34,0,0,42,34,0,0,42,34,0,0,42,34,0,0,42,34,0,0,42,34,0,0,42,34,0,0,44,34,0,0,46,34,0,0,48,34,0,0,48,34,0,0,48,34,0,0,48,34,0,0,52,34,0,0,54,34,0,0,54,34,0,0,54,34,0,0,56,34,0,0,58,34,0,0,58,34,0,0,58,34,0,0,58,34,0,0,62,34,0,0,62,34,0,0,64,34,0,0,66,34,0,0,66,34,0,0,66,34,0,0,66,34,0,0,68,34,0,0,68,34,0,0,70,34,0,0,72,34,0,0,72,34,0,0,72,34,0,0,72,34,0,0,72,34,0,0,72,34,0,0,72,34,0,0,74,34,0,0,74,34,0,0,74,34,0,0,74,34,0,0,74,34,0,0,76,34,0,0,78,34,0,0,78,34,0,0,80,34,0,0,80,34,0,0,82,34,0,0,82,34,0,0,84,34,0,0,86,34,0,0,88,34,0,0,88,34,0,0,88,34,0,0,88,34,0,0,88,34,0,0,88,34,0,0,88,34,0,0,88,34,0,0,88,34,0,0,88,34,0,0,90,34,0,0,92,34,0,0,92,34,0,0,92,34,0,0,94,34,0,0,96,34,0,0,96,34,0,0,96,34,0,0,98,34,0,0,98,34,0,0,98,34,0,0,98,34,0,0,102,34,0,0,104,34,0,0,104,34,0,0,106,34,0,0,106,34,0,0,106,34,0,0,108,34,0,0,108,34,0,0,110,34,0,0,110,34,0,0,110,34,0,0,112,34,0,0,112,34,0,0,112,34,0,0,112,34,0,0,112,34,0,0,112,34,0,0,112,34,0,0,114,34,0,0,116,34,0,0,116,34,0,0,116,34,0,0,116,34,0,0,116,34,0,0,116,34,0,0,118,34,0,0,118,34,0,0,118,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,122,34,0,0,124,34,0,0,124,34,0,0,124,34,0,0,126,34,0,0,128,34,0,0,130,34,0,0,130,34,0,0,130,34,0,0,132,34,0,0,134,34,0,0,134,34,0,0,136,34,0,0,140,34,0,0,142,34,0,0,144,34,0,0,144,34,0,0,148,34,0,0,148,34,0,0,148,34,0,0,150,34,0,0,158,34,0,0,158,34,0,0,158,34,0,0,162,34,0,0,162,34,0,0,166,34,0,0,168,34,0,0,172,34,0,0,172,34,0,0,172,34,0,0,172,34,0,0,172,34,0,0,174,34,0,0,176,34,0,0,176,34,0,0,176,34,0,0,178,34,0,0,180,34,0,0,180,34,0,0,180,34,0,0,182,34,0,0,184,34,0,0,190,34,0,0,192,34,0,0,194,34,0,0,194,34,0,0,194,34,0,0,196,34,0,0,196,34,0,0,200,34,0,0,200,34,0,0,202,34,0,0,202,34,0,0,202,34,0,0,202,34,0,0,202,34,0,0,206,34,0,0,206,34,0,0,208,34,0,0,208,34,0,0,212,34,0,0,216,34,0,0,228,34,0,0,228,34,0,0,228,34,0,0,228,34,0,0,228,34,0,0,230,34,0,0,232,34,0,0,232,34,0,0,232,34,0,0,234,34,0,0,234,34,0,0,234,34,0,0,234,34,0,0,234,34,0,0,234,34,0,0,238,34,0,0,238,34,0,0,240,34,0,0,242,34,0,0,244,34,0,0,246,34,0,0,246,34,0,0,248,34,0,0,248,34,0,0,250,34,0,0,254,34,0,0,0,35,0,0,2,35,0,0,2,35,0,0,6,35,0,0,6,35,0,0,6,35,0,0,8,35,0,0,8,35,0,0,8,35,0,0,8,35,0,0,8,35,0,0,10,35,0,0,12,35,0,0,12,35,0,0,12,35,0,0,12,35,0,0,12,35,0,0,12,35,0,0,14,35,0,0,16,35,0,0,16,35,0,0,20,35,0,0,20,35,0,0,20,35,0,0,24,35,0,0,24,35,0,0,30,35,0,0,30,35,0,0,30,35,0,0,30,35,0,0,30,35,0,0,30,35,0,0,30,35,0,0,30,35,0,0,36,35,0,0,38,35,0,0,38,35,0,0,38,35,0,0,40,35,0,0,42,35,0,0,48,35,0,0,48,35,0,0,54,35,0,0,56,35,0,0,58,35,0,0,58,35,0,0,60,35,0,0,60,35,0,0,64,35,0,0,64,35,0,0,64,35,0,0,66,35,0,0,70,35,0,0,72,35,0,0,74,35,0,0,74,35,0,0,76,35,0,0,78,35,0,0,78,35,0,0,78,35,0,0,78,35,0,0,78,35,0,0,80,35,0,0,80,35,0,0,80,35,0,0,80,35,0,0,82,35,0,0,82,35,0,0,84,35,0,0,86,35,0,0,88,35,0,0,88,35,0,0,90,35,0,0,90,35,0,0,92,35,0,0,92,35,0,0,94,35,0,0,94,35,0,0,96,35,0,0,96,35,0,0,98,35,0,0,100,35,0,0,104,35,0,0,104,35,0,0,108,35,0,0,108,35,0,0,110,35,0,0,110,35,0,0,112,35,0,0,116,35,0,0,116,35,0,0,116,35,0,0,118,35,0,0,118,35,0,0,118,35,0,0,120,35,0,0,120,35,0,0,122,35,0,0,122,35,0,0,124,35,0,0,126,35,0,0,126,35,0,0,126,35,0,0,126,35,0,0,128,35,0,0,130,35,0,0,132,35,0,0,132,35,0,0,134,35,0,0,136,35,0,0,138,35,0,0,142,35,0,0,142,35,0,0,144,35,0,0,146,35,0,0,146,35,0,0,148,35,0,0,150,35,0,0,152,35,0,0,152,35,0,0,154,35,0,0,156,35,0,0,156,35,0,0,156,35,0,0,156,35,0,0,156,35,0,0,156,35,0,0,156,35,0,0,156,35,0,0,158,35,0,0,160,35,0,0,160,35,0,0,160,35,0,0,162,35,0,0,162,35,0,0,164,35,0,0,166,35,0,0,168,35,0,0,168,35,0,0,170,35,0,0,170,35,0,0,172,35,0,0,172,35,0,0,172,35,0,0,172,35,0,0,172,35,0,0,172,35,0,0,172,35,0,0,174,35,0,0,174,35,0,0,174,35,0,0,174,35,0,0,174,35,0,0,176,35,0,0,176,35,0,0,176,35,0,0,176,35,0,0,178,35,0,0,178,35,0,0,180,35,0,0,180,35,0,0,184,35,0,0,186,35,0,0,186,35,0,0,186,35,0,0,188,35,0,0,188,35,0,0,188,35,0,0,190,35,0,0,190,35,0,0,190,35,0,0,190,35,0,0,190,35,0,0,192,35,0,0,192,35,0,0,192,35,0,0,192,35,0,0,194,35,0,0,196,35,0,0,196,35,0,0,196,35,0,0,198,35,0,0,198,35,0,0,198,35,0,0,198,35,0,0,202,35,0,0,204,35,0,0,204,35,0,0,208,35,0,0,208,35,0,0,208,35,0,0,208,35,0,0,210,35,0,0,210,35,0,0,212,35,0,0,212,35,0,0,214,35,0,0,214,35,0,0,216,35,0,0,220,35,0,0,220,35,0,0,220,35,0,0,220,35,0,0,220,35,0,0,220,35,0,0,220,35,0,0,220,35,0,0,220,35,0,0,220,35,0,0,224,35,0,0,224,35,0,0,226,35,0,0,226,35,0,0,228,35,0,0,230,35,0,0,230,35,0,0,232,35,0,0,236,35,0,0,236,35,0,0,236,35,0,0,236,35,0,0,242,35,0,0,244,35,0,0,248,35,0,0,248,35,0,0,248,35,0,0,248,35,0,0,248,35,0,0,248,35,0,0,250,35,0,0,252,35,0,0,254,35,0,0,0,36,0,0,2,36,0,0,4,36,0,0,6,36,0,0,6,36,0,0,8,36,0,0,8,36,0,0,10,36,0,0,12,36,0,0,14,36,0,0,14,36,0,0,14,36,0,0,14,36,0,0,16,36,0,0,16,36,0,0,16,36,0,0,16,36,0,0,16,36,0,0,18,36,0,0,22,36,0,0,22,36,0,0,22,36,0,0,22,36,0,0,24,36,0,0,24,36,0,0,24,36,0,0,24,36,0,0,24,36,0,0,28,36,0,0,28,36,0,0,28,36,0,0,30,36,0,0,30,36,0,0,32,36,0,0,38,36,0,0,40,36,0,0,40,36,0,0,40,36,0,0,40,36,0,0,40,36,0,0,42,36,0,0,44,36,0,0,44,36,0,0,46,36,0,0,48,36,0,0,48,36,0,0,50,36,0,0,50,36,0,0,50,36,0,0,56,36,0,0,58,36,0,0,58,36,0,0,58,36,0,0,60,36,0,0,60,36,0,0,62,36,0,0,62,36,0,0,64,36,0,0,66,36,0,0,66,36,0,0,70,36,0,0,70,36,0,0,72,36,0,0,72,36,0,0,72,36,0,0,72,36,0,0,76,36,0,0,76,36,0,0,76,36,0,0,76,36,0,0,76,36,0,0,76,36,0,0,76,36,0,0,78,36,0,0,86,36,0,0,86,36,0,0,86,36,0,0,90,36,0,0,92,36,0,0,94,36,0,0,96,36,0,0,96,36,0,0,96,36,0,0,96,36,0,0,96,36,0,0,100,36,0,0,100,36,0,0,100,36,0,0,100,36,0,0,102,36,0,0,102,36,0,0,102,36,0,0,102,36,0,0,102,36,0,0,104,36,0,0,108,36,0,0,108,36,0,0,108,36,0,0,110,36,0,0,110,36,0,0,110,36,0,0,110,36,0,0,110,36,0,0,112,36,0,0,112,36,0,0,112,36,0,0,112,36,0,0,112,36,0,0,112,36,0,0,112,36,0,0,114,36,0,0,116,36,0,0,120,36,0,0,120,36,0,0,120,36,0,0,122,36,0,0,122,36,0,0,122,36,0,0,122,36,0,0,124,36,0,0,124,36,0,0,124,36,0,0,124,36,0,0,124,36,0,0,126,36,0,0,126,36,0,0,130,36,0,0,130,36,0,0,134,36,0,0,134,36,0,0,136,36,0,0,136,36,0,0,136,36,0,0,138,36,0,0,144,36,0,0,146,36,0,0,146,36,0,0,148,36,0,0,148,36,0,0,150,36,0,0,150,36,0,0,150,36,0,0,150,36,0,0,150,36,0,0,152,36,0,0,152,36,0,0,152,36,0,0,152,36,0,0,152,36,0,0,152,36,0,0,152,36,0,0,154,36,0,0,156,36,0,0,156,36,0,0,156,36,0,0,158,36,0,0,158,36,0,0,158,36,0,0,158,36,0,0,160,36,0,0,162,36,0,0,162,36,0,0,162,36,0,0,162,36,0,0,164,36,0,0,164,36,0,0,164,36,0,0,164,36,0,0,166,36,0,0,168,36,0,0,168,36,0,0,168,36,0,0,168,36,0,0,168,36,0,0,168,36,0,0,168,36,0,0,170,36,0,0,170,36,0,0,172,36,0,0,174,36,0,0,174,36,0,0,174,36,0,0,178,36,0,0,178,36,0,0,178,36,0,0,178,36,0,0,180,36,0,0,182,36,0,0,184,36,0,0,186,36,0,0,186,36,0,0,186,36,0,0,188,36,0,0,188,36,0,0,188,36,0,0,190,36,0,0,192,36,0,0,194,36,0,0,196,36,0,0,198,36,0,0,200,36,0,0,202,36,0,0,204,36,0,0,204,36,0,0,204,36,0,0,204,36,0,0,206,36,0,0,206,36,0,0,208,36,0,0,214,36,0,0,216,36,0,0,216,36,0,0,216,36,0,0,216,36,0,0,220,36,0,0,224,36,0,0,224,36,0,0,226,36,0,0,226,36,0,0,228,36,0,0,230,36,0,0,232,36,0,0,232,36,0,0,234,36,0,0,236,36,0,0,236,36,0,0,238,36,0,0,242,36,0,0,242,36,0,0,244,36,0,0,244,36,0,0,246,36,0,0,250,36,0,0,252,36,0,0,254,36,0,0,2,37,0,0,2,37,0,0,2,37,0,0,2,37,0,0,2,37,0,0,2,37,0,0,6,37,0,0,6,37,0,0,10,37,0,0,10,37,0,0,12,37,0,0,12,37,0,0,12,37,0,0,12,37,0,0,12,37,0,0,12,37,0,0,12,37,0,0,14,37,0,0,20,37,0,0,22,37,0,0,22,37,0,0,26,37,0,0,28,37,0,0,28,37,0,0,28,37,0,0,28,37,0,0,30,37,0,0,30,37,0,0,32,37,0,0,32,37,0,0,32,37,0,0,32,37,0,0,34,37,0,0,34,37,0,0,36,37,0,0,36,37,0,0,36,37,0,0,36,37,0,0,36,37,0,0,36,37,0,0,36,37,0,0,36,37,0,0,36,37,0,0,36,37,0,0,38,37,0,0,38,37,0,0,40,37,0,0,42,37,0,0,42,37,0,0,42,37,0,0,44,37,0,0,44,37,0,0,44,37,0,0,44,37,0,0,46,37,0,0,46,37,0,0,48,37,0,0,50,37,0,0,50,37,0,0,52,37,0,0,52,37,0,0,52,37,0,0,52,37,0,0,52,37,0,0,56,37,0,0,56,37,0,0,58,37,0,0,58,37,0,0,60,37,0,0,60,37,0,0,62,37,0,0,64,37,0,0,66,37,0,0,66,37,0,0,68,37,0,0,72,37,0,0,74,37,0,0,76,37,0,0,76,37,0,0,76,37,0,0,76,37,0,0,78,37,0,0,82,37,0,0,82,37,0,0,84,37,0,0,86,37,0,0,86,37,0,0,90,37,0,0,90,37,0,0,92,37,0,0,92,37,0,0,92,37,0,0,92,37,0,0,92,37,0,0,98,37,0,0,98,37,0,0,100,37,0,0,102,37,0,0,102,37,0,0,104,37,0,0,106,37,0,0,106,37,0,0,108,37,0,0,110,37,0,0,112,37,0,0,112,37,0,0,114,37,0,0,114,37,0,0,116,37,0,0,118,37,0,0,120,37,0,0,120,37,0,0,120,37,0,0,124,37,0,0,126,37,0,0,130,37,0,0,130,37,0,0,130,37,0,0,132,37,0,0,134,37,0,0,134,37,0,0,134,37,0,0,134,37,0,0,134,37,0,0,134,37,0,0,134,37,0,0,134,37,0,0,134,37,0,0,134,37,0,0,136,37,0,0,138,37,0,0,138,37,0,0,138,37,0,0,138,37,0,0,138,37,0,0,142,37,0,0,142,37,0,0,144,37,0,0,146,37,0,0,146,37,0,0,146,37,0,0,148,37,0,0,150,37,0,0,154,37,0,0,154,37,0,0,154,37,0,0,154,37,0,0,154,37,0,0,154,37,0,0,154,37,0,0,154,37,0,0,154,37,0,0,154,37,0,0,156,37,0,0,156,37,0,0,156,37,0,0,156,37,0,0,158,37,0,0,160,37,0,0,162,37,0,0,164,37,0,0,164,37,0,0,164,37,0,0,166,37,0,0,168,37,0,0,168,37,0,0,170,37,0,0,170,37,0,0,172,37,0,0,174,37,0,0,178,37,0,0,180,37,0,0,180,37,0,0,180,37,0,0,182,37,0,0,182,37,0,0,184,37,0,0,184,37,0,0,184,37,0,0,184,37,0,0,184,37,0,0,186,37,0,0,190,37,0,0,190,37,0,0,192,37,0,0,192,37,0,0,194,37,0,0,194,37,0,0,196,37,0,0,196,37,0,0,196,37,0,0,198,37,0,0,200,37,0,0,200,37,0,0,200,37,0,0,202,37,0,0,204,37,0,0,204,37,0,0,206,37,0,0,206,37,0,0,208,37,0,0,208,37,0,0,208,37,0,0,208,37,0,0,208,37,0,0,208,37,0,0,210,37,0,0,210,37,0,0,210,37,0,0,210,37,0,0,210,37,0,0,210,37,0,0,212,37,0,0,212,37,0,0,212,37,0,0,212,37,0,0,212,37,0,0,214,37,0,0,218,37,0,0,220,37,0,0,220,37,0,0,222,37,0,0,222,37,0,0,222,37,0,0,226,37,0,0,226,37,0,0,226,37,0,0,228,37,0,0,230,37,0,0,232,37,0,0,236,37,0,0,240,37,0,0,240,37,0,0,242,37,0,0,248,37,0,0,248,37,0,0,250,37,0,0,0,38,0,0,0,38,0,0,0,38,0,0,0,38,0,0,0,38,0,0,0,38,0,0,2,38,0,0,4,38,0,0,6,38,0,0,8,38,0,0,8,38,0,0,8,38,0,0,8,38,0,0,8,38,0,0,10,38,0,0,10,38,0,0,12,38,0,0,12,38,0,0,12,38,0,0,14,38,0,0,18,38,0,0,18,38,0,0,18,38,0,0,18,38,0,0,22,38,0,0,24,38,0,0,24,38,0,0,28,38,0,0,28,38,0,0,28,38,0,0,32,38,0,0,32,38,0,0,34,38,0,0,34,38,0,0,34,38,0,0,34,38,0,0,34,38,0,0,38,38,0,0,38,38,0,0,38,38,0,0,40,38,0,0,42,38,0,0,42,38,0,0,46,38,0,0,46,38,0,0,46,38,0,0,46,38,0,0,46,38,0,0,46,38,0,0,48,38,0,0,50,38,0,0,50,38,0,0,52,38,0,0,52,38,0,0,52,38,0,0,52,38,0,0,52,38,0,0,52,38,0,0,52,38,0,0,54,38,0,0,56,38,0,0,58,38,0,0,60,38,0,0,60,38,0,0,60,38,0,0,60,38,0,0,60,38,0,0,60,38,0,0,62,38,0,0,62,38,0,0,62,38,0,0,64,38,0,0,64,38,0,0,66,38,0,0,66,38,0,0,66,38,0,0,66,38,0,0,66,38,0,0,66,38,0,0,66,38,0,0,66,38,0,0,70,38,0,0,70,38,0,0,70,38,0,0,72,38,0,0,72,38,0,0,72,38,0,0,74,38,0,0,76,38,0,0,76,38,0,0,76,38,0,0,76,38,0,0,78,38,0,0,80,38,0,0,80,38,0,0,80,38,0,0,80,38,0,0,88,38,0,0,92,38,0,0,96,38,0,0,96,38,0,0,98,38,0,0,98,38,0,0,98,38,0,0,98,38,0,0,100,38,0,0,100,38,0,0,100,38,0,0,102,38,0,0,112,38,0,0,114,38,0,0,116,38,0,0,116,38,0,0,116,38,0,0,116,38,0,0,122,38,0,0,122,38,0,0,122,38,0,0,122,38,0,0,122,38,0,0,122,38,0,0,122,38,0,0,122,38,0,0,122,38,0,0,122,38,0,0,122,38,0,0,122,38,0,0,124,38,0,0,126,38,0,0,128,38,0,0,128,38,0,0,128,38,0,0,130,38,0,0,130,38,0,0,132,38,0,0,134,38,0,0,134,38,0,0,134,38,0,0,136,38,0,0,138,38,0,0,138,38,0,0,140,38,0,0,140,38,0,0,140,38,0,0,144,38,0,0,146,38,0,0,148,38,0,0,150,38,0,0,152,38,0,0,152,38,0,0,154,38,0,0,156,38,0,0,158,38,0,0,160,38,0,0,160,38,0,0,162,38,0,0,162,38,0,0,166,38,0,0,168,38,0,0,168,38,0,0,172,38,0,0,174,38,0,0,174,38,0,0,174,38,0,0,176,38,0,0,178,38,0,0,178,38,0,0,178,38,0,0,178,38,0,0,182,38,0,0,186,38,0,0,186,38,0,0,186,38,0,0,190,38,0,0,190,38,0,0,190,38,0,0,192,38,0,0,192,38,0,0,192,38,0,0,194,38,0,0,198,38,0,0,198,38,0,0,198,38,0,0,198,38,0,0,198,38,0,0,200,38,0,0,200,38,0,0,200,38,0,0,202,38,0,0,204,38,0,0,206,38,0,0,208,38,0,0,208,38,0,0,210,38,0,0,210,38,0,0,214,38,0,0,216,38,0,0,218,38,0,0,220,38,0,0,220,38,0,0,220,38,0,0,224,38,0,0,224,38,0,0,224,38,0,0,224,38,0,0,226,38,0,0,226,38,0,0,226,38,0,0,226,38,0,0,226,38,0,0,226,38,0,0,230,38,0,0,232,38,0,0,232,38,0,0,232,38,0,0,234,38,0,0,234,38,0,0,236,38,0,0,236,38,0,0,236,38,0,0,236,38,0,0,236,38,0,0,236,38,0,0,238,38,0,0,240,38,0,0,240,38,0,0,240,38,0,0,240,38,0,0,242,38,0,0,248,38,0,0,248,38,0,0,250,38,0,0,250,38,0,0,250,38,0,0,250,38,0,0,254,38,0,0,254,38,0,0,254,38,0,0,0,39,0,0,0,39,0,0,0,39,0,0,0,39,0,0,0,39,0,0,0,39,0,0,0,39,0,0,0,39,0,0,4,39,0,0,6,39,0,0,6,39,0,0,8,39,0,0,8,39,0,0,8,39,0,0,8,39,0,0,10,39,0,0,12,39,0,0,12,39,0,0,16,39,0,0,16,39,0,0,18,39,0,0,18,39,0,0,20,39,0,0,20,39,0,0,20,39,0,0,20,39,0,0,22,39,0,0,22,39,0,0,26,39,0,0,28,39,0,0,28,39,0,0,28,39,0,0,28,39,0,0,28,39,0,0,28,39,0,0,30,39,0,0,30,39,0,0,32,39,0,0,38,39,0,0,40,39,0,0,40,39,0,0,40,39,0,0,40,39,0,0,40,39,0,0,42,39,0,0,44,39,0,0,46,39,0,0,48,39,0,0,48,39,0,0,50,39,0,0,50,39,0,0,54,39,0,0,54,39,0,0,54,39,0,0,56,39,0,0,56,39,0,0,56,39,0,0,56,39,0,0,56,39,0,0,58,39,0,0,58,39,0,0,58,39,0,0,58,39,0,0,58,39,0,0,58,39,0,0,60,39,0,0,60,39,0,0,60,39,0,0,66,39,0,0,68,39,0,0,68,39,0,0,68,39,0,0,70,39,0,0,74,39,0,0,74,39,0,0,76,39,0,0,76,39,0,0,80,39,0,0,80,39,0,0,82,39,0,0,82,39,0,0,82,39,0,0,82,39,0,0,82,39,0,0,82,39,0,0,82,39,0,0,82,39,0,0,82,39,0,0,86,39,0,0,90,39,0,0,90,39,0,0,90,39,0,0,90,39,0,0,92,39,0,0,94,39,0,0,94,39,0,0,94,39,0,0,94,39,0,0,94,39,0,0,96,39,0,0,98,39,0,0,100,39,0,0,100,39,0,0,100,39,0,0,100,39,0,0,102,39,0,0,102,39,0,0,102,39,0,0,104,39,0,0,104,39,0,0,104,39,0,0,104,39,0,0,104,39,0,0,104,39,0,0,106,39,0,0,106,39,0,0,106,39,0,0,108,39,0,0,108,39,0,0,112,39,0,0,114,39,0,0,116,39,0,0,118,39,0,0,122,39,0,0,122,39,0,0,122,39,0,0,122,39,0,0,122,39,0,0,124,39,0,0,124,39,0,0,124,39,0,0,126,39,0,0,126,39,0,0,126,39,0,0,126,39,0,0,128,39,0,0,128,39,0,0,130,39,0,0,132,39,0,0,134,39,0,0,134,39,0,0,134,39,0,0,136,39,0,0,138,39,0,0,140,39,0,0,140,39,0,0,140,39,0,0,140,39,0,0,142,39,0,0,144,39,0,0,146,39,0,0,146,39,0,0,146,39,0,0,146,39,0,0,148,39,0,0,150,39,0,0,150,39,0,0,152,39,0,0,156,39,0,0,156,39,0,0,156,39,0,0,156,39,0,0,160,39,0,0,162,39,0,0,162,39,0,0,164,39,0,0,164,39,0,0,164,39,0,0,170,39,0,0,170,39,0,0,170,39,0,0,170,39,0,0,170,39,0,0,170,39,0,0,170,39,0,0,170,39,0,0,172,39,0,0,172,39,0,0,172,39,0,0,174,39,0,0,176,39,0,0,176,39,0,0,178,39,0,0,180,39,0,0,180,39,0,0,182,39,0,0,182,39,0,0,182,39,0,0,182,39,0,0,184,39,0,0,186,39,0,0,186,39,0,0,186,39,0,0,186,39,0,0,188,39,0,0,188,39,0,0,190,39,0,0,190,39,0,0,190,39,0,0,190,39,0,0,192,39,0,0,192,39,0,0,192,39,0,0,192,39,0,0,192,39,0,0,192,39,0,0,194,39,0,0,196,39,0,0,196,39,0,0,198,39,0,0,198,39,0,0,200,39,0,0,202,39,0,0,204,39,0,0,204,39,0,0,206,39,0,0,206,39,0,0,210,39,0,0,212,39,0,0,212,39,0,0,212,39,0,0,212,39,0,0,212,39,0,0,214,39,0,0,214,39,0,0,214,39,0,0,216,39,0,0,216,39,0,0,216,39,0,0,216,39,0,0,216,39,0,0,216,39,0,0,220,39,0,0,220,39,0,0,220,39,0,0,222,39,0,0,224,39,0,0,226,39,0,0,228,39,0,0,228,39,0,0,228,39,0,0,228,39,0,0,228,39,0,0,230,39,0,0,230,39,0,0,232,39,0,0,232,39,0,0,232,39,0,0,232,39,0,0,234,39,0,0,234,39,0,0,236,39,0,0,238,39,0,0,242,39,0,0,242,39,0,0,242,39,0,0,244,39,0,0,244,39,0,0,248,39,0,0,248,39,0,0,248,39,0,0,248,39,0,0,248,39,0,0,248,39,0,0,248,39,0,0,250,39,0,0,250,39,0,0,252,39,0,0,252,39,0,0,252,39,0,0,254,39,0,0,254,39,0,0,2,40,0,0,6,40,0,0,6,40,0,0,6,40,0,0,8,40,0,0,10,40,0,0,14,40,0,0,14,40,0,0,18,40,0,0,18,40,0,0,18,40,0,0,18,40,0,0,20,40,0,0,20,40,0,0,20,40,0,0,20,40,0,0,22,40,0,0,24,40,0,0,28,40,0,0,28,40,0,0,30,40,0,0,30,40,0,0,30,40,0,0,32,40,0,0,34,40,0,0,34,40,0,0,34,40,0,0,34,40,0,0,38,40,0,0,38,40,0,0,40,40,0,0,40,40,0,0,40,40,0,0,42,40,0,0,42,40,0,0,44,40,0,0,48,40,0,0,52,40,0,0,52,40,0,0,52,40,0,0,52,40,0,0,54,40,0,0,56,40,0,0,58,40,0,0,58,40,0,0,62,40,0,0,62,40,0,0,62,40,0,0,62,40,0,0,62,40,0,0,62,40,0,0,64,40,0,0,66,40,0,0,66,40,0,0,66,40,0,0,66,40,0,0,68,40,0,0,68,40,0,0,68,40,0,0,68,40,0,0,68,40,0,0,68,40,0,0,68,40,0,0,68,40,0,0,70,40,0,0,72,40,0,0,72,40,0,0,78,40,0,0,78,40,0,0,80,40,0,0,80,40,0,0,80,40,0,0,82,40,0,0,84,40,0,0,86,40,0,0,88,40,0,0,88,40,0,0,88,40,0,0,90,40,0,0,92,40,0,0,94,40,0,0,94,40,0,0,94,40,0,0,96,40,0,0,96,40,0,0,96,40,0,0,98,40,0,0,98,40,0,0,100,40,0,0,100,40,0,0,102,40,0,0,102,40,0,0,102,40,0,0,104,40,0,0,104,40,0,0,106,40,0,0,110,40,0,0,110,40,0,0,112,40,0,0,112,40,0,0,112,40,0,0,114,40,0,0,114,40,0,0,116,40,0,0,116,40,0,0,118,40,0,0,118,40,0,0,122,40,0,0,126,40,0,0,126,40,0,0,126,40,0,0,126,40,0,0,126,40,0,0,128,40,0,0,130,40,0,0,132,40,0,0,132,40,0,0,132,40,0,0,132,40,0,0,132,40,0,0,134,40,0,0,136,40,0,0,136,40,0,0,136,40,0,0,136,40,0,0,138,40,0,0,138,40,0,0,138,40,0,0,138,40,0,0,142,40,0,0,144,40,0,0,144,40,0,0,148,40,0,0,148,40,0,0,150,40,0,0,152,40,0,0,158,40,0,0,158,40,0,0,160,40,0,0,160,40,0,0,162,40,0,0,162,40,0,0,162,40,0,0,164,40,0,0,164,40,0,0,164,40,0,0,164,40,0,0,168,40,0,0,170,40,0,0,170,40,0,0,172,40,0,0,172,40,0,0,172,40,0,0,172,40,0,0,172,40,0,0,174,40,0,0,176,40,0,0,176,40,0,0,176,40,0,0,176,40,0,0,176,40,0,0,180,40,0,0,180,40,0,0,180,40,0,0,180,40,0,0,182,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,186,40,0,0,186,40,0,0,186,40,0,0,190,40,0,0,192,40,0,0,194,40,0,0,198,40,0,0,198,40,0,0,198,40,0,0,198,40,0,0,202,40,0,0,202,40,0,0,202,40,0,0,202,40,0,0,202,40,0,0,202,40,0,0,204,40,0,0,206,40,0,0,206,40,0,0,206,40,0,0,206,40,0,0,206,40,0,0,206,40,0,0,206,40,0,0,206,40,0,0,206,40,0,0,206,40,0,0,208,40,0,0,210,40,0,0,214,40,0,0,214,40,0,0,216,40,0,0,216,40,0,0,218,40,0,0,220,40,0,0,220,40,0,0,222,40,0,0,224,40,0,0,224,40,0,0,226,40,0,0,230,40,0,0,230,40,0,0,230,40,0,0,232,40,0,0,232,40,0,0,232,40,0,0,234,40,0,0,236,40,0,0,236,40,0,0,236,40,0,0,236,40,0,0,238,40,0,0,242,40,0,0,242,40,0,0,242,40,0,0,242,40,0,0,242,40,0,0,242,40,0,0,242,40,0,0,242,40,0,0,242,40,0,0,242,40,0,0,244,40,0,0,244,40,0,0,246,40,0,0,250,40,0,0,252,40,0,0,252,40,0,0,252,40,0,0,0,41,0,0,0,41,0,0,0,41,0,0,0,41,0,0,4,41,0,0,6,41,0,0,8,41,0,0,10,41,0,0,14,41,0,0,14,41,0,0,14,41,0,0,16,41,0,0,16,41,0,0,16,41,0,0,16,41,0,0,18,41,0,0,20,41,0,0,20,41,0,0,20,41,0,0,20,41,0,0,20,41,0,0,20,41,0,0,20,41,0,0,20,41,0,0,24,41,0,0,26,41,0,0,26,41,0,0,28,41,0,0,28,41,0,0,28,41,0,0,28,41,0,0,32,41,0,0,34,41,0,0,34,41,0,0,36,41,0,0,36,41,0,0,36,41,0,0,38,41,0,0,40,41,0,0,42,41,0,0,46,41,0,0,46,41,0,0,46,41,0,0,48,41,0,0,48,41,0,0,48,41,0,0,48,41,0,0,50,41,0,0,50,41,0,0,50,41,0,0,50,41,0,0,52,41,0,0,52,41,0,0,52,41,0,0,52,41,0,0,54,41,0,0,54,41,0,0,54,41,0,0,58,41,0,0,58,41,0,0,62,41,0,0,62,41,0,0,62,41,0,0,64,41,0,0,64,41,0,0,64,41,0,0,66,41,0,0,68,41,0,0,68,41,0,0,68,41,0,0,68,41,0,0,70,41,0,0,72,41,0,0,74,41,0,0,74,41,0,0,74,41,0,0,76,41,0,0,78,41,0,0,78,41,0,0,80,41,0,0,80,41,0,0,80,41,0,0,80,41,0,0,84,41,0,0,84,41,0,0,86,41,0,0,88,41,0,0,88,41,0,0,88,41,0,0,88,41,0,0,90,41,0,0,90,41,0,0,92,41,0,0,92,41,0,0,98,41,0,0,100,41,0,0,104,41,0,0,104,41,0,0,104,41,0,0,104,41,0,0,106,41,0,0,106,41,0,0,106,41,0,0,106,41,0,0,106,41,0,0,106,41,0,0,110,41,0,0,112,41,0,0,114,41,0,0,116,41,0,0,118,41,0,0,118,41,0,0,118,41,0,0,120,41,0,0,120,41,0,0,124,41,0,0,124,41,0,0,124,41,0,0,124,41,0,0,126,41,0,0,130,41,0,0,130,41,0,0,130,41,0,0,132,41,0,0,132,41,0,0,136,41,0,0,136,41,0,0,136,41,0,0,136,41,0,0,136,41,0,0,136,41,0,0,136,41,0,0,136,41,0,0,138,41,0,0,140,41,0,0,144,41,0,0,144,41,0,0,144,41,0,0,146,41,0,0,146,41,0,0,146,41,0,0,146,41,0,0,146,41,0,0,146,41,0,0,146,41,0,0,148,41,0,0,150,41,0,0,152,41,0,0,152,41,0,0,152,41,0,0,154,41,0,0,154,41,0,0,154,41,0,0,154,41,0,0,154,41,0,0,156,41,0,0,156,41,0,0,158,41,0,0,158,41,0,0,158,41,0,0,158,41,0,0,158,41,0,0,160,41,0,0,160,41,0,0,164,41,0,0,164,41,0,0,164,41,0,0,164,41,0,0,166,41,0,0,168,41,0,0,168,41,0,0,168,41,0,0,172,41,0,0,174,41,0,0,174,41,0,0,174,41,0,0,178,41,0,0,178,41,0,0,180,41,0,0,184,41,0,0,184,41,0,0,184,41,0,0,184,41,0,0,184,41,0,0,184,41,0,0,186,41,0,0,188,41,0,0,190,41,0,0,190,41,0,0,192,41,0,0,192,41,0,0,192,41,0,0,192,41,0,0,192,41,0,0,194,41,0,0,194,41,0,0,196,41,0,0,198,41,0,0,198,41,0,0,198,41,0,0,198,41,0,0,198,41,0,0,200,41,0,0,200,41,0,0,200,41,0,0,204,41,0,0,204,41,0,0,204,41,0,0,204,41,0,0,204,41,0,0,204,41,0,0,206,41,0,0,208,41,0,0,210,41,0,0,210,41,0,0,210,41,0,0,212,41,0,0,212,41,0,0,214,41,0,0,214,41,0,0,214,41,0,0,214,41,0,0,216,41,0,0,216,41,0,0,218,41,0,0,218,41,0,0,220,41,0,0,220,41,0,0,222,41,0,0,222,41,0,0,222,41,0,0,226,41,0,0,228,41,0,0,228,41,0,0,230,41,0,0,232,41,0,0,232,41,0,0,236,41,0,0,240,41,0,0,240,41,0,0,240,41,0,0,240,41,0,0,240,41,0,0,240,41,0,0,240,41,0,0,242,41,0,0,244,41,0,0,246,41,0,0,250,41,0,0,252,41,0,0,252,41,0,0,252,41,0,0,252,41,0,0,252,41,0,0,252,41,0,0,252,41,0,0,254,41,0,0,254,41,0,0,0,42,0,0,0,42,0,0,0,42,0,0,0,42,0,0,4,42,0,0,6,42,0,0,6,42,0,0,8,42,0,0,8,42,0,0,10,42,0,0,14,42,0,0,18,42,0,0,18,42,0,0,20,42,0,0,20,42,0,0,20,42,0,0,22,42,0,0,22,42,0,0,22,42,0,0,22,42,0,0,24,42,0,0,24,42,0,0,28,42,0,0,30,42,0,0,32,42,0,0,32,42,0,0,34,42,0,0,36,42,0,0,36,42,0,0,36,42,0,0,36,42,0,0,40,42,0,0,42,42,0,0,42,42,0,0,42,42,0,0,42,42,0,0,42,42,0,0,44,42,0,0,46,42,0,0,46,42,0,0,48,42,0,0,52,42,0,0,54,42,0,0,56,42,0,0,58,42,0,0,58,42,0,0,58,42,0,0,60,42,0,0,62,42,0,0,62,42,0,0,62,42,0,0,64,42,0,0,66,42,0,0,68,42,0,0,68,42,0,0,68,42,0,0,68,42,0,0,70,42,0,0,70,42,0,0,70,42,0,0,70,42,0,0,70,42,0,0,70,42,0,0,70,42,0,0,72,42,0,0,72,42,0,0,74,42,0,0,74,42,0,0,74,42,0,0,74,42,0,0,76,42,0,0,76,42,0,0,76,42,0,0,80,42,0,0,80,42,0,0,82,42,0,0,82,42,0,0,82,42,0,0,84,42,0,0,88,42,0,0,88,42,0,0,88,42,0,0,88,42,0,0,90,42,0,0,92,42,0,0,94,42,0,0,94,42,0,0,96,42,0,0,100,42,0,0,106,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,110,42,0,0,110,42,0,0,112,42,0,0,112,42,0,0,112,42,0,0,114,42,0,0,114,42,0,0,114,42,0,0,114,42,0,0,118,42,0,0,118,42,0,0,118,42,0,0,118,42,0,0,118,42,0,0,118,42,0,0,118,42,0,0,118,42,0,0,118,42,0,0,118,42,0,0,120,42,0,0,122,42,0,0,122,42,0,0,124,42,0,0,124,42,0,0,124,42,0,0,126,42,0,0,126,42,0,0,126,42,0,0,128,42,0,0,128,42,0,0,128,42,0,0,130,42,0,0,132,42,0,0,136,42,0,0,138,42,0,0,138,42,0,0,138,42,0,0,140,42,0,0,142,42,0,0,144,42,0,0,144,42,0,0,146,42,0,0,150,42,0,0,152,42,0,0,152,42,0,0,152,42,0,0,154,42,0,0,154,42,0,0,156,42,0,0,156,42,0,0,156,42,0,0,156,42,0,0,156,42,0,0,156,42,0,0,160,42,0,0,160,42,0,0,162,42,0,0,162,42,0,0,162,42,0,0,162,42,0,0,162,42,0,0,162,42,0,0,166,42,0,0,170,42,0,0,170,42,0,0,172,42,0,0,172,42,0,0,172,42,0,0,174,42,0,0,176,42,0,0,176,42,0,0,178,42,0,0,178,42,0,0,180,42,0,0,180,42,0,0,180,42,0,0,180,42,0,0,180,42,0,0,180,42,0,0,182,42,0,0,182,42,0,0,182,42,0,0,182,42,0,0,182,42,0,0,182,42,0,0,182,42,0,0,182,42,0,0,184,42,0,0,184,42,0,0,188,42,0,0,190,42,0,0,192,42,0,0,194,42,0,0,194,42,0,0,194,42,0,0,196,42,0,0,196,42,0,0,200,42,0,0,200,42,0,0,200,42,0,0,202,42,0,0,204,42,0,0,204,42,0,0,204,42,0,0,206,42,0,0,206,42,0,0,206,42,0,0,206,42,0,0,206,42,0,0,208,42,0,0,210,42,0,0,210,42,0,0,210,42,0,0,210,42,0,0,210,42,0,0,210,42,0,0,210,42,0,0,210,42,0,0,212,42,0,0,216,42,0,0,218,42,0,0,220,42,0,0,220,42,0,0,222,42,0,0,224,42,0,0,224,42,0,0,224,42,0,0,226,42,0,0,226,42,0,0,226,42,0,0,226,42,0,0,226,42,0,0,232,42,0,0,232,42,0,0,232,42,0,0,234,42,0,0,236,42,0,0,236,42,0,0,236,42,0,0,236,42,0,0,236,42,0,0,236,42,0,0,236,42,0,0,236,42,0,0,236,42,0,0,236,42,0,0,240,42,0,0,240,42,0,0,242,42,0,0,242,42,0,0,242,42,0,0,244,42,0,0,244,42,0,0,244,42,0,0,246,42,0,0,248,42,0,0,248,42,0,0,250,42,0,0,250,42,0,0,252,42,0,0,254,42,0,0,0,43,0,0,0,43,0,0,0,43,0,0,0,43,0,0,0,43,0,0,2,43,0,0,4,43,0,0,6,43,0,0,10,43,0,0,12,43,0,0,16,43,0,0,20,43,0,0,20,43,0,0,22,43,0,0,24,43,0,0,28,43,0,0,30,43,0,0,30,43,0,0,30,43,0,0,32,43,0,0,32,43,0,0,34,43,0,0,36,43,0,0,36,43,0,0,36,43,0,0,38,43,0,0,40,43,0,0,40,43,0,0,42,43,0,0,42,43,0,0,42,43,0,0,42,43,0,0,42,43,0,0,44,43,0,0,46,43,0,0,46,43,0,0,46,43,0,0,46,43,0,0,46,43,0,0,46,43,0,0,50,43,0,0,56,43,0,0,58,43,0,0,60,43,0,0,60,43,0,0,60,43,0,0,60,43,0,0,60,43,0,0,60,43,0,0,60,43,0,0,64,43,0,0,64,43,0,0,64,43,0,0,64,43,0,0,64,43,0,0,68,43,0,0,70,43,0,0,70,43,0,0,72,43,0,0,72,43,0,0,72,43,0,0,74,43,0,0,74,43,0,0,74,43,0,0,74,43,0,0,78,43,0,0,84,43,0,0,84,43,0,0,84,43,0,0,86,43,0,0,88,43,0,0,90,43,0,0,90,43,0,0,90,43,0,0,92,43,0,0,94,43,0,0,96,43,0,0,96,43,0,0,96,43,0,0,98,43,0,0,100,43,0,0,100,43,0,0,102,43,0,0,104,43,0,0,106,43,0,0,108,43,0,0,110,43,0,0,112,43,0,0,112,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,116,43,0,0,116,43,0,0,118,43,0,0,118,43,0,0,118,43,0,0,118,43,0,0,120,43,0,0,122,43,0,0,124,43,0,0,126,43,0,0,126,43,0,0,126,43,0,0,126,43,0,0,126,43,0,0,126,43,0,0,126,43,0,0,126,43,0,0,126,43,0,0,126,43,0,0,126,43,0,0,126,43,0,0,130,43,0,0,130,43,0,0,130,43,0,0,132,43,0,0,132,43,0,0,134,43,0,0,134,43,0,0,136,43,0,0,138,43,0,0,138,43,0,0,138,43,0,0,138,43,0,0,138,43,0,0,138,43,0,0,140,43,0,0,140,43,0,0,140,43,0,0,140,43,0,0,140,43,0,0,140,43,0,0,140,43,0,0,140,43,0,0,140,43,0,0,140,43,0,0,142,43,0,0,142,43,0,0,146,43,0,0,146,43,0,0,146,43,0,0,146,43,0,0,146,43,0,0,146,43,0,0,146,43,0,0,148,43,0,0,150,43,0,0,152,43,0,0,154,43,0,0,154,43,0,0,154,43,0,0,154,43,0,0,156,43,0,0,158,43,0,0,158,43,0,0,158,43,0,0,158,43,0,0,160,43,0,0,162,43,0,0,162,43,0,0,162,43,0,0,162,43,0,0,162,43,0,0,162,43,0,0,164,43,0,0,166,43,0,0,166,43,0,0,168,43,0,0,170,43,0,0,172,43,0,0,172,43,0,0,172,43,0,0,172,43,0,0,174,43,0,0,178,43,0,0,180,43,0,0,180,43,0,0,180,43,0,0,180,43,0,0,182,43,0,0,182,43,0,0,182,43,0,0,182,43,0,0,182,43,0,0,182,43,0,0,182,43,0,0,182,43,0,0,182,43,0,0,186,43,0,0,188,43,0,0,192,43,0,0,194,43,0,0,194,43,0,0,196,43,0,0,196,43,0,0,198,43,0,0,198,43,0,0,198,43,0,0,200,43,0,0,200,43,0,0,202,43,0,0,202,43,0,0,202,43,0,0,208,43,0,0,208,43,0,0,208,43,0,0,208,43,0,0,208,43,0,0,208,43,0,0,210,43,0,0,212,43,0,0,214,43,0,0,214,43,0,0,214,43,0,0,214,43,0,0,214,43,0,0,214,43,0,0,214,43,0,0,214,43,0,0,216,43,0,0,216,43,0,0,216,43,0,0,216,43,0,0,218,43,0,0,218,43,0,0,220,43,0,0,220,43,0,0,222,43,0,0,222,43,0,0,222,43,0,0,222,43,0,0,222,43,0,0,222,43,0,0,222,43,0,0,222,43,0,0,222,43,0,0,224,43,0,0,226,43,0,0,226,43,0,0,228,43,0,0,228,43,0,0,230,43,0,0,230,43,0,0,232,43,0,0,232,43,0,0,232,43,0,0,232,43,0,0,232,43,0,0,232,43,0,0,232,43,0,0,232,43,0,0,232,43,0,0,234,43,0,0,234,43,0,0,236,43,0,0,240,43,0,0,240,43,0,0,240,43,0,0,240,43,0,0,240,43,0,0,242,43,0,0,246,43,0,0,246,43,0,0,246,43,0,0,252,43,0,0,252,43,0,0,252,43,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,2,44,0,0,2,44,0,0,2,44,0,0,4,44,0,0,6,44,0,0,6,44,0,0,8,44,0,0,8,44,0,0,12,44,0,0,12,44,0,0,12,44,0,0,14,44,0,0,14,44,0,0,18,44,0,0,18,44,0,0,18,44,0,0,22,44,0,0,24,44,0,0,26,44,0,0,26,44,0,0,30,44,0,0,30,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,36,44,0,0,38,44,0,0,40,44,0,0,40,44,0,0,40,44,0,0,42,44,0,0,42,44,0,0,42,44,0,0,42,44,0,0,42,44,0,0,42,44,0,0,42,44,0,0,42,44,0,0,42,44,0,0,46,44,0,0,48,44,0,0,48,44,0,0,50,44,0,0,52,44,0,0,54,44,0,0,54,44,0,0,56,44,0,0,58,44,0,0,58,44,0,0,58,44,0,0,58,44,0,0,58,44,0,0,58,44,0,0,58,44,0,0,60,44,0,0,62,44,0,0,62,44,0,0,66,44,0,0,66,44,0,0,68,44,0,0,70,44,0,0,72,44,0,0,74,44,0,0,74,44,0,0,74,44,0,0,74,44,0,0,78,44,0,0,78,44,0,0,78,44,0,0,78,44,0,0,78,44,0,0,80,44,0,0,80,44,0,0,82,44,0,0,84,44,0,0,84,44,0,0,86,44,0,0,86,44,0,0,88,44,0,0,88,44,0,0,88,44,0,0,88,44,0,0,88,44,0,0,88,44,0,0,90,44,0,0,94,44,0,0,94,44,0,0,94,44,0,0,96,44,0,0,96,44,0,0,98,44,0,0,98,44,0,0,98,44,0,0,98,44,0,0,98,44,0,0,98,44,0,0,98,44,0,0,98,44,0,0,98,44,0,0,98,44,0,0,100,44,0,0,102,44,0,0,102,44,0,0,104,44,0,0,104,44,0,0,104,44,0,0,104,44,0,0,104,44,0,0,106,44,0,0,106,44,0,0,106,44,0,0,106,44,0,0,108,44,0,0,108,44,0,0,108,44,0,0,108,44,0,0,108,44,0,0,112,44,0,0,112,44,0,0,114,44,0,0,114,44,0,0,114,44,0,0,114,44,0,0,116,44,0,0,118,44,0,0,118,44,0,0,118,44,0,0,120,44,0,0,120,44,0,0,124,44,0,0,124,44,0,0,124,44,0,0,124,44,0,0,124,44,0,0,126,44,0,0,128,44,0,0,128,44,0,0,128,44,0,0,128,44,0,0,128,44,0,0,132,44,0,0,136,44,0,0,138,44,0,0,138,44,0,0,138,44,0,0,138,44,0,0,138,44,0,0,138,44,0,0,138,44,0,0,138,44,0,0,140,44,0,0,140,44,0,0,140,44,0,0,140,44,0,0,140,44,0,0,142,44,0,0,142,44,0,0,142,44,0,0,142,44,0,0,142,44,0,0,144,44,0,0,144,44,0,0,144,44,0,0,144,44,0,0,146,44,0,0,148,44,0,0,156,44,0,0,160,44,0,0,162,44,0,0,162,44,0,0,162,44,0,0,162,44,0,0,164,44,0,0,164,44,0,0,166,44,0,0,166,44,0,0,166,44,0,0,166,44,0,0,166,44,0,0,166,44,0,0,166,44,0,0,166,44,0,0,168,44,0,0,170,44,0,0,172,44,0,0,174,44,0,0,174,44,0,0,174,44,0,0,174,44,0,0,174,44,0,0,178,44,0,0,178,44,0,0,180,44,0,0,180,44,0,0,180,44,0,0,182,44,0,0,182,44,0,0,182,44,0,0,184,44,0,0,184,44,0,0,184,44,0,0,184,44,0,0,188,44,0,0,190,44,0,0,192,44,0,0,194,44,0,0,196,44,0,0,196,44,0,0,198,44,0,0,198,44,0,0,198,44,0,0,200,44,0,0,200,44,0,0,200,44,0,0,200,44,0,0,204,44,0,0,208,44,0,0,208,44,0,0,208,44,0,0,210,44,0,0,212,44,0,0,212,44,0,0,214,44,0,0,214,44,0,0,214,44,0,0,214,44,0,0,214,44,0,0,218,44,0,0,220,44,0,0,220,44,0,0,220,44,0,0,220,44,0,0,220,44,0,0,222,44,0,0,222,44,0,0,224,44,0,0,224,44,0,0,226,44,0,0,228,44,0,0,230,44,0,0,230,44,0,0,230,44,0,0,232,44,0,0,232,44,0,0,232,44,0,0,234,44,0,0,236,44,0,0,236,44,0,0,236,44,0,0,238,44,0,0,238,44,0,0,242,44,0,0,242,44,0,0,244,44,0,0,244,44,0,0,244,44,0,0,244,44,0,0,244,44,0,0,246,44,0,0,246,44,0,0,248,44,0,0,250,44,0,0,250,44,0,0,250,44,0,0,252,44,0,0,252,44,0,0,254,44,0,0,0,45,0,0,0,45,0,0,2,45,0,0,4,45,0,0,4,45,0,0,4,45,0,0,4,45,0,0,6,45,0,0,6,45,0,0,6,45,0,0,8,45,0,0,10,45,0,0,12,45,0,0,14,45,0,0,14,45,0,0,16,45,0,0,16,45,0,0,18,45,0,0,18,45,0,0,18,45,0,0,18,45,0,0,18,45,0,0,18,45,0,0,22,45,0,0,22,45,0,0,24,45,0,0,28,45,0,0,28,45,0,0,30,45,0,0,30,45,0,0,34,45,0,0,34,45,0,0,34,45,0,0,36,45,0,0,36,45,0,0,36,45,0,0,36,45,0,0,36,45,0,0,36,45,0,0,36,45,0,0,36,45,0,0,38,45,0,0,38,45,0,0,40,45,0,0,44,45,0,0,44,45,0,0,46,45,0,0,48,45,0,0,48,45,0,0,50,45,0,0,52,45,0,0,52,45,0,0,54,45,0,0,54,45,0,0,54,45,0,0,54,45,0,0,54,45,0,0,54,45,0,0,54,45,0,0,54,45,0,0,56,45,0,0,56,45,0,0,56,45,0,0,58,45,0,0,58,45,0,0,60,45,0,0,62,45,0,0,66,45,0,0,66,45,0,0,66,45,0,0,66,45,0,0,66,45,0,0,66,45,0,0,66,45,0,0,68,45,0,0,70,45,0,0,70,45,0,0,70,45,0,0,74,45,0,0,80,45,0,0,80,45,0,0,80,45,0,0,80,45,0,0,84,45,0,0,84,45,0,0,84,45,0,0,84,45,0,0,86,45,0,0,88,45,0,0,90,45,0,0,92,45,0,0,92,45,0,0,94,45,0,0,94,45,0,0,94,45,0,0,94,45,0,0,94,45,0,0,96,45,0,0,96,45,0,0,96,45,0,0,96,45,0,0,96,45,0,0,98,45,0,0,98,45,0,0,100,45,0,0,100,45,0,0,102,45,0,0,102,45,0,0,102,45,0,0,102,45,0,0,104,45,0,0,104,45,0,0,104,45,0,0,104,45,0,0,106,45,0,0,106,45,0,0,106,45,0,0,108,45,0,0,108,45,0,0,110,45,0,0,114,45,0,0,116,45,0,0,116,45,0,0,118,45,0,0,118,45,0,0,118,45,0,0,120,45,0,0,120,45,0,0,120,45,0,0,122,45,0,0,122,45,0,0,122,45,0,0,124,45,0,0,124,45,0,0,126,45,0,0,126,45,0,0,128,45,0,0,128,45,0,0,128,45,0,0,216,45,0,0,218,45,0,0,218,45,0,0,220,45,0,0,220,45,0,0,220,45,0,0,222,45,0,0,224,45,0,0,224,45,0,0,226,45,0,0,230,45,0,0,230,45,0,0,230,45,0,0,232,45,0,0,236,45,0,0,238,45,0,0,240,45,0,0,240,45,0,0,240,45,0,0,242,45,0,0,242,45,0,0,244,45,0,0,246,45,0,0,246,45,0,0,246,45,0,0,248,45,0,0,250,45,0,0,252,45,0,0,252,45,0,0,252,45,0,0,252,45,0,0,254,45,0,0,254,45,0,0,254,45,0,0,254,45,0,0,0,46,0,0,2,46,0,0,2,46,0,0,2,46,0,0,2,46,0,0,4,46,0,0,6,46,0,0,6,46,0,0,12,46,0,0,12,46,0,0,14,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,20,46,0,0,20,46,0,0,20,46,0,0,20,46,0,0,20,46,0,0,20,46,0,0,20,46,0,0,20,46,0,0,20,46,0,0,22,46,0,0,26,46,0,0,26,46,0,0,26,46,0,0,26,46,0,0,28,46,0,0,28,46,0,0,34,46,0,0,34,46,0,0,34,46,0,0,34,46,0,0,34,46,0,0,34,46,0,0,34,46,0,0,34,46,0,0,36,46,0,0,38,46,0,0,40,46,0,0,42,46,0,0,42,46,0,0,44,46,0,0,46,46,0,0,48,46,0,0,48,46,0,0,48,46,0,0,52,46,0,0,52,46,0,0,52,46,0,0,52,46,0,0,52,46,0,0,54,46,0,0,56,46,0,0,58,46,0,0,58,46,0,0,58,46,0,0,60,46,0,0,60,46,0,0,60,46,0,0,60,46,0,0,60,46,0,0,60,46,0,0,60,46,0,0,60,46,0,0,62,46,0,0,62,46,0,0,62,46,0,0,62,46,0,0,64,46,0,0,64,46,0,0,66,46,0,0,66,46,0,0,66,46,0,0,70,46,0,0,70,46,0,0,70,46,0,0,70,46,0,0,70,46,0,0,70,46,0,0,70,46,0,0,72,46,0,0,72,46,0,0,74,46,0,0,74,46,0,0,74,46,0,0,76,46,0,0,76,46,0,0,76,46,0,0,76,46,0,0,76,46,0,0,76,46,0,0,78,46,0,0,78,46,0,0,80,46,0,0,82,46,0,0,82,46,0,0,86,46,0,0,88,46,0,0,88,46,0,0,90,46,0,0,92,46,0,0,96,46,0,0,96,46,0,0,96,46,0,0,96,46,0,0,96,46,0,0,98,46,0,0,100,46,0,0,100,46,0,0,102,46,0,0,104,46,0,0,106,46,0,0,106,46,0,0,108,46,0,0,108,46,0,0,108,46,0,0,108,46,0,0,108,46,0,0,110,46,0,0,112,46,0,0,112,46,0,0,112,46,0,0,114,46,0,0,116,46,0,0,116,46,0,0,116,46,0,0,116,46,0,0,116,46,0,0,116,46,0,0,116,46,0,0,120,46,0,0,120,46,0,0,120,46,0,0,122,46,0,0,122,46,0,0,124,46,0,0,126,46,0,0,126,46,0,0,128,46,0,0,130,46,0,0,130,46,0,0,130,46,0,0,130,46,0,0,130,46,0,0,130,46,0,0,136,46,0,0,136,46,0,0,136,46,0,0,136,46,0,0,138,46,0,0,138,46,0,0,138,46,0,0,140,46,0,0,140,46,0,0,142,46,0,0,144,46,0,0,148,46,0,0,148,46,0,0,148,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,154,46,0,0,154,46,0,0,156,46,0,0,156,46,0,0,156,46,0,0,156,46,0,0,156,46,0,0,158,46,0,0,162,46,0,0,164,46,0,0,164,46,0,0,164,46,0,0,164,46,0,0,166,46,0,0,166,46,0,0,168,46,0,0,170,46,0,0,172,46,0,0,172,46,0,0,176,46,0,0,176,46,0,0,176,46,0,0,178,46,0,0,178,46,0,0,178,46,0,0,182,46,0,0,182,46,0,0,182,46,0,0,184,46,0,0,184,46,0,0,184,46,0,0,188,46,0,0,192,46,0,0,194,46,0,0,194,46,0,0,194,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,200,46,0,0,202,46,0,0,202,46,0,0,202,46,0,0,202,46,0,0,204,46,0,0,206,46,0,0,208,46,0,0,212,46,0,0,214,46,0,0,214,46,0,0,214,46,0,0,214,46,0,0,214,46,0,0,214,46,0,0,216,46,0,0,216,46,0,0,218,46,0,0,218,46,0,0,220,46,0,0,226,46,0,0,226,46,0,0,228,46,0,0,228,46,0,0,228,46,0,0,228,46,0,0,228,46,0,0,228,46,0,0,228,46,0,0,228,46,0,0,228,46,0,0,228,46,0,0,228,46,0,0,230,46,0,0,236,46,0,0,238,46,0,0,238,46,0,0,242,46,0,0,242,46,0,0,242,46,0,0,244,46,0,0,244,46,0,0,244,46,0,0,244,46,0,0,244,46,0,0,248,46,0,0,248,46,0,0,248,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,252,46,0,0,252,46,0,0,252,46,0,0,252,46,0,0,252,46,0,0,252,46,0,0,254,46,0,0,0,47,0,0,0,47,0,0,0,47,0,0,2,47,0,0,2,47,0,0,2,47,0,0,2,47,0,0,2,47,0,0,2,47,0,0,2,47,0,0,2,47,0,0,4,47,0,0,6,47,0,0,6,47,0,0,6,47,0,0,6,47,0,0,6,47,0,0,6,47,0,0,6,47,0,0,6,47,0,0,6,47,0,0,8,47,0,0,12,47,0,0,16,47,0,0,16,47,0,0,16,47,0,0,16,47,0,0,16,47,0,0,16,47,0,0,18,47,0,0,22,47,0,0,24,47,0,0,26,47,0,0,26,47,0,0,30,47,0,0,32,47,0,0,34,47,0,0,34,47,0,0,34,47,0,0,34,47,0,0,34,47,0,0,34,47,0,0,36,47,0,0,36,47,0,0,36,47,0,0,36,47,0,0,36,47,0,0,36,47,0,0,36,47,0,0,38,47,0,0,38,47,0,0,40,47,0,0,40,47,0,0,44,47,0,0,44,47,0,0,46,47,0,0,46,47,0,0,46,47,0,0,46,47,0,0,46,47,0,0,50,47,0,0,52,47,0,0,56,47,0,0,56,47,0,0,56,47,0,0,56,47,0,0,58,47,0,0,58,47,0,0,60,47,0,0,62,47,0,0,62,47,0,0,62,47,0,0,64,47,0,0,64,47,0,0,66,47,0,0,66,47,0,0,66,47,0,0,66,47,0,0,68,47,0,0,68,47,0,0,68,47,0,0,72,47,0,0,78,47,0,0,78,47,0,0,78,47,0,0,78,47,0,0,80,47,0,0,82,47,0,0,82,47,0,0,84,47,0,0,84,47,0,0,88,47,0,0,90,47,0,0,90,47,0,0,90,47,0,0,90,47,0,0,92,47,0,0,92,47,0,0,92,47,0,0,92,47,0,0,92,47,0,0,92,47,0,0,92,47,0,0,92,47,0,0,92,47,0,0,94,47,0,0,96,47,0,0,96,47,0,0,96,47,0,0,100,47,0,0,100,47,0,0,102,47,0,0,102,47,0,0,102,47,0,0,102,47,0,0,104,47,0,0,104,47,0,0,104,47,0,0,106,47,0,0,106,47,0,0,108,47,0,0,108,47,0,0,110,47,0,0,110,47,0,0,110,47,0,0,110,47,0,0,112,47,0,0,114,47,0,0,114,47,0,0,114,47,0,0,116,47,0,0,118,47,0,0,118,47,0,0,124,47,0,0,124,47,0,0,124,47,0,0,126,47,0,0,126,47,0,0,130,47,0,0,136,47,0,0,136,47,0,0,138,47,0,0,138,47,0,0,140,47,0,0,142,47,0,0,142,47,0,0,142,47,0,0,142,47,0,0,146,47,0,0,146,47,0,0,148,47,0,0,148,47,0,0,148,47,0,0,148,47,0,0,148,47,0,0,150,47,0,0,154,47,0,0,154,47,0,0,154,47,0,0,154,47,0,0,154,47,0,0,154,47,0,0,154,47,0,0,154,47,0,0,156,47,0,0,156,47,0,0,158,47,0,0,162,47,0,0,162,47,0,0,162,47,0,0,164,47,0,0,164,47,0,0,164,47,0,0,164,47,0,0,164,47,0,0,166,47,0,0,166,47,0,0,168,47,0,0,168,47,0,0,168,47,0,0,170,47,0,0,170,47,0,0,172,47,0,0,174,47,0,0,176,47,0,0,176,47,0,0,176,47,0,0,176,47,0,0,178,47,0,0,178,47,0,0,178,47,0,0,182,47,0,0,182,47,0,0,182,47,0,0,184,47,0,0,186,47,0,0,186,47,0,0,186,47,0,0,186,47,0,0,188,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,192,47,0,0,194,47,0,0,198,47,0,0,200,47,0,0,200,47,0,0,200,47,0,0,200,47,0,0,202,47,0,0,204,47,0,0,204,47,0,0,204,47,0,0,204,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,208,47,0,0,210,47,0,0,210,47,0,0,210,47,0,0,212,47,0,0,214,47,0,0,214,47,0,0,216,47,0,0,216,47,0,0,218,47,0,0,220,47,0,0,220,47,0,0,220,47,0,0,220,47,0,0,220,47,0,0,220,47,0,0,222,47,0,0,222,47,0,0,224,47,0,0,226,47,0,0,228,47,0,0,228,47,0,0,228,47,0,0,228,47,0,0,230,47,0,0,238,47,0,0,242,47,0,0,244,47,0,0,244,47,0,0,244,47,0,0,244,47,0,0,246,47,0,0,246,47,0,0,246,47,0,0,246,47,0,0,246,47,0,0,246,47,0,0,248,47,0,0,248,47,0,0,248,47,0,0,248,47,0,0,252,47,0,0,0,48,0,0,0,48,0,0,2,48,0,0,6,48,0,0,6,48,0,0,6,48,0,0,8,48,0,0,12,48,0,0,12,48,0,0,14,48,0,0,14,48,0,0,18,48,0,0,18,48,0,0,18,48,0,0,20,48,0,0,20,48,0,0,22,48,0,0,22,48,0,0,24,48,0,0,28,48,0,0,30,48,0,0,30,48,0,0,30,48,0,0,30,48,0,0,32,48,0,0,34,48,0,0,34,48,0,0,36,48,0,0,36,48,0,0,36,48,0,0,36,48,0,0,38,48,0,0,38,48,0,0,38,48,0,0,38,48,0,0,38,48,0,0,40,48,0,0,40,48,0,0,40,48,0,0,40,48,0,0,40,48,0,0,42,48,0,0,42,48,0,0,44,48,0,0,44,48,0,0,46,48,0,0,46,48,0,0,46,48,0,0,46,48,0,0,48,48,0,0,48,48,0,0,50,48,0,0,50,48,0,0,50,48,0,0,52,48,0,0,56,48,0,0,56,48,0,0,58,48,0,0,58,48,0,0,62,48,0,0,64,48,0,0,64,48,0,0,64,48,0,0,64,48,0,0,66,48,0,0,68,48,0,0,68,48,0,0,68,48,0,0,74,48,0,0,76,48,0,0,76,48,0,0,76,48,0,0,76,48,0,0,78,48,0,0,78,48,0,0,78,48,0,0,78,48,0,0,82,48,0,0,84,48,0,0,84,48,0,0,84,48,0,0,84,48,0,0,84,48,0,0,84,48,0,0,86,48,0,0,86,48,0,0,86,48,0,0,88,48,0,0,90,48,0,0,92,48,0,0,94,48,0,0,96,48,0,0,96,48,0,0,98,48,0,0,98,48,0,0,98,48,0,0,98,48,0,0,98,48,0,0,100,48,0,0,102,48,0,0,106,48,0,0,106,48,0,0,106,48,0,0,106,48,0,0,106,48,0,0,106,48,0,0,108,48,0,0,108,48,0,0,112,48,0,0,114,48,0,0,114,48,0,0,114,48,0,0,114,48,0,0,114,48,0,0,114,48,0,0,114,48,0,0,114,48,0,0,116,48,0,0,116,48,0,0,118,48,0,0,120,48,0,0,120,48,0,0,120,48,0,0,122,48,0,0,122,48,0,0,122,48,0,0,124,48,0,0,124,48,0,0,124,48,0,0,124,48,0,0,126,48,0,0,126,48,0,0,128,48,0,0,130,48,0,0,130,48,0,0,130,48,0,0,130,48,0,0,130,48,0,0,130,48,0,0,130,48,0,0,132,48,0,0,132,48,0,0,136,48,0,0,136,48,0,0,136,48,0,0,138,48,0,0,138,48,0,0,138,48,0,0,142,48,0,0,142,48,0,0,142,48,0,0,144,48,0,0,144,48,0,0,146,48,0,0,146,48,0,0,146,48,0,0,146,48,0,0,146,48,0,0,146,48,0,0,148,48,0,0,148,48,0,0,148,48,0,0,148,48,0,0,150,48,0,0,150,48,0,0,154,48,0,0,156,48,0,0,156,48,0,0,158,48,0,0,160,48,0,0,162,48,0,0,162,48,0,0,162,48,0,0,164,48,0,0,164,48,0,0,166,48,0,0,166,48,0,0,166,48,0,0,170,48,0,0,176,48,0,0,176,48,0,0,182,48,0,0,182,48,0,0,184,48,0,0,184,48,0,0,184,48,0,0,186,48,0,0,188,48,0,0,188,48,0,0,188,48,0,0,190,48,0,0,190,48,0,0,190,48,0,0,194,48,0,0,194,48,0,0,196,48,0,0,196,48,0,0,204,48,0,0,206,48,0,0,206,48,0,0,206,48,0,0,208,48,0,0,210,48,0,0,210,48,0,0,210,48,0,0,212,48,0,0,212,48,0,0,214,48,0,0,214,48,0,0,214,48,0,0,214,48,0,0,214,48,0,0,216,48,0,0,218,48,0,0,218,48,0,0,220,48,0,0,222,48,0,0,226,48,0,0,226,48,0,0,230,48,0,0,230,48,0,0,230,48,0,0,232,48,0,0,232,48,0,0,234,48,0,0,234,48,0,0,234,48,0,0,234,48,0,0,236,48,0,0,238,48,0,0,240,48,0,0,240,48,0,0,240,48,0,0,240,48,0,0,240,48,0,0,242,48,0,0,242,48,0,0,242,48,0,0,246,48,0,0,246,48,0,0,246,48,0,0,246,48,0,0,248,48,0,0,248,48,0,0,248,48,0,0,250,48,0,0,250,48,0,0,252,48,0,0,252,48,0,0,252,48,0,0,252,48,0,0,252,48,0,0,254,48,0,0,254,48,0,0,2,49,0,0,4,49,0,0,4,49,0,0,6,49,0,0,6,49,0,0,8,49,0,0,10,49,0,0,10,49,0,0,10,49,0,0,12,49,0,0,12,49,0,0,18,49,0,0,18,49,0,0,22,49,0,0,22,49,0,0,22,49,0,0,22,49,0,0,24,49,0,0,26,49,0,0,26,49,0,0,26,49,0,0,26,49,0,0,26,49,0,0,28,49,0,0,28,49,0,0,28,49,0,0,28,49,0,0,30,49,0,0,30,49,0,0,32,49,0,0,32,49,0,0,32,49,0,0,32,49,0,0,32,49,0,0,38,49,0,0,40,49,0,0,40,49,0,0,44,49,0,0,44,49,0,0,46,49,0,0,46,49,0,0,46,49,0,0,46,49,0,0,48,49,0,0,48,49,0,0,48,49,0,0,50,49,0,0,50,49,0,0,50,49,0,0,50,49,0,0,54,49,0,0,60,49,0,0,62,49,0,0,62,49,0,0,62,49,0,0,62,49,0,0,64,49,0,0,64,49,0,0,64,49,0,0,68,49,0,0,72,49,0,0,78,49,0,0,78,49,0,0,78,49,0,0,78,49,0,0,78,49,0,0,78,49,0,0,78,49,0,0,78,49,0,0,78,49,0,0,78,49,0,0,78,49,0,0,78,49,0,0,78,49,0,0,82,49,0,0,84,49,0,0,84,49,0,0,84,49,0,0,84,49,0,0,84,49,0,0,86,49,0,0,86,49,0,0,90,49,0,0,90,49,0,0,92,49,0,0,94,49,0,0,94,49,0,0,94,49,0,0,96,49,0,0,98,49,0,0,98,49,0,0,98,49,0,0,100,49,0,0,102,49,0,0,102,49,0,0,102,49,0,0,102,49,0,0,104,49,0,0,104,49,0,0,104,49,0,0,106,49,0,0,108,49,0,0,108,49,0,0,110,49,0,0,112,49,0,0,112,49,0,0,112,49,0,0,112,49,0,0,112,49,0,0,112,49,0,0,112,49,0,0,112,49,0,0,114,49,0,0,120,49,0,0,120,49,0,0,122,49,0,0,122,49,0,0,130,49,0,0,130,49,0,0,132,49,0,0,132,49,0,0,134,49,0,0,134,49,0,0,134,49,0,0,134,49,0,0,138,49,0,0,138,49,0,0,142,49,0,0,142,49,0,0,144,49,0,0,144,49,0,0,144,49,0,0,146,49,0,0,146,49,0,0,148,49,0,0,148,49,0,0,148,49,0,0,152,49,0,0,152,49,0,0,154,49,0,0,154,49,0,0,156,49,0,0,156,49,0,0,156,49,0,0,158,49,0,0,160,49,0,0,160,49,0,0,164,49,0,0,164,49,0,0,164,49,0,0,164,49,0,0,164,49,0,0,164,49,0,0,170,49,0,0,172,49,0,0,176,49,0,0,178,49,0,0,178,49,0,0,178,49,0,0,180,49,0,0,180,49,0,0,180,49,0,0,180,49,0,0,182,49,0,0,182,49,0,0,182,49,0,0,184,49,0,0,186,49,0,0,190,49,0,0,190,49,0,0,190,49,0,0,190,49,0,0,190,49,0,0,190,49,0,0,190,49,0,0,192,49,0,0,192,49,0,0,192,49,0,0,194,49,0,0,194,49,0,0,194,49,0,0,194,49,0,0,196,49,0,0,198,49,0,0,198,49,0,0,198,49,0,0,198,49,0,0,200,49,0,0,202,49,0,0,202,49,0,0,202,49,0,0,202,49,0,0,202,49,0,0,202,49,0,0,202,49,0,0,202,49,0,0,202,49,0,0,202,49,0,0,202,49,0,0,202,49,0,0,204,49,0,0,204,49,0,0,206,49,0,0,206,49,0,0,206,49,0,0,206,49,0,0,206,49,0,0,206,49,0,0,208,49,0,0,208,49,0,0,208,49,0,0,210,49,0,0,210,49,0,0,210,49,0,0,214,49,0,0,214,49,0,0,214,49,0,0,220,49,0,0,220,49,0,0,222,49,0,0,226,49,0,0,228,49,0,0,228,49,0,0,228,49,0,0,232,49,0,0,232,49,0,0,234,49,0,0,238,49,0,0,238,49,0,0,238,49,0,0,238,49,0,0,238,49,0,0,238,49,0,0,240,49,0,0,240,49,0,0,240,49,0,0,240,49,0,0,240,49,0,0,244,49,0,0,244,49,0,0,248,49,0,0,250,49,0,0,252,49,0,0,252,49,0,0,0,50,0,0,0,50,0,0,0,50,0,0,0,50,0,0,2,50,0,0,2,50,0,0,2,50,0,0,4,50,0,0,4,50,0,0,4,50,0,0,6,50,0,0,8,50,0,0,12,50,0,0,12,50,0,0,12,50,0,0,12,50,0,0,12,50,0,0,12,50,0,0,14,50,0,0,18,50,0,0,20,50,0,0,20,50,0,0,20,50,0,0,22,50,0,0,22,50,0,0,24,50,0,0,28,50,0,0,28,50,0,0,28,50,0,0,28,50,0,0,30,50,0,0,30,50,0,0,30,50,0,0,30,50,0,0,30,50,0,0,32,50,0,0,32,50,0,0,32,50,0,0,32,50,0,0,36,50,0,0,36,50,0,0,36,50,0,0,36,50,0,0,36,50,0,0,36,50,0,0,40,50,0,0,40,50,0,0,40,50,0,0,42,50,0,0,42,50,0,0,42,50,0,0,44,50,0,0,46,50,0,0,48,50,0,0,48,50,0,0,48,50,0,0,48,50,0,0,52,50,0,0,56,50,0,0,56,50,0,0,56,50,0,0,56,50,0,0,58,50,0,0,58,50,0,0,58,50,0,0,60,50,0,0,62,50,0,0,62,50,0,0,64,50,0,0,64,50,0,0,68,50,0,0,68,50,0,0,70,50,0,0,70,50,0,0,72,50,0,0,74,50,0,0,78,50,0,0,82,50,0,0,84,50,0,0,84,50,0,0,84,50,0,0,84,50,0,0,84,50,0,0,84,50,0,0,88,50,0,0,88,50,0,0,88,50,0,0,92,50,0,0,92,50,0,0,92,50,0,0,92,50,0,0,92,50,0,0,94,50,0,0,94,50,0,0,96,50,0,0,100,50,0,0,100,50,0,0,102,50,0,0,104,50,0,0,104,50,0,0,104,50,0,0,104,50,0,0,106,50,0,0,106,50,0,0,106,50,0,0,106,50,0,0,106,50,0,0,106,50,0,0,106,50,0,0,108,50,0,0,110,50,0,0,112,50,0,0,112,50,0,0,112,50,0,0,112,50,0,0,112,50,0,0,112,50,0,0,112,50,0,0,112,50,0,0,112,50,0,0,112,50,0,0,112,50,0,0,114,50,0,0,118,50,0,0,118,50,0,0,118,50,0,0,118,50,0,0,118,50,0,0,120,50,0,0,120,50,0,0,120,50,0,0,124,50,0,0,124,50,0,0,124,50,0,0,124,50,0,0,124,50,0,0,126,50,0,0,130,50,0,0,132,50,0,0,132,50,0,0,134,50,0,0,138,50,0,0,140,50,0,0,142,50,0,0,142,50,0,0,142,50,0,0,142,50,0,0,142,50,0,0,142,50,0,0,144,50,0,0,144,50,0,0,146,50,0,0,146,50,0,0,146,50,0,0,146,50,0,0,146,50,0,0,148,50,0,0,150,50,0,0,150,50,0,0,152,50,0,0,152,50,0,0,154,50,0,0,154,50,0,0,154,50,0,0,156,50,0,0,156,50,0,0,156,50,0,0,160,50,0,0,164,50,0,0,166,50,0,0,166,50,0,0,170,50,0,0,170,50,0,0,172,50,0,0,172,50,0,0,172,50,0,0,172,50,0,0,176,50,0,0,176,50,0,0,176,50,0,0,176,50,0,0,176,50,0,0,178,50,0,0,178,50,0,0,178,50,0,0,178,50,0,0,180,50,0,0,180,50,0,0,180,50,0,0,180,50,0,0,180,50,0,0,184,50,0,0,184,50,0,0,184,50,0,0,184,50,0,0,184,50,0,0,184,50,0,0,186,50,0,0,186,50,0,0,186,50,0,0,186,50,0,0,186,50,0,0,186,50,0,0,186,50,0,0,186,50,0,0,188,50,0,0,188,50,0,0,188,50,0,0,188,50,0,0,188,50,0,0,188,50,0,0,188,50,0,0,190,50,0,0,192,50,0,0,194,50,0,0,198,50,0,0,200,50,0,0,200,50,0,0,200,50,0,0,200,50,0,0,200,50,0,0,200,50,0,0,202,50,0,0,204,50,0,0,204,50,0,0,206,50,0,0,208,50,0,0,208,50,0,0,210,50,0,0,210,50,0,0,210,50,0,0,210,50,0,0,210,50,0,0,210,50,0,0,214,50,0,0,214,50,0,0,216,50,0,0,218,50,0,0,218,50,0,0,220,50,0,0,220,50,0,0,220,50,0,0,222,50,0,0,224,50,0,0,226,50,0,0,226,50,0,0,228,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,232,50,0,0,234,50,0,0,234,50,0,0,236,50,0,0,238,50,0,0,240,50,0,0,240,50,0,0,244,50,0,0,244,50,0,0,244,50,0,0,246,50,0,0,246,50,0,0,246,50,0,0,246,50,0,0,248,50,0,0,248,50,0,0,248,50,0,0,250,50,0,0,250,50,0,0,250,50,0,0,250,50,0,0,250,50,0,0,250,50,0,0,250,50,0,0,0,51,0,0,0,51,0,0,0,51,0,0,0,51,0,0,0,51,0,0,0,51,0,0,0,51,0,0,2,51,0,0,2,51,0,0,2,51,0,0,4,51,0,0,4,51,0,0,4,51,0,0,6,51,0,0,10,51,0,0,12,51,0,0,12,51,0,0,12,51,0,0,12,51,0,0,12,51,0,0,12,51,0,0,12,51,0,0,12,51,0,0,14,51,0,0,14,51,0,0,14,51,0,0,16,51,0,0,20,51,0,0,20,51,0,0,20,51,0,0,20,51,0,0,20,51,0,0,20,51,0,0,20,51,0,0,20,51,0,0,20,51,0,0,24,51,0,0,24,51,0,0,24,51,0,0,24,51,0,0,24,51,0,0,24,51,0,0,24,51,0,0,24,51,0,0,24,51,0,0,24,51,0,0,26,51,0,0,26,51,0,0,30,51,0,0,30,51,0,0,32,51,0,0,32,51,0,0,32,51,0,0,32,51,0,0,32,51,0,0,34,51,0,0,36,51,0,0,36,51,0,0,36,51,0,0,36,51,0,0,38,51,0,0,38,51,0,0,38,51,0,0,40,51,0,0,40,51,0,0,42,51,0,0,44,51,0,0,44,51,0,0,44,51,0,0,44,51,0,0,44,51,0,0,44,51,0,0,44,51,0,0,44,51,0,0,44,51,0,0,46,51,0,0,50,51,0,0,50,51,0,0,56,51,0,0,60,51,0,0,62,51,0,0,62,51,0,0,64,51,0,0,64,51,0,0,66,51,0,0,68,51,0,0,70,51,0,0,72,51,0,0,74,51,0,0,74,51,0,0,76,51,0,0,76,51,0,0,78,51,0,0,78,51,0,0,82,51,0,0,84,51,0,0,84,51,0,0,84,51,0,0,84,51,0,0,84,51,0,0,84,51,0,0,88,51,0,0,88,51,0,0,90,51,0,0,90,51,0,0,90,51,0,0,90,51,0,0,96,51,0,0,98,51,0,0,98,51,0,0,100,51,0,0,100,51,0,0,100,51,0,0,100,51,0,0,100,51,0,0,100,51,0,0,100,51,0,0,100,51,0,0,100,51,0,0,102,51,0,0,102,51,0,0,106,51,0,0,106,51,0,0,106,51,0,0,106,51,0,0,106,51,0,0,106,51,0,0,106,51,0,0,108,51,0,0,110,51,0,0,110,51,0,0,114,51,0,0,116,51,0,0,116,51,0,0,116,51,0,0,118,51,0,0,118,51,0,0,118,51,0,0,118,51,0,0,120,51,0,0,120,51,0,0,122,51,0,0,122,51,0,0,122,51,0,0,124,51,0,0,124,51,0,0,124,51,0,0,126,51,0,0,126,51,0,0,128,51,0,0,128,51,0,0,128,51,0,0,128,51,0,0,130,51,0,0,130,51,0,0,130,51,0,0,132,51,0,0,132,51,0,0,134,51,0,0,134,51,0,0,134,51,0,0,136,51,0,0,136,51,0,0,136,51,0,0,136,51,0,0,140,51,0,0,140,51,0,0,140,51,0,0,140,51,0,0,140,51,0,0,142,51,0,0,142,51,0,0,142,51,0,0,142,51,0,0,142,51,0,0,142,51,0,0,142,51,0,0,144,51,0,0,144,51,0,0,144,51,0,0,146,51,0,0,146,51,0,0,148,51,0,0,148,51,0,0,150,51,0,0,150,51,0,0,150,51,0,0,150,51,0,0,150,51,0,0,152,51,0,0,152,51,0,0,152,51,0,0,152,51,0,0,152,51,0,0,154,51,0,0,156,51,0,0,160,51,0,0,164,51,0,0,164,51,0,0,166,51,0,0,166,51,0,0,168,51,0,0,168,51,0,0,170,51,0,0,170,51,0,0,170,51,0,0,172,51,0,0,174,51,0,0,174,51,0,0,176,51,0,0,178,51,0,0,178,51,0,0,180,51,0,0,182,51,0,0,182,51,0,0,182,51,0,0,186,51,0,0,186,51,0,0,186,51,0,0,186,51,0,0,186,51,0,0,186,51,0,0,186,51,0,0,186,51,0,0,186,51,0,0,186,51,0,0,186,51,0,0,186,51,0,0,186,51,0,0,186,51,0,0,186,51,0,0,186,51,0,0,188,51,0,0,192,51,0,0,194,51,0,0,194,51,0,0,194,51,0,0,194,51,0,0,194,51,0,0,194,51,0,0,194,51,0,0,194,51,0,0,198,51,0,0,198,51,0,0,198,51,0,0,200,51,0,0,200,51,0,0,200,51,0,0,200,51,0,0,200,51,0,0,204,51,0,0,204,51,0,0,206,51,0,0,206,51,0,0,206,51,0,0,206,51,0,0,208,51,0,0,214,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,220,51,0,0,222,51,0,0,222,51,0,0,224,51,0,0,226,51,0,0,230,51,0,0,232,51,0,0,232,51,0,0,232,51,0,0,232,51,0,0,232,51,0,0,234,51,0,0,234,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,240,51,0,0,244,51,0,0,244,51,0,0,244,51,0,0,244,51,0,0,244,51,0,0,244,51,0,0,248,51,0,0,248,51,0,0,248,51,0,0,248,51,0,0,248,51,0,0,250,51,0,0,250,51,0,0,250,51,0,0,250,51,0,0,252,51,0,0,254,51,0,0,0,52,0,0,0,52,0,0,0,52,0,0,2,52,0,0,4,52,0,0,6,52,0,0,10,52,0,0,10,52,0,0,12,52,0,0,18,52,0,0,18,52,0,0,18,52,0,0,22,52,0,0,22,52,0,0,24,52,0,0,24,52,0,0,26,52,0,0,26,52,0,0,28,52,0,0,30,52,0,0,30,52,0,0,34,52,0,0,34,52,0,0,36,52,0,0,36,52,0,0,36,52,0,0,36,52,0,0,36,52,0,0,36,52,0,0,40,52,0,0,42,52,0,0,44,52,0,0,44,52,0,0,44,52,0,0,44,52,0,0,44,52,0,0,46,52,0,0,46,52,0,0,46,52,0,0,48,52,0,0,50,52,0,0,50,52,0,0,50,52,0,0,50,52,0,0,50,52,0,0,52,52,0,0,56,52,0,0,56,52,0,0,60,52,0,0,60,52,0,0,60,52,0,0,60,52,0,0,60,52,0,0,64,52,0,0,66,52,0,0,68,52,0,0,68,52,0,0,68,52,0,0,68,52,0,0,68,52,0,0,68,52,0,0,70,52,0,0,70,52,0,0,70,52,0,0,72,52,0,0,76,52,0,0,76,52,0,0,78,52,0,0,80,52,0,0,80,52,0,0,80,52,0,0,80,52,0,0,82,52,0,0,82,52,0,0,84,52,0,0,84,52,0,0,86,52,0,0,86,52,0,0,86,52,0,0,88,52,0,0,88,52,0,0,92,52,0,0,92,52,0,0,92,52,0,0,92,52,0,0,94,52,0,0,94,52,0,0,94,52,0,0,94,52,0,0,94,52,0,0,94,52,0,0,98,52,0,0,100,52,0,0,100,52,0,0,102,52,0,0,102,52,0,0,102,52,0,0,102,52,0,0,102,52,0,0,104,52,0,0,104,52,0,0,108,52,0,0,108,52,0,0,108,52,0,0,108,52,0,0,108,52,0,0,108,52,0,0,110,52,0,0,110,52,0,0,110,52,0,0,112,52,0,0,112,52,0,0,114,52,0,0,114,52,0,0,114,52,0,0,116,52,0,0,118,52,0,0,120,52,0,0,120,52,0,0,120,52,0,0,120,52,0,0,122,52,0,0,122,52,0,0,122,52,0,0,124,52,0,0,124,52,0,0,124,52,0,0,124,52,0,0,124,52,0,0,128,52,0,0,128,52,0,0,128,52,0,0,128,52,0,0,128,52,0,0,130,52,0,0,130,52,0,0,132,52,0,0,134,52,0,0,138,52,0,0,142,52,0,0,144,52,0,0,146,52,0,0,150,52,0,0,152,52,0,0,154,52,0,0,162,52,0,0,162,52,0,0,162,52,0,0,164,52,0,0,164,52,0,0,166,52,0,0,166,52,0,0,168,52,0,0,168,52,0,0,170,52,0,0,170,52,0,0,172,52,0,0,174,52,0,0,174,52,0,0,176,52,0,0,176,52,0,0,178,52,0,0,180,52,0,0,182,52,0,0,182,52,0,0,184,52,0,0,184,52,0,0,184,52,0,0,184,52,0,0,184,52,0,0,186,52,0,0,186,52,0,0,192,52,0,0,192,52,0,0,194,52,0,0,196,52,0,0,196,52,0,0,196,52,0,0,196,52,0,0,198,52,0,0,200,52,0,0,200,52,0,0,200,52,0,0,202,52,0,0,206,52,0,0,206,52,0,0,206,52,0,0,208,52,0,0,208,52,0,0,208,52,0,0,208,52,0,0,208,52,0,0,210,52,0,0,212,52,0,0,216,52,0,0,220,52,0,0,222,52,0,0,222,52,0,0,224,52,0,0,224,52,0,0,224,52,0,0,232,52,0,0,232,52,0,0,232,52,0,0,232,52,0,0,236,52,0,0,238,52,0,0,240,52,0,0,242,52,0,0,242,52,0,0,242,52,0,0,242,52,0,0,244,52,0,0,244,52,0,0,244,52,0,0,244,52,0,0,244,52,0,0,244,52,0,0,244,52,0,0,244,52,0,0,244,52,0,0,246,52,0,0,248,52,0,0,248,52,0,0,248,52,0,0,250,52,0,0,252,52,0,0,254,52,0,0,254,52,0,0,2,53,0,0,2,53,0,0,2,53,0,0,4,53,0,0,4,53,0,0,4,53,0,0,4,53,0,0,6,53,0,0,8,53,0,0,8,53,0,0,8,53,0,0,10,53,0,0,10,53,0,0,12,53,0,0,12,53,0,0,16,53,0,0,16,53,0,0,16,53,0,0,16,53,0,0,16,53,0,0,16,53,0,0,16,53,0,0,22,53,0,0,22,53,0,0,22,53,0,0,22,53,0,0,24,53,0,0,26,53,0,0,26,53,0,0,28,53,0,0,28,53,0,0,30,53,0,0,30,53,0,0,30,53,0,0,32,53,0,0,32,53,0,0,32,53,0,0,36,53,0,0,36,53,0,0,38,53,0,0,38,53,0,0,38,53,0,0,38,53,0,0,40,53,0,0,42,53,0,0,42,53,0,0,46,53,0,0,48,53,0,0,48,53,0,0,48,53,0,0,48,53,0,0,48,53,0,0,48,53,0,0,48,53,0,0,48,53,0,0,48,53,0,0,48,53,0,0,58,53,0,0,60,53,0,0,60,53,0,0,60,53,0,0,60,53,0,0,60,53,0,0,60,53,0,0,62,53,0,0,62,53,0,0,62,53,0,0,62,53,0,0,64,53,0,0,64,53,0,0,66,53,0,0,66,53,0,0,68,53,0,0,70,53,0,0,70,53,0,0,72,53,0,0,72,53,0,0,72,53,0,0,72,53,0,0,72,53,0,0,76,53,0,0,76,53,0,0,76,53,0,0,76,53,0,0,76,53,0,0,78,53,0,0,80,53,0,0,82,53,0,0,82,53,0,0,82,53,0,0,86,53,0,0,88,53,0,0,90,53,0,0,90,53,0,0,90,53,0,0,94,53,0,0,94,53,0,0,94,53,0,0,94,53,0,0,96,53,0,0,98,53,0,0,98,53,0,0,98,53,0,0,98,53,0,0,98,53,0,0,98,53,0,0,98,53,0,0,98,53,0,0,98,53,0,0,98,53,0,0,100,53,0,0,100,53,0,0,100,53,0,0,102,53,0,0,104,53,0,0,104,53,0,0,104,53,0,0,104,53,0,0,104,53,0,0,104,53,0,0,104,53,0,0,104,53,0,0,106,53,0,0,106,53,0,0,106,53,0,0,106,53,0,0,106,53,0,0,106,53,0,0,106,53,0,0,108,53,0,0,108,53,0,0,108,53,0,0,108,53,0,0,108,53,0,0,110,53,0,0,110,53,0,0,110,53,0,0,112,53,0,0,112,53,0,0,114,53,0,0,118,53,0,0,120,53,0,0,120,53,0,0,122,53,0,0,122,53,0,0,126,53,0,0,128,53,0,0,128,53,0,0,128,53,0,0,128,53,0,0,130,53,0,0,130,53,0,0,132,53,0,0,132,53,0,0,134,53,0,0,134,53,0,0,134,53,0,0,136,53,0,0,136,53,0,0,136,53,0,0,136,53,0,0,136,53,0,0,136,53,0,0,136,53,0,0,138,53,0,0,138,53,0,0,138,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,142,53,0,0,142,53,0,0,142,53,0,0,142,53,0,0,142,53,0,0,146,53,0,0,152,53,0,0,152,53,0,0,152,53,0,0,152,53,0,0,156,53,0,0,156,53,0,0,156,53,0,0,156,53,0,0,156,53,0,0,156,53,0,0,156,53,0,0,156,53,0,0,158,53,0,0,158,53,0,0,158,53,0,0,162,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,166,53,0,0,166,53,0,0,168,53,0,0,168,53,0,0,170,53,0,0,172,53,0,0,172,53,0,0,172,53,0,0,172,53,0,0,174,53,0,0,174,53,0,0,174,53,0,0,174,53,0,0,174,53,0,0,174,53,0,0,174,53,0,0,174,53,0,0,174,53,0,0,174,53,0,0,176,53,0,0,176,53,0,0,178,53,0,0,178,53,0,0,180,53,0,0,180,53,0,0,180,53,0,0,184,53,0,0,188,53,0,0,192,53,0,0,194,53,0,0,194,53,0,0,194,53,0,0,198,53,0,0,200,53,0,0,202,53,0,0,202,53,0,0,202,53,0,0,204,53,0,0,206,53,0,0,206,53,0,0,206,53,0,0,208,53,0,0,208,53,0,0,210,53,0,0,212,53,0,0,212,53,0,0,214,53,0,0,214,53,0,0,216,53,0,0,216,53,0,0,216,53,0,0,216,53,0,0,216,53,0,0,216,53,0,0,216,53,0,0,218,53,0,0,222,53,0,0,222,53,0,0,222,53,0,0,222,53,0,0,222,53,0,0,222,53,0,0,222,53,0,0,222,53,0,0,222,53,0,0,222,53,0,0,224,53,0,0,228,53,0,0,228,53,0,0,230,53,0,0,230,53,0,0,230,53,0,0,230,53,0,0,234,53,0,0,234,53,0,0,234,53,0,0,238,53,0,0,240,53,0,0,240,53,0,0,240,53,0,0,240,53,0,0,240,53,0,0,242,53,0,0,244,53,0,0,244,53,0,0,244,53,0,0,246,53,0,0,246,53,0,0,246,53,0,0,246,53,0,0,248,53,0,0,248,53,0,0,248,53,0,0,248,53,0,0,250,53,0,0,250,53,0,0,252,53,0,0,254,53,0,0,0,54,0,0,4,54,0,0,6,54,0,0,6,54,0,0,8,54,0,0,8,54,0,0,10,54,0,0,12,54,0,0,14,54,0,0,14,54,0,0,16,54,0,0,16,54,0,0,18,54,0,0,20,54,0,0,20,54,0,0,20,54,0,0,20,54,0,0,22,54,0,0,22,54,0,0,22,54,0,0,22,54,0,0,24,54,0,0,24,54,0,0,24,54,0,0,24,54,0,0,30,54,0,0,32,54,0,0,32,54,0,0,32,54,0,0,32,54,0,0,32,54,0,0,34,54,0,0,36,54,0,0,38,54,0,0,42,54,0,0,42,54,0,0,44,54,0,0,44,54,0,0,44,54,0,0,46,54,0,0,48,54,0,0,48,54,0,0,48,54,0,0,52,54,0,0,52,54,0,0,52,54,0,0,52,54,0,0,52,54,0,0,54,54,0,0,54,54,0,0,56,54,0,0,58,54,0,0,58,54,0,0,58,54,0,0,60,54,0,0,60,54,0,0,62,54,0,0,62,54,0,0,62,54,0,0,64,54,0,0,66,54,0,0,66,54,0,0,66,54,0,0,66,54,0,0,68,54,0,0,70,54,0,0,70,54,0,0,70,54,0,0,70,54,0,0,74,54,0,0,80,54,0,0,80,54,0,0,82,54,0,0,84,54,0,0,84,54,0,0,84,54,0,0,84,54,0,0,86,54,0,0,88,54,0,0,88,54,0,0,90,54,0,0,90,54,0,0,92,54,0,0,92,54,0,0,94,54,0,0,96,54,0,0,98,54,0,0,98,54,0,0,98,54,0,0,100,54,0,0,100,54,0,0,102,54,0,0,104,54,0,0,104,54,0,0,106,54,0,0,106,54,0,0,108,54,0,0,108,54,0,0,110,54,0,0,110,54,0,0,110,54,0,0,110,54,0,0,112,54,0,0,112,54,0,0,114,54,0,0,114,54,0,0,114,54,0,0,114,54,0,0,114,54,0,0,114,54,0,0,114,54,0,0,114,54,0,0,114,54,0,0,114,54,0,0,114,54,0,0,116,54,0,0,116,54,0,0,116,54,0,0,118,54,0,0,120,54,0,0,120,54,0,0,124,54,0,0,124,54,0,0,126,54,0,0,130,54,0,0,132,54,0,0,134,54,0,0,134,54,0,0,134,54,0,0,134,54,0,0,134,54,0,0,134,54,0,0,136,54,0,0,136,54,0,0,136,54,0,0,136,54,0,0,136,54,0,0,136,54,0,0,138,54,0,0,140,54,0,0,144,54,0,0,144,54,0,0,144,54,0,0,146,54,0,0,146,54,0,0,148,54,0,0,148,54,0,0,150,54,0,0,150,54,0,0,152,54,0,0,152,54,0,0,152,54,0,0,154,54,0,0,154,54,0,0,154,54,0,0,154,54,0,0,154,54,0,0,156,54,0,0,160,54,0,0,160,54,0,0,160,54,0,0,160,54,0,0,160,54,0,0,160,54,0,0,162,54,0,0,162,54,0,0,162,54,0,0,164,54,0,0,168,54,0,0,170,54,0,0,170,54,0,0,170,54,0,0,170,54,0,0,170,54,0,0,170,54,0,0,172,54,0,0,172,54,0,0,174,54,0,0,176,54,0,0,178,54,0,0,178,54,0,0,182,54,0,0,182,54,0,0,182,54,0,0,182,54,0,0,182,54,0,0,182,54,0,0,184,54,0,0,184,54,0,0,184,54,0,0,188,54,0,0,188,54,0,0,190,54,0,0,190,54,0,0,190,54,0,0,190,54,0,0,192,54,0,0,194,54,0,0,196,54,0,0,196,54,0,0,196,54,0,0,198,54,0,0,198,54,0,0,200,54,0,0,204,54,0,0,208,54,0,0,208,54,0,0,208,54,0,0,212,54,0,0,212,54,0,0,212,54,0,0,212,54,0,0,212,54,0,0,216,54,0,0,218,54,0,0,218,54,0,0,220,54,0,0,220,54,0,0,222,54,0,0,224,54,0,0,228,54,0,0,232,54,0,0,232,54,0,0,232,54,0,0,232,54,0,0,232,54,0,0,232,54,0,0,232,54,0,0,234,54,0,0,234,54,0,0,234,54,0,0,234,54,0,0,238,54,0,0,240,54,0,0,240,54,0,0,240,54,0,0,242,54,0,0,246,54,0,0,250,54,0,0,252,54,0,0,252,54,0,0,252,54,0,0,252,54,0,0,254,54,0,0,0,55,0,0,2,55,0,0,2,55,0,0,4,55,0,0,6,55,0,0,6,55,0,0,8,55,0,0,10,55,0,0,12,55,0,0,12,55,0,0,14,55,0,0,18,55,0,0,20,55,0,0,20,55,0,0,22,55,0,0,24,55,0,0,26,55,0,0,26,55,0,0,30,55,0,0,30,55,0,0,30,55,0,0,32,55,0,0,34,55,0,0,36,55,0,0,38,55,0,0,42,55,0,0,44,55,0,0,48,55,0,0,50,55,0,0,50,55,0,0,50,55,0,0,50,55,0,0,56,55,0,0,58,55,0,0,60,55,0,0,64,55,0,0,64,55,0,0,64,55,0,0,64,55,0,0,66,55,0,0,66,55,0,0,66,55,0,0,66,55,0,0,66,55,0,0,68,55,0,0,68,55,0,0,68,55,0,0,68,55,0,0,68,55,0,0,68,55,0,0,70,55,0,0,72,55,0,0,72,55,0,0,72,55,0,0,72,55,0,0,74,55,0,0,74,55,0,0,76,55,0,0,80,55,0,0,82,55,0,0,82,55,0,0,84,55,0,0,84,55,0,0,84,55,0,0,86,55,0,0,86,55,0,0,86,55,0,0,86,55,0,0,88,55,0,0,88,55,0,0,92,55,0,0,96,55,0,0,100,55,0,0,102,55,0,0,104,55,0,0,106,55,0,0,106,55,0,0,106,55,0,0,106,55,0,0,106,55,0,0,112,55,0,0,112,55,0,0,114,55,0,0,116,55,0,0,120,55,0,0,122,55,0,0,124,55,0,0,124,55,0,0,126,55,0,0,126,55,0,0,126,55,0,0,128,55,0,0,128,55,0,0,128,55,0,0,128,55,0,0,128,55,0,0,128,55,0,0,130,55,0,0,130,55,0,0,134,55,0,0,134,55,0,0,134,55,0,0,136,55,0,0,138,55,0,0,138,55,0,0,138,55,0,0,138,55,0,0,140,55,0,0,140,55,0,0,142,55,0,0,144,55,0,0,144,55,0,0,146,55,0,0,148,55,0,0,148,55,0,0,148,55,0,0,148,55,0,0,148,55,0,0,150,55,0,0,152,55,0,0,152,55,0,0,152,55,0,0,152,55,0,0,154,55,0,0,154,55,0,0,156,55,0,0,158,55,0,0,160,55,0,0,162,55,0,0,162,55,0,0,162,55,0,0,164,55,0,0,170,55,0,0,170,55,0,0,170,55,0,0,170,55,0,0,172,55,0,0,172,55,0,0,172,55,0,0,172,55,0,0,172,55,0,0,174,55,0,0,176,55,0,0,178,55,0,0,180,55,0,0,180,55,0,0,182,55,0,0,186,55,0,0,186,55,0,0,188,55,0,0,190,55,0,0,190,55,0,0,192,55,0,0,192,55,0,0,194,55,0,0,198,55,0,0,198,55,0,0,200,55,0,0,200,55,0,0,202,55,0,0,202,55,0,0,202,55,0,0,202,55,0,0,202,55,0,0,202,55,0,0,206,55,0,0,208,55,0,0,208,55,0,0,208,55,0,0,212,55,0,0,216,55,0,0,222,55,0,0,222,55,0,0,222,55,0,0,222,55,0,0,222,55,0,0,224,55,0,0,226,55,0,0,226,55,0,0,226,55,0,0,228,55,0,0,228,55,0,0,228,55,0,0,228,55,0,0,230,55,0,0,232,55,0,0,232,55,0,0,232,55,0,0,236,55,0,0,240,55,0,0,242,55,0,0,242,55,0,0,242,55,0,0,242,55,0,0,242,55,0,0,244,55,0,0,246,55,0,0,246,55,0,0,250,55,0,0,250,55,0,0,250,55,0,0,250,55,0,0,254,55,0,0,254,55,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,2,56,0,0,2,56,0,0,2,56,0,0,2,56,0,0,2,56,0,0,4,56,0,0,4,56,0,0,4,56,0,0,4,56,0,0,4,56,0,0,4,56,0,0,8,56,0,0,8,56,0,0,8,56,0,0,8,56,0,0,8,56,0,0,8,56,0,0,8,56,0,0,8,56,0,0,8,56,0,0,10,56,0,0,12,56,0,0,12,56,0,0,12,56,0,0,12,56,0,0,12,56,0,0,14,56,0,0,16,56,0,0,18,56,0,0,20,56,0,0,22,56,0,0,24,56,0,0,24,56,0,0,26,56,0,0,26,56,0,0,26,56,0,0,26,56,0,0,26,56,0,0,26,56,0,0,28,56,0,0,28,56,0,0,28,56,0,0,28,56,0,0,28,56,0,0,28,56,0,0,28,56,0,0,28,56,0,0,28,56,0,0,28,56,0,0,28,56,0,0,30,56,0,0,34,56,0,0,34,56,0,0,34,56,0,0,34,56,0,0,34,56,0,0,36,56,0,0,36,56,0,0,36,56,0,0,36,56,0,0,40,56,0,0,40,56,0,0,46,56,0,0,50,56,0,0,50,56,0,0,50,56,0,0,50,56,0,0,50,56,0,0,50,56,0,0,50,56,0,0,52,56,0,0,52,56,0,0,54,56,0,0,54,56,0,0,56,56,0,0,58,56,0,0,58,56,0,0,58,56,0,0,58,56,0,0,58,56,0,0,60,56,0,0,62,56,0,0,66,56,0,0,66,56,0,0,66,56,0,0,66,56,0,0,66,56,0,0,66,56,0,0,66,56,0,0,66,56,0,0,70,56,0,0,72,56,0,0,72,56,0,0,72,56,0,0,72,56,0,0,74,56,0,0,74,56,0,0,76,56,0,0,78,56,0,0,78,56,0,0,78,56,0,0,80,56,0,0,80,56,0,0,82,56,0,0,84,56,0,0,84,56,0,0,84,56,0,0,84,56,0,0,84,56,0,0,86,56,0,0,86,56,0,0,88,56,0,0,88,56,0,0,88,56,0,0,92,56,0,0,96,56,0,0,100,56,0,0,100,56,0,0,100,56,0,0,102,56,0,0,102,56,0,0,102,56,0,0,102,56,0,0,102,56,0,0,104,56,0,0,104,56,0,0,104,56,0,0,106,56,0,0,106,56,0,0,110,56,0,0,110,56,0,0,112,56,0,0,114,56,0,0,114,56,0,0,116,56,0,0,118,56,0,0,120,56,0,0,120,56,0,0,122,56,0,0,124,56,0,0,126,56,0,0,126,56,0,0,130,56,0,0,130,56,0,0,134,56,0,0,138,56,0,0,138,56,0,0,138,56,0,0,138,56,0,0,138,56,0,0,142,56,0,0,142,56,0,0,144,56,0,0,146,56,0,0,148,56,0,0,148,56,0,0,150,56,0,0,150,56,0,0,150,56,0,0,150,56,0,0,156,56,0,0,158,56,0,0,158,56,0,0,158,56,0,0,160,56,0,0,160,56,0,0,160,56,0,0,160,56,0,0,160,56,0,0,160,56,0,0,162,56,0,0,162,56,0,0,162,56,0,0,166,56,0,0,166,56,0,0,166,56,0,0,166,56,0,0,170,56,0,0,170,56,0,0,170,56,0,0,170,56,0,0,170,56,0,0,170,56,0,0,170,56,0,0,170,56,0,0,170,56,0,0,170,56,0,0,172,56,0,0,172,56,0,0,172,56,0,0,172,56,0,0,174,56,0,0,174,56,0,0,178,56,0,0,178,56,0,0,178,56,0,0,178,56,0,0,180,56,0,0,180,56,0,0,180,56,0,0,180,56,0,0,180,56,0,0,182,56,0,0,182,56,0,0,190,56,0,0,190,56,0,0,190,56,0,0,192,56,0,0,194,56,0,0,194,56,0,0,196,56,0,0,198,56,0,0,198,56,0,0,198,56,0,0,198,56,0,0,198,56,0,0,200,56,0,0,200,56,0,0,200,56,0,0,202,56,0,0,206,56,0,0,208,56,0,0,210,56,0,0,210,56,0,0,210,56,0,0,210,56,0,0,210,56,0,0,210,56,0,0,212,56,0,0,212,56,0,0,212,56,0,0,214,56,0,0,214,56,0,0,214,56,0,0,216,56,0,0,216,56,0,0,216,56,0,0,216,56,0,0,220,56,0,0,222,56,0,0,222,56,0,0,222,56,0,0,224,56,0,0,224,56,0,0,226,56,0,0,226,56,0,0,228,56,0,0,228,56,0,0,228,56,0,0,228,56,0,0,232,56,0,0,232,56,0,0,232,56,0,0,232,56,0,0,232,56,0,0,232,56,0,0,232,56,0,0,234,56,0,0,234,56,0,0,234,56,0,0,234,56,0,0,236,56,0,0,238,56,0,0,238,56,0,0,238,56,0,0,238,56,0,0,238,56,0,0,238,56,0,0,238,56,0,0,238,56,0,0,240,56,0,0,240,56,0,0,240,56,0,0,240,56,0,0,240,56,0,0,240,56,0,0,240,56,0,0,240,56,0,0,240,56,0,0,240,56,0,0,244,56,0,0,246,56,0,0,246,56,0,0,248,56,0,0,250,56,0,0,250,56,0,0,250,56,0,0,250,56,0,0,250,56,0,0,252,56,0,0,254,56,0,0,254,56,0,0,0,57,0,0,0,57,0,0,0,57,0,0,0,57,0,0,2,57,0,0,2,57,0,0,2,57,0,0,2,57,0,0,2,57,0,0,2,57,0,0,4,57,0,0,4,57,0,0,4,57,0,0,4,57,0,0,4,57,0,0,4,57,0,0,4,57,0,0,6,57,0,0,8,57,0,0,8,57,0,0,8,57,0,0,8,57,0,0,10,57,0,0,10,57,0,0,12,57,0,0,14,57,0,0,14,57,0,0,18,57,0,0,18,57,0,0,20,57,0,0,20,57,0,0,20,57,0,0,20,57,0,0,22,57,0,0,22,57,0,0,24,57,0,0,24,57,0,0,26,57,0,0,28,57,0,0,30,57,0,0,30,57,0,0,32,57,0,0,32,57,0,0,32,57,0,0,32,57,0,0,32,57,0,0,34,57,0,0,34,57,0,0,34,57,0,0,36,57,0,0,38,57,0,0,40,57,0,0,40,57,0,0,40,57,0,0,42,57,0,0,44,57,0,0,48,57,0,0,48,57,0,0,48,57,0,0,48,57,0,0,48,57,0,0,48,57,0,0,48,57,0,0,48,57,0,0,48,57,0,0,48,57,0,0,48,57,0,0,48,57,0,0,48,57,0,0,48,57,0,0,48,57,0,0,50,57,0,0,52,57,0,0,52,57,0,0,56,57,0,0,56,57,0,0,56,57,0,0,60,57,0,0,60,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,66,57,0,0,66,57,0,0,70,57,0,0,70,57,0,0,70,57,0,0,70,57,0,0,72,57,0,0,74,57,0,0,74,57,0,0,74,57,0,0,74,57,0,0,74,57,0,0,76,57,0,0,76,57,0,0,76,57,0,0,78,57,0,0,80,57,0,0,80,57,0,0,80,57,0,0,80,57,0,0,84,57,0,0,84,57,0,0,86,57,0,0,88,57,0,0,88,57,0,0,90,57,0,0,90,57,0,0,92,57,0,0,94,57,0,0,94,57,0,0,94,57,0,0,96,57,0,0,98,57,0,0,100,57,0,0,100,57,0,0,100,57,0,0,102,57,0,0,102,57,0,0,104,57,0,0,106,57,0,0,106,57,0,0,106,57,0,0,110,57,0,0,110,57,0,0,110,57,0,0,114,57,0,0,114,57,0,0,116,57,0,0,116,57,0,0,116,57,0,0,122,57,0,0,122,57,0,0,122,57,0,0,124,57,0,0,126,57,0,0,130,57,0,0,130,57,0,0,130,57,0,0,130,57,0,0,130,57,0,0,130,57,0,0,132,57,0,0,132,57,0,0,132,57,0,0,132,57,0,0,132,57,0,0,132,57,0,0,134,57,0,0,136,57,0,0,136,57,0,0,136,57,0,0,136,57,0,0,136,57,0,0,136,57,0,0,138,57,0,0,138,57,0,0,138,57,0,0,138,57,0,0,142,57,0,0,142,57,0,0,142,57,0,0,142,57,0,0,142,57,0,0,142,57,0,0,142,57,0,0,144,57,0,0,146,57,0,0,146,57,0,0,148,57,0,0,150,57,0,0,150,57,0,0,150,57,0,0,152,57,0,0,152,57,0,0,152,57,0,0,152,57,0,0,152,57,0,0,152,57,0,0,152,57,0,0,152,57,0,0,152,57,0,0,152,57,0,0,152,57,0,0,152,57,0,0,154,57,0,0,154,57,0,0,154,57,0,0,156,57,0,0,158,57,0,0,158,57,0,0,158,57,0,0,160,57,0,0,164,57,0,0,164,57,0,0,164,57,0,0,166,57,0,0,166,57,0,0,166,57,0,0,168,57,0,0,168,57,0,0,168,57,0,0,170,57,0,0,174,57,0,0,178,57,0,0,178,57,0,0,180,57,0,0,182,57,0,0,182,57,0,0,182,57,0,0,184,57,0,0,184,57,0,0,188,57,0,0,188,57,0,0,188,57,0,0,192,57,0,0,196,57,0,0,200,57,0,0,202,57,0,0,202,57,0,0,202,57,0,0,204,57,0,0,204,57,0,0,204,57,0,0,204,57,0,0,204,57,0,0,204,57,0,0,204,57,0,0,204,57,0,0,204,57,0,0,204,57,0,0,204,57,0,0,206,57,0,0,206,57,0,0,206,57,0,0,206,57,0,0,206,57,0,0,206,57,0,0,208,57,0,0,208,57,0,0,210,57,0,0,212,57,0,0,214,57,0,0,216,57,0,0,216,57,0,0,216,57,0,0,216,57,0,0,216,57,0,0,218,57,0,0,222,57,0,0,224,57,0,0,226,57,0,0,226,57,0,0,228,57,0,0,230,57,0,0,230,57,0,0,232,57,0,0,236,57,0,0,236,57,0,0,240,57,0,0,244,57,0,0,244,57,0,0,244,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,250,57,0,0,252,57,0,0,254,57,0,0,0,58,0,0,0,58,0,0,0,58,0,0,2,58,0,0,2,58,0,0,2,58,0,0,2,58,0,0,2,58,0,0,2,58,0,0,4,58,0,0,4,58,0,0,4,58,0,0,4,58,0,0,4,58,0,0,6,58,0,0,8,58,0,0,8,58,0,0,12,58,0,0,18,58,0,0,18,58,0,0,18,58,0,0,18,58,0,0,18,58,0,0,18,58,0,0,20,58,0,0,20,58,0,0,22,58,0,0,24,58,0,0,26,58,0,0,26,58,0,0,26,58,0,0,26,58,0,0,26,58,0,0,28,58,0,0,30,58,0,0,30,58,0,0,34,58,0,0,34,58,0,0,36,58,0,0,36,58,0,0,38,58,0,0,38,58,0,0,40,58,0,0,40,58,0,0,40,58,0,0,44,58,0,0,44,58,0,0,44,58,0,0,44,58,0,0,48,58,0,0,48,58,0,0,50,58,0,0,52,58,0,0,52,58,0,0,52,58,0,0,54,58,0,0,54,58,0,0,54,58,0,0,54,58,0,0,54,58,0,0,56,58,0,0,58,58,0,0,58,58,0,0,58,58,0,0,60,58,0,0,60,58,0,0,60,58,0,0,62,58,0,0,62,58,0,0,62,58,0,0,66,58,0,0,66,58,0,0,68,58,0,0,68,58,0,0,70,58,0,0,72,58,0,0,72,58,0,0,72,58,0,0,74,58,0,0,74,58,0,0,76,58,0,0,76,58,0,0,78,58,0,0,78,58,0,0,78,58,0,0,80,58,0,0,80,58,0,0,80,58,0,0,82,58,0,0,82,58,0,0,84,58,0,0,84,58,0,0,84,58,0,0,84,58,0,0,84,58,0,0,86,58,0,0,90,58,0,0,92,58,0,0,92,58,0,0,92,58,0,0,92,58,0,0,92,58,0,0,92,58,0,0,92,58,0,0,94,58,0,0,94,58,0,0,94,58,0,0,94,58,0,0,94,58,0,0,96,58,0,0,96,58,0,0,96,58,0,0,98,58,0,0,98,58,0,0,100,58,0,0,100,58,0,0,102,58,0,0,102,58,0,0,104,58,0,0,104,58,0,0,104,58,0,0,104,58,0,0,104,58,0,0,106,58,0,0,106,58,0,0,108,58,0,0,110,58,0,0,112,58,0,0,114,58,0,0,114,58,0,0,116,58,0,0,118,58,0,0,118,58,0,0,118,58,0,0,118,58,0,0,118,58,0,0,118,58,0,0,118,58,0,0,122,58,0,0,124,58,0,0,126,58,0,0,130,58,0,0,130,58,0,0,130,58,0,0,130,58,0,0,132,58,0,0,132,58,0,0,132,58,0,0,138,58,0,0,138,58,0,0,142,58,0,0,142,58,0,0,142,58,0,0,142,58,0,0,144,58,0,0,144,58,0,0,144,58,0,0,146,58,0,0,148,58,0,0,152,58,0,0,154,58,0,0,154,58,0,0,154,58,0,0,158,58,0,0,158,58,0,0,158,58,0,0,158,58,0,0,158,58,0,0,158,58,0,0,158,58,0,0,158,58,0,0,158,58,0,0,158,58,0,0,160,58,0,0,160,58,0,0,160,58,0,0,160,58,0,0,160,58,0,0,162,58,0,0,164,58,0,0,170,58,0,0,170,58,0,0,170,58,0,0,170,58,0,0,170,58,0,0,170,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,174,58,0,0,174,58,0,0,176,58,0,0,180,58,0,0,180,58,0,0,180,58,0,0,180,58,0,0,184,58,0,0,188,58,0,0,192,58,0,0,192,58,0,0,194,58,0,0,194,58,0,0,194,58,0,0,198,58,0,0,198,58,0,0,204,58,0,0,204,58,0,0,204,58,0,0,206,58,0,0,206,58,0,0,208,58,0,0,208,58,0,0,208,58,0,0,208,58,0,0,208,58,0,0,208,58,0,0,208,58,0,0,208,58,0,0,210,58,0,0,210,58,0,0,212,58,0,0,212,58,0,0,214,58,0,0,214,58,0,0,214,58,0,0,214,58,0,0,214,58,0,0,214,58,0,0,214,58,0,0,216,58,0,0,216,58,0,0,216,58,0,0,218,58,0,0,220,58,0,0,220,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,226,58,0,0,226,58,0,0,226,58,0,0,228,58,0,0,228,58,0,0,228,58,0,0,228,58,0,0,228,58,0,0,228,58,0,0,228,58,0,0,228,58,0,0,230,58,0,0,234,58,0,0,234,58,0,0,236,58,0,0,236,58,0,0,236,58,0,0,238,58,0,0,240,58,0,0,240,58,0,0,240,58,0,0,242,58,0,0,242,58,0,0,242,58,0,0,244,58,0,0,246,58,0,0,248,58,0,0,252,58,0,0,252,58,0,0,254,58,0,0,2,59,0,0,2,59,0,0,2,59,0,0,2,59,0,0,2,59,0,0,2,59,0,0,4,59,0,0,4,59,0,0,4,59,0,0,4,59,0,0,4,59,0,0,8,59,0,0,8,59,0,0,10,59,0,0,10,59,0,0,10,59,0,0,10,59,0,0,10,59,0,0,10,59,0,0,14,59,0,0,16,59,0,0,20,59,0,0,20,59,0,0,20,59,0,0,22,59,0,0,22,59,0,0,22,59,0,0,24,59,0,0,24,59,0,0,24,59,0,0,26,59,0,0,26,59,0,0,28,59,0,0,28,59,0,0,28,59,0,0,28,59,0,0,28,59,0,0,28,59,0,0,28,59,0,0,28,59,0,0,28,59,0,0,28,59,0,0,30,59,0,0,30,59,0,0,32,59,0,0,32,59,0,0,32,59,0,0,32,59,0,0,36,59,0,0,36,59,0,0,36,59,0,0,38,59,0,0,38,59,0,0,40,59,0,0,40,59,0,0,40,59,0,0,42,59,0,0,42,59,0,0,42,59,0,0,46,59,0,0,46,59,0,0,46,59,0,0,48,59,0,0,50,59,0,0,50,59,0,0,50,59,0,0,52,59,0,0,52,59,0,0,52,59,0,0,52,59,0,0,52,59,0,0,52,59,0,0,56,59,0,0,56,59,0,0,56,59,0,0,56,59,0,0,56,59,0,0,56,59,0,0,58,59,0,0,58,59,0,0,58,59,0,0,62,59,0,0,62,59,0,0,64,59,0,0,66,59,0,0,68,59,0,0,68,59,0,0,70,59,0,0,70,59,0,0,72,59,0,0,72,59,0,0,74,59,0,0,76,59,0,0,80,59,0,0,80,59,0,0,84,59,0,0,86,59,0,0,86,59,0,0,86,59,0,0,86,59,0,0,88,59,0,0,88,59,0,0,92,59,0,0,92,59,0,0,92,59,0,0,92,59,0,0,92,59,0,0,92,59,0,0,94,59,0,0,94,59,0,0,94,59,0,0,94,59,0,0,94,59,0,0,96,59,0,0,96,59,0,0,102,59,0,0,102,59,0,0,102,59,0,0,106,59,0,0,106,59,0,0,106,59,0,0,108,59,0,0,110,59,0,0,112,59,0,0,114,59,0,0,114,59,0,0,116,59,0,0,116,59,0,0,116,59,0,0,116,59,0,0,116,59,0,0,116,59,0,0,116,59,0,0,118,59,0,0,122,59,0,0,124,59,0,0,124,59,0,0,124,59,0,0,124,59,0,0,124,59,0,0,124,59,0,0,124,59,0,0,124,59,0,0,126,59,0,0,126,59,0,0,126,59,0,0,126,59,0,0,126,59,0,0,126,59,0,0,126,59,0,0,126,59,0,0,128,59,0,0,128,59,0,0,132,59,0,0,132,59,0,0,134,59,0,0,134,59,0,0,138,59,0,0,138,59,0,0,140,59,0,0,144,59,0,0,144,59,0,0,144,59,0,0,146,59,0,0,146,59,0,0,150,59,0,0,154,59,0,0,156,59,0,0,158,59,0,0,158,59,0,0,158,59,0,0,160,59,0,0,160,59,0,0,160,59,0,0,164,59,0,0,164,59,0,0,166,59,0,0,166,59,0,0,168,59,0,0,170,59,0,0,172,59,0,0,174,59,0,0,174,59,0,0,174,59,0,0,174,59,0,0,174,59,0,0,176,59,0,0,184,59,0,0,186,59,0,0,186,59,0,0,190,59,0,0,190,59,0,0,194,59,0,0,194,59,0,0,194,59,0,0,194,59,0,0,196,59,0,0,198,59,0,0,202,59,0,0,202,59,0,0,202,59,0,0,202,59,0,0,202,59,0,0,202,59,0,0,202,59,0,0,202,59,0,0,202,59,0,0,204,59,0,0,206,59,0,0,206,59,0,0,206,59,0,0,206,59,0,0,206,59,0,0,208,59,0,0,208,59,0,0,208,59,0,0,208,59,0,0,208,59,0,0,210,59,0,0,210,59,0,0,210,59,0,0,212,59,0,0,214,59,0,0,214,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,218,59,0,0,218,59,0,0,220,59,0,0,220,59,0,0,222,59,0,0,222,59,0,0,222,59,0,0,222,59,0,0,226,59,0,0,228,59,0,0,230,59,0,0,232,59,0,0,232,59,0,0,234,59,0,0,236,59,0,0,238,59,0,0,240,59,0,0,240,59,0,0,242,59,0,0,244,59,0,0,248,59,0,0,248,59,0,0,248,59,0,0,252,59,0,0,254,59,0,0,0,60,0,0,2,60,0,0,2,60,0,0,2,60,0,0,2,60,0,0,4,60,0,0,4,60,0,0,4,60,0,0,6,60,0,0,6,60,0,0,8,60,0,0,8,60,0,0,10,60,0,0,10,60,0,0,10,60,0,0,12,60,0,0,14,60,0,0,16,60,0,0,18,60,0,0,22,60,0,0,22,60,0,0,26,60,0,0,26,60,0,0,30,60,0,0,30,60,0,0,32,60,0,0,32,60,0,0,32,60,0,0,32,60,0,0,36,60,0,0,36,60,0,0,38,60,0,0,38,60,0,0,38,60,0,0,38,60,0,0,38,60,0,0,40,60,0,0,40,60,0,0,40,60,0,0,40,60,0,0,40,60,0,0,40,60,0,0,44,60,0,0,46,60,0,0,46,60,0,0,46,60,0,0,46,60,0,0,46,60,0,0,48,60,0,0,50,60,0,0,56,60,0,0,56,60,0,0,56,60,0,0,58,60,0,0,62,60,0,0,62,60,0,0,62,60,0,0,62,60,0,0,62,60,0,0,62,60,0,0,62,60,0,0,62,60,0,0,64,60,0,0,64,60,0,0,64,60,0,0,64,60,0,0,64,60,0,0,64,60,0,0,66,60,0,0,68,60,0,0,68,60,0,0,70,60,0,0,70,60,0,0,72,60,0,0,72,60,0,0,72,60,0,0,72,60,0,0,72,60,0,0,72,60,0,0,74,60,0,0,76,60,0,0,78,60,0,0,80,60,0,0,82,60,0,0,82,60,0,0,84,60,0,0,84,60,0,0,84,60,0,0,84,60,0,0,84,60,0,0,84,60,0,0,86,60,0,0,86,60,0,0,86,60,0,0,86,60,0,0,86,60,0,0,88,60,0,0,88,60,0,0,88,60,0,0,88,60,0,0,88,60,0,0,88,60,0,0,92,60,0,0,94,60,0,0,96,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,98,60,0,0,100,60,0,0,100,60,0,0,100,60,0,0,100,60,0,0,100,60,0,0,102,60,0,0,102,60,0,0,104,60,0,0,104,60,0,0,106,60,0,0,106,60,0,0,110,60,0,0,112,60,0,0,114,60,0,0,114,60,0,0,114,60,0,0,114,60,0,0,114,60,0,0,114,60,0,0,114,60,0,0,116,60,0,0,116,60,0,0,120,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,126,60,0,0,130,60,0,0,130,60,0,0,132,60,0,0,134,60,0,0,134,60,0,0,134,60,0,0,136,60,0,0,136,60,0,0,136,60,0,0,138,60,0,0,140,60,0,0,140,60,0,0,142,60,0,0,144,60,0,0,144,60,0,0,144,60,0,0,144,60,0,0,146,60,0,0,148,60,0,0,150,60,0,0,150,60,0,0,150,60,0,0,154,60,0,0,154,60,0,0,154,60,0,0,154,60,0,0,156,60,0,0,158,60,0,0,158,60,0,0,158,60,0,0,158,60,0,0,158,60,0,0,158,60,0,0,160,60,0,0,162,60,0,0,166,60,0,0,168,60,0,0,174,60,0,0,176,60,0,0,178,60,0,0,178,60,0,0,178,60,0,0,178,60,0,0,178,60,0,0,178,60,0,0,180,60,0,0,180,60,0,0,180,60,0,0,180,60,0,0,180,60,0,0,182,60,0,0,182,60,0,0,182,60,0,0,182,60,0,0,184,60,0,0,184,60,0,0,186,60,0,0,186,60,0,0,186,60,0,0,186,60,0,0,186,60,0,0,188,60,0,0,188,60,0,0,188,60,0,0,188,60,0,0,188,60,0,0,192,60,0,0,194,60,0,0,194,60,0,0,194,60,0,0,194,60,0,0,198,60,0,0,198,60,0,0,200,60,0,0,200,60,0,0,200,60,0,0,200,60,0,0,204,60,0,0,204,60,0,0,206,60,0,0,206,60,0,0,206,60,0,0,206,60,0,0,206,60,0,0,206,60,0,0,206,60,0,0,208,60,0,0,210,60,0,0,210,60,0,0,212,60,0,0,214,60,0,0,216,60,0,0,216,60,0,0,218,60,0,0,218,60,0,0,218,60,0,0,218,60,0,0,218,60,0,0,220,60,0,0,220,60,0,0,220,60,0,0,222,60,0,0,222,60,0,0,222,60,0,0,222,60,0,0,222,60,0,0,222,60,0,0,224,60,0,0,226,60,0,0,226,60,0,0,228,60,0,0,230,60,0,0,234,60,0,0,234,60,0,0,236,60,0,0,240,60,0,0,242,60,0,0,242,60,0,0,242,60,0,0,242,60,0,0,242,60,0,0,244,60,0,0,244,60,0,0,244,60,0,0,246,60,0,0,246,60,0,0,248,60,0,0,248,60,0,0,248,60,0,0,250,60,0,0,252,60,0,0,254,60,0,0,254,60,0,0,0,61,0,0,2,61,0,0,2,61,0,0,4,61,0,0,4,61,0,0,4,61,0,0,6,61,0,0,8,61,0,0,10,61,0,0,10,61,0,0,10,61,0,0,12,61,0,0,14,61,0,0,16,61,0,0,16,61,0,0,16,61,0,0,20,61,0,0,22,61,0,0,24,61,0,0,24,61,0,0,24,61,0,0,26,61,0,0,26,61,0,0,26,61,0,0,26,61,0,0,28,61,0,0,30,61,0,0,30,61,0,0,32,61,0,0,36,61,0,0,36,61,0,0,38,61,0,0,38,61,0,0,38,61,0,0,38,61,0,0,38,61,0,0,38,61,0,0,38,61,0,0,40,61,0,0,42,61,0,0,42,61,0,0,42,61,0,0,46,61,0,0,48,61,0,0,48,61,0,0,50,61,0,0,50,61,0,0,54,61,0,0,54,61,0,0,60,61,0,0,66,61,0,0,68,61,0,0,68,61,0,0,68,61,0,0,68,61,0,0,68,61,0,0,70,61,0,0,70,61,0,0,70,61,0,0,70,61,0,0,70,61,0,0,72,61,0,0,76,61,0,0,76,61,0,0,78,61,0,0,78,61,0,0,78,61,0,0,78,61,0,0,80,61,0,0,82,61,0,0,90,61,0,0,92,61,0,0,94,61,0,0,96,61,0,0,96,61,0,0,98,61,0,0,98,61,0,0,100,61,0,0,102,61,0,0,104,61,0,0,104,61,0,0,104,61,0,0,104,61,0,0,104,61,0,0,104,61,0,0,104,61,0,0,106,61,0,0,106,61,0,0,106,61,0,0,106,61,0,0,106,61,0,0,108,61,0,0,108,61,0,0,108,61,0,0,110,61,0,0,110,61,0,0,114,61,0,0,118,61,0,0,122,61,0,0,122,61,0,0,126,61,0,0,130,61,0,0,130,61,0,0,130,61,0,0,132,61,0,0,132,61,0,0,132,61,0,0,134,61,0,0,134,61,0,0,136,61,0,0,136,61,0,0,136,61,0,0,136,61,0,0,136,61,0,0,138,61,0,0,138,61,0,0,138,61,0,0,140,61,0,0,142,61,0,0,142,61,0,0,142,61,0,0,142,61,0,0,144,61,0,0,144,61,0,0,148,61,0,0,148,61,0,0,148,61,0,0,148,61,0,0,148,61,0,0,150,61,0,0,154,61,0,0,156,61,0,0,158,61,0,0,158,61,0,0,160,61,0,0,160,61,0,0,164,61,0,0,166,61,0,0,166,61,0,0,166,61,0,0,168,61,0,0,168,61,0,0,168,61,0,0,170,61,0,0,170,61,0,0,174,61,0,0,176,61,0,0,176,61,0,0,176,61,0,0,176,61,0,0,178,61,0,0,178,61,0,0,182,61,0,0,184,61,0,0,184,61,0,0,184,61,0,0,184,61,0,0,184,61,0,0,188,61,0,0,190,61,0,0,192,61,0,0,192,61,0,0,196,61,0,0,196,61,0,0,196,61,0,0,196,61,0,0,196,61,0,0,200,61,0,0,200,61,0,0,200,61,0,0,200,61,0,0,202,61,0,0,206,61,0,0,208,61,0,0,210,61,0,0,210,61,0,0,212,61,0,0,214,61,0,0,214,61,0,0,214,61,0,0,214,61,0,0,214,61,0,0,214,61,0,0,216,61,0,0,218,61,0,0,222,61,0,0,224,61,0,0,224,61,0,0,226,61,0,0,226,61,0,0,226,61,0,0,228,61,0,0,230,61,0,0,232,61,0,0,234,61,0,0,234,61,0,0,234,61,0,0,234,61,0,0,240,61,0,0,240,61,0,0,240,61,0,0,240,61,0,0,240,61,0,0,242,61,0,0,242,61,0,0,242,61,0,0,242,61,0,0,242,61,0,0,242,61,0,0,242,61,0,0,244,61,0,0,244,61,0,0,244,61,0,0,244,61,0,0,244,61,0,0,246,61,0,0,248,61,0,0,248,61,0,0,252,61,0,0,254,61,0,0,254,61,0,0,254,61,0,0,254,61,0,0,254,61,0,0,4,62,0,0,4,62,0,0,4,62,0,0,6,62,0,0,6,62,0,0,8,62,0,0,10,62,0,0,10,62,0,0,10,62,0,0,12,62,0,0,12,62,0,0,12,62,0,0,14,62,0,0,14,62,0,0,14,62,0,0,14,62,0,0,16,62,0,0,16,62,0,0,18,62,0,0,20,62,0,0,20,62,0,0,22,62,0,0,22,62,0,0,22,62,0,0,24,62,0,0,24,62,0,0,26,62,0,0,30,62,0,0,34,62,0,0,36,62,0,0,36,62,0,0,36,62,0,0,36,62,0,0,40,62,0,0,40,62,0,0,42,62,0,0,42,62,0,0,42,62,0,0,42,62,0,0,42,62,0,0,42,62,0,0,42,62,0,0,42,62,0,0,42,62,0,0,44,62,0,0,44,62,0,0,46,62,0,0,46,62,0,0,48,62,0,0,52,62,0,0,52,62,0,0,52,62,0,0,52,62,0,0,54,62,0,0,56,62,0,0,58,62,0,0,58,62,0,0,58,62,0,0,62,62,0,0,62,62,0,0,62,62,0,0,62,62,0,0,64,62,0,0,64,62,0,0,64,62,0,0,64,62,0,0,64,62,0,0,68,62,0,0,70,62,0,0,70,62,0,0,74,62,0,0,76,62,0,0,76,62,0,0,76,62,0,0,76,62,0,0,78,62,0,0,78,62,0,0,78,62,0,0,78,62,0,0,80,62,0,0,80,62,0,0,80,62,0,0,80,62,0,0,80,62,0,0,82,62,0,0,82,62,0,0,82,62,0,0,86,62,0,0,88,62,0,0,90,62,0,0,90,62,0,0,90,62,0,0,90,62,0,0,92,62,0,0,96,62,0,0,96,62,0,0,98,62,0,0,100,62,0,0,100,62,0,0,100,62,0,0,102,62,0,0,104,62,0,0,106,62,0,0,106,62,0,0,106,62,0,0,108,62,0,0,108,62,0,0,108,62,0,0,108,62,0,0,108,62,0,0,108,62,0,0,108,62,0,0,110,62,0,0,112,62,0,0,112,62,0,0,116,62,0,0,118,62,0,0,118,62,0,0,120,62,0,0,122,62,0,0,122,62,0,0,122,62,0,0,124,62,0,0,124,62,0,0,124,62,0,0,124,62,0,0,124,62,0,0,124,62,0,0,124,62,0,0,124,62,0,0,124,62,0,0,124,62,0,0,126,62,0,0,128,62,0,0,128,62,0,0,128,62,0,0,128,62,0,0,128,62,0,0,128,62,0,0,128,62,0,0,128,62,0,0,130,62,0,0,130,62,0,0,130,62,0,0,132,62,0,0,132,62,0,0,134,62,0,0,134,62,0,0,134,62,0,0,134,62,0,0,134,62,0,0,138,62,0,0,138,62,0,0,138,62,0,0,142,62,0,0,142,62,0,0,144,62,0,0,146,62,0,0,148,62,0,0,148,62,0,0,148,62,0,0,148,62,0,0,150,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,154,62,0,0,156,62,0,0,158,62,0,0,158,62,0,0,158,62,0,0,158,62,0,0,158,62,0,0,158,62,0,0,158,62,0,0,158,62,0,0,158,62,0,0,158,62,0,0,160,62,0,0,160,62,0,0,164,62,0,0,164,62,0,0,164,62,0,0,168,62,0,0,168,62,0,0,172,62,0,0,172,62,0,0,174,62,0,0,176,62,0,0,180,62,0,0,180,62,0,0,184,62,0,0,186,62,0,0,188,62,0,0,188,62,0,0,190,62,0,0,190,62,0,0,190,62,0,0,190,62,0,0,190,62,0,0,196,62,0,0,200,62,0,0,200,62,0,0,202,62,0,0,202,62,0,0,202,62,0,0,204,62,0,0,204,62,0,0,206,62,0,0,206,62,0,0,206,62,0,0,208,62,0,0,210,62,0,0,216,62,0,0,216,62,0,0,216,62,0,0,216,62,0,0,216,62,0,0,216,62,0,0,218,62,0,0,218,62,0,0,218,62,0,0,218,62,0,0,218,62,0,0,220,62,0,0,220,62,0,0,220,62,0,0,220,62,0,0,220,62,0,0,220,62,0,0,224,62,0,0,226,62,0,0,228,62,0,0,228,62,0,0,228,62,0,0,230,62,0,0,232,62,0,0,232,62,0,0,238,62,0,0,238,62,0,0,238,62,0,0,238,62,0,0,240,62,0,0,240,62,0,0,242,62,0,0,244,62,0,0,246,62,0,0,246,62,0,0,246,62,0,0,248,62,0,0,248,62,0,0,248,62,0,0,250,62,0,0,250,62,0,0,250,62,0,0,252,62,0,0,0,63,0,0,2,63,0,0,4,63,0,0,4,63,0,0,4,63,0,0,4,63,0,0,4,63,0,0,8,63,0,0,10,63,0,0,12,63,0,0,12,63,0,0,12,63,0,0,14,63,0,0,14,63,0,0,14,63,0,0,14,63,0,0,14,63,0,0,14,63,0,0,14,63,0,0,16,63,0,0,16,63,0,0,16,63,0,0,16,63,0,0,18,63,0,0,18,63,0,0,18,63,0,0,22,63,0,0,26,63,0,0,26,63,0,0,28,63,0,0,28,63,0,0,28,63,0,0,28,63,0,0,28,63,0,0,28,63,0,0,30,63,0,0,30,63,0,0,30,63,0,0,30,63,0,0,30,63,0,0,32,63,0,0,34,63,0,0,34,63,0,0,34,63,0,0,34,63,0,0,36,63,0,0,38,63,0,0,40,63,0,0,40,63,0,0,40,63,0,0,40,63,0,0,40,63,0,0,42,63,0,0,42,63,0,0,42,63,0,0,42,63,0,0,44,63,0,0,46,63,0,0,46,63,0,0,46,63,0,0,46,63,0,0,46,63,0,0,48,63,0,0,48,63,0,0,48,63,0,0,48,63,0,0,48,63,0,0,50,63,0,0,52,63,0,0,54,63,0,0,56,63,0,0,56,63,0,0,56,63,0,0,56,63,0,0,58,63,0,0,60,63,0,0,60,63,0,0,62,63,0,0,62,63,0,0,62,63,0,0,64,63,0,0,64,63,0,0,64,63,0,0,66,63,0,0,68,63,0,0,68,63,0,0,68,63,0,0,70,63,0,0,72,63,0,0,74,63,0,0,74,63,0,0,74,63,0,0,76,63,0,0,78,63,0,0,78,63,0,0,78,63,0,0,78,63,0,0,80,63,0,0,80,63,0,0,80,63,0,0,82,63,0,0,82,63,0,0,86,63,0,0,88,63,0,0,88,63,0,0,90,63,0,0,94,63,0,0,94,63,0,0,100,63,0,0,102,63,0,0,108,63,0,0,108,63,0,0,108,63,0,0,108,63,0,0,108,63,0,0,110,63,0,0,112,63,0,0,114,63,0,0,114,63,0,0,114,63,0,0,116,63,0,0,116,63,0,0,118,63,0,0,120,63,0,0,122,63,0,0,124,63,0,0,124,63,0,0,124,63,0,0,124,63,0,0,126,63,0,0,126,63,0,0,130,63,0,0,134,63,0,0,136,63,0,0,136,63,0,0,138,63,0,0,138,63,0,0,138,63,0,0,138,63,0,0,138,63,0,0,138,63,0,0,140,63,0,0,140,63,0,0,144,63,0,0,148,63,0,0,148,63,0,0,152,63,0,0,152,63,0,0,152,63,0,0,152,63,0,0,154,63,0,0,154,63,0,0,154,63,0,0,154,63,0,0,156,63,0,0,156,63,0,0,158,63,0,0,162,63,0,0,164,63,0,0,164,63,0,0,166,63,0,0,166,63,0,0,168,63,0,0,168,63,0,0,168,63,0,0,168,63,0,0,168,63,0,0,168,63,0,0,168,63,0,0,170,63,0,0,172,63,0,0,172,63,0,0,174,63,0,0,174,63,0,0,176,63,0,0,176,63,0,0,176,63,0,0,178,63,0,0,178,63,0,0,178,63,0,0,178,63,0,0,180,63,0,0,180,63,0,0,182,63,0,0,182,63,0,0,184,63,0,0,186,63,0,0,186,63,0,0,186,63,0,0,188,63,0,0,188,63,0,0,188,63,0,0,188,63,0,0,192,63,0,0,196,63,0,0,196,63,0,0,196,63,0,0,196,63,0,0,196,63,0,0,198,63,0,0,200,63,0,0,204,63,0,0,204,63,0,0,204,63,0,0,204,63,0,0,204,63,0,0,204,63,0,0,204,63,0,0,204,63,0,0,204,63,0,0,206,63,0,0,206,63,0,0,208,63,0,0,210,63,0,0,212,63,0,0,212,63,0,0,214,63,0,0,214,63,0,0,224,63,0,0,224,63,0,0,224,63,0,0,226,63,0,0,228,63,0,0,228,63,0,0,228,63,0,0,228,63,0,0,232,63,0,0,232,63,0,0,234,63,0,0,234,63,0,0,234,63,0,0,234,63,0,0,234,63,0,0,234,63,0,0,234,63,0,0,234,63,0,0,236,63,0,0,236,63,0,0,236,63,0,0,236,63,0,0,240,63,0,0,242,63,0,0,246,63,0,0,248,63,0,0,248,63,0,0,250,63,0,0,250,63,0,0,252,63,0,0,252,63,0,0,252,63,0,0,0,64,0,0,0,64,0,0,6,64,0,0,8,64,0,0,8,64,0,0,8,64,0,0,10,64,0,0,12,64,0,0,12,64,0,0,12,64,0,0,12,64,0,0,14,64,0,0,14,64,0,0,18,64,0,0,18,64,0,0,20,64,0,0,24,64,0,0,26,64,0,0,26,64,0,0,30,64,0,0,34,64,0,0,34,64,0,0,34,64,0,0,34,64,0,0,34,64,0,0,36,64,0,0,36,64,0,0,38,64,0,0,40,64,0,0,42,64,0,0,46,64,0,0,46,64,0,0,48,64,0,0,48,64,0,0,48,64,0,0,48,64,0,0,48,64,0,0,48,64,0,0,48,64,0,0,50,64,0,0,52,64,0,0,52,64,0,0,56,64,0,0,1,192,77,33,22,103,2,0,1,64,248,186,158,134,3,0,1,192,248,245,125,158,4,0,6,0,238,192,52,139,4,0,9,64,51,167,125,123,3,0,10,64,197,229,235,68,4,0,11,0,239,22,250,169,2,0,13,0,196,97,216,178,3,0,18,64,196,196,106,172,3,0,24,128,25,11,216,92,2,0,24,0,134,194,169,192,2,0,31,192,33,241,31,170,2,0,34,192,167,84,210,120,2,0,36,192,30,110,49,56,3,0,40,128,133,214,75,18,2,0,43,0,46,144,164,171,4,0,44,64,222,2,185,140,4,0,45,0,163,129,66,211,3,0,48,0,54,45,67,87,4,0,49,64,166,206,151,29,4,0,52,0,102,140,182,29,3,0,58,128,114,104,253,182,4,0,59,64,192,82,29,128,4,0,61,0,172,44,56,6,4,0,64,128,250,193,107,221,2,0,66,0,54,99,46,178,4,0,71,192,20,184,39,110,2,0,73,0,61,114,106,39,3,0,75,192,207,70,252,105,3,0,75,0,180,18,171,201,3,0,77,64,162,54,138,161,2,0,77,64,176,186,35,179,4,0,78,192,40,84,194,94,4,0,79,0,177,163,43,99,4,0,81,64,180,239,196,4,2,0,82,192,1,96,162,91,2,0,83,128,126,31,144,121,2,0,88,128,36,74,91,115,3,0,89,64,204,106,201,165,4,0,90,0,3,57,33,93,2,0,91,192,141,74,109,131,4,0,92,0,146,34,144,134,2,0,92,64,36,147,118,183,3,0,96,192,233,146,32,91,4,0,97,0,168,170,47,36,2,0,100,128,29,221,99,27,3,0,100,128,39,24,101,73,4,0,101,0,34,3,201,242,3,0,102,128,68,40,238,124,2,0,106,64,227,134,63,134,2,0,106,192,171,153,68,3,4,0,111,128,46,202,24,4,2,0,111,192,73,90,136,254,3,0,112,64,196,255,216,245,2,0,113,128,128,62,69,127,2,0,113,192,3,227,137,171,4,0,114,128,108,33,106,4,3,0,114,128,41,83,18,120,4,0,115,128,177,168,19,65,3,0,115,192,254,205,34,82,3,0,118,192,136,184,31,75,3,0,121,64,7,188,43,45,3,0,121,0,28,29,226,156,4,0,123,128,186,198,48,187,3,0,127,0,218,94,173,162,4,0,130,192,94,75,195,58,4,0,134,128,252,101,115,238,3,0,134,192,2,116,162,240,3,0,135,0,214,219,22,118,2,0,135,128,40,194,10,231,2,0,136,192,240,221,16,8,2,0,137,0,160,215,63,132,3,0,138,0,185,1,235,85,2,0,141,0,104,68,158,167,3,0,145,192,63,35,181,116,2,0,148,64,137,60,249,9,3,0,149,128,78,65,74,89,4,0,150,0,109,128,152,80,2,0,151,128,58,205,173,51,3,0,153,64,226,152,144,215,2,0,155,64,226,152,218,215,2,0,157,64,29,196,139,88,2,0,159,0,17,27,223,209,2,0,159,192,66,110,112,59,4,0,161,192,200,5,18,48,3,0,167,64,193,128,60,83,3,0,171,0,144,118,240,215,2,0,173,0,228,244,152,220,3,0,174,64,2,72,136,239,3,0,176,192,57,100,208,245,3,0,178,0,239,157,161,45,3,0,179,128,112,61,13,45,3,0,183,64,22,38,57,89,2,0,183,0,86,191,209,153,3,0,189,128,42,84,155,74,4,0,191,192,165,94,124,28,3,0,195,0,200,124,167,86,4,0,196,64,84,60,139,145,2,0,197,128,228,59,49,64,4,0,198,192,52,229,43,31,2,0,199,64,162,183,19,101,2,0,208,192,189,255,250,79,2,0,208,64,72,234,219,238,3,0,209,128,250,156,55,206,3,0,217,64,68,93,156,66,2,0,217,0,66,62,192,145,2,0,218,128,111,108,185,130,2,0,219,64,164,189,167,238,2,0,220,192,13,230,193,56,4,0,221,128,103,186,231,31,3,0,222,128,60,176,204,128,3,0,225,0,154,177,153,18,3,0,226,0,183,184,16,19,2,0,230,192,255,22,135,121,3,0,231,128,115,25,15,129,3,0,235,192,242,20,149,185,2,0,236,192,215,186,75,120,2,0,238,128,129,70,215,158,2,0,239,64,145,185,110,26,2,0,240,0,105,199,236,113,2,0,240,192,51,13,128,0,3,0,240,64,255,45,179,203,3,0,240,128,126,126,45,48,4,0,242,64,29,36,249,51,2,0,243,0,115,251,178,131,2,0,244,192,131,26,201,147,3,0,246,192,215,52,9,106,2,0,247,64,23,11,174,27,2,0,247,128,110,226,235,47,2,0,254,192,72,106,83,221,2,0,255,0,104,13,106,168,2,0,255,0,119,2,70,86,4,0,1,129,202,126,155,14,2,0,1,1,83,88,134,119,4,0,8,129,235,169,16,85,3,0,10,65,234,43,193,203,3,0,15,193,95,7,71,15,2,0,15,129,28,48,200,211,2,0,17,1,134,119,36,131,3,0,20,129,251,174,59,38,4,0,25,65,178,11,77,125,4,0,28,1,118,164,134,146,4,0,29,129,231,147,58,129,4,0,31,129,169,90,212,246,2,0,32,65,67,183,23,109,3,0,35,193,33,126,34,82,4,0,48,193,16,96,213,132,2,0,52,193,242,84,159,99,4,0,56,129,185,97,7,10,2,0,56,129,235,128,182,118,2,0,60,1,193,17,216,93,4,0,64,129,80,116,92,231,3,0,65,65,167,35,166,93,3,0,66,1,1,155,21,192,2,0,66,193,31,132,39,89,3,0,69,129,94,219,235,38,3,0,74,129,37,139,231,65,3,0,76,65,75,150,202,109,3,0,83,1,179,118,194,190,3,0,84,193,68,42,254,182,2,0,84,193,26,135,99,200,3,0,90,193,195,157,216,127,3,0,92,129,137,92,73,199,3,0,94,193,214,204,164,191,2,0,96,129,133,203,229,105,3,0,99,65,41,75,218,23,2,0,100,1,80,54,201,5,4,0,105,129,113,19,193,46,3,0,106,193,148,201,44,10,2,0,106,129,157,125,115,119,4,0,107,129,71,240,115,154,4,0,108,65,102,49,21,130,4,0,112,1,17,7,86,30,4,0,117,193,72,48,156,144,2,0,117,193,253,210,0,58,3,0,117,65,212,214,88,35,4,0,117,193,35,172,214,39,4,0,118,129,79,91,216,206,2,0,119,1,164,4,207,24,2,0,121,193,52,248,204,94,3,0,122,65,249,131,73,250,3,0,126,65,53,59,42,29,3,0,127,129,152,218,48,22,4,0,128,65,17,144,120,33,2,0,129,129,113,154,189,94,2,0,129,1,161,173,81,207,3,0,131,193,230,143,67,161,3,0,134,129,238,22,227,242,2,0,137,1,43,110,42,167,2,0,140,65,164,145,236,140,3,0,143,1,149,65,204,85,2,0,145,1,106,111,61,111,2,0,145,193,206,141,218,151,2,0,145,193,50,56,229,212,2,0,148,65,107,151,144,158,2,0,148,65,107,138,181,45,4,0,149,129,4,238,120,245,3,0,149,193,238,200,120,127,4,0,152,1,118,125,1,69,2,0,152,65,34,179,14,224,3,0,154,65,241,187,104,14,2,0,154,65,42,118,11,201,2,0,154,129,89,196,206,219,3,0,155,129,131,255,179,142,3,0,157,65,84,181,156,87,4,0,158,65,58,144,54,169,3,0,159,193,80,76,229,105,2,0,160,1,20,220,20,233,2,0,161,65,123,167,164,91,3,0,163,65,52,16,68,66,2,0,164,193,63,110,138,87,2,0,164,1,221,67,93,198,3,0,169,193,228,183,114,24,3,0,171,1,69,43,225,136,2,0,172,65,60,27,76,5,2,0,175,65,28,107,232,79,2,0,176,65,30,253,91,90,2,0,177,1,113,52,8,39,3,0,177,193,35,164,234,190,3,0,180,1,235,116,161,162,3,0,181,65,163,185,158,184,3,0,183,65,55,174,61,20,2,0,183,193,20,244,112,8,4,0,184,65,42,103,35,21,4,0,186,129,56,252,8,192,3,0,187,193,165,212,206,85,4,0,190,1,99,28,192,229,2,0,191,129,24,223,70,4,3,0,196,65,195,240,43,240,2,0,196,193,74,98,130,11,3,0,196,193,255,89,23,158,4,0,200,1,205,50,237,35,3,0,202,129,124,104,130,39,3,0,204,193,250,2,5,253,3,0,206,65,198,46,249,152,3,0,208,193,214,234,250,90,2,0,208,129,158,174,167,120,3,0,212,65,149,148,236,178,2,0,214,193,231,147,160,142,2,0,221,65,249,140,163,53,3,0,225,1,113,210,105,126,3,0,225,1,102,6,229,66,4,0,226,129,53,46,226,161,2,0,226,65,158,227,213,33,3,0,230,129,21,75,97,128,3,0,233,1,30,102,26,106,2,0,234,65,105,236,101,188,3,0,239,1,235,62,195,214,3,0,239,65,16,40,48,109,4,0,239,193,220,45,60,134,4,0,242,193,203,113,60,84,3,0,244,1,251,0,109,5,2,0,249,65,38,72,96,92,4,0,252,129,51,138,179,24,3,0,0,2,90,253,207,21,3,0,1,66,128,154,221,17,3,0,6,2,2,81,48,125,2,0,6,2,176,62,170,63,3,0,8,194,35,183,37,215,3,0,8,130,120,232,181,159,4,0,10,194,149,85,101,116,2,0,13,130,215,38,216,200,2,0,13,66,67,156,60,233,3,0,14,194,151,51,176,195,2,0,17,66,223,153,242,33,2,0,17,194,60,81,219,241,2,0,18,2,47,70,54,64,2,0,19,2,121,28,206,7,2,0,21,66,201,102,156,67,3,0,21,66,252,9,133,112,3,0,24,2,111,112,231,27,3,0,24,2,83,105,96,141,4,0,25,130,112,127,69,173,4,0,26,66,192,192,144,43,3,0,26,66,204,12,22,103,3,0,28,2,95,20,100,173,4,0,35,194,66,108,123,145,3,0,36,130,0,12,6,88,2,0,41,130,243,59,205,42,3,0,42,194,205,67,203,144,2,0,44,66,160,115,75,155,3,0,50,66,178,103,145,95,2,0,51,130,229,108,251,125,4,0,53,194,41,188,120,2,3,0,58,194,181,181,125,245,2,0,58,2,231,118,209,192,3,0,58,2,136,240,124,239,3,0,59,130,85,219,98,60,2,0,67,2,193,185,225,245,3,0,69,66,50,160,6,160,2,0,73,194,236,31,194,88,4,0,85,130,215,223,179,176,4,0,88,130,212,137,226,174,4,0,90,194,145,238,35,245,2,0,91,194,153,223,140,247,2,0,91,66,112,47,249,183,3,0,93,2,167,244,186,27,3,0,94,2,126,194,158,27,3,0,95,194,216,73,124,135,4,0,100,194,45,74,65,14,2,0,102,66,129,106,64,218,2,0,103,130,12,0,40,204,2,0,105,2,29,58,4,166,3,0,107,2,97,162,155,219,3,0,113,2,191,98,173,193,3,0,117,130,14,23,240,125,2,0,118,2,138,176,174,87,4,0,121,66,124,249,61,199,3,0,122,66,202,120,251,12,3,0,122,66,47,100,94,52,4,0,123,66,123,81,91,93,3,0,125,2,147,173,157,129,4,0,129,2,220,37,5,158,3,0,132,130,23,102,17,108,4,0,135,130,240,139,254,26,2,0,135,194,121,42,106,121,2,0,135,2,252,26,240,86,3,0,137,2,155,231,161,223,3,0,140,2,158,68,39,154,4,0,143,130,108,222,216,181,2,0,143,66,223,49,252,199,2,0,144,194,2,170,140,186,2,0,145,194,146,182,162,129,2,0,150,194,173,27,92,100,4,0,152,130,208,253,204,24,3,0,152,194,151,237,242,29,4,0,153,130,159,234,101,108,2,0,155,130,15,246,234,108,4,0,155,66,42,36,237,132,4,0,156,66,234,67,252,202,3,0,157,194,183,18,97,132,2,0,157,194,220,56,25,58,4,0,158,130,45,229,177,133,3,0,162,194,220,139,220,59,3,0,162,130,146,184,193,73,3,0,165,130,77,164,240,185,4,0,169,130,93,234,200,141,3,0,169,130,93,234,8,142,3,0,176,130,83,249,198,7,3,0,180,130,88,193,176,245,2,0,180,2,165,250,206,255,3,0,180,66,51,48,125,108,4,0,181,130,23,89,118,103,4,0,183,194,22,196,127,151,2,0,185,2,201,149,204,137,3,0,187,66,156,149,3,41,3,0,188,2,150,231,104,254,2,0,188,194,0,156,23,42,4,0,189,66,230,11,245,47,3,0,189,194,9,157,121,253,3,0,190,130,226,88,49,70,3,0,190,2,73,82,188,59,4,0,193,194,31,114,190,12,4,0,195,66,96,233,85,72,2,0,195,2,29,120,15,151,3,0,196,130,228,194,97,193,2,0,200,194,3,239,220,111,2,0,201,2,34,178,76,33,3,0,202,66,139,217,207,174,4,0,203,130,60,59,116,105,3,0,204,66,196,68,37,115,3,0,207,66,132,165,192,112,2,0,208,66,168,203,189,57,4,0,208,2,95,72,242,75,4,0,212,194,189,124,185,102,4,0,213,66,51,130,4,77,4,0,218,2,246,123,91,13,3,0,219,66,92,46,42,12,2,0,220,194,245,122,73,162,2,0,220,194,18,221,64,214,3,0,222,130,53,46,102,163,2,0,225,2,153,223,98,37,3,0,225,130,15,173,206,191,3,0,231,66,180,103,226,182,3,0,232,194,119,237,120,213,3,0,235,2,3,169,96,80,2,0,238,130,80,176,194,58,2,0,238,194,97,206,129,127,3,0,244,130,67,71,199,251,3,0,249,66,32,12,68,226,3,0,250,194,109,157,91,54,2,0,250,130,192,72,140,143,3,0,252,194,14,137,57,190,3,0,253,130,76,81,212,230,2,0,255,130,205,47,223,68,2,0,2,67,126,13,4,1,2,0,3,67,179,146,62,96,3,0,4,3,167,5,187,31,2,0,10,131,254,215,84,75,4,0,11,195,105,158,58,125,3,0,12,67,165,25,207,6,4,0,13,3,98,103,55,133,2,0,13,131,136,160,128,70,3,0,14,67,52,45,225,19,3,0,14,195,234,237,116,248,3,0,15,3,123,186,245,92,4,0,18,3,3,47,190,39,4,0,19,195,76,81,235,160,2,0,20,195,177,144,172,136,2,0,21,195,231,22,16,108,2,0,23,67,174,57,204,166,4,0,25,3,15,80,102,150,2,0,27,67,181,145,82,43,2,0,27,131,0,10,79,126,3,0,28,67,120,99,75,87,2,0,32,195,37,231,213,68,3,0,33,67,56,110,49,136,3,0,34,67,25,156,62,3,2,0,34,131,187,171,218,181,3,0,35,131,25,205,76,160,2,0,36,195,11,109,45,90,3,0,37,3,204,91,20,155,4,0,39,131,41,229,10,73,2,0,39,131,39,81,247,15,3,0,40,67,59,166,62,29,3,0,40,3,36,9,32,162,3,0,41,67,155,178,245,241,3,0,48,3,3,55,209,107,4,0,50,195,122,230,64,113,3,0,50,67,225,172,136,129,3,0,51,195,194,44,78,229,2,0,52,3,170,77,160,87,2,0,52,3,241,105,143,146,2,0,53,131,111,27,13,143,4,0,55,3,135,121,94,3,3,0,57,195,226,194,196,196,2,0,64,131,28,188,91,155,2,0,70,131,213,59,226,105,4,0,71,195,76,81,75,169,2,0,71,131,5,21,10,64,3,0,71,195,129,59,35,191,3,0,72,195,65,85,21,35,2,0,72,131,26,142,40,241,2,0,72,131,153,223,249,4,3,0,73,67,30,148,192,61,4,0,75,195,76,81,174,169,2,0,75,3,207,124,3,86,4,0,76,195,221,13,121,214,3,0,77,3,189,234,9,66,2,0,78,131,131,29,60,18,2,0,80,195,23,106,201,31,3,0,80,195,92,191,109,153,3,0,82,195,27,208,45,51,3,0,83,131,181,211,89,37,4,0,86,3,197,120,29,236,3,0,89,3,211,146,137,104,3,0,91,3,93,157,245,197,3,0,100,3,186,156,45,16,3,0,101,195,208,152,41,161,3,0,109,67,119,173,126,14,2,0,110,131,57,82,118,36,3,0,112,67,165,51,102,123,2,0,115,195,155,129,245,14,3,0,115,67,238,215,10,118,3,0,116,195,56,164,46,247,3,0,122,195,21,207,62,82,2,0,126,131,196,55,10,178,3,0,127,195,25,117,71,69,2,0,127,67,167,129,64,99,2,0,129,3,149,215,60,248,3,0,130,67,0,139,253,162,2,0,135,3,185,251,72,13,2,0,136,3,186,57,131,0,4,0,139,3,84,227,64,195,3,0,146,195,42,205,117,87,2,0,147,67,41,6,152,27,2,0,147,131,254,227,192,161,2,0,148,131,242,147,136,243,2,0,148,195,202,248,126,135,3,0,148,195,6,102,122,151,3,0,149,67,44,81,230,5,3,0,153,67,248,51,117,184,3,0,155,67,237,175,187,97,4,0,157,131,58,98,50,136,2,0,157,195,41,60,31,124,3,0,158,3,212,207,53,162,3,0,160,195,211,196,211,170,3,0,167,131,115,4,166,60,3,0,168,131,153,223,123,4,3,0,169,3,38,176,20,146,3,0,172,131,244,156,132,73,3,0,172,131,21,24,219,195,3,0,175,67,251,103,2,155,2,0,177,67,212,49,217,168,2,0,178,195,215,157,199,163,2,0,180,67,22,42,95,34,2,0,183,67,42,37,147,116,3,0,183,195,199,187,32,153,3,0,184,131,18,128,25,245,3,0,187,195,31,66,156,12,2,0,190,3,174,28,178,232,2,0,201,67,66,242,91,144,4,0,201,131,101,212,70,186,4,0,204,67,138,54,232,8,3,0,204,67,21,21,131,38,3,0,205,67,27,96,63,221,2,0,208,3,236,239,94,129,2,0,215,131,141,53,125,25,2,0,216,195,134,102,238,94,2,0,216,195,79,243,204,1,4,0,217,195,47,81,54,122,4,0,220,195,236,70,141,5,4,0,221,195,30,23,64,166,4,0,222,131,52,5,172,39,2,0,223,3,126,39,222,63,2,0,226,131,133,115,82,43,4,0,233,195,202,210,135,14,3,0,234,131,21,225,112,39,2,0,234,131,26,203,109,7,4,0,236,131,48,4,94,152,3,0,238,67,97,16,193,148,4,0,243,195,40,182,90,55,4,0,248,195,67,85,162,254,3,0,248,67,165,236,151,2,4,0,249,131,81,248,64,246,2,0,249,3,231,100,129,150,3,0,0,4,63,48,174,91,4,0,2,4,235,148,93,103,4,0,7,68,129,101,80,75,2,0,10,68,48,43,168,154,4,0,11,132,221,240,2,13,4,0,18,4,255,191,232,31,2,0,19,132,103,108,18,128,3,0,19,196,81,168,252,47,4,0,20,132,243,216,78,6,3,0,22,68,224,151,101,12,4,0,23,132,234,193,202,81,3,0,24,4,201,40,217,68,4,0,26,132,127,172,235,128,2,0,27,4,229,10,18,50,3,0,28,132,225,198,98,255,3,0,30,196,35,45,103,233,3,0,31,196,55,80,188,37,2,0,33,4,51,9,241,219,2,0,33,4,193,107,146,178,4,0,34,132,191,104,232,155,2,0,36,68,138,222,32,6,3,0,36,4,207,248,106,97,4,0,39,132,168,128,135,41,2,0,39,68,24,102,96,91,2,0,40,132,59,184,147,61,3,0,40,4,216,203,188,4,4,0,41,4,123,236,179,182,2,0,42,132,44,132,38,170,3,0,47,4,87,243,87,118,3,0,50,68,186,207,149,44,2,0,51,196,114,83,111,49,3,0,52,68,215,18,251,19,2,0,52,4,149,51,74,178,3,0,52,196,197,102,240,238,3,0,59,196,70,133,122,202,2,0,64,4,135,29,170,131,4,0,69,196,125,116,132,12,4,0,69,132,188,167,234,53,4,0,71,132,154,31,51,140,3,0,72,4,187,126,93,9,2,0,72,68,65,84,255,82,2,0,74,4,153,223,246,39,3,0,77,4,1,229,118,5,4,0,79,68,14,69,96,184,2,0,85,132,83,142,27,8,4,0,90,68,77,140,19,190,2,0,92,4,245,77,201,243,3,0,95,132,187,30,206,172,4,0,96,196,81,60,182,6,2,0,96,132,108,36,137,188,2,0,101,196,95,173,92,46,4,0,107,132,149,33,32,152,4,0,111,132,7,138,69,26,2,0,111,68,32,39,12,242,3,0,114,132,133,40,129,195,2,0,115,4,239,67,71,230,2,0,116,4,235,217,85,179,2,0,116,4,235,217,110,179,2,0,116,4,235,217,135,179,2,0,116,4,235,217,158,179,2,0,116,4,235,217,182,179,2,0,116,4,235,217,215,179,2,0,117,132,8,50,8,2,3,0,120,196,99,180,10,51,4,0,121,68,107,238,92,20,3,0,122,68,192,66,171,115,3,0,123,4,216,35,58,118,4,0,125,132,112,61,107,36,4,0,129,196,80,80,103,11,2,0,130,196,131,149,123,66,2,0,132,4,20,50,251,145,3,0,133,68,120,32,112,128,2,0,135,4,204,175,124,95,2,0,135,196,4,135,157,51,4,0,135,132,218,153,60,146,4,0,137,68,56,236,122,93,2,0,138,196,26,235,84,16,4,0,140,68,141,30,73,109,4,0,144,68,75,176,54,243,3,0,153,196,56,164,159,180,2,0,153,4,110,252,193,13,3,0,154,4,64,45,146,151,3,0,154,4,240,86,171,113,4,0,156,132,185,234,138,117,2,0,156,196,62,48,162,238,3,0,161,68,209,151,244,181,2,0,161,132,76,81,225,227,2,0,163,196,25,248,143,152,2,0,163,132,40,247,136,85,3,0,171,196,44,18,153,130,2,0,172,196,52,142,63,162,4,0,173,68,133,72,22,80,2,0,174,132,87,131,173,3,3,0,176,196,36,243,62,101,2,0,178,132,113,1,206,86,4,0,179,196,223,210,69,96,2,0,179,132,99,24,151,227,2,0,183,196,176,95,216,52,3,0,189,132,36,150,89,217,2,0,193,68,190,16,118,77,4,0,196,68,118,14,44,142,2,0,202,196,84,35,139,238,3,0,204,132,240,194,158,227,3,0,216,68,71,244,144,181,2,0,216,132,188,152,110,185,2,0,216,196,203,207,75,35,3,0,217,196,43,186,2,26,3,0,217,68,62,240,255,79,4,0,218,196,126,222,131,52,3,0,220,4,191,70,169,100,2,0,220,196,73,186,197,28,3,0,221,68,19,38,234,20,3,0,222,132,53,46,224,164,2,0,222,196,206,32,225,138,4,0,226,4,219,165,251,32,2,0,226,4,221,98,109,177,4,0,231,4,17,72,208,59,2,0,231,68,120,119,251,146,4,0,233,68,196,55,138,193,2,0,235,68,234,126,105,67,2,0,237,4,32,60,93,202,2,0,238,68,19,30,139,109,2,0,238,132,223,160,254,253,2,0,238,4,30,67,58,37,3,0,243,132,209,195,27,187,2,0,245,68,197,115,164,97,3,0,246,196,85,91,144,186,3,0,246,4,56,120,202,199,3,0,248,132,46,28,145,163,2,0,251,4,6,132,242,91,4,0,255,4,203,47,211,186,4,0,1,69,213,206,214,123,4,0,2,69,242,55,82,200,2,0,3,133,232,232,12,157,2,0,3,197,175,170,219,178,4,0,9,5,126,137,174,106,4,0,15,5,16,188,251,254,2,0,24,133,252,3,225,218,3,0,25,69,106,37,129,57,3,0,29,197,139,67,126,15,3,0,33,5,123,59,195,209,3,0,37,5,59,55,106,178,2,0,39,133,195,141,95,97,2,0,39,5,190,199,53,178,3,0,42,5,196,136,173,84,2,0,48,69,103,64,21,162,4,0,49,133,212,115,11,161,3,0,49,133,27,224,101,90,4,0,49,197,164,214,166,174,4,0,52,5,147,209,23,230,2,0,54,133,221,30,239,191,3,0,56,197,136,6,138,138,2,0,58,197,117,97,195,30,3,0,62,5,81,6,23,59,2,0,67,69,243,47,26,3,2,0,67,133,233,94,42,217,3,0,68,69,225,14,92,18,2,0,68,69,25,139,158,111,3,0,69,69,207,108,247,221,3,0,73,197,79,176,197,14,4,0,74,133,79,210,224,40,4,0,74,5,216,110,137,156,4,0,78,5,111,11,105,240,3,0,81,69,236,232,213,189,3,0,83,133,84,92,175,122,2,0,83,133,13,181,83,125,2,0,83,133,238,210,179,122,3,0,83,197,99,67,160,224,3,0,83,133,204,121,109,251,3,0,85,197,126,82,56,121,3,0,90,5,114,118,81,143,2,0,90,5,76,87,144,120,4,0,91,197,20,37,35,39,3,0,92,5,226,211,6,98,2,0,92,69,208,236,232,12,4,0,92,69,172,93,244,95,4,0,94,69,97,212,251,136,3,0,95,197,70,133,140,202,2,0,100,197,116,111,234,214,2,0,102,5,44,238,241,2,2,0,104,69,45,135,108,117,4,0,107,5,161,215,150,43,2,0,107,69,221,75,121,52,4,0,110,197,225,130,17,185,3,0,111,69,8,129,1,128,2,0,114,133,199,143,44,27,2,0,114,5,118,211,56,128,3,0,117,5,111,228,239,145,2,0,119,133,3,252,200,188,2,0,120,5,134,208,240,140,4,0,121,133,211,36,219,218,2,0,123,197,41,127,7,240,3,0,125,133,76,81,128,229,2,0,128,197,117,131,100,212,3,0,130,69,191,227,24,211,2,0,135,5,153,223,206,39,3,0,135,133,16,15,133,161,4,0,142,5,68,26,142,33,3,0,143,197,255,107,115,68,2,0,144,133,226,83,202,246,3,0,145,133,230,229,212,220,3,0,147,5,63,79,84,222,3,0,147,5,167,205,220,51,4,0,148,69,184,95,98,36,3,0,148,133,28,221,176,180,4,0,149,197,91,175,119,45,4,0,151,133,129,68,173,31,2,0,154,197,175,153,183,55,2,0,155,133,125,154,124,9,2,0,155,133,76,81,112,228,2,0,156,197,98,206,129,227,2,0,156,5,186,101,19,246,3,0,157,5,54,187,163,145,4,0,160,197,170,219,248,119,4,0,161,197,7,129,14,89,2,0,162,69,191,248,26,201,3,0,163,197,172,231,242,3,4,0,163,197,25,157,208,23,4,0,164,5,207,24,23,217,2,0,169,197,64,185,165,36,3,0,170,197,41,169,67,173,3,0,171,69,25,81,16,40,3,0,182,69,227,227,105,180,2,0,185,197,130,207,190,197,2,0,187,197,239,169,127,5,2,0,187,69,20,54,22,52,3,0,190,133,68,231,28,118,3,0,195,5,170,10,147,117,2,0,198,5,176,233,32,167,3,0,198,197,47,50,33,145,4,0,203,69,167,206,33,223,2,0,203,69,71,21,104,44,3,0,203,69,17,61,237,211,3,0,206,5,236,174,221,126,3,0,208,197,221,145,251,61,4,0,211,133,189,204,239,180,2,0,212,133,50,195,73,70,3,0,213,133,124,198,208,25,2,0,213,197,14,233,150,67,4,0,213,197,14,233,248,67,4,0,214,133,219,191,18,96,2,0,214,69,38,0,108,244,2,0,219,133,223,218,109,145,4,0,223,5,224,171,105,8,3,0,225,69,101,239,135,117,4,0,226,197,127,121,169,234,3,0,234,133,243,199,247,163,4,0,237,5,173,196,2,197,3,0,241,133,184,92,150,194,2,0,241,133,20,254,174,122,4,0,245,69,139,47,125,177,2,0,245,133,52,69,122,34,3,0,250,133,48,167,226,90,3,0,254,133,119,25,159,20,2,0,254,5,162,145,167,228,2,0,8,70,226,108,247,105,2,0,8,134,14,160,72,67,4,0,9,6,27,254,186,96,3,0,11,134,177,179,231,252,2,0,12,70,213,49,81,220,2,0,12,134,227,186,201,8,3,0,12,6,9,212,122,29,4,0,16,6,68,117,250,172,3,0,16,134,157,200,92,244,3,0,17,198,155,28,229,200,3,0,19,6,166,48,224,117,2,0,22,70,166,227,178,188,3,0,23,70,45,170,247,61,2,0,26,198,87,247,179,109,4,0,28,134,118,31,81,99,3,0,29,70,52,156,45,27,3,0,32,198,147,156,140,2,2,0,32,134,48,194,40,28,3,0,34,198,240,149,234,208,3,0,39,134,226,210,248,92,3,0,39,6,86,221,216,193,3,0,40,198,47,56,0,25,2,0,43,6,140,60,52,115,3,0,43,198,22,47,150,94,4,0,44,134,125,56,220,3,2,0,44,198,180,78,163,131,2,0,45,6,162,75,203,34,4,0,48,134,97,69,152,37,2,0,48,134,238,155,200,126,3,0,51,6,64,56,181,64,2,0,53,6,216,167,89,153,4,0,54,198,32,159,14,204,2,0,57,198,118,234,129,155,3,0,58,198,71,173,225,72,3,0,60,134,176,28,244,160,3,0,61,70,209,2,85,10,3,0,63,198,41,188,81,2,3,0,66,198,45,179,224,18,2,0,66,198,245,192,5,196,3,0,66,134,222,241,17,230,3,0,67,134,51,56,51,157,3,0,67,198,137,10,234,165,3,0,68,6,118,172,106,1,2,0,68,6,57,196,153,165,4,0,71,70,228,98,23,72,4,0,72,6,44,119,175,0,3,0,73,6,60,104,253,148,4,0,81,134,186,102,124,113,4,0,83,70,165,241,151,35,2,0,88,198,62,23,112,189,3,0,88,70,89,70,88,122,4,0,89,70,135,222,81,29,4,0,90,70,195,216,15,65,2,0,92,134,17,62,20,13,3,0,92,70,129,153,153,96,4,0,93,134,105,21,104,159,2,0,94,198,217,47,77,168,3,0,94,198,217,47,93,168,3,0,94,198,217,47,223,169,3,0,94,134,113,165,199,231,3,0,94,70,138,229,72,58,4,0,96,198,32,75,250,107,4,0,97,198,57,35,244,5,3,0,97,198,238,169,23,84,3,0,97,70,152,250,131,72,4,0,98,134,235,175,233,42,4,0,101,134,113,26,97,134,3,0,102,198,238,218,215,42,2,0,104,134,179,173,100,96,3,0,105,198,207,46,30,151,2,0,105,134,98,195,27,112,4,0,106,134,195,136,191,106,2,0,108,198,125,185,152,120,2,0,109,198,124,110,117,43,2,0,110,70,39,5,149,23,3,0,110,6,74,127,68,156,4,0,116,70,129,20,172,150,2,0,118,6,175,1,27,213,2,0,120,134,177,179,248,252,2,0,121,134,212,197,143,92,3,0,124,134,116,11,137,78,2,0,124,6,219,64,136,39,4,0,127,6,122,33,66,59,2,0,127,198,88,45,97,141,2,0,129,134,31,219,20,231,3,0,130,6,210,165,126,42,4,0,139,198,171,185,23,123,3,0,139,6,27,162,171,132,3,0,140,134,209,150,176,208,3,0,141,134,73,78,54,77,3,0,143,134,47,29,116,151,4,0,145,134,39,30,145,199,3,0,148,70,194,106,191,183,3,0,151,6,132,205,63,237,3,0,151,6,131,19,82,253,3,0,154,70,93,71,32,74,2,0,154,198,226,25,47,54,3,0,161,6,49,75,163,71,4,0,162,70,247,22,220,10,4,0,166,198,122,77,59,157,2,0,166,70,96,154,157,141,3,0,169,198,15,40,77,128,3,0,169,134,151,136,165,130,3,0,170,198,187,173,97,162,2,0,171,198,238,114,206,60,3,0,172,70,61,98,126,178,4,0,178,198,226,193,200,52,2,0,178,198,59,108,100,65,2,0,180,70,160,2,42,60,4,0,181,134,94,248,42,15,4,0,182,6,31,78,160,15,2,0,187,6,173,173,81,185,2,0,187,134,154,176,5,248,3,0,190,70,57,108,190,53,3,0,191,134,79,243,157,46,4,0,193,70,24,226,143,221,2,0,195,198,165,35,185,222,2,0,200,6,219,2,2,8,3,0,203,70,72,198,181,78,2,0,203,134,203,133,16,112,3,0,204,198,232,134,191,74,2,0,204,70,157,52,191,105,2,0,205,198,42,60,41,74,4,0,209,6,14,85,178,105,2,0,215,198,131,219,169,33,2,0,217,198,0,32,99,33,3,0,218,70,128,105,190,43,3,0,219,6,119,101,185,116,4,0,223,134,31,204,78,122,2,0,226,198,254,206,29,176,3,0,232,70,189,167,23,43,4,0,233,6,53,73,30,79,3,0,235,134,76,9,75,239,2,0,235,6,152,244,35,44,4,0,237,198,195,167,232,136,4,0,241,198,102,10,103,55,2,0,245,134,76,65,73,1,3,0,248,6,216,155,238,112,3,0,252,198,7,91,211,156,2,0,253,70,219,253,10,149,3,0,2,199,165,110,90,154,3,0,2,71,224,226,97,210,3,0,3,135,148,160,174,51,2,0,5,71,27,35,51,3,3,0,18,7,56,245,168,55,2,0,18,7,129,33,176,219,3,0,21,71,74,80,80,12,2,0,22,135,91,203,246,195,3,0,25,135,220,222,51,117,3,0,27,199,69,195,10,73,4,0,28,7,26,192,209,185,2,0,29,135,120,242,231,15,2,0,34,7,105,39,75,52,2,0,36,199,128,231,67,45,4,0,39,199,140,229,73,37,4,0,40,199,191,110,214,19,4,0,41,7,176,13,139,196,2,0,41,199,157,169,88,237,2,0,42,71,1,251,106,118,4,0,43,71,33,249,25,42,3,0,43,135,168,228,45,173,3,0,43,135,242,245,200,250,3,0,47,71,29,164,157,115,2,0,50,7,84,17,223,60,2,0,51,71,218,107,0,152,2,0,54,199,39,252,75,131,4,0,54,7,198,48,123,163,4,0,55,199,233,44,135,74,3,0,56,199,218,134,127,102,4,0,57,199,93,219,237,143,4,0,59,135,213,182,68,98,4,0,63,71,0,21,149,96,2,0,67,199,198,201,91,105,2,0,69,71,223,70,61,73,4,0,70,199,192,232,126,134,2,0,70,71,15,192,2,229,2,0,71,71,60,152,241,187,3,0,72,71,157,141,171,26,2,0,72,199,107,219,210,99,4,0,74,7,163,185,252,184,3,0,75,135,81,192,35,119,2,0,75,71,163,24,50,159,2,0,77,7,14,134,231,103,4,0,78,135,40,59,130,220,3,0,80,7,127,68,19,98,3,0,89,71,186,50,126,224,2,0,90,199,236,237,121,123,2,0,92,199,177,230,40,138,3,0,92,135,57,81,232,148,4,0,93,135,144,131,111,135,3,0,93,7,111,19,47,108,4,0,95,135,86,255,128,232,2,0,101,71,242,214,116,134,4,0,104,7,23,104,117,94,3,0,106,7,39,214,78,192,2,0,110,199,10,40,53,109,3,0,112,7,18,45,230,159,2,0,115,7,232,243,236,101,2,0,116,135,209,80,164,2,4,0,119,7,223,17,126,228,2,0,130,135,116,218,224,162,4,0,131,71,207,153,164,75,2,0,132,7,33,51,9,134,4,0,135,7,90,37,229,76,2,0,136,7,109,36,246,105,4,0,138,71,234,90,195,166,3,0,138,199,167,80,145,194,3,0,143,71,167,91,51,255,3,0,149,199,41,167,141,182,2,0,149,135,205,125,181,58,4,0,151,7,228,6,224,73,3,0,153,135,134,104,132,229,3,0,156,135,38,159,148,55,2,0,156,7,210,129,49,133,4,0,158,199,84,216,207,60,2,0,159,135,212,213,159,172,3,0,162,135,91,142,188,111,3,0,163,7,102,6,210,145,3,0,165,71,175,137,139,141,2,0,167,7,181,203,141,142,2,0,169,199,38,41,27,2,4,0,169,199,38,41,48,2,4,0,169,199,38,41,76,2,4,0,169,199,38,41,106,2,4,0,172,135,145,24,132,165,4,0,175,71,117,20,28,62,2,0,175,7,132,235,87,173,2,0,180,199,247,47,227,121,3,0,181,71,105,13,12,140,3,0,181,7,167,46,155,252,3,0,183,7,255,45,132,97,2,0,183,71,229,94,55,215,3,0,184,135,39,81,144,15,3,0,185,7,39,183,115,22,3,0,185,199,251,226,136,32,4,0,187,71,134,44,207,138,2,0,188,199,62,107,8,245,3,0,189,7,71,212,209,161,3,0,190,135,151,121,111,50,2,0,193,71,49,207,157,17,2,0,193,7,80,175,109,161,2,0,197,135,169,90,241,158,2,0,201,71,158,149,147,224,3,0,202,71,226,91,77,32,2,0,202,199,75,237,45,4,3,0,205,71,24,182,73,254,2,0,205,7,124,123,158,250,3,0,205,135,73,62,146,21,4,0,206,71,194,210,103,249,2,0,207,71,98,195,70,182,2,0,207,7,49,150,117,101,3,0,207,199,252,255,136,244,3,0,208,7,90,65,43,132,4,0,208,7,90,65,65,132,4,0,209,135,195,147,243,98,4,0,214,7,227,250,226,230,2,0,214,71,88,239,178,56,3,0,218,7,251,128,175,237,2,0,218,7,231,100,234,248,3,0,223,135,63,152,132,180,2,0,224,199,153,137,203,116,4,0,226,199,60,74,238,21,4,0,227,199,147,253,203,96,2,0,228,199,251,167,36,78,2,0,232,135,102,156,190,212,3,0,233,135,155,239,248,108,2,0,234,199,117,150,78,72,4,0,237,199,161,36,34,100,2,0,241,199,204,7,237,94,3,0,243,71,75,166,82,167,2,0,243,7,64,22,183,173,2,0,245,135,37,107,174,143,4,0,246,199,184,9,103,38,2,0,246,7,4,209,2,143,2,0,246,7,214,154,26,124,4,0,247,135,198,67,31,45,2,0,255,135,183,82,208,173,3,0,255,135,176,129,69,242,3,0,0,136,146,30,132,6,2,0,0,200,113,157,221,244,3,0,1,200,170,56,242,161,4,0,7,72,214,91,107,95,4,0,8,136,21,150,68,105,2,0,8,72,230,22,59,99,3,0,11,136,196,213,87,140,4,0,13,200,244,151,223,122,2,0,13,136,135,251,105,65,3,0,13,8,226,17,230,127,3,0,15,8,148,159,41,21,3,0,18,8,177,29,99,226,3,0,19,8,148,159,174,21,3,0,19,200,242,172,186,124,4,0,20,8,204,197,228,96,2,0,21,200,50,83,163,148,2,0,27,8,208,181,234,226,2,0,28,8,206,2,54,10,3,0,34,72,65,17,95,0,4,0,35,72,211,72,199,97,3,0,36,72,177,235,139,123,2,0,38,136,18,132,135,131,2,0,39,8,163,105,217,21,2,0,44,8,23,37,214,171,2,0,46,72,138,48,117,156,4,0,49,136,159,14,160,132,4,0,50,200,249,55,72,154,2,0,50,72,60,178,58,165,4,0,53,72,225,72,212,154,4,0,55,72,73,70,192,206,3,0,56,136,201,74,250,149,4,0,57,136,25,69,193,240,3,0,59,72,239,71,11,148,2,0,64,8,90,76,29,184,4,0,65,136,114,166,153,112,3,0,65,8,128,54,119,54,4,0,72,200,202,67,161,122,3,0,77,136,55,254,211,26,3,0,77,72,163,179,0,16,4,0,79,8,192,209,204,167,3,0,79,136,168,228,56,173,3,0,79,72,154,208,101,181,3,0,79,8,113,246,51,236,3,0,79,136,56,64,218,64,4,0,81,8,50,81,22,3,3,0,82,8,182,186,63,15,3,0,83,8,246,134,79,82,4,0,84,200,79,14,8,51,2,0,84,72,46,254,191,172,4,0,85,8,244,156,106,48,2,0,85,8,3,113,192,137,2,0,85,8,61,88,107,176,3,0,94,72,33,103,236,28,4,0,98,72,154,223,218,221,2,0,98,136,76,81,213,229,2,0,100,72,31,154,100,87,2,0,101,8,26,191,41,232,3,0,103,8,37,207,51,33,3,0,105,136,20,225,21,130,3,0,105,72,109,65,149,209,3,0,108,136,129,72,43,47,3,0,112,200,158,28,46,8,4,0,112,72,178,153,120,78,4,0,114,136,48,133,57,210,2,0,116,72,131,105,8,23,3,0,117,136,21,84,21,103,4,0,118,200,40,5,46,58,4,0,121,8,1,222,96,41,2,0,124,72,135,12,247,174,3,0,125,72,131,187,162,58,4,0,131,8,22,13,178,144,2,0,132,136,221,88,75,62,2,0,133,200,245,242,134,59,4,0,133,200,62,147,40,114,4,0,135,72,71,195,49,168,3,0,140,200,157,235,219,182,2,0,141,136,109,35,18,105,2,0,141,200,241,155,250,223,3,0,143,8,147,183,246,229,3,0,144,136,134,70,250,146,2,0,146,72,234,59,29,158,2,0,152,200,253,24,243,36,4,0,152,8,192,252,157,123,4,0,153,200,30,104,170,88,2,0,153,72,236,177,195,14,3,0,154,136,158,160,196,56,3,0,155,72,70,69,182,233,2,0,157,200,165,106,200,121,3,0,158,200,231,63,17,186,4,0,160,200,39,81,35,25,3,0,160,136,62,134,89,140,3,0,161,200,235,109,21,239,3,0,164,8,22,102,106,9,3,0,165,136,104,153,56,164,3,0,168,72,59,81,33,248,2,0,171,72,96,47,35,52,4,0,175,8,87,50,224,139,3,0,176,8,152,115,252,10,2,0,176,136,71,182,9,121,2,0,178,8,240,127,171,9,3,0,179,72,251,4,141,178,3,0,182,8,42,31,69,237,2,0,183,136,184,224,10,254,3,0,183,72,79,214,161,125,4,0,185,72,170,12,251,56,2,0,185,200,169,20,70,74,4,0,186,136,154,151,80,27,4,0,193,72,98,194,37,65,2,0,197,8,43,60,113,6,2,0,200,200,251,23,254,131,2,0,202,200,65,41,44,137,2,0,207,8,125,195,238,168,2,0,207,200,60,70,18,29,4,0,208,200,148,156,61,234,3,0,209,136,54,45,161,112,4,0,210,200,11,109,187,185,2,0,210,200,251,82,179,18,4,0,213,200,152,223,32,94,3,0,214,72,169,223,226,147,3,0,215,200,16,79,68,228,3,0,218,136,226,138,7,4,3,0,219,8,115,79,139,253,2,0,221,136,215,68,18,100,2,0,221,8,7,47,130,49,4,0,223,72,175,243,164,117,3,0,223,200,163,161,112,171,3,0,224,136,205,47,201,109,4,0,224,136,205,47,224,109,4,0,224,136,205,47,17,110,4,0,224,136,205,47,195,186,4,0,226,136,186,64,143,50,2,0,230,8,255,112,5,31,3,0,232,136,39,70,31,255,3,0,233,8,236,33,168,47,2,0,235,8,233,192,102,86,3,0,237,72,153,223,146,13,3,0,237,200,119,169,219,36,3,0,240,136,115,219,38,28,4,0,240,72,239,64,64,32,4,0,241,72,250,58,153,12,4,0,243,72,154,223,206,233,2,0,244,136,77,41,238,201,2,0,245,200,198,28,32,169,4,0,247,8,105,178,28,190,3,0,249,72,145,40,246,246,3,0,251,72,78,1,108,200,2,0,252,136,53,144,215,107,2,0,252,8,32,43,8,216,2,0,253,72,210,208,197,142,4,0,1,73,61,248,24,63,2,0,2,201,178,119,202,21,2,0,3,73,118,144,246,49,3,0,4,73,84,144,240,228,2,0,7,201,168,1,45,98,4,0,12,201,184,110,41,227,2,0,12,137,51,146,30,94,4,0,16,201,72,70,26,53,4,0,17,73,246,221,50,76,2,0,18,201,50,77,216,220,2,0,20,137,160,248,164,107,4,0,24,137,176,52,123,67,3,0,26,9,114,80,247,141,2,0,28,201,249,168,247,2,4,0,29,73,185,92,2,138,2,0,31,201,66,63,242,231,3,0,38,9,241,54,20,254,2,0,41,73,157,63,245,155,3,0,42,9,236,175,247,14,2,0,42,9,19,143,39,37,4,0,43,73,176,91,52,67,2,0,45,73,77,167,205,72,2,0,45,9,53,79,112,105,2,0,46,201,188,0,107,22,2,0,46,73,89,244,128,197,2,0,46,73,189,72,133,231,2,0,46,73,50,45,24,16,4,0,48,73,235,248,79,180,2,0,50,201,141,149,204,11,3,0,51,9,90,73,184,159,2,0,53,137,186,254,95,80,4,0,54,201,248,122,226,85,4,0,56,137,214,58,49,244,3,0,59,201,12,21,195,113,3,0,59,73,141,196,239,130,3,0,60,201,77,17,172,174,3,0,62,201,190,84,238,220,3,0,63,137,67,63,137,42,3,0,65,9,141,105,162,149,3,0,69,201,152,108,61,106,4,0,70,9,148,159,147,20,3,0,71,201,28,110,122,92,3,0,76,201,252,50,76,100,4,0,81,73,87,162,18,7,2,0,84,137,233,110,185,25,3,0,87,73,47,194,32,228,2,0,90,137,26,214,253,179,4,0,92,9,94,229,226,37,2,0,92,73,121,157,156,54,2,0,93,137,125,56,212,105,4,0,94,73,120,127,82,183,4,0,96,201,211,37,114,154,3,0,97,9,24,105,70,9,3,0,97,137,39,81,223,13,3,0,97,9,148,12,131,23,4,0,101,137,34,67,221,150,4,0,106,73,167,69,237,182,2,0,109,137,39,81,209,13,3,0,110,201,93,235,245,167,3,0,113,137,174,29,77,223,3,0,113,137,175,252,92,56,4,0,114,201,23,211,170,16,2,0,115,137,251,211,192,145,3,0,117,73,24,81,151,78,3,0,118,201,122,77,76,157,2,0,118,137,38,156,213,62,4,0,120,137,189,186,113,20,3,0,121,201,53,227,235,92,2,0,127,201,47,194,48,228,2,0,128,137,178,254,217,92,4,0,130,137,19,192,83,199,2,0,130,201,125,153,41,62,3,0,133,137,39,81,39,13,3,0,133,137,3,67,230,152,3,0,135,73,122,71,65,143,2,0,146,137,197,249,150,156,4,0,152,73,58,0,128,144,3,0,153,137,39,81,68,12,3,0,154,9,75,47,85,198,2,0,158,73,175,211,218,143,4,0,159,201,191,58,223,228,3,0,159,201,189,114,11,116,4,0,159,73,232,194,100,186,4,0,162,201,23,81,91,90,3,0,163,9,217,187,83,131,3,0,166,9,34,55,148,152,3,0,168,73,24,122,55,67,3,0,169,9,166,240,194,69,2,0,169,201,188,131,43,72,4,0,173,137,29,137,123,75,2,0,177,137,6,116,239,91,3,0,178,201,132,215,134,94,3,0,181,137,123,253,160,121,2,0,184,137,115,171,202,93,4,0,187,137,169,77,2,29,2,0,189,137,195,218,43,130,2,0,190,9,120,116,42,119,4,0,191,9,144,21,87,158,2,0,194,73,124,147,225,202,2,0,194,73,154,223,152,210,2,0,196,73,124,184,132,88,3,0,197,137,94,245,57,83,2,0,197,9,67,71,104,98,2,0,200,137,194,36,95,209,2,0,200,137,161,218,254,226,2,0,202,201,50,173,27,73,3,0,205,137,66,114,233,240,2,0,207,73,96,73,195,215,3,0,208,9,8,123,207,237,3,0,210,201,195,117,253,158,4,0,211,73,218,67,19,62,3,0,211,201,101,172,0,160,3,0,211,137,25,147,156,100,4,0,212,137,199,63,137,24,2,0,213,137,95,146,42,86,3,0,215,73,152,197,195,26,2,0,215,9,89,209,144,201,2,0,216,137,25,163,159,68,3,0,220,9,86,226,171,170,4,0,222,73,29,231,185,47,2,0,223,9,203,219,197,28,2,0,224,73,65,156,174,186,3,0,224,73,100,78,207,173,4,0,228,9,241,179,52,149,2,0,229,9,61,57,242,99,3,0,230,73,245,223,230,27,4,0,233,73,49,7,188,230,2,0,234,9,84,33,171,54,4,0,236,73,214,230,213,129,4,0,239,9,98,84,134,99,2,0,239,73,9,130,195,118,4,0,240,73,147,52,208,221,3,0,246,9,93,147,204,152,3,0,247,201,104,204,187,205,3,0,3,202,105,19,124,47,4,0,4,138,112,69,5,139,3,0,5,138,30,248,213,182,3,0,5,202,237,181,120,233,3,0,7,202,106,62,253,27,3,0,8,138,248,124,64,177,2,0,9,10,227,115,82,96,2,0,10,202,176,75,28,12,3,0,14,10,168,87,59,217,3,0,17,202,207,104,243,66,4,0,21,138,1,181,89,195,2,0,28,202,67,231,30,214,2,0,30,74,174,206,25,110,3,0,31,10,148,9,179,167,2,0,36,138,71,170,79,148,2,0,41,74,188,205,18,241,2,0,44,138,91,48,202,84,4,0,46,10,45,211,251,74,2,0,48,10,118,211,230,131,2,0,49,10,173,205,42,17,3,0,51,10,7,218,139,34,3,0,52,138,43,42,140,95,3,0,52,138,141,116,163,49,4,0,53,138,160,72,54,152,4,0,54,10,202,208,40,137,4,0,55,138,65,195,27,164,3,0,61,202,141,93,178,177,3,0,61,202,47,119,191,63,4,0,64,10,211,47,171,236,3,0,70,138,143,143,4,112,4,0,72,138,214,231,68,101,4,0,80,202,243,139,204,111,2,0,82,202,156,210,221,104,3,0,89,138,215,68,52,100,2,0,89,10,224,148,118,230,3,0,94,202,235,232,128,217,3,0,95,10,251,237,220,119,2,0,97,202,87,235,191,45,2,0,97,202,87,235,213,45,2,0,97,202,87,235,54,46,2,0,97,202,87,235,95,46,2,0,97,202,87,235,133,46,2,0,97,202,87,235,167,46,2,0,97,202,87,235,211,46,2,0,97,202,87,235,241,46,2,0,98,10,169,81,217,78,3,0,99,138,234,150,35,199,3,0,101,74,126,101,193,40,4,0,102,138,251,167,238,56,3,0,104,10,59,184,163,70,3,0,105,10,163,125,56,100,4,0,110,202,240,125,4,225,2,0,111,202,247,70,145,135,4,0,112,10,215,69,168,253,2,0,117,138,225,231,18,8,3,0,118,202,135,99,57,5,3,0,120,202,69,185,233,1,2,0,122,138,236,236,61,184,3,0,123,138,219,47,239,110,2,0,124,202,134,35,11,34,2,0,125,74,103,23,47,156,3,0,126,138,102,76,145,102,2,0,127,74,154,223,186,168,2,0,127,10,193,26,240,157,4,0,129,74,158,80,5,110,2,0,132,10,38,206,33,239,2,0,132,202,27,13,231,102,4,0,133,10,182,88,88,40,4,0,136,74,34,155,175,214,3,0,137,202,249,24,48,15,2,0,137,202,162,44,201,76,3,0,140,74,123,130,163,28,2,0,150,138,35,107,61,129,3,0,151,74,214,36,211,147,2,0,152,138,250,192,82,134,2,0,154,202,223,132,30,88,2,0,155,10,205,105,53,237,2,0,156,10,205,22,28,159,2,0,157,74,27,165,221,55,3,0,158,138,193,83,135,210,3,0,161,10,47,142,70,194,3,0,164,202,233,142,119,85,3,0,167,202,5,58,152,21,2,0,167,202,142,103,15,17,4,0,168,10,228,45,255,131,4,0,171,10,181,126,77,10,2,0,171,74,87,177,157,167,2,0,173,74,235,38,24,161,2,0,174,10,213,176,244,37,2,0,174,74,223,155,22,127,4,0,175,74,197,163,3,175,4,0,176,10,228,183,240,179,3,0,179,10,227,152,67,217,2,0,179,202,77,152,167,115,4,0,183,74,17,192,0,193,2,0,183,202,47,192,136,227,3,0,186,10,64,108,43,1,3,0,189,74,174,236,1,140,2,0,190,74,154,223,180,187,2,0,191,138,66,62,26,36,2,0,194,74,154,223,110,186,2,0,195,202,202,4,169,219,2,0,198,74,129,125,53,30,3,0,198,202,216,225,180,135,3,0,198,74,112,99,15,176,4,0,201,74,94,225,78,115,2,0,204,10,40,49,24,61,3,0,205,10,126,37,0,95,3,0,208,202,211,17,90,215,3,0,208,138,64,97,115,161,4,0,209,202,231,135,206,126,2,0,214,74,132,219,255,245,2,0,216,74,176,0,84,169,3,0,217,10,246,90,179,42,4,0,217,74,206,229,222,91,4,0,218,10,167,8,222,237,3,0,221,10,237,252,21,98,2,0,221,202,26,192,98,160,2,0,223,138,51,219,226,194,2,0,225,138,197,226,254,185,3,0,226,138,155,54,140,59,3,0,232,202,152,240,66,54,3,0,237,10,3,119,217,43,3,0,238,138,250,212,26,4,3,0,241,202,230,46,233,135,2,0,243,138,113,71,228,195,2,0,243,138,17,72,147,60,4,0,246,10,218,116,116,84,4,0,247,10,36,219,86,1,2,0,247,10,220,47,111,103,3,0,247,202,120,211,71,146,3,0,251,74,81,132,68,115,4,0,253,138,95,146,60,86,3,0,255,138,53,194,203,228,2,0,2,75,76,108,13,115,2,0,6,203,102,59,96,187,3,0,7,11,126,27,84,29,3,0,7,75,17,243,132,30,4,0,14,75,88,114,211,145,4,0,16,75,18,216,81,130,3,0,18,75,75,185,95,58,2,0,18,75,251,76,248,157,2,0,19,203,250,252,182,18,3,0,19,75,82,224,19,166,4,0,24,11,43,110,1,72,4,0,25,203,104,159,206,101,3,0,26,75,229,56,226,153,2,0,30,203,19,86,173,70,2,0,30,11,52,235,61,81,3,0,30,11,205,20,251,142,3,0,33,11,78,100,40,1,4,0,42,139,5,143,93,121,4,0,43,139,36,38,96,128,2,0,43,203,62,229,41,218,3,0,46,139,130,180,126,194,2,0,47,11,150,29,24,10,2,0,48,139,142,32,138,109,4,0,49,139,71,86,102,61,3,0,56,203,19,224,195,225,2,0,57,139,117,63,131,172,3,0,59,203,218,91,1,64,2,0,59,139,63,226,48,254,2,0,62,75,68,12,213,168,3,0,63,139,242,174,202,10,4,0,64,203,128,212,72,91,2,0,64,139,107,15,30,246,2,0,66,139,4,228,157,189,3,0,66,139,203,129,60,212,3,0,67,203,96,80,12,139,4,0,68,75,24,81,203,78,3,0,69,11,192,226,235,53,3,0,71,139,92,130,241,19,4,0,72,11,10,245,235,100,2,0,72,203,130,132,164,200,2,0,72,139,153,47,184,192,3,0,74,75,86,213,118,93,3,0,74,11,235,22,156,95,3,0,76,139,241,54,99,58,3,0,82,11,206,255,82,28,2,0,82,203,101,240,70,240,3,0,83,139,50,30,249,106,3,0,84,139,106,94,146,207,3,0,86,11,76,41,35,17,4,0,88,139,163,150,165,145,2,0,89,203,48,150,69,144,2,0,91,75,195,39,133,139,4,0,94,11,238,216,195,97,2,0,95,75,117,217,189,7,4,0,96,203,210,227,237,13,3,0,96,11,85,211,157,44,4,0,97,203,177,206,66,172,4,0,101,139,10,155,190,191,2,0,105,75,12,192,119,40,4,0,109,75,218,60,67,181,3,0,111,75,91,95,28,174,4,0,116,75,253,83,107,29,3,0,116,11,146,137,236,89,4,0,117,75,116,246,145,33,2,0,119,203,240,90,180,29,4,0,121,75,135,144,165,170,3,0,123,75,156,200,177,248,2,0,126,139,221,142,178,95,3,0,126,75,41,125,244,204,3,0,127,75,142,151,133,42,2,0,128,203,224,253,37,244,2,0,129,75,205,184,56,41,3,0,130,11,239,120,127,15,4,0,134,203,35,19,208,75,3,0,136,139,125,105,136,128,3,0,139,203,130,171,158,113,2,0,141,139,49,8,232,217,3,0,144,11,227,107,245,93,2,0,145,11,148,148,54,171,4,0,148,139,64,64,142,169,4,0,152,203,44,135,24,40,4,0,155,203,31,217,50,95,3,0,159,75,52,16,106,153,2,0,160,11,19,64,177,105,4,0,162,139,29,95,240,200,2,0,162,75,91,76,197,80,3,0,162,139,11,58,62,202,3,0,166,11,121,164,155,39,4,0,167,203,163,175,47,119,3,0,168,139,66,173,189,72,3,0,169,203,64,224,177,91,2,0,170,11,199,78,200,54,3,0,171,203,150,34,87,156,4,0,177,11,23,171,169,119,2,0,177,203,123,224,247,93,4,0,177,11,74,226,79,116,4,0,178,11,62,248,148,75,3,0,179,203,180,232,203,128,4,0,182,75,35,224,118,31,2,0,183,11,144,8,88,218,3,0,187,203,188,198,60,203,3,0,188,75,178,138,152,132,2,0,189,11,22,254,51,95,4,0,193,139,148,85,174,44,4,0,195,139,105,161,160,25,2,0,205,11,99,202,199,223,2,0,207,75,225,97,137,165,3,0,208,203,39,64,89,176,2,0,209,203,163,97,228,17,2,0,210,11,67,36,236,116,3,0,212,139,40,75,108,158,2,0,212,203,190,22,191,17,3,0,214,203,235,29,31,184,3,0,214,11,44,15,233,128,4,0,215,11,247,90,99,20,2,0,215,139,40,75,126,158,2,0,225,75,91,132,183,1,3,0,230,11,81,171,29,78,3,0,230,203,182,171,79,107,4,0,233,11,119,177,96,2,3,0,234,203,198,157,2,87,3,0,236,75,183,18,7,182,3,0,238,75,160,54,227,58,3,0,240,11,18,94,248,98,3,0,241,75,125,235,75,117,2,0,246,11,234,220,163,105,2,0,251,11,183,94,205,207,3,0,252,139,137,184,16,75,3,0,255,203,68,127,141,57,2,0,0,140,251,171,19,116,3,0,2,76,157,85,14,29,2,0,2,76,177,45,241,175,2,0,5,12,197,188,115,129,2,0,12,76,67,220,235,108,2,0,12,76,210,15,26,231,2,0,14,76,229,61,146,125,3,0,15,76,70,198,138,181,4,0,18,204,11,124,131,145,4,0,18,76,246,141,29,147,4,0,28,204,117,23,200,114,4,0,30,204,215,5,13,143,3,0,30,140,93,128,173,229,3,0,30,12,35,145,181,36,4,0,40,12,188,77,230,56,2,0,40,140,15,248,61,189,2,0,40,12,85,249,187,194,3,0,48,140,178,220,96,166,2,0,49,204,134,122,24,151,4,0,50,76,175,69,135,67,2,0,54,76,197,229,40,183,3,0,56,204,13,207,177,231,2,0,57,76,86,119,155,74,3,0,59,140,215,189,207,193,2,0,59,76,15,192,97,228,2,0,69,12,86,173,222,11,2,0,71,204,144,181,93,248,2,0,71,140,217,151,172,46,4,0,73,12,138,27,21,102,2,0,78,76,166,81,124,61,3,0,78,204,26,127,136,124,4,0,81,76,214,110,32,144,4,0,83,204,72,167,4,92,2,0,84,140,100,221,174,118,4,0,86,204,137,128,45,68,4,0,90,76,187,2,144,22,4,0,91,76,113,61,201,16,2,0,91,140,107,63,73,139,2,0,93,76,130,175,76,120,4,0,94,204,39,81,5,25,3,0,99,76,32,167,86,244,2,0,100,76,3,123,55,68,3,0,105,140,92,38,44,186,4,0,106,76,124,184,147,88,3,0,106,140,1,14,198,98,4,0,113,140,89,165,245,39,2,0,116,76,91,214,22,61,2,0,116,76,67,249,24,227,3,0,117,76,74,80,65,12,2,0,126,76,171,31,81,7,2,0,126,204,82,203,59,158,2,0,126,140,152,242,251,107,3,0,127,76,165,151,64,94,3,0,127,204,10,20,226,117,3,0,128,204,179,252,146,113,3,0,133,140,88,229,33,22,3,0,133,204,139,20,162,94,3,0,133,12,152,137,181,14,4,0,134,140,182,134,113,168,3,0,135,12,232,27,147,106,2,0,140,76,42,43,0,86,2,0,140,12,59,184,198,68,3,0,140,204,139,20,202,70,3,0,140,204,139,20,220,70,3,0,140,204,139,20,237,70,3,0,140,204,139,20,4,71,3,0,140,204,139,20,33,71,3,0,140,204,139,20,51,71,3,0,140,204,139,20,69,71,3,0,140,204,139,20,88,71,3,0,140,204,139,20,104,71,3,0,140,204,139,20,122,71,3,0,140,204,139,20,138,71,3,0,140,204,139,20,157,71,3,0,140,204,139,20,177,71,3,0,140,204,139,20,193,71,3,0,140,204,139,20,217,71,3,0,140,204,139,20,239,71,3,0,140,204,139,20,254,71,3,0,140,204,139,20,34,72,3,0,140,204,139,20,54,72,3,0,140,204,139,20,75,72,3,0,140,204,139,20,96,72,3,0,140,204,139,20,119,72,3,0,140,204,139,20,134,79,3,0,140,204,139,20,172,79,3,0,146,204,229,96,132,123,4,0,147,140,97,219,156,114,2,0,149,140,245,63,203,37,4,0,153,12,166,45,105,88,4,0,154,12,70,166,42,167,4,0,155,204,139,20,75,34,3,0,164,12,179,126,150,102,3,0,166,76,167,178,38,212,2,0,166,12,245,218,124,118,4,0,166,12,57,237,70,185,4,0,169,12,33,51,147,231,3,0,173,204,189,204,8,181,2,0,173,140,106,35,127,176,3,0,174,76,35,235,163,101,3,0,175,204,139,20,88,255,2,0,180,204,139,20,185,249,2,0,185,140,70,226,17,100,3,0,189,12,47,207,14,126,4,0,190,12,153,55,65,91,4,0,191,140,181,57,133,102,3,0,192,140,54,60,134,244,2,0,194,12,59,184,232,68,3,0,197,76,156,241,128,255,2,0,201,76,78,156,165,5,3,0,201,76,7,35,206,111,3,0,202,204,139,20,29,237,2,0,206,204,200,32,57,103,3,0,208,76,34,15,245,17,2,0,208,76,164,201,85,56,3,0,210,204,233,90,253,111,3,0,211,204,195,166,248,243,2,0,216,140,27,20,30,201,2,0,217,140,223,137,142,129,2,0,221,12,190,228,165,6,2,0,221,12,123,168,252,89,3,0,221,204,251,94,47,214,3,0,223,12,203,239,70,251,3,0,228,140,71,64,14,170,2,0,229,76,137,56,56,96,4,0,231,76,6,121,54,13,2,0,232,204,133,119,254,168,2,0,233,204,139,20,173,94,3,0,234,76,224,252,141,105,3,0,236,12,166,97,225,152,2,0,236,76,151,160,69,56,3,0,241,140,157,255,20,11,4,0,241,12,241,126,107,169,4,0,245,204,145,59,8,158,4,0,248,204,208,241,140,98,3,0,249,12,205,17,79,163,2,0,3,77,168,141,82,13,4,0,6,13,72,177,147,217,2,0,6,141,240,199,168,43,3,0,7,13,54,81,174,252,2,0,9,77,55,61,90,127,2,0,11,13,54,81,145,252,2,0,12,141,214,121,3,14,2,0,16,205,73,157,204,168,4,0,18,205,252,92,170,185,2,0,20,141,110,229,59,144,3,0,22,77,222,0,82,213,3,0,24,77,234,247,136,136,2,0,25,13,88,181,17,3,4,0,26,205,153,44,62,17,3,0,30,13,80,180,182,8,3,0,30,141,238,169,97,84,3,0,31,77,244,144,154,126,3,0,31,141,215,246,77,146,4,0,34,205,178,154,85,138,3,0,37,141,175,7,155,31,2,0,39,13,72,106,213,247,3,0,41,13,184,81,244,14,4,0,47,13,14,97,54,142,4,0,54,205,224,53,71,174,3,0,58,205,201,239,144,40,2,0,65,141,228,116,66,159,3,0,67,141,54,67,158,22,2,0,68,77,5,25,188,155,2,0,68,13,235,160,225,8,4,0,71,77,124,52,235,225,3,0,74,77,215,230,73,97,3,0,79,141,70,150,161,199,3,0,81,141,240,210,222,103,2,0,83,13,142,184,165,164,3,0,84,205,237,219,222,118,2,0,85,77,255,146,110,149,3,0,85,205,55,85,61,193,3,0,87,141,12,250,242,149,3,0,89,13,190,205,110,17,3,0,91,77,239,44,147,89,4,0,98,77,90,87,113,203,2,0,98,13,200,189,204,241,2,0,99,13,235,0,176,169,4,0,103,141,253,45,98,7,2,0,108,205,222,154,192,74,3,0,109,13,160,189,56,182,3,0,111,141,232,219,198,143,4,0,112,205,51,63,59,168,2,0,112,77,175,86,236,163,3,0,113,13,124,39,147,103,3,0,115,205,107,42,129,67,4,0,118,77,32,165,175,209,3,0,120,205,15,45,109,140,3,0,124,141,87,255,60,143,4,0,127,77,31,181,140,157,3,0,129,205,114,81,255,175,4,0,130,141,159,125,152,103,2,0,130,13,66,168,203,154,2,0,131,205,13,192,55,193,2,0,131,141,222,215,199,23,3,0,133,205,243,43,26,115,2,0,133,13,222,41,11,179,2,0,134,77,143,118,183,2,4,0,135,205,206,155,74,67,3,0,140,13,43,141,211,49,3,0,143,77,69,241,187,46,4,0,148,13,41,40,206,8,2,0,148,141,48,245,82,240,3,0,149,13,204,57,84,56,2,0,151,141,51,204,88,120,3,0,153,205,206,165,101,213,2,0,154,141,135,240,209,138,3,0,157,205,239,62,39,18,4,0,160,77,57,69,134,100,4,0,163,77,120,167,218,97,3,0,166,77,33,128,32,66,2,0,170,77,87,107,88,55,3,0,177,13,250,31,91,48,2,0,178,141,220,178,2,126,2,0,179,205,185,181,150,118,4,0,181,13,177,24,96,215,2,0,183,141,211,42,159,85,2,0,187,205,199,203,69,55,4,0,188,141,57,13,252,127,3,0,193,141,49,160,183,139,4,0,193,141,8,194,132,180,4,0,194,141,182,144,162,127,2,0,194,141,118,176,241,184,2,0,194,13,57,201,207,40,4,0,200,77,45,26,89,69,4,0,201,13,143,255,25,123,2,0,201,141,88,142,46,50,3,0,206,13,226,109,123,197,3,0,207,141,189,5,82,249,2,0,209,141,89,202,193,153,2,0,214,77,250,8,85,60,2,0,214,141,183,55,126,148,2,0,216,141,247,155,132,68,2,0,218,77,84,252,2,14,3,0,230,13,223,152,151,216,2,0,230,205,168,48,226,81,4,0,230,13,203,81,169,186,4,0,233,13,236,37,239,30,3,0,233,141,98,177,132,96,4,0,238,13,202,190,173,54,3,0,240,205,195,193,160,78,2,0,241,141,207,115,235,247,2,0,242,205,9,216,50,201,2,0,243,13,75,176,125,18,3,0,244,205,198,213,92,26,2,0,244,77,230,165,250,76,3,0,245,13,175,188,47,123,3,0,248,141,253,103,68,145,3,0,0,14,236,112,169,243,3,0,1,206,76,81,4,186,2,0,2,78,255,180,129,164,2,0,5,78,176,175,45,42,4,0,7,78,183,193,197,73,2,0,8,142,175,183,63,216,3,0,9,206,106,26,227,217,2,0,10,142,212,188,121,6,3,0,11,14,225,223,65,74,3,0,12,14,122,56,195,117,2,0,12,206,67,221,64,176,2,0,15,78,198,21,140,104,2,0,16,14,194,166,115,114,3,0,16,206,223,107,96,23,4,0,18,14,178,239,214,231,3,0,19,78,11,143,42,229,2,0,25,142,75,105,32,92,3,0,27,142,45,216,116,58,2,0,29,14,110,138,230,100,4,0,30,142,240,47,173,19,2,0,30,142,186,134,227,126,2,0,32,78,116,196,218,166,3,0,35,206,45,216,149,22,3,0,36,142,15,248,248,188,2,0,40,206,244,64,104,95,2,0,40,142,26,125,24,173,4,0,42,14,59,38,76,106,2,0,44,142,155,196,182,50,2,0,44,14,217,47,222,248,2,0,46,206,32,187,171,71,2,0,46,78,158,154,160,173,2,0,46,78,178,214,58,159,4,0,47,78,55,178,187,110,4,0,47,142,207,214,101,156,4,0,50,206,153,99,37,201,3,0,53,78,236,5,222,2,2,0,55,142,45,77,142,174,2,0,58,14,72,56,139,158,3,0,60,78,157,183,132,22,3,0,62,78,55,222,93,183,3,0,62,14,25,68,136,10,4,0,72,14,241,150,153,155,3,0,73,206,123,64,230,202,3,0,76,142,177,22,113,141,3,0,78,14,226,110,9,191,2,0,78,142,145,148,212,253,2,0,83,78,225,46,251,195,2,0,86,206,244,65,214,85,3,0,88,78,34,126,223,24,2,0,88,78,82,185,182,104,2,0,95,206,107,146,25,126,2,0,98,78,82,136,3,170,3,0,101,14,96,16,10,164,3,0,102,142,138,83,250,26,3,0,102,206,21,17,21,129,4,0,105,206,121,69,63,201,3,0,112,78,39,72,98,101,2,0,118,206,150,222,70,106,3,0,120,14,208,53,245,237,2,0,120,78,53,21,183,38,3,0,124,206,233,204,25,138,2,0,126,206,19,186,44,35,3,0,129,206,4,28,20,128,2,0,130,206,22,197,201,81,4,0,131,78,31,188,62,165,2,0,132,142,244,134,142,175,3,0,132,78,63,32,34,64,4,0,133,206,205,249,1,206,2,0,136,142,32,195,28,133,3,0,137,78,62,121,72,25,2,0,137,14,31,109,91,57,2,0,137,78,10,169,196,249,2,0,138,14,134,184,224,91,3,0,139,78,90,185,162,188,2,0,143,78,37,232,172,178,3,0,144,206,23,242,25,56,3,0,146,78,130,130,128,137,2,0,147,142,251,255,153,40,4,0,149,14,140,251,15,57,4,0,151,206,138,41,123,48,2,0,157,14,155,130,119,130,3,0,158,206,47,81,92,4,3,0,160,14,127,114,92,180,3,0,163,78,196,169,6,187,2,0,164,142,210,199,45,110,3,0,164,78,249,74,142,183,3,0,164,78,228,249,121,94,4,0,165,142,120,141,10,189,3,0,166,206,190,46,38,4,4,0,167,142,158,94,12,195,3,0,167,142,204,86,58,231,3,0,167,78,122,89,88,254,3,0,171,78,92,240,242,220,2,0,172,142,34,208,189,43,4,0,173,142,159,221,254,6,2,0,173,78,75,168,197,196,3,0,174,78,55,186,227,28,3,0,174,142,10,10,97,109,4,0,175,206,95,36,214,90,4,0,176,14,210,67,155,246,2,0,176,206,14,176,174,237,3,0,176,14,251,211,234,151,4,0,178,14,192,146,50,157,4,0,178,142,119,19,113,175,4,0,181,78,193,79,206,102,2,0,181,206,24,192,164,182,2,0,183,78,126,151,197,189,3,0,184,78,117,196,186,184,2,0,185,142,28,100,124,250,3,0,187,142,10,99,246,198,3,0,188,78,30,253,215,22,3,0,189,142,218,152,212,119,3,0,191,206,51,111,192,9,4,0,191,14,173,205,180,11,4,0,197,142,187,167,171,249,3,0,202,78,171,248,187,158,2,0,206,206,187,125,13,175,2,0,206,206,98,112,62,243,2,0,206,14,7,139,110,234,3,0,208,78,202,8,40,164,3,0,211,14,154,59,194,115,4,0,214,78,172,200,190,241,3,0,215,142,220,189,195,100,2,0,215,206,5,66,54,251,2,0,216,142,76,254,217,251,3,0,220,14,73,50,240,199,3,0,221,206,171,43,221,164,3,0,221,78,33,68,181,92,4,0,222,14,189,31,203,233,3,0,223,142,37,111,168,73,2,0,228,14,21,192,239,211,2,0,228,14,241,93,236,127,4,0,237,14,49,34,151,139,4,0,241,206,141,97,140,59,2,0,241,142,9,171,158,104,4,0,242,78,90,205,46,232,2,0,249,206,190,147,21,90,2,0,251,142,60,228,194,146,2,0,255,14,209,76,146,52,2,0,255,206,218,25,233,51,3,0,255,14,17,47,20,52,4,0,0,79,26,20,27,83,2,0,0,15,56,128,126,43,3,0,4,143,123,134,60,74,2,0,5,143,179,53,110,73,3,0,7,207,93,82,47,132,2,0,10,143,75,129,140,255,3,0,16,207,252,75,144,148,3,0,16,15,54,18,177,171,3,0,20,15,252,250,40,238,3,0,22,79,192,6,121,243,3,0,26,79,24,126,245,69,2,0,27,207,230,13,44,174,3,0,29,79,147,115,243,104,2,0,30,143,45,13,84,131,2,0,30,15,92,69,71,219,3,0,33,143,150,147,216,29,2,0,33,79,86,237,202,174,3,0,35,15,133,40,42,53,4,0,39,15,73,27,171,205,2,0,40,15,180,113,58,211,2,0,44,207,5,89,244,119,2,0,44,79,169,92,196,0,3,0,45,15,142,65,188,169,2,0,56,79,180,228,44,136,4,0,57,79,210,8,38,24,3,0,58,15,139,66,199,10,2,0,60,143,168,99,93,191,3,0,61,79,38,122,196,67,4,0,62,79,155,72,143,230,3,0,66,15,240,190,61,81,2,0,66,15,129,118,115,116,2,0,68,207,159,76,10,255,2,0,72,143,189,71,17,92,4,0,73,15,32,237,105,85,2,0,75,143,97,140,137,81,3,0,81,79,120,20,231,138,3,0,84,79,174,196,127,65,3,0,86,143,189,92,167,137,4,0,87,15,98,75,150,80,4,0,89,79,70,23,37,235,3,0,90,79,74,193,172,227,2,0,93,15,95,169,204,89,3,0,95,207,250,157,26,177,4,0,98,207,22,218,32,67,3,0,99,207,30,73,185,36,2,0,104,79,61,89,239,173,2,0,109,143,81,219,20,26,3,0,111,15,157,143,0,241,2,0,111,143,37,185,216,202,3,0,112,79,142,205,200,164,4,0,114,207,69,154,26,127,3,0,117,79,55,201,193,140,3,0,118,15,109,235,89,23,2,0,121,79,101,162,28,50,2,0,122,207,147,45,221,116,2,0,122,79,31,106,45,48,3,0,126,143,176,197,239,29,2,0,130,79,97,58,58,182,4,0,132,207,12,12,35,146,2,0,133,207,169,206,69,229,3,0,137,15,243,12,166,161,3,0,138,207,85,152,13,190,3,0,143,207,8,168,239,21,2,0,145,15,167,62,152,62,3,0,145,207,175,80,120,240,3,0,147,207,227,25,115,143,4,0,148,207,157,251,113,193,2,0,148,79,239,97,214,48,3,0,148,143,83,215,115,69,3,0,149,143,253,40,97,62,2,0,151,79,13,15,226,114,4,0,154,15,122,176,250,210,3,0,154,79,234,97,214,127,4,0,156,15,151,155,252,30,2,0,160,143,91,240,95,77,4,0,163,207,188,53,188,55,3,0,163,15,241,231,30,135,3,0,163,79,83,251,134,215,3,0,163,79,78,236,190,8,4,0,164,79,214,137,219,88,3,0,165,207,194,0,204,129,2,0,165,79,55,169,232,251,2,0,165,207,244,200,4,73,3,0,167,207,253,185,6,125,4,0,167,15,1,163,252,154,4,0,168,143,116,155,186,23,4,0,169,79,148,131,137,56,2,0,169,15,41,66,101,18,4,0,171,207,66,92,43,247,2,0,174,79,211,158,105,32,3,0,177,15,184,244,103,1,4,0,182,207,147,14,58,98,2,0,185,79,227,32,175,166,3,0,186,207,32,94,166,200,3,0,187,15,91,172,19,148,3,0,188,15,158,130,110,244,3,0,195,79,91,28,191,99,2,0,198,207,151,169,95,173,3,0,198,15,55,50,151,48,4,0,199,79,71,133,34,21,2,0,199,143,139,214,137,147,4,0,202,79,9,16,66,212,2,0,203,15,87,93,147,44,3,0,203,79,172,122,116,129,3,0,204,79,161,59,138,52,4,0,205,207,143,241,19,57,3,0,206,207,4,54,166,29,4,0,206,143,132,69,93,149,4,0,211,143,178,168,59,245,2,0,214,79,64,83,14,15,2,0,216,207,9,118,18,28,2,0,216,79,91,158,39,101,2,0,216,15,17,144,216,136,3,0,217,143,118,173,249,83,2,0,217,79,189,255,95,243,2,0,223,79,160,140,33,149,3,0,223,15,189,169,17,122,4,0,226,15,20,32,226,133,3,0,229,15,198,223,49,151,3,0,229,15,231,233,22,1,4,0,232,15,45,215,9,76,2,0,234,143,80,247,239,111,4,0,237,15,35,56,49,30,4,0,243,143,27,40,157,51,2,0,247,207,204,141,211,200,3,0,248,143,46,198,131,159,3,0,248,15,213,230,49,17,4,0,252,79,239,27,204,87,3,0,255,143,30,32,253,78,2,0,1,144,114,241,109,53,4,0,1,80,105,205,239,58,4,0,4,144,175,183,3,216,3,0,6,16,86,221,130,17,3,0,7,144,35,21,136,114,4,0,8,208,181,234,76,141,3,0,11,144,114,187,191,6,3,0,13,144,52,248,142,72,3,0,14,208,51,69,254,220,3,0,16,80,111,166,138,246,2,0,18,80,236,67,168,103,3,0,20,80,43,206,90,67,2,0,22,144,186,199,206,1,2,0,22,208,218,133,75,78,2,0,22,208,185,177,108,68,4,0,23,144,23,67,85,101,3,0,26,80,76,158,136,149,2,0,27,80,28,133,126,98,2,0,27,208,202,48,38,46,4,0,29,208,37,252,82,230,3,0,29,80,104,123,31,69,4,0,30,144,246,153,67,197,2,0,31,80,96,72,63,51,3,0,32,16,64,92,134,35,2,0,32,16,126,106,96,114,4,0,36,144,164,242,28,79,2,0,38,80,92,57,20,91,2,0,45,80,220,168,64,161,4,0,46,80,173,170,119,156,2,0,46,16,186,94,128,177,3,0,53,144,66,43,253,225,2,0,63,80,65,158,89,196,2,0,64,16,123,137,76,9,2,0,68,16,131,83,187,40,2,0,69,144,52,248,212,91,3,0,69,144,102,32,142,247,3,0,69,144,8,1,16,91,4,0,70,16,81,171,45,78,3,0,77,144,52,248,106,91,3,0,78,208,118,78,33,172,2,0,79,144,52,248,118,91,3,0,85,16,109,210,202,153,4,0,86,80,65,24,70,33,2,0,86,16,240,33,73,139,4,0,87,144,225,133,159,214,2,0,95,144,52,248,80,89,3,0,97,80,174,149,11,120,2,0,98,144,49,223,113,159,4,0,99,16,84,14,155,161,4,0,107,144,239,179,199,226,3,0,109,16,237,27,242,152,2,0,114,208,226,180,111,47,2,0,116,80,74,188,216,151,3,0,120,80,68,162,120,131,2,0,122,80,59,184,73,55,3,0,126,208,137,87,45,207,2,0,127,80,50,62,103,75,2,0,127,208,110,117,201,107,2,0,127,144,184,113,171,130,2,0,127,144,52,248,19,74,3,0,134,144,118,207,7,150,3,0,134,16,8,37,54,31,4,0,135,16,48,9,179,168,4,0,138,208,43,159,92,66,2,0,139,16,215,26,247,134,4,0,140,144,102,196,127,116,4,0,143,80,192,15,215,91,2,0,144,80,62,22,230,131,4,0,148,144,127,154,96,158,3,0,149,80,167,166,78,144,4,0,153,144,54,53,171,55,3,0,157,16,183,147,221,100,3,0,157,16,51,28,204,29,4,0,158,144,46,253,224,170,3,0,163,16,182,147,115,202,3,0,171,16,109,36,94,49,2,0,173,208,219,47,64,98,3,0,174,144,209,57,177,146,4,0,175,144,203,26,199,104,3,0,177,208,139,161,81,193,3,0,178,208,224,139,244,42,2,0,178,16,95,144,238,167,2,0,178,16,22,55,255,100,4,0,181,16,225,151,149,150,3,0,182,208,215,163,17,20,3,0,182,208,65,100,251,193,3,0,183,80,0,181,107,77,2,0,183,80,155,33,35,43,3,0,184,16,138,146,192,41,4,0,189,16,230,105,113,51,4,0,190,16,199,54,226,129,2,0,192,208,108,48,187,110,2,0,193,16,41,53,237,173,3,0,197,16,60,63,84,151,3,0,198,16,199,186,84,27,3,0,202,144,15,149,7,36,4,0,204,144,72,192,109,27,2,0,205,80,90,143,94,139,2,0,205,208,247,46,72,252,3,0,208,144,245,166,108,88,2,0,211,208,214,232,55,88,2,0,216,144,189,14,108,239,3,0,216,16,139,124,246,184,4,0,217,208,2,182,108,204,2,0,219,80,173,24,199,157,2,0,220,16,105,63,110,108,2,0,222,144,52,248,234,43,3,0,227,16,79,81,105,90,3,0,227,208,77,167,29,182,3,0,228,16,233,42,156,16,4,0,229,144,93,140,101,214,3,0,231,80,15,213,236,164,3,0,233,208,156,225,149,175,2,0,236,16,77,76,181,117,3,0,236,16,238,252,77,163,4,0,239,144,176,40,244,46,4,0,240,80,254,54,169,222,3,0,241,16,51,38,86,145,3,0,244,144,251,19,156,163,3,0,247,208,40,64,19,144,3,0,248,16,137,162,84,83,4,0,249,80,166,62,91,2,2,0,250,80,228,57,101,86,4,0,252,144,174,225,125,173,3,0,3,145,182,185,211,138,4,0,5,17,241,197,53,38,3,0,6,209,25,203,54,43,2,0,9,145,207,224,251,159,4,0,12,209,152,236,109,120,3,0,13,81,30,210,162,191,3,0,15,209,146,9,151,30,2,0,17,145,3,24,149,101,2,0,17,209,3,208,55,88,3,0,22,81,99,72,176,121,2,0,22,81,176,108,241,73,3,0,22,81,113,184,12,90,3,0,23,209,212,2,221,61,2,0,25,209,241,93,118,185,4,0,27,17,137,236,103,140,2,0,29,81,20,180,166,106,2,0,30,209,154,64,92,110,2,0,30,17,181,56,156,165,3,0,35,145,13,254,218,20,2,0,35,81,140,115,237,128,3,0,39,209,40,172,85,61,2,0,43,81,174,76,255,80,3,0,48,81,158,98,232,10,3,0,53,81,116,0,92,89,3,0,56,145,234,173,4,134,3,0,56,209,27,18,244,55,4,0,56,209,139,34,152,98,4,0,58,17,175,116,188,2,3,0,60,81,111,95,16,212,2,0,60,145,64,187,57,225,2,0,64,17,172,164,201,162,2,0,66,81,17,235,184,143,3,0,67,17,141,253,134,9,4,0,70,145,6,106,108,174,2,0,71,81,196,79,167,125,2,0,72,145,182,211,23,136,2,0,73,81,1,183,234,89,2,0,75,209,228,156,42,241,3,0,76,145,167,130,179,127,2,0,80,81,159,79,58,179,4,0,81,145,160,102,164,58,2,0,82,81,5,177,236,27,2,0,90,145,129,83,66,105,4,0,93,209,246,135,211,186,2,0,94,17,31,19,108,163,3,0,95,209,100,65,155,239,2,0,97,81,154,223,178,154,2,0,98,17,80,92,61,14,4,0,98,17,51,227,158,140,4,0,100,209,211,78,139,188,3,0,101,17,215,26,99,39,2,0,102,145,231,50,122,247,3,0,102,81,139,147,229,92,4,0,103,145,58,23,27,49,2,0,104,209,201,19,220,18,4,0,106,209,39,34,22,16,2,0,108,81,177,45,224,174,2,0,109,17,66,21,208,122,2,0,110,209,55,92,219,132,4,0,111,145,94,250,210,155,3,0,113,209,87,28,252,217,3,0,116,17,11,109,246,138,4,0,118,145,203,3,74,124,3,0,120,81,91,72,139,144,2,0,121,145,20,191,200,105,3,0,122,17,193,43,114,203,3,0,123,17,136,14,61,136,4,0,124,209,222,15,44,127,4,0,126,209,229,172,1,114,2,0,126,17,46,159,56,223,3,0,132,17,136,240,9,239,3,0,135,145,169,136,11,5,2,0,135,17,252,153,54,170,3,0,147,81,169,238,21,240,2,0,147,81,36,238,205,244,3,0,149,209,63,127,229,76,4,0,150,145,245,160,18,197,3,0,150,81,97,75,135,80,4,0,150,81,150,252,153,83,4,0,151,81,246,32,195,225,3,0,154,81,0,227,32,87,4,0,157,145,170,131,7,210,2,0,159,81,80,176,38,139,4,0,160,145,80,154,250,135,3,0,164,145,51,162,110,70,2,0,165,17,74,18,202,124,2,0,165,209,229,176,61,107,3,0,165,17,16,164,137,163,4,0,170,17,18,34,90,71,2,0,183,17,64,218,161,189,2,0,183,209,4,236,183,82,3,0,186,145,32,246,7,21,4,0,189,17,204,160,88,44,3,0,198,145,151,123,74,183,2,0,198,145,201,224,36,120,4,0,199,209,174,125,246,12,2,0,199,81,102,184,130,91,3,0,201,209,111,60,248,59,2,0,201,81,119,203,74,107,2,0,203,145,27,9,157,213,2,0,206,209,234,193,147,127,4,0,208,81,235,167,43,162,2,0,215,145,73,78,157,249,2,0,216,17,146,65,252,165,2,0,216,81,95,3,231,104,4,0,225,17,160,6,95,16,2,0,225,17,77,83,255,232,2,0,225,81,61,157,162,15,4,0,226,17,74,9,174,213,2,0,227,17,255,93,174,95,4,0,229,17,226,240,211,67,4,0,234,81,164,73,99,81,3,0,236,81,139,230,154,245,3,0,238,209,248,110,115,137,3,0,238,17,204,196,51,172,3,0,241,17,73,1,170,61,2,0,241,17,104,246,133,125,2,0,241,145,51,184,45,11,3,0,242,209,77,6,229,240,3,0,246,209,89,139,227,26,3,0,248,145,33,246,125,128,4,0,249,145,180,31,54,149,3,0,250,81,149,140,175,0,4,0,252,17,124,129,93,208,2,0,255,81,157,112,141,86,3,0,1,18,94,213,177,189,3,0,4,146,186,171,101,182,2,0,5,210,76,81,111,157,2,0,6,146,104,28,36,46,2,0,6,82,218,228,58,75,4,0,8,82,22,31,225,168,3,0,9,18,55,167,201,152,4,0,12,210,38,103,30,139,2,0,16,82,40,206,9,199,2,0,19,18,37,24,149,153,2,0,22,146,2,65,196,20,2,0,26,82,42,235,112,25,3,0,30,210,89,131,23,85,4,0,31,210,198,184,66,43,3,0,32,146,128,8,255,96,2,0,33,146,89,89,153,242,3,0,40,210,153,223,47,248,2,0,50,146,199,195,135,58,4,0,51,210,193,133,195,237,2,0,52,210,152,223,154,72,3,0,56,82,165,127,164,20,3,0,59,210,127,117,177,84,4,0,60,82,119,16,190,135,2,0,61,18,241,211,177,212,2,0,62,18,189,59,135,20,2,0,65,82,185,97,177,12,2,0,66,18,224,203,40,123,2,0,67,146,12,169,144,42,2,0,67,18,72,88,102,61,2,0,68,210,152,223,30,45,3,0,69,146,55,180,39,233,3,0,72,210,17,54,12,51,3,0,72,82,228,7,38,16,4,0,79,82,214,107,43,63,2,0,81,18,99,201,122,86,3,0,84,18,199,73,239,181,3,0,85,18,155,160,96,63,3,0,89,18,169,172,119,208,2,0,89,146,46,56,87,157,3,0,90,210,34,8,171,165,2,0,93,18,66,79,195,128,2,0,96,146,127,170,142,136,3,0,96,210,145,47,159,124,4,0,98,146,69,71,80,116,2,0,101,146,194,129,172,37,3,0,102,18,207,202,14,48,4,0,103,146,60,139,59,232,3,0,107,18,22,36,209,7,4,0,108,18,143,224,60,231,2,0,111,210,255,126,151,5,2,0,113,210,152,223,38,44,3,0,113,18,233,94,103,216,3,0,114,146,53,193,167,226,2,0,116,18,22,81,8,44,3,0,120,18,57,23,198,64,2,0,122,146,113,224,148,28,3,0,126,82,41,188,7,60,2,0,145,210,208,15,67,22,4,0,146,18,35,66,45,145,3,0,147,82,10,92,115,57,2,0,147,210,66,218,91,197,2,0,148,82,147,203,13,30,3,0,148,18,100,14,28,91,3,0,150,210,149,251,177,204,2,0,157,82,144,147,56,69,2,0,158,146,131,144,224,0,2,0,158,146,171,12,52,93,2,0,158,82,73,113,90,26,3,0,158,146,79,95,215,80,3,0,159,146,95,252,251,46,3,0,165,18,164,167,188,231,3,0,165,82,99,50,30,133,4,0,166,82,121,219,247,250,3,0,169,210,160,243,54,19,2,0,169,146,67,229,1,100,4,0,172,18,180,195,128,224,3,0,180,18,5,226,21,243,2,0,180,210,66,4,27,135,4,0,181,82,48,111,58,21,3,0,181,18,101,27,130,187,3,0,182,210,72,147,112,8,2,0,185,82,248,153,179,20,2,0,185,210,76,81,237,156,2,0,187,146,244,74,110,111,2,0,187,18,154,91,176,72,4,0,188,18,109,251,110,15,2,0,188,210,93,152,194,166,2,0,190,82,156,180,209,203,3,0,190,18,91,208,19,89,4,0,191,82,21,81,103,94,3,0,192,82,11,74,72,30,3,0,193,82,60,138,217,248,3,0,194,18,164,23,147,201,3,0,199,210,128,249,67,8,4,0,201,210,149,125,241,24,2,0,202,18,116,1,190,116,3,0,204,82,89,195,20,84,4,0,205,82,231,150,231,34,2,0,208,210,89,12,32,174,3,0,209,146,128,34,118,21,2,0,211,146,243,237,156,83,2,0,211,146,5,102,176,118,3,0,213,210,129,195,105,148,3,0,214,146,52,248,42,31,3,0,218,146,252,189,160,211,3,0,219,82,215,65,230,207,2,0,221,18,67,238,20,159,3,0,223,18,127,217,221,138,3,0,224,82,114,46,218,106,2,0,227,82,129,24,64,214,2,0,232,210,21,132,18,132,2,0,233,210,206,153,11,30,4,0,234,146,175,83,194,255,2,0,236,18,202,209,253,190,3,0,237,82,12,92,208,27,3,0,238,18,18,109,27,99,2,0,239,82,169,24,123,205,2,0,241,146,190,61,220,95,3,0,242,18,75,116,131,254,2,0,242,146,181,127,16,182,4,0,244,18,40,139,11,189,2,0,245,82,236,180,45,164,4,0,246,18,221,117,254,122,2,0,248,146,48,190,41,194,2,0,249,82,139,25,165,155,2,0,250,82,74,25,79,71,4,0,252,82,115,245,218,237,2,0,252,210,37,167,221,194,3,0,252,146,128,171,247,34,4,0,0,211,203,53,62,213,2,0,2,147,163,100,177,115,2,0,2,147,163,100,197,115,2,0,4,19,242,166,228,163,4,0,5,147,60,116,110,122,4,0,9,147,3,160,188,90,3,0,10,147,168,131,86,165,3,0,13,83,118,226,108,195,3,0,22,19,58,80,5,167,3,0,24,147,75,58,23,194,2,0,25,211,202,87,141,58,2,0,26,83,227,116,58,160,3,0,26,211,135,85,185,78,4,0,26,211,135,85,209,78,4,0,26,211,135,85,245,78,4,0,28,211,25,173,191,213,2,0,28,147,189,164,152,30,3,0,31,147,143,106,115,248,2,0,31,83,255,137,123,200,3,0,32,83,169,210,134,83,3,0,32,83,217,33,113,167,3,0,32,19,61,12,199,170,3,0,36,211,248,158,211,65,2,0,36,83,139,160,140,67,3,0,37,83,35,94,162,40,2,0,38,147,218,174,66,80,2,0,39,83,124,50,216,57,2,0,39,147,65,58,60,140,4,0,40,19,145,239,132,23,2,0,40,19,34,40,146,153,4,0,43,83,235,161,36,134,3,0,44,83,71,192,91,154,2,0,49,19,160,215,113,132,3,0,50,147,25,25,176,196,2,0,57,83,229,64,152,197,3,0,60,211,24,136,100,108,4,0,61,19,20,104,224,40,3,0,61,211,122,128,116,165,4,0,63,19,201,26,109,116,3,0,63,19,196,167,103,193,3,0,68,211,250,90,92,27,2,0,69,19,173,80,8,142,2,0,70,147,225,114,175,196,3,0,71,147,156,42,10,141,4,0,73,147,109,143,242,206,2,0,73,211,84,184,64,172,3,0,74,83,175,121,10,177,4,0,77,147,52,248,8,19,3,0,77,83,102,64,42,162,4,0,78,83,57,143,186,75,4,0,79,83,77,22,13,138,4,0,84,83,93,116,176,246,3,0,89,211,45,87,181,61,3,0,89,19,214,21,145,64,3,0,93,211,212,34,128,120,3,0,93,147,130,73,127,148,3,0,93,147,113,4,77,156,3,0,93,19,219,175,178,68,4,0,96,211,237,98,79,212,3,0,97,211,131,54,139,119,2,0,98,211,64,205,88,145,4,0,102,19,208,210,29,32,2,0,106,147,129,207,33,83,3,0,107,19,108,124,70,179,3,0,108,83,232,128,110,54,2,0,109,147,36,81,94,28,3,0,110,147,94,197,222,94,2,0,111,19,120,28,96,137,2,0,112,83,208,9,239,23,2,0,114,19,97,124,198,111,4,0,115,211,159,16,107,115,3,0,116,211,166,244,136,27,3,0,116,19,116,255,25,106,3,0,116,147,178,9,106,48,4,0,118,83,245,75,35,45,4,0,118,211,49,141,30,163,4,0,119,147,248,194,58,61,2,0,120,147,72,134,59,19,3,0,124,19,215,252,88,16,3,0,125,147,250,215,188,150,4,0,125,19,227,206,88,152,4,0,126,83,236,11,227,176,3,0,128,211,71,167,251,124,2,0,130,83,180,242,106,229,3,0,141,147,124,176,59,210,3,0,142,19,209,183,174,67,4,0,145,83,104,108,158,201,3,0,145,147,42,54,165,18,4,0,149,147,175,218,115,114,2,0,149,211,125,26,53,120,4,0,150,211,228,238,155,142,3,0,154,83,246,221,79,242,2,0,155,211,76,81,149,159,2,0,156,19,238,194,170,204,3,0,161,147,122,102,156,246,3,0,163,83,138,7,226,36,4,0,166,83,40,83,140,21,2,0,169,147,228,144,252,62,4,0,171,19,11,84,10,55,4,0,173,211,149,141,130,10,2,0,174,211,121,167,39,200,3,0,174,19,145,10,249,97,4,0,175,147,48,80,71,11,2,0,176,83,62,68,244,188,3,0,177,83,68,129,98,240,2,0,177,147,40,118,239,224,3,0,178,211,240,184,216,12,4,0,178,211,151,4,180,90,4,0,180,147,29,94,180,109,3,0,181,19,252,103,204,252,2,0,182,19,6,126,71,25,3,0,182,19,124,84,20,160,4,0,183,211,240,251,119,183,2,0,184,211,42,237,36,43,4,0,187,83,74,210,212,184,2,0,187,147,238,182,203,207,2,0,190,19,57,151,82,111,2,0,191,19,41,55,108,79,2,0,191,211,243,97,56,34,3,0,198,83,75,219,199,177,3,0,199,211,19,179,12,67,3,0,202,83,112,113,88,167,3,0,202,147,175,63,0,53,4,0,205,19,178,186,115,11,3,0,206,147,117,124,6,169,3,0,209,19,155,148,134,121,4,0,212,211,113,132,171,251,3,0,213,147,160,45,95,12,2,0,213,211,11,49,2,95,2,0,217,83,109,110,162,42,4,0,220,83,42,116,185,3,2,0,221,211,100,125,119,111,3,0,225,211,70,233,204,239,2,0,229,19,140,222,114,250,2,0,231,83,235,67,39,2,3,0,231,211,211,190,211,97,4,0,239,147,117,242,244,27,4,0,241,211,223,125,115,182,3,0,243,147,185,72,16,47,3,0,245,83,6,92,142,126,3,0,248,83,197,124,112,100,4,0,251,147,51,9,45,65,3,0,252,83,142,243,34,186,2,0,255,83,134,41,50,91,4,0,0,212,200,214,148,117,3,0,0,20,53,219,86,234,3,0,1,148,160,171,40,129,4,0,2,84,218,231,14,30,2,0,2,84,172,223,152,232,2,0,4,84,65,110,155,171,3,0,5,148,207,90,140,155,2,0,5,20,195,150,61,158,3,0,9,84,178,98,189,107,3,0,10,148,203,224,215,148,2,0,17,148,175,12,113,57,4,0,21,20,96,180,34,117,3,0,27,84,43,209,9,178,2,0,28,20,142,84,100,135,2,0,29,148,31,5,191,35,2,0,30,20,57,20,130,166,4,0,32,148,101,89,84,110,4,0,37,148,160,216,75,71,2,0,40,148,25,109,247,45,2,0,40,212,168,81,156,109,4,0,41,84,199,63,133,55,3,0,46,148,145,100,119,147,3,0,49,20,250,96,122,124,4,0,51,148,186,103,130,140,3,0,55,84,3,227,183,59,2,0,57,148,161,41,222,144,3,0,63,20,245,147,164,183,3,0,66,212,225,153,161,82,4,0,67,84,37,34,44,120,2,0,70,84,184,64,93,79,2,0,70,84,199,58,98,232,3,0,72,20,25,111,212,46,3,0,77,84,121,2,212,157,3,0,78,212,141,117,188,80,4,0,79,84,72,210,8,4,4,0,80,148,232,51,71,69,3,0,85,148,168,88,2,71,4,0,87,212,11,22,164,240,2,0,90,20,170,18,5,2,2,0,93,148,76,81,186,188,2,0,98,212,39,220,238,130,4,0,100,84,147,203,78,143,3,0,100,212,63,162,248,189,3,0,100,148,13,130,52,103,4,0,109,212,90,34,57,85,4,0,111,20,65,251,132,19,3,0,112,84,244,190,171,77,3,0,113,20,198,217,166,144,3,0,114,84,68,78,58,177,4,0,118,20,249,32,63,188,2,0,119,84,251,13,56,130,3,0,120,148,149,184,91,110,3,0,120,212,54,180,35,86,4,0,122,84,194,202,134,219,3,0,124,84,44,198,175,32,2,0,126,148,213,228,205,72,3,0,126,148,69,206,202,147,4,0,128,148,242,70,203,41,4,0,129,20,241,94,128,20,3,0,130,148,76,73,171,90,3,0,131,84,110,237,58,165,3,0,133,20,24,81,25,89,3,0,136,20,180,201,32,222,2,0,139,84,98,16,152,10,3,0,140,148,6,19,19,27,3,0,141,148,38,28,123,247,2,0,147,84,48,186,88,47,4,0,148,212,137,30,221,134,2,0,150,84,193,251,167,11,3,0,154,212,86,3,197,4,3,0,154,84,235,121,186,89,3,0,155,20,10,108,239,58,2,0,159,148,223,149,136,93,2,0,161,84,113,76,13,50,4,0,162,20,186,101,89,8,4,0,164,148,75,58,89,194,2,0,165,212,111,172,238,215,3,0,166,84,91,199,250,136,2,0,169,84,119,127,190,147,4,0,170,148,39,35,4,32,3,0,171,84,10,227,238,25,2,0,171,148,130,100,171,112,2,0,172,20,131,163,135,37,4,0,173,148,222,152,129,216,2,0,177,212,24,41,146,105,2,0,177,20,52,202,250,69,3,0,178,84,190,197,82,114,2,0,178,20,6,171,203,198,3,0,179,212,240,27,112,40,2,0,179,212,240,115,196,75,2,0,180,20,112,238,134,83,2,0,183,84,235,212,101,96,2,0,186,84,22,18,163,159,2,0,188,212,66,105,118,27,4,0,189,148,28,192,124,101,2,0,190,20,87,3,180,4,3,0,193,20,24,81,236,88,3,0,193,148,199,196,146,172,3,0,197,20,15,51,108,180,3,0,199,84,174,151,80,94,3,0,200,20,140,170,13,154,2,0,200,148,23,192,101,170,2,0,200,84,191,228,231,25,3,0,203,148,156,122,185,105,3,0,203,20,76,11,247,162,3,0,205,84,119,118,153,247,2,0,206,212,121,25,63,151,3,0,207,148,144,28,180,255,3,0,209,212,224,186,251,143,3,0,210,148,26,244,106,159,3,0,211,84,66,85,173,35,2,0,212,20,197,64,213,98,2,0,216,84,206,40,50,91,3,0,217,148,121,238,176,109,2,0,223,148,238,182,3,208,2,0,227,84,134,130,189,162,4,0,230,212,116,172,181,10,4,0,234,212,24,81,116,104,3,0,240,20,187,238,207,112,3,0,244,20,44,157,96,177,4,0,245,84,15,62,82,191,2,0,247,20,156,22,242,68,2,0,252,212,92,232,39,172,4,0,254,84,93,92,89,4,4,0,1,213,52,250,183,8,2,0,2,85,192,21,108,139,3,0,4,21,15,22,195,156,3,0,10,21,86,127,131,223,3,0,15,149,4,230,222,232,3,0,18,149,229,70,254,110,2,0,18,213,57,46,195,229,3,0,18,149,145,68,76,177,4,0,20,213,153,144,85,95,2,0,21,213,77,70,199,160,3,0,21,21,203,239,11,194,3,0,24,213,86,67,17,95,2,0,26,85,76,70,120,218,3,0,27,149,59,184,150,58,3,0,27,149,227,22,94,155,3,0,29,85,120,165,220,112,2,0,29,85,120,165,243,112,2,0,29,149,230,212,244,64,4,0,30,149,25,9,213,28,4,0,34,149,33,18,96,66,3,0,37,85,43,222,191,85,4,0,40,21,161,141,51,215,2,0,42,149,220,15,254,88,4,0,49,21,72,68,43,55,3,0,50,149,123,148,60,186,3,0,51,149,143,47,202,125,3,0,51,21,200,221,143,95,4,0,57,21,63,194,197,71,2,0,57,85,22,61,147,28,4,0,58,21,3,241,216,115,3,0,59,85,1,191,249,102,2,0,60,21,29,219,226,165,4,0,61,85,217,120,96,162,3,0,61,21,140,24,151,73,4,0,65,213,20,209,165,181,4,0,67,149,167,181,64,66,4,0,69,213,58,12,71,184,2,0,69,21,0,64,11,70,4,0,71,149,98,201,57,37,4,0,73,21,24,81,250,88,3,0,74,213,72,11,147,116,4,0,80,21,200,221,186,34,2,0,80,21,17,175,34,20,3,0,81,149,199,160,74,2,2,0,82,21,160,226,204,162,4,0,85,149,213,56,20,19,3,0,88,213,217,0,173,30,3,0,94,21,91,141,155,108,3,0,94,21,117,178,252,117,4,0,99,21,38,81,26,34,3,0,100,213,218,224,13,155,3,0,104,21,227,133,134,169,3,0,105,213,76,155,169,16,4,0,108,213,82,70,225,222,3,0,120,149,119,97,42,78,4,0,124,85,60,209,71,41,3,0,126,213,252,120,11,131,3,0,133,149,193,238,15,191,3,0,135,21,74,108,216,49,2,0,135,213,226,235,238,95,3,0,137,149,67,179,104,16,4,0,138,213,44,243,6,136,3,0,139,149,255,144,17,210,3,0,140,149,232,242,120,139,4,0,141,21,94,132,135,175,4,0,142,85,89,8,177,10,2,0,152,21,208,105,166,244,3,0,155,21,26,3,4,104,2,0,158,85,69,237,4,61,4,0,160,85,2,188,91,147,4,0,162,21,29,48,86,73,3,0,163,21,203,2,90,37,2,0,163,21,203,2,107,37,2,0,163,21,203,2,131,37,2,0,163,149,76,42,119,122,3,0,163,21,203,2,74,182,4,0,163,21,203,2,89,182,4,0,169,213,25,110,25,142,2,0,169,213,109,243,35,185,3,0,172,213,162,47,77,178,4,0,173,21,108,182,224,30,4,0,173,85,3,184,60,77,4,0,175,85,1,129,101,43,3,0,177,213,43,165,244,133,3,0,177,85,236,105,28,49,4,0,177,149,127,72,200,72,4,0,177,213,235,188,4,162,4,0,178,85,98,79,240,242,3,0,179,213,127,154,23,18,3,0,181,213,175,218,172,24,4,0,181,213,175,218,214,24,4,0,181,213,175,218,13,25,4,0,181,213,175,218,58,25,4,0,181,213,175,218,98,25,4,0,181,213,175,218,145,25,4,0,181,213,175,218,193,25,4,0,181,213,175,218,229,25,4,0,181,213,175,218,13,26,4,0,181,213,175,218,56,26,4,0,181,213,175,218,91,26,4,0,182,21,137,168,173,11,2,0,183,213,196,35,131,218,3,0,186,85,150,160,205,55,3,0,191,213,54,245,112,62,2,0,191,149,252,103,130,237,2,0,192,149,179,124,167,89,4,0,193,213,214,58,12,211,3,0,195,85,204,86,244,218,2,0,196,149,38,28,59,185,3,0,198,213,154,255,56,220,2,0,198,213,200,195,142,176,3,0,198,213,238,2,194,18,4,0,200,85,3,199,55,208,3,0,210,21,128,143,238,99,4,0,212,213,127,133,241,246,2,0,213,149,113,109,152,73,2,0,213,149,142,243,38,168,2,0,217,21,2,114,145,233,2,0,218,21,36,253,36,10,3,0,223,85,167,246,8,234,3,0,224,213,45,248,0,87,2,0,225,213,205,26,3,219,3,0,226,213,202,78,23,13,2,0,227,213,149,227,121,184,4,0,230,149,111,235,1,234,2,0,232,21,121,171,89,179,4,0,233,149,87,0,3,85,4,0,236,213,178,87,180,92,2,0,236,213,40,229,110,14,3,0,236,21,115,54,175,61,4,0,243,149,203,160,235,44,3,0,246,85,23,187,173,216,2,0,250,213,143,178,15,215,3,0,251,149,205,116,72,16,2,0,252,213,171,201,133,170,2,0,252,149,135,90,169,64,3,0,255,21,108,51,198,162,3,0,3,22,48,158,200,127,2,0,3,150,8,216,74,166,2,0,5,86,77,65,39,64,2,0,5,150,141,93,107,177,3,0,10,150,225,226,70,54,2,0,11,86,131,53,160,47,3,0,13,214,116,45,184,102,2,0,14,22,160,63,79,101,2,0,14,22,214,38,117,174,3,0,16,150,54,118,194,90,2,0,19,86,245,150,119,125,4,0,22,22,23,211,212,32,4,0,26,86,89,171,155,77,3,0,29,22,231,49,228,141,2,0,34,214,214,127,202,16,3,0,37,22,233,158,80,216,2,0,37,22,149,250,181,131,3,0,38,22,189,206,177,24,2,0,38,22,16,146,174,242,3,0,42,22,62,99,203,208,3,0,45,214,191,59,149,123,3,0,49,150,47,18,195,23,2,0,49,22,218,243,28,24,2,0,49,86,33,15,88,96,4,0,49,150,148,167,51,158,4,0,51,150,244,106,73,149,3,0,54,214,242,238,83,54,4,0,56,86,187,128,148,244,3,0,57,150,57,166,74,103,4,0,60,150,39,143,248,187,2,0,64,214,208,16,138,41,4,0,76,150,158,172,43,205,2,0,79,22,211,7,252,23,2,0,79,22,173,184,244,40,3,0,84,214,183,213,98,147,3,0,86,22,148,71,221,54,3,0,87,86,129,171,210,213,2,0,89,214,201,226,62,1,2,0,90,150,52,248,173,249,2,0,91,150,31,99,248,139,4,0,92,214,57,74,131,184,4,0,94,214,246,83,153,156,3,0,98,22,23,194,247,229,2,0,99,22,212,96,139,92,4,0,101,22,86,187,175,46,3,0,104,22,67,113,86,220,3,0,105,22,110,152,227,76,3,0,106,214,153,223,40,237,2,0,107,22,16,32,121,106,3,0,109,22,206,21,41,243,2,0,111,86,76,85,241,148,3,0,111,214,229,23,166,13,4,0,114,86,95,113,180,239,3,0,117,150,157,11,210,96,3,0,119,22,152,92,156,45,4,0,121,86,37,211,248,80,2,0,122,150,205,170,95,60,4,0,125,22,183,216,204,11,4,0,130,214,6,242,142,223,2,0,132,22,53,237,171,134,2,0,133,86,109,252,159,13,3,0,136,214,27,115,21,217,3,0,138,214,96,108,12,82,3,0,138,22,23,92,61,92,4,0,138,214,215,154,242,168,4,0,139,22,10,206,221,81,3,0,139,86,56,222,229,83,3,0,144,22,197,112,121,16,3,0,144,214,121,135,172,136,4,0,150,86,18,204,232,146,4,0,151,22,110,105,135,238,2,0,156,22,64,155,174,226,3,0,157,22,72,191,79,238,3,0,159,150,23,195,120,210,2,0,159,22,133,24,250,143,4,0,160,150,235,49,197,129,3,0,168,150,247,155,81,189,3,0,172,150,52,248,99,247,2,0,174,86,41,20,240,44,2,0,174,86,202,252,52,6,3,0,174,150,12,20,157,143,4,0,175,150,41,188,157,214,3,0,179,214,36,11,5,6,3,0,183,150,52,248,111,247,2,0,183,86,20,37,72,39,3,0,187,150,243,32,113,235,3,0,191,214,46,215,240,106,4,0,193,86,60,227,65,187,3,0,194,22,203,110,38,209,2,0,195,214,176,196,83,3,4,0,200,22,154,202,152,187,3,0,211,22,64,151,149,108,2,0,211,86,191,181,254,114,3,0,212,86,39,24,6,99,2,0,214,86,95,201,115,76,3,0,215,214,24,223,137,167,2,0,216,150,144,29,68,37,2,0,217,22,15,96,82,29,2,0,220,150,167,192,169,181,2,0,220,86,153,131,121,199,2,0,220,22,220,187,187,153,3,0,222,214,32,132,213,125,2,0,225,150,242,66,177,156,4,0,232,150,117,243,150,224,2,0,240,150,142,189,254,67,2,0,240,214,73,70,75,220,3,0,240,86,49,93,65,174,4,0,242,22,221,69,154,7,4,0,243,150,173,199,204,181,3,0,244,22,17,5,93,123,4,0,247,150,60,218,194,149,3,0,247,214,32,97,200,49,4,0,250,86,6,168,209,3,3,0,251,86,62,192,14,52,2,0,252,86,94,215,247,20,2,0,252,86,245,108,110,195,2,0,1,151,234,214,159,178,2,0,4,215,132,54,142,225,3,0,8,151,94,205,212,70,4,0,8,87,78,1,9,81,4,0,10,151,49,107,49,153,3,0,10,151,60,62,39,237,3,0,12,151,253,154,228,184,3,0,17,151,71,208,89,88,2,0,17,87,18,192,70,193,2,0,18,151,156,124,163,3,2,0,18,151,52,248,123,238,2,0,19,215,181,148,131,124,2,0,22,23,99,160,13,59,3,0,23,87,164,155,68,7,2,0,23,87,182,176,15,15,3,0,25,151,3,90,173,23,3,0,27,215,247,201,181,49,4,0,31,23,223,6,185,119,2,0,31,151,9,113,128,110,3,0,33,23,147,86,87,1,4,0,33,151,210,138,135,85,4,0,34,151,33,15,252,73,2,0,34,151,33,15,10,74,2,0,39,87,40,194,7,230,2,0,43,87,10,239,13,56,4,0,44,215,80,5,94,41,3,0,46,23,44,167,90,82,2,0,46,23,209,46,16,98,4,0,52,23,129,176,117,210,3,0,61,87,27,224,166,3,4,0,62,23,59,38,49,25,3,0,63,215,91,43,137,197,3,0,64,87,239,249,46,114,3,0,65,87,11,173,189,219,2,0,66,23,167,153,6,200,3,0,73,151,134,121,48,64,3,0,80,151,2,242,71,41,4,0,81,87,99,30,120,188,2,0,84,215,99,140,185,81,3,0,84,87,198,201,17,101,4,0,92,151,139,206,154,96,3,0,96,151,28,139,220,13,2,0,98,87,81,243,16,64,4,0,99,215,133,231,251,122,3,0,99,87,227,173,103,160,4,0,101,87,14,139,153,65,3,0,104,151,52,248,159,242,2,0,104,87,30,43,47,192,3,0,107,215,24,212,23,58,3,0,112,87,25,110,216,41,2,0,112,23,237,17,3,29,4,0,113,87,29,86,117,81,3,0,116,215,249,42,29,6,4,0,119,151,100,139,119,182,2,0,125,87,74,63,112,80,4,0,126,215,85,180,126,139,3,0,128,87,110,136,53,235,3,0,130,215,174,40,234,233,2,0,131,151,193,29,189,72,2,0,134,23,52,112,238,186,2,0,135,215,65,188,151,169,2,0,136,87,164,103,206,6,3,0,136,151,24,235,135,205,3,0,137,23,30,248,64,95,3,0,138,87,124,184,24,88,3,0,139,23,119,186,118,188,3,0,147,215,182,62,7,250,3,0,148,151,33,122,134,79,2,0,149,151,228,250,69,150,4,0,150,215,64,196,190,118,3,0,152,151,167,161,71,80,4,0,157,151,171,203,30,133,2,0,159,87,124,190,232,45,3,0,161,87,192,19,70,108,2,0,163,87,25,3,138,142,4,0,164,87,131,148,104,147,4,0,168,151,244,36,159,138,4,0,169,23,220,95,70,129,2,0,171,215,218,212,24,12,4,0,177,23,192,176,137,72,2,0,192,151,201,112,125,116,3,0,192,151,217,197,235,236,3,0,193,87,143,99,151,131,2,0,193,23,239,91,224,94,4,0,196,215,139,160,32,64,3,0,197,87,140,91,198,122,3,0,197,215,233,29,249,192,3,0,197,151,229,64,228,50,4,0,198,215,39,149,168,127,4,0,200,87,177,45,100,175,2,0,204,151,37,67,27,204,3,0,205,151,54,2,70,93,3,0,205,151,38,51,151,54,4,0,210,151,54,96,227,145,3,0,211,87,228,229,141,147,2,0,214,87,167,233,115,218,2,0,214,87,152,137,24,78,4,0,217,87,67,208,248,102,3,0,217,151,59,20,19,170,3,0,221,215,229,5,195,171,3,0,225,23,209,250,84,119,4,0,228,87,103,212,43,184,2,0,228,215,123,98,145,211,2,0,228,151,178,191,210,67,3,0,231,87,37,37,76,226,2,0,231,151,14,240,201,226,2,0,232,215,188,194,115,191,3,0,233,151,44,52,198,66,3,0,238,151,219,105,73,8,3,0,238,151,86,130,187,70,4,0,239,215,154,49,25,205,3,0,241,87,235,190,217,124,3,0,241,151,12,28,112,164,4,0,242,215,51,84,134,36,4,0,243,215,131,97,153,149,2,0,246,23,167,103,206,137,4,0,247,151,7,197,201,47,3,0,248,151,2,3,31,96,2,0,249,215,181,25,63,154,3,0,250,215,218,182,44,152,2,0,251,87,229,126,196,179,4,0,252,151,227,189,95,236,3,0,253,151,54,136,128,171,2,0,254,23,190,15,152,226,3,0,3,24,62,159,75,36,4,0,5,152,141,99,38,13,2,0,6,24,35,112,177,85,4,0,12,152,173,19,105,35,3,0,15,152,58,66,45,98,3,0,21,88,80,245,127,192,2,0,21,152,158,128,141,62,4,0,23,216,116,122,94,25,2,0,23,24,177,174,4,36,2,0,26,88,123,74,161,60,4,0,37,216,200,183,221,6,2,0,37,24,100,183,66,85,3,0,40,152,218,178,159,231,3,0,41,88,127,138,196,41,2,0,44,24,157,179,32,189,2,0,45,216,26,12,20,140,2,0,45,88,77,244,230,88,4,0,47,216,107,68,95,109,2,0,55,24,114,227,228,127,2,0,55,216,153,223,118,242,2,0,66,152,25,11,245,227,3,0,69,88,110,155,131,37,3,0,70,88,223,149,232,183,3,0,70,88,131,121,191,133,4,0,73,152,4,54,67,29,4,0,76,152,182,155,231,83,4,0,82,88,34,56,214,214,3,0,84,152,99,163,61,45,3,0,84,216,75,127,39,107,3,0,90,88,158,253,54,127,3,0,91,152,108,208,135,126,2,0,94,24,223,66,9,54,2,0,94,24,105,184,211,90,3,0,94,216,16,46,83,249,3,0,95,152,114,156,195,188,3,0,96,216,148,149,131,132,3,0,99,88,42,15,181,126,2,0,103,216,248,66,72,176,3,0,113,216,108,253,156,60,2,0,117,152,203,17,8,171,4,0,120,24,239,185,141,57,4,0,122,152,4,195,42,211,2,0,122,216,123,184,27,86,3,0,125,88,183,84,140,252,3,0,127,88,237,156,223,169,4,0,130,88,209,47,126,92,4,0,136,216,200,183,201,6,2,0,139,88,25,15,91,106,3,0,141,88,183,165,161,43,4,0,142,24,49,51,82,83,2,0,143,88,204,168,70,50,2,0,144,88,151,73,150,112,2,0,145,152,153,223,144,3,3,0,148,24,8,49,58,241,2,0,150,88,222,61,103,222,2,0,150,216,125,67,54,14,3,0,150,88,61,198,103,174,4,0,154,88,10,8,80,127,4,0,154,24,58,158,200,180,4,0,158,88,28,180,204,230,3,0,159,216,123,3,60,234,2,0,159,152,73,103,58,166,3,0,161,152,191,57,159,111,2,0,161,88,130,205,196,131,2,0,161,152,239,22,135,97,3,0,161,24,148,48,5,120,3,0,162,216,35,145,199,152,2,0,163,88,94,202,179,151,4,0,163,24,48,91,10,174,4,0,164,216,153,102,54,59,3,0,167,24,137,13,246,151,3,0,169,88,250,94,15,193,2,0,170,152,138,219,79,6,2,0,171,88,119,226,160,9,4,0,175,24,27,226,254,132,3,0,176,152,129,192,170,184,4,0,176,152,129,192,210,184,4,0,177,88,76,250,39,69,2,0,179,216,124,209,91,132,3,0,179,88,117,96,62,245,3,0,183,88,205,154,132,11,2,0,184,88,136,185,58,48,2,0,191,24,37,32,60,125,4,0,197,24,115,57,205,169,2,0,204,88,210,199,93,174,3,0,204,24,163,213,11,94,4,0,207,88,180,38,36,95,2,0,210,216,80,201,77,210,3,0,213,152,254,125,90,131,4,0,215,24,53,120,18,14,3,0,216,152,182,65,71,160,4,0,217,152,255,243,159,10,4,0,219,216,112,37,49,52,2,0,219,88,30,1,183,63,2,0,220,24,24,242,173,52,3,0,220,24,51,111,178,9,4,0,226,152,113,52,207,91,4,0,230,24,250,74,71,122,3,0,231,216,222,45,252,113,4,0,233,152,149,23,19,97,2,0,234,24,2,223,15,43,3,0,240,216,76,75,243,185,2,0,240,24,22,129,6,223,2,0,240,216,244,139,48,134,3,0,241,152,24,232,45,135,4,0,246,152,160,113,35,222,3,0,246,152,248,248,217,243,3,0,249,88,232,35,203,118,3,0,252,152,6,160,154,116,2,0,255,24,70,58,146,71,2,0,0,153,67,44,219,234,3,0,1,25,166,195,67,91,3,0,2,25,188,186,27,17,3,0,8,217,28,162,39,62,4,0,11,217,241,34,197,157,3,0,13,153,146,12,217,47,4,0,14,217,57,184,222,81,2,0,14,217,133,144,51,239,2,0,14,153,59,99,255,22,4,0,15,25,247,150,221,204,3,0,17,89,212,25,143,53,4,0,22,217,203,60,254,82,4,0,27,25,33,9,89,114,3,0,33,217,241,16,217,75,2,0,35,217,120,184,48,135,2,0,35,89,185,77,211,176,4,0,37,153,87,77,65,157,3,0,38,153,238,89,159,254,2,0,39,25,110,105,151,238,2,0,39,89,182,77,40,8,3,0,40,217,128,251,8,205,3,0,46,89,31,137,251,112,3,0,48,25,227,143,24,20,2,0,52,89,158,188,99,250,2,0,56,89,220,149,154,160,4,0,59,153,93,181,38,223,3,0,66,25,221,123,219,228,2,0,66,25,101,186,74,31,3,0,67,153,200,149,2,220,2,0,69,153,121,126,226,107,4,0,70,89,237,2,104,229,2,0,72,153,106,46,255,15,2,0,80,89,28,126,106,119,3,0,82,25,69,210,59,53,4,0,84,153,225,152,6,215,2,0,84,153,103,52,63,252,2,0,85,25,230,248,243,218,3,0,88,25,111,16,159,8,4,0,89,89,12,222,124,192,3,0,95,89,191,203,50,61,3,0,95,153,109,157,206,36,4,0,98,89,164,155,241,6,2,0,99,25,134,206,7,174,2,0,100,25,2,119,41,105,2,0,102,217,222,143,143,101,3,0,103,89,76,158,243,238,2,0,106,153,102,155,147,11,3,0,111,217,239,187,136,4,3,0,113,25,105,28,116,66,3,0,117,153,119,169,41,37,3,0,117,217,151,75,57,80,3,0,118,25,91,61,76,60,4,0,121,25,196,100,156,229,3,0,123,153,44,29,60,107,2,0,128,153,249,104,135,150,2,0,129,153,56,59,85,47,2,0,129,25,41,113,116,104,2,0,130,89,243,150,88,164,4,0,131,217,125,164,77,98,2,0,141,25,244,56,164,161,2,0,141,25,40,64,196,59,3,0,141,217,213,13,209,180,3,0,142,217,226,138,159,109,3,0,143,217,252,214,29,208,3,0,146,153,84,149,47,248,3,0,148,89,161,81,168,128,2,0,150,217,26,177,75,215,2,0,151,153,109,26,207,155,4,0,152,153,176,53,231,155,4,0,153,153,159,93,115,3,3,0,155,89,206,54,98,180,4,0,157,153,3,139,104,16,3,0,158,217,153,223,224,239,2,0,162,153,133,232,95,175,3,0,165,89,248,253,57,176,4,0,169,89,87,59,230,14,2,0,169,153,204,68,104,223,2,0,169,25,156,93,133,99,4,0,170,89,158,185,81,246,3,0,171,217,46,197,123,59,2,0,173,153,120,130,115,36,2,0,174,25,199,183,153,206,3,0,176,153,115,200,191,254,2,0,176,89,65,43,7,20,4,0,177,153,56,93,22,129,2,0,178,153,69,233,185,111,2,0,178,89,237,134,16,130,2,0,181,153,136,242,87,105,4,0,184,153,12,177,140,111,2,0,184,89,214,176,10,102,3,0,186,25,76,250,212,26,2,0,188,89,109,209,77,4,2,0,189,89,185,147,173,36,2,0,189,89,85,71,10,124,4,0,190,153,202,35,1,102,2,0,190,153,9,171,33,181,2,0,191,25,1,165,228,139,2,0,191,217,236,144,192,64,3,0,192,89,116,175,13,162,2,0,198,217,122,77,251,156,2,0,198,89,166,125,92,141,3,0,201,89,201,100,253,112,4,0,202,89,223,144,209,171,4,0,204,217,207,169,67,116,2,0,206,89,131,118,183,92,3,0,206,89,249,130,105,245,3,0,207,25,57,66,151,251,2,0,211,153,234,231,62,83,4,0,217,25,160,0,201,144,3,0,220,153,224,152,137,214,2,0,221,153,162,116,34,70,2,0,223,153,59,132,92,19,3,0,224,153,211,75,28,75,2,0,224,25,124,184,208,84,3,0,224,217,216,187,233,196,3,0,231,25,148,115,149,218,3,0,236,153,171,107,98,48,3,0,236,89,138,95,155,1,4,0,238,25,82,246,43,73,3,0,243,153,217,45,95,63,2,0,244,153,52,186,49,51,2,0,245,25,145,16,246,123,2,0,247,217,189,105,243,81,4,0,250,153,60,217,167,152,2,0,251,25,238,217,7,40,4,0,252,89,97,231,134,89,3,0,253,153,110,119,100,115,4,0,5,154,82,2,87,228,3,0,6,26,85,82,152,190,3,0,8,218,203,224,16,115,3,0,8,26,3,218,157,14,4,0,11,218,139,78,109,57,3,0,11,218,249,91,159,154,3,0,11,90,51,158,74,160,3,0,12,218,200,172,174,80,3,0,15,218,48,95,147,133,2,0,16,90,227,217,70,47,3,0,16,218,3,21,128,124,3,0,17,90,21,188,50,79,2,0,17,218,198,95,21,139,3,0,20,26,4,91,182,145,4,0,22,26,90,253,191,21,3,0,26,154,87,255,242,147,4,0,27,154,144,45,40,71,2,0,27,218,151,178,4,39,4,0,29,90,129,52,37,102,3,0,34,90,59,234,97,39,4,0,35,90,221,128,111,24,4,0,36,218,185,163,61,27,4,0,38,26,40,167,90,91,3,0,38,26,185,176,215,225,3,0,38,218,199,56,129,170,4,0,38,218,115,196,182,186,4,0,40,26,7,244,40,103,2,0,40,26,7,173,13,185,2,0,41,26,189,185,192,60,2,0,42,90,200,114,35,34,2,0,47,90,213,205,173,248,3,0,52,90,159,218,218,75,4,0,54,154,52,248,85,193,2,0,56,218,210,17,144,16,3,0,56,90,22,81,114,70,3,0,56,90,72,10,18,119,4,0,57,218,201,237,77,176,4,0,59,90,90,185,154,6,4,0,64,154,192,64,150,43,4,0,65,154,160,46,136,151,4,0,68,218,244,181,96,172,4,0,70,26,148,126,45,49,2,0,71,26,164,244,135,66,3,0,71,26,19,225,142,131,3,0,74,218,26,177,187,214,2,0,77,26,250,144,212,96,4,0,84,154,164,155,218,15,2,0,86,90,141,190,197,100,4,0,88,154,212,203,10,93,4,0,90,218,106,38,37,160,4,0,92,154,151,152,118,241,3,0,92,26,195,48,16,147,4,0,93,90,22,81,185,69,3,0,94,90,5,179,36,151,3,0,99,154,33,15,127,133,2,0,100,218,180,159,122,114,4,0,101,90,22,81,57,69,3,0,102,90,50,70,241,90,4,0,103,90,90,29,122,191,2,0,103,26,41,199,140,69,3,0,104,26,181,153,59,40,4,0,106,90,14,212,137,248,3,0,107,154,52,248,191,154,2,0,107,90,255,9,241,126,4,0,109,218,3,206,249,134,3,0,111,90,184,78,51,58,3,0,114,218,180,144,146,159,4,0,116,154,164,155,205,15,2,0,118,90,200,114,54,34,2,0,122,218,207,46,44,151,2,0,123,154,146,92,117,63,4,0,124,26,180,195,164,187,2,0,124,218,86,111,227,59,4,0,125,154,233,177,41,56,2,0,130,218,217,68,181,189,2,0,130,218,240,64,172,79,4,0,136,90,65,120,3,235,3,0,137,26,30,55,64,73,3,0,138,90,218,1,101,93,4,0,140,154,247,58,162,61,3,0,141,26,21,204,123,208,3,0,145,154,35,248,153,175,4,0,146,218,105,184,43,249,3,0,147,26,238,209,198,202,3,0,150,218,6,68,235,26,2,0,161,90,50,230,8,164,4,0,163,26,161,215,167,43,2,0,163,218,66,36,175,56,2,0,164,218,219,167,9,198,2,0,165,90,40,154,132,189,2,0,167,90,29,205,211,50,3,0,168,218,167,237,206,44,4,0,169,218,160,85,217,212,3,0,172,90,186,160,117,126,2,0,173,90,157,84,46,225,3,0,182,218,12,48,71,231,3,0,182,26,35,210,115,32,4,0,186,154,139,104,93,183,2,0,187,154,20,186,29,135,2,0,187,90,204,3,99,146,4,0,189,90,122,3,144,81,2,0,194,154,44,147,135,66,4,0,195,90,98,207,40,218,2,0,197,90,204,240,229,60,4,0,198,154,53,95,2,32,4,0,199,26,224,16,113,217,2,0,199,26,159,119,202,239,3,0,199,90,104,120,160,255,3,0,203,90,138,63,25,92,2,0,204,90,9,146,238,151,2,0,204,154,165,64,135,240,3,0,207,218,235,76,24,168,3,0,208,154,226,43,199,95,2,0,209,154,56,151,102,124,4,0,212,154,156,79,132,128,2,0,214,218,36,121,133,206,3,0,215,218,83,26,173,179,3,0,216,90,132,86,178,69,2,0,218,218,149,24,28,215,2,0,218,218,135,0,248,17,3,0,229,218,153,223,178,241,2,0,232,218,4,183,159,50,4,0,233,154,96,100,168,199,2,0,236,218,147,41,98,64,3,0,237,26,108,186,86,22,2,0,243,26,231,85,212,89,4,0,244,218,95,73,34,206,3,0,245,26,141,252,54,80,4,0,245,90,194,19,152,128,4,0,247,26,5,74,123,186,2,0,249,26,79,115,104,223,3,0,249,90,45,20,23,75,4,0,251,218,196,9,122,63,3,0,252,26,59,184,92,68,3,0,252,26,191,236,224,146,3,0,254,218,66,216,76,23,4,0,3,155,246,10,226,254,3,0,3,155,242,164,95,19,4,0,4,219,28,162,15,62,4,0,5,27,31,254,36,122,2,0,6,155,20,15,178,185,3,0,6,27,140,83,242,124,4,0,10,219,174,108,8,153,4,0,11,155,107,225,209,20,3,0,14,155,63,223,198,140,2,0,14,27,99,121,128,152,2,0,15,219,65,122,38,250,2,0,17,155,249,182,19,38,2,0,18,219,206,47,186,68,2,0,18,219,195,239,24,227,2,0,18,91,208,42,84,205,3,0,22,27,235,97,219,247,2,0,32,91,26,102,123,49,2,0,36,91,55,227,21,64,2,0,38,155,24,7,217,35,2,0,48,27,26,249,37,54,4,0,51,219,138,182,3,50,4,0,51,91,149,243,106,166,4,0,52,91,158,153,179,108,2,0,54,91,142,105,89,166,4,0,55,91,200,45,98,119,4,0,56,27,99,223,9,42,4,0,62,91,89,27,180,202,3,0,63,91,53,230,68,225,3,0,65,27,139,224,124,133,3,0,67,219,23,228,191,171,4,0,71,91,242,143,215,131,3,0,72,155,235,78,42,174,2,0,76,155,32,68,5,114,3,0,78,219,244,198,55,233,2,0,84,91,76,81,112,224,2,0,85,91,170,41,28,154,3,0,86,91,107,10,177,202,2,0,87,91,45,189,210,14,2,0,91,27,179,122,107,123,3,0,95,155,107,198,127,122,4,0,99,91,253,58,21,38,4,0,100,219,62,113,202,88,3,0,100,91,175,129,183,155,4,0,102,27,155,64,168,201,2,0,102,27,64,127,15,187,3,0,103,219,93,179,177,132,4,0,106,219,174,227,203,51,2,0,110,91,164,155,55,7,2,0,110,91,17,106,11,105,3,0,113,219,213,230,86,187,3,0,115,219,138,116,117,60,4,0,117,219,211,236,45,87,4,0,119,155,195,4,100,21,2,0,119,27,13,162,39,221,2,0,122,27,4,20,128,125,3,0,122,219,230,73,96,142,4,0,124,155,141,51,222,122,3,0,125,219,55,239,41,116,3,0,128,155,75,234,98,107,4,0,132,27,162,6,254,211,2,0,132,219,101,173,244,144,4,0,133,219,2,106,139,239,2,0,140,219,134,53,177,110,3,0,140,155,165,212,165,151,4,0,142,219,153,223,22,242,2,0,149,219,45,150,29,145,3,0,149,91,81,190,91,247,3,0,152,91,71,64,209,153,2,0,154,219,235,168,204,194,3,0,155,155,226,81,228,11,4,0,157,155,101,219,74,180,3,0,164,155,242,55,240,60,2,0,164,155,116,238,29,148,4,0,168,155,33,15,41,117,2,0,170,219,74,219,29,232,3,0,180,219,61,185,38,38,3,0,183,219,204,180,241,41,3,0,184,155,31,147,84,108,2,0,185,91,186,39,192,34,3,0,186,219,153,223,191,241,2,0,194,91,100,55,119,67,2,0,195,27,103,234,22,113,2,0,196,155,18,58,76,121,2,0,196,155,139,95,186,83,3,0,196,155,106,63,56,102,3,0,196,27,1,102,8,138,3,0,196,219,134,106,150,160,3,0,197,91,81,141,67,145,2,0,198,27,148,165,13,245,2,0,198,219,152,223,158,90,3,0,203,219,148,172,39,107,2,0,204,91,46,190,135,167,3,0,205,27,46,128,56,47,4,0,206,27,166,119,68,8,2,0,208,27,178,96,189,132,2,0,216,91,30,206,162,64,2,0,219,27,113,66,95,132,4,0,222,27,75,184,51,108,2,0,224,219,107,7,212,196,2,0,224,27,27,95,174,228,3,0,227,27,15,211,46,115,4,0,229,91,164,24,130,106,4,0,232,155,67,198,193,53,2,0,236,219,113,244,219,90,2,0,237,27,55,162,220,14,3,0,238,219,81,222,49,118,3,0,238,27,159,128,34,84,4,0,240,27,131,53,142,48,3,0,245,155,200,46,25,242,3,0,248,27,114,13,21,196,2,0,251,91,208,46,156,151,2,0,0,28,142,131,242,35,2,0,1,28,188,77,235,243,3,0,1,220,162,245,28,68,4,0,6,92,247,170,225,124,2,0,7,156,221,56,14,83,3,0,7,220,14,29,70,112,3,0,17,28,77,193,69,10,4,0,19,156,232,17,80,228,2,0,19,156,255,58,14,223,3,0,22,28,150,17,17,81,3,0,23,92,74,152,32,7,4,0,27,92,37,159,187,2,2,0,27,220,29,167,176,117,2,0,29,28,203,248,219,181,4,0,31,156,167,18,39,30,2,0,31,156,44,81,177,6,3,0,37,28,174,121,54,172,2,0,37,92,22,81,157,55,3,0,37,220,245,102,233,154,4,0,38,92,192,178,167,45,2,0,38,92,172,208,8,109,2,0,40,92,227,192,155,29,3,0,45,92,67,200,172,18,2,0,45,92,148,172,35,202,3,0,46,92,6,112,99,12,3,0,50,28,104,182,165,230,2,0,52,28,132,224,15,176,3,0,53,92,72,28,47,42,3,0,54,92,244,225,105,75,3,0,54,220,45,168,61,218,3,0,67,220,15,99,78,165,4,0,68,156,91,108,247,97,3,0,69,156,51,60,35,14,3,0,81,156,246,16,9,32,2,0,90,220,37,96,192,206,2,0,90,220,16,189,75,167,4,0,93,156,97,11,75,133,3,0,94,28,180,25,93,175,4,0,98,28,68,12,130,168,3,0,100,156,74,223,3,167,2,0,103,28,24,81,223,84,3,0,103,92,229,144,197,127,3,0,105,220,153,223,233,241,2,0,105,220,156,191,237,178,4,0,107,220,49,47,37,210,3,0,107,92,11,111,85,7,4,0,108,156,170,44,118,162,4,0,110,156,238,177,4,24,4,0,112,28,153,223,217,34,3,0,114,28,84,124,210,35,3,0,128,156,180,14,138,53,3,0,131,92,76,158,188,191,3,0,131,28,190,146,72,12,4,0,132,156,71,157,68,255,2,0,135,92,139,62,21,9,4,0,136,156,214,158,125,168,4,0,137,28,70,148,223,226,3,0,140,28,55,100,69,38,3,0,143,92,183,203,237,115,3,0,145,28,176,53,113,100,2,0,151,28,45,31,221,241,3,0,153,220,102,49,10,156,4,0,155,220,67,162,254,247,2,0,155,220,146,70,21,251,2,0,162,92,227,186,90,8,3,0,164,220,84,61,101,44,2,0,164,28,208,186,38,240,3,0,165,220,117,52,184,32,3,0,166,220,198,232,92,181,4,0,169,220,152,223,173,89,3,0,173,156,206,218,189,246,2,0,176,92,145,204,15,55,2,0,177,28,213,13,122,175,2,0,179,92,89,65,205,82,2,0,179,220,39,80,181,140,2,0,179,220,188,111,8,180,3,0,181,92,124,145,150,139,3,0,182,28,129,54,108,136,4,0,186,28,46,233,211,19,2,0,186,220,153,215,167,163,2,0,186,92,251,202,255,201,2,0,190,220,152,223,160,89,3,0,193,220,153,223,82,243,2,0,194,220,58,129,42,19,2,0,194,28,51,45,119,136,3,0,195,220,245,45,159,133,3,0,197,156,138,24,73,241,3,0,199,156,27,236,181,28,3,0,199,156,127,95,161,95,4,0,199,28,71,12,76,179,4,0,201,156,238,230,15,92,3,0,201,220,39,154,192,182,3,0,203,28,223,71,236,216,3,0,204,220,178,98,100,124,3,0,206,92,185,234,240,116,2,0,212,220,42,253,244,119,3,0,212,156,232,93,19,253,3,0,213,92,22,208,156,118,3,0,213,220,239,153,180,88,4,0,214,156,1,87,159,150,4,0,217,28,37,173,177,73,3,0,218,28,146,55,39,38,4,0,225,156,10,23,119,215,2,0,225,220,250,86,33,98,4,0,229,156,117,205,23,206,2,0,230,28,115,139,43,59,2,0,234,220,20,177,229,71,4,0,235,220,168,203,113,90,2,0,237,92,151,102,163,76,2,0,240,28,152,63,203,242,2,0,240,156,1,150,166,123,3,0,245,92,132,253,158,82,3,0,247,28,220,86,53,106,2,0,247,92,191,150,225,134,4,0,250,220,37,178,34,198,3,0,251,28,160,96,66,11,3,0,252,92,63,195,166,157,3,0,253,220,135,233,19,121,3,0,3,157,233,88,50,23,2,0,3,93,155,118,212,27,2,0,9,93,24,81,84,78,3,0,11,29,93,238,166,139,4,0,13,29,91,83,40,97,3,0,17,29,0,88,19,218,3,0,20,29,148,116,119,20,2,0,25,221,84,224,101,169,3,0,30,157,32,98,72,28,4,0,30,157,76,34,25,115,4,0,31,221,94,81,117,28,2,0,32,93,173,216,21,77,4,0,36,93,202,233,126,166,3,0,37,157,86,228,177,47,3,0,39,93,84,91,46,55,4,0,42,157,45,218,107,140,4,0,47,93,219,22,251,29,3,0,48,157,142,52,118,72,2,0,49,221,54,123,241,244,3,0,49,221,195,71,144,174,4,0,50,221,170,58,162,217,3,0,53,221,111,144,63,156,2,0,57,157,191,131,123,164,3,0,58,157,16,181,153,204,2,0,61,29,69,109,147,170,4,0,63,221,123,67,251,34,2,0,72,157,247,126,182,136,3,0,72,221,122,176,232,210,3,0,72,221,117,72,124,221,3,0,73,157,173,228,243,109,3,0,78,29,58,226,203,95,4,0,84,29,143,235,93,58,4,0,85,221,19,192,113,197,2,0,86,157,7,75,160,109,2,0,89,29,221,98,96,79,4,0,95,29,237,157,142,76,2,0,96,221,92,125,77,5,3,0,100,29,59,184,177,67,3,0,100,221,42,118,100,94,4,0,101,157,163,120,223,116,4,0,103,221,58,212,136,110,2,0,103,29,13,42,103,158,4,0,104,93,38,230,137,122,3,0,104,29,45,86,81,45,4,0,105,221,220,148,248,178,3,0,105,157,96,185,143,18,4,0,106,221,171,29,30,20,4,0,107,157,170,32,248,72,2,0,107,157,15,142,212,128,4,0,112,157,254,159,75,120,3,0,117,29,174,217,134,200,2,0,118,93,181,206,22,77,3,0,119,221,121,240,0,59,2,0,120,157,197,38,22,183,2,0,123,221,172,150,63,68,4,0,125,29,2,242,87,185,3,0,127,29,100,46,193,181,4,0,129,157,114,43,87,144,3,0,131,93,226,158,195,151,3,0,133,93,173,42,243,93,3,0,133,29,189,163,121,21,4,0,136,221,85,88,10,82,4,0,138,93,123,254,119,212,3,0,138,93,154,184,114,170,4,0,141,93,250,12,163,143,2,0,145,157,90,39,119,176,4,0,153,157,228,187,2,109,3,0,153,157,153,168,114,66,4,0,162,221,100,253,25,21,3,0,162,93,151,40,125,56,4,0,164,93,207,205,197,159,4,0,164,93,241,157,200,161,4,0,166,93,252,34,26,155,2,0,169,93,67,195,253,163,3,0,171,29,84,14,71,57,2,0,172,29,141,76,199,163,3,0,173,221,220,157,181,125,2,0,174,29,40,60,66,60,2,0,176,29,0,188,237,85,3,0,177,29,94,71,159,48,3,0,177,221,14,121,159,66,4,0,180,221,50,239,139,253,3,0,181,221,0,40,111,185,3,0,181,93,191,3,58,149,4,0,186,29,54,7,125,186,4,0,187,157,2,155,238,106,2,0,191,29,79,96,215,150,2,0,194,29,161,125,192,247,3,0,195,29,162,128,50,227,3,0,196,29,66,31,128,26,2,0,199,221,203,221,125,62,2,0,199,93,206,201,132,85,2,0,201,157,152,236,177,137,3,0,204,93,74,231,29,13,4,0,206,157,23,253,69,90,2,0,206,93,213,64,180,36,3,0,206,93,182,37,196,177,4,0,208,93,139,160,198,19,2,0,212,93,202,239,164,137,2,0,215,93,168,5,135,111,3,0,216,157,145,220,220,121,4,0,225,93,51,182,180,98,4,0,225,157,210,247,196,121,4,0,232,221,20,167,253,96,4,0,234,157,218,249,7,212,3,0,235,29,184,183,162,104,2,0,240,93,89,82,80,103,3,0,240,93,93,240,38,0,4,0,240,221,204,54,85,130,4,0,241,221,42,85,131,135,2,0,241,29,249,143,141,82,3,0,242,221,227,60,238,49,2,0,243,157,45,28,202,164,2,0,247,221,156,103,178,30,4,0,249,29,125,45,174,164,4,0,252,29,111,49,166,215,2,0,253,29,87,133,36,195,2,0,1,30,194,254,228,54,4,0,3,222,183,12,74,68,2,0,3,158,51,27,251,133,4,0,5,94,14,178,50,79,4,0,6,30,41,167,104,81,2,0,8,94,14,221,101,246,2,0,9,222,195,166,189,91,4,0,12,94,24,81,197,77,3,0,13,222,239,86,163,134,4,0,17,94,51,223,172,174,2,0,18,30,174,58,63,0,3,0,19,158,178,234,69,133,2,0,22,158,214,248,37,149,4,0,24,158,5,121,34,103,3,0,24,222,155,60,181,52,4,0,27,30,197,107,30,210,2,0,28,158,228,236,202,190,2,0,28,222,27,212,151,37,3,0,34,158,62,85,95,104,3,0,35,30,221,42,194,91,3,0,35,158,176,158,55,253,3,0,35,158,234,10,82,14,4,0,36,94,229,93,195,178,3,0,36,222,219,248,129,55,4,0,36,30,122,0,0,59,4,0,38,94,99,177,77,64,4,0,42,222,0,97,126,106,2,0,43,30,20,31,185,125,3,0,44,94,140,143,95,33,2,0,44,158,63,121,169,97,2,0,44,94,212,39,106,125,3,0,44,158,38,34,148,68,4,0,45,222,152,223,235,82,3,0,50,94,134,221,172,213,3,0,50,158,97,207,168,12,4,0,51,158,64,111,203,61,3,0,53,222,0,39,132,22,2,0,54,222,192,95,33,80,3,0,57,222,41,231,233,50,3,0,58,158,127,132,149,183,2,0,60,222,129,38,185,22,2,0,62,94,227,186,58,8,3,0,64,30,245,169,104,20,4,0,65,158,66,14,247,48,4,0,68,158,179,209,91,32,4,0,72,30,57,88,68,31,2,0,74,94,143,26,99,152,2,0,76,30,239,47,172,21,2,0,77,222,28,55,42,113,4,0,78,30,131,185,121,240,2,0,79,94,11,216,226,213,3,0,82,158,228,53,101,146,3,0,82,222,99,178,108,30,4,0,84,222,137,75,83,57,4,0,86,158,78,111,114,148,4,0,86,222,28,104,45,183,4,0,87,30,37,177,175,54,2,0,93,30,41,109,223,154,3,0,94,222,247,188,196,84,2,0,95,94,185,37,153,177,3,0,102,94,44,61,12,239,2,0,102,158,33,55,228,255,3,0,105,30,199,68,160,63,4,0,106,158,30,243,218,100,2,0,109,222,198,152,99,92,3,0,109,158,155,4,88,202,3,0,112,94,121,14,236,154,2,0,112,30,88,178,178,164,2,0,112,222,64,155,90,81,4,0,113,222,131,144,239,44,4,0,114,158,251,249,60,191,3,0,115,94,24,81,228,77,3,0,116,30,165,255,15,95,4,0,117,30,47,119,42,121,2,0,119,222,198,206,138,142,3,0,120,222,154,74,46,242,3,0,124,30,195,62,218,161,4,0,125,94,14,65,226,12,3,0,132,30,89,107,124,153,2,0,132,94,192,172,130,196,3,0,132,30,81,200,64,61,4,0,135,94,21,226,182,182,3,0,137,30,141,185,112,26,3,0,139,158,21,55,216,238,2,0,146,222,252,163,109,196,3,0,149,158,73,160,69,137,2,0,151,222,159,227,31,81,2,0,151,158,177,45,157,177,2,0,151,158,142,40,208,187,2,0,154,30,62,144,195,68,4,0,155,94,104,42,165,160,4,0,158,30,191,50,93,157,2,0,160,94,233,202,7,23,2,0,160,158,225,3,61,124,4,0,161,30,251,163,85,102,2,0,161,158,204,238,136,125,4,0,165,222,26,201,71,108,4,0,165,94,203,43,119,129,4,0,168,222,65,33,194,248,3,0,178,94,203,189,188,173,4,0,181,30,240,188,62,114,2,0,182,94,98,209,24,27,2,0,184,94,147,20,141,240,2,0,188,30,182,92,17,100,4,0,189,30,176,220,37,95,3,0,193,222,231,19,173,198,3,0,196,30,227,186,70,10,3,0,202,94,252,34,70,155,2,0,203,30,27,86,255,123,3,0,206,94,36,159,36,160,3,0,212,30,125,180,50,49,3,0,216,30,143,8,89,113,3,0,217,30,7,17,28,48,2,0,219,158,88,37,243,228,3,0,219,30,156,68,65,65,4,0,221,222,93,180,240,78,2,0,223,158,115,210,246,254,3,0,225,158,158,88,166,173,4,0,227,222,102,137,87,142,3,0,227,222,60,12,39,172,3,0,229,30,86,90,6,70,2,0,230,94,163,234,22,14,4,0,232,222,137,52,185,195,3,0,232,94,223,209,127,26,4,0,232,94,223,209,154,26,4,0,234,222,70,133,190,48,2,0,243,94,67,140,37,125,4,0,246,30,15,32,73,97,2,0,246,94,59,184,142,46,3,0,246,94,119,163,31,150,3,0,249,94,124,24,114,214,2,0,251,30,166,80,83,86,4,0,252,30,211,236,149,122,2,0,253,94,47,124,78,232,3,0,254,30,158,232,197,15,4,0,254,94,29,77,140,88,4,0,255,30,28,13,43,105,4,0,1,223,103,154,176,172,2,0,4,223,82,208,83,23,3,0,5,223,152,223,74,79,3,0,5,159,85,19,47,195,3,0,6,159,33,170,254,84,3,0,6,159,141,211,44,34,4,0,6,159,252,218,1,60,4,0,10,31,246,105,129,226,2,0,10,159,44,121,113,206,3,0,21,95,65,79,120,82,3,0,21,95,81,5,101,118,3,0,24,159,64,172,92,171,2,0,25,159,21,233,61,143,3,0,25,31,102,79,176,230,3,0,25,159,241,181,66,107,4,0,28,223,216,242,29,163,3,0,28,223,216,11,57,164,4,0,29,223,168,252,186,16,3,0,31,223,74,148,35,23,2,0,33,223,153,235,253,110,4,0,36,31,255,46,201,92,2,0,36,95,187,25,25,110,2,0,41,95,36,149,229,204,2,0,45,95,231,178,185,237,3,0,46,95,215,68,3,101,2,0,46,31,138,255,173,146,2,0,47,95,7,64,216,62,3,0,48,31,19,170,215,119,4,0,52,31,87,234,35,125,2,0,53,223,71,146,210,210,2,0,53,31,41,235,7,233,3,0,55,95,16,178,43,89,4,0,56,159,80,198,193,37,3,0,58,159,146,49,115,63,2,0,58,95,56,86,125,83,4,0,61,95,3,202,58,174,3,0,62,223,54,194,64,228,2,0,65,95,217,9,103,3,2,0,65,95,150,61,132,54,2,0,68,95,219,130,173,245,3,0,69,95,244,175,43,173,2,0,69,31,253,5,173,123,4,0,71,95,186,64,151,51,3,0,72,31,192,214,35,199,2,0,77,95,182,127,195,9,3,0,79,223,150,138,217,39,2,0,79,223,135,81,141,93,3,0,80,95,6,124,82,12,3,0,80,31,190,186,77,19,3,0,81,31,23,166,149,179,4,0,82,95,140,230,125,231,3,0,82,159,183,237,182,166,4,0,86,95,101,88,188,18,2,0,95,95,66,113,189,160,4,0,97,31,85,78,143,105,4,0,101,95,84,29,205,92,3,0,104,31,210,141,38,82,2,0,106,95,238,41,31,5,2,0,107,223,64,55,150,220,2,0,108,159,136,160,182,68,3,0,108,31,50,215,234,156,3,0,109,159,52,154,245,121,2,0,109,223,114,167,249,126,2,0,111,95,243,73,85,92,2,0,121,95,92,252,60,24,4,0,127,223,47,83,176,207,3,0,132,95,181,58,122,147,2,0,134,95,93,14,113,41,2,0,135,95,245,113,179,141,3,0,136,95,82,184,89,135,4,0,137,223,77,205,168,49,2,0,138,31,100,100,228,55,2,0,139,95,95,76,2,41,4,0,140,95,236,34,224,84,2,0,143,159,217,71,216,216,3,0,151,159,69,130,134,101,4,0,155,31,33,2,24,247,3,0,158,31,225,92,192,213,3,0,159,223,221,156,23,15,4,0,164,223,180,108,215,44,2,0,165,95,5,75,21,61,4,0,166,159,183,195,78,186,2,0,166,223,149,131,173,207,2,0,167,31,226,3,17,71,2,0,171,95,202,145,145,103,4,0,172,223,209,56,176,167,3,0,173,223,87,170,217,142,4,0,175,223,19,252,159,223,2,0,175,31,19,0,91,22,3,0,181,159,172,252,121,152,3,0,182,31,215,177,46,60,2,0,186,223,22,91,218,176,2,0,186,223,98,254,250,251,2,0,186,95,84,232,150,115,3,0,187,31,82,226,168,116,4,0,192,95,228,115,178,83,2,0,193,159,16,129,68,51,4,0,194,31,185,206,146,86,2,0,194,159,7,226,205,10,3,0,198,159,39,6,49,150,3,0,200,31,90,170,254,35,3,0,205,223,48,108,104,241,2,0,206,223,145,106,102,225,3,0,207,31,61,105,253,21,2,0,209,159,121,104,81,128,4,0,212,223,113,184,220,89,3,0,213,223,15,220,102,6,3,0,214,223,38,85,77,140,2,0,218,31,236,225,101,113,4,0,222,31,201,34,199,101,2,0,223,95,45,42,152,132,3,0,225,223,54,93,52,138,4,0,227,223,187,47,52,185,2,0,227,223,159,67,233,97,3,0,234,223,94,186,242,28,3,0,235,223,10,15,43,231,2,0,236,31,88,9,223,69,2,0,236,159,160,17,95,253,2,0,241,159,29,172,221,130,2,0,241,159,48,82,9,153,3,0,241,31,255,127,168,153,4,0,242,31,86,176,179,138,2,0,244,95,65,67,158,202,2,0,244,95,185,186,10,220,3,0,245,223,25,84,54,238,3,0,246,95,109,189,42,171,2,0,246,159,117,144,64,171,2,0,247,31,175,140,23,31,4,0,247,159,149,42,203,77,4,0,250,223,22,97,37,57,3,0,252,159,90,80,118,12,2,0,253,223,179,17,172,31,4,0,2,96,156,179,25,250,3,0,4,32,29,81,117,38,3,0,4,160,77,171,8,22,4,0,7,32,118,131,145,143,2,0,7,160,18,144,244,177,3,0,8,96,79,211,115,198,3,0,9,32,200,36,127,47,2,0,9,224,204,69,27,243,3,0,11,96,198,209,226,102,3,0,12,32,34,31,191,244,2,0,16,224,211,192,171,116,3,0,17,160,185,197,208,163,4,0,18,160,222,94,249,2,3,0,24,224,203,207,216,160,2,0,30,32,72,204,3,19,2,0,30,96,153,58,248,231,2,0,31,32,181,89,150,141,4,0,32,32,156,242,106,94,2,0,37,224,171,126,111,13,2,0,37,160,243,213,8,214,3,0,39,96,127,20,191,65,2,0,41,96,225,197,186,134,4,0,42,32,179,98,144,164,3,0,43,160,226,158,173,193,2,0,46,224,68,223,72,42,3,0,47,160,250,169,97,88,3,0,48,32,254,111,90,17,4,0,55,32,214,39,82,136,3,0,56,160,45,106,183,55,4,0,57,224,152,211,119,74,2,0,58,96,134,112,10,209,2,0,61,32,23,95,170,53,4,0,62,96,24,81,1,92,3,0,66,224,26,177,46,217,2,0,68,160,61,11,43,68,2,0,71,32,191,251,85,11,3,0,71,96,60,117,68,16,3,0,75,224,66,64,33,211,3,0,79,32,116,241,146,70,4,0,81,224,138,230,153,158,3,0,81,160,197,220,39,61,4,0,82,96,239,187,151,4,3,0,83,224,222,160,10,229,3,0,83,96,86,44,123,147,4,0,84,224,157,45,219,149,3,0,84,96,127,147,198,136,4,0,85,224,99,84,116,144,2,0,85,224,58,172,89,116,3,0,89,224,169,0,87,112,4,0,91,224,10,158,142,218,2,0,91,224,115,90,192,224,2,0,95,224,170,96,33,81,4,0,97,224,82,233,222,233,3,0,98,160,228,205,61,78,4,0,101,160,97,241,232,254,2,0,105,32,182,126,118,11,2,0,110,160,114,97,168,119,4,0,116,32,72,134,41,19,3,0,118,96,179,49,154,234,3,0,118,96,38,245,1,104,4,0,121,96,8,0,217,211,2,0,122,96,114,95,100,43,4,0,123,160,230,248,142,162,4,0,127,224,152,223,86,92,3,0,127,160,6,25,123,163,3,0,128,96,170,201,204,130,3,0,134,96,220,129,164,188,3,0,135,160,176,72,74,140,3,0,136,32,162,234,188,232,3,0,137,32,53,117,96,1,3,0,140,96,146,169,63,4,4,0,141,224,46,15,143,87,3,0,148,32,98,69,254,76,2,0,152,224,136,255,243,245,3,0,154,96,147,182,142,162,2,0,155,224,39,81,62,26,3,0,155,224,28,102,116,157,4,0,158,224,39,81,76,26,3,0,158,32,58,244,32,51,4,0,159,32,29,134,179,123,3,0,162,32,177,22,156,105,3,0,162,96,73,90,97,5,4,0,167,224,117,30,242,230,3,0,167,160,12,177,2,157,4,0,176,96,5,26,138,90,2,0,176,224,70,22,79,197,3,0,177,160,127,220,37,104,2,0,179,32,235,41,203,47,2,0,182,96,81,87,235,98,3,0,183,96,102,28,67,63,3,0,183,224,183,158,2,109,4,0,185,160,236,76,164,167,4,0,186,32,148,174,228,187,2,0,191,224,207,117,132,249,3,0,194,224,199,169,102,78,4,0,195,224,126,226,227,137,3,0,196,96,50,134,254,66,2,0,205,160,107,75,57,29,2,0,216,96,161,20,131,134,3,0,219,96,0,13,102,130,3,0,222,32,239,171,16,47,4,0,223,224,115,65,3,130,2,0,226,224,25,255,14,46,2,0,227,160,177,3,195,163,4,0,229,32,84,192,192,27,2,0,229,224,181,191,197,19,4,0,237,160,141,206,38,188,3,0,238,160,243,90,245,233,3,0,240,224,239,83,118,181,2,0,243,160,3,205,23,60,2,0,245,224,236,221,248,42,3,0,245,32,242,175,68,126,4,0,247,32,233,73,44,22,2,0,251,160,89,11,140,90,3,0,251,96,247,156,143,192,3,0,253,224,62,34,152,113,4,0,255,160,114,180,98,147,2,0,255,224,82,171,95,109,3,0,1,161,213,232,94,25,3,0,1,225,44,173,208,73,3,0,6,225,32,100,38,100,4,0,6,161,32,224,60,148,4,0,7,225,55,116,200,172,3,0,10,97,2,206,218,110,2,0,12,161,67,157,128,118,3,0,15,33,126,229,22,57,2,0,15,161,20,67,255,169,4,0,21,97,145,240,14,93,2,0,22,225,107,129,212,22,4,0,22,161,69,247,218,111,4,0,23,161,26,24,179,13,2,0,24,225,174,203,56,139,3,0,25,161,41,250,210,65,3,0,26,161,152,2,111,128,3,0,26,225,43,26,90,227,3,0,29,33,94,65,221,167,2,0,31,225,134,72,54,63,4,0,32,97,190,163,43,27,4,0,39,33,227,221,213,206,3,0,40,225,152,223,54,92,3,0,41,161,63,141,116,155,2,0,43,33,65,149,182,66,2,0,45,161,134,219,209,1,3,0,49,161,38,9,5,96,3,0,50,161,250,142,70,132,2,0,53,97,199,210,86,45,3,0,55,225,153,120,245,131,3,0,57,225,55,118,47,94,4,0,58,33,173,190,116,252,3,0,60,33,192,95,9,253,2,0,61,225,214,195,220,154,2,0,62,161,57,146,3,247,3,0,63,97,205,94,177,98,2,0,63,33,116,146,164,92,4,0,65,225,250,195,196,113,2,0,66,33,23,211,76,148,3,0,70,33,106,41,202,143,2,0,76,225,65,76,105,52,3,0,78,33,104,153,84,136,4,0,80,33,249,217,251,61,3,0,83,97,245,173,224,185,2,0,84,225,86,164,241,137,3,0,85,225,33,120,38,55,2,0,93,97,82,135,210,44,3,0,94,161,13,173,31,74,3,0,95,97,35,188,25,19,4,0,95,225,236,165,155,19,4,0,101,33,130,176,97,188,2,0,103,97,232,152,71,219,2,0,107,97,139,148,43,163,2,0,110,161,152,68,143,45,2,0,111,161,219,137,11,131,2,0,111,225,203,186,97,42,4,0,115,33,70,240,117,108,3,0,116,97,245,8,129,16,2,0,116,97,134,184,169,76,3,0,120,97,128,94,224,3,4,0,121,33,116,190,119,65,2,0,123,161,24,253,197,105,4,0,125,161,50,124,226,63,4,0,127,225,206,14,25,179,3,0,136,97,113,191,214,106,4,0,140,225,189,32,61,213,3,0,141,161,184,164,108,80,3,0,145,225,149,19,211,25,3,0,155,97,112,44,113,155,3,0,159,97,197,97,95,125,2,0,160,161,11,236,28,214,3,0,161,97,6,165,105,218,3,0,162,97,193,109,183,183,4,0,164,97,133,69,207,178,4,0,165,33,133,84,0,107,4,0,166,97,163,171,61,194,2,0,166,97,130,194,121,207,3,0,172,97,194,145,51,179,3,0,172,97,235,168,142,79,4,0,178,97,251,35,231,224,2,0,179,97,153,219,46,75,3,0,180,97,156,95,200,38,3,0,180,97,126,133,246,76,4,0,184,33,127,195,170,168,2,0,186,225,210,194,67,199,2,0,187,161,205,106,194,54,4,0,191,225,89,73,54,168,4,0,192,161,183,104,79,135,2,0,195,225,49,162,78,77,4,0,197,225,43,167,147,12,3,0,204,97,21,117,223,173,4,0,210,161,68,177,231,18,3,0,212,161,205,168,172,34,3,0,212,161,23,81,180,91,3,0,219,161,16,175,132,49,3,0,225,225,132,247,45,16,2,0,225,97,90,173,203,36,2,0,229,97,157,234,223,78,2,0,229,161,127,38,154,66,3,0,229,33,52,213,189,129,4,0,229,97,148,250,24,161,4,0,231,225,86,243,151,124,2,0,231,97,189,194,81,166,3,0,231,225,233,134,195,193,3,0,232,97,14,94,210,45,3,0,240,161,203,75,20,111,2,0,242,225,149,7,108,137,4,0,243,161,39,141,45,49,4,0,246,161,4,223,181,182,4,0,247,97,48,216,62,117,4,0,248,33,213,238,113,78,3,0,252,33,125,162,225,10,2,0,2,34,181,143,51,122,3,0,4,34,64,178,244,53,2,0,4,34,74,191,107,207,2,0,4,226,222,176,45,194,3,0,5,226,224,29,226,188,2,0,7,98,112,246,38,4,2,0,8,226,16,162,24,31,3,0,12,226,82,12,200,54,2,0,12,226,40,144,190,100,3,0,19,98,234,87,180,4,2,0,20,162,63,71,237,239,3,0,21,226,90,249,227,155,3,0,24,98,165,244,79,149,4,0,25,162,37,59,113,42,3,0,28,98,189,40,44,72,2,0,29,98,59,106,250,115,4,0,33,226,223,16,238,251,3,0,34,162,30,149,101,121,3,0,34,226,160,91,147,82,4,0,44,98,220,219,172,153,3,0,45,34,98,178,154,164,2,0,46,226,110,253,80,98,3,0,50,226,44,96,122,140,2,0,50,34,53,235,189,82,4,0,51,98,101,155,9,222,3,0,54,34,149,160,95,49,3,0,55,98,0,117,123,111,2,0,59,162,1,37,15,188,2,0,59,34,180,95,199,47,4,0,61,34,212,59,228,74,4,0,62,162,99,73,97,115,2,0,66,98,142,86,180,64,4,0,68,34,168,41,78,137,3,0,69,34,39,108,98,184,3,0,76,98,69,80,143,9,2,0,81,226,39,81,131,26,3,0,82,162,163,103,241,171,2,0,84,226,0,10,51,252,3,0,86,162,59,30,150,36,2,0,88,226,90,75,10,147,3,0,89,98,165,244,111,149,4,0,90,162,9,9,49,14,2,0,100,34,193,124,131,180,3,0,101,226,207,188,239,253,2,0,104,226,153,128,150,84,2,0,105,34,63,191,247,68,3,0,108,34,74,90,119,52,2,0,112,98,245,81,123,223,2,0,112,98,107,140,91,80,3,0,113,226,81,45,181,169,3,0,115,34,75,20,231,9,3,0,118,34,255,241,110,199,3,0,120,98,232,211,19,165,4,0,123,98,173,129,203,139,3,0,130,162,69,141,232,159,4,0,131,226,87,34,79,20,2,0,137,162,99,204,232,80,2,0,140,34,88,240,32,253,2,0,143,226,164,76,62,27,2,0,144,226,153,223,70,247,2,0,147,226,175,80,45,74,2,0,148,226,201,229,251,34,3,0,149,226,92,254,129,235,3,0,152,34,221,161,90,13,2,0,153,162,192,39,14,244,2,0,155,226,255,143,202,82,3,0,156,34,10,173,23,86,4,0,156,98,169,155,56,169,4,0,157,34,86,124,168,132,2,0,158,226,189,106,214,9,4,0,160,98,62,157,108,112,4,0,160,34,83,204,243,145,4,0,163,34,217,169,154,81,3,0,164,162,184,13,58,72,2,0,164,34,3,210,132,198,3,0,164,34,3,210,152,198,3,0,164,34,3,210,111,181,4,0,167,226,199,251,127,186,3,0,167,98,106,239,136,177,4,0,169,226,102,207,203,55,4,0,169,226,39,76,45,181,4,0,170,98,155,143,136,154,4,0,171,226,89,249,49,3,2,0,171,226,208,25,211,170,4,0,176,226,44,32,146,126,4,0,177,98,12,255,154,27,4,0,180,162,246,187,202,88,2,0,181,226,0,226,35,182,4,0,184,226,206,75,117,85,4,0,185,98,23,145,67,102,2,0,186,98,69,67,206,202,2,0,186,98,9,23,193,215,2,0,186,98,83,46,203,79,3,0,187,34,114,206,83,227,2,0,188,98,108,143,91,87,4,0,191,226,116,23,100,127,3,0,193,226,96,135,101,107,2,0,193,98,180,242,16,203,3,0,195,162,72,72,87,48,4,0,200,34,43,104,152,79,2,0,200,34,43,104,184,185,4,0,202,226,243,38,83,248,3,0,204,226,198,226,70,44,3,0,204,98,136,185,220,43,4,0,205,162,22,32,192,49,2,0,205,162,53,126,191,154,4,0,206,98,50,243,243,32,4,0,206,98,50,243,10,33,4,0,206,98,50,243,41,33,4,0,206,98,50,243,85,33,4,0,206,98,50,243,196,33,4,0,206,98,50,243,248,33,4,0,211,98,224,88,114,173,2,0,212,98,123,211,151,255,2,0,215,98,78,254,254,45,4,0,221,162,76,81,53,199,2,0,221,34,57,66,85,251,2,0,223,162,234,178,233,166,4,0,224,34,17,3,188,19,3,0,225,34,74,126,116,103,2,0,226,226,36,100,235,96,3,0,228,226,207,188,159,252,2,0,230,226,150,152,45,120,3,0,231,226,79,121,226,63,3,0,231,226,43,109,58,111,4,0,232,226,14,199,102,208,3,0,233,162,109,94,30,225,2,0,235,226,218,249,46,33,2,0,235,34,156,46,224,15,4,0,238,162,107,23,206,82,4,0,243,162,153,73,18,114,4,0,244,226,63,189,76,19,2,0,250,226,85,68,30,169,3,0,251,98,216,185,106,169,2,0,253,34,133,46,20,66,4,0,253,98,230,173,68,145,4,0,0,99,77,21,11,6,4,0,0,227,16,137,146,91,4,0,2,163,25,73,199,136,2,0,2,99,241,198,28,155,3,0,2,163,254,17,106,76,4,0,10,35,207,70,167,176,3,0,10,35,11,196,13,206,3,0,10,99,33,15,8,15,4,0,11,35,66,58,140,34,4,0,14,35,242,169,219,82,3,0,15,163,193,189,199,59,4,0,16,35,197,17,223,180,3,0,16,163,63,227,166,205,3,0,16,35,255,243,115,44,4,0,18,35,121,5,245,222,2,0,18,227,200,217,133,137,3,0,18,35,248,67,195,150,3,0,19,35,116,133,13,122,3,0,20,227,178,102,125,204,3,0,22,99,153,73,81,81,3,0,24,99,190,202,10,125,2,0,24,227,236,93,17,137,3,0,27,99,82,67,82,225,2,0,28,163,207,198,18,177,3,0,28,163,94,137,160,210,3,0,29,227,46,23,220,41,3,0,30,163,55,21,38,233,2,0,32,163,19,162,179,177,2,0,33,163,164,7,53,145,2,0,38,227,242,12,37,165,3,0,42,99,202,123,111,127,2,0,44,99,45,248,108,192,2,0,45,99,10,10,68,49,2,0,46,227,213,126,219,16,3,0,48,35,88,240,51,253,2,0,50,99,145,236,21,252,2,0,52,99,85,100,4,145,3,0,54,99,24,72,166,239,3,0,56,227,146,73,19,193,3,0,57,227,155,202,183,250,3,0,58,35,171,6,146,128,2,0,58,99,103,140,128,160,3,0,60,163,126,199,105,227,2,0,60,163,87,229,114,100,3,0,62,163,162,176,102,253,3,0,64,227,57,157,168,221,2,0,65,227,117,167,225,143,2,0,65,227,212,187,248,3,3,0,68,227,82,190,159,42,3,0,71,35,30,141,79,76,3,0,73,99,151,227,176,100,4,0,75,99,14,206,142,1,2,0,76,163,245,120,88,49,4,0,80,227,114,162,57,122,2,0,81,35,185,6,106,66,2,0,82,99,174,115,89,69,2,0,84,227,139,68,245,84,2,0,85,227,82,90,19,141,2,0,86,99,57,59,197,99,3,0,87,35,147,222,248,103,3,0,87,163,96,224,118,107,4,0,89,227,84,179,50,36,4,0,90,163,173,243,203,29,3,0,92,99,169,91,87,17,3,0,93,163,31,222,39,85,2,0,94,227,162,144,228,197,3,0,96,99,5,247,28,157,3,0,97,99,163,239,31,221,3,0,105,163,82,161,41,140,4,0,106,99,134,196,102,102,3,0,109,99,185,39,148,173,4,0,111,99,188,175,170,151,2,0,112,35,215,131,37,41,3,0,113,227,239,120,182,15,4,0,115,99,153,23,250,147,3,0,117,227,108,143,21,202,3,0,124,227,187,204,180,74,4,0,129,99,249,159,22,44,3,0,133,163,176,8,139,35,3,0,135,99,28,123,167,241,3,0,137,99,202,35,233,7,3,0,137,163,210,151,161,148,4,0,138,163,150,181,62,20,4,0,141,35,226,6,71,22,3,0,144,227,36,155,152,237,2,0,149,163,4,130,248,201,3,0,153,227,141,253,84,53,3,0,154,163,6,178,120,17,4,0,157,99,12,20,251,68,4,0,161,99,252,19,196,170,2,0,161,227,199,226,251,19,3,0,162,35,221,247,135,103,2,0,164,99,23,236,149,56,3,0,164,227,153,46,246,117,3,0,168,35,106,0,83,91,4,0,170,99,139,24,137,19,2,0,172,163,203,20,244,73,4,0,174,99,13,181,92,144,2,0,175,163,52,67,55,38,2,0,175,163,3,2,8,221,2,0,185,99,55,121,141,219,2,0,185,99,128,6,157,203,3,0,187,227,175,238,207,183,2,0,189,35,152,134,51,112,3,0,190,227,47,179,112,42,2,0,192,163,82,59,225,8,2,0,193,227,50,117,105,51,2,0,193,163,24,186,51,255,2,0,197,35,106,186,186,31,3,0,197,227,18,25,191,65,3,0,197,35,153,185,116,58,4,0,198,163,39,81,66,18,3,0,199,163,149,87,82,168,2,0,199,35,26,5,29,156,3,0,205,35,11,50,154,159,3,0,206,99,108,24,2,251,2,0,207,99,106,150,87,159,4,0,208,99,36,98,243,49,4,0,209,163,114,10,113,91,2,0,210,35,123,210,57,196,3,0,211,163,96,230,201,114,2,0,213,35,237,55,225,164,4,0,215,227,14,66,106,152,4,0,216,227,166,238,50,200,2,0,217,163,205,164,8,168,3,0,221,35,40,28,21,163,2,0,226,227,83,230,149,170,3,0,227,163,198,57,45,99,2,0,227,35,250,66,106,219,3,0,231,99,53,83,239,144,3,0,236,99,233,118,160,1,3,0,236,35,137,5,109,38,4,0,239,35,185,125,247,181,4,0,241,163,152,160,157,52,3,0,242,35,4,236,87,163,3,0,242,99,62,104,144,204,3,0,242,99,212,232,129,136,4,0,243,227,173,175,34,209,3,0,248,99,220,170,5,16,3,0,249,35,145,112,226,66,2,0,251,227,95,22,165,38,3,0,252,163,222,2,216,8,3,0,254,99,239,147,246,70,2,0,1,164,153,223,213,249,2,0,1,100,14,94,70,142,3,0,1,228,10,239,239,156,4,0,2,164,167,222,208,77,2,0,5,228,61,118,162,69,3,0,7,100,118,179,230,28,2,0,9,164,26,195,193,103,4,0,10,164,157,194,220,30,2,0,12,100,24,81,155,76,3,0,12,36,9,169,125,141,4,0,14,100,62,112,89,101,4,0,18,36,42,159,168,94,2,0,18,228,90,227,209,37,3,0,25,36,241,45,165,210,2,0,26,100,61,224,188,38,2,0,26,100,221,246,60,5,4,0,26,228,215,171,34,23,4,0,26,228,206,95,32,73,4,0,29,228,246,174,249,121,3,0,29,164,116,203,56,60,4,0,30,36,84,168,130,168,2,0,31,36,237,199,181,134,3,0,32,100,72,138,15,29,3,0,37,36,157,183,202,118,2,0,37,36,39,232,186,135,4,0,41,36,67,153,71,17,4,0,46,164,22,43,156,193,2,0,47,36,194,16,175,17,2,0,47,100,116,84,48,239,3,0,50,36,85,46,190,234,3,0,55,228,210,190,215,14,4,0,62,164,93,126,105,216,2,0,63,100,130,176,102,213,3,0,64,100,152,160,152,49,3,0,64,36,159,0,212,50,4,0,67,36,62,244,63,175,3,0,71,228,227,98,119,79,4,0,76,36,145,28,51,37,2,0,78,228,248,235,243,21,3,0,78,36,151,47,48,112,4,0,80,36,91,2,178,101,3,0,80,100,208,246,168,143,3,0,82,100,87,206,40,126,3,0,85,100,248,86,64,22,2,0,86,36,72,181,76,128,2,0,86,228,36,167,242,90,3,0,86,36,139,197,227,175,4,0,87,164,46,92,73,63,4,0,89,36,57,66,105,251,2,0,91,36,39,187,242,24,3,0,96,100,146,254,149,145,3,0,103,228,72,193,246,23,3,0,104,228,161,245,25,181,4,0,107,100,250,157,26,152,2,0,111,164,36,43,15,63,4,0,112,36,53,179,25,121,4,0,116,36,26,81,52,43,3,0,120,228,20,63,178,101,2,0,121,100,206,113,210,83,3,0,128,228,74,134,232,39,2,0,130,228,227,120,1,17,4,0,131,100,35,117,86,137,4,0,134,36,198,211,118,45,2,0,134,228,42,95,199,20,4,0,138,100,10,67,201,195,2,0,139,164,156,192,245,213,3,0,140,228,179,246,106,237,3,0,141,36,165,235,87,214,2,0,144,100,168,87,189,80,2,0,147,228,9,103,16,56,2,0,148,36,140,57,194,33,3,0,149,228,28,13,214,13,4,0,150,228,195,87,72,175,4,0,151,36,238,216,90,17,2,0,152,100,251,206,81,65,2,0,153,36,219,98,121,18,4,0,154,36,167,235,97,165,4,0,158,228,85,30,77,17,2,0,160,228,174,123,21,88,4,0,161,36,113,155,241,62,3,0,161,100,239,35,224,201,3,0,161,228,204,126,40,123,4,0,162,36,44,207,108,95,3,0,166,164,67,209,129,234,3,0,166,228,237,254,229,90,4,0,167,36,247,59,175,80,2,0,167,228,226,196,16,173,2,0,169,164,206,23,225,60,3,0,171,36,29,81,103,38,3,0,172,100,111,196,210,169,3,0,173,36,38,9,19,159,4,0,175,36,7,146,109,87,3,0,176,228,52,218,245,190,2,0,178,36,124,157,206,2,4,0,179,36,6,81,169,232,3,0,179,100,181,120,178,5,4,0,181,164,47,19,204,58,3,0,183,228,220,178,214,116,3,0,184,100,35,14,195,154,3,0,184,100,249,137,21,37,4,0,185,100,154,189,140,221,3,0,186,164,70,70,35,47,4,0,187,100,40,188,218,146,2,0,187,228,190,49,222,219,2,0,193,164,221,241,34,153,2,0,193,228,136,100,69,203,2,0,195,100,88,111,18,33,2,0,195,100,229,96,231,221,2,0,197,100,224,225,18,136,4,0,204,228,249,233,177,168,3,0,205,164,141,198,98,113,2,0,205,36,16,219,149,138,3,0,205,164,46,254,201,132,4,0,206,228,200,150,3,54,4,0,208,228,227,134,67,205,2,0,208,228,211,93,110,249,3,0,209,36,183,117,57,55,2,0,213,36,5,183,76,87,3,0,215,164,247,21,179,94,4,0,219,36,145,100,204,141,4,0,221,164,237,47,121,3,4,0,231,36,133,250,37,93,3,0,233,100,87,35,83,45,2,0,234,36,83,18,48,164,2,0,237,228,1,47,230,49,4,0,241,228,71,127,74,142,4,0,243,228,241,193,201,143,3,0,244,228,239,129,48,192,2,0,246,228,109,114,213,132,3,0,251,228,20,151,183,156,3,0,251,164,219,3,197,197,3,0,253,100,19,70,200,90,4,0,255,36,60,61,184,89,2,0,1,165,97,67,73,34,2,0,2,229,18,52,142,68,3,0,3,101,26,107,124,111,4,0,5,165,176,134,64,150,2,0,6,165,176,164,105,250,3,0,6,229,246,228,232,117,4,0,7,165,163,165,222,47,3,0,8,229,37,52,178,98,3,0,12,37,2,234,100,117,3,0,13,101,157,9,119,55,2,0,13,165,46,147,208,2,3,0,15,165,142,47,190,217,3,0,16,229,176,43,130,120,2,0,18,101,128,173,149,208,2,0,18,229,152,223,3,40,3,0,20,37,168,148,181,160,2,0,25,229,82,97,203,203,2,0,25,101,98,176,39,15,3,0,25,101,24,81,101,76,3,0,27,37,236,10,14,76,3,0,28,229,202,80,128,228,3,0,30,229,75,215,224,198,2,0,31,165,137,226,21,86,2,0,33,165,198,117,85,98,4,0,34,37,105,178,164,253,3,0,35,37,160,54,133,58,3,0,37,37,7,146,126,87,3,0,39,101,173,82,192,201,2,0,40,37,122,231,38,106,4,0,41,101,50,12,20,167,3,0,44,37,90,119,70,62,3,0,44,165,138,196,162,88,3,0,45,229,20,91,181,20,4,0,46,37,222,69,220,12,2,0,46,101,139,241,246,120,4,0,49,37,98,123,2,194,2,0,50,101,89,152,139,45,4,0,60,229,55,101,56,76,3,0,61,165,148,36,128,81,2,0,66,165,202,174,156,77,2,0,66,229,212,4,63,118,3,0,68,165,240,165,111,186,3,0,69,229,250,169,39,88,3,0,72,37,229,228,121,56,2,0,73,101,1,130,30,112,3,0,74,37,164,155,64,10,2,0,74,37,164,243,40,34,3,0,84,101,248,144,227,193,2,0,88,229,18,14,153,160,2,0,89,229,112,70,184,99,4,0,90,229,164,44,142,74,2,0,91,101,107,247,15,105,4,0,94,101,199,240,211,63,4,0,95,101,153,61,40,112,2,0,97,37,57,30,240,177,2,0,99,37,16,189,48,170,4,0,100,229,154,233,134,237,3,0,101,101,144,181,52,6,2,0,101,37,29,81,89,38,3,0,102,101,183,246,88,103,2,0,105,165,221,181,209,61,4,0,107,37,0,37,127,95,4,0,112,101,135,160,199,69,3,0,113,165,161,181,57,226,2,0,113,101,229,106,115,34,4,0,115,37,89,243,46,144,2,0,117,229,122,19,157,170,2,0,119,165,56,166,237,239,2,0,122,229,159,121,117,1,3,0,123,101,99,103,6,135,4,0,126,101,187,236,22,116,2,0,127,165,250,39,202,165,2,0,129,229,203,226,30,76,4,0,131,165,142,110,223,205,3,0,137,229,205,63,83,184,3,0,143,37,167,141,157,110,3,0,148,101,169,12,120,110,2,0,149,229,153,188,113,84,3,0,149,101,37,198,96,178,3,0,150,101,235,185,186,42,3,0,152,229,131,99,3,38,2,0,155,37,255,198,0,37,3,0,155,101,52,140,17,149,4,0,158,165,85,214,155,62,2,0,159,229,53,225,222,33,2,0,160,165,213,182,154,195,3,0,161,229,72,60,101,10,3,0,161,229,13,80,178,133,4,0,162,165,229,217,221,180,2,0,162,37,180,174,105,151,3,0,164,165,167,188,237,97,2,0,165,101,22,254,197,93,2,0,165,101,75,68,166,102,2,0,165,37,236,152,167,218,2,0,167,165,135,21,100,110,4,0,168,229,94,190,175,30,2,0,168,101,53,81,244,250,2,0,168,229,43,22,249,10,3,0,174,229,230,184,176,142,4,0,175,165,87,57,42,202,2,0,176,37,98,114,82,80,2,0,177,37,18,55,162,136,3,0,182,229,86,188,207,105,2,0,184,165,221,17,178,206,3,0,187,165,206,0,130,105,2,0,188,165,216,22,74,221,3,0,188,229,213,26,111,130,4,0,192,165,206,247,202,198,2,0,192,101,41,94,125,149,4,0,193,37,121,209,98,54,4,0,195,165,87,163,135,30,3,0,195,37,133,23,166,129,3,0,198,229,200,38,239,54,2,0,198,101,81,220,148,101,4,0,200,37,52,49,19,71,4,0,205,229,147,205,21,181,3,0,205,37,43,96,225,2,4,0,208,229,59,108,151,146,3,0,209,37,165,27,97,28,4,0,211,37,207,90,101,177,2,0,211,101,8,54,78,15,3,0,217,37,188,238,167,70,4,0,218,101,231,228,161,32,3,0,220,165,200,24,246,104,3,0,227,229,103,107,246,121,4,0,228,229,44,209,224,159,3,0,229,101,131,200,99,24,2,0,230,165,208,7,92,19,2,0,236,229,119,253,95,182,3,0,239,229,69,163,55,102,4,0,241,229,223,37,48,166,2,0,249,101,32,25,220,142,2,0,249,37,200,11,213,57,4,0,252,37,17,23,224,4,3,0,255,101,49,52,27,66,3,0,0,102,128,128,58,151,2,0,4,230,11,176,237,40,4,0,5,230,28,63,162,230,3,0,9,38,231,13,212,97,2,0,9,38,39,161,151,54,3,0,9,102,195,3,115,60,3,0,9,230,179,51,33,142,3,0,10,102,118,61,168,44,3,0,10,102,202,22,216,113,4,0,11,166,54,80,189,218,2,0,11,38,166,170,232,61,4,0,13,166,46,3,0,117,2,0,17,102,237,100,154,152,4,0,20,166,80,23,34,254,3,0,21,166,54,188,15,28,3,0,21,230,151,160,45,60,3,0,21,230,209,249,44,66,3,0,21,166,206,144,73,162,3,0,21,230,118,192,25,180,3,0,22,102,24,129,166,186,2,0,23,166,245,102,83,150,2,0,27,38,138,46,158,26,2,0,27,166,6,101,80,201,2,0,27,38,190,57,27,152,3,0,39,166,8,23,133,12,2,0,40,38,181,18,122,163,2,0,41,38,191,3,87,24,4,0,44,166,40,251,238,255,2,0,46,38,39,181,83,34,4,0,47,38,139,101,26,138,3,0,50,102,214,84,184,133,2,0,51,166,250,61,89,124,2,0,53,38,12,17,250,153,2,0,56,102,67,171,171,197,2,0,56,102,6,75,169,126,4,0,57,166,130,44,30,96,4,0,58,102,199,154,211,177,2,0,59,38,213,38,7,139,2,0,60,166,76,81,193,193,2,0,62,230,181,109,254,43,2,0,63,166,107,169,103,245,2,0,64,102,25,25,23,1,2,0,65,38,30,123,232,195,3,0,67,166,123,235,124,252,2,0,69,102,38,172,5,62,2,0,69,102,58,135,209,249,3,0,70,230,3,140,229,247,3,0,72,166,109,16,182,73,2,0,72,166,128,184,87,79,3,0,73,102,9,64,30,252,3,0,76,38,57,176,176,84,3,0,77,102,169,90,218,58,2,0,81,166,195,211,153,16,2,0,81,230,172,113,77,118,4,0,82,166,219,243,117,239,2,0,82,102,129,139,150,239,3,0,85,230,210,83,33,29,2,0,85,102,203,173,30,40,3,0,88,38,81,206,15,132,4,0,91,230,52,103,224,69,4,0,92,38,41,53,52,10,4,0,92,166,235,92,50,104,4,0,97,102,50,104,128,122,2,0,100,102,50,230,103,102,4,0,101,38,88,255,59,249,3,0,102,38,98,192,64,123,4,0,103,102,153,124,203,93,3,0,105,230,153,49,189,112,4,0,107,38,150,233,213,240,2,0,107,166,26,62,76,93,4,0,108,102,225,8,109,167,2,0,109,166,152,3,96,242,2,0,110,166,236,135,230,34,3,0,113,38,213,115,158,74,2,0,113,230,67,24,9,178,4,0,117,166,54,198,108,15,4,0,123,230,255,245,27,30,2,0,123,166,114,41,178,39,3,0,124,38,103,216,38,100,3,0,127,166,94,72,71,58,3,0,129,166,97,120,68,100,2,0,135,102,31,170,65,196,2,0,136,166,173,102,43,245,3,0,140,166,218,24,253,204,2,0,141,38,123,83,255,196,2,0,141,230,81,226,73,40,3,0,141,230,247,205,35,186,3,0,143,230,148,5,212,107,3,0,147,38,102,184,134,41,3,0,147,102,187,180,198,157,4,0,150,102,250,72,8,82,2,0,158,166,181,15,154,31,3,0,158,230,214,28,47,104,3,0,159,38,186,254,60,89,3,0,161,230,23,52,188,178,4,0,165,38,165,110,235,166,2,0,166,166,170,136,41,155,3,0,168,102,233,9,226,231,2,0,168,102,142,215,224,243,2,0,170,230,81,13,136,130,4,0,172,38,220,79,253,13,4,0,176,38,207,205,170,2,2,0,178,166,36,220,136,91,2,0,178,230,64,85,152,92,2,0,179,230,204,99,222,59,2,0,185,166,71,15,154,0,4,0,187,38,35,225,197,30,2,0,188,38,31,74,170,17,3,0,188,230,86,225,251,44,3,0,188,38,102,119,221,101,3,0,189,230,107,190,92,40,2,0,194,102,23,192,13,171,2,0,195,230,133,194,153,192,2,0,196,38,34,178,32,85,3,0,197,230,100,147,202,116,2,0,199,166,33,157,177,217,2,0,201,230,213,173,194,62,4,0,201,38,143,78,173,76,4,0,204,230,228,64,170,68,2,0,209,230,231,170,131,47,3,0,215,38,117,10,97,83,4,0,218,166,79,247,24,202,2,0,218,166,9,130,178,224,3,0,218,102,41,171,25,70,4,0,219,166,27,167,126,70,4,0,222,38,184,203,32,141,4,0,223,38,132,67,9,38,4,0,223,230,123,165,202,74,4,0,225,230,30,115,177,149,3,0,227,102,201,21,159,171,2,0,227,230,207,249,194,205,2,0,229,166,162,222,142,133,3,0,238,38,23,236,140,3,2,0,238,230,26,158,173,60,2,0,239,166,39,227,208,15,3,0,239,38,139,187,109,150,3,0,243,102,153,124,223,93,3,0,244,230,30,15,220,160,4,0,249,38,250,106,153,97,4,0,250,230,153,103,156,30,4,0,251,230,83,224,118,166,2,0,255,102,253,190,233,106,3,0,2,167,217,206,148,107,3,0,8,167,58,7,110,65,4,0,11,39,2,126,52,91,2,0,13,231,255,17,22,78,2,0,13,167,48,1,216,183,3,0,14,231,221,16,15,228,2,0,15,167,118,101,130,153,3,0,16,103,140,191,65,130,2,0,17,231,190,239,66,227,2,0,17,231,52,250,164,33,4,0,22,103,190,231,191,17,4,0,25,39,226,81,40,7,2,0,29,231,123,207,97,67,4,0,31,39,209,117,88,65,4,0,32,103,59,12,50,66,2,0,33,167,23,7,238,65,2,0,36,167,185,195,18,186,2,0,37,39,25,115,157,65,4,0,38,39,144,13,123,10,3,0,42,231,151,160,157,59,3,0,43,39,4,102,115,165,3,0,44,167,165,177,221,55,4,0,48,103,61,75,69,67,2,0,49,103,217,169,75,80,3,0,51,231,162,155,58,229,3,0,52,103,67,202,255,212,2,0,52,167,54,82,65,138,3,0,56,231,254,245,66,40,2,0,56,231,185,194,242,77,3,0,57,231,76,114,183,130,4,0,59,231,127,236,108,28,3,0,62,39,223,76,237,197,2,0,62,231,50,114,67,247,3,0,62,167,247,221,117,81,4,0,70,231,236,0,172,96,3,0,73,103,227,31,149,102,4,0,74,231,19,213,61,190,2,0,76,167,131,88,188,48,4,0,77,103,38,62,49,97,4,0,79,231,183,27,118,113,3,0,83,103,11,38,187,20,3,0,84,167,23,208,134,140,4,0,88,39,196,220,60,104,2,0,90,231,95,180,103,184,4,0,94,231,214,63,54,43,4,0,100,103,13,139,39,84,3,0,101,103,206,50,122,35,3,0,103,39,147,238,250,150,2,0,105,103,70,183,145,157,4,0,106,39,62,161,112,171,4,0,107,231,130,85,51,221,3,0,109,103,61,202,244,180,3,0,111,231,87,254,48,57,2,0,111,103,164,67,153,168,4,0,112,231,226,27,137,19,4,0,117,231,71,107,143,242,2,0,120,231,49,200,46,174,4,0,126,39,116,10,211,67,2,0,126,231,98,186,188,127,4,0,129,167,37,250,196,78,2,0,130,103,88,32,120,132,2,0,131,103,145,44,190,236,3,0,132,103,236,237,192,245,3,0,137,103,208,46,142,151,2,0,139,39,151,86,93,134,4,0,143,39,115,26,170,112,3,0,145,103,31,81,161,35,3,0,146,167,250,131,247,86,4,0,147,103,127,210,241,72,3,0,147,167,7,177,255,230,3,0,150,231,60,81,187,243,2,0,152,231,81,209,110,54,3,0,152,103,94,112,254,150,3,0,159,231,101,175,169,4,4,0,161,39,117,18,23,170,4,0,164,103,22,52,107,172,2,0,166,103,26,171,26,147,2,0,166,39,124,184,88,82,3,0,167,39,65,48,225,32,2,0,167,167,46,47,103,226,2,0,170,39,250,75,105,205,3,0,171,39,151,59,102,74,2,0,172,39,216,7,175,74,2,0,172,167,92,62,45,159,3,0,174,231,23,63,72,77,2,0,174,167,22,58,244,143,2,0,178,39,132,63,252,17,2,0,182,103,57,25,171,194,2,0,183,231,20,15,235,152,4,0,184,103,84,195,221,108,3,0,184,39,80,98,77,6,4,0,186,103,136,51,229,15,3,0,189,103,110,129,123,226,3,0,190,231,33,36,156,93,2,0,194,231,162,150,140,50,3,0,194,167,198,142,240,78,3,0,196,103,233,162,75,84,2,0,199,167,115,159,179,190,2,0,201,167,131,3,44,165,4,0,202,231,57,24,163,38,4,0,202,167,153,115,119,41,4,0,203,231,162,161,237,41,2,0,203,231,172,61,59,109,2,0,207,231,247,62,134,190,2,0,208,103,54,254,249,139,3,0,209,167,110,215,81,99,4,0,211,231,155,100,177,145,3,0,211,167,3,115,12,121,4,0,217,39,186,0,225,167,3,0,218,231,226,161,28,132,3,0,222,231,155,220,106,34,3,0,230,167,74,133,190,120,2,0,231,167,67,138,173,59,3,0,233,39,65,21,186,142,2,0,233,39,65,21,205,142,2,0,233,39,65,21,99,143,2,0,235,39,196,169,190,186,2,0,238,231,79,186,80,18,3,0,239,103,152,171,192,75,3,0,240,167,206,198,245,160,4,0,241,231,107,162,156,25,3,0,244,39,251,145,238,237,3,0,245,167,90,35,231,133,2,0,246,167,246,138,52,53,2,0,249,167,133,227,41,196,3,0,252,231,39,27,75,53,4,0,254,103,154,4,155,117,4,0,0,168,80,218,215,170,2,0,3,104,49,52,249,65,3,0,5,40,33,181,203,63,2,0,6,168,215,164,119,80,2,0,6,168,151,159,237,183,2,0,8,104,177,87,194,176,2,0,11,168,98,61,47,224,2,0,13,232,177,234,199,103,3,0,15,232,63,192,183,69,4,0,17,40,178,142,153,55,4,0,17,104,67,111,149,93,4,0,18,104,178,62,122,233,2,0,18,232,205,113,28,16,3,0,23,40,37,58,98,166,3,0,24,40,3,228,3,100,3,0,25,40,186,248,139,191,2,0,30,232,105,162,81,38,2,0,31,232,226,55,53,87,2,0,35,168,78,61,112,242,3,0,39,168,129,17,186,228,2,0,39,104,37,215,187,227,3,0,40,232,76,184,247,35,4,0,42,168,210,210,211,192,2,0,42,40,13,62,227,118,4,0,44,40,247,55,190,178,2,0,45,168,236,80,152,172,2,0,46,40,112,109,202,66,2,0,46,168,125,201,16,238,2,0,46,40,12,235,220,0,4,0,48,232,162,120,58,73,2,0,50,40,125,86,162,69,2,0,53,104,60,226,139,56,4,0,57,104,93,229,89,8,2,0,57,40,93,237,13,172,2,0,58,232,147,48,59,179,2,0,60,168,106,50,44,151,4,0,65,232,24,78,13,69,3,0,66,232,87,215,190,148,3,0,71,232,109,196,187,14,2,0,71,232,216,174,118,130,2,0,75,168,235,6,201,95,3,0,76,232,50,72,62,168,3,0,85,104,217,169,17,80,3,0,88,168,84,155,234,101,4,0,88,168,156,123,151,114,4,0,89,168,91,226,206,150,4,0,90,232,111,105,244,176,2,0,91,104,10,44,29,220,2,0,91,40,169,190,225,145,4,0,95,40,1,118,233,19,2,0,95,104,167,228,76,163,3,0,101,104,171,49,39,193,3,0,102,232,183,195,94,186,2,0,112,104,162,218,30,32,3,0,113,104,248,134,46,50,2,0,114,40,93,141,100,52,2,0,114,232,178,3,34,63,4,0,116,168,244,219,148,135,3,0,118,40,122,226,63,146,2,0,119,40,190,137,120,126,4,0,121,168,226,200,238,75,2,0,122,40,80,245,170,101,4,0,124,40,63,92,57,228,3,0,125,232,106,131,155,34,3,0,125,168,23,190,155,110,4,0,128,104,106,172,15,31,2,0,131,232,151,230,72,13,3,0,132,232,196,239,242,170,3,0,136,232,106,193,242,198,2,0,137,168,75,188,36,3,3,0,137,232,81,226,53,40,3,0,147,40,249,95,222,109,3,0,149,232,80,250,215,178,2,0,150,104,193,175,28,178,3,0,150,232,14,81,107,9,4,0,151,232,52,124,11,117,3,0,154,168,231,10,198,61,2,0,154,40,133,88,52,9,3,0,158,232,3,168,177,154,3,0,158,104,73,190,83,186,4,0,159,40,85,19,164,157,4,0,160,168,20,81,246,140,2,0,161,40,247,197,112,138,2,0,162,104,176,162,144,70,3,0,162,232,60,12,246,171,3,0,165,40,157,143,216,73,2,0,169,232,215,177,104,104,4,0,170,40,136,99,248,8,2,0,178,168,12,99,37,38,2,0,178,168,165,174,222,103,3,0,179,168,105,237,163,41,3,0,181,104,39,81,101,11,3,0,185,168,50,235,171,93,2,0,185,232,122,100,23,237,3,0,186,104,82,1,199,56,2,0,188,40,182,62,75,47,4,0,191,168,140,192,213,18,3,0,192,104,129,195,238,226,3,0,193,40,18,32,114,146,4,0,194,40,49,217,196,250,2,0,194,40,153,192,213,123,3,0,197,40,230,135,141,182,3,0,201,232,24,61,55,154,2,0,205,168,69,132,120,241,2,0,209,40,49,192,141,63,3,0,212,232,63,216,210,22,2,0,212,168,89,56,251,88,2,0,214,104,195,114,238,101,3,0,214,104,254,228,229,203,3,0,217,104,255,80,124,8,3,0,220,168,133,243,69,190,3,0,221,232,32,162,124,110,4,0,225,232,217,168,23,84,2,0,226,104,219,124,88,69,3,0,227,40,4,244,114,10,4,0,230,168,215,134,117,86,4,0,231,168,240,246,48,87,3,0,233,104,133,105,108,93,2,0,237,104,205,253,19,25,3,0,237,40,238,31,69,150,3,0,239,232,149,232,162,176,4,0,240,232,25,83,67,46,4,0,244,104,249,56,17,134,3,0,246,232,54,52,72,122,4,0,248,168,120,44,114,152,2,0,248,40,11,111,195,86,3,0,248,104,180,70,58,7,4,0,249,168,231,175,112,99,3,0,250,168,115,239,72,11,4,0,250,232,18,13,214,16,4,0,254,104,167,228,116,158,3,0,4,105,60,223,139,17,2,0,4,41,204,63,163,185,3,0,5,41,45,29,137,203,3,0,6,169,151,152,60,120,3,0,7,233,70,228,235,48,2,0,8,233,203,45,175,12,3,0,11,233,72,55,222,1,4,0,13,41,127,6,177,157,2,0,13,41,72,98,80,189,2,0,17,41,0,75,12,21,2,0,18,233,40,13,108,17,2,0,18,233,179,23,226,52,2,0,21,41,180,161,121,150,2,0,23,169,221,143,112,113,2,0,23,233,225,48,131,64,4,0,31,41,199,203,78,233,2,0,32,105,116,52,100,22,4,0,33,105,242,98,35,58,2,0,33,41,25,112,11,102,4,0,36,41,63,99,0,217,3,0,43,169,217,107,170,67,2,0,44,105,58,61,67,114,3,0,45,105,23,192,55,182,2,0,48,233,252,220,90,133,3,0,53,233,176,23,22,125,2,0,55,105,28,38,132,89,4,0,60,41,23,226,94,59,2,0,62,169,114,194,211,77,3,0,62,169,31,195,165,21,4,0,66,233,53,43,223,21,3,0,67,233,233,236,150,226,2,0,70,41,16,192,219,233,2,0,70,169,0,254,55,22,3,0,71,233,99,221,206,254,3,0,74,41,49,142,162,99,2,0,74,169,241,240,208,197,2,0,76,169,165,229,27,156,4,0,77,41,86,187,157,46,3,0,77,105,112,79,99,91,4,0,83,105,81,225,213,26,4,0,84,233,216,191,135,27,4,0,85,105,227,16,217,50,2,0,87,41,9,229,221,36,2,0,92,105,231,109,214,113,3,0,94,105,69,92,126,236,3,0,95,169,229,91,60,205,3,0,100,233,109,172,62,119,4,0,103,169,91,215,18,166,3,0,103,169,205,247,152,196,3,0,109,233,198,185,170,120,2,0,110,169,188,239,156,81,4,0,111,105,239,241,106,148,2,0,114,169,130,11,136,222,3,0,116,233,215,5,216,106,3,0,120,41,172,194,63,65,2,0,122,41,93,159,79,236,3,0,124,233,241,238,133,103,3,0,126,105,63,105,97,239,2,0,129,169,171,185,206,18,2,0,129,169,83,103,22,134,2,0,130,233,175,247,94,77,2,0,132,233,205,178,188,240,2,0,133,41,97,149,102,150,4,0,135,41,37,81,1,29,3,0,135,105,48,91,82,203,3,0,136,233,193,228,182,9,2,0,136,41,243,82,16,53,3,0,143,169,245,151,90,138,2,0,144,233,228,204,111,74,3,0,145,169,213,170,220,64,3,0,146,233,96,246,238,122,2,0,146,233,176,90,38,230,3,0,147,169,150,31,241,52,3,0,154,41,113,95,77,172,2,0,156,105,74,240,223,223,2,0,160,233,32,117,44,141,2,0,160,169,52,101,107,69,4,0,161,169,44,157,20,41,3,0,163,105,108,240,176,19,4,0,165,169,222,125,84,22,4,0,166,233,209,111,225,83,2,0,166,169,76,81,182,210,2,0,167,169,142,33,102,233,2,0,167,41,182,7,128,189,3,0,169,105,164,136,192,67,3,0,172,169,193,30,69,147,4,0,176,105,126,77,249,67,3,0,178,233,67,109,118,219,2,0,178,169,180,94,208,148,3,0,179,105,6,220,94,74,4,0,180,169,219,210,213,136,4,0,182,169,146,241,36,157,2,0,183,105,67,248,78,90,4,0,187,233,128,88,235,89,3,0,187,41,62,175,181,157,4,0,188,105,230,121,205,133,2,0,193,233,172,189,201,238,2,0,194,233,182,12,166,212,3,0,196,41,132,204,31,104,4,0,197,41,208,222,237,40,2,0,197,169,186,186,198,18,3,0,198,169,249,97,203,247,2,0,199,41,96,84,155,177,4,0,200,233,129,184,58,30,2,0,203,105,170,23,94,156,3,0,204,233,131,16,253,185,4,0,207,233,38,112,34,220,3,0,208,169,189,183,83,177,3,0,209,41,141,230,29,107,4,0,213,105,194,0,135,143,4,0,220,169,101,176,227,123,2,0,222,169,185,33,171,251,2,0,226,41,158,216,8,63,3,0,229,233,246,42,144,47,2,0,229,105,219,27,202,104,2,0,231,169,89,2,96,73,2,0,234,41,137,67,70,253,2,0,235,105,79,148,92,151,2,0,235,105,23,192,40,182,2,0,239,169,98,251,44,35,2,0,240,105,134,242,174,155,3,0,241,233,74,157,239,81,2,0,243,169,246,109,230,20,4,0,244,233,134,251,180,203,2,0,244,41,60,236,90,219,3,0,245,169,80,104,214,9,3,0,245,105,49,52,10,66,3,0,245,41,158,183,230,150,3,0,246,41,10,20,246,162,4,0,255,41,168,228,106,174,3,0,1,234,253,142,108,13,3,0,4,106,129,60,63,52,4,0,8,106,78,222,201,167,2,0,8,42,136,240,36,239,3,0,18,234,159,41,70,19,4,0,19,106,197,254,158,119,3,0,21,234,55,73,130,32,3,0,24,106,127,153,35,23,3,0,27,106,214,57,31,153,4,0,30,42,237,170,59,39,2,0,31,106,164,230,53,13,3,0,32,170,115,196,91,42,2,0,32,42,178,37,22,18,4,0,33,234,238,137,224,190,2,0,36,234,11,97,244,58,3,0,37,42,61,163,39,47,2,0,38,234,244,205,174,79,2,0,40,170,103,78,83,61,3,0,41,106,78,224,33,140,3,0,41,234,1,254,237,22,4,0,42,42,198,159,97,150,3,0,45,170,63,142,149,164,4,0,47,234,139,186,174,83,4,0,53,42,8,219,237,77,2,0,53,170,67,197,19,87,2,0,55,170,236,9,222,71,2,0,61,42,202,189,247,242,2,0,61,42,165,65,220,24,3,0,62,106,39,0,185,76,2,0,62,234,66,164,81,43,3,0,64,234,144,47,214,182,4,0,67,234,23,81,120,89,3,0,68,234,159,104,122,91,4,0,70,42,5,55,48,129,2,0,72,170,161,22,7,105,2,0,78,170,165,164,127,146,3,0,86,42,180,102,159,137,3,0,88,234,162,13,77,52,3,0,88,170,60,12,119,172,3,0,89,106,162,188,14,49,3,0,90,234,35,102,231,150,2,0,91,170,101,128,59,58,2,0,94,106,163,190,226,171,3,0,96,42,99,195,180,170,2,0,96,106,98,70,125,50,4,0,99,106,190,130,178,104,4,0,100,170,170,128,245,20,4,0,103,106,129,203,108,64,4,0,108,234,149,243,203,45,4,0,109,106,228,54,61,78,3,0,117,106,220,13,219,227,3,0,118,170,84,249,36,234,2,0,118,106,31,143,53,100,3,0,119,106,156,160,124,59,3,0,120,42,89,35,129,201,3,0,122,106,208,184,159,169,3,0,123,42,26,172,163,147,3,0,126,170,82,81,6,49,4,0,131,170,119,226,39,41,2,0,131,234,133,154,117,51,2,0,131,106,20,192,236,117,2,0,134,234,55,23,164,20,4,0,135,234,52,138,182,32,4,0,145,234,187,168,192,11,2,0,145,170,160,41,60,152,3,0,147,42,28,207,214,185,4,0,150,42,18,5,114,196,2,0,153,170,252,19,63,42,2,0,154,170,142,10,75,244,3,0,156,234,99,22,23,69,2,0,158,234,106,179,62,90,4,0,159,106,132,159,97,178,4,0,160,106,12,11,76,168,4,0,165,106,254,46,181,165,4,0,166,170,25,26,183,128,4,0,167,170,125,31,165,58,3,0,168,234,142,104,242,209,3,0,168,170,148,25,171,37,4,0,169,170,198,242,234,73,2,0,170,106,124,251,171,220,3,0,170,170,99,75,38,5,4,0,171,106,16,195,192,156,2,0,171,234,204,84,26,180,4,0,173,106,245,176,100,191,2,0,174,234,66,60,139,16,4,0,175,42,95,73,29,127,2,0,175,234,182,58,36,85,4,0,176,106,154,60,224,157,2,0,179,170,229,15,175,59,4,0,181,234,128,130,227,169,2,0,182,106,110,252,130,13,3,0,185,234,43,175,62,2,3,0,186,170,228,233,39,143,4,0,188,170,187,13,69,131,2,0,193,106,32,83,160,17,4,0,194,42,167,44,169,2,3,0,200,234,227,102,126,112,2,0,200,106,44,199,232,110,4,0,201,106,163,197,137,15,2,0,201,234,155,218,136,69,2,0,201,42,1,5,127,90,4,0,202,106,14,21,249,5,4,0,203,234,62,240,206,169,4,0,210,170,226,76,229,235,3,0,210,170,82,41,136,94,4,0,215,234,238,96,127,184,2,0,215,234,135,184,98,78,3,0,216,170,107,60,146,198,2,0,218,170,14,163,148,47,4,0,221,42,98,158,91,64,4,0,225,170,146,85,45,80,2,0,225,234,137,65,89,169,2,0,226,170,66,35,237,148,2,0,226,106,98,65,86,165,2,0,226,106,98,65,123,165,2,0,229,106,57,152,7,110,3,0,230,42,206,146,14,104,3,0,231,106,241,54,116,58,3,0,234,170,153,223,231,250,2,0,235,234,27,114,9,232,3,0,236,234,168,193,14,24,3,0,239,234,56,153,5,134,2,0,240,42,176,32,166,100,3,0,242,234,182,22,195,131,3,0,243,234,204,200,244,212,3,0,244,234,64,228,90,148,4,0,245,170,156,167,193,228,3,0,246,234,43,67,97,45,2,0,247,170,51,175,145,61,4,0,249,170,113,178,230,109,2,0,0,107,66,210,151,106,4,0,2,43,50,12,127,158,3,0,6,171,28,10,167,38,2,0,7,43,232,180,169,50,3,0,8,235,130,45,39,126,2,0,9,43,247,196,177,26,3,0,21,107,7,215,165,90,2,0,21,107,179,132,39,118,4,0,24,43,158,252,24,25,2,0,26,43,7,37,175,107,3,0,28,107,198,200,15,107,3,0,29,107,128,127,116,30,3,0,35,43,0,139,6,214,2,0,45,43,37,58,112,166,3,0,47,235,73,125,37,244,3,0,47,235,101,36,217,120,4,0,54,43,229,188,204,3,2,0,55,43,2,189,235,30,2,0,56,43,17,195,6,207,2,0,57,235,114,113,135,190,3,0,61,171,18,52,107,68,3,0,62,43,11,78,198,115,3,0,66,43,83,208,173,22,3,0,67,171,106,165,205,109,2,0,73,235,174,75,12,67,4,0,74,107,160,33,45,153,4,0,76,235,50,31,56,242,2,0,77,107,97,134,143,7,2,0,78,171,114,187,175,197,3,0,82,235,165,189,100,201,2,0,83,107,240,187,82,14,2,0,83,171,18,100,28,136,3,0,84,107,71,130,173,74,3,0,88,43,160,154,113,88,3,0,97,235,217,19,84,217,3,0,97,171,70,237,27,24,4,0,98,107,143,239,151,97,2,0,99,171,53,169,69,49,4,0,99,43,150,11,178,172,4,0,100,107,6,38,43,9,2,0,102,107,151,23,47,155,2,0,104,171,206,242,124,62,3,0,107,235,204,21,198,65,4,0,109,235,66,52,48,121,4,0,112,43,151,228,146,89,2,0,112,107,23,192,206,180,2,0,112,171,222,145,238,244,2,0,118,171,138,83,0,2,4,0,119,235,73,9,72,159,2,0,120,107,205,55,213,28,2,0,128,107,193,48,80,94,2,0,132,235,22,28,60,126,3,0,134,107,156,242,154,180,3,0,136,43,250,145,142,216,3,0,145,107,204,235,215,152,2,0,146,235,186,37,40,41,4,0,148,43,136,240,96,239,3,0,150,43,195,80,47,20,2,0,152,107,51,219,103,145,3,0,161,235,194,79,236,157,3,0,163,107,183,186,236,16,3,0,164,235,126,122,119,142,2,0,164,107,184,68,134,147,3,0,169,107,5,115,40,71,4,0,170,43,57,43,238,113,3,0,170,43,50,12,84,158,3,0,173,107,32,42,180,48,3,0,173,107,13,25,21,79,4,0,173,107,48,203,7,151,4,0,176,43,222,11,55,45,2,0,176,171,48,23,198,151,4,0,188,235,63,45,150,68,2,0,191,171,133,246,113,86,2,0,192,43,83,252,80,178,2,0,194,107,36,108,38,89,2,0,196,107,163,28,76,39,2,0,196,235,55,144,118,62,4,0,199,235,145,84,132,220,2,0,201,107,14,116,11,6,2,0,201,107,54,206,220,0,3,0,204,171,46,222,96,241,3,0,204,43,66,247,187,125,4,0,205,107,132,185,152,146,4,0,206,43,61,95,11,184,2,0,208,235,92,74,114,77,3,0,208,107,100,162,172,96,4,0,210,235,7,21,126,44,3,0,214,171,18,251,48,160,2,0,214,235,196,215,231,167,4,0,215,107,90,252,15,179,4,0,216,107,65,43,171,247,2,0,219,235,237,110,201,243,2,0,228,235,202,121,152,41,2,0,228,235,59,68,90,142,2,0,229,171,151,250,104,164,2,0,231,235,205,31,71,141,2,0,232,107,78,35,103,43,2,0,233,43,103,25,47,128,4,0,235,171,150,230,16,38,3,0,236,235,79,48,200,26,4,0,243,107,238,17,224,92,3,0,244,171,188,220,30,43,2,0,246,235,80,42,44,75,2,0,246,43,50,12,216,158,3,0,248,171,184,224,174,166,2,0,249,235,238,17,65,24,3,0,250,235,3,66,80,55,2,0,251,235,125,145,113,53,2,0,255,107,235,69,72,188,3,0,255,107,101,44,244,153,4,0,4,236,229,36,98,235,3,0,6,236,233,47,142,202,3,0,7,108,131,73,232,119,3,0,9,44,46,122,75,95,4,0,11,108,55,207,143,148,4,0,17,172,77,233,89,171,4,0,18,108,153,223,223,6,3,0,18,44,124,184,86,83,3,0,21,44,240,155,173,175,3,0,23,44,179,140,15,195,2,0,33,44,156,200,19,39,2,0,34,236,29,110,86,57,3,0,36,172,48,248,67,28,2,0,41,44,164,73,46,92,4,0,45,44,212,113,194,158,3,0,50,172,188,155,73,153,3,0,50,172,213,15,37,203,3,0,52,172,167,150,106,231,3,0,56,236,152,223,207,41,3,0,57,108,66,234,22,22,2,0,60,172,76,81,196,210,2,0,62,236,34,182,238,13,2,0,62,172,195,54,251,83,4,0,67,172,156,219,205,227,2,0,68,172,149,208,167,178,4,0,73,172,140,247,238,74,3,0,73,108,160,121,144,38,4,0,74,236,239,30,78,241,2,0,74,108,210,132,24,131,4,0,75,108,230,163,174,144,4,0,83,236,161,115,57,244,2,0,88,236,55,170,218,140,2,0,93,44,205,223,249,8,4,0,97,108,230,181,251,171,4,0,98,108,211,157,54,240,3,0,99,108,224,143,86,70,2,0,99,236,39,54,183,226,2,0,99,236,106,106,214,163,3,0,99,44,218,228,112,13,4,0,100,44,254,134,60,198,2,0,100,44,46,87,47,146,3,0,101,236,128,147,237,130,2,0,105,108,60,231,171,103,2,0,107,172,100,87,50,180,2,0,115,172,216,59,33,120,2,0,116,44,37,195,226,206,3,0,117,108,37,1,92,170,4,0,118,44,145,94,194,13,4,0,123,108,156,141,211,51,3,0,123,236,68,147,245,79,3,0,125,172,81,31,245,168,3,0,128,172,66,12,122,169,3,0,131,236,195,241,11,151,2,0,135,172,32,246,159,104,3,0,135,172,31,4,204,66,4,0,136,44,150,238,70,85,2,0,137,108,91,232,62,209,3,0,138,172,211,133,115,97,3,0,139,108,210,78,26,164,4,0,141,44,31,28,179,162,2,0,144,44,248,141,216,38,2,0,148,44,232,18,39,165,2,0,148,172,228,135,59,93,4,0,149,108,85,94,90,0,3,0,149,172,74,162,199,136,3,0,152,236,216,58,90,242,3,0,153,172,140,155,250,66,3,0,155,236,224,206,131,51,3,0,160,236,43,209,74,198,3,0,160,108,196,98,210,130,4,0,161,108,30,149,118,121,3,0,166,172,24,111,138,131,4,0,168,172,195,78,229,67,2,0,170,172,162,137,35,156,2,0,171,108,46,179,113,76,2,0,172,236,185,68,250,128,3,0,175,172,13,234,110,55,3,0,178,108,101,119,47,74,3,0,179,172,184,84,22,44,2,0,182,172,171,226,246,69,4,0,184,108,52,46,15,137,2,0,184,172,216,66,246,249,2,0,186,108,85,94,109,0,3,0,191,108,18,222,85,73,4,0,193,108,128,25,204,83,2,0,194,44,247,178,176,121,4,0,197,172,242,169,101,83,3,0,199,236,93,245,74,88,3,0,200,172,44,129,30,208,2,0,202,236,7,55,172,41,2,0,203,108,46,122,67,195,2,0,207,236,114,58,218,32,3,0,210,236,5,39,169,14,2,0,211,236,41,63,251,154,3,0,212,172,208,207,59,35,3,0,213,236,65,115,222,53,2,0,215,44,242,11,6,61,2,0,217,44,27,195,82,104,4,0,223,44,142,141,162,64,4,0,223,172,196,37,63,70,4,0,225,236,55,225,80,196,3,0,226,108,230,81,8,188,3,0,226,236,183,60,219,188,3,0,228,172,89,194,73,64,2,0,230,236,62,96,195,33,2,0,230,108,57,133,238,16,4,0,233,236,11,189,141,1,4,0,241,44,38,119,226,153,4,0,243,108,180,193,136,11,4,0,244,108,229,135,154,67,2,0,244,108,89,28,100,6,4,0,246,236,65,146,167,98,4,0,247,172,178,80,251,102,4,0,249,44,96,158,246,59,3,0,250,108,246,194,91,99,2,0,252,172,175,25,41,154,3,0,4,45,61,61,9,213,3,0,7,45,247,42,230,163,2,0,9,45,252,232,15,172,4,0,10,173,185,147,117,146,2,0,11,45,40,166,189,5,2,0,11,109,116,207,11,168,4,0,18,45,47,151,119,50,3,0,19,173,111,149,192,186,3,0,22,173,87,7,33,98,3,0,22,109,142,150,150,144,4,0,23,45,23,192,86,182,2,0,23,45,25,192,193,187,2,0,23,109,126,204,122,12,3,0,27,45,166,125,207,46,4,0,27,173,121,241,79,97,4,0,31,237,158,216,192,176,4,0,32,237,171,252,172,239,2,0,33,237,134,241,171,102,4,0,34,109,112,151,106,106,3,0,36,237,32,205,83,255,3,0,41,173,226,231,59,137,4,0,46,173,145,36,62,124,2,0,48,45,48,153,39,159,4,0,50,237,193,180,134,76,3,0,54,45,217,169,8,175,3,0,58,45,102,199,150,92,4,0,61,45,41,68,90,181,2,0,63,237,82,157,62,111,3,0,64,45,242,38,157,3,3,0,64,237,113,58,122,33,3,0,65,109,136,74,107,217,3,0,67,173,97,53,46,197,3,0,70,45,125,129,65,94,4,0,73,45,135,251,123,64,3,0,76,109,204,235,16,95,3,0,78,45,83,208,194,22,3,0,80,109,200,125,20,27,4,0,83,109,25,125,121,4,2,0,83,109,204,235,53,153,2,0,83,109,204,235,70,153,2,0,83,109,204,235,100,234,2,0,83,109,204,235,116,234,2,0,83,109,204,235,133,234,2,0,83,109,204,235,158,234,2,0,83,109,204,235,175,234,2,0,83,109,204,235,194,234,2,0,83,109,204,235,229,234,2,0,83,109,204,235,255,234,2,0,83,109,204,235,18,235,2,0,83,109,204,235,43,235,2,0,83,109,204,235,67,235,2,0,83,109,204,235,84,235,2,0,83,109,204,235,100,235,2,0,83,109,204,235,123,235,2,0,83,109,204,235,141,235,2,0,83,109,204,235,162,235,2,0,83,109,204,235,182,235,2,0,83,109,204,235,210,235,2,0,83,109,204,235,230,235,2,0,83,109,204,235,255,235,2,0,83,109,204,235,14,236,2,0,83,109,204,235,32,236,2,0,83,109,204,235,51,236,2,0,83,109,204,235,81,236,2,0,83,109,204,235,98,236,2,0,83,109,204,235,117,236,2,0,83,109,204,235,133,236,2,0,83,109,204,235,150,236,2,0,83,109,204,235,164,236,2,0,83,109,204,235,183,236,2,0,83,109,204,235,201,236,2,0,83,109,204,235,219,236,2,0,83,109,204,235,236,236,2,0,83,109,204,235,236,6,3,0,83,109,204,235,8,7,3,0,83,109,204,235,38,7,3,0,83,109,204,235,61,7,3,0,83,109,204,235,92,7,3,0,83,109,204,235,131,7,3,0,83,109,204,235,168,7,3,0,83,237,207,98,216,224,3,0,84,45,36,211,4,101,3,0,86,237,22,254,68,27,3,0,89,173,214,228,114,211,3,0,90,45,201,115,87,133,4,0,92,237,17,246,24,47,2,0,93,45,131,66,100,32,2,0,93,237,164,186,144,115,4,0,96,237,216,107,35,242,2,0,97,173,156,177,207,27,4,0,97,173,126,220,91,44,4,0,98,173,250,81,132,172,4,0,99,173,222,189,79,84,3,0,102,173,177,174,89,218,2,0,104,109,94,153,141,77,4,0,105,173,147,182,133,43,4,0,108,237,93,129,136,51,2,0,109,109,61,135,198,42,2,0,110,237,52,102,155,228,3,0,114,45,113,140,157,80,3,0,118,109,36,255,227,45,2,0,119,173,23,88,220,146,4,0,123,45,61,18,229,75,3,0,124,173,12,236,9,252,3,0,126,45,109,113,198,108,2,0,126,237,154,114,64,167,2,0,126,237,150,77,131,171,3,0,128,237,190,65,46,166,4,0,129,173,7,33,196,231,2,0,129,109,216,177,215,134,3,0,142,173,246,128,93,252,3,0,151,237,200,217,86,229,3,0,152,173,22,199,51,44,3,0,152,237,48,141,184,58,3,0,156,109,243,25,49,181,3,0,158,237,164,197,84,76,2,0,158,45,101,221,78,86,3,0,158,237,202,105,14,145,4,0,166,45,94,55,159,42,2,0,167,237,183,247,52,107,4,0,168,173,54,81,163,248,2,0,169,173,39,81,13,17,3,0,171,237,102,214,102,89,2,0,172,109,228,67,124,69,4,0,173,237,203,19,30,102,4,0,176,173,172,16,33,2,2,0,176,173,207,45,78,96,3,0,181,237,147,202,240,22,2,0,182,45,89,19,144,179,3,0,183,173,73,70,78,180,4,0,186,109,164,174,55,13,4,0,194,109,245,235,40,99,3,0,198,109,99,26,178,218,3,0,200,237,143,13,107,92,2,0,203,173,173,126,197,179,3,0,203,45,6,161,26,5,4,0,210,109,130,232,153,147,4,0,212,109,134,6,217,101,2,0,215,237,203,109,61,18,4,0,221,45,135,230,101,49,4,0,223,173,217,9,142,110,4,0,224,45,69,169,53,24,2,0,226,109,38,56,198,108,3,0,226,237,252,28,95,15,4,0,227,237,90,207,146,205,2,0,229,109,58,169,160,185,4,0,230,45,1,82,253,11,4,0,231,45,166,126,192,134,2,0,231,237,224,145,143,108,4,0,236,109,110,85,232,123,4,0,237,45,232,80,1,96,4,0,239,45,24,192,149,64,2,0,240,45,236,231,197,126,4,0,241,173,224,193,229,222,2,0,243,45,129,30,198,0,4,0,248,45,155,47,15,74,4,0,249,237,73,168,0,179,4,0,252,237,218,63,131,35,4,0,253,173,247,143,249,222,3,0,4,46,156,154,147,176,2,0,4,238,6,122,157,221,3,0,7,174,159,200,144,13,4,0,9,174,48,121,106,236,3,0,10,110,159,178,96,116,4,0,12,46,10,118,139,25,2,0,13,46,150,217,64,151,4,0,19,174,141,210,249,140,3,0,19,174,141,210,24,141,3,0,19,174,141,210,48,141,3,0,23,46,183,130,10,174,3,0,26,238,41,54,247,249,3,0,28,110,154,147,51,250,3,0,29,174,96,79,152,125,2,0,30,110,119,171,214,244,2,0,30,46,124,184,152,83,3,0,33,46,232,125,70,76,2,0,33,238,129,61,131,99,3,0,36,238,222,191,220,179,3,0,38,238,17,188,36,255,2,0,43,238,102,44,171,242,2,0,44,238,113,101,34,3,2,0,44,110,242,38,183,87,2,0,45,238,139,99,30,192,3,0,49,238,19,110,46,11,4,0,51,46,183,138,54,32,3,0,52,238,191,80,17,229,2,0,53,110,74,117,161,56,2,0,55,46,252,3,81,107,3,0,55,110,42,2,135,40,4,0,58,238,12,69,55,103,2,0,61,238,185,205,24,53,2,0,61,46,253,191,12,119,2,0,64,46,18,165,125,157,2,0,67,110,96,100,89,41,4,0,67,174,124,47,218,124,4,0,68,174,216,66,22,250,2,0,68,238,178,37,169,106,3,0,69,110,21,225,123,227,3,0,72,238,45,32,123,44,2,0,78,46,230,110,20,101,3,0,78,238,15,82,133,150,4,0,79,110,121,176,131,209,3,0,83,174,216,66,6,250,2,0,84,110,191,120,202,127,4,0,85,110,139,14,174,153,2,0,86,174,144,78,162,53,2,0,86,110,43,175,104,112,3,0,87,46,44,110,63,62,4,0,93,110,192,156,134,154,3,0,95,238,177,255,74,149,2,0,97,110,241,23,242,125,3,0,98,174,123,237,195,134,3,0,98,238,82,181,88,62,4,0,98,46,63,228,110,135,4,0,100,110,186,171,135,78,3,0,111,174,76,81,23,203,2,0,112,110,161,154,246,174,2,0,112,46,103,84,61,60,3,0,112,174,107,43,11,106,4,0,113,174,5,24,57,216,2,0,115,46,183,94,143,211,3,0,115,46,72,212,229,171,4,0,118,46,178,148,196,209,2,0,123,238,176,248,242,146,3,0,123,46,221,117,198,159,3,0,126,174,76,81,248,202,2,0,134,238,131,108,228,185,3,0,140,46,161,189,111,149,2,0,141,238,206,167,150,168,2,0,144,110,94,153,161,77,4,0,152,110,87,191,194,170,4,0,153,46,151,71,121,1,4,0,162,110,184,187,96,176,4,0,163,238,245,178,179,129,2,0,163,46,104,1,44,147,2,0,164,110,149,144,29,33,3,0,164,174,74,11,12,58,4,0,170,174,240,32,20,11,3,0,171,110,181,229,4,9,3,0,171,46,6,104,64,30,4,0,172,110,74,169,33,99,4,0,173,174,155,172,249,116,4,0,175,110,152,51,230,82,4,0,175,238,105,224,145,138,4,0,176,174,1,96,236,120,2,0,177,110,131,57,135,70,2,0,183,46,175,246,188,151,2,0,190,238,141,197,23,111,4,0,192,174,208,175,168,114,3,0,194,110,35,155,199,168,2,0,194,110,196,61,210,222,3,0,196,174,170,126,87,245,3,0,201,174,51,149,130,185,2,0,201,238,122,174,66,177,3,0,202,46,34,68,232,62,4,0,203,238,19,41,88,35,2,0,203,46,198,74,90,86,2,0,207,174,34,168,19,60,3,0,209,238,141,93,223,177,3,0,210,110,195,180,29,189,3,0,213,174,161,61,155,119,2,0,215,110,54,38,190,235,3,0,219,174,104,0,196,149,4,0,222,110,40,75,253,135,2,0,222,174,240,157,138,45,3,0,223,174,1,191,89,51,2,0,223,110,43,248,71,103,2,0,223,174,23,156,66,204,2,0,227,110,30,100,246,166,3,0,228,238,245,160,93,63,4,0,230,174,18,11,60,23,3,0,232,174,182,118,249,158,3,0,232,174,124,15,139,132,4,0,233,238,103,254,96,161,4,0,237,46,68,104,63,123,3,0,246,174,12,50,54,131,4,0,247,174,224,81,227,229,2,0,250,238,187,171,82,31,4,0,250,238,187,171,124,31,4,0,252,238,93,188,149,245,2,0,0,175,46,194,125,95,3,0,3,175,232,210,234,98,2,0,5,111,18,242,252,141,4,0,7,47,179,81,114,24,2,0,11,175,164,149,69,63,2,0,12,111,163,173,71,15,4,0,15,239,225,59,223,40,2,0,16,239,121,84,191,51,3,0,18,47,171,72,52,20,3,0,18,111,193,62,14,0,4,0,18,175,231,12,2,8,4,0,21,239,191,36,200,130,2,0,23,111,61,117,116,125,2,0,23,47,12,197,189,73,4,0,24,239,26,96,196,220,2,0,24,175,95,12,34,122,4,0,24,239,88,239,37,177,4,0,26,239,236,91,213,74,2,0,28,111,0,64,101,120,2,0,29,111,96,157,47,81,2,0,33,111,54,123,69,42,4,0,33,239,223,235,19,54,4,0,35,47,157,31,98,163,4,0,40,239,218,166,33,57,4,0,41,111,191,2,18,35,4,0,41,175,140,78,38,111,4,0,49,111,18,163,71,66,3,0,51,111,246,195,41,216,3,0,52,47,239,182,206,189,2,0,52,239,98,205,203,139,4,0,55,111,147,97,145,98,2,0,60,47,87,144,84,201,3,0,62,47,142,137,37,40,2,0,65,47,72,12,93,161,3,0,67,111,56,201,88,93,2,0,68,47,41,177,77,73,2,0,69,239,253,55,101,99,4,0,73,175,245,250,17,28,4,0,76,47,172,64,100,40,4,0,76,47,33,178,118,43,4,0,79,175,188,133,23,70,3,0,80,175,66,51,107,243,3,0,84,111,78,96,103,204,3,0,85,239,49,108,162,78,4,0,88,111,9,122,199,36,3,0,89,239,26,156,218,209,3,0,90,47,238,255,140,60,2,0,90,175,1,132,177,152,3,0,91,239,164,32,13,23,4,0,95,239,102,227,233,43,4,0,96,47,213,187,75,104,3,0,100,47,224,213,244,164,2,0,104,175,166,197,59,70,2,0,105,111,198,216,72,110,3,0,108,175,3,221,246,230,2,0,109,175,150,37,10,198,3,0,111,239,111,165,39,61,2,0,113,175,241,95,69,57,4,0,114,47,43,72,248,65,4,0,120,175,210,221,144,107,4,0,122,239,104,139,31,83,4,0,123,111,65,164,240,36,2,0,124,239,204,249,142,94,2,0,128,111,208,167,247,41,4,0,129,239,118,1,223,115,2,0,129,175,182,120,200,187,3,0,129,111,192,197,83,251,3,0,129,47,202,217,10,69,4,0,130,47,255,79,33,39,2,0,130,175,240,217,155,106,3,0,131,111,30,6,101,78,2,0,135,239,203,246,165,48,2,0,141,47,208,98,149,111,4,0,145,111,40,161,48,118,2,0,145,175,166,25,170,147,2,0,146,111,245,177,34,198,2,0,146,111,60,81,140,241,2,0,148,47,186,107,202,211,3,0,149,175,30,221,125,201,2,0,149,111,3,149,236,170,4,0,152,175,106,61,55,144,4,0,153,47,147,153,148,63,4,0,153,175,146,204,56,184,4,0,155,175,167,228,248,169,3,0,157,175,242,29,29,96,3,0,157,239,160,65,57,222,3,0,160,239,11,224,37,28,2,0,162,239,188,247,224,149,2,0,164,239,177,64,44,25,2,0,165,239,169,233,29,111,3,0,165,175,75,0,105,128,4,0,166,175,121,130,238,161,3,0,170,239,95,241,5,165,3,0,171,111,179,19,169,150,3,0,173,239,166,82,222,112,3,0,177,239,70,183,85,252,2,0,182,239,10,167,89,81,2,0,187,47,102,15,202,185,3,0,189,47,132,92,24,55,4,0,191,175,173,23,128,74,4,0,195,239,155,34,142,118,2,0,197,47,202,196,76,113,2,0,200,239,216,47,125,143,3,0,201,111,157,106,123,89,2,0,201,47,248,206,228,52,4,0,203,239,106,49,76,135,3,0,205,47,76,33,116,78,2,0,205,175,4,24,214,88,4,0,206,239,158,200,110,87,4,0,210,111,201,178,42,97,2,0,211,111,194,154,49,133,3,0,214,175,76,81,106,210,2,0,214,239,87,56,155,57,3,0,214,175,58,82,10,162,3,0,215,47,28,2,216,128,2,0,219,47,11,1,149,197,2,0,223,111,242,20,145,6,3,0,223,47,237,249,72,183,3,0,224,175,208,52,37,234,3,0,230,239,198,6,44,178,2,0,233,47,55,157,177,87,3,0,234,47,216,136,163,229,2,0,235,239,86,255,125,251,2,0,236,239,127,113,104,130,2,0,237,47,206,215,41,77,4,0,239,47,16,197,95,203,3,0,244,47,183,118,86,94,4,0,245,111,43,47,78,195,3,0,246,111,118,62,68,118,2,0,246,111,251,187,124,48,3,0,252,175,232,106,174,146,3,0,254,175,104,0,67,44,4,0,254,175,104,0,80,44,4,0,255,239,201,18,207,43,2,0,7,48,171,172,47,231,3,0,9,176,105,41,217,177,4,0,10,240,97,244,27,194,3,0,13,176,56,18,176,211,2,0,16,112,151,253,214,57,3,0,20,240,178,118,225,2,3,0,22,48,108,53,160,166,4,0,23,240,87,74,32,17,2,0,30,112,189,123,211,8,4,0,32,176,212,66,2,79,3,0,32,176,166,16,146,64,4,0,35,240,157,19,244,71,2,0,38,176,72,30,218,30,3,0,38,112,67,168,179,247,3,0,41,48,5,225,61,117,2,0,43,176,104,0,50,201,3,0,49,112,26,146,130,87,4,0,53,48,82,14,11,224,2,0,55,240,246,49,97,59,3,0,55,240,114,169,137,141,3,0,56,112,167,35,89,39,3,0,58,176,104,0,75,224,3,0,59,112,185,140,178,175,4,0,60,240,55,142,10,86,3,0,63,48,254,94,84,214,3,0,65,48,68,24,111,198,2,0,68,48,116,43,151,99,3,0,68,240,129,163,119,71,4,0,69,48,34,74,29,15,2,0,69,176,173,154,36,179,2,0,69,48,83,193,248,118,4,0,71,112,116,229,151,19,2,0,71,48,42,138,66,75,3,0,71,48,246,253,238,37,4,0,73,240,120,174,83,161,2,0,76,48,174,36,228,172,4,0,77,176,187,16,27,125,3,0,80,176,95,134,123,137,4,0,83,240,224,108,169,195,3,0,83,112,227,235,169,216,3,0,85,240,163,1,200,146,4,0,87,112,20,28,210,79,2,0,87,240,24,118,187,88,2,0,87,112,207,235,17,133,2,0,87,240,190,146,177,223,2,0,88,48,136,45,153,0,3,0,91,112,187,99,231,69,3,0,92,176,87,124,4,39,2,0,95,48,170,216,60,71,2,0,97,240,206,69,61,39,4,0,102,48,44,160,101,207,3,0,103,48,184,207,185,78,3,0,105,176,14,164,111,120,4,0,106,112,83,144,112,178,4,0,107,240,113,25,20,205,2,0,107,176,32,207,27,150,4,0,109,176,159,136,64,131,3,0,109,112,37,137,224,29,4,0,112,48,208,136,254,216,2,0,114,48,177,7,173,40,4,0,118,48,160,28,96,45,4,0,119,48,163,197,246,186,3,0,120,240,217,63,161,8,3,0,125,176,224,60,48,167,3,0,128,240,161,34,97,84,2,0,128,112,166,130,249,99,2,0,132,176,246,112,87,9,3,0,135,176,139,42,215,215,3,0,137,176,164,17,124,174,4,0,142,48,151,75,186,40,3,0,144,112,65,136,75,151,2,0,144,48,246,238,1,115,4,0,145,240,85,77,131,92,2,0,147,112,29,206,56,163,4,0,149,48,252,255,28,105,3,0,150,48,33,234,168,33,3,0,153,176,17,235,114,69,2,0,155,240,14,192,20,12,2,0,155,176,195,127,205,120,3,0,155,48,16,201,178,128,3,0,157,48,191,181,217,93,2,0,157,48,108,97,176,221,3,0,161,48,19,22,110,163,4,0,162,48,246,166,210,76,4,0,167,48,253,132,166,85,3,0,171,240,26,17,44,101,3,0,173,112,76,180,142,8,3,0,178,48,158,178,0,21,3,0,178,48,211,56,152,153,3,0,178,176,75,54,5,201,3,0,179,112,126,167,140,60,3,0,181,48,240,4,154,241,2,0,181,176,11,149,239,23,4,0,183,176,245,252,77,154,4,0,187,112,192,162,172,28,4,0,190,112,207,195,161,157,2,0,194,176,94,140,40,190,2,0,194,112,27,169,184,62,3,0,195,112,0,23,122,90,3,0,195,240,141,14,189,112,3,0,195,112,181,99,184,172,3,0,196,176,57,8,189,119,4,0,200,176,191,194,113,194,3,0,203,48,43,123,236,36,3,0,203,112,175,129,32,76,3,0,204,176,200,201,158,63,2,0,204,48,27,146,92,179,3,0,205,112,208,122,207,37,2,0,205,240,18,158,110,151,2,0,205,176,5,146,133,20,4,0,218,48,81,184,29,173,3,0,218,48,8,111,108,138,4,0,219,176,249,1,219,162,3,0,224,240,213,7,102,111,4,0,226,176,44,125,111,16,2,0,226,240,41,176,218,229,3,0,228,176,30,147,241,64,2,0,229,112,89,22,230,120,4,0,232,112,150,45,255,156,3,0,233,240,230,92,104,11,4,0,236,176,202,140,139,176,4,0,237,240,165,169,109,237,2,0,241,48,153,231,182,199,3,0,244,112,149,101,31,148,2,0,245,176,170,174,149,123,2,0,247,48,124,54,198,200,3,0,248,240,143,49,228,86,4,0,0,113,1,245,38,145,2,0,1,177,21,132,55,97,2,0,1,177,217,113,167,83,3,0,1,113,195,186,255,126,3,0,3,49,189,28,250,191,3,0,5,177,92,57,228,162,2,0,5,241,107,94,73,48,3,0,5,113,91,146,167,72,3,0,5,113,181,33,63,157,4,0,7,241,203,160,197,38,4,0,9,49,35,133,134,117,3,0,13,241,104,199,68,167,3,0,13,49,24,2,240,109,4,0,15,49,46,179,116,109,2,0,15,113,139,140,188,181,3,0,17,241,152,41,146,149,4,0,20,241,26,96,176,220,2,0,22,177,55,242,76,239,3,0,25,177,112,6,84,30,2,0,25,49,24,192,23,168,2,0,27,241,102,90,252,251,3,0,29,241,122,36,77,109,2,0,32,49,33,47,50,32,2,0,33,113,209,32,161,92,3,0,35,241,98,122,129,32,2,0,35,177,100,242,246,64,3,0,41,113,6,76,101,105,3,0,41,113,255,240,103,139,4,0,41,241,91,217,91,154,4,0,42,113,135,136,252,109,4,0,43,113,230,173,138,191,3,0,43,113,242,111,30,226,3,0,44,49,9,192,32,224,2,0,47,177,104,0,249,115,2,0,51,113,50,246,158,243,2,0,54,241,30,7,204,184,3,0,55,113,79,112,109,4,4,0,56,177,253,76,231,72,2,0,56,177,153,9,175,149,4,0,63,241,206,157,178,70,3,0,66,241,247,56,166,120,4,0,70,241,41,17,246,161,2,0,71,177,215,22,119,179,4,0,75,113,67,32,192,5,3,0,76,241,242,59,80,211,2,0,88,49,84,31,185,62,2,0,90,241,31,213,67,90,3,0,96,113,187,26,94,162,4,0,99,177,31,72,31,92,4,0,102,113,41,191,169,110,2,0,102,49,100,15,148,140,2,0,105,49,108,97,112,2,2,0,105,49,168,49,220,64,2,0,105,241,17,138,180,66,3,0,107,49,179,155,37,121,3,0,108,49,186,189,27,54,3,0,108,177,223,9,182,26,4,0,109,49,108,107,50,222,2,0,112,177,142,211,93,219,2,0,112,49,78,109,164,57,4,0,114,177,226,147,90,171,3,0,115,241,164,175,207,139,2,0,115,241,237,108,107,194,2,0,121,177,225,114,110,187,3,0,126,113,127,68,75,174,2,0,126,241,29,136,186,244,3,0,128,113,146,204,204,204,2,0,128,113,66,94,124,82,4,0,129,241,110,41,190,174,4,0,130,177,194,249,6,128,4,0,132,177,210,170,240,48,3,0,132,241,87,60,233,172,3,0,136,113,22,212,227,51,2,0,139,49,76,202,142,154,2,0,142,177,128,135,123,23,3,0,143,241,140,41,37,95,4,0,144,241,7,47,153,209,2,0,144,177,65,196,5,171,3,0,150,113,76,46,190,204,3,0,151,49,136,160,215,69,3,0,151,113,81,72,29,185,4,0,152,241,235,204,220,4,2,0,155,49,221,125,252,129,3,0,157,113,160,254,235,62,2,0,158,49,53,25,158,15,3,0,158,113,52,142,241,7,4,0,162,49,50,12,209,164,3,0,167,113,235,37,239,81,3,0,171,49,173,11,140,248,2,0,171,113,37,81,140,31,3,0,177,177,68,82,212,86,2,0,177,113,227,119,27,175,4,0,180,177,12,90,63,16,4,0,183,241,142,160,92,67,3,0,184,49,212,129,158,81,2,0,185,177,55,185,255,87,3,0,189,49,148,168,219,99,2,0,189,177,245,120,250,200,3,0,190,113,217,15,187,200,2,0,190,113,209,237,107,252,2,0,194,177,148,197,122,60,2,0,197,241,173,95,159,127,3,0,198,177,176,87,170,176,2,0,200,241,130,241,81,32,3,0,202,177,107,58,33,143,3,0,202,241,90,158,32,90,4,0,204,49,210,235,8,159,2,0,206,177,46,28,78,0,4,0,207,113,79,157,165,80,4,0,208,177,159,32,6,13,2,0,208,49,148,112,232,232,2,0,209,241,194,103,11,226,3,0,209,113,39,183,248,128,4,0,210,113,162,79,148,137,4,0,216,241,254,5,35,113,3,0,216,113,33,135,234,57,4,0,219,177,58,128,75,41,2,0,219,49,24,192,249,160,2,0,224,113,153,18,251,60,3,0,226,177,208,211,105,136,3,0,227,49,93,71,156,181,3,0,227,113,139,176,247,38,4,0,229,177,72,82,170,34,4,0,230,241,238,184,139,130,3,0,234,113,120,233,187,164,3,0,241,241,116,248,187,131,4,0,242,49,179,111,114,98,4,0,243,113,143,59,217,196,3,0,254,49,36,190,13,140,4,0,255,241,36,61,16,226,2,0,255,113,134,121,208,4,4,0,4,178,167,228,95,172,3,0,7,178,250,138,154,13,2,0,7,242,71,232,6,78,4,0,12,178,248,73,39,92,2,0,13,178,141,140,225,225,2,0,13,242,157,232,51,145,4,0,14,114,95,49,172,156,2,0,16,114,21,169,196,169,3,0,17,242,30,165,164,192,3,0,17,114,102,158,206,252,3,0,18,178,107,80,73,21,4,0,19,242,234,229,228,87,4,0,25,242,55,136,140,48,2,0,27,50,206,213,255,74,3,0,32,114,210,151,42,18,2,0,33,178,7,42,222,230,3,0,35,242,189,247,38,77,2,0,37,50,224,19,169,48,4,0,40,114,155,176,40,158,4,0,43,114,116,147,200,151,2,0,43,178,239,143,103,82,3,0,44,242,205,199,54,52,3,0,44,178,118,109,222,95,4,0,45,178,57,79,146,165,2,0,47,114,33,167,174,108,3,0,47,242,143,99,139,83,4,0,49,114,55,103,211,17,4,0,53,114,228,230,123,17,2,0,53,242,31,191,17,36,3,0,58,50,61,6,227,122,4,0,62,178,179,228,175,13,3,0,67,114,215,31,173,149,2,0,67,242,113,213,144,200,3,0,73,114,248,18,233,245,2,0,81,114,195,191,78,88,4,0,88,114,95,24,87,111,3,0,89,114,187,39,227,249,3,0,90,114,106,58,68,53,2,0,91,242,224,92,243,144,2,0,91,50,245,151,222,187,3,0,92,114,104,200,36,131,2,0,98,178,162,233,88,231,2,0,99,114,223,225,54,110,2,0,101,242,248,80,107,133,2,0,102,242,227,75,43,114,2,0,104,178,143,110,208,123,2,0,110,50,192,59,123,7,2,0,110,242,187,173,6,164,2,0,112,50,213,232,51,226,3,0,113,242,218,23,234,213,2,0,115,114,71,218,162,75,4,0,118,114,26,96,193,96,4,0,119,114,118,147,187,66,4,0,120,178,241,121,19,238,3,0,122,114,237,150,112,35,2,0,123,242,98,21,138,4,2,0,128,50,237,45,217,86,3,0,129,242,49,44,216,62,2,0,131,242,191,213,149,6,2,0,132,114,38,205,94,31,2,0,133,114,66,172,158,59,4,0,135,50,25,8,98,15,3,0,135,50,29,159,29,10,4,0,138,50,219,128,50,62,2,0,142,114,89,148,170,148,3,0,145,114,233,213,44,106,3,0,152,242,84,51,132,64,2,0,152,178,114,108,134,203,2,0,152,178,150,170,57,79,3,0,159,114,49,104,151,65,2,0,162,242,168,165,253,74,4,0,165,114,82,59,82,106,4,0,166,242,186,196,180,119,3,0,166,178,175,204,45,161,4,0,167,178,152,160,252,50,3,0,175,178,152,160,29,51,3,0,178,242,239,21,74,64,3,0,179,242,99,127,161,202,3,0,179,114,81,169,165,62,4,0,188,114,172,221,39,176,2,0,188,178,255,121,72,115,3,0,198,114,31,228,19,85,2,0,200,178,189,79,239,248,2,0,200,50,29,62,242,137,4,0,202,178,191,86,75,222,2,0,207,50,127,138,46,12,4,0,208,50,116,221,94,36,2,0,212,50,175,136,49,183,2,0,215,50,111,97,97,117,2,0,217,114,150,230,139,243,3,0,218,114,159,149,109,246,3,0,227,178,7,195,103,211,2,0,228,114,152,124,12,94,3,0,228,178,80,185,51,86,4,0,230,242,219,214,202,62,2,0,230,178,43,75,55,204,3,0,230,50,160,56,143,134,4,0,231,242,212,120,200,248,2,0,231,178,177,198,120,144,4,0,232,50,232,70,1,97,3,0,234,50,57,187,202,12,3,0,236,242,125,153,30,76,2,0,237,178,37,81,172,31,3,0,238,242,46,28,17,165,2,0,239,242,200,84,5,154,4,0,240,114,59,184,68,61,3,0,242,242,247,83,182,143,2,0,244,242,136,64,75,192,3,0,246,242,51,144,97,125,4,0,246,178,122,217,167,158,4,0,247,178,208,203,158,215,3,0,253,242,225,247,103,61,4,0,253,242,103,81,216,73,4,0,255,50,208,232,93,40,3,0,3,243,114,167,159,8,2,0,3,179,238,108,207,194,2,0,3,51,3,35,186,165,3,0,4,51,149,22,217,47,2,0,6,179,77,249,176,141,4,0,15,115,158,254,235,80,3,0,17,243,118,44,183,253,3,0,17,51,218,187,231,9,4,0,24,115,226,25,8,54,3,0,25,179,227,199,91,224,3,0,27,51,143,252,193,221,2,0,27,115,175,93,138,78,4,0,28,51,189,138,125,121,2,0,31,115,114,252,103,102,2,0,35,179,242,164,214,98,3,0,37,51,100,15,142,139,2,0,40,179,87,119,224,179,4,0,43,51,24,109,130,4,4,0,45,115,162,234,124,232,3,0,49,243,224,251,54,219,3,0,52,51,143,96,175,225,3,0,54,243,132,227,33,225,3,0,57,51,170,242,83,238,2,0,61,51,24,192,201,160,2,0,61,243,21,135,230,199,2,0,66,243,206,130,162,169,4,0,73,243,8,128,28,36,4,0,76,179,223,0,79,152,2,0,78,51,213,208,50,77,2,0,80,243,115,204,196,92,4,0,85,179,136,10,77,134,4,0,90,115,65,222,193,24,2,0,91,115,216,54,113,231,2,0,92,243,51,45,123,39,4,0,92,115,48,246,212,135,4,0,93,51,123,134,155,29,2,0,93,115,26,77,209,34,2,0,95,179,10,51,247,72,4,0,97,179,234,63,128,118,2,0,99,243,37,35,163,59,2,0,102,243,142,8,192,199,2,0,103,243,25,57,117,162,3,0,105,51,27,230,14,81,2,0,106,51,112,203,180,6,4,0,108,243,143,115,253,130,2,0,109,243,113,16,154,251,3,0,112,243,252,81,206,159,2,0,112,115,163,112,44,230,2,0,128,115,85,196,183,150,2,0,129,243,81,24,179,208,2,0,129,243,23,176,133,54,3,0,130,51,18,221,223,48,4,0,138,179,51,148,128,61,4,0,138,115,135,166,80,76,4,0,141,51,185,28,53,96,2,0,146,179,226,134,182,77,2,0,146,179,100,15,170,102,3,0,148,51,204,204,158,85,4,0,152,115,142,54,148,119,4,0,153,179,176,224,6,5,3,0,153,243,81,119,50,171,3,0,153,243,240,227,123,38,4,0,154,51,248,125,136,113,2,0,154,51,248,154,46,124,2,0,158,115,89,93,155,121,4,0,159,51,16,77,129,138,3,0,161,243,9,245,16,107,4,0,162,115,137,167,232,67,4,0,163,179,6,44,104,201,3,0,163,243,1,244,245,10,4,0,164,115,35,160,168,159,4,0,169,51,154,160,235,61,3,0,171,51,224,54,203,133,3,0,177,179,41,181,143,21,3,0,177,115,154,90,89,51,4,0,178,243,85,116,3,133,2,0,178,115,93,250,57,147,3,0,184,243,79,14,11,35,3,0,184,179,174,6,179,157,3,0,189,51,201,241,127,164,4,0,193,115,54,227,251,50,4,0,194,179,124,64,38,42,2,0,195,179,63,133,240,70,4,0,198,243,45,117,207,94,4,0,199,115,31,129,161,108,2,0,200,115,183,244,92,149,2,0,201,51,137,160,41,69,3,0,201,179,91,79,110,134,3,0,203,115,143,242,91,230,2,0,204,179,161,142,36,52,2,0,204,51,153,223,168,28,3,0,204,51,51,13,151,208,3,0,207,115,171,61,125,84,2,0,207,179,31,94,181,200,3,0,209,115,44,211,21,251,3,0,211,179,38,92,128,28,4,0,213,179,114,153,224,165,2,0,214,243,78,19,175,82,4,0,216,179,238,89,92,238,3,0,216,179,156,163,255,129,4,0,218,51,107,203,185,192,2,0,224,243,229,24,234,57,2,0,224,179,221,203,39,98,2,0,225,51,255,239,154,38,2,0,226,51,15,66,79,89,2,0,231,243,125,11,252,122,4,0,234,51,136,162,43,66,4,0,235,179,241,148,121,178,3,0,240,179,59,129,62,207,3,0,241,115,217,186,145,166,2,0,241,115,220,229,109,110,3,0,243,115,218,99,88,118,2,0,243,179,30,219,18,117,4,0,248,243,255,96,148,11,2,0,248,51,197,137,35,80,4,0,249,51,116,95,247,33,3,0,250,179,195,119,99,143,3,0,0,180,61,61,135,172,2,0,3,180,137,68,58,0,4,0,4,52,52,161,1,129,2,0,4,244,42,142,113,50,4,0,6,180,144,155,219,183,4,0,7,52,182,214,99,47,3,0,11,180,173,164,226,192,3,0,13,244,47,93,158,244,2,0,15,116,45,93,249,62,2,0,18,180,31,93,82,200,3,0,20,116,51,16,94,98,3,0,20,180,245,48,36,253,3,0,24,116,196,145,167,135,3,0,30,180,242,247,58,2,2,0,30,52,169,165,0,44,4,0,31,52,34,40,181,77,4,0,33,244,103,107,61,181,2,0,38,116,141,254,72,102,4,0,40,52,122,140,106,28,2,0,40,244,200,52,127,249,2,0,46,116,183,90,193,16,4,0,49,180,45,60,49,96,3,0,51,180,246,226,207,223,3,0,54,52,129,194,194,12,2,0,55,116,59,184,191,60,3,0,56,116,104,113,105,55,4,0,60,180,57,110,237,126,3,0,63,52,142,0,128,80,3,0,68,244,37,43,197,182,2,0,68,52,178,232,84,117,4,0,73,180,221,143,117,117,3,0,75,180,220,54,41,93,4,0,76,52,215,103,67,155,4,0,77,244,117,185,60,208,2,0,77,52,224,255,120,22,4,0,78,52,225,37,172,7,2,0,78,52,172,167,74,170,2,0,79,244,115,228,178,28,2,0,80,52,16,234,26,63,3,0,81,116,96,242,19,99,3,0,81,180,153,236,134,48,4,0,82,52,194,99,2,4,2,0,83,52,123,172,200,21,4,0,84,116,72,135,88,145,2,0,84,116,72,135,74,147,2,0,84,180,189,79,0,249,2,0,84,116,72,135,145,182,4,0,87,116,176,188,248,172,4,0,89,180,247,160,205,102,4,0,91,116,221,144,194,106,4,0,93,52,153,127,174,175,2,0,95,52,106,116,246,111,2,0,96,244,30,34,61,112,2,0,98,116,37,81,89,31,3,0,100,52,210,235,167,158,2,0,101,52,90,244,217,201,2,0,102,52,151,85,238,214,3,0,104,116,102,220,21,247,2,0,109,244,57,126,156,39,3,0,111,180,171,104,189,148,2,0,111,116,117,189,188,247,2,0,111,244,97,218,77,37,3,0,113,52,247,223,152,4,4,0,114,116,25,99,113,179,3,0,118,244,31,48,118,107,2,0,119,180,239,116,47,175,4,0,122,116,48,230,79,123,2,0,123,52,185,4,243,134,2,0,123,244,222,141,221,199,3,0,126,180,3,171,80,58,2,0,131,116,151,224,50,3,4,0,132,52,149,26,163,41,4,0,133,244,96,138,230,29,3,0,133,244,26,164,174,159,3,0,134,180,204,214,228,135,3,0,134,180,133,90,46,180,3,0,135,180,244,188,139,212,3,0,137,180,175,58,217,152,4,0,140,116,61,231,84,21,2,0,140,180,191,230,209,222,2,0,140,180,227,94,254,214,3,0,140,244,93,122,246,0,4,0,144,244,53,241,103,31,3,0,144,180,222,223,249,173,4,0,145,180,203,236,5,118,2,0,146,52,185,22,106,106,4,0,147,116,2,96,142,100,2,0,151,180,220,245,30,142,4,0,160,244,85,159,157,139,2,0,161,180,232,169,50,85,3,0,164,244,148,229,101,100,3,0,165,244,157,203,54,191,2,0,166,180,125,190,181,152,4,0,168,116,230,47,2,91,3,0,168,52,183,94,215,210,3,0,171,116,146,223,56,47,2,0,175,244,29,113,82,59,4,0,176,244,21,10,3,41,2,0,179,116,175,75,151,195,2,0,181,180,118,140,83,243,3,0,183,244,114,26,250,217,2,0,183,52,58,135,191,249,3,0,190,180,223,103,208,2,2,0,190,52,86,121,233,111,3,0,190,52,235,21,175,252,3,0,194,244,68,145,223,242,3,0,195,52,215,82,128,115,3,0,197,244,217,86,251,180,4,0,199,116,181,8,130,195,3,0,202,116,242,130,79,164,3,0,205,244,33,165,180,170,3,0,205,116,24,182,81,181,3,0,207,180,82,241,184,45,3,0,211,52,93,229,238,32,3,0,212,116,251,28,100,122,3,0,214,180,165,45,60,5,2,0,214,116,212,79,29,50,4,0,215,116,232,179,127,97,4,0,225,180,237,193,193,91,2,0,225,180,37,118,61,92,2,0,225,244,19,89,70,224,2,0,225,180,128,216,168,27,4,0,225,244,43,245,193,113,4,0,226,116,236,179,126,30,2,0,232,180,223,112,107,9,2,0,236,180,76,154,174,63,4,0,238,180,47,228,91,50,2,0,240,52,127,195,8,161,2,0,241,244,158,52,205,76,2,0,243,52,136,150,41,94,2,0,248,180,121,98,86,74,2,0,248,244,57,37,45,134,2,0,253,116,202,189,6,243,2,0,254,52,133,15,74,136,2,0,255,52,114,135,132,98,4,0,2,53,173,234,187,85,2,0,2,245,75,27,43,111,3,0,3,117,44,160,39,166,3,0,4,245,31,248,187,16,2,0,7,245,88,199,180,160,3,0,7,245,115,168,41,117,4,0,11,245,194,127,117,187,2,0,12,181,124,49,240,63,2,0,22,181,38,69,223,114,3,0,25,117,213,70,3,92,4,0,26,245,30,169,186,88,3,0,34,53,112,123,70,127,3,0,41,245,53,106,7,176,2,0,46,245,198,194,53,135,3,0,49,53,123,128,141,124,3,0,51,181,21,67,207,176,3,0,52,245,29,77,77,248,2,0,52,181,58,22,27,200,3,0,53,117,42,51,187,147,2,0,55,53,88,29,218,31,2,0,57,53,25,137,194,181,2,0,57,245,21,135,146,199,2,0,58,117,90,6,115,67,4,0,62,181,101,109,14,156,3,0,64,53,190,36,227,221,3,0,66,53,52,129,20,207,3,0,69,181,201,130,24,68,2,0,76,53,230,8,25,73,2,0,79,245,205,100,237,134,3,0,88,181,166,244,58,36,3,0,93,53,59,184,235,66,3,0,93,53,95,201,167,52,4,0,94,181,156,77,195,67,2,0,94,117,167,42,93,95,4,0,94,245,53,220,137,133,4,0,98,245,113,206,250,9,4,0,98,117,40,14,79,18,4,0,106,53,4,86,140,50,4,0,109,53,58,28,184,210,3,0,109,117,224,247,26,48,4,0,110,245,131,123,124,68,4,0,115,53,28,185,36,246,3,0,117,245,145,204,219,79,4,0,119,181,243,68,6,46,3,0,120,245,171,114,20,232,2,0,124,181,211,213,4,72,2,0,134,181,172,54,102,118,2,0,136,245,50,73,76,184,4,0,138,117,108,138,249,55,2,0,141,53,221,209,4,52,3,0,141,53,221,116,88,209,3,0,142,181,109,202,245,109,2,0,142,53,28,29,9,228,3,0,143,53,230,109,6,144,4,0,143,245,222,210,245,167,4,0,144,181,180,121,189,51,4,0,147,245,150,92,133,225,2,0,147,245,150,92,165,225,2,0,148,181,247,158,110,132,4,0,149,53,94,156,102,160,3,0,152,245,216,51,217,191,2,0,153,53,114,190,202,217,2,0,156,245,176,233,198,83,4,0,158,117,198,59,47,130,4,0,159,53,63,240,188,254,3,0,161,245,73,186,212,28,3,0,163,53,107,174,197,216,2,0,170,245,218,143,153,70,2,0,171,117,210,177,32,54,2,0,171,181,117,103,153,212,2,0,181,245,159,229,53,59,4,0,182,53,94,210,189,253,2,0,182,181,229,52,174,231,3,0,184,245,165,172,93,10,4,0,188,245,152,223,152,36,3,0,188,53,123,123,212,140,4,0,191,117,10,62,77,85,4,0,191,245,11,146,24,167,4,0,192,117,205,145,242,108,3,0,197,181,40,241,123,154,2,0,198,181,195,186,162,26,3,0,201,181,139,133,157,118,2,0,205,245,152,223,139,36,3,0,209,245,88,236,119,40,3,0,211,53,47,45,189,158,4,0,212,53,139,250,102,192,3,0,213,117,50,55,32,147,3,0,214,53,113,39,209,78,2,0,214,245,14,160,229,189,2,0,215,53,171,229,193,106,3,0,217,181,232,242,225,65,4,0,219,117,36,120,153,32,2,0,220,245,255,20,120,34,2,0,221,53,131,167,36,108,2,0,223,245,48,143,244,155,4,0,225,117,13,80,66,64,4,0,226,53,19,72,28,171,3,0,230,245,31,243,216,94,3,0,234,181,11,8,152,249,3,0,238,53,153,100,83,147,3,0,238,181,238,231,32,213,3,0,238,53,112,17,125,138,4,0,239,181,120,107,69,175,2,0,244,245,19,200,34,68,3,0,245,181,167,228,18,173,3,0,246,117,1,129,215,255,2,0,247,181,202,55,163,128,3,0,247,117,25,184,116,225,3,0,249,245,121,156,105,23,2,0,252,181,6,61,243,18,4,0,253,53,87,24,74,117,3,0,0,54,64,69,72,139,3,0,0,118,116,227,134,184,3,0,5,54,69,21,184,43,2,0,7,246,201,67,215,7,3,0,8,182,226,255,53,176,3,0,11,246,177,93,176,29,2,0,13,246,205,162,157,163,4,0,16,118,1,239,246,206,3,0,17,54,190,211,38,139,3,0,21,182,221,102,249,191,2,0,22,182,197,240,198,60,4,0,26,182,134,173,6,112,2,0,26,118,132,17,170,56,4,0,27,182,53,102,125,13,2,0,27,54,124,200,141,114,3,0,27,118,31,55,32,22,4,0,29,54,135,122,215,87,2,0,30,118,111,73,143,40,3,0,34,54,178,209,237,57,3,0,35,54,227,148,48,67,4,0,37,246,83,73,214,110,3,0,39,182,250,245,84,123,3,0,41,246,197,92,121,181,3,0,42,246,247,238,141,213,3,0,43,182,9,4,120,255,3,0,46,246,244,84,107,122,2,0,48,182,59,183,72,215,3,0,49,246,117,232,58,249,2,0,51,182,238,182,239,208,2,0,53,54,106,218,236,110,3,0,55,182,99,0,69,114,4,0,59,246,78,59,22,143,2,0,61,54,26,81,120,41,3,0,72,246,181,106,10,255,3,0,75,118,164,98,129,222,2,0,76,54,197,89,90,146,2,0,78,118,160,166,48,163,3,0,78,246,197,64,196,220,3,0,80,246,193,22,8,107,2,0,81,246,192,205,50,21,2,0,81,182,18,240,162,107,2,0,82,54,183,252,253,83,3,0,83,246,43,2,162,61,4,0,89,182,129,211,2,172,3,0,95,182,254,190,184,130,3,0,96,182,113,110,246,241,2,0,97,54,28,189,11,10,4,0,97,182,246,233,188,86,4,0,100,118,182,249,254,57,4,0,102,246,181,181,227,139,4,0,104,54,117,220,107,133,3,0,106,118,110,216,62,56,4,0,109,54,179,232,192,49,3,0,114,246,249,250,23,197,2,0,115,182,83,171,207,228,3,0,115,118,60,164,98,70,4,0,121,182,161,66,52,148,2,0,124,182,2,75,143,230,2,0,125,246,158,92,7,150,4,0,125,54,231,40,116,172,4,0,126,54,198,64,156,231,2,0,132,246,1,90,150,90,4,0,134,118,127,156,210,102,3,0,135,118,154,17,46,252,2,0,136,54,95,53,162,23,2,0,138,118,130,121,110,0,4,0,138,182,62,94,209,112,4,0,144,182,225,181,165,40,3,0,147,182,208,34,211,155,2,0,147,246,239,146,129,56,3,0,149,54,63,184,110,21,3,0,153,246,117,109,21,1,3,0,154,182,43,143,62,200,3,0,155,182,53,92,204,3,4,0,158,246,66,173,6,126,3,0,160,54,217,166,169,129,4,0,161,182,121,235,104,134,2,0,161,182,247,130,21,0,3,0,162,54,164,203,32,191,2,0,162,182,243,118,173,179,4,0,165,54,46,91,94,5,2,0,165,182,24,81,5,74,3,0,170,118,191,61,253,189,2,0,170,118,73,54,50,63,3,0,171,54,169,47,131,251,3,0,173,182,14,6,109,144,3,0,175,118,227,101,37,36,3,0,176,54,33,195,88,51,3,0,177,246,215,127,235,154,3,0,177,246,180,113,79,20,4,0,178,246,91,69,40,143,2,0,178,118,111,14,19,97,4,0,185,118,122,96,45,44,2,0,189,118,114,58,45,144,3,0,189,118,35,119,72,164,4,0,190,54,62,218,160,57,2,0,193,118,247,249,218,113,2,0,194,246,110,223,12,3,2,0,194,246,110,51,177,162,3,0,195,182,183,121,42,73,2,0,195,54,220,236,65,120,2,0,196,118,179,159,19,137,4,0,200,54,252,184,18,124,3,0,201,118,141,38,156,11,4,0,202,182,162,80,234,193,3,0,204,182,132,118,195,98,2,0,205,246,146,30,37,169,2,0,207,54,201,17,18,10,3,0,208,118,49,51,57,55,4,0,209,118,38,253,121,117,2,0,211,118,228,231,81,21,3,0,212,118,155,188,138,250,2,0,212,118,50,12,192,167,3,0,213,54,199,174,9,50,2,0,215,118,186,186,249,18,3,0,216,246,81,105,154,9,3,0,217,246,247,28,114,19,4,0,219,118,125,109,178,71,4,0,219,54,194,214,128,155,4,0,222,246,136,127,118,105,4,0,223,118,74,3,66,209,2,0,224,182,113,226,3,56,3,0,225,182,24,81,153,73,3,0,226,54,159,198,184,76,3,0,226,246,71,16,173,47,4,0,227,182,153,80,195,167,4,0,228,246,248,182,52,131,2,0,228,54,77,71,78,170,3,0,229,246,72,58,185,44,3,0,233,54,118,56,69,51,2,0,233,54,231,91,0,43,4,0,233,118,210,236,30,157,4,0,234,246,84,162,140,1,3,0,235,54,59,184,108,67,3,0,236,54,123,183,187,223,3,0,236,182,164,120,210,175,4,0,240,246,107,49,0,237,3,0,245,182,44,76,55,141,4,0,251,54,53,52,249,63,3,0,252,54,97,229,54,189,3,0,0,247,168,141,164,72,2,0,2,55,150,229,0,26,2,0,3,247,88,199,225,160,3,0,3,247,244,80,227,96,4,0,4,183,110,131,142,66,2,0,6,119,83,23,13,76,4,0,9,247,54,247,132,242,3,0,13,55,194,54,14,157,3,0,15,247,30,39,40,188,2,0,15,119,219,67,94,149,3,0,16,247,181,0,160,131,3,0,16,247,83,23,25,109,4,0,17,247,72,108,252,95,2,0,17,55,199,61,46,0,3,0,18,55,199,61,4,0,3,0,19,247,139,191,74,20,3,0,20,55,196,80,232,9,2,0,25,247,143,117,75,126,2,0,25,247,143,117,98,126,2,0,25,183,39,54,121,131,3,0,27,119,53,81,71,251,2,0,28,247,34,173,242,50,2,0,29,55,166,188,122,176,2,0,29,183,101,103,186,137,4,0,30,247,103,154,199,172,2,0,31,247,250,67,173,44,2,0,33,119,80,246,175,123,2,0,36,55,54,165,212,145,2,0,42,55,245,68,92,42,3,0,44,247,112,33,72,232,2,0,44,55,46,218,102,190,3,0,47,247,28,13,88,153,2,0,48,247,248,236,198,150,2,0,52,183,3,181,177,124,2,0,54,183,195,16,240,223,2,0,55,55,95,68,145,173,3,0,57,119,121,132,191,255,3,0,58,247,157,250,58,178,4,0,63,119,154,18,172,250,2,0,64,119,1,21,235,132,2,0,68,119,39,38,118,109,3,0,70,55,78,94,181,82,2,0,71,183,43,166,106,72,4,0,72,119,29,145,55,76,4,0,73,55,90,75,87,78,4,0,76,55,103,255,9,129,4,0,77,119,153,188,216,250,2,0,77,119,115,82,213,150,3,0,77,119,223,124,125,173,4,0,81,247,19,51,73,182,3,0,86,55,117,71,93,100,2,0,87,119,158,19,21,219,3,0,88,55,45,104,214,172,3,0,89,55,145,211,234,138,2,0,91,247,250,67,194,44,2,0,92,247,132,80,152,166,3,0,92,119,152,181,16,118,4,0,94,247,237,67,206,110,4,0,95,247,13,177,193,251,2,0,97,55,205,28,121,18,2,0,99,183,243,36,255,176,3,0,100,55,7,84,68,23,2,0,100,247,221,166,254,57,2,0,102,55,120,152,212,135,3,0,104,247,95,239,129,212,2,0,110,247,85,194,20,234,2,0,110,119,146,220,69,227,3,0,111,247,154,185,59,97,3,0,114,183,115,193,48,105,3,0,114,183,152,6,243,4,4,0,115,119,237,99,215,66,3,0,115,55,150,179,61,254,3,0,116,183,123,132,163,140,2,0,116,119,164,109,97,230,3,0,116,183,215,31,58,246,3,0,121,247,227,120,64,86,2,0,122,183,188,109,78,171,4,0,125,119,109,147,44,148,3,0,129,119,138,128,217,5,2,0,130,247,226,128,249,194,2,0,133,183,11,74,188,252,2,0,133,247,10,248,168,135,4,0,134,247,137,185,83,36,3,0,134,247,46,107,201,135,3,0,135,55,14,245,84,194,3,0,140,119,155,59,221,54,2,0,141,119,242,128,111,82,2,0,143,55,85,221,22,166,2,0,143,183,62,193,14,177,2,0,147,55,116,31,24,124,2,0,147,247,79,25,85,204,2,0,149,247,151,33,11,99,4,0,155,183,90,234,193,142,3,0,160,119,168,12,88,74,3,0,166,183,165,34,176,139,2,0,166,55,31,172,75,119,3,0,175,119,253,106,161,9,2,0,176,183,48,66,78,207,2,0,181,55,165,55,45,94,3,0,182,247,157,228,28,35,3,0,183,247,15,81,227,141,4,0,184,183,217,216,190,3,3,0,185,247,243,80,41,150,4,0,186,183,203,40,248,11,2,0,188,55,32,238,187,180,3,0,194,119,210,105,134,51,4,0,205,247,114,26,17,218,2,0,206,55,109,67,58,119,2,0,206,55,7,122,244,138,3,0,211,55,155,63,130,14,4,0,215,119,212,47,225,45,4,0,215,119,212,47,241,45,4,0,217,119,174,47,151,39,2,0,217,55,43,134,12,135,3,0,217,183,134,13,100,27,4,0,218,183,57,143,251,235,3,0,218,119,235,80,131,46,4,0,225,119,114,214,214,89,2,0,227,183,191,238,175,158,3,0,229,55,12,243,190,86,2,0,230,247,213,24,8,45,2,0,235,183,25,80,215,60,4,0,236,247,225,154,141,100,3,0,237,119,227,251,24,67,2,0,237,247,170,115,202,124,4,0,245,247,39,81,63,28,3,0,245,183,198,79,26,87,3,0,246,183,56,41,87,187,2,0,250,183,237,253,236,125,4,0,252,55,72,44,45,125,3,0,253,183,244,73,110,138,3,0,0,56,249,181,202,104,4,0,2,56,164,228,105,221,3,0,3,56,171,47,238,210,2,0,8,120,6,244,130,102,2,0,10,184,104,238,227,3,3,0,13,56,184,186,171,16,3,0,13,184,50,246,249,247,3,0,14,248,18,209,200,124,3,0,14,184,126,133,248,77,4,0,15,184,25,80,246,60,4,0,15,184,154,95,0,152,4,0,18,248,18,144,117,83,3,0,23,184,91,128,117,180,4,0,26,184,24,75,224,198,3,0,28,184,191,72,61,123,2,0,28,184,199,130,101,46,3,0,30,56,9,237,4,49,2,0,31,248,82,79,242,17,4,0,33,56,231,160,83,102,3,0,34,120,14,246,194,79,4,0,35,56,185,132,109,64,2,0,37,120,201,112,66,142,2,0,38,184,105,200,111,56,3,0,39,120,251,20,161,6,3,0,41,248,35,210,218,48,2,0,41,56,192,78,21,72,2,0,43,56,87,163,36,30,3,0,43,184,101,199,235,31,4,0,44,248,101,126,28,149,2,0,44,184,202,207,233,26,4,0,49,248,71,176,169,52,2,0,49,120,206,48,177,113,2,0,51,184,54,194,103,30,2,0,52,248,183,47,178,127,3,0,53,56,249,207,153,88,2,0,55,120,97,146,113,19,2,0,59,184,21,211,112,243,2,0,59,248,90,164,131,76,4,0,59,56,127,167,110,182,4,0,60,184,211,173,253,203,3,0,63,120,242,143,210,253,3,0,69,184,74,220,153,250,2,0,72,120,59,184,196,50,3,0,72,56,158,225,55,154,4,0,76,56,239,179,129,77,2,0,76,56,0,7,212,125,4,0,86,184,136,51,246,177,4,0,90,120,169,229,56,15,4,0,92,120,217,253,139,24,3,0,92,248,245,198,131,29,3,0,96,248,0,99,22,175,3,0,101,56,118,166,78,24,2,0,103,56,67,131,240,118,2,0,103,248,43,141,45,140,2,0,103,120,189,239,188,227,2,0,103,248,178,162,149,174,3,0,106,120,199,85,227,142,3,0,107,120,193,72,6,131,4,0,109,56,200,202,205,117,3,0,110,184,64,37,15,65,4,0,115,184,2,131,140,160,4,0,118,184,54,63,227,144,4,0,119,184,50,128,87,130,2,0,119,120,189,25,92,224,2,0,120,248,254,192,64,116,4,0,121,120,71,231,96,68,2,0,127,184,166,210,230,153,3,0,130,120,185,196,203,71,4,0,133,56,212,123,118,162,2,0,137,56,90,104,107,124,2,0,137,56,21,192,227,203,2,0,138,56,21,192,98,203,2,0,141,120,170,200,8,135,2,0,143,56,19,61,246,129,2,0,145,120,157,127,132,104,4,0,149,56,145,61,116,170,2,0,149,56,151,94,50,19,4,0,156,56,120,25,231,216,2,0,160,184,37,165,158,184,2,0,161,120,113,27,233,91,2,0,169,120,87,155,130,25,3,0,179,120,162,203,38,229,3,0,179,184,94,110,73,96,4,0,180,120,65,66,88,66,4,0,182,184,73,170,133,160,2,0,183,184,100,56,205,232,2,0,188,184,48,188,158,72,4,0,189,120,124,153,104,127,4,0,191,248,38,22,148,38,3,0,195,248,71,212,110,45,3,0,201,120,160,78,246,11,3,0,208,56,101,235,158,182,3,0,209,248,196,179,168,108,4,0,213,120,130,133,11,75,2,0,215,56,219,219,98,104,2,0,216,184,251,26,245,165,4,0,218,248,35,227,114,73,2,0,218,184,62,193,39,177,2,0,220,248,0,153,172,151,3,0,224,184,11,74,216,254,2,0,226,248,125,26,158,154,2,0,228,184,135,129,222,207,3,0,229,248,50,38,182,238,2,0,230,184,103,80,193,141,2,0,232,184,159,243,145,241,3,0,237,56,157,66,210,208,2,0,240,248,67,9,87,125,3,0,241,56,58,196,209,121,2,0,242,120,193,155,200,30,4,0,245,248,78,143,65,125,2,0,246,184,116,106,57,78,2,0,247,56,4,121,8,42,2,0,247,248,10,143,60,229,2,0,6,185,57,86,247,87,2,0,7,185,48,49,77,28,3,0,9,121,108,60,165,78,3,0,9,57,230,36,187,95,4,0,12,249,234,17,254,0,3,0,12,249,210,188,202,31,4,0,14,121,153,86,237,39,4,0,14,121,192,57,158,130,4,0,25,121,96,236,0,28,2,0,27,249,72,23,245,4,2,0,27,57,35,241,125,193,3,0,31,57,228,124,104,215,3,0,32,57,41,162,24,5,3,0,37,249,52,134,229,37,3,0,40,121,63,150,254,239,2,0,41,121,84,108,142,5,3,0,45,249,205,3,90,60,3,0,45,57,93,148,65,153,4,0,47,249,147,40,239,6,4,0,48,121,169,61,67,133,4,0,50,57,31,40,108,133,4,0,52,57,81,134,98,199,2,0,53,185,203,56,228,46,4,0,56,57,241,181,78,52,4,0,57,249,96,102,76,208,3,0,58,185,80,5,35,3,4,0,61,121,118,90,180,25,2,0,63,249,235,90,198,29,2,0,64,121,167,103,115,153,4,0,67,57,134,202,38,109,2,0,67,121,130,161,244,100,4,0,70,121,19,192,187,198,2,0,70,249,127,2,61,101,3,0,72,185,220,231,30,122,3,0,75,185,186,44,145,34,2,0,75,185,154,243,255,110,3,0,75,249,125,123,20,46,4,0,78,249,141,67,72,14,3,0,79,57,31,21,126,93,4,0,80,57,186,20,242,203,2,0,80,121,55,239,211,134,4,0,86,121,121,177,216,80,4,0,92,249,85,114,246,5,2,0,93,57,172,220,166,165,4,0,99,121,19,192,172,198,2,0,103,249,55,41,43,8,2,0,103,121,197,66,17,180,2,0,110,185,176,157,103,47,4,0,111,185,124,168,188,144,3,0,113,185,212,198,176,138,3,0,114,57,112,203,226,42,3,0,117,185,225,151,153,17,3,0,129,121,246,221,2,153,2,0,132,185,230,33,105,29,4,0,133,121,232,28,233,7,2,0,136,57,105,64,192,28,4,0,137,121,110,181,235,124,3,0,137,57,242,228,230,149,4,0,140,185,177,188,217,251,2,0,143,121,18,175,148,140,3,0,146,121,119,116,57,186,2,0,147,121,124,6,221,141,3,0,147,121,33,97,215,49,4,0,148,121,151,192,145,26,3,0,148,185,243,39,94,139,3,0,150,249,2,133,224,77,4,0,151,57,186,239,217,108,2,0,154,121,226,92,194,114,3,0,156,121,30,56,10,94,2,0,156,249,47,89,253,226,3,0,159,185,251,227,9,40,2,0,159,185,147,115,77,105,3,0,160,249,41,90,172,99,3,0,160,249,86,64,239,13,4,0,161,57,37,29,180,121,3,0,161,249,138,106,194,89,4,0,162,185,28,7,206,117,2,0,165,249,8,2,87,112,3,0,176,185,37,119,22,60,4,0,182,185,78,166,224,180,4,0,184,185,196,111,58,161,2,0,185,185,86,26,137,96,3,0,186,249,239,147,49,137,3,0,187,57,226,69,228,223,3,0,192,249,90,47,61,1,4,0,193,121,220,77,252,47,2,0,193,57,86,100,87,50,4,0,194,121,18,179,21,112,2,0,195,185,193,181,183,11,3,0,197,57,102,149,218,126,4,0,198,185,72,4,5,22,3,0,200,121,252,223,67,135,4,0,201,185,40,189,234,74,2,0,201,57,136,163,25,120,3,0,203,121,171,72,68,100,3,0,203,185,55,238,140,162,3,0,204,185,179,129,53,124,3,0,204,57,140,48,59,82,4,0,207,249,172,51,120,119,3,0,210,185,103,144,23,167,2,0,210,185,88,208,245,54,4,0,211,121,113,250,61,17,2,0,212,121,59,184,116,51,3,0,213,185,228,115,23,228,3,0,216,121,41,21,67,92,3,0,222,57,154,165,219,21,4,0,227,185,151,157,64,69,4,0,228,185,239,50,176,139,3,0,230,57,199,117,115,107,3,0,230,185,98,90,84,124,4,0,231,57,16,251,136,44,4,0,231,121,251,254,133,75,4,0,231,57,230,142,49,173,4,0,237,185,29,62,179,184,3,0,239,57,139,164,216,53,4,0,240,185,131,233,3,149,2,0,241,57,203,13,185,171,2,0,246,121,230,82,5,209,3,0,247,121,120,12,88,153,3,0,249,185,99,169,207,80,2,0,249,249,160,61,170,165,3,0,251,185,134,83,89,129,4,0,253,185,172,78,226,95,2,0,255,185,16,196,97,85,4,0,2,250,230,191,121,126,3,0,2,186,94,39,10,45,4,0,6,250,52,20,188,81,2,0,6,58,95,249,81,111,4,0,8,250,216,66,83,250,2,0,9,122,168,221,101,143,4,0,12,250,202,22,157,5,4,0,17,122,120,214,246,43,3,0,18,250,217,117,226,102,2,0,21,250,24,70,168,86,3,0,24,186,8,199,47,115,2,0,27,58,205,131,105,110,2,0,27,122,18,98,79,119,2,0,29,58,177,176,67,202,2,0,31,186,82,80,177,126,3,0,32,122,45,193,196,63,3,0,35,186,98,225,245,253,3,0,37,250,185,184,247,123,4,0,39,186,43,213,9,181,4,0,42,186,7,100,14,77,2,0,45,250,18,137,91,129,3,0,47,58,113,29,227,189,3,0,52,122,59,184,39,52,3,0,53,250,20,81,56,93,3,0,53,186,21,66,149,35,4,0,54,58,76,55,50,28,2,0,61,250,247,86,235,107,2,0,66,122,122,33,34,46,3,0,69,186,20,249,6,163,3,0,71,58,156,85,249,94,4,0,73,250,231,157,143,49,4,0,75,58,228,175,3,78,3,0,80,250,161,184,32,116,2,0,82,186,139,20,26,95,3,0,83,122,150,129,216,151,4,0,84,186,188,229,233,132,3,0,85,58,8,248,155,152,2,0,87,250,96,213,131,178,2,0,88,186,81,43,253,255,3,0,95,58,116,1,91,53,2,0,95,186,90,226,187,15,3,0,96,250,171,167,252,116,3,0,97,122,76,81,208,219,2,0,98,186,160,214,127,170,3,0,98,122,32,192,20,249,3,0,102,250,245,73,122,183,4,0,105,122,224,18,119,211,2,0,105,186,157,189,189,239,2,0,105,250,243,210,201,64,4,0,107,250,46,147,35,91,2,0,107,58,18,138,167,75,3,0,111,58,24,114,239,1,3,0,114,122,74,193,218,226,2,0,115,250,45,241,100,5,3,0,116,122,129,130,143,69,4,0,116,122,147,9,66,84,4,0,117,122,133,64,203,69,4,0,120,58,48,144,211,165,3,0,120,58,185,242,180,138,4,0,130,250,164,155,141,13,2,0,135,186,216,199,244,51,4,0,136,122,211,179,195,85,3,0,137,186,105,42,134,27,2,0,137,122,246,130,254,30,4,0,137,250,232,22,156,76,4,0,143,122,237,9,136,250,3,0,147,58,135,222,88,126,4,0,149,250,107,158,245,194,3,0,150,186,195,109,118,27,3,0,150,186,222,214,52,51,4,0,154,250,69,212,145,2,3,0,154,250,167,131,228,107,3,0,155,122,172,28,186,173,3,0,155,122,133,17,241,207,3,0,156,250,202,126,81,204,3,0,156,250,237,81,208,54,4,0,158,250,236,131,115,120,2,0,161,186,62,219,86,11,2,0,161,186,94,203,78,44,2,0,163,122,92,182,21,97,3,0,163,186,115,49,209,52,4,0,163,122,245,168,137,86,4,0,166,122,75,60,20,58,2,0,168,58,171,7,229,67,3,0,176,122,13,192,92,212,2,0,178,186,191,116,174,114,4,0,180,186,14,13,116,61,2,0,187,250,104,63,82,234,2,0,190,122,130,235,203,125,2,0,191,250,133,168,180,152,2,0,193,250,124,53,234,46,3,0,193,122,23,200,216,159,4,0,197,250,91,201,34,238,2,0,200,58,51,182,53,54,4,0,208,186,47,243,3,116,3,0,209,58,0,28,242,22,3,0,209,58,216,189,222,98,4,0,211,186,87,195,100,190,2,0,214,250,69,178,136,108,2,0,215,122,76,234,120,246,2,0,218,58,73,50,237,158,4,0,221,58,179,172,130,86,2,0,222,58,197,51,92,199,3,0,223,122,44,224,246,114,2,0,224,250,240,237,226,79,3,0,224,122,211,130,54,23,4,0,226,250,163,26,174,93,4,0,227,58,125,160,210,141,2,0,227,186,245,198,91,24,3,0,233,122,145,6,0,19,4,0,238,122,109,112,85,186,3,0,238,122,38,76,191,120,4,0,240,186,231,63,0,244,3,0,246,186,144,40,151,110,2,0,246,122,67,253,82,174,4,0,247,58,159,181,23,219,2,0,248,186,236,145,13,55,3,0,248,250,127,98,255,248,3,0,251,58,149,188,162,24,2,0,254,58,67,83,177,114,2,0,1,187,48,112,132,29,2,0,3,251,190,247,119,157,3,0,13,59,96,23,243,141,3,0,15,59,57,106,172,111,4,0,19,187,160,145,148,236,3,0,19,59,248,231,210,108,4,0,22,251,76,147,100,168,4,0,24,251,64,134,115,98,3,0,27,123,190,57,42,126,4,0,30,59,220,12,242,100,3,0,30,187,203,211,50,88,4,0,33,251,216,196,12,183,3,0,34,123,5,253,37,249,2,0,37,251,37,150,91,10,2,0,43,59,86,149,190,216,3,0,43,251,202,134,171,22,4,0,49,59,111,165,64,187,2,0,52,123,36,31,208,42,4,0,52,59,159,18,230,112,4,0,54,59,191,238,91,85,2,0,55,123,121,215,80,223,2,0,56,251,171,205,11,87,4,0,58,251,101,91,127,115,2,0,60,123,92,232,147,233,3,0,62,187,49,81,99,255,2,0,63,251,138,112,203,218,3,0,64,251,36,156,2,237,2,0,64,59,208,47,149,84,4,0,66,59,110,134,186,102,3,0,66,59,208,47,134,84,4,0,67,59,3,71,102,79,3,0,71,59,208,47,162,84,4,0,73,59,78,178,204,234,3,0,73,187,119,216,32,59,4,0,79,187,125,188,195,110,3,0,84,187,61,196,241,55,3,0,86,59,9,46,20,117,2,0,86,251,24,39,41,196,2,0,86,59,117,129,48,142,3,0,89,59,83,33,150,133,4,0,89,251,108,192,217,133,4,0,92,123,106,170,95,30,3,0,93,187,175,145,250,179,2,0,94,123,47,238,43,187,2,0,95,59,153,181,47,219,2,0,97,123,198,104,142,127,2,0,104,187,26,225,103,131,3,0,105,187,93,212,147,107,2,0,105,187,109,10,212,35,4,0,106,187,104,169,98,84,4,0,114,251,74,172,212,9,2,0,122,187,140,243,119,96,2,0,124,251,226,123,193,79,2,0,124,123,20,150,166,36,4,0,126,187,16,43,159,196,2,0,128,251,37,150,24,11,2,0,128,251,122,148,229,14,4,0,130,251,50,176,73,206,3,0,131,251,35,178,65,36,2,0,131,187,204,47,231,176,4,0,134,123,183,250,193,117,4,0,136,59,200,114,167,34,2,0,136,59,54,121,127,73,4,0,137,123,52,30,186,39,2,0,137,251,147,227,43,65,4,0,138,59,138,238,152,10,2,0,139,123,138,75,247,205,3,0,142,251,111,49,37,203,2,0,145,59,25,54,48,86,2,0,145,59,108,143,237,205,2,0,147,59,83,120,210,100,4,0,149,187,132,201,41,35,4,0,150,59,251,53,175,113,3,0,151,123,54,130,163,1,2,0,152,187,119,110,202,55,2,0,157,251,121,108,114,161,3,0,158,59,154,166,91,112,2,0,158,251,237,56,208,214,2,0,158,59,51,39,20,108,3,0,158,251,251,121,0,165,4,0,159,187,94,115,117,3,2,0,161,123,72,134,71,46,3,0,161,187,48,141,78,157,4,0,163,251,224,182,71,79,2,0,163,59,167,83,136,245,3,0,167,59,42,231,10,119,3,0,168,187,26,177,36,216,2,0,169,123,131,127,228,86,2,0,169,251,187,222,76,95,3,0,178,123,129,215,242,175,3,0,179,187,64,210,97,82,4,0,184,123,254,82,186,57,2,0,189,59,79,29,239,192,2,0,192,123,185,213,9,158,2,0,193,123,232,82,163,247,3,0,195,123,222,105,107,238,2,0,199,251,251,168,131,84,3,0,201,59,24,81,120,79,3,0,203,123,227,57,198,212,2,0,207,59,27,11,78,138,4,0,207,59,197,219,130,152,4,0,208,251,91,219,28,248,3,0,209,187,91,172,247,9,2,0,210,187,163,234,10,163,4,0,212,187,51,201,40,176,4,0,213,251,143,16,62,152,2,0,214,123,31,14,41,175,2,0,215,251,193,115,133,65,4,0,217,187,193,20,192,53,4,0,218,59,99,2,43,134,4,0,219,187,213,214,217,74,3,0,219,187,65,231,184,94,3,0,222,187,239,115,104,131,2,0,222,123,13,12,96,21,4,0,223,59,31,12,69,121,3,0,224,123,250,193,100,220,2,0,225,251,21,19,234,93,4,0,229,59,48,42,242,1,4,0,232,187,2,94,32,26,2,0,234,59,24,192,22,169,2,0,236,123,27,31,55,223,2,0,239,187,211,132,107,106,2,0,240,59,189,109,6,242,2,0,241,123,173,203,156,183,4,0,242,59,245,46,113,160,2,0,243,123,223,168,219,144,2,0,243,187,18,156,66,116,3,0,245,251,7,134,126,39,2,0,245,187,43,1,167,96,2,0,247,59,111,9,5,225,3,0,247,59,223,22,97,167,4,0,249,123,131,146,187,120,3,0,253,251,80,182,153,235,3,0,253,123,62,228,32,178,4,0,255,251,47,81,166,4,3,0,4,60,67,117,39,207,3,0,10,60,100,32,45,26,2,0,10,188,164,186,216,205,2,0,11,124,218,197,200,168,3,0,16,188,30,81,178,21,4,0,17,252,78,109,48,156,4,0,18,252,20,25,228,23,3,0,18,124,105,131,226,246,3,0,18,60,116,206,140,128,4,0,21,252,93,151,167,224,2,0,22,124,101,68,179,97,3,0,22,188,209,81,63,230,3,0,30,124,61,100,120,216,3,0,36,60,14,37,15,96,4,0,37,188,84,244,46,127,2,0,39,60,24,192,60,169,2,0,41,124,191,230,128,6,4,0,47,252,60,22,253,242,3,0,48,124,235,100,124,139,2,0,49,60,124,117,235,196,2,0,50,60,124,176,125,159,2,0,51,124,109,254,10,133,4,0,53,60,27,241,106,225,2,0,59,188,17,81,248,172,2,0,64,188,134,208,133,116,2,0,70,60,213,179,125,9,3,0,70,188,202,157,136,8,4,0,71,188,92,69,198,224,3,0,72,188,186,56,5,90,4,0,73,60,12,16,88,133,2,0,90,124,70,126,23,37,3,0,95,252,139,115,105,189,2,0,97,60,113,222,14,182,2,0,99,60,163,129,213,58,4,0,101,252,27,73,60,138,2,0,101,124,11,247,112,224,3,0,102,252,159,214,132,63,2,0,103,188,204,94,222,172,2,0,110,124,153,193,14,199,3,0,112,252,180,166,107,119,2,0,112,60,247,218,43,116,4,0,113,124,162,186,46,108,3,0,113,188,237,195,17,146,4,0,116,252,148,253,142,229,2,0,117,252,128,176,6,43,2,0,117,188,106,40,177,35,4,0,119,188,3,62,114,121,4,0,120,60,21,192,54,203,2,0,123,252,155,74,145,91,3,0,126,124,150,165,7,37,4,0,127,188,35,12,140,187,2,0,129,188,58,148,92,156,2,0,130,188,23,52,17,68,3,0,134,124,161,94,182,163,3,0,135,124,76,81,41,193,2,0,136,60,49,194,239,227,2,0,139,124,204,154,104,112,2,0,139,60,93,218,140,232,3,0,143,188,51,53,109,156,3,0,144,60,124,219,185,233,3,0,150,252,133,38,5,33,3,0,151,252,116,122,174,161,4,0,152,60,155,114,217,166,2,0,152,60,213,100,132,112,4,0,153,124,175,19,153,120,3,0,154,252,73,68,87,15,2,0,154,124,3,125,215,190,3,0,154,60,109,215,194,35,4,0,155,252,45,117,64,112,4,0,156,252,53,8,205,68,2,0,162,188,38,165,60,238,2,0,167,60,180,131,138,109,3,0,171,60,0,219,34,129,3,0,173,60,165,0,107,212,2,0,178,188,99,26,8,173,4,0,183,252,184,37,2,222,2,0,183,124,172,183,76,181,4,0,184,252,182,144,125,127,2,0,188,188,153,119,184,1,2,0,188,60,225,219,243,234,3,0,190,188,236,189,174,246,2,0,194,188,200,134,74,68,3,0,194,188,100,57,254,87,4,0,196,60,234,14,118,5,3,0,203,60,196,226,40,175,3,0,204,124,130,124,78,42,2,0,206,124,205,224,35,154,2,0,207,252,61,71,114,23,4,0,208,60,27,188,164,173,3,0,210,124,47,253,50,18,3,0,215,60,93,219,64,94,2,0,218,252,77,255,233,219,3,0,224,188,194,86,72,134,3,0,225,124,15,93,159,203,2,0,227,60,153,160,105,83,2,0,228,252,72,14,159,237,3,0,229,60,49,4,240,103,2,0,229,60,205,189,188,242,2,0,231,252,121,119,214,157,4,0,232,124,73,148,46,54,2,0,232,252,16,167,212,56,3,0,233,124,170,140,35,87,2,0,238,188,251,2,155,24,3,0,241,252,139,152,41,224,3,0,243,124,134,24,211,175,3,0,246,60,21,141,94,196,3,0,247,252,220,163,186,41,3,0,248,252,154,148,71,164,2,0,250,124,176,229,199,174,2,0,251,60,124,227,99,197,3,0,253,252,86,26,120,96,3,0,0,125,5,46,249,152,4,0,1,253,188,247,72,50,3,0,2,61,216,12,2,241,3,0,5,189,83,157,175,39,4,0,6,253,131,188,131,7,4,0,7,189,219,47,85,100,3,0,10,61,125,30,44,90,2,0,10,61,154,213,68,93,2,0,11,61,50,35,160,19,3,0,12,125,104,117,96,50,3,0,15,61,120,89,171,103,4,0,19,61,66,175,197,70,2,0,20,61,84,206,70,82,3,0,22,253,16,43,44,197,2,0,23,253,118,34,40,11,2,0,23,253,237,43,49,110,4,0,25,125,226,220,4,156,2,0,32,61,3,216,200,32,2,0,33,61,139,41,4,7,4,0,36,189,39,81,211,19,3,0,36,253,239,242,163,121,3,0,37,253,235,105,239,147,2,0,39,61,100,28,115,123,4,0,41,125,197,128,168,73,4,0,41,61,9,89,255,90,4,0,43,125,241,204,74,27,2,0,43,253,149,117,48,128,2,0,43,189,230,255,210,173,2,0,44,189,150,233,45,9,4,0,44,189,150,233,66,9,4,0,44,189,150,233,90,9,4,0,45,253,154,128,152,155,4,0,50,189,223,12,185,35,3,0,55,253,107,44,214,127,2,0,56,253,52,10,103,56,2,0,56,61,39,3,113,71,2,0,58,125,106,17,252,52,2,0,62,189,68,23,81,65,3,0,63,125,82,234,9,125,3,0,64,61,185,9,237,87,3,0,64,125,120,104,107,142,3,0,64,61,223,52,103,164,3,0,64,61,116,178,111,222,3,0,65,189,73,18,86,85,3,0,66,61,105,78,165,4,2,0,67,253,15,32,233,118,3,0,69,61,233,183,81,143,4,0,71,61,48,143,54,198,3,0,72,189,208,233,246,232,3,0,73,189,219,189,179,104,3,0,80,61,34,166,251,120,3,0,85,189,123,129,127,209,2,0,88,61,6,112,91,64,2,0,90,253,220,152,77,59,3,0,90,61,17,95,217,239,3,0,91,189,45,46,231,3,2,0,91,189,30,57,1,42,3,0,92,253,172,14,113,53,3,0,92,189,19,177,44,29,4,0,94,61,20,177,236,16,2,0,94,189,154,85,148,180,4,0,95,253,187,92,47,102,2,0,95,189,173,85,224,174,3,0,98,189,227,75,41,14,4,0,101,61,86,138,135,82,2,0,103,61,84,206,52,82,3,0,108,253,170,110,32,137,3,0,111,61,241,106,31,39,4,0,112,61,164,155,63,9,2,0,116,61,101,6,129,213,2,0,118,189,39,92,14,93,3,0,118,125,192,7,186,1,4,0,123,61,6,66,37,251,2,0,124,253,176,142,158,82,2,0,124,189,68,27,91,95,3,0,125,61,217,53,22,207,2,0,126,125,71,227,206,119,2,0,128,61,191,83,105,220,3,0,130,61,22,156,177,209,2,0,130,61,132,74,191,76,4,0,131,253,54,11,40,70,4,0,134,125,241,238,83,155,4,0,137,253,7,82,225,41,4,0,139,189,76,81,28,171,2,0,139,61,122,49,6,203,2,0,140,253,7,30,70,255,3,0,144,253,205,253,141,148,2,0,146,125,66,119,5,103,3,0,146,253,205,83,247,56,4,0,147,253,207,125,20,196,3,0,152,125,113,131,48,53,3,0,152,253,252,75,225,72,4,0,153,125,0,13,39,130,3,0,154,61,158,119,189,123,2,0,156,189,108,207,30,56,4,0,156,125,212,176,85,151,4,0,161,61,173,20,27,14,2,0,161,61,144,119,234,56,4,0,165,61,40,163,36,81,3,0,166,125,9,33,80,188,2,0,166,189,215,134,134,167,4,0,167,253,130,4,150,144,3,0,168,125,35,5,113,97,2,0,170,61,61,158,55,220,3,0,171,125,10,47,213,103,4,0,177,189,225,128,211,53,3,0,178,61,60,112,199,201,3,0,179,253,208,2,170,10,3,0,179,253,70,232,104,23,3,0,180,253,209,188,200,87,4,0,182,189,127,171,80,38,4,0,185,189,88,85,160,14,3,0,186,61,196,22,96,77,3,0,187,189,140,176,205,144,4,0,188,125,153,203,187,161,3,0,192,61,208,19,119,31,3,0,192,189,22,229,167,140,3,0,192,189,21,9,95,170,3,0,197,253,111,195,135,246,3,0,204,125,14,199,132,156,3,0,209,125,123,184,170,81,3,0,210,189,46,54,17,113,3,0,212,189,164,65,186,10,3,0,212,253,209,73,21,216,3,0,213,189,41,188,24,2,3,0,218,189,148,211,227,120,3,0,218,189,71,66,193,132,3,0,218,189,193,106,179,81,4,0,221,253,231,113,205,110,2,0,223,253,86,67,171,95,2,0,224,61,33,158,31,171,4,0,227,61,127,199,145,49,2,0,230,253,201,175,125,133,4,0,234,189,170,185,84,75,3,0,236,253,226,235,139,207,2,0,237,189,77,158,120,230,2,0,239,253,211,225,72,110,2,0,242,253,147,112,138,130,2,0,244,61,96,143,255,210,2,0,245,125,113,185,248,182,3,0,245,61,74,69,112,228,3,0,246,189,99,54,177,183,2,0,246,189,45,168,109,37,4,0,247,253,162,112,10,133,3,0,251,125,237,25,197,52,3,0,251,61,116,89,12,184,3,0,253,61,100,18,237,186,4,0,6,254,173,174,52,139,2,0,8,126,252,214,100,111,3,0,10,190,66,28,210,158,4,0,11,126,158,119,138,8,2,0,11,62,102,81,18,9,2,0,15,126,211,142,228,11,3,0,16,254,201,203,165,5,2,0,17,254,4,100,131,24,4,0,20,190,64,185,1,38,3,0,20,126,30,253,67,81,4,0,24,126,179,91,75,79,4,0,29,254,99,126,110,170,3,0,29,126,62,58,42,251,3,0,30,126,66,157,192,103,2,0,32,126,21,249,47,116,2,0,32,190,196,210,68,240,2,0,33,254,51,53,133,80,2,0,37,254,164,119,96,70,3,0,41,254,81,92,68,152,4,0,46,126,243,3,138,42,4,0,49,254,70,243,104,18,3,0,49,126,47,232,128,2,4,0,50,126,80,43,163,206,2,0,51,126,84,116,8,27,4,0,55,62,16,225,40,127,3,0,56,190,95,12,227,121,2,0,56,62,121,236,35,177,3,0,58,126,169,84,184,107,4,0,59,254,59,75,224,104,2,0,62,62,230,24,65,171,3,0,63,62,182,46,9,20,2,0,64,190,78,89,182,60,4,0,67,126,37,81,246,31,3,0,74,62,107,174,133,36,2,0,75,190,97,146,145,3,4,0,77,62,27,117,219,39,3,0,77,126,90,47,199,146,3,0,78,254,184,200,234,129,4,0,80,254,157,227,230,33,3,0,81,254,175,179,133,77,3,0,84,62,27,104,168,65,2,0,94,62,149,194,24,168,4,0,95,62,174,120,212,56,4,0,103,254,32,181,36,150,2,0,106,190,178,136,24,200,2,0,108,126,59,184,95,54,3,0,113,126,138,83,143,228,2,0,113,190,102,76,19,241,3,0,116,254,169,98,215,131,2,0,116,62,108,17,42,228,3,0,118,254,58,152,142,168,3,0,119,254,93,82,81,216,3,0,120,62,232,173,102,155,4,0,124,62,112,160,143,156,2,0,125,62,36,34,96,71,4,0,128,126,37,176,208,40,3,0,129,254,255,188,204,232,3,0,130,126,161,113,42,113,2,0,140,190,114,78,24,37,2,0,142,254,231,57,80,210,2,0,142,62,197,15,243,63,4,0,145,126,210,160,248,82,3,0,145,62,8,95,140,214,3,0,147,62,209,181,161,126,2,0,147,190,158,160,178,57,3,0,149,126,210,21,62,181,4,0,150,62,176,66,123,38,2,0,151,190,78,202,177,147,4,0,151,62,59,28,213,149,4,0,153,190,26,84,241,252,3,0,153,190,188,48,47,101,4,0,154,254,113,110,154,222,2,0,155,126,134,184,113,33,4,0,157,126,247,50,215,115,4,0,162,62,244,86,220,114,2,0,162,254,208,32,175,43,4,0,162,62,175,107,170,69,4,0,163,62,229,229,25,160,2,0,163,62,45,22,49,12,3,0,165,254,21,122,17,249,2,0,168,190,52,244,194,156,4,0,170,254,106,255,137,71,4,0,173,254,77,163,150,128,3,0,174,62,149,155,236,170,2,0,175,254,43,95,138,61,2,0,175,126,178,186,13,12,3,0,175,126,122,151,235,135,4,0,181,190,172,240,1,57,3,0,186,62,123,25,209,5,3,0,192,254,179,253,46,26,3,0,192,254,80,0,187,27,4,0,193,254,42,48,60,57,3,0,194,62,114,252,66,35,2,0,197,62,169,163,157,125,3,0,198,254,187,219,193,138,3,0,200,254,137,250,162,89,2,0,200,190,192,148,24,121,2,0,200,126,206,177,86,68,4,0,204,254,73,51,246,132,2,0,206,126,129,232,215,217,3,0,207,190,239,239,235,136,3,0,208,126,255,30,244,38,2,0,211,190,228,228,41,24,4,0,214,254,196,190,226,84,4,0,217,190,56,79,195,87,2,0,218,62,224,247,210,224,2,0,218,254,170,143,237,84,3,0,219,254,190,68,108,75,4,0,220,254,239,18,168,86,2,0,225,190,234,201,1,168,2,0,225,126,221,11,52,180,4,0,226,62,90,170,17,150,2,0,227,254,229,139,52,84,2,0,230,254,251,194,136,210,2,0,237,62,41,203,156,172,4,0,241,126,8,192,42,226,2,0,244,254,152,243,24,9,3,0,244,126,70,149,63,48,4,0,245,254,135,140,101,157,3,0,245,254,162,124,150,23,4,0,247,254,197,234,201,101,4,0,253,190,49,209,103,136,2,0,2,127,156,160,38,59,3,0,3,63,77,254,195,26,3,0,7,255,100,79,171,255,2,0,8,191,75,74,115,99,2,0,9,255,71,87,136,149,3,0,14,191,2,253,185,180,2,0,18,255,56,116,149,20,4,0,19,255,145,178,82,159,3,0,24,191,196,202,67,113,4,0,29,255,249,179,110,19,3,0,30,255,47,208,7,146,2,0,31,63,29,47,170,133,2,0,32,127,111,44,163,135,2,0,36,63,94,246,201,17,2,0,37,255,24,242,87,3,2,0,39,255,136,126,237,142,2,0,42,63,168,172,142,18,2,0,45,255,93,242,5,137,4,0,46,127,144,131,96,135,3,0,49,255,147,190,186,238,3,0,50,255,130,208,18,144,2,0,51,191,168,143,49,147,4,0,54,255,185,208,69,3,3,0,55,191,150,137,8,89,3,0,59,127,74,67,129,169,2,0,62,191,41,244,251,135,4,0,64,127,164,186,132,204,2,0,64,255,107,197,182,211,3,0,65,191,101,144,156,150,2,0,67,127,124,69,118,253,2,0,68,255,229,12,126,75,3,0,68,127,164,190,36,158,3,0,70,255,119,150,76,81,2,0,70,191,161,61,106,154,2,0,70,191,90,2,56,170,2,0,71,127,57,109,27,90,3,0,72,191,241,10,23,18,2,0,72,127,105,7,116,141,2,0,72,63,31,81,91,35,3,0,77,255,110,163,228,158,3,0,78,127,161,91,0,105,4,0,79,191,214,50,155,193,3,0,82,127,134,37,92,206,3,0,84,255,187,173,27,164,2,0,85,255,87,58,5,122,2,0,86,255,243,66,165,141,2,0,87,127,154,114,36,131,4,0,91,255,84,255,104,232,2,0,93,255,0,140,99,205,2,0,93,63,102,110,143,161,3,0,94,63,13,18,111,173,3,0,94,191,84,217,83,225,3,0,95,191,133,220,220,70,2,0,97,63,123,49,246,209,2,0,103,191,188,168,81,245,2,0,105,191,226,28,214,140,3,0,105,63,200,30,145,158,4,0,106,255,205,189,49,246,2,0,106,127,33,9,166,124,3,0,108,255,207,47,175,50,4,0,108,255,207,47,193,50,4,0,112,255,49,83,87,237,3,0,116,127,93,248,253,126,4,0,118,191,108,27,1,124,2,0,119,127,218,224,168,49,3,0,119,127,83,76,85,211,3,0,120,127,124,6,118,175,3,0,122,63,31,93,32,6,2,0,124,255,250,42,15,153,2,0,131,191,89,81,35,111,2,0,132,63,74,69,217,38,4,0,134,63,98,23,74,158,4,0,136,63,245,239,200,227,3,0,139,255,94,173,74,129,3,0,143,127,47,194,255,227,2,0,145,191,19,252,156,168,3,0,147,191,44,115,85,246,2,0,148,191,32,2,81,161,4,0,151,255,105,120,230,43,2,0,155,63,81,225,13,179,3,0,155,255,172,251,47,155,4,0,156,127,100,79,190,3,4,0,156,255,161,164,198,122,4,0,161,63,48,188,113,255,2,0,162,127,241,47,90,120,4,0,163,191,42,86,251,16,3,0,163,63,38,72,82,92,4,0,172,63,20,178,45,1,2,0,174,255,191,65,187,176,3,0,175,127,2,48,24,30,4,0,176,127,64,250,235,142,4,0,178,127,243,192,243,54,3,0,180,63,123,49,62,206,2,0,180,63,123,49,85,206,2,0,180,63,123,49,118,206,2,0,180,63,123,49,142,206,2,0,180,191,178,134,124,68,3,0,183,191,64,255,0,246,3,0,184,127,101,157,60,121,2,0,188,191,158,122,94,62,3,0,188,191,148,223,110,92,4,0,190,255,77,91,18,66,2,0,198,255,185,162,177,65,4,0,202,127,236,225,74,49,3,0,202,63,193,204,22,123,4,0,203,127,111,237,210,167,4,0,204,63,177,45,138,173,2,0,204,191,208,104,32,32,4,0,205,191,207,132,145,28,2,0,207,191,117,250,74,130,4,0,209,191,201,34,184,108,4,0,212,255,208,183,78,104,2,0,212,127,20,172,80,77,3,0,214,63,79,227,133,73,2,0,214,255,126,186,226,82,2,0,214,255,224,147,188,155,3,0,215,127,26,12,11,145,2,0,218,255,136,106,227,137,2,0,219,63,12,43,107,10,2,0,223,191,132,5,211,186,3,0,225,127,230,6,94,108,3,0,225,191,209,177,26,233,3,0,227,191,20,72,76,233,3,0,228,63,242,115,83,247,2,0,228,127,94,173,154,84,3,0,229,255,179,240,224,252,3,0,231,191,138,171,201,175,2,0,231,127,64,17,111,101,4,0,232,255,82,242,195,245,2,0,232,191,225,6,56,250,2,0,237,255,107,197,40,212,3,0,239,127,85,27,60,248,2,0,240,255,220,147,51,50,4,0,241,127,106,1,180,21,2,0,242,127,250,193,116,220,2,0,242,191,121,91,227,5,4,0,244,255,91,37,16,248,2,0,251,191,66,224,8,5,4,0,252,191,74,1,138,106,3,0,254,191,48,115,255,89,2,0,254,191,206,196,215,156,3,0,8,0,33,46,45,45,102,114,97,109,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,16,46,45,97,99,116,105,118,101,46,99,111,111,107,105,101,115,8,0,19,46,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,14,46,45,115,45,99,111,111,107,105,101,45,98,97,114,8,0,21,46,45,115,104,111,119,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,8,0,17,46,65,53,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,33,46,65,66,84,97,115,116,121,80,108,117,103,105,110,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,8,0,18,46,65,80,95,109,111,100,45,98,109,45,99,111,111,107,105,101,115,8,0,18,46,65,87,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,19,46,65,99,99,101,112,116,67,111,111,107,105,101,45,70,105,120,101,100,8,0,24,46,65,99,99,101,112,116,67,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,25,46,65,99,99,101,112,116,67,111,111,107,105,101,115,77,111,100,117,108,101,80,111,112,85,112,8,0,25,46,65,103,114,101,101,109,101,110,116,66,97,110,110,101,114,95,95,119,114,97,112,112,101,114,8,0,22,46,65,110,97,108,121,116,105,99,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,13,46,65,118,105,115,111,67,111,111,107,105,101,115,8,0,14,46,65,118,105,115,111,95,99,111,111,107,105,101,115,8,0,18,46,66,97,110,100,101,97,117,67,111,111,107,105,101,71,108,111,98,8,0,25,46,66,97,110,110,101,114,80,114,105,118,97,99,121,73,110,102,111,114,109,97,116,105,111,110,8,0,27,46,66,108,111,103,72,101,97,100,101,114,95,95,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,14,46,66,111,114,108,97,98,115,67,111,111,107,105,101,8,0,18,46,67,50,49,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,67,67,80,65,66,97,110,110,101,114,8,0,16,46,67,67,99,111,111,107,105,101,119,97,114,110,105,110,103,8,0,24,46,67,73,110,102,111,91,100,97,116,97,45,99,111,111,107,105,101,45,105,110,102,111,93,8,0,11,46,67,76,97,119,66,97,110,110,101,114,8,0,5,46,67,78,73,76,8,0,12,46,67,79,49,49,95,99,111,111,107,105,101,8,0,10,46,67,79,79,75,73,69,45,105,116,8,0,22,46,67,79,79,75,73,69,67,79,78,83,69,78,84,95,66,65,78,68,69,65,85,8,0,13,46,67,79,79,75,73,69,78,79,84,73,67,69,8,0,11,46,67,79,79,75,73,69,95,66,79,88,8,0,20,46,67,79,79,75,73,69,95,80,82,73,86,65,67,89,95,67,79,78,84,8,0,20,46,67,79,79,75,73,69,95,85,83,65,71,69,95,65,67,67,69,80,84,8,0,19,46,67,84,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,16,46,67,95,67,111,111,107,105,101,95,80,111,108,105,99,121,8,0,13,46,67,97,105,120,97,67,111,111,107,105,101,115,8,0,8,46,67,101,114,101,122,80,112,8,0,24,46,67,110,105,108,67,111,111,107,105,101,115,67,111,110,102,105,114,109,97,116,105,111,110,8,0,19,46,67,110,105,108,67,111,111,107,105,101,115,87,97,114,110,105,110,103,8,0,11,46,67,111,67,104,79,117,116,66,111,120,8,0,36,46,67,111,109,109,111,110,45,80,114,105,118,97,99,121,45,72,101,97,100,101,114,67,111,111,107,105,101,115,77,101,115,115,97,103,101,8,0,41,46,67,111,109,112,111,110,101,110,116,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,61,34,67,111,111,107,105,101,70,111,111,116,101,114,34,93,8,0,14,46,67,111,110,67,111,111,107,105,101,73,110,102,111,8,0,24,46,67,111,110,102,105,114,109,67,111,111,107,105,101,77,101,115,115,97,103,101,66,111,120,8,0,12,46,67,111,110,115,101,110,116,72,105,110,116,8,0,13,46,67,111,110,115,101,110,116,80,97,110,101,108,8,0,21,46,67,111,110,115,101,110,116,101,100,67,111,111,107,105,101,66,108,111,99,107,8,0,22,46,67,111,110,115,101,110,116,115,66,97,110,110,101,114,79,118,101,114,108,97,121,8,0,19,46,67,111,110,116,97,105,110,101,114,45,45,99,111,111,107,105,101,115,8,0,17,46,67,111,110,116,97,105,110,101,114,67,111,111,107,105,101,115,8,0,26,46,67,111,110,116,114,111,108,67,111,111,107,105,101,115,45,97,108,101,114,116,45,115,104,111,119,8,0,13,46,67,111,111,107,105,101,45,45,98,97,115,101,8,0,15,46,67,111,111,107,105,101,45,45,98,111,116,116,111,109,8,0,12,46,67,111,111,107,105,101,45,45,105,98,101,8,0,15,46,67,111,111,107,105,101,45,67,111,110,115,101,110,116,8,0,21,46,67,111,111,107,105,101,45,67,111,110,115,101,110,116,45,45,115,104,111,119,8,0,11,46,67,111,111,107,105,101,45,98,97,114,8,0,21,46,67,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,108,111,99,107,8,0,25,46,67,111,111,107,105,101,45,110,111,116,105,99,101,95,95,99,111,110,116,97,105,110,101,114,8,0,26,46,67,111,111,107,105,101,65,99,99,101,112,116,73,109,97,103,101,68,105,118,67,108,97,115,115,8,0,18,46,67,111,111,107,105,101,65,99,99,101,112,116,76,97,121,101,114,8,0,18,46,67,111,111,107,105,101,65,99,99,101,112,116,80,97,110,101,108,8,0,17,46,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,8,0,24,46,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,87,114,97,112,112,101,114,8,0,31,46,67,111,111,107,105,101,65,99,107,110,111,119,108,100,101,103,101,109,101,110,116,67,111,110,116,97,105,110,101,114,8,0,16,46,67,111,111,107,105,101,65,103,114,101,101,109,101,110,116,8,0,14,46,67,111,111,107,105,101,65,112,112,114,111,118,101,8,0,13,46,67,111,111,107,105,101,66,97,110,110,101,114,8,0,14,46,67,111,111,107,105,101,66,97,110,110,101,114,50,8,0,16,46,67,111,111,107,105,101,66,97,110,110,101,114,68,105,118,8,0,17,46,67,111,111,107,105,101,66,97,110,110,101,114,79,102,77,119,8,0,17,46,67,111,111,107,105,101,66,97,110,110,101,114,79,102,80,99,8,0,10,46,67,111,111,107,105,101,66,97,114,8,0,17,46,67,111,111,107,105,101,66,97,114,87,114,97,112,112,101,114,8,0,19,46,67,111,111,107,105,101,66,97,114,95,95,87,114,97,112,112,101,114,8,0,12,46,67,111,111,107,105,101,66,97,120,71,114,8,0,10,46,67,111,111,107,105,101,66,111,120,8,0,10,46,67,111,111,107,105,101,66,116,110,8,0,14,46,67,111,111,107,105,101,67,104,101,99,107,101,114,8,0,22,46,67,111,111,107,105,101,67,104,111,105,99,101,67,111,110,116,97,105,110,101,114,8,0,17,46,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,8,0,26,46,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,67,111,110,116,97,105,110,101,114,8,0,31,46,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,67,111,110,116,97,105,110,101,114,45,118,101,105,108,8,0,24,46,67,111,111,107,105,101,67,111,110,115,101,110,116,45,67,111,110,116,97,105,110,101,114,8,0,36,46,67,111,111,107,105,101,67,111,110,115,101,110,116,45,87,114,97,112,112,101,114,45,66,97,99,107,103,114,111,117,110,100,66,111,120,8,0,24,46,67,111,111,107,105,101,67,111,110,115,101,110,116,45,102,105,114,115,116,105,110,102,111,8,0,22,46,67,111,111,107,105,101,67,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,18,46,67,111,111,107,105,101,67,111,110,115,101,110,116,65,114,101,97,8,0,20,46,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,8,0,23,46,67,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,8,0,18,46,67,111,111,107,105,101,67,111,110,115,101,110,116,77,101,109,111,8,0,21,46,67,111,111,107,105,101,67,111,110,115,101,110,116,79,118,101,114,108,97,121,8,0,20,46,67,111,111,107,105,101,67,111,110,115,101,110,116,95,95,104,111,115,116,8,0,16,46,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,20,46,67,111,111,107,105,101,67,111,110,116,114,111,108,66,97,110,110,101,114,8,0,23,46,67,111,111,107,105,101,68,105,114,101,99,116,105,118,101,68,105,115,112,108,97,121,8,0,22,46,67,111,111,107,105,101,68,105,114,101,99,116,105,118,101,72,101,105,103,104,116,8,0,17,46,67,111,111,107,105,101,68,105,115,99,108,111,115,117,114,101,8,0,10,46,67,111,111,107,105,101,68,105,118,8,0,14,46,67,111,111,107,105,101,69,66,117,116,116,111,110,8,0,11,46,67,111,111,107,105,101,72,105,110,116,8,0,14,46,67,111,111,107,105,101,73,110,102,111,66,97,114,8,0,16,46,67,111,111,107,105,101,73,110,102,111,80,97,110,101,108,8,0,15,46,67,111,111,107,105,101,73,110,102,111,84,101,120,116,8,0,18,46,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,8,0,27,46,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,67,111,110,116,97,105,110,101,114,8,0,17,46,67,111,111,107,105,101,76,97,119,87,114,97,112,112,101,114,8,0,12,46,67,111,111,107,105,101,76,97,121,101,114,8,0,13,46,67,111,111,107,105,101,76,97,121,111,117,116,8,0,14,46,67,111,111,107,105,101,77,101,115,115,97,103,101,8,0,17,46,67,111,111,107,105,101,77,101,115,115,97,103,101,68,105,118,8,0,17,46,67,111,111,107,105,101,77,111,110,115,116,101,114,66,111,120,8,0,10,46,67,111,111,107,105,101,77,115,103,8,0,11,46,67,111,111,107,105,101,78,111,116,101,8,0,13,46,67,111,111,107,105,101,78,111,116,105,99,101,8,0,20,46,67,111,111,107,105,101,78,111,116,105,99,101,45,68,114,97,119,101,114,8,0,19,46,67,111,111,107,105,101,78,111,116,105,99,101,66,97,110,110,101,114,8,0,22,46,67,111,111,107,105,101,78,111,116,105,99,101,67,111,110,116,97,105,110,101,114,8,0,19,46,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,23,46,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,8,0,24,46,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,80,111,112,85,112,8,0,25,46,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,84,111,112,66,97,114,8,0,13,46,67,111,111,107,105,101,78,111,116,105,102,121,8,0,28,46,67,111,111,107,105,101,78,111,116,105,102,121,87,105,100,103,101,116,95,95,119,114,97,112,112,101,114,8,0,12,46,67,111,111,107,105,101,79,112,116,73,110,8,0,14,46,67,111,111,107,105,101,79,118,101,114,108,97,121,8,0,12,46,67,111,111,107,105,101,80,97,110,101,108,8,0,11,46,67,111,111,107,105,101,80,101,114,109,8,0,13,46,67,111,111,107,105,101,80,111,108,105,99,121,8,0,22,46,67,111,111,107,105,101,80,111,108,105,99,121,45,67,111,110,116,101,110,101,114,8,0,16,46,67,111,111,107,105,101,80,111,108,105,99,121,66,97,114,8,0,27,46,67,111,111,107,105,101,80,111,108,105,99,121,77,97,110,97,103,101,114,45,66,97,110,110,101,114,8,0,23,46,67,111,111,107,105,101,80,111,108,105,99,121,77,101,115,115,97,103,101,66,111,120,8,0,25,46,67,111,111,107,105,101,80,111,108,105,99,121,78,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,67,111,111,107,105,101,80,111,108,105,99,121,87,105,100,103,101,116,8,0,20,46,67,111,111,107,105,101,80,111,108,105,99,121,95,115,117,98,100,105,118,8,0,12,46,67,111,111,107,105,101,80,111,112,85,112,8,0,12,46,67,111,111,107,105,101,80,111,112,117,112,8,0,20,46,67,111,111,107,105,101,80,114,105,118,97,99,121,66,97,110,110,101,114,8,0,12,46,67,111,111,107,105,101,80,114,111,109,111,8,0,20,46,67,111,111,107,105,101,84,111,112,68,105,115,99,108,97,105,109,101,114,8,0,18,46,67,111,111,107,105,101,85,115,101,65,112,112,114,111,118,97,108,8,0,14,46,67,111,111,107,105,101,87,97,114,110,105,110,103,8,0,23,46,67,111,111,107,105,101,87,97,114,110,105,110,103,67,111,109,112,111,110,101,110,116,8,0,23,46,67,111,111,107,105,101,87,97,114,110,105,110,103,95,95,119,114,97,112,112,101,114,8,0,13,46,67,111,111,107,105,101,87,105,110,100,111,119,8,0,14,46,67,111,111,107,105,101,95,66,97,110,110,101,114,8,0,12,46,67,111,111,107,105,101,95,80,97,110,101,8,0,13,46,67,111,111,107,105,101,95,84,101,114,109,115,8,0,15,46,67,111,111,107,105,101,95,95,66,97,110,110,101,114,8,0,15,46,67,111,111,107,105,101,95,95,98,97,110,110,101,114,8,0,18,46,67,111,111,107,105,101,95,95,99,111,110,116,97,105,110,101,114,8,0,11,46,67,111,111,107,105,101,95,98,97,114,8,0,13,46,67,111,111,107,105,101,95,109,111,100,97,108,8,0,10,46,67,111,111,107,105,101,98,97,114,8,0,22,46,67,111,111,107,105,101,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,38,46,67,111,111,107,105,101,112,111,108,105,99,121,91,100,97,116,97,45,105,100,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,34,93,8,0,15,46,67,111,111,107,105,101,112,111,112,117,112,98,111,120,8,0,18,46,67,111,111,107,105,101,115,45,67,111,110,116,97,105,110,101,114,8,0,21,46,67,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,67,111,111,107,105,101,115,65,99,99,101,112,116,45,66,111,100,121,8,0,13,46,67,111,111,107,105,101,115,65,108,101,114,116,8,0,14,46,67,111,111,107,105,101,115,66,97,110,110,101,114,8,0,19,46,67,111,111,107,105,101,115,66,97,110,110,101,114,45,114,111,111,116,8,0,19,46,67,111,111,107,105,101,115,66,97,110,110,101,114,45,115,104,111,119,8,0,26,46,67,111,111,107,105,101,115,66,97,110,110,101,114,77,111,100,97,108,79,118,101,114,108,97,121,8,0,11,46,67,111,111,107,105,101,115,66,97,114,8,0,15,46,67,111,111,107,105,101,115,67,111,110,115,101,110,116,8,0,20,46,67,111,111,107,105,101,115,67,111,110,115,101,110,116,95,114,111,111,116,8,0,17,46,67,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,8,0,14,46,67,111,111,107,105,101,115,70,111,111,116,101,114,8,0,20,46,67,111,111,107,105,101,115,72,105,110,119,101,105,115,79,117,116,101,114,8,0,12,46,67,111,111,107,105,101,115,73,110,102,111,8,0,16,46,67,111,111,107,105,101,115,73,110,102,111,77,97,105,110,8,0,20,46,67,111,111,107,105,101,115,76,97,119,67,111,110,116,97,105,110,101,114,8,0,13,46,67,111,111,107,105,101,115,76,97,121,101,114,8,0,20,46,67,111,111,107,105,101,115,77,101,115,115,97,103,101,66,108,111,99,107,8,0,24,46,67,111,111,107,105,101,115,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,8,0,20,46,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,8,0,42,46,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,115,80,111,112,85,112,95,95,79,117,116,101,114,67,111,110,116,97,105,110,101,114,8,0,10,46,67,111,111,107,105,101,115,79,75,8,0,10,46,67,111,111,107,105,101,115,79,107,8,0,21,46,67,111,111,107,105,101,115,80,111,108,105,99,121,45,98,97,110,110,101,114,8,0,20,46,67,111,111,107,105,101,115,80,111,108,105,99,121,66,97,110,110,101,114,8,0,20,46,67,111,111,107,105,101,115,80,111,112,117,112,45,109,105,100,100,108,101,8,0,24,46,67,111,111,107,105,101,115,80,111,112,117,112,95,95,67,111,110,116,97,105,110,101,114,8,0,20,46,67,111,111,107,105,101,115,84,101,114,109,115,67,111,110,115,101,110,116,8,0,13,46,67,111,111,107,105,101,115,85,115,97,103,101,8,0,15,46,67,111,111,107,105,101,115,87,97,114,110,105,110,103,8,0,21,46,67,111,111,107,105,101,115,95,67,111,111,107,105,101,115,80,111,112,105,110,8,0,14,46,67,111,111,107,105,101,115,95,97,108,101,114,116,8,0,14,46,67,111,111,107,105,101,115,95,98,108,111,99,107,8,0,11,46,67,111,114,101,67,111,111,107,105,101,8,0,32,46,68,86,87,101,98,78,111,100,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,49,46,68,86,87,101,98,78,111,100,101,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,8,0,26,46,68,105,115,99,108,97,105,109,101,114,67,111,111,107,105,101,67,111,109,112,111,110,101,110,116,8,0,13,46,68,109,120,108,97,98,115,75,111,111,107,101,8,0,10,46,69,85,45,99,111,111,107,105,101,8,0,15,46,69,85,67,111,111,107,105,101,66,97,110,110,101,114,8,0,12,46,69,85,67,111,111,107,105,101,66,111,120,8,0,13,46,69,85,67,111,111,107,105,101,73,110,102,111,8,0,15,46,69,85,67,111,111,107,105,101,76,97,119,66,97,114,8,0,15,46,69,85,67,111,111,107,105,101,78,111,116,105,99,101,8,0,23,46,69,85,67,111,111,107,105,101,78,111,116,105,99,101,95,99,111,110,116,101,110,116,8,0,24,46,69,85,67,111,111,107,105,101,80,111,108,105,99,121,67,111,110,116,97,105,110,101,114,8,0,14,46,69,85,67,111,111,107,105,101,80,111,112,117,112,8,0,4,46,69,85,99,8,0,24,46,69,87,83,67,111,111,107,105,101,67,111,110,115,101,110,116,79,118,101,114,108,97,121,8,0,16,46,69,110,97,98,108,105,110,103,67,111,111,107,105,101,115,8,0,15,46,69,112,114,105,118,97,99,121,66,97,110,110,101,114,8,0,12,46,69,117,67,111,111,107,105,101,66,97,114,8,0,14,46,69,117,67,111,111,107,105,101,83,104,101,101,116,8,0,26,46,69,117,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,86,105,101,119,8,0,18,46,69,117,114,111,112,101,97,110,67,111,111,107,105,101,66,97,114,8,0,27,46,70,54,45,99,111,111,107,105,101,115,95,119,95,106,115,45,101,110,116,114,121,112,111,105,110,116,8,0,13,46,70,69,95,67,79,79,75,73,69,76,65,87,8,0,15,46,70,79,79,84,69,82,95,67,79,79,75,73,69,83,8,0,15,46,70,111,111,116,101,114,67,111,111,107,105,101,71,76,8,0,32,46,71,48,48,53,45,103,108,111,98,97,108,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,10,46,71,65,99,111,111,107,105,101,115,8,0,23,46,71,66,97,115,101,71,68,80,82,67,111,110,115,101,110,116,68,105,97,108,111,103,8,0,9,46,71,68,80,82,45,77,115,103,8,0,19,46,71,68,80,82,45,87,101,108,99,111,109,101,66,97,110,110,101,114,8,0,13,46,71,68,80,82,45,99,111,111,107,105,101,115,8,0,18,46,71,68,80,82,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,21,46,71,68,80,82,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,11,46,71,68,80,82,45,116,111,97,115,116,8,0,19,46,71,68,80,82,45,116,111,111,108,115,45,99,111,110,115,101,110,116,8,0,22,46,71,68,80,82,46,110,103,45,115,116,97,114,45,105,110,115,101,114,116,101,100,8,0,10,46,71,68,80,82,80,97,110,101,108,8,0,19,46,71,68,80,82,80,97,110,101,108,45,45,118,105,115,105,98,108,101,8,0,15,46,71,68,80,82,80,97,110,101,108,45,114,111,111,116,8,0,11,46,71,82,85,95,98,97,110,110,101,114,8,0,12,46,71,100,112,114,45,112,111,108,105,99,121,8,0,20,46,71,100,112,114,45,112,111,108,105,99,121,45,100,101,115,107,116,111,112,8,0,11,46,71,100,112,114,66,97,110,110,101,114,8,0,15,46,71,100,112,114,66,97,110,110,101,114,95,95,98,103,8,0,17,46,71,100,112,114,67,111,111,107,105,101,115,80,111,112,117,112,8,0,17,46,71,108,111,98,97,108,67,111,110,115,101,110,116,66,97,114,8,0,13,46,71,108,111,98,97,108,67,111,111,107,105,101,8,0,21,46,71,114,111,119,109,97,114,107,71,68,80,82,95,87,114,97,112,112,101,114,8,0,17,46,72,85,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,14,46,72,101,97,100,101,114,45,99,111,111,107,105,101,8,0,19,46,72,114,83,121,115,45,71,105,112,115,45,68,105,118,73,66,111,120,8,0,26,46,72,114,83,121,115,45,71,105,112,115,45,105,66,111,120,68,105,118,67,111,110,116,101,110,116,8,0,18,46,73,80,95,95,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,19,46,73,84,80,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,13,46,73,84,80,99,111,111,107,105,101,98,97,114,8,0,31,46,73,109,112,111,114,116,97,110,116,91,109,115,103,105,100,61,34,99,111,111,107,105,101,45,105,110,102,111,34,93,8,0,13,46,74,83,95,99,111,111,107,105,101,66,97,114,8,0,15,46,74,83,99,111,111,107,105,101,115,45,112,97,114,116,8,0,19,46,74,95,97,103,114,101,101,67,111,111,107,105,101,77,111,100,97,108,8,0,9,46,75,111,108,97,99,105,107,121,8,0,17,46,76,65,87,95,99,111,111,107,105,101,95,97,108,101,114,116,8,0,5,46,76,71,80,68,8,0,19,46,76,71,80,68,45,112,111,112,117,112,45,119,114,97,112,112,101,114,8,0,12,46,76,71,80,68,87,97,114,110,105,110,103,8,0,19,46,76,111,111,112,114,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,11,46,77,52,84,45,99,111,111,107,105,101,8,0,22,46,77,66,45,49,48,56,45,99,111,111,107,105,101,45,104,105,110,119,101,105,115,8,0,19,46,77,67,111,111,107,105,101,81,117,101,115,116,105,111,110,66,111,120,8,0,17,46,77,101,115,115,97,103,101,45,45,99,111,111,107,105,101,115,8,0,19,46,77,101,115,115,97,103,101,66,108,111,99,107,67,111,111,107,105,101,8,0,18,46,77,111,100,84,104,111,109,97,115,67,111,111,107,105,101,115,67,8,0,22,46,77,111,100,97,108,45,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,23,46,77,111,100,97,108,67,111,111,107,105,101,115,66,97,99,107,103,114,111,117,110,100,8,0,24,46,78,97,118,98,97,114,45,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,8,0,22,46,78,97,118,98,97,114,45,116,111,97,115,116,67,111,110,116,97,105,110,101,114,8,0,27,46,78,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,78,111,116,105,99,101,8,0,20,46,78,111,116,105,102,105,99,97,116,105,111,110,67,111,111,107,105,101,115,8,0,25,46,78,111,118,101,109,101,100,105,97,67,111,111,107,105,101,80,111,108,105,99,121,66,111,120,8,0,12,46,79,45,67,111,111,107,105,101,76,97,119,8,0,15,46,79,98,115,67,110,105,108,87,97,114,110,105,110,103,8,0,18,46,80,80,111,108,105,99,121,68,105,115,99,108,97,105,109,101,114,8,0,13,46,80,97,103,101,45,99,111,111,107,105,101,115,8,0,24,46,80,97,114,116,105,97,108,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,8,0,27,46,80,97,114,116,105,97,108,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,45,104,112,8,0,30,46,80,105,119,105,107,80,82,79,67,111,110,115,101,110,116,70,111,114,109,45,99,111,110,116,97,105,110,101,114,8,0,20,46,80,111,108,105,99,121,78,111,116,105,102,105,99,97,116,105,111,110,115,8,0,18,46,80,111,112,77,101,115,115,97,103,101,46,99,111,111,107,105,101,8,0,10,46,80,111,112,117,112,71,68,80,82,8,0,29,46,80,111,114,116,108,101,116,71,101,115,116,105,111,110,68,101,115,67,111,111,107,105,101,115,67,78,73,76,8,0,22,46,80,111,115,105,116,105,111,110,66,111,116,116,111,109,46,97,115,45,111,105,108,8,0,22,46,80,114,105,118,97,99,121,67,111,111,107,105,101,65,99,99,101,112,116,101,100,8,0,18,46,80,114,105,118,97,99,121,77,111,100,101,72,101,97,100,101,114,8,0,12,46,80,114,105,118,97,99,121,78,111,116,101,8,0,20,46,80,114,105,118,97,99,121,80,111,108,105,99,121,78,111,116,105,99,101,8,0,22,46,80,114,105,118,97,99,121,83,101,116,116,105,110,103,115,66,97,110,110,101,114,8,0,12,46,82,65,67,75,87,114,97,112,112,101,114,8,0,13,46,82,71,80,68,95,109,101,115,115,97,103,101,8,0,11,46,82,71,80,68,99,111,111,107,105,101,8,0,13,46,82,86,95,99,111,111,107,105,101,100,105,114,8,0,15,46,82,103,112,100,45,99,111,109,112,111,110,101,110,116,8,0,12,46,82,103,112,100,45,110,111,116,105,99,101,8,0,21,46,82,103,112,100,66,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,8,0,17,46,82,111,100,111,78,111,116,121,102,105,99,97,116,105,111,110,8,0,25,46,82,111,111,116,95,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,8,0,19,46,83,48,49,77,57,55,45,67,111,111,107,105,101,65,108,101,114,116,8,0,28,46,83,48,49,77,57,55,45,67,111,111,107,105,101,65,108,101,114,116,45,45,111,118,101,114,108,97,121,8,0,11,46,83,67,75,95,66,97,110,110,101,114,8,0,18,46,83,76,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,8,0,17,46,83,80,45,67,111,110,115,101,110,116,66,97,110,110,101,114,8,0,25,46,83,80,45,67,111,110,115,101,110,116,66,97,110,110,101,114,95,95,115,112,97,99,101,114,8,0,27,46,83,80,45,67,111,111,107,105,101,85,115,97,103,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,15,46,83,101,99,116,105,111,110,45,67,111,111,107,105,101,8,0,29,46,83,101,101,101,109,115,45,69,117,67,111,111,107,105,101,45,78,111,116,105,102,105,99,97,116,105,111,110,8,0,10,46,83,105,116,101,45,114,103,112,100,8,0,21,46,83,105,116,101,76,97,121,111,117,116,45,99,111,111,107,105,101,66,97,114,8,0,20,46,83,105,116,101,77,101,115,115,97,103,101,45,45,99,111,111,107,105,101,8,0,15,46,83,105,116,101,85,115,101,67,111,111,107,105,101,115,8,0,15,46,83,105,116,101,87,105,100,101,67,111,111,107,105,101,8,0,27,46,83,105,116,101,99,111,111,107,105,101,109,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,8,0,10,46,84,79,83,66,97,110,110,101,114,8,0,21,46,84,83,45,67,111,111,107,105,101,76,101,103,97,108,78,111,116,105,99,101,8,0,14,46,84,100,107,83,104,111,119,67,111,111,107,105,101,8,0,20,46,84,101,109,112,108,97,116,101,95,67,111,111,107,105,101,115,66,111,120,8,0,16,46,84,104,101,67,111,111,107,105,101,66,97,110,110,101,114,8,0,23,46,84,104,105,114,100,80,97,114,116,121,67,111,111,107,105,101,115,65,108,101,114,116,8,0,17,46,84,111,119,97,45,71,100,112,114,45,80,108,117,103,105,110,8,0,15,46,84,120,72,102,67,111,111,107,105,101,72,105,110,116,8,0,9,46,85,69,67,111,111,107,105,101,8,0,15,46,85,73,67,111,111,107,105,101,66,97,110,110,101,114,8,0,14,46,85,78,95,70,82,65,77,69,95,103,100,112,114,8,0,22,46,87,48,51,52,95,67,111,111,107,105,101,95,68,105,114,101,99,116,105,118,101,8,0,15,46,87,87,45,99,111,111,107,105,101,109,111,100,117,108,8,0,19,46,87,101,85,115,101,67,111,111,107,105,101,115,78,111,116,105,99,101,8,0,15,46,87,101,98,115,105,116,101,67,111,111,107,105,101,115,8,0,17,46,95,51,54,48,99,111,111,107,105,101,68,105,97,108,111,103,8,0,21,46,95,67,111,111,107,105,101,66,111,120,95,99,111,111,107,105,101,66,111,120,8,0,17,46,95,95,95,101,117,99,111,111,107,105,101,80,111,112,117,112,8,0,15,46,95,95,99,111,111,107,105,101,78,111,116,105,99,101,8,0,16,46,95,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,10,46,95,95,99,111,111,107,105,101,115,8,0,14,46,95,95,99,111,111,107,105,101,115,95,109,115,103,8,0,12,46,95,95,103,100,112,114,45,109,97,105,110,8,0,21,46,95,95,103,100,112,114,67,111,110,102,105,114,109,79,118,101,114,108,97,121,8,0,8,46,95,99,111,111,107,105,101,8,0,25,46,95,99,111,111,107,105,101,45,97,100,118,97,110,99,101,100,45,45,97,99,116,105,118,101,8,0,15,46,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,12,46,95,99,111,111,107,105,101,45,98,97,114,8,0,16,46,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,13,46,95,99,111,111,107,105,101,45,105,110,102,111,8,0,14,46,95,99,111,111,107,105,101,66,97,110,110,101,114,8,0,25,46,95,99,111,111,107,105,101,98,97,110,110,101,114,45,111,112,116,45,105,110,45,111,117,116,8,0,9,46,95,99,111,111,107,105,101,115,8,0,16,46,95,99,111,111,107,105,101,115,45,99,111,111,107,105,101,8,0,21,46,95,99,111,111,107,105,101,115,45,99,111,111,107,105,101,115,45,98,97,114,8,0,22,46,95,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,112,111,112,117,112,8,0,47,46,95,102,108,111,97,116,105,110,103,45,98,97,110,110,101,114,91,102,108,111,97,116,105,110,103,45,98,97,110,110,101,114,45,105,100,61,34,99,111,111,107,105,101,115,34,93,8,0,20,46,95,103,100,112,114,45,110,111,116,105,102,121,45,104,101,97,100,101,114,8,0,18,46,95,103,100,112,114,67,111,111,107,105,101,66,97,110,110,101,114,8,0,19,46,95,105,112,104,95,99,112,95,115,116,97,110,100,97,108,111,110,101,8,0,15,46,95,106,115,67,111,111,107,105,101,80,111,112,117,112,8,0,20,46,95,108,101,103,97,108,45,97,108,101,114,116,95,101,114,121,108,101,49,8,0,28,46,95,120,117,105,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,111,118,101,114,108,97,121,8,0,10,46,97,45,45,99,111,111,107,105,101,8,0,9,46,97,45,99,111,111,107,105,101,8,0,16,46,97,45,100,101,114,105,118,101,45,99,111,111,107,105,101,8,0,23,46,97,51,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,8,0,16,46,97,97,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,20,46,97,97,51,48,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,22,46,97,97,114,100,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,21,46,97,98,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,19,46,97,98,98,114,95,95,99,111,111,107,105,101,98,97,110,110,101,114,8,0,20,46,97,98,99,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,12,46,97,98,99,111,111,107,105,101,108,97,119,8,0,14,46,97,98,99,111,111,107,105,101,108,97,119,98,103,8,0,16,46,97,98,101,45,103,100,112,114,45,98,97,110,110,101,114,8,0,25,46,97,98,110,111,114,109,77,101,100,105,97,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,22,46,97,98,115,116,114,97,99,116,67,109,112,68,105,115,99,108,97,105,109,101,114,8,0,23,46,97,98,116,45,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,21,46,97,99,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,34,46,97,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,15,46,97,99,45,99,111,111,107,105,101,45,119,114,97,112,8,0,11,46,97,99,45,99,111,111,107,105,101,115,8,0,28,46,97,99,97,115,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,114,116,97,108,8,0,11,46,97,99,99,45,99,111,111,107,105,101,8,0,30,46,97,99,99,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,97,99,107,103,114,111,117,110,100,8,0,17,46,97,99,99,101,112,116,45,98,111,120,45,45,114,111,100,111,8,0,18,46,97,99,99,101,112,116,45,99,111,111,107,105,101,45,98,97,114,8,0,24,46,97,99,99,101,112,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,20,46,97,99,99,101,112,116,45,99,111,111,107,105,101,45,111,117,116,101,114,8,0,26,46,97,99,99,101,112,116,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,98,111,120,8,0,21,46,97,99,99,101,112,116,45,99,111,111,107,105,101,45,119,105,110,100,111,119,8,0,19,46,97,99,99,101,112,116,45,99,111,111,107,105,101,45,119,114,97,112,8,0,22,46,97,99,99,101,112,116,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,22,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,23,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,108,111,99,107,117,107,8,0,20,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,99,111,110,116,8,0,25,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,21,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,109,111,100,97,108,8,0,22,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,8,0,22,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,22,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,112,114,111,109,112,116,8,0,21,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,116,111,97,115,116,8,0,23,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,24,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,17,46,97,99,99,101,112,116,45,109,121,45,99,111,111,107,105,101,8,0,22,46,97,99,99,101,112,116,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,8,0,21,46,97,99,99,101,112,116,45,112,114,105,118,97,99,121,112,111,108,105,99,121,8,0,16,46,97,99,99,101,112,116,67,111,111,107,105,101,66,97,114,8,0,16,46,97,99,99,101,112,116,67,111,111,107,105,101,66,111,120,8,0,19,46,97,99,99,101,112,116,67,111,111,107,105,101,66,117,116,116,111,110,8,0,22,46,97,99,99,101,112,116,67,111,111,107,105,101,67,111,109,112,111,110,101,110,116,8,0,22,46,97,99,99,101,112,116,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,19,46,97,99,99,101,112,116,67,111,111,107,105,101,68,105,97,108,111,103,8,0,16,46,97,99,99,101,112,116,67,111,111,107,105,101,68,105,118,8,0,20,46,97,99,99,101,112,116,67,111,111,107,105,101,77,101,115,115,97,103,101,8,0,19,46,97,99,99,101,112,116,67,111,111,107,105,101,78,111,116,105,99,101,8,0,17,46,97,99,99,101,112,116,67,111,111,107,105,101,115,66,111,120,8,0,23,46,97,99,99,101,112,116,67,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,8,0,20,46,97,99,99,101,112,116,67,111,111,107,105,101,115,77,111,98,105,108,101,8,0,19,46,97,99,99,101,112,116,67,111,111,107,105,101,115,77,111,100,97,108,8,0,19,46,97,99,99,101,112,116,67,111,111,107,105,101,115,80,97,110,101,108,8,0,21,46,97,99,99,101,112,116,67,111,111,107,105,101,115,87,114,97,112,112,101,114,8,0,19,46,97,99,99,101,112,116,95,97,100,97,116,118,101,100,101,108,101,109,8,0,14,46,97,99,99,101,112,116,95,99,111,111,107,105,101,8,0,19,46,97,99,99,101,112,116,95,99,111,111,107,105,101,95,115,108,111,116,8,0,15,46,97,99,99,101,112,116,95,99,111,111,107,105,101,115,8,0,23,46,97,99,99,101,112,116,95,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,22,46,97,99,99,101,112,116,95,99,111,111,107,105,101,115,95,97,99,116,105,111,110,8,0,15,46,97,99,99,101,112,116,101,114,67,111,111,107,105,101,8,0,19,46,97,99,99,101,112,116,109,121,99,111,111,107,105,101,45,98,97,114,8,0,18,46,97,99,99,101,112,116,115,105,116,101,99,111,111,107,105,101,115,8,0,15,46,97,99,99,101,115,115,45,99,111,111,107,105,101,115,8,0,26,46,97,99,99,101,115,115,105,98,105,108,105,116,121,45,98,97,114,45,99,111,111,107,105,101,115,8,0,18,46,97,99,99,101,116,116,97,45,99,111,110,116,97,105,110,101,114,8,0,15,46,97,99,99,101,116,116,97,95,99,111,111,107,105,101,8,0,14,46,97,99,99,101,116,116,97,99,111,111,107,105,101,8,0,20,46,97,99,99,101,116,116,97,122,105,111,110,101,67,111,111,107,105,101,115,8,0,9,46,97,99,99,111,111,107,105,101,8,0,15,46,97,99,99,111,114,100,95,99,111,111,107,105,101,115,8,0,15,46,97,99,101,112,116,97,95,99,111,111,107,105,101,115,8,0,16,46,97,99,101,112,116,97,114,95,99,111,111,107,105,101,115,8,0,37,46,97,99,114,105,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,58,110,111,116,40,46,105,115,45,45,109,111,100,97,108,41,8,0,24,46,97,99,116,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,14,46,97,99,116,105,111,110,45,99,111,111,107,105,101,8,0,19,46,97,99,116,105,118,101,45,99,111,111,107,105,101,45,109,101,110,117,8,0,14,46,97,99,116,105,118,101,46,99,111,111,107,105,101,8,0,21,46,97,99,116,105,118,101,46,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,97,99,116,105,118,101,46,114,103,112,100,45,109,111,100,97,108,8,0,33,46,97,99,116,105,118,101,98,97,114,45,99,111,110,116,97,105,110,101,114,46,95,112,114,105,118,97,99,121,95,102,105,120,8,0,16,46,97,99,116,105,118,105,116,121,45,99,111,111,107,105,101,8,0,16,46,97,100,98,108,111,99,107,45,99,111,111,107,105,101,115,8,0,15,46,97,100,100,45,103,101,116,45,99,111,111,107,105,101,8,0,12,46,97,100,100,95,99,111,111,107,105,101,115,8,0,13,46,97,100,100,99,111,111,107,105,101,108,97,119,8,0,15,46,97,100,100,116,104,105,115,45,99,111,111,107,105,101,8,0,15,46,97,100,101,45,99,111,111,107,105,101,45,98,97,114,8,0,23,46,97,100,101,111,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,19,46,97,100,107,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,17,46,97,100,110,45,99,111,111,107,105,101,45,112,97,110,101,108,8,0,28,46,97,100,110,45,99,111,111,107,105,101,45,112,97,110,110,101,108,45,99,111,110,116,97,105,110,101,114,8,0,10,46,97,100,112,45,112,111,112,117,112,8,0,18,46,97,100,112,45,112,111,112,117,112,45,111,118,101,114,108,97,121,8,0,25,46,97,100,114,111,108,108,95,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,8,0,25,46,97,100,115,107,45,103,100,112,114,45,102,111,111,116,101,114,45,119,114,97,112,112,101,114,8,0,13,46,97,100,118,45,45,51,48,48,120,50,53,48,8,0,12,46,97,100,118,45,45,55,50,56,120,57,48,8,0,11,46,97,100,118,45,99,111,111,107,105,101,8,0,23,46,97,100,118,101,114,116,105,115,105,110,103,45,99,111,111,107,105,101,45,117,115,101,8,0,14,46,97,100,118,105,99,101,45,99,111,111,107,105,101,8,0,20,46,97,100,118,109,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,10,46,97,102,45,99,111,111,107,105,101,8,0,11,46,97,102,45,99,111,111,107,105,101,115,8,0,22,46,97,102,45,99,111,111,107,105,101,115,45,98,97,99,107,103,114,111,117,110,100,8,0,18,46,97,102,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,97,102,102,101,110,107,101,107,115,101,8,0,28,46,97,102,105,99,105,111,110,97,100,111,45,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,12,46,97,102,109,45,67,111,111,107,105,101,115,8,0,10,46,97,103,45,99,111,111,107,105,101,8,0,17,46,97,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,25,46,97,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,8,0,26,46,97,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,95,95,119,114,97,112,112,101,114,8,0,23,46,97,103,95,99,111,111,107,105,101,95,97,108,101,114,116,95,119,105,110,100,111,119,8,0,17,46,97,103,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,29,46,97,103,95,117,115,101,114,95,97,108,101,114,116,95,119,105,110,100,111,119,95,99,111,110,116,101,110,116,8,0,15,46,97,103,101,103,97,116,101,45,99,111,111,107,105,101,8,0,22,46,97,103,101,110,100,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,33,46,97,103,103,45,119,97,114,110,105,110,103,45,98,97,110,110,101,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,11,46,97,103,105,99,111,111,107,105,101,115,8,0,19,46,97,103,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,33,46,97,103,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,105,110,110,101,114,45,119,114,97,112,112,101,114,8,0,33,46,97,103,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,117,116,101,114,45,119,114,97,112,112,101,114,8,0,18,46,97,103,114,101,101,45,99,111,111,107,105,101,45,119,114,97,112,8,0,14,46,97,103,114,101,101,45,99,111,111,107,105,101,115,8,0,19,46,97,103,114,101,101,45,119,105,116,104,45,99,111,111,107,105,101,115,8,0,14,46,97,103,114,101,101,99,111,111,107,105,101,115,99,8,0,17,46,97,103,114,101,101,109,101,110,116,45,99,111,111,107,105,101,8,0,21,46,97,103,114,101,101,109,101,110,116,45,101,117,45,99,111,111,107,105,101,115,8,0,17,46,97,104,98,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,18,46,97,105,45,109,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,24,46,97,105,45,109,45,111,118,101,114,108,97,121,45,98,97,99,107,103,114,111,117,110,100,8,0,27,46,97,105,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,45,119,114,97,112,112,101,114,8,0,22,46,97,106,97,120,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,8,0,12,46,97,106,115,45,109,101,115,115,97,103,101,8,0,10,46,97,107,45,99,111,111,107,105,101,8,0,18,46,97,107,45,99,111,111,107,105,101,95,95,98,97,110,110,101,114,8,0,18,46,97,107,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,8,46,97,107,95,114,103,112,100,8,0,12,46,97,107,102,95,95,99,111,111,107,105,101,8,0,36,46,97,107,105,115,109,101,116,95,99,111,109,109,101,110,116,95,102,111,114,109,95,112,114,105,118,97,99,121,95,110,111,116,105,99,101,8,0,14,46,97,108,101,114,116,45,45,99,111,111,107,105,101,8,0,26,46,97,108,101,114,116,45,45,99,111,111,107,105,101,99,111,110,115,101,110,116,98,108,111,99,107,8,0,15,46,97,108,101,114,116,45,45,99,111,111,107,105,101,115,8,0,21,46,97,108,101,114,116,45,98,97,110,100,101,97,117,45,99,111,111,107,105,101,8,0,21,46,97,108,101,114,116,45,98,97,110,110,101,114,45,45,99,111,111,107,105,101,8,0,25,46,97,108,101,114,116,45,98,111,120,45,99,111,111,107,105,101,95,95,108,97,121,111,117,116,8,0,18,46,97,108,101,114,116,45,98,111,120,45,99,111,111,107,105,101,115,8,0,11,46,97,108,101,114,116,45,99,110,105,108,8,0,30,46,97,108,101,114,116,45,99,111,109,112,108,105,97,110,99,101,46,102,105,120,101,100,45,98,111,116,116,111,109,8,0,14,46,97,108,101,114,116,45,99,111,111,99,105,101,115,8,0,14,46,97,108,101,114,116,45,99,111,111,99,107,105,101,8,0,20,46,97,108,101,114,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,20,46,97,108,101,114,116,45,99,111,111,107,105,101,45,98,117,116,116,111,110,8,0,21,46,97,108,101,114,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,97,108,101,114,116,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,20,46,97,108,101,114,116,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,30,46,97,108,101,114,116,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,20,46,97,108,101,114,116,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,19,46,97,108,101,114,116,45,99,111,111,107,105,101,45,117,115,97,103,101,8,0,23,46,97,108,101,114,116,45,99,111,111,107,105,101,115,45,98,97,99,107,100,114,111,112,8,0,21,46,97,108,101,114,116,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,18,46,97,108,101,114,116,45,99,111,111,107,105,101,115,45,98,97,114,8,0,18,46,97,108,101,114,116,45,99,111,111,107,105,101,115,45,98,111,120,8,0,22,46,97,108,101,114,116,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,8,0,21,46,97,108,101,114,116,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,20,46,97,108,101,114,116,45,99,111,111,107,105,101,119,97,114,110,105,110,103,8,0,21,46,97,108,101,114,116,45,109,101,115,115,97,103,101,46,99,111,111,107,105,101,8,0,25,46,97,108,101,114,116,45,112,114,105,118,97,99,121,45,100,105,115,99,108,97,105,109,101,114,8,0,11,46,97,108,101,114,116,45,114,103,112,100,8,0,18,46,97,108,101,114,116,45,115,105,116,101,45,99,111,111,107,105,101,8,0,22,46,97,108,101,114,116,45,116,114,97,99,107,105,110,103,45,99,111,111,107,105,101,8,0,21,46,97,108,101,114,116,45,119,97,114,110,105,110,103,45,102,111,111,116,101,114,8,0,21,46,97,108,101,114,116,45,119,114,97,112,112,101,114,45,99,111,111,107,105,101,8,0,19,46,97,108,101,114,116,46,99,99,112,97,45,109,101,115,115,97,103,101,8,0,11,46,97,108,101,114,116,46,114,103,112,100,8,0,17,46,97,108,101,114,116,67,111,111,107,105,101,115,67,110,105,108,8,0,20,46,97,108,101,114,116,76,68,71,80,66,97,99,107,103,114,111,117,110,100,8,0,19,46,97,108,101,114,116,80,111,108,105,99,121,67,111,111,107,105,101,115,8,0,15,46,97,108,101,114,116,86,105,101,80,114,105,118,101,101,8,0,38,46,97,108,101,114,116,91,100,97,116,97,45,98,101,104,97,118,105,111,117,114,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,8,0,35,46,97,108,101,114,116,91,100,97,116,97,45,99,111,111,107,105,101,61,34,98,97,110,110,101,114,45,99,111,111,107,105,101,34,93,8,0,31,46,97,108,101,114,116,91,100,97,116,97,45,110,97,109,101,61,34,101,117,95,98,105,115,99,117,105,116,115,34,93,8,0,41,46,97,108,101,114,116,91,100,97,116,97,45,110,103,45,105,102,61,34,115,104,111,119,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,34,93,8,0,27,46,97,108,101,114,116,91,110,103,45,105,102,61,34,99,111,111,107,105,101,65,108,101,114,116,34,93,8,0,36,46,97,108,101,114,116,91,110,103,45,105,102,61,34,115,104,111,119,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,34,93,8,0,12,46,97,108,101,114,116,95,95,82,71,80,68,8,0,14,46,97,108,101,114,116,95,95,99,111,111,107,105,101,8,0,26,46,97,108,101,114,116,95,98,97,99,107,103,114,111,117,110,100,95,99,111,111,99,107,105,101,115,8,0,23,46,97,108,101,114,116,95,99,111,110,116,97,105,110,101,114,46,99,111,111,107,105,101,8,0,13,46,97,108,101,114,116,95,99,111,111,107,105,101,8,0,14,46,97,108,101,114,116,95,99,111,111,107,105,101,115,8,0,21,46,97,108,101,114,116,95,119,114,97,112,112,101,114,46,99,111,111,107,105,101,8,0,14,46,97,108,101,114,116,97,45,99,111,111,107,105,101,8,0,15,46,97,108,101,114,116,97,45,99,111,111,107,105,101,115,8,0,11,46,97,108,101,114,116,97,76,71,80,68,8,0,15,46,97,108,101,114,116,97,95,99,111,111,107,105,101,115,8,0,14,46,97,108,101,114,116,97,99,111,111,107,105,101,115,8,0,29,46,97,108,101,114,116,98,97,114,45,45,116,114,97,99,107,105,110,103,72,111,114,105,122,111,110,116,97,108,8,0,27,46,97,108,101,114,116,98,97,114,45,45,116,114,97,99,107,105,110,103,86,101,114,116,105,99,97,108,8,0,30,46,97,108,101,114,116,98,97,114,91,100,97,116,97,45,97,108,101,114,116,61,34,99,111,111,107,105,101,34,93,8,0,12,46,97,108,101,114,116,99,111,111,107,105,101,8,0,14,46,97,108,101,114,116,101,45,99,111,111,107,105,101,8,0,14,46,97,108,101,114,116,101,95,99,111,111,107,105,101,8,0,22,46,97,108,101,114,116,101,95,99,111,111,107,105,101,95,99,111,110,116,101,110,116,8,0,22,46,97,108,101,114,116,115,45,45,101,117,45,99,111,111,107,105,101,45,98,97,114,8,0,25,46,97,108,101,114,116,115,45,109,97,110,97,103,101,114,45,99,111,110,116,97,105,110,101,114,8,0,14,46,97,108,102,95,99,111,111,107,105,101,76,97,119,8,0,22,46,97,108,105,101,110,115,97,110,105,109,97,116,101,99,111,111,107,105,101,105,110,8,0,20,46,97,108,105,101,110,115,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,15,46,97,108,108,101,114,116,45,99,111,111,107,105,101,115,8,0,20,46,97,108,108,111,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,23,46,97,108,108,111,119,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,26,46,97,108,108,111,119,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,97,108,108,111,119,45,99,111,111,107,105,101,45,112,97,110,101,108,8,0,20,46,97,108,108,111,119,45,99,111,111,107,105,101,45,115,116,114,105,112,101,8,0,21,46,97,108,108,111,119,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,21,46,97,108,108,111,119,45,99,111,111,107,105,101,115,45,100,105,97,108,111,103,8,0,19,46,97,108,108,111,119,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,24,46,97,108,108,111,119,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,8,0,16,46,97,108,108,111,119,101,100,45,99,111,111,107,105,101,115,8,0,15,46,97,108,108,114,101,97,100,121,99,111,111,107,105,101,8,0,21,46,97,108,108,116,114,105,99,107,115,45,67,110,105,108,82,105,98,98,111,110,8,0,18,46,97,108,115,45,99,111,111,107,105,101,45,98,117,116,116,111,110,8,0,17,46,97,108,116,95,108,103,112,100,95,99,111,111,107,105,101,115,8,0,29,46,97,108,116,97,109,105,114,97,45,103,100,112,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,36,46,97,108,116,101,114,110,97,116,105,118,101,95,99,111,111,107,105,101,95,108,97,121,101,114,95,98,97,99,107,103,114,111,117,110,100,8,0,32,46,97,108,116,101,114,110,97,116,105,118,101,95,99,111,111,107,105,101,95,108,97,121,101,114,95,104,111,108,100,101,114,8,0,22,46,97,108,116,101,114,110,101,116,67,111,111,107,105,101,77,101,115,115,97,103,101,8,0,19,46,97,108,116,105,117,109,45,112,114,105,118,97,99,121,45,98,97,114,8,0,38,46,97,108,116,117,109,99,111,100,101,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,8,0,17,46,97,108,118,105,110,101,99,111,111,107,105,101,105,110,102,111,8,0,17,46,97,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,13,46,97,109,45,99,111,111,107,105,101,98,97,114,8,0,9,46,97,109,50,45,103,100,112,114,8,0,16,46,97,109,99,98,45,99,111,111,107,105,101,45,98,97,110,8,0,18,46,97,109,100,98,45,108,103,112,100,45,99,111,110,115,101,110,116,8,0,14,46,97,109,103,100,112,114,45,99,111,111,107,105,101,8,0,26,46,97,109,103,100,112,114,99,111,111,107,105,101,45,98,97,114,45,116,101,109,112,108,97,116,101,8,0,21,46,97,109,115,45,109,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,19,46,97,109,122,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,8,0,18,46,97,110,97,108,121,116,105,99,115,45,99,111,110,115,101,110,116,8,0,19,46,97,110,97,108,121,116,105,99,115,95,95,99,111,110,115,101,110,116,8,0,10,46,97,110,100,99,111,111,107,105,101,8,0,23,46,97,110,105,109,97,116,101,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,22,46,97,110,105,109,97,116,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,16,46,97,110,105,109,97,116,101,45,99,111,111,107,105,101,115,8,0,24,46,97,110,105,109,97,116,101,100,46,103,100,112,114,45,99,111,110,116,97,105,110,101,114,8,0,20,46,97,110,110,111,117,110,99,101,109,101,110,116,45,99,111,111,107,105,101,8,0,28,46,97,110,110,111,117,110,99,101,109,101,110,116,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,23,46,97,110,110,111,117,110,99,101,109,101,110,116,45,101,117,45,99,111,111,107,105,101,8,0,23,46,97,110,110,121,116,97,98,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,25,46,97,110,111,110,121,109,111,117,115,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,25,46,97,110,111,110,121,109,111,117,115,84,111,83,67,111,110,115,101,110,116,95,109,97,115,107,8,0,13,46,97,110,117,110,116,45,99,111,111,107,105,101,8,0,20,46,97,111,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,19,46,97,111,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,46,46,97,112,45,99,45,109,101,115,115,97,103,101,45,119,114,97,112,91,100,97,116,97,45,99,111,110,116,114,111,108,108,101,114,61,34,99,109,101,115,115,97,103,101,34,93,8,0,28,46,97,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,26,46,97,112,45,99,111,111,107,105,101,115,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,8,0,19,46,97,112,97,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,18,46,97,112,97,45,99,111,110,115,101,110,116,45,114,101,115,101,116,8,0,20,46,97,112,97,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,11,46,97,112,112,45,99,111,111,107,105,101,8,0,21,46,97,112,112,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,8,0,18,46,97,112,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,97,112,112,45,99,111,111,107,105,101,45,99,97,114,100,8,0,19,46,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,97,112,112,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,16,46,97,112,112,45,99,111,111,107,105,101,45,108,105,110,101,8,0,22,46,97,112,112,45,99,111,111,107,105,101,45,108,105,110,101,45,105,110,110,101,114,8,0,18,46,97,112,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,15,46,97,112,112,45,99,111,111,107,105,101,45,114,111,119,8,0,29,46,97,112,112,45,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,98,97,110,110,101,114,8,0,20,46,97,112,112,45,100,105,115,99,108,97,105,109,101,114,45,114,103,112,100,8,0,16,46,97,112,112,45,103,100,112,114,45,110,111,116,105,99,101,8,0,20,46,97,112,112,45,114,111,111,116,32,62,32,46,99,111,111,107,105,101,115,8,0,20,46,97,112,112,45,119,114,97,112,112,101,114,45,99,111,111,107,105,101,115,8,0,13,46,97,112,112,95,95,99,111,111,107,105,101,115,8,0,26,46,97,112,112,95,95,109,105,115,99,45,99,111,111,107,105,101,95,95,99,111,110,115,101,110,116,8,0,17,46,97,112,112,95,99,111,111,107,105,101,95,97,108,101,114,116,8,0,12,46,97,112,112,95,103,100,112,114,45,45,50,8,0,16,46,97,112,112,114,111,118,101,45,99,111,111,107,105,101,115,8,0,23,46,97,112,112,114,111,118,101,45,99,111,111,107,105,101,115,45,104,101,97,100,101,114,8,0,18,46,97,112,112,114,111,118,101,67,111,111,107,105,101,115,66,97,114,8,0,20,46,97,112,112,116,105,107,101,114,45,99,111,111,107,105,101,45,98,97,114,8,0,22,46,97,112,112,120,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,101,117,8,0,40,46,97,112,114,111,112,111,45,119,105,100,103,101,116,115,45,116,111,111,108,98,97,114,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,16,46,97,114,95,95,99,111,111,107,105,101,95,105,110,102,111,8,0,15,46,97,114,103,101,110,116,95,99,111,111,107,105,101,115,8,0,13,46,97,114,111,117,110,100,67,111,111,107,105,101,8,0,21,46,97,114,115,111,114,115,67,111,111,107,105,101,95,119,114,97,112,112,101,114,8,0,11,46,97,114,116,45,99,111,111,107,105,101,8,0,21,46,97,114,118,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,28,46,97,115,45,111,105,108,91,100,97,116,97,45,113,97,61,34,111,105,108,45,76,97,121,101,114,34,93,8,0,18,46,97,115,95,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,24,46,97,115,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,23,46,97,115,115,101,116,95,98,97,108,97,78,111,116,105,102,105,99,97,116,105,111,110,8,0,20,46,97,115,115,105,103,110,109,101,110,116,45,45,99,111,111,107,105,101,115,8,0,17,46,97,115,122,102,76,97,121,101,114,67,111,110,116,101,110,116,8,0,21,46,97,116,108,97,110,116,115,95,99,111,111,107,95,119,114,97,112,112,101,114,8,0,23,46,97,116,109,45,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,8,0,16,46,97,116,118,105,45,98,97,110,110,101,114,45,99,109,112,8,0,23,46,97,116,118,105,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,27,46,97,116,118,105,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,109,111,100,117,108,101,8,0,15,46,97,117,114,111,114,97,45,110,97,110,111,98,97,114,8,0,17,46,97,117,115,107,117,110,102,116,45,99,111,111,107,105,101,115,8,0,19,46,97,117,115,116,114,105,97,95,99,111,111,107,105,101,95,108,97,119,8,0,12,46,97,117,116,104,45,99,111,111,107,105,101,8,0,21,46,97,117,116,111,109,97,114,116,45,99,111,111,107,105,101,97,108,101,114,116,8,0,18,46,97,118,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,12,46,97,118,67,111,111,107,105,101,76,97,119,8,0,18,46,97,118,97,108,97,110,99,104,101,45,109,101,115,115,97,103,101,8,0,22,46,97,118,101,114,116,105,115,115,101,109,101,110,116,45,99,111,111,107,105,101,115,8,0,20,46,97,118,101,114,116,105,115,115,101,109,101,110,116,67,111,111,107,105,101,8,0,27,46,97,118,101,114,116,105,115,115,101,109,101,110,116,67,111,111,107,105,101,67,111,110,116,101,110,117,8,0,21,46,97,118,101,114,116,105,115,115,101,109,101,110,116,67,111,111,107,105,101,115,8,0,18,46,97,118,103,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,14,46,97,118,103,45,99,111,111,107,105,101,98,97,114,8,0,20,46,97,118,103,45,99,111,111,107,105,101,115,95,95,116,111,103,103,108,101,8,0,17,46,97,118,104,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,20,46,97,118,105,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,25,46,97,118,105,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,8,0,26,46,97,118,105,97,45,99,111,111,107,105,101,109,101,115,115,97,103,101,45,98,111,116,116,111,109,8,0,14,46,97,118,105,115,111,45,99,111,111,107,105,101,115,8,0,20,46,97,118,105,115,111,45,99,111,111,107,105,101,115,45,108,97,121,101,114,8,0,17,46,97,118,105,115,111,45,100,101,45,99,111,111,107,105,101,115,8,0,22,46,97,118,105,115,111,45,103,101,115,116,105,111,110,45,99,111,111,107,105,101,115,8,0,11,46,97,118,105,115,111,45,108,103,112,100,8,0,23,46,97,118,105,115,111,45,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,8,0,12,46,97,118,105,115,111,67,111,111,107,105,101,8,0,13,46,97,118,105,115,111,67,111,111,107,105,101,115,8,0,20,46,97,118,105,115,111,67,111,111,107,105,101,115,67,111,110,116,101,110,116,8,0,17,46,97,118,105,115,111,67,111,111,107,105,101,115,70,105,120,111,8,0,16,46,97,118,105,115,111,67,111,111,107,105,101,115,84,120,116,8,0,10,46,97,118,105,115,111,76,71,80,68,8,0,21,46,97,118,105,115,111,80,111,108,105,116,105,99,97,99,111,111,107,105,101,115,8,0,15,46,97,118,105,115,111,95,95,99,111,111,107,105,101,115,8,0,13,46,97,118,105,115,111,95,99,111,111,107,105,101,8,0,14,46,97,118,105,115,111,95,99,111,111,107,105,101,115,8,0,16,46,97,118,105,115,111,95,108,103,112,100,95,98,111,100,121,8,0,12,46,97,118,105,115,111,99,111,111,107,105,101,8,0,13,46,97,118,105,115,111,99,111,111,107,105,101,115,8,0,14,46,97,118,105,115,111,108,103,112,100,45,98,97,114,8,0,19,46,97,118,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,13,46,97,118,118,105,115,111,67,111,111,107,105,101,8,0,14,46,97,118,118,105,115,111,95,99,111,111,107,105,101,8,0,16,46,97,119,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,24,46,97,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,118,101,114,108,121,8,0,14,46,97,119,45,99,111,111,107,105,101,45,108,97,119,8,0,11,46,97,119,45,99,111,111,107,105,101,115,8,0,19,46,97,119,50,45,110,97,118,45,116,111,112,45,99,111,111,107,105,101,8,0,29,46,97,119,97,118,101,95,99,111,110,115,101,110,116,95,109,111,100,97,108,95,98,97,99,107,100,114,111,112,8,0,25,46,97,119,97,118,101,95,99,111,110,115,101,110,116,95,109,111,100,97,108,95,111,112,101,110,8,0,20,46,97,119,101,45,112,111,112,107,105,101,115,45,99,111,110,116,101,110,116,8,0,23,46,97,119,101,45,112,111,112,107,105,101,115,45,108,97,121,101,114,95,100,97,114,107,8,0,11,46,97,119,101,95,99,111,111,107,105,101,8,0,20,46,97,119,101,95,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,8,0,19,46,97,119,101,115,111,109,101,45,101,117,45,99,111,111,107,105,101,115,8,0,22,46,97,119,110,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,19,46,97,119,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,12,46,97,120,97,45,99,111,111,107,105,101,115,8,0,10,46,97,120,97,67,111,111,107,105,101,8,0,27,46,97,120,105,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,27,46,97,120,109,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,14,46,97,120,115,45,109,100,45,99,111,111,107,105,101,8,0,11,46,98,45,45,99,111,111,107,105,101,115,8,0,16,46,98,45,97,99,99,101,112,116,45,99,111,111,107,105,101,8,0,11,46,98,45,99,99,111,110,115,101,110,116,8,0,28,46,98,45,99,111,110,116,101,110,116,45,97,115,115,101,116,95,99,111,111,107,105,101,95,104,105,110,116,8,0,16,46,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,23,46,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,45,102,105,120,101,100,8,0,23,46,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,105,110,110,101,114,8,0,17,46,98,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,14,46,98,45,99,111,111,107,105,101,45,104,105,110,116,8,0,23,46,98,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,97,110,110,101,114,8,0,22,46,98,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,17,46,98,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,16,46,98,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,15,46,98,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,14,46,98,45,99,111,111,107,105,101,45,116,101,120,116,8,0,17,46,98,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,15,46,98,45,99,111,111,107,105,101,66,97,110,110,101,114,8,0,12,46,98,45,99,111,111,107,105,101,66,111,120,8,0,16,46,98,45,99,111,111,107,105,101,67,111,110,115,101,110,116,8,0,15,46,98,45,99,111,111,107,105,101,68,105,97,108,111,103,8,0,15,46,98,45,99,111,111,107,105,101,95,95,98,111,100,121,8,0,20,46,98,45,99,111,111,107,105,101,95,95,99,111,110,116,97,105,110,101,114,8,0,14,46,98,45,99,111,111,107,105,101,95,104,105,110,116,8,0,10,46,98,45,99,111,111,107,105,101,115,8,0,16,46,98,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,14,46,98,45,99,111,111,107,105,101,115,45,98,97,114,8,0,19,46,98,45,99,111,111,107,105,101,115,45,105,110,102,111,114,109,101,114,8,0,18,46,98,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,8,0,27,46,98,45,99,111,111,107,105,101,115,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,8,0,19,46,98,45,99,111,111,107,105,101,115,95,105,110,102,111,114,109,101,114,8,0,23,46,98,45,99,111,111,107,105,101,115,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,15,46,98,45,100,115,103,118,111,45,98,97,110,110,101,114,8,0,16,46,98,45,102,111,111,116,101,114,45,99,111,111,107,105,101,8,0,16,46,98,45,104,101,97,100,101,114,45,99,111,111,107,105,101,8,0,29,46,98,45,110,111,116,105,102,105,99,97,116,105,111,110,45,112,117,115,104,95,95,119,114,97,112,112,101,114,8,0,14,46,98,45,112,111,108,105,99,121,45,105,110,102,111,8,0,20,46,98,45,112,111,112,117,112,45,99,111,111,107,105,101,95,119,114,97,112,8,0,17,46,98,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,8,0,24,46,98,45,115,116,114,105,112,101,95,99,111,110,116,101,110,116,95,99,111,111,107,105,101,8,0,24,46,98,49,48,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,6,46,98,67,110,105,108,8,0,11,46,98,95,95,99,111,111,107,105,101,115,8,0,15,46,98,95,99,111,111,107,105,101,66,97,110,110,101,114,8,0,15,46,98,95,99,111,111,107,105,101,110,111,116,105,99,101,8,0,21,46,98,97,45,98,97,110,110,101,114,45,100,105,115,99,108,97,105,109,101,114,8,0,11,46,98,97,45,99,111,111,107,105,101,115,8,0,14,46,98,97,95,99,111,111,107,105,101,95,98,97,114,8,0,16,46,98,97,95,112,111,112,117,112,95,99,111,111,107,105,101,8,0,11,46,98,97,99,107,99,111,111,107,105,101,8,0,23,46,98,97,99,107,100,114,111,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,17,46,98,97,99,107,100,114,111,112,45,99,111,111,107,105,101,115,8,0,21,46,98,97,99,107,100,114,111,112,45,108,101,121,45,99,111,111,107,105,101,115,8,0,25,46,98,97,99,107,103,114,111,117,110,100,45,112,101,116,114,111,108,45,99,111,111,107,105,101,8,0,23,46,98,97,99,107,103,114,111,117,110,100,95,97,108,101,114,116,99,111,111,107,105,101,8,0,25,46,98,97,99,107,103,114,111,117,110,100,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,14,46,98,97,100,103,101,95,112,114,105,118,97,99,121,8,0,18,46,98,97,107,101,100,45,99,111,111,107,105,101,115,45,98,97,114,8,0,12,46,98,97,110,45,99,111,111,107,105,101,115,8,0,11,46,98,97,110,100,45,45,103,100,112,114,8,0,13,46,98,97,110,100,97,45,99,111,111,107,105,101,8,0,16,46,98,97,110,100,97,65,99,101,112,116,97,99,105,111,110,8,0,13,46,98,97,110,100,97,99,111,111,107,105,101,115,8,0,22,46,98,97,110,100,101,97,117,45,97,99,99,101,112,116,45,99,111,111,107,105,101,8,0,13,46,98,97,110,100,101,97,117,45,99,110,105,108,8,0,15,46,98,97,110,100,101,97,117,45,99,111,111,107,105,101,8,0,22,46,98,97,110,100,101,97,117,45,99,111,111,107,105,101,45,98,111,116,116,111,109,8,0,23,46,98,97,110,100,101,97,117,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,16,46,98,97,110,100,101,97,117,45,99,111,111,107,105,101,115,8,0,28,46,98,97,110,100,101,97,117,45,105,110,102,111,114,109,97,116,105,111,110,45,99,111,111,107,105,101,115,8,0,19,46,98,97,110,100,101,97,117,45,115,101,108,108,115,101,99,117,114,101,8,0,16,46,98,97,110,100,101,97,117,45,119,114,97,112,112,101,114,8,0,14,46,98,97,110,100,101,97,117,67,111,111,107,105,101,8,0,15,46,98,97,110,100,101,97,117,67,111,111,107,105,101,115,8,0,17,46,98,97,110,100,101,97,117,95,95,99,111,111,107,105,101,115,8,0,13,46,98,97,110,100,101,97,117,95,99,110,105,108,8,0,16,46,98,97,110,100,101,97,117,95,99,111,110,115,101,110,116,8,0,15,46,98,97,110,100,101,97,117,95,99,111,111,107,105,101,8,0,16,46,98,97,110,100,101,97,117,95,99,111,111,107,105,101,115,8,0,12,46,98,97,110,100,101,97,117,99,110,105,108,8,0,19,46,98,97,110,100,101,97,117,99,110,105,108,99,111,111,107,105,101,115,8,0,13,46,98,97,110,101,114,45,99,111,111,107,105,101,8,0,14,46,98,97,110,107,105,100,45,99,111,111,107,105,101,8,0,12,46,98,97,110,110,45,99,111,111,107,105,101,8,0,15,46,98,97,110,110,101,114,45,45,99,111,111,107,105,101,8,0,22,46,98,97,110,110,101,114,45,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,19,46,98,97,110,110,101,114,45,45,99,111,111,107,105,101,115,45,101,117,8,0,23,46,98,97,110,110,101,114,45,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,13,46,98,97,110,110,101,114,45,45,103,100,112,114,8,0,13,46,98,97,110,110,101,114,45,45,108,103,112,100,8,0,26,46,98,97,110,110,101,114,45,97,99,101,112,116,97,99,105,111,110,45,99,111,111,107,105,101,115,8,0,19,46,98,97,110,110,101,114,45,99,111,110,115,101,110,116,45,97,108,108,8,0,14,46,98,97,110,110,101,114,45,99,111,111,107,105,101,8,0,25,46,98,97,110,110,101,114,45,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,8,0,22,46,98,97,110,110,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,24,46,98,97,110,110,101,114,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,21,46,98,97,110,110,101,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,22,46,98,97,110,110,101,114,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,15,46,98,97,110,110,101,114,45,99,111,111,107,105,101,115,8,0,17,46,98,97,110,110,101,114,45,99,111,111,107,105,101,115,45,50,8,0,21,46,98,97,110,110,101,114,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,20,46,98,97,110,110,101,114,45,99,111,111,107,105,101,115,45,115,104,111,119,8,0,23,46,98,97,110,110,101,114,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,24,46,98,97,110,110,101,114,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,20,46,98,97,110,110,101,114,45,101,115,112,97,45,119,114,97,112,112,101,114,8,0,17,46,98,97,110,110,101,114,45,101,117,45,99,111,111,107,105,101,8,0,12,46,98,97,110,110,101,114,45,103,100,112,114,8,0,12,46,98,97,110,110,101,114,45,108,103,112,100,8,0,20,46,98,97,110,110,101,114,45,108,103,112,100,45,99,111,110,115,101,110,116,8,0,30,46,98,97,110,110,101,114,45,108,103,112,100,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,22,46,98,97,110,110,101,114,45,108,103,112,100,45,99,111,110,116,97,105,110,101,114,8,0,23,46,98,97,110,110,101,114,45,108,103,112,100,95,95,99,111,110,116,97,105,110,101,114,8,0,22,46,98,97,110,110,101,114,45,109,101,115,115,97,103,101,45,99,112,111,112,117,112,8,0,19,46,98,97,110,110,101,114,45,112,111,108,105,99,121,45,119,114,97,112,8,0,13,46,98,97,110,110,101,114,67,111,111,107,105,101,8,0,14,46,98,97,110,110,101,114,67,111,111,107,105,101,115,8,0,20,46,98,97,110,110,101,114,73,110,102,111,114,109,97,116,105,118,97,69,85,8,0,11,46,98,97,110,110,101,114,76,71,80,68,8,0,24,46,98,97,110,110,101,114,80,114,105,118,97,99,121,65,99,99,101,112,116,97,110,99,101,8,0,30,46,98,97,110,110,101,114,91,100,97,116,97,45,98,97,110,110,101,114,61,34,99,111,111,107,105,101,115,34,93,8,0,16,46,98,97,110,110,101,114,95,95,99,111,111,107,105,101,115,8,0,24,46,98,97,110,110,101,114,95,95,111,118,101,114,108,97,121,45,45,99,111,111,107,105,101,8,0,22,46,98,97,110,110,101,114,95,97,99,99,101,112,116,95,99,111,111,107,105,101,115,8,0,13,46,98,97,110,110,101,114,95,99,111,107,105,101,8,0,23,46,98,97,110,110,101,114,95,99,111,110,115,101,110,115,111,95,99,111,111,107,105,101,8,0,14,46,98,97,110,110,101,114,95,99,111,111,107,105,101,8,0,15,46,98,97,110,110,101,114,95,99,111,111,107,105,101,115,8,0,12,46,98,97,110,110,101,114,95,108,103,112,100,8,0,14,46,98,97,110,110,101,114,95,112,111,108,105,99,121,8,0,13,46,98,97,110,110,101,114,99,111,111,107,105,101,8,0,16,46,98,97,110,110,105,101,114,101,67,111,111,107,105,101,115,8,0,16,46,98,97,110,110,105,101,114,101,95,99,111,111,107,105,101,8,0,15,46,98,97,110,110,105,101,114,101,99,111,111,107,105,101,8,0,16,46,98,97,114,45,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,98,97,114,45,45,99,111,111,107,105,101,110,111,116,101,8,0,13,46,98,97,114,45,45,99,111,111,107,105,101,115,8,0,11,46,98,97,114,45,99,111,111,107,105,101,8,0,12,46,98,97,114,45,99,111,111,107,105,101,115,8,0,16,46,98,97,114,45,99,111,111,107,105,101,115,45,103,116,109,8,0,15,46,98,97,114,45,99,111,111,107,105,101,115,45,112,104,8,0,15,46,98,97,114,45,101,117,45,99,111,111,107,105,101,115,8,0,11,46,98,97,114,46,99,111,111,107,105,101,8,0,19,46,98,97,114,46,117,100,99,45,98,97,114,45,104,111,108,100,101,114,8,0,10,46,98,97,114,67,111,111,107,105,101,8,0,12,46,98,97,114,95,112,114,105,118,97,99,121,8,0,23,46,98,97,114,114,97,45,97,118,105,115,111,45,112,114,105,118,97,99,105,100,97,100,8,0,13,46,98,97,114,114,97,45,99,111,111,107,105,101,8,0,14,46,98,97,114,114,97,45,99,111,111,107,105,101,115,8,0,20,46,98,97,114,114,97,45,99,111,111,107,105,101,115,45,109,111,100,97,108,8,0,13,46,98,97,114,114,97,95,99,111,111,107,105,101,8,0,14,46,98,97,114,114,97,95,99,111,111,107,105,101,115,8,0,13,46,98,97,114,114,101,45,99,111,111,107,105,101,8,0,19,46,98,97,114,114,101,45,105,110,102,111,45,99,111,111,107,105,101,115,8,0,18,46,98,97,114,114,101,73,110,102,111,67,111,111,107,105,101,115,50,8,0,14,46,98,97,114,114,101,95,95,99,111,111,107,105,101,8,0,13,46,98,97,114,114,101,95,99,111,111,107,105,101,8,0,14,46,98,97,114,114,101,95,99,111,111,107,105,101,115,8,0,13,46,98,97,115,101,45,99,111,111,107,105,101,115,8,0,33,46,98,97,115,101,95,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,20,46,98,97,115,101,108,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,17,46,98,97,115,101,108,95,99,111,111,107,105,101,95,98,97,114,8,0,38,46,98,97,115,105,99,45,45,100,114,97,119,45,109,101,115,115,97,103,101,45,98,97,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,29,46,98,97,115,105,99,95,102,101,97,116,117,114,101,115,45,99,111,111,107,105,101,109,101,115,115,97,103,101,8,0,18,46,98,97,117,49,48,48,95,99,111,111,107,105,101,45,98,97,114,8,0,18,46,98,97,117,95,95,99,111,111,107,105,101,98,97,110,110,101,114,8,0,24,46,98,97,121,101,114,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,18,46,98,98,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,17,46,98,98,45,99,111,110,115,101,110,116,98,97,110,110,101,114,8,0,17,46,98,98,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,11,46,98,98,45,99,111,111,107,105,101,115,8,0,26,46,98,98,45,99,111,111,107,105,101,115,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,8,0,26,46,98,98,45,104,101,97,100,101,114,95,95,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,18,46,98,98,97,45,112,111,112,117,112,45,99,111,111,107,105,101,115,8,0,19,46,98,98,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,17,46,98,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,21,46,98,99,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,22,46,98,99,79,112,116,73,110,79,112,116,111,117,116,78,111,116,105,102,105,101,114,8,0,13,46,98,99,101,101,45,99,111,111,107,105,101,115,8,0,21,46,98,99,101,107,109,101,99,101,95,99,111,111,107,105,101,115,95,100,105,118,8,0,9,46,98,99,111,111,107,105,101,122,8,0,19,46,98,99,112,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,8,0,19,46,98,100,66,117,122,122,67,111,111,107,105,101,80,111,108,105,99,121,8,0,10,46,98,100,99,111,111,107,105,101,115,8,0,19,46,98,100,101,119,95,95,99,111,111,107,105,101,98,97,110,110,101,114,8,0,24,46,98,100,102,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,23,46,98,100,115,95,109,105,110,105,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,23,46,98,100,117,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,8,0,26,46,98,101,45,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,97,114,8,0,38,46,98,101,97,110,115,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,99,111,110,116,97,105,110,101,114,8,0,11,46,98,101,108,45,99,111,111,107,105,101,8,0,18,46,98,101,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,15,46,98,101,110,103,111,114,45,99,111,111,107,105,101,115,8,0,23,46,98,101,116,116,101,114,119,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,12,46,98,101,117,99,45,99,111,111,107,105,101,8,0,18,46,98,101,122,122,111,45,99,111,111,107,105,101,115,45,98,97,114,8,0,20,46,98,102,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,18,46,98,102,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,12,46,98,102,95,103,100,112,114,95,98,111,120,8,0,10,46,98,103,95,99,111,111,107,105,101,8,0,11,46,98,103,95,99,111,111,107,105,101,115,8,0,14,46,98,103,95,103,100,112,114,95,112,111,112,117,112,8,0,10,46,98,103,99,111,111,107,105,101,115,8,0,28,46,98,104,45,99,111,111,107,105,101,115,45,112,111,112,117,112,45,98,97,99,107,103,114,111,117,110,100,8,0,19,46,98,104,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,18,46,98,104,45,108,97,121,101,114,67,111,111,107,105,101,76,97,119,8,0,19,46,98,104,67,111,111,107,105,101,66,111,120,87,114,97,112,112,101,114,8,0,12,46,98,105,99,97,45,105,110,108,105,110,101,8,0,23,46,98,105,99,101,118,105,100,97,95,102,105,120,101,100,45,99,111,111,107,105,101,115,8,0,15,46,98,105,112,80,97,115,101,107,67,111,111,107,105,101,8,0,19,46,98,105,115,99,111,116,116,111,46,115,99,45,98,111,116,116,111,109,8,0,16,46,98,105,115,99,117,105,116,45,109,101,115,115,97,103,101,8,0,14,46,98,105,115,99,117,105,116,45,117,115,97,103,101,8,0,19,46,98,105,115,99,117,105,116,98,111,120,45,119,114,97,112,112,101,114,8,0,15,46,98,105,115,99,117,105,116,115,45,117,115,97,103,101,8,0,25,46,98,107,45,99,111,111,107,105,101,45,97,108,101,114,116,45,115,110,97,99,107,98,97,114,8,0,20,46,98,107,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,18,46,98,107,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,13,46,98,107,45,99,111,111,107,105,101,66,97,114,8,0,11,46,98,107,45,99,111,111,107,105,101,115,8,0,20,46,98,107,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,11,46,98,107,103,95,99,111,111,107,105,101,8,0,16,46,98,108,97,99,107,45,98,103,45,99,111,111,107,105,101,8,0,20,46,98,108,105,110,100,116,111,111,108,98,111,120,45,99,111,111,107,105,101,8,0,11,46,98,108,107,45,67,111,111,107,105,101,8,0,15,46,98,108,107,45,68,105,115,99,108,97,105,109,101,114,8,0,22,46,98,108,107,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,13,46,98,108,107,95,99,111,111,99,107,105,101,115,8,0,19,46,98,108,111,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,14,46,98,108,111,99,45,99,111,111,107,105,101,45,100,8,0,13,46,98,108,111,99,45,99,111,111,107,105,101,115,8,0,11,46,98,108,111,99,67,111,111,107,105,101,8,0,12,46,98,108,111,99,67,111,111,107,105,101,115,8,0,10,46,98,108,111,99,95,99,110,105,108,8,0,12,46,98,108,111,99,95,99,111,111,107,105,101,8,0,21,46,98,108,111,99,95,99,111,111,107,105,101,95,116,114,97,99,107,105,110,103,8,0,13,46,98,108,111,99,95,99,111,111,107,105,101,115,8,0,11,46,98,108,111,99,99,111,111,107,105,101,8,0,27,46,98,108,111,99,107,45,45,98,101,97,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,31,46,98,108,111,99,107,45,45,98,108,111,99,107,45,109,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,14,46,98,108,111,99,107,45,45,99,111,111,107,105,101,8,0,22,46,98,108,111,99,107,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,27,46,98,108,111,99,107,45,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,21,46,98,108,111,99,107,45,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,25,46,98,108,111,99,107,45,45,109,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,18,46,98,108,111,99,107,45,67,111,111,107,105,101,66,108,111,99,107,8,0,21,46,98,108,111,99,107,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,20,46,98,108,111,99,107,45,97,114,116,119,104,101,114,101,45,103,100,112,114,8,0,20,46,98,108,111,99,107,45,97,119,97,118,101,45,99,111,110,115,101,110,116,8,0,21,46,98,108,111,99,107,45,98,52,110,45,99,111,111,107,105,101,45,98,97,114,8,0,18,46,98,108,111,99,107,45,98,110,102,45,99,111,111,107,105,101,115,8,0,26,46,98,108,111,99,107,45,99,105,112,105,120,45,99,111,111,107,105,101,99,111,110,116,114,111,108,8,0,25,46,98,108,111,99,107,45,99,108,99,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,27,46,98,108,111,99,107,45,99,111,111,107,105,101,45,97,99,99,101,112,116,45,110,111,116,105,102,121,8,0,22,46,98,108,111,99,107,45,99,111,111,107,105,101,45,97,112,112,114,111,118,97,108,8,0,20,46,98,108,111,99,107,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,26,46,98,108,111,99,107,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,98,108,111,99,107,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,19,46,98,108,111,99,107,45,99,111,111,107,105,101,45,117,115,97,103,101,8,0,23,46,98,108,111,99,107,45,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,8,0,18,46,98,108,111,99,107,45,99,111,111,107,105,101,112,111,112,117,112,8,0,21,46,98,108,111,99,107,45,99,111,111,107,105,101,115,45,97,108,101,114,116,101,8,0,27,46,98,108,111,99,107,45,99,111,111,107,105,101,115,45,100,105,97,108,111,103,45,98,108,111,99,107,8,0,26,46,98,108,111,99,107,45,99,111,111,107,105,101,115,45,105,110,102,111,114,109,97,116,105,111,110,8,0,20,46,98,108,111,99,107,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,19,46,98,108,111,99,107,45,99,111,111,107,105,101,115,45,114,103,112,100,8,0,25,46,98,108,111,99,107,45,99,111,111,107,105,101,115,45,114,103,112,100,45,98,108,111,99,107,8,0,22,46,98,108,111,99,107,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,20,46,98,108,111,99,107,45,99,111,111,107,105,101,115,97,99,116,105,118,101,8,0,20,46,98,108,111,99,107,45,101,117,99,111,111,107,105,101,98,108,111,99,107,8,0,25,46,98,108,111,99,107,45,103,100,112,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,98,108,111,99,107,45,105,110,102,111,45,99,111,111,107,105,101,8,0,27,46,98,108,111,99,107,45,107,104,115,116,45,99,111,111,107,105,101,45,97,112,112,114,111,118,97,108,8,0,17,46,98,108,111,99,107,45,108,115,119,45,99,111,111,107,105,101,8,0,28,46,98,108,111,99,107,45,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,115,8,0,18,46,98,108,111,99,107,45,112,111,114,45,99,111,111,107,105,101,115,8,0,11,46,98,108,111,99,107,45,114,103,112,100,8,0,24,46,98,108,111,99,107,45,118,105,116,111,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,24,46,98,108,111,99,107,45,119,97,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,8,0,25,46,98,108,111,99,107,45,119,97,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,14,46,98,108,111,99,107,46,99,111,111,107,105,101,115,8,0,28,46,98,108,111,99,107,67,111,111,107,105,101,65,103,114,101,101,109,101,110,116,87,114,97,112,112,101,114,8,0,18,46,98,108,111,99,107,67,111,111,107,105,101,66,97,110,110,101,114,8,0,18,46,98,108,111,99,107,67,111,111,107,105,101,78,111,116,105,99,101,8,0,24,46,98,108,111,99,107,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,13,46,98,108,111,99,107,67,111,111,107,105,101,115,8,0,23,46,98,108,111,99,107,95,95,99,111,110,116,101,110,116,45,99,111,111,107,105,101,115,8,0,20,46,98,108,111,99,107,95,95,119,105,110,100,111,119,45,45,103,100,112,114,8,0,14,46,98,108,111,99,107,95,99,111,110,115,101,110,116,8,0,13,46,98,108,111,99,107,95,99,111,111,107,105,101,8,0,19,46,98,108,111,99,107,95,99,111,111,107,105,101,45,45,115,104,111,119,8,0,19,46,98,108,111,99,107,95,99,111,111,107,105,101,95,112,111,112,117,112,8,0,19,46,98,108,111,99,107,95,109,101,115,115,95,99,111,111,107,105,101,115,8,0,13,46,98,108,111,99,107,99,111,111,107,105,101,115,8,0,25,46,98,108,111,99,107,110,97,118,45,103,101,115,116,105,111,110,45,99,111,111,107,105,101,115,8,0,16,46,98,108,111,103,67,111,111,107,105,101,67,111,118,101,114,8,0,13,46,98,108,111,103,95,95,99,111,111,107,105,101,8,0,15,46,98,108,111,113,117,101,45,99,111,111,107,105,101,115,8,0,19,46,98,108,111,113,117,101,76,101,103,97,108,67,111,111,107,105,101,115,8,0,22,46,98,108,111,113,117,101,95,118,101,110,116,97,110,97,67,111,111,107,105,101,115,8,0,14,46,98,108,111,113,117,101,99,111,111,107,105,101,115,8,0,18,46,98,108,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,19,46,98,108,117,101,108,97,98,115,45,103,100,112,114,95,95,98,97,114,8,0,20,46,98,108,117,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,9,46,98,109,99,111,111,107,105,101,8,0,17,46,98,109,103,45,103,100,112,114,45,119,114,97,112,112,101,114,8,0,29,46,98,109,106,45,99,111,111,107,105,101,45,110,111,116,105,99,101,98,97,114,45,99,111,110,116,101,110,116,8,0,12,46,98,109,112,45,99,111,111,107,105,101,115,8,0,21,46,98,109,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,22,46,98,109,117,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,31,46,98,109,119,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,104,111,108,100,101,114,8,0,16,46,98,110,45,99,111,111,107,105,101,45,112,97,110,101,108,8,0,28,46,98,110,45,99,111,111,107,105,101,45,112,114,111,109,112,116,95,95,99,111,110,116,97,105,110,101,114,8,0,11,46,98,110,45,99,111,111,107,105,101,115,8,0,14,46,98,110,45,99,111,111,107,105,101,115,45,119,114,8,0,14,46,98,110,116,95,99,111,111,107,105,101,66,97,114,8,0,12,46,98,111,99,45,99,111,111,107,105,101,115,8,0,46,46,98,111,100,121,45,111,118,101,114,108,97,121,91,100,97,116,97,45,115,104,111,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,93,8,0,16,46,98,111,100,121,45,119,97,114,110,67,111,111,107,105,101,8,0,21,46,98,111,108,100,99,111,111,107,105,101,66,97,114,79,118,101,114,108,97,121,8,0,16,46,98,111,110,105,97,108,67,109,112,66,97,110,110,101,114,8,0,19,46,98,111,111,116,111,109,45,99,111,111,107,105,101,45,119,114,97,112,8,0,20,46,98,111,114,100,101,114,45,99,111,111,107,105,101,66,111,114,100,101,114,8,0,18,46,98,111,114,108,97,98,115,67,111,111,107,105,101,83,104,111,119,8,0,20,46,98,111,114,110,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,13,46,98,111,114,110,45,99,111,111,107,105,101,115,8,0,19,46,98,111,116,116,111,109,45,45,99,111,111,107,105,101,45,98,97,114,8,0,27,46,98,111,116,116,111,109,45,45,99,111,111,107,105,101,45,98,97,114,45,111,118,101,114,108,97,121,8,0,17,46,98,111,116,116,111,109,45,48,46,99,111,111,107,105,101,115,8,0,18,46,98,111,116,116,111,109,45,98,97,114,45,99,111,111,107,105,101,8,0,19,46,98,111,116,116,111,109,45,98,97,114,45,99,111,111,107,105,101,115,8,0,20,46,98,111,116,116,111,109,45,99,111,111,107,105,101,45,98,108,111,99,107,8,0,22,46,98,111,116,116,111,109,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,19,46,98,111,116,116,111,109,45,99,111,111,107,105,101,45,105,110,102,111,8,0,19,46,98,111,116,116,111,109,45,99,111,111,107,105,101,45,119,114,97,112,8,0,22,46,98,111,116,116,111,109,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,24,46,98,111,116,116,111,109,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,45,50,8,0,26,46,98,111,116,116,111,109,45,99,111,111,107,105,101,115,45,98,97,99,107,103,114,111,117,110,100,8,0,22,46,98,111,116,116,111,109,45,99,111,111,107,105,101,115,45,111,114,101,100,101,114,8,0,28,46,98,111,116,116,111,109,45,122,111,110,101,95,95,112,114,105,118,97,99,121,45,112,111,108,105,99,121,8,0,23,46,98,111,116,116,111,109,46,99,111,111,107,105,101,95,95,115,101,99,116,105,111,110,8,0,12,46,98,111,116,116,111,109,65,108,101,114,116,8,0,14,46,98,111,116,116,111,109,67,111,111,107,105,101,115,8,0,17,46,98,111,116,116,111,109,80,114,105,118,97,99,121,65,108,108,8,0,21,46,98,111,116,116,111,109,95,95,99,111,111,107,105,101,45,98,108,111,99,107,8,0,14,46,98,111,116,116,111,109,95,99,111,111,107,105,101,8,0,20,46,98,111,116,116,111,109,95,99,111,111,107,105,101,95,98,108,111,99,107,8,0,23,46,98,111,116,116,111,109,95,111,112,116,111,117,116,95,97,110,110,111,117,110,99,101,8,0,12,46,98,111,120,45,45,99,111,111,107,105,101,8,0,13,46,98,111,120,45,45,99,111,111,107,105,101,115,8,0,19,46,98,111,120,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,15,46,98,111,120,45,97,103,114,101,101,45,103,100,112,114,8,0,24,46,98,111,120,45,97,108,101,114,116,45,99,111,111,107,105,101,45,105,110,115,105,100,101,8,0,18,46,98,111,120,45,97,118,105,115,111,45,99,111,111,107,105,101,115,8,0,11,46,98,111,120,45,99,111,111,107,105,101,8,0,19,46,98,111,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,98,111,120,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,19,46,98,111,120,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,8,0,21,46,98,111,120,45,99,111,111,107,105,101,45,100,105,115,99,108,97,109,101,114,8,0,18,46,98,111,120,45,99,111,111,107,105,101,45,101,117,45,108,97,119,8,0,25,46,98,111,120,45,99,111,111,107,105,101,45,105,110,102,111,45,45,111,118,101,114,108,97,121,8,0,18,46,98,111,120,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,12,46,98,111,120,45,99,111,111,107,105,101,115,8,0,16,46,98,111,120,45,105,110,102,111,45,99,111,111,107,105,101,8,0,32,46,98,111,120,45,112,111,108,105,116,105,99,97,45,112,114,105,118,97,99,105,100,97,100,101,45,102,111,111,116,101,114,8,0,16,46,98,111,120,45,116,120,116,45,99,111,111,107,105,101,115,8,0,16,46,98,111,120,65,118,118,105,115,111,67,111,111,107,105,101,8,0,13,46,98,111,120,67,104,107,67,111,111,107,105,101,8,0,17,46,98,111,120,67,104,107,67,111,111,107,105,101,87,114,97,112,8,0,17,46,98,111,120,67,111,110,116,101,110,116,67,111,111,107,105,101,8,0,11,46,98,111,120,95,67,111,111,107,105,101,8,0,11,46,98,111,120,95,99,111,111,107,105,101,8,0,17,46,98,111,120,95,99,111,111,107,105,101,95,97,108,108,111,119,8,0,12,46,98,111,120,95,99,111,111,107,105,101,115,8,0,23,46,98,111,120,122,105,108,108,97,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,17,46,98,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,25,46,98,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,8,0,18,46,98,112,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,28,46,98,112,120,45,114,103,112,100,45,99,111,111,107,105,101,45,98,111,116,116,111,109,80,97,110,101,108,8,0,20,46,98,113,103,108,111,98,97,108,114,103,112,100,45,98,97,110,110,101,114,8,0,13,46,98,114,45,99,111,111,107,105,101,98,97,114,8,0,23,46,98,114,97,98,111,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,33,46,98,114,101,119,115,116,101,114,45,99,111,111,107,105,101,45,98,97,114,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,23,46,98,114,105,110,103,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,18,46,98,114,107,95,101,117,95,99,111,111,107,105,101,95,109,115,103,8,0,30,46,98,114,111,119,115,101,114,102,101,97,116,117,114,101,115,45,99,111,111,107,105,101,115,110,101,101,100,101,100,8,0,13,46,98,114,117,117,116,45,99,111,111,107,105,101,8,0,17,46,98,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,12,46,98,115,45,103,100,112,114,45,108,97,119,8,0,16,46,98,115,45,112,111,112,117,112,45,99,111,111,107,105,101,8,0,46,46,98,115,45,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,119,45,112,114,111,118,105,100,101,114,45,111,118,101,114,108,97,121,8,0,16,46,98,115,45,115,117,111,112,45,99,111,111,107,105,101,115,8,0,17,46,98,115,45,119,114,97,112,45,103,100,112,114,45,108,97,119,8,0,18,46,98,115,116,97,114,45,99,111,111,107,105,101,45,105,110,102,111,8,0,23,46,98,115,116,99,109,102,119,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,25,46,98,116,119,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,105,100,103,101,116,8,0,24,46,98,116,120,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,23,46,98,116,122,45,99,111,111,107,105,101,45,112,111,112,117,112,95,95,99,97,114,100,8,0,19,46,98,117,104,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,10,46,98,117,116,116,101,114,66,97,114,8,0,19,46,98,117,116,116,101,114,66,97,114,45,45,112,114,105,118,97,99,121,8,0,13,46,98,118,67,111,111,107,105,101,115,66,97,114,8,0,10,46,98,119,45,99,111,111,107,105,101,8,0,16,46,98,119,67,111,111,107,105,101,77,101,115,115,97,103,101,8,0,15,46,98,119,112,45,99,111,111,107,105,101,45,98,97,114,8,0,27,46,98,119,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,15,46,98,120,45,105,110,102,111,45,99,111,111,107,105,101,8,0,33,46,98,120,45,108,97,110,100,105,110,103,45,99,111,111,107,105,101,115,45,112,111,112,117,112,45,119,97,114,110,105,110,103,8,0,22,46,98,120,45,109,97,105,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,24,46,98,120,115,116,45,109,97,105,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,17,46,98,121,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,20,46,98,121,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,10,46,98,122,45,99,111,111,107,105,101,8,0,15,46,99,45,67,111,111,107,105,101,66,97,110,110,101,114,8,0,19,46,99,45,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,8,0,15,46,99,45,67,111,111,107,105,101,78,111,116,105,99,101,8,0,16,46,99,45,97,99,99,101,112,116,45,99,111,111,107,105,101,8,0,16,46,99,45,97,108,101,114,116,45,45,99,111,111,107,105,101,8,0,15,46,99,45,97,108,101,114,116,45,99,111,111,107,105,101,8,0,23,46,99,45,97,110,110,111,117,110,99,101,109,101,110,116,45,45,99,111,111,107,105,101,8,0,14,46,99,45,97,112,112,45,99,111,111,107,105,101,115,8,0,22,46,99,45,97,112,112,45,99,111,111,107,105,101,115,45,45,98,111,116,116,111,109,8,0,22,46,99,45,97,112,112,45,99,111,111,107,105,101,115,45,45,114,105,98,98,111,110,8,0,12,46,99,45,97,112,112,66,97,110,110,101,114,8,0,15,46,99,45,98,97,110,100,101,97,117,45,114,103,112,100,8,0,16,46,99,45,98,97,110,110,101,114,45,99,111,111,107,105,101,8,0,16,46,99,45,98,97,110,110,101,114,99,111,111,107,105,101,115,8,0,24,46,99,45,98,97,110,110,101,114,99,111,111,107,105,101,115,45,45,111,112,101,110,101,100,8,0,19,46,99,45,98,97,110,110,101,114,115,95,95,119,114,97,112,112,101,114,8,0,16,46,99,45,98,97,114,114,97,95,99,111,111,107,105,101,115,8,0,29,46,99,45,98,103,45,115,101,99,111,110,100,97,114,121,46,99,99,45,98,111,116,116,111,109,45,98,97,114,8,0,15,46,99,45,99,110,105,108,45,119,114,97,112,112,101,114,8,0,15,46,99,45,99,111,110,115,101,110,116,45,102,111,114,109,8,0,18,46,99,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,8,0,25,46,99,45,99,111,110,115,101,110,116,76,97,121,101,114,95,95,105,110,110,101,114,66,111,120,8,0,18,46,99,45,99,111,110,115,101,110,116,84,114,97,99,107,105,110,103,8,0,15,46,99,45,99,111,110,115,101,110,116,95,95,98,97,114,8,0,16,46,99,45,99,111,110,115,101,110,116,99,111,111,107,105,101,8,0,24,46,99,45,99,111,110,115,101,110,116,99,111,111,107,105,101,45,45,97,99,116,105,118,101,8,0,21,46,99,45,99,111,111,107,105,101,45,45,100,105,115,99,108,97,105,109,101,114,8,0,16,46,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,25,46,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,45,100,101,102,97,117,108,116,8,0,26,46,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,119,114,97,112,112,101,114,8,0,27,46,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,95,98,97,99,107,103,114,111,117,110,100,8,0,22,46,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,95,109,111,100,97,108,8,0,13,46,99,45,99,111,111,107,105,101,45,98,97,114,8,0,15,46,99,45,99,111,111,107,105,101,45,98,108,111,99,107,8,0,13,46,99,45,99,111,111,107,105,101,45,98,111,120,8,0,22,46,99,45,99,111,111,107,105,101,45,99,111,110,102,105,103,117,114,97,116,111,114,8,0,17,46,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,26,46,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,100,101,102,97,117,108,116,8,0,24,46,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,23,46,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,8,0,20,46,99,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,14,46,99,45,99,111,111,107,105,101,45,105,110,102,111,8,0,21,46,99,45,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,8,0,13,46,99,45,99,111,111,107,105,101,45,108,97,119,8,0,17,46,99,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,20,46,99,45,99,111,111,107,105,101,45,109,115,103,45,104,111,108,100,101,114,8,0,14,46,99,45,99,111,111,107,105,101,45,110,111,116,101,8,0,16,46,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,23,46,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,95,95,112,111,112,117,112,8,0,22,46,99,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,26,46,99,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,8,0,18,46,99,45,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,8,0,15,46,99,45,99,111,111,107,105,101,45,112,97,110,101,108,8,0,16,46,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,18,46,99,45,99,111,111,107,105,101,45,112,111,112,117,110,100,101,114,8,0,17,46,99,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,23,46,99,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,112,97,110,101,108,8,0,17,46,99,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,15,46,99,45,99,111,111,107,105,101,65,99,99,101,112,116,8,0,15,46,99,45,99,111,111,107,105,101,66,97,110,110,101,114,8,0,24,46,99,45,99,111,111,107,105,101,66,97,110,110,101,114,45,45,111,118,101,114,108,97,121,8,0,12,46,99,45,99,111,111,107,105,101,66,97,114,8,0,18,46,99,45,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,15,46,99,45,99,111,111,107,105,101,80,111,108,105,99,121,8,0,19,46,99,45,99,111,111,107,105,101,80,111,108,105,99,121,45,98,111,120,8,0,17,46,99,45,99,111,111,107,105,101,95,95,98,97,110,110,101,114,8,0,20,46,99,45,99,111,111,107,105,101,95,95,99,111,110,116,97,105,110,101,114,8,0,26,46,99,45,99,111,111,107,105,101,95,95,109,101,115,115,97,103,101,45,45,109,105,100,100,108,101,8,0,15,46,99,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,12,46,99,45,99,111,111,107,105,101,98,97,114,8,0,13,46,99,45,99,111,111,107,105,101,104,105,110,116,8,0,14,46,99,45,99,111,111,107,105,101,112,111,112,117,112,8,0,25,46,99,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,110,99,101,45,109,115,103,8,0,16,46,99,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,14,46,99,45,99,111,111,107,105,101,115,45,98,97,114,8,0,16,46,99,45,99,111,111,107,105,101,115,45,98,108,111,99,107,8,0,18,46,99,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,8,0,27,46,99,45,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,45,109,111,100,97,108,8,0,15,46,99,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,17,46,99,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,8,0,30,46,99,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,8,0,20,46,99,45,99,111,111,107,105,101,115,68,105,115,99,108,97,105,109,101,114,8,0,15,46,99,45,99,111,111,107,105,101,115,80,97,110,101,108,8,0,17,46,99,45,99,111,111,107,105,101,115,95,95,97,108,101,114,116,8,0,15,46,99,45,99,111,111,107,105,101,115,95,95,98,97,114,8,0,21,46,99,45,99,111,111,107,105,101,115,95,95,99,111,110,116,97,105,110,101,114,8,0,19,46,99,45,99,111,111,107,105,101,115,95,95,99,111,110,116,101,110,116,8,0,17,46,99,45,99,111,111,107,105,101,115,95,95,102,114,97,109,101,8,0,17,46,99,45,99,111,111,107,105,101,115,95,95,112,111,112,117,112,8,0,19,46,99,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,16,46,99,45,99,111,111,107,105,101,119,97,114,110,105,110,103,8,0,17,46,99,45,100,105,97,108,111,103,45,45,99,111,111,107,105,101,8,0,8,46,99,45,100,115,103,118,111,8,0,20,46,99,45,102,108,111,97,116,105,110,103,46,99,45,119,105,110,100,111,119,8,0,24,46,99,45,102,110,100,45,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,8,0,20,46,99,45,102,111,111,116,101,114,45,99,111,111,107,105,101,45,98,105,103,8,0,18,46,99,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,115,8,0,15,46,99,45,103,99,45,99,111,111,107,105,101,98,97,114,8,0,13,46,99,45,103,100,112,114,45,97,108,101,114,116,8,0,14,46,99,45,103,100,112,114,45,98,97,110,110,101,114,8,0,12,46,99,45,103,100,112,114,80,111,112,117,112,8,0,10,46,99,45,103,100,112,114,98,97,114,8,0,13,46,99,45,103,100,112,114,99,111,111,107,105,101,8,0,19,46,99,45,104,101,97,100,98,97,110,100,45,99,111,111,107,105,101,115,8,0,15,46,99,45,105,110,102,111,45,45,99,111,111,107,105,101,8,0,15,46,99,45,106,115,45,99,111,111,107,105,101,98,111,120,8,0,14,46,99,45,108,101,103,97,108,66,97,110,110,101,114,8,0,24,46,99,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,20,46,99,45,110,111,116,105,99,101,46,99,45,102,108,111,97,116,105,110,103,8,0,28,46,99,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,95,95,111,118,101,114,108,97,121,8,0,16,46,99,45,110,111,116,105,102,121,45,99,111,111,107,105,101,8,0,18,46,99,45,111,110,101,116,114,117,115,116,45,98,97,99,107,117,112,8,0,16,46,99,45,112,111,112,105,110,45,99,111,111,107,105,101,115,8,0,22,46,99,45,112,111,112,117,112,45,99,111,111,107,105,101,45,115,105,109,112,108,101,8,0,24,46,99,45,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,45,109,111,100,97,108,8,0,17,46,99,45,112,114,105,118,97,99,121,45,109,111,100,117,108,101,8,0,23,46,99,45,112,114,105,118,97,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,28,46,99,45,112,114,105,118,97,99,121,45,112,114,111,116,101,99,116,105,111,110,45,98,97,110,110,101,114,8,0,18,46,99,45,114,109,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,11,46,99,45,114,111,100,111,45,98,97,114,8,0,24,46,99,45,115,105,109,112,108,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,14,46,99,45,116,111,97,115,116,45,45,103,100,112,114,8,0,26,46,99,45,117,110,105,113,117,101,95,99,111,111,107,105,101,45,97,116,116,101,110,116,105,111,110,8,0,12,46,99,48,57,45,45,99,111,111,107,105,101,8,0,36,46,99,50,50,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,8,0,11,46,99,50,52,45,99,111,111,107,105,101,8,0,17,46,99,50,99,111,111,107,105,101,98,97,110,110,101,114,115,109,8,0,34,46,99,50,103,95,100,97,105,109,108,101,114,95,99,111,111,107,105,101,95,100,105,97,108,111,103,95,111,118,101,114,108,97,121,8,0,17,46,99,51,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,12,46,99,51,112,111,45,98,97,110,110,101,114,8,0,16,46,99,54,50,45,99,111,111,107,105,101,115,45,98,97,114,8,0,11,46,99,65,99,99,101,112,116,66,97,114,8,0,14,46,99,67,111,111,107,105,101,80,111,108,105,99,121,8,0,6,46,99,71,68,80,82,8,0,23,46,99,71,68,80,82,95,78,111,116,105,99,101,95,67,111,109,109,117,110,105,116,121,8,0,10,46,99,83,45,99,111,111,107,105,101,8,0,9,46,99,95,99,111,111,107,105,101,8,0,15,46,99,95,99,111,111,107,105,101,45,98,97,100,103,101,8,0,16,46,99,95,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,16,46,99,95,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,15,46,99,95,99,111,111,107,105,101,80,111,108,105,99,121,8,0,10,46,99,95,99,111,111,107,105,101,115,8,0,13,46,99,95,99,111,111,107,105,101,119,97,108,108,8,0,27,46,99,97,45,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,98,97,114,45,119,114,97,112,8,0,18,46,99,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,15,46,99,97,98,101,99,101,114,97,67,111,111,107,105,101,8,0,15,46,99,97,98,111,115,115,101,97,100,115,98,108,111,99,8,0,18,46,99,97,100,114,101,67,111,111,107,105,101,70,111,111,116,101,114,8,0,20,46,99,97,100,114,101,95,97,108,101,114,116,95,99,111,111,107,105,101,115,8,0,18,46,99,97,105,120,97,95,109,105,110,105,109,97,108,105,115,116,97,8,0,13,46,99,97,106,97,95,99,111,111,107,105,101,115,8,0,26,46,99,97,108,105,98,114,56,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,22,46,99,97,110,95,103,100,112,114,95,102,105,120,101,100,95,98,97,110,110,101,114,8,0,12,46,99,97,112,97,45,99,111,111,107,105,101,8,0,13,46,99,97,112,97,45,99,111,111,107,105,101,115,8,0,17,46,99,97,112,97,65,118,105,115,111,67,111,111,107,105,101,115,8,0,11,46,99,97,112,97,67,111,111,107,105,101,8,0,12,46,99,97,112,97,67,111,111,107,105,101,115,8,0,15,46,99,97,112,97,67,111,111,107,105,101,115,78,101,119,8,0,17,46,99,97,112,97,70,111,110,100,111,67,111,111,107,105,101,115,8,0,10,46,99,97,112,97,80,111,112,117,112,8,0,12,46,99,97,112,97,95,99,111,111,107,105,101,8,0,13,46,99,97,112,97,95,99,111,111,107,105,101,115,8,0,12,46,99,97,112,97,99,111,111,107,105,101,115,8,0,15,46,99,97,112,116,105,102,121,45,105,102,114,97,109,101,8,0,15,46,99,97,112,116,105,102,121,45,119,105,100,103,101,116,8,0,15,46,99,97,112,116,105,111,110,45,99,111,111,107,105,101,8,0,10,46,99,97,114,100,45,108,103,112,100,8,0,18,46,99,97,114,100,45,108,103,112,100,45,111,118,101,114,108,97,121,8,0,12,46,99,97,114,100,46,99,111,111,107,105,101,8,0,19,46,99,97,114,100,95,95,119,105,110,100,111,119,45,45,103,100,112,114,8,0,12,46,99,97,114,116,95,99,111,111,107,105,101,8,0,23,46,99,97,114,116,119,97,114,101,95,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,18,46,99,97,115,101,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,25,46,99,97,118,50,45,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,111,107,105,101,8,0,10,46,99,98,45,98,97,110,110,101,114,8,0,14,46,99,98,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,99,98,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,23,46,99,98,45,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,8,0,16,46,99,98,48,49,45,99,111,111,107,105,101,45,98,97,114,8,0,13,46,99,98,95,109,115,103,67,111,111,107,105,101,8,0,23,46,99,98,97,110,110,101,114,99,111,110,116,97,105,110,101,114,45,115,113,95,99,112,8,0,13,46,99,98,97,114,45,119,114,97,112,112,101,114,8,0,12,46,99,98,97,114,95,98,97,110,110,101,114,8,0,16,46,99,98,98,45,99,111,111,107,105,101,45,105,110,102,111,8,0,18,46,99,98,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,27,46,99,98,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,95,95,119,114,97,112,112,101,114,8,0,10,46,99,99,45,98,97,110,110,101,114,8,0,19,46,99,99,45,98,97,110,110,101,114,45,103,114,97,110,117,108,97,114,8,0,21,46,99,99,45,98,97,110,110,101,114,45,112,111,112,117,112,45,119,114,97,112,8,0,18,46,99,99,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,18,46,99,99,45,98,108,111,99,107,105,110,103,83,99,114,101,101,110,8,0,25,46,99,99,45,98,111,116,116,111,109,45,108,101,102,116,46,99,99,45,119,105,110,100,111,119,8,0,20,46,99,99,45,98,111,116,116,111,109,46,99,99,45,98,97,110,110,101,114,8,0,32,46,99,99,45,98,111,116,116,111,109,46,99,99,45,102,108,111,97,116,105,110,103,46,99,99,45,119,105,110,100,111,119,8,0,17,46,99,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,31,46,99,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,109,111,100,97,108,8,0,19,46,99,99,45,99,111,111,107,105,101,99,111,110,116,97,105,110,101,114,8,0,11,46,99,99,45,99,111,111,107,105,101,115,8,0,21,46,99,99,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,99,45,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,8,0,16,46,99,99,45,99,111,111,107,105,101,115,45,112,97,103,101,8,0,16,46,99,99,45,99,117,115,116,111,109,100,105,97,108,111,103,8,0,19,46,99,99,45,100,105,97,108,111,103,45,98,97,99,107,100,114,111,112,8,0,15,46,99,99,45,100,105,97,108,111,103,45,112,97,110,101,8,0,18,46,99,99,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,8,0,39,46,99,99,45,100,105,97,108,111,103,91,97,114,105,97,45,108,97,98,101,108,61,34,99,111,111,107,105,101,45,99,111,110,115,101,110,116,34,93,8,0,16,46,99,99,45,102,105,120,101,100,45,98,111,116,116,111,109,8,0,17,46,99,99,45,102,117,108,108,115,99,114,101,101,110,45,98,103,8,0,30,46,99,99,45,105,110,100,105,118,105,100,117,97,108,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,8,0,38,46,99,99,45,105,110,100,105,118,105,100,117,97,108,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,111,118,101,114,108,97,121,8,0,18,46,99,99,45,109,101,115,115,97,103,101,45,98,111,116,116,111,109,8,0,21,46,99,99,45,110,98,45,109,97,105,110,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,99,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,23,46,99,99,45,111,110,99,111,110,115,101,110,116,45,97,110,97,108,121,116,105,99,115,8,0,20,46,99,99,45,111,110,99,111,110,115,101,110,116,45,115,111,99,105,97,108,8,0,10,46,99,99,45,112,111,108,105,99,121,8,0,18,46,99,99,45,112,111,108,105,99,121,45,111,118,101,114,108,97,121,8,0,28,46,99,99,45,112,114,105,118,97,99,121,45,98,111,116,116,111,109,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,99,45,115,116,111,112,45,111,118,101,114,108,97,121,8,0,27,46,99,99,45,116,104,101,109,101,45,99,108,97,115,115,105,99,46,99,99,45,119,105,110,100,111,119,8,0,27,46,99,99,45,116,121,112,101,45,111,112,116,45,105,110,46,99,99,45,102,108,111,97,116,105,110,103,8,0,17,46,99,99,45,119,105,110,100,111,119,45,98,97,110,110,101,114,8,0,17,46,99,99,45,119,105,110,100,111,119,46,99,111,111,107,105,101,8,0,23,46,99,99,45,119,105,110,100,111,119,46,99,111,111,107,105,101,45,109,111,100,101,108,8,0,23,46,99,99,45,119,114,97,112,112,101,114,32,62,32,46,99,99,45,105,110,110,101,114,8,0,26,46,99,99,91,100,97,116,97,45,110,111,116,105,99,101,61,34,99,111,111,107,105,101,115,34,93,8,0,7,46,99,99,95,95,98,103,8,0,12,46,99,99,95,95,119,114,97,112,112,101,114,8,0,17,46,99,99,95,98,97,110,101,114,45,119,114,97,112,112,101,114,8,0,10,46,99,99,95,98,97,110,110,101,114,8,0,18,46,99,99,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,11,46,99,99,95,99,111,110,115,101,110,116,8,0,15,46,99,99,95,99,111,111,107,105,101,65,108,101,114,116,8,0,18,46,99,99,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,8,0,24,46,99,99,95,100,105,97,108,111,103,46,99,99,95,99,115,115,95,114,101,98,111,111,116,8,0,18,46,99,99,95,100,105,115,99,108,97,105,109,101,114,95,98,111,120,8,0,16,46,99,99,95,103,99,99,112,45,119,114,97,112,112,101,114,8,0,16,46,99,99,95,111,118,101,114,108,97,121,95,108,111,99,107,8,0,13,46,99,99,98,97,114,46,99,99,112,97,110,101,8,0,17,46,99,99,98,97,114,95,112,111,115,95,98,111,116,116,111,109,8,0,18,46,99,99,98,97,114,98,111,100,121,32,46,99,99,112,97,110,101,8,0,17,46,99,99,99,32,62,32,46,99,99,99,45,112,111,112,117,112,8,0,11,46,99,99,99,45,119,105,100,103,101,116,8,0,19,46,99,99,99,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,21,46,99,99,99,101,110,116,101,114,45,115,104,111,119,45,98,97,110,110,101,114,8,0,14,46,99,99,99,111,111,107,105,101,45,97,114,101,97,8,0,6,46,99,99,100,105,118,8,0,26,46,99,99,103,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,16,46,99,99,107,45,99,111,110,115,101,110,116,45,98,97,114,8,0,8,46,99,99,107,45,109,115,103,8,0,15,46,99,99,107,66,97,110,110,101,114,73,110,110,101,114,8,0,9,46,99,99,107,108,97,121,101,114,8,0,22,46,99,99,108,97,121,101,114,66,111,116,116,111,109,46,99,99,108,97,121,101,114,8,0,14,46,99,99,108,105,115,116,46,99,99,112,97,110,101,8,0,23,46,99,99,109,45,67,111,111,107,105,101,67,111,110,115,101,110,116,80,111,112,117,112,8,0,17,46,99,99,109,45,98,97,110,110,101,114,45,115,109,97,108,108,8,0,17,46,99,99,109,45,98,111,116,116,111,109,45,115,108,105,100,101,8,0,11,46,99,99,109,99,115,115,95,111,105,99,8,0,23,46,99,99,112,45,111,118,101,114,108,97,121,45,102,117,108,108,115,99,114,101,101,110,8,0,11,46,99,99,112,97,45,97,108,101,114,116,8,0,12,46,99,99,112,97,45,98,97,110,110,101,114,8,0,22,46,99,99,112,97,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,17,46,99,99,112,97,45,98,97,110,110,101,114,45,114,111,111,116,8,0,17,46,99,99,112,97,45,99,111,110,115,101,110,116,45,98,97,114,8,0,15,46,99,99,112,97,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,99,112,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,20,46,99,99,112,97,45,109,101,115,115,97,103,101,45,98,97,110,110,101,114,8,0,20,46,99,99,112,97,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,8,0,18,46,99,99,112,97,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,25,46,99,99,112,97,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,8,0,29,46,99,99,112,97,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,95,49,45,48,8,0,13,46,99,99,112,97,45,111,118,101,114,108,97,121,8,0,11,46,99,99,112,97,45,112,111,112,117,112,8,0,13,46,99,99,112,97,45,115,108,105,100,101,117,112,8,0,18,46,99,99,112,97,45,115,108,105,100,101,117,112,45,45,114,111,119,8,0,11,46,99,99,112,97,66,97,110,110,101,114,8,0,21,46,99,99,112,97,95,99,111,110,116,97,105,110,101,114,95,99,108,97,115,115,8,0,20,46,99,99,112,97,95,111,112,116,95,111,117,116,95,98,97,110,110,101,114,8,0,19,46,99,99,112,97,95,111,112,116,95,111,117,116,95,114,101,115,101,116,8,0,8,46,99,99,112,97,98,97,114,8,0,18,46,99,99,112,97,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,7,46,99,99,119,114,97,112,8,0,23,46,99,99,122,99,111,111,107,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,11,46,99,100,95,95,99,111,111,107,105,101,8,0,12,46,99,100,108,45,99,111,111,107,105,101,115,8,0,19,46,99,100,112,45,99,111,111,107,105,101,115,45,97,108,101,114,116,97,8,0,15,46,99,101,45,98,97,110,110,101,114,45,104,116,109,108,8,0,17,46,99,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,99,101,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,23,46,99,101,95,114,115,99,101,95,116,97,111,95,102,105,120,101,100,95,110,111,116,101,8,0,26,46,99,101,95,114,115,99,101,95,118,105,115,105,111,110,95,102,105,120,101,100,95,110,111,116,101,8,0,12,46,99,101,110,116,101,114,45,103,100,112,114,8,0,15,46,99,101,110,116,101,114,95,99,111,111,107,105,101,115,8,0,15,46,99,101,114,101,122,45,98,105,108,100,105,114,105,109,8,0,13,46,99,101,114,101,122,45,109,101,115,97,106,105,8,0,27,46,99,101,114,101,122,45,112,111,108,105,116,105,107,97,115,105,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,101,114,101,122,45,112,111,112,117,112,45,98,111,120,8,0,16,46,99,101,114,101,122,80,111,112,117,112,85,121,97,114,105,8,0,13,46,99,101,114,101,122,98,105,108,103,105,115,105,8,0,13,46,99,101,114,101,122,115,111,114,103,117,108,97,8,0,30,46,99,102,45,97,110,110,111,121,105,110,103,45,101,117,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,15,46,99,102,95,95,109,97,105,110,45,98,108,111,99,107,8,0,15,46,99,102,109,67,111,111,107,105,101,76,97,121,101,114,8,0,13,46,99,102,114,99,111,111,107,105,101,98,97,114,8,0,28,46,99,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,105,115,99,108,97,105,109,101,114,8,0,18,46,99,103,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,18,46,99,103,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,26,46,99,103,117,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,115,104,97,100,111,119,8,0,18,46,99,104,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,18,46,99,104,50,45,100,105,97,108,111,103,45,98,111,116,116,111,109,8,0,23,46,99,104,97,110,103,101,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,8,0,30,46,99,104,101,99,107,45,97,99,99,101,112,116,45,103,111,111,103,108,101,45,97,110,97,108,121,116,105,99,115,8,0,12,46,99,104,101,99,107,67,111,111,107,105,101,8,0,12,46,99,104,101,99,107,99,111,111,107,105,101,8,0,13,46,99,104,101,99,107,99,111,111,107,105,101,115,8,0,24,46,99,104,105,109,117,110,116,104,117,45,108,103,112,100,45,98,97,114,45,109,97,105,110,8,0,12,46,99,104,111,99,45,98,97,110,110,101,114,8,0,18,46,99,104,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,15,46,99,104,115,111,102,116,45,99,111,111,107,105,101,115,8,0,20,46,99,104,115,111,102,116,45,99,111,111,107,105,101,115,45,109,97,105,110,8,0,16,46,99,105,45,112,114,105,118,97,99,121,45,104,105,110,116,8,0,15,46,99,105,45,114,111,100,111,45,102,111,111,116,101,114,8,0,7,46,99,105,97,99,104,111,8,0,23,46,99,105,97,99,104,111,50,45,119,114,97,112,45,99,111,110,116,97,105,110,101,114,8,0,11,46,99,105,97,115,116,101,99,122,107,97,8,0,16,46,99,105,97,115,116,101,99,122,107,97,45,105,110,102,111,8,0,16,46,99,105,97,115,116,101,99,122,107,97,95,105,110,102,111,8,0,16,46,99,105,97,115,116,101,99,122,107,111,45,105,110,102,111,8,0,8,46,99,105,97,115,116,107,97,8,0,20,46,99,105,97,115,116,107,97,95,111,115,116,114,122,101,122,101,110,105,101,8,0,19,46,99,105,103,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,13,46,99,105,108,105,45,99,111,111,107,105,101,115,8,0,24,46,99,105,110,95,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,15,46,99,105,110,116,45,99,111,111,107,105,101,98,111,116,8,0,21,46,99,105,112,66,97,99,107,103,114,111,117,110,100,79,118,101,114,108,97,121,8,0,17,46,99,105,112,67,111,111,107,105,101,79,118,101,114,108,97,121,8,0,23,46,99,105,114,99,117,115,45,103,100,112,114,45,99,111,111,107,105,101,45,98,97,114,8,0,22,46,99,105,121,97,115,104,111,112,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,20,46,99,106,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,8,0,10,46,99,107,45,66,97,110,110,101,114,8,0,10,46,99,107,45,98,97,110,110,101,114,8,0,12,46,99,107,45,99,111,111,107,105,101,45,119,8,0,9,46,99,107,45,110,111,116,105,122,8,0,10,46,99,107,87,97,114,110,105,110,103,8,0,10,46,99,107,95,98,97,110,110,101,114,8,0,14,46,99,107,95,105,110,102,111,99,111,111,107,105,101,8,0,15,46,99,107,105,45,117,110,97,99,99,101,112,116,101,100,8,0,9,46,99,107,105,45,119,114,97,112,8,0,18,46,99,107,108,111,119,112,111,112,67,111,110,116,97,105,110,101,114,8,0,14,46,99,107,110,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,107,121,45,99,111,110,115,101,110,116,45,98,97,114,8,0,12,46,99,107,121,45,111,118,101,114,108,97,121,8,0,11,46,99,108,45,99,111,110,115,101,110,116,8,0,19,46,99,108,45,116,101,114,116,105,97,114,121,46,99,111,111,107,105,101,8,0,7,46,99,108,95,98,97,114,8,0,24,46,99,108,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,108,97,121,101,114,8,0,15,46,99,108,95,103,100,112,114,95,98,97,110,110,101,114,8,0,20,46,99,108,97,115,115,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,11,46,99,108,97,115,115,95,114,103,112,100,8,0,33,46,99,108,98,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,108,103,112,100,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,108,101,97,114,102,105,120,32,62,32,35,99,111,111,107,105,101,115,8,0,16,46,99,108,101,97,114,102,105,120,46,99,111,111,107,105,101,8,0,15,46,99,108,101,97,114,102,121,45,99,111,111,107,105,101,8,0,23,46,99,108,101,97,114,102,121,45,99,111,111,107,105,101,45,45,98,111,116,116,111,109,8,0,17,46,99,108,101,118,101,114,45,99,111,111,107,105,101,108,97,119,8,0,22,46,99,108,105,101,110,116,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,8,0,18,46,99,108,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,99,108,111,110,101,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,33,46,99,108,111,115,101,45,99,101,110,116,101,114,101,100,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,108,113,8,0,14,46,99,108,111,115,101,45,99,111,111,107,105,101,115,8,0,20,46,99,108,111,115,101,45,109,111,98,105,108,101,45,99,111,111,107,105,101,8,0,18,46,99,108,111,115,101,67,111,111,107,105,101,80,97,114,101,110,116,8,0,18,46,99,108,111,115,101,67,111,111,107,105,101,80,111,108,105,99,121,8,0,11,46,99,108,115,45,99,111,111,107,105,101,8,0,14,46,99,109,45,99,111,111,107,105,101,45,103,101,111,8,0,17,46,99,109,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,14,46,99,109,45,99,111,111,107,105,101,45,112,111,112,8,0,18,46,99,109,45,99,111,111,107,105,101,95,95,112,114,111,109,112,116,8,0,11,46,99,109,45,99,111,111,107,105,101,115,8,0,11,46,99,109,45,109,101,115,115,97,103,101,8,0,26,46,99,109,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,109,45,117,115,101,114,45,109,101,115,115,97,103,101,8,0,25,46,99,109,45,119,114,97,112,112,101,114,45,119,114,97,112,112,101,114,46,105,110,110,101,114,8,0,25,46,99,109,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,17,46,99,109,110,115,116,114,45,97,99,116,105,118,97,116,101,100,8,0,13,46,99,109,112,45,97,112,112,95,103,100,112,114,8,0,17,46,99,109,112,45,98,97,110,45,110,111,99,111,111,107,105,101,8,0,11,46,99,109,112,45,99,111,111,107,105,101,8,0,19,46,99,109,112,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,24,46,99,109,112,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,18,46,99,109,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,16,46,99,109,112,45,99,111,111,107,105,101,45,115,116,109,116,8,0,19,46,99,109,112,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,18,46,99,109,112,45,112,111,112,117,112,45,99,111,111,107,105,101,115,8,0,23,46,99,109,112,45,116,101,97,115,101,114,95,95,115,117,98,99,111,110,116,101,110,116,8,0,19,46,99,109,112,66,111,120,87,101,108,99,111,109,101,79,112,116,73,110,8,0,21,46,99,109,112,95,99,111,111,107,105,101,115,95,117,115,97,103,101,95,119,114,8,0,18,46,99,109,112,108,122,45,115,104,111,119,45,98,97,110,110,101,114,8,0,24,46,99,109,112,108,122,45,116,99,102,45,98,97,110,110,101,114,45,104,105,100,100,101,110,8,0,17,46,99,109,115,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,14,46,99,109,115,45,99,111,111,107,105,101,108,97,119,8,0,22,46,99,109,115,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,99,109,115,95,99,111,111,107,105,101,95,119,114,97,112,112,101,114,8,0,17,46,99,109,115,95,100,112,95,98,97,114,95,102,105,120,101,100,8,0,10,46,99,110,45,98,97,110,110,101,114,8,0,10,46,99,110,45,99,111,111,107,105,101,8,0,24,46,99,110,45,100,115,103,118,111,45,112,114,105,118,97,99,121,45,110,111,116,105,99,101,8,0,19,46,99,110,45,102,105,114,115,116,45,116,105,109,101,45,115,101,101,110,8,0,19,46,99,110,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,8,0,14,46,99,110,99,116,95,108,103,112,100,95,98,111,120,8,0,11,46,99,110,105,108,45,97,108,101,114,116,8,0,17,46,99,110,105,108,45,97,108,101,114,116,45,105,110,110,101,114,8,0,12,46,99,110,105,108,45,98,97,110,110,101,114,8,0,15,46,99,110,105,108,45,98,97,110,110,101,114,45,118,50,8,0,11,46,99,110,105,108,45,98,108,111,99,107,8,0,12,46,99,110,105,108,45,99,111,111,107,105,101,8,0,18,46,99,110,105,108,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,13,46,99,110,105,108,45,99,111,111,107,105,101,115,8,0,13,46,99,110,105,108,45,109,101,115,115,97,103,101,8,0,11,46,99,110,105,108,45,112,97,110,101,108,8,0,22,46,99,110,105,108,45,112,97,110,101,108,45,45,100,105,115,112,108,97,121,101,100,8,0,13,46,99,110,105,108,45,119,97,114,110,105,110,103,8,0,14,46,99,110,105,108,67,111,110,116,97,105,110,101,114,8,0,12,46,99,110,105,108,67,111,111,107,105,101,115,8,0,17,46,99,110,105,108,78,111,116,105,102,105,99,97,116,105,111,110,8,0,13,46,99,110,105,108,95,99,111,110,115,101,110,116,8,0,12,46,99,110,105,108,95,99,111,111,107,105,101,8,0,13,46,99,110,105,108,95,119,97,114,110,105,110,103,8,0,9,46,99,110,105,108,105,110,102,111,8,0,12,46,99,110,108,45,99,111,111,107,105,101,115,8,0,15,46,99,110,115,116,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,110,116,45,99,107,99,110,115,110,116,109,110,103,114,8,0,12,46,99,110,116,45,99,111,111,107,105,101,115,8,0,21,46,99,110,116,45,116,101,120,116,45,105,110,102,111,45,99,111,111,107,105,101,8,0,17,46,99,110,116,120,45,99,111,111,107,105,101,45,105,110,102,111,8,0,26,46,99,110,116,120,45,99,111,111,107,105,101,45,109,111,100,97,108,45,104,97,110,100,108,101,114,8,0,20,46,99,111,45,99,111,111,107,78,111,116,105,102,105,99,97,116,105,111,110,8,0,24,46,99,111,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,20,46,99,111,45,99,111,111,107,105,101,115,45,100,105,115,99,45,98,97,114,8,0,29,46,99,111,95,99,111,110,115,101,110,116,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,8,0,13,46,99,111,99,107,105,101,45,112,111,112,117,112,8,0,18,46,99,111,99,107,105,101,45,112,111,112,117,112,45,119,114,97,112,8,0,21,46,99,111,100,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,105,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,8,46,99,111,107,87,114,97,112,8,0,10,46,99,111,107,105,101,45,98,111,120,8,0,11,46,99,111,107,105,101,65,108,101,114,116,8,0,10,46,99,111,107,105,101,115,46,112,102,8,0,22,46,99,111,107,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,8,0,11,46,99,111,107,107,105,101,45,108,121,114,8,0,16,46,99,111,108,45,57,32,62,32,35,99,111,111,107,105,101,8,0,16,46,99,111,108,45,115,109,45,56,46,99,111,111,107,105,101,8,0,17,46,99,111,108,45,120,115,45,49,48,46,99,111,111,107,105,101,8,0,17,46,99,111,108,46,109,111,100,97,108,45,99,111,111,107,105,101,8,0,20,46,99,111,108,111,114,45,116,101,120,116,111,45,99,111,111,107,105,101,115,8,0,11,46,99,111,109,45,99,111,111,107,105,101,8,0,18,46,99,111,109,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,23,46,99,111,109,98,105,110,101,100,67,111,110,115,101,110,116,95,98,111,116,116,111,109,8,0,27,46,99,111,109,98,105,110,101,100,95,99,111,110,115,101,110,116,95,106,115,95,105,110,105,116,101,100,8,0,14,46,99,111,109,109,111,110,45,99,111,111,107,105,101,8,0,20,46,99,111,109,109,111,110,45,99,111,111,107,105,101,78,111,116,105,99,101,8,0,15,46,99,111,109,109,111,110,45,99,111,111,107,105,101,115,8,0,16,46,99,111,109,109,111,110,45,103,100,112,114,45,98,111,120,8,0,19,46,99,111,109,109,111,110,45,104,101,97,100,101,114,45,103,100,112,114,8,0,19,46,99,111,109,109,111,110,80,114,105,118,97,99,121,95,95,98,97,114,8,0,15,46,99,111,109,109,111,110,95,95,99,111,111,107,105,101,8,0,24,46,99,111,109,109,111,110,95,112,114,111,109,112,116,45,99,111,111,107,105,101,45,98,103,8,0,18,46,99,111,109,109,117,110,105,107,97,116,95,99,111,111,107,105,101,8,0,26,46,99,111,109,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,19,46,99,111,109,112,45,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,18,46,99,111,109,112,45,100,115,103,118,111,45,98,97,110,110,101,114,8,0,18,46,99,111,109,112,45,109,111,100,97,108,45,99,111,111,107,105,101,8,0,16,46,99,111,109,112,95,95,99,111,111,107,105,101,66,97,114,8,0,28,46,99,111,109,112,108,105,97,110,99,101,45,101,117,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,99,111,109,112,108,105,97,110,99,101,111,118,101,114,108,97,121,8,0,28,46,99,111,109,112,111,110,101,110,116,45,45,109,101,115,115,97,103,101,95,95,99,111,111,107,105,101,115,8,0,29,46,99,111,109,112,111,110,101,110,116,45,69,120,112,111,114,116,115,45,67,111,111,107,105,101,115,66,97,114,8,0,24,46,99,111,109,112,111,110,101,110,116,45,98,97,110,110,101,114,45,99,111,111,107,105,101,8,0,40,46,99,111,109,112,111,110,101,110,116,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,17,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,8,0,23,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,24,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,21,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,98,97,114,8,0,26,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,105,110,102,111,45,98,97,114,8,0,30,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,33,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,8,0,24,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,23,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,22,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,97,108,101,114,116,8,0,18,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,115,8,0,26,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,8,0,22,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,115,45,109,115,103,8,0,24,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,29,46,99,111,109,112,111,110,101,110,116,95,101,117,95,101,112,114,105,118,97,99,121,95,111,112,116,105,111,110,8,0,33,46,99,111,109,112,111,110,101,110,116,95,103,100,112,114,77,101,115,115,97,103,101,95,95,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,109,112,111,110,101,110,116,101,45,97,118,105,115,111,45,99,111,111,107,105,101,115,8,0,32,46,99,111,109,112,111,110,101,110,116,101,45,97,118,105,115,111,45,99,111,111,107,105,101,115,45,98,111,116,111,101,115,8,0,28,46,99,111,109,112,111,110,101,110,116,115,45,99,111,111,107,105,101,45,108,97,119,45,98,97,115,105,99,8,0,20,46,99,111,109,120,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,32,46,99,111,110,45,107,105,116,45,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,27,46,99,111,110,45,107,105,116,45,103,100,112,114,45,99,111,111,107,105,101,45,112,111,112,45,117,112,8,0,19,46,99,111,110,100,95,117,116,105,108,105,115,95,99,111,111,107,105,101,8,0,23,46,99,111,110,102,105,100,101,110,116,105,97,108,105,116,101,95,104,101,97,100,101,114,8,0,38,46,99,111,110,102,105,103,77,101,115,115,97,103,101,115,95,95,102,111,111,116,101,114,46,99,111,110,102,105,103,77,101,115,115,97,103,101,115,8,0,25,46,99,111,110,102,105,114,109,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,24,46,99,111,110,102,105,114,109,45,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,8,0,26,46,99,111,110,102,105,114,109,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,110,102,105,114,109,95,99,111,111,107,105,101,115,95,98,111,120,8,0,19,46,99,111,110,110,101,99,116,45,99,111,111,107,105,101,45,98,97,114,8,0,18,46,99,111,110,115,101,110,116,45,97,110,105,109,97,116,105,111,110,8,0,18,46,99,111,110,115,101,110,116,45,97,116,45,98,111,116,116,111,109,8,0,27,46,99,111,110,115,101,110,116,45,98,97,99,107,103,114,111,117,110,100,45,111,118,101,114,108,97,121,8,0,15,46,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,12,46,99,111,110,115,101,110,116,45,98,97,114,8,0,16,46,99,111,110,115,101,110,116,45,98,103,45,100,97,114,107,8,0,28,46,99,111,110,115,101,110,116,45,99,111,110,102,105,114,109,97,116,105,111,110,45,98,97,110,110,101,114,8,0,18,46,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,26,46,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,45,45,98,97,110,110,101,114,8,0,16,46,99,111,110,115,101,110,116,45,99,111,110,116,101,110,116,8,0,22,46,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,29,46,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,98,111,120,45,45,108,105,103,104,116,98,111,120,8,0,23,46,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,16,46,99,111,110,115,101,110,116,45,99,111,111,107,105,101,115,8,0,23,46,99,111,110,115,101,110,116,45,99,111,111,107,105,101,115,45,100,105,97,108,111,103,8,0,12,46,99,111,110,115,101,110,116,45,99,116,97,8,0,15,46,99,111,110,115,101,110,116,45,104,111,108,100,101,114,8,0,14,46,99,111,110,115,101,110,116,45,108,97,121,101,114,8,0,17,46,99,111,110,115,101,110,116,45,108,97,121,101,114,45,118,50,8,0,25,46,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,45,97,108,101,114,116,8,0,26,46,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,45,115,105,109,112,108,101,8,0,22,46,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,108,97,121,101,114,8,0,24,46,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,111,118,101,114,108,97,121,8,0,23,46,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,46,98,97,110,110,101,114,8,0,16,46,99,111,110,115,101,110,116,45,109,101,115,115,97,103,101,8,0,20,46,99,111,110,115,101,110,116,45,109,111,100,97,108,45,102,105,114,115,116,8,0,23,46,99,111,110,115,101,110,116,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,8,0,25,46,99,111,110,115,101,110,116,45,109,111,100,117,108,101,45,114,111,97,100,98,108,111,99,107,8,0,14,46,99,111,110,115,101,110,116,45,112,97,110,101,108,8,0,15,46,99,111,110,115,101,110,116,45,112,111,112,45,117,112,8,0,16,46,99,111,110,115,101,110,116,45,112,111,112,111,118,101,114,8,0,14,46,99,111,110,115,101,110,116,45,112,111,112,117,112,8,0,14,46,99,111,110,115,101,110,116,45,116,111,97,115,116,8,0,16,46,99,111,110,115,101,110,116,45,116,111,111,108,98,97,114,8,0,19,46,99,111,110,115,101,110,116,45,117,105,45,45,98,97,110,110,101,114,8,0,21,46,99,111,110,115,101,110,116,45,119,97,108,108,45,111,118,101,114,108,97,121,8,0,26,46,99,111,110,115,101,110,116,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,110,115,101,110,116,45,119,114,97,112,45,111,117,116,101,114,8,0,16,46,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,23,46,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,45,97,99,116,105,118,101,8,0,16,46,99,111,110,115,101,110,116,46,99,111,111,107,105,101,115,8,0,12,46,99,111,110,115,101,110,116,46,114,111,119,8,0,14,46,99,111,110,115,101,110,116,66,97,110,110,101,114,8,0,18,46,99,111,110,115,101,110,116,66,97,114,87,114,97,112,112,101,114,8,0,17,46,99,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,8,0,15,46,99,111,110,115,101,110,116,76,97,121,111,118,101,114,8,0,22,46,99,111,110,115,101,110,116,79,118,101,114,108,97,121,67,111,110,116,101,110,116,8,0,13,46,99,111,110,115,101,110,116,80,111,112,117,112,8,0,15,46,99,111,110,115,101,110,116,87,114,97,112,112,101,114,8,0,43,46,99,111,110,115,101,110,116,91,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,99,111,111,107,105,101,67,111,110,115,101,110,116,67,116,114,108,34,93,8,0,15,46,99,111,110,115,101,110,116,95,95,97,108,101,114,116,8,0,16,46,99,111,110,115,101,110,116,95,95,98,97,110,110,101,114,8,0,17,46,99,111,110,115,101,110,116,95,95,99,111,111,107,105,101,115,8,0,20,46,99,111,110,115,101,110,116,95,98,114,101,97,100,99,114,117,109,98,115,8,0,16,46,99,111,110,115,101,110,116,95,99,111,111,107,105,101,115,8,0,27,46,99,111,110,115,101,110,116,95,109,97,110,97,103,101,114,45,98,97,99,107,103,114,111,117,110,100,8,0,25,46,99,111,110,115,101,110,116,95,114,101,113,117,105,114,101,100,95,111,118,101,114,108,97,121,8,0,20,46,99,111,110,115,101,110,116,98,97,114,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,110,115,101,110,116,101,109,101,110,116,95,99,111,111,107,105,101,8,0,21,46,99,111,110,115,101,110,116,101,109,101,110,116,95,99,111,111,107,105,101,115,8,0,20,46,99,111,110,115,101,110,116,105,109,101,110,116,111,67,111,111,107,105,101,8,0,14,46,99,111,110,115,101,110,116,108,121,45,98,97,114,8,0,19,46,99,111,110,115,101,110,116,114,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,110,115,101,110,116,114,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,13,46,99,111,110,115,101,110,116,115,45,98,97,114,8,0,21,46,99,111,110,115,111,108,101,45,104,101,97,100,45,99,111,111,107,105,101,115,8,0,21,46,99,111,110,115,116,95,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,24,46,99,111,110,115,117,109,101,114,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,12,46,99,111,110,116,45,99,111,111,107,105,101,8,0,11,46,99,111,110,116,67,111,111,107,105,101,8,0,18,46,99,111,110,116,95,97,118,105,115,95,103,97,108,101,116,101,115,8,0,48,46,99,111,110,116,97,105,110,101,114,32,126,32,100,105,118,91,100,97,116,97,45,114,101,97,99,116,45,99,108,97,115,115,61,34,67,111,111,107,105,101,65,103,114,101,101,34,93,8,0,23,46,99,111,110,116,97,105,110,101,114,45,97,118,105,115,111,99,111,111,107,105,101,115,8,0,24,46,99,111,110,116,97,105,110,101,114,45,98,97,110,110,101,114,45,99,111,111,107,105,101,8,0,17,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,8,0,24,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,97,100,118,105,115,101,8,0,21,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,98,97,114,8,0,25,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,25,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,109,101,108,100,105,110,103,8,0,24,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,24,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,23,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,27,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,119,112,45,112,97,108,109,97,115,8,0,18,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,115,8,0,21,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,115,66,97,114,8,0,29,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,46,99,111,111,107,105,101,45,109,111,100,97,108,8,0,29,46,99,111,110,116,97,105,110,101,114,45,103,100,112,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,15,46,99,111,110,116,97,105,110,101,114,45,108,103,112,100,8,0,27,46,99,111,110,116,97,105,110,101,114,45,110,111,116,105,102,105,99,97,99,97,111,45,108,103,112,100,8,0,21,46,99,111,110,116,97,105,110,101,114,46,99,111,111,107,105,101,105,110,102,111,8,0,21,46,99,111,110,116,97,105,110,101,114,66,111,120,45,99,111,111,107,105,101,115,8,0,16,46,99,111,110,116,97,105,110,101,114,67,111,111,107,105,101,8,0,26,46,99,111,110,116,97,105,110,101,114,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,8,0,14,46,99,111,110,116,97,105,110,101,114,71,68,80,82,8,0,21,46,99,111,110,116,97,105,110,101,114,79,117,116,101,114,67,111,111,107,105,101,8,0,25,46,99,111,110,116,97,105,110,101,114,95,95,99,111,111,107,105,101,115,80,111,108,105,99,121,8,0,25,46,99,111,110,116,97,105,110,101,114,95,99,111,110,116,101,110,116,95,99,111,111,107,105,101,8,0,17,46,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,8,0,18,46,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,115,8,0,24,46,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,115,95,97,108,101,114,116,8,0,24,46,99,111,110,116,97,105,110,101,114,95,109,111,100,97,108,95,99,111,111,107,105,101,115,8,0,17,46,99,111,110,116,97,111,45,99,111,111,107,105,101,98,97,114,8,0,12,46,99,111,110,116,99,111,111,107,105,101,115,8,0,19,46,99,111,110,116,101,110,101,100,111,114,45,99,111,111,107,105,101,115,8,0,23,46,99,111,110,116,101,110,101,100,111,114,45,108,101,121,45,99,111,111,107,105,101,115,8,0,23,46,99,111,110,116,101,110,101,100,111,114,65,118,105,115,111,67,111,111,107,105,101,115,8,0,19,46,99,111,110,116,101,110,101,100,111,114,95,99,111,111,107,105,101,115,8,0,19,46,99,111,110,116,101,110,116,45,45,99,111,111,107,105,101,45,106,115,8,0,22,46,99,111,110,116,101,110,116,45,97,108,101,114,116,45,98,114,111,119,115,101,114,8,0,21,46,99,111,110,116,101,110,116,45,97,108,101,114,116,45,99,111,111,107,105,101,8,0,19,46,99,111,110,116,101,110,116,45,99,111,110,45,99,111,111,107,105,101,8,0,15,46,99,111,110,116,101,110,116,45,99,111,111,107,105,101,8,0,16,46,99,111,110,116,101,110,116,45,99,111,111,107,105,101,115,8,0,22,46,99,111,110,116,101,110,116,45,108,101,103,97,108,101,45,99,111,111,107,105,101,8,0,14,46,99,111,110,116,101,110,116,67,111,111,107,105,101,8,0,17,46,99,111,110,116,101,110,116,67,111,111,107,105,101,66,111,120,8,0,48,46,99,111,110,116,101,110,116,82,101,110,100,101,114,95,110,97,109,101,95,112,108,117,103,105,110,115,95,99,111,109,109,111,110,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,46,46,99,111,110,116,101,110,116,82,101,110,100,101,114,95,110,97,109,101,95,112,108,117,103,105,110,115,95,99,111,109,109,111,110,95,103,100,112,114,95,98,97,110,110,101,114,8,0,16,46,99,111,110,116,101,110,116,95,99,111,111,107,105,101,115,8,0,25,46,99,111,110,116,101,117,100,111,45,99,111,111,107,105,101,45,97,99,99,101,112,116,101,100,8,0,16,46,99,111,110,116,101,117,100,111,67,111,111,107,105,101,115,8,0,16,46,99,111,110,116,105,101,110,101,45,99,111,111,107,105,101,8,0,16,46,99,111,110,116,105,101,110,101,67,111,111,107,105,101,115,8,0,11,46,99,111,111,45,98,97,110,110,101,114,8,0,18,46,99,111,111,95,98,97,110,110,101,114,45,110,111,116,105,99,101,8,0,13,46,99,111,111,99,101,115,95,95,119,114,97,112,8,0,8,46,99,111,111,99,107,105,101,8,0,12,46,99,111,111,99,107,105,101,45,98,97,114,8,0,14,46,99,111,111,99,107,105,101,45,98,108,111,99,107,8,0,13,46,99,111,111,99,107,105,101,45,108,105,110,101,8,0,16,46,99,111,111,99,107,105,101,45,109,101,115,115,97,103,101,8,0,14,46,99,111,111,99,107,105,101,45,112,111,112,117,112,8,0,16,46,99,111,111,99,107,105,101,45,119,97,114,110,105,110,103,8,0,11,46,99,111,111,99,107,105,101,66,97,114,8,0,11,46,99,111,111,99,107,105,101,76,97,119,8,0,14,46,99,111,111,99,107,105,101,80,111,108,105,99,121,8,0,14,46,99,111,111,99,107,105,101,87,105,110,100,111,119,8,0,15,46,99,111,111,99,107,105,101,95,98,97,110,110,101,114,8,0,14,46,99,111,111,99,107,105,101,95,112,111,112,117,112,8,0,12,46,99,111,111,99,107,105,101,95,116,120,116,8,0,11,46,99,111,111,99,107,105,101,98,97,114,8,0,11,46,99,111,111,99,107,105,101,100,105,118,8,0,15,46,99,111,111,99,107,105,101,104,105,110,119,101,105,115,8,0,9,46,99,111,111,99,107,105,101,115,8,0,15,46,99,111,111,99,107,105,101,115,45,98,108,111,99,107,8,0,17,46,99,111,111,99,107,105,101,115,45,109,101,115,115,97,103,101,8,0,15,46,99,111,111,99,107,105,101,115,45,112,111,112,117,112,8,0,23,46,99,111,111,99,107,105,101,115,77,111,100,97,108,67,111,110,116,97,105,110,101,114,8,0,15,46,99,111,111,99,107,105,101,115,80,111,108,105,99,121,8,0,15,46,99,111,111,99,107,105,101,115,95,97,108,101,114,116,8,0,14,46,99,111,111,99,107,105,101,115,102,105,120,101,100,8,0,17,46,99,111,111,105,107,101,95,97,108,101,114,116,95,98,111,120,8,0,12,46,99,111,111,107,45,97,99,99,101,112,116,8,0,11,46,99,111,111,107,45,112,111,112,117,112,8,0,12,46,99,111,111,107,45,119,105,110,100,111,119,8,0,9,46,99,111,111,107,76,105,110,107,8,0,9,46,99,111,111,107,95,109,115,103,8,0,10,46,99,111,111,107,95,112,108,99,121,8,0,16,46,99,111,111,107,95,117,115,105,110,103,95,112,101,114,109,8,0,13,46,99,111,111,107,97,99,99,101,112,116,111,114,8,0,7,46,99,111,111,107,98,120,8,0,14,46,99,111,111,107,99,111,110,116,97,105,110,101,114,8,0,13,46,99,111,111,107,101,69,110,97,98,108,101,114,8,0,10,46,99,111,111,107,101,72,105,110,116,8,0,16,46,99,111,111,107,105,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,95,98,97,110,101,114,95,119,114,112,8,0,14,46,99,111,111,107,105,101,32,62,32,46,98,111,120,8,0,15,46,99,111,111,107,105,101,32,62,32,46,114,103,112,100,8,0,15,46,99,111,111,107,105,101,45,45,97,99,116,105,118,101,8,0,15,46,99,111,111,107,105,101,45,45,98,97,110,110,101,114,8,0,22,46,99,111,111,107,105,101,45,45,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,45,45,99,111,110,115,101,110,116,45,45,114,111,111,116,8,0,16,46,99,111,111,107,105,101,45,45,100,101,115,107,116,111,112,8,0,13,46,99,111,111,107,105,101,45,45,102,111,114,109,8,0,14,46,99,111,111,107,105,101,45,45,108,97,121,101,114,8,0,21,46,99,111,111,107,105,101,45,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,99,111,111,107,105,101,45,45,111,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,45,45,112,101,114,109,105,115,115,105,111,110,8,0,17,46,99,111,111,107,105,101,45,45,112,111,108,105,116,121,107,97,8,0,14,46,99,111,111,107,105,101,45,45,112,111,112,117,112,8,0,16,46,99,111,111,107,105,101,45,45,115,101,99,116,105,111,110,8,0,12,46,99,111,111,107,105,101,45,45,116,111,112,8,0,14,46,99,111,111,107,105,101,45,45,117,110,115,101,116,8,0,16,46,99,111,111,107,105,101,45,45,118,105,115,105,98,108,101,8,0,13,46,99,111,111,107,105,101,45,45,119,114,97,112,8,0,17,46,99,111,111,107,105,101,45,45,119,114,97,112,95,95,111,110,8,0,10,46,99,111,111,107,105,101,45,48,51,8,0,9,46,99,111,111,107,105,101,45,49,8,0,14,46,99,111,111,107,105,101,45,66,97,110,110,101,114,8,0,13,46,99,111,111,107,105,101,45,97,98,111,118,101,8,0,19,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,97,114,101,97,8,0,21,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,97,110,110,101,114,8,0,18,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,97,114,8,0,20,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,108,111,99,107,8,0,18,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,111,120,8,0,22,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,100,101,102,97,117,108,116,8,0,21,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,110,111,116,105,99,101,8,0,22,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,111,118,101,114,108,97,121,8,0,20,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,112,111,112,117,112,8,0,20,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,115,116,121,108,101,8,0,18,46,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,8,0,25,46,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,98,97,110,110,101,114,8,0,28,46,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,100,105,97,108,111,103,8,0,26,46,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,109,101,115,115,97,103,101,8,0,24,46,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,109,111,100,97,108,8,0,21,46,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,98,111,120,8,0,26,46,99,111,111,107,105,101,45,97,99,99,101,112,116,97,116,105,111,110,45,109,111,100,117,108,101,8,0,17,46,99,111,111,107,105,101,45,97,99,99,101,112,116,105,111,110,8,0,16,46,99,111,111,107,105,101,45,97,99,99,101,112,116,111,114,8,0,23,46,99,111,111,107,105,101,45,97,99,107,110,111,119,108,101,100,103,101,109,101,110,116,8,0,11,46,99,111,111,107,105,101,45,97,100,118,8,0,14,46,99,111,111,107,105,101,45,97,100,118,101,114,116,8,0,21,46,99,111,111,107,105,101,45,97,100,118,101,114,116,105,115,101,109,101,110,116,8,0,20,46,99,111,111,107,105,101,45,97,100,118,101,114,116,105,115,109,101,110,116,8,0,14,46,99,111,111,107,105,101,45,97,100,118,105,99,101,8,0,14,46,99,111,111,107,105,101,45,97,100,118,105,115,101,8,0,15,46,99,111,111,107,105,101,45,97,100,118,105,115,111,114,8,0,11,46,99,111,111,107,105,101,45,97,103,101,8,0,33,46,99,111,111,107,105,101,45,97,103,103,114,101,109,101,110,116,45,98,108,111,99,107,45,99,111,110,116,97,105,110,101,114,8,0,13,46,99,111,111,107,105,101,45,97,103,114,101,101,8,0,19,46,99,111,111,107,105,101,45,97,103,114,101,101,45,112,111,112,117,112,8,0,22,46,99,111,111,107,105,101,45,97,103,114,101,101,45,119,105,116,104,45,117,115,101,8,0,21,46,99,111,111,107,105,101,45,97,103,114,101,101,45,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,45,97,103,114,101,101,100,8,0,17,46,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,8,0,27,46,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,45,119,114,97,112,112,101,114,8,0,18,46,99,111,111,107,105,101,45,97,108,101,114,116,45,45,116,111,112,8,0,15,46,99,111,111,107,105,101,45,97,108,101,114,116,45,49,8,0,15,46,99,111,111,107,105,101,45,97,108,101,114,116,45,50,8,0,20,46,99,111,111,107,105,101,45,97,108,101,114,116,45,50,48,49,56,45,99,8,0,17,46,99,111,111,107,105,101,45,97,108,101,114,116,45,98,111,120,8,0,25,46,99,111,111,107,105,101,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,23,46,99,111,111,107,105,101,45,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,45,97,108,101,114,116,45,104,111,108,100,101,114,8,0,17,46,99,111,111,107,105,101,45,97,108,101,114,116,45,109,115,107,8,0,19,46,99,111,111,107,105,101,45,97,108,101,114,116,45,111,117,116,101,114,8,0,19,46,99,111,111,107,105,101,45,97,108,101,114,116,45,112,97,110,101,108,8,0,29,46,99,111,111,107,105,101,45,97,108,101,114,116,45,115,116,114,105,112,45,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,45,97,108,101,114,116,45,119,114,97,112,8,0,21,46,99,111,111,107,105,101,45,97,108,101,114,116,45,119,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,45,97,108,108,8,0,18,46,99,111,111,107,105,101,45,97,108,108,99,111,110,116,101,110,116,8,0,19,46,99,111,111,107,105,101,45,97,108,108,111,119,45,98,108,111,99,107,8,0,21,46,99,111,111,107,105,101,45,97,108,108,111,119,45,99,111,110,102,105,114,109,8,0,29,46,99,111,111,107,105,101,45,97,110,100,45,112,114,105,118,97,99,121,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,45,97,110,110,111,117,110,99,101,8,0,20,46,99,111,111,107,105,101,45,97,110,110,111,117,110,99,101,109,101,110,116,8,0,25,46,99,111,111,107,105,101,45,97,112,112,114,111,118,97,108,95,95,119,114,97,112,112,101,114,8,0,19,46,99,111,111,107,105,101,45,97,112,112,114,111,118,101,109,101,110,116,8,0,12,46,99,111,111,107,105,101,45,97,114,101,97,8,0,17,46,99,111,111,107,105,101,45,97,114,107,115,105,103,110,101,114,8,0,17,46,99,111,111,107,105,101,45,97,115,115,105,115,116,97,110,116,8,0,25,46,99,111,111,107,105,101,45,97,115,115,105,115,116,97,110,116,45,119,114,97,112,112,101,114,8,0,17,46,99,111,111,107,105,101,45,97,116,116,101,110,116,105,111,110,8,0,12,46,99,111,111,107,105,101,45,98,97,99,107,8,0,16,46,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,8,0,11,46,99,111,111,107,105,101,45,98,97,110,8,0,12,46,99,111,111,107,105,101,45,98,97,110,100,8,0,13,46,99,111,111,107,105,101,45,98,97,110,101,114,8,0,31,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,45,100,105,115,97,98,108,101,45,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,45,115,105,109,112,108,101,8,0,23,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,45,119,114,97,112,112,101,114,8,0,26,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,45,119,114,97,112,112,101,114,45,106,115,8,0,23,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,97,99,107,100,114,111,112,8,0,25,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,97,99,107,103,114,111,117,110,100,8,0,31,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,97,99,107,115,105,100,101,45,116,101,97,108,105,117,109,8,0,17,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,103,8,0,20,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,108,111,99,107,8,0,27,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,108,111,99,107,105,110,103,45,100,105,118,8,0,27,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,111,100,121,45,111,118,101,114,108,97,121,8,0,21,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,111,116,116,111,109,8,0,18,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,111,120,8,0,21,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,117,116,116,111,110,8,0,34,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,8,0,24,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,100,101,115,107,116,111,112,8,0,21,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,102,111,111,116,101,114,8,0,19,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,105,110,102,111,8,0,33,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,105,110,102,111,45,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,105,110,110,101,114,8,0,17,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,106,115,8,0,20,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,108,97,121,101,114,8,0,19,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,108,103,112,100,8,0,29,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,108,103,112,100,45,99,111,110,116,97,105,110,101,114,8,0,28,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,108,103,112,100,95,116,101,120,116,45,98,111,120,8,0,29,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,8,0,18,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,115,103,8,0,18,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,108,100,8,0,20,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,117,116,101,114,8,0,30,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,117,116,101,114,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,115,101,99,116,105,111,110,8,0,21,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,115,104,97,100,111,119,8,0,21,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,115,104,114,111,117,100,8,0,19,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,115,116,121,114,8,0,17,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,116,109,8,0,26,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,116,109,95,95,111,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,118,105,101,119,8,0,20,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,104,105,116,101,8,0,21,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,105,110,100,111,119,8,0,34,46,99,111,111,107,105,101,45,98,97,110,110,101,114,46,110,97,118,98,97,114,45,102,105,120,101,100,45,98,111,116,116,111,109,8,0,20,46,99,111,111,107,105,101,45,98,97,110,110,101,114,46,116,111,97,115,116,8,0,22,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,98,111,116,116,111,109,8,0,28,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,98,111,116,116,111,109,45,112,97,110,101,108,8,0,19,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,99,110,116,8,0,25,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,111,118,101,114,108,97,121,8,0,23,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,115,101,99,116,105,111,110,8,0,23,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,119,114,97,112,112,101,114,8,0,19,46,99,111,111,107,105,101,45,98,97,114,45,45,97,99,116,105,118,101,8,0,19,46,99,111,111,107,105,101,45,98,97,114,45,45,98,111,116,116,111,109,8,0,24,46,99,111,111,107,105,101,45,98,97,114,45,45,116,121,112,101,45,109,97,110,97,103,101,8,0,26,46,99,111,111,107,105,101,45,98,97,114,45,97,99,116,105,118,101,45,98,108,111,99,107,101,114,8,0,17,46,99,111,111,107,105,101,45,98,97,114,45,97,108,101,114,116,8,0,20,46,99,111,111,107,105,101,45,98,97,114,45,98,97,99,107,100,114,111,112,8,0,15,46,99,111,111,107,105,101,45,98,97,114,45,99,111,110,8,0,21,46,99,111,111,107,105,101,45,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,45,98,97,114,45,105,110,110,101,114,8,0,16,46,99,111,111,107,105,101,45,98,97,114,45,109,97,115,107,8,0,19,46,99,111,111,107,105,101,45,98,97,114,45,109,101,115,115,97,103,101,8,0,15,46,99,111,111,107,105,101,45,98,97,114,45,110,101,119,8,0,24,46,99,111,111,107,105,101,45,98,97,114,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,25,46,99,111,111,107,105,101,45,98,97,114,45,110,111,116,105,102,105,99,97,116,105,111,110,115,8,0,17,46,99,111,111,107,105,101,45,98,97,114,45,111,117,116,101,114,8,0,19,46,99,111,111,107,105,101,45,98,97,114,45,112,111,112,111,118,101,114,8,0,19,46,99,111,111,107,105,101,45,98,97,114,45,115,101,99,116,105,111,110,8,0,17,46,99,111,111,107,105,101,45,98,97,114,45,117,110,105,113,97,8,0,14,46,99,111,111,107,105,101,45,98,97,114,45,119,112,8,0,16,46,99,111,111,107,105,101,45,98,97,114,45,119,114,97,112,8,0,19,46,99,111,111,107,105,101,45,98,97,114,45,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,45,98,97,114,50,8,0,18,46,99,111,111,107,105,101,45,98,97,114,95,95,105,110,110,101,114,8,0,20,46,99,111,111,107,105,101,45,98,97,114,95,95,119,114,97,112,112,101,114,8,0,21,46,99,111,111,107,105,101,45,98,97,114,95,99,111,109,112,111,110,101,110,116,8,0,21,46,99,111,111,107,105,101,45,98,97,114,95,99,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,45,98,97,114,95,105,110,110,101,114,8,0,17,46,99,111,111,107,105,101,45,98,97,114,95,111,117,116,101,114,8,0,13,46,99,111,111,107,105,101,45,98,97,114,114,101,8,0,10,46,99,111,111,107,105,101,45,98,103,8,0,15,46,99,111,111,107,105,101,45,98,103,45,119,114,97,112,8,0,18,46,99,111,111,107,105,101,45,98,103,45,119,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,45,98,108,111,99,107,8,0,21,46,99,111,111,107,105,101,45,98,108,111,99,107,45,118,105,115,105,98,108,101,8,0,12,46,99,111,111,107,105,101,45,98,111,100,121,8,0,20,46,99,111,111,107,105,101,45,98,111,100,121,45,111,118,101,114,108,97,121,8,0,12,46,99,111,111,107,105,101,45,98,111,111,107,8,0,11,46,99,111,111,107,105,101,45,98,111,116,8,0,14,46,99,111,111,107,105,101,45,98,111,116,116,111,109,8,0,20,46,99,111,111,107,105,101,45,98,111,116,116,111,109,45,108,97,121,101,114,8,0,19,46,99,111,111,107,105,101,45,98,111,116,116,111,109,45,109,97,105,110,8,0,20,46,99,111,111,107,105,101,45,98,111,116,116,111,109,45,112,108,97,99,101,8,0,11,46,99,111,111,107,105,101,45,98,111,120,8,0,14,46,99,111,111,107,105,101,45,98,111,120,45,101,110,8,0,19,46,99,111,111,107,105,101,45,98,111,120,45,119,114,97,112,112,101,114,8,0,20,46,99,111,111,107,105,101,45,98,111,120,95,95,111,118,101,114,108,97,121,8,0,17,46,99,111,111,107,105,101,45,98,111,120,95,95,119,114,97,112,8,0,14,46,99,111,111,107,105,101,45,98,117,98,98,108,101,8,0,22,46,99,111,111,107,105,101,45,98,117,116,116,111,110,45,99,111,110,115,101,110,116,8,0,15,46,99,111,111,107,105,101,45,99,97,108,108,111,117,116,8,0,24,46,99,111,111,107,105,101,45,99,97,114,100,95,112,111,112,117,112,95,102,105,120,101,100,8,0,12,46,99,111,111,107,105,101,45,99,101,108,108,8,0,14,46,99,111,111,107,105,101,45,99,104,111,105,99,101,8,0,21,46,99,111,111,107,105,101,45,99,104,111,105,99,101,115,45,45,105,110,102,111,8,0,20,46,99,111,111,107,105,101,45,99,104,111,105,99,101,115,45,105,110,102,111,8,0,13,46,99,111,111,107,105,101,45,99,108,97,115,115,8,0,16,46,99,111,111,107,105,101,45,99,108,105,99,107,97,108,108,8,0,18,46,99,111,111,107,105,101,45,99,110,102,45,98,97,110,110,101,114,8,0,30,46,99,111,111,107,105,101,45,99,110,102,45,98,97,110,110,101,114,45,45,98,97,99,107,103,114,111,117,110,100,8,0,12,46,99,111,111,107,105,101,45,99,110,105,108,8,0,11,46,99,111,111,107,105,101,45,99,110,116,8,0,19,46,99,111,111,107,105,101,45,99,111,108,108,97,112,115,105,98,108,101,8,0,25,46,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,8,0,33,46,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,28,46,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,100,101,115,107,8,0,26,46,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,109,101,115,115,97,103,101,8,0,24,46,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,112,111,112,117,112,8,0,25,46,99,111,111,107,105,101,45,99,111,109,112,108,105,101,110,99,101,45,98,97,110,110,101,114,8,0,17,46,99,111,111,107,105,101,45,99,111,110,100,105,116,105,111,110,8,0,18,46,99,111,111,107,105,101,45,99,111,110,100,105,116,105,111,110,115,8,0,20,46,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,8,0,27,46,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,45,110,111,116,105,99,101,8,0,25,46,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,95,95,98,111,120,8,0,14,46,99,111,111,107,105,101,45,99,111,110,115,101,110,8,0,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,71,68,80,82,8,0,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,98,111,120,8,0,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,101,112,51,8,0,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,110,111,114,109,97,108,8,0,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,115,104,111,119,8,0,24,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,119,114,97,112,112,101,114,8,0,41,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,99,107,110,111,119,108,101,100,103,101,109,101,110,116,45,99,111,110,97,116,105,110,101,114,8,0,24,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,100,118,97,110,99,101,100,8,0,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,108,101,114,116,8,0,19,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,112,112,8,0,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,114,101,97,8,0,24,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,99,107,100,114,111,112,8,0,26,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,99,107,103,114,111,117,110,100,8,0,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,100,103,101,8,0,32,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,30,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,111,112,116,45,111,117,116,8,0,30,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,8,0,31,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,95,95,119,114,97,112,112,101,114,8,0,27,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,45,111,118,101,114,108,97,121,8,0,24,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,45,119,114,97,112,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,111,116,116,111,109,8,0,19,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,111,120,8,0,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,109,112,8,0,25,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,109,112,111,110,101,110,116,8,0,25,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,28,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,45,118,50,8,0,19,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,116,114,8,0,24,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,97,114,107,101,110,101,114,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,8,0,24,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,117,101,8,0,37,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,117,101,95,95,97,100,118,101,114,116,105,115,105,110,103,8,0,19,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,118,8,0,29,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,101,109,98,101,100,45,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,102,108,121,111,117,116,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,102,111,111,116,101,114,8,0,30,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,104,101,97,100,101,114,45,119,114,97,112,112,101,114,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,104,111,108,100,101,114,8,0,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,106,111,108,116,8,0,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,108,97,121,101,114,8,0,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,108,111,99,97,108,8,0,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,8,0,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,101,115,115,97,103,101,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,110,111,116,105,99,101,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,110,111,116,105,102,121,8,0,34,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,45,98,97,99,107,103,114,111,117,110,100,8,0,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,97,110,101,108,8,0,29,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,97,110,101,108,45,109,101,115,115,97,103,101,8,0,19,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,110,108,8,0,29,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,45,111,118,101,114,108,97,121,8,0,26,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,45,119,114,97,112,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,114,111,109,112,116,8,0,32,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,114,111,109,112,116,45,99,111,110,116,97,105,110,101,114,8,0,33,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,114,101,99,116,97,110,103,108,101,45,119,114,97,112,112,101,114,8,0,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,114,101,113,117,101,115,116,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,114,101,118,111,107,101,8,0,25,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,104,97,100,111,119,45,98,103,8,0,28,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,104,97,100,111,119,45,108,97,121,101,114,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,112,108,97,115,104,8,0,18,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,118,50,8,0,28,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,97,108,108,45,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,105,100,103,101,116,8,0,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,8,0,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,46,98,111,116,116,111,109,8,0,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,46,105,110,118,101,114,115,8,0,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,46,115,104,111,119,8,0,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,46,115,104,111,119,110,8,0,30,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,91,100,97,116,97,45,99,108,111,115,97,98,108,101,93,8,0,32,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,91,100,97,116,97,45,99,111,110,116,114,111,108,108,101,114,93,8,0,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,98,97,114,8,0,30,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,26,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,100,105,97,108,111,103,8,0,24,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,111,118,101,114,108,97,121,8,0,24,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,119,114,97,112,112,101,114,8,0,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,111,118,101,114,108,97,121,8,0,18,46,99,111,111,107,105,101,45,99,111,110,115,101,116,45,98,97,114,8,0,12,46,99,111,111,107,105,101,45,99,111,110,116,8,0,15,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,8,0,22,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,45,109,97,105,110,8,0,22,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,45,109,111,115,116,8,0,25,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,45,111,118,101,114,108,97,121,8,0,26,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,45,115,101,108,101,99,116,111,114,8,0,25,46,99,111,111,107,105,101,45,99,111,110,116,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,99,111,110,116,101,110,116,45,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,45,99,111,110,116,101,110,116,45,114,105,98,98,111,110,8,0,22,46,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,98,97,110,110,101,114,8,0,19,46,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,98,97,114,8,0,25,46,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,99,111,110,116,101,110,116,8,0,23,46,99,111,111,107,105,101,45,99,111,110,116,114,111,108,95,95,98,97,110,110,101,114,8,0,12,46,99,111,111,107,105,101,45,99,111,112,121,8,0,12,46,99,111,111,107,105,101,45,99,111,114,101,8,0,13,46,99,111,111,107,105,101,45,99,111,118,101,114,8,0,12,46,99,111,111,107,105,101,45,99,117,98,101,8,0,15,46,99,111,111,107,105,101,45,99,117,114,116,97,105,110,8,0,19,46,99,111,111,107,105,101,45,100,97,114,107,45,102,105,108,116,101,114,8,0,20,46,99,111,111,107,105,101,45,100,97,116,97,45,119,97,114,110,105,110,103,8,0,12,46,99,111,111,107,105,101,45,100,101,109,111,8,0,15,46,99,111,111,107,105,101,45,100,101,109,111,45,111,110,8,0,19,46,99,111,111,107,105,101,45,100,101,115,99,114,105,112,116,105,111,110,8,0,15,46,99,111,111,107,105,101,45,100,101,115,107,116,111,112,8,0,14,46,99,111,111,107,105,101,45,100,105,97,108,111,103,8,0,21,46,99,111,111,107,105,101,45,100,105,97,108,111,103,45,99,101,110,116,101,114,8,0,24,46,99,111,111,107,105,101,45,100,105,97,108,111,103,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,8,0,16,46,99,111,111,107,105,101,45,100,105,97,108,111,103,117,101,8,0,23,46,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,45,97,108,101,114,116,8,0,27,46,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,45,111,118,101,114,108,97,121,8,0,27,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,45,100,101,102,97,117,108,116,8,0,27,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,45,111,118,101,114,108,97,121,8,0,27,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,98,97,99,107,100,114,111,112,8,0,29,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,98,97,99,107,103,114,111,117,110,100,8,0,25,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,98,97,110,110,101,114,8,0,22,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,98,111,120,8,0,28,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,99,111,109,112,111,110,101,110,116,8,0,28,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,104,111,108,100,101,114,8,0,23,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,109,97,115,107,8,0,26,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,109,101,115,115,97,103,101,8,0,25,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,110,111,116,105,99,101,8,0,36,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,8,0,26,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,119,114,97,112,112,101,114,8,0,26,46,99,111,111,107,105,101,45,100,105,115,99,108,111,115,117,114,101,45,109,101,115,115,97,103,101,8,0,17,46,99,111,111,107,105,101,45,100,114,111,112,45,100,111,119,110,8,0,16,46,99,111,111,107,105,101,45,100,114,111,112,100,111,119,110,8,0,18,46,99,111,111,107,105,101,45,101,110,116,101,114,45,100,111,110,101,8,0,14,46,99,111,111,107,105,101,45,101,117,45,109,115,103,8,0,19,46,99,111,111,107,105,101,45,101,118,101,110,116,45,98,108,111,99,107,8,0,12,46,99,111,111,107,105,101,45,102,97,100,101,8,0,16,46,99,111,111,107,105,101,45,102,98,45,116,105,116,108,101,8,0,14,46,99,111,111,107,105,101,45,102,98,45,116,111,112,8,0,11,46,99,111,111,107,105,101,45,102,105,120,8,0,13,46,99,111,111,107,105,101,45,102,105,120,101,100,8,0,20,46,99,111,111,107,105,101,45,102,105,120,101,100,45,102,111,111,116,101,114,8,0,18,46,99,111,111,107,105,101,45,102,105,120,101,100,45,104,105,110,116,8,0,13,46,99,111,111,107,105,101,45,102,108,97,115,104,8,0,13,46,99,111,111,107,105,101,45,102,108,111,97,116,8,0,10,46,99,111,111,107,105,101,45,102,110,8,0,14,46,99,111,111,107,105,101,45,102,111,111,116,101,114,8,0,23,46,99,111,111,107,105,101,45,102,111,111,116,101,114,45,45,119,114,97,112,112,101,114,8,0,21,46,99,111,111,107,105,101,45,102,111,111,116,101,114,45,98,97,110,110,101,114,8,0,18,46,99,111,111,107,105,101,45,102,111,111,116,101,114,45,98,97,114,8,0,24,46,99,111,111,107,105,101,45,102,111,111,116,101,114,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,45,102,111,111,116,101,114,45,100,105,97,108,111,103,8,0,18,46,99,111,111,107,105,101,45,102,111,111,116,101,114,45,109,115,103,8,0,13,46,99,111,111,107,105,101,45,102,114,97,109,101,8,0,18,46,99,111,111,107,105,101,45,102,117,108,108,45,98,108,101,101,100,8,0,20,46,99,111,111,107,105,101,45,102,119,45,99,111,110,116,97,105,110,101,114,8,0,27,46,99,111,111,107,105,101,45,103,100,112,114,45,112,111,112,117,112,45,111,118,101,108,97,121,101,114,8,0,20,46,99,111,111,107,105,101,45,103,100,112,114,95,95,98,97,110,110,101,114,8,0,21,46,99,111,111,107,105,101,45,103,100,112,114,95,95,102,97,100,101,45,105,110,8,0,13,46,99,111,111,107,105,101,45,103,105,111,100,111,8,0,10,46,99,111,111,107,105,101,45,103,111,8,0,12,46,99,111,111,107,105,101,45,103,114,111,119,8,0,17,46,99,111,111,107,105,101,45,103,117,97,114,100,45,109,115,103,8,0,17,46,99,111,111,107,105,101,45,103,117,105,100,101,108,105,110,101,8,0,20,46,99,111,111,107,105,101,45,104,97,110,100,108,105,110,103,45,110,101,119,8,0,22,46,99,111,111,107,105,101,45,104,105,110,116,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,45,104,105,110,116,45,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,45,104,111,108,100,101,114,8,0,14,46,99,111,111,107,105,101,45,104,111,112,112,101,114,8,0,20,46,99,111,111,107,105,101,45,104,117,45,99,111,110,116,97,105,110,101,114,8,0,14,46,99,111,111,107,105,101,45,105,99,101,114,105,107,8,0,22,46,99,111,111,107,105,101,45,105,100,101,110,116,105,102,105,99,97,116,105,111,110,8,0,21,46,99,111,111,107,105,101,45,105,109,97,103,101,45,119,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,45,105,109,103,8,0,23,46,99,111,111,107,105,101,45,105,110,102,111,45,98,97,99,107,103,114,111,117,110,100,8,0,19,46,99,111,111,107,105,101,45,105,110,102,111,45,98,97,110,110,101,114,8,0,16,46,99,111,111,107,105,101,45,105,110,102,111,45,98,97,114,8,0,18,46,99,111,111,107,105,101,45,105,110,102,111,45,98,108,111,99,107,8,0,26,46,99,111,111,107,105,101,45,105,110,102,111,45,98,108,111,99,107,45,115,101,99,116,105,111,110,8,0,16,46,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,8,0,22,46,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,45,97,103,114,101,101,8,0,24,46,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,45,111,118,101,114,108,97,121,8,0,26,46,99,111,111,107,105,101,45,105,110,102,111,45,99,108,111,115,101,45,119,114,97,112,112,101,114,8,0,17,46,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,8,0,22,46,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,101,110,116,8,0,21,46,99,111,111,107,105,101,45,105,110,102,111,45,100,114,111,112,100,111,119,110,8,0,19,46,99,111,111,107,105,101,45,105,110,102,111,45,104,101,97,100,101,114,8,0,18,46,99,111,111,107,105,101,45,105,110,102,111,45,108,97,121,101,114,8,0,18,46,99,111,111,107,105,101,45,105,110,102,111,45,109,111,100,97,108,8,0,36,46,99,111,111,107,105,101,45,105,110,102,111,45,109,111,114,101,45,111,112,116,105,111,110,115,45,98,97,99,107,103,114,111,117,110,100,8,0,31,46,99,111,111,107,105,101,45,105,110,102,111,45,109,111,114,101,45,111,112,116,105,111,110,115,45,108,97,121,101,114,8,0,42,46,99,111,111,107,105,101,45,105,110,102,111,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,105,110,100,111,119,45,99,111,110,97,116,105,110,101,114,8,0,20,46,99,111,111,107,105,101,45,105,110,102,111,45,111,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,45,105,110,102,111,45,115,108,105,100,101,114,8,0,18,46,99,111,111,107,105,101,45,105,110,102,111,45,115,116,114,105,112,8,0,17,46,99,111,111,107,105,101,45,105,110,102,111,45,116,101,120,116,8,0,20,46,99,111,111,107,105,101,45,105,110,102,111,45,119,114,97,112,112,101,114,8,0,19,46,99,111,111,107,105,101,45,105,110,102,111,95,95,112,97,110,101,108,8,0,25,46,99,111,111,107,105,101,45,105,110,102,111,95,95,112,97,110,101,108,45,45,115,104,111,119,8,0,15,46,99,111,111,107,105,101,45,105,110,102,111,98,97,114,8,0,19,46,99,111,111,107,105,101,45,105,110,102,111,98,111,120,45,119,114,112,8,0,14,46,99,111,111,107,105,101,45,105,110,102,111,114,109,8,0,22,46,99,111,111,107,105,101,45,105,110,102,111,114,109,45,97,110,100,45,97,115,107,8,0,23,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,98,97,114,8,0,24,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,99,111,110,116,8,0,29,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,112,97,110,101,108,8,0,24,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,116,101,120,116,8,0,27,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,119,114,97,112,112,101,114,8,0,27,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,118,101,45,109,101,115,115,97,103,101,8,0,16,46,99,111,111,107,105,101,45,105,110,102,111,114,109,101,114,8,0,23,46,99,111,111,107,105,101,45,105,110,102,111,114,109,101,114,45,104,111,108,100,101,114,8,0,13,46,99,111,111,107,105,101,45,105,110,102,111,115,8,0,13,46,99,111,111,107,105,101,45,105,110,110,101,114,8,0,23,46,99,111,111,107,105,101,45,105,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,45,105,110,113,117,105,114,121,45,45,115,101,116,116,105,110,103,115,8,0,14,46,99,111,111,107,105,101,45,105,110,115,101,114,116,8,0,12,46,99,111,111,107,105,101,45,105,116,101,109,8,0,23,46,99,111,111,107,105,101,45,105,116,101,109,45,112,114,111,116,101,99,116,105,111,110,8,0,11,46,99,111,111,107,105,101,45,106,97,114,8,0,12,46,99,111,111,107,105,101,45,106,118,110,115,8,0,12,46,99,111,111,107,105,101,45,107,117,116,117,8,0,9,46,99,111,111,107,105,101,45,108,8,0,13,46,99,111,111,107,105,101,45,108,97,98,101,108,8,0,22,46,99,111,111,107,105,101,45,108,97,98,101,108,45,119,114,97,112,112,114,101,114,8,0,15,46,99,111,111,107,105,101,45,108,97,110,100,105,110,103,8,0,14,46,99,111,111,107,105,101,45,108,97,115,99,104,101,8,0,17,46,99,111,111,107,105,101,45,108,97,115,99,104,101,45,104,112,8,0,11,46,99,111,111,107,105,101,45,108,97,119,8,0,17,46,99,111,111,107,105,101,45,108,97,119,45,97,108,101,114,116,8,0,28,46,99,111,111,107,105,101,45,108,97,119,45,97,112,112,114,111,118,97,108,45,119,114,97,112,112,101,114,8,0,18,46,99,111,111,107,105,101,45,108,97,119,45,98,97,110,110,101,114,8,0,15,46,99,111,111,107,105,101,45,108,97,119,45,98,97,114,8,0,17,46,99,111,111,107,105,101,45,108,97,119,45,98,108,111,99,107,8,0,25,46,99,111,111,107,105,101,45,108,97,119,45,98,108,111,99,107,45,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,45,108,97,119,45,98,111,120,8,0,16,46,99,111,111,107,105,101,45,108,97,119,45,99,111,110,116,8,0,21,46,99,111,111,107,105,101,45,108,97,119,45,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,45,108,97,119,45,100,105,97,108,111,103,8,0,33,46,99,111,111,107,105,101,45,108,97,119,45,100,105,97,108,111,103,45,99,111,110,116,101,110,116,119,114,97,112,112,101,114,8,0,16,46,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,8,0,20,46,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,8,0,19,46,99,111,111,107,105,101,45,108,97,119,45,109,101,115,115,97,103,101,8,0,18,46,99,111,111,107,105,101,45,108,97,119,45,110,111,116,105,99,101,8,0,28,46,99,111,111,107,105,101,45,108,97,119,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,45,108,97,119,45,111,118,101,114,108,97,121,8,0,18,46,99,111,111,107,105,101,45,108,97,119,45,112,111,108,105,99,121,8,0,16,46,99,111,111,107,105,101,45,108,97,119,45,116,101,120,116,8,0,19,46,99,111,111,107,105,101,45,108,97,119,45,119,114,97,112,112,101,114,8,0,22,46,99,111,111,107,105,101,45,108,97,119,95,95,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,45,108,97,121,101,114,45,97,100,118,97,110,99,101,100,8,0,24,46,99,111,111,107,105,101,45,108,97,121,101,114,45,98,97,99,107,103,114,111,117,110,100,8,0,20,46,99,111,111,107,105,101,45,108,97,121,101,114,45,98,111,116,116,111,109,8,0,23,46,99,111,111,107,105,101,45,108,97,121,101,114,45,99,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,45,108,97,121,101,114,45,110,101,119,8,0,21,46,99,111,111,107,105,101,45,108,97,121,101,114,45,118,105,115,105,98,108,101,8,0,21,46,99,111,111,107,105,101,45,108,97,121,101,114,45,119,114,97,112,112,101,114,8,0,22,46,99,111,111,107,105,101,45,108,97,121,101,114,95,95,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,45,108,97,121,101,114,95,95,119,114,97,112,112,101,114,8,0,17,46,99,111,111,107,105,101,45,108,97,121,101,114,98,111,100,121,8,0,14,46,99,111,111,107,105,101,45,108,97,121,101,114,115,8,0,17,46,99,111,111,107,105,101,45,108,98,45,98,111,116,116,111,109,8,0,13,46,99,111,111,107,105,101,45,108,101,103,97,108,8,0,20,46,99,111,111,107,105,101,45,108,101,103,97,108,45,98,97,110,110,101,114,8,0,17,46,99,111,111,107,105,101,45,108,101,103,97,108,45,98,111,120,8,0,21,46,99,111,111,107,105,101,45,108,101,103,97,108,45,99,111,110,116,101,110,116,8,0,18,46,99,111,111,107,105,101,45,108,101,103,97,108,45,105,110,102,111,8,0,20,46,99,111,111,107,105,101,45,108,101,103,97,108,45,110,111,116,105,99,101,8,0,21,46,99,111,111,107,105,101,45,108,101,103,97,108,45,111,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,45,108,101,103,105,115,108,97,116,105,111,110,8,0,12,46,99,111,111,107,105,101,45,108,103,112,100,8,0,18,46,99,111,111,107,105,101,45,108,103,112,100,45,112,111,112,117,112,8,0,19,46,99,111,111,107,105,101,45,108,105,110,101,95,95,108,97,121,101,114,8,0,16,46,99,111,111,107,105,101,45,108,105,115,116,101,110,101,114,8,0,15,46,99,111,111,107,105,101,45,109,97,100,110,101,115,115,8,0,26,46,99,111,111,107,105,101,45,109,97,110,97,103,101,109,101,110,116,45,111,118,101,114,108,97,121,8,0,25,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,45,101,120,116,101,110,100,101,100,8,0,22,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,98,97,110,110,101,114,8,0,23,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,99,111,110,115,101,110,116,8,0,22,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,100,105,97,108,111,103,8,0,23,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,111,118,101,114,108,97,121,8,0,32,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,112,111,112,117,112,95,95,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,112,111,114,116,108,101,116,8,0,12,46,99,111,111,107,105,101,45,109,97,114,107,8,0,12,46,99,111,111,107,105,101,45,109,97,115,107,8,0,19,46,99,111,111,107,105,101,45,109,97,116,45,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,45,109,101,108,100,105,110,103,8,0,20,46,99,111,111,107,105,101,45,109,101,108,100,105,110,103,45,102,111,110,100,8,0,23,46,99,111,111,107,105,101,45,109,101,108,100,105,110,103,45,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,45,109,101,110,116,105,111,110,8,0,11,46,99,111,111,107,105,101,45,109,101,115,8,0,13,46,99,111,111,107,105,101,45,109,101,115,97,106,8,0,12,46,99,111,111,107,105,101,45,109,101,115,115,8,0,20,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,50,48,50,48,8,0,22,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,97,110,110,101,114,8,0,19,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,97,114,8,0,21,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,108,111,99,107,8,0,35,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,108,111,99,107,105,110,103,45,98,97,99,107,103,114,111,117,110,100,8,0,19,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,111,120,8,0,25,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,100,101,115,107,116,111,112,8,0,29,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,109,111,100,97,108,45,111,118,101,114,108,97,121,8,0,23,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,111,118,101,114,108,97,121,8,0,23,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,119,114,97,112,112,101,114,8,0,27,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,46,99,109,115,70,108,101,120,105,98,108,101,8,0,20,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,95,95,98,97,114,8,0,26,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,95,95,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,95,95,119,114,97,112,8,0,24,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,95,95,119,114,97,112,112,101,114,8,0,16,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,115,8,0,17,46,99,111,111,107,105,101,45,109,101,115,115,97,103,105,110,103,8,0,27,46,99,111,111,107,105,101,45,109,101,115,115,97,103,105,110,103,45,99,111,109,112,111,110,101,110,116,8,0,17,46,99,111,111,107,105,101,45,109,105,110,45,112,97,110,101,108,8,0,22,46,99,111,111,107,105,101,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,8,0,16,46,99,111,111,107,105,101,45,109,111,100,97,108,45,98,103,8,0,21,46,99,111,111,107,105,101,45,109,111,100,97,108,45,109,101,115,115,97,103,101,8,0,21,46,99,111,111,107,105,101,45,109,111,100,97,108,45,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,8,0,18,46,99,111,111,107,105,101,45,109,111,100,101,95,95,119,114,97,112,8,0,14,46,99,111,111,107,105,101,45,109,111,100,117,108,101,8,0,22,46,99,111,111,107,105,101,45,109,111,100,117,108,101,45,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,45,109,111,110,115,116,101,114,8,0,22,46,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,100,105,97,108,111,103,8,0,23,46,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,111,118,101,114,108,97,121,8,0,26,46,99,111,111,107,105,101,45,109,111,110,115,116,101,114,95,95,99,111,110,116,97,105,110,101,114,8,0,15,46,99,111,111,107,105,101,45,109,115,103,45,98,97,114,8,0,15,46,99,111,111,107,105,101,45,109,115,103,45,98,111,120,8,0,16,46,99,111,111,107,105,101,45,109,115,103,45,105,110,102,111,8,0,26,46,99,111,111,107,105,101,45,109,115,103,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,45,109,115,103,45,119,114,97,112,8,0,20,46,99,111,111,107,105,101,45,109,115,103,95,95,99,111,110,116,101,110,116,8,0,11,46,99,111,111,107,105,101,45,110,97,103,8,0,14,46,99,111,111,107,105,101,45,110,97,103,98,97,114,8,0,11,46,99,111,111,107,105,101,45,110,97,118,8,0,14,46,99,111,111,107,105,101,45,110,97,118,98,97,114,8,0,12,46,99,111,111,107,105,101,45,110,111,110,101,8,0,26,46,99,111,111,107,105,101,45,110,111,116,45,99,111,110,102,105,114,109,45,98,97,110,110,101,114,8,0,12,46,99,111,111,107,105,101,45,110,111,116,101,8,0,18,46,99,111,111,107,105,101,45,110,111,116,101,45,45,119,114,97,112,8,0,22,46,99,111,111,107,105,101,45,110,111,116,101,45,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,45,110,111,116,101,45,112,111,112,117,112,8,0,20,46,99,111,111,107,105,101,45,110,111,116,101,45,119,114,97,112,112,101,114,8,0,21,46,99,111,111,107,105,101,45,110,111,116,101,95,95,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,45,110,111,116,102,8,0,25,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,45,105,115,86,105,115,105,98,108,101,8,0,23,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,45,118,105,115,105,98,108,101,8,0,23,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,45,119,114,97,112,112,101,114,8,0,16,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,50,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,97,108,101,114,116,8,0,21,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,97,110,110,101,114,8,0,18,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,97,114,8,0,21,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,111,116,116,111,109,8,0,24,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,101,110,116,8,0,21,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,100,105,97,108,111,103,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,100,115,118,103,111,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,102,105,120,101,100,8,0,21,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,102,111,111,116,101,114,8,0,29,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,102,117,108,108,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,104,111,108,100,101,114,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,105,110,110,101,114,8,0,22,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,111,118,101,114,108,97,121,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,112,111,112,117,112,8,0,19,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,114,111,111,116,8,0,18,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,116,111,112,8,0,17,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,117,105,8,0,19,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,8,0,36,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,45,112,114,105,118,97,99,121,112,111,108,105,99,121,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,99,101,46,97,108,101,114,116,8,0,30,46,99,111,111,107,105,101,45,110,111,116,105,99,101,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,8,0,21,46,99,111,111,107,105,101,45,110,111,116,105,99,101,46,98,111,116,116,111,109,8,0,18,46,99,111,111,107,105,101,45,110,111,116,105,99,101,46,116,111,112,8,0,26,46,99,111,111,107,105,101,45,110,111,116,105,99,101,95,95,98,97,99,107,103,114,111,117,110,100,8,0,21,46,99,111,111,107,105,101,45,110,111,116,105,99,101,95,95,105,110,110,101,114,8,0,23,46,99,111,111,107,105,101,45,110,111,116,105,99,101,95,95,111,118,101,114,108,97,121,8,0,17,46,99,111,111,107,105,101,45,110,111,116,105,99,101,98,97,114,8,0,13,46,99,111,111,107,105,101,45,110,111,116,105,102,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,102,45,98,97,110,110,101,114,8,0,30,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,45,101,120,116,101,114,110,97,108,8,0,26,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,97,108,101,114,116,8,0,29,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,99,107,100,114,111,112,8,0,31,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,99,107,103,114,111,117,110,100,8,0,27,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,8,0,24,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,8,0,26,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,108,111,99,107,8,0,24,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,111,120,8,0,27,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,117,98,98,108,101,8,0,30,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,101,115,8,0,27,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,104,101,97,100,101,114,8,0,27,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,104,111,108,100,101,114,8,0,28,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,109,101,115,115,97,103,101,8,0,26,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,109,111,100,97,108,8,0,24,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,109,115,103,8,0,25,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,8,0,25,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,98,97,114,8,0,26,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,119,114,97,112,8,0,29,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,119,114,97,112,112,101,114,8,0,23,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,95,119,114,8,0,21,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,115,8,0,16,46,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,8,0,24,46,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,45,99,111,110,116,101,110,116,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,102,105,107,97,115,106,111,110,8,0,14,46,99,111,111,107,105,101,45,110,111,116,105,102,121,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,102,121,45,98,108,111,99,107,8,0,24,46,99,111,111,107,105,101,45,110,111,116,105,102,121,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,45,110,111,116,105,102,121,45,112,111,112,117,112,8,0,23,46,99,111,111,107,105,101,45,110,111,116,105,102,121,95,95,119,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,45,110,116,102,8,0,13,46,99,111,111,107,105,101,45,110,117,100,103,101,8,0,13,46,99,111,111,107,105,101,45,111,102,102,101,114,8,0,10,46,99,111,111,107,105,101,45,111,107,8,0,14,46,99,111,111,107,105,101,45,111,110,45,116,111,112,8,0,11,46,99,111,111,107,105,101,45,111,110,101,8,0,11,46,99,111,111,107,105,101,45,111,112,97,8,0,25,46,99,111,111,107,105,101,45,111,112,101,114,97,116,105,111,110,45,109,101,115,115,97,103,101,8,0,14,46,99,111,111,107,105,101,45,111,112,116,45,105,110,8,0,22,46,99,111,111,107,105,101,45,111,112,116,45,105,110,45,111,118,101,114,108,97,121,8,0,15,46,99,111,111,107,105,101,45,111,112,116,45,111,117,116,8,0,13,46,99,111,111,107,105,101,45,111,112,116,105,110,8,0,19,46,99,111,111,107,105,101,45,111,112,116,105,110,45,109,111,100,97,108,8,0,20,46,99,111,111,107,105,101,45,111,112,116,105,111,110,115,45,104,111,111,107,8,0,13,46,99,111,111,107,105,101,45,111,117,116,101,114,8,0,23,46,99,111,111,107,105,101,45,111,117,116,101,114,45,99,111,110,116,97,105,110,101,114,8,0,28,46,99,111,111,107,105,101,45,111,117,116,101,114,45,99,111,110,116,97,105,110,101,114,45,119,114,97,112,8,0,21,46,99,111,111,107,105,101,45,111,117,116,101,114,45,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,45,111,117,116,116,101,114,8,0,19,46,99,111,111,107,105,101,45,111,118,101,110,45,119,105,100,103,101,116,8,0,12,46,99,111,111,107,105,101,45,111,118,101,114,8,0,15,46,99,111,111,107,105,101,45,111,118,101,114,76,97,121,8,0,19,46,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,98,111,120,8,0,25,46,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,109,111,100,97,108,45,98,111,120,8,0,23,46,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,45,112,97,110,101,8,0,19,46,99,111,111,107,105,101,45,112,97,110,101,45,45,115,104,111,119,110,8,0,21,46,99,111,111,107,105,101,45,112,97,110,101,108,45,99,111,110,116,101,110,116,8,0,21,46,99,111,111,107,105,101,45,112,97,110,101,108,45,111,118,101,114,108,97,121,8,0,18,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,8,0,28,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,45,98,97,99,107,100,114,111,112,8,0,23,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,45,100,105,109,8,0,25,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,98,97,110,110,101,114,8,0,32,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,99,111,110,116,97,105,110,101,114,45,98,105,103,8,0,36,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,99,111,110,116,97,105,110,101,114,45,111,118,101,114,108,97,121,8,0,25,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,102,111,111,116,101,114,8,0,25,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,112,114,111,109,112,116,8,0,14,46,99,111,111,107,105,101,45,112,108,117,103,105,110,8,0,14,46,99,111,111,107,105,101,45,112,111,108,105,99,101,8,0,16,46,99,111,111,107,105,101,45,112,111,108,105,99,105,101,115,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,45,98,108,111,99,107,8,0,25,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,99,99,101,112,116,8,0,31,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,103,103,114,101,115,115,105,118,101,45,112,111,112,117,112,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,103,114,101,101,8,0,24,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,103,114,101,101,109,101,110,116,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,108,101,114,116,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,114,101,97,8,0,25,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,45,98,97,114,8,0,18,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,114,8,0,23,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,114,45,98,97,115,101,8,0,25,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,114,45,98,111,116,116,111,109,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,101,108,116,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,108,111,99,107,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,111,116,116,111,109,8,0,18,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,111,120,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,108,97,115,115,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,115,101,110,116,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,116,8,0,24,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,116,101,110,116,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,118,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,105,97,108,111,103,8,0,25,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,105,115,99,108,97,105,109,101,114,8,0,18,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,105,118,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,117,114,101,120,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,101,108,101,109,101,110,116,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,102,111,111,116,101,114,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,102,111,114,109,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,103,100,112,114,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,105,110,102,111,114,109,8,0,31,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,106,117,110,101,45,50,48,49,57,45,110,111,116,105,99,101,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,108,97,121,101,114,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,111,100,97,108,8,0,18,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,115,103,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,101,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,99,101,8,0,31,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,27,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,111,112,116,45,111,117,116,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,111,118,101,114,108,97,121,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,97,110,101,108,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,105,110,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,114,111,109,112,116,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,101,99,116,105,111,110,8,0,23,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,110,97,99,107,98,97,114,8,0,24,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,116,97,116,101,109,101,110,116,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,117,109,109,97,114,121,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,116,105,112,115,8,0,27,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,116,105,112,115,45,119,114,97,112,112,101,114,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,97,114,110,105,110,103,8,0,32,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,105,100,103,101,116,8,0,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,105,110,100,111,119,8,0,19,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,8,0,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,8,0,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,95,95,99,97,114,100,8,0,25,46,99,111,111,107,105,101,45,112,111,108,105,99,121,95,95,99,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,45,112,111,108,105,99,121,109,115,103,8,0,16,46,99,111,111,107,105,101,45,112,111,108,105,116,105,99,115,8,0,11,46,99,111,111,107,105,101,45,112,111,112,8,0,16,46,99,111,111,107,105,101,45,112,111,112,45,109,97,105,110,8,0,14,46,99,111,111,107,105,101,45,112,111,112,45,117,112,8,0,24,46,99,111,111,107,105,101,45,112,111,112,45,117,112,45,99,111,109,112,111,110,101,110,116,8,0,24,46,99,111,111,107,105,101,45,112,111,112,45,117,112,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,45,112,111,112,45,117,112,45,111,118,101,114,108,97,121,8,0,16,46,99,111,111,107,105,101,45,112,111,112,45,119,114,97,112,8,0,13,46,99,111,111,107,105,101,45,112,111,112,85,112,8,0,13,46,99,111,111,107,105,101,45,112,111,112,105,110,8,0,15,46,99,111,111,107,105,101,45,112,111,112,111,118,101,114,8,0,23,46,99,111,111,107,105,101,45,112,111,112,111,118,101,114,45,45,97,99,116,105,118,101,8,0,17,46,99,111,111,107,105,101,45,112,111,112,117,112,45,98,97,114,8,0,17,46,99,111,111,107,105,101,45,112,111,112,117,112,45,98,111,120,8,0,23,46,99,111,111,107,105,101,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,45,112,111,112,117,112,45,102,105,114,115,116,8,0,28,46,99,111,111,107,105,101,45,112,111,112,117,112,45,109,111,98,105,108,101,45,119,114,97,112,112,101,114,8,0,21,46,99,111,111,107,105,101,45,112,111,112,117,112,45,111,118,101,114,108,97,121,8,0,17,46,99,111,111,107,105,101,45,112,111,112,117,112,45,119,105,110,8,0,21,46,99,111,111,107,105,101,45,112,111,112,117,112,45,119,114,97,112,112,101,114,8,0,33,46,99,111,111,107,105,101,45,112,111,112,117,112,46,118,97,114,105,97,110,116,83,101,108,101,99,116,77,111,98,105,108,101,8,0,22,46,99,111,111,107,105,101,45,112,111,112,117,112,95,95,99,111,110,116,101,110,116,8,0,22,46,99,111,111,107,105,101,45,112,111,112,117,112,95,95,104,101,97,100,105,110,103,8,0,22,46,99,111,111,107,105,101,45,112,111,112,117,112,95,95,119,114,97,112,112,101,114,8,0,10,46,99,111,111,107,105,101,45,112,112,8,0,24,46,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,45,109,111,100,97,108,8,0,27,46,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,95,95,111,118,101,114,108,97,121,8,0,15,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,8,0,22,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,25,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,109,101,115,115,97,103,101,8,0,22,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,110,111,116,105,99,101,8,0,28,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,21,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,112,111,112,117,112,8,0,17,46,99,111,111,107,105,101,45,112,114,111,99,101,115,115,101,100,8,0,13,46,99,111,111,107,105,101,45,112,114,111,109,111,8,0,14,46,99,111,111,107,105,101,45,112,114,111,109,112,116,8,0,24,46,99,111,111,107,105,101,45,112,114,111,109,112,116,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,45,112,114,111,109,112,116,45,119,114,97,112,8,0,22,46,99,111,111,107,105,101,45,112,114,111,109,112,116,45,119,114,97,112,112,101,114,8,0,21,46,99,111,111,107,105,101,45,112,114,111,109,112,116,95,95,111,117,116,101,114,8,0,16,46,99,111,111,107,105,101,45,112,114,111,109,112,116,101,114,8,0,16,46,99,111,111,107,105,101,45,113,117,101,115,116,105,111,110,8,0,14,46,99,111,111,107,105,101,45,114,101,103,105,111,110,8,0,15,46,99,111,111,107,105,101,45,114,101,113,117,101,115,116,8,0,19,46,99,111,111,107,105,101,45,114,101,113,117,101,115,116,45,99,116,110,8,0,21,46,99,111,111,107,105,101,45,114,101,118,111,107,101,45,104,105,100,100,101,110,8,0,14,46,99,111,111,107,105,101,45,114,105,98,98,111,110,8,0,24,46,99,111,111,107,105,101,45,114,105,98,98,111,110,45,99,111,109,112,111,110,101,110,116,8,0,18,46,99,111,111,107,105,101,45,114,105,99,104,116,108,105,110,105,101,8,0,12,46,99,111,111,107,105,101,45,114,111,100,111,8,0,20,46,99,111,111,107,105,101,45,114,111,100,111,45,45,99,101,110,116,101,114,8,0,19,46,99,111,111,107,105,101,45,114,111,100,111,45,100,105,97,108,111,103,8,0,17,46,99,111,111,107,105,101,45,114,111,103,108,97,45,100,105,118,8,0,11,46,99,111,111,107,105,101,45,114,111,119,8,0,21,46,99,111,111,107,105,101,45,114,117,108,101,115,45,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,45,114,117,110,119,97,121,8,0,22,46,99,111,111,107,105,101,45,115,99,114,105,112,116,45,99,111,110,116,101,110,116,8,0,15,46,99,111,111,107,105,101,45,115,101,99,116,105,111,110,8,0,18,46,99,111,111,107,105,101,45,115,101,116,45,112,111,112,45,117,112,8,0,26,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,45,98,111,116,116,111,109,45,98,97,114,8,0,23,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,45,109,101,115,115,97,103,101,8,0,24,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,45,115,105,109,112,108,101,8,0,22,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,97,108,101,114,116,8,0,21,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,98,97,110,100,8,0,24,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,109,101,115,115,97,103,101,8,0,29,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,46,102,105,120,101,100,45,98,111,116,116,111,109,8,0,27,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,46,105,115,45,118,105,115,105,98,108,101,8,0,27,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,95,95,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,95,95,111,118,101,114,108,97,121,8,0,16,46,99,111,111,107,105,101,45,115,104,111,119,45,98,97,114,8,0,23,46,99,111,111,107,105,101,45,115,104,111,119,45,98,97,114,45,98,111,116,116,111,109,8,0,12,46,99,111,111,107,105,101,45,115,105,103,110,8,0,16,46,99,111,111,107,105,101,45,115,105,103,110,98,111,100,121,8,0,24,46,99,111,111,107,105,101,45,115,105,116,101,117,115,97,103,101,45,110,111,116,105,99,101,8,0,23,46,99,111,111,107,105,101,45,115,108,105,100,101,45,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,45,115,108,105,100,101,45,100,111,119,110,8,0,14,46,99,111,111,107,105,101,45,115,108,105,100,101,114,8,0,13,46,99,111,111,107,105,101,45,115,110,97,99,107,8,0,15,46,99,111,111,107,105,101,45,115,110,105,112,112,101,116,8,0,14,46,99,111,111,107,105,101,45,115,112,108,97,115,104,8,0,13,46,99,111,111,107,105,101,45,115,116,97,103,101,8,0,17,46,99,111,111,107,105,101,45,115,116,97,116,101,109,101,110,116,8,0,23,46,99,111,111,107,105,101,45,115,116,97,116,101,109,101,110,116,45,112,111,112,117,112,8,0,14,46,99,111,111,107,105,101,45,115,116,97,116,117,115,8,0,22,46,99,111,111,107,105,101,45,115,116,97,116,117,115,45,109,101,115,115,97,103,101,8,0,14,46,99,111,111,107,105,101,45,115,116,105,99,107,121,8,0,19,46,99,111,111,107,105,101,45,115,116,105,99,107,121,45,102,108,101,120,8,0,21,46,99,111,111,107,105,101,45,115,116,105,99,107,121,45,104,111,108,100,101,114,8,0,19,46,99,111,111,107,105,101,45,115,116,105,99,107,121,45,119,114,97,112,8,0,18,46,99,111,111,107,105,101,45,115,116,105,107,101,121,45,110,97,118,8,0,13,46,99,111,111,107,105,101,45,115,116,114,105,112,8,0,14,46,99,111,111,107,105,101,45,115,116,114,105,112,101,8,0,17,46,99,111,111,107,105,101,45,115,117,98,115,116,114,97,116,101,8,0,11,46,99,111,111,107,105,101,45,116,97,98,8,0,13,46,99,111,111,107,105,101,45,116,97,98,108,101,8,0,13,46,99,111,111,107,105,101,45,116,101,97,100,101,8,0,14,46,99,111,111,107,105,101,45,116,101,97,115,101,114,8,0,13,46,99,111,111,107,105,101,45,116,101,107,115,116,8,0,13,46,99,111,111,107,105,101,45,116,101,114,109,115,8,0,13,46,99,111,111,107,105,101,45,116,104,105,110,103,8,0,14,46,99,111,111,107,105,101,45,116,104,111,117,103,104,8,0,12,46,99,111,111,107,105,101,45,116,105,109,101,8,0,11,46,99,111,111,107,105,101,45,116,105,112,8,0,14,46,99,111,111,107,105,101,45,116,105,112,45,98,103,8,0,21,46,99,111,111,107,105,101,45,116,105,112,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,45,116,105,112,45,119,114,97,112,8,0,14,46,99,111,111,107,105,101,45,116,111,45,116,111,112,8,0,13,46,99,111,111,107,105,101,45,116,111,97,115,116,8,0,18,46,99,111,111,107,105,101,45,116,111,97,115,116,45,119,114,97,112,8,0,15,46,99,111,111,107,105,101,45,116,111,97,115,116,101,114,8,0,12,46,99,111,111,107,105,101,45,116,111,111,108,8,0,22,46,99,111,111,107,105,101,45,116,111,111,108,45,99,111,110,116,97,105,110,101,114,8,0,15,46,99,111,111,107,105,101,45,116,111,111,108,98,97,114,8,0,15,46,99,111,111,107,105,101,45,116,111,111,108,116,105,112,8,0,23,46,99,111,111,107,105,101,45,116,111,111,108,116,105,112,45,99,111,110,116,101,110,116,8,0,21,46,99,111,111,107,105,101,45,116,111,111,108,116,105,112,95,112,111,112,117,112,8,0,11,46,99,111,111,107,105,101,45,116,111,112,8,0,18,46,99,111,111,107,105,101,45,116,111,112,45,98,97,110,110,101,114,8,0,26,46,99,111,111,107,105,101,45,116,111,112,98,97,110,110,101,114,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,45,116,111,115,45,102,111,111,116,101,114,8,0,11,46,99,111,111,107,105,101,45,116,120,116,8,0,17,46,99,111,111,107,105,101,45,117,105,45,100,105,97,108,111,103,8,0,13,46,99,111,111,107,105,101,45,117,110,100,105,122,8,0,13,46,99,111,111,107,105,101,45,117,115,97,103,101,8,0,18,46,99,111,111,107,105,101,45,117,115,97,103,101,45,105,110,102,111,8,0,24,46,99,111,111,107,105,101,45,117,115,97,103,101,45,105,110,102,111,45,98,108,111,99,107,8,0,17,46,99,111,111,107,105,101,45,117,115,97,103,101,45,109,115,103,8,0,26,46,99,111,111,107,105,101,45,117,115,97,103,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,20,46,99,111,111,107,105,101,45,117,115,97,103,101,45,110,111,116,105,102,121,8,0,19,46,99,111,111,107,105,101,45,117,115,97,103,101,45,112,111,112,117,112,8,0,20,46,99,111,111,107,105,101,45,117,115,97,103,101,45,119,105,100,103,101,116,8,0,21,46,99,111,111,107,105,101,45,117,115,97,103,101,45,119,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,45,117,115,101,8,0,17,46,99,111,111,107,105,101,45,117,115,101,45,112,111,112,117,112,8,0,17,46,99,111,111,107,105,101,45,117,115,101,100,45,110,111,116,101,8,0,13,46,99,111,111,107,105,101,45,117,115,103,97,101,8,0,14,46,99,111,111,107,105,101,45,117,115,108,111,118,105,8,0,14,46,99,111,111,107,105,101,45,117,122,101,110,101,116,8,0,25,46,99,111,111,107,105,101,45,118,101,114,112,108,105,99,104,116,45,109,101,108,100,105,110,103,8,0,22,46,99,111,111,107,105,101,45,119,97,108,108,45,99,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,45,119,97,108,108,45,102,111,114,109,8,0,20,46,99,111,111,107,105,101,45,119,97,108,108,45,119,114,97,112,112,101,114,8,0,18,46,99,111,111,107,105,101,45,119,97,114,110,45,109,111,100,97,108,8,0,16,46,99,111,111,107,105,101,45,119,97,114,110,45,109,115,103,8,0,27,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,98,97,110,110,101,114,45,118,105,101,119,8,0,19,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,98,97,114,8,0,25,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,99,111,110,116,101,110,116,8,0,23,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,109,101,115,115,97,103,101,8,0,29,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,109,111,100,97,108,45,45,114,105,98,98,111,110,8,0,21,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,112,97,110,101,108,8,0,21,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,112,111,112,117,112,8,0,23,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,119,114,97,112,112,101,114,8,0,24,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,95,95,111,118,101,114,108,97,121,8,0,24,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,95,95,119,114,97,112,112,101,114,8,0,20,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,95,115,104,111,119,8,0,18,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,98,97,114,8,0,15,46,99,111,111,107,105,101,45,119,97,114,110,117,110,103,8,0,14,46,99,111,111,107,105,101,45,119,105,100,103,101,116,8,0,20,46,99,111,111,107,105,101,45,119,105,100,103,101,116,45,45,111,112,101,110,8,0,21,46,99,111,111,107,105,101,45,119,105,100,103,101,116,45,104,111,108,100,101,114,8,0,17,46,99,111,111,107,105,101,45,119,105,100,103,101,116,45,118,50,8,0,20,46,99,111,111,107,105,101,45,119,105,110,100,111,119,45,98,108,111,99,107,8,0,34,46,99,111,111,107,105,101,45,119,105,110,100,111,119,45,111,118,101,114,108,97,121,45,110,111,45,115,101,116,116,105,110,103,115,8,0,21,46,99,111,111,107,105,101,45,119,105,110,100,111,119,45,115,101,108,101,99,116,8,0,10,46,99,111,111,107,105,101,45,119,114,8,0,12,46,99,111,111,107,105,101,45,119,114,97,112,8,0,20,46,99,111,111,107,105,101,45,119,114,97,112,45,99,111,110,116,101,110,116,8,0,16,46,99,111,111,107,105,101,45,119,114,97,112,45,116,105,112,8,0,13,46,99,111,111,107,105,101,45,119,114,97,112,112,8,0,21,46,99,111,111,107,105,101,45,119,114,97,112,112,101,114,45,112,111,112,117,112,8,0,19,46,99,111,111,107,105,101,45,119,114,110,45,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,45,122,45,105,110,100,101,120,8,0,13,46,99,111,111,107,105,101,46,97,108,101,114,116,8,0,14,46,99,111,111,107,105,101,46,97,108,101,114,116,101,8,0,22,46,99,111,111,107,105,101,46,97,110,99,104,111,114,101,100,45,116,111,97,115,116,8,0,14,46,99,111,111,107,105,101,46,98,97,110,110,101,114,8,0,16,46,99,111,111,107,105,101,46,98,103,45,119,104,105,116,101,8,0,32,46,99,111,111,107,105,101,46,99,104,97,110,103,101,45,109,101,115,115,97,103,101,45,45,111,110,45,99,108,105,99,107,8,0,23,46,99,111,111,107,105,101,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,8,0,16,46,99,111,111,107,105,101,46,99,111,110,116,101,117,100,111,8,0,22,46,99,111,111,107,105,101,46,99,111,111,107,105,101,45,102,117,108,108,102,97,116,8,0,21,46,99,111,111,107,105,101,46,99,111,111,107,105,101,45,108,111,119,102,97,116,8,0,14,46,99,111,111,107,105,101,46,99,117,115,116,111,109,8,0,13,46,99,111,111,107,105,101,46,102,105,120,101,100,8,0,20,46,99,111,111,107,105,101,46,102,105,120,101,100,45,98,111,116,116,111,109,8,0,15,46,99,111,111,107,105,101,46,105,115,45,115,104,111,119,8,0,18,46,99,111,111,107,105,101,46,105,115,45,118,105,115,105,98,108,101,8,0,17,46,99,111,111,107,105,101,46,105,115,86,105,115,105,98,108,101,8,0,25,46,99,111,111,107,105,101,46,106,113,117,101,114,121,45,110,111,116,105,102,121,45,98,97,114,8,0,17,46,99,111,111,107,105,101,46,106,115,45,98,97,110,110,101,114,8,0,22,46,99,111,111,107,105,101,46,107,111,122,101,112,114,101,95,105,103,97,122,105,116,8,0,12,46,99,111,111,107,105,101,46,109,98,45,48,8,0,15,46,99,111,111,107,105,101,46,109,101,115,115,97,103,101,8,0,16,46,99,111,111,107,105,101,46,109,101,115,115,97,103,101,115,8,0,27,46,99,111,111,107,105,101,46,110,97,118,98,97,114,45,102,105,120,101,100,45,98,111,116,116,111,109,8,0,14,46,99,111,111,107,105,101,46,111,112,116,45,105,110,8,0,16,46,99,111,111,107,105,101,46,112,45,97,99,116,105,118,101,8,0,13,46,99,111,111,107,105,101,46,112,111,112,117,112,8,0,14,46,99,111,111,107,105,101,46,114,101,119,111,107,101,8,0,11,46,99,111,111,107,105,101,46,114,111,119,8,0,16,46,99,111,111,107,105,101,46,116,111,112,45,105,110,102,111,8,0,15,46,99,111,111,107,105,101,46,118,45,97,108,101,114,116,8,0,15,46,99,111,111,107,105,101,46,118,105,115,105,98,108,101,8,0,14,46,99,111,111,107,105,101,46,119,105,100,103,101,116,8,0,19,46,99,111,111,107,105,101,46,119,105,100,103,101,116,95,116,101,120,116,8,0,24,46,99,111,111,107,105,101,50,52,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,8,46,99,111,111,107,105,101,53,8,0,10,46,99,111,111,107,105,101,65,99,99,8,0,13,46,99,111,111,107,105,101,65,99,99,101,112,116,8,0,16,46,99,111,111,107,105,101,65,99,99,101,112,116,66,111,120,8,0,18,46,99,111,111,107,105,101,65,99,99,101,112,116,80,97,110,101,108,8,0,18,46,99,111,111,107,105,101,65,99,99,101,112,116,80,111,112,117,112,8,0,19,46,99,111,111,107,105,101,65,99,99,101,112,116,87,105,110,100,111,119,8,0,20,46,99,111,111,107,105,101,65,99,99,101,112,116,87,114,97,112,112,101,114,8,0,17,46,99,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,8,0,20,46,99,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,66,111,120,8,0,24,46,99,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,79,118,101,114,108,97,121,8,0,24,46,99,111,111,107,105,101,65,99,99,101,112,116,97,116,105,111,110,77,111,100,117,108,101,8,0,15,46,99,111,111,107,105,101,65,99,99,101,112,116,101,100,8,0,23,46,99,111,111,107,105,101,65,99,99,101,112,116,101,114,71,114,97,121,66,111,100,121,8,0,20,46,99,111,111,107,105,101,65,99,99,101,112,116,101,114,80,111,112,117,112,8,0,21,46,99,111,111,107,105,101,65,99,99,101,112,116,101,114,83,108,105,100,101,114,8,0,13,46,99,111,111,107,105,101,65,99,116,105,118,101,8,0,9,46,99,111,111,107,105,101,65,100,8,0,13,46,99,111,111,107,105,101,65,100,118,105,99,101,8,0,13,46,99,111,111,107,105,101,65,100,118,105,115,101,8,0,12,46,99,111,111,107,105,101,65,103,114,101,101,8,0,16,46,99,111,111,107,105,101,65,103,114,101,101,109,101,110,116,8,0,12,46,99,111,111,107,105,101,65,108,101,114,116,8,0,24,46,99,111,111,107,105,101,65,108,101,114,116,66,97,114,67,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,65,108,101,114,116,66,97,114,77,101,115,115,97,103,101,8,0,18,46,99,111,111,107,105,101,65,108,101,114,116,66,105,103,84,111,112,8,0,15,46,99,111,111,107,105,101,65,108,101,114,116,66,111,120,8,0,21,46,99,111,111,107,105,101,65,108,101,114,116,67,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,65,108,101,114,116,68,101,115,107,116,111,112,8,0,17,46,99,111,111,107,105,101,65,108,101,114,116,76,97,121,101,114,8,0,19,46,99,111,111,107,105,101,65,108,101,114,116,87,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,65,108,108,101,114,116,8,0,14,46,99,111,111,107,105,101,65,110,110,111,121,101,114,8,0,14,46,99,111,111,107,105,101,65,112,112,114,111,118,101,8,0,12,46,99,111,111,107,105,101,65,115,107,101,114,8,0,17,46,99,111,111,107,105,101,66,97,99,107,103,114,111,117,110,100,8,0,10,46,99,111,111,107,105,101,66,97,110,8,0,14,46,99,111,111,107,105,101,66,97,110,100,101,97,117,8,0,20,46,99,111,111,107,105,101,66,97,110,110,101,114,45,45,108,97,121,101,114,8,0,19,46,99,111,111,107,105,101,66,97,110,110,101,114,65,99,116,105,118,101,8,0,22,46,99,111,111,107,105,101,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,8,0,27,46,99,111,111,107,105,101,66,97,110,110,101,114,68,105,115,99,108,97,105,109,101,114,87,114,97,112,8,0,20,46,99,111,111,107,105,101,66,97,110,110,101,114,79,118,101,114,108,97,121,8,0,17,46,99,111,111,107,105,101,66,97,110,110,101,114,84,101,120,116,8,0,20,46,99,111,111,107,105,101,66,97,110,110,101,114,87,114,97,112,112,101,114,8,0,21,46,99,111,111,107,105,101,66,97,110,110,101,114,95,95,98,97,110,110,101,114,8,0,22,46,99,111,111,107,105,101,66,97,110,110,101,114,95,95,119,114,97,112,112,101,114,8,0,17,46,99,111,111,107,105,101,66,97,114,45,102,105,108,108,101,114,8,0,20,46,99,111,111,107,105,101,66,97,114,45,110,101,119,45,115,116,121,108,101,8,0,15,46,99,111,111,107,105,101,66,97,114,65,110,105,73,110,8,0,19,46,99,111,111,107,105,101,66,97,114,67,111,110,116,97,105,110,101,114,8,0,15,46,99,111,111,107,105,101,66,97,114,73,110,110,101,114,8,0,17,46,99,111,111,107,105,101,66,97,114,79,118,101,114,108,97,121,8,0,23,46,99,111,111,107,105,101,66,97,114,82,101,118,105,101,119,68,101,115,107,116,111,112,8,0,13,46,99,111,111,107,105,101,66,97,114,84,111,112,8,0,17,46,99,111,111,107,105,101,66,97,114,87,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,66,97,114,88,8,0,21,46,99,111,111,107,105,101,66,97,114,95,95,99,111,110,116,97,105,110,101,114,8,0,10,46,99,111,111,107,105,101,66,101,97,8,0,10,46,99,111,111,107,105,101,66,108,107,8,0,12,46,99,111,111,107,105,101,66,108,111,99,107,8,0,11,46,99,111,111,107,105,101,66,108,111,103,8,0,10,46,99,111,111,107,105,101,66,110,114,8,0,13,46,99,111,111,107,105,101,66,110,114,87,114,112,8,0,13,46,99,111,111,107,105,101,66,111,116,116,111,109,8,0,10,46,99,111,111,107,105,101,66,111,120,8,0,18,46,99,111,111,107,105,101,66,111,120,45,119,114,97,112,112,101,114,8,0,20,46,99,111,111,107,105,101,66,111,120,66,97,99,107,103,114,111,117,110,100,8,0,14,46,99,111,111,107,105,101,66,111,120,87,114,97,112,8,0,19,46,99,111,111,107,105,101,66,111,120,95,95,119,114,97,112,112,101,114,8,0,22,46,99,111,111,107,105,101,66,116,110,58,110,111,116,40,98,117,116,116,111,110,41,8,0,13,46,99,111,111,107,105,101,66,117,98,98,108,101,8,0,9,46,99,111,111,107,105,101,67,68,8,0,14,46,99,111,111,107,105,101,67,97,108,108,111,117,116,8,0,12,46,99,111,111,107,105,101,67,104,101,99,107,8,0,21,46,99,111,111,107,105,101,67,104,101,99,107,77,97,105,110,80,97,110,101,108,8,0,17,46,99,111,111,107,105,101,67,104,111,105,99,101,73,110,102,111,8,0,12,46,99,111,111,107,105,101,67,108,97,115,115,8,0,12,46,99,111,111,107,105,101,67,108,111,115,101,8,0,17,46,99,111,111,107,105,101,67,110,105,108,67,117,115,116,111,109,8,0,18,46,99,111,111,107,105,101,67,110,105,108,77,97,107,104,101,105,97,8,0,17,46,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,8,0,10,46,99,111,111,107,105,101,67,111,110,8,0,14,46,99,111,111,107,105,101,67,111,110,99,101,110,116,8,0,21,46,99,111,111,107,105,101,67,111,110,102,105,114,109,79,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,67,111,110,102,105,114,109,97,116,105,111,110,8,0,26,46,99,111,111,107,105,101,67,111,110,102,105,114,109,97,116,105,111,110,77,101,115,115,97,103,101,8,0,11,46,99,111,111,107,105,101,67,111,110,115,8,0,20,46,99,111,111,107,105,101,67,111,110,115,101,110,116,45,48,45,50,45,49,8,0,21,46,99,111,111,107,105,101,67,111,110,115,101,110,116,45,100,105,97,108,111,103,8,0,19,46,99,111,111,107,105,101,67,111,110,115,101,110,116,65,108,101,114,116,8,0,20,46,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,8,0,17,46,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,114,8,0,26,46,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,114,67,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,114,87,112,8,0,23,46,99,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,101,110,116,8,0,30,46,99,111,111,107,105,101,67,111,110,115,101,110,116,67,117,115,116,111,109,105,122,101,45,100,105,97,108,111,103,8,0,20,46,99,111,111,107,105,101,67,111,110,115,101,110,116,70,111,111,116,101,114,8,0,21,46,99,111,111,107,105,101,67,111,110,115,101,110,116,72,105,110,119,101,105,115,8,0,28,46,99,111,111,107,105,101,67,111,110,115,101,110,116,72,105,110,119,101,105,115,79,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,67,111,110,115,101,110,116,76,97,121,101,114,8,0,21,46,99,111,111,107,105,101,67,111,110,115,101,110,116,77,101,115,115,97,103,101,8,0,19,46,99,111,111,107,105,101,67,111,110,115,101,110,116,80,97,110,101,108,8,0,19,46,99,111,111,107,105,101,67,111,110,115,101,110,116,80,111,112,117,112,8,0,19,46,99,111,111,107,105,101,67,111,110,115,101,110,116,83,104,111,114,116,8,0,21,46,99,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,112,101,114,8,0,24,46,99,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,112,101,114,67,111,110,8,0,16,46,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,86,50,8,0,14,46,99,111,111,107,105,101,67,111,110,116,114,111,108,8,0,19,46,99,111,111,107,105,101,67,111,110,116,114,111,108,95,95,66,97,114,8,0,28,46,99,111,111,107,105,101,67,111,110,116,114,111,108,95,95,66,97,114,67,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,67,111,114,114,101,99,116,111,114,8,0,12,46,99,111,111,107,105,101,67,111,118,101,114,8,0,18,46,99,111,111,107,105,101,68,101,116,97,105,108,115,87,114,97,112,8,0,13,46,99,111,111,107,105,101,68,105,97,108,111,103,8,0,16,46,99,111,111,107,105,101,68,105,97,108,111,103,84,111,112,8,0,15,46,99,111,111,107,105,101,68,105,97,108,111,103,117,101,8,0,14,46,99,111,111,107,105,101,68,105,114,87,114,97,112,8,0,16,46,99,111,111,107,105,101,68,105,114,101,99,116,105,118,101,8,0,12,46,99,111,111,107,105,101,68,105,115,99,108,8,0,20,46,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,66,111,120,8,0,26,46,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,67,111,110,116,97,105,110,101,114,8,0,33,46,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,67,111,110,116,97,105,110,101,114,87,114,97,112,112,101,114,8,0,19,46,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,86,50,8,0,24,46,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,87,114,97,112,112,101,114,8,0,10,46,99,111,111,107,105,101,68,105,118,8,0,13,46,99,111,111,107,105,101,68,114,97,119,101,114,8,0,9,46,99,111,111,107,105,101,69,78,8,0,9,46,99,111,111,107,105,101,69,85,8,0,14,46,99,111,111,107,105,101,69,108,101,109,101,110,116,8,0,10,46,99,111,111,107,105,101,69,110,103,8,0,15,46,99,111,111,107,105,101,70,97,110,99,121,98,111,120,8,0,14,46,99,111,111,107,105,101,70,108,111,97,116,101,114,8,0,12,46,99,111,111,107,105,101,70,108,121,101,114,8,0,13,46,99,111,111,107,105,101,70,108,121,111,117,116,8,0,13,46,99,111,111,107,105,101,70,111,111,116,101,114,8,0,16,46,99,111,111,107,105,101,70,111,111,116,101,114,68,105,118,8,0,15,46,99,111,111,107,105,101,70,111,111,116,101,114,98,103,8,0,14,46,99,111,111,107,105,101,70,111,114,119,97,114,100,8,0,11,46,99,111,111,107,105,101,71,97,116,101,8,0,10,46,99,111,111,107,105,101,71,99,111,8,0,14,46,99,111,111,107,105,101,72,97,110,100,108,101,114,8,0,13,46,99,111,111,107,105,101,72,101,97,100,101,114,8,0,19,46,99,111,111,107,105,101,72,101,97,100,101,114,67,101,110,116,101,114,8,0,22,46,99,111,111,107,105,101,72,101,97,100,101,114,67,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,72,101,97,100,101,114,87,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,72,105,110,116,8,0,20,46,99,111,111,107,105,101,72,105,110,116,67,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,72,105,110,116,69,120,116,101,110,100,101,100,8,0,14,46,99,111,111,107,105,101,72,105,110,119,101,105,115,8,0,14,46,99,111,111,107,105,101,73,110,102,111,66,97,114,8,0,14,46,99,111,111,107,105,101,73,110,102,111,66,111,120,8,0,17,46,99,111,111,107,105,101,73,110,102,111,87,105,110,100,111,119,8,0,18,46,99,111,111,107,105,101,73,110,102,111,87,114,97,112,112,101,114,8,0,21,46,99,111,111,107,105,101,73,110,102,111,95,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,8,0,21,46,99,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,66,97,114,8,0,27,46,99,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,67,111,110,116,97,105,110,101,114,8,0,13,46,99,111,111,107,105,101,73,110,115,105,100,101,8,0,9,46,99,111,111,107,105,101,74,115,8,0,8,46,99,111,111,107,105,101,75,8,0,14,46,99,111,111,107,105,101,76,97,119,45,98,111,120,8,0,30,46,99,111,111,107,105,101,76,97,119,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,13,46,99,111,111,107,105,101,76,97,119,66,97,114,8,0,13,46,99,111,111,107,105,101,76,97,119,66,111,111,8,0,13,46,99,111,111,107,105,101,76,97,119,66,111,120,8,0,15,46,99,111,111,107,105,101,76,97,119,80,111,112,117,112,8,0,24,46,99,111,111,107,105,101,76,97,119,80,111,112,117,112,67,111,110,116,97,105,110,101,114,8,0,13,46,99,111,111,107,105,101,76,97,119,80,114,111,8,0,12,46,99,111,111,107,105,101,76,97,121,101,114,8,0,21,46,99,111,111,107,105,101,76,97,121,101,114,95,95,99,111,110,116,101,110,116,8,0,12,46,99,111,111,107,105,101,76,101,103,97,108,8,0,16,46,99,111,111,107,105,101,76,101,103,97,108,67,111,109,112,8,0,21,46,99,111,111,107,105,101,76,101,103,97,108,67,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,76,101,103,97,108,95,99,111,109,112,8,0,12,46,99,111,111,107,105,101,76,105,103,104,116,8,0,10,46,99,111,111,107,105,101,77,83,71,8,0,11,46,99,111,111,107,105,101,77,97,105,110,8,0,16,46,99,111,111,107,105,101,77,97,105,110,80,97,110,101,108,8,0,13,46,99,111,111,107,105,101,77,97,115,116,101,114,8,0,14,46,99,111,111,107,105,101,77,101,108,100,105,110,103,8,0,14,46,99,111,111,107,105,101,77,101,108,100,117,110,103,8,0,11,46,99,111,111,107,105,101,77,101,115,115,8,0,17,46,99,111,111,107,105,101,77,101,115,115,97,103,101,66,97,114,8,0,17,46,99,111,111,107,105,101,77,101,115,115,97,103,101,66,111,120,8,0,23,46,99,111,111,107,105,101,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,77,101,115,115,97,103,101,68,105,118,8,0,19,46,99,111,111,107,105,101,77,101,115,115,97,103,101,80,97,110,101,108,8,0,21,46,99,111,111,107,105,101,77,101,115,115,97,103,101,87,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,77,111,100,97,108,8,0,15,46,99,111,111,107,105,101,77,111,100,97,108,66,111,120,8,0,24,46,99,111,111,107,105,101,77,111,100,97,108,95,95,98,97,99,107,103,114,111,117,110,100,8,0,22,46,99,111,111,107,105,101,77,111,100,117,108,101,67,111,110,116,97,105,110,101,114,8,0,14,46,99,111,111,107,105,101,77,111,110,115,116,101,114,8,0,19,46,99,111,111,107,105,101,77,111,110,115,116,101,114,45,105,110,102,111,8,0,19,46,99,111,111,107,105,101,77,115,103,67,111,110,116,97,105,110,101,114,8,0,14,46,99,111,111,107,105,101,77,115,103,87,114,97,112,8,0,18,46,99,111,111,107,105,101,78,111,116,65,99,99,101,112,116,101,100,8,0,11,46,99,111,111,107,105,101,78,111,116,101,8,0,12,46,99,111,111,107,105,101,78,111,116,101,115,8,0,11,46,99,111,111,107,105,101,78,111,116,105,8,0,13,46,99,111,111,107,105,101,78,111,116,105,99,101,8,0,24,46,99,111,111,107,105,101,78,111,116,105,99,101,45,45,105,115,86,105,115,105,98,108,101,8,0,14,46,99,111,111,107,105,101,78,111,116,105,99,101,50,8,0,14,46,99,111,111,107,105,101,78,111,116,105,99,101,65,8,0,20,46,99,111,111,107,105,101,78,111,116,105,99,101,66,97,108,108,111,111,110,8,0,16,46,99,111,111,107,105,101,78,111,116,105,99,101,66,97,114,8,0,16,46,99,111,111,107,105,101,78,111,116,105,99,101,66,111,120,8,0,22,46,99,111,111,107,105,101,78,111,116,105,99,101,67,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,78,111,116,105,99,101,67,111,110,116,101,110,116,8,0,18,46,99,111,111,107,105,101,78,111,116,105,99,101,80,111,112,85,112,8,0,26,46,99,111,111,107,105,101,78,111,116,105,99,101,84,101,120,116,67,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,78,111,116,105,99,101,84,121,112,101,49,8,0,20,46,99,111,111,107,105,101,78,111,116,105,99,101,87,114,97,112,112,101,114,8,0,24,46,99,111,111,107,105,101,78,111,116,105,99,101,95,95,99,111,110,116,97,105,110,101,114,8,0,12,46,99,111,111,107,105,101,78,111,116,105,102,8,0,19,46,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,25,46,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,110,110,101,114,8,0,22,46,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,8,0,28,46,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,67,111,110,116,97,105,110,101,114,8,0,24,46,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,80,111,112,117,112,8,0,25,46,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,87,105,100,103,101,116,8,0,29,46,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,95,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,78,111,116,105,102,105,101,114,87,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,78,111,116,105,102,121,8,0,16,46,99,111,111,107,105,101,78,111,116,105,102,121,66,97,114,8,0,12,46,99,111,111,107,105,101,79,112,116,73,110,8,0,23,46,99,111,111,107,105,101,79,112,116,79,117,116,66,111,120,87,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,79,117,116,101,114,8,0,14,46,99,111,111,107,105,101,79,118,101,114,108,97,121,8,0,17,46,99,111,111,107,105,101,79,118,101,114,108,97,121,66,111,120,8,0,8,46,99,111,111,107,105,101,80,8,0,11,46,99,111,111,107,105,101,80,97,99,107,8,0,12,46,99,111,111,107,105,101,80,97,110,101,108,8,0,20,46,99,111,111,107,105,101,80,101,114,109,105,115,105,111,110,73,110,102,111,8,0,17,46,99,111,111,107,105,101,80,101,114,109,105,115,115,105,111,110,8,0,20,46,99,111,111,107,105,101,80,101,114,109,105,116,87,114,97,112,112,101,114,8,0,18,46,99,111,111,107,105,101,80,111,108,105,99,101,66,108,111,99,107,8,0,20,46,99,111,111,107,105,101,80,111,108,105,99,121,45,98,97,110,110,101,114,8,0,19,46,99,111,111,107,105,101,80,111,108,105,99,121,45,112,111,112,117,112,8,0,14,46,99,111,111,107,105,101,80,111,108,105,99,121,65,8,0,22,46,99,111,111,107,105,101,80,111,108,105,99,121,65,103,114,101,101,109,101,110,116,8,0,14,46,99,111,111,107,105,101,80,111,108,105,99,121,66,8,0,24,46,99,111,111,107,105,101,80,111,108,105,99,121,66,97,110,110,101,114,79,117,116,101,114,8,0,16,46,99,111,111,107,105,101,80,111,108,105,99,121,66,110,114,8,0,16,46,99,111,111,107,105,101,80,111,108,105,99,121,66,111,120,8,0,22,46,99,111,111,107,105,101,80,111,108,105,99,121,67,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,80,111,108,105,99,121,67,117,115,116,111,109,8,0,18,46,99,111,111,107,105,101,80,111,108,105,99,121,71,111,109,97,103,8,0,21,46,99,111,111,107,105,101,80,111,108,105,99,121,76,105,103,104,116,66,111,120,8,0,31,46,99,111,111,107,105,101,80,111,108,105,99,121,76,105,103,104,116,66,111,120,79,118,101,114,102,108,111,119,66,103,8,0,20,46,99,111,111,107,105,101,80,111,108,105,99,121,77,101,115,115,97,103,101,8,0,19,46,99,111,111,107,105,101,80,111,108,105,99,121,78,111,116,105,99,101,8,0,27,46,99,111,111,107,105,101,80,111,108,105,99,121,78,111,116,105,102,121,45,119,114,97,112,112,101,114,8,0,20,46,99,111,111,107,105,101,80,111,108,105,99,121,79,118,101,114,108,97,121,8,0,18,46,99,111,111,107,105,101,80,111,108,105,99,121,80,111,112,117,112,8,0,20,46,99,111,111,107,105,101,80,111,108,105,99,121,83,110,105,112,112,101,116,8,0,17,46,99,111,111,107,105,101,80,111,108,105,99,121,84,101,120,116,8,0,20,46,99,111,111,107,105,101,80,111,108,105,99,121,87,114,97,112,112,101,114,8,0,23,46,99,111,111,107,105,101,80,111,108,105,99,121,95,95,102,105,120,66,108,111,99,107,8,0,27,46,99,111,111,107,105,101,80,111,108,105,116,105,99,115,78,111,116,105,102,105,99,97,116,105,111,110,8,0,22,46,99,111,111,107,105,101,80,111,108,105,116,105,99,115,87,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,80,111,112,80,117,112,8,0,12,46,99,111,111,107,105,101,80,111,112,85,112,8,0,20,46,99,111,111,107,105,101,80,111,112,85,112,79,117,116,101,114,68,105,118,8,0,16,46,99,111,111,107,105,101,80,111,112,85,112,87,114,97,112,8,0,12,46,99,111,111,107,105,101,80,111,112,105,110,8,0,21,46,99,111,111,107,105,101,80,111,112,105,110,95,95,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,80,111,112,117,112,58,110,111,116,40,98,111,100,121,41,8,0,21,46,99,111,111,107,105,101,80,111,112,117,112,67,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,80,111,112,117,112,80,97,114,116,8,0,17,46,99,111,111,107,105,101,80,111,112,117,112,83,109,97,108,108,8,0,14,46,99,111,111,107,105,101,80,114,105,118,97,99,121,8,0,21,46,99,111,111,107,105,101,80,114,105,118,97,99,121,73,110,102,111,68,105,118,8,0,26,46,99,111,111,107,105,101,80,114,111,109,112,116,95,111,117,116,101,114,87,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,80,117,115,104,8,0,12,46,99,111,111,107,105,101,81,117,101,114,121,8,0,15,46,99,111,111,107,105,101,82,101,109,105,110,100,101,114,8,0,22,46,99,111,111,107,105,101,82,101,109,105,110,100,101,114,87,114,97,112,112,101,114,8,0,18,46,99,111,111,107,105,101,82,101,115,116,114,105,99,116,105,111,110,8,0,26,46,99,111,111,107,105,101,82,105,99,104,116,108,105,110,101,95,99,111,110,116,97,105,110,101,114,8,0,10,46,99,111,111,107,105,101,82,111,119,8,0,13,46,99,111,111,107,105,101,83,99,114,105,112,116,8,0,14,46,99,111,111,107,105,101,83,101,99,116,105,111,110,8,0,16,46,99,111,111,107,105,101,83,101,108,101,99,116,68,105,118,8,0,15,46,99,111,111,107,105,101,83,101,116,116,105,110,103,115,8,0,18,46,99,111,111,107,105,101,83,101,116,116,105,110,103,115,66,116,110,8,0,12,46,99,111,111,107,105,101,83,104,101,108,108,8,0,16,46,99,111,111,107,105,101,83,104,111,119,67,108,97,115,115,8,0,16,46,99,111,111,107,105,101,83,116,97,116,101,109,101,110,116,8,0,22,46,99,111,111,107,105,101,83,116,97,116,101,109,101,110,116,45,98,108,111,99,107,8,0,19,46,99,111,111,107,105,101,84,101,114,109,115,67,111,110,116,101,110,116,8,0,11,46,99,111,111,107,105,101,84,101,120,116,8,0,14,46,99,111,111,107,105,101,84,105,112,87,114,97,112,8,0,10,46,99,111,111,107,105,101,84,107,100,8,0,12,46,99,111,111,107,105,101,84,111,84,111,112,8,0,12,46,99,111,111,107,105,101,84,111,97,115,116,8,0,11,46,99,111,111,107,105,101,84,111,111,108,8,0,14,46,99,111,111,107,105,101,84,111,111,108,98,97,114,8,0,24,46,99,111,111,107,105,101,84,111,111,108,116,105,112,58,110,111,116,40,104,116,109,108,41,8,0,22,46,99,111,111,107,105,101,84,111,111,108,116,105,112,75,111,110,116,101,110,101,114,8,0,10,46,99,111,111,107,105,101,84,111,112,8,0,15,46,99,111,111,107,105,101,84,114,105,97,110,103,108,101,8,0,30,46,99,111,111,107,105,101,85,115,97,103,101,65,108,101,114,116,77,97,105,110,67,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,85,115,101,87,97,114,110,105,110,103,8,0,20,46,99,111,111,107,105,101,85,115,101,114,65,103,114,101,101,109,101,110,116,8,0,15,46,99,111,111,107,105,101,86,105,111,108,97,116,111,114,8,0,21,46,99,111,111,107,105,101,86,105,111,108,97,116,111,114,45,102,105,120,101,100,8,0,20,46,99,111,111,107,105,101,86,105,111,108,97,116,111,114,70,105,120,101,100,8,0,24,46,99,111,111,107,105,101,86,105,115,105,98,108,101,58,110,111,116,40,98,111,100,121,41,8,0,14,46,99,111,111,107,105,101,87,97,108,97,68,105,118,8,0,18,46,99,111,111,107,105,101,87,97,108,108,87,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,87,97,114,110,8,0,14,46,99,111,111,107,105,101,87,97,114,110,105,110,103,8,0,24,46,99,111,111,107,105,101,87,97,114,110,105,110,103,66,97,99,107,103,114,111,117,110,100,8,0,17,46,99,111,111,107,105,101,87,97,114,110,105,110,103,66,111,120,8,0,23,46,99,111,111,107,105,101,87,97,114,110,105,110,103,67,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,87,97,114,110,105,110,103,83,101,99,116,105,111,110,8,0,16,46,99,111,111,107,105,101,87,101,116,103,101,118,105,110,103,8,0,21,46,99,111,111,107,105,101,87,101,116,103,101,118,105,110,103,77,111,100,97,108,8,0,13,46,99,111,111,107,105,101,87,105,100,103,101,116,8,0,13,46,99,111,111,107,105,101,87,105,110,100,111,119,8,0,11,46,99,111,111,107,105,101,87,114,97,112,8,0,12,46,99,111,111,107,105,101,87,114,97,112,112,8,0,14,46,99,111,111,107,105,101,87,114,97,112,112,101,114,8,0,10,46,99,111,111,107,105,101,87,114,112,8,0,25,46,99,111,111,107,105,101,91,100,97,116,97,45,99,111,111,107,105,101,45,105,110,102,111,93,8,0,27,46,99,111,111,107,105,101,91,100,97,116,97,45,99,111,111,107,105,101,45,110,111,116,105,99,101,93,8,0,20,46,99,111,111,107,105,101,91,100,97,116,97,45,99,111,111,107,105,101,93,8,0,28,46,99,111,111,107,105,101,91,100,97,116,97,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,93,8,0,36,46,99,111,111,107,105,101,91,100,97,116,97,45,115,101,108,101,99,116,111,114,61,34,99,111,111,107,105,101,115,45,98,97,114,34,93,8,0,34,46,99,111,111,107,105,101,91,110,103,45,104,105,100,101,61,34,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,34,93,8,0,27,46,99,111,111,107,105,101,91,114,111,108,101,61,34,97,108,101,114,116,100,105,97,108,111,103,34,93,8,0,14,46,99,111,111,107,105,101,95,66,97,110,110,101,114,8,0,15,46,99,111,111,107,105,101,95,95,97,99,99,101,112,116,8,0,22,46,99,111,111,107,105,101,95,95,97,108,101,114,116,45,45,97,99,116,105,118,101,8,0,13,46,99,111,111,107,105,101,95,95,97,114,101,97,8,0,19,46,99,111,111,107,105,101,95,95,98,97,99,107,103,114,111,117,110,100,8,0,15,46,99,111,111,107,105,101,95,95,98,97,110,110,101,114,8,0,12,46,99,111,111,107,105,101,95,95,98,97,114,8,0,14,46,99,111,111,107,105,101,95,95,98,108,111,99,107,8,0,12,46,99,111,111,107,105,101,95,95,98,111,120,8,0,16,46,99,111,111,107,105,101,95,95,99,97,108,108,111,117,116,8,0,15,46,99,111,111,107,105,101,95,95,99,111,108,117,109,110,8,0,16,46,99,111,111,107,105,101,95,95,99,111,110,115,101,110,116,8,0,18,46,99,111,111,107,105,101,95,95,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,95,95,99,111,110,116,101,110,116,8,0,12,46,99,111,111,107,105,101,95,95,100,105,118,8,0,13,46,99,111,111,107,105,101,95,95,102,108,101,120,8,0,25,46,99,111,111,107,105,101,95,95,102,108,111,97,116,45,45,99,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,95,95,102,108,111,97,116,105,110,103,8,0,25,46,99,111,111,107,105,101,95,95,102,108,111,97,116,105,110,103,45,45,98,111,116,116,111,109,8,0,15,46,99,111,111,107,105,101,95,95,102,111,111,116,101,114,8,0,14,46,99,111,111,107,105,101,95,95,105,110,110,101,114,8,0,16,46,99,111,111,107,105,101,95,95,109,97,110,97,103,101,114,8,0,16,46,99,111,111,107,105,101,95,95,109,101,115,115,97,103,101,8,0,26,46,99,111,111,107,105,101,95,95,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,8,0,14,46,99,111,111,107,105,101,95,95,109,111,100,97,108,8,0,21,46,99,111,111,107,105,101,95,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,99,111,111,107,105,101,95,95,111,118,101,114,108,97,121,8,0,14,46,99,111,111,107,105,101,95,95,112,97,110,101,108,8,0,15,46,99,111,111,107,105,101,95,95,112,111,108,105,99,121,8,0,22,46,99,111,111,107,105,101,95,95,112,111,108,105,99,121,45,110,111,116,105,99,101,8,0,15,46,99,111,111,107,105,101,95,95,112,114,111,109,112,116,8,0,15,46,99,111,111,107,105,101,95,95,114,101,118,101,97,108,8,0,13,46,99,111,111,107,105,101,95,95,115,104,111,119,8,0,12,46,99,111,111,107,105,101,95,95,116,111,112,8,0,13,46,99,111,111,107,105,101,95,95,119,97,108,108,8,0,19,46,99,111,111,107,105,101,95,95,119,97,114,110,95,95,119,114,97,112,8,0,26,46,99,111,111,107,105,101,95,95,119,97,114,110,105,110,103,45,109,101,115,115,97,103,105,110,103,8,0,15,46,99,111,111,107,105,101,95,95,119,105,110,100,111,119,8,0,13,46,99,111,111,107,105,101,95,95,119,114,97,112,8,0,16,46,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,8,0,24,46,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,95,110,111,110,101,117,117,107,8,0,14,46,99,111,111,107,105,101,95,97,99,99,101,112,116,8,0,24,46,99,111,111,107,105,101,95,97,99,99,101,112,116,95,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,95,97,99,99,101,112,116,95,110,111,116,101,98,111,120,8,0,18,46,99,111,111,107,105,101,95,97,99,99,101,112,116,97,110,99,101,8,0,16,46,99,111,111,107,105,101,95,97,99,99,101,112,116,101,114,8,0,13,46,99,111,111,107,105,101,95,97,99,101,112,116,8,0,11,46,99,111,111,107,105,101,95,97,99,107,8,0,12,46,99,111,111,107,105,101,95,97,100,118,50,8,0,14,46,99,111,111,107,105,101,95,97,100,118,105,99,101,8,0,17,46,99,111,111,107,105,101,95,97,103,114,101,101,109,101,110,116,8,0,13,46,99,111,111,107,105,101,95,97,108,101,114,116,8,0,18,46,99,111,111,107,105,101,95,97,108,101,114,116,95,99,111,110,116,8,0,21,46,99,111,111,107,105,101,95,97,108,101,114,116,95,109,101,115,115,97,103,101,8,0,15,46,99,111,111,107,105,101,95,97,112,112,114,111,118,101,8,0,20,46,99,111,111,107,105,101,95,97,112,112,114,111,118,101,100,95,98,97,114,8,0,12,46,99,111,111,107,105,101,95,97,114,101,97,8,0,18,46,99,111,111,107,105,101,95,98,97,99,107,103,114,111,117,110,100,8,0,16,46,99,111,111,107,105,101,95,98,97,99,107,119,114,97,112,8,0,11,46,99,111,111,107,105,101,95,98,97,110,8,0,14,46,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,20,46,99,111,111,107,105,101,95,98,97,110,110,101,114,45,45,114,111,111,116,8,0,22,46,99,111,111,107,105,101,95,98,97,110,110,101,114,45,104,97,110,100,108,101,100,8,0,25,46,99,111,111,107,105,101,95,98,97,110,110,101,114,95,98,97,99,107,103,114,111,117,110,100,8,0,24,46,99,111,111,107,105,101,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,95,98,97,110,110,101,114,95,102,111,111,116,101,114,8,0,22,46,99,111,111,107,105,101,95,98,97,110,110,101,114,95,111,118,101,114,108,97,121,8,0,22,46,99,111,111,107,105,101,95,98,97,110,110,101,114,95,115,101,99,116,105,111,110,8,0,16,46,99,111,111,107,105,101,95,98,97,110,110,105,101,114,101,8,0,11,46,99,111,111,107,105,101,95,98,97,114,8,0,16,46,99,111,111,107,105,101,95,98,97,114,95,98,97,115,101,8,0,16,46,99,111,111,107,105,101,95,98,97,114,95,116,101,120,116,8,0,14,46,99,111,111,107,105,101,95,98,97,114,95,118,50,8,0,19,46,99,111,111,107,105,101,95,98,97,114,95,119,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,95,98,97,114,114,97,8,0,10,46,99,111,111,107,105,101,95,98,103,8,0,13,46,99,111,111,107,105,101,95,98,108,111,99,107,8,0,15,46,99,111,111,107,105,101,95,98,108,111,99,107,101,114,8,0,13,46,99,111,111,107,105,101,95,98,111,108,99,107,8,0,11,46,99,111,111,107,105,101,95,98,111,116,8,0,11,46,99,111,111,107,105,101,95,98,111,120,8,0,18,46,99,111,111,107,105,101,95,98,111,120,95,115,104,97,100,111,119,8,0,13,46,99,111,111,107,105,101,95,99,104,101,99,107,8,0,14,46,99,111,111,107,105,101,95,99,104,111,105,99,101,8,0,16,46,99,111,111,107,105,101,95,99,110,116,110,114,95,115,116,8,0,15,46,99,111,111,107,105,101,95,99,111,110,102,105,114,109,8,0,35,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,22,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,95,97,108,101,114,116,8,0,22,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,8,0,32,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,100,105,97,108,111,103,8,0,22,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,104,111,108,100,101,114,8,0,23,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,111,118,101,114,108,97,121,8,0,21,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,112,111,112,117,112,8,0,21,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,116,105,116,108,101,8,0,12,46,99,111,111,107,105,101,95,99,111,110,116,8,0,17,46,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,95,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,95,99,111,110,116,101,110,116,8,0,11,46,99,111,111,107,105,101,95,99,115,116,8,0,26,46,99,111,111,107,105,101,95,100,105,115,99,97,108,105,109,101,114,95,101,110,103,108,105,115,104,8,0,18,46,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,8,0,18,46,99,111,111,107,105,101,95,100,105,115,99,108,111,115,117,114,101,8,0,15,46,99,111,111,107,105,101,95,100,105,115,112,108,97,121,8,0,11,46,99,111,111,107,105,101,95,100,105,118,8,0,20,46,99,111,111,107,105,101,95,101,110,97,98,108,101,95,112,111,112,117,112,8,0,14,46,99,111,111,107,105,101,95,101,117,95,98,97,114,8,0,20,46,99,111,111,107,105,101,95,101,117,95,99,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,95,101,118,105,108,95,111,118,101,114,8,0,13,46,99,111,111,107,105,101,95,102,108,111,97,116,8,0,14,46,99,111,111,107,105,101,95,102,108,121,111,117,116,8,0,20,46,99,111,111,107,105,101,95,102,111,111,116,101,114,95,102,105,120,101,100,8,0,24,46,99,111,111,107,105,101,95,102,114,97,109,101,95,98,97,99,107,103,114,111,117,110,100,8,0,12,46,99,111,111,107,105,101,95,103,100,112,114,8,0,13,46,99,111,111,107,105,101,95,103,114,97,121,76,8,0,14,46,99,111,111,107,105,101,95,104,101,108,112,101,114,8,0,14,46,99,111,111,107,105,101,95,104,105,100,100,101,110,8,0,12,46,99,111,111,107,105,101,95,104,105,110,116,8,0,15,46,99,111,111,107,105,101,95,104,105,110,119,101,105,115,8,0,11,46,99,111,111,107,105,101,95,105,110,102,8,0,12,46,99,111,111,107,105,101,95,105,110,102,111,8,0,17,46,99,111,111,107,105,101,95,105,110,102,111,95,98,111,120,49,8,0,22,46,99,111,111,107,105,101,95,105,110,102,111,95,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,95,105,110,102,111,95,99,111,110,116,101,110,116,8,0,17,46,99,111,111,107,105,101,95,105,110,102,111,95,119,114,97,112,8,0,20,46,99,111,111,107,105,101,95,105,110,102,111,95,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,95,105,110,102,111,114,109,8,0,18,46,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,101,8,0,27,46,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,45,45,97,99,116,105,118,101,8,0,24,46,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,45,45,98,97,114,8,0,28,46,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,45,45,111,118,101,114,108,97,121,8,0,24,46,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,45,45,116,111,112,8,0,13,46,99,111,111,107,105,101,95,105,110,110,101,114,8,0,11,46,99,111,111,107,105,101,95,108,97,119,8,0,21,46,99,111,111,107,105,101,95,108,97,119,95,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,95,108,97,119,95,100,105,97,108,111,103,8,0,25,46,99,111,111,107,105,101,95,108,97,119,95,114,101,118,101,97,108,95,100,105,97,108,111,103,8,0,26,46,99,111,111,107,105,101,95,108,97,119,95,114,101,118,101,97,108,95,111,118,101,114,108,97,121,8,0,13,46,99,111,111,107,105,101,95,108,97,121,101,114,8,0,12,46,99,111,111,107,105,101,95,108,98,111,120,8,0,15,46,99,111,111,107,105,101,95,108,105,99,101,110,99,101,8,0,15,46,99,111,111,107,105,101,95,108,111,97,100,105,110,103,8,0,12,46,99,111,111,107,105,101,95,108,111,103,111,8,0,9,46,99,111,111,107,105,101,95,109,8,0,18,46,99,111,111,107,105,101,95,109,97,105,110,95,98,108,111,99,107,8,0,15,46,99,111,111,107,105,101,95,109,101,108,100,105,110,103,8,0,15,46,99,111,111,107,105,101,95,109,101,108,100,117,110,103,8,0,12,46,99,111,111,107,105,101,95,109,101,115,115,8,0,15,46,99,111,111,107,105,101,95,109,101,115,115,97,103,101,8,0,19,46,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,98,111,120,8,0,25,46,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,100,105,115,112,108,97,121,101,100,8,0,20,46,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,119,114,97,112,8,0,11,46,99,111,111,107,105,101,95,109,111,98,8,0,23,46,99,111,111,107,105,101,95,109,111,100,97,108,95,98,117,116,116,111,110,95,118,53,8,0,19,46,99,111,111,107,105,101,95,109,111,100,97,108,95,111,117,116,101,114,8,0,14,46,99,111,111,107,105,101,95,109,111,100,117,108,101,8,0,15,46,99,111,111,107,105,101,95,109,111,110,115,116,101,114,8,0,19,46,99,111,111,107,105,101,95,109,111,110,115,116,101,114,95,98,111,120,8,0,15,46,99,111,111,107,105,101,95,109,115,103,95,98,108,107,8,0,18,46,99,111,111,107,105,101,95,110,101,119,115,108,101,116,116,101,114,8,0,12,46,99,111,111,107,105,101,95,110,111,116,101,8,0,16,46,99,111,111,107,105,101,95,110,111,116,101,95,98,107,103,8,0,14,46,99,111,111,107,105,101,95,110,111,116,105,99,101,8,0,20,46,99,111,111,107,105,101,95,110,111,116,105,99,101,95,98,108,111,99,107,8,0,19,46,99,111,111,107,105,101,95,110,111,116,105,99,101,95,98,108,117,101,8,0,22,46,99,111,111,107,105,101,95,110,111,116,105,99,101,95,111,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,95,110,111,116,105,99,101,95,119,114,97,112,8,0,22,46,99,111,111,107,105,101,95,110,111,116,105,99,101,95,119,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,95,110,111,116,105,102,8,0,14,46,99,111,111,107,105,101,95,110,111,116,105,102,101,8,0,20,46,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,26,46,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,98,108,111,99,107,8,0,30,46,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,110,116,97,105,110,101,114,8,0,28,46,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,95,110,111,116,105,102,121,8,0,13,46,99,111,111,107,105,101,95,111,112,114,117,122,8,0,13,46,99,111,111,107,105,101,95,111,112,116,105,110,8,0,17,46,99,111,111,107,105,101,95,111,112,116,105,110,95,98,111,120,8,0,15,46,99,111,111,107,105,101,95,111,118,101,114,108,97,121,8,0,25,46,99,111,111,107,105,101,95,111,118,101,114,108,97,121,95,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,95,111,118,101,114,108,97,121,115,104,111,119,8,0,13,46,99,111,111,107,105,101,95,112,97,110,101,108,8,0,17,46,99,111,111,107,105,101,95,112,97,110,101,108,95,110,101,119,8,0,21,46,99,111,111,107,105,101,95,112,105,99,107,105,110,103,95,98,108,111,99,107,8,0,14,46,99,111,111,107,105,101,95,112,108,117,103,105,110,8,0,14,46,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,21,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,97,110,110,101,114,8,0,18,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,97,114,8,0,18,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,111,120,8,0,24,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,99,111,109,112,111,110,101,110,116,8,0,19,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,99,111,110,116,8,0,24,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,109,101,115,115,97,103,101,8,0,20,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,111,117,116,101,114,8,0,18,46,99,111,111,107,105,101,95,112,111,108,105,99,121,95,112,111,112,8,0,16,46,99,111,111,107,105,101,95,112,111,108,105,116,105,99,115,8,0,23,46,99,111,111,107,105,101,95,112,111,112,117,112,95,97,108,105,103,110,109,101,110,116,8,0,21,46,99,111,111,107,105,101,95,112,111,112,117,112,95,119,114,97,112,112,101,114,8,0,23,46,99,111,111,107,105,101,95,112,111,115,105,116,105,111,110,95,98,111,116,116,111,109,8,0,26,46,99,111,111,107,105,101,95,112,114,101,102,101,114,101,110,99,101,115,95,98,97,110,110,101,114,8,0,15,46,99,111,111,107,105,101,95,112,114,105,118,97,99,121,8,0,21,46,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,97,108,101,114,116,8,0,21,46,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,98,108,111,99,107,8,0,24,46,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,105,110,102,111,95,98,97,114,8,0,23,46,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,108,97,119,95,98,97,114,8,0,20,46,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,108,105,110,101,8,0,22,46,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,112,111,108,105,99,121,8,0,13,46,99,111,111,107,105,101,95,114,97,109,107,97,8,0,21,46,99,111,111,107,105,101,95,114,102,95,116,121,112,101,95,112,97,110,101,108,8,0,22,46,99,111,111,107,105,101,95,114,102,95,116,121,112,101,95,119,105,110,100,111,119,8,0,13,46,99,111,111,107,105,101,95,114,105,98,111,110,8,0,19,46,99,111,111,107,105,101,95,114,105,99,104,116,108,105,110,105,101,110,8,0,16,46,99,111,111,107,105,101,95,114,111,108,108,100,111,119,110,8,0,11,46,99,111,111,107,105,101,95,114,111,119,8,0,13,46,99,111,111,107,105,101,95,114,117,108,101,115,8,0,11,46,99,111,111,107,105,101,95,115,97,118,8,0,19,46,99,111,111,107,105,101,95,115,99,104,101,109,97,95,100,97,114,107,8,0,20,46,99,111,111,107,105,101,95,115,101,99,111,110,100,95,98,108,111,99,107,8,0,15,46,99,111,111,107,105,101,95,115,101,99,116,105,111,110,8,0,15,46,99,111,111,107,105,101,95,115,101,116,116,105,110,103,8,0,23,46,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,95,98,111,116,116,111,109,8,0,26,46,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,95,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,95,116,111,103,103,108,101,8,0,17,46,99,111,111,107,105,101,95,115,116,97,116,101,109,101,110,116,8,0,24,46,99,111,111,107,105,101,95,115,116,97,116,101,109,101,110,116,95,115,112,97,99,101,114,8,0,15,46,99,111,111,107,105,101,95,115,116,105,99,107,101,114,8,0,23,46,99,111,111,107,105,101,95,115,116,105,99,107,101,114,95,119,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,95,115,116,114,105,112,8,0,11,46,99,111,111,107,105,101,95,116,97,98,8,0,11,46,99,111,111,107,105,101,95,116,97,103,8,0,19,46,99,111,111,107,105,101,95,116,97,106,101,107,111,122,116,97,116,111,8,0,16,46,99,111,111,107,105,101,95,116,97,107,101,111,118,101,114,8,0,11,46,99,111,111,107,105,101,95,116,105,112,8,0,14,46,99,111,111,107,105,101,95,116,105,112,98,111,120,8,0,12,46,99,111,111,107,105,101,95,116,105,112,115,8,0,15,46,99,111,111,107,105,101,95,116,111,111,108,98,97,114,8,0,13,46,99,111,111,107,105,101,95,116,114,97,99,107,8,0,13,46,99,111,111,107,105,101,95,117,115,97,103,101,8,0,20,46,99,111,111,107,105,101,95,117,115,97,103,101,95,98,97,110,110,101,114,8,0,22,46,99,111,111,107,105,101,95,117,115,97,103,101,95,110,111,116,105,102,105,101,114,8,0,23,46,99,111,111,107,105,101,95,117,115,97,103,101,95,110,111,116,105,102,105,101,114,50,8,0,20,46,99,111,111,107,105,101,95,117,115,97,103,101,95,110,111,116,105,102,121,8,0,13,46,99,111,111,107,105,101,95,118,101,114,105,102,8,0,12,46,99,111,111,107,105,101,95,119,97,114,110,8,0,16,46,99,111,111,107,105,101,95,119,97,114,110,95,98,111,120,8,0,15,46,99,111,111,107,105,101,95,119,97,114,110,105,110,103,8,0,19,46,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,98,111,120,8,0,25,46,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,110,101,119,8,0,20,46,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,119,114,97,112,8,0,19,46,99,111,111,107,105,101,95,119,114,97,112,95,98,111,116,116,111,109,8,0,15,46,99,111,111,107,105,101,95,119,114,97,112,112,101,114,8,0,22,46,99,111,111,107,105,101,95,119,114,97,112,112,101,114,45,98,111,116,116,111,109,8,0,20,46,99,111,111,107,105,101,95,119,114,97,112,112,101,114,95,116,111,111,108,8,0,11,46,99,111,111,107,105,101,95,119,114,112,8,0,14,46,99,111,111,107,105,101,97,98,102,114,97,103,101,8,0,11,46,99,111,111,107,105,101,97,98,108,101,8,0,13,46,99,111,111,107,105,101,97,99,99,101,112,116,8,0,21,46,99,111,111,107,105,101,97,99,99,101,112,116,95,119,114,97,112,112,101,114,8,0,17,46,99,111,111,107,105,101,97,99,99,101,112,116,97,110,99,101,8,0,10,46,99,111,111,107,105,101,97,100,118,8,0,13,46,99,111,111,107,105,101,97,100,118,105,115,101,8,0,12,46,99,111,111,107,105,101,97,108,97,114,109,8,0,12,46,99,111,111,107,105,101,97,108,101,114,116,8,0,12,46,99,111,111,107,105,101,97,116,97,116,97,8,0,12,46,99,111,111,107,105,101,98,97,100,103,101,8,0,11,46,99,111,111,107,105,101,98,97,108,107,8,0,24,46,99,111,111,107,105,101,98,97,110,110,101,114,45,45,99,111,110,116,97,105,110,101,114,8,0,17,46,99,111,111,107,105,101,98,97,110,110,101,114,45,45,106,115,8,0,19,46,99,111,111,107,105,101,98,97,110,110,101,114,45,105,110,110,101,114,8,0,20,46,99,111,111,107,105,101,98,97,110,110,101,114,45,108,101,103,97,99,121,8,0,21,46,99,111,111,107,105,101,98,97,110,110,101,114,45,111,118,101,114,108,97,121,8,0,21,46,99,111,111,107,105,101,98,97,110,110,101,114,45,119,97,114,110,105,110,103,8,0,24,46,99,111,111,107,105,101,98,97,110,110,101,114,95,95,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,98,97,110,110,101,114,95,95,116,111,112,8,0,24,46,99,111,111,107,105,101,98,97,110,110,101,114,95,98,97,99,107,103,114,111,117,110,100,8,0,18,46,99,111,111,107,105,101,98,97,110,110,101,114,112,111,112,117,112,8,0,15,46,99,111,111,107,105,101,98,97,110,110,101,114,118,50,8,0,20,46,99,111,111,107,105,101,98,97,114,45,45,118,97,114,105,97,110,116,49,8,0,14,46,99,111,111,107,105,101,98,97,114,45,97,100,109,8,0,16,46,99,111,111,107,105,101,98,97,114,45,98,108,111,99,107,8,0,20,46,99,111,111,107,105,101,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,98,97,114,45,109,101,115,115,97,103,101,8,0,16,46,99,111,111,107,105,101,98,97,114,45,112,97,110,101,108,8,0,14,46,99,111,111,107,105,101,98,97,114,45,116,112,108,8,0,18,46,99,111,111,107,105,101,98,97,114,45,119,114,97,112,112,101,114,8,0,19,46,99,111,111,107,105,101,98,97,114,95,95,111,118,101,114,108,97,121,8,0,20,46,99,111,111,107,105,101,98,97,114,95,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,98,97,114,95,119,114,97,112,112,101,114,8,0,19,46,99,111,111,107,105,101,98,97,114,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,98,97,114,104,111,108,100,101,114,8,0,15,46,99,111,111,107,105,101,98,97,114,105,110,110,101,114,8,0,29,46,99,111,111,107,105,101,98,103,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,12,46,99,111,111,107,105,101,98,108,111,99,107,8,0,11,46,99,111,111,107,105,101,98,111,107,115,8,0,13,46,99,111,111,107,105,101,98,111,116,116,111,109,8,0,18,46,99,111,111,107,105,101,98,111,120,45,119,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,98,111,120,77,8,0,15,46,99,111,111,107,105,101,98,111,120,83,116,97,114,116,8,0,11,46,99,111,111,107,105,101,99,97,108,108,8,0,12,46,99,111,111,107,105,101,99,104,101,99,107,8,0,27,46,99,111,111,107,105,101,99,104,101,99,107,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,99,108,111,115,101,8,0,11,46,99,111,111,107,105,101,99,110,105,108,8,0,23,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,98,97,99,107,100,114,111,112,8,0,21,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,24,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,100,105,97,108,111,103,8,0,22,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,8,0,28,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,45,108,105,103,104,116,8,0,20,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,112,111,112,117,112,8,0,31,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,112,111,112,117,112,45,98,97,99,107,103,114,111,117,110,100,8,0,17,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,114,117,8,0,20,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,115,104,97,100,101,8,0,21,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,115,105,109,112,108,101,8,0,19,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,119,114,97,112,8,0,22,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,20,46,99,111,111,107,105,101,99,111,110,115,101,110,116,95,95,119,114,97,112,8,0,20,46,99,111,111,107,105,101,99,111,110,115,101,110,116,98,97,110,110,101,114,8,0,17,46,99,111,111,107,105,101,99,111,110,115,101,110,116,98,97,114,8,0,23,46,99,111,111,107,105,101,99,111,110,115,101,110,116,99,111,109,112,111,110,101,110,116,8,0,23,46,99,111,111,107,105,101,99,111,110,115,101,110,116,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,99,111,110,116,97,105,110,101,114,8,0,14,46,99,111,111,107,105,101,99,111,110,116,101,110,116,8,0,14,46,99,111,111,107,105,101,99,111,110,116,114,111,108,8,0,32,46,99,111,111,107,105,101,99,111,110,116,114,111,108,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,99,114,97,112,8,0,13,46,99,111,111,107,105,101,99,117,116,116,101,114,8,0,16,46,99,111,111,107,105,101,100,45,99,111,110,116,101,110,116,8,0,28,46,99,111,111,107,105,101,100,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,13,46,99,111,111,107,105,101,100,79,117,116,101,114,8,0,14,46,99,111,111,107,105,101,100,101,116,97,105,108,115,8,0,13,46,99,111,111,107,105,101,100,105,97,108,111,103,8,0,14,46,99,111,111,107,105,101,100,105,109,101,114,100,97,8,0,17,46,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,8,0,22,46,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,98,108,111,99,107,8,0,10,46,99,111,111,107,105,101,100,105,118,8,0,18,46,99,111,111,107,105,101,100,111,111,114,95,112,97,100,100,101,100,8,0,13,46,99,111,111,107,105,101,102,97,115,99,105,97,8,0,14,46,99,111,111,107,105,101,102,108,111,97,116,101,114,8,0,13,46,99,111,111,107,105,101,102,111,111,116,101,114,8,0,12,46,99,111,111,107,105,101,102,114,97,109,101,8,0,13,46,99,111,111,107,105,101,104,101,97,100,101,114,8,0,13,46,99,111,111,107,105,101,104,101,105,103,104,116,8,0,11,46,99,111,111,107,105,101,104,105,110,116,8,0,14,46,99,111,111,107,105,101,104,105,110,119,101,105,115,8,0,14,46,99,111,111,107,105,101,105,110,102,111,45,98,103,8,0,19,46,99,111,111,107,105,101,105,110,102,111,45,99,111,110,116,101,110,116,8,0,21,46,99,111,111,107,105,101,105,110,102,111,58,110,111,116,40,98,111,100,121,41,8,0,22,46,99,111,111,107,105,101,105,110,102,111,95,95,99,111,110,116,97,105,110,101,114,8,0,24,46,99,111,111,107,105,101,105,110,102,111,98,97,110,110,101,114,87,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,105,110,102,111,98,97,114,8,0,16,46,99,111,111,107,105,101,105,110,102,111,98,108,111,99,107,8,0,17,46,99,111,111,107,105,101,105,110,102,111,104,111,108,100,101,114,8,0,18,46,99,111,111,107,105,101,105,110,102,111,114,109,97,116,105,111,110,8,0,22,46,99,111,111,107,105,101,105,110,102,111,114,109,97,116,105,111,110,97,114,101,97,8,0,12,46,99,111,111,107,105,101,105,110,102,111,115,8,0,17,46,99,111,111,107,105,101,106,97,114,45,98,111,116,116,111,109,8,0,18,46,99,111,111,107,105,101,106,97,114,45,99,111,110,116,101,110,116,8,0,10,46,99,111,111,107,105,101,107,97,116,8,0,10,46,99,111,111,107,105,101,107,98,98,8,0,12,46,99,111,111,107,105,101,108,97,98,101,108,8,0,16,46,99,111,111,107,105,101,108,97,119,45,97,108,101,114,116,8,0,17,46,99,111,111,107,105,101,108,97,119,45,98,97,110,110,101,114,8,0,14,46,99,111,111,107,105,101,108,97,119,45,98,97,114,8,0,17,46,99,111,111,107,105,101,108,97,119,45,98,111,116,116,111,109,8,0,20,46,99,111,111,107,105,101,108,97,119,45,99,111,110,116,97,105,110,101,114,8,0,15,46,99,111,111,107,105,101,108,97,119,45,105,110,102,111,8,0,14,46,99,111,111,107,105,101,108,97,119,45,109,115,103,8,0,16,46,99,111,111,107,105,101,108,97,119,45,112,97,110,101,108,8,0,18,46,99,111,111,107,105,101,108,97,119,45,119,114,97,112,112,101,114,8,0,30,46,99,111,111,107,105,101,108,97,119,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,17,46,99,111,111,107,105,101,108,97,119,72,105,110,116,116,111,112,8,0,18,46,99,111,111,107,105,101,108,97,119,95,111,118,101,114,108,97,121,8,0,18,46,99,111,111,107,105,101,108,97,119,95,119,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,108,97,119,98,97,114,8,0,17,46,99,111,111,107,105,101,108,97,119,105,110,102,111,98,97,114,8,0,25,46,99,111,111,107,105,101,108,97,119,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,12,46,99,111,111,107,105,101,108,97,121,101,114,8,0,19,46,99,111,111,107,105,101,108,97,121,101,114,95,95,108,97,121,101,114,8,0,12,46,99,111,111,107,105,101,108,101,103,97,108,8,0,13,46,99,111,111,107,105,101,108,101,105,115,116,101,8,0,17,46,99,111,111,107,105,101,108,101,118,101,108,95,95,98,97,114,8,0,11,46,99,111,111,107,105,101,108,105,110,101,8,0,11,46,99,111,111,107,105,101,108,111,111,112,8,0,11,46,99,111,111,107,105,101,108,111,112,100,8,0,14,46,99,111,111,107,105,101,109,97,100,110,101,115,115,8,0,14,46,99,111,111,107,105,101,109,97,105,110,100,105,118,8,0,15,46,99,111,111,107,105,101,109,97,110,45,115,104,111,119,8,0,14,46,99,111,111,107,105,101,109,97,110,97,103,101,114,8,0,32,46,99,111,111,107,105,101,109,97,110,97,103,101,114,95,98,97,110,110,101,114,45,45,99,111,110,116,97,105,110,101,114,8,0,26,46,99,111,111,107,105,101,109,97,110,97,103,101,114,95,115,104,111,119,95,115,105,109,112,108,101,8,0,24,46,99,111,111,107,105,101,109,101,108,100,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,34,46,99,111,111,107,105,101,109,101,108,100,105,110,103,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,8,0,14,46,99,111,111,107,105,101,109,101,108,100,117,110,103,8,0,14,46,99,111,111,107,105,101,109,101,115,115,97,103,101,8,0,21,46,99,111,111,107,105,101,109,101,115,115,97,103,101,45,104,111,108,100,101,114,8,0,23,46,99,111,111,107,105,101,109,101,115,115,97,103,101,95,95,111,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,109,101,115,115,97,103,101,98,108,111,99,107,8,0,25,46,99,111,111,107,105,101,109,101,115,115,97,103,101,112,108,97,99,101,104,111,108,100,101,114,8,0,10,46,99,111,111,107,105,101,109,111,110,8,0,24,46,99,111,111,107,105,101,109,111,110,115,116,101,114,45,99,111,110,116,97,105,110,101,114,8,0,10,46,99,111,111,107,105,101,109,115,103,8,0,10,46,99,111,111,107,105,101,110,97,118,8,0,11,46,99,111,111,107,105,101,110,111,116,101,8,0,20,46,99,111,111,107,105,101,110,111,116,101,95,95,111,118,101,114,108,97,121,8,0,17,46,99,111,111,107,105,101,110,111,116,105,99,101,45,98,97,114,8,0,17,46,99,111,111,107,105,101,110,111,116,105,99,101,45,98,111,120,8,0,23,46,99,111,111,107,105,101,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,110,111,116,105,99,101,45,99,111,110,116,101,110,116,8,0,19,46,99,111,111,107,105,101,110,111,116,105,99,101,45,105,110,110,101,114,8,0,18,46,99,111,111,107,105,101,110,111,116,105,99,101,45,119,114,97,112,8,0,19,46,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,8,0,13,46,99,111,111,107,105,101,110,111,116,105,102,121,8,0,17,46,99,111,111,107,105,101,111,112,116,45,104,111,108,100,101,114,8,0,12,46,99,111,111,107,105,101,111,112,116,105,110,8,0,14,46,99,111,111,107,105,101,111,112,116,105,111,110,115,8,0,14,46,99,111,111,107,105,101,111,118,101,114,108,97,121,8,0,16,46,99,111,111,107,105,101,111,118,101,114,108,97,121,45,120,8,0,12,46,99,111,111,107,105,101,112,97,110,101,108,8,0,20,46,99,111,111,107,105,101,112,97,110,101,108,95,111,118,101,114,108,97,121,8,0,23,46,99,111,111,107,105,101,112,101,114,109,105,115,115,105,111,110,112,114,111,109,112,116,8,0,11,46,99,111,111,107,105,101,112,108,117,115,8,0,26,46,99,111,111,107,105,101,112,108,117,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,20,46,99,111,111,107,105,101,112,108,117,115,45,101,120,116,101,110,100,101,100,8,0,18,46,99,111,111,107,105,101,112,108,117,115,45,109,111,100,101,114,110,8,0,10,46,99,111,111,107,105,101,112,111,108,8,0,18,46,99,111,111,107,105,101,112,111,108,105,99,101,112,111,112,117,112,8,0,13,46,99,111,111,107,105,101,112,111,108,105,99,121,8,0,21,46,99,111,111,107,105,101,112,111,108,105,99,121,45,45,97,99,116,105,118,101,8,0,19,46,99,111,111,107,105,101,112,111,108,105,99,121,45,98,108,111,99,107,8,0,22,46,99,111,111,107,105,101,112,111,108,105,99,121,45,100,114,111,112,100,111,119,110,8,0,17,46,99,111,111,107,105,101,112,111,108,105,99,121,45,116,120,116,8,0,18,46,99,111,111,107,105,101,112,111,108,105,99,121,45,119,114,97,112,8,0,21,46,99,111,111,107,105,101,112,111,108,105,99,121,45,119,114,97,112,112,101,114,8,0,19,46,99,111,111,107,105,101,112,111,108,105,99,121,66,97,110,110,101,114,8,0,24,46,99,111,111,107,105,101,112,111,108,105,99,121,95,95,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,112,111,108,105,99,121,98,97,114,8,0,18,46,99,111,111,107,105,101,112,111,108,105,99,121,99,108,97,115,115,8,0,19,46,99,111,111,107,105,101,112,111,108,105,99,121,102,111,111,116,101,114,8,0,20,46,99,111,111,107,105,101,112,111,108,105,99,121,111,118,101,114,108,97,121,8,0,17,46,99,111,111,107,105,101,112,111,108,105,99,121,116,101,120,116,8,0,14,46,99,111,111,107,105,101,112,111,108,105,116,105,107,8,0,11,46,99,111,111,107,105,101,112,111,108,108,8,0,12,46,99,111,111,107,105,101,112,111,112,105,110,8,0,17,46,99,111,111,107,105,101,112,111,112,117,112,45,99,111,110,116,8,0,22,46,99,111,111,107,105,101,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,15,46,99,111,111,107,105,101,112,111,112,117,112,98,111,120,8,0,21,46,99,111,111,107,105,101,112,111,112,117,112,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,112,111,112,117,112,119,114,97,112,112,101,114,8,0,24,46,99,111,111,107,105,101,112,114,101,102,101,114,101,110,99,101,115,95,112,111,112,117,112,8,0,14,46,99,111,111,107,105,101,112,114,105,118,97,99,121,8,0,9,46,99,111,111,107,105,101,112,117,8,0,15,46,99,111,111,107,105,101,113,117,101,115,116,105,111,110,8,0,11,46,99,111,111,107,105,101,114,98,97,114,8,0,13,46,99,111,111,107,105,101,114,105,110,102,111,114,8,0,10,46,99,111,111,107,105,101,114,111,119,8,0,16,46,99,111,111,107,105,101,115,45,45,97,99,116,105,118,101,8,0,15,46,99,111,111,107,105,101,115,45,45,97,103,114,101,101,8,0,13,46,99,111,111,107,105,101,115,45,45,98,97,114,8,0,19,46,99,111,111,107,105,101,115,45,45,99,111,110,116,97,105,110,101,114,8,0,18,46,99,111,111,107,105,101,115,45,45,101,120,112,108,105,99,105,116,8,0,18,46,99,111,111,107,105,101,115,45,45,105,109,112,108,105,99,105,116,8,0,14,46,99,111,111,107,105,101,115,45,45,105,110,102,111,8,0,22,46,99,111,111,107,105,101,115,45,45,110,111,116,45,97,99,99,101,112,116,101,100,8,0,22,46,99,111,111,107,105,101,115,45,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,13,46,99,111,111,107,105,101,115,45,45,112,111,112,8,0,15,46,99,111,111,107,105,101,115,45,45,114,105,103,104,116,8,0,14,46,99,111,111,107,105,101,115,45,45,115,104,111,119,8,0,10,46,99,111,111,107,105,101,115,45,49,8,0,15,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,8,0,22,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,45,98,108,111,99,107,8,0,21,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,98,108,111,99,107,8,0,25,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,102,111,114,109,8,0,20,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,105,110,102,111,8,0,23,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,109,101,115,115,97,103,101,8,0,19,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,110,99,101,8,0,27,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,110,99,101,45,111,118,101,114,108,97,121,8,0,25,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,110,99,101,45,112,97,110,101,108,8,0,34,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,110,99,101,45,119,114,97,112,112,101,114,45,99,111,109,109,111,110,8,0,27,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,116,105,111,110,45,98,97,110,110,101,114,8,0,38,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,46,112,97,103,101,41,8,0,12,46,99,111,111,107,105,101,115,45,97,100,118,8,0,15,46,99,111,111,107,105,101,115,45,97,100,118,101,114,116,8,0,15,46,99,111,111,107,105,101,115,45,97,100,118,105,99,101,8,0,16,46,99,111,111,107,105,101,115,45,97,100,118,105,115,111,114,8,0,19,46,99,111,111,107,105,101,115,45,97,103,103,114,101,101,109,101,110,116,8,0,14,46,99,111,111,107,105,101,115,45,97,103,114,101,101,8,0,18,46,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,8,0,24,46,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,98,108,111,99,107,8,0,24,46,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,99,108,97,115,115,8,0,26,46,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,100,101,115,107,116,111,112,8,0,29,46,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,101,110,116,101,114,45,100,111,110,101,8,0,26,46,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,21,46,99,111,111,107,105,101,115,45,97,108,101,114,116,45,97,108,101,114,116,97,8,0,18,46,99,111,111,107,105,101,115,45,97,108,101,114,116,45,98,97,114,8,0,20,46,99,111,111,107,105,101,115,45,97,108,101,114,116,45,98,108,111,99,107,8,0,26,46,99,111,111,107,105,101,115,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,24,46,99,111,111,107,105,101,115,45,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,8,0,25,46,99,111,111,107,105,101,115,45,97,108,101,114,116,45,119,105,100,101,114,45,119,114,97,112,8,0,22,46,99,111,111,107,105,101,115,45,97,108,101,114,116,45,119,114,97,112,112,101,114,8,0,23,46,99,111,111,107,105,101,115,45,97,108,101,114,116,95,95,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,115,45,97,108,101,114,116,97,8,0,14,46,99,111,111,107,105,101,115,45,97,108,108,111,119,8,0,18,46,99,111,111,107,105,101,115,45,97,108,108,111,119,97,110,99,101,8,0,31,46,99,111,111,107,105,101,115,45,97,108,108,111,119,101,100,91,114,111,108,101,61,34,100,105,97,108,111,103,34,93,8,0,23,46,99,111,111,107,105,101,115,45,97,110,97,108,121,116,105,99,115,45,105,110,102,111,8,0,27,46,99,111,111,107,105,101,115,45,97,110,100,45,112,114,105,118,97,99,121,45,98,111,114,100,101,114,8,0,33,46,99,111,111,107,105,101,115,45,97,110,100,45,112,114,105,118,97,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,21,46,99,111,111,107,105,101,115,45,97,110,100,45,116,114,97,99,107,105,110,103,8,0,18,46,99,111,111,107,105,101,115,45,97,110,100,114,111,109,101,100,97,8,0,13,46,99,111,111,107,105,101,115,45,97,114,101,97,8,0,18,46,99,111,111,107,105,101,115,45,98,97,99,107,45,98,111,100,121,8,0,17,46,99,111,111,107,105,101,115,45,98,97,99,107,100,114,111,112,8,0,13,46,99,111,111,107,105,101,115,45,98,97,110,100,8,0,21,46,99,111,111,107,105,101,115,45,98,97,110,100,45,111,118,101,114,108,97,121,8,0,16,46,99,111,111,107,105,101,115,45,98,97,110,100,101,97,117,8,0,32,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,98,97,99,107,100,114,111,112,45,119,114,97,112,112,101,114,8,0,25,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,8,0,25,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,101,110,97,98,108,101,100,8,0,21,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,115,104,111,119,110,8,0,20,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,119,114,97,112,8,0,18,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,95,95,99,8,0,26,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,95,95,99,111,110,116,97,105,110,101,114,8,0,24,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,95,95,111,118,101,114,108,97,121,8,0,12,46,99,111,111,107,105,101,115,45,98,97,114,8,0,19,46,99,111,111,107,105,101,115,45,98,97,114,45,108,97,121,111,117,116,8,0,16,46,99,111,111,107,105,101,115,45,98,97,114,45,110,101,119,8,0,13,46,99,111,111,107,105,101,115,45,98,108,111,99,8,0,14,46,99,111,111,107,105,101,115,45,98,108,111,99,107,8,0,13,46,99,111,111,107,105,101,115,45,98,108,111,107,8,0,15,46,99,111,111,107,105,101,115,45,98,111,116,116,111,109,8,0,22,46,99,111,111,107,105,101,115,45,98,111,116,116,111,109,45,98,97,110,110,101,114,8,0,25,46,99,111,111,107,105,101,115,45,98,111,116,116,111,109,45,99,111,110,116,97,105,110,101,114,8,0,12,46,99,111,111,107,105,101,115,45,98,111,120,8,0,17,46,99,111,111,107,105,101,115,45,98,111,120,45,105,110,102,111,8,0,19,46,99,111,111,107,105,101,115,45,98,111,120,45,109,111,100,117,108,101,8,0,15,46,99,111,111,107,105,101,115,45,98,117,98,98,108,101,8,0,17,46,99,111,111,107,105,101,115,45,98,117,108,108,115,104,105,116,8,0,19,46,99,111,111,107,105,101,115,45,99,97,106,97,45,116,101,120,116,111,8,0,24,46,99,111,111,107,105,101,115,45,99,97,108,108,111,117,116,45,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,115,45,99,97,118,101,97,116,8,0,14,46,99,111,111,107,105,101,115,45,99,108,97,105,109,8,0,12,46,99,111,111,107,105,101,115,45,99,110,116,8,0,20,46,99,111,111,107,105,101,115,45,99,111,109,109,117,110,105,99,97,116,101,8,0,25,46,99,111,111,107,105,101,115,45,99,111,109,112,108,105,97,110,99,101,45,98,108,111,99,107,8,0,23,46,99,111,111,107,105,101,115,45,99,111,109,112,111,110,101,110,116,45,108,103,112,100,8,0,23,46,99,111,111,107,105,101,115,45,99,111,110,99,101,110,116,45,100,105,97,108,111,103,8,0,13,46,99,111,111,107,105,101,115,45,99,111,110,102,8,0,21,46,99,111,111,107,105,101,115,45,99,111,110,102,105,103,45,97,118,105,115,111,8,0,16,46,99,111,111,107,105,101,115,45,99,111,110,102,105,114,109,8,0,22,46,99,111,111,107,105,101,115,45,99,111,110,102,105,114,109,45,98,108,111,99,107,8,0,28,46,99,111,111,107,105,101,115,45,99,111,110,102,105,114,109,97,116,105,111,110,45,100,105,97,108,111,103,8,0,29,46,99,111,111,107,105,101,115,45,99,111,110,102,105,114,109,97,116,105,111,110,45,119,114,97,112,112,101,114,8,0,33,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,8,0,26,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,112,97,110,101,108,8,0,22,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,112,111,112,117,112,8,0,24,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,18,46,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,45,117,107,8,0,26,46,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,95,105,110,118,101,114,115,101,8,0,16,46,99,111,111,107,105,101,115,45,99,111,110,116,101,110,116,8,0,17,46,99,111,111,107,105,101,115,45,99,111,110,116,101,117,100,111,8,0,16,46,99,111,111,107,105,101,115,45,99,111,110,116,114,111,108,8,0,26,46,99,111,111,107,105,101,115,45,99,111,110,116,114,111,108,45,99,111,110,116,97,105,110,101,114,8,0,12,46,99,111,111,107,105,101,115,45,99,116,110,8,0,20,46,99,111,111,107,105,101,115,45,100,97,114,107,45,102,105,108,116,101,114,8,0,15,46,99,111,111,107,105,101,115,45,100,105,97,108,111,103,8,0,19,46,99,111,111,107,105,101,115,45,100,105,97,108,111,103,45,98,111,120,8,0,24,46,99,111,111,107,105,101,115,45,100,105,97,108,111,103,95,95,119,114,97,112,112,101,114,8,0,18,46,99,111,111,107,105,101,115,45,100,105,114,101,99,116,105,118,101,8,0,19,46,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,8,0,23,46,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,45,98,97,114,8,0,27,46,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,45,119,114,97,112,112,101,114,8,0,27,46,99,111,111,107,105,101,115,45,100,105,115,99,108,111,115,117,114,101,45,111,118,101,114,108,97,121,8,0,12,46,99,111,111,107,105,101,115,45,100,105,118,8,0,19,46,99,111,111,107,105,101,115,45,100,105,118,45,102,111,111,116,101,114,8,0,20,46,99,111,111,107,105,101,115,45,101,108,105,120,114,101,103,116,101,99,104,8,0,21,46,99,111,111,107,105,101,115,45,101,115,45,99,111,110,116,97,105,110,101,114,8,0,11,46,99,111,111,107,105,101,115,45,101,117,8,0,14,46,99,111,111,107,105,101,115,45,101,117,45,98,103,8,0,14,46,99,111,111,107,105,101,115,45,102,105,101,108,100,8,0,13,46,99,111,111,107,105,101,115,45,102,108,101,120,8,0,17,46,99,111,111,107,105,101,115,45,102,108,111,97,116,105,110,103,8,0,15,46,99,111,111,107,105,101,115,45,102,111,111,116,101,114,8,0,19,46,99,111,111,107,105,101,115,45,102,111,111,116,101,114,45,98,97,114,8,0,21,46,99,111,111,107,105,101,115,45,102,111,111,116,101,114,45,98,108,111,99,107,8,0,17,46,99,111,111,107,105,101,115,45,102,111,111,116,101,114,45,105,8,0,13,46,99,111,111,107,105,101,115,45,103,100,112,114,8,0,23,46,99,111,111,107,105,101,115,45,103,105,111,111,100,111,45,114,101,113,117,105,114,101,8,0,15,46,99,111,111,107,105,101,115,45,103,108,111,98,97,108,8,0,17,46,99,111,111,107,105,101,115,45,103,114,97,100,105,101,110,116,8,0,26,46,99,111,111,107,105,101,115,45,104,97,110,100,115,104,97,107,101,45,119,114,97,112,112,101,114,8,0,15,46,99,111,111,107,105,101,115,45,104,101,97,100,101,114,8,0,13,46,99,111,111,107,105,101,115,45,104,105,110,116,8,0,23,46,99,111,111,107,105,101,115,45,104,105,110,116,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,115,45,104,105,110,119,101,105,115,8,0,15,46,99,111,111,107,105,101,115,45,104,111,108,100,101,114,8,0,15,46,99,111,111,107,105,101,115,45,105,102,114,97,109,101,8,0,20,46,99,111,111,107,105,101,115,45,105,110,85,115,101,45,97,108,101,114,116,8,0,23,46,99,111,111,107,105,101,115,45,105,110,102,111,45,98,97,99,107,103,114,111,110,100,8,0,20,46,99,111,111,107,105,101,115,45,105,110,102,111,45,98,97,110,110,101,114,8,0,17,46,99,111,111,107,105,101,115,45,105,110,102,111,45,98,111,120,8,0,23,46,99,111,111,107,105,101,115,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,115,45,105,110,102,111,45,115,116,97,116,105,99,8,0,33,46,99,111,111,107,105,101,115,45,105,110,102,111,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,8,0,20,46,99,111,111,107,105,101,115,45,105,110,102,111,95,98,97,110,110,101,114,8,0,16,46,99,111,111,107,105,101,115,45,105,110,102,111,98,97,114,8,0,20,46,99,111,111,107,105,101,115,45,105,110,102,111,114,109,97,116,105,111,110,8,0,25,46,99,111,111,107,105,101,115,45,105,110,102,111,114,109,97,116,105,111,110,45,97,114,101,97,8,0,17,46,99,111,111,107,105,101,115,45,105,110,102,111,114,109,101,114,8,0,25,46,99,111,111,107,105,101,115,45,105,110,102,111,114,109,101,114,45,115,101,99,116,105,111,110,8,0,14,46,99,111,111,107,105,101,115,45,105,110,102,111,115,8,0,14,46,99,111,111,107,105,101,115,45,105,110,110,101,114,8,0,14,46,99,111,111,107,105,101,115,45,108,97,98,101,108,8,0,12,46,99,111,111,107,105,101,115,45,108,97,119,8,0,16,46,99,111,111,107,105,101,115,45,108,97,119,45,98,97,114,8,0,17,46,99,111,111,107,105,101,115,45,108,97,119,45,105,110,102,111,8,0,20,46,99,111,111,107,105,101,115,45,108,97,119,45,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,115,45,108,97,121,101,114,8,0,22,46,99,111,111,107,105,101,115,45,108,97,121,111,117,116,45,109,111,100,117,108,101,8,0,22,46,99,111,111,107,105,101,115,45,108,97,121,111,117,116,45,112,97,103,105,110,97,8,0,13,46,99,111,111,107,105,101,115,45,108,101,102,116,8,0,20,46,99,111,111,107,105,101,115,45,108,101,103,105,115,108,97,116,105,111,110,8,0,17,46,99,111,111,107,105,101,115,45,108,105,103,104,116,98,111,120,8,0,24,46,99,111,111,107,105,101,115,45,108,105,103,104,116,98,111,120,45,97,99,99,101,112,116,8,0,13,46,99,111,111,107,105,101,115,45,108,105,110,101,8,0,14,46,99,111,111,107,105,101,115,45,108,105,115,116,97,8,0,13,46,99,111,111,107,105,101,115,45,109,97,105,110,8,0,20,46,99,111,111,107,105,101,115,45,109,97,105,110,45,98,97,110,110,101,114,8,0,21,46,99,111,111,107,105,101,115,45,109,97,105,110,45,111,118,101,114,108,97,121,8,0,23,46,99,111,111,107,105,101,115,45,109,97,110,97,103,101,109,101,110,116,45,98,97,114,8,0,26,46,99,111,111,107,105,101,115,45,109,97,110,97,103,101,109,101,110,116,45,98,117,116,116,111,110,8,0,23,46,99,111,111,107,105,101,115,45,109,97,110,97,103,101,114,45,98,97,110,110,101,114,8,0,13,46,99,111,111,107,105,101,115,45,109,97,115,115,8,0,26,46,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,112,97,110,101,108,8,0,22,46,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,112,111,112,117,112,8,0,23,46,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,119,105,110,100,111,119,8,0,22,46,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,119,114,97,112,112,8,0,12,46,99,111,111,107,105,101,115,45,109,111,100,8,0,16,46,99,111,111,107,105,101,115,45,109,111,100,45,98,97,114,8,0,23,46,99,111,111,107,105,101,115,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,8,0,26,46,99,111,111,107,105,101,115,45,109,111,100,97,108,95,95,98,97,99,107,103,114,111,117,110,100,8,0,23,46,99,111,111,107,105,101,115,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,8,0,15,46,99,111,111,107,105,101,115,45,109,111,100,117,108,101,8,0,12,46,99,111,111,107,105,101,115,45,109,115,103,8,0,16,46,99,111,111,107,105,101,115,45,109,115,103,45,98,111,120,8,0,19,46,99,111,111,107,105,101,115,45,109,115,103,45,119,105,100,103,101,116,8,0,20,46,99,111,111,107,105,101,115,45,109,115,103,45,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,115,45,110,97,118,8,0,16,46,99,111,111,107,105,101,115,45,110,97,118,45,98,97,114,8,0,19,46,99,111,111,107,105,101,115,45,110,111,102,105,99,97,116,105,111,110,8,0,29,46,99,111,111,107,105,101,115,45,110,111,114,109,97,116,105,118,101,95,95,99,111,110,116,97,105,110,101,114,8,0,13,46,99,111,111,107,105,101,115,45,110,111,116,101,8,0,21,46,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,97,108,101,114,116,8,0,19,46,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,109,115,103,8,0,26,46,99,111,111,107,105,101,115,45,110,111,116,105,99,101,115,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,27,46,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,45,119,114,97,112,8,0,25,46,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,8,0,29,46,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,112,111,114,116,108,101,116,8,0,29,46,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,8,0,22,46,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,115,8,0,20,46,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,111,114,8,0,15,46,99,111,111,107,105,101,115,45,110,111,116,105,102,121,8,0,21,46,99,111,111,107,105,101,115,45,110,111,116,105,102,121,45,109,111,100,97,108,8,0,14,46,99,111,111,107,105,101,115,45,110,111,116,105,115,8,0,26,46,99,111,111,107,105,101,115,45,111,98,108,105,103,97,116,105,111,110,45,99,108,97,117,115,101,8,0,23,46,99,111,111,107,105,101,115,45,111,112,101,110,58,110,111,116,40,98,111,100,121,41,8,0,16,46,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,8,0,26,46,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,45,119,105,100,103,101,116,8,0,27,46,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,95,95,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,115,45,112,97,103,101,45,102,105,108,116,101,114,8,0,14,46,99,111,111,107,105,101,115,45,112,97,110,101,108,8,0,19,46,99,111,111,107,105,101,115,45,112,97,110,101,108,45,103,100,112,114,8,0,13,46,99,111,111,107,105,101,115,45,112,100,112,97,8,0,23,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,45,97,99,116,105,118,101,8,0,21,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,97,108,101,114,116,8,0,22,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,19,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,98,97,114,8,0,21,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,98,108,111,99,107,8,0,20,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,99,97,114,100,8,0,25,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,99,111,110,116,101,110,116,8,0,26,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,100,105,115,99,108,97,105,109,101,114,8,0,23,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,8,0,33,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,112,111,112,111,118,101,114,45,99,111,110,116,97,105,110,101,114,8,0,21,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,19,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,115,101,99,8,0,23,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,116,114,105,103,103,101,114,8,0,35,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,16,46,99,111,111,107,105,101,115,45,112,111,108,105,116,105,99,8,0,18,46,99,111,111,107,105,101,115,45,112,111,112,45,97,108,101,114,116,8,0,15,46,99,111,111,107,105,101,115,45,112,111,112,45,117,112,8,0,14,46,99,111,111,107,105,101,115,45,112,111,112,97,112,8,0,14,46,99,111,111,107,105,101,115,45,112,111,112,105,110,8,0,14,46,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,24,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,119,114,97,112,112,101,114,8,0,17,46,99,111,111,107,105,101,115,45,112,111,112,117,112,98,111,120,8,0,16,46,99,111,111,107,105,101,115,45,112,111,114,116,108,101,116,8,0,16,46,99,111,111,107,105,101,115,45,112,114,105,118,97,99,121,8,0,23,46,99,111,111,107,105,101,115,45,112,114,105,118,97,99,121,45,115,116,105,99,107,121,8,0,15,46,99,111,111,107,105,101,115,45,112,114,111,109,112,116,8,0,14,46,99,111,111,107,105,101,115,45,112,119,114,97,112,8,0,17,46,99,111,111,107,105,101,115,45,113,117,101,115,116,105,111,110,8,0,12,46,99,111,111,107,105,101,115,45,114,97,119,8,0,15,46,99,111,111,107,105,101,115,45,114,101,103,105,111,110,8,0,17,46,99,111,111,107,105,101,115,45,114,101,109,105,110,100,101,114,8,0,20,46,99,111,111,107,105,101,115,45,114,101,109,105,110,100,101,114,45,118,50,8,0,16,46,99,111,111,107,105,101,115,45,114,101,113,117,101,115,116,8,0,15,46,99,111,111,107,105,101,115,45,114,105,98,98,111,110,8,0,13,46,99,111,111,107,105,101,115,45,114,111,100,111,8,0,12,46,99,111,111,107,105,101,115,45,114,111,119,8,0,14,46,99,111,111,107,105,101,115,45,114,117,108,101,115,8,0,13,46,99,111,111,107,105,101,115,45,115,97,118,101,8,0,18,46,99,111,111,107,105,101,115,45,115,99,114,111,108,108,98,97,114,8,0,12,46,99,111,111,107,105,101,115,45,115,101,99,8,0,15,46,99,111,111,107,105,101,115,45,115,101,99,111,110,100,8,0,16,46,99,111,111,107,105,101,115,45,115,101,99,116,105,111,110,8,0,17,46,99,111,111,107,105,101,115,45,115,101,116,116,105,110,103,115,8,0,21,46,99,111,111,107,105,101,115,45,115,101,116,116,105,110,103,115,45,98,111,120,8,0,14,46,99,111,111,107,105,101,115,45,115,108,105,100,101,8,0,18,46,99,111,111,107,105,101,115,45,115,116,97,116,101,109,101,110,116,8,0,16,46,99,111,111,107,105,101,115,45,115,116,105,99,107,101,114,8,0,15,46,99,111,111,107,105,101,115,45,115,116,105,99,107,121,8,0,12,46,99,111,111,107,105,101,115,45,115,116,110,8,0,14,46,99,111,111,107,105,101,115,45,115,116,114,105,112,8,0,15,46,99,111,111,107,105,101,115,45,115,116,114,105,112,101,8,0,14,46,99,111,111,107,105,101,115,45,115,116,121,108,101,8,0,20,46,99,111,111,107,105,101,115,45,116,101,109,97,45,98,108,97,110,99,111,8,0,13,46,99,111,111,107,105,101,115,45,116,101,120,116,8,0,12,46,99,111,111,107,105,101,115,45,116,105,112,8,0,16,46,99,111,111,107,105,101,115,45,116,111,111,108,116,105,112,8,0,12,46,99,111,111,107,105,101,115,45,116,111,112,8,0,19,46,99,111,111,107,105,101,115,45,116,111,112,45,110,111,116,105,99,101,8,0,25,46,99,111,111,107,105,101,115,45,116,114,97,99,107,105,110,103,45,45,98,111,116,116,111,109,8,0,13,46,99,111,111,107,105,101,115,45,116,121,112,101,8,0,11,46,99,111,111,107,105,101,115,45,117,101,8,0,14,46,99,111,111,107,105,101,115,45,117,115,97,103,101,8,0,24,46,99,111,111,107,105,101,115,45,117,115,97,103,101,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,111,111,107,105,101,115,45,117,115,97,103,101,45,99,111,110,116,101,110,116,8,0,19,46,99,111,111,107,105,101,115,45,117,115,97,103,101,45,105,110,102,111,8,0,20,46,99,111,111,107,105,101,115,45,117,115,101,100,45,110,111,116,105,99,101,8,0,11,46,99,111,111,107,105,101,115,45,118,50,8,0,13,46,99,111,111,107,105,101,115,45,118,105,101,119,8,0,13,46,99,111,111,107,105,101,115,45,119,97,114,110,8,0,16,46,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,26,46,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,23,46,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,45,102,111,111,116,101,114,8,0,21,46,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,45,119,114,97,112,8,0,20,46,99,111,111,107,105,101,115,45,119,105,100,103,101,116,45,98,111,100,121,8,0,15,46,99,111,111,107,105,101,115,45,119,105,110,100,111,119,8,0,11,46,99,111,111,107,105,101,115,45,119,114,8,0,13,46,99,111,111,107,105,101,115,45,119,114,97,112,8,0,16,46,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,115,45,119,114,112,8,0,21,46,99,111,111,107,105,101,115,45,119,114,112,95,95,99,111,111,107,105,101,115,8,0,15,46,99,111,111,107,105,101,115,46,97,99,116,105,118,101,8,0,14,46,99,111,111,107,105,101,115,46,97,108,101,114,116,8,0,20,46,99,111,111,107,105,101,115,46,97,108,101,114,116,45,45,102,117,108,108,8,0,26,46,99,111,111,107,105,101,115,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,8,0,15,46,99,111,111,107,105,101,115,46,98,97,110,110,101,114,8,0,15,46,99,111,111,107,105,101,115,46,98,111,116,116,111,109,8,0,16,46,99,111,111,107,105,101,115,46,99,97,108,108,111,117,116,8,0,13,46,99,111,111,107,105,101,115,46,100,97,114,107,8,0,15,46,99,111,111,107,105,101,115,46,100,105,97,108,111,103,8,0,13,46,99,111,111,107,105,101,115,46,105,110,102,111,8,0,16,46,99,111,111,107,105,101,115,46,105,115,45,111,112,101,110,8,0,17,46,99,111,111,107,105,101,115,46,105,115,45,115,104,111,119,110,8,0,13,46,99,111,111,107,105,101,115,46,112,98,45,48,8,0,21,46,99,111,111,107,105,101,115,46,112,114,105,110,116,45,104,105,100,100,101,110,8,0,19,46,99,111,111,107,105,101,115,46,112,114,105,118,97,99,121,76,97,119,8,0,12,46,99,111,111,107,105,101,115,46,114,111,119,8,0,33,46,99,111,111,107,105,101,115,46,115,104,111,119,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,8,0,17,46,99,111,111,107,105,101,115,46,115,105,116,101,45,109,115,103,8,0,18,46,99,111,111,107,105,101,115,46,115,108,105,100,101,73,110,85,112,8,0,18,46,99,111,111,107,105,101,115,46,115,118,45,108,97,121,111,117,116,8,0,20,46,99,111,111,107,105,101,115,46,115,118,45,118,101,114,116,105,99,97,108,8,0,20,46,99,111,111,107,105,101,115,46,116,101,120,116,45,99,101,110,116,101,114,8,0,9,46,99,111,111,107,105,101,115,49,8,0,10,46,99,111,111,107,105,101,115,50,50,8,0,19,46,99,111,111,107,105,101,115,65,99,99,101,112,116,97,116,105,111,110,8,0,13,46,99,111,111,107,105,101,115,65,103,114,101,101,8,0,17,46,99,111,111,107,105,101,115,65,103,114,101,101,109,101,110,116,8,0,13,46,99,111,111,107,105,101,115,65,108,101,114,116,8,0,16,46,99,111,111,107,105,101,115,65,108,101,114,116,66,111,120,8,0,20,46,99,111,111,107,105,101,115,65,108,101,114,116,87,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,115,65,118,105,115,111,8,0,18,46,99,111,111,107,105,101,115,66,97,99,107,103,114,111,117,110,100,8,0,19,46,99,111,111,107,105,101,115,66,97,110,110,101,114,66,108,111,99,107,8,0,21,46,99,111,111,107,105,101,115,66,97,110,110,101,114,79,118,101,114,108,97,121,8,0,19,46,99,111,111,107,105,101,115,66,97,110,110,101,114,83,104,111,119,110,8,0,18,46,99,111,111,107,105,101,115,66,97,114,45,104,111,108,100,101,114,8,0,21,46,99,111,111,107,105,101,115,66,97,114,58,110,111,116,40,98,111,100,121,41,8,0,13,46,99,111,111,107,105,101,115,66,103,67,108,115,8,0,12,46,99,111,111,107,105,101,115,66,108,111,99,8,0,13,46,99,111,111,107,105,101,115,66,108,111,99,107,8,0,14,46,99,111,111,107,105,101,115,66,111,116,116,111,109,8,0,17,46,99,111,111,107,105,101,115,66,111,116,116,111,109,66,97,114,8,0,11,46,99,111,111,107,105,101,115,66,111,120,8,0,9,46,99,111,111,107,105,101,115,67,8,0,13,46,99,111,111,107,105,101,115,67,108,97,115,115,8,0,15,46,99,111,111,107,105,101,115,67,111,110,102,105,114,109,8,0,20,46,99,111,111,107,105,101,115,67,111,110,102,105,114,109,97,116,105,111,110,8,0,20,46,99,111,111,107,105,101,115,67,111,110,115,101,110,116,80,111,112,85,112,8,0,21,46,99,111,111,107,105,101,115,67,111,110,115,101,110,116,95,111,117,116,101,114,8,0,17,46,99,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,8,0,15,46,99,111,111,107,105,101,115,67,111,110,116,101,110,116,8,0,16,46,99,111,111,107,105,101,115,67,111,114,114,101,105,111,115,8,0,22,46,99,111,111,107,105,101,115,68,105,115,97,98,108,101,100,66,97,110,110,101,114,8,0,18,46,99,111,111,107,105,101,115,68,105,115,99,108,97,105,109,101,114,8,0,14,46,99,111,111,107,105,101,115,70,111,111,116,101,114,8,0,14,46,99,111,111,107,105,101,115,72,101,97,100,101,114,8,0,12,46,99,111,111,107,105,101,115,72,105,100,101,8,0,12,46,99,111,111,107,105,101,115,73,110,102,111,8,0,17,46,99,111,111,107,105,101,115,73,110,102,111,66,108,111,99,107,8,0,15,46,99,111,111,107,105,101,115,73,110,102,111,66,111,120,8,0,18,46,99,111,111,107,105,101,115,73,110,102,111,72,111,108,100,101,114,8,0,18,46,99,111,111,107,105,101,115,73,110,102,111,95,109,111,100,97,108,8,0,19,46,99,111,111,107,105,101,115,73,110,102,111,114,109,97,116,105,111,110,8,0,16,46,99,111,111,107,105,101,115,73,110,102,111,114,109,101,114,8,0,22,46,99,111,111,107,105,101,115,76,97,119,65,99,99,101,112,116,97,116,105,111,110,8,0,13,46,99,111,111,107,105,101,115,76,97,121,101,114,8,0,18,46,99,111,111,107,105,101,115,76,101,103,97,108,82,117,108,101,115,8,0,38,46,99,111,111,107,105,101,115,77,97,110,97,103,101,109,101,110,116,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,15,46,99,111,111,107,105,101,115,77,101,115,115,97,103,101,8,0,21,46,99,111,111,107,105,101,115,77,101,115,115,97,103,101,66,97,110,110,101,114,8,0,20,46,99,111,111,107,105,101,115,77,101,115,115,97,103,101,76,97,121,101,114,8,0,19,46,99,111,111,107,105,101,115,77,101,115,115,97,103,101,87,114,97,112,8,0,11,46,99,111,111,107,105,101,115,77,115,103,8,0,16,46,99,111,111,107,105,101,115,77,115,103,95,119,114,97,112,8,0,18,46,99,111,111,107,105,101,115,78,97,118,77,101,115,115,97,103,101,8,0,11,46,99,111,111,107,105,101,115,78,101,119,8,0,12,46,99,111,111,107,105,101,115,78,111,116,101,8,0,14,46,99,111,111,107,105,101,115,78,111,116,105,99,101,8,0,23,46,99,111,111,107,105,101,115,78,111,116,105,99,101,67,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,8,0,25,46,99,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,79,117,116,101,114,8,0,29,46,99,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,95,95,119,114,97,112,112,101,114,8,0,23,46,99,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,95,118,49,8,0,13,46,99,111,111,107,105,101,115,79,112,116,105,110,8,0,15,46,99,111,111,107,105,101,115,79,118,101,114,108,97,121,8,0,16,46,99,111,111,107,105,101,115,79,118,101,114,108,97,121,50,8,0,19,46,99,111,111,107,105,101,115,79,118,101,114,108,97,121,50,66,111,120,8,0,13,46,99,111,111,107,105,101,115,80,97,110,101,108,8,0,23,46,99,111,111,107,105,101,115,80,97,110,101,108,66,97,99,107,103,114,111,117,110,100,8,0,11,46,99,111,111,107,105,101,115,80,105,101,8,0,14,46,99,111,111,107,105,101,115,80,105,115,107,111,116,8,0,11,46,99,111,111,107,105,101,115,80,111,108,8,0,14,46,99,111,111,107,105,101,115,80,111,108,105,99,121,8,0,23,46,99,111,111,107,105,101,115,80,111,108,105,99,121,67,111,110,116,97,105,110,101,114,8,0,13,46,99,111,111,107,105,101,115,80,111,112,85,112,8,0,13,46,99,111,111,107,105,101,115,80,111,112,117,112,8,0,20,46,99,111,111,107,105,101,115,80,114,105,118,97,99,121,76,97,121,101,114,8,0,11,46,99,111,111,107,105,101,115,80,114,111,8,0,12,46,99,111,111,107,105,101,115,83,104,111,119,8,0,19,46,99,111,111,107,105,101,115,83,105,116,101,77,101,115,115,97,103,101,8,0,13,46,99,111,111,107,105,101,115,83,116,114,105,112,8,0,11,46,99,111,111,107,105,101,115,84,105,112,8,0,17,46,99,111,111,107,105,101,115,84,105,112,73,102,114,97,109,101,8,0,15,46,99,111,111,107,105,101,115,84,111,112,95,100,105,118,8,0,11,46,99,111,111,107,105,101,115,84,120,116,8,0,20,46,99,111,111,107,105,101,115,85,115,97,103,101,77,101,115,115,97,103,101,8,0,15,46,99,111,111,107,105,101,115,87,97,114,110,105,110,103,8,0,25,46,99,111,111,107,105,101,115,87,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,24,46,99,111,111,107,105,101,115,87,97,114,110,105,110,103,67,111,110,116,97,105,110,101,114,8,0,14,46,99,111,111,107,105,101,115,87,105,110,100,111,119,8,0,10,46,99,111,111,107,105,101,115,87,114,8,0,12,46,99,111,111,107,105,101,115,87,114,97,112,8,0,15,46,99,111,111,107,105,101,115,87,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,115,87,114,112,8,0,35,46,99,111,111,107,105,101,115,91,100,97,116,97,45,112,108,117,103,105,110,45,97,99,99,101,112,116,99,111,111,107,105,101,115,93,8,0,28,46,99,111,111,107,105,101,115,91,100,97,116,97,45,112,108,117,103,105,110,45,99,111,111,107,105,101,93,8,0,20,46,99,111,111,107,105,101,115,95,95,98,97,99,107,103,114,111,117,110,100,8,0,16,46,99,111,111,107,105,101,115,95,95,98,97,110,110,101,114,8,0,25,46,99,111,111,107,105,101,115,95,95,98,97,110,110,101,114,95,95,119,114,97,112,112,101,114,8,0,13,46,99,111,111,107,105,101,115,95,95,98,97,114,8,0,21,46,99,111,111,107,105,101,115,95,95,98,97,114,95,95,104,101,97,100,101,114,8,0,15,46,99,111,111,107,105,101,115,95,95,98,108,111,99,107,8,0,13,46,99,111,111,107,105,101,115,95,95,98,111,120,8,0,14,46,99,111,111,107,105,101,115,95,95,99,97,114,100,8,0,17,46,99,111,111,107,105,101,115,95,95,99,111,110,116,101,110,116,8,0,26,46,99,111,111,107,105,101,115,95,95,100,105,118,45,45,100,105,118,45,111,118,101,114,108,97,121,8,0,14,46,99,111,111,107,105,101,115,95,95,105,110,102,111,8,0,20,46,99,111,111,107,105,101,115,95,95,105,110,102,111,95,98,108,111,99,107,8,0,15,46,99,111,111,107,105,101,115,95,95,105,110,110,101,114,8,0,17,46,99,111,111,107,105,101,115,95,95,108,97,121,111,118,101,114,8,0,17,46,99,111,111,107,105,101,115,95,95,109,101,115,115,97,103,101,8,0,15,46,99,111,111,107,105,101,115,95,95,109,111,100,97,108,8,0,16,46,99,111,111,107,105,101,115,95,95,110,111,116,105,99,101,8,0,22,46,99,111,111,107,105,101,115,95,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,17,46,99,111,111,107,105,101,115,95,95,111,118,101,114,108,97,121,8,0,15,46,99,111,111,107,105,101,115,95,95,112,97,110,101,108,8,0,15,46,99,111,111,107,105,101,115,95,95,112,111,112,117,112,8,0,17,46,99,111,111,107,105,101,115,95,95,115,101,99,116,105,111,110,8,0,14,46,99,111,111,107,105,101,115,95,95,115,104,111,119,8,0,13,46,99,111,111,107,105,101,115,95,95,115,116,100,8,0,12,46,99,111,111,107,105,101,115,95,95,119,114,8,0,14,46,99,111,111,107,105,101,115,95,95,119,114,97,112,8,0,16,46,99,111,111,107,105,101,115,95,95,119,114,97,112,101,114,8,0,15,46,99,111,111,107,105,101,115,95,97,99,99,101,112,116,8,0,26,46,99,111,111,107,105,101,115,95,97,99,99,101,112,116,95,99,111,110,116,97,105,110,116,101,114,8,0,19,46,99,111,111,107,105,101,115,95,97,99,99,101,112,116,97,110,99,101,8,0,15,46,99,111,111,107,105,101,115,95,97,99,116,105,118,101,8,0,15,46,99,111,111,107,105,101,115,95,97,100,118,105,99,101,8,0,15,46,99,111,111,107,105,101,115,95,97,100,118,105,100,101,8,0,12,46,99,111,111,107,105,101,115,95,97,102,102,8,0,14,46,99,111,111,107,105,101,115,95,97,103,114,101,101,8,0,18,46,99,111,111,107,105,101,115,95,97,103,114,101,101,109,101,110,116,8,0,14,46,99,111,111,107,105,101,115,95,97,108,101,114,116,8,0,22,46,99,111,111,107,105,101,115,95,97,108,101,114,116,95,119,114,97,112,112,101,114,8,0,16,46,99,111,111,107,105,101,115,95,97,108,108,111,119,101,100,8,0,14,46,99,111,111,107,105,101,115,95,97,112,112,108,121,8,0,13,46,99,111,111,107,105,101,115,95,97,118,105,115,8,0,10,46,99,111,111,107,105,101,115,95,98,8,0,19,46,99,111,111,107,105,101,115,95,98,97,99,107,103,114,111,117,110,100,8,0,16,46,99,111,111,107,105,101,115,95,98,97,110,100,101,97,117,8,0,24,46,99,111,111,107,105,101,115,95,98,97,110,110,101,114,95,98,97,99,107,100,114,111,112,8,0,23,46,99,111,111,107,105,101,115,95,98,97,110,110,101,114,95,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,115,95,98,97,114,8,0,13,46,99,111,111,107,105,101,115,95,98,108,111,99,8,0,14,46,99,111,111,107,105,101,115,95,98,108,111,99,107,8,0,15,46,99,111,111,107,105,101,115,95,98,111,116,116,111,109,8,0,12,46,99,111,111,107,105,101,115,95,98,111,120,8,0,16,46,99,111,111,107,105,101,115,95,99,111,110,102,105,114,109,8,0,21,46,99,111,111,107,105,101,115,95,99,111,110,102,105,114,109,97,116,105,111,110,8,0,16,46,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,8,0,21,46,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,45,115,104,111,119,8,0,23,46,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,8,0,13,46,99,111,111,107,105,101,115,95,99,111,110,116,8,0,18,46,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,8,0,16,46,99,111,111,107,105,101,115,95,99,111,110,116,101,110,116,8,0,15,46,99,111,111,107,105,101,115,95,99,111,111,107,105,101,8,0,13,46,99,111,111,107,105,101,115,95,99,116,97,115,8,0,15,46,99,111,111,107,105,101,115,95,99,117,101,114,112,111,8,0,20,46,99,111,111,107,105,101,115,95,100,101,99,108,97,114,97,116,105,111,110,8,0,19,46,99,111,111,107,105,101,115,95,100,105,115,99,108,97,105,109,101,114,8,0,29,46,99,111,111,107,105,101,115,95,100,105,115,99,108,97,105,109,101,114,95,99,111,110,116,97,105,110,101,114,8,0,12,46,99,111,111,107,105,101,115,95,100,105,118,8,0,11,46,99,111,111,107,105,101,115,95,101,117,8,0,14,46,99,111,111,107,105,101,115,95,101,117,95,115,97,8,0,15,46,99,111,111,107,105,101,115,95,102,111,111,116,101,114,8,0,13,46,99,111,111,107,105,101,115,95,102,117,108,108,8,0,15,46,99,111,111,107,105,101,115,95,104,101,97,100,101,114,8,0,13,46,99,111,111,107,105,101,115,95,105,110,102,111,8,0,17,46,99,111,111,107,105,101,115,95,107,111,110,116,101,110,101,114,8,0,30,46,99,111,111,107,105,101,115,95,108,97,119,95,99,111,109,112,108,105,97,110,99,101,95,102,111,111,116,101,114,8,0,14,46,99,111,111,107,105,101,115,95,108,97,121,101,114,8,0,27,46,99,111,111,107,105,101,115,95,109,97,110,97,103,101,109,101,110,116,45,111,118,101,114,108,97,121,8,0,26,46,99,111,111,107,105,101,115,95,109,97,110,97,103,101,109,101,110,116,45,116,111,112,98,97,114,8,0,16,46,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,8,0,20,46,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,95,98,97,114,8,0,26,46,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,8,0,14,46,99,111,111,107,105,101,115,95,109,111,100,97,108,8,0,12,46,99,111,111,107,105,101,115,95,109,115,103,8,0,15,46,99,111,111,107,105,101,115,95,110,111,116,105,99,101,8,0,15,46,99,111,111,107,105,101,115,95,110,111,116,105,101,115,8,0,21,46,99,111,111,107,105,101,115,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,17,46,99,111,111,107,105,101,115,95,110,111,116,105,102,105,101,114,8,0,16,46,99,111,111,107,105,101,115,95,111,118,101,114,108,97,121,8,0,24,46,99,111,111,107,105,101,115,95,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,8,0,24,46,99,111,111,107,105,101,115,95,111,118,101,114,108,97,121,95,119,114,97,112,112,101,114,8,0,19,46,99,111,111,107,105,101,115,95,112,97,110,101,108,95,50,48,50,50,8,0,20,46,99,111,111,107,105,101,115,95,112,100,105,115,99,108,97,105,109,101,114,8,0,15,46,99,111,111,107,105,101,115,95,112,111,108,105,99,121,8,0,21,46,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,97,108,101,114,116,8,0,19,46,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,98,111,120,8,0,25,46,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,99,111,110,116,97,105,110,101,114,8,0,30,46,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,105,110,102,111,114,109,95,119,114,97,112,112,101,114,8,0,14,46,99,111,111,107,105,101,115,95,112,111,112,105,110,8,0,14,46,99,111,111,107,105,101,115,95,112,111,112,117,112,8,0,31,46,99,111,111,107,105,101,115,95,112,111,112,117,112,95,98,111,116,116,111,109,95,99,111,110,116,97,105,110,101,114,8,0,24,46,99,111,111,107,105,101,115,95,112,114,105,118,97,99,121,95,119,114,97,112,112,101,114,8,0,30,46,99,111,111,107,105,101,115,95,114,101,103,117,108,97,116,105,111,110,95,95,99,111,110,116,97,105,110,101,114,8,0,15,46,99,111,111,107,105,101,115,95,115,116,105,99,107,121,8,0,22,46,99,111,111,107,105,101,115,95,115,116,114,105,112,45,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,115,95,118,49,54,8,0,13,46,99,111,111,107,105,101,115,95,119,97,114,110,8,0,16,46,99,111,111,107,105,101,115,95,119,97,114,110,105,110,103,8,0,20,46,99,111,111,107,105,101,115,95,119,97,114,110,105,110,103,95,98,97,114,8,0,13,46,99,111,111,107,105,101,115,95,119,114,97,112,8,0,16,46,99,111,111,107,105,101,115,95,119,114,97,112,112,101,114,8,0,12,46,99,111,111,107,105,101,115,95,121,101,115,8,0,12,46,99,111,111,107,105,101,115,95,121,117,109,8,0,21,46,99,111,111,107,105,101,115,97,99,99,101,112,116,97,110,99,101,109,115,103,8,0,13,46,99,111,111,107,105,101,115,97,108,101,114,116,8,0,14,46,99,111,111,107,105,101,115,97,110,115,119,101,114,8,0,14,46,99,111,111,107,105,101,115,98,97,110,110,101,114,8,0,11,46,99,111,111,107,105,101,115,98,97,114,8,0,11,46,99,111,111,107,105,101,115,98,108,107,8,0,14,46,99,111,111,107,105,101,115,98,111,116,116,111,109,8,0,11,46,99,111,111,107,105,101,115,98,111,120,8,0,18,46,99,111,111,107,105,101,115,98,111,120,45,98,117,98,98,108,101,8,0,17,46,99,111,111,107,105,101,115,98,121,116,104,101,98,111,111,107,8,0,9,46,99,111,111,107,105,101,115,99,8,0,25,46,99,111,111,107,105,101,115,100,105,114,101,99,116,105,118,101,45,119,114,97,112,112,101,114,8,0,11,46,99,111,111,107,105,101,115,100,105,118,8,0,23,46,99,111,111,107,105,101,115,101,97,108,45,98,97,110,110,101,114,45,98,111,100,121,8,0,10,46,99,111,111,107,105,101,115,101,99,8,0,10,46,99,111,111,107,105,101,115,101,116,8,0,15,46,99,111,111,107,105,101,115,101,116,116,105,110,103,115,8,0,13,46,99,111,111,107,105,101,115,102,114,97,109,101,8,0,12,46,99,111,111,107,105,101,115,104,97,100,101,8,0,14,46,99,111,111,107,105,101,115,104,101,97,100,101,114,8,0,13,46,99,111,111,107,105,101,115,104,111,121,101,114,8,0,12,46,99,111,111,107,105,101,115,105,110,102,111,8,0,15,46,99,111,111,107,105,101,115,105,110,102,111,98,111,120,8,0,19,46,99,111,111,107,105,101,115,105,110,102,111,114,109,97,116,105,111,110,8,0,21,46,99,111,111,107,105,101,115,105,116,101,95,109,97,105,110,112,111,112,117,112,8,0,11,46,99,111,111,107,105,101,115,108,97,119,8,0,14,46,99,111,111,107,105,101,115,108,111,97,100,101,100,8,0,15,46,99,111,111,107,105,101,115,109,97,110,97,103,101,114,8,0,15,46,99,111,111,107,105,101,115,109,101,115,115,97,103,101,8,0,10,46,99,111,111,107,105,101,115,109,115,8,0,14,46,99,111,111,107,105,101,115,110,111,116,105,99,101,8,0,20,46,99,111,111,107,105,101,115,110,111,116,105,102,105,99,97,116,105,111,110,8,0,12,46,99,111,111,107,105,101,115,112,97,110,101,8,0,13,46,99,111,111,107,105,101,115,112,97,110,101,108,8,0,13,46,99,111,111,107,105,101,115,112,108,97,115,104,8,0,23,46,99,111,111,107,105,101,115,112,108,117,101,45,97,99,98,45,98,97,110,110,101,114,8,0,19,46,99,111,111,107,105,101,115,112,108,117,115,45,99,101,110,116,101,114,8,0,14,46,99,111,111,107,105,101,115,112,111,108,105,99,121,8,0,20,46,99,111,111,107,105,101,115,112,111,112,45,99,111,110,97,105,110,101,114,8,0,13,46,99,111,111,107,105,101,115,112,111,112,117,112,8,0,9,46,99,111,111,107,105,101,115,113,8,0,9,46,99,111,111,107,105,101,115,115,8,0,12,46,99,111,111,107,105,101,115,116,114,105,112,8,0,16,46,99,111,111,107,105,101,115,116,114,105,112,119,114,97,112,8,0,13,46,99,111,111,107,105,101,115,117,115,97,103,101,8,0,11,46,99,111,111,107,105,101,115,118,105,115,8,0,15,46,99,111,111,107,105,101,115,119,114,97,112,112,101,114,8,0,9,46,99,111,111,107,105,101,115,121,8,0,12,46,99,111,111,107,105,101,116,101,114,109,115,8,0,15,46,99,111,111,107,105,101,116,101,115,116,95,98,110,111,8,0,11,46,99,111,111,107,105,101,116,101,120,116,8,0,14,46,99,111,111,107,105,101,116,111,97,115,116,101,114,8,0,19,46,99,111,111,107,105,101,116,111,111,108,45,109,101,115,115,97,103,101,8,0,10,46,99,111,111,107,105,101,116,111,112,8,0,16,46,99,111,111,107,105,101,116,111,112,98,97,110,110,101,114,8,0,10,46,99,111,111,107,105,101,116,120,116,8,0,20,46,99,111,111,107,105,101,117,115,97,103,101,45,99,111,110,102,105,114,109,8,0,18,46,99,111,111,107,105,101,117,115,97,103,101,95,95,98,97,115,101,8,0,15,46,99,111,111,107,105,101,117,115,101,45,111,112,101,110,8,0,19,46,99,111,111,107,105,101,118,97,114,110,105,110,103,45,119,114,97,112,8,0,19,46,99,111,111,107,105,101,119,45,108,97,119,45,98,97,110,110,101,114,8,0,16,46,99,111,111,107,105,101,119,76,97,119,76,97,121,101,114,8,0,21,46,99,111,111,107,105,101,119,97,108,108,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,111,111,107,105,101,119,97,108,108,45,119,114,97,112,112,101,114,8,0,20,46,99,111,111,107,105,101,119,97,108,108,95,95,119,114,97,112,112,101,114,8,0,16,46,99,111,111,107,105,101,119,97,108,108,112,111,112,117,112,8,0,11,46,99,111,111,107,105,101,119,97,114,110,8,0,18,46,99,111,111,107,105,101,119,97,114,110,105,110,103,45,98,97,114,8,0,24,46,99,111,111,107,105,101,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,20,46,99,111,111,107,105,101,119,97,114,110,105,110,103,45,105,110,110,101,114,8,0,22,46,99,111,111,107,105,101,119,97,114,110,105,110,103,45,119,114,97,112,112,101,114,8,0,34,46,99,111,111,107,105,101,119,97,114,110,105,110,103,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,17,46,99,111,111,107,105,101,119,97,114,110,105,110,103,95,98,103,8,0,17,46,99,111,111,107,105,101,119,97,114,110,105,110,103,95,102,103,8,0,22,46,99,111,111,107,105,101,119,97,114,110,105,110,103,95,119,114,97,112,112,101,114,8,0,17,46,99,111,111,107,105,101,119,97,114,110,105,110,103,98,111,120,8,0,10,46,99,111,111,107,105,101,119,101,116,8,0,16,46,99,111,111,107,105,101,119,101,116,103,101,118,105,110,103,8,0,13,46,99,111,111,107,105,101,119,105,100,103,101,116,8,0,20,46,99,111,111,107,105,101,119,105,110,100,111,119,46,116,111,97,115,116,49,8,0,11,46,99,111,111,107,105,101,119,114,97,112,8,0,14,46,99,111,111,107,105,101,119,114,97,112,112,101,114,8,0,25,46,99,111,111,107,105,101,119,114,97,112,112,101,114,45,100,105,115,99,108,111,115,117,114,101,8,0,8,46,99,111,111,107,105,101,122,8,0,8,46,99,111,111,107,105,102,121,8,0,17,46,99,111,111,107,105,108,108,105,97,110,45,97,108,101,114,116,8,0,9,46,99,111,111,107,105,110,102,111,8,0,18,46,99,111,111,107,105,110,102,111,95,95,119,114,97,112,112,101,114,8,0,16,46,99,111,111,107,105,110,102,111,95,98,111,116,116,111,109,8,0,13,46,99,111,111,107,105,110,102,111,95,116,111,112,8,0,7,46,99,111,111,107,105,122,8,0,8,46,99,111,111,107,109,115,103,8,0,10,46,99,111,111,107,112,111,112,117,112,8,0,11,46,99,111,111,107,115,105,101,100,105,118,8,0,9,46,99,111,111,107,115,107,111,109,8,0,12,46,99,111,111,107,119,97,114,110,105,110,103,8,0,14,46,99,111,111,107,119,97,114,110,105,110,103,99,122,8,0,14,46,99,111,111,107,121,45,112,111,108,105,99,105,121,8,0,12,46,99,111,111,111,111,111,111,111,107,105,101,8,0,13,46,99,111,112,107,105,101,80,111,108,105,99,121,8,0,19,46,99,111,114,101,45,67,111,111,107,105,101,115,80,111,108,105,99,121,8,0,20,46,99,111,114,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,16,46,99,111,114,110,101,114,80,111,108,105,99,121,84,97,98,8,0,15,46,99,111,114,114,101,111,115,67,111,111,107,105,101,115,8,0,20,46,99,111,117,99,111,117,46,99,111,111,107,105,101,95,115,108,105,100,101,8,0,21,46,99,112,45,67,111,111,107,105,101,115,68,105,115,99,108,97,105,109,101,114,8,0,17,46,99,112,45,97,108,101,114,116,45,109,101,115,115,97,103,101,8,0,10,46,99,112,45,98,97,110,110,101,114,8,0,13,46,99,112,45,98,111,120,45,97,108,101,114,116,8,0,19,46,99,112,45,98,111,120,45,97,108,101,114,116,45,112,111,112,117,112,8,0,17,46,99,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,14,46,99,112,45,99,111,111,107,105,101,45,98,97,114,8,0,14,46,99,112,45,99,111,111,107,105,101,45,116,105,112,8,0,15,46,99,112,45,99,111,111,107,105,101,45,119,114,97,112,8,0,11,46,99,112,45,99,111,111,107,105,101,115,8,0,21,46,99,112,45,99,117,114,116,97,105,110,45,99,111,110,116,97,105,110,101,114,8,0,22,46,99,112,45,105,110,102,111,45,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,19,46,99,112,45,109,111,100,117,108,101,45,105,110,102,111,95,98,97,114,8,0,17,46,99,112,45,112,111,112,117,112,45,111,118,101,114,108,97,121,8,0,16,46,99,112,45,115,108,105,100,101,114,45,112,111,112,117,112,8,0,16,46,99,112,49,67,111,111,107,105,101,66,97,110,110,101,114,8,0,11,46,99,112,77,111,100,97,108,87,105,110,8,0,39,46,99,112,79,118,101,114,108,97,121,91,100,97,116,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,93,8,0,17,46,99,112,95,99,111,111,107,105,101,45,100,105,97,108,111,103,8,0,26,46,99,112,98,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,119,105,100,103,101,116,8,0,12,46,99,112,99,107,45,98,97,110,110,101,114,8,0,17,46,99,112,103,95,109,101,115,115,97,103,101,95,105,110,102,111,8,0,16,46,99,112,104,45,99,99,112,97,95,98,97,110,110,101,114,8,0,12,46,99,112,109,45,99,111,111,107,105,101,115,8,0,11,46,99,112,110,98,45,105,110,110,101,114,8,0,25,46,99,112,110,98,45,109,111,100,97,108,45,115,104,111,119,45,102,97,100,101,45,111,117,116,8,0,11,46,99,112,110,98,45,111,117,116,101,114,8,0,9,46,99,112,110,98,45,116,111,112,8,0,16,46,99,112,111,108,105,99,121,45,119,97,114,110,105,110,103,8,0,13,46,99,112,112,97,46,115,101,99,116,105,111,110,8,0,11,46,99,112,115,45,98,97,110,110,101,114,8,0,18,46,99,112,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,99,114,101,97,116,105,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,35,46,99,114,101,97,118,101,97,45,98,97,110,110,101,114,45,99,111,110,115,101,110,116,101,109,101,110,116,45,99,111,111,107,105,101,8,0,33,46,99,114,101,97,118,101,97,45,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,18,46,99,114,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,10,46,99,115,45,99,111,111,107,105,101,8,0,24,46,99,115,45,99,111,111,107,105,101,45,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,18,46,99,115,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,16,46,99,115,45,105,110,102,111,45,119,114,97,112,112,101,114,8,0,19,46,99,115,45,114,111,119,95,95,99,111,111,107,105,101,45,98,97,114,8,0,28,46,99,115,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,16,46,99,115,112,112,112,45,99,111,110,116,97,105,110,101,114,8,0,17,46,99,115,112,120,45,99,111,111,107,105,101,115,45,98,97,114,8,0,18,46,99,115,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,99,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,8,0,42,46,99,116,45,117,108,116,105,109,97,116,101,45,103,100,112,114,45,99,111,111,107,105,101,45,102,117,108,108,80,97,110,101,108,45,111,118,101,114,108,97,121,8,0,14,46,99,116,67,111,111,107,105,101,84,101,114,109,115,8,0,11,46,99,116,97,45,99,111,111,107,105,101,8,0,18,46,99,116,108,95,67,111,111,107,105,101,87,97,114,110,105,110,103,8,0,12,46,99,116,110,45,99,111,111,107,105,101,115,8,0,12,46,99,116,110,95,99,111,111,107,105,101,115,8,0,14,46,99,116,114,108,67,111,111,107,105,101,66,97,114,8,0,13,46,99,117,107,105,46,99,117,107,105,112,114,101,8,0,10,46,99,117,115,116,45,101,115,112,97,8,0,24,46,99,117,115,116,111,109,45,99,104,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,22,46,99,117,115,116,111,109,45,99,111,110,116,97,105,110,101,114,45,108,103,112,100,8,0,21,46,99,117,115,116,111,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,28,46,99,117,115,116,111,109,45,99,111,111,107,105,101,45,102,111,111,116,101,114,45,98,97,110,110,101,114,8,0,18,46,99,117,115,116,111,109,45,99,111,111,107,105,101,45,109,115,103,8,0,15,46,99,117,115,116,111,109,45,99,111,111,107,105,101,115,8,0,13,46,99,117,115,116,111,109,67,111,111,107,105,101,8,0,21,46,99,117,115,116,111,109,67,111,111,107,105,101,66,97,99,107,100,114,111,112,8,0,14,46,99,117,115,116,111,109,95,99,111,111,107,105,101,8,0,21,46,99,117,115,116,111,109,95,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,29,46,99,117,115,116,111,109,101,114,45,105,110,102,111,45,98,108,111,99,107,95,95,99,111,111,99,107,105,101,8,0,23,46,99,117,115,116,111,109,105,115,101,45,99,111,111,107,105,101,115,45,109,97,105,110,8,0,17,46,99,118,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,12,46,99,118,50,45,119,114,97,112,112,101,114,8,0,25,46,99,119,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,117,105,45,115,100,107,8,0,12,46,99,119,99,111,111,107,105,101,108,97,119,8,0,14,46,99,119,99,111,111,107,105,101,108,97,119,98,103,8,0,25,46,99,119,115,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,24,46,99,119,116,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,8,0,16,46,99,120,95,99,111,111,107,105,101,78,111,116,105,99,101,8,0,24,46,99,120,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,99,121,45,112,111,112,105,110,45,99,111,111,107,105,101,8,0,28,46,99,121,98,111,116,45,99,111,111,107,105,101,98,111,116,45,112,108,97,99,101,104,111,108,100,101,114,8,0,14,46,99,122,45,99,111,111,107,105,101,45,98,97,114,8,0,17,46,99,122,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,13,46,99,122,45,99,111,111,107,105,101,98,97,114,8,0,21,46,100,45,99,99,45,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,8,0,13,46,100,45,99,111,111,107,105,101,45,98,97,114,8,0,19,46,100,45,99,111,111,107,105,101,66,97,110,110,101,114,86,105,101,119,8,0,10,46,100,45,99,111,111,107,105,101,115,8,0,14,46,100,67,111,111,107,105,101,115,65,108,101,114,116,8,0,9,46,100,95,99,111,95,98,111,120,8,0,20,46,100,97,97,99,45,100,101,115,107,116,111,112,45,110,111,116,105,99,101,8,0,20,46,100,97,103,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,8,0,28,46,100,97,104,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,111,118,101,114,108,97,121,8,0,19,46,100,97,114,107,46,103,100,112,114,45,115,101,116,116,105,110,103,115,8,0,11,46,100,97,115,45,99,111,111,107,105,101,8,0,18,46,100,97,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,28,46,100,97,115,104,98,108,111,103,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,8,0,20,46,100,97,116,97,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,23,46,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,110,111,116,105,99,101,8,0,19,46,100,97,116,97,80,114,105,118,97,99,121,79,118,101,114,108,97,121,8,0,30,46,100,97,116,97,80,114,111,116,101,99,116,105,111,110,83,101,116,116,105,110,103,115,87,114,97,112,112,101,114,8,0,25,46,100,97,116,97,112,114,105,118,97,99,121,45,99,111,111,107,105,101,115,45,110,111,116,101,8,0,17,46,100,97,116,101,98,111,111,107,45,99,111,111,107,105,101,115,8,0,18,46,100,97,116,101,110,115,99,104,117,116,122,98,97,110,110,101,114,8,0,18,46,100,97,116,101,110,115,99,104,117,116,122,99,111,111,107,105,101,8,0,19,46,100,97,116,101,110,115,99,104,117,116,122,104,105,110,119,101,105,115,8,0,17,46,100,98,45,99,111,111,107,105,101,45,114,101,109,97,114,107,8,0,17,46,100,98,97,121,67,111,111,107,105,101,83,101,108,101,99,116,8,0,19,46,100,98,101,45,99,111,110,116,101,110,116,95,99,111,111,107,105,101,8,0,22,46,100,98,104,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,18,46,100,98,105,95,95,99,111,111,107,105,101,98,97,110,110,101,114,8,0,14,46,100,98,107,45,99,111,111,107,105,101,98,97,114,8,0,17,46,100,98,116,102,121,45,99,111,111,107,105,101,95,98,111,120,8,0,26,46,100,99,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,116,111,103,103,108,101,114,8,0,21,46,100,99,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,12,46,100,99,67,111,111,107,105,101,66,97,114,8,0,22,46,100,99,67,111,111,107,105,101,66,97,114,66,97,99,107,103,114,111,117,110,100,8,0,12,46,100,99,101,45,112,114,105,118,97,99,121,8,0,26,46,100,99,105,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,12,46,100,99,109,45,99,111,111,107,105,101,115,8,0,26,46,100,99,110,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,99,111,111,107,105,101,8,0,20,46,100,99,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,115,101,8,0,26,46,100,99,120,97,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,115,8,0,16,46,100,101,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,23,46,100,101,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,119,114,97,112,8,0,18,46,100,101,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,8,0,12,46,100,101,97,99,111,111,107,105,101,100,116,8,0,12,46,100,101,97,108,45,99,111,111,107,105,101,8,0,14,46,100,101,98,97,116,45,99,111,111,107,105,101,115,8,0,14,46,100,101,102,97,117,108,116,67,111,111,107,105,101,8,0,11,46,100,101,107,114,97,45,103,100,112,114,8,0,21,46,100,101,108,105,109,105,116,97,84,101,114,109,111,115,67,111,111,107,105,101,8,0,20,46,100,101,108,116,97,95,100,111,109,97,105,110,95,99,111,111,107,105,101,8,0,14,46,100,101,110,116,114,111,45,99,111,111,107,105,101,8,0,13,46,100,101,112,111,45,99,111,111,107,105,101,115,8,0,19,46,100,101,114,105,118,101,45,99,111,111,107,105,101,45,100,114,111,112,8,0,21,46,100,101,115,107,116,111,112,95,99,111,111,107,105,101,95,98,108,111,99,107,8,0,19,46,100,101,115,112,114,101,45,99,111,111,107,105,101,45,105,110,102,111,8,0,17,46,100,101,118,114,111,99,107,101,116,45,99,111,111,107,105,101,8,0,31,46,100,101,118,115,105,116,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,101,117,45,99,111,111,107,105,101,8,0,30,46,100,102,99,45,99,111,111,107,105,101,45,105,110,102,111,45,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,24,46,100,102,120,45,99,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,8,0,11,46,100,103,45,99,111,111,107,105,101,115,8,0,20,46,100,103,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,13,46,100,103,116,108,45,99,111,110,115,101,110,116,8,0,20,46,100,104,95,99,111,111,107,105,101,95,109,97,110,97,103,101,114,95,49,8,0,22,46,100,105,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,8,0,23,46,100,105,97,108,111,103,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,8,0,45,46,100,105,97,108,111,103,66,97,110,110,101,114,95,95,105,110,110,101,114,91,100,97,116,97,45,113,97,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,8,0,20,46,100,105,97,108,111,103,67,111,111,107,105,101,87,97,114,110,105,110,103,8,0,35,46,100,105,97,108,111,103,91,97,114,105,97,45,108,97,98,101,108,61,34,99,111,111,107,105,101,99,111,110,115,101,110,116,34,93,8,0,16,46,100,105,97,108,111,103,117,101,45,99,111,111,107,105,101,8,0,21,46,100,105,100,111,109,105,45,110,111,116,105,99,101,45,98,97,110,110,101,114,8,0,20,46,100,105,103,105,109,97,100,105,45,99,99,45,119,114,97,112,112,101,114,8,0,18,46,100,105,110,97,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,13,46,100,105,115,99,45,99,111,111,107,105,101,115,8,0,18,46,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,8,0,27,46,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,8,0,39,46,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,115,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,20,46,100,105,115,99,108,97,105,109,101,114,67,111,110,116,97,105,110,101,114,8,0,17,46,100,105,115,99,108,97,105,109,101,114,67,111,111,107,105,101,8,0,18,46,100,105,115,99,108,97,105,109,101,114,67,111,111,107,105,101,115,8,0,18,46,100,105,115,99,108,97,105,109,101,114,80,114,105,118,97,99,121,8,0,19,46,100,105,115,99,108,97,105,109,101,114,95,99,111,111,107,105,101,115,8,0,17,46,100,105,115,99,108,97,105,109,101,114,98,97,110,110,101,114,8,0,18,46,100,105,115,99,108,97,105,109,101,114,109,101,115,115,97,103,101,8,0,17,46,100,105,115,99,108,97,105,109,101,114,115,45,108,103,112,100,8,0,15,46,100,105,115,99,108,97,109,101,95,98,108,111,99,107,8,0,17,46,100,105,115,99,108,97,109,101,114,95,99,111,111,107,105,101,8,0,24,46,100,105,115,99,108,111,115,117,114,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,100,105,115,99,114,101,116,101,45,99,111,111,107,105,101,8,0,15,46,100,105,115,109,105,115,115,45,99,111,111,107,105,101,8,0,16,46,100,105,115,109,105,115,115,95,99,111,111,107,105,101,115,8,0,26,46,100,105,115,109,105,115,115,97,98,108,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,17,46,100,105,115,111,102,108,101,120,45,99,111,111,107,105,101,115,8,0,15,46,100,105,115,112,108,97,121,45,99,111,111,107,105,101,8,0,16,46,100,105,115,112,108,97,121,45,99,111,111,107,105,101,115,8,0,19,46,100,105,115,112,108,97,121,95,99,111,111,107,105,101,95,98,116,110,8,0,16,46,100,105,115,112,108,97,121,95,99,111,111,107,105,101,115,8,0,27,46,100,105,118,45,98,97,110,110,101,114,45,99,111,111,107,105,101,45,99,101,110,116,114,97,108,101,8,0,11,46,100,105,118,45,99,111,111,107,105,101,8,0,16,46,100,105,118,65,108,108,111,119,67,111,111,107,105,101,115,8,0,22,46,100,105,118,67,111,110,116,101,110,105,116,111,114,101,67,111,111,107,105,101,115,8,0,10,46,100,105,118,67,111,111,107,105,101,8,0,16,46,100,105,118,67,111,111,107,105,101,66,97,110,110,101,114,8,0,13,46,100,105,118,67,111,111,107,105,101,66,97,114,8,0,20,46,100,105,118,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,8,0,27,46,100,105,118,67,111,111,107,105,101,80,111,108,105,99,121,80,111,112,111,117,116,79,117,116,101,114,8,0,15,46,100,105,118,67,111,111,107,105,101,80,111,112,85,112,8,0,24,46,100,105,118,67,111,111,107,105,101,80,111,112,85,112,67,111,110,116,97,105,110,101,114,8,0,17,46,100,105,118,67,111,111,107,105,101,87,97,114,110,105,110,103,8,0,16,46,100,105,118,67,111,111,107,105,101,98,111,116,84,97,98,8,0,11,46,100,105,118,67,111,111,107,105,101,115,8,0,18,46,100,105,118,67,111,111,107,105,101,115,87,97,114,110,105,110,103,8,0,16,46,100,105,118,70,111,111,116,101,114,67,111,111,107,105,101,8,0,14,46,100,105,118,76,101,121,67,111,111,107,105,101,115,8,0,14,46,100,105,118,95,67,111,111,107,105,101,76,97,119,8,0,26,46,100,105,118,95,67,111,111,107,105,101,78,111,116,105,99,101,67,111,110,116,97,105,110,101,114,8,0,17,46,100,105,118,95,97,108,101,114,116,46,99,111,111,107,105,101,8,0,14,46,100,105,118,95,99,111,111,107,105,101,95,98,103,8,0,16,46,100,105,118,95,99,111,111,107,105,101,95,104,105,110,116,8,0,15,46,100,105,118,95,99,111,111,107,105,101,95,116,111,112,8,0,12,46,100,105,118,95,99,111,111,107,105,101,115,8,0,13,46,100,105,118,97,115,99,111,111,107,105,101,115,8,0,10,46,100,105,118,99,111,111,107,105,101,8,0,19,46,100,106,45,99,111,111,107,105,101,45,45,118,105,115,105,98,108,101,8,0,15,46,100,107,45,99,111,111,107,105,101,115,45,98,97,114,8,0,26,46,100,108,95,99,111,111,107,105,101,66,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,8,0,22,46,100,108,95,99,111,111,107,105,101,66,97,110,110,101,114,95,111,117,116,101,114,8,0,26,46,100,108,95,99,111,111,107,105,101,95,102,111,111,116,101,114,45,45,118,105,115,105,98,108,101,8,0,25,46,100,108,95,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,97,100,118,101,114,116,8,0,26,46,100,109,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,17,46,100,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,100,109,103,45,99,111,111,107,105,101,45,105,110,102,111,8,0,21,46,100,110,45,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,8,0,20,46,100,110,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,38,46,100,110,105,45,110,111,116,105,102,105,99,97,116,105,111,110,115,95,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,18,46,100,110,116,45,117,115,105,110,103,45,99,111,111,107,105,101,115,8,0,19,46,100,110,116,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,23,46,100,110,118,103,108,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,23,46,100,111,109,45,99,111,110,116,101,110,116,45,45,101,117,45,98,97,110,110,101,114,8,0,24,46,100,111,109,97,99,105,99,97,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,23,46,100,111,110,101,45,103,100,112,114,45,97,108,101,114,116,45,98,111,120,45,98,103,8,0,26,46,100,111,110,101,45,103,100,112,114,45,97,108,101,114,116,45,98,111,120,45,109,111,100,97,108,8,0,28,46,100,111,110,101,45,103,100,112,114,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,15,46,100,111,116,45,99,99,45,119,114,97,112,112,101,114,8,0,18,46,100,111,116,45,99,111,111,107,105,101,45,112,114,111,109,112,116,8,0,12,46,100,111,116,95,99,111,111,107,105,101,115,8,0,17,46,100,111,121,111,117,108,105,107,101,99,111,111,107,105,101,115,8,0,16,46,100,112,45,99,111,111,107,105,101,45,108,101,103,97,108,8,0,13,46,100,112,100,112,97,45,45,112,111,112,117,112,8,0,18,46,100,112,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,100,114,45,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,8,0,18,46,100,114,45,109,101,115,115,97,103,101,45,99,111,111,107,105,101,8,0,24,46,100,114,95,99,111,111,107,105,101,115,95,118,50,95,99,111,110,116,97,105,110,101,114,8,0,15,46,100,114,97,119,101,114,45,99,111,111,107,105,101,115,8,0,18,46,100,114,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,19,46,100,114,105,45,110,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,13,46,100,115,45,99,111,111,107,105,101,98,97,114,8,0,19,46,100,115,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,22,46,100,115,50,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,20,46,100,115,100,118,111,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,17,46,100,115,103,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,13,46,100,115,103,118,111,45,98,97,110,110,101,114,8,0,19,46,100,115,103,118,111,45,99,111,110,102,105,114,109,97,116,105,111,110,8,0,21,46,100,115,103,118,111,45,99,111,110,115,101,110,116,45,45,112,111,112,117,112,8,0,16,46,100,115,103,118,111,45,99,111,110,116,97,105,110,101,114,8,0,21,46,100,115,103,118,111,45,99,111,111,107,105,101,95,99,111,110,115,101,110,116,8,0,19,46,100,115,103,118,111,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,13,46,100,115,103,118,111,45,102,111,111,116,101,114,8,0,12,46,100,115,103,118,111,45,109,111,100,97,108,8,0,20,46,100,115,103,118,111,45,109,111,100,97,108,45,111,118,101,114,108,97,121,8,0,14,46,100,115,103,118,111,45,111,118,101,114,108,97,121,8,0,20,46,100,115,103,118,111,45,119,105,100,103,101,116,95,95,112,111,112,117,112,8,0,23,46,100,115,103,118,111,45,119,105,100,103,101,116,95,95,112,111,112,117,112,45,98,103,8,0,14,46,100,115,103,118,111,45,119,114,97,112,112,101,114,8,0,14,46,100,115,103,118,111,65,112,112,114,111,118,97,108,8,0,11,46,100,115,103,118,111,76,97,121,101,114,8,0,13,46,100,115,103,118,111,95,102,111,111,116,101,114,8,0,14,46,100,115,103,118,111,95,111,118,101,114,108,97,121,8,0,21,46,100,115,118,103,111,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,18,46,100,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,17,46,100,116,45,99,111,111,107,105,101,45,100,105,97,108,111,103,8,0,17,46,100,116,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,15,46,100,116,99,111,111,107,105,101,95,95,119,114,97,112,8,0,18,46,100,116,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,100,116,120,45,99,111,111,107,105,101,8,0,21,46,100,116,121,114,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,11,46,100,117,95,99,111,110,115,101,110,116,8,0,24,46,100,117,99,45,98,97,115,101,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,25,46,100,117,101,116,45,45,99,116,97,45,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,100,118,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,100,118,45,99,111,111,107,105,101,115,8,0,10,46,100,118,67,111,111,107,105,101,115,8,0,27,46,100,118,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,30,46,100,118,111,114,101,45,97,99,99,101,112,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,34,46,100,118,111,114,101,95,112,114,103,95,97,99,99,101,112,116,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,8,0,25,46,100,118,115,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,99,111,110,116,97,105,8,0,28,46,100,118,115,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,11,46,100,119,95,99,111,111,107,105,101,115,8,0,35,46,100,119,97,45,101,109,98,101,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,19,46,100,119,99,99,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,29,46,100,120,109,108,45,99,111,111,107,105,101,45,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,8,0,17,46,101,45,99,111,110,115,101,110,116,115,45,97,108,101,114,116,8,0,9,46,101,45,99,111,111,107,105,101,8,0,14,46,101,45,99,111,111,107,105,101,45,105,110,102,111,8,0,17,46,101,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,17,46,101,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,12,46,101,45,99,111,111,107,105,101,66,97,114,8,0,12,46,101,45,99,111,111,107,105,101,98,97,114,8,0,10,46,101,45,99,111,111,107,105,101,115,8,0,18,46,101,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,16,46,101,45,110,111,116,101,95,95,99,111,111,107,105,101,115,8,0,22,46,101,45,116,114,111,110,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,8,0,11,46,101,51,95,99,111,111,107,105,101,115,8,0,17,46,101,51,110,95,99,111,111,107,105,101,98,97,110,110,101,114,8,0,15,46,101,67,111,111,107,105,101,115,66,97,110,110,101,114,8,0,19,46,101,71,68,83,67,111,111,107,105,101,115,79,118,101,114,108,97,121,8,0,21,46,101,80,114,105,118,97,99,121,79,117,116,101,114,87,114,97,112,112,101,114,8,0,21,46,101,97,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,15,46,101,97,45,99,111,111,107,105,101,115,45,98,97,114,8,0,16,46,101,97,118,45,99,111,111,107,105,101,108,97,121,101,114,8,0,10,46,101,98,45,99,111,111,107,105,101,8,0,29,46,101,98,99,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,8,0,14,46,101,98,111,120,67,111,111,107,105,101,66,97,114,8,0,14,46,101,98,111,120,67,111,111,107,105,101,76,97,119,8,0,25,46,101,98,117,45,99,111,111,107,105,101,115,45,108,97,121,101,114,95,95,109,111,100,97,108,8,0,14,46,101,99,45,99,111,111,107,105,101,45,98,97,114,8,0,17,46,101,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,24,46,101,99,45,103,116,109,45,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,8,0,19,46,101,99,45,110,111,116,105,99,101,45,45,119,97,114,110,105,110,103,8,0,17,46,101,99,45,110,111,116,105,99,101,115,95,95,119,114,97,112,8,0,14,46,101,99,97,117,112,111,45,99,111,111,107,105,101,8,0,18,46,101,99,98,45,99,111,111,107,105,101,67,111,110,115,101,110,116,8,0,17,46,101,99,100,99,67,111,111,107,105,101,80,111,108,105,99,121,8,0,26,46,101,99,109,116,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,115,8,0,16,46,101,99,111,109,45,99,111,111,107,105,101,95,98,111,120,8,0,15,46,101,99,111,109,45,99,111,111,107,105,101,98,97,114,8,0,21,46,101,99,111,109,99,111,111,107,105,101,108,97,119,45,104,111,108,100,101,114,8,0,15,46,101,100,45,99,111,111,107,105,101,115,45,98,97,114,8,0,16,46,101,100,99,99,45,99,111,111,107,105,101,45,98,97,114,8,0,21,46,101,100,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,8,0,26,46,101,100,120,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,25,46,101,101,45,105,110,116,114,111,45,98,97,110,110,101,114,95,95,99,111,110,115,101,110,116,8,0,21,46,101,102,105,108,108,105,45,108,97,121,111,117,116,45,108,101,103,97,99,121,8,0,13,46,101,103,45,99,99,45,98,97,110,110,101,114,8,0,18,46,101,103,109,45,99,111,111,107,105,101,45,102,108,121,111,117,116,8,0,20,46,101,103,109,111,110,116,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,15,46,101,103,109,111,110,116,45,99,111,111,107,105,101,115,8,0,21,46,101,104,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,14,46,101,104,45,99,111,111,107,105,101,105,110,102,111,8,0,10,46,101,105,95,99,111,111,107,105,101,8,0,31,46,101,105,103,104,116,119,111,114,107,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,108,117,115,8,0,39,46,101,105,103,104,116,119,111,114,107,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,108,117,115,45,116,111,103,103,108,101,114,8,0,16,46,101,105,105,45,99,99,112,97,45,99,111,111,107,105,101,8,0,10,46,101,107,45,99,111,111,107,105,101,8,0,19,46,101,107,115,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,18,46,101,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,23,46,101,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,114,101,97,8,0,25,46,101,108,97,110,52,50,45,100,105,115,99,108,97,105,109,101,114,45,98,97,110,110,101,114,8,0,10,46,101,108,99,97,45,103,100,112,114,8,0,22,46,101,108,101,109,101,110,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,31,46,101,108,102,115,105,103,104,116,45,119,105,100,103,101,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,14,46,101,109,98,45,99,112,45,100,105,97,108,111,103,8,0,15,46,101,109,98,45,99,112,45,119,114,97,112,112,101,114,8,0,27,46,101,109,98,101,100,100,101,100,67,111,111,107,105,101,67,111,110,115,101,110,116,80,111,112,117,112,8,0,15,46,101,109,101,114,115,111,110,45,99,111,111,107,105,101,8,0,15,46,101,109,103,45,99,111,111,107,105,101,45,98,97,114,8,0,10,46,101,109,103,99,111,111,107,105,101,8,0,26,46,101,109,107,97,45,99,111,111,107,105,101,115,45,98,111,116,116,111,109,45,108,97,121,101,114,8,0,16,46,101,109,109,45,99,111,111,107,105,101,45,105,110,102,111,8,0,19,46,101,109,112,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,15,46,101,109,115,45,99,111,111,107,105,101,45,98,110,114,8,0,8,46,101,110,95,103,100,112,114,8,0,25,46,101,110,97,98,108,101,95,109,97,114,107,101,116,105,110,103,95,99,111,111,107,105,101,115,8,0,14,46,101,110,99,97,114,116,95,99,111,111,107,105,101,8,0,37,46,101,110,101,114,106,105,115,97,45,99,101,114,101,122,45,112,111,108,105,116,105,107,97,115,105,45,99,111,111,107,105,101,45,98,97,114,8,0,17,46,101,110,103,95,99,111,111,107,105,101,95,105,110,110,101,114,8,0,31,46,101,110,104,97,110,99,101,100,45,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,17,46,101,110,115,77,111,100,97,108,66,97,99,107,100,114,111,112,8,0,16,46,101,110,115,78,111,116,105,102,121,66,97,110,110,101,114,8,0,23,46,101,110,115,78,111,116,105,102,121,66,97,110,110,101,114,87,114,97,112,112,101,114,8,0,13,46,101,110,115,117,114,101,67,111,111,107,105,101,8,0,18,46,101,110,118,45,109,111,100,97,108,45,99,111,111,107,105,101,115,8,0,9,46,101,111,99,111,111,107,105,101,8,0,20,46,101,111,110,101,45,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,20,46,101,111,115,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,18,46,101,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,13,46,101,112,45,99,111,111,107,105,101,98,97,114,8,0,15,46,101,112,45,99,111,111,107,105,101,115,45,98,97,114,8,0,24,46,101,112,45,99,111,111,107,105,101,115,45,105,110,102,111,45,119,114,97,112,112,101,114,8,0,11,46,101,112,95,99,111,111,107,105,101,115,8,0,11,46,101,112,112,45,99,111,111,107,105,101,8,0,13,46,101,112,112,45,108,98,45,105,110,110,101,114,8,0,27,46,101,112,114,105,118,97,99,121,45,98,97,110,110,101,114,45,45,100,105,115,112,108,97,121,101,100,8,0,26,46,101,112,114,105,118,97,99,121,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,27,46,101,112,114,105,118,97,99,121,45,98,97,110,110,101,114,95,95,99,111,110,116,97,105,110,101,114,8,0,16,46,101,112,114,105,118,97,99,121,45,99,111,111,107,105,101,8,0,16,46,101,112,114,105,118,97,99,121,45,112,108,117,103,105,110,8,0,16,46,101,112,114,105,118,97,99,121,95,99,111,111,107,105,101,8,0,11,46,101,112,114,106,99,111,111,107,105,101,8,0,19,46,101,112,115,111,110,95,99,111,111,107,105,101,110,111,116,105,99,101,8,0,19,46,101,115,45,99,111,111,107,105,101,45,115,111,108,117,116,105,111,110,8,0,35,46,101,115,105,108,45,103,108,111,98,97,108,45,115,101,99,116,105,111,110,95,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,101,115,112,97,45,98,97,110,110,101,114,45,102,105,120,101,100,8,0,17,46,101,115,112,97,45,104,111,118,101,114,45,105,109,97,103,101,8,0,11,46,101,115,112,97,45,105,109,97,103,101,8,0,22,46,101,115,112,97,45,108,111,103,111,115,95,95,99,111,110,116,97,105,110,101,114,8,0,11,46,101,115,112,97,98,97,110,110,101,114,8,0,10,46,101,115,112,99,111,111,107,105,101,8,0,12,46,101,115,114,105,45,99,111,111,107,105,101,8,0,23,46,101,115,116,114,97,116,101,103,121,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,30,46,101,115,116,114,97,116,101,103,121,45,99,111,111,107,105,101,45,112,111,112,117,112,45,109,111,98,105,108,101,8,0,10,46,101,116,45,99,111,111,107,105,101,8,0,18,46,101,116,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,8,0,16,46,101,116,105,67,111,111,107,105,101,66,97,110,110,101,114,8,0,24,46,101,116,115,95,99,111,111,107,105,101,95,98,97,110,98,101,114,95,98,108,111,99,107,8,0,10,46,101,117,45,98,97,110,110,101,114,8,0,14,46,101,117,45,99,111,109,112,108,105,97,110,99,101,8,0,22,46,101,117,45,99,111,109,112,108,105,97,110,99,101,45,109,101,115,115,97,103,101,8,0,17,46,101,117,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,27,46,101,117,45,99,111,111,107,105,101,45,98,97,114,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,28,46,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,8,0,52,46,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,112,111,112,117,112,45,111,112,101,110,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,22,46,101,117,45,99,111,111,107,105,101,45,100,105,118,45,105,110,105,116,105,97,108,8,0,15,46,101,117,45,99,111,111,107,105,101,45,105,110,102,111,8,0,14,46,101,117,45,99,111,111,107,105,101,45,108,97,119,8,0,22,46,101,117,45,99,111,111,107,105,101,45,108,97,119,45,119,114,97,112,112,101,114,8,0,18,46,101,117,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,14,46,101,117,45,99,111,111,107,105,101,45,110,97,103,8,0,17,46,101,117,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,23,46,101,117,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,101,117,45,99,111,111,107,105,101,45,112,97,110,101,108,8,0,17,46,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,32,46,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,25,46,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,116,101,110,116,8,0,22,46,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,101,8,0,25,46,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,8,0,16,46,101,117,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,17,46,101,117,45,99,111,111,107,105,101,45,112,114,111,109,112,116,8,0,15,46,101,117,45,99,111,111,107,105,101,45,115,104,111,119,8,0,18,46,101,117,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,15,46,101,117,45,99,111,111,107,105,101,45,119,114,97,112,8,0,18,46,101,117,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,11,46,101,117,45,99,111,111,107,105,101,115,8,0,17,46,101,117,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,27,46,101,117,45,99,111,111,107,105,101,115,45,98,97,114,45,99,111,111,107,105,101,115,45,98,97,114,8,0,36,46,101,117,45,99,111,111,107,105,101,115,45,98,97,114,45,99,111,111,107,105,101,115,45,98,97,114,45,115,101,116,116,105,110,103,115,8,0,32,46,101,117,45,99,111,111,107,105,101,115,45,98,97,114,45,99,111,111,107,105,101,115,45,98,97,114,45,119,114,97,112,8,0,25,46,101,117,45,99,111,111,107,105,101,115,45,98,97,114,58,110,111,116,40,98,111,100,121,41,8,0,19,46,101,117,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,8,0,15,46,101,117,45,99,111,111,107,105,101,115,45,109,115,103,8,0,18,46,101,117,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,16,46,101,117,45,99,111,111,107,105,101,115,45,115,104,111,119,8,0,19,46,101,117,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,17,46,101,117,45,108,97,119,45,99,111,110,116,97,105,110,101,114,8,0,17,46,101,117,45,112,114,117,100,97,45,99,111,111,107,105,101,115,8,0,18,46,101,117,45,115,117,99,107,45,109,121,45,99,111,111,107,105,101,8,0,9,46,101,117,67,111,111,107,105,101,8,0,15,46,101,117,67,111,111,107,105,101,45,111,117,116,101,114,8,0,18,46,101,117,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,23,46,101,117,67,111,111,107,105,101,73,110,102,111,98,97,114,87,114,97,112,112,101,114,8,0,12,46,101,117,67,111,111,107,105,101,76,97,119,8,0,14,46,101,117,67,111,111,107,105,101,76,97,121,101,114,8,0,14,46,101,117,67,111,111,107,105,101,77,111,100,97,108,8,0,15,46,101,117,67,111,111,107,105,101,78,111,116,105,99,101,8,0,14,46,101,117,67,111,111,107,105,101,80,97,110,101,108,8,0,15,46,101,117,67,111,111,107,105,101,80,111,108,105,99,121,8,0,23,46,101,117,67,111,111,107,105,101,80,111,112,117,112,67,111,110,116,97,105,110,101,114,8,0,20,46,101,117,67,111,111,107,105,101,80,111,112,117,112,83,112,97,99,101,114,8,0,15,46,101,117,67,111,111,107,105,101,83,116,114,105,112,101,8,0,13,46,101,117,67,111,111,107,105,101,87,97,114,110,8,0,10,46,101,117,67,111,111,107,105,101,115,8,0,16,46,101,117,67,111,111,107,105,101,115,80,111,108,105,99,121,8,0,9,46,101,117,80,111,108,105,99,121,8,0,21,46,101,117,80,114,105,118,97,99,121,95,99,111,111,107,105,101,115,77,115,103,8,0,22,46,101,117,95,95,99,111,111,107,105,101,45,45,99,111,110,116,97,105,110,101,114,8,0,10,46,101,117,95,99,99,95,108,97,119,8,0,18,46,101,117,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,8,0,24,46,101,117,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,112,111,112,117,112,8,0,20,46,101,117,95,99,111,111,107,105,101,95,119,114,97,112,112,101,114,95,50,8,0,11,46,101,117,95,99,111,111,107,105,101,115,8,0,17,46,101,117,95,99,111,111,107,105,101,115,95,97,108,101,114,116,8,0,19,46,101,117,95,99,111,111,111,107,105,101,95,116,111,111,108,98,97,114,8,0,9,46,101,117,99,111,111,107,105,101,8,0,16,46,101,117,99,111,111,107,105,101,45,112,111,112,45,117,112,8,0,15,46,101,117,99,111,111,107,105,101,95,98,108,111,99,107,8,0,20,46,101,117,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,8,0,20,46,101,117,99,111,111,107,105,101,95,110,111,116,105,99,97,116,105,111,110,8,0,17,46,101,117,99,111,111,107,105,101,95,119,114,97,112,112,101,114,8,0,12,46,101,117,99,111,111,107,105,101,98,97,114,8,0,12,46,101,117,99,111,111,107,105,101,108,97,119,8,0,19,46,101,117,99,111,111,107,105,101,108,97,119,45,98,97,110,110,101,114,8,0,16,46,101,117,99,111,111,107,105,101,109,97,110,97,103,101,114,8,0,10,46,101,117,99,111,111,107,105,101,115,8,0,18,46,101,117,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,8,46,101,117,100,115,103,118,111,8,0,13,46,101,117,103,100,112,114,45,98,108,111,99,107,8,0,19,46,101,117,108,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,9,46,101,117,108,97,119,98,111,120,8,0,19,46,101,117,112,111,112,117,112,45,98,97,99,107,103,114,111,117,110,100,8,0,18,46,101,117,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,30,46,101,117,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,45,98,111,116,116,111,109,114,105,103,104,116,8,0,20,46,101,117,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,101,117,8,0,11,46,101,117,114,111,99,111,111,107,105,101,8,0,20,46,101,117,116,45,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,8,0,17,46,101,118,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,101,118,97,115,116,101,45,99,111,110,116,97,105,110,101,114,8,0,14,46,101,118,97,115,116,101,115,101,108,111,115,116,101,8,0,14,46,101,118,105,100,111,110,45,98,97,110,110,101,114,8,0,16,46,101,118,105,108,45,99,111,111,107,105,101,45,98,97,114,8,0,13,46,101,118,111,45,103,100,112,114,45,98,111,120,8,0,19,46,101,118,116,45,99,111,111,107,105,101,45,101,108,101,109,101,110,116,8,0,12,46,101,120,112,45,99,111,111,107,105,101,115,8,0,14,46,101,120,112,97,110,100,101,100,46,103,100,112,114,8,0,26,46,101,120,112,108,105,99,105,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,34,46,101,120,112,108,105,99,105,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,45,119,114,97,112,112,101,114,8,0,15,46,101,120,112,111,110,101,97,45,98,97,110,110,101,114,8,0,23,46,101,120,112,111,110,101,97,45,98,97,110,110,101,114,45,45,99,111,111,107,105,101,8,0,15,46,101,120,112,111,110,101,97,45,99,111,111,107,105,101,8,0,24,46,101,120,112,111,110,101,97,45,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,8,0,20,46,101,120,112,114,101,115,115,99,111,110,115,101,110,116,65,108,101,114,116,8,0,11,46,101,120,116,45,99,111,111,107,105,101,8,0,20,46,101,120,116,114,97,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,15,46,101,120,116,114,101,109,101,45,99,111,111,107,105,101,8,0,11,46,101,120,122,111,99,111,111,107,105,101,8,0,22,46,101,121,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,115,103,8,0,17,46,101,122,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,101,122,111,105,99,45,102,108,111,97,116,105,110,103,45,98,111,116,116,111,109,8,0,16,46,102,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,102,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,24,46,102,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,111,116,116,111,109,8,0,14,46,102,45,100,97,116,97,45,112,111,108,105,99,121,8,0,13,46,102,45,101,117,45,99,111,111,107,105,101,115,8,0,9,46,102,95,99,111,111,107,105,101,8,0,7,46,102,95,103,100,112,114,8,0,10,46,102,97,45,99,111,111,107,105,101,8,0,14,46,102,97,108,100,111,110,67,111,111,107,105,101,115,8,0,13,46,102,97,115,99,105,97,67,111,111,107,105,101,8,0,14,46,102,98,45,99,111,111,107,105,101,45,108,97,119,8,0,15,46,102,98,45,99,111,111,107,105,101,115,45,98,97,114,8,0,13,46,102,98,80,97,103,101,66,97,110,110,101,114,8,0,19,46,102,98,97,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,11,46,102,99,45,99,111,111,107,105,101,115,8,0,15,46,102,99,107,45,101,117,45,99,111,111,107,105,101,115,8,0,21,46,102,99,115,45,99,111,111,107,105,101,45,99,111,109,112,111,110,101,110,116,8,0,23,46,102,101,97,116,117,114,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,8,0,24,46,102,101,101,100,98,97,99,107,45,109,101,115,115,97,103,101,46,99,111,111,107,105,101,8,0,18,46,102,101,108,100,45,99,111,111,107,105,101,110,111,116,105,99,101,8,0,22,46,102,101,111,95,115,104,97,114,101,95,99,111,111,107,105,101,115,95,98,97,114,8,0,16,46,102,101,115,116,105,118,97,108,45,99,111,111,107,105,101,8,0,18,46,102,101,118,101,114,45,99,111,111,107,105,101,95,95,98,97,114,8,0,15,46,102,102,67,111,111,107,105,101,45,109,111,100,97,108,8,0,20,46,102,103,45,99,111,111,107,105,101,115,100,105,114,101,99,116,105,118,101,8,0,12,46,102,104,67,111,111,107,105,101,76,97,119,8,0,17,46,102,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,102,105,108,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,15,46,102,105,108,67,111,111,107,105,101,115,67,110,105,108,8,0,16,46,102,105,110,101,120,45,99,111,111,107,105,101,98,97,114,8,0,23,46,102,105,116,45,99,111,111,107,105,101,87,97,108,108,45,111,118,101,114,108,97,121,8,0,18,46,102,105,117,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,102,105,120,45,99,111,111,107,105,101,45,109,115,103,45,98,97,114,8,0,10,46,102,105,120,99,111,111,107,105,101,8,0,28,46,102,105,120,101,100,45,98,111,116,116,111,109,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,102,105,120,101,100,45,98,111,116,116,111,109,46,99,111,111,107,105,101,115,8,0,25,46,102,105,120,101,100,45,98,111,116,116,111,109,46,115,104,111,119,80,114,105,118,97,99,121,8,0,13,46,102,105,120,101,100,45,99,111,111,107,105,101,8,0,18,46,102,105,120,101,100,45,99,111,111,107,105,101,45,97,114,105,97,8,0,21,46,102,105,120,101,100,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,8,0,17,46,102,105,120,101,100,45,99,111,111,107,105,101,45,112,114,108,8,0,19,46,102,105,120,101,100,45,109,115,103,45,45,99,111,111,107,105,101,115,8,0,18,46,102,105,120,101,100,45,116,111,112,46,99,111,111,107,105,101,115,8,0,18,46,102,105,120,101,100,46,99,111,111,107,105,101,115,95,108,97,119,8,0,19,46,102,105,120,101,100,67,111,111,107,105,101,79,118,101,114,108,97,121,8,0,18,46,102,105,120,101,100,67,111,111,107,105,101,80,111,108,105,99,121,8,0,22,46,102,105,120,101,100,91,100,97,116,97,45,99,111,111,107,105,101,98,97,114,93,8,0,12,46,102,105,120,101,100,95,99,101,114,101,122,8,0,19,46,102,105,120,101,100,95,99,111,111,107,105,101,80,111,108,105,99,121,8,0,14,46,102,105,120,101,100,95,99,111,111,107,105,101,115,8,0,17,46,102,108,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,28,46,102,108,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,45,99,111,110,116,97,105,110,101,114,8,0,14,46,102,108,97,115,104,45,45,99,111,111,107,105,101,8,0,21,46,102,108,97,115,104,45,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,102,108,97,115,104,45,114,103,112,100,8,0,31,46,102,108,97,115,104,91,100,97,116,97,45,99,111,111,107,105,101,61,34,101,117,95,99,111,111,107,105,101,34,93,8,0,21,46,102,108,97,115,104,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,8,0,15,46,102,108,97,116,45,99,109,45,99,111,111,107,105,101,8,0,17,46,102,108,97,116,115,111,109,101,45,99,111,111,107,105,101,115,8,0,25,46,102,108,97,116,115,111,109,101,45,99,111,111,107,105,101,115,45,45,97,99,116,105,118,101,8,0,14,46,102,108,97,122,105,111,45,99,111,111,107,105,101,8,0,18,46,102,108,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,23,46,102,108,101,120,45,99,111,111,107,105,101,115,45,115,116,97,116,101,109,101,110,116,8,0,12,46,102,108,101,120,46,99,111,111,107,105,101,8,0,25,46,102,108,101,120,95,99,111,111,107,105,101,95,112,111,112,117,112,95,98,111,116,116,111,109,8,0,13,46,102,108,101,120,105,45,99,111,111,107,105,101,8,0,14,46,102,108,101,120,105,116,95,99,111,111,107,105,101,8,0,47,46,102,108,111,97,116,105,110,103,45,98,97,114,91,100,97,116,97,45,99,111,111,107,105,101,45,110,97,109,101,61,34,99,111,111,107,105,101,95,110,111,116,105,99,101,34,93,8,0,21,46,102,108,111,97,116,105,110,103,45,99,111,111,107,105,101,45,105,110,102,111,8,0,23,46,102,108,111,97,116,105,110,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,11,46,102,108,111,119,67,111,111,107,105,101,8,0,25,46,102,108,117,118,45,101,117,45,99,111,111,99,107,105,101,115,45,119,114,97,112,112,101,114,8,0,19,46,102,108,117,120,101,100,67,111,110,115,101,110,116,80,111,112,117,112,8,0,16,46,102,109,45,99,111,111,107,105,101,66,97,110,110,101,114,8,0,19,46,102,110,45,99,111,111,107,105,101,45,115,104,111,119,45,98,97,114,8,0,13,46,102,110,45,99,111,111,107,105,101,98,97,114,8,0,19,46,102,110,45,99,111,111,107,105,101,98,97,114,45,115,116,121,108,101,8,0,10,46,102,111,45,99,111,111,107,105,101,8,0,18,46,102,111,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,14,46,102,111,99,117,115,45,99,111,111,107,105,101,115,8,0,18,46,102,111,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,102,111,110,100,95,98,97,110,100,101,97,117,95,99,111,111,99,107,105,101,115,8,0,13,46,102,111,110,100,99,111,111,107,105,101,115,50,8,0,20,46,102,111,110,100,111,45,97,118,105,115,111,45,99,111,111,107,105,101,115,8,0,15,46,102,111,111,45,98,97,114,45,99,111,111,107,105,101,8,0,14,46,102,111,111,98,97,114,45,99,111,111,107,105,101,8,0,17,46,102,111,111,108,95,116,101,120,116,95,99,111,111,107,105,101,8,0,23,46,102,111,111,111,116,101,114,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,8,0,25,46,102,111,111,116,101,114,45,98,111,116,116,111,109,32,62,32,35,99,111,111,107,105,101,115,8,0,12,46,102,111,111,116,101,114,45,99,110,105,108,8,0,15,46,102,111,111,116,101,114,45,99,110,105,108,45,119,114,8,0,14,46,102,111,111,116,101,114,45,99,111,111,107,105,101,8,0,21,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,24,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,21,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,27,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,23,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,8,0,21,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,20,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,22,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,22,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,15,46,102,111,111,116,101,114,45,99,111,111,107,105,101,115,8,0,21,46,102,111,111,116,101,114,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,19,46,102,111,111,116,101,114,45,99,111,111,107,105,101,115,45,98,97,114,8,0,22,46,102,111,111,116,101,114,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,23,46,102,111,111,116,101,114,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,12,46,102,111,111,116,101,114,45,103,100,112,114,8,0,18,46,102,111,111,116,101,114,45,103,100,112,114,45,109,111,100,97,108,8,0,12,46,102,111,111,116,101,114,45,107,118,107,107,8,0,26,46,102,111,111,116,101,114,45,110,101,119,95,95,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,35,46,102,111,111,116,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,22,46,102,111,111,116,101,114,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,21,46,102,111,111,116,101,114,45,112,114,105,118,97,99,121,45,112,111,112,117,112,8,0,22,46,102,111,111,116,101,114,45,112,114,105,118,97,116,101,45,112,111,108,105,99,121,8,0,22,46,102,111,111,116,101,114,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,8,0,29,46,102,111,111,116,101,114,45,115,116,105,99,107,121,95,95,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,26,46,102,111,111,116,101,114,45,116,101,114,109,115,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,102,111,111,116,101,114,45,118,50,95,95,112,114,105,118,97,99,121,8,0,14,46,102,111,111,116,101,114,67,111,111,107,105,101,115,8,0,23,46,102,111,111,116,101,114,95,95,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,17,46,102,111,111,116,101,114,95,95,99,111,111,99,107,105,101,115,8,0,15,46,102,111,111,116,101,114,95,95,99,111,111,107,105,101,8,0,30,46,102,111,111,116,101,114,95,95,99,111,111,107,105,101,45,97,108,101,114,116,45,45,119,114,97,112,112,101,114,8,0,22,46,102,111,111,116,101,114,95,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,20,46,102,111,111,116,101,114,95,95,99,111,111,107,105,101,45,105,110,102,111,8,0,18,46,102,111,111,116,101,114,95,95,99,111,111,107,105,101,98,97,114,8,0,16,46,102,111,111,116,101,114,95,95,99,111,111,107,105,101,115,8,0,18,46,102,111,111,116,101,114,95,95,101,117,45,99,111,111,107,105,101,8,0,13,46,102,111,111,116,101,114,95,95,103,100,114,112,8,0,23,46,102,111,111,116,101,114,95,95,112,114,105,118,97,99,121,45,99,111,111,107,105,101,8,0,23,46,102,111,111,116,101,114,95,99,101,114,101,122,112,111,108,105,116,105,107,97,115,105,8,0,12,46,102,111,111,116,101,114,95,99,110,105,108,8,0,14,46,102,111,111,116,101,114,95,99,111,111,107,105,101,8,0,22,46,102,111,111,116,101,114,95,99,111,111,107,105,101,82,101,109,105,110,100,101,114,8,0,20,46,102,111,111,116,101,114,95,99,111,111,107,105,101,95,97,108,101,114,116,8,0,18,46,102,111,111,116,101,114,95,99,111,111,107,105,101,95,98,97,114,8,0,21,46,102,111,111,116,101,114,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,15,46,102,111,111,116,101,114,95,99,111,111,107,105,101,115,8,0,17,46,102,111,111,116,101,114,95,101,117,95,99,111,111,107,105,101,8,0,25,46,102,111,111,116,101,114,95,112,114,105,118,97,99,121,45,99,111,110,116,97,105,110,101,114,8,0,9,46,102,111,111,116,101,114,99,107,8,0,17,46,102,111,111,116,112,114,105,110,116,95,99,111,111,107,105,101,8,0,17,46,102,111,114,99,101,45,101,117,45,99,111,111,107,105,101,115,8,0,17,46,102,111,114,109,45,45,99,111,111,107,105,101,45,98,97,114,8,0,23,46,102,111,114,109,45,98,111,120,45,99,111,111,107,105,101,109,101,115,115,97,103,101,8,0,15,46,102,111,114,109,98,97,114,67,111,110,115,101,110,116,8,0,14,46,102,111,114,109,105,100,97,67,111,111,107,105,101,8,0,21,46,102,111,114,117,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,115,8,0,14,46,102,112,45,99,111,111,107,105,101,45,98,97,114,8,0,18,46,102,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,10,46,102,112,95,99,111,111,107,105,101,8,0,11,46,102,112,95,99,111,111,107,105,101,115,8,0,18,46,102,114,45,99,45,109,101,115,115,97,103,101,45,119,114,97,112,8,0,18,46,102,114,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,14,46,102,114,45,99,111,111,107,105,101,45,98,97,114,8,0,21,46,102,114,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,23,46,102,114,95,115,104,111,119,67,111,111,107,105,101,76,101,103,97,108,73,110,102,111,8,0,20,46,102,114,97,109,101,45,115,109,97,108,108,46,99,111,111,107,105,101,115,8,0,18,46,102,114,97,109,101,119,111,114,107,95,99,111,111,107,105,101,115,8,0,27,46,102,114,101,101,112,114,105,118,97,99,121,112,111,108,105,99,121,45,99,111,109,45,45,45,110,98,8,0,34,46,102,114,101,101,112,114,105,118,97,99,121,112,111,108,105,99,121,45,99,111,109,45,45,45,110,98,45,115,105,109,112,108,101,8,0,30,46,102,114,105,103,103,45,99,111,111,107,105,101,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,31,46,102,114,111,110,116,101,110,100,80,114,105,118,97,99,121,95,95,99,111,110,115,101,110,116,66,97,110,110,101,114,8,0,24,46,102,115,45,99,99,45,98,97,110,110,101,114,50,95,99,111,109,112,111,110,101,110,116,8,0,24,46,102,115,45,99,99,45,98,97,110,110,101,114,51,95,99,111,109,112,111,110,101,110,116,8,0,26,46,102,115,45,99,99,45,98,97,110,110,101,114,51,95,99,111,109,112,111,110,101,110,116,45,50,8,0,24,46,102,115,45,99,99,45,98,97,110,110,101,114,52,95,99,111,109,112,111,110,101,110,116,8,0,23,46,102,115,45,99,99,45,98,97,110,110,101,114,95,99,111,109,112,111,110,101,110,116,8,0,16,46,102,115,45,99,99,45,99,111,109,112,111,110,101,110,116,8,0,13,46,102,115,45,99,99,45,99,111,111,107,105,101,8,0,20,46,102,115,45,99,99,45,99,111,111,107,105,101,45,115,121,109,98,111,108,8,0,14,46,102,115,45,99,111,111,107,105,101,45,98,97,114,8,0,21,46,102,116,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,12,46,102,116,95,95,99,111,111,107,105,101,115,8,0,18,46,102,116,99,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,18,46,102,116,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,102,117,99,107,105,110,103,45,101,117,45,99,111,111,107,105,101,115,8,0,17,46,102,117,108,108,119,105,100,116,104,46,99,111,111,107,105,101,8,0,12,46,102,117,110,99,45,99,111,111,107,105,101,8,0,19,46,102,117,115,105,111,110,45,112,114,105,118,97,99,121,45,98,97,114,8,0,18,46,102,117,116,117,114,101,45,99,111,111,107,105,101,45,98,97,114,8,0,51,46,102,119,45,100,105,97,108,111,103,91,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,116,101,110,116,34,93,8,0,10,46,102,119,95,99,111,111,107,105,101,8,0,19,46,102,119,111,114,107,115,95,99,111,110,115,101,110,116,95,98,97,114,8,0,24,46,102,119,111,114,107,115,95,99,111,110,115,101,110,116,95,98,97,114,95,105,110,105,116,8,0,21,46,102,119,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,17,46,102,120,115,95,97,108,101,114,116,67,111,111,107,105,101,115,8,0,22,46,102,120,120,108,45,99,111,111,107,105,101,45,109,97,105,110,109,111,100,97,108,8,0,15,46,102,122,45,117,115,101,45,99,111,111,107,105,101,115,8,0,15,46,103,45,97,108,101,114,116,45,99,111,111,107,105,101,8,0,25,46,103,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,98,97,110,110,101,114,8,0,9,46,103,45,99,111,111,107,105,101,8,0,13,46,103,45,99,111,111,107,105,101,45,98,97,114,8,0,15,46,103,45,99,111,111,107,105,101,78,111,116,105,99,101,8,0,12,46,103,45,99,111,111,107,105,101,98,97,114,8,0,10,46,103,45,99,111,111,107,105,101,115,8,0,31,46,103,97,45,103,111,111,103,108,101,45,97,110,97,108,121,116,105,99,115,45,112,114,111,45,111,112,116,111,117,116,8,0,16,46,103,97,45,117,105,45,99,111,111,107,105,101,98,97,114,8,0,16,46,103,97,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,13,46,103,97,105,99,111,77,101,115,115,97,103,101,8,0,21,46,103,97,111,111,112,91,100,97,116,97,45,103,97,111,111,112,95,117,97,93,8,0,18,46,103,98,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,11,46,103,98,45,99,111,111,107,105,101,115,8,0,19,46,103,98,45,103,110,98,95,95,110,111,116,105,99,101,45,98,97,114,8,0,14,46,103,98,105,45,99,111,111,107,105,101,98,97,114,8,0,15,46,103,98,112,45,99,111,111,107,105,101,105,110,102,111,8,0,22,46,103,99,95,109,101,115,115,97,103,101,95,98,97,114,95,98,111,116,116,111,109,8,0,12,46,103,99,99,45,99,111,111,107,105,101,115,8,0,15,46,103,99,112,114,105,118,97,99,121,45,104,105,110,116,8,0,27,46,103,99,117,115,101,115,99,111,111,107,105,101,115,95,98,97,110,110,101,114,95,98,108,111,99,107,8,0,14,46,103,100,45,99,111,111,107,105,101,45,98,97,114,8,0,12,46,103,100,98,114,95,98,97,110,110,101,114,8,0,20,46,103,100,98,114,95,98,97,110,110,101,114,95,119,114,97,112,112,101,114,8,0,18,46,103,100,108,45,99,111,111,107,105,101,45,100,105,97,108,111,103,8,0,27,46,103,100,108,114,45,99,111,114,101,45,112,114,105,118,97,99,121,45,98,111,120,45,119,114,97,112,8,0,9,46,103,100,110,45,119,114,97,112,8,0,17,46,103,100,110,45,119,114,97,112,45,100,101,115,107,116,111,112,8,0,16,46,103,100,110,45,119,114,97,112,45,109,111,98,105,108,101,8,0,18,46,103,100,112,95,99,111,111,107,105,101,95,119,105,100,103,101,116,8,0,12,46,103,100,112,114,45,45,112,111,112,117,112,8,0,11,46,103,100,112,114,45,80,111,112,117,112,8,0,20,46,103,100,112,114,45,97,100,118,105,99,101,45,100,101,115,107,116,111,112,8,0,11,46,103,100,112,114,45,97,103,114,101,101,8,0,19,46,103,100,112,114,45,97,103,114,101,101,109,101,110,116,45,98,111,120,8,0,11,46,103,100,112,114,45,97,108,101,114,116,8,0,15,46,103,100,112,114,45,97,108,101,114,116,45,98,97,114,8,0,18,46,103,100,112,114,45,97,108,101,114,116,45,98,111,116,116,111,109,8,0,23,46,103,100,112,114,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,10,46,103,100,112,114,45,97,114,101,97,8,0,15,46,103,100,112,114,45,97,115,107,45,109,111,100,97,108,8,0,12,46,103,100,112,114,45,98,97,110,110,101,114,8,0,21,46,103,100,112,114,45,98,97,110,110,101,114,45,45,115,108,105,100,101,117,112,8,0,22,46,103,100,112,114,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,28,46,103,100,112,114,45,98,97,110,110,101,114,45,99,111,110,116,101,110,116,45,119,114,97,112,112,101,114,8,0,22,46,103,100,112,114,45,98,97,110,110,101,114,45,112,114,111,99,101,115,115,101,100,8,0,20,46,103,100,112,114,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,9,46,103,100,112,114,45,98,97,114,8,0,17,46,103,100,112,114,45,98,97,114,45,119,114,97,112,112,101,114,8,0,8,46,103,100,112,114,45,98,103,8,0,9,46,103,100,112,114,45,98,108,107,8,0,11,46,103,100,112,114,45,98,108,111,99,107,8,0,19,46,103,100,112,114,45,98,108,111,99,107,45,112,114,105,118,97,99,121,8,0,16,46,103,100,112,114,45,98,108,111,99,107,45,119,114,97,112,8,0,19,46,103,100,112,114,45,98,111,116,116,111,109,45,98,97,110,110,101,114,8,0,9,46,103,100,112,114,45,98,111,120,8,0,18,46,103,100,112,114,45,99,97,114,100,45,119,114,97,112,112,101,114,8,0,24,46,103,100,112,114,45,99,111,109,112,108,105,97,110,99,101,45,119,114,97,112,112,101,114,8,0,22,46,103,100,112,114,45,99,111,109,112,111,110,101,110,116,45,104,111,108,100,101,114,8,0,18,46,103,100,112,114,45,99,111,110,102,105,114,109,97,116,105,111,110,8,0,13,46,103,100,112,114,45,99,111,110,115,101,110,116,8,0,21,46,103,100,112,114,45,99,111,110,115,101,110,116,45,45,104,105,100,100,101,110,8,0,22,46,103,100,112,114,45,99,111,110,115,101,110,116,45,98,97,99,107,100,114,111,112,8,0,20,46,103,100,112,114,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,17,46,103,100,112,114,45,99,111,110,115,101,110,116,45,98,97,114,8,0,21,46,103,100,112,114,45,99,111,110,115,101,110,116,45,98,97,114,45,98,111,120,8,0,23,46,103,100,112,114,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,29,46,103,100,112,114,45,99,111,110,115,101,110,116,45,101,108,101,109,101,110,116,45,119,114,97,112,112,101,114,8,0,33,46,103,100,112,114,45,99,111,110,115,101,110,116,45,103,117,97,114,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,103,100,112,114,45,99,111,110,115,101,110,116,45,112,97,110,101,108,8,0,13,46,103,100,112,114,45,99,111,110,116,101,110,116,8,0,25,46,103,100,112,114,45,99,111,110,116,101,110,116,95,98,108,107,45,105,110,100,101,112,116,104,8,0,23,46,103,100,112,114,45,99,111,111,107,105,101,45,97,108,101,114,116,45,119,114,97,112,8,0,19,46,103,100,112,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,27,46,103,100,112,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,16,46,103,100,112,114,45,99,111,111,107,105,101,45,98,97,114,8,0,23,46,103,100,112,114,45,99,111,111,107,105,101,45,98,97,114,45,98,111,116,116,111,109,8,0,16,46,103,100,112,114,45,99,111,111,107,105,101,45,98,111,120,8,0,20,46,103,100,112,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,27,46,103,100,112,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,23,46,103,100,112,114,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,23,46,103,100,112,114,45,99,111,111,107,105,101,45,102,105,110,115,119,101,101,116,45,49,8,0,18,46,103,100,112,114,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,26,46,103,100,112,114,45,99,111,111,107,105,101,45,108,97,121,101,114,45,45,97,99,116,105,118,101,8,0,20,46,103,100,112,114,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,18,46,103,100,112,114,45,99,111,111,107,105,101,45,109,111,100,97,108,8,0,19,46,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,26,46,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,102,105,108,116,101,114,8,0,25,46,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,109,111,100,97,108,8,0,19,46,103,100,112,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,18,46,103,100,112,114,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,17,46,103,100,112,114,45,99,111,111,107,105,101,45,119,114,97,112,8,0,20,46,103,100,112,114,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,18,46,103,100,112,114,45,99,111,111,107,105,101,78,111,116,105,99,101,8,0,20,46,103,100,112,114,45,99,111,111,107,105,101,95,109,101,115,115,97,103,101,8,0,18,46,103,100,112,114,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,13,46,103,100,112,114,45,99,111,111,107,105,101,115,8,0,18,46,103,100,112,114,45,99,111,111,107,105,101,115,45,104,105,110,116,8,0,18,46,103,100,112,114,45,99,111,111,107,105,101,115,45,108,105,110,101,8,0,25,46,103,100,112,114,45,99,111,111,107,105,101,115,45,119,101,108,99,111,109,101,45,98,111,120,8,0,12,46,103,100,112,114,45,100,105,97,108,111,103,8,0,20,46,103,100,112,114,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,8,0,16,46,103,100,112,114,45,100,105,115,99,108,97,105,109,101,114,8,0,25,46,103,100,112,114,45,100,105,115,99,108,97,105,109,101,114,95,95,111,118,101,114,108,97,121,8,0,8,46,103,100,112,114,45,101,117,8,0,18,46,103,100,112,114,45,102,108,111,97,116,45,98,97,110,110,101,114,8,0,12,46,103,100,112,114,45,102,111,111,116,101,114,8,0,30,46,103,100,112,114,45,102,111,111,116,101,114,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,23,46,103,100,112,114,45,102,117,108,108,45,112,97,103,101,45,119,114,97,112,112,101,114,8,0,14,46,103,100,112,114,45,104,101,97,100,98,97,110,100,8,0,12,46,103,100,112,114,45,104,101,97,100,101,114,8,0,19,46,103,100,112,114,45,104,101,97,100,101,114,87,114,97,112,112,101,114,8,0,14,46,103,100,112,114,45,104,101,108,108,111,98,97,114,8,0,10,46,103,100,112,114,45,105,110,102,111,8,0,14,46,103,100,112,114,45,105,110,102,111,45,98,97,114,8,0,10,46,103,100,112,114,45,109,97,115,107,8,0,13,46,103,100,112,114,45,109,101,115,115,97,103,101,8,0,20,46,103,100,112,114,45,109,101,115,115,97,103,101,45,98,97,110,110,101,114,8,0,21,46,103,100,112,114,45,109,101,115,115,101,110,103,101,114,45,109,111,100,97,108,8,0,17,46,103,100,112,114,45,109,111,100,97,108,45,98,108,111,99,107,8,0,18,46,103,100,112,114,45,109,111,100,97,108,45,100,105,97,108,111,103,8,0,18,46,103,100,112,114,45,109,111,100,97,108,45,110,111,116,105,102,121,8,0,19,46,103,100,112,114,45,109,111,100,97,108,45,111,118,101,114,108,97,121,8,0,19,46,103,100,112,114,45,109,111,100,97,108,45,119,114,97,112,112,101,114,8,0,9,46,103,100,112,114,45,109,115,103,8,0,12,46,103,100,112,114,45,110,111,116,105,99,101,8,0,22,46,103,100,112,114,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,29,46,103,100,112,114,45,110,111,116,105,99,101,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,8,0,18,46,103,100,112,114,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,25,46,103,100,112,114,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,8,0,26,46,103,100,112,114,45,111,110,98,111,97,114,100,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,19,46,103,100,112,114,45,111,112,116,45,105,110,45,119,105,100,103,101,116,8,0,16,46,103,100,112,114,45,111,112,116,105,110,45,118,105,101,119,8,0,11,46,103,100,112,114,45,111,117,116,101,114,8,0,13,46,103,100,112,114,45,111,118,101,114,108,97,121,8,0,22,46,103,100,112,114,45,111,118,101,114,108,97,121,45,45,105,110,105,116,105,97,108,8,0,20,46,103,100,112,114,45,111,118,101,114,108,97,121,45,45,118,105,100,101,111,8,0,23,46,103,100,112,114,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,8,0,11,46,103,100,112,114,45,112,97,110,101,108,8,0,18,46,103,100,112,114,45,112,110,45,99,111,110,116,97,105,110,101,114,8,0,16,46,103,100,112,114,45,112,111,108,105,99,121,45,98,97,114,8,0,20,46,103,100,112,114,45,112,111,108,105,99,121,46,116,111,97,115,116,101,114,8,0,14,46,103,100,112,114,45,112,111,112,45,111,118,101,114,8,0,11,46,103,100,112,114,45,112,111,112,105,110,8,0,11,46,103,100,112,114,45,112,111,112,117,112,8,0,23,46,103,100,112,114,45,112,111,112,117,112,45,109,111,100,97,108,45,99,108,97,115,115,8,0,20,46,103,100,112,114,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,17,46,103,100,112,114,45,112,114,105,118,97,99,121,45,98,97,114,8,0,20,46,103,100,112,114,45,112,114,105,118,97,99,121,45,110,111,116,105,99,101,8,0,25,46,103,100,112,114,45,112,114,105,118,97,99,121,45,112,114,101,102,101,114,101,110,99,101,115,8,0,12,46,103,100,112,114,45,112,114,111,109,112,116,8,0,12,46,103,100,112,114,45,114,101,118,101,97,108,8,0,9,46,103,100,112,114,45,114,111,119,8,0,13,46,103,100,112,114,45,115,101,99,116,105,111,110,8,0,17,46,103,100,112,114,45,115,101,116,116,105,110,103,115,45,115,109,8,0,17,46,103,100,112,114,45,115,116,97,116,117,115,45,104,111,108,100,8,0,22,46,103,100,112,114,45,115,116,105,99,107,121,45,99,111,110,116,97,105,110,101,114,8,0,19,46,103,100,112,114,45,115,116,105,99,107,121,45,102,111,111,116,101,114,8,0,20,46,103,100,112,114,45,115,116,105,99,107,121,95,109,101,115,115,97,103,101,8,0,15,46,103,100,112,114,45,115,116,105,99,107,121,98,97,114,8,0,13,46,103,100,112,114,45,115,117,112,112,111,114,116,8,0,9,46,103,100,112,114,45,116,97,98,8,0,18,46,103,100,112,114,45,116,101,114,109,115,45,98,97,110,110,101,114,8,0,17,46,103,100,112,114,45,116,101,114,109,115,45,112,111,112,117,112,8,0,16,46,103,100,112,114,45,116,101,120,116,45,97,108,105,103,110,8,0,13,46,103,100,112,114,45,119,97,114,110,105,110,103,8,0,22,46,103,100,112,114,45,119,97,114,110,105,110,103,45,115,108,105,100,101,45,117,112,8,0,10,46,103,100,112,114,45,119,114,97,112,8,0,12,46,103,100,112,114,45,119,114,97,112,101,114,8,0,13,46,103,100,112,114,46,99,111,110,115,101,110,116,8,0,17,46,103,100,112,114,46,112,97,103,101,45,119,105,110,100,111,119,8,0,14,46,103,100,112,114,66,97,99,107,103,111,117,110,100,8,0,9,46,103,100,112,114,66,97,108,107,8,0,11,46,103,100,112,114,66,97,110,110,101,114,8,0,18,46,103,100,112,114,66,97,110,110,101,114,87,114,97,112,112,101,114,8,0,20,46,103,100,112,114,66,97,110,110,101,114,95,95,111,118,101,114,108,97,121,8,0,10,46,103,100,112,114,66,108,111,99,107,8,0,9,46,103,100,112,114,66,110,110,114,8,0,17,46,103,100,112,114,66,111,120,67,111,110,116,97,105,110,101,114,8,0,14,46,103,100,112,114,67,111,110,116,97,105,110,101,114,8,0,21,46,103,100,112,114,67,111,110,116,97,105,110,101,114,87,114,97,112,112,101,114,8,0,21,46,103,100,112,114,67,111,111,107,105,101,65,108,101,114,116,80,111,112,117,112,8,0,27,46,103,100,112,114,67,111,111,107,105,101,66,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,8,0,14,46,103,100,112,114,67,111,111,107,105,101,76,97,119,8,0,18,46,103,100,112,114,67,111,111,107,105,101,87,114,97,112,112,101,114,8,0,9,46,103,100,112,114,70,111,114,109,8,0,22,46,103,100,112,114,76,101,103,97,108,78,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,103,100,112,114,77,97,110,97,103,101,114,77,101,115,115,97,103,101,8,0,12,46,103,100,112,114,77,101,115,115,97,103,101,8,0,11,46,103,100,112,114,78,111,116,105,99,101,8,0,10,46,103,100,112,114,80,111,112,117,112,8,0,22,46,103,100,112,114,91,100,97,116,97,45,103,100,112,114,45,112,111,112,117,112,93,8,0,8,46,103,100,112,114,95,95,65,8,0,13,46,103,100,112,114,95,95,98,97,110,110,101,114,8,0,16,46,103,100,112,114,95,95,99,111,110,116,97,105,110,101,114,8,0,13,46,103,100,112,114,95,95,99,111,111,107,105,101,8,0,21,46,103,100,112,114,95,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,8,0,14,46,103,100,112,114,95,95,111,118,101,114,108,97,121,8,0,12,46,103,100,112,114,95,95,112,111,112,117,112,8,0,14,46,103,100,112,114,95,95,119,114,97,112,112,101,114,8,0,19,46,103,100,112,114,95,97,99,99,101,112,116,95,99,111,111,107,105,101,8,0,13,46,103,100,112,114,95,97,112,112,114,111,118,101,8,0,12,46,103,100,112,114,95,98,97,110,110,101,114,8,0,16,46,103,100,112,114,95,98,97,110,110,101,114,95,116,111,112,8,0,9,46,103,100,112,114,95,98,97,114,8,0,10,46,103,100,112,114,95,98,97,115,101,8,0,15,46,103,100,112,114,95,99,110,45,98,111,116,116,111,109,8,0,16,46,103,100,112,114,95,99,111,109,112,108,105,97,110,99,101,8,0,20,46,103,100,112,114,95,99,111,110,115,101,110,116,95,100,105,97,108,111,103,8,0,19,46,103,100,112,114,95,99,111,110,115,101,110,116,95,112,111,112,117,112,8,0,12,46,103,100,112,114,95,99,111,111,107,105,101,8,0,22,46,103,100,112,114,95,99,111,111,107,105,101,95,97,108,101,114,116,95,98,111,120,8,0,19,46,103,100,112,114,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,16,46,103,100,112,114,95,99,111,111,107,105,101,95,98,97,114,8,0,21,46,103,100,112,114,95,99,111,111,107,105,101,95,98,97,114,95,99,111,110,116,8,0,19,46,103,100,112,114,95,99,111,111,107,105,101,95,110,111,116,105,99,101,8,0,15,46,103,100,112,114,95,99,111,111,107,105,101,98,97,114,8,0,28,46,103,100,112,114,95,99,111,111,107,105,101,115,95,98,97,110,110,101,114,95,119,114,97,112,112,101,114,8,0,17,46,103,100,112,114,95,100,105,115,99,112,108,97,105,109,101,114,8,0,9,46,103,100,112,114,95,100,105,118,8,0,34,46,103,100,112,114,95,103,100,112,114,45,99,111,109,112,111,115,101,114,45,112,97,110,101,108,95,95,116,111,111,108,98,97,114,8,0,9,46,103,100,112,114,95,104,100,114,8,0,10,46,103,100,112,114,95,104,111,111,107,8,0,28,46,103,100,112,114,95,105,110,102,111,98,97,114,95,112,111,115,116,105,111,110,95,98,111,116,116,111,109,8,0,8,46,103,100,112,114,95,105,112,8,0,10,46,103,100,112,114,95,109,97,105,110,8,0,9,46,103,100,112,114,95,109,115,103,8,0,12,46,103,100,112,114,95,109,115,103,98,111,120,8,0,10,46,103,100,112,114,95,110,111,116,101,8,0,22,46,103,100,112,114,95,110,111,116,105,99,101,95,99,111,110,116,97,105,110,101,114,8,0,13,46,103,100,112,114,95,111,118,101,114,108,97,121,8,0,11,46,103,100,112,114,95,112,111,112,117,112,8,0,16,46,103,100,112,114,95,112,111,112,117,112,95,119,114,97,112,8,0,14,46,103,100,112,114,95,114,101,100,101,115,105,103,110,8,0,21,46,103,100,112,114,95,116,104,101,109,101,95,97,110,111,110,121,109,111,117,115,8,0,8,46,103,100,112,114,95,118,50,8,0,13,46,103,100,112,114,95,119,114,97,112,112,101,114,8,0,8,46,103,100,112,114,98,97,114,8,0,8,46,103,100,112,114,98,111,120,8,0,25,46,103,100,112,114,98,111,120,95,95,119,114,97,112,112,101,114,45,45,115,105,109,112,108,101,8,0,13,46,103,100,112,114,98,111,120,99,111,108,111,114,8,0,11,46,103,100,112,114,99,111,111,107,105,101,8,0,17,46,103,100,112,114,99,111,111,107,105,101,45,108,97,121,101,114,8,0,16,46,103,100,112,114,99,111,111,107,105,101,45,109,97,115,107,8,0,19,46,103,100,112,114,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,19,46,103,100,112,114,99,111,111,107,105,101,95,98,108,111,99,107,101,114,8,0,26,46,103,100,112,114,99,111,111,107,105,101,115,45,109,111,100,97,108,45,115,101,99,116,105,111,110,8,0,26,46,103,100,112,114,99,111,111,107,105,101,115,45,109,111,100,97,108,45,119,114,97,112,112,101,114,8,0,19,46,103,100,112,114,99,112,45,99,111,111,107,105,101,115,45,98,97,114,8,0,9,46,103,100,112,114,102,97,100,101,8,0,11,46,103,100,112,114,102,111,111,116,101,114,8,0,10,46,103,100,112,114,109,111,100,97,108,8,0,19,46,103,100,112,114,109,111,100,97,108,45,98,97,99,107,100,114,111,112,8,0,10,46,103,100,112,114,112,111,112,117,112,8,0,8,46,103,100,112,114,114,104,115,8,0,29,46,103,100,112,114,115,117,105,116,101,45,99,111,111,107,105,101,45,98,97,114,45,100,105,115,112,108,97,121,8,0,20,46,103,100,114,112,45,98,97,110,110,101,114,45,99,111,110,116,101,110,116,8,0,27,46,103,100,114,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,19,46,103,100,114,112,45,112,111,112,117,112,45,99,111,110,116,101,110,116,8,0,20,46,103,100,114,112,45,119,114,97,112,46,103,100,114,112,45,115,104,111,119,8,0,14,46,103,100,114,112,95,95,111,118,101,114,108,97,121,8,0,11,46,103,100,115,45,99,111,111,107,105,101,8,0,15,46,103,101,98,97,101,99,107,45,110,111,116,105,99,101,8,0,20,46,103,101,99,107,111,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,29,46,103,101,105,115,116,108,105,99,104,100,101,50,52,120,45,99,111,111,107,105,101,45,111,112,116,45,105,110,8,0,20,46,103,101,109,45,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,21,46,103,101,110,101,114,97,108,45,98,108,111,99,107,45,99,111,111,107,105,101,8,0,28,46,103,101,110,101,114,97,108,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,35,46,103,101,110,101,114,97,108,95,100,97,116,97,95,112,114,111,116,101,99,116,105,111,110,95,114,101,103,117,108,97,116,105,111,110,8,0,28,46,103,101,110,101,114,105,99,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,26,46,103,101,116,116,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,11,46,103,102,45,99,111,111,107,105,101,115,8,0,21,46,103,102,108,45,119,105,100,103,101,116,45,103,100,112,114,45,119,114,97,112,8,0,16,46,103,104,111,115,116,45,99,111,111,107,105,101,98,97,114,8,0,32,46,103,104,111,115,116,101,114,121,45,105,109,112,108,105,101,100,45,99,111,110,115,101,110,116,45,110,111,116,105,99,101,8,0,17,46,103,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,12,46,103,105,103,121,97,78,111,116,105,102,121,8,0,22,46,103,105,110,103,101,114,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,17,46,103,105,122,108,105,108,105,107,45,99,111,111,107,105,101,115,8,0,17,46,103,106,45,99,111,111,107,105,101,45,112,114,111,109,112,116,8,0,17,46,103,107,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,25,46,103,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,16,46,103,108,67,111,111,107,105,101,77,101,115,115,97,103,101,8,0,14,46,103,108,97,116,67,111,111,107,105,101,66,97,114,8,0,28,46,103,108,111,98,97,108,45,97,108,101,114,116,45,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,14,46,103,108,111,98,97,108,45,99,111,111,107,105,101,8,0,21,46,103,108,111,98,97,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,103,108,111,98,97,108,45,99,111,111,107,105,101,45,98,97,114,8,0,22,46,103,108,111,98,97,108,45,99,111,111,107,105,101,45,99,117,114,116,97,105,110,8,0,22,46,103,108,111,98,97,108,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,18,46,103,108,111,98,97,108,45,99,111,111,107,105,101,45,109,115,103,8,0,21,46,103,108,111,98,97,108,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,18,46,103,108,111,98,97,108,45,99,111,111,107,105,101,45,116,105,112,8,0,19,46,103,108,111,98,97,108,45,99,111,111,107,105,101,112,111,112,117,112,8,0,15,46,103,108,111,98,97,108,45,99,111,111,107,105,101,115,8,0,22,46,103,108,111,98,97,108,45,103,100,112,114,45,99,111,110,116,97,105,110,101,114,8,0,18,46,103,108,111,98,97,108,45,103,100,112,114,45,112,111,112,117,112,8,0,19,46,103,108,111,98,97,108,45,108,101,118,101,108,45,97,108,101,114,116,8,0,22,46,103,108,111,98,97,108,45,109,101,115,115,97,103,101,95,99,111,111,107,105,101,8,0,17,46,103,108,111,98,97,108,80,114,105,118,97,99,121,66,97,114,8,0,28,46,103,108,111,98,97,108,99,111,111,107,105,101,112,111,108,105,99,121,99,111,110,116,97,105,110,101,114,8,0,20,46,103,108,111,119,67,111,111,107,105,101,115,95,95,98,97,110,110,101,114,8,0,18,46,103,108,111,119,67,111,111,107,105,101,115,95,95,115,104,111,119,8,0,29,46,103,108,117,101,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,8,0,18,46,103,109,116,95,99,111,110,115,101,110,116,95,112,111,112,117,112,8,0,9,46,103,109,116,95,103,100,112,114,8,0,23,46,103,109,116,95,103,100,112,114,95,98,117,116,116,111,110,95,99,111,110,102,105,103,8,0,16,46,103,110,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,19,46,103,110,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,18,46,103,110,111,45,99,111,111,107,105,101,115,45,112,97,110,101,108,8,0,28,46,103,111,45,109,100,108,45,99,111,111,107,105,101,115,45,100,114,99,116,45,119,97,114,110,105,110,103,8,0,26,46,103,111,111,103,108,101,45,100,105,115,99,108,97,105,109,101,114,45,119,114,97,112,112,101,114,8,0,21,46,103,111,111,103,108,101,95,108,105,110,101,95,116,114,97,99,107,105,110,103,8,0,20,46,103,111,118,117,107,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,103,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,21,46,103,112,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,14,46,103,112,45,103,100,112,114,95,95,98,101,108,116,8,0,18,46,103,112,45,109,111,100,97,108,95,95,99,111,111,107,105,101,115,8,0,25,46,103,112,45,112,108,117,103,105,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,15,46,103,112,100,114,45,97,103,114,101,101,109,101,110,116,8,0,13,46,103,112,100,114,45,119,114,97,112,112,101,114,8,0,20,46,103,112,100,114,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,8,0,20,46,103,112,109,45,99,111,111,107,105,101,45,97,99,99,101,112,116,101,100,8,0,30,46,103,112,109,45,99,111,111,107,105,101,45,97,99,99,101,112,116,101,100,45,99,111,110,116,97,105,110,101,114,8,0,19,46,103,112,110,45,103,100,112,114,45,99,111,110,116,97,105,110,101,114,8,0,11,46,103,114,45,99,111,110,115,101,110,116,8,0,18,46,103,114,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,30,46,103,114,97,118,105,116,111,67,77,80,45,98,97,99,107,103,114,111,117,110,100,45,111,118,101,114,108,97,121,8,0,25,46,103,114,97,121,45,119,105,116,104,45,98,103,45,105,109,103,45,99,111,111,107,105,101,115,8,0,15,46,103,114,100,112,45,99,111,110,116,97,105,110,101,114,8,0,11,46,103,114,100,112,45,112,111,112,117,112,8,0,17,46,103,114,101,97,116,45,101,117,45,99,111,111,107,105,101,115,8,0,17,46,103,114,101,99,97,112,116,99,104,97,45,98,97,100,103,101,8,0,32,46,103,114,111,117,112,45,104,101,97,100,101,114,45,112,108,97,99,101,104,111,108,100,101,114,45,99,111,111,107,105,101,8,0,29,46,103,114,112,45,104,101,97,100,101,114,95,95,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,8,0,13,46,103,114,115,78,111,116,105,102,121,66,97,114,8,0,11,46,103,114,116,45,99,111,111,107,105,101,8,0,18,46,103,114,116,45,99,111,111,107,105,101,45,97,99,116,105,118,101,8,0,21,46,103,114,118,101,45,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,8,0,19,46,103,115,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,8,0,24,46,103,115,107,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,111,117,116,101,114,8,0,14,46,103,116,45,99,111,111,107,105,101,45,98,97,114,8,0,19,46,103,116,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,17,46,103,116,45,117,105,45,99,111,111,107,105,101,45,98,97,114,8,0,23,46,103,116,101,99,45,112,111,112,117,112,45,100,97,116,101,110,115,99,104,117,116,122,8,0,14,46,103,117,100,95,99,111,111,107,105,101,95,112,108,8,0,21,46,103,117,101,115,116,121,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,7,46,103,117,106,45,99,98,8,0,18,46,103,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,10,46,104,45,99,111,111,107,105,101,115,8,0,19,46,104,76,105,98,67,111,111,107,105,101,69,120,112,97,110,100,101,100,8,0,17,46,104,97,108,45,99,111,111,107,105,101,110,111,116,105,99,101,8,0,25,46,104,97,110,100,108,101,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,29,46,104,97,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,58,110,111,116,40,98,111,100,121,41,8,0,18,46,104,98,99,111,109,45,99,111,111,107,105,101,112,97,110,101,108,8,0,22,46,104,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,8,0,21,46,104,99,45,112,114,105,118,97,99,121,100,105,115,99,108,97,105,109,101,114,8,0,19,46,104,100,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,24,46,104,100,108,105,110,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,22,46,104,101,97,100,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,13,46,104,101,97,100,45,99,111,111,107,105,101,115,8,0,14,46,104,101,97,100,67,111,111,107,105,101,66,97,114,8,0,16,46,104,101,97,100,98,97,110,100,45,99,111,111,107,105,101,8,0,16,46,104,101,97,100,101,114,45,45,99,111,111,107,105,101,115,8,0,27,46,104,101,97,100,101,114,45,45,119,111,114,108,100,119,105,100,101,95,95,99,111,111,107,105,101,115,8,0,19,46,104,101,97,100,101,114,45,98,97,114,45,99,111,111,107,105,101,115,8,0,12,46,104,101,97,100,101,114,45,99,110,105,108,8,0,16,46,104,101,97,100,101,114,45,99,110,105,108,45,98,97,114,8,0,14,46,104,101,97,100,101,114,45,99,111,111,107,105,101,8,0,21,46,104,101,97,100,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,104,101,97,100,101,114,45,99,111,111,107,105,101,45,98,97,114,8,0,22,46,104,101,97,100,101,114,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,8,0,21,46,104,101,97,100,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,21,46,104,101,97,100,101,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,18,46,104,101,97,100,101,114,45,99,111,111,107,105,101,45,119,101,116,8,0,15,46,104,101,97,100,101,114,45,99,111,111,107,105,101,115,8,0,21,46,104,101,97,100,101,114,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,25,46,104,101,97,100,101,114,45,99,111,111,107,105,101,115,45,99,111,109,112,111,110,101,110,116,8,0,21,46,104,101,97,100,101,114,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,49,46,104,101,97,100,101,114,45,100,101,99,108,97,114,97,116,105,111,110,91,100,97,116,97,45,99,117,115,116,111,109,101,114,45,112,111,112,117,112,61,34,99,111,111,107,105,101,34,93,8,0,12,46,104,101,97,100,101,114,45,103,100,112,114,8,0,21,46,104,101,97,100,101,114,45,103,100,112,114,45,45,118,105,115,105,98,108,101,8,0,23,46,104,101,97,100,101,114,45,103,100,112,114,95,95,99,111,110,116,97,105,110,101,114,8,0,23,46,104,101,97,100,101,114,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,8,0,34,46,104,101,97,100,101,114,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,95,95,99,111,110,116,97,105,110,101,114,8,0,22,46,104,101,97,100,101,114,45,110,111,116,105,99,101,45,99,111,111,107,105,101,115,8,0,22,46,104,101,97,100,101,114,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,8,0,23,46,104,101,97,100,101,114,45,119,114,97,112,112,101,114,95,95,99,111,111,107,105,101,8,0,13,46,104,101,97,100,101,114,67,111,111,107,105,101,8,0,14,46,104,101,97,100,101,114,67,111,111,107,105,101,115,8,0,27,46,104,101,97,100,101,114,95,95,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,97,114,8,0,15,46,104,101,97,100,101,114,95,95,99,111,111,107,105,101,8,0,16,46,104,101,97,100,101,114,95,95,99,111,111,107,105,101,115,8,0,32,46,104,101,97,100,101,114,95,95,99,111,111,107,105,101,115,45,110,111,116,105,99,101,95,95,119,114,97,112,112,101,114,8,0,22,46,104,101,97,100,101,114,95,95,99,111,111,107,105,101,115,112,111,108,105,99,121,8,0,30,46,104,101,97,100,101,114,95,95,114,100,99,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,14,46,104,101,97,100,101,114,95,99,111,111,107,105,101,8,0,18,46,104,101,97,100,101,114,98,97,114,95,99,111,111,107,105,101,115,8,0,7,46,104,101,97,114,121,101,8,0,11,46,104,101,108,108,111,45,114,111,100,111,8,0,17,46,104,101,108,108,111,45,114,111,100,111,45,45,115,104,111,119,8,0,19,46,104,101,114,98,121,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,45,46,104,101,114,110,101,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,95,112,114,101,95,111,117,116,101,114,98,111,120,50,8,0,19,46,104,102,115,95,112,97,103,101,67,111,111,107,105,101,72,105,110,116,8,0,16,46,104,105,45,99,111,111,107,105,101,45,98,108,111,99,107,8,0,20,46,104,105,100,100,101,110,45,120,115,46,101,117,45,112,111,108,105,99,121,8,0,27,46,104,105,100,101,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,45,98,117,116,116,111,110,8,0,31,46,104,105,100,101,70,105,114,115,116,76,111,97,100,80,111,112,85,112,67,111,111,107,105,101,80,111,108,105,99,121,8,0,26,46,104,105,103,45,99,111,111,107,105,101,45,98,97,114,95,95,99,111,110,116,97,105,110,101,114,8,0,14,46,104,105,114,109,97,45,99,111,111,107,105,101,115,8,0,18,46,104,108,45,99,111,111,107,105,101,115,45,104,101,97,100,101,114,8,0,22,46,104,108,100,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,11,46,104,111,45,99,111,111,107,105,101,115,8,0,14,46,104,111,102,45,67,111,111,107,105,101,66,97,114,8,0,21,46,104,111,109,101,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,115,8,0,22,46,104,111,109,101,45,112,114,105,118,97,99,121,45,99,111,111,111,107,105,101,115,8,0,19,46,104,111,109,101,95,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,16,46,104,111,109,101,95,99,111,111,107,105,101,95,98,111,120,8,0,22,46,104,111,109,101,112,97,103,101,45,99,111,111,107,105,101,45,98,108,111,99,107,8,0,24,46,104,111,109,101,112,103,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,28,46,104,111,110,103,111,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,8,0,13,46,104,111,111,107,45,45,99,111,111,107,105,101,8,0,26,46,104,111,111,107,45,45,99,111,111,107,105,101,45,45,112,108,97,99,101,104,111,108,100,101,114,8,0,17,46,104,111,111,107,45,99,111,111,107,105,101,115,45,109,115,103,8,0,17,46,104,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,13,46,104,112,45,99,111,111,107,105,101,98,97,114,8,0,11,46,104,112,45,99,111,111,107,105,101,115,8,0,18,46,104,112,109,45,97,108,101,114,116,45,99,111,111,107,105,101,115,8,0,18,46,104,115,104,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,12,46,104,115,112,45,99,111,111,107,105,101,115,8,0,26,46,104,116,45,110,97,118,45,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,8,0,9,46,104,116,115,45,114,103,112,100,8,0,30,46,104,117,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,46,104,117,45,119,114,97,112,112,101,114,8,0,30,46,104,117,45,112,111,115,105,116,105,111,110,45,99,101,110,116,101,114,46,104,117,45,119,114,97,112,112,101,114,8,0,14,46,104,117,97,119,101,105,45,99,111,111,107,105,101,8,0,39,46,104,117,105,115,104,117,45,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,18,46,104,118,95,112,114,105,118,97,99,121,95,112,114,111,109,112,116,8,0,16,46,104,119,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,16,46,104,119,99,99,95,99,111,111,107,105,101,95,98,97,114,8,0,15,46,104,119,99,111,111,107,105,101,98,97,110,110,101,114,8,0,17,46,104,120,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,104,120,95,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,97,105,110,8,0,30,46,104,121,98,114,105,100,45,99,111,111,107,105,101,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,8,0,19,46,104,122,45,99,111,110,115,101,110,116,115,45,98,97,110,110,101,114,8,0,20,46,104,122,45,118,105,115,105,116,111,114,45,99,111,110,115,101,110,116,115,8,0,21,46,105,45,97,109,45,111,107,45,119,105,116,104,45,99,111,111,107,105,101,115,8,0,23,46,105,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,99,101,8,0,15,46,105,45,99,111,111,107,105,101,68,105,97,108,111,103,8,0,30,46,105,45,108,97,121,111,117,116,95,95,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,8,46,105,67,111,111,107,105,101,8,0,11,46,105,67,111,111,107,105,101,66,97,114,8,0,19,46,105,97,45,109,45,99,111,111,107,105,101,45,102,108,121,111,117,116,8,0,14,46,105,98,45,99,111,111,107,105,101,45,98,97,114,8,0,25,46,105,98,45,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,24,46,105,98,45,103,108,111,98,97,108,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,105,98,45,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,105,98,101,67,111,111,107,105,101,66,97,110,110,101,114,8,0,18,46,105,98,120,45,99,111,111,99,107,105,101,45,97,103,114,101,101,8,0,17,46,105,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,105,99,45,99,111,111,107,105,101,115,45,97,108,101,114,116,45,116,101,120,116,8,0,14,46,105,99,45,103,100,112,114,45,112,111,112,117,112,8,0,20,46,105,99,97,97,108,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,23,46,105,99,108,45,76,101,103,97,108,67,111,110,115,101,110,116,66,97,110,110,101,114,8,0,17,46,105,99,109,115,45,99,111,111,107,105,101,97,108,101,114,116,8,0,19,46,105,99,111,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,17,46,105,100,45,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,19,46,105,100,99,45,112,114,105,118,97,99,121,45,110,111,116,105,99,101,8,0,19,46,105,100,101,110,116,105,116,121,45,110,111,116,105,99,101,98,97,114,8,0,27,46,105,100,101,110,116,105,116,121,45,110,111,116,105,99,101,98,97,114,45,99,111,110,116,101,110,116,8,0,15,46,105,100,103,99,112,95,95,115,101,99,116,105,111,110,8,0,19,46,105,100,109,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,18,46,105,100,109,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,15,46,105,102,114,97,109,101,95,99,111,111,107,105,101,115,8,0,14,46,105,103,114,111,119,108,45,99,111,111,107,105,101,8,0,13,46,105,108,105,107,101,99,111,111,107,105,101,115,8,0,13,46,105,108,111,118,101,99,111,111,107,105,101,115,8,0,15,46,105,108,116,101,109,112,111,99,111,111,107,105,101,115,8,0,22,46,105,109,80,111,108,105,99,121,99,111,111,107,105,101,109,101,115,115,97,103,101,8,0,11,46,105,109,99,45,99,111,111,107,105,101,8,0,26,46,105,109,112,111,114,116,97,110,116,45,98,97,110,110,101,114,45,45,99,111,111,107,105,101,115,8,0,29,46,105,109,112,117,108,115,45,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,98,97,110,110,101,114,8,0,39,46,105,109,112,117,108,115,45,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,14,46,105,110,98,101,110,116,97,67,111,111,107,105,101,8,0,14,46,105,110,99,111,110,115,101,110,116,45,98,97,114,8,0,21,46,105,110,99,114,121,112,116,101,100,45,99,111,111,107,105,101,45,98,97,114,8,0,20,46,105,110,100,101,120,95,95,99,111,111,107,105,101,95,95,98,111,100,121,8,0,32,46,105,110,100,101,120,95,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,95,95,49,45,86,76,78,8,0,14,46,105,110,100,101,120,95,99,111,111,107,105,101,115,8,0,11,46,105,110,101,114,67,111,111,107,105,101,8,0,27,46,105,110,102,111,45,98,97,110,110,101,114,95,95,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,19,46,105,110,102,111,45,98,108,111,99,107,46,99,111,111,107,105,101,115,8,0,21,46,105,110,102,111,45,99,111,110,116,101,110,116,45,99,111,111,107,105,101,115,8,0,12,46,105,110,102,111,45,99,111,111,107,105,101,8,0,13,46,105,110,102,111,45,99,111,111,107,105,101,115,8,0,31,46,105,110,102,111,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,8,0,10,46,105,110,102,111,67,111,99,107,101,8,0,11,46,105,110,102,111,67,111,111,107,105,101,8,0,12,46,105,110,102,111,67,111,111,107,105,101,115,8,0,12,46,105,110,102,111,95,99,111,111,107,105,101,8,0,18,46,105,110,102,111,95,99,111,111,107,105,101,95,112,111,112,117,112,8,0,13,46,105,110,102,111,95,99,111,111,107,105,101,115,8,0,20,46,105,110,102,111,95,99,111,111,107,105,101,115,95,98,97,110,110,101,114,8,0,11,46,105,110,102,111,99,111,111,107,105,101,8,0,12,46,105,110,102,111,99,111,111,107,105,101,115,8,0,18,46,105,110,102,111,114,109,97,116,105,118,97,45,98,114,101,118,101,8,0,19,46,105,110,102,111,114,109,97,116,105,118,97,45,99,111,111,107,105,101,8,0,20,46,105,110,102,111,114,109,97,116,105,118,97,45,99,111,111,107,105,101,115,8,0,19,46,105,110,102,111,114,109,97,116,105,118,97,95,99,111,111,107,105,101,8,0,17,46,105,110,102,111,114,109,97,116,105,118,111,45,108,103,112,100,8,0,13,46,105,110,102,111,115,45,99,111,111,107,105,101,8,0,22,46,105,110,102,111,115,45,103,101,115,116,105,111,110,45,99,111,111,107,105,101,115,8,0,13,46,105,110,102,111,115,99,111,111,107,105,101,115,8,0,25,46,105,110,103,45,67,111,111,107,105,101,77,97,110,97,103,101,109,101,110,116,78,101,120,116,8,0,30,46,105,110,105,116,105,97,108,45,99,109,112,45,99,111,110,116,97,105,110,101,114,45,111,118,101,114,108,97,121,8,0,17,46,105,110,107,116,104,101,109,101,45,99,111,111,107,105,101,115,8,0,21,46,105,110,108,105,110,101,45,99,111,111,107,105,101,115,45,112,97,110,101,108,8,0,11,46,105,110,110,101,114,95,99,110,105,108,8,0,12,46,105,110,110,111,80,114,105,118,97,99,121,8,0,20,46,105,110,115,45,101,108,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,19,46,105,110,115,45,118,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,28,46,105,110,115,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,14,46,105,110,115,105,100,101,45,99,111,111,107,105,101,8,0,18,46,105,110,116,101,114,99,101,112,116,45,99,111,111,107,105,101,115,8,0,21,46,105,110,116,103,114,116,110,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,17,46,105,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,105,112,97,114,67,111,111,107,105,101,78,111,116,105,99,101,8,0,16,46,105,112,97,114,115,121,115,46,99,111,111,107,105,101,115,8,0,19,46,105,112,120,95,99,111,111,107,105,101,95,111,118,101,114,108,97,121,8,0,14,46,105,114,95,99,111,111,107,105,101,104,105,110,116,8,0,17,46,105,115,45,97,99,116,105,118,101,46,99,111,111,107,105,101,8,0,18,46,105,115,45,97,99,116,105,118,101,46,99,111,111,107,105,101,115,8,0,27,46,105,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,58,110,111,116,40,98,111,100,121,41,8,0,18,46,105,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,19,46,105,115,45,118,105,115,105,98,108,101,46,99,111,111,107,105,101,115,8,0,21,46,105,116,45,101,112,114,105,118,97,99,121,45,98,97,99,107,100,114,111,112,8,0,18,46,105,116,95,112,114,105,118,97,99,121,95,110,111,116,105,99,101,8,0,23,46,105,116,98,108,45,99,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,8,0,9,46,105,116,101,109,108,103,112,100,8,0,16,46,105,117,98,101,110,100,97,45,99,115,45,108,101,102,116,8,0,15,46,105,117,98,101,110,100,97,45,105,98,97,100,103,101,8,0,32,46,105,118,45,117,105,45,119,101,98,115,105,116,101,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,13,46,105,119,45,99,99,45,98,97,110,110,101,114,8,0,18,46,105,119,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,17,46,105,119,45,99,111,111,107,105,101,45,119,105,110,100,111,119,8,0,16,46,105,119,99,99,45,98,97,99,107,103,114,111,117,110,100,8,0,16,46,105,119,101,98,45,99,111,111,107,105,101,45,98,97,114,8,0,19,46,105,120,105,95,97,99,99,101,112,116,95,99,111,111,107,105,101,115,8,0,18,46,105,122,101,101,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,9,46,106,45,99,111,111,107,105,101,8,0,20,46,106,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,17,46,106,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,14,46,106,45,99,111,111,107,105,101,65,108,101,114,116,8,0,21,46,106,45,99,111,111,107,105,101,67,111,110,115,101,110,116,80,97,110,101,108,8,0,18,46,106,45,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,19,46,106,45,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,8,0,12,46,106,45,99,111,111,107,105,101,76,97,119,8,0,14,46,106,45,99,111,111,107,105,101,77,111,100,97,108,8,0,10,46,106,45,99,111,111,107,105,101,115,8,0,15,46,106,45,103,100,112,114,45,109,101,115,115,97,103,101,8,0,18,46,106,45,119,101,108,99,111,109,101,45,112,114,105,118,97,99,121,8,0,8,46,106,67,111,111,107,105,101,8,0,18,46,106,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,8,46,106,97,95,103,100,112,114,8,0,10,46,106,98,45,99,111,111,107,105,101,8,0,10,46,106,98,46,99,111,111,107,105,101,8,0,18,46,106,98,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,106,99,45,99,111,111,107,105,101,109,97,110,97,103,101,114,8,0,22,46,106,99,98,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,15,46,106,99,111,111,107,105,101,45,110,97,118,98,97,114,8,0,8,46,106,100,45,114,111,100,111,8,0,10,46,106,100,45,114,111,100,111,45,50,8,0,25,46,106,103,45,99,104,114,111,109,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,22,46,106,105,120,95,97,99,99,101,112,116,99,111,111,107,105,101,115,95,98,111,120,8,0,21,46,106,108,99,45,119,109,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,26,46,106,108,112,45,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,11,46,106,110,99,45,99,111,111,107,105,101,8,0,24,46,106,110,101,119,115,45,99,111,111,107,105,101,45,108,97,119,45,112,111,108,105,99,121,8,0,23,46,106,111,104,110,110,121,115,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,24,46,106,112,99,111,111,107,105,101,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,24,46,106,113,67,111,111,107,105,101,65,99,99,101,112,116,67,111,110,116,97,105,110,101,114,8,0,16,46,106,113,95,99,111,111,107,105,101,45,115,116,114,105,112,8,0,16,46,106,113,95,99,111,111,107,105,101,80,111,108,105,99,121,8,0,15,46,106,113,95,99,111,111,107,105,101,115,95,109,115,103,8,0,15,46,106,113,109,65,108,101,114,116,87,105,110,100,111,119,8,0,11,46,106,113,109,79,118,101,114,108,97,121,8,0,19,46,106,115,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,17,46,106,115,45,45,99,111,111,107,105,101,95,111,117,116,101,114,8,0,18,46,106,115,45,45,99,111,111,107,105,101,99,111,110,116,114,111,108,8,0,20,46,106,115,45,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,8,0,19,46,106,115,45,45,108,103,112,100,45,99,111,110,116,97,105,110,101,114,8,0,10,46,106,115,45,67,111,111,107,105,101,8,0,16,46,106,115,45,67,111,111,107,105,101,66,97,110,110,101,114,8,0,20,46,106,115,45,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,8,0,17,46,106,115,45,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,19,46,106,115,45,67,111,111,107,105,101,67,111,110,115,101,110,116,86,50,8,0,11,46,106,115,45,67,111,111,107,105,101,115,8,0,13,46,106,115,45,69,85,45,99,111,111,107,105,101,8,0,17,46,106,115,45,97,99,99,101,112,116,45,99,111,111,107,105,101,8,0,21,46,106,115,45,97,99,99,101,112,116,45,99,111,111,107,105,101,45,98,111,120,8,0,27,46,106,115,45,97,99,99,101,112,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,25,46,106,115,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,23,46,106,115,45,97,99,99,101,112,116,45,116,101,114,109,115,45,104,111,108,100,101,114,8,0,19,46,106,115,45,97,99,99,101,112,116,67,111,111,107,105,101,68,105,118,8,0,19,46,106,115,45,97,99,99,101,112,116,85,115,101,67,111,111,107,105,101,8,0,16,46,106,115,45,97,108,101,114,116,45,99,111,111,107,105,101,8,0,23,46,106,115,45,97,108,108,111,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,106,115,45,97,108,108,111,119,45,99,111,111,107,105,101,115,8,0,28,46,106,115,45,97,116,116,101,110,116,105,111,110,45,119,101,45,117,115,101,45,99,111,111,107,105,101,115,8,0,20,46,106,115,45,98,97,100,103,101,45,99,111,111,107,105,101,45,109,115,103,8,0,17,46,106,115,45,98,97,110,110,101,114,45,99,111,111,107,105,101,8,0,14,46,106,115,45,98,97,110,110,101,114,76,71,80,68,8,0,32,46,106,115,45,98,97,115,105,99,95,102,101,97,116,117,114,101,115,45,99,111,111,107,105,101,109,101,115,115,97,103,101,8,0,21,46,106,115,45,98,99,111,111,107,105,101,45,45,98,111,120,45,105,110,102,111,8,0,18,46,106,115,45,98,101,110,103,111,114,45,99,111,111,107,105,101,115,8,0,27,46,106,115,45,98,111,116,116,111,109,45,110,111,116,105,102,45,109,115,103,45,99,111,111,107,105,101,8,0,28,46,106,115,45,98,111,116,116,111,109,45,110,111,116,105,102,45,109,115,103,45,112,114,105,118,97,99,121,8,0,18,46,106,115,45,98,111,120,45,116,101,114,109,111,45,108,103,112,100,8,0,33,46,106,115,45,99,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,8,0,21,46,106,115,45,99,98,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,106,115,45,99,99,45,97,110,110,111,117,110,99,101,109,101,110,116,8,0,18,46,106,115,45,99,109,112,45,99,111,111,107,105,101,115,66,97,114,8,0,18,46,106,115,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,15,46,106,115,45,99,111,110,115,101,110,116,45,98,97,114,8,0,16,46,106,115,45,99,111,110,115,101,110,116,45,102,111,114,109,8,0,18,46,106,115,45,99,111,110,115,101,110,116,45,110,111,116,105,99,101,8,0,17,46,106,115,45,99,111,110,115,101,110,116,45,112,97,110,101,108,8,0,17,46,106,115,45,99,111,110,115,101,110,116,45,112,111,112,117,112,8,0,22,46,106,115,45,99,111,110,115,101,110,116,45,114,101,97,99,116,45,114,111,111,116,8,0,11,46,106,115,45,99,111,111,99,107,105,101,8,0,18,46,106,115,45,99,111,111,107,46,112,97,103,101,45,99,111,111,107,8,0,10,46,106,115,45,99,111,111,107,105,101,8,0,17,46,106,115,45,99,111,111,107,105,101,45,45,109,111,100,97,108,8,0,27,46,106,115,45,99,111,111,107,105,101,45,97,100,118,101,114,116,45,99,111,110,116,97,105,110,101,114,8,0,16,46,106,115,45,99,111,111,107,105,101,45,97,103,114,101,101,8,0,20,46,106,115,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,8,0,16,46,106,115,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,17,46,106,115,45,99,111,111,107,105,101,45,97,108,101,114,116,49,8,0,17,46,106,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,106,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,108,117,114,8,0,27,46,106,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,26,46,106,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,116,101,114,109,105,110,97,108,8,0,14,46,106,115,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,106,115,45,99,111,111,107,105,101,45,99,108,111,115,101,8,0,41,46,106,115,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,8,0,23,46,106,115,45,99,111,111,107,105,101,45,99,111,110,102,105,103,117,114,97,116,111,114,8,0,18,46,106,115,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,8,0,23,46,106,115,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,8,0,18,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,25,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,22,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,8,0,24,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,108,111,99,107,8,0,28,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,24,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,108,97,121,101,114,8,0,26,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,101,115,115,97,103,101,8,0,25,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,117,108,101,8,0,23,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,8,0,40,46,106,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,8,0,15,46,106,115,45,99,111,111,107,105,101,45,99,111,112,121,8,0,23,46,106,115,45,99,111,111,107,105,101,45,100,97,116,97,45,119,97,114,110,105,110,103,8,0,17,46,106,115,45,99,111,111,107,105,101,45,100,105,97,108,111,103,8,0,20,46,106,115,45,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,8,0,21,46,106,115,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,28,46,106,115,45,99,111,111,107,105,101,45,100,105,115,99,108,111,115,117,114,101,45,98,97,110,110,101,114,8,0,17,46,106,115,45,99,111,111,107,105,101,45,102,111,111,116,101,114,8,0,19,46,106,115,45,99,111,111,107,105,101,45,104,101,97,100,98,97,110,100,8,0,15,46,106,115,45,99,111,111,107,105,101,45,104,105,110,116,8,0,17,46,106,115,45,99,111,111,107,105,101,45,104,111,108,100,101,114,8,0,17,46,106,115,45,99,111,111,107,105,101,45,105,102,114,97,109,101,8,0,15,46,106,115,45,99,111,111,107,105,101,45,105,110,102,111,8,0,22,46,106,115,45,99,111,111,107,105,101,45,105,110,102,111,95,95,112,97,110,101,108,8,0,21,46,106,115,45,99,111,111,107,105,101,45,105,110,102,111,109,97,116,105,111,110,8,0,28,46,106,115,45,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,112,111,112,117,112,8,0,14,46,106,115,45,99,111,111,107,105,101,45,108,97,119,8,0,15,46,106,115,45,99,111,111,107,105,101,45,108,105,110,101,8,0,15,46,106,115,45,99,111,111,107,105,101,45,109,97,115,107,8,0,18,46,106,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,30,46,106,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,112,108,97,99,101,104,111,108,100,101,114,8,0,16,46,106,115,45,99,111,111,107,105,101,45,109,111,100,97,108,8,0,26,46,106,115,45,99,111,111,107,105,101,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,8,0,26,46,106,115,45,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,111,118,101,114,108,97,121,8,0,14,46,106,115,45,99,111,111,107,105,101,45,109,115,103,8,0,19,46,106,115,45,99,111,111,107,105,101,45,110,111,116,97,116,105,111,110,8,0,17,46,106,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,32,46,106,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,102,117,108,108,45,99,111,110,116,97,105,110,101,114,8,0,23,46,106,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,30,46,106,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,8,0,17,46,106,115,45,99,111,111,107,105,101,45,110,111,116,105,102,121,8,0,16,46,106,115,45,99,111,111,107,105,101,45,111,102,102,101,114,8,0,18,46,106,115,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,16,46,106,115,45,99,111,111,107,105,101,45,112,97,110,101,108,8,0,17,46,106,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,24,46,106,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,21,46,106,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,111,120,8,0,24,46,106,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,104,101,97,100,101,114,8,0,24,46,106,115,45,99,111,111,107,105,101,45,112,111,112,105,110,45,111,118,101,114,108,97,121,8,0,18,46,106,115,45,99,111,111,107,105,101,45,112,111,112,111,118,101,114,8,0,20,46,106,115,45,99,111,111,107,105,101,45,112,111,112,117,112,45,97,112,112,8,0,26,46,106,115,45,99,111,111,107,105,101,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,18,46,106,115,45,99,111,111,107,105,101,45,112,114,105,118,97,99,121,8,0,17,46,106,115,45,99,111,111,107,105,101,45,112,114,111,109,112,116,8,0,15,46,106,115,45,99,111,111,107,105,101,45,114,103,112,100,8,0,18,46,106,115,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,28,46,106,115,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,17,46,106,115,45,99,111,111,107,105,101,45,119,105,100,103,101,116,8,0,31,46,106,115,45,99,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,73,110,102,111,114,109,97,116,105,111,110,8,0,16,46,106,115,45,99,111,111,107,105,101,66,97,110,110,101,114,8,0,16,46,106,115,45,99,111,111,107,105,101,67,111,109,112,108,121,8,0,17,46,106,115,45,99,111,111,107,105,101,67,111,110,115,101,110,116,8,0,16,46,106,115,45,99,111,111,107,105,101,72,101,97,100,101,114,8,0,14,46,106,115,45,99,111,111,107,105,101,73,110,102,111,8,0,17,46,106,115,45,99,111,111,107,105,101,77,101,115,115,97,103,101,8,0,14,46,106,115,45,99,111,111,107,105,101,78,111,116,101,8,0,17,46,106,115,45,99,111,111,107,105,101,79,118,101,114,108,97,121,8,0,16,46,106,115,45,99,111,111,107,105,101,83,116,105,99,107,121,8,0,14,46,106,115,45,99,111,111,107,105,101,95,98,97,114,8,0,15,46,106,115,45,99,111,111,107,105,101,95,104,105,110,116,8,0,17,46,106,115,45,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,16,46,106,115,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,21,46,106,115,45,99,111,111,107,105,101,98,97,110,110,101,114,45,119,114,97,112,8,0,13,46,106,115,45,99,111,111,107,105,101,98,97,114,8,0,14,46,106,115,45,99,111,111,107,105,101,104,105,110,116,8,0,19,46,106,115,45,99,111,111,107,105,101,105,110,102,111,108,97,121,101,114,8,0,15,46,106,115,45,99,111,111,107,105,101,108,97,121,101,114,8,0,14,46,106,115,45,99,111,111,107,105,101,108,111,111,112,8,0,15,46,106,115,45,99,111,111,107,105,101,109,111,100,97,108,8,0,11,46,106,115,45,99,111,111,107,105,101,115,8,0,27,46,106,115,45,99,111,111,107,105,101,115,45,97,103,114,101,101,45,99,111,110,116,97,105,110,101,114,8,0,21,46,106,115,45,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,8,0,34,46,106,115,45,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,17,46,106,115,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,20,46,106,115,45,99,111,111,107,105,101,115,45,98,97,99,107,100,114,111,112,8,0,18,46,106,115,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,15,46,106,115,45,99,111,111,107,105,101,115,45,98,97,114,8,0,17,46,106,115,45,99,111,111,107,105,101,115,45,98,108,111,99,107,8,0,19,46,106,115,45,99,111,111,107,105,101,115,45,98,108,111,99,107,95,116,8,0,15,46,106,115,45,99,111,111,107,105,101,115,45,98,111,120,8,0,19,46,106,115,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,8,0,14,46,106,115,45,99,111,111,107,105,101,115,45,101,117,8,0,19,46,106,115,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,8,0,24,46,106,115,45,99,111,111,107,105,101,115,45,110,111,116,45,97,99,99,101,112,116,101,100,8,0,18,46,106,115,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,8,0,23,46,106,115,45,99,111,111,107,105,101,115,45,112,97,103,101,45,102,105,108,116,101,114,8,0,17,46,106,115,45,99,111,111,107,105,101,115,45,112,97,110,101,108,8,0,17,46,106,115,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,18,46,106,115,45,99,111,111,107,105,101,115,45,112,111,112,117,112,115,8,0,18,46,106,115,45,99,111,111,107,105,101,115,45,116,97,114,103,101,116,8,0,14,46,106,115,45,99,111,111,107,105,101,115,65,100,118,8,0,22,46,106,115,45,99,111,111,107,105,101,115,95,95,100,105,115,99,108,97,109,101,114,8,0,20,46,106,115,45,99,111,111,107,105,101,115,95,105,110,102,111,114,109,101,114,8,0,18,46,106,115,45,99,111,111,107,105,101,115,95,110,111,116,105,99,101,8,0,31,46,106,115,45,99,121,98,111,116,45,99,111,111,107,105,101,98,111,116,45,112,108,97,99,101,104,111,108,100,101,114,8,0,25,46,106,115,45,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,112,111,112,117,112,8,0,22,46,106,115,45,100,105,115,99,108,97,105,109,101,114,45,100,105,115,109,105,115,115,8,0,14,46,106,115,45,101,117,45,99,111,48,107,49,101,115,8,0,17,46,106,115,45,101,117,45,99,111,111,107,105,101,45,108,97,119,8,0,20,46,106,115,45,101,117,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,106,115,45,102,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,106,115,45,102,101,118,101,114,45,99,111,111,107,105,101,115,8,0,24,46,106,115,45,102,111,111,116,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,14,46,106,115,45,102,116,45,99,111,111,107,105,101,115,8,0,12,46,106,115,45,103,45,99,111,111,107,105,101,8,0,8,46,106,115,45,103,100,112,114,8,0,15,46,106,115,45,103,100,112,114,45,98,97,110,110,101,114,8,0,26,46,106,115,45,103,100,112,114,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,22,46,106,115,45,103,100,112,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,106,115,45,103,100,112,114,45,99,111,111,107,105,101,45,98,111,120,8,0,15,46,106,115,45,103,100,112,114,45,104,101,97,100,101,114,8,0,13,46,106,115,45,103,100,112,114,45,105,110,102,111,8,0,15,46,106,115,45,103,100,112,114,45,110,111,116,105,99,101,8,0,30,46,106,115,45,103,100,112,114,45,110,111,116,105,99,101,45,100,105,97,108,111,103,45,111,118,101,114,108,97,121,8,0,14,46,106,115,45,103,100,112,114,45,112,111,112,117,112,8,0,16,46,106,115,45,103,100,112,114,45,116,111,111,108,116,105,112,8,0,13,46,106,115,45,103,100,112,114,65,108,101,114,116,8,0,25,46,106,115,45,103,108,111,98,97,108,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,18,46,106,115,45,103,108,111,98,97,108,45,99,111,111,107,105,101,115,8,0,18,46,106,115,45,103,108,111,98,97,108,45,112,114,105,118,97,99,121,8,0,27,46,106,115,45,103,108,111,98,97,108,45,112,114,105,118,97,99,121,45,109,101,115,115,97,103,101,115,8,0,24,46,106,115,45,103,108,111,98,97,108,45,115,107,114,112,45,109,101,115,115,97,103,101,115,8,0,30,46,106,115,45,103,108,111,98,97,108,45,116,111,112,45,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,8,0,21,46,106,115,45,105,100,45,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,18,46,106,115,45,105,110,102,111,66,97,114,67,111,111,107,105,101,115,8,0,17,46,106,115,45,108,97,121,101,114,45,99,111,111,107,105,101,115,8,0,8,46,106,115,45,108,103,112,100,8,0,16,46,106,115,45,108,119,112,99,110,103,78,111,116,105,99,101,8,0,22,46,106,115,45,109,97,105,110,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,106,115,45,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,8,0,16,46,106,115,45,109,111,100,97,108,45,99,111,111,107,105,101,8,0,22,46,106,115,45,109,111,100,97,108,45,102,105,114,115,116,45,99,111,111,107,105,101,8,0,13,46,106,115,45,109,121,45,99,111,111,107,105,101,8,0,23,46,106,115,45,110,97,110,111,98,97,114,45,102,105,114,115,116,45,108,111,103,105,110,8,0,13,46,106,115,45,110,110,45,99,111,111,107,105,101,8,0,30,46,106,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,106,115,45,110,111,116,105,102,121,45,99,111,111,107,105,101,8,0,20,46,106,115,45,110,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,28,46,106,115,45,111,99,99,108,115,115,45,97,108,101,114,116,45,99,111,111,107,105,101,112,111,112,117,112,8,0,16,46,106,115,45,112,97,103,101,45,99,111,111,107,105,101,115,8,0,13,46,106,115,45,112,97,103,101,45,107,118,107,107,8,0,14,46,106,115,45,112,97,103,101,95,95,103,100,112,114,8,0,16,46,106,115,45,112,97,110,101,108,45,99,111,111,107,105,101,8,0,29,46,106,115,45,112,101,114,115,111,110,97,108,73,110,102,111,114,109,97,116,105,111,110,78,111,116,105,99,101,8,0,16,46,106,115,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,17,46,106,115,45,112,111,108,105,99,121,95,98,97,110,110,101,114,8,0,15,46,106,115,45,112,111,108,105,99,121,112,111,112,117,112,8,0,23,46,106,115,45,112,111,112,117,112,45,99,111,111,107,105,101,45,115,105,109,112,108,101,8,0,19,46,106,115,45,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,8,0,24,46,106,115,45,112,114,105,118,97,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,24,46,106,115,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,97,108,101,114,116,8,0,22,46,106,115,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,114,8,0,30,46,106,115,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,45,98,111,120,8,0,38,46,106,115,45,114,101,97,99,116,45,99,111,109,112,111,110,101,110,116,45,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,12,46,106,115,45,114,115,116,45,103,100,112,114,8,0,21,46,106,115,45,115,104,111,119,46,99,111,111,107,105,101,45,109,111,100,97,108,8,0,18,46,106,115,45,115,105,108,101,110,116,45,99,111,110,115,101,110,116,8,0,21,46,106,115,45,115,105,116,101,45,99,111,111,107,105,101,95,95,105,110,102,111,8,0,15,46,106,115,45,115,105,116,101,67,111,111,107,105,101,115,8,0,18,46,106,115,45,115,116,105,99,107,121,45,99,111,111,107,105,101,115,8,0,24,46,106,115,45,115,116,105,99,107,121,45,102,111,111,116,101,114,45,99,111,111,107,105,101,8,0,24,46,106,115,45,115,117,110,100,105,111,45,99,111,111,107,105,101,45,100,105,97,108,111,103,8,0,27,46,106,115,45,116,101,114,109,115,45,111,102,45,117,115,101,45,100,105,115,99,108,97,105,109,101,114,8,0,23,46,106,115,45,116,109,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,17,46,106,115,45,116,111,97,115,116,45,99,111,111,107,105,101,115,8,0,18,46,106,115,45,116,114,97,99,107,105,110,103,45,112,111,112,117,112,8,0,19,46,106,115,45,117,103,45,97,108,101,114,116,45,99,111,111,107,105,101,8,0,17,46,106,115,45,118,105,115,105,116,111,114,78,111,116,105,99,101,8,0,24,46,106,115,45,119,97,114,110,105,110,103,45,116,111,112,45,45,99,111,111,107,105,101,115,8,0,31,46,106,115,45,119,101,98,115,105,116,101,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,13,46,106,115,46,116,99,45,98,97,110,110,101,114,8,0,18,46,106,115,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,13,46,106,115,67,111,111,107,105,101,68,105,97,103,8,0,16,46,106,115,67,111,111,107,105,101,87,97,114,110,105,110,103,8,0,10,46,106,115,67,111,111,107,105,101,115,8,0,15,46,106,115,67,111,111,107,105,101,115,65,108,101,114,116,8,0,17,46,106,115,67,111,111,107,105,101,115,77,101,115,115,97,103,101,8,0,15,46,106,115,67,111,111,107,105,101,115,80,111,112,85,112,8,0,20,46,106,115,67,117,115,116,111,109,67,108,111,115,101,67,111,111,107,105,101,8,0,19,46,106,115,67,117,115,116,111,109,67,111,111,107,105,101,87,114,97,112,8,0,25,46,106,115,69,85,67,111,111,107,105,101,73,110,102,111,98,97,114,68,105,115,112,108,97,121,8,0,10,46,106,115,71,100,112,114,66,97,114,8,0,19,46,106,115,71,100,112,114,78,111,116,105,99,101,72,111,108,100,101,114,8,0,12,46,106,115,77,111,100,97,108,82,111,100,111,8,0,16,46,106,115,95,95,98,97,110,110,101,114,45,103,100,112,114,8,0,11,46,106,115,95,95,99,111,111,107,105,101,8,0,23,46,106,115,95,95,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,8,0,30,46,106,115,95,95,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,95,98,97,110,110,101,114,8,0,17,46,106,115,95,95,99,111,111,107,105,101,45,109,111,100,97,108,8,0,17,46,106,115,95,95,99,111,111,107,105,101,95,112,111,112,117,112,8,0,17,46,106,115,95,97,99,99,101,112,116,95,99,111,111,107,105,101,8,0,29,46,106,115,95,97,108,101,114,116,67,111,111,107,105,101,67,78,73,76,95,99,111,110,116,97,105,110,101,114,8,0,16,46,106,115,95,99,107,95,99,111,110,116,97,105,110,101,114,8,0,18,46,106,115,95,99,111,111,107,105,101,45,109,97,110,97,103,101,114,8,0,14,46,106,115,95,99,111,111,107,105,101,95,108,97,119,8,0,28,46,106,115,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,8,0,21,46,106,115,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,8,0,26,46,106,115,95,99,111,111,107,105,101,115,95,100,105,115,97,98,108,101,100,95,108,97,121,101,114,8,0,19,46,106,115,95,99,111,111,107,105,101,115,95,119,114,97,112,112,101,114,8,0,22,46,106,115,95,103,100,112,114,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,21,46,106,115,95,104,101,97,100,101,114,45,99,111,111,107,105,101,45,98,97,114,8,0,12,46,106,115,98,100,45,67,111,111,107,105,101,8,0,12,46,106,117,98,67,111,111,107,87,97,114,110,8,0,24,46,106,117,109,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,8,0,23,46,106,117,109,98,111,116,114,111,110,45,45,99,111,111,107,105,101,108,97,121,101,114,8,0,16,46,106,117,110,101,50,48,49,56,99,111,111,107,105,101,115,8,0,18,46,106,117,110,105,116,104,45,99,111,111,107,105,101,110,111,116,101,8,0,30,46,106,119,45,119,105,100,103,101,116,45,115,104,111,119,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,10,46,107,52,45,99,111,111,107,105,101,8,0,19,46,107,97,99,111,111,107,105,101,45,99,109,45,119,105,110,100,111,119,8,0,26,46,107,97,100,101,110,99,101,45,99,111,110,118,101,114,115,105,111,110,45,98,97,110,110,101,114,8,0,10,46,107,97,107,111,114,45,98,97,114,8,0,16,46,107,97,108,105,45,99,99,45,98,97,110,100,101,97,117,8,0,23,46,107,98,45,99,107,45,98,97,114,45,110,111,116,105,102,121,45,98,108,111,99,107,8,0,17,46,107,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,107,98,99,95,99,111,111,107,105,101,8,0,16,46,107,98,99,95,99,111,111,107,105,101,95,119,114,97,112,8,0,12,46,107,101,99,107,115,101,45,105,110,102,111,8,0,8,46,107,101,107,115,98,97,114,8,0,16,46,107,101,107,115,98,111,120,45,111,118,101,114,108,97,121,8,0,22,46,107,101,107,115,98,111,120,45,111,118,101,114,108,97,121,45,108,97,121,101,114,8,0,13,46,107,101,107,115,105,45,98,97,110,110,101,114,8,0,24,46,107,101,107,115,105,107,121,115,101,108,121,77,111,100,97,108,69,108,101,109,101,110,116,8,0,16,46,107,101,110,116,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,107,103,109,77,111,100,97,108,45,99,111,111,107,105,101,8,0,11,46,107,105,97,45,99,111,111,107,105,101,8,0,13,46,107,105,103,111,45,99,111,111,107,105,101,115,8,0,17,46,107,105,107,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,20,46,107,105,116,116,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,25,46,107,105,116,116,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,95,115,104,111,119,8,0,17,46,107,106,102,67,111,111,107,105,101,73,110,102,111,66,111,120,8,0,8,46,107,107,45,103,100,112,114,8,0,14,46,107,108,45,99,111,111,107,105,101,110,111,116,101,8,0,17,46,107,108,97,114,111,80,108,97,99,101,104,111,108,100,101,114,8,0,23,46,107,108,105,99,107,101,100,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,21,46,107,109,45,99,111,111,107,105,101,115,45,99,111,109,112,111,110,101,110,116,8,0,14,46,107,111,101,107,105,101,109,101,108,100,105,110,103,8,0,19,46,107,111,101,107,106,101,95,98,97,114,95,99,111,110,116,101,110,116,8,0,20,46,107,111,107,107,117,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,25,46,107,111,109,95,112,111,108,105,116,121,107,97,95,112,114,121,119,97,116,110,111,115,99,105,8,0,24,46,107,111,109,117,110,105,107,97,116,45,112,97,110,101,108,45,99,111,111,107,105,101,115,8,0,18,46,107,111,109,117,110,105,107,97,116,95,99,111,111,107,105,101,115,8,0,22,46,107,111,110,105,110,103,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,8,0,16,46,107,111,110,116,101,110,101,114,95,99,111,111,107,105,101,8,0,12,46,107,111,111,107,105,101,99,104,101,99,107,8,0,18,46,107,112,45,99,111,111,107,105,101,115,95,95,99,108,111,97,107,8,0,22,46,107,114,97,107,101,110,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,16,46,107,114,104,67,111,111,107,105,101,66,97,110,110,101,114,8,0,11,46,107,115,45,99,111,111,107,105,101,115,8,0,25,46,107,115,109,97,45,98,108,111,99,107,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,15,46,107,116,45,99,111,111,107,105,101,115,45,98,97,114,8,0,17,46,107,116,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,10,46,107,116,95,99,111,111,107,105,101,8,0,18,46,107,116,104,45,116,111,97,115,116,45,45,98,111,116,116,111,109,8,0,24,46,107,117,101,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,8,46,107,117,107,105,45,106,115,8,0,10,46,107,117,107,105,119,114,97,112,120,8,0,18,46,107,118,45,101,101,45,103,100,112,114,45,98,97,110,110,101,114,8,0,11,46,107,118,107,45,99,111,111,107,105,101,8,0,16,46,107,118,107,45,102,111,111,116,101,114,45,98,111,100,121,8,0,19,46,107,118,107,45,102,111,111,116,101,114,45,119,97,114,110,105,110,103,8,0,9,46,107,118,107,45,111,110,97,121,8,0,12,46,107,118,107,107,45,98,111,116,116,111,109,8,0,11,46,107,118,107,107,45,102,114,97,109,101,8,0,8,46,107,118,107,107,112,111,112,8,0,12,46,107,118,118,107,45,99,111,111,107,105,101,8,0,25,46,107,119,45,115,108,105,100,101,114,95,95,99,111,111,99,107,105,101,45,108,97,121,101,114,8,0,20,46,107,119,112,99,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,108,45,99,111,110,115,101,110,116,95,98,97,110,110,101,114,8,0,9,46,108,45,99,111,111,107,105,101,8,0,15,46,108,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,16,46,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,108,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,8,0,23,46,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,8,0,13,46,108,45,99,111,111,107,105,101,45,108,97,119,8,0,26,46,108,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,16,46,108,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,13,46,108,45,99,111,111,107,105,101,45,112,111,112,8,0,15,46,108,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,21,46,108,45,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,14,46,108,45,99,111,111,107,105,101,80,111,112,117,112,8,0,16,46,108,45,99,111,111,107,105,101,87,114,97,112,112,101,114,8,0,10,46,108,45,99,111,111,107,105,101,115,8,0,18,46,108,45,99,111,111,107,105,101,115,95,95,98,97,110,110,101,114,8,0,13,46,108,45,100,105,115,99,108,97,105,109,101,114,8,0,24,46,108,45,102,111,111,116,101,114,95,99,111,111,107,105,101,65,108,101,114,116,66,111,120,8,0,14,46,108,45,103,100,112,114,45,98,97,110,110,101,114,8,0,24,46,108,45,103,108,111,98,97,108,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,8,0,35,46,108,45,104,101,97,100,101,114,45,99,111,110,116,97,105,110,101,114,95,95,112,114,105,118,97,99,121,45,112,114,111,109,112,116,8,0,15,46,108,45,109,111,100,97,108,45,99,111,111,107,105,101,8,0,16,46,108,45,112,97,103,101,95,95,99,111,111,107,105,101,115,8,0,20,46,108,45,115,116,105,99,107,121,45,103,102,95,95,97,99,99,101,112,116,8,0,16,46,108,52,119,45,99,111,111,107,105,101,115,45,98,97,114,8,0,26,46,108,97,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,8,0,21,46,108,97,109,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,22,46,108,97,109,105,117,109,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,108,97,110,100,101,110,100,45,105,110,102,111,98,97,114,45,100,97,114,107,8,0,16,46,108,97,110,100,105,110,103,45,99,111,111,107,105,101,115,8,0,22,46,108,97,110,100,105,110,103,45,99,111,111,107,105,101,115,98,97,110,110,101,114,8,0,12,46,108,97,110,103,45,99,111,111,107,105,101,8,0,18,46,108,97,110,110,101,98,111,45,99,111,111,107,105,101,98,111,116,8,0,11,46,108,97,119,95,99,111,111,107,105,101,8,0,12,46,108,97,119,95,99,111,111,107,105,101,115,8,0,21,46,108,97,119,95,99,111,111,107,105,101,115,95,116,101,115,116,95,65,67,77,8,0,13,46,108,97,119,115,45,99,111,111,107,105,101,115,8,0,31,46,108,97,121,101,114,45,45,102,105,120,101,100,45,98,111,116,116,111,109,91,99,111,111,107,105,101,98,97,114,93,8,0,13,46,108,97,121,101,114,45,99,111,111,107,105,101,8,0,42,46,108,97,121,101,114,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,8,0,12,46,108,97,121,101,114,67,111,111,107,105,101,8,0,13,46,108,97,121,101,114,95,99,111,111,107,105,101,8,0,21,46,108,97,121,111,117,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,34,46,108,97,121,111,117,116,70,108,111,97,116,105,110,103,91,105,115,61,34,98,97,115,105,115,45,99,111,111,107,105,101,34,93,8,0,36,46,108,97,121,111,117,116,95,95,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,108,97,121,111,117,116,95,95,100,105,115,99,108,97,105,109,101,114,8,0,31,46,108,97,121,111,117,116,95,95,111,118,101,114,108,97,121,115,95,95,99,111,111,107,105,101,78,111,116,105,99,101,8,0,19,46,108,97,122,105,109,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,25,46,108,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,13,46,108,98,120,45,45,99,111,111,107,105,101,115,8,0,8,46,108,99,45,103,100,112,114,8,0,17,46,108,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,108,100,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,20,46,108,100,115,95,95,112,114,105,118,97,99,121,45,112,111,108,105,99,121,8,0,16,46,108,101,102,116,46,117,100,99,45,104,111,108,100,101,114,8,0,42,46,108,101,103,97,108,45,97,99,107,110,111,119,108,101,100,103,101,109,101,110,116,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,18,46,108,101,103,97,108,45,97,108,101,114,116,45,112,111,112,117,112,8,0,20,46,108,101,103,97,108,45,98,97,110,110,101,114,45,114,101,103,105,111,110,8,0,13,46,108,101,103,97,108,45,99,111,111,107,105,101,8,0,21,46,108,101,103,97,108,45,99,111,111,107,105,101,45,101,117,45,104,105,110,116,8,0,21,46,108,101,103,97,108,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,16,46,108,101,103,97,108,45,99,111,111,107,105,101,98,97,114,8,0,25,46,108,101,103,97,108,45,105,110,102,111,95,95,97,108,101,114,116,45,99,111,111,107,105,101,8,0,22,46,108,101,103,97,108,45,109,101,115,115,97,103,101,45,119,114,97,112,112,101,114,8,0,12,46,108,101,103,97,108,67,111,111,107,105,101,8,0,8,46,108,101,103,97,108,85,69,8,0,19,46,108,101,103,97,108,95,99,111,111,107,105,101,95,98,108,111,99,107,8,0,12,46,108,101,103,97,108,97,100,118,105,99,101,8,0,13,46,108,101,103,97,108,119,97,114,110,105,110,103,8,0,34,46,108,101,109,111,110,95,99,111,111,107,105,101,95,119,105,110,100,111,119,95,111,117,116,101,114,95,119,114,97,112,112,101,114,8,0,18,46,108,101,116,117,115,45,117,115,101,45,99,111,111,107,105,101,115,8,0,11,46,108,101,121,67,111,111,107,105,101,115,8,0,22,46,108,102,45,99,111,111,107,105,101,45,108,97,119,45,100,101,102,97,117,108,116,8,0,10,46,108,103,45,99,111,111,107,105,101,8,0,20,46,108,103,99,111,111,107,105,101,115,108,97,119,45,98,97,110,110,101,114,8,0,21,46,108,103,99,111,111,107,105,101,115,108,97,119,45,111,118,101,114,108,97,121,8,0,20,46,108,103,99,111,111,107,105,101,115,108,97,119,95,98,97,110,110,101,114,8,0,21,46,108,103,99,111,111,107,105,101,115,108,97,119,95,111,118,101,114,108,97,121,8,0,30,46,108,103,105,45,98,103,99,111,110,116,97,105,110,101,114,45,112,114,105,118,97,99,121,98,97,110,110,101,114,8,0,18,46,108,103,105,95,112,114,105,118,97,99,121,98,97,110,110,101,114,8,0,22,46,108,103,112,100,45,97,99,101,105,116,101,45,99,111,110,116,97,105,110,101,114,8,0,9,46,108,103,112,100,45,97,108,108,8,0,12,46,108,103,112,100,45,98,97,110,110,101,114,8,0,9,46,108,103,112,100,45,98,97,114,8,0,25,46,108,103,112,100,45,98,97,114,45,102,108,111,97,116,45,99,111,110,116,97,105,110,101,114,8,0,17,46,108,103,112,100,45,98,97,114,45,119,114,97,112,112,101,114,8,0,9,46,108,103,112,100,45,98,111,120,8,0,13,46,108,103,112,100,45,99,111,110,116,101,110,116,8,0,9,46,108,103,112,100,45,100,105,118,8,0,11,46,108,103,112,100,45,108,97,121,101,114,8,0,13,46,108,103,112,100,45,109,101,115,115,97,103,101,8,0,11,46,108,103,112,100,45,109,111,100,97,108,8,0,19,46,108,103,112,100,45,109,111,100,97,108,45,99,111,110,116,101,110,116,8,0,12,46,108,103,112,100,45,110,111,116,105,99,101,8,0,17,46,108,103,112,100,45,110,111,116,105,99,101,45,119,114,97,112,8,0,23,46,108,103,112,100,45,110,111,116,105,99,101,95,95,99,111,110,116,97,105,110,101,114,8,0,28,46,108,103,112,100,45,112,111,108,105,99,121,45,99,111,109,112,108,105,97,110,99,101,45,109,97,105,110,8,0,13,46,108,103,112,100,45,115,101,99,116,105,111,110,8,0,13,46,108,103,112,100,45,119,114,97,112,112,101,114,8,0,9,46,108,103,112,100,95,98,97,114,8,0,20,46,108,103,112,100,95,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,12,46,108,103,112,100,95,119,100,95,98,111,120,8,0,12,46,108,105,67,111,111,107,105,101,80,111,108,8,0,24,46,108,105,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,97,108,101,114,116,8,0,28,46,108,105,98,45,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,114,101,103,105,115,116,114,121,8,0,33,46,108,105,103,104,116,98,111,120,45,98,97,99,107,100,114,111,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,26,46,108,105,108,97,121,111,117,116,45,104,101,97,100,101,114,45,99,111,111,107,105,101,98,97,114,8,0,14,46,108,105,115,116,97,45,99,111,111,107,105,101,115,8,0,20,46,108,105,116,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,28,46,108,105,116,104,111,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,8,0,20,46,108,108,95,99,111,111,107,105,101,98,97,114,95,98,111,116,116,111,109,8,0,19,46,108,108,95,99,111,111,107,105,101,98,97,114,95,108,105,103,104,116,8,0,24,46,108,108,100,45,99,111,111,107,105,101,99,111,110,115,101,110,116,98,97,110,110,101,114,8,0,19,46,108,109,115,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,8,0,20,46,108,110,100,45,67,111,111,107,105,101,115,95,87,114,97,112,112,101,114,8,0,28,46,108,111,97,100,105,110,103,95,99,111,111,107,105,101,95,109,97,105,110,107,117,97,110,103,106,105,97,8,0,21,46,108,111,103,105,110,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,20,46,108,111,105,95,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,8,0,10,46,108,111,105,95,104,97,109,111,110,8,0,18,46,108,111,118,105,110,103,45,101,117,45,99,111,111,107,105,101,115,8,0,20,46,108,111,119,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,108,112,45,99,111,100,101,32,62,32,35,99,111,111,107,105,101,8,0,19,46,108,112,45,99,111,111,107,105,101,45,97,112,112,114,111,118,97,108,8,0,17,46,108,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,108,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,18,46,108,112,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,24,46,108,112,45,119,105,100,103,101,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,108,112,95,95,99,111,111,107,105,101,95,116,111,111,108,116,105,112,8,0,14,46,108,112,115,67,111,111,107,105,101,73,110,102,111,8,0,10,46,108,115,67,111,110,115,101,110,116,8,0,27,46,108,117,97,110,97,45,109,111,100,117,108,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,24,46,108,117,99,105,100,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,26,46,108,117,109,105,115,45,115,101,114,118,105,99,101,45,112,114,105,118,97,99,121,116,101,114,109,8,0,21,46,108,117,112,99,111,109,95,99,111,111,107,105,101,95,115,119,105,116,99,104,8,0,11,46,108,117,115,45,99,111,111,107,105,101,8,0,15,46,108,117,115,45,99,111,111,107,105,101,45,112,114,101,8,0,27,46,108,117,120,97,114,95,100,105,115,99,108,97,105,109,101,114,95,99,111,110,116,97,105,110,101,114,8,0,29,46,108,118,109,45,99,111,109,112,108,105,97,110,99,101,45,99,111,110,102,105,114,109,45,97,108,101,114,116,8,0,13,46,108,119,112,99,110,103,78,111,116,105,99,101,8,0,15,46,108,120,98,95,99,109,45,109,101,115,115,97,103,101,8,0,18,46,109,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,34,46,109,45,48,52,56,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,8,0,9,46,109,45,67,111,111,107,105,101,8,0,23,46,109,45,97,108,101,114,116,45,98,97,110,110,101,114,45,45,99,111,111,107,105,101,8,0,14,46,109,45,98,97,114,45,45,99,111,111,107,105,101,8,0,15,46,109,45,98,97,115,105,99,45,99,111,111,107,105,101,8,0,23,46,109,45,98,97,115,105,99,45,99,111,111,107,105,101,45,114,101,102,114,101,115,104,8,0,9,46,109,45,99,111,111,107,105,101,8,0,15,46,109,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,17,46,109,45,99,111,111,107,105,101,45,97,108,101,114,116,45,49,8,0,16,46,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,13,46,109,45,99,111,111,107,105,101,45,98,97,114,8,0,17,46,109,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,8,0,20,46,109,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,14,46,109,45,99,111,111,107,105,101,45,105,110,102,111,8,0,15,46,109,45,99,111,111,107,105,101,45,105,110,116,114,111,8,0,16,46,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,22,46,109,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,15,46,109,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,12,46,109,45,99,111,111,107,105,101,66,97,114,8,0,13,46,109,45,99,111,111,107,105,101,73,110,102,111,8,0,15,46,109,45,99,111,111,107,105,101,80,111,108,105,99,121,8,0,16,46,109,45,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,16,46,109,45,99,111,111,107,105,101,99,111,110,116,114,111,108,8,0,13,46,109,45,99,111,111,107,105,101,104,105,110,116,8,0,14,46,109,45,99,111,111,107,105,101,108,97,121,101,114,8,0,15,46,109,45,99,111,111,107,105,101,112,111,108,105,99,121,8,0,10,46,109,45,99,111,111,107,105,101,115,8,0,16,46,109,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,14,46,109,45,99,111,111,107,105,101,115,45,98,97,114,8,0,19,46,109,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,20,46,109,45,103,100,112,114,45,97,108,101,114,116,45,98,97,110,110,101,114,8,0,25,46,109,45,103,108,111,98,97,108,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,8,0,23,46,109,45,104,101,97,100,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,18,46,109,45,104,101,97,100,115,45,117,112,45,98,97,110,110,101,114,8,0,17,46,109,45,109,101,115,115,97,103,101,45,98,97,110,110,101,114,8,0,23,46,109,45,110,111,116,105,99,101,95,80,114,105,118,97,99,121,80,111,108,105,99,121,8,0,21,46,109,45,110,111,116,105,102,105,99,97,116,105,111,110,45,108,97,121,101,114,8,0,17,46,109,45,112,111,112,117,112,95,95,99,111,111,107,105,101,115,8,0,10,46,109,45,112,114,105,118,97,99,121,8,0,18,46,109,45,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,8,0,19,46,109,45,112,114,105,118,97,99,121,45,108,105,103,104,116,98,111,120,8,0,18,46,109,45,112,114,105,118,97,99,121,45,111,112,116,105,111,110,115,8,0,21,46,109,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,111,112,8,0,28,46,109,45,114,101,97,99,116,45,99,99,109,95,95,115,101,116,116,105,110,103,115,45,108,97,121,101,114,8,0,17,46,109,45,115,116,114,105,112,101,45,45,99,111,111,107,105,101,8,0,18,46,109,45,116,114,97,99,107,105,110,103,45,98,97,110,110,101,114,8,0,13,46,109,49,53,57,45,99,111,111,107,105,101,115,8,0,10,46,109,53,45,99,111,111,107,105,101,8,0,18,46,109,54,67,111,111,107,105,101,115,95,111,118,101,114,108,97,121,8,0,13,46,109,67,67,70,45,45,98,111,116,116,111,109,8,0,17,46,109,83,117,105,116,101,67,111,111,107,105,101,70,97,100,101,8,0,9,46,109,95,99,111,111,107,105,101,8,0,20,46,109,95,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,16,46,109,95,99,111,111,107,105,101,95,110,111,116,105,99,101,8,0,10,46,109,95,99,111,111,107,105,101,115,8,0,20,46,109,95,112,114,105,118,97,99,121,95,115,116,97,116,101,109,101,110,116,8,0,30,46,109,97,45,67,111,111,107,105,101,115,68,105,114,101,99,116,105,118,101,95,67,111,110,116,97,105,110,101,114,8,0,18,46,109,97,95,99,111,111,107,105,101,95,112,111,112,111,118,101,114,8,0,33,46,109,97,99,45,104,101,97,100,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,115,101,99,116,105,111,110,8,0,18,46,109,97,100,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,20,46,109,97,103,101,110,105,111,95,97,108,101,114,116,99,111,111,107,105,101,8,0,14,46,109,97,103,110,117,115,45,99,111,111,107,105,101,8,0,18,46,109,97,105,110,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,18,46,109,97,105,110,45,99,111,111,107,105,101,45,116,105,116,108,101,8,0,20,46,109,97,105,110,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,13,46,109,97,105,110,45,99,111,111,107,105,101,115,8,0,21,46,109,97,105,110,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,24,46,109,97,105,110,45,102,111,111,116,101,114,45,99,111,111,107,105,101,45,105,110,102,111,8,0,19,46,109,97,105,110,45,112,114,105,118,97,99,121,45,112,111,112,117,112,8,0,17,46,109,97,105,110,67,111,111,107,105,101,65,108,101,114,116,97,8,0,16,46,109,97,105,110,67,111,111,107,105,101,80,111,112,117,112,8,0,17,46,109,97,105,110,67,111,111,107,105,101,115,80,111,112,85,112,8,0,15,46,109,97,105,110,80,114,105,118,97,99,121,66,97,114,8,0,15,46,109,97,105,110,80,114,105,118,97,99,121,68,105,118,8,0,17,46,109,97,105,110,80,114,105,118,97,99,121,77,111,100,97,108,8,0,13,46,109,97,110,97,103,101,99,111,111,107,105,101,8,0,15,46,109,97,110,97,103,101,114,67,111,111,107,105,101,115,8,0,23,46,109,97,110,116,105,110,103,97,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,109,97,114,99,111,45,99,105,118,105,108,45,98,97,110,110,101,114,8,0,29,46,109,97,114,107,101,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,109,111,100,97,108,8,0,16,46,109,97,115,101,114,97,116,105,45,99,111,111,107,105,101,8,0,9,46,109,97,115,107,82,111,100,111,8,0,19,46,109,97,115,113,117,101,95,99,111,111,107,105,101,95,119,97,108,108,8,0,22,46,109,97,115,116,45,99,45,98,97,110,110,101,114,115,45,99,111,111,107,105,101,8,0,14,46,109,97,116,111,109,111,95,98,97,110,110,101,114,8,0,44,46,109,97,116,114,105,122,50,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,8,0,27,46,109,97,120,95,119,112,95,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,18,46,109,98,45,99,111,110,116,101,110,116,45,99,111,111,107,105,101,8,0,25,46,109,98,45,111,108,45,112,114,105,118,97,99,121,45,98,111,120,45,102,111,111,116,101,114,8,0,10,46,109,98,95,99,111,111,107,105,101,8,0,23,46,109,98,95,105,110,102,111,114,109,97,116,105,118,97,95,99,111,111,107,105,101,115,8,0,19,46,109,98,116,45,99,111,111,107,105,101,95,95,110,111,116,105,99,101,8,0,20,46,109,99,45,99,111,110,115,101,110,116,115,45,119,114,97,112,112,101,114,8,0,14,46,109,99,65,112,105,95,99,111,111,107,105,101,115,8,0,25,46,109,99,100,45,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,108,97,121,101,114,8,0,15,46,109,99,108,45,99,111,111,107,105,101,45,98,97,114,8,0,18,46,109,99,113,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,109,100,45,99,111,110,115,101,110,116,8,0,10,46,109,100,45,99,111,111,107,105,101,8,0,18,46,109,100,45,99,111,111,107,105,101,45,98,108,111,99,107,101,114,8,0,18,46,109,100,45,99,111,111,107,105,101,45,100,101,102,97,117,108,116,8,0,18,46,109,100,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,18,46,109,100,45,99,111,111,107,105,101,115,45,97,100,118,105,99,101,8,0,20,46,109,100,115,116,114,67,111,111,107,105,101,76,111,99,97,116,105,111,110,8,0,21,46,109,100,120,45,115,116,100,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,12,46,109,101,100,45,99,111,111,107,105,101,115,8,0,17,46,109,101,108,105,110,100,114,101,115,45,98,97,110,110,101,114,8,0,28,46,109,101,108,105,115,45,103,100,112,114,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,15,46,109,101,110,115,97,106,101,45,99,111,111,107,105,101,8,0,14,46,109,101,110,116,105,111,110,67,111,111,107,105,101,8,0,17,46,109,101,110,117,45,99,111,110,45,99,111,111,107,105,101,115,8,0,11,46,109,101,110,117,67,111,111,107,105,101,8,0,14,46,109,101,115,115,97,103,101,45,45,99,110,105,108,8,0,16,46,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,8,0,24,46,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,17,46,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,115,8,0,16,46,109,101,115,115,97,103,101,45,99,111,99,107,105,101,115,8,0,15,46,109,101,115,115,97,103,101,45,99,111,111,107,105,101,8,0,22,46,109,101,115,115,97,103,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,8,0,24,46,109,101,115,115,97,103,101,45,100,101,109,97,110,100,101,45,99,111,111,107,105,101,115,8,0,32,46,109,101,115,115,97,103,101,45,100,101,109,97,110,100,101,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,18,46,109,101,115,115,97,103,101,45,101,117,119,97,114,110,105,110,103,8,0,21,46,109,101,115,115,97,103,101,45,109,111,100,97,108,45,99,111,111,107,105,101,8,0,24,46,109,101,115,115,97,103,101,45,110,111,116,105,102,105,99,97,116,105,111,110,95,99,116,8,0,24,46,109,101,115,115,97,103,101,45,111,118,101,114,108,97,121,45,45,99,111,111,107,105,101,8,0,45,46,109,101,115,115,97,103,101,45,112,97,110,101,108,91,100,97,116,97,45,110,111,116,105,99,101,45,105,100,61,34,99,111,111,107,105,101,78,111,116,105,99,101,34,93,8,0,23,46,109,101,115,115,97,103,101,45,119,101,45,117,115,101,45,99,111,111,107,105,101,115,8,0,23,46,109,101,115,115,97,103,101,91,100,97,116,97,45,99,99,45,109,111,100,97,108,93,8,0,15,46,109,101,115,115,97,103,101,95,99,111,111,107,105,101,8,0,17,46,109,101,115,115,97,103,101,115,45,45,99,111,111,107,105,101,8,0,17,46,109,101,115,115,97,103,101,115,95,99,111,111,107,105,101,115,8,0,17,46,109,101,115,115,97,103,103,105,111,95,99,111,111,107,105,101,8,0,18,46,109,101,115,115,97,103,103,105,111,95,99,111,111,107,105,101,115,8,0,17,46,109,102,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,109,102,45,99,111,111,107,105,101,45,109,111,100,101,108,8,0,10,46,109,103,45,99,111,111,107,105,101,8,0,12,46,109,103,100,112,114,45,112,111,112,117,112,8,0,19,46,109,103,118,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,17,46,109,103,120,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,17,46,109,104,53,95,67,111,111,107,105,101,78,111,116,105,99,101,8,0,17,46,109,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,8,46,109,105,45,103,100,112,114,8,0,12,46,109,105,100,45,99,111,111,107,105,101,115,8,0,19,46,109,105,104,111,121,111,45,99,111,111,107,105,101,45,116,105,112,115,8,0,22,46,109,105,107,105,116,95,98,97,110,100,101,97,117,95,99,111,111,107,105,101,115,8,0,14,46,109,105,108,105,98,111,111,67,111,111,107,105,101,8,0,21,46,109,105,110,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,17,46,109,105,110,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,17,46,109,105,110,80,112,112,87,114,112,95,99,111,111,107,105,101,8,0,14,46,109,105,110,80,112,112,95,99,111,111,107,105,101,8,0,12,46,109,105,110,105,67,111,110,115,101,110,116,8,0,18,46,109,105,110,105,95,99,111,111,107,105,101,95,115,116,97,99,107,8,0,20,46,109,105,112,114,111,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,18,46,109,105,115,99,45,112,111,112,117,112,45,99,111,111,107,105,101,8,0,20,46,109,106,45,98,111,120,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,19,46,109,106,45,99,111,110,115,101,110,116,95,95,98,97,110,110,101,114,8,0,23,46,109,106,45,103,100,112,114,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,29,46,109,106,45,106,115,45,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,15,46,109,106,95,103,100,112,114,95,98,97,110,110,101,114,8,0,18,46,109,106,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,23,46,109,107,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,13,46,109,107,45,99,111,111,107,105,101,66,111,120,8,0,15,46,109,107,67,111,111,107,105,101,66,97,110,110,101,114,8,0,17,46,109,107,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,11,46,109,107,111,99,111,111,107,105,101,115,8,0,28,46,109,107,116,95,99,111,110,115,101,110,116,95,109,97,110,97,103,101,114,95,119,114,97,112,112,101,114,8,0,15,46,109,108,45,99,111,111,107,105,101,45,119,114,97,112,8,0,15,46,109,108,97,45,103,100,112,114,45,108,105,103,104,116,8,0,17,46,109,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,109,109,45,99,111,111,107,105,101,115,8,0,24,46,109,109,45,109,111,100,97,108,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,18,46,109,109,45,112,97,103,101,32,62,32,35,99,111,111,107,105,101,8,0,25,46,109,109,45,112,97,103,101,32,62,32,35,99,111,111,107,105,101,104,105,110,119,101,105,115,8,0,27,46,109,109,45,112,97,103,101,32,62,32,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,8,0,19,46,109,109,45,112,97,103,101,32,62,32,46,99,111,111,107,105,101,115,8,0,20,46,109,109,67,111,111,107,105,101,73,110,102,111,66,111,120,85,115,101,114,8,0,10,46,109,109,67,111,111,107,105,101,115,8,0,16,46,109,109,95,99,111,111,107,105,101,95,108,97,121,101,114,8,0,20,46,109,109,99,111,111,107,105,101,112,114,101,102,45,112,108,117,103,105,110,8,0,16,46,109,109,115,45,99,111,111,107,105,101,108,97,121,101,114,8,0,19,46,109,109,116,111,111,108,115,45,99,111,111,107,105,101,45,98,97,114,8,0,23,46,109,109,117,105,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,15,46,109,110,100,45,99,111,111,107,105,101,45,98,97,114,8,0,12,46,109,110,100,45,99,111,111,107,105,101,115,8,0,15,46,109,111,45,99,111,109,45,99,111,111,107,105,101,115,8,0,12,46,109,111,45,115,105,116,101,80,114,105,118,8,0,35,46,109,111,98,114,111,103,45,118,49,45,99,109,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,21,46,109,111,99,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,18,46,109,111,100,45,67,111,111,107,105,101,77,101,115,115,97,103,101,8,0,21,46,109,111,100,45,97,119,95,99,111,111,107,105,101,97,98,102,114,97,103,101,8,0,11,46,109,111,100,45,99,111,111,107,105,101,8,0,17,46,109,111,100,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,15,46,109,111,100,45,99,111,111,107,105,101,45,98,97,114,8,0,19,46,109,111,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,27,46,109,111,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,100,105,97,108,111,103,8,0,22,46,109,111,100,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,23,46,109,111,100,45,99,111,111,107,105,101,45,108,97,119,45,99,111,110,115,101,110,116,8,0,17,46,109,111,100,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,18,46,109,111,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,109,111,100,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,14,46,109,111,100,45,99,111,111,107,105,101,98,97,114,8,0,16,46,109,111,100,45,99,111,111,107,105,101,108,97,121,101,114,8,0,17,46,109,111,100,45,99,111,111,107,105,101,112,111,108,105,99,121,8,0,32,46,109,111,100,45,99,111,111,107,105,101,115,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,18,46,109,111,100,45,99,111,111,107,105,101,119,97,114,110,105,110,103,8,0,15,46,109,111,100,45,100,105,115,99,108,97,105,109,101,114,8,0,9,46,109,111,100,45,108,103,112,100,8,0,19,46,109,111,100,45,108,103,112,100,45,99,97,98,101,99,97,108,104,111,8,0,34,46,109,111,100,45,111,118,101,114,108,97,121,91,100,97,116,97,45,116,111,112,105,99,61,34,99,111,110,115,101,110,116,34,93,8,0,18,46,109,111,100,45,112,114,105,118,97,99,121,112,111,108,105,99,121,8,0,20,46,109,111,100,45,119,101,98,115,105,116,101,45,99,111,111,107,105,101,115,8,0,13,46,109,111,100,67,111,111,107,105,101,66,97,114,8,0,18,46,109,111,100,67,111,111,107,105,101,115,67,111,110,115,101,110,116,8,0,20,46,109,111,100,70,105,110,97,110,99,105,97,108,67,111,111,107,105,101,115,8,0,23,46,109,111,100,85,116,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,49,8,0,19,46,109,111,100,95,99,109,115,95,99,111,111,107,105,101,95,98,97,114,8,0,15,46,109,111,100,95,99,111,111,107,105,101,45,98,97,114,8,0,15,46,109,111,100,95,99,111,111,107,105,101,95,98,97,114,8,0,24,46,109,111,100,95,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,18,46,109,111,100,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,20,46,109,111,100,95,99,111,111,107,105,101,98,97,114,95,111,112,116,105,110,8,0,25,46,109,111,100,95,99,111,111,107,105,101,98,97,114,95,111,112,116,105,110,95,115,108,105,109,8,0,23,46,109,111,100,95,99,111,111,107,105,101,99,111,110,102,105,114,109,97,116,105,111,110,8,0,23,46,109,111,100,95,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,8,0,24,46,109,111,100,95,105,120,99,110,98,95,99,111,111,107,105,101,95,110,111,116,105,99,101,8,0,29,46,109,111,100,95,107,97,95,99,111,110,116,97,111,95,99,111,111,107,105,101,115,95,98,97,110,110,101,114,8,0,18,46,109,111,100,95,112,114,105,118,97,99,121,95,111,112,116,105,110,8,0,25,46,109,111,100,95,112,114,105,118,97,99,121,95,111,112,116,105,110,95,109,101,100,105,117,109,8,0,23,46,109,111,100,95,112,114,105,118,97,99,121,95,111,112,116,105,110,95,115,108,105,109,8,0,24,46,109,111,100,97,108,45,45,99,111,111,107,105,101,115,45,98,97,99,107,100,114,111,112,8,0,21,46,109,111,100,97,108,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,19,46,109,111,100,97,108,45,97,118,105,115,111,45,99,111,111,107,105,101,8,0,20,46,109,111,100,97,108,45,98,97,110,110,101,114,99,111,111,107,105,101,115,8,0,32,46,109,111,100,97,108,45,98,111,120,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,8,0,17,46,109,111,100,97,108,45,99,99,45,99,111,111,107,105,101,115,8,0,29,46,109,111,100,97,108,45,99,111,110,116,101,110,116,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,14,46,109,111,100,97,108,45,99,111,111,99,107,105,101,8,0,22,46,109,111,100,97,108,45,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,8,0,16,46,109,111,100,97,108,45,99,111,111,107,105,101,45,98,103,8,0,18,46,109,111,100,97,108,45,99,111,111,107,105,101,45,98,111,100,121,8,0,19,46,109,111,100,97,108,45,99,111,111,107,105,101,95,98,108,111,99,107,8,0,20,46,109,111,100,97,108,45,99,111,111,107,105,101,115,45,99,111,108,111,114,8,0,21,46,109,111,100,97,108,45,99,111,111,107,105,101,115,45,119,105,110,100,111,119,8,0,20,46,109,111,100,97,108,45,100,105,97,108,111,103,67,111,111,107,105,101,115,8,0,28,46,109,111,100,97,108,45,101,110,116,101,114,45,100,111,110,101,46,114,103,112,100,45,109,111,100,97,108,8,0,18,46,109,111,100,97,108,45,108,101,121,45,99,111,111,107,105,101,115,8,0,11,46,109,111,100,97,108,45,108,103,112,100,8,0,21,46,109,111,100,97,108,45,112,114,105,118,97,99,121,95,97,99,116,105,118,101,8,0,25,46,109,111,100,97,108,45,115,116,114,105,112,91,100,97,116,97,45,99,111,111,107,105,101,93,8,0,21,46,109,111,100,97,108,45,119,105,110,100,111,119,45,99,111,111,107,105,101,115,8,0,18,46,109,111,100,97,108,46,115,109,95,111,112,116,105,110,95,98,103,8,0,21,46,109,111,100,97,108,46,117,100,99,45,98,97,114,45,104,111,108,100,101,114,8,0,14,46,109,111,100,97,108,46,117,100,99,45,111,118,114,8,0,24,46,109,111,100,97,108,95,95,99,111,110,116,101,110,116,45,45,99,111,111,107,105,101,115,8,0,23,46,109,111,100,97,108,95,95,99,111,111,107,105,101,45,45,109,101,115,115,97,103,101,8,0,15,46,109,111,100,97,108,95,95,99,111,111,107,105,101,115,8,0,11,46,109,111,100,97,108,95,108,103,112,100,8,0,19,46,109,111,100,97,108,95,109,97,115,107,46,99,111,111,107,105,101,115,8,0,14,46,109,111,100,97,108,101,67,111,111,107,105,101,115,8,0,16,46,109,111,100,101,45,99,111,111,107,105,101,45,116,105,112,8,0,14,46,109,111,100,101,108,45,99,111,111,107,105,101,115,8,0,15,46,109,111,100,117,108,101,45,45,99,111,111,107,105,101,8,0,20,46,109,111,100,117,108,101,45,97,108,101,114,116,45,99,111,111,107,105,101,8,0,14,46,109,111,100,117,108,101,45,99,111,111,107,105,101,8,0,21,46,109,111,100,117,108,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,109,111,100,117,108,101,45,99,111,111,107,105,101,45,98,97,114,8,0,19,46,109,111,100,117,108,101,45,99,111,111,107,105,101,45,105,110,102,111,8,0,20,46,109,111,100,117,108,101,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,19,46,109,111,100,117,108,101,45,99,111,111,107,105,101,45,110,111,116,101,8,0,18,46,109,111,100,117,108,101,45,99,111,111,107,105,101,105,110,102,111,8,0,15,46,109,111,100,117,108,101,45,99,111,111,107,105,101,115,8,0,22,46,109,111,100,117,108,101,45,99,111,111,107,105,101,115,45,97,100,118,105,99,101,8,0,28,46,109,111,100,117,108,101,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,23,46,109,111,100,117,108,101,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,23,46,109,111,100,117,108,101,45,103,100,112,114,45,97,99,99,101,112,116,97,110,99,101,8,0,29,46,109,111,100,117,108,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,115,8,0,29,46,109,111,100,117,108,101,45,115,112,101,99,105,97,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,109,111,100,117,108,101,67,111,111,107,105,101,115,66,111,120,8,0,21,46,109,111,100,117,108,101,95,95,99,111,111,107,105,101,98,97,110,110,101,114,8,0,21,46,109,111,100,117,108,101,95,99,111,110,115,101,110,116,95,95,109,97,105,110,8,0,21,46,109,111,100,117,108,101,95,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,22,46,109,111,100,117,108,101,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,8,0,24,46,109,111,100,117,108,101,95,109,101,115,115,97,103,101,115,95,99,111,111,107,105,101,115,8,0,19,46,109,111,100,117,108,101,115,45,45,99,111,111,107,105,101,98,97,114,8,0,23,46,109,111,100,117,108,101,115,100,101,110,45,99,111,111,107,105,101,115,45,98,97,114,8,0,26,46,109,111,100,117,108,101,116,97,98,108,101,45,112,114,105,118,97,99,121,45,112,111,112,117,112,8,0,28,46,109,111,100,117,108,111,45,97,99,99,101,116,116,97,122,105,111,110,101,45,99,111,111,107,105,101,115,8,0,18,46,109,111,100,117,108,111,67,111,111,107,105,101,65,108,101,114,116,8,0,12,46,109,111,108,45,97,100,115,45,99,109,112,8,0,19,46,109,111,108,97,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,23,46,109,111,108,101,99,117,108,101,45,99,111,111,107,105,101,109,101,115,115,97,103,101,8,0,13,46,109,111,110,107,45,99,111,111,107,105,101,115,8,0,23,46,109,111,111,110,50,45,115,116,97,116,105,115,116,105,99,115,79,112,116,66,111,120,8,0,24,46,109,111,111,118,101,45,103,100,112,114,45,97,108,105,103,110,45,99,101,110,116,101,114,8,0,23,46,109,111,111,118,101,45,103,100,112,114,45,100,97,114,107,45,115,99,104,101,109,101,8,0,24,46,109,111,111,118,101,45,103,100,112,114,45,108,105,103,104,116,45,115,99,104,101,109,101,8,0,27,46,109,111,111,118,101,95,103,100,112,114,95,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,8,0,29,46,109,111,111,118,101,95,103,100,112,114,95,99,111,111,107,105,101,95,109,111,100,97,108,95,111,112,101,110,8,0,19,46,109,111,115,116,114,97,114,67,97,112,97,99,111,111,107,105,101,115,8,0,25,46,109,111,116,111,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,17,46,109,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,109,112,45,99,111,111,107,105,101,45,112,108,97,99,101,104,111,108,100,101,114,8,0,11,46,109,112,45,99,111,111,107,105,101,115,8,0,22,46,109,112,45,99,111,111,107,105,101,115,45,105,110,102,111,114,109,45,98,97,114,8,0,16,46,109,112,45,115,104,111,119,45,99,111,111,107,105,101,115,8,0,17,46,109,112,115,112,45,108,103,112,100,45,98,97,110,110,101,114,8,0,18,46,109,112,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,45,46,109,114,112,105,120,45,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,45,111,118,101,114,104,101,97,100,45,99,111,110,116,97,105,110,101,114,8,0,24,46,109,114,116,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,121,8,0,21,46,109,115,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,13,46,109,115,45,99,111,111,107,105,101,45,111,107,8,0,15,46,109,115,67,111,111,107,105,101,66,97,110,110,101,114,8,0,11,46,109,115,103,45,99,111,111,107,105,101,8,0,12,46,109,115,103,45,99,111,111,107,105,101,115,8,0,17,46,109,115,103,45,116,114,97,121,45,45,99,111,111,107,105,101,8,0,12,46,109,115,103,46,99,111,111,107,105,101,115,8,0,16,46,109,115,103,65,118,105,115,111,67,111,111,107,105,101,115,8,0,11,46,109,115,103,95,99,111,111,107,105,101,8,0,12,46,109,115,103,95,99,111,111,107,105,101,115,8,0,21,46,109,115,103,98,111,120,45,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,10,46,109,115,103,99,111,111,107,105,101,8,0,16,46,109,115,103,119,114,97,112,112,101,114,46,103,100,112,114,8,0,32,46,109,115,105,116,45,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,119,114,97,112,112,101,114,8,0,17,46,109,115,108,50,67,111,111,107,105,101,78,111,116,105,99,101,8,0,12,46,109,115,110,45,99,111,111,107,105,101,115,8,0,24,46,109,115,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,29,46,109,115,116,45,103,100,112,114,95,95,99,111,111,107,105,101,45,98,97,114,45,119,114,97,112,112,101,114,8,0,21,46,109,116,45,83,104,97,114,101,100,67,111,111,107,105,101,76,97,121,101,114,8,0,11,46,109,116,45,99,99,45,98,110,110,114,8,0,22,46,109,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,8,0,18,46,109,116,99,111,111,107,105,101,45,45,118,105,115,105,98,108,101,8,0,17,46,109,116,100,101,45,114,103,112,100,45,119,105,110,100,111,119,8,0,32,46,109,116,118,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,115,99,111,110,116,97,105,110,101,114,8,0,14,46,109,117,45,99,111,111,107,105,101,45,98,111,120,8,0,10,46,109,117,95,99,111,111,107,105,101,8,0,21,46,109,117,95,99,111,111,107,105,101,95,98,97,99,107,103,114,111,117,110,100,8,0,18,46,109,117,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,21,46,109,117,105,45,106,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,109,117,110,105,119,101,98,45,99,111,111,107,105,101,115,8,0,11,46,109,117,112,45,99,111,111,107,105,101,8,0,17,46,109,117,115,116,95,115,104,111,119,95,99,111,111,107,105,101,8,0,11,46,109,118,45,99,111,111,107,105,101,115,8,0,19,46,109,118,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,16,46,109,118,104,45,103,100,112,114,45,98,97,110,110,101,114,8,0,27,46,109,119,45,99,111,111,107,105,101,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,37,46,109,119,45,100,115,103,118,111,45,99,111,111,107,105,101,45,115,108,105,100,101,98,97,114,45,102,105,120,101,100,45,98,103,95,48,49,8,0,28,46,109,119,45,100,115,103,118,111,45,99,111,111,107,105,101,45,115,108,105,100,101,98,97,114,95,48,49,8,0,17,46,109,119,45,100,115,103,118,111,45,111,118,101,114,108,97,121,8,0,28,46,109,119,45,100,115,103,118,111,45,111,118,101,114,108,97,121,45,98,97,99,107,103,114,111,117,110,100,8,0,33,46,109,119,45,110,111,116,105,102,105,99,97,116,105,111,110,45,116,97,103,45,99,111,111,107,105,101,80,111,108,105,99,121,8,0,14,46,109,119,95,99,111,111,107,105,101,95,98,97,114,8,0,19,46,109,119,95,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,8,0,15,46,109,120,100,45,99,111,111,107,105,101,45,98,97,114,8,0,19,46,109,120,100,45,110,101,119,45,99,111,111,107,105,101,45,98,97,114,8,0,17,46,109,120,109,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,19,46,109,120,117,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,19,46,109,121,45,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,8,0,11,46,109,121,45,99,111,111,107,105,101,115,8,0,12,46,109,121,67,111,111,107,105,101,66,97,114,8,0,23,46,109,121,95,99,111,111,107,105,101,108,97,121,101,114,95,111,118,101,114,108,97,121,8,0,20,46,109,121,99,109,112,65,108,101,114,116,66,105,103,66,111,116,116,111,109,8,0,10,46,109,121,99,111,111,107,105,101,115,8,0,22,46,109,121,115,104,112,95,99,111,111,107,105,101,115,95,119,97,114,110,105,110,103,8,0,22,46,109,122,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,98,97,114,8,0,17,46,109,122,95,99,111,111,107,105,101,67,111,110,115,101,110,116,8,0,22,46,110,45,45,104,101,108,112,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,110,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,20,46,110,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,15,46,110,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,18,46,110,48,52,48,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,18,46,110,97,102,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,14,46,110,97,103,109,115,103,95,99,111,111,107,105,101,8,0,24,46,110,97,109,101,115,112,97,99,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,19,46,110,97,110,111,98,97,114,45,99,111,111,107,105,101,45,99,111,103,8,0,20,46,110,97,114,105,122,101,110,105,45,101,117,45,99,111,111,107,105,101,115,8,0,29,46,110,97,115,97,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,14,46,110,97,116,67,111,111,107,105,101,73,110,102,111,8,0,22,46,110,97,118,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,26,46,110,97,118,45,110,101,119,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,13,46,110,97,118,95,95,99,111,111,107,105,101,115,8,0,12,46,110,97,118,95,99,111,111,107,105,101,115,8,0,14,46,110,97,118,98,97,114,45,99,111,111,107,105,101,8,0,15,46,110,97,118,98,97,114,45,99,111,111,107,105,101,115,8,0,28,46,110,97,118,98,97,114,45,102,105,120,101,100,45,98,111,116,116,111,109,46,99,111,111,107,105,101,115,8,0,12,46,110,97,118,98,97,114,45,103,100,112,114,8,0,15,46,110,97,118,98,97,114,45,112,114,105,118,97,99,121,8,0,25,46,110,97,118,105,103,97,116,105,111,110,45,99,111,111,107,105,101,98,98,97,110,110,101,114,8,0,35,46,110,97,118,105,103,97,116,105,111,110,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,99,111,111,107,105,101,98,97,114,8,0,20,46,110,97,118,105,103,97,116,105,111,110,95,95,99,111,111,107,105,101,115,8,0,22,46,110,97,121,108,111,114,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,22,46,110,97,122,97,114,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,8,0,16,46,110,98,45,45,99,111,111,107,105,101,112,111,112,117,112,8,0,10,46,110,98,45,99,111,111,107,105,101,8,0,19,46,110,98,100,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,16,46,110,98,110,45,99,111,111,107,105,101,45,105,110,102,111,8,0,16,46,110,98,115,67,111,111,107,105,101,78,111,116,105,99,101,8,0,23,46,110,99,97,45,99,111,111,107,105,101,115,97,99,99,101,112,116,45,108,105,110,101,8,0,21,46,110,99,103,87,101,65,114,101,85,115,105,110,103,67,111,111,107,105,101,115,8,0,13,46,110,99,109,112,95,95,98,97,110,110,101,114,8,0,16,46,110,99,109,112,95,95,110,111,114,109,97,108,105,115,101,8,0,14,46,110,99,111,105,45,45,45,98,101,104,105,110,100,8,0,13,46,110,100,45,99,111,111,107,105,101,66,97,114,8,0,17,46,110,101,67,111,111,107,105,101,115,77,101,115,115,97,103,101,8,0,21,46,110,101,98,111,116,104,101,109,101,45,99,111,111,107,105,101,45,98,97,114,8,0,24,46,110,101,100,45,109,111,100,97,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,38,46,110,101,100,102,105,110,105,116,121,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,22,46,110,101,111,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,66,97,114,8,0,15,46,110,101,111,110,45,99,111,111,107,105,101,98,97,114,8,0,11,46,110,101,119,45,99,111,111,107,105,101,8,0,18,46,110,101,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,110,101,119,45,99,111,111,107,105,101,45,114,117,108,101,115,8,0,19,46,110,101,119,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,17,46,110,101,119,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,15,46,110,101,119,45,101,117,45,99,111,111,107,105,101,115,8,0,14,46,110,101,119,67,110,105,108,66,97,110,110,101,114,8,0,16,46,110,101,119,95,99,111,111,107,105,101,95,105,110,102,111,8,0,33,46,110,101,119,115,108,101,116,116,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,115,8,0,19,46,110,101,120,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,28,46,110,101,120,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,119,114,97,112,112,101,114,8,0,18,46,110,101,120,116,45,99,111,111,107,105,101,104,111,108,100,101,114,8,0,20,46,110,101,120,117,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,110,102,45,99,111,111,107,105,101,115,8,0,16,46,110,102,45,106,115,45,99,111,111,107,105,101,98,111,120,8,0,24,46,110,102,45,112,114,111,99,111,111,107,105,101,45,98,111,116,116,111,109,45,98,97,114,8,0,21,46,110,102,45,112,114,111,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,17,46,110,103,45,99,111,111,107,105,101,45,102,111,111,116,101,114,8,0,38,46,110,103,45,105,115,111,108,97,116,101,45,115,99,111,112,101,91,100,97,116,97,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,93,8,0,39,46,110,103,45,115,99,111,112,101,91,100,97,116,97,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,105,114,101,99,116,105,118,101,93,8,0,52,46,110,103,45,115,99,111,112,101,91,100,97,116,97,45,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,67,111,111,107,105,101,83,105,103,110,67,111,110,116,114,111,108,108,101,114,34,93,8,0,42,46,110,103,45,115,99,111,112,101,91,100,97,116,97,45,110,103,45,115,104,111,119,61,34,115,104,111,119,67,111,111,107,105,101,66,97,110,110,101,114,34,93,8,0,37,46,110,103,45,115,99,111,112,101,91,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,67,111,111,107,105,101,67,116,114,108,34,93,8,0,44,46,110,103,45,115,99,111,112,101,91,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,67,111,111,107,105,101,115,65,99,99,101,112,116,67,116,114,108,34,93,8,0,45,46,110,103,45,115,99,111,112,101,91,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,67,111,111,107,105,101,115,67,111,110,115,101,110,116,67,116,114,108,34,93,8,0,33,46,110,103,45,115,99,111,112,101,91,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,99,111,111,107,105,101,34,93,8,0,37,46,110,103,45,115,99,111,112,101,91,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,99,111,111,107,105,101,67,116,114,108,34,93,8,0,40,46,110,103,45,115,99,111,112,101,91,110,103,45,99,111,110,116,114,111,108,108,101,114,61,34,99,111,111,107,105,101,76,97,119,67,116,114,108,34,93,8,0,32,46,110,103,45,115,99,111,112,101,91,110,103,45,105,102,61,34,99,111,111,107,105,101,87,97,114,110,105,110,103,34,93,8,0,33,46,110,103,45,115,99,111,112,101,91,110,103,45,105,102,61,34,115,104,111,119,67,111,111,107,105,101,73,110,102,111,34,93,8,0,24,46,110,103,45,115,116,97,114,45,105,110,115,101,114,116,101,100,46,99,111,111,107,105,101,8,0,25,46,110,103,45,115,116,97,114,45,105,110,115,101,114,116,101,100,46,99,111,111,107,105,101,115,8,0,15,46,110,103,115,45,99,111,111,107,105,101,45,98,97,114,8,0,10,46,110,104,45,99,111,111,107,105,101,8,0,17,46,110,105,45,99,111,111,107,105,101,67,111,110,115,101,110,116,8,0,28,46,110,105,116,101,97,45,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,9,46,110,106,116,45,103,100,112,114,8,0,20,46,110,106,116,45,103,100,112,114,45,102,117,108,108,95,119,105,100,116,104,8,0,15,46,110,106,116,45,103,100,112,114,45,112,111,112,117,112,8,0,16,46,110,107,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,17,46,110,107,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,15,46,110,107,109,99,111,111,107,105,101,97,108,101,114,116,8,0,14,46,110,108,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,110,108,45,99,111,111,107,105,101,112,111,108,105,99,121,8,0,11,46,110,108,95,99,111,111,107,105,101,115,8,0,16,46,110,109,45,99,111,111,107,105,101,112,111,108,105,99,121,8,0,17,46,110,109,67,111,111,107,105,101,78,111,116,105,102,105,101,114,8,0,20,46,110,110,112,45,97,112,112,45,99,111,111,107,105,101,45,105,110,102,111,8,0,11,46,110,111,45,45,99,111,111,107,105,101,8,0,26,46,110,111,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,97,114,110,105,110,103,8,0,18,46,110,111,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,31,46,110,111,45,99,111,111,107,105,101,115,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,22,46,110,111,45,101,105,107,97,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,28,46,110,111,97,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,98,97,110,110,101,114,8,0,16,46,110,111,101,95,99,111,111,107,105,101,95,99,110,105,108,8,0,22,46,110,111,107,105,97,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,17,46,110,111,110,109,111,100,97,108,45,45,99,111,111,107,105,101,8,0,18,46,110,111,114,109,97,116,105,118,97,45,99,111,111,107,105,101,115,8,0,20,46,110,111,114,115,95,99,111,111,107,105,101,115,95,110,111,116,105,99,101,8,0,20,46,110,111,116,45,97,99,99,101,112,116,101,100,46,99,111,111,107,105,101,8,0,12,46,110,111,116,101,95,99,111,111,107,105,101,8,0,23,46,110,111,116,105,99,101,45,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,20,46,110,111,116,105,99,101,45,45,105,110,116,45,99,111,111,107,105,101,115,8,0,11,46,110,111,116,105,99,101,45,98,97,114,8,0,21,46,110,111,116,105,99,101,45,98,108,111,99,107,46,99,111,111,107,105,101,115,8,0,14,46,110,111,116,105,99,101,45,99,111,111,107,105,101,8,0,26,46,110,111,116,105,99,101,45,99,111,111,107,105,101,115,45,104,111,114,105,122,111,110,116,97,108,8,0,12,46,110,111,116,105,99,101,45,103,100,112,114,8,0,11,46,110,111,116,105,99,101,45,116,111,117,8,0,21,46,110,111,116,105,99,101,67,111,111,107,105,101,115,67,111,110,116,101,110,116,8,0,17,46,110,111,116,105,99,101,67,111,111,107,105,101,115,85,115,101,8,0,15,46,110,111,116,105,99,101,95,99,111,111,107,105,101,115,8,0,22,46,110,111,116,105,99,101,95,110,111,116,105,99,101,95,99,111,111,107,105,101,115,8,0,10,46,110,111,116,105,102,45,98,97,114,8,0,22,46,110,111,116,105,102,45,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,8,0,12,46,110,111,116,105,102,67,111,111,107,105,101,8,0,19,46,110,111,116,105,102,95,99,111,111,107,105,101,95,112,97,110,101,108,8,0,19,46,110,111,116,105,102,105,99,97,95,99,111,111,107,105,101,98,97,114,8,0,21,46,110,111,116,105,102,105,99,97,99,97,111,45,101,115,116,97,116,105,99,97,8,0,21,46,110,111,116,105,102,105,99,97,99,105,111,110,45,99,111,111,107,105,101,115,8,0,19,46,110,111,116,105,102,105,99,97,116,105,111,110,45,45,67,78,73,76,8,0,19,46,110,111,116,105,102,105,99,97,116,105,111,110,45,45,71,68,80,82,8,0,21,46,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,8,0,27,46,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,22,46,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,115,8,0,28,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,45,45,99,111,111,107,105,101,8,0,25,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,45,45,99,111,111,107,105,101,8,0,39,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,91,100,97,116,97,45,98,97,114,45,116,121,112,101,61,34,103,100,112,114,34,93,8,0,45,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,91,100,97,116,97,45,105,100,61,34,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,34,93,8,0,27,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,115,101,95,95,99,111,111,107,105,101,115,8,0,30,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,46,99,111,111,107,105,101,8,0,20,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,8,0,27,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,29,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,8,0,24,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,104,105,110,116,8,0,21,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,115,8,0,18,46,110,111,116,105,102,105,99,97,116,105,111,110,45,103,100,112,114,8,0,43,46,110,111,116,105,102,105,99,97,116,105,111,110,45,108,97,121,111,117,116,91,110,103,45,99,108,97,115,115,61,34,99,111,111,107,105,101,45,98,97,114,34,93,8,0,27,46,110,111,116,105,102,105,99,97,116,105,111,110,45,119,105,100,103,101,116,46,99,111,111,107,105,101,8,0,28,46,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,45,98,111,116,116,111,109,8,0,20,46,110,111,116,105,102,105,99,97,116,105,111,110,46,99,111,111,107,105,101,8,0,28,46,110,111,116,105,102,105,99,97,116,105,111,110,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,41,46,110,111,116,105,102,105,99,97,116,105,111,110,46,99,111,111,107,105,101,115,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,25,46,110,111,116,105,102,105,99,97,116,105,111,110,46,115,104,111,119,45,99,111,111,107,105,101,8,0,48,46,110,111,116,105,102,105,99,97,116,105,111,110,66,97,114,91,100,97,116,97,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,112,111,108,105,99,121,93,8,0,29,46,110,111,116,105,102,105,99,97,116,105,111,110,80,97,110,101,108,45,45,99,111,111,107,105,101,66,97,114,8,0,49,46,110,111,116,105,102,105,99,97,116,105,111,110,91,100,97,116,97,45,110,111,116,105,102,105,99,97,116,105,111,110,61,34,97,99,99,101,112,116,45,99,111,111,107,105,101,115,34,93,8,0,49,46,110,111,116,105,102,105,99,97,116,105,111,110,91,100,97,116,97,45,110,111,116,105,102,105,99,97,116,105,111,110,61,34,99,111,111,99,107,105,101,67,111,110,115,101,110,116,34,93,8,0,36,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,98,111,120,45,45,112,101,114,115,105,115,116,101,110,116,99,111,111,107,105,101,8,0,29,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,99,111,110,116,101,110,116,45,99,111,111,107,105,101,8,0,22,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,99,111,111,107,105,101,115,8,0,27,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,105,116,101,109,45,45,99,111,111,107,105,101,8,0,30,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,109,101,115,115,97,103,101,46,99,111,111,107,105,101,115,8,0,41,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,119,114,97,112,112,101,114,91,100,97,116,97,45,105,100,61,34,99,111,111,107,105,101,115,34,93,8,0,24,46,110,111,116,105,102,105,99,97,116,105,111,110,95,98,111,120,46,99,111,111,107,105,101,8,0,20,46,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,111,107,105,101,8,0,44,46,110,111,116,105,102,105,99,97,116,105,111,110,95,119,114,97,112,91,100,97,116,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,93,8,0,40,46,110,111,116,105,102,105,99,97,116,105,111,110,115,45,98,97,114,95,95,105,110,102,111,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,8,0,15,46,110,111,116,105,102,121,45,45,99,111,111,107,105,101,8,0,25,46,110,111,116,105,102,121,45,98,97,110,110,101,114,91,105,114,45,110,111,116,105,102,121,93,8,0,14,46,110,111,116,105,102,121,45,99,111,111,107,105,101,8,0,15,46,110,111,116,105,102,121,45,99,111,111,107,105,101,115,8,0,32,46,110,111,116,105,102,121,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,8,0,13,46,110,111,116,105,102,121,67,111,111,107,105,101,8,0,18,46,110,111,116,105,102,121,67,111,111,107,105,101,73,110,110,101,114,8,0,19,46,110,111,116,105,102,121,67,111,111,107,105,101,115,80,97,110,101,108,8,0,22,46,110,111,116,105,102,121,95,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,29,46,110,111,116,105,102,121,95,99,111,111,107,105,101,45,119,114,97,112,112,101,114,45,98,111,116,116,111,109,8,0,24,46,110,111,116,105,102,121,106,115,45,99,111,111,107,105,101,98,97,114,45,98,97,115,101,8,0,29,46,110,111,116,105,102,121,106,115,45,110,111,116,105,102,121,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,12,46,110,111,116,121,95,99,111,111,107,105,101,8,0,22,46,110,111,117,110,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,17,46,110,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,14,46,110,112,45,103,100,112,114,45,109,111,100,97,108,8,0,17,46,110,112,95,68,105,97,108,111,103,67,111,110,115,101,110,116,8,0,11,46,110,112,110,45,99,111,111,107,105,101,8,0,15,46,110,112,111,95,99,99,95,114,101,103,117,108,97,114,8,0,15,46,110,113,45,99,45,67,111,111,107,105,101,66,97,114,8,0,13,46,110,113,45,99,45,82,103,112,100,66,97,114,8,0,13,46,110,113,45,99,45,114,103,112,100,66,97,114,8,0,17,46,110,114,45,99,111,111,107,105,101,45,97,99,99,101,112,116,8,0,23,46,110,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,33,46,110,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,109,112,111,110,101,110,116,8,0,29,46,110,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,119,97,108,108,8,0,32,46,110,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,119,114,97,112,112,101,114,8,0,24,46,110,114,45,112,114,105,118,97,99,121,45,109,111,100,97,108,45,98,111,120,45,118,50,8,0,9,46,110,114,99,111,111,107,105,101,8,0,15,46,110,114,102,45,100,105,115,99,108,97,105,109,101,114,8,0,17,46,110,114,103,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,18,46,110,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,26,46,110,115,45,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,8,0,11,46,110,115,45,99,111,111,107,105,101,115,8,0,18,46,110,115,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,8,0,16,46,110,115,45,116,121,112,101,45,99,111,111,107,105,101,115,8,0,31,46,110,115,103,45,45,99,111,111,107,105,101,115,46,110,115,103,45,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,17,46,110,115,107,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,27,46,110,116,45,102,111,111,116,101,114,45,99,111,111,107,105,101,45,115,116,97,116,101,109,101,110,116,8,0,10,46,110,116,102,67,111,111,107,105,101,8,0,24,46,110,116,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,8,0,27,46,110,117,45,99,111,111,107,105,101,115,45,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,8,0,33,46,110,117,120,45,115,105,103,110,117,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,101,110,116,8,0,23,46,110,118,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,10,46,110,118,99,111,111,107,105,101,115,8,0,16,46,110,118,99,111,111,107,105,101,115,45,111,117,116,101,114,8,0,17,46,110,118,116,95,99,111,111,107,105,101,110,111,116,105,99,101,8,0,12,46,110,118,120,45,99,111,111,107,105,101,115,8,0,21,46,110,118,120,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,20,46,110,119,106,115,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,8,0,23,46,110,120,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,14,46,110,120,109,50,67,111,111,107,105,101,66,97,114,8,0,32,46,110,121,116,99,45,45,45,99,111,111,107,105,101,98,97,110,110,101,114,45,45,45,99,111,110,116,97,105,110,101,114,8,0,26,46,111,45,67,111,111,107,105,101,115,66,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,9,46,111,45,99,111,111,107,105,101,8,0,16,46,111,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,13,46,111,45,99,111,111,107,105,101,45,98,97,114,8,0,15,46,111,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,17,46,111,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,17,46,111,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,11,46,111,45,99,111,111,107,105,101,79,107,8,0,14,46,111,45,99,111,111,107,105,101,108,97,121,101,114,8,0,10,46,111,45,99,111,111,107,105,101,115,8,0,18,46,111,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,8,0,35,46,111,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,119,105,100,103,101,116,95,95,99,111,110,116,97,105,110,101,114,8,0,28,46,111,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,95,95,99,111,110,116,97,105,110,101,114,8,0,15,46,111,45,99,111,111,107,105,101,115,95,95,114,111,119,8,0,27,46,111,45,99,111,114,101,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,111,45,100,115,103,118,111,45,119,114,97,112,112,101,114,8,0,22,46,111,50,120,45,99,111,111,107,105,101,98,97,114,45,119,114,97,112,112,101,114,8,0,26,46,111,55,99,111,111,107,105,101,45,105,110,102,111,45,112,114,111,109,112,116,45,119,114,97,112,8,0,8,46,111,67,111,111,107,105,101,8,0,19,46,111,95,99,111,111,107,105,101,115,95,100,105,115,99,114,101,116,101,8,0,19,46,111,97,118,101,97,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,15,46,111,97,120,45,99,111,111,107,105,101,45,109,115,103,8,0,11,46,111,98,45,99,111,111,107,105,101,115,8,0,19,46,111,98,45,99,111,111,107,105,101,115,45,99,111,110,116,101,110,116,8,0,21,46,111,98,45,101,117,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,25,46,111,98,45,112,117,98,108,105,99,45,119,105,100,103,101,116,45,99,111,111,107,105,101,115,8,0,26,46,111,98,102,120,45,99,111,111,107,105,101,45,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,9,46,111,98,115,95,99,110,105,108,8,0,21,46,111,99,45,100,105,115,99,108,97,105,109,101,114,77,101,115,115,97,103,101,8,0,14,46,111,99,95,99,98,95,119,114,97,112,112,101,114,8,0,26,46,111,99,99,108,115,115,45,97,108,101,114,116,45,45,99,111,111,107,105,101,112,111,112,117,112,8,0,22,46,111,99,109,45,99,111,110,116,97,105,110,101,114,45,45,98,97,110,110,101,114,8,0,20,46,111,99,116,111,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,20,46,111,100,97,118,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,10,46,111,100,100,99,111,111,107,105,101,8,0,15,46,111,101,45,99,111,111,107,105,101,115,45,108,97,119,8,0,25,46,111,104,95,99,111,111,107,105,101,95,110,111,116,105,99,101,95,119,114,97,112,112,101,114,8,0,15,46,111,105,45,99,99,112,97,45,110,111,116,105,99,101,8,0,15,46,111,105,45,99,99,112,97,45,116,111,103,103,108,101,8,0,12,46,111,106,99,95,99,111,110,115,101,110,116,8,0,14,46,111,107,67,111,111,107,105,101,80,97,110,101,108,8,0,8,46,111,107,111,111,107,105,101,8,0,11,46,111,108,100,45,99,111,111,107,105,101,8,0,11,46,111,108,119,45,99,111,111,107,105,101,8,0,28,46,111,108,121,45,119,101,98,45,117,105,95,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,10,46,111,109,45,99,111,111,107,105,101,8,0,20,46,111,109,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,8,0,32,46,111,109,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,112,111,112,117,112,8,0,29,46,111,109,110,105,117,109,95,99,111,111,107,105,101,115,95,112,111,112,117,112,95,119,114,97,112,112,101,114,8,0,10,46,111,110,46,99,111,111,107,105,101,8,0,8,46,111,110,46,114,103,112,100,8,0,21,46,111,110,99,101,45,117,112,111,110,45,103,97,45,99,111,110,115,101,110,116,8,0,18,46,111,110,101,45,97,108,101,114,116,45,45,99,111,111,107,105,101,8,0,18,46,111,110,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,14,46,111,110,101,84,114,117,115,116,76,97,121,101,114,8,0,29,46,111,110,101,105,110,100,105,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,30,46,111,110,101,112,97,103,101,114,95,103,101,110,101,114,97,108,95,99,111,111,107,105,101,112,111,108,105,99,121,8,0,24,46,111,110,101,116,114,117,115,116,45,112,99,45,100,97,114,107,45,102,105,108,116,101,114,8,0,22,46,111,110,108,105,110,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,29,46,111,110,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,11,46,111,110,115,45,99,111,111,107,105,101,8,0,12,46,111,110,116,45,99,111,111,107,105,101,115,8,0,20,46,111,110,116,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,17,46,111,111,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,14,46,111,111,110,45,100,115,45,98,97,110,110,101,114,8,0,22,46,111,112,97,99,105,116,121,95,108,97,121,101,114,95,99,111,110,115,101,110,116,8,0,19,46,111,112,99,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,19,46,111,112,99,45,109,97,110,97,103,101,114,45,99,111,111,107,105,101,8,0,13,46,111,112,101,110,46,99,111,111,107,105,101,115,8,0,10,46,111,112,101,110,46,114,103,112,100,8,0,19,46,111,112,108,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,8,0,15,46,111,112,116,45,97,99,116,105,111,110,45,98,97,114,8,0,26,46,111,112,116,97,110,111,110,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,22,46,111,112,116,97,110,111,110,45,115,104,111,119,45,115,101,116,116,105,110,103,115,8,0,36,46,111,112,116,97,110,111,110,45,115,104,111,119,45,115,101,116,116,105,110,103,115,45,112,111,112,117,112,45,119,114,97,112,112,101,114,8,0,23,46,111,112,116,97,110,111,110,45,116,111,103,103,108,101,45,100,105,115,112,108,97,121,8,0,12,46,111,112,116,105,110,45,115,116,97,116,115,8,0,12,46,111,112,116,105,110,67,111,111,107,105,101,8,0,17,46,111,112,116,111,109,97,67,111,111,107,105,101,87,114,97,112,8,0,18,46,111,114,45,99,111,111,107,105,101,95,95,98,97,110,110,101,114,8,0,13,46,111,114,97,107,101,108,65,100,118,105,99,101,8,0,25,46,111,114,98,105,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,102,111,114,109,8,0,16,46,111,114,103,45,99,111,111,107,105,101,45,109,105,110,105,8,0,18,46,111,114,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,111,115,97,110,111,45,99,109,45,119,105,110,100,111,119,8,0,10,46,111,115,99,111,111,107,105,101,115,8,0,12,46,111,115,119,45,112,114,105,118,97,99,121,8,0,18,46,111,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,111,116,45,115,100,107,45,115,104,111,119,45,115,101,116,116,105,110,103,115,8,0,22,46,111,116,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,8,0,23,46,111,116,95,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,95,98,116,110,8,0,15,46,111,117,45,99,111,111,107,105,101,115,45,98,97,114,8,0,32,46,111,117,116,101,114,45,112,114,105,118,97,99,121,45,116,111,112,45,110,97,118,105,103,97,116,105,111,110,66,97,114,8,0,15,46,111,117,116,101,114,67,111,111,107,105,101,66,97,114,8,0,9,46,111,118,99,111,111,107,105,101,8,0,16,46,111,118,101,114,108,97,121,45,45,99,111,111,107,105,101,8,0,15,46,111,118,101,114,108,97,121,45,99,111,111,107,105,101,8,0,21,46,111,118,101,114,108,97,121,45,99,111,111,107,105,101,45,98,108,111,99,107,8,0,16,46,111,118,101,114,108,97,121,45,99,111,111,107,105,101,115,8,0,25,46,111,118,101,114,108,97,121,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,115,8,0,14,46,111,118,101,114,108,97,121,67,111,111,107,105,101,8,0,15,46,111,118,101,114,108,97,121,67,111,111,107,105,101,115,8,0,16,46,111,118,101,114,108,97,121,95,95,99,111,111,107,105,101,8,0,32,46,111,118,101,114,108,97,121,95,95,115,104,97,100,111,119,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,111,118,101,114,108,97,121,95,99,111,111,107,105,101,98,97,110,110,101,114,8,0,12,46,111,118,101,114,108,97,121,95,112,114,105,8,0,19,46,111,118,101,114,108,97,121,98,108,97,99,107,67,111,111,107,105,101,8,0,14,46,111,118,101,114,108,97,121,99,111,111,107,105,101,8,0,21,46,111,118,101,114,108,97,121,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,16,46,111,119,45,99,111,111,107,105,101,45,119,114,97,112,112,8,0,10,46,111,119,95,99,111,111,107,105,101,8,0,26,46,111,119,108,95,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,95,106,115,8,0,10,46,112,45,99,111,111,99,107,105,101,8,0,17,46,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,15,46,112,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,16,46,112,45,99,111,111,107,105,101,45,112,114,111,109,112,116,8,0,12,46,112,45,99,111,111,107,105,101,66,111,120,8,0,12,46,112,45,99,111,111,107,105,101,98,97,114,8,0,10,46,112,45,99,111,111,107,105,101,115,8,0,13,46,112,45,102,105,120,101,100,46,114,103,112,100,8,0,7,46,112,45,103,100,112,114,8,0,13,46,112,45,103,100,112,114,45,109,111,100,97,108,8,0,19,46,112,45,109,97,120,45,119,105,100,116,104,95,99,111,111,107,105,101,8,0,33,46,112,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,23,46,112,45,116,111,112,95,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,8,0,9,46,112,95,99,111,111,107,105,101,8,0,12,46,112,97,98,107,95,99,111,111,107,105,101,8,0,16,46,112,97,100,100,105,110,103,46,99,111,111,107,105,101,115,8,0,13,46,112,97,100,100,105,110,103,95,103,100,112,114,8,0,15,46,112,97,103,101,32,62,32,46,99,111,111,107,105,101,8,0,16,46,112,97,103,101,32,62,32,46,99,111,111,107,105,101,115,8,0,13,46,112,97,103,101,45,45,99,111,111,107,105,101,8,0,20,46,112,97,103,101,45,98,97,110,110,101,114,95,95,99,111,111,107,105,101,8,0,12,46,112,97,103,101,45,99,111,111,107,105,101,8,0,19,46,112,97,103,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,112,97,103,101,45,99,111,111,107,105,101,45,119,97,114,110,8,0,13,46,112,97,103,101,45,99,111,111,107,105,101,115,8,0,18,46,112,97,103,101,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,21,46,112,97,103,101,45,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,8,0,18,46,112,97,103,101,45,100,105,97,108,111,103,45,100,115,103,118,111,8,0,20,46,112,97,103,101,45,104,101,97,100,101,114,95,95,99,111,111,107,105,101,8,0,29,46,112,97,103,101,45,104,101,97,100,101,114,95,95,99,111,111,107,105,101,45,110,111,116,105,102,121,101,114,8,0,28,46,112,97,103,101,45,112,114,105,118,97,99,121,95,95,100,105,97,108,111,103,95,98,97,110,110,101,114,8,0,21,46,112,97,103,101,45,119,97,114,110,105,110,103,95,99,111,111,107,105,101,115,8,0,29,46,112,97,103,101,45,119,114,97,112,45,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,8,0,12,46,112,97,103,101,67,111,111,107,105,101,115,8,0,25,46,112,97,103,101,70,111,111,116,101,114,45,97,99,99,101,112,116,67,111,111,107,105,101,115,8,0,12,46,112,97,103,101,72,67,111,111,107,105,101,8,0,13,46,112,97,103,101,95,95,99,111,111,107,105,101,8,0,24,46,112,97,103,101,95,95,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,14,46,112,97,103,101,95,95,99,111,111,107,105,101,115,8,0,26,46,112,97,103,101,95,95,100,105,115,99,108,97,105,109,101,114,45,45,99,111,111,107,105,101,115,8,0,11,46,112,97,103,101,95,95,103,100,112,114,8,0,25,46,112,97,103,101,95,95,115,117,114,118,101,121,45,99,111,111,107,105,101,45,105,110,102,111,8,0,16,46,112,97,103,101,105,110,102,111,45,99,111,111,107,105,101,8,0,25,46,112,97,110,101,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,45,116,121,112,101,8,0,23,46,112,97,110,101,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,13,46,112,97,110,101,108,45,99,111,111,107,105,101,8,0,14,46,112,97,110,101,108,45,99,111,111,107,105,101,115,8,0,13,46,112,97,110,101,108,95,99,111,111,107,105,101,8,0,31,46,112,97,110,116,97,45,106,115,45,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,8,0,31,46,112,97,112,101,114,45,99,108,105,101,110,116,45,112,114,105,118,97,99,121,45,97,103,114,101,101,109,101,110,116,8,0,24,46,112,97,114,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,105,110,102,111,8,0,19,46,112,97,114,101,110,116,45,98,111,120,45,99,111,111,107,105,101,115,8,0,21,46,112,97,114,105,115,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,15,46,112,97,114,107,45,99,111,111,107,105,101,98,97,114,8,0,22,46,112,97,114,107,45,115,110,97,99,107,98,97,114,45,99,111,111,107,105,101,115,8,0,13,46,112,97,114,116,45,99,111,111,107,105,101,115,8,0,15,46,112,97,114,116,105,97,108,45,99,111,111,107,105,101,8,0,13,46,112,97,115,101,107,95,99,111,111,107,105,101,8,0,27,46,112,97,115,119,50,48,49,53,99,111,111,107,105,101,115,45,99,111,111,107,105,101,45,112,111,112,8,0,12,46,112,97,118,101,67,111,111,107,105,101,115,8,0,18,46,112,98,45,67,111,111,107,105,101,115,67,111,110,115,101,110,116,8,0,29,46,112,98,45,97,112,112,95,95,97,99,99,101,112,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,112,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,20,46,112,98,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,11,46,112,98,45,99,111,111,107,105,101,115,8,0,17,46,112,99,45,99,111,111,107,105,101,45,97,99,99,101,112,116,8,0,14,46,112,99,45,99,111,111,107,105,101,45,98,97,114,8,0,18,46,112,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,11,46,112,99,102,45,99,111,111,107,105,101,8,0,19,46,112,99,105,45,103,108,111,98,97,108,45,99,111,111,107,105,101,115,8,0,8,46,112,99,111,111,107,105,101,8,0,9,46,112,99,111,111,107,105,101,115,8,0,18,46,112,99,121,95,99,111,111,107,105,101,95,110,111,116,105,99,101,8,0,12,46,112,100,112,97,45,99,111,111,107,105,101,8,0,21,46,112,100,120,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,21,46,112,101,97,95,99,111,111,107,95,98,111,116,116,111,109,114,105,103,104,116,8,0,27,46,112,101,97,95,99,111,111,107,95,109,111,114,101,95,105,110,102,111,95,112,111,112,111,118,101,114,8,0,17,46,112,101,97,95,99,111,111,107,95,119,114,97,112,112,101,114,8,0,15,46,112,101,110,99,105,45,103,112,114,100,45,108,97,119,8,0,20,46,112,101,110,99,105,45,119,114,97,112,45,103,112,114,100,45,108,97,119,8,0,22,46,112,101,114,45,99,111,111,107,105,101,115,45,97,110,100,45,116,101,114,109,115,8,0,14,46,112,101,114,115,111,110,97,67,111,111,107,105,101,8,0,29,46,112,101,114,115,111,110,97,108,45,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,98,97,114,8,0,27,46,112,101,114,115,111,110,97,108,68,97,116,97,67,111,110,102,105,114,109,87,114,97,112,112,101,114,8,0,30,46,112,101,114,115,111,110,97,108,105,122,97,116,105,111,110,77,101,115,115,97,103,101,87,114,97,112,112,101,114,8,0,11,46,112,101,115,99,111,111,107,105,101,115,8,0,28,46,112,101,116,114,97,45,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,20,46,112,102,45,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,8,0,16,46,112,102,115,45,99,111,111,107,105,101,115,45,98,97,114,8,0,19,46,112,102,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,10,46,112,103,45,99,111,111,107,105,101,8,0,21,46,112,104,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,15,46,112,104,45,99,111,111,107,105,101,45,105,110,102,111,8,0,33,46,112,104,45,99,111,111,107,105,101,45,112,111,112,117,112,45,118,50,45,118,105,101,119,50,45,100,101,102,97,117,108,116,8,0,11,46,112,104,45,99,111,111,107,105,101,115,8,0,27,46,112,104,105,108,97,100,101,108,112,104,105,97,45,111,112,116,105,110,45,118,105,115,105,98,108,101,8,0,25,46,112,104,105,108,111,114,111,95,99,111,111,107,105,101,115,45,45,112,111,112,111,118,101,114,8,0,20,46,112,104,112,114,111,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,22,46,112,104,115,45,99,111,111,107,105,101,45,112,111,112,117,112,45,97,114,101,97,8,0,21,46,112,104,117,110,107,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,18,46,112,105,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,17,46,112,105,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,11,46,112,105,101,95,99,111,111,107,105,101,8,0,10,46,112,105,101,100,95,99,110,105,108,8,0,18,46,112,105,116,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,23,46,112,105,119,105,107,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,18,46,112,105,120,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,20,46,112,106,45,117,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,112,107,111,45,99,111,111,107,105,101,45,114,111,100,111,8,0,24,46,112,107,111,45,99,111,111,107,105,101,45,114,111,100,111,45,111,118,101,114,108,97,121,8,0,16,46,112,108,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,11,46,112,108,45,99,111,111,107,105,101,115,8,0,15,46,112,108,45,99,111,111,107,105,101,115,45,99,116,97,8,0,23,46,112,108,45,99,111,111,107,105,101,115,45,99,116,97,45,99,111,110,116,97,105,110,8,0,14,46,112,108,97,116,101,45,99,111,111,107,105,101,115,8,0,29,46,112,108,97,116,102,111,114,109,45,45,99,111,111,107,105,101,115,45,45,99,111,110,116,97,105,110,101,114,8,0,18,46,112,108,97,122,109,97,45,99,111,111,107,105,101,45,98,97,114,8,0,26,46,112,108,97,122,109,97,45,99,111,111,107,105,101,45,98,97,114,45,45,97,99,116,105,118,101,8,0,27,46,112,108,103,95,115,121,115,116,101,109,95,101,112,114,105,118,97,99,121,95,109,111,100,117,108,101,8,0,19,46,112,108,114,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,8,0,21,46,112,108,117,103,105,110,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,14,46,112,108,117,103,105,110,95,99,111,111,107,105,101,8,0,10,46,112,109,45,99,111,111,107,105,101,8,0,8,46,112,109,45,103,100,112,114,8,0,25,46,112,109,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,108,111,99,107,8,0,27,46,112,109,119,45,45,99,111,111,107,105,101,115,45,99,111,111,107,105,101,45,98,117,116,116,111,110,8,0,18,46,112,110,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,17,46,112,110,95,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,11,46,112,110,108,45,99,111,111,107,105,101,8,0,17,46,112,110,108,67,111,111,107,105,101,109,101,108,100,105,110,103,8,0,16,46,112,110,111,116,105,102,121,45,99,111,111,107,105,101,115,8,0,19,46,112,110,121,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,27,46,112,111,102,111,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,8,0,11,46,112,111,108,99,111,111,107,105,101,115,8,0,18,46,112,111,108,105,99,121,45,97,99,99,101,112,116,45,98,97,114,8,0,13,46,112,111,108,105,99,121,45,97,108,101,114,116,8,0,14,46,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,11,46,112,111,108,105,99,121,45,98,97,114,8,0,14,46,112,111,108,105,99,121,45,98,111,116,116,111,109,8,0,11,46,112,111,108,105,99,121,45,98,111,120,8,0,14,46,112,111,108,105,99,121,45,99,111,111,107,105,101,8,0,15,46,112,111,108,105,99,121,45,99,111,111,107,105,101,115,8,0,22,46,112,111,108,105,99,121,45,109,101,115,115,97,103,101,46,99,111,111,107,105,101,8,0,36,46,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,45,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,8,0,22,46,112,111,108,105,99,121,45,119,97,114,110,105,110,103,45,98,97,110,110,101,114,8,0,14,46,112,111,108,105,99,121,45,119,105,110,100,111,119,8,0,14,46,112,111,108,105,99,121,46,99,111,111,107,105,101,8,0,10,46,112,111,108,105,99,121,67,104,107,8,0,14,46,112,111,108,105,99,121,77,101,115,115,97,103,101,8,0,14,46,112,111,108,105,99,121,95,102,111,111,116,101,114,8,0,20,46,112,111,108,105,99,121,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,112,111,108,105,116,105,99,95,95,99,111,111,107,105,101,8,0,17,46,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,8,0,21,46,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,45,98,97,114,8,0,21,46,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,45,98,111,120,8,0,22,46,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,45,99,111,110,116,8,0,27,46,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,20,46,112,111,108,105,116,105,99,97,45,100,101,45,99,111,111,107,105,101,115,8,0,21,46,112,111,108,105,116,105,99,97,45,112,114,105,118,97,99,105,100,97,100,101,8,0,26,46,112,111,108,105,116,105,99,97,45,112,114,105,118,97,99,105,100,97,100,101,45,108,103,112,100,8,0,16,46,112,111,108,105,116,105,99,97,67,111,111,107,105,101,115,8,0,16,46,112,111,108,105,116,105,99,97,82,101,119,97,114,100,115,8,0,17,46,112,111,108,105,116,105,99,97,95,99,111,111,107,105,101,115,8,0,16,46,112,111,108,105,116,105,99,97,99,111,111,107,105,101,115,8,0,16,46,112,111,108,105,116,105,99,115,95,99,111,111,107,105,101,8,0,17,46,112,111,108,105,116,105,113,117,101,95,99,111,111,107,105,101,8,0,16,46,112,111,108,105,116,121,107,97,45,99,111,111,107,105,101,8,0,17,46,112,111,108,105,116,121,107,97,95,99,105,97,115,116,101,107,8,0,21,46,112,111,108,105,116,121,107,97,95,112,114,121,119,97,116,110,111,115,99,105,8,0,28,46,112,111,108,105,116,121,107,97,95,112,114,121,119,97,116,110,111,115,99,105,87,114,97,112,112,101,114,8,0,9,46,112,111,112,45,99,110,105,108,8,0,11,46,112,111,112,45,99,111,111,107,105,101,8,0,14,46,112,111,112,45,99,111,111,107,105,101,98,111,120,8,0,17,46,112,111,112,45,99,111,111,107,105,101,112,111,108,105,99,121,8,0,12,46,112,111,112,45,99,111,111,107,105,101,115,8,0,14,46,112,111,112,45,117,112,45,99,111,111,107,105,101,8,0,26,46,112,111,112,45,117,112,45,99,111,111,107,105,101,45,97,108,101,114,116,45,98,108,111,99,107,8,0,15,46,112,111,112,45,117,112,45,99,111,111,107,105,101,115,8,0,12,46,112,111,112,95,99,111,111,107,105,101,115,8,0,14,46,112,111,112,95,117,112,95,99,111,111,107,105,101,8,0,8,46,112,111,112,103,100,112,114,8,0,11,46,112,111,112,105,110,45,99,110,105,108,8,0,14,46,112,111,112,105,110,45,99,111,111,107,105,101,115,8,0,20,46,112,111,112,105,110,45,99,111,111,107,105,101,115,45,109,111,100,97,108,8,0,12,46,112,111,112,105,110,67,111,111,107,105,101,8,0,13,46,112,111,112,105,110,67,111,111,107,105,101,115,8,0,15,46,112,111,112,111,118,101,114,45,99,111,111,107,105,101,8,0,18,46,112,111,112,111,118,101,114,45,109,100,46,99,111,111,107,105,101,8,0,14,46,112,111,112,117,112,45,45,99,111,111,107,105,101,8,0,23,46,112,111,112,117,112,45,45,99,111,111,107,105,101,45,104,97,110,100,108,105,110,103,8,0,24,46,112,111,112,117,112,45,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,25,46,112,111,112,117,112,45,45,112,111,108,105,99,121,45,97,98,115,111,108,117,116,101,108,121,8,0,19,46,112,111,112,117,112,45,97,108,101,114,116,45,110,111,116,105,99,101,8,0,20,46,112,111,112,117,112,45,97,108,108,111,119,45,99,111,111,107,105,101,115,8,0,19,46,112,111,112,117,112,45,97,118,105,115,111,45,99,111,111,107,105,101,8,0,20,46,112,111,112,117,112,45,97,118,105,115,111,45,99,111,111,107,105,101,115,8,0,21,46,112,111,112,117,112,45,99,104,111,111,115,101,45,99,111,111,107,105,101,115,8,0,17,46,112,111,112,117,112,45,99,111,111,107,105,101,45,45,111,110,8,0,18,46,112,111,112,117,112,45,99,111,111,107,105,101,45,50,48,49,56,8,0,24,46,112,111,112,117,112,45,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,8,0,20,46,112,111,112,117,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,25,46,112,111,112,117,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,8,0,20,46,112,111,112,117,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,18,46,112,111,112,117,112,45,99,111,111,107,105,101,45,115,104,111,119,8,0,21,46,112,111,112,117,112,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,23,46,112,111,112,117,112,45,99,111,111,107,105,101,58,110,111,116,40,98,111,100,121,41,8,0,18,46,112,111,112,117,112,45,99,111,111,107,105,101,95,95,98,111,120,8,0,21,46,112,111,112,117,112,45,99,111,111,107,105,101,95,95,115,104,97,100,111,119,8,0,25,46,112,111,112,117,112,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,100,111,119,110,8,0,14,46,112,111,112,117,112,45,99,111,111,107,105,101,115,8,0,22,46,112,111,112,117,112,45,99,111,111,107,105,101,115,45,115,101,99,116,105,111,110,8,0,11,46,112,111,112,117,112,45,103,100,112,114,8,0,22,46,112,111,112,117,112,45,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,8,0,33,46,112,111,112,117,112,45,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,45,105,115,45,118,105,115,105,98,108,101,8,0,21,46,112,111,112,117,112,45,109,101,115,115,97,103,101,46,99,111,111,107,105,101,8,0,22,46,112,111,112,117,112,45,111,118,101,114,108,97,121,45,99,111,111,107,105,101,115,8,0,15,46,112,111,112,117,112,45,112,111,108,105,116,105,99,97,8,0,11,46,112,111,112,117,112,45,114,111,100,111,8,0,18,46,112,111,112,117,112,45,115,99,114,101,101,110,45,114,111,100,111,8,0,21,46,112,111,112,117,112,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,19,46,112,111,112,117,112,66,97,110,110,101,114,87,114,97,112,112,101,114,8,0,12,46,112,111,112,117,112,67,111,111,107,105,101,8,0,18,46,112,111,112,117,112,67,111,111,107,105,101,65,99,99,101,112,116,8,0,13,46,112,111,112,117,112,67,111,111,107,105,101,115,8,0,33,46,112,111,112,117,112,91,100,97,116,97,45,112,111,112,117,112,61,34,112,111,112,117,112,45,99,111,111,107,105,101,34,93,8,0,14,46,112,111,112,117,112,95,95,99,111,111,107,105,101,8,0,15,46,112,111,112,117,112,95,95,99,111,111,107,105,101,115,8,0,20,46,112,111,112,117,112,95,98,108,111,99,107,95,67,111,111,107,105,101,115,8,0,19,46,112,111,112,117,112,95,98,108,111,99,107,95,99,111,111,107,105,101,8,0,13,46,112,111,112,117,112,95,99,111,111,107,105,101,8,0,21,46,112,111,112,117,112,95,99,111,111,107,105,101,95,97,100,115,101,110,115,101,8,0,27,46,112,111,112,117,112,95,99,111,111,107,105,101,95,112,111,115,105,116,105,111,110,95,108,101,102,116,8,0,14,46,112,111,112,117,112,95,99,111,111,107,105,101,115,8,0,19,46,112,111,112,117,112,95,99,111,111,107,105,101,115,95,119,114,97,112,8,0,15,46,112,111,112,117,112,95,112,111,108,105,99,105,101,115,8,0,13,46,112,111,112,117,112,99,111,111,99,107,105,101,8,0,12,46,112,111,112,117,112,99,111,111,107,105,101,8,0,18,46,112,111,112,117,112,102,111,114,109,45,99,111,111,107,105,101,115,8,0,30,46,112,111,114,116,97,108,45,121,111,117,65,114,101,72,101,114,101,45,99,111,111,107,105,101,45,119,114,97,112,8,0,22,46,112,111,114,116,108,101,116,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,15,46,112,111,115,116,101,108,45,99,111,111,107,105,101,115,8,0,14,46,112,111,115,119,112,45,100,97,116,97,98,97,114,8,0,16,46,112,111,118,111,108,101,110,105,67,111,111,107,105,101,115,8,0,24,46,112,112,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,108,111,99,107,8,0,10,46,112,112,45,99,111,111,107,105,101,8,0,17,46,112,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,112,112,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,19,46,112,112,45,99,111,111,107,105,101,95,95,99,111,110,116,101,110,116,8,0,18,46,112,112,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,8,0,11,46,112,112,97,45,110,111,116,105,99,101,8,0,12,46,112,112,103,45,99,111,111,107,105,101,115,8,0,20,46,112,112,109,115,95,99,109,95,99,111,110,115,101,110,116,95,98,97,114,8,0,32,46,112,112,114,95,112,114,105,118,95,100,111,99,117,109,101,110,116,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,25,46,112,112,115,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,115,116,114,105,112,8,0,17,46,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,18,46,112,114,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,17,46,112,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,22,46,112,114,101,45,104,101,97,100,95,95,99,111,111,107,105,101,45,105,110,102,111,8,0,25,46,112,114,101,45,104,101,97,100,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,15,46,112,114,101,77,111,100,97,108,67,111,111,107,105,101,8,0,14,46,112,114,101,99,111,107,105,101,105,110,110,101,114,8,0,18,46,112,114,101,118,101,110,116,65,99,99,101,112,116,97,110,99,101,8,0,36,46,112,114,105,109,111,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,112,108,97,99,101,104,111,108,100,101,114,8,0,14,46,112,114,105,118,97,99,121,45,97,108,101,114,116,8,0,20,46,112,114,105,118,97,99,121,45,97,110,100,45,99,111,111,107,105,101,115,8,0,15,46,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,23,46,112,114,105,118,97,99,121,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,12,46,112,114,105,118,97,99,121,45,98,97,114,8,0,22,46,112,114,105,118,97,99,121,45,98,97,114,45,99,111,110,116,97,105,110,101,114,8,0,23,46,112,114,105,118,97,99,121,45,98,97,114,95,95,99,111,110,116,97,105,110,101,114,8,0,25,46,112,114,105,118,97,99,121,45,98,108,111,99,107,105,110,103,45,111,118,101,114,108,97,121,8,0,19,46,112,114,105,118,97,99,121,45,99,101,110,116,101,114,45,99,116,97,8,0,17,46,112,114,105,118,97,99,121,45,99,111,110,99,101,114,110,115,8,0,32,46,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,95,95,111,118,101,114,108,97,121,8,0,25,46,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,45,105,110,102,111,45,99,116,97,8,0,22,46,112,114,105,118,97,99,121,45,99,111,110,116,114,111,108,45,98,97,100,103,101,8,0,24,46,112,114,105,118,97,99,121,45,99,111,110,116,114,111,108,115,45,98,97,110,110,101,114,8,0,15,46,112,114,105,118,97,99,121,45,99,111,111,107,105,101,8,0,21,46,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,22,46,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,112,114,105,118,97,99,121,45,99,111,111,107,105,101,115,8,0,19,46,112,114,105,118,97,99,121,45,100,105,115,99,108,97,105,109,101,114,8,0,26,46,112,114,105,118,97,99,121,45,100,105,115,99,108,97,105,109,101,114,45,98,97,110,110,101,114,8,0,21,46,112,114,105,118,97,99,121,45,102,111,111,116,101,114,45,98,108,111,99,107,8,0,13,46,112,114,105,118,97,99,121,45,104,105,110,116,8,0,23,46,112,114,105,118,97,99,121,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,21,46,112,114,105,118,97,99,121,45,105,110,102,111,45,109,101,115,115,97,103,101,8,0,14,46,112,114,105,118,97,99,121,45,105,110,102,111,115,8,0,18,46,112,114,105,118,97,99,121,45,105,110,105,116,45,119,97,108,108,8,0,24,46,112,114,105,118,97,99,121,45,109,97,110,97,103,101,114,95,95,98,97,110,110,101,114,8,0,25,46,112,114,105,118,97,99,121,45,109,97,110,97,103,101,114,95,95,111,118,101,114,108,97,121,8,0,24,46,112,114,105,118,97,99,121,45,109,101,115,115,97,103,101,45,111,118,101,114,108,97,121,8,0,23,46,112,114,105,118,97,99,121,45,110,111,116,105,99,101,45,45,115,105,109,112,108,101,8,0,26,46,112,114,105,118,97,99,121,45,110,111,116,105,99,101,45,98,97,99,107,103,114,111,117,110,100,8,0,21,46,112,114,105,118,97,99,121,45,110,111,116,105,99,101,45,105,110,110,101,114,8,0,31,46,112,114,105,118,97,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,8,0,24,46,112,114,105,118,97,99,121,45,112,111,108,105,99,105,101,115,45,98,97,110,110,101,114,8,0,22,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,19,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,114,8,0,23,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,99,111,110,115,101,110,116,8,0,22,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,99,111,111,107,105,101,8,0,23,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,99,111,111,107,105,101,115,8,0,32,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,99,111,111,107,105,101,115,45,105,110,102,111,114,109,101,114,8,0,23,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,8,0,21,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,109,111,100,97,108,8,0,22,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,110,111,116,105,99,101,8,0,26,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,110,111,116,105,99,101,45,98,97,114,8,0,21,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,29,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,114,111,109,112,116,45,45,109,111,100,97,108,8,0,21,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,116,111,97,115,116,8,0,24,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,105,115,45,115,116,105,99,107,121,8,0,14,46,112,114,105,118,97,99,121,45,112,111,112,117,112,8,0,22,46,112,114,105,118,97,99,121,45,112,111,112,117,112,45,111,118,101,114,108,97,121,8,0,22,46,112,114,105,118,97,99,121,45,112,111,112,117,112,45,119,114,97,112,112,101,114,8,0,23,46,112,114,105,118,97,99,121,45,112,114,111,109,112,116,45,119,114,97,112,112,101,114,8,0,22,46,112,114,105,118,97,99,121,45,115,104,105,101,108,100,45,98,97,110,110,101,114,8,0,22,46,112,114,105,118,97,99,121,45,116,101,114,109,115,45,99,111,111,107,105,101,115,8,0,14,46,112,114,105,118,97,99,121,45,116,111,97,115,116,8,0,15,46,112,114,105,118,97,99,121,45,117,112,100,97,116,101,8,0,16,46,112,114,105,118,97,99,121,45,119,97,114,110,105,110,103,8,0,16,46,112,114,105,118,97,99,121,65,108,101,114,116,66,111,120,8,0,14,46,112,114,105,118,97,99,121,66,97,110,110,101,114,8,0,11,46,112,114,105,118,97,99,121,66,97,114,8,0,14,46,112,114,105,118,97,99,121,67,111,111,107,105,101,8,0,17,46,112,114,105,118,97,99,121,67,111,111,107,105,101,66,111,120,8,0,16,46,112,114,105,118,97,99,121,76,97,119,65,108,101,114,116,8,0,15,46,112,114,105,118,97,99,121,77,101,108,100,105,110,103,8,0,14,46,112,114,105,118,97,99,121,78,111,116,105,99,101,8,0,20,46,112,114,105,118,97,99,121,78,111,116,105,102,105,99,97,116,105,111,110,8,0,20,46,112,114,105,118,97,99,121,80,111,108,105,99,121,66,97,110,110,101,114,8,0,17,46,112,114,105,118,97,99,121,80,111,108,105,99,121,66,97,114,8,0,17,46,112,114,105,118,97,99,121,80,111,108,105,99,121,66,108,107,8,0,19,46,112,114,105,118,97,99,121,80,111,108,105,99,121,80,111,112,117,112,8,0,18,46,112,114,105,118,97,99,121,80,111,108,105,99,121,87,97,114,110,8,0,21,46,112,114,105,118,97,99,121,83,101,116,116,105,110,103,115,80,111,112,117,112,8,0,11,46,112,114,105,118,97,99,121,84,111,112,8,0,15,46,112,114,105,118,97,99,121,95,95,112,111,112,117,112,8,0,15,46,112,114,105,118,97,99,121,95,98,97,110,110,101,114,8,0,16,46,112,114,105,118,97,99,121,95,99,111,110,115,101,110,116,8,0,23,46,112,114,105,118,97,99,121,95,99,111,111,107,105,101,115,95,112,111,108,105,99,121,8,0,12,46,112,114,105,118,97,99,121,95,100,105,118,8,0,15,46,112,114,105,118,97,99,121,95,108,97,119,95,98,103,8,0,15,46,112,114,105,118,97,99,121,95,110,111,116,105,99,101,8,0,21,46,112,114,105,118,97,99,121,95,110,111,116,105,102,105,99,97,116,105,111,110,8,0,20,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,45,105,110,102,111,8,0,21,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,46,97,108,101,114,116,8,0,33,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,8,0,29,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,46,97,108,101,114,116,45,119,97,114,110,105,110,103,8,0,26,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,95,99,111,110,116,97,105,110,101,114,8,0,22,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,98,97,110,110,101,114,8,0,18,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,98,103,8,0,20,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,98,111,116,109,8,0,20,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,105,110,102,111,8,0,27,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,109,101,115,115,97,103,101,95,98,111,120,8,0,19,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,112,111,112,8,0,22,46,112,114,105,118,97,99,121,95,112,114,111,109,112,116,95,98,111,116,116,111,109,8,0,33,46,112,114,105,118,97,99,121,95,112,114,111,116,101,99,116,105,111,110,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,33,46,112,114,105,118,97,99,121,95,115,101,116,116,105,110,103,115,95,105,110,116,101,114,102,97,99,101,46,112,111,112,117,112,8,0,16,46,112,114,105,118,97,99,121,95,119,97,114,110,105,110,103,8,0,14,46,112,114,105,118,97,99,121,98,97,110,110,101,114,8,0,21,46,112,114,105,118,97,99,121,98,97,110,110,101,114,95,110,111,116,105,99,101,8,0,14,46,112,114,105,118,97,99,121,99,111,111,107,105,101,8,0,20,46,112,114,105,118,97,99,121,99,111,111,107,105,101,98,97,110,110,101,114,8,0,12,46,112,114,105,118,97,99,121,104,105,110,116,8,0,12,46,112,114,105,118,97,99,121,105,110,102,111,8,0,20,46,112,114,105,118,97,99,121,111,117,116,101,114,119,114,97,112,112,101,114,8,0,25,46,112,114,105,118,97,99,121,112,111,108,105,99,105,101,115,45,99,111,109,45,45,45,110,98,8,0,46,46,112,114,105,118,97,99,121,112,111,108,105,99,105,101,115,45,99,111,109,45,45,45,110,98,45,105,110,116,101,114,115,116,105,116,105,97,108,45,111,118,101,114,108,97,121,8,0,21,46,112,114,105,118,97,99,121,112,111,108,105,99,121,45,97,99,99,101,112,116,8,0,31,46,112,114,105,118,97,99,121,112,111,108,105,99,121,109,101,115,115,97,103,101,98,111,120,95,104,101,97,100,101,114,8,0,20,46,112,114,105,118,97,99,121,112,111,108,105,99,121,115,116,114,105,112,101,8,0,24,46,112,114,105,118,97,99,121,115,101,116,116,105,110,103,115,95,95,98,97,110,110,101,114,8,0,36,46,112,114,105,118,97,99,121,119,97,108,108,45,98,97,110,110,101,114,91,100,97,116,97,45,105,115,45,118,105,115,105,98,108,101,93,8,0,20,46,112,114,105,118,97,99,121,119,105,114,101,45,119,114,97,112,112,101,114,8,0,19,46,112,114,105,118,97,115,121,112,111,108,105,99,121,45,105,110,102,111,8,0,22,46,112,114,105,118,97,116,101,45,99,111,111,107,105,101,115,45,109,111,100,97,108,8,0,14,46,112,114,105,118,97,116,101,80,111,108,105,99,121,8,0,20,46,112,114,111,95,99,111,111,107,105,101,45,108,97,121,101,114,45,110,103,8,0,21,46,112,114,111,107,111,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,22,46,112,114,111,109,111,65,108,101,114,116,45,99,111,111,107,105,101,112,111,112,115,8,0,17,46,112,114,111,109,112,116,45,99,111,111,107,105,101,108,97,119,8,0,15,46,112,114,111,109,112,116,95,99,111,111,107,105,101,115,8,0,24,46,112,114,111,112,101,108,108,101,114,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,20,46,112,114,111,116,101,99,116,67,111,111,107,105,101,66,97,110,110,101,114,8,0,11,46,112,115,45,67,111,111,107,105,101,115,8,0,11,46,112,115,45,99,111,111,107,105,101,115,8,0,11,46,112,115,103,45,99,111,111,107,105,101,8,0,14,46,112,116,45,99,111,111,107,105,101,45,98,97,114,8,0,21,46,112,117,98,108,105,99,95,108,101,103,97,108,95,99,111,111,107,105,101,115,8,0,21,46,112,117,112,112,101,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,30,46,112,117,114,101,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,8,0,28,46,112,117,114,101,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,8,0,19,46,112,117,114,112,108,101,45,99,111,111,107,105,101,45,105,110,102,111,8,0,10,46,112,117,115,104,45,99,110,105,108,8,0,25,46,112,117,115,104,101,114,112,97,110,101,108,45,99,111,111,107,105,101,110,111,116,105,99,101,8,0,11,46,112,117,117,45,99,111,111,107,105,101,8,0,11,46,112,118,45,99,111,111,107,105,101,115,8,0,18,46,112,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,112,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,118,50,8,0,30,46,112,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,118,50,45,98,97,99,107,100,114,111,112,8,0,17,46,112,119,45,99,111,111,107,105,101,45,119,105,110,100,111,119,8,0,22,46,112,119,95,99,111,110,115,101,110,116,95,109,101,115,115,97,103,101,100,105,118,8,0,11,46,112,119,95,99,111,111,107,105,101,115,8,0,29,46,112,119,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,117,115,116,111,109,105,122,101,8,0,29,46,112,119,101,98,98,111,120,45,112,108,117,103,105,110,45,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,15,46,112,119,115,95,99,111,111,107,105,101,95,98,97,114,8,0,15,46,112,120,108,95,99,111,111,107,105,101,95,98,97,114,8,0,12,46,112,121,45,49,46,99,111,111,107,105,101,8,0,10,46,112,121,45,51,46,114,103,112,100,8,0,12,46,112,121,45,52,46,99,111,111,107,105,101,8,0,22,46,112,122,45,100,105,115,99,108,97,105,109,101,114,45,45,99,111,111,107,105,101,8,0,21,46,113,45,108,101,103,97,108,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,30,46,113,45,110,111,116,105,102,105,99,97,116,105,111,110,91,99,108,97,115,115,42,61,34,103,100,112,114,34,93,8,0,17,46,113,45,115,105,108,101,110,116,45,99,111,110,115,101,110,116,8,0,10,46,113,95,99,111,111,107,105,101,115,8,0,18,46,113,97,45,97,108,101,114,116,45,45,99,111,111,107,105,101,115,8,0,17,46,113,97,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,17,46,113,97,45,115,110,97,99,107,98,97,114,45,99,99,112,97,8,0,17,46,113,98,45,99,111,111,107,105,101,108,97,119,45,98,97,114,8,0,15,46,113,99,45,99,109,112,45,115,104,111,119,105,110,103,8,0,20,46,113,99,45,99,109,112,45,117,105,45,99,111,110,116,97,105,110,101,114,8,0,16,46,113,100,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,11,46,113,103,45,99,111,110,115,101,110,116,8,0,12,46,113,110,105,45,99,111,111,107,109,115,103,8,0,17,46,113,112,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,30,46,113,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,17,46,113,117,105,99,107,45,99,111,111,107,105,101,45,98,97,114,8,0,9,46,114,45,99,111,111,107,105,101,8,0,13,46,114,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,114,45,99,111,111,107,105,101,45,102,111,111,116,101,114,8,0,10,46,114,45,99,111,111,107,105,101,115,8,0,15,46,114,45,103,100,112,114,45,99,111,111,107,105,101,115,8,0,13,46,114,45,103,100,112,114,45,112,111,112,117,112,8,0,17,46,114,97,100,105,111,112,108,97,121,101,114,45,97,110,110,111,8,0,27,46,114,97,100,105,111,112,108,97,121,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,18,46,114,97,100,105,115,104,45,99,111,111,107,105,101,45,98,97,114,8,0,15,46,114,97,100,105,115,104,45,114,99,99,45,98,97,114,8,0,19,46,114,97,104,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,16,46,114,97,110,107,45,99,111,111,107,105,101,45,98,97,114,8,0,17,46,114,97,115,116,104,97,98,101,114,45,99,111,111,107,105,101,8,0,18,46,114,98,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,10,46,114,98,45,99,111,111,107,105,101,8,0,19,46,114,98,45,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,8,0,21,46,114,98,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,16,46,114,98,45,99,111,111,107,105,110,103,97,108,101,114,116,8,0,17,46,114,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,23,46,114,99,119,45,99,45,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,8,0,15,46,114,100,95,95,99,111,111,107,105,101,45,98,97,114,8,0,23,46,114,100,103,100,112,114,97,111,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,25,46,114,100,109,45,100,97,97,99,45,110,111,116,105,99,101,45,116,101,109,112,108,97,116,101,8,0,23,46,114,101,97,99,116,45,45,109,111,100,117,108,101,95,95,99,111,111,107,105,101,115,8,0,20,46,114,101,97,99,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,26,46,114,101,97,99,116,45,99,111,111,107,105,101,45,103,100,112,114,45,98,108,111,99,107,101,114,8,0,25,46,114,101,97,99,116,45,99,111,111,107,105,101,45,103,100,112,114,45,100,105,97,108,111,103,8,0,24,46,114,101,97,99,116,45,99,111,111,107,105,101,45,108,97,119,45,100,105,97,108,111,103,8,0,32,46,114,101,97,99,116,45,110,97,118,105,45,101,97,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,37,46,114,101,97,99,116,45,114,101,118,101,97,108,91,99,108,97,115,115,42,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,8,0,11,46,114,101,97,100,99,111,111,107,105,101,8,0,17,46,114,101,99,116,97,110,103,108,101,67,111,111,107,105,101,115,8,0,13,46,114,101,99,117,114,108,121,45,103,100,112,114,8,0,21,46,114,101,100,104,97,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,114,101,103,105,111,110,45,99,111,111,107,105,101,45,98,97,110,8,0,21,46,114,101,103,105,111,110,45,99,111,111,107,105,101,109,101,108,100,105,110,103,8,0,28,46,114,101,103,105,111,110,45,100,105,115,99,108,97,105,109,101,114,45,99,111,109,112,111,110,101,110,116,8,0,55,46,114,101,103,105,111,110,45,100,105,115,99,108,97,105,109,101,114,91,100,97,116,97,45,99,111,111,107,105,101,95,110,97,109,101,61,34,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,34,93,8,0,12,46,114,101,103,105,111,110,45,103,100,112,114,8,0,17,46,114,101,103,105,111,110,45,114,111,100,111,45,105,110,102,111,8,0,24,46,114,101,103,105,111,110,97,108,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,15,46,114,101,113,117,101,115,116,67,111,111,107,105,101,115,8,0,21,46,114,101,115,67,111,111,107,105,101,99,111,110,45,119,114,97,112,112,101,114,8,0,22,46,114,101,115,104,97,114,101,95,99,111,111,107,105,101,119,97,114,110,105,110,103,8,0,24,46,114,101,115,112,111,110,115,105,118,101,45,97,112,112,95,95,99,111,111,107,105,101,115,8,0,27,46,114,101,115,112,111,110,115,105,118,101,70,111,111,116,101,114,66,97,114,67,111,110,116,101,110,116,8,0,13,46,114,101,115,117,108,116,67,111,111,107,105,101,8,0,20,46,114,101,116,97,105,108,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,23,46,114,101,118,101,97,108,45,109,111,100,97,108,45,98,103,45,99,111,111,107,105,101,8,0,20,46,114,101,118,101,97,108,45,109,111,100,97,108,45,99,111,111,107,105,101,8,0,27,46,114,101,118,101,97,108,45,109,111,100,97,108,91,105,100,42,61,34,99,111,111,107,105,101,34,93,8,0,17,46,114,101,121,45,99,111,111,107,105,101,78,111,116,105,99,101,8,0,11,46,114,103,112,100,45,97,108,101,114,116,8,0,12,46,114,103,112,100,45,98,97,110,110,101,114,8,0,9,46,114,103,112,100,45,98,97,114,8,0,11,46,114,103,112,100,45,98,108,111,99,107,8,0,14,46,114,103,112,100,45,98,108,111,99,107,97,103,101,8,0,13,46,114,103,112,100,45,99,111,110,115,101,110,116,8,0,15,46,114,103,112,100,45,99,111,110,116,97,105,110,101,114,8,0,12,46,114,103,112,100,45,99,111,111,107,105,101,8,0,15,46,114,103,112,100,45,99,111,111,107,105,101,98,97,114,8,0,13,46,114,103,112,100,45,99,111,111,107,105,101,115,8,0,20,46,114,103,112,100,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,21,46,114,103,112,100,45,99,111,111,107,105,101,115,45,116,111,111,108,98,111,120,8,0,25,46,114,103,112,100,45,100,97,116,97,45,99,111,110,116,114,111,108,45,98,97,110,110,101,114,8,0,12,46,114,103,112,100,45,101,110,99,97,114,116,8,0,15,46,114,103,112,100,45,102,105,120,101,100,45,98,97,114,8,0,12,46,114,103,112,100,45,102,111,111,116,101,114,8,0,17,46,114,103,112,100,45,103,101,110,101,114,97,108,45,98,111,120,8,0,14,46,114,103,112,100,45,105,110,102,111,95,98,97,114,8,0,11,46,114,103,112,100,45,105,110,110,101,114,8,0,11,46,114,103,112,100,45,108,97,121,101,114,8,0,12,46,114,103,112,100,45,110,97,118,98,97,114,8,0,12,46,114,103,112,100,45,110,111,116,105,99,101,8,0,18,46,114,103,112,100,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,11,46,114,103,112,100,45,112,111,112,105,110,8,0,11,46,114,103,112,100,45,112,111,112,117,112,8,0,13,46,114,103,112,100,45,119,114,97,112,112,101,114,8,0,10,46,114,103,112,100,46,118,105,101,119,8,0,8,46,114,103,112,100,66,97,110,8,0,11,46,114,103,112,100,67,111,111,107,105,101,8,0,14,46,114,103,112,100,95,98,97,99,107,100,114,111,112,8,0,12,46,114,103,112,100,95,98,97,110,110,101,114,8,0,18,46,114,103,112,100,95,98,97,110,110,101,114,95,97,108,101,114,116,8,0,9,46,114,103,112,100,95,98,111,120,8,0,13,46,114,103,112,100,95,109,101,115,115,97,103,101,8,0,18,46,114,104,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,28,46,114,104,119,101,98,45,111,118,101,114,108,97,121,45,99,111,111,107,105,101,45,99,104,97,110,103,101,8,0,15,46,114,105,98,98,111,110,45,95,99,111,111,107,105,101,8,0,14,46,114,105,98,98,111,110,45,99,111,111,107,105,101,8,0,22,46,114,105,103,104,116,45,102,108,111,97,116,105,110,103,45,99,111,111,107,105,101,8,0,22,46,114,105,113,117,97,100,114,111,65,118,118,105,115,111,80,114,105,118,97,99,121,8,0,20,46,114,105,115,99,109,115,95,99,111,111,107,105,101,108,101,105,115,116,101,8,0,22,46,114,106,119,112,45,99,111,111,107,105,101,45,108,97,119,45,112,111,112,117,112,8,0,25,46,114,108,116,99,112,95,105,110,102,111,114,109,97,116,105,111,110,95,99,111,111,107,105,101,8,0,11,46,114,108,120,45,99,111,111,107,105,101,8,0,15,46,114,108,120,45,99,111,111,107,105,101,45,98,97,114,8,0,10,46,114,109,45,99,111,111,107,105,101,8,0,17,46,114,109,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,16,46,114,109,45,99,111,111,107,105,101,115,45,98,101,108,116,8,0,14,46,114,109,45,99,111,111,107,105,101,115,45,111,108,8,0,15,46,114,109,103,67,111,111,107,105,101,65,108,101,114,116,8,0,18,46,114,110,107,45,67,111,111,107,105,101,115,80,111,108,105,99,121,8,0,11,46,114,110,116,95,99,111,111,107,105,101,8,0,18,46,114,111,99,107,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,12,46,114,111,100,111,45,97,99,99,101,112,116,8,0,11,46,114,111,100,111,45,97,108,101,114,116,8,0,26,46,114,111,100,111,45,99,111,111,107,105,101,115,45,112,97,110,101,108,45,109,111,100,117,108,101,8,0,12,46,114,111,100,111,45,104,101,105,103,104,116,8,0,10,46,114,111,100,111,45,105,110,102,111,8,0,14,46,114,111,100,111,45,105,110,102,111,45,98,111,120,8,0,22,46,114,111,100,111,45,105,110,102,111,45,98,111,120,45,111,118,101,114,108,97,121,8,0,19,46,114,111,100,111,45,105,110,102,111,95,95,99,111,110,116,101,110,116,8,0,19,46,114,111,100,111,45,105,110,102,111,95,95,111,118,101,114,108,97,121,8,0,11,46,114,111,100,111,45,109,111,100,97,108,8,0,21,46,114,111,100,111,45,110,111,116,45,115,109,97,108,108,45,109,111,100,97,108,8,0,15,46,114,111,100,111,45,111,118,101,114,108,97,121,101,114,8,0,11,46,114,111,100,111,45,112,111,112,117,112,8,0,17,46,114,111,100,111,45,112,111,112,117,112,95,112,111,112,117,112,8,0,13,46,114,111,100,111,45,119,114,97,112,112,101,114,8,0,15,46,114,111,100,111,45,119,114,97,112,112,101,114,45,49,8,0,10,46,114,111,100,111,65,108,101,114,116,8,0,10,46,114,111,100,111,80,111,112,117,112,8,0,13,46,114,111,100,111,95,95,97,99,99,101,112,116,8,0,16,46,114,111,100,111,95,95,99,111,110,116,97,105,110,101,114,8,0,19,46,114,111,100,111,95,99,111,111,107,105,101,115,95,112,111,112,117,112,8,0,10,46,114,111,100,111,95,105,110,102,111,8,0,11,46,114,111,100,111,97,99,99,101,112,116,8,0,12,46,114,111,104,45,99,111,111,107,105,101,115,8,0,23,46,114,111,119,45,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,14,46,114,111,119,45,99,111,111,107,105,101,98,97,114,8,0,12,46,114,111,119,45,99,111,111,107,105,101,115,8,0,41,46,114,111,119,91,100,97,116,97,45,116,101,115,116,45,115,101,108,101,99,116,111,114,42,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,8,0,18,46,114,112,45,67,111,111,107,105,101,115,67,111,110,115,101,110,116,8,0,16,46,114,115,45,97,108,101,114,116,45,99,111,111,107,105,101,8,0,18,46,114,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,16,46,114,115,116,98,111,120,67,111,111,107,105,101,66,97,114,8,0,12,46,114,115,117,45,99,111,111,107,105,101,115,8,0,23,46,114,116,45,99,111,111,107,105,101,112,111,108,105,99,121,45,110,111,116,105,99,101,8,0,19,46,114,116,115,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,27,46,114,116,115,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,45,112,97,110,110,101,108,8,0,27,46,114,116,115,45,109,111,100,117,108,101,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,8,0,24,46,114,118,108,45,66,97,110,110,101,114,45,99,111,111,107,105,101,66,97,110,110,101,114,8,0,18,46,114,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,23,46,114,119,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,31,46,114,120,116,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,95,95,99,111,110,116,97,105,110,101,114,8,0,21,46,114,121,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,8,0,35,46,115,45,45,109,101,115,115,97,103,101,91,99,108,97,115,115,42,61,34,99,111,111,107,105,101,45,110,111,116,105,99,101,34,93,8,0,20,46,115,45,49,48,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,14,46,115,45,97,112,112,45,99,111,111,107,105,101,115,8,0,9,46,115,45,99,111,111,107,105,101,8,0,20,46,115,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,14,46,115,45,99,111,111,107,105,101,45,104,105,110,116,8,0,26,46,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,8,0,15,46,115,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,17,46,115,45,99,111,111,107,105,101,95,95,109,111,100,97,108,53,8,0,12,46,115,45,99,111,111,107,105,101,98,97,114,8,0,10,46,115,45,99,111,111,107,105,101,115,8,0,15,46,115,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,21,46,115,45,99,111,111,107,105,101,115,45,105,110,102,111,45,105,110,110,101,114,8,0,18,46,115,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,8,0,21,46,115,45,99,111,111,107,105,101,115,95,95,99,111,110,116,97,105,110,101,114,8,0,19,46,115,45,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,8,0,7,46,115,45,103,100,112,114,8,0,35,46,115,45,110,97,118,105,103,97,116,105,111,110,45,116,111,111,108,45,112,97,110,101,108,45,100,105,115,99,108,97,105,109,101,114,8,0,17,46,115,49,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,29,46,115,50,48,45,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,99,111,110,116,97,105,110,101,114,8,0,23,46,115,50,48,50,50,45,99,111,111,107,105,101,45,98,97,114,95,95,118,101,105,108,8,0,22,46,115,50,109,67,111,111,107,105,101,115,79,112,116,105,110,68,105,97,108,111,103,8,0,23,46,115,51,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,119,114,97,112,8,0,25,46,115,51,54,48,45,99,111,111,107,105,101,45,104,105,110,116,45,119,114,97,112,112,101,114,8,0,16,46,115,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,13,46,115,97,103,101,45,99,111,111,107,105,101,115,8,0,18,46,115,97,109,115,45,99,111,111,107,105,101,45,109,111,100,97,108,8,0,15,46,115,97,110,97,45,99,111,111,107,105,101,98,97,114,8,0,17,46,115,97,110,111,109,97,45,111,112,116,105,110,45,98,97,114,8,0,13,46,115,97,118,101,45,99,111,111,107,105,101,115,8,0,17,46,115,97,118,101,45,99,111,111,107,105,101,115,45,114,116,101,8,0,19,46,115,98,45,98,97,110,110,101,114,115,45,45,99,111,111,107,105,101,8,0,19,46,115,98,45,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,8,0,17,46,115,98,45,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,18,46,115,98,45,110,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,10,46,115,99,45,99,111,111,107,105,101,8,0,17,46,115,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,115,99,45,99,111,111,107,105,101,115,8,0,8,46,115,99,45,103,100,112,114,8,0,15,46,115,99,45,103,100,112,114,45,98,97,110,110,101,114,8,0,27,46,115,99,45,109,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,18,46,115,99,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,18,46,115,99,103,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,19,46,115,99,104,45,100,97,116,97,99,111,110,116,114,111,108,108,101,114,8,0,20,46,115,99,104,97,95,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,115,99,109,112,45,112,111,112,105,110,8,0,19,46,115,99,111,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,8,0,28,46,115,99,111,109,109,101,114,99,101,45,103,100,112,114,45,99,111,111,107,105,101,110,111,116,105,99,101,8,0,30,46,115,99,111,114,101,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,97,108,101,114,116,8,0,30,46,115,99,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,117,116,101,114,45,119,114,97,112,8,0,16,46,115,99,114,45,97,100,118,45,99,111,111,107,105,101,115,8,0,22,46,115,99,114,101,101,110,45,111,118,101,114,108,97,121,45,99,111,111,107,105,101,8,0,14,46,115,99,114,101,101,110,46,99,111,111,107,105,101,8,0,28,46,115,99,114,105,112,116,45,112,114,105,118,97,99,121,80,111,108,105,99,121,45,99,111,111,107,105,101,8,0,21,46,115,99,114,105,112,116,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,19,46,115,99,114,111,108,108,45,102,105,120,46,99,111,111,107,105,101,115,8,0,19,46,115,99,114,111,108,108,101,114,32,62,32,46,99,111,111,107,105,101,8,0,11,46,115,99,119,45,99,111,111,107,105,101,8,0,17,46,115,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,23,46,115,100,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,17,46,115,100,95,99,111,111,107,105,101,115,112,111,108,105,99,121,8,0,23,46,115,100,99,45,115,105,116,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,28,46,115,100,108,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,45,98,97,114,8,0,19,46,115,100,108,45,119,101,98,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,115,101,97,116,95,99,111,111,107,105,101,95,98,97,114,8,0,22,46,115,101,99,116,105,111,110,45,45,98,97,110,110,101,114,67,111,111,107,105,101,8,0,24,46,115,101,99,116,105,111,110,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,23,46,115,101,99,116,105,111,110,45,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,19,46,115,101,99,116,105,111,110,45,45,99,111,111,107,105,101,66,97,114,8,0,17,46,115,101,99,116,105,111,110,45,45,99,111,111,107,105,101,115,8,0,15,46,115,101,99,116,105,111,110,45,99,111,111,107,105,101,8,0,23,46,115,101,99,116,105,111,110,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,27,46,115,101,99,116,105,111,110,45,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,115,101,99,116,105,111,110,45,99,111,111,107,105,101,115,8,0,29,46,115,101,99,116,105,111,110,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,115,8,0,19,46,115,101,99,116,105,111,110,45,112,111,112,117,112,45,103,100,112,114,8,0,25,46,115,101,99,116,105,111,110,95,95,99,111,111,107,105,101,45,45,109,101,115,115,97,103,101,8,0,23,46,115,101,99,116,105,111,110,95,95,99,111,111,107,105,101,45,116,111,103,103,108,101,8,0,17,46,115,101,99,116,105,111,110,95,95,99,111,111,107,105,101,115,8,0,21,46,115,101,101,114,115,45,99,109,112,45,98,97,110,110,101,114,45,98,97,114,8,0,26,46,115,101,101,114,115,45,99,109,112,45,99,111,111,107,105,101,45,100,97,116,97,45,104,111,108,8,0,22,46,115,101,103,98,45,99,111,111,107,105,101,99,111,109,112,108,105,97,110,99,101,8,0,12,46,115,101,105,99,45,99,111,111,107,105,101,8,0,25,46,115,101,108,101,99,116,111,114,67,111,111,107,105,101,76,97,119,77,101,115,115,97,103,101,8,0,20,46,115,101,108,102,45,99,111,110,116,97,105,110,45,99,111,111,107,105,101,8,0,18,46,115,101,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,28,46,115,101,110,116,101,110,99,101,45,45,99,111,111,107,105,101,45,45,99,111,110,116,97,105,110,101,114,8,0,22,46,115,101,111,112,114,101,115,115,45,117,115,101,114,45,99,111,110,115,101,110,116,8,0,31,46,115,101,111,112,114,101,115,115,45,117,115,101,114,45,99,111,110,115,101,110,116,45,98,97,99,107,100,114,111,112,8,0,17,46,115,101,116,114,97,112,112,101,108,99,111,111,107,105,101,115,8,0,12,46,115,101,116,115,45,99,111,111,107,105,101,8,0,11,46,115,102,45,99,111,110,115,101,110,116,8,0,17,46,115,102,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,115,102,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,24,46,115,102,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,117,116,101,114,8,0,20,46,115,102,45,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,8,0,18,46,115,102,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,21,46,115,102,95,119,105,100,103,101,116,95,112,101,114,109,105,115,115,105,111,110,8,0,21,46,115,102,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,18,46,115,103,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,20,46,115,103,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,17,46,115,103,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,17,46,115,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,23,46,115,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,13,46,115,103,45,99,119,45,99,111,111,107,105,101,8,0,13,46,115,103,99,99,45,99,111,111,107,105,101,115,8,0,10,46,115,103,100,112,114,45,98,111,120,8,0,20,46,115,103,115,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,8,0,11,46,115,103,115,67,111,111,107,105,101,115,8,0,10,46,115,104,45,99,111,111,107,105,101,8,0,16,46,115,104,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,17,46,115,104,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,23,46,115,104,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,8,0,17,46,115,104,45,99,111,111,107,105,101,45,100,105,97,108,111,103,8,0,17,46,115,104,45,99,111,111,107,105,101,115,45,116,114,97,99,107,8,0,22,46,115,104,45,115,104,111,119,45,99,111,111,107,105,101,115,45,116,114,97,99,107,8,0,14,46,115,104,97,100,111,119,45,99,111,111,107,105,101,8,0,21,46,115,104,97,100,111,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,20,46,115,104,97,100,111,119,45,99,111,111,107,105,101,66,97,110,110,101,114,8,0,27,46,115,104,97,114,101,97,104,111,108,105,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,115,104,97,114,101,100,45,97,108,101,114,116,95,95,99,111,111,107,105,101,8,0,26,46,115,104,97,114,101,100,45,99,111,109,112,111,110,101,110,116,115,45,99,111,111,107,105,101,115,8,0,22,46,115,104,97,114,101,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,15,46,115,104,97,114,101,100,45,99,111,111,107,105,101,115,8,0,22,46,115,104,97,114,101,100,95,95,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,13,46,115,104,97,114,107,45,99,111,111,107,105,101,8,0,23,46,115,104,98,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,111,120,8,0,21,46,115,104,105,102,116,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,21,46,115,104,111,112,117,105,45,101,117,45,99,111,111,107,105,101,45,98,97,114,8,0,20,46,115,104,111,119,45,98,97,110,110,101,114,45,99,111,111,107,105,101,115,8,0,20,46,115,104,111,119,45,99,111,110,99,111,114,100,45,98,97,110,110,101,114,8,0,22,46,115,104,111,119,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,21,46,115,104,111,119,45,99,111,111,107,105,101,45,110,111,116,105,102,121,101,114,8,0,38,46,115,104,111,119,45,99,111,111,107,105,101,45,112,111,112,117,112,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,15,46,115,104,111,119,45,101,117,45,99,111,111,107,105,101,8,0,20,46,115,104,111,119,45,103,100,112,114,58,110,111,116,40,98,111,100,121,41,8,0,19,46,115,104,111,119,45,110,111,116,105,99,101,45,99,111,111,107,105,101,8,0,20,46,115,104,111,119,46,117,100,99,45,98,97,114,45,104,111,108,100,101,114,8,0,13,46,115,104,111,119,46,117,100,99,45,111,118,114,8,0,9,46,115,104,111,119,71,68,80,82,8,0,18,46,115,104,111,119,80,114,105,118,97,99,121,67,111,111,107,105,101,8,0,29,46,115,104,111,119,91,99,108,97,115,115,42,61,34,99,111,111,107,105,101,45,110,111,116,105,99,101,34,93,8,0,32,46,115,104,111,119,95,99,111,111,107,105,101,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,13,46,115,104,111,119,95,99,111,111,107,105,101,115,8,0,21,46,115,104,111,119,101,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,15,46,115,104,111,119,101,100,46,99,111,111,107,105,101,115,8,0,10,46,115,104,114,109,45,103,100,112,114,8,0,29,46,115,105,103,45,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,99,111,110,116,97,105,110,101,114,8,0,16,46,115,105,103,110,97,116,117,45,99,111,110,115,101,110,116,8,0,23,46,115,105,107,111,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,18,46,115,105,109,112,108,101,45,99,111,111,107,105,101,45,98,97,114,8,0,23,46,115,105,109,112,108,101,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,12,46,115,105,115,117,45,99,111,111,107,105,101,8,0,17,46,115,105,116,101,45,71,68,80,82,45,98,97,110,110,101,114,8,0,20,46,115,105,116,101,45,98,101,97,99,111,110,45,99,111,111,107,105,101,115,8,0,18,46,115,105,116,101,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,19,46,115,105,116,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,115,105,116,101,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,20,46,115,105,116,101,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,8,0,23,46,115,105,116,101,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,17,46,115,105,116,101,45,99,111,111,107,105,101,45,105,110,102,111,8,0,18,46,115,105,116,101,45,99,111,111,107,105,101,45,112,97,110,101,108,8,0,18,46,115,105,116,101,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,20,46,115,105,116,101,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,18,46,115,105,116,101,45,99,111,111,107,105,101,66,97,110,110,101,114,8,0,13,46,115,105,116,101,45,99,111,111,107,105,101,115,8,0,20,46,115,105,116,101,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,18,46,115,105,116,101,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,21,46,115,105,116,101,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,26,46,115,105,116,101,45,102,111,111,116,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,25,46,115,105,116,101,45,102,111,111,116,101,114,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,17,46,115,105,116,101,45,103,100,112,114,45,98,97,110,110,101,114,8,0,18,46,115,105,116,101,45,103,100,112,114,45,109,101,115,115,97,103,101,8,0,20,46,115,105,116,101,45,104,101,97,100,101,114,45,99,111,111,107,105,101,115,8,0,42,46,115,105,116,101,45,104,101,97,100,101,114,45,114,101,97,99,116,95,95,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,100,101,115,107,116,111,112,8,0,22,46,115,105,116,101,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,115,8,0,31,46,115,105,116,101,45,109,101,115,115,97,103,101,45,45,102,105,114,115,116,45,112,118,45,99,111,110,115,101,110,116,8,0,20,46,115,105,116,101,45,109,101,115,115,97,103,101,46,99,111,111,107,105,101,8,0,25,46,115,105,116,101,45,109,111,100,117,108,101,45,45,115,105,116,101,45,99,111,111,107,105,101,8,0,16,46,115,105,116,101,45,109,115,103,45,99,111,111,107,105,101,8,0,19,46,115,105,116,101,45,110,101,101,100,115,45,99,111,111,107,105,101,115,8,0,20,46,115,105,116,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,8,0,33,46,115,105,116,101,45,112,111,108,105,99,121,45,99,111,110,115,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,115,105,116,101,45,112,111,112,117,112,46,99,111,110,115,101,110,116,8,0,19,46,115,105,116,101,45,112,114,105,118,97,99,121,112,111,108,105,99,121,8,0,26,46,115,105,116,101,45,117,115,101,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,24,46,115,105,116,101,45,117,115,101,115,45,99,111,111,107,105,101,115,45,98,108,111,99,107,8,0,23,46,115,105,116,101,45,119,105,100,101,45,110,111,116,105,99,101,45,45,103,100,112,114,8,0,11,46,115,105,116,101,67,111,111,107,105,101,8,0,12,46,115,105,116,101,67,111,111,107,105,101,115,8,0,20,46,115,105,116,101,67,111,111,107,105,101,115,45,45,98,111,116,116,111,109,8,0,23,46,115,105,116,101,95,98,108,111,99,107,95,119,114,97,112,95,99,111,111,107,105,101,8,0,23,46,115,105,116,101,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,8,0,28,46,115,105,116,101,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,95,111,112,101,110,8,0,21,46,115,105,116,101,95,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,8,0,18,46,115,105,116,101,95,99,111,111,107,105,101,115,112,108,97,115,104,8,0,19,46,115,105,116,101,95,104,101,97,100,101,114,95,99,111,111,107,105,101,8,0,29,46,115,105,116,101,95,112,114,105,118,97,99,121,99,111,111,107,105,101,115,95,95,99,111,110,116,101,110,116,8,0,41,46,115,105,116,101,112,108,97,110,110,101,114,45,109,111,100,117,108,101,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,99,101,8,0,20,46,115,105,116,101,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,24,46,115,105,116,101,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,102,105,116,8,0,18,46,115,105,116,101,115,109,97,114,116,45,99,111,111,107,105,101,115,8,0,32,46,115,105,116,101,119,105,100,101,45,98,97,110,110,101,114,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,14,46,115,106,115,45,101,117,45,99,111,111,107,105,101,8,0,29,46,115,107,45,99,111,109,112,111,110,101,110,116,45,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,18,46,115,107,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,12,46,115,107,97,45,99,111,111,107,105,101,115,8,0,14,46,115,107,114,45,99,111,111,107,105,101,66,111,120,8,0,28,46,115,107,121,45,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,17,46,115,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,115,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,14,46,115,108,105,99,101,95,67,111,111,107,105,101,115,8,0,15,46,115,108,105,100,101,73,110,46,99,111,111,107,105,101,8,0,17,46,115,108,105,100,101,111,117,116,45,99,111,111,107,105,101,115,8,0,23,46,115,108,105,100,105,110,103,45,99,111,111,107,105,101,115,45,98,111,116,116,111,109,8,0,22,46,115,108,105,100,105,110,103,45,112,114,105,118,97,99,121,45,112,111,112,117,112,8,0,20,46,115,109,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,8,0,18,46,115,109,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,19,46,115,109,97,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,21,46,115,109,97,108,108,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,24,46,115,109,97,108,108,95,103,100,112,114,95,112,111,112,117,112,95,104,111,108,100,101,114,8,0,17,46,115,109,97,114,116,45,101,117,45,99,111,111,107,105,101,115,8,0,35,46,115,109,99,99,95,98,111,116,116,111,109,95,99,111,111,107,105,101,97,99,99,101,112,116,95,99,111,110,116,97,105,110,101,114,8,0,36,46,115,109,105,108,101,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,8,0,17,46,115,109,108,95,99,111,111,107,105,101,112,111,108,105,99,121,8,0,17,46,115,109,111,111,116,104,105,101,45,99,111,110,115,101,110,116,8,0,20,46,115,109,114,116,45,110,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,16,46,115,109,116,45,99,111,111,107,105,101,45,110,111,116,101,8,0,16,46,115,110,97,99,107,98,97,114,45,99,111,111,107,105,101,8,0,26,46,115,110,97,99,107,98,97,114,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,15,46,115,110,99,109,112,45,97,112,112,95,103,100,112,114,8,0,23,46,115,110,101,97,107,121,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,21,46,115,110,105,103,101,108,45,99,109,112,45,102,114,97,109,101,119,111,114,107,8,0,18,46,115,111,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,29,46,115,111,45,103,100,112,114,95,95,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,18,46,115,111,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,23,46,115,111,107,45,99,111,110,115,101,110,116,45,98,111,116,116,111,109,45,98,97,114,8,0,21,46,115,111,108,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,17,46,115,111,108,45,99,111,111,107,105,101,45,99,111,118,101,114,8,0,19,46,115,111,108,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,11,46,115,111,115,45,99,111,111,107,105,101,8,0,14,46,115,111,116,105,99,45,99,111,111,107,105,101,115,8,0,16,46,115,111,117,104,108,97,115,45,99,111,111,107,105,101,115,8,0,11,46,115,111,118,114,110,45,103,100,112,114,8,0,17,46,115,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,115,112,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,23,46,115,112,45,100,115,103,118,111,45,112,111,112,117,112,45,111,118,101,114,108,97,121,8,0,30,46,115,112,45,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,8,0,23,46,115,112,45,109,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,15,46,115,112,67,111,111,107,105,101,78,111,116,105,99,101,8,0,14,46,115,112,95,97,100,95,119,114,97,112,112,101,114,8,0,20,46,115,112,97,99,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,11,46,115,112,100,45,99,111,111,107,105,101,8,0,18,46,115,112,101,99,45,99,111,111,107,105,101,45,111,112,116,105,110,8,0,30,46,115,112,101,99,116,114,117,109,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,19,46,115,112,101,120,45,99,111,111,107,105,101,67,111,110,115,101,110,116,8,0,22,46,115,112,105,99,121,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,8,0,23,46,115,112,107,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,8,0,10,46,115,112,107,99,111,111,107,105,101,8,0,13,46,115,112,114,100,45,99,111,110,115,101,110,116,8,0,19,46,115,112,114,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,10,46,115,113,114,99,111,111,107,105,101,8,0,20,46,115,114,97,120,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,42,46,115,114,99,45,99,111,109,112,111,110,101,110,116,115,45,67,111,111,107,105,101,80,111,108,105,99,121,45,95,95,115,116,121,108,101,95,95,114,111,111,116,8,0,18,46,115,114,102,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,17,46,115,115,45,109,111,100,97,108,45,99,111,111,107,105,101,115,8,0,18,46,115,115,102,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,115,116,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,17,46,115,116,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,21,46,115,116,95,110,111,116,105,102,105,99,97,116,105,111,110,95,119,114,97,112,8,0,23,46,115,116,97,109,112,101,110,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,8,0,24,46,115,116,97,112,102,111,116,111,45,99,111,111,107,105,101,45,109,101,108,100,105,110,103,8,0,14,46,115,116,97,116,101,45,105,115,45,99,99,112,97,8,0,17,46,115,116,97,116,105,115,116,105,99,115,79,112,116,66,111,120,8,0,15,46,115,116,97,116,117,115,45,99,111,111,107,105,101,115,8,0,13,46,115,116,105,99,107,101,114,45,103,100,112,114,8,0,19,46,115,116,105,99,107,121,45,98,97,114,45,45,99,111,111,107,105,101,8,0,14,46,115,116,105,99,107,121,45,99,111,111,107,105,101,8,0,44,46,115,116,105,99,107,121,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,8,0,21,46,115,116,105,99,107,121,45,99,111,111,107,105,101,45,102,111,111,116,101,114,8,0,26,46,115,116,105,99,107,121,45,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,8,0,22,46,115,116,105,99,107,121,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,23,46,115,116,105,99,107,121,45,99,111,111,107,105,101,108,97,119,98,97,110,110,101,114,8,0,15,46,115,116,105,99,107,121,45,99,111,111,107,105,101,115,8,0,21,46,115,116,105,99,107,121,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,26,46,115,116,105,99,107,121,45,102,111,111,116,101,114,45,99,111,111,107,105,101,45,105,110,102,111,8,0,19,46,115,116,105,99,107,121,67,111,111,107,105,101,80,111,108,105,99,121,8,0,14,46,115,116,105,99,107,121,95,99,111,111,107,105,101,8,0,22,46,115,116,105,99,107,121,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,8,0,13,46,115,116,105,99,107,121,99,111,111,107,105,101,8,0,38,46,115,116,105,99,107,121,102,111,111,116,101,114,45,99,111,111,107,105,101,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,8,0,15,46,115,116,108,67,111,111,107,105,101,84,111,97,115,116,8,0,12,46,115,116,110,45,99,111,111,107,105,101,115,8,0,16,46,115,116,110,95,99,111,111,107,105,101,111,112,116,105,110,8,0,13,46,115,116,111,114,109,45,99,111,111,107,105,101,8,0,32,46,115,116,111,114,109,100,105,103,105,116,97,108,45,99,111,111,107,105,101,87,97,108,108,45,111,118,101,114,108,97,121,8,0,20,46,115,116,114,105,112,101,45,99,108,97,105,109,45,99,111,111,107,105,101,8,0,15,46,115,116,114,105,112,101,95,99,111,111,107,105,101,115,8,0,17,46,115,116,114,105,115,99,105,97,45,99,111,111,107,105,101,115,8,0,11,46,115,116,116,45,99,111,111,107,105,101,8,0,20,46,115,116,117,112,105,100,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,24,46,115,116,121,95,99,111,111,107,105,101,95,109,111,110,115,116,101,114,95,99,111,110,116,8,0,13,46,115,116,121,108,101,67,111,111,107,105,101,115,8,0,13,46,115,117,45,99,111,111,107,105,101,98,97,114,8,0,21,46,115,117,98,45,102,111,111,116,101,114,32,62,32,46,99,111,111,107,105,101,8,0,17,46,115,117,98,115,99,114,105,98,101,45,99,111,111,107,105,101,8,0,28,46,115,117,99,104,101,110,45,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,116,111,97,115,116,8,0,20,46,115,117,103,45,110,111,116,105,99,101,45,45,112,114,105,118,97,99,121,8,0,14,46,115,117,105,45,67,109,112,66,97,110,110,101,114,8,0,17,46,115,117,105,45,67,111,111,107,105,101,66,97,110,110,101,114,8,0,19,46,115,117,105,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,14,46,115,117,108,99,111,45,99,111,111,107,105,101,115,8,0,22,46,115,117,110,100,97,121,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,23,46,115,117,112,101,114,112,119,97,45,115,116,105,99,107,121,45,98,97,110,110,101,114,8,0,22,46,115,117,112,112,111,114,116,45,98,111,111,116,111,109,45,99,111,111,107,105,101,8,0,21,46,115,117,114,115,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,12,46,115,117,116,105,119,97,114,110,105,110,103,8,0,16,46,115,118,45,67,111,111,107,105,101,87,105,110,100,111,119,8,0,25,46,115,118,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,23,46,115,118,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,17,46,115,118,45,99,111,111,107,105,101,67,111,110,115,101,110,116,8,0,29,46,115,118,45,115,101,45,115,111,108,101,105,108,105,116,45,67,111,111,107,105,101,77,101,115,115,97,103,101,8,0,23,46,115,118,45,116,101,120,116,45,112,111,114,116,108,101,116,46,99,111,111,107,105,101,8,0,20,46,115,119,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,25,46,115,119,45,99,111,111,107,105,101,66,97,110,110,101,114,95,95,111,118,101,114,108,97,121,8,0,18,46,115,119,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,20,46,115,119,49,57,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,9,46,115,119,67,111,111,107,105,101,8,0,22,46,115,119,67,111,111,107,105,101,66,97,110,110,101,114,87,97,114,112,112,101,114,8,0,19,46,115,119,103,45,111,118,101,114,108,97,121,45,99,111,111,107,105,101,8,0,33,46,115,119,105,99,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,99,111,110,116,97,105,110,101,114,8,0,21,46,115,119,105,102,116,76,101,103,97,108,67,111,109,112,108,105,97,110,99,101,8,0,13,46,115,119,110,122,97,95,98,97,110,110,101,114,8,0,24,46,115,119,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,18,46,115,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,17,46,115,120,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,11,46,115,120,45,99,111,111,107,105,101,115,8,0,9,46,115,120,99,111,111,107,105,101,8,0,19,46,115,121,109,97,110,116,101,99,45,99,112,45,98,97,110,110,101,114,8,0,23,46,115,121,109,112,111,115,105,97,45,99,111,111,107,105,101,45,97,99,99,101,112,116,8,0,20,46,115,121,110,111,95,99,111,111,107,105,101,95,101,108,101,109,101,110,116,8,0,15,46,115,121,115,95,99,99,45,99,111,111,107,105,101,115,8,0,31,46,115,121,115,95,104,101,97,100,101,114,95,116,111,111,108,98,97,114,95,99,111,111,107,105,101,95,116,101,120,116,8,0,21,46,115,121,115,116,101,109,45,110,111,116,105,99,101,46,99,111,111,107,105,101,8,0,17,46,115,122,45,109,101,116,97,95,95,99,111,111,107,105,101,115,8,0,12,46,115,122,99,95,119,105,100,101,98,111,120,8,0,9,46,116,45,99,111,111,107,105,101,8,0,28,46,116,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,17,46,116,51,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,6,46,116,67,111,111,107,8,0,18,46,116,67,111,111,107,105,101,115,73,110,102,111,98,108,111,99,107,8,0,12,46,116,97,98,45,99,111,111,107,105,101,115,8,0,14,46,116,97,98,50,45,114,111,100,111,45,98,97,114,8,0,9,46,116,97,110,99,109,98,110,114,8,0,16,46,116,97,111,45,99,111,111,107,105,101,45,104,105,110,116,8,0,15,46,116,97,114,95,99,111,111,107,105,101,115,66,97,114,8,0,28,46,116,97,114,116,101,97,117,99,105,116,114,111,110,65,108,101,114,116,66,105,103,66,111,116,116,111,109,8,0,27,46,116,97,114,116,101,97,117,99,105,116,114,111,110,66,101,102,111,114,101,86,105,115,105,98,108,101,8,0,35,46,116,97,120,99,111,100,101,97,110,100,112,114,105,118,97,99,121,45,99,111,111,107,105,101,110,111,116,105,99,101,45,98,97,114,8,0,9,46,116,98,99,111,111,107,105,101,8,0,17,46,116,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,21,46,116,99,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,8,0,18,46,116,99,45,99,111,111,107,105,101,115,45,97,108,101,114,116,97,8,0,18,46,116,99,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,19,46,116,99,45,112,114,105,118,97,99,121,45,111,118,101,114,108,97,121,8,0,23,46,116,99,67,111,111,107,105,101,115,68,105,97,108,111,103,87,114,97,112,112,101,114,8,0,24,46,116,99,117,45,99,111,111,107,105,101,115,45,100,112,103,114,45,98,97,110,110,101,114,8,0,8,46,116,100,45,103,100,112,114,8,0,23,46,116,100,45,103,100,112,114,95,95,99,111,111,107,105,101,109,101,115,115,97,103,101,8,0,22,46,116,100,95,95,110,97,118,95,95,99,111,111,107,105,101,78,111,116,105,99,101,8,0,19,46,116,100,95,114,113,95,109,111,100,97,108,45,99,111,111,107,105,101,8,0,22,46,116,101,97,108,105,117,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,24,46,116,101,109,112,108,97,116,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,25,46,116,101,109,112,108,97,116,101,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,115,8,0,21,46,116,101,110,99,45,104,101,97,100,101,114,95,95,99,111,111,107,105,101,115,8,0,15,46,116,101,110,100,105,110,97,45,99,111,111,107,105,101,8,0,9,46,116,101,114,109,76,71,80,68,8,0,15,46,116,101,114,109,108,121,45,99,111,110,115,101,110,116,8,0,18,46,116,101,114,109,111,45,97,99,101,105,116,101,45,108,103,112,100,8,0,12,46,116,101,114,109,111,67,111,111,107,105,101,8,0,16,46,116,101,114,109,111,115,45,112,111,108,105,116,105,99,97,8,0,26,46,116,101,114,109,111,115,95,99,111,111,107,105,101,95,112,114,105,118,97,99,105,100,97,100,101,8,0,29,46,116,101,114,109,115,45,99,111,110,100,105,116,105,111,110,115,45,98,111,116,116,111,109,45,108,105,110,101,8,0,14,46,116,101,114,109,115,45,99,111,111,107,105,101,115,8,0,40,46,116,101,114,109,115,102,101,101,100,45,99,111,109,45,45,45,110,98,45,105,110,116,101,114,115,116,105,116,105,97,108,45,111,118,101,114,108,97,121,8,0,22,46,116,101,114,109,115,102,101,101,100,45,99,111,109,45,45,45,114,101,115,101,116,8,0,13,46,116,101,115,99,111,45,99,111,111,107,105,101,8,0,25,46,116,101,115,116,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,116,101,120,116,45,99,101,110,116,101,114,46,99,111,111,107,105,101,8,0,27,46,116,101,120,116,45,99,101,110,116,101,114,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,12,46,116,101,120,116,45,99,111,111,107,105,101,8,0,26,46,116,101,120,116,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,18,46,116,101,120,116,101,65,108,101,114,116,101,67,111,111,107,105,101,8,0,14,46,116,101,120,116,111,95,99,111,111,107,105,101,115,8,0,21,46,116,102,45,99,111,111,107,105,101,80,111,108,105,99,121,77,111,100,97,108,8,0,15,46,116,102,116,108,45,48,56,45,99,111,111,107,105,101,8,0,15,46,116,103,45,105,110,102,111,45,99,111,111,107,105,101,8,0,26,46,116,103,100,112,114,99,45,99,111,111,107,105,101,45,98,97,114,45,100,105,115,112,108,97,121,8,0,17,46,116,104,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,116,104,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,15,46,116,104,98,45,99,111,111,107,105,101,45,98,97,114,8,0,17,46,116,104,99,111,111,107,105,101,45,111,118,101,114,108,97,121,8,0,18,46,116,104,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,14,46,116,104,101,45,99,111,111,107,105,101,106,97,114,8,0,9,46,116,104,101,45,103,100,112,114,8,0,10,46,116,104,101,67,111,111,107,105,101,8,0,25,46,116,104,101,70,114,105,101,110,100,108,121,67,111,111,107,105,101,77,111,110,115,116,101,114,8,0,10,46,116,104,101,101,99,108,98,111,120,8,0,23,46,116,104,105,115,95,115,105,116,101,95,117,115,101,115,95,99,111,111,107,105,101,115,8,0,31,46,116,104,111,109,97,110,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,8,0,11,46,116,104,115,99,111,111,107,105,101,115,8,0,31,46,116,105,98,114,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,14,46,116,105,99,107,101,114,95,99,111,111,107,105,101,8,0,14,46,116,105,101,116,111,115,117,111,106,97,98,111,120,8,0,13,46,116,107,45,70,111,111,116,101,114,45,99,99,8,0,20,46,116,107,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,24,46,116,107,110,45,99,111,111,107,105,101,45,97,99,99,101,112,116,95,95,97,114,101,97,8,0,17,46,116,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,20,46,116,109,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,22,46,116,109,45,99,111,111,107,105,101,45,100,105,97,108,111,103,45,114,111,111,116,8,0,11,46,116,109,45,99,111,111,107,105,101,115,8,0,19,46,116,109,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,8,0,12,46,116,109,67,111,111,107,105,101,66,111,120,8,0,18,46,116,109,98,45,99,111,111,107,105,101,45,99,104,111,105,99,101,8,0,15,46,116,109,99,111,111,107,105,101,110,111,116,105,99,101,8,0,19,46,116,109,111,45,99,111,111,107,105,101,45,109,101,108,100,105,110,103,8,0,19,46,116,110,45,99,111,111,107,105,101,73,110,102,111,45,97,114,101,97,8,0,18,46,116,110,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,116,110,102,45,99,111,111,107,105,101,8,0,18,46,116,110,119,95,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,20,46,116,110,122,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,8,0,15,46,116,111,97,115,116,45,45,99,111,111,107,105,101,115,8,0,23,46,116,111,97,115,116,45,45,109,111,100,45,99,111,111,107,105,101,45,100,101,115,99,8,0,20,46,116,111,97,115,116,45,98,108,111,99,107,45,99,111,111,107,105,101,115,8,0,13,46,116,111,97,115,116,45,99,111,111,107,105,101,8,0,20,46,116,111,97,115,116,45,99,111,111,107,105,101,45,97,99,116,105,118,101,8,0,23,46,116,111,97,115,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,14,46,116,111,97,115,116,45,99,111,111,107,105,101,115,8,0,20,46,116,111,97,115,116,45,112,114,105,109,97,114,121,46,116,111,97,115,116,8,0,21,46,116,111,97,115,116,45,116,121,112,101,45,110,101,119,67,111,111,107,105,101,8,0,18,46,116,111,97,115,116,67,111,111,107,105,101,80,111,108,105,99,121,8,0,40,46,116,111,97,115,116,91,100,97,116,97,45,100,105,115,109,105,115,115,97,98,108,101,45,105,100,61,34,99,111,111,107,105,101,105,110,102,111,34,93,8,0,23,46,116,111,97,115,116,101,114,45,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,12,46,116,111,102,45,99,111,111,107,105,101,115,8,0,16,46,116,111,111,108,98,97,114,45,99,111,111,107,105,101,115,8,0,26,46,116,111,112,45,97,108,101,114,116,45,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,11,46,116,111,112,45,99,111,111,107,105,101,8,0,18,46,116,111,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,116,111,112,45,99,111,111,107,105,101,45,105,110,102,111,8,0,24,46,116,111,112,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,116,111,112,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,12,46,116,111,112,45,99,111,111,107,105,101,115,8,0,22,46,116,111,112,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,16,46,116,111,112,45,104,101,97,100,101,114,45,103,100,112,114,8,0,16,46,116,111,112,45,105,110,102,111,45,99,111,111,107,105,101,8,0,17,46,116,111,112,45,105,110,102,111,45,99,111,111,107,105,101,115,8,0,33,46,116,111,112,45,109,101,115,115,97,103,101,91,100,97,116,97,45,118,99,118,45,116,111,112,45,98,97,110,110,101,114,93,8,0,24,46,116,111,112,45,112,111,112,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,8,0,36,46,116,111,112,45,114,111,119,91,100,97,116,97,45,99,111,110,116,97,105,110,101,114,61,34,99,111,111,107,105,101,98,111,120,34,93,8,0,23,46,116,111,112,45,119,114,97,112,112,101,114,45,99,111,111,107,105,101,105,110,102,111,8,0,27,46,116,111,112,67,111,109,112,111,110,101,110,116,95,95,99,111,111,107,105,101,66,97,110,110,101,114,8,0,14,46,116,111,112,67,111,111,107,105,101,115,77,115,103,8,0,17,46,116,111,112,95,98,97,110,110,101,114,45,45,103,100,112,114,8,0,11,46,116,111,112,95,99,111,111,107,105,101,8,0,18,46,116,111,112,95,99,111,111,107,105,101,95,112,97,110,110,101,108,8,0,28,46,116,111,112,95,109,101,115,115,97,103,101,95,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,8,0,11,46,116,111,112,99,111,111,107,105,101,115,8,0,18,46,116,111,112,109,101,115,115,97,103,101,45,99,111,111,107,105,101,8,0,19,46,116,111,112,115,108,105,100,101,105,110,46,99,111,111,107,105,101,115,8,0,23,46,116,111,115,45,66,97,110,110,101,114,45,100,105,115,109,105,115,115,97,98,108,101,8,0,11,46,116,111,115,45,102,111,111,116,101,114,8,0,18,46,116,111,115,45,117,112,100,97,116,101,45,98,97,110,110,101,114,8,0,27,46,116,111,117,99,104,100,101,115,105,103,110,45,99,111,111,107,105,101,45,112,114,105,118,97,99,121,8,0,14,46,116,112,45,99,111,111,107,105,101,45,108,97,119,8,0,10,46,116,112,95,99,111,111,107,105,101,8,0,15,46,116,112,99,97,45,99,111,110,116,97,105,110,101,114,8,0,12,46,116,112,108,45,99,111,111,107,105,101,115,8,0,14,46,116,112,108,45,103,45,99,111,111,107,105,101,115,8,0,17,46,116,112,108,105,115,45,99,108,45,99,111,111,107,105,101,115,8,0,21,46,116,114,45,68,105,115,109,105,115,115,105,98,108,101,66,97,110,110,101,114,8,0,18,46,116,114,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,18,46,116,114,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,8,0,25,46,116,114,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,110,110,101,114,8,0,16,46,116,114,97,99,107,105,110,103,45,98,97,110,110,101,114,8,0,24,46,116,114,97,99,107,105,110,103,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,17,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,8,0,24,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,21,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,99,116,97,8,0,24,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,8,0,24,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,110,111,116,105,99,101,8,0,25,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,8,0,23,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,112,111,112,117,112,8,0,19,46,116,114,97,99,107,105,110,103,45,99,111,110,116,101,110,97,110,116,8,0,20,46,116,114,97,99,107,105,110,103,45,100,105,115,99,108,97,105,109,101,114,8,0,38,46,116,114,97,99,107,105,110,103,45,119,105,100,103,101,116,91,100,97,116,97,45,116,114,97,99,107,105,110,103,45,119,105,100,103,101,116,93,8,0,26,46,116,114,97,99,107,105,110,103,67,111,111,107,105,101,115,68,105,115,99,108,97,105,109,101,114,8,0,22,46,116,114,97,99,107,105,110,103,78,111,116,105,99,101,79,118,101,114,108,97,121,8,0,23,46,116,114,97,99,107,105,110,103,95,99,111,111,107,105,101,95,104,101,97,100,101,114,8,0,25,46,116,114,97,99,107,105,110,103,95,99,111,111,107,105,101,95,104,105,100,101,97,98,108,101,8,0,20,46,116,114,100,45,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,8,0,22,46,116,114,101,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,31,46,116,114,105,108,108,105,97,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,21,46,116,114,111,120,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,8,0,17,46,116,114,117,115,116,101,45,115,102,45,98,97,110,110,101,114,8,0,19,46,116,114,117,115,116,101,95,98,111,120,95,111,118,101,114,108,97,121,8,0,39,46,116,114,117,115,116,101,95,99,109,95,111,117,116,101,114,100,105,118,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,35,46,116,114,117,115,116,101,95,111,118,101,114,108,97,121,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,8,0,18,46,116,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,17,46,116,115,51,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,15,46,116,115,95,112,114,105,118,97,99,121,95,97,100,118,8,0,31,46,116,115,99,85,105,78,111,116,105,102,105,99,97,116,105,111,110,77,105,100,100,108,101,87,114,97,112,112,101,114,8,0,23,46,116,115,99,99,98,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,18,46,116,115,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,18,46,116,115,100,45,99,111,111,107,105,101,95,95,111,117,116,101,114,8,0,17,46,116,115,108,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,11,46,116,115,112,45,99,111,111,107,105,101,8,0,17,46,116,116,45,98,115,104,45,99,111,111,107,105,101,98,97,114,8,0,19,46,116,116,45,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,8,0,14,46,116,116,45,99,111,111,107,105,101,45,98,97,114,8,0,21,46,116,116,45,99,111,111,107,105,101,45,98,97,114,45,109,111,100,117,108,101,8,0,17,46,116,116,95,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,16,46,116,116,97,99,106,115,95,95,111,118,101,114,108,97,121,8,0,10,46,116,116,99,111,110,115,101,110,116,8,0,9,46,116,117,105,45,103,100,112,114,8,0,23,46,116,117,116,111,114,105,97,108,95,98,97,110,110,101,114,95,99,111,111,107,105,101,8,0,20,46,116,118,50,45,106,115,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,20,46,116,118,99,109,115,99,111,111,107,105,101,115,45,110,111,116,105,99,101,8,0,10,46,116,119,45,99,111,111,107,105,101,8,0,26,46,116,119,45,117,115,101,114,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,8,0,27,46,116,119,105,110,100,105,103,105,116,97,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,21,46,116,119,111,100,111,100,105,103,105,116,97,108,45,45,99,111,111,107,105,101,8,0,28,46,116,119,115,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,45,119,114,97,112,112,101,114,8,0,19,46,116,119,116,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,14,46,116,120,45,98,115,100,45,99,111,111,107,105,101,8,0,23,46,116,120,45,99,111,110,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,16,46,116,120,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,15,46,116,120,45,99,111,111,107,105,101,111,112,116,105,110,8,0,14,46,116,120,45,100,109,45,99,111,111,107,105,101,115,8,0,17,46,116,120,45,101,119,105,45,101,121,101,99,111,111,107,105,101,8,0,18,46,116,120,45,103,103,99,111,111,107,105,101,98,97,110,110,101,114,8,0,19,46,116,120,45,105,116,50,52,99,111,111,107,105,101,115,45,112,105,49,8,0,29,46,116,120,45,109,111,100,97,108,99,111,111,107,105,101,98,97,110,110,101,114,45,111,118,101,114,108,97,121,8,0,16,46,116,120,45,112,97,110,100,97,45,99,111,111,107,105,101,8,0,26,46,116,120,45,112,97,115,99,111,101,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,8,0,11,46,116,120,45,112,110,102,99,110,105,108,8,0,15,46,116,120,45,116,97,110,100,110,99,111,111,107,105,101,8,0,27,46,116,120,45,119,104,122,99,111,111,107,105,101,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,40,46,116,120,95,99,111,111,107,105,101,109,111,110,115,116,101,114,95,100,97,116,97,112,114,111,116,101,99,116,105,111,110,95,111,118,101,114,108,97,121,8,0,14,46,116,120,95,102,101,95,99,111,111,107,105,101,115,8,0,19,46,116,120,99,95,99,111,111,107,105,101,95,105,110,102,111,98,111,120,8,0,12,46,116,120,116,99,111,111,99,107,105,101,115,8,0,17,46,116,121,103,104,45,116,111,112,45,99,111,111,107,105,101,115,8,0,15,46,116,121,112,101,45,99,111,111,107,105,101,76,97,119,8,0,22,46,116,121,112,101,45,99,111,111,107,105,101,97,99,99,101,112,116,112,97,103,101,8,0,20,46,116,121,112,105,102,121,45,99,111,111,107,105,101,45,112,111,112,117,112,8,0,17,46,117,45,98,97,110,110,101,114,45,99,111,111,107,105,101,115,8,0,9,46,117,45,99,111,111,107,105,101,8,0,16,46,117,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,117,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,8,0,10,46,117,45,108,97,98,45,98,97,114,8,0,17,46,117,45,108,97,98,45,99,111,111,107,105,101,45,108,97,119,8,0,17,46,117,98,45,101,109,98,45,98,97,114,45,102,114,97,109,101,8,0,19,46,117,98,103,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,10,46,117,99,45,99,111,111,107,105,101,8,0,16,46,117,99,45,99,111,111,107,105,101,45,98,108,111,99,107,8,0,11,46,117,99,45,99,111,111,107,105,101,115,8,0,13,46,117,99,103,67,111,111,107,105,101,66,97,114,8,0,21,46,117,99,109,45,98,97,110,110,101,114,45,112,111,115,45,45,112,117,115,104,8,0,10,46,117,99,110,45,98,108,111,99,107,8,0,9,46,117,99,111,111,107,105,101,67,8,0,37,46,117,100,45,99,111,109,112,111,110,101,110,116,45,45,101,117,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,45,97,112,112,8,0,40,46,117,100,45,99,111,109,112,111,110,101,110,116,45,45,102,111,111,116,101,114,45,45,101,117,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,28,46,117,100,103,100,112,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,99,101,8,0,27,46,117,101,45,99,45,115,105,116,101,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,115,8,0,21,46,117,101,108,116,106,101,45,99,111,111,107,105,101,45,97,99,99,101,112,116,8,0,26,46,117,103,51,45,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,8,0,15,46,117,103,99,45,99,111,111,107,105,101,45,98,97,114,8,0,29,46,117,105,45,99,111,111,107,105,101,45,98,108,111,99,107,101,100,45,112,97,103,101,45,99,111,118,101,114,8,0,36,46,117,105,45,99,111,111,107,105,101,45,98,108,111,99,107,101,100,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,8,0,18,46,117,105,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,17,46,117,105,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,17,46,117,105,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,18,46,117,105,45,99,111,111,107,105,101,45,116,111,111,108,116,105,112,8,0,18,46,117,105,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,11,46,117,105,45,99,111,111,107,105,101,50,8,0,15,46,117,105,45,99,111,111,107,105,101,65,103,114,101,101,8,0,11,46,117,105,45,99,111,111,107,105,101,115,8,0,18,46,117,105,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,8,0,26,46,117,105,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,111,118,101,114,108,97,121,8,0,18,46,117,105,45,100,105,97,108,111,103,45,99,111,111,107,105,101,115,8,0,14,46,117,105,46,99,111,111,107,105,101,46,110,97,103,8,0,14,46,117,105,67,111,111,107,105,101,115,72,105,110,116,8,0,17,46,117,105,116,107,45,103,100,112,114,45,98,97,110,110,101,114,8,0,10,46,117,107,45,99,111,111,107,105,101,8,0,17,46,117,107,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,11,46,117,107,45,99,111,111,107,105,101,115,8,0,25,46,117,107,45,102,105,114,115,116,45,99,111,108,117,109,110,46,117,107,45,97,108,101,114,116,8,0,30,46,117,107,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,111,116,116,111,109,45,99,101,110,116,101,114,8,0,28,46,117,107,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,111,116,116,111,109,45,108,101,102,116,8,0,23,46,117,107,45,110,111,116,105,102,121,45,109,101,115,115,97,103,101,45,105,110,102,111,8,0,26,46,117,107,45,112,111,115,105,116,105,111,110,45,102,105,120,101,100,46,99,111,111,107,105,101,115,8,0,15,46,117,107,67,111,111,107,105,101,80,111,108,105,99,121,8,0,12,46,117,108,67,111,111,107,105,101,80,111,108,8,0,39,46,117,108,116,105,109,105,122,101,95,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,110,116,97,105,110,101,114,8,0,14,46,117,109,117,67,111,111,107,105,101,77,97,105,110,8,0,17,46,117,110,95,99,111,111,107,105,101,67,111,110,102,105,114,109,8,0,17,46,117,110,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,18,46,117,110,105,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,28,46,117,110,105,110,97,118,45,99,111,111,107,105,101,45,108,97,119,45,99,111,110,116,97,105,110,101,114,8,0,17,46,117,110,105,116,99,111,111,107,105,101,111,110,112,97,103,101,8,0,26,46,117,110,105,118,101,114,115,97,108,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,8,0,11,46,117,110,113,45,99,111,111,107,105,101,8,0,16,46,117,111,45,102,105,114,115,116,45,99,111,111,107,105,101,8,0,15,46,117,112,45,102,111,114,109,45,99,111,111,107,105,101,8,0,15,46,117,112,50,45,99,111,111,107,105,101,45,100,105,118,8,0,19,46,117,112,115,100,95,95,108,103,112,100,95,95,114,101,110,100,101,114,8,0,29,46,117,112,115,101,108,108,45,103,100,112,114,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,8,0,19,46,117,113,118,50,45,99,111,110,115,101,110,116,45,112,111,112,117,112,8,0,11,46,117,115,101,45,99,111,111,107,105,101,8,0,17,46,117,115,101,45,99,111,111,107,105,101,45,98,108,111,99,107,8,0,15,46,117,115,101,45,99,111,111,107,105,101,45,98,111,120,8,0,21,46,117,115,101,45,99,111,111,107,105,101,45,99,111,109,112,111,110,101,110,116,8,0,21,46,117,115,101,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,24,46,117,115,101,45,99,111,111,107,105,101,115,45,98,108,111,99,107,45,102,105,120,101,100,8,0,17,46,117,115,101,45,99,111,111,107,105,101,115,95,109,97,105,110,8,0,13,46,117,115,101,67,111,111,107,105,101,66,111,120,8,0,15,46,117,115,101,67,111,111,107,105,101,115,73,110,102,111,8,0,11,46,117,115,101,95,99,111,111,107,105,101,8,0,12,46,117,115,101,95,99,111,111,107,105,101,115,8,0,20,46,117,115,101,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,11,46,117,115,101,99,111,111,107,105,101,115,8,0,17,46,117,115,101,111,102,99,111,111,107,105,101,115,45,116,105,112,8,0,21,46,117,115,101,114,45,97,108,101,114,116,115,95,95,99,111,111,107,105,101,115,8,0,23,46,117,115,101,114,45,99,111,110,115,101,110,116,46,117,105,45,100,105,97,108,111,103,8,0,28,46,117,115,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,101,99,116,105,111,110,8,0,19,46,117,115,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,31,46,117,115,101,114,84,105,112,66,97,110,110,101,114,45,45,97,103,114,101,101,100,95,116,111,95,116,101,114,109,115,8,0,21,46,117,115,101,114,99,111,111,107,105,101,109,97,110,97,103,101,109,101,110,116,8,0,15,46,117,115,101,114,99,111,111,107,105,101,115,104,111,119,8,0,14,46,117,115,101,114,109,115,103,67,111,111,107,105,101,8,0,31,46,117,115,101,114,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,45,117,115,97,103,101,8,0,13,46,117,115,105,110,103,45,99,111,111,107,105,101,8,0,19,46,117,115,105,110,103,45,99,111,111,107,105,101,45,98,108,111,99,107,8,0,11,46,117,115,111,45,99,111,111,107,105,101,8,0,21,46,117,116,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,99,49,8,0,18,46,117,116,119,101,110,116,101,45,99,111,111,107,105,101,98,97,114,8,0,29,46,117,117,53,45,98,114,105,99,107,115,45,99,111,111,107,105,101,45,98,97,114,45,98,111,116,116,111,109,8,0,20,46,117,117,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,18,46,117,119,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,18,46,117,120,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,16,46,117,120,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,21,46,118,45,65,95,45,99,111,111,107,105,101,95,95,109,111,110,115,116,101,114,8,0,24,46,118,45,97,112,112,45,80,111,114,116,108,101,116,67,111,111,107,105,101,115,76,97,119,8,0,17,46,118,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,13,46,118,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,118,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,23,46,118,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,21,46,118,45,115,105,116,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,28,46,118,45,119,105,110,100,111,119,45,99,111,111,107,105,101,68,105,97,108,111,103,87,105,110,100,111,119,8,0,21,46,118,50,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,21,46,118,50,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,8,0,10,46,118,97,108,105,100,114,103,112,100,8,0,19,46,118,97,108,117,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,14,46,118,98,99,110,45,98,97,99,107,100,114,111,112,8,0,18,46,118,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,17,46,118,99,45,99,111,111,107,105,101,99,111,110,115,101,110,116,8,0,16,46,118,101,110,116,97,110,97,45,99,111,111,107,105,101,115,8,0,11,46,118,101,114,105,65,108,116,66,97,114,8,0,13,46,118,102,45,67,111,111,107,105,101,66,97,114,8,0,17,46,118,102,45,97,108,101,114,116,45,99,111,111,107,105,101,115,8,0,10,46,118,102,45,98,97,110,110,101,114,8,0,24,46,118,102,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,111,112,117,112,8,0,14,46,118,102,99,99,95,95,111,118,101,114,108,97,121,8,0,29,46,118,103,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,112,111,112,117,112,8,0,10,46,118,103,99,111,111,107,105,101,115,8,0,16,46,118,105,97,99,111,109,99,111,111,107,105,101,98,97,114,8,0,25,46,118,105,97,99,111,109,99,111,111,107,105,101,98,97,114,45,101,120,116,101,110,100,101,100,8,0,17,46,118,105,98,114,97,110,116,45,97,112,112,95,103,100,112,114,8,0,10,46,118,105,101,119,45,103,100,112,114,8,0,12,46,118,105,105,97,45,99,111,111,107,105,101,8,0,35,46,118,105,114,116,117,97,108,103,114,111,117,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,8,0,26,46,118,105,115,105,98,108,101,45,99,111,111,107,105,101,115,58,110,111,116,40,98,111,100,121,41,8,0,16,46,118,105,115,105,98,108,101,46,99,111,111,107,105,101,115,8,0,14,46,118,105,115,105,116,111,114,99,111,111,107,105,101,8,0,14,46,118,105,115,109,111,45,99,111,111,107,105,101,115,8,0,13,46,118,105,116,111,45,45,99,111,111,107,105,101,8,0,23,46,118,107,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,21,46,118,107,95,99,111,111,107,105,101,95,99,111,109,112,108,105,97,110,99,101,8,0,12,46,118,108,98,45,99,111,111,107,105,101,115,8,0,14,46,118,108,99,111,111,107,105,101,115,95,98,111,120,8,0,8,46,118,109,45,103,100,112,114,8,0,20,46,118,109,95,99,111,111,107,105,101,66,97,114,87,114,97,112,112,101,114,8,0,26,46,118,109,97,112,105,45,105,110,102,111,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,8,0,19,46,118,109,110,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,17,46,118,110,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,118,110,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,8,0,19,46,118,111,99,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,18,46,118,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,24,46,118,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,111,107,105,101,8,0,13,46,118,116,101,120,45,99,111,111,107,105,101,115,8,0,19,46,118,116,108,45,99,98,45,109,97,105,110,45,119,105,100,103,101,116,8,0,17,46,118,116,109,45,99,111,111,107,105,101,98,97,110,110,101,114,8,0,16,46,118,119,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,26,46,118,119,45,104,101,97,100,101,114,45,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,8,0,23,46,118,119,95,106,115,95,99,111,111,107,105,101,95,101,117,95,112,111,108,105,99,121,8,0,30,46,118,119,95,115,121,115,116,101,109,95,110,111,116,105,102,105,99,97,116,105,111,110,95,111,112,116,95,105,110,8,0,19,46,118,119,100,52,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,10,46,119,45,45,99,111,111,107,105,101,8,0,13,46,119,45,49,48,48,46,99,111,111,107,105,101,8,0,16,46,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,13,46,119,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,119,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,22,46,119,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,14,46,119,45,105,110,102,111,45,99,111,111,107,105,101,8,0,31,46,119,45,109,111,100,97,108,91,99,108,97,115,115,42,61,34,112,114,105,118,97,99,121,97,108,101,114,116,34,93,8,0,29,46,119,45,110,111,116,105,102,105,99,97,116,105,111,110,115,95,95,110,111,116,121,95,99,111,111,107,105,101,8,0,34,46,119,49,56,108,97,114,97,95,116,103,112,108,117,103,105,110,95,99,111,110,115,101,110,116,95,98,111,100,121,98,97,99,107,8,0,11,46,119,50,116,45,98,97,110,110,101,114,8,0,8,46,119,51,95,99,110,105,108,8,0,21,46,119,97,71,68,80,82,95,99,111,110,115,101,110,116,66,117,116,116,111,110,8,0,28,46,119,97,71,68,80,82,95,109,111,100,97,108,70,114,97,109,101,66,97,99,107,103,114,111,117,110,100,8,0,22,46,119,97,99,111,110,99,111,111,107,105,101,109,97,110,97,103,101,109,101,110,116,8,0,32,46,119,97,99,111,110,99,111,111,107,105,101,109,97,110,97,103,101,109,101,110,116,45,99,111,111,107,105,101,98,97,114,8,0,18,46,119,97,100,45,98,97,110,110,101,114,45,99,111,111,107,105,101,8,0,16,46,119,97,109,105,95,99,111,111,107,105,101,95,100,105,118,8,0,14,46,119,97,110,100,101,114,45,99,111,111,107,105,101,8,0,12,46,119,97,114,110,45,99,111,111,107,105,101,8,0,16,46,119,97,114,110,105,110,103,45,45,112,111,108,105,99,121,8,0,15,46,119,97,114,110,105,110,103,45,99,111,111,107,105,101,8,0,19,46,119,97,114,110,105,110,103,45,99,111,111,107,105,101,45,108,97,119,8,0,16,46,119,97,114,110,105,110,103,45,99,111,111,107,105,101,115,8,0,23,46,119,97,114,110,105,110,103,45,109,101,115,115,97,103,101,46,99,111,111,107,105,101,8,0,15,46,119,97,114,110,105,110,103,45,112,111,108,105,99,121,8,0,21,46,119,97,114,110,105,110,103,45,116,111,112,45,45,99,111,111,107,105,101,115,8,0,15,46,119,97,114,110,105,110,103,46,99,111,111,107,105,101,8,0,14,46,119,97,114,110,105,110,103,67,111,111,107,105,101,8,0,18,46,119,97,114,110,105,110,103,67,111,111,107,105,101,82,103,112,100,8,0,18,46,119,97,114,110,105,110,103,67,111,111,107,105,101,87,114,97,112,8,0,28,46,119,97,114,110,105,110,103,77,101,115,115,97,103,101,80,97,110,101,108,46,99,111,111,107,105,101,115,8,0,21,46,119,97,114,110,105,110,103,95,69,85,95,99,111,111,107,105,101,109,115,103,8,0,21,46,119,97,114,110,105,110,103,95,99,111,111,107,105,101,95,98,108,111,99,107,8,0,28,46,119,97,114,112,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,98,97,114,114,105,101,114,8,0,13,46,119,97,115,97,95,99,111,111,107,105,101,115,8,0,12,46,119,98,85,75,67,111,111,107,105,101,115,8,0,17,46,119,98,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,19,46,119,98,117,95,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,17,46,119,99,45,100,101,102,97,117,108,116,115,45,103,100,112,114,8,0,17,46,119,99,45,103,100,112,114,45,116,101,109,112,108,97,116,101,8,0,23,46,119,99,45,103,100,112,114,45,116,101,109,112,108,97,116,101,45,108,97,114,103,101,8,0,18,46,119,99,95,112,114,105,118,97,99,121,95,110,111,116,105,99,101,8,0,18,46,119,99,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,9,46,119,99,111,111,107,105,101,115,8,0,10,46,119,100,45,99,111,111,107,105,101,8,0,11,46,119,100,45,99,111,111,107,105,101,115,8,0,17,46,119,100,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,35,46,119,100,45,119,105,100,103,101,116,45,106,115,46,119,100,45,100,97,116,97,45,117,115,97,103,101,45,99,111,110,102,105,114,109,8,0,10,46,119,100,95,99,111,111,107,105,101,8,0,17,46,119,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,16,46,119,101,45,104,97,118,101,45,99,111,111,107,105,101,115,8,0,14,46,119,101,45,117,115,101,45,99,111,111,107,105,101,8,0,15,46,119,101,45,117,115,101,45,99,111,111,107,105,101,115,8,0,16,46,119,101,45,117,115,105,110,103,45,99,111,111,107,105,101,8,0,9,46,119,101,67,111,111,107,105,101,8,0,12,46,119,101,67,111,111,107,105,101,66,97,114,8,0,13,46,119,101,85,115,101,67,111,111,107,105,101,115,8,0,21,46,119,101,97,108,100,45,103,100,112,114,45,99,111,110,116,97,105,110,101,114,8,0,12,46,119,101,98,45,99,111,111,107,105,101,115,8,0,19,46,119,101,98,45,99,111,111,107,105,101,115,45,105,110,108,105,110,101,8,0,22,46,119,101,98,103,97,116,104,97,45,99,111,111,107,105,101,115,45,105,110,102,111,8,0,23,46,119,101,98,115,104,111,112,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,22,46,119,101,98,115,105,116,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,28,46,119,101,98,115,105,116,101,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,16,46,119,101,98,115,105,116,101,45,99,111,111,107,105,101,115,8,0,22,46,119,101,99,111,111,107,105,101,112,111,112,45,99,111,110,116,97,105,110,101,114,8,0,11,46,119,101,101,45,99,111,111,107,105,101,8,0,17,46,119,101,108,99,111,109,101,45,45,99,111,111,107,105,101,115,8,0,16,46,119,101,108,99,111,109,101,45,99,111,111,107,105,101,115,8,0,16,46,119,101,108,99,111,109,101,45,112,114,105,118,97,99,121,8,0,13,46,119,101,117,115,101,99,111,111,107,105,101,115,8,0,18,46,119,102,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,10,46,119,103,95,99,111,111,107,105,101,8,0,12,46,119,103,116,45,99,111,111,107,105,101,115,8,0,17,46,119,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,22,46,119,105,100,103,101,116,45,45,99,111,111,107,105,101,67,111,110,115,101,110,116,8,0,16,46,119,105,100,103,101,116,45,45,99,111,111,107,105,101,115,8,0,27,46,119,105,100,103,101,116,45,45,101,110,97,98,108,101,45,99,111,111,107,105,101,115,45,98,111,120,8,0,24,46,119,105,100,103,101,116,45,71,100,112,114,67,111,111,107,105,101,66,97,110,110,101,114,8,0,15,46,119,105,100,103,101,116,45,99,111,110,115,101,110,116,8,0,22,46,119,105,100,103,101,116,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,8,0,14,46,119,105,100,103,101,116,45,99,111,111,107,105,101,8,0,21,46,119,105,100,103,101,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,27,46,119,105,100,103,101,116,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,19,46,119,105,100,103,101,116,45,99,111,111,107,105,101,79,112,116,73,110,8,0,19,46,119,105,100,103,101,116,45,103,100,112,114,45,98,97,110,110,101,114,8,0,26,46,119,105,100,103,101,116,45,103,100,112,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,44,46,119,105,100,103,101,116,45,116,121,112,101,95,115,121,115,116,101,109,95,119,105,100,103,101,116,95,118,52,95,109,111,100,97,108,95,99,111,111,107,105,101,95,49,8,0,15,46,119,105,100,103,101,116,46,99,111,111,107,105,101,115,8,0,30,46,119,105,100,103,101,116,95,95,99,111,110,116,97,99,116,95,95,105,116,101,109,45,45,99,111,111,107,105,101,8,0,19,46,119,105,100,103,101,116,95,97,108,101,114,116,99,111,111,107,105,101,8,0,34,46,119,105,100,103,101,116,95,99,111,97,108,97,45,119,105,100,103,101,116,45,99,111,111,107,105,101,95,98,97,110,110,101,114,8,0,27,46,119,105,100,103,101,116,95,99,111,111,107,105,101,99,111,110,115,101,110,116,119,105,100,103,101,116,8,0,28,46,119,105,100,103,101,116,95,101,117,95,99,111,111,107,105,101,95,108,97,119,95,119,105,100,103,101,116,8,0,12,46,119,105,110,95,99,111,111,107,105,101,115,8,0,18,46,119,107,100,45,99,111,111,107,105,101,45,112,111,108,105,99,121,8,0,11,46,119,107,112,45,99,111,111,107,105,101,8,0,19,46,119,108,45,45,45,99,111,111,107,105,101,87,97,114,110,105,110,103,8,0,10,46,119,108,95,99,111,111,107,105,101,8,0,27,46,119,109,100,107,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,8,0,19,46,119,110,101,116,95,99,111,111,107,105,101,115,112,111,108,105,99,121,8,0,21,46,119,111,108,102,45,99,111,110,115,101,110,116,109,101,110,116,45,98,97,114,8,0,22,46,119,111,108,102,111,114,100,45,97,108,108,111,119,45,99,111,111,107,105,101,115,8,0,25,46,119,111,111,99,111,109,109,101,114,99,101,45,115,116,111,114,101,45,110,111,116,105,99,101,8,0,23,46,119,111,111,100,109,97,114,116,45,99,111,111,107,105,101,115,45,112,111,112,117,112,8,0,22,46,119,111,111,100,121,45,99,111,111,107,105,101,115,45,116,111,111,108,98,111,120,8,0,35,46,119,111,114,100,112,114,101,115,115,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,95,95,119,114,97,112,112,101,114,8,0,43,46,119,111,114,100,112,114,101,115,115,45,103,100,112,114,45,111,112,101,110,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,45,109,111,100,97,108,8,0,21,46,119,111,114,100,112,114,101,115,115,45,103,100,112,114,45,112,111,112,117,112,8,0,48,46,119,111,114,100,112,114,101,115,115,45,103,100,112,114,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,8,0,32,46,119,112,45,98,108,111,99,107,45,106,101,116,112,97,99,107,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,17,46,119,112,45,99,111,111,107,105,101,45,112,114,111,109,112,116,8,0,11,46,119,112,45,99,111,111,107,105,101,115,8,0,27,46,119,112,45,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,8,0,14,46,119,112,45,103,100,112,114,45,112,111,112,117,112,8,0,29,46,119,112,45,112,114,105,118,97,99,121,45,112,114,111,109,112,116,45,100,105,97,108,111,103,45,98,111,120,8,0,21,46,119,112,45,112,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,22,46,119,112,45,115,116,97,116,105,115,116,105,99,115,45,111,112,116,45,111,117,116,8,0,41,46,119,112,95,112,114,105,118,97,99,121,95,99,111,111,107,105,101,95,119,97,108,108,45,112,114,111,109,112,116,45,100,105,97,108,111,103,45,98,111,120,8,0,19,46,119,112,99,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,8,0,12,46,119,112,99,99,45,98,111,116,116,111,109,8,0,15,46,119,112,99,99,45,99,111,110,116,97,105,110,101,114,8,0,21,46,119,112,99,103,45,98,114,46,119,112,99,103,45,108,97,121,45,111,117,116,8,0,20,46,119,112,99,110,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,14,46,119,112,99,111,111,107,105,101,45,115,101,101,110,8,0,22,46,119,112,99,117,105,45,99,111,111,107,105,101,45,98,97,114,45,98,111,100,121,8,0,25,46,119,112,99,117,105,45,99,111,111,107,105,101,45,98,97,114,45,100,105,115,112,108,97,121,8,0,20,46,119,112,102,114,101,115,104,52,45,99,111,111,107,105,101,45,112,111,112,8,0,20,46,119,112,102,114,101,115,104,53,45,99,111,111,107,105,101,45,112,111,112,8,0,21,46,119,112,103,100,112,114,45,109,111,100,97,108,45,100,105,97,108,111,103,103,8,0,8,46,119,112,103,100,112,114,99,8,0,20,46,119,112,103,100,112,114,99,45,99,111,110,115,101,110,116,45,98,97,114,8,0,22,46,119,112,104,97,99,107,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,24,46,119,112,109,97,115,116,101,114,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,8,0,24,46,119,112,109,97,115,116,101,114,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,8,0,15,46,119,112,114,45,99,111,111,107,105,101,98,97,108,107,8,0,17,46,119,112,114,99,98,45,99,111,111,107,105,101,45,98,97,114,8,0,19,46,119,114,97,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,17,46,119,114,97,112,45,99,111,111,107,105,101,45,105,110,102,111,8,0,21,46,119,114,97,112,45,99,111,111,107,105,101,45,105,110,102,111,45,101,120,116,8,0,24,46,119,114,97,112,45,99,111,111,107,105,101,45,112,108,97,99,101,104,111,108,100,101,114,8,0,27,46,119,114,97,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,8,0,17,46,119,114,97,112,45,99,111,111,107,105,101,45,115,105,116,101,8,0,13,46,119,114,97,112,45,99,111,111,107,105,101,115,8,0,21,46,119,114,97,112,45,99,111,111,107,105,101,115,45,100,101,115,107,116,111,112,8,0,19,46,119,114,97,112,45,99,111,111,107,105,101,115,45,105,110,102,111,115,8,0,10,46,119,114,97,112,45,103,100,112,114,8,0,12,46,119,114,97,112,95,99,111,111,107,105,101,8,0,19,46,119,114,97,112,95,99,111,111,107,105,101,95,112,111,108,105,99,121,8,0,17,46,119,114,97,112,95,99,111,111,107,105,101,95,115,105,116,101,8,0,13,46,119,114,97,112,95,99,111,111,107,105,101,115,8,0,13,46,119,114,97,112,112,45,99,111,111,107,105,101,8,0,22,46,119,114,97,112,112,101,114,32,62,32,35,111,116,45,115,100,107,45,98,116,110,8,0,17,46,119,114,97,112,112,101,114,45,45,99,111,111,107,105,101,115,8,0,28,46,119,114,97,112,112,101,114,45,45,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,8,0,22,46,119,114,97,112,112,101,114,45,98,97,110,110,101,114,45,99,111,111,107,105,101,8,0,20,46,119,114,97,112,112,101,114,45,98,97,110,110,101,114,45,114,103,112,100,8,0,15,46,119,114,97,112,112,101,114,45,99,111,111,107,105,101,8,0,19,46,119,114,97,112,112,101,114,45,99,111,111,107,105,101,45,98,97,114,8,0,16,46,119,114,97,112,112,101,114,45,99,111,111,107,105,101,115,8,0,13,46,119,114,97,112,112,101,114,45,103,100,112,114,8,0,23,46,119,114,97,112,112,101,114,45,110,111,116,105,102,121,45,99,111,111,107,105,101,115,8,0,14,46,119,114,97,112,112,101,114,67,111,111,107,105,101,8,0,15,46,119,114,97,112,112,101,114,67,111,111,107,105,101,115,8,0,15,46,119,114,97,112,112,101,114,95,99,111,111,107,105,101,8,0,16,46,119,114,97,112,112,101,114,95,99,111,111,107,105,101,115,8,0,14,46,119,114,97,112,112,101,114,99,111,111,107,105,101,8,0,18,46,119,114,97,112,115,45,99,111,111,107,105,101,45,105,110,102,111,8,0,18,46,119,115,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,8,0,17,46,119,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,8,0,19,46,119,115,45,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,8,0,21,46,119,115,45,99,111,111,107,105,101,98,97,114,45,119,114,97,112,112,101,114,8,0,14,46,119,115,97,45,99,111,111,107,105,101,108,97,119,8,0,16,46,119,115,99,45,99,111,111,107,105,101,115,45,98,97,114,8,0,30,46,119,115,105,116,101,45,99,111,111,107,105,101,45,111,112,116,45,111,117,116,45,45,119,114,97,112,112,101,114,8,0,21,46,119,115,114,45,45,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,8,0,17,46,119,116,45,99,111,110,102,105,114,109,45,108,97,121,101,114,8,0,22,46,119,116,45,99,111,111,107,105,101,45,98,111,120,45,119,114,97,112,112,101,114,8,0,18,46,119,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,17,46,119,116,45,110,111,116,105,99,101,45,99,111,111,107,105,101,8,0,19,46,119,116,97,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,8,0,15,46,119,117,67,111,111,107,105,101,66,97,110,110,101,114,8,0,22,46,119,117,110,100,101,114,121,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,29,46,119,117,110,100,101,114,121,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,111,116,116,111,109,8,0,14,46,119,119,45,99,111,111,107,105,101,119,97,108,108,8,0,25,46,119,119,100,106,45,99,111,111,107,105,101,45,97,99,99,101,112,116,95,95,97,114,101,97,8,0,13,46,119,119,112,45,103,100,112,114,95,98,97,114,8,0,22,46,119,119,119,115,99,104,117,116,122,95,99,109,112,95,115,104,111,119,105,110,103,8,0,14,46,119,120,45,99,111,111,107,105,101,45,112,112,112,8,0,17,46,119,120,95,99,111,110,115,101,110,116,98,97,110,110,101,114,8,0,16,46,119,122,45,99,99,45,99,111,110,116,97,105,110,101,114,8,0,20,46,120,45,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,8,0,17,46,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,20,46,120,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,8,0,14,46,120,45,99,111,111,107,105,101,45,111,112,101,110,8,0,10,46,120,45,99,111,111,107,105,101,115,8,0,16,46,120,45,99,111,111,107,105,101,115,45,109,111,100,97,108,8,0,17,46,120,45,100,97,110,111,110,101,45,99,111,111,107,105,101,115,8,0,32,46,120,45,101,108,91,100,97,116,97,45,97,105,100,42,61,34,67,79,79,75,73,69,95,66,65,78,78,69,82,34,93,8,0,13,46,120,45,108,103,112,100,45,112,111,112,117,112,8,0,8,46,120,99,111,111,107,105,101,8,0,18,46,120,101,110,111,102,105,116,45,99,111,111,107,105,101,98,97,114,8,0,15,46,120,102,45,99,111,111,107,105,101,45,104,105,110,116,8,0,17,46,120,108,50,45,99,111,111,107,105,101,45,108,97,121,101,114,8,0,10,46,120,109,95,109,97,116,111,109,111,8,0,24,46,120,111,108,97,45,112,105,105,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,16,46,120,112,114,45,99,111,111,107,105,101,77,111,100,97,108,8,0,38,46,120,115,45,102,105,120,101,100,91,100,97,116,97,45,109,111,100,117,108,101,61,34,99,111,111,107,105,101,95,98,97,110,110,101,114,34,93,8,0,18,46,120,115,52,97,108,108,45,99,111,111,107,105,101,87,97,108,108,8,0,26,46,120,115,52,97,108,108,45,99,111,111,107,105,101,87,97,108,108,45,111,118,101,114,108,97,121,8,0,16,46,120,115,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,20,46,120,120,120,45,99,111,111,107,105,101,115,45,116,111,111,108,116,105,112,8,0,11,46,120,121,45,99,111,110,115,101,110,116,8,0,9,46,120,122,108,103,99,111,111,107,8,0,16,46,121,97,45,97,108,108,111,119,45,99,111,111,107,105,101,8,0,17,46,121,100,45,106,105,103,45,99,111,111,107,105,101,108,97,119,8,0,12,46,121,101,108,108,111,119,46,114,103,112,100,8,0,11,46,121,110,45,99,111,111,107,105,101,115,8,0,17,46,121,115,100,98,45,99,111,111,107,105,101,97,108,101,114,116,8,0,18,46,121,115,111,108,67,111,111,107,105,101,73,110,102,111,66,111,120,8,0,18,46,121,116,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,8,0,16,46,122,45,98,97,110,110,101,114,45,99,111,111,107,105,101,8,0,9,46,122,45,99,111,111,107,105,101,8,0,15,46,122,45,99,111,111,107,105,101,45,97,108,101,114,116,8,0,16,46,122,45,99,111,111,107,105,101,45,98,97,110,110,101,114,8,0,12,46,122,45,99,111,111,107,105,101,66,97,114,8,0,17,46,122,45,99,111,111,107,105,101,66,97,114,95,116,101,120,116,8,0,20,46,122,45,99,111,111,107,105,101,66,97,114,95,119,114,97,112,112,101,114,8,0,15,46,122,45,99,111,111,107,105,101,112,111,108,105,99,121,8,0,10,46,122,45,99,111,111,107,105,101,115,8,0,27,46,122,45,110,97,118,105,99,97,116,45,104,101,97,100,101,114,45,99,111,111,107,105,101,66,97,114,8,0,27,46,122,49,54,95,99,111,111,107,105,101,115,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,21,46,122,97,108,114,116,45,122,99,111,111,107,105,101,115,45,97,108,101,114,116,8,0,20,46,122,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,8,0,25,46,122,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,8,0,26,46,122,97,112,112,45,99,111,111,107,105,101,109,101,115,115,97,103,101,45,98,111,116,116,111,109,8,0,26,46,122,101,98,114,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,112,111,112,117,112,8,0,23,46,122,101,110,45,112,114,105,118,97,99,121,112,111,108,105,99,121,112,111,112,117,112,8,0,23,46,122,101,110,97,114,105,111,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,8,0,17,46,122,101,110,99,111,110,115,101,110,116,45,112,111,112,117,112,8,0,16,46,122,103,111,100,97,95,110,97,95,99,111,111,107,105,101,8,0,12,46,122,103,111,100,121,45,112,111,112,117,112,8,0,13,46,122,104,45,99,111,111,107,105,101,66,111,120,8,0,25,46,122,105,103,45,108,105,115,116,115,45,97,116,116,101,110,116,105,101,114,101,103,101,108,115,8,0,21,46,122,105,108,99,104,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,8,0,21,46,122,107,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,8,0,24,46,122,109,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,8,0,11,46,122,110,45,99,111,111,107,105,101,115,8,0,13,46,122,111,110,101,45,99,111,111,107,105,101,115,8,0,17,46,122,112,87,105,110,84,104,101,109,101,67,111,111,107,105,101,8,0,14,46,122,112,99,111,110,115,101,110,116,105,110,102,111,8,0,11,46,122,112,109,45,99,111,111,107,105,101,8,0,13,46,122,121,114,111,45,99,111,111,107,105,101,115,8,0,16,46,102,112,45,99,111,111,107,105,101,45,109,111,100,97,108,8,0,24,46,105,115,45,97,99,116,105,118,101,46,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,24,46,110,97,118,98,97,114,32,62,32,46,67,111,111,107,105,101,67,111,110,115,101,110,116,8,0,25,46,106,115,45,110,111,116,105,99,101,46,110,111,116,105,99,101,45,45,99,111,111,107,105,101,8,0,23,46,110,111,116,105,99,101,45,45,99,111,111,107,105,101,65,100,118,97,110,99,101,100,8,0,25,46,99,111,111,107,105,101,95,99,111,111,107,105,101,45,98,97,114,95,95,50,99,51,74,113,8,0,22,46,100,97,114,107,118,99,108,111,98,46,98,99,46,109,105,110,118,99,108,111,98,8,0,16,46,99,97,106,97,78,101,103,114,97,65,108,101,114,116,97,8,0,20,46,109,111,100,97,108,78,117,101,115,116,114,97,67,111,111,107,105,101,115,8,0,13,46,99,99,109,95,115,104,111,119,46,99,99,109,8,0,12,46,97,99,116,105,118,101,46,71,68,80,82,8,0,18,46,97,99,116,105,118,101,46,100,105,115,99,108,97,105,109,101,114,8,0,32,46,116,104,101,109,101,49,46,95,49,111,112,104,57,102,57,46,95,51,104,109,115,106,46,95,49,120,98,55,103,97,109,8,0,33,46,99,111,110,116,97,105,110,101,114,32,62,32,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,8,0,30,46,102,111,111,116,101,114,32,62,32,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,8,0,36,46,115,105,116,101,45,99,111,110,116,101,110,116,32,62,32,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,8,0,45,46,99,117,114,114,101,110,116,46,98,108,111,99,107,101,114,46,98,108,111,99,107,101,114,45,99,111,111,107,105,101,115,46,106,113,117,101,114,121,45,109,111,100,97,108,8,0,34,46,109,112,112,45,99,111,110,116,97,105,110,101,114,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,45,98,97,114,8,0,37,46,109,112,112,45,99,111,110,116,97,105,110,101,114,45,112,111,115,105,116,105,111,110,45,109,105,100,100,108,101,45,99,101,110,116,101,114,8,0,31,46,109,112,112,45,99,111,110,116,97,105,110,101,114,45,112,111,115,105,116,105,111,110,45,116,111,112,45,98,97,114,8,0,24,46,112,105,120,101,108,109,97,116,101,45,98,97,110,110,101,114,45,98,111,116,116,111,109,8,0,33,46,112,105,120,101,108,109,97,116,101,45,103,101,110,101,114,97,108,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,8,0,63,46,115,114,99,45,99,111,110,116,97,105,110,101,114,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,115,116,121,108,101,95,95,99,111,111,107,105,101,78,111,116,105,99,101,87,114,97,112,112,101,114,45,45,49,112,81,116,75,8,0,24,46,99,109,112,45,45,118,97,114,45,101,46,99,109,112,95,95,119,114,97,112,112,101,114,8,0,17,46,121,117,105,51,45,119,105,100,103,101,116,45,109,97,115,107,8,0,24,46,121,117,105,51,45,119,105,100,103,101,116,46,99,111,111,107,101,45,112,111,112,117,112,8,0,15,46,95,103,104,120,102,107,104,46,95,51,104,109,115,106,8,0,7,46,103,100,112,114,66,71,8,0,36,46,112,114,105,118,97,99,121,83,101,116,116,105,110,103,115,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,8,0,37,46,109,97,105,110,95,99,111,110,116,97,105,110,101,114,32,62,32,46,99,111,110,115,101,110,116,95,115,105,116,101,95,99,111,118,101,114,8,0,33,46,109,97,105,110,95,99,111,110,116,97,105,110,101,114,32,62,32,46,99,111,110,115,101,110,116,95,119,105,110,100,111,119,8,0,36,46,115,116,105,99,107,121,45,102,111,111,116,101,114,32,62,32,100,105,118,32,62,32,100,105,118,32,62,32,46,99,45,99,101,108,108,8,0,38,46,115,117,105,45,67,109,112,85,105,32,62,32,46,115,117,105,45,77,111,108,101,99,117,108,101,78,111,116,105,102,105,99,97,116,105,111,110,8,0,45,46,110,111,116,121,95,99,111,110,116,32,62,32,108,105,32,62,32,46,110,111,116,121,95,97,108,101,114,116,32,62,32,46,110,111,116,121,95,109,101,115,115,97,103,101,8,0,39,46,117,107,45,112,111,115,105,116,105,111,110,45,122,45,105,110,100,101,120,46,117,107,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,8,0,21,46,118,119,53,45,115,116,97,116,105,115,116,105,99,115,79,112,116,66,111,120,8,0,27,46,98,105,115,99,111,116,116,111,32,62,32,46,98,105,115,99,111,116,116,111,45,105,110,110,101,114,8,0,23,46,100,111,99,107,101,100,45,98,111,116,116,111,109,46,105,110,102,111,45,98,97,114,8,0,10,46,103,104,45,98,97,110,110,101,114,8,0,17,46,103,104,45,98,97,110,110,101,114,45,97,99,116,105,118,101,8,0,24,46,115,107,111,100,97,53,45,115,116,97,116,105,115,116,105,99,115,79,112,116,66,111,120,8,0,23,46,97,115,45,111,105,108,45,99,111,110,116,101,110,116,45,111,118,101,114,108,97,121,8,0,10,46,98,115,116,45,112,97,110,101,108,8,0,14,46,99,95,105,95,99,111,110,116,97,105,110,101,114,8,0,22,46,99,109,112,108,122,45,115,111,102,116,45,99,111,111,107,105,101,119,97,108,108,8,0,41,46,101,108,105,115,97,45,110,97,118,105,45,99,111,111,107,105,101,45,97,110,100,45,99,111,110,115,101,110,116,45,100,105,115,99,108,97,105,109,101,114,8,0,10,46,114,99,99,45,112,97,110,101,108,8,0,10,46,114,101,99,111,99,108,105,118,50,8,0,13,46,115,104,111,119,46,99,112,45,119,114,97,112,8,0,23,46,119,114,97,112,32,62,32,46,99,111,110,115,101,110,116,45,119,105,100,103,101,116,8,0,19,46,106,115,45,99,111,110,115,101,110,116,46,99,111,110,115,101,110,116,0,0,128,0,0,0,244,64,0,0,35,218,128,0,11,183,250,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,4,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,12,0,0,0,14,0,0,0,18,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,24,0,0,0,24,0,0,0,26,0,0,0,26,0,0,0,26,0,0,0,26,0,0,0,26,0,0,0,28,0,0,0,34,0,0,0,34,0,0,0,38,0,0,0,50,0,0,0,50,0,0,0,50,0,0,0,50,0,0,0,52,0,0,0,54,0,0,0,60,0,0,0,66,0,0,0,66,0,0,0,66,0,0,0,68,0,0,0,76,0,0,0,76,0,0,0,78,0,0,0,78,0,0,0,78,0,0,0,80,0,0,0,80,0,0,0,82,0,0,0,82,0,0,0,82,0,0,0,84,0,0,0,84,0,0,0,88,0,0,0,88,0,0,0,88,0,0,0,90,0,0,0,90,0,0,0,92,0,0,0,92,0,0,0,92,0,0,0,92,0,0,0,92,0,0,0,92,0,0,0,92,0,0,0,92,0,0,0,100,0,0,0,100,0,0,0,102,0,0,0,104,0,0,0,106,0,0,0,108,0,0,0,110,0,0,0,110,0,0,0,112,0,0,0,112,0,0,0,112,0,0,0,112,0,0,0,112,0,0,0,118,0,0,0,124,0,0,0,126,0,0,0,130,0,0,0,130,0,0,0,132,0,0,0,134,0,0,0,136,0,0,0,140,0,0,0,140,0,0,0,140,0,0,0,140,0,0,0,142,0,0,0,150,0,0,0,156,0,0,0,158,0,0,0,158,0,0,0,158,0,0,0,168,0,0,0,172,0,0,0,174,0,0,0,174,0,0,0,178,0,0,0,178,0,0,0,180,0,0,0,182,0,0,0,182,0,0,0,182,0,0,0,184,0,0,0,184,0,0,0,186,0,0,0,186,0,0,0,188,0,0,0,188,0,0,0,188,0,0,0,190,0,0,0,194,0,0,0,198,0,0,0,198,0,0,0,202,0,0,0,204,0,0,0,206,0,0,0,208,0,0,0,208,0,0,0,208,0,0,0,210,0,0,0,210,0,0,0,212,0,0,0,212,0,0,0,216,0,0,0,220,0,0,0,222,0,0,0,222,0,0,0,222,0,0,0,226,0,0,0,228,0,0,0,228,0,0,0,228,0,0,0,230,0,0,0,230,0,0,0,240,0,0,0,242,0,0,0,242,0,0,0,252,0,0,0,252,0,0,0,254,0,0,0,6,1,0,0,6,1,0,0,10,1,0,0,10,1,0,0,12,1,0,0,12,1,0,0,36,1,0,0,38,1,0,0,38,1,0,0,44,1,0,0,52,1,0,0,54,1,0,0,54,1,0,0,56,1,0,0,56,1,0,0,56,1,0,0,56,1,0,0,56,1,0,0,56,1,0,0,58,1,0,0,60,1,0,0,62,1,0,0,62,1,0,0,66,1,0,0,66,1,0,0,78,1,0,0,78,1,0,0,80,1,0,0,80,1,0,0,80,1,0,0,80,1,0,0,80,1,0,0,80,1,0,0,82,1,0,0,86,1,0,0,86,1,0,0,86,1,0,0,92,1,0,0,92,1,0,0,92,1,0,0,92,1,0,0,92,1,0,0,94,1,0,0,96,1,0,0,96,1,0,0,96,1,0,0,96,1,0,0,98,1,0,0,98,1,0,0,106,1,0,0,108,1,0,0,110,1,0,0,118,1,0,0,126,1,0,0,126,1,0,0,130,1,0,0,136,1,0,0,136,1,0,0,138,1,0,0,142,1,0,0,142,1,0,0,142,1,0,0,150,1,0,0,150,1,0,0,152,1,0,0,154,1,0,0,156,1,0,0,156,1,0,0,158,1,0,0,160,1,0,0,166,1,0,0,166,1,0,0,168,1,0,0,168,1,0,0,168,1,0,0,168,1,0,0,168,1,0,0,170,1,0,0,170,1,0,0,170,1,0,0,174,1,0,0,174,1,0,0,176,1,0,0,176,1,0,0,176,1,0,0,184,1,0,0,190,1,0,0,190,1,0,0,194,1,0,0,194,1,0,0,196,1,0,0,196,1,0,0,196,1,0,0,196,1,0,0,206,1,0,0,206,1,0,0,206,1,0,0,212,1,0,0,218,1,0,0,220,1,0,0,230,1,0,0,230,1,0,0,234,1,0,0,234,1,0,0,234,1,0,0,234,1,0,0,238,1,0,0,238,1,0,0,242,1,0,0,246,1,0,0,246,1,0,0,246,1,0,0,246,1,0,0,248,1,0,0,248,1,0,0,250,1,0,0,254,1,0,0,6,2,0,0,6,2,0,0,6,2,0,0,6,2,0,0,8,2,0,0,8,2,0,0,8,2,0,0,8,2,0,0,8,2,0,0,8,2,0,0,8,2,0,0,16,2,0,0,18,2,0,0,22,2,0,0,22,2,0,0,24,2,0,0,34,2,0,0,34,2,0,0,34,2,0,0,42,2,0,0,42,2,0,0,46,2,0,0,46,2,0,0,46,2,0,0,46,2,0,0,46,2,0,0,48,2,0,0,50,2,0,0,50,2,0,0,50,2,0,0,50,2,0,0,50,2,0,0,50,2,0,0,54,2,0,0,54,2,0,0,60,2,0,0,62,2,0,0,62,2,0,0,66,2,0,0,68,2,0,0,72,2,0,0,74,2,0,0,74,2,0,0,74,2,0,0,74,2,0,0,84,2,0,0,84,2,0,0,84,2,0,0,86,2,0,0,86,2,0,0,86,2,0,0,86,2,0,0,88,2,0,0,90,2,0,0,90,2,0,0,90,2,0,0,94,2,0,0,94,2,0,0,94,2,0,0,96,2,0,0,96,2,0,0,96,2,0,0,104,2,0,0,104,2,0,0,104,2,0,0,104,2,0,0,104,2,0,0,110,2,0,0,110,2,0,0,110,2,0,0,110,2,0,0,116,2,0,0,120,2,0,0,120,2,0,0,120,2,0,0,120,2,0,0,124,2,0,0,132,2,0,0,132,2,0,0,132,2,0,0,136,2,0,0,136,2,0,0,136,2,0,0,148,2,0,0,148,2,0,0,148,2,0,0,152,2,0,0,156,2,0,0,156,2,0,0,158,2,0,0,160,2,0,0,160,2,0,0,160,2,0,0,160,2,0,0,166,2,0,0,170,2,0,0,172,2,0,0,174,2,0,0,174,2,0,0,174,2,0,0,180,2,0,0,180,2,0,0,184,2,0,0,184,2,0,0,184,2,0,0,192,2,0,0,192,2,0,0,192,2,0,0,192,2,0,0,194,2,0,0,194,2,0,0,194,2,0,0,196,2,0,0,196,2,0,0,196,2,0,0,196,2,0,0,196,2,0,0,196,2,0,0,206,2,0,0,208,2,0,0,212,2,0,0,214,2,0,0,214,2,0,0,214,2,0,0,214,2,0,0,218,2,0,0,224,2,0,0,230,2,0,0,230,2,0,0,230,2,0,0,230,2,0,0,230,2,0,0,230,2,0,0,230,2,0,0,230,2,0,0,232,2,0,0,232,2,0,0,234,2,0,0,240,2,0,0,240,2,0,0,246,2,0,0,248,2,0,0,248,2,0,0,254,2,0,0,4,3,0,0,4,3,0,0,4,3,0,0,6,3,0,0,6,3,0,0,8,3,0,0,12,3,0,0,12,3,0,0,16,3,0,0,16,3,0,0,26,3,0,0,34,3,0,0,44,3,0,0,48,3,0,0,50,3,0,0,50,3,0,0,50,3,0,0,54,3,0,0,54,3,0,0,58,3,0,0,58,3,0,0,60,3,0,0,66,3,0,0,72,3,0,0,74,3,0,0,74,3,0,0,76,3,0,0,76,3,0,0,82,3,0,0,84,3,0,0,84,3,0,0,84,3,0,0,86,3,0,0,90,3,0,0,92,3,0,0,92,3,0,0,92,3,0,0,92,3,0,0,94,3,0,0,96,3,0,0,98,3,0,0,104,3,0,0,106,3,0,0,108,3,0,0,124,3,0,0,124,3,0,0,124,3,0,0,130,3,0,0,130,3,0,0,132,3,0,0,132,3,0,0,136,3,0,0,138,3,0,0,138,3,0,0,138,3,0,0,138,3,0,0,140,3,0,0,142,3,0,0,144,3,0,0,144,3,0,0,144,3,0,0,144,3,0,0,144,3,0,0,146,3,0,0,146,3,0,0,146,3,0,0,148,3,0,0,148,3,0,0,148,3,0,0,150,3,0,0,150,3,0,0,150,3,0,0,150,3,0,0,152,3,0,0,164,3,0,0,164,3,0,0,164,3,0,0,168,3,0,0,168,3,0,0,170,3,0,0,178,3,0,0,184,3,0,0,190,3,0,0,190,3,0,0,190,3,0,0,192,3,0,0,198,3,0,0,198,3,0,0,200,3,0,0,200,3,0,0,200,3,0,0,202,3,0,0,202,3,0,0,208,3,0,0,210,3,0,0,214,3,0,0,214,3,0,0,216,3,0,0,216,3,0,0,216,3,0,0,218,3,0,0,218,3,0,0,218,3,0,0,218,3,0,0,218,3,0,0,224,3,0,0,226,3,0,0,226,3,0,0,230,3,0,0,230,3,0,0,230,3,0,0,230,3,0,0,234,3,0,0,234,3,0,0,234,3,0,0,234,3,0,0,234,3,0,0,234,3,0,0,234,3,0,0,234,3,0,0,234,3,0,0,238,3,0,0,238,3,0,0,238,3,0,0,240,3,0,0,246,3,0,0,248,3,0,0,252,3,0,0,0,4,0,0,4,4,0,0,6,4,0,0,6,4,0,0,8,4,0,0,8,4,0,0,16,4,0,0,22,4,0,0,24,4,0,0,24,4,0,0,24,4,0,0,30,4,0,0,32,4,0,0,32,4,0,0,34,4,0,0,34,4,0,0,36,4,0,0,36,4,0,0,36,4,0,0,38,4,0,0,38,4,0,0,44,4,0,0,44,4,0,0,44,4,0,0,44,4,0,0,44,4,0,0,44,4,0,0,44,4,0,0,44,4,0,0,48,4,0,0,50,4,0,0,50,4,0,0,50,4,0,0,50,4,0,0,50,4,0,0,52,4,0,0,52,4,0,0,52,4,0,0,52,4,0,0,56,4,0,0,60,4,0,0,62,4,0,0,64,4,0,0,66,4,0,0,70,4,0,0,72,4,0,0,72,4,0,0,80,4,0,0,80,4,0,0,80,4,0,0,80,4,0,0,80,4,0,0,82,4,0,0,82,4,0,0,86,4,0,0,90,4,0,0,98,4,0,0,98,4,0,0,106,4,0,0,106,4,0,0,106,4,0,0,108,4,0,0,108,4,0,0,116,4,0,0,120,4,0,0,122,4,0,0,124,4,0,0,128,4,0,0,128,4,0,0,130,4,0,0,130,4,0,0,136,4,0,0,136,4,0,0,136,4,0,0,136,4,0,0,142,4,0,0,142,4,0,0,142,4,0,0,142,4,0,0,144,4,0,0,144,4,0,0,144,4,0,0,146,4,0,0,146,4,0,0,150,4,0,0,150,4,0,0,150,4,0,0,150,4,0,0,152,4,0,0,154,4,0,0,156,4,0,0,160,4,0,0,160,4,0,0,160,4,0,0,164,4,0,0,166,4,0,0,166,4,0,0,168,4,0,0,170,4,0,0,170,4,0,0,174,4,0,0,186,4,0,0,186,4,0,0,192,4,0,0,192,4,0,0,192,4,0,0,198,4,0,0,198,4,0,0,198,4,0,0,200,4,0,0,200,4,0,0,200,4,0,0,200,4,0,0,202,4,0,0,202,4,0,0,204,4,0,0,204,4,0,0,206,4,0,0,208,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,214,4,0,0,216,4,0,0,220,4,0,0,226,4,0,0,226,4,0,0,240,4,0,0,244,4,0,0,244,4,0,0,250,4,0,0,250,4,0,0,250,4,0,0,254,4,0,0,254,4,0,0,0,5,0,0,2,5,0,0,2,5,0,0,2,5,0,0,4,5,0,0,4,5,0,0,4,5,0,0,4,5,0,0,8,5,0,0,12,5,0,0,12,5,0,0,12,5,0,0,16,5,0,0,20,5,0,0,20,5,0,0,24,5,0,0,26,5,0,0,26,5,0,0,30,5,0,0,30,5,0,0,34,5,0,0,36,5,0,0,42,5,0,0,42,5,0,0,50,5,0,0,50,5,0,0,52,5,0,0,56,5,0,0,56,5,0,0,58,5,0,0,66,5,0,0,72,5,0,0,72,5,0,0,74,5,0,0,74,5,0,0,74,5,0,0,76,5,0,0,86,5,0,0,90,5,0,0,90,5,0,0,92,5,0,0,96,5,0,0,100,5,0,0,102,5,0,0,104,5,0,0,106,5,0,0,106,5,0,0,108,5,0,0,108,5,0,0,108,5,0,0,108,5,0,0,112,5,0,0,112,5,0,0,118,5,0,0,118,5,0,0,124,5,0,0,126,5,0,0,126,5,0,0,132,5,0,0,134,5,0,0,136,5,0,0,138,5,0,0,138,5,0,0,140,5,0,0,146,5,0,0,146,5,0,0,146,5,0,0,150,5,0,0,150,5,0,0,150,5,0,0,150,5,0,0,156,5,0,0,160,5,0,0,162,5,0,0,162,5,0,0,162,5,0,0,162,5,0,0,162,5,0,0,164,5,0,0,164,5,0,0,164,5,0,0,164,5,0,0,168,5,0,0,168,5,0,0,176,5,0,0,184,5,0,0,184,5,0,0,184,5,0,0,184,5,0,0,186,5,0,0,188,5,0,0,188,5,0,0,188,5,0,0,194,5,0,0,196,5,0,0,196,5,0,0,198,5,0,0,200,5,0,0,200,5,0,0,200,5,0,0,204,5,0,0,206,5,0,0,206,5,0,0,206,5,0,0,208,5,0,0,208,5,0,0,208,5,0,0,210,5,0,0,210,5,0,0,210,5,0,0,212,5,0,0,212,5,0,0,224,5,0,0,224,5,0,0,224,5,0,0,234,5,0,0,236,5,0,0,238,5,0,0,240,5,0,0,240,5,0,0,242,5,0,0,242,5,0,0,244,5,0,0,244,5,0,0,244,5,0,0,244,5,0,0,244,5,0,0,244,5,0,0,246,5,0,0,246,5,0,0,250,5,0,0,250,5,0,0,250,5,0,0,250,5,0,0,250,5,0,0,250,5,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,6,6,0,0,12,6,0,0,12,6,0,0,12,6,0,0,14,6,0,0,16,6,0,0,16,6,0,0,16,6,0,0,22,6,0,0,22,6,0,0,26,6,0,0,28,6,0,0,28,6,0,0,28,6,0,0,34,6,0,0,42,6,0,0,42,6,0,0,44,6,0,0,44,6,0,0,44,6,0,0,46,6,0,0,48,6,0,0,52,6,0,0,52,6,0,0,52,6,0,0,56,6,0,0,56,6,0,0,56,6,0,0,56,6,0,0,56,6,0,0,58,6,0,0,58,6,0,0,60,6,0,0,68,6,0,0,72,6,0,0,72,6,0,0,72,6,0,0,72,6,0,0,78,6,0,0,84,6,0,0,84,6,0,0,90,6,0,0,90,6,0,0,92,6,0,0,94,6,0,0,96,6,0,0,96,6,0,0,104,6,0,0,110,6,0,0,112,6,0,0,112,6,0,0,112,6,0,0,112,6,0,0,112,6,0,0,112,6,0,0,120,6,0,0,120,6,0,0,120,6,0,0,124,6,0,0,124,6,0,0,126,6,0,0,128,6,0,0,130,6,0,0,132,6,0,0,132,6,0,0,136,6,0,0,136,6,0,0,138,6,0,0,138,6,0,0,140,6,0,0,140,6,0,0,146,6,0,0,146,6,0,0,146,6,0,0,146,6,0,0,146,6,0,0,152,6,0,0,154,6,0,0,156,6,0,0,156,6,0,0,156,6,0,0,158,6,0,0,158,6,0,0,158,6,0,0,162,6,0,0,164,6,0,0,170,6,0,0,170,6,0,0,170,6,0,0,174,6,0,0,176,6,0,0,180,6,0,0,180,6,0,0,186,6,0,0,186,6,0,0,190,6,0,0,190,6,0,0,192,6,0,0,194,6,0,0,194,6,0,0,194,6,0,0,198,6,0,0,202,6,0,0,202,6,0,0,202,6,0,0,202,6,0,0,202,6,0,0,202,6,0,0,204,6,0,0,204,6,0,0,206,6,0,0,206,6,0,0,208,6,0,0,208,6,0,0,210,6,0,0,214,6,0,0,216,6,0,0,216,6,0,0,218,6,0,0,220,6,0,0,224,6,0,0,224,6,0,0,224,6,0,0,226,6,0,0,226,6,0,0,228,6,0,0,228,6,0,0,228,6,0,0,230,6,0,0,232,6,0,0,234,6,0,0,234,6,0,0,234,6,0,0,236,6,0,0,244,6,0,0,244,6,0,0,244,6,0,0,246,6,0,0,248,6,0,0,248,6,0,0,252,6,0,0,254,6,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,4,7,0,0,16,7,0,0,16,7,0,0,18,7,0,0,20,7,0,0,22,7,0,0,24,7,0,0,34,7,0,0,34,7,0,0,34,7,0,0,34,7,0,0,34,7,0,0,34,7,0,0,34,7,0,0,34,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,38,7,0,0,46,7,0,0,52,7,0,0,54,7,0,0,66,7,0,0,66,7,0,0,66,7,0,0,68,7,0,0,72,7,0,0,72,7,0,0,72,7,0,0,72,7,0,0,76,7,0,0,76,7,0,0,76,7,0,0,76,7,0,0,76,7,0,0,76,7,0,0,76,7,0,0,78,7,0,0,80,7,0,0,80,7,0,0,84,7,0,0,84,7,0,0,90,7,0,0,94,7,0,0,96,7,0,0,96,7,0,0,96,7,0,0,96,7,0,0,96,7,0,0,98,7,0,0,102,7,0,0,104,7,0,0,106,7,0,0,106,7,0,0,112,7,0,0,112,7,0,0,112,7,0,0,116,7,0,0,118,7,0,0,120,7,0,0,120,7,0,0,120,7,0,0,120,7,0,0,120,7,0,0,122,7,0,0,124,7,0,0,126,7,0,0,128,7,0,0,132,7,0,0,132,7,0,0,132,7,0,0,134,7,0,0,138,7,0,0,142,7,0,0,144,7,0,0,144,7,0,0,144,7,0,0,146,7,0,0,148,7,0,0,148,7,0,0,152,7,0,0,154,7,0,0,156,7,0,0,156,7,0,0,158,7,0,0,162,7,0,0,168,7,0,0,174,7,0,0,174,7,0,0,176,7,0,0,178,7,0,0,178,7,0,0,178,7,0,0,178,7,0,0,178,7,0,0,178,7,0,0,180,7,0,0,190,7,0,0,190,7,0,0,196,7,0,0,198,7,0,0,198,7,0,0,200,7,0,0,200,7,0,0,200,7,0,0,200,7,0,0,206,7,0,0,206,7,0,0,206,7,0,0,212,7,0,0,214,7,0,0,216,7,0,0,218,7,0,0,218,7,0,0,226,7,0,0,226,7,0,0,226,7,0,0,226,7,0,0,226,7,0,0,226,7,0,0,226,7,0,0,228,7,0,0,242,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,248,7,0,0,248,7,0,0,248,7,0,0,248,7,0,0,250,7,0,0,0,8,0,0,0,8,0,0,4,8,0,0,4,8,0,0,10,8,0,0,16,8,0,0,16,8,0,0,16,8,0,0,22,8,0,0,26,8,0,0,26,8,0,0,26,8,0,0,28,8,0,0,34,8,0,0,38,8,0,0,44,8,0,0,44,8,0,0,44,8,0,0,44,8,0,0,46,8,0,0,46,8,0,0,46,8,0,0,48,8,0,0,50,8,0,0,52,8,0,0,54,8,0,0,54,8,0,0,54,8,0,0,56,8,0,0,58,8,0,0,64,8,0,0,68,8,0,0,68,8,0,0,74,8,0,0,74,8,0,0,78,8,0,0,78,8,0,0,78,8,0,0,82,8,0,0,86,8,0,0,86,8,0,0,90,8,0,0,90,8,0,0,90,8,0,0,90,8,0,0,92,8,0,0,92,8,0,0,94,8,0,0,94,8,0,0,98,8,0,0,98,8,0,0,102,8,0,0,102,8,0,0,102,8,0,0,106,8,0,0,116,8,0,0,120,8,0,0,120,8,0,0,124,8,0,0,126,8,0,0,126,8,0,0,130,8,0,0,138,8,0,0,140,8,0,0,144,8,0,0,144,8,0,0,148,8,0,0,148,8,0,0,152,8,0,0,154,8,0,0,160,8,0,0,160,8,0,0,164,8,0,0,164,8,0,0,166,8,0,0,174,8,0,0,176,8,0,0,176,8,0,0,178,8,0,0,180,8,0,0,182,8,0,0,188,8,0,0,196,8,0,0,196,8,0,0,198,8,0,0,200,8,0,0,202,8,0,0,202,8,0,0,202,8,0,0,206,8,0,0,206,8,0,0,206,8,0,0,208,8,0,0,210,8,0,0,210,8,0,0,212,8,0,0,214,8,0,0,214,8,0,0,214,8,0,0,216,8,0,0,216,8,0,0,218,8,0,0,218,8,0,0,220,8,0,0,220,8,0,0,222,8,0,0,226,8,0,0,226,8,0,0,226,8,0,0,226,8,0,0,226,8,0,0,226,8,0,0,228,8,0,0,228,8,0,0,236,8,0,0,236,8,0,0,240,8,0,0,240,8,0,0,240,8,0,0,240,8,0,0,244,8,0,0,244,8,0,0,244,8,0,0,246,8,0,0,246,8,0,0,248,8,0,0,248,8,0,0,254,8,0,0,0,9,0,0,2,9,0,0,2,9,0,0,2,9,0,0,2,9,0,0,12,9,0,0,20,9,0,0,24,9,0,0,24,9,0,0,26,9,0,0,26,9,0,0,26,9,0,0,26,9,0,0,26,9,0,0,30,9,0,0,32,9,0,0,38,9,0,0,44,9,0,0,44,9,0,0,50,9,0,0,52,9,0,0,56,9,0,0,58,9,0,0,58,9,0,0,58,9,0,0,60,9,0,0,60,9,0,0,62,9,0,0,66,9,0,0,66,9,0,0,66,9,0,0,68,9,0,0,68,9,0,0,72,9,0,0,72,9,0,0,78,9,0,0,84,9,0,0,86,9,0,0,86,9,0,0,86,9,0,0,86,9,0,0,88,9,0,0,88,9,0,0,88,9,0,0,88,9,0,0,88,9,0,0,88,9,0,0,90,9,0,0,92,9,0,0,102,9,0,0,102,9,0,0,102,9,0,0,104,9,0,0,104,9,0,0,104,9,0,0,112,9,0,0,112,9,0,0,114,9,0,0,114,9,0,0,114,9,0,0,114,9,0,0,114,9,0,0,120,9,0,0,120,9,0,0,122,9,0,0,126,9,0,0,132,9,0,0,152,9,0,0,152,9,0,0,152,9,0,0,156,9,0,0,156,9,0,0,158,9,0,0,158,9,0,0,158,9,0,0,162,9,0,0,162,9,0,0,162,9,0,0,164,9,0,0,166,9,0,0,166,9,0,0,166,9,0,0,166,9,0,0,166,9,0,0,166,9,0,0,170,9,0,0,172,9,0,0,176,9,0,0,176,9,0,0,182,9,0,0,186,9,0,0,186,9,0,0,188,9,0,0,190,9,0,0,196,9,0,0,196,9,0,0,196,9,0,0,198,9,0,0,200,9,0,0,202,9,0,0,204,9,0,0,204,9,0,0,204,9,0,0,208,9,0,0,208,9,0,0,208,9,0,0,210,9,0,0,210,9,0,0,212,9,0,0,212,9,0,0,212,9,0,0,220,9,0,0,220,9,0,0,224,9,0,0,228,9,0,0,230,9,0,0,232,9,0,0,232,9,0,0,234,9,0,0,236,9,0,0,240,9,0,0,240,9,0,0,240,9,0,0,240,9,0,0,242,9,0,0,244,9,0,0,244,9,0,0,244,9,0,0,246,9,0,0,246,9,0,0,252,9,0,0,2,10,0,0,6,10,0,0,6,10,0,0,8,10,0,0,12,10,0,0,12,10,0,0,20,10,0,0,24,10,0,0,24,10,0,0,26,10,0,0,26,10,0,0,30,10,0,0,30,10,0,0,30,10,0,0,30,10,0,0,30,10,0,0,30,10,0,0,30,10,0,0,32,10,0,0,36,10,0,0,36,10,0,0,38,10,0,0,44,10,0,0,44,10,0,0,44,10,0,0,44,10,0,0,46,10,0,0,46,10,0,0,46,10,0,0,48,10,0,0,48,10,0,0,48,10,0,0,48,10,0,0,50,10,0,0,58,10,0,0,62,10,0,0,64,10,0,0,68,10,0,0,68,10,0,0,72,10,0,0,74,10,0,0,74,10,0,0,74,10,0,0,74,10,0,0,78,10,0,0,78,10,0,0,80,10,0,0,80,10,0,0,82,10,0,0,86,10,0,0,94,10,0,0,96,10,0,0,96,10,0,0,98,10,0,0,98,10,0,0,110,10,0,0,112,10,0,0,114,10,0,0,114,10,0,0,116,10,0,0,116,10,0,0,116,10,0,0,116,10,0,0,118,10,0,0,118,10,0,0,118,10,0,0,118,10,0,0,120,10,0,0,122,10,0,0,124,10,0,0,124,10,0,0,124,10,0,0,124,10,0,0,128,10,0,0,128,10,0,0,136,10,0,0,138,10,0,0,144,10,0,0,146,10,0,0,146,10,0,0,150,10,0,0,150,10,0,0,152,10,0,0,152,10,0,0,152,10,0,0,170,10,0,0,172,10,0,0,174,10,0,0,174,10,0,0,174,10,0,0,182,10,0,0,182,10,0,0,182,10,0,0,182,10,0,0,182,10,0,0,184,10,0,0,186,10,0,0,188,10,0,0,188,10,0,0,190,10,0,0,192,10,0,0,194,10,0,0,196,10,0,0,196,10,0,0,196,10,0,0,200,10,0,0,202,10,0,0,204,10,0,0,214,10,0,0,222,10,0,0,226,10,0,0,228,10,0,0,238,10,0,0,240,10,0,0,240,10,0,0,240,10,0,0,240,10,0,0,244,10,0,0,248,10,0,0,248,10,0,0,248,10,0,0,248,10,0,0,252,10,0,0,2,11,0,0,2,11,0,0,6,11,0,0,6,11,0,0,8,11,0,0,8,11,0,0,10,11,0,0,10,11,0,0,10,11,0,0,10,11,0,0,10,11,0,0,10,11,0,0,10,11,0,0,10,11,0,0,18,11,0,0,18,11,0,0,18,11,0,0,20,11,0,0,24,11,0,0,24,11,0,0,26,11,0,0,26,11,0,0,28,11,0,0,28,11,0,0,32,11,0,0,34,11,0,0,36,11,0,0,36,11,0,0,36,11,0,0,38,11,0,0,40,11,0,0,42,11,0,0,42,11,0,0,50,11,0,0,54,11,0,0,56,11,0,0,56,11,0,0,56,11,0,0,58,11,0,0,58,11,0,0,58,11,0,0,58,11,0,0,60,11,0,0,60,11,0,0,60,11,0,0,60,11,0,0,60,11,0,0,62,11,0,0,72,11,0,0,74,11,0,0,78,11,0,0,80,11,0,0,82,11,0,0,82,11,0,0,88,11,0,0,88,11,0,0,88,11,0,0,92,11,0,0,104,11,0,0,104,11,0,0,104,11,0,0,108,11,0,0,108,11,0,0,112,11,0,0,112,11,0,0,114,11,0,0,114,11,0,0,116,11,0,0,116,11,0,0,116,11,0,0,116,11,0,0,118,11,0,0,120,11,0,0,120,11,0,0,120,11,0,0,120,11,0,0,124,11,0,0,128,11,0,0,132,11,0,0,134,11,0,0,140,11,0,0,144,11,0,0,150,11,0,0,152,11,0,0,152,11,0,0,152,11,0,0,152,11,0,0,156,11,0,0,156,11,0,0,156,11,0,0,158,11,0,0,158,11,0,0,158,11,0,0,158,11,0,0,158,11,0,0,160,11,0,0,160,11,0,0,160,11,0,0,162,11,0,0,162,11,0,0,162,11,0,0,162,11,0,0,170,11,0,0,170,11,0,0,170,11,0,0,172,11,0,0,178,11,0,0,178,11,0,0,180,11,0,0,180,11,0,0,182,11,0,0,182,11,0,0,182,11,0,0,182,11,0,0,184,11,0,0,184,11,0,0,186,11,0,0,188,11,0,0,188,11,0,0,188,11,0,0,188,11,0,0,188,11,0,0,188,11,0,0,188,11,0,0,192,11,0,0,194,11,0,0,194,11,0,0,200,11,0,0,202,11,0,0,202,11,0,0,202,11,0,0,202,11,0,0,204,11,0,0,204,11,0,0,210,11,0,0,210,11,0,0,210,11,0,0,212,11,0,0,212,11,0,0,212,11,0,0,216,11,0,0,216,11,0,0,222,11,0,0,224,11,0,0,224,11,0,0,224,11,0,0,228,11,0,0,232,11,0,0,232,11,0,0,232,11,0,0,236,11,0,0,244,11,0,0,248,11,0,0,248,11,0,0,250,11,0,0,250,11,0,0,252,11,0,0,252,11,0,0,252,11,0,0,2,12,0,0,2,12,0,0,2,12,0,0,2,12,0,0,2,12,0,0,10,12,0,0,10,12,0,0,10,12,0,0,12,12,0,0,14,12,0,0,14,12,0,0,14,12,0,0,14,12,0,0,16,12,0,0,16,12,0,0,22,12,0,0,22,12,0,0,22,12,0,0,24,12,0,0,24,12,0,0,24,12,0,0,26,12,0,0,28,12,0,0,28,12,0,0,28,12,0,0,34,12,0,0,36,12,0,0,36,12,0,0,38,12,0,0,38,12,0,0,38,12,0,0,40,12,0,0,44,12,0,0,44,12,0,0,44,12,0,0,44,12,0,0,44,12,0,0,46,12,0,0,48,12,0,0,48,12,0,0,50,12,0,0,50,12,0,0,52,12,0,0,52,12,0,0,54,12,0,0,54,12,0,0,62,12,0,0,66,12,0,0,68,12,0,0,68,12,0,0,82,12,0,0,86,12,0,0,86,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,94,12,0,0,98,12,0,0,100,12,0,0,108,12,0,0,116,12,0,0,116,12,0,0,124,12,0,0,124,12,0,0,126,12,0,0,128,12,0,0,130,12,0,0,130,12,0,0,130,12,0,0,132,12,0,0,132,12,0,0,132,12,0,0,134,12,0,0,134,12,0,0,138,12,0,0,138,12,0,0,138,12,0,0,138,12,0,0,138,12,0,0,140,12,0,0,144,12,0,0,144,12,0,0,144,12,0,0,144,12,0,0,146,12,0,0,146,12,0,0,148,12,0,0,148,12,0,0,154,12,0,0,154,12,0,0,158,12,0,0,158,12,0,0,158,12,0,0,162,12,0,0,164,12,0,0,164,12,0,0,164,12,0,0,168,12,0,0,168,12,0,0,168,12,0,0,176,12,0,0,178,12,0,0,178,12,0,0,178,12,0,0,184,12,0,0,188,12,0,0,188,12,0,0,190,12,0,0,190,12,0,0,192,12,0,0,194,12,0,0,196,12,0,0,198,12,0,0,198,12,0,0,198,12,0,0,198,12,0,0,202,12,0,0,202,12,0,0,202,12,0,0,208,12,0,0,216,12,0,0,216,12,0,0,216,12,0,0,216,12,0,0,218,12,0,0,230,12,0,0,234,12,0,0,234,12,0,0,234,12,0,0,234,12,0,0,234,12,0,0,234,12,0,0,238,12,0,0,238,12,0,0,238,12,0,0,238,12,0,0,240,12,0,0,244,12,0,0,244,12,0,0,246,12,0,0,246,12,0,0,246,12,0,0,246,12,0,0,248,12,0,0,254,12,0,0,254,12,0,0,0,13,0,0,0,13,0,0,0,13,0,0,10,13,0,0,10,13,0,0,12,13,0,0,12,13,0,0,14,13,0,0,14,13,0,0,14,13,0,0,16,13,0,0,16,13,0,0,16,13,0,0,18,13,0,0,20,13,0,0,20,13,0,0,20,13,0,0,20,13,0,0,24,13,0,0,32,13,0,0,34,13,0,0,40,13,0,0,40,13,0,0,42,13,0,0,44,13,0,0,44,13,0,0,44,13,0,0,46,13,0,0,50,13,0,0,50,13,0,0,54,13,0,0,54,13,0,0,62,13,0,0,62,13,0,0,62,13,0,0,66,13,0,0,70,13,0,0,70,13,0,0,74,13,0,0,74,13,0,0,74,13,0,0,78,13,0,0,78,13,0,0,80,13,0,0,82,13,0,0,82,13,0,0,84,13,0,0,88,13,0,0,88,13,0,0,88,13,0,0,88,13,0,0,88,13,0,0,90,13,0,0,90,13,0,0,90,13,0,0,92,13,0,0,92,13,0,0,92,13,0,0,92,13,0,0,92,13,0,0,94,13,0,0,94,13,0,0,96,13,0,0,100,13,0,0,102,13,0,0,102,13,0,0,106,13,0,0,112,13,0,0,116,13,0,0,116,13,0,0,120,13,0,0,120,13,0,0,124,13,0,0,130,13,0,0,130,13,0,0,130,13,0,0,134,13,0,0,134,13,0,0,138,13,0,0,138,13,0,0,140,13,0,0,144,13,0,0,144,13,0,0,150,13,0,0,154,13,0,0,154,13,0,0,154,13,0,0,164,13,0,0,170,13,0,0,174,13,0,0,174,13,0,0,176,13,0,0,178,13,0,0,180,13,0,0,182,13,0,0,184,13,0,0,192,13,0,0,196,13,0,0,196,13,0,0,198,13,0,0,200,13,0,0,204,13,0,0,208,13,0,0,212,13,0,0,218,13,0,0,218,13,0,0,224,13,0,0,224,13,0,0,230,13,0,0,230,13,0,0,238,13,0,0,238,13,0,0,238,13,0,0,238,13,0,0,242,13,0,0,242,13,0,0,242,13,0,0,242,13,0,0,248,13,0,0,250,13,0,0,252,13,0,0,252,13,0,0,2,14,0,0,2,14,0,0,4,14,0,0,6,14,0,0,6,14,0,0,6,14,0,0,6,14,0,0,16,14,0,0,16,14,0,0,16,14,0,0,24,14,0,0,28,14,0,0,30,14,0,0,32,14,0,0,32,14,0,0,34,14,0,0,36,14,0,0,38,14,0,0,38,14,0,0,38,14,0,0,44,14,0,0,46,14,0,0,46,14,0,0,52,14,0,0,54,14,0,0,54,14,0,0,58,14,0,0,66,14,0,0,74,14,0,0,78,14,0,0,78,14,0,0,80,14,0,0,84,14,0,0,84,14,0,0,92,14,0,0,92,14,0,0,92,14,0,0,94,14,0,0,94,14,0,0,96,14,0,0,96,14,0,0,98,14,0,0,98,14,0,0,100,14,0,0,104,14,0,0,114,14,0,0,120,14,0,0,120,14,0,0,120,14,0,0,122,14,0,0,122,14,0,0,122,14,0,0,122,14,0,0,122,14,0,0,132,14,0,0,132,14,0,0,132,14,0,0,134,14,0,0,134,14,0,0,134,14,0,0,136,14,0,0,136,14,0,0,138,14,0,0,138,14,0,0,138,14,0,0,138,14,0,0,144,14,0,0,144,14,0,0,148,14,0,0,148,14,0,0,154,14,0,0,154,14,0,0,156,14,0,0,162,14,0,0,164,14,0,0,166,14,0,0,172,14,0,0,178,14,0,0,178,14,0,0,178,14,0,0,180,14,0,0,182,14,0,0,182,14,0,0,184,14,0,0,186,14,0,0,186,14,0,0,186,14,0,0,186,14,0,0,186,14,0,0,186,14,0,0,186,14,0,0,186,14,0,0,188,14,0,0,190,14,0,0,192,14,0,0,192,14,0,0,192,14,0,0,192,14,0,0,192,14,0,0,194,14,0,0,194,14,0,0,194,14,0,0,196,14,0,0,196,14,0,0,196,14,0,0,206,14,0,0,206,14,0,0,206,14,0,0,206,14,0,0,206,14,0,0,210,14,0,0,210,14,0,0,216,14,0,0,216,14,0,0,218,14,0,0,218,14,0,0,218,14,0,0,218,14,0,0,222,14,0,0,226,14,0,0,226,14,0,0,228,14,0,0,228,14,0,0,230,14,0,0,230,14,0,0,232,14,0,0,234,14,0,0,234,14,0,0,234,14,0,0,236,14,0,0,240,14,0,0,242,14,0,0,248,14,0,0,250,14,0,0,254,14,0,0,254,14,0,0,254,14,0,0,0,15,0,0,0,15,0,0,4,15,0,0,4,15,0,0,4,15,0,0,6,15,0,0,6,15,0,0,10,15,0,0,10,15,0,0,10,15,0,0,10,15,0,0,10,15,0,0,10,15,0,0,10,15,0,0,10,15,0,0,12,15,0,0,20,15,0,0,26,15,0,0,28,15,0,0,30,15,0,0,32,15,0,0,34,15,0,0,34,15,0,0,34,15,0,0,34,15,0,0,38,15,0,0,40,15,0,0,40,15,0,0,40,15,0,0,40,15,0,0,40,15,0,0,40,15,0,0,42,15,0,0,42,15,0,0,42,15,0,0,46,15,0,0,46,15,0,0,50,15,0,0,56,15,0,0,58,15,0,0,62,15,0,0,62,15,0,0,64,15,0,0,64,15,0,0,66,15,0,0,66,15,0,0,66,15,0,0,66,15,0,0,68,15,0,0,68,15,0,0,68,15,0,0,70,15,0,0,74,15,0,0,74,15,0,0,76,15,0,0,78,15,0,0,78,15,0,0,78,15,0,0,80,15,0,0,80,15,0,0,80,15,0,0,82,15,0,0,82,15,0,0,84,15,0,0,84,15,0,0,88,15,0,0,90,15,0,0,90,15,0,0,92,15,0,0,92,15,0,0,94,15,0,0,98,15,0,0,98,15,0,0,102,15,0,0,108,15,0,0,108,15,0,0,108,15,0,0,108,15,0,0,108,15,0,0,110,15,0,0,114,15,0,0,114,15,0,0,114,15,0,0,114,15,0,0,114,15,0,0,116,15,0,0,116,15,0,0,120,15,0,0,122,15,0,0,122,15,0,0,130,15,0,0,134,15,0,0,134,15,0,0,134,15,0,0,134,15,0,0,138,15,0,0,144,15,0,0,150,15,0,0,150,15,0,0,150,15,0,0,156,15,0,0,156,15,0,0,156,15,0,0,156,15,0,0,158,15,0,0,158,15,0,0,158,15,0,0,164,15,0,0,172,15,0,0,172,15,0,0,176,15,0,0,178,15,0,0,180,15,0,0,180,15,0,0,182,15,0,0,182,15,0,0,182,15,0,0,182,15,0,0,182,15,0,0,188,15,0,0,188,15,0,0,188,15,0,0,194,15,0,0,202,15,0,0,202,15,0,0,202,15,0,0,202,15,0,0,204,15,0,0,206,15,0,0,210,15,0,0,214,15,0,0,214,15,0,0,216,15,0,0,218,15,0,0,220,15,0,0,220,15,0,0,230,15,0,0,234,15,0,0,238,15,0,0,238,15,0,0,238,15,0,0,238,15,0,0,242,15,0,0,242,15,0,0,242,15,0,0,244,15,0,0,250,15,0,0,252,15,0,0,252,15,0,0,0,16,0,0,2,16,0,0,2,16,0,0,2,16,0,0,4,16,0,0,10,16,0,0,10,16,0,0,10,16,0,0,10,16,0,0,12,16,0,0,18,16,0,0,22,16,0,0,24,16,0,0,26,16,0,0,30,16,0,0,30,16,0,0,30,16,0,0,30,16,0,0,30,16,0,0,30,16,0,0,32,16,0,0,34,16,0,0,36,16,0,0,38,16,0,0,42,16,0,0,42,16,0,0,42,16,0,0,42,16,0,0,48,16,0,0,48,16,0,0,48,16,0,0,50,16,0,0,56,16,0,0,56,16,0,0,60,16,0,0,60,16,0,0,66,16,0,0,68,16,0,0,68,16,0,0,68,16,0,0,70,16,0,0,80,16,0,0,84,16,0,0,84,16,0,0,84,16,0,0,90,16,0,0,94,16,0,0,94,16,0,0,100,16,0,0,102,16,0,0,102,16,0,0,102,16,0,0,102,16,0,0,102,16,0,0,104,16,0,0,104,16,0,0,108,16,0,0,112,16,0,0,118,16,0,0,118,16,0,0,124,16,0,0,124,16,0,0,126,16,0,0,126,16,0,0,126,16,0,0,126,16,0,0,128,16,0,0,130,16,0,0,130,16,0,0,130,16,0,0,130,16,0,0,134,16,0,0,134,16,0,0,134,16,0,0,134,16,0,0,134,16,0,0,136,16,0,0,136,16,0,0,136,16,0,0,138,16,0,0,140,16,0,0,140,16,0,0,142,16,0,0,142,16,0,0,142,16,0,0,146,16,0,0,146,16,0,0,148,16,0,0,148,16,0,0,152,16,0,0,152,16,0,0,152,16,0,0,156,16,0,0,162,16,0,0,174,16,0,0,174,16,0,0,174,16,0,0,178,16,0,0,178,16,0,0,184,16,0,0,184,16,0,0,184,16,0,0,192,16,0,0,192,16,0,0,194,16,0,0,194,16,0,0,194,16,0,0,194,16,0,0,198,16,0,0,198,16,0,0,202,16,0,0,206,16,0,0,206,16,0,0,208,16,0,0,208,16,0,0,208,16,0,0,210,16,0,0,214,16,0,0,216,16,0,0,216,16,0,0,216,16,0,0,216,16,0,0,228,16,0,0,228,16,0,0,230,16,0,0,234,16,0,0,236,16,0,0,240,16,0,0,244,16,0,0,244,16,0,0,250,16,0,0,252,16,0,0,252,16,0,0,252,16,0,0,252,16,0,0,252,16,0,0,252,16,0,0,254,16,0,0,254,16,0,0,254,16,0,0,254,16,0,0,2,17,0,0,4,17,0,0,6,17,0,0,12,17,0,0,12,17,0,0,12,17,0,0,12,17,0,0,14,17,0,0,14,17,0,0,14,17,0,0,14,17,0,0,24,17,0,0,28,17,0,0,30,17,0,0,32,17,0,0,32,17,0,0,32,17,0,0,38,17,0,0,46,17,0,0,48,17,0,0,52,17,0,0,54,17,0,0,54,17,0,0,54,17,0,0,60,17,0,0,64,17,0,0,64,17,0,0,66,17,0,0,70,17,0,0,70,17,0,0,76,17,0,0,82,17,0,0,86,17,0,0,86,17,0,0,92,17,0,0,102,17,0,0,106,17,0,0,106,17,0,0,106,17,0,0,114,17,0,0,114,17,0,0,120,17,0,0,122,17,0,0,126,17,0,0,128,17,0,0,130,17,0,0,130,17,0,0,132,17,0,0,134,17,0,0,140,17,0,0,140,17,0,0,140,17,0,0,146,17,0,0,148,17,0,0,150,17,0,0,150,17,0,0,152,17,0,0,152,17,0,0,154,17,0,0,154,17,0,0,156,17,0,0,156,17,0,0,156,17,0,0,164,17,0,0,164,17,0,0,164,17,0,0,166,17,0,0,168,17,0,0,172,17,0,0,172,17,0,0,172,17,0,0,180,17,0,0,180,17,0,0,182,17,0,0,188,17,0,0,192,17,0,0,192,17,0,0,200,17,0,0,200,17,0,0,200,17,0,0,200,17,0,0,200,17,0,0,200,17,0,0,202,17,0,0,202,17,0,0,204,17,0,0,206,17,0,0,214,17,0,0,214,17,0,0,220,17,0,0,220,17,0,0,220,17,0,0,220,17,0,0,220,17,0,0,222,17,0,0,222,17,0,0,224,17,0,0,232,17,0,0,238,17,0,0,238,17,0,0,240,17,0,0,242,17,0,0,246,17,0,0,246,17,0,0,250,17,0,0,250,17,0,0,252,17,0,0,2,18,0,0,2,18,0,0,2,18,0,0,10,18,0,0,10,18,0,0,20,18,0,0,22,18,0,0,24,18,0,0,24,18,0,0,24,18,0,0,24,18,0,0,26,18,0,0,26,18,0,0,26,18,0,0,28,18,0,0,30,18,0,0,34,18,0,0,34,18,0,0,36,18,0,0,36,18,0,0,36,18,0,0,36,18,0,0,36,18,0,0,42,18,0,0,42,18,0,0,46,18,0,0,50,18,0,0,52,18,0,0,56,18,0,0,58,18,0,0,60,18,0,0,60,18,0,0,64,18,0,0,66,18,0,0,66,18,0,0,66,18,0,0,66,18,0,0,68,18,0,0,68,18,0,0,68,18,0,0,68,18,0,0,68,18,0,0,68,18,0,0,68,18,0,0,70,18,0,0,70,18,0,0,72,18,0,0,78,18,0,0,86,18,0,0,88,18,0,0,88,18,0,0,102,18,0,0,106,18,0,0,106,18,0,0,106,18,0,0,108,18,0,0,118,18,0,0,120,18,0,0,120,18,0,0,122,18,0,0,122,18,0,0,122,18,0,0,132,18,0,0,132,18,0,0,136,18,0,0,140,18,0,0,144,18,0,0,150,18,0,0,152,18,0,0,162,18,0,0,166,18,0,0,166,18,0,0,172,18,0,0,172,18,0,0,178,18,0,0,180,18,0,0,180,18,0,0,182,18,0,0,186,18,0,0,188,18,0,0,192,18,0,0,196,18,0,0,198,18,0,0,200,18,0,0,200,18,0,0,204,18,0,0,204,18,0,0,220,18,0,0,222,18,0,0,224,18,0,0,228,18,0,0,228,18,0,0,232,18,0,0,232,18,0,0,234,18,0,0,238,18,0,0,238,18,0,0,252,18,0,0,252,18,0,0,252,18,0,0,252,18,0,0,252,18,0,0,2,19,0,0,2,19,0,0,2,19,0,0,2,19,0,0,10,19,0,0,12,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,30,19,0,0,34,19,0,0,36,19,0,0,36,19,0,0,36,19,0,0,36,19,0,0,38,19,0,0,38,19,0,0,40,19,0,0,46,19,0,0,52,19,0,0,54,19,0,0,54,19,0,0,62,19,0,0,62,19,0,0,62,19,0,0,62,19,0,0,62,19,0,0,64,19,0,0,68,19,0,0,68,19,0,0,72,19,0,0,72,19,0,0,76,19,0,0,76,19,0,0,78,19,0,0,78,19,0,0,80,19,0,0,80,19,0,0,80,19,0,0,92,19,0,0,96,19,0,0,96,19,0,0,96,19,0,0,100,19,0,0,104,19,0,0,108,19,0,0,118,19,0,0,122,19,0,0,122,19,0,0,122,19,0,0,126,19,0,0,126,19,0,0,128,19,0,0,128,19,0,0,128,19,0,0,130,19,0,0,130,19,0,0,130,19,0,0,130,19,0,0,134,19,0,0,140,19,0,0,142,19,0,0,142,19,0,0,142,19,0,0,142,19,0,0,142,19,0,0,146,19,0,0,146,19,0,0,154,19,0,0,154,19,0,0,158,19,0,0,158,19,0,0,158,19,0,0,160,19,0,0,166,19,0,0,166,19,0,0,168,19,0,0,172,19,0,0,174,19,0,0,174,19,0,0,174,19,0,0,174,19,0,0,174,19,0,0,182,19,0,0,184,19,0,0,186,19,0,0,186,19,0,0,186,19,0,0,192,19,0,0,192,19,0,0,196,19,0,0,198,19,0,0,200,19,0,0,200,19,0,0,204,19,0,0,208,19,0,0,208,19,0,0,208,19,0,0,212,19,0,0,212,19,0,0,214,19,0,0,218,19,0,0,220,19,0,0,220,19,0,0,220,19,0,0,224,19,0,0,226,19,0,0,228,19,0,0,228,19,0,0,228,19,0,0,228,19,0,0,228,19,0,0,228,19,0,0,228,19,0,0,228,19,0,0,236,19,0,0,238,19,0,0,238,19,0,0,240,19,0,0,240,19,0,0,250,19,0,0,2,20,0,0,2,20,0,0,2,20,0,0,2,20,0,0,4,20,0,0,6,20,0,0,10,20,0,0,10,20,0,0,12,20,0,0,12,20,0,0,12,20,0,0,12,20,0,0,14,20,0,0,14,20,0,0,14,20,0,0,16,20,0,0,18,20,0,0,18,20,0,0,20,20,0,0,22,20,0,0,24,20,0,0,26,20,0,0,26,20,0,0,26,20,0,0,28,20,0,0,30,20,0,0,30,20,0,0,34,20,0,0,34,20,0,0,34,20,0,0,34,20,0,0,36,20,0,0,38,20,0,0,42,20,0,0,44,20,0,0,44,20,0,0,46,20,0,0,56,20,0,0,60,20,0,0,66,20,0,0,66,20,0,0,70,20,0,0,72,20,0,0,72,20,0,0,72,20,0,0,74,20,0,0,76,20,0,0,76,20,0,0,76,20,0,0,76,20,0,0,76,20,0,0,76,20,0,0,76,20,0,0,76,20,0,0,76,20,0,0,80,20,0,0,82,20,0,0,82,20,0,0,82,20,0,0,82,20,0,0,84,20,0,0,88,20,0,0,90,20,0,0,90,20,0,0,92,20,0,0,92,20,0,0,96,20,0,0,96,20,0,0,96,20,0,0,96,20,0,0,100,20,0,0,102,20,0,0,102,20,0,0,102,20,0,0,106,20,0,0,106,20,0,0,106,20,0,0,106,20,0,0,112,20,0,0,120,20,0,0,122,20,0,0,124,20,0,0,124,20,0,0,124,20,0,0,128,20,0,0,128,20,0,0,128,20,0,0,130,20,0,0,134,20,0,0,134,20,0,0,134,20,0,0,134,20,0,0,134,20,0,0,140,20,0,0,152,20,0,0,152,20,0,0,154,20,0,0,166,20,0,0,166,20,0,0,178,20,0,0,186,20,0,0,186,20,0,0,186,20,0,0,186,20,0,0,186,20,0,0,190,20,0,0,192,20,0,0,192,20,0,0,192,20,0,0,192,20,0,0,192,20,0,0,194,20,0,0,196,20,0,0,196,20,0,0,196,20,0,0,198,20,0,0,200,20,0,0,200,20,0,0,204,20,0,0,204,20,0,0,204,20,0,0,206,20,0,0,208,20,0,0,208,20,0,0,208,20,0,0,208,20,0,0,208,20,0,0,208,20,0,0,216,20,0,0,218,20,0,0,218,20,0,0,218,20,0,0,218,20,0,0,218,20,0,0,220,20,0,0,222,20,0,0,224,20,0,0,230,20,0,0,230,20,0,0,232,20,0,0,236,20,0,0,242,20,0,0,244,20,0,0,248,20,0,0,250,20,0,0,250,20,0,0,4,21,0,0,6,21,0,0,6,21,0,0,12,21,0,0,12,21,0,0,12,21,0,0,14,21,0,0,14,21,0,0,14,21,0,0,18,21,0,0,20,21,0,0,22,21,0,0,22,21,0,0,22,21,0,0,22,21,0,0,32,21,0,0,32,21,0,0,36,21,0,0,38,21,0,0,42,21,0,0,42,21,0,0,42,21,0,0,42,21,0,0,44,21,0,0,46,21,0,0,46,21,0,0,46,21,0,0,50,21,0,0,52,21,0,0,52,21,0,0,54,21,0,0,56,21,0,0,58,21,0,0,60,21,0,0,66,21,0,0,66,21,0,0,68,21,0,0,68,21,0,0,68,21,0,0,70,21,0,0,70,21,0,0,72,21,0,0,72,21,0,0,72,21,0,0,74,21,0,0,74,21,0,0,74,21,0,0,74,21,0,0,74,21,0,0,74,21,0,0,78,21,0,0,78,21,0,0,78,21,0,0,78,21,0,0,82,21,0,0,82,21,0,0,82,21,0,0,82,21,0,0,92,21,0,0,104,21,0,0,104,21,0,0,106,21,0,0,106,21,0,0,108,21,0,0,112,21,0,0,122,21,0,0,122,21,0,0,126,21,0,0,126,21,0,0,126,21,0,0,126,21,0,0,126,21,0,0,130,21,0,0,142,21,0,0,142,21,0,0,146,21,0,0,146,21,0,0,146,21,0,0,146,21,0,0,154,21,0,0,156,21,0,0,158,21,0,0,160,21,0,0,160,21,0,0,162,21,0,0,162,21,0,0,174,21,0,0,174,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,178,21,0,0,182,21,0,0,182,21,0,0,184,21,0,0,186,21,0,0,186,21,0,0,186,21,0,0,188,21,0,0,188,21,0,0,188,21,0,0,188,21,0,0,188,21,0,0,192,21,0,0,192,21,0,0,192,21,0,0,192,21,0,0,196,21,0,0,196,21,0,0,196,21,0,0,200,21,0,0,204,21,0,0,208,21,0,0,210,21,0,0,210,21,0,0,210,21,0,0,210,21,0,0,210,21,0,0,214,21,0,0,214,21,0,0,214,21,0,0,214,21,0,0,214,21,0,0,216,21,0,0,218,21,0,0,220,21,0,0,222,21,0,0,222,21,0,0,224,21,0,0,224,21,0,0,224,21,0,0,224,21,0,0,226,21,0,0,228,21,0,0,228,21,0,0,230,21,0,0,230,21,0,0,230,21,0,0,238,21,0,0,240,21,0,0,240,21,0,0,242,21,0,0,242,21,0,0,246,21,0,0,0,22,0,0,0,22,0,0,0,22,0,0,12,22,0,0,18,22,0,0,18,22,0,0,26,22,0,0,28,22,0,0,28,22,0,0,28,22,0,0,28,22,0,0,34,22,0,0,42,22,0,0,50,22,0,0,56,22,0,0,56,22,0,0,58,22,0,0,58,22,0,0,58,22,0,0,58,22,0,0,58,22,0,0,60,22,0,0,64,22,0,0,68,22,0,0,68,22,0,0,72,22,0,0,72,22,0,0,78,22,0,0,78,22,0,0,84,22,0,0,84,22,0,0,84,22,0,0,90,22,0,0,90,22,0,0,90,22,0,0,90,22,0,0,94,22,0,0,94,22,0,0,96,22,0,0,96,22,0,0,102,22,0,0,104,22,0,0,108,22,0,0,110,22,0,0,110,22,0,0,110,22,0,0,110,22,0,0,110,22,0,0,110,22,0,0,110,22,0,0,110,22,0,0,110,22,0,0,116,22,0,0,120,22,0,0,120,22,0,0,128,22,0,0,138,22,0,0,142,22,0,0,142,22,0,0,146,22,0,0,146,22,0,0,150,22,0,0,150,22,0,0,150,22,0,0,150,22,0,0,152,22,0,0,152,22,0,0,156,22,0,0,156,22,0,0,162,22,0,0,162,22,0,0,166,22,0,0,166,22,0,0,166,22,0,0,172,22,0,0,172,22,0,0,176,22,0,0,176,22,0,0,182,22,0,0,186,22,0,0,186,22,0,0,188,22,0,0,188,22,0,0,188,22,0,0,190,22,0,0,194,22,0,0,202,22,0,0,212,22,0,0,212,22,0,0,218,22,0,0,220,22,0,0,220,22,0,0,220,22,0,0,220,22,0,0,222,22,0,0,224,22,0,0,228,22,0,0,228,22,0,0,234,22,0,0,234,22,0,0,236,22,0,0,238,22,0,0,244,22,0,0,246,22,0,0,248,22,0,0,248,22,0,0,248,22,0,0,252,22,0,0,0,23,0,0,0,23,0,0,2,23,0,0,4,23,0,0,4,23,0,0,6,23,0,0,12,23,0,0,12,23,0,0,14,23,0,0,14,23,0,0,14,23,0,0,14,23,0,0,14,23,0,0,14,23,0,0,14,23,0,0,14,23,0,0,14,23,0,0,16,23,0,0,16,23,0,0,18,23,0,0,22,23,0,0,22,23,0,0,24,23,0,0,24,23,0,0,24,23,0,0,26,23,0,0,26,23,0,0,26,23,0,0,34,23,0,0,40,23,0,0,40,23,0,0,40,23,0,0,46,23,0,0,58,23,0,0,60,23,0,0,60,23,0,0,60,23,0,0,64,23,0,0,72,23,0,0,72,23,0,0,72,23,0,0,76,23,0,0,76,23,0,0,82,23,0,0,82,23,0,0,84,23,0,0,90,23,0,0,94,23,0,0,94,23,0,0,98,23,0,0,100,23,0,0,100,23,0,0,100,23,0,0,104,23,0,0,108,23,0,0,110,23,0,0,110,23,0,0,112,23,0,0,112,23,0,0,120,23,0,0,124,23,0,0,124,23,0,0,128,23,0,0,128,23,0,0,132,23,0,0,132,23,0,0,136,23,0,0,144,23,0,0,152,23,0,0,156,23,0,0,156,23,0,0,160,23,0,0,166,23,0,0,166,23,0,0,166,23,0,0,166,23,0,0,168,23,0,0,178,23,0,0,180,23,0,0,188,23,0,0,188,23,0,0,190,23,0,0,190,23,0,0,192,23,0,0,192,23,0,0,192,23,0,0,194,23,0,0,196,23,0,0,198,23,0,0,198,23,0,0,198,23,0,0,198,23,0,0,198,23,0,0,204,23,0,0,214,23,0,0,216,23,0,0,216,23,0,0,218,23,0,0,218,23,0,0,218,23,0,0,220,23,0,0,224,23,0,0,224,23,0,0,226,23,0,0,226,23,0,0,226,23,0,0,226,23,0,0,226,23,0,0,226,23,0,0,226,23,0,0,226,23,0,0,232,23,0,0,232,23,0,0,234,23,0,0,234,23,0,0,234,23,0,0,234,23,0,0,238,23,0,0,238,23,0,0,242,23,0,0,248,23,0,0,248,23,0,0,248,23,0,0,254,23,0,0,254,23,0,0,254,23,0,0,0,24,0,0,4,24,0,0,10,24,0,0,10,24,0,0,12,24,0,0,12,24,0,0,18,24,0,0,18,24,0,0,20,24,0,0,20,24,0,0,20,24,0,0,26,24,0,0,28,24,0,0,28,24,0,0,28,24,0,0,28,24,0,0,28,24,0,0,28,24,0,0,32,24,0,0,42,24,0,0,44,24,0,0,44,24,0,0,46,24,0,0,46,24,0,0,46,24,0,0,46,24,0,0,50,24,0,0,54,24,0,0,54,24,0,0,56,24,0,0,58,24,0,0,60,24,0,0,60,24,0,0,60,24,0,0,64,24,0,0,68,24,0,0,68,24,0,0,68,24,0,0,70,24,0,0,78,24,0,0,78,24,0,0,80,24,0,0,80,24,0,0,80,24,0,0,80,24,0,0,80,24,0,0,90,24,0,0,94,24,0,0,94,24,0,0,106,24,0,0,108,24,0,0,108,24,0,0,112,24,0,0,118,24,0,0,118,24,0,0,124,24,0,0,124,24,0,0,124,24,0,0,126,24,0,0,126,24,0,0,128,24,0,0,128,24,0,0,128,24,0,0,128,24,0,0,128,24,0,0,130,24,0,0,130,24,0,0,134,24,0,0,136,24,0,0,136,24,0,0,136,24,0,0,136,24,0,0,136,24,0,0,136,24,0,0,138,24,0,0,140,24,0,0,144,24,0,0,148,24,0,0,148,24,0,0,152,24,0,0,158,24,0,0,158,24,0,0,162,24,0,0,164,24,0,0,164,24,0,0,164,24,0,0,174,24,0,0,176,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,184,24,0,0,184,24,0,0,186,24,0,0,190,24,0,0,190,24,0,0,194,24,0,0,196,24,0,0,200,24,0,0,200,24,0,0,202,24,0,0,208,24,0,0,208,24,0,0,210,24,0,0,210,24,0,0,210,24,0,0,214,24,0,0,214,24,0,0,214,24,0,0,214,24,0,0,214,24,0,0,214,24,0,0,218,24,0,0,222,24,0,0,222,24,0,0,224,24,0,0,224,24,0,0,224,24,0,0,230,24,0,0,232,24,0,0,234,24,0,0,234,24,0,0,240,24,0,0,240,24,0,0,248,24,0,0,248,24,0,0,248,24,0,0,248,24,0,0,248,24,0,0,248,24,0,0,248,24,0,0,252,24,0,0,252,24,0,0,2,25,0,0,2,25,0,0,6,25,0,0,8,25,0,0,8,25,0,0,14,25,0,0,16,25,0,0,16,25,0,0,22,25,0,0,24,25,0,0,24,25,0,0,24,25,0,0,24,25,0,0,26,25,0,0,34,25,0,0,36,25,0,0,36,25,0,0,52,25,0,0,54,25,0,0,62,25,0,0,66,25,0,0,66,25,0,0,66,25,0,0,66,25,0,0,72,25,0,0,74,25,0,0,74,25,0,0,76,25,0,0,78,25,0,0,78,25,0,0,78,25,0,0,78,25,0,0,80,25,0,0,80,25,0,0,82,25,0,0,82,25,0,0,82,25,0,0,86,25,0,0,86,25,0,0,86,25,0,0,90,25,0,0,90,25,0,0,90,25,0,0,98,25,0,0,98,25,0,0,100,25,0,0,100,25,0,0,100,25,0,0,100,25,0,0,108,25,0,0,108,25,0,0,114,25,0,0,120,25,0,0,124,25,0,0,132,25,0,0,132,25,0,0,132,25,0,0,134,25,0,0,146,25,0,0,148,25,0,0,148,25,0,0,148,25,0,0,148,25,0,0,150,25,0,0,150,25,0,0,152,25,0,0,152,25,0,0,154,25,0,0,154,25,0,0,156,25,0,0,158,25,0,0,162,25,0,0,162,25,0,0,162,25,0,0,162,25,0,0,162,25,0,0,162,25,0,0,162,25,0,0,162,25,0,0,164,25,0,0,164,25,0,0,164,25,0,0,164,25,0,0,168,25,0,0,168,25,0,0,168,25,0,0,170,25,0,0,170,25,0,0,170,25,0,0,172,25,0,0,172,25,0,0,174,25,0,0,180,25,0,0,180,25,0,0,182,25,0,0,182,25,0,0,182,25,0,0,184,25,0,0,186,25,0,0,186,25,0,0,186,25,0,0,188,25,0,0,188,25,0,0,188,25,0,0,198,25,0,0,198,25,0,0,202,25,0,0,202,25,0,0,202,25,0,0,202,25,0,0,202,25,0,0,204,25,0,0,206,25,0,0,214,25,0,0,216,25,0,0,216,25,0,0,216,25,0,0,216,25,0,0,216,25,0,0,216,25,0,0,216,25,0,0,218,25,0,0,218,25,0,0,220,25,0,0,234,25,0,0,240,25,0,0,240,25,0,0,240,25,0,0,240,25,0,0,246,25,0,0,246,25,0,0,246,25,0,0,246,25,0,0,246,25,0,0,246,25,0,0,246,25,0,0,246,25,0,0,250,25,0,0,250,25,0,0,250,25,0,0,250,25,0,0,254,25,0,0,0,26,0,0,0,26,0,0,0,26,0,0,2,26,0,0,4,26,0,0,8,26,0,0,10,26,0,0,16,26,0,0,16,26,0,0,22,26,0,0,26,26,0,0,28,26,0,0,34,26,0,0,34,26,0,0,34,26,0,0,34,26,0,0,38,26,0,0,40,26,0,0,40,26,0,0,44,26,0,0,44,26,0,0,46,26,0,0,46,26,0,0,46,26,0,0,48,26,0,0,48,26,0,0,50,26,0,0,54,26,0,0,58,26,0,0,58,26,0,0,60,26,0,0,66,26,0,0,66,26,0,0,66,26,0,0,66,26,0,0,66,26,0,0,66,26,0,0,66,26,0,0,66,26,0,0,74,26,0,0,80,26,0,0,80,26,0,0,92,26,0,0,98,26,0,0,100,26,0,0,100,26,0,0,106,26,0,0,108,26,0,0,110,26,0,0,110,26,0,0,112,26,0,0,112,26,0,0,114,26,0,0,118,26,0,0,118,26,0,0,122,26,0,0,122,26,0,0,122,26,0,0,126,26,0,0,126,26,0,0,126,26,0,0,126,26,0,0,130,26,0,0,134,26,0,0,138,26,0,0,138,26,0,0,138,26,0,0,142,26,0,0,142,26,0,0,142,26,0,0,142,26,0,0,142,26,0,0,142,26,0,0,142,26,0,0,142,26,0,0,142,26,0,0,144,26,0,0,146,26,0,0,150,26,0,0,152,26,0,0,152,26,0,0,156,26,0,0,160,26,0,0,160,26,0,0,162,26,0,0,162,26,0,0,162,26,0,0,162,26,0,0,162,26,0,0,162,26,0,0,162,26,0,0,162,26,0,0,164,26,0,0,166,26,0,0,170,26,0,0,172,26,0,0,172,26,0,0,172,26,0,0,172,26,0,0,176,26,0,0,182,26,0,0,184,26,0,0,184,26,0,0,184,26,0,0,190,26,0,0,192,26,0,0,192,26,0,0,192,26,0,0,194,26,0,0,194,26,0,0,198,26,0,0,202,26,0,0,204,26,0,0,204,26,0,0,204,26,0,0,204,26,0,0,204,26,0,0,204,26,0,0,206,26,0,0,206,26,0,0,206,26,0,0,206,26,0,0,206,26,0,0,206,26,0,0,208,26,0,0,208,26,0,0,212,26,0,0,214,26,0,0,224,26,0,0,224,26,0,0,230,26,0,0,230,26,0,0,230,26,0,0,230,26,0,0,230,26,0,0,234,26,0,0,236,26,0,0,236,26,0,0,236,26,0,0,242,26,0,0,242,26,0,0,242,26,0,0,242,26,0,0,242,26,0,0,242,26,0,0,244,26,0,0,244,26,0,0,244,26,0,0,244,26,0,0,244,26,0,0,248,26,0,0,250,26,0,0,250,26,0,0,254,26,0,0,2,27,0,0,4,27,0,0,8,27,0,0,8,27,0,0,12,27,0,0,12,27,0,0,12,27,0,0,12,27,0,0,12,27,0,0,16,27,0,0,16,27,0,0,16,27,0,0,28,27,0,0,28,27,0,0,30,27,0,0,30,27,0,0,30,27,0,0,30,27,0,0,32,27,0,0,32,27,0,0,32,27,0,0,38,27,0,0,38,27,0,0,40,27,0,0,52,27,0,0,54,27,0,0,58,27,0,0,60,27,0,0,60,27,0,0,72,27,0,0,72,27,0,0,82,27,0,0,86,27,0,0,86,27,0,0,90,27,0,0,90,27,0,0,90,27,0,0,92,27,0,0,96,27,0,0,96,27,0,0,98,27,0,0,98,27,0,0,100,27,0,0,102,27,0,0,102,27,0,0,106,27,0,0,110,27,0,0,110,27,0,0,110,27,0,0,110,27,0,0,110,27,0,0,112,27,0,0,120,27,0,0,120,27,0,0,120,27,0,0,120,27,0,0,122,27,0,0,122,27,0,0,130,27,0,0,134,27,0,0,134,27,0,0,134,27,0,0,134,27,0,0,140,27,0,0,140,27,0,0,140,27,0,0,144,27,0,0,148,27,0,0,148,27,0,0,148,27,0,0,150,27,0,0,150,27,0,0,152,27,0,0,158,27,0,0,162,27,0,0,162,27,0,0,162,27,0,0,166,27,0,0,168,27,0,0,168,27,0,0,170,27,0,0,174,27,0,0,174,27,0,0,174,27,0,0,176,27,0,0,176,27,0,0,178,27,0,0,180,27,0,0,184,27,0,0,188,27,0,0,190,27,0,0,192,27,0,0,202,27,0,0,204,27,0,0,204,27,0,0,204,27,0,0,204,27,0,0,204,27,0,0,204,27,0,0,210,27,0,0,210,27,0,0,210,27,0,0,212,27,0,0,214,27,0,0,214,27,0,0,222,27,0,0,222,27,0,0,222,27,0,0,222,27,0,0,228,27,0,0,228,27,0,0,232,27,0,0,234,27,0,0,234,27,0,0,234,27,0,0,234,27,0,0,240,27,0,0,242,27,0,0,242,27,0,0,244,27,0,0,246,27,0,0,246,27,0,0,248,27,0,0,248,27,0,0,250,27,0,0,250,27,0,0,252,27,0,0,252,27,0,0,4,28,0,0,4,28,0,0,6,28,0,0,6,28,0,0,6,28,0,0,6,28,0,0,12,28,0,0,14,28,0,0,14,28,0,0,14,28,0,0,14,28,0,0,14,28,0,0,18,28,0,0,20,28,0,0,22,28,0,0,22,28,0,0,22,28,0,0,28,28,0,0,28,28,0,0,28,28,0,0,32,28,0,0,38,28,0,0,38,28,0,0,38,28,0,0,40,28,0,0,44,28,0,0,44,28,0,0,46,28,0,0,46,28,0,0,48,28,0,0,50,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,58,28,0,0,60,28,0,0,64,28,0,0,64,28,0,0,64,28,0,0,64,28,0,0,68,28,0,0,74,28,0,0,80,28,0,0,82,28,0,0,84,28,0,0,84,28,0,0,84,28,0,0,84,28,0,0,84,28,0,0,86,28,0,0,92,28,0,0,96,28,0,0,96,28,0,0,102,28,0,0,102,28,0,0,110,28,0,0,110,28,0,0,112,28,0,0,112,28,0,0,112,28,0,0,116,28,0,0,116,28,0,0,116,28,0,0,120,28,0,0,122,28,0,0,126,28,0,0,130,28,0,0,136,28,0,0,140,28,0,0,140,28,0,0,142,28,0,0,142,28,0,0,146,28,0,0,148,28,0,0,148,28,0,0,152,28,0,0,152,28,0,0,154,28,0,0,154,28,0,0,162,28,0,0,162,28,0,0,168,28,0,0,170,28,0,0,172,28,0,0,176,28,0,0,176,28,0,0,178,28,0,0,178,28,0,0,182,28,0,0,182,28,0,0,188,28,0,0,188,28,0,0,188,28,0,0,188,28,0,0,188,28,0,0,190,28,0,0,192,28,0,0,198,28,0,0,198,28,0,0,198,28,0,0,204,28,0,0,204,28,0,0,208,28,0,0,208,28,0,0,210,28,0,0,210,28,0,0,210,28,0,0,210,28,0,0,210,28,0,0,214,28,0,0,214,28,0,0,214,28,0,0,214,28,0,0,214,28,0,0,216,28,0,0,218,28,0,0,224,28,0,0,224,28,0,0,226,28,0,0,230,28,0,0,230,28,0,0,230,28,0,0,230,28,0,0,230,28,0,0,230,28,0,0,232,28,0,0,236,28,0,0,236,28,0,0,236,28,0,0,238,28,0,0,240,28,0,0,240,28,0,0,240,28,0,0,242,28,0,0,244,28,0,0,248,28,0,0,248,28,0,0,252,28,0,0,252,28,0,0,254,28,0,0,254,28,0,0,10,29,0,0,10,29,0,0,10,29,0,0,12,29,0,0,12,29,0,0,18,29,0,0,24,29,0,0,24,29,0,0,24,29,0,0,28,29,0,0,28,29,0,0,30,29,0,0,30,29,0,0,34,29,0,0,34,29,0,0,34,29,0,0,34,29,0,0,34,29,0,0,36,29,0,0,42,29,0,0,44,29,0,0,48,29,0,0,52,29,0,0,52,29,0,0,56,29,0,0,66,29,0,0,70,29,0,0,70,29,0,0,70,29,0,0,70,29,0,0,70,29,0,0,76,29,0,0,76,29,0,0,76,29,0,0,78,29,0,0,78,29,0,0,78,29,0,0,84,29,0,0,90,29,0,0,90,29,0,0,92,29,0,0,94,29,0,0,100,29,0,0,102,29,0,0,102,29,0,0,102,29,0,0,104,29,0,0,108,29,0,0,108,29,0,0,116,29,0,0,116,29,0,0,118,29,0,0,122,29,0,0,128,29,0,0,128,29,0,0,130,29,0,0,130,29,0,0,130,29,0,0,142,29,0,0,142,29,0,0,142,29,0,0,142,29,0,0,142,29,0,0,142,29,0,0,146,29,0,0,160,29,0,0,164,29,0,0,166,29,0,0,170,29,0,0,170,29,0,0,174,29,0,0,182,29,0,0,184,29,0,0,184,29,0,0,184,29,0,0,184,29,0,0,184,29,0,0,186,29,0,0,188,29,0,0,188,29,0,0,188,29,0,0,198,29,0,0,200,29,0,0,200,29,0,0,206,29,0,0,206,29,0,0,206,29,0,0,214,29,0,0,222,29,0,0,224,29,0,0,230,29,0,0,230,29,0,0,230,29,0,0,230,29,0,0,230,29,0,0,230,29,0,0,230,29,0,0,230,29,0,0,232,29,0,0,232,29,0,0,234,29,0,0,236,29,0,0,236,29,0,0,236,29,0,0,238,29,0,0,242,29,0,0,248,29,0,0,250,29,0,0,252,29,0,0,0,30,0,0,2,30,0,0,14,30,0,0,14,30,0,0,18,30,0,0,20,30,0,0,20,30,0,0,20,30,0,0,22,30,0,0,26,30,0,0,28,30,0,0,30,30,0,0,32,30,0,0,34,30,0,0,34,30,0,0,34,30,0,0,38,30,0,0,42,30,0,0,44,30,0,0,46,30,0,0,48,30,0,0,48,30,0,0,50,30,0,0,50,30,0,0,52,30,0,0,52,30,0,0,52,30,0,0,52,30,0,0,56,30,0,0,56,30,0,0,56,30,0,0,56,30,0,0,56,30,0,0,56,30,0,0,56,30,0,0,58,30,0,0,58,30,0,0,60,30,0,0,60,30,0,0,60,30,0,0,66,30,0,0,72,30,0,0,72,30,0,0,78,30,0,0,78,30,0,0,90,30,0,0,90,30,0,0,92,30,0,0,96,30,0,0,96,30,0,0,96,30,0,0,96,30,0,0,98,30,0,0,98,30,0,0,100,30,0,0,104,30,0,0,104,30,0,0,104,30,0,0,104,30,0,0,106,30,0,0,114,30,0,0,114,30,0,0,116,30,0,0,116,30,0,0,116,30,0,0,116,30,0,0,118,30,0,0,118,30,0,0,118,30,0,0,118,30,0,0,120,30,0,0,120,30,0,0,122,30,0,0,128,30,0,0,128,30,0,0,130,30,0,0,130,30,0,0,130,30,0,0,132,30,0,0,134,30,0,0,136,30,0,0,136,30,0,0,140,30,0,0,140,30,0,0,142,30,0,0,148,30,0,0,150,30,0,0,152,30,0,0,152,30,0,0,156,30,0,0,158,30,0,0,158,30,0,0,164,30,0,0,164,30,0,0,164,30,0,0,164,30,0,0,166,30,0,0,166,30,0,0,166,30,0,0,168,30,0,0,186,30,0,0,188,30,0,0,188,30,0,0,190,30,0,0,190,30,0,0,190,30,0,0,194,30,0,0,194,30,0,0,194,30,0,0,196,30,0,0,198,30,0,0,198,30,0,0,200,30,0,0,202,30,0,0,202,30,0,0,202,30,0,0,202,30,0,0,208,30,0,0,210,30,0,0,210,30,0,0,210,30,0,0,210,30,0,0,210,30,0,0,212,30,0,0,212,30,0,0,212,30,0,0,212,30,0,0,212,30,0,0,214,30,0,0,218,30,0,0,220,30,0,0,220,30,0,0,220,30,0,0,220,30,0,0,220,30,0,0,220,30,0,0,222,30,0,0,222,30,0,0,222,30,0,0,222,30,0,0,224,30,0,0,224,30,0,0,224,30,0,0,226,30,0,0,226,30,0,0,226,30,0,0,226,30,0,0,228,30,0,0,232,30,0,0,232,30,0,0,232,30,0,0,240,30,0,0,248,30,0,0,248,30,0,0,250,30,0,0,254,30,0,0,6,31,0,0,16,31,0,0,18,31,0,0,18,31,0,0,18,31,0,0,18,31,0,0,20,31,0,0,20,31,0,0,20,31,0,0,20,31,0,0,20,31,0,0,20,31,0,0,22,31,0,0,22,31,0,0,22,31,0,0,22,31,0,0,28,31,0,0,28,31,0,0,28,31,0,0,28,31,0,0,28,31,0,0,28,31,0,0,30,31,0,0,32,31,0,0,32,31,0,0,32,31,0,0,32,31,0,0,32,31,0,0,32,31,0,0,36,31,0,0,38,31,0,0,40,31,0,0,40,31,0,0,42,31,0,0,42,31,0,0,54,31,0,0,56,31,0,0,56,31,0,0,56,31,0,0,60,31,0,0,60,31,0,0,60,31,0,0,60,31,0,0,60,31,0,0,62,31,0,0,64,31,0,0,70,31,0,0,70,31,0,0,72,31,0,0,72,31,0,0,74,31,0,0,74,31,0,0,78,31,0,0,78,31,0,0,82,31,0,0,82,31,0,0,82,31,0,0,86,31,0,0,90,31,0,0,96,31,0,0,96,31,0,0,96,31,0,0,96,31,0,0,96,31,0,0,102,31,0,0,102,31,0,0,102,31,0,0,104,31,0,0,108,31,0,0,108,31,0,0,108,31,0,0,108,31,0,0,110,31,0,0,110,31,0,0,110,31,0,0,112,31,0,0,112,31,0,0,116,31,0,0,116,31,0,0,118,31,0,0,124,31,0,0,124,31,0,0,124,31,0,0,124,31,0,0,124,31,0,0,128,31,0,0,128,31,0,0,128,31,0,0,128,31,0,0,130,31,0,0,130,31,0,0,132,31,0,0,132,31,0,0,132,31,0,0,134,31,0,0,136,31,0,0,146,31,0,0,148,31,0,0,148,31,0,0,154,31,0,0,158,31,0,0,162,31,0,0,172,31,0,0,176,31,0,0,180,31,0,0,180,31,0,0,180,31,0,0,184,31,0,0,184,31,0,0,184,31,0,0,188,31,0,0,188,31,0,0,198,31,0,0,198,31,0,0,198,31,0,0,198,31,0,0,198,31,0,0,198,31,0,0,198,31,0,0,204,31,0,0,206,31,0,0,206,31,0,0,206,31,0,0,206,31,0,0,214,31,0,0,216,31,0,0,216,31,0,0,222,31,0,0,224,31,0,0,224,31,0,0,224,31,0,0,224,31,0,0,230,31,0,0,230,31,0,0,234,31,0,0,234,31,0,0,234,31,0,0,234,31,0,0,236,31,0,0,236,31,0,0,238,31,0,0,242,31,0,0,248,31,0,0,254,31,0,0,254,31,0,0,4,32,0,0,6,32,0,0,6,32,0,0,8,32,0,0,12,32,0,0,16,32,0,0,16,32,0,0,22,32,0,0,22,32,0,0,24,32,0,0,24,32,0,0,24,32,0,0,24,32,0,0,28,32,0,0,30,32,0,0,30,32,0,0,30,32,0,0,32,32,0,0,32,32,0,0,34,32,0,0,36,32,0,0,38,32,0,0,40,32,0,0,44,32,0,0,46,32,0,0,46,32,0,0,46,32,0,0,46,32,0,0,48,32,0,0,48,32,0,0,50,32,0,0,52,32,0,0,54,32,0,0,68,32,0,0,68,32,0,0,68,32,0,0,68,32,0,0,76,32,0,0,80,32,0,0,80,32,0,0,80,32,0,0,80,32,0,0,80,32,0,0,84,32,0,0,84,32,0,0,84,32,0,0,84,32,0,0,84,32,0,0,92,32,0,0,92,32,0,0,94,32,0,0,94,32,0,0,104,32,0,0,106,32,0,0,106,32,0,0,110,32,0,0,110,32,0,0,112,32,0,0,112,32,0,0,112,32,0,0,112,32,0,0,112,32,0,0,112,32,0,0,112,32,0,0,118,32,0,0,120,32,0,0,122,32,0,0,122,32,0,0,122,32,0,0,122,32,0,0,122,32,0,0,122,32,0,0,124,32,0,0,124,32,0,0,126,32,0,0,126,32,0,0,132,32,0,0,134,32,0,0,134,32,0,0,138,32,0,0,138,32,0,0,138,32,0,0,138,32,0,0,138,32,0,0,138,32,0,0,142,32,0,0,144,32,0,0,144,32,0,0,144,32,0,0,146,32,0,0,148,32,0,0,156,32,0,0,156,32,0,0,160,32,0,0,162,32,0,0,162,32,0,0,168,32,0,0,178,32,0,0,178,32,0,0,178,32,0,0,178,32,0,0,178,32,0,0,188,32,0,0,190,32,0,0,192,32,0,0,192,32,0,0,192,32,0,0,198,32,0,0,204,32,0,0,204,32,0,0,206,32,0,0,206,32,0,0,206,32,0,0,206,32,0,0,206,32,0,0,212,32,0,0,214,32,0,0,214,32,0,0,216,32,0,0,216,32,0,0,218,32,0,0,218,32,0,0,218,32,0,0,218,32,0,0,218,32,0,0,222,32,0,0,224,32,0,0,224,32,0,0,224,32,0,0,224,32,0,0,226,32,0,0,226,32,0,0,228,32,0,0,232,32,0,0,232,32,0,0,244,32,0,0,246,32,0,0,254,32,0,0,254,32,0,0,4,33,0,0,10,33,0,0,10,33,0,0,12,33,0,0,16,33,0,0,16,33,0,0,16,33,0,0,18,33,0,0,22,33,0,0,26,33,0,0,26,33,0,0,26,33,0,0,32,33,0,0,32,33,0,0,32,33,0,0,44,33,0,0,48,33,0,0,50,33,0,0,54,33,0,0,54,33,0,0,54,33,0,0,56,33,0,0,64,33,0,0,64,33,0,0,64,33,0,0,64,33,0,0,64,33,0,0,74,33,0,0,78,33,0,0,78,33,0,0,82,33,0,0,84,33,0,0,84,33,0,0,86,33,0,0,86,33,0,0,86,33,0,0,86,33,0,0,92,33,0,0,98,33,0,0,98,33,0,0,100,33,0,0,100,33,0,0,104,33,0,0,112,33,0,0,114,33,0,0,114,33,0,0,114,33,0,0,118,33,0,0,122,33,0,0,122,33,0,0,130,33,0,0,132,33,0,0,132,33,0,0,132,33,0,0,136,33,0,0,136,33,0,0,136,33,0,0,142,33,0,0,142,33,0,0,144,33,0,0,146,33,0,0,150,33,0,0,150,33,0,0,150,33,0,0,150,33,0,0,152,33,0,0,154,33,0,0,158,33,0,0,158,33,0,0,158,33,0,0,160,33,0,0,172,33,0,0,172,33,0,0,178,33,0,0,180,33,0,0,182,33,0,0,184,33,0,0,184,33,0,0,190,33,0,0,190,33,0,0,198,33,0,0,200,33,0,0,200,33,0,0,200,33,0,0,202,33,0,0,202,33,0,0,202,33,0,0,206,33,0,0,206,33,0,0,214,33,0,0,214,33,0,0,214,33,0,0,214,33,0,0,214,33,0,0,216,33,0,0,218,33,0,0,220,33,0,0,220,33,0,0,224,33,0,0,228,33,0,0,230,33,0,0,230,33,0,0,232,33,0,0,238,33,0,0,238,33,0,0,240,33,0,0,244,33,0,0,244,33,0,0,246,33,0,0,4,34,0,0,6,34,0,0,8,34,0,0,10,34,0,0,10,34,0,0,16,34,0,0,16,34,0,0,16,34,0,0,16,34,0,0,18,34,0,0,20,34,0,0,28,34,0,0,34,34,0,0,38,34,0,0,44,34,0,0,52,34,0,0,54,34,0,0,54,34,0,0,60,34,0,0,62,34,0,0,66,34,0,0,66,34,0,0,66,34,0,0,70,34,0,0,80,34,0,0,80,34,0,0,82,34,0,0,84,34,0,0,86,34,0,0,86,34,0,0,94,34,0,0,102,34,0,0,102,34,0,0,102,34,0,0,102,34,0,0,102,34,0,0,102,34,0,0,102,34,0,0,102,34,0,0,102,34,0,0,108,34,0,0,108,34,0,0,118,34,0,0,118,34,0,0,118,34,0,0,118,34,0,0,118,34,0,0,128,34,0,0,132,34,0,0,132,34,0,0,132,34,0,0,132,34,0,0,132,34,0,0,136,34,0,0,136,34,0,0,138,34,0,0,138,34,0,0,138,34,0,0,138,34,0,0,138,34,0,0,138,34,0,0,140,34,0,0,144,34,0,0,144,34,0,0,146,34,0,0,146,34,0,0,146,34,0,0,152,34,0,0,156,34,0,0,156,34,0,0,158,34,0,0,158,34,0,0,160,34,0,0,164,34,0,0,164,34,0,0,164,34,0,0,164,34,0,0,166,34,0,0,166,34,0,0,166,34,0,0,166,34,0,0,166,34,0,0,172,34,0,0,172,34,0,0,172,34,0,0,172,34,0,0,180,34,0,0,184,34,0,0,186,34,0,0,186,34,0,0,186,34,0,0,196,34,0,0,196,34,0,0,196,34,0,0,198,34,0,0,198,34,0,0,200,34,0,0,204,34,0,0,204,34,0,0,208,34,0,0,208,34,0,0,208,34,0,0,208,34,0,0,210,34,0,0,210,34,0,0,210,34,0,0,212,34,0,0,212,34,0,0,212,34,0,0,212,34,0,0,214,34,0,0,216,34,0,0,220,34,0,0,224,34,0,0,224,34,0,0,226,34,0,0,226,34,0,0,226,34,0,0,226,34,0,0,226,34,0,0,226,34,0,0,226,34,0,0,226,34,0,0,226,34,0,0,226,34,0,0,230,34,0,0,230,34,0,0,238,34,0,0,240,34,0,0,240,34,0,0,240,34,0,0,244,34,0,0,248,34,0,0,252,34,0,0,0,35,0,0,2,35,0,0,6,35,0,0,6,35,0,0,10,35,0,0,14,35,0,0,14,35,0,0,14,35,0,0,16,35,0,0,16,35,0,0,16,35,0,0,16,35,0,0,16,35,0,0,16,35,0,0,16,35,0,0,16,35,0,0,16,35,0,0,20,35,0,0,20,35,0,0,26,35,0,0,28,35,0,0,28,35,0,0,32,35,0,0,38,35,0,0,38,35,0,0,40,35,0,0,52,35,0,0,54,35,0,0,58,35,0,0,62,35,0,0,62,35,0,0,70,35,0,0,70,35,0,0,70,35,0,0,70,35,0,0,74,35,0,0,76,35,0,0,78,35,0,0,86,35,0,0,86,35,0,0,86,35,0,0,86,35,0,0,88,35,0,0,88,35,0,0,88,35,0,0,90,35,0,0,92,35,0,0,96,35,0,0,98,35,0,0,100,35,0,0,104,35,0,0,104,35,0,0,104,35,0,0,106,35,0,0,110,35,0,0,114,35,0,0,114,35,0,0,114,35,0,0,114,35,0,0,116,35,0,0,120,35,0,0,120,35,0,0,120,35,0,0,122,35,0,0,122,35,0,0,122,35,0,0,124,35,0,0,124,35,0,0,134,35,0,0,136,35,0,0,144,35,0,0,148,35,0,0,158,35,0,0,158,35,0,0,158,35,0,0,162,35,0,0,170,35,0,0,174,35,0,0,174,35,0,0,174,35,0,0,176,35,0,0,178,35,0,0,180,35,0,0,180,35,0,0,182,35,0,0,184,35,0,0,184,35,0,0,186,35,0,0,186,35,0,0,186,35,0,0,188,35,0,0,190,35,0,0,190,35,0,0,190,35,0,0,190,35,0,0,192,35,0,0,194,35,0,0,194,35,0,0,198,35,0,0,198,35,0,0,200,35,0,0,200,35,0,0,200,35,0,0,212,35,0,0,212,35,0,0,212,35,0,0,212,35,0,0,220,35,0,0,220,35,0,0,220,35,0,0,220,35,0,0,220,35,0,0,224,35,0,0,224,35,0,0,228,35,0,0,232,35,0,0,232,35,0,0,232,35,0,0,232,35,0,0,232,35,0,0,232,35,0,0,232,35,0,0,234,35,0,0,234,35,0,0,240,35,0,0,240,35,0,0,240,35,0,0,244,35,0,0,244,35,0,0,248,35,0,0,254,35,0,0,254,35,0,0,254,35,0,0,0,36,0,0,2,36,0,0,2,36,0,0,2,36,0,0,2,36,0,0,4,36,0,0,6,36,0,0,8,36,0,0,8,36,0,0,10,36,0,0,12,36,0,0,14,36,0,0,14,36,0,0,18,36,0,0,20,36,0,0,20,36,0,0,20,36,0,0,26,36,0,0,26,36,0,0,32,36,0,0,34,36,0,0,36,36,0,0,42,36,0,0,50,36,0,0,50,36,0,0,56,36,0,0,56,36,0,0,56,36,0,0,60,36,0,0,60,36,0,0,68,36,0,0,72,36,0,0,72,36,0,0,74,36,0,0,80,36,0,0,84,36,0,0,86,36,0,0,88,36,0,0,88,36,0,0,88,36,0,0,88,36,0,0,92,36,0,0,98,36,0,0,100,36,0,0,104,36,0,0,104,36,0,0,104,36,0,0,104,36,0,0,104,36,0,0,104,36,0,0,108,36,0,0,108,36,0,0,110,36,0,0,110,36,0,0,110,36,0,0,110,36,0,0,110,36,0,0,110,36,0,0,118,36,0,0,118,36,0,0,122,36,0,0,122,36,0,0,124,36,0,0,124,36,0,0,124,36,0,0,124,36,0,0,128,36,0,0,134,36,0,0,136,36,0,0,136,36,0,0,140,36,0,0,142,36,0,0,144,36,0,0,144,36,0,0,150,36,0,0,150,36,0,0,152,36,0,0,152,36,0,0,154,36,0,0,154,36,0,0,158,36,0,0,158,36,0,0,160,36,0,0,160,36,0,0,160,36,0,0,162,36,0,0,164,36,0,0,164,36,0,0,168,36,0,0,168,36,0,0,168,36,0,0,168,36,0,0,168,36,0,0,170,36,0,0,170,36,0,0,172,36,0,0,172,36,0,0,172,36,0,0,174,36,0,0,178,36,0,0,184,36,0,0,184,36,0,0,184,36,0,0,184,36,0,0,188,36,0,0,196,36,0,0,198,36,0,0,198,36,0,0,204,36,0,0,204,36,0,0,204,36,0,0,208,36,0,0,208,36,0,0,208,36,0,0,208,36,0,0,212,36,0,0,214,36,0,0,214,36,0,0,216,36,0,0,216,36,0,0,216,36,0,0,220,36,0,0,220,36,0,0,226,36,0,0,228,36,0,0,228,36,0,0,228,36,0,0,228,36,0,0,228,36,0,0,230,36,0,0,232,36,0,0,232,36,0,0,238,36,0,0,238,36,0,0,238,36,0,0,240,36,0,0,244,36,0,0,244,36,0,0,244,36,0,0,246,36,0,0,246,36,0,0,248,36,0,0,248,36,0,0,248,36,0,0,10,37,0,0,10,37,0,0,10,37,0,0,10,37,0,0,10,37,0,0,12,37,0,0,18,37,0,0,18,37,0,0,18,37,0,0,26,37,0,0,28,37,0,0,28,37,0,0,28,37,0,0,28,37,0,0,28,37,0,0,30,37,0,0,30,37,0,0,30,37,0,0,30,37,0,0,34,37,0,0,38,37,0,0,38,37,0,0,40,37,0,0,40,37,0,0,46,37,0,0,48,37,0,0,48,37,0,0,48,37,0,0,48,37,0,0,48,37,0,0,58,37,0,0,58,37,0,0,62,37,0,0,64,37,0,0,64,37,0,0,64,37,0,0,66,37,0,0,66,37,0,0,68,37,0,0,72,37,0,0,72,37,0,0,72,37,0,0,72,37,0,0,72,37,0,0,74,37,0,0,76,37,0,0,76,37,0,0,76,37,0,0,84,37,0,0,84,37,0,0,88,37,0,0,88,37,0,0,90,37,0,0,92,37,0,0,96,37,0,0,96,37,0,0,102,37,0,0,106,37,0,0,110,37,0,0,112,37,0,0,112,37,0,0,116,37,0,0,116,37,0,0,118,37,0,0,122,37,0,0,122,37,0,0,122,37,0,0,122,37,0,0,124,37,0,0,124,37,0,0,124,37,0,0,124,37,0,0,126,37,0,0,126,37,0,0,126,37,0,0,128,37,0,0,130,37,0,0,130,37,0,0,136,37,0,0,136,37,0,0,140,37,0,0,140,37,0,0,144,37,0,0,150,37,0,0,156,37,0,0,158,37,0,0,162,37,0,0,168,37,0,0,170,37,0,0,170,37,0,0,170,37,0,0,170,37,0,0,176,37,0,0,182,37,0,0,182,37,0,0,182,37,0,0,186,37,0,0,188,37,0,0,188,37,0,0,188,37,0,0,188,37,0,0,190,37,0,0,190,37,0,0,190,37,0,0,190,37,0,0,192,37,0,0,196,37,0,0,196,37,0,0,200,37,0,0,202,37,0,0,202,37,0,0,206,37,0,0,208,37,0,0,208,37,0,0,208,37,0,0,208,37,0,0,212,37,0,0,212,37,0,0,214,37,0,0,218,37,0,0,218,37,0,0,222,37,0,0,226,37,0,0,226,37,0,0,226,37,0,0,228,37,0,0,228,37,0,0,228,37,0,0,230,37,0,0,236,37,0,0,238,37,0,0,240,37,0,0,244,37,0,0,244,37,0,0,244,37,0,0,250,37,0,0,250,37,0,0,250,37,0,0,250,37,0,0,254,37,0,0,254,37,0,0,4,38,0,0,6,38,0,0,6,38,0,0,6,38,0,0,10,38,0,0,12,38,0,0,14,38,0,0,14,38,0,0,14,38,0,0,14,38,0,0,14,38,0,0,18,38,0,0,18,38,0,0,24,38,0,0,24,38,0,0,24,38,0,0,24,38,0,0,24,38,0,0,26,38,0,0,26,38,0,0,30,38,0,0,30,38,0,0,36,38,0,0,36,38,0,0,36,38,0,0,36,38,0,0,38,38,0,0,40,38,0,0,40,38,0,0,40,38,0,0,42,38,0,0,42,38,0,0,42,38,0,0,48,38,0,0,52,38,0,0,52,38,0,0,52,38,0,0,54,38,0,0,54,38,0,0,60,38,0,0,60,38,0,0,64,38,0,0,64,38,0,0,64,38,0,0,64,38,0,0,66,38,0,0,66,38,0,0,68,38,0,0,68,38,0,0,70,38,0,0,72,38,0,0,72,38,0,0,78,38,0,0,78,38,0,0,78,38,0,0,80,38,0,0,80,38,0,0,80,38,0,0,80,38,0,0,80,38,0,0,80,38,0,0,82,38,0,0,82,38,0,0,82,38,0,0,84,38,0,0,90,38,0,0,96,38,0,0,96,38,0,0,96,38,0,0,96,38,0,0,96,38,0,0,98,38,0,0,98,38,0,0,98,38,0,0,102,38,0,0,106,38,0,0,114,38,0,0,116,38,0,0,124,38,0,0,130,38,0,0,132,38,0,0,134,38,0,0,136,38,0,0,138,38,0,0,140,38,0,0,142,38,0,0,142,38,0,0,142,38,0,0,142,38,0,0,142,38,0,0,142,38,0,0,142,38,0,0,142,38,0,0,142,38,0,0,142,38,0,0,142,38,0,0,142,38,0,0,144,38,0,0,144,38,0,0,144,38,0,0,148,38,0,0,148,38,0,0,150,38,0,0,154,38,0,0,158,38,0,0,162,38,0,0,162,38,0,0,166,38,0,0,168,38,0,0,174,38,0,0,174,38,0,0,174,38,0,0,176,38,0,0,178,38,0,0,178,38,0,0,178,38,0,0,178,38,0,0,178,38,0,0,178,38,0,0,178,38,0,0,178,38,0,0,188,38,0,0,198,38,0,0,202,38,0,0,206,38,0,0,208,38,0,0,208,38,0,0,208,38,0,0,210,38,0,0,212,38,0,0,212,38,0,0,220,38,0,0,226,38,0,0,228,38,0,0,234,38,0,0,234,38,0,0,234,38,0,0,234,38,0,0,234,38,0,0,234,38,0,0,234,38,0,0,236,38,0,0,236,38,0,0,240,38,0,0,242,38,0,0,244,38,0,0,248,38,0,0,254,38,0,0,254,38,0,0,2,39,0,0,2,39,0,0,2,39,0,0,14,39,0,0,14,39,0,0,14,39,0,0,18,39,0,0,18,39,0,0,20,39,0,0,30,39,0,0,32,39,0,0,32,39,0,0,34,39,0,0,34,39,0,0,34,39,0,0,38,39,0,0,38,39,0,0,44,39,0,0,44,39,0,0,46,39,0,0,48,39,0,0,48,39,0,0,48,39,0,0,48,39,0,0,50,39,0,0,54,39,0,0,54,39,0,0,58,39,0,0,60,39,0,0,62,39,0,0,66,39,0,0,66,39,0,0,68,39,0,0,68,39,0,0,68,39,0,0,76,39,0,0,76,39,0,0,78,39,0,0,78,39,0,0,82,39,0,0,88,39,0,0,88,39,0,0,88,39,0,0,88,39,0,0,90,39,0,0,90,39,0,0,90,39,0,0,92,39,0,0,92,39,0,0,96,39,0,0,98,39,0,0,106,39,0,0,108,39,0,0,110,39,0,0,110,39,0,0,110,39,0,0,114,39,0,0,126,39,0,0,126,39,0,0,126,39,0,0,128,39,0,0,128,39,0,0,128,39,0,0,128,39,0,0,128,39,0,0,132,39,0,0,132,39,0,0,132,39,0,0,134,39,0,0,134,39,0,0,136,39,0,0,136,39,0,0,136,39,0,0,136,39,0,0,140,39,0,0,144,39,0,0,152,39,0,0,154,39,0,0,154,39,0,0,154,39,0,0,154,39,0,0,154,39,0,0,158,39,0,0,158,39,0,0,160,39,0,0,164,39,0,0,164,39,0,0,164,39,0,0,170,39,0,0,176,39,0,0,178,39,0,0,180,39,0,0,186,39,0,0,192,39,0,0,192,39,0,0,198,39,0,0,200,39,0,0,202,39,0,0,202,39,0,0,214,39,0,0,216,39,0,0,216,39,0,0,216,39,0,0,216,39,0,0,216,39,0,0,220,39,0,0,222,39,0,0,222,39,0,0,226,39,0,0,230,39,0,0,232,39,0,0,232,39,0,0,232,39,0,0,238,39,0,0,238,39,0,0,238,39,0,0,238,39,0,0,238,39,0,0,240,39,0,0,242,39,0,0,242,39,0,0,248,39,0,0,250,39,0,0,254,39,0,0,254,39,0,0,254,39,0,0,0,40,0,0,0,40,0,0,0,40,0,0,2,40,0,0,4,40,0,0,6,40,0,0,14,40,0,0,18,40,0,0,22,40,0,0,22,40,0,0,22,40,0,0,26,40,0,0,26,40,0,0,30,40,0,0,30,40,0,0,30,40,0,0,40,40,0,0,46,40,0,0,46,40,0,0,46,40,0,0,50,40,0,0,50,40,0,0,50,40,0,0,50,40,0,0,52,40,0,0,56,40,0,0,56,40,0,0,58,40,0,0,60,40,0,0,66,40,0,0,66,40,0,0,66,40,0,0,70,40,0,0,70,40,0,0,72,40,0,0,78,40,0,0,78,40,0,0,78,40,0,0,86,40,0,0,86,40,0,0,86,40,0,0,94,40,0,0,96,40,0,0,100,40,0,0,108,40,0,0,108,40,0,0,108,40,0,0,108,40,0,0,112,40,0,0,114,40,0,0,124,40,0,0,124,40,0,0,124,40,0,0,132,40,0,0,134,40,0,0,134,40,0,0,134,40,0,0,134,40,0,0,140,40,0,0,140,40,0,0,142,40,0,0,142,40,0,0,142,40,0,0,142,40,0,0,142,40,0,0,142,40,0,0,146,40,0,0,150,40,0,0,152,40,0,0,154,40,0,0,154,40,0,0,154,40,0,0,154,40,0,0,154,40,0,0,154,40,0,0,154,40,0,0,160,40,0,0,160,40,0,0,160,40,0,0,160,40,0,0,166,40,0,0,166,40,0,0,166,40,0,0,172,40,0,0,172,40,0,0,172,40,0,0,172,40,0,0,172,40,0,0,178,40,0,0,180,40,0,0,180,40,0,0,186,40,0,0,186,40,0,0,188,40,0,0,190,40,0,0,194,40,0,0,196,40,0,0,196,40,0,0,196,40,0,0,196,40,0,0,196,40,0,0,200,40,0,0,202,40,0,0,202,40,0,0,202,40,0,0,208,40,0,0,208,40,0,0,208,40,0,0,214,40,0,0,218,40,0,0,218,40,0,0,222,40,0,0,222,40,0,0,224,40,0,0,224,40,0,0,230,40,0,0,234,40,0,0,240,40,0,0,244,40,0,0,250,40,0,0,252,40,0,0,252,40,0,0,252,40,0,0,2,41,0,0,2,41,0,0,2,41,0,0,8,41,0,0,10,41,0,0,14,41,0,0,14,41,0,0,22,41,0,0,22,41,0,0,26,41,0,0,26,41,0,0,26,41,0,0,40,41,0,0,46,41,0,0,50,41,0,0,50,41,0,0,50,41,0,0,52,41,0,0,56,41,0,0,60,41,0,0,60,41,0,0,60,41,0,0,60,41,0,0,60,41,0,0,64,41,0,0,64,41,0,0,66,41,0,0,66,41,0,0,72,41,0,0,72,41,0,0,74,41,0,0,74,41,0,0,74,41,0,0,76,41,0,0,78,41,0,0,80,41,0,0,80,41,0,0,80,41,0,0,86,41,0,0,86,41,0,0,86,41,0,0,106,41,0,0,110,41,0,0,114,41,0,0,116,41,0,0,120,41,0,0,120,41,0,0,120,41,0,0,120,41,0,0,120,41,0,0,124,41,0,0,126,41,0,0,126,41,0,0,126,41,0,0,128,41,0,0,140,41,0,0,140,41,0,0,140,41,0,0,142,41,0,0,146,41,0,0,146,41,0,0,156,41,0,0,158,41,0,0,162,41,0,0,162,41,0,0,168,41,0,0,170,41,0,0,172,41,0,0,172,41,0,0,178,41,0,0,178,41,0,0,178,41,0,0,178,41,0,0,180,41,0,0,180,41,0,0,180,41,0,0,188,41,0,0,192,41,0,0,198,41,0,0,200,41,0,0,202,41,0,0,202,41,0,0,208,41,0,0,208,41,0,0,210,41,0,0,212,41,0,0,218,41,0,0,228,41,0,0,230,41,0,0,230,41,0,0,232,41,0,0,232,41,0,0,232,41,0,0,234,41,0,0,236,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,0,42,0,0,0,42,0,0,2,42,0,0,2,42,0,0,2,42,0,0,2,42,0,0,2,42,0,0,4,42,0,0,8,42,0,0,8,42,0,0,8,42,0,0,8,42,0,0,8,42,0,0,8,42,0,0,12,42,0,0,12,42,0,0,18,42,0,0,18,42,0,0,18,42,0,0,18,42,0,0,20,42,0,0,24,42,0,0,24,42,0,0,26,42,0,0,30,42,0,0,32,42,0,0,40,42,0,0,40,42,0,0,40,42,0,0,46,42,0,0,58,42,0,0,58,42,0,0,58,42,0,0,62,42,0,0,62,42,0,0,62,42,0,0,62,42,0,0,62,42,0,0,64,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,72,42,0,0,76,42,0,0,80,42,0,0,82,42,0,0,82,42,0,0,82,42,0,0,92,42,0,0,92,42,0,0,94,42,0,0,94,42,0,0,94,42,0,0,96,42,0,0,96,42,0,0,100,42,0,0,100,42,0,0,102,42,0,0,102,42,0,0,104,42,0,0,104,42,0,0,110,42,0,0,110,42,0,0,110,42,0,0,112,42,0,0,112,42,0,0,112,42,0,0,114,42,0,0,114,42,0,0,114,42,0,0,114,42,0,0,114,42,0,0,116,42,0,0,120,42,0,0,124,42,0,0,124,42,0,0,124,42,0,0,124,42,0,0,124,42,0,0,124,42,0,0,124,42,0,0,124,42,0,0,132,42,0,0,136,42,0,0,138,42,0,0,142,42,0,0,150,42,0,0,150,42,0,0,156,42,0,0,164,42,0,0,164,42,0,0,168,42,0,0,170,42,0,0,170,42,0,0,170,42,0,0,170,42,0,0,172,42,0,0,172,42,0,0,176,42,0,0,178,42,0,0,180,42,0,0,180,42,0,0,180,42,0,0,184,42,0,0,184,42,0,0,188,42,0,0,188,42,0,0,190,42,0,0,196,42,0,0,196,42,0,0,198,42,0,0,202,42,0,0,202,42,0,0,204,42,0,0,210,42,0,0,210,42,0,0,210,42,0,0,210,42,0,0,212,42,0,0,212,42,0,0,222,42,0,0,222,42,0,0,222,42,0,0,226,42,0,0,226,42,0,0,226,42,0,0,232,42,0,0,232,42,0,0,232,42,0,0,232,42,0,0,234,42,0,0,236,42,0,0,240,42,0,0,246,42,0,0,248,42,0,0,248,42,0,0,250,42,0,0,254,42,0,0,254,42,0,0,254,42,0,0,254,42,0,0,0,43,0,0,0,43,0,0,0,43,0,0,0,43,0,0,0,43,0,0,2,43,0,0,8,43,0,0,12,43,0,0,18,43,0,0,20,43,0,0,20,43,0,0,22,43,0,0,24,43,0,0,24,43,0,0,24,43,0,0,24,43,0,0,28,43,0,0,32,43,0,0,32,43,0,0,32,43,0,0,38,43,0,0,42,43,0,0,42,43,0,0,46,43,0,0,50,43,0,0,50,43,0,0,50,43,0,0,52,43,0,0,52,43,0,0,52,43,0,0,56,43,0,0,56,43,0,0,60,43,0,0,64,43,0,0,70,43,0,0,70,43,0,0,74,43,0,0,74,43,0,0,74,43,0,0,74,43,0,0,78,43,0,0,78,43,0,0,78,43,0,0,78,43,0,0,78,43,0,0,82,43,0,0,82,43,0,0,84,43,0,0,86,43,0,0,86,43,0,0,88,43,0,0,94,43,0,0,96,43,0,0,102,43,0,0,102,43,0,0,102,43,0,0,106,43,0,0,106,43,0,0,108,43,0,0,112,43,0,0,112,43,0,0,112,43,0,0,122,43,0,0,124,43,0,0,124,43,0,0,124,43,0,0,124,43,0,0,126,43,0,0,128,43,0,0,130,43,0,0,130,43,0,0,134,43,0,0,134,43,0,0,134,43,0,0,136,43,0,0,138,43,0,0,138,43,0,0,140,43,0,0,140,43,0,0,140,43,0,0,144,43,0,0,148,43,0,0,150,43,0,0,150,43,0,0,150,43,0,0,150,43,0,0,162,43,0,0,162,43,0,0,162,43,0,0,162,43,0,0,174,43,0,0,176,43,0,0,182,43,0,0,182,43,0,0,182,43,0,0,184,43,0,0,188,43,0,0,194,43,0,0,194,43,0,0,194,43,0,0,194,43,0,0,200,43,0,0,200,43,0,0,202,43,0,0,202,43,0,0,204,43,0,0,206,43,0,0,214,43,0,0,218,43,0,0,218,43,0,0,218,43,0,0,224,43,0,0,224,43,0,0,224,43,0,0,228,43,0,0,228,43,0,0,228,43,0,0,228,43,0,0,228,43,0,0,230,43,0,0,230,43,0,0,234,43,0,0,234,43,0,0,234,43,0,0,234,43,0,0,234,43,0,0,238,43,0,0,238,43,0,0,238,43,0,0,238,43,0,0,250,43,0,0,250,43,0,0,254,43,0,0,254,43,0,0,0,44,0,0,0,44,0,0,2,44,0,0,2,44,0,0,2,44,0,0,4,44,0,0,4,44,0,0,6,44,0,0,10,44,0,0,10,44,0,0,16,44,0,0,16,44,0,0,20,44,0,0,20,44,0,0,20,44,0,0,22,44,0,0,22,44,0,0,22,44,0,0,22,44,0,0,26,44,0,0,26,44,0,0,26,44,0,0,30,44,0,0,30,44,0,0,30,44,0,0,30,44,0,0,30,44,0,0,30,44,0,0,36,44,0,0,44,44,0,0,46,44,0,0,46,44,0,0,50,44,0,0,52,44,0,0,54,44,0,0,66,44,0,0,66,44,0,0,66,44,0,0,72,44,0,0,72,44,0,0,72,44,0,0,72,44,0,0,74,44,0,0,76,44,0,0,76,44,0,0,78,44,0,0,78,44,0,0,84,44,0,0,84,44,0,0,84,44,0,0,84,44,0,0,86,44,0,0,88,44,0,0,88,44,0,0,88,44,0,0,88,44,0,0,96,44,0,0,100,44,0,0,102,44,0,0,102,44,0,0,102,44,0,0,102,44,0,0,104,44,0,0,104,44,0,0,104,44,0,0,104,44,0,0,104,44,0,0,106,44,0,0,118,44,0,0,118,44,0,0,122,44,0,0,126,44,0,0,134,44,0,0,140,44,0,0,140,44,0,0,146,44,0,0,148,44,0,0,148,44,0,0,148,44,0,0,150,44,0,0,154,44,0,0,154,44,0,0,154,44,0,0,158,44,0,0,158,44,0,0,158,44,0,0,158,44,0,0,158,44,0,0,162,44,0,0,164,44,0,0,174,44,0,0,176,44,0,0,176,44,0,0,180,44,0,0,182,44,0,0,184,44,0,0,186,44,0,0,186,44,0,0,188,44,0,0,188,44,0,0,192,44,0,0,192,44,0,0,196,44,0,0,204,44,0,0,208,44,0,0,208,44,0,0,210,44,0,0,210,44,0,0,210,44,0,0,210,44,0,0,210,44,0,0,210,44,0,0,210,44,0,0,212,44,0,0,212,44,0,0,212,44,0,0,212,44,0,0,212,44,0,0,214,44,0,0,214,44,0,0,218,44,0,0,218,44,0,0,218,44,0,0,222,44,0,0,228,44,0,0,228,44,0,0,230,44,0,0,236,44,0,0,236,44,0,0,238,44,0,0,238,44,0,0,238,44,0,0,240,44,0,0,242,44,0,0,242,44,0,0,242,44,0,0,244,44,0,0,244,44,0,0,246,44,0,0,246,44,0,0,246,44,0,0,246,44,0,0,246,44,0,0,252,44,0,0,254,44,0,0,0,45,0,0,0,45,0,0,6,45,0,0,12,45,0,0,12,45,0,0,16,45,0,0,16,45,0,0,16,45,0,0,20,45,0,0,20,45,0,0,20,45,0,0,20,45,0,0,22,45,0,0,22,45,0,0,24,45,0,0,26,45,0,0,28,45,0,0,28,45,0,0,28,45,0,0,28,45,0,0,28,45,0,0,30,45,0,0,34,45,0,0,36,45,0,0,36,45,0,0,36,45,0,0,44,45,0,0,48,45,0,0,48,45,0,0,48,45,0,0,48,45,0,0,50,45,0,0,56,45,0,0,56,45,0,0,56,45,0,0,58,45,0,0,64,45,0,0,64,45,0,0,66,45,0,0,68,45,0,0,72,45,0,0,72,45,0,0,72,45,0,0,72,45,0,0,74,45,0,0,74,45,0,0,76,45,0,0,78,45,0,0,78,45,0,0,78,45,0,0,84,45,0,0,84,45,0,0,86,45,0,0,90,45,0,0,92,45,0,0,96,45,0,0,100,45,0,0,106,45,0,0,106,45,0,0,108,45,0,0,108,45,0,0,108,45,0,0,108,45,0,0,108,45,0,0,108,45,0,0,110,45,0,0,114,45,0,0,116,45,0,0,116,45,0,0,122,45,0,0,122,45,0,0,126,45,0,0,126,45,0,0,126,45,0,0,126,45,0,0,128,45,0,0,128,45,0,0,128,45,0,0,128,45,0,0,128,45,0,0,130,45,0,0,132,45,0,0,132,45,0,0,132,45,0,0,132,45,0,0,132,45,0,0,136,45,0,0,138,45,0,0,140,45,0,0,142,45,0,0,142,45,0,0,142,45,0,0,142,45,0,0,142,45,0,0,150,45,0,0,150,45,0,0,150,45,0,0,150,45,0,0,154,45,0,0,154,45,0,0,154,45,0,0,158,45,0,0,158,45,0,0,158,45,0,0,158,45,0,0,158,45,0,0,158,45,0,0,160,45,0,0,160,45,0,0,162,45,0,0,162,45,0,0,162,45,0,0,166,45,0,0,176,45,0,0,180,45,0,0,182,45,0,0,184,45,0,0,194,45,0,0,198,45,0,0,206,45,0,0,208,45,0,0,210,45,0,0,210,45,0,0,214,45,0,0,222,45,0,0,222,45,0,0,224,45,0,0,230,45,0,0,230,45,0,0,232,45,0,0,238,45,0,0,238,45,0,0,242,45,0,0,242,45,0,0,242,45,0,0,244,45,0,0,248,45,0,0,254,45,0,0,254,45,0,0,254,45,0,0,2,46,0,0,2,46,0,0,2,46,0,0,2,46,0,0,6,46,0,0,6,46,0,0,6,46,0,0,6,46,0,0,6,46,0,0,6,46,0,0,8,46,0,0,10,46,0,0,12,46,0,0,12,46,0,0,12,46,0,0,12,46,0,0,20,46,0,0,30,46,0,0,34,46,0,0,34,46,0,0,42,46,0,0,42,46,0,0,46,46,0,0,46,46,0,0,46,46,0,0,46,46,0,0,48,46,0,0,52,46,0,0,54,46,0,0,54,46,0,0,56,46,0,0,58,46,0,0,58,46,0,0,60,46,0,0,62,46,0,0,74,46,0,0,76,46,0,0,78,46,0,0,78,46,0,0,78,46,0,0,82,46,0,0,84,46,0,0,86,46,0,0,92,46,0,0,102,46,0,0,106,46,0,0,106,46,0,0,112,46,0,0,112,46,0,0,112,46,0,0,112,46,0,0,112,46,0,0,112,46,0,0,116,46,0,0,116,46,0,0,116,46,0,0,116,46,0,0,116,46,0,0,120,46,0,0,122,46,0,0,122,46,0,0,128,46,0,0,132,46,0,0,132,46,0,0,132,46,0,0,134,46,0,0,134,46,0,0,134,46,0,0,134,46,0,0,134,46,0,0,136,46,0,0,138,46,0,0,142,46,0,0,142,46,0,0,142,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,154,46,0,0,156,46,0,0,158,46,0,0,158,46,0,0,158,46,0,0,160,46,0,0,162,46,0,0,168,46,0,0,168,46,0,0,176,46,0,0,186,46,0,0,186,46,0,0,188,46,0,0,190,46,0,0,190,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,204,46,0,0,212,46,0,0,214,46,0,0,214,46,0,0,216,46,0,0,218,46,0,0,220,46,0,0,220,46,0,0,220,46,0,0,222,46,0,0,222,46,0,0,234,46,0,0,234,46,0,0,234,46,0,0,234,46,0,0,240,46,0,0,240,46,0,0,242,46,0,0,246,46,0,0,246,46,0,0,248,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,254,46,0,0,254,46,0,0,254,46,0,0,4,47,0,0,8,47,0,0,8,47,0,0,8,47,0,0,10,47,0,0,10,47,0,0,10,47,0,0,10,47,0,0,10,47,0,0,14,47,0,0,16,47,0,0,16,47,0,0,18,47,0,0,18,47,0,0,24,47,0,0,24,47,0,0,28,47,0,0,28,47,0,0,30,47,0,0,30,47,0,0,30,47,0,0,32,47,0,0,32,47,0,0,36,47,0,0,36,47,0,0,36,47,0,0,36,47,0,0,38,47,0,0,38,47,0,0,38,47,0,0,38,47,0,0,40,47,0,0,46,47,0,0,50,47,0,0,52,47,0,0,52,47,0,0,54,47,0,0,54,47,0,0,54,47,0,0,54,47,0,0,54,47,0,0,54,47,0,0,56,47,0,0,56,47,0,0,56,47,0,0,60,47,0,0,60,47,0,0,64,47,0,0,70,47,0,0,72,47,0,0,72,47,0,0,72,47,0,0,72,47,0,0,72,47,0,0,74,47,0,0,76,47,0,0,76,47,0,0,76,47,0,0,78,47,0,0,78,47,0,0,84,47,0,0,90,47,0,0,92,47,0,0,94,47,0,0,96,47,0,0,98,47,0,0,102,47,0,0,106,47,0,0,106,47,0,0,106,47,0,0,108,47,0,0,116,47,0,0,116,47,0,0,118,47,0,0,118,47,0,0,118,47,0,0,118,47,0,0,118,47,0,0,118,47,0,0,118,47,0,0,120,47,0,0,120,47,0,0,120,47,0,0,130,47,0,0,132,47,0,0,132,47,0,0,136,47,0,0,140,47,0,0,146,47,0,0,146,47,0,0,146,47,0,0,146,47,0,0,154,47,0,0,156,47,0,0,156,47,0,0,156,47,0,0,158,47,0,0,158,47,0,0,158,47,0,0,160,47,0,0,162,47,0,0,162,47,0,0,162,47,0,0,166,47,0,0,168,47,0,0,172,47,0,0,174,47,0,0,176,47,0,0,176,47,0,0,180,47,0,0,180,47,0,0,182,47,0,0,182,47,0,0,184,47,0,0,184,47,0,0,184,47,0,0,186,47,0,0,186,47,0,0,186,47,0,0,186,47,0,0,186,47,0,0,186,47,0,0,186,47,0,0,186,47,0,0,194,47,0,0,200,47,0,0,200,47,0,0,200,47,0,0,202,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,208,47,0,0,210,47,0,0,210,47,0,0,216,47,0,0,220,47,0,0,224,47,0,0,228,47,0,0,228,47,0,0,232,47,0,0,232,47,0,0,232,47,0,0,232,47,0,0,232,47,0,0,232,47,0,0,238,47,0,0,240,47,0,0,240,47,0,0,242,47,0,0,242,47,0,0,242,47,0,0,244,47,0,0,248,47,0,0,250,47,0,0,252,47,0,0,254,47,0,0,24,48,0,0,26,48,0,0,36,48,0,0,40,48,0,0,48,48,0,0,50,48,0,0,50,48,0,0,50,48,0,0,52,48,0,0,52,48,0,0,54,48,0,0,56,48,0,0,64,48,0,0,70,48,0,0,72,48,0,0,72,48,0,0,72,48,0,0,72,48,0,0,74,48,0,0,74,48,0,0,84,48,0,0,84,48,0,0,84,48,0,0,84,48,0,0,86,48,0,0,100,48,0,0,104,48,0,0,106,48,0,0,106,48,0,0,114,48,0,0,114,48,0,0,114,48,0,0,114,48,0,0,114,48,0,0,114,48,0,0,114,48,0,0,118,48,0,0,120,48,0,0,120,48,0,0,122,48,0,0,122,48,0,0,124,48,0,0,128,48,0,0,128,48,0,0,130,48,0,0,136,48,0,0,140,48,0,0,140,48,0,0,142,48,0,0,142,48,0,0,146,48,0,0,148,48,0,0,148,48,0,0,148,48,0,0,150,48,0,0,152,48,0,0,152,48,0,0,154,48,0,0,160,48,0,0,166,48,0,0,166,48,0,0,168,48,0,0,168,48,0,0,172,48,0,0,182,48,0,0,182,48,0,0,182,48,0,0,182,48,0,0,186,48,0,0,186,48,0,0,188,48,0,0,190,48,0,0,200,48,0,0,200,48,0,0,200,48,0,0,200,48,0,0,200,48,0,0,200,48,0,0,204,48,0,0,204,48,0,0,216,48,0,0,218,48,0,0,220,48,0,0,220,48,0,0,220,48,0,0,220,48,0,0,224,48,0,0,226,48,0,0,232,48,0,0,236,48,0,0,240,48,0,0,242,48,0,0,242,48,0,0,242,48,0,0,242,48,0,0,242,48,0,0,242,48,0,0,246,48,0,0,248,48,0,0,248,48,0,0,250,48,0,0,250,48,0,0,250,48,0,0,4,49,0,0,4,49,0,0,4,49,0,0,10,49,0,0,10,49,0,0,14,49,0,0,14,49,0,0,16,49,0,0,16,49,0,0,16,49,0,0,16,49,0,0,18,49,0,0,20,49,0,0,24,49,0,0,26,49,0,0,28,49,0,0,32,49,0,0,32,49,0,0,32,49,0,0,32,49,0,0,32,49,0,0,34,49,0,0,38,49,0,0,40,49,0,0,42,49,0,0,42,49,0,0,42,49,0,0,42,49,0,0,42,49,0,0,42,49,0,0,42,49,0,0,42,49,0,0,48,49,0,0,50,49,0,0,50,49,0,0,50,49,0,0,50,49,0,0,50,49,0,0,52,49,0,0,52,49,0,0,58,49,0,0,60,49,0,0,60,49,0,0,60,49,0,0,60,49,0,0,62,49,0,0,62,49,0,0,62,49,0,0,62,49,0,0,74,49,0,0,74,49,0,0,80,49,0,0,80,49,0,0,80,49,0,0,82,49,0,0,82,49,0,0,84,49,0,0,84,49,0,0,84,49,0,0,84,49,0,0,84,49,0,0,86,49,0,0,86,49,0,0,88,49,0,0,92,49,0,0,92,49,0,0,94,49,0,0,106,49,0,0,108,49,0,0,108,49,0,0,108,49,0,0,110,49,0,0,110,49,0,0,112,49,0,0,116,49,0,0,116,49,0,0,118,49,0,0,118,49,0,0,118,49,0,0,118,49,0,0,120,49,0,0,120,49,0,0,122,49,0,0,128,49,0,0,128,49,0,0,128,49,0,0,128,49,0,0,128,49,0,0,128,49,0,0,128,49,0,0,132,49,0,0,132,49,0,0,132,49,0,0,134,49,0,0,134,49,0,0,134,49,0,0,136,49,0,0,140,49,0,0,142,49,0,0,144,49,0,0,144,49,0,0,148,49,0,0,148,49,0,0,154,49,0,0,154,49,0,0,156,49,0,0,156,49,0,0,156,49,0,0,158,49,0,0,158,49,0,0,158,49,0,0,162,49,0,0,164,49,0,0,166,49,0,0,166,49,0,0,166,49,0,0,170,49,0,0,170,49,0,0,172,49,0,0,172,49,0,0,174,49,0,0,174,49,0,0,174,49,0,0,174,49,0,0,174,49,0,0,178,49,0,0,178,49,0,0,186,49,0,0,186,49,0,0,186,49,0,0,188,49,0,0,196,49,0,0,196,49,0,0,196,49,0,0,196,49,0,0,196,49,0,0,198,49,0,0,198,49,0,0,200,49,0,0,204,49,0,0,204,49,0,0,204,49,0,0,206,49,0,0,206,49,0,0,206,49,0,0,208,49,0,0,216,49,0,0,216,49,0,0,218,49,0,0,220,49,0,0,220,49,0,0,226,49,0,0,226,49,0,0,226,49,0,0,230,49,0,0,230,49,0,0,234,49,0,0,240,49,0,0,240,49,0,0,242,49,0,0,242,49,0,0,244,49,0,0,246,49,0,0,248,49,0,0,250,49,0,0,250,49,0,0,4,50,0,0,8,50,0,0,8,50,0,0,8,50,0,0,8,50,0,0,8,50,0,0,8,50,0,0,12,50,0,0,12,50,0,0,18,50,0,0,18,50,0,0,30,50,0,0,30,50,0,0,30,50,0,0,32,50,0,0,38,50,0,0,38,50,0,0,40,50,0,0,44,50,0,0,44,50,0,0,44,50,0,0,44,50,0,0,46,50,0,0,50,50,0,0,50,50,0,0,62,50,0,0,62,50,0,0,62,50,0,0,62,50,0,0,72,50,0,0,72,50,0,0,76,50,0,0,80,50,0,0,84,50,0,0,84,50,0,0,86,50,0,0,88,50,0,0,88,50,0,0,90,50,0,0,90,50,0,0,90,50,0,0,90,50,0,0,96,50,0,0,96,50,0,0,96,50,0,0,96,50,0,0,102,50,0,0,106,50,0,0,106,50,0,0,106,50,0,0,106,50,0,0,108,50,0,0,108,50,0,0,108,50,0,0,120,50,0,0,124,50,0,0,134,50,0,0,134,50,0,0,134,50,0,0,134,50,0,0,134,50,0,0,136,50,0,0,136,50,0,0,136,50,0,0,136,50,0,0,136,50,0,0,136,50,0,0,138,50,0,0,142,50,0,0,142,50,0,0,144,50,0,0,144,50,0,0,146,50,0,0,146,50,0,0,146,50,0,0,150,50,0,0,156,50,0,0,164,50,0,0,164,50,0,0,164,50,0,0,164,50,0,0,164,50,0,0,164,50,0,0,168,50,0,0,168,50,0,0,168,50,0,0,170,50,0,0,172,50,0,0,172,50,0,0,172,50,0,0,172,50,0,0,174,50,0,0,176,50,0,0,176,50,0,0,180,50,0,0,182,50,0,0,182,50,0,0,186,50,0,0,186,50,0,0,186,50,0,0,192,50,0,0,192,50,0,0,192,50,0,0,196,50,0,0,196,50,0,0,206,50,0,0,208,50,0,0,212,50,0,0,212,50,0,0,212,50,0,0,212,50,0,0,214,50,0,0,214,50,0,0,220,50,0,0,222,50,0,0,226,50,0,0,226,50,0,0,226,50,0,0,226,50,0,0,228,50,0,0,228,50,0,0,228,50,0,0,228,50,0,0,232,50,0,0,240,50,0,0,244,50,0,0,244,50,0,0,244,50,0,0,244,50,0,0,246,50,0,0,246,50,0,0,246,50,0,0,248,50,0,0,250,50,0,0,252,50,0,0,254,50,0,0,254,50,0,0,254,50,0,0,254,50,0,0,0,51,0,0,2,51,0,0,2,51,0,0,4,51,0,0,6,51,0,0,8,51,0,0,8,51,0,0,8,51,0,0,14,51,0,0,14,51,0,0,14,51,0,0,18,51,0,0,18,51,0,0,20,51,0,0,24,51,0,0,24,51,0,0,26,51,0,0,26,51,0,0,38,51,0,0,38,51,0,0,38,51,0,0,40,51,0,0,50,51,0,0,50,51,0,0,50,51,0,0,50,51,0,0,50,51,0,0,50,51,0,0,56,51,0,0,56,51,0,0,56,51,0,0,56,51,0,0,56,51,0,0,56,51,0,0,56,51,0,0,58,51,0,0,58,51,0,0,58,51,0,0,70,51,0,0,72,51,0,0,72,51,0,0,72,51,0,0,74,51,0,0,78,51,0,0,78,51,0,0,78,51,0,0,80,51,0,0,80,51,0,0,80,51,0,0,80,51,0,0,82,51,0,0,88,51,0,0,88,51,0,0,100,51,0,0,100,51,0,0,102,51,0,0,102,51,0,0,104,51,0,0,104,51,0,0,104,51,0,0,110,51,0,0,110,51,0,0,110,51,0,0,110,51,0,0,110,51,0,0,112,51,0,0,112,51,0,0,112,51,0,0,114,51,0,0,114,51,0,0,114,51,0,0,114,51,0,0,116,51,0,0,122,51,0,0,124,51,0,0,124,51,0,0,124,51,0,0,126,51,0,0,130,51,0,0,132,51,0,0,138,51,0,0,138,51,0,0,140,51,0,0,142,51,0,0,144,51,0,0,152,51,0,0,152,51,0,0,156,51,0,0,156,51,0,0,156,51,0,0,158,51,0,0,162,51,0,0,162,51,0,0,164,51,0,0,164,51,0,0,168,51,0,0,168,51,0,0,170,51,0,0,176,51,0,0,176,51,0,0,176,51,0,0,182,51,0,0,182,51,0,0,190,51,0,0,192,51,0,0,194,51,0,0,202,51,0,0,204,51,0,0,206,51,0,0,208,51,0,0,208,51,0,0,210,51,0,0,210,51,0,0,216,51,0,0,216,51,0,0,224,51,0,0,224,51,0,0,224,51,0,0,224,51,0,0,228,51,0,0,230,51,0,0,230,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,238,51,0,0,240,51,0,0,240,51,0,0,240,51,0,0,242,51,0,0,244,51,0,0,248,51,0,0,248,51,0,0,254,51,0,0,254,51,0,0,0,52,0,0,4,52,0,0,4,52,0,0,4,52,0,0,4,52,0,0,6,52,0,0,16,52,0,0,16,52,0,0,18,52,0,0,18,52,0,0,18,52,0,0,24,52,0,0,24,52,0,0,24,52,0,0,24,52,0,0,24,52,0,0,30,52,0,0,32,52,0,0,32,52,0,0,34,52,0,0,36,52,0,0,42,52,0,0,42,52,0,0,42,52,0,0,46,52,0,0,50,52,0,0,52,52,0,0,52,52,0,0,70,52,0,0,76,52,0,0,76,52,0,0,78,52,0,0,84,52,0,0,86,52,0,0,88,52,0,0,88,52,0,0,88,52,0,0,88,52,0,0,90,52,0,0,90,52,0,0,94,52,0,0,94,52,0,0,96,52,0,0,96,52,0,0,96,52,0,0,96,52,0,0,96,52,0,0,96,52,0,0,98,52,0,0,98,52,0,0,100,52,0,0,100,52,0,0,100,52,0,0,100,52,0,0,102,52,0,0,102,52,0,0,104,52,0,0,108,52,0,0,108,52,0,0,108,52,0,0,110,52,0,0,110,52,0,0,110,52,0,0,112,52,0,0,112,52,0,0,112,52,0,0,112,52,0,0,112,52,0,0,120,52,0,0,120,52,0,0,124,52,0,0,124,52,0,0,130,52,0,0,132,52,0,0,134,52,0,0,136,52,0,0,138,52,0,0,138,52,0,0,138,52,0,0,138,52,0,0,144,52,0,0,144,52,0,0,148,52,0,0,156,52,0,0,164,52,0,0,164,52,0,0,164,52,0,0,164,52,0,0,164,52,0,0,164,52,0,0,166,52,0,0,166,52,0,0,166,52,0,0,172,52,0,0,172,52,0,0,172,52,0,0,176,52,0,0,176,52,0,0,182,52,0,0,184,52,0,0,192,52,0,0,192,52,0,0,192,52,0,0,192,52,0,0,192,52,0,0,192,52,0,0,194,52,0,0,200,52,0,0,202,52,0,0,202,52,0,0,202,52,0,0,202,52,0,0,206,52,0,0,206,52,0,0,208,52,0,0,210,52,0,0,212,52,0,0,212,52,0,0,212,52,0,0,212,52,0,0,212,52,0,0,212,52,0,0,212,52,0,0,212,52,0,0,212,52,0,0,220,52,0,0,222,52,0,0,226,52,0,0,226,52,0,0,226,52,0,0,226,52,0,0,228,52,0,0,228,52,0,0,230,52,0,0,230,52,0,0,230,52,0,0,234,52,0,0,238,52,0,0,238,52,0,0,246,52,0,0,248,52,0,0,248,52,0,0,248,52,0,0,248,52,0,0,250,52,0,0,254,52,0,0,254,52,0,0,254,52,0,0,4,53,0,0,8,53,0,0,8,53,0,0,8,53,0,0,8,53,0,0,16,53,0,0,18,53,0,0,18,53,0,0,20,53,0,0,22,53,0,0,22,53,0,0,22,53,0,0,24,53,0,0,24,53,0,0,26,53,0,0,26,53,0,0,26,53,0,0,26,53,0,0,28,53,0,0,28,53,0,0,28,53,0,0,40,53,0,0,42,53,0,0,46,53,0,0,50,53,0,0,52,53,0,0,52,53,0,0,52,53,0,0,54,53,0,0,54,53,0,0,58,53,0,0,62,53,0,0,62,53,0,0,72,53,0,0,74,53,0,0,74,53,0,0,74,53,0,0,76,53,0,0,80,53,0,0,80,53,0,0,80,53,0,0,84,53,0,0,90,53,0,0,96,53,0,0,100,53,0,0,102,53,0,0,104,53,0,0,106,53,0,0,120,53,0,0,122,53,0,0,122,53,0,0,122,53,0,0,124,53,0,0,128,53,0,0,128,53,0,0,128,53,0,0,132,53,0,0,132,53,0,0,132,53,0,0,132,53,0,0,132,53,0,0,142,53,0,0,142,53,0,0,146,53,0,0,148,53,0,0,148,53,0,0,156,53,0,0,156,53,0,0,162,53,0,0,164,53,0,0,178,53,0,0,180,53,0,0,182,53,0,0,184,53,0,0,184,53,0,0,184,53,0,0,188,53,0,0,188,53,0,0,188,53,0,0,192,53,0,0,192,53,0,0,192,53,0,0,196,53,0,0,196,53,0,0,198,53,0,0,198,53,0,0,204,53,0,0,204,53,0,0,208,53,0,0,208,53,0,0,208,53,0,0,210,53,0,0,214,53,0,0,216,53,0,0,216,53,0,0,220,53,0,0,222,53,0,0,222,53,0,0,226,53,0,0,228,53,0,0,232,53,0,0,232,53,0,0,232,53,0,0,238,53,0,0,238,53,0,0,238,53,0,0,244,53,0,0,244,53,0,0,244,53,0,0,244,53,0,0,244,53,0,0,246,53,0,0,250,53,0,0,252,53,0,0,252,53,0,0,6,54,0,0,8,54,0,0,18,54,0,0,18,54,0,0,18,54,0,0,22,54,0,0,30,54,0,0,30,54,0,0,30,54,0,0,32,54,0,0,34,54,0,0,34,54,0,0,38,54,0,0,38,54,0,0,38,54,0,0,44,54,0,0,52,54,0,0,54,54,0,0,54,54,0,0,60,54,0,0,62,54,0,0,62,54,0,0,64,54,0,0,70,54,0,0,74,54,0,0,76,54,0,0,76,54,0,0,82,54,0,0,86,54,0,0,88,54,0,0,88,54,0,0,90,54,0,0,90,54,0,0,92,54,0,0,92,54,0,0,92,54,0,0,92,54,0,0,96,54,0,0,98,54,0,0,98,54,0,0,102,54,0,0,108,54,0,0,108,54,0,0,118,54,0,0,118,54,0,0,118,54,0,0,120,54,0,0,124,54,0,0,126,54,0,0,134,54,0,0,134,54,0,0,134,54,0,0,134,54,0,0,134,54,0,0,140,54,0,0,140,54,0,0,140,54,0,0,140,54,0,0,140,54,0,0,144,54,0,0,144,54,0,0,150,54,0,0,156,54,0,0,156,54,0,0,162,54,0,0,162,54,0,0,162,54,0,0,162,54,0,0,168,54,0,0,168,54,0,0,168,54,0,0,168,54,0,0,170,54,0,0,178,54,0,0,178,54,0,0,178,54,0,0,182,54,0,0,182,54,0,0,186,54,0,0,186,54,0,0,188,54,0,0,190,54,0,0,192,54,0,0,198,54,0,0,200,54,0,0,202,54,0,0,206,54,0,0,206,54,0,0,208,54,0,0,210,54,0,0,212,54,0,0,212,54,0,0,212,54,0,0,212,54,0,0,212,54,0,0,212,54,0,0,214,54,0,0,220,54,0,0,226,54,0,0,226,54,0,0,226,54,0,0,226,54,0,0,228,54,0,0,228,54,0,0,228,54,0,0,228,54,0,0,228,54,0,0,232,54,0,0,232,54,0,0,234,54,0,0,234,54,0,0,234,54,0,0,244,54,0,0,248,54,0,0,248,54,0,0,252,54,0,0,2,55,0,0,2,55,0,0,6,55,0,0,6,55,0,0,6,55,0,0,6,55,0,0,6,55,0,0,8,55,0,0,8,55,0,0,8,55,0,0,14,55,0,0,18,55,0,0,18,55,0,0,18,55,0,0,22,55,0,0,22,55,0,0,32,55,0,0,36,55,0,0,42,55,0,0,44,55,0,0,52,55,0,0,52,55,0,0,52,55,0,0,54,55,0,0,54,55,0,0,54,55,0,0,54,55,0,0,54,55,0,0,54,55,0,0,56,55,0,0,56,55,0,0,62,55,0,0,66,55,0,0,68,55,0,0,70,55,0,0,70,55,0,0,72,55,0,0,74,55,0,0,76,55,0,0,76,55,0,0,80,55,0,0,88,55,0,0,92,55,0,0,94,55,0,0,100,55,0,0,100,55,0,0,104,55,0,0,104,55,0,0,108,55,0,0,108,55,0,0,108,55,0,0,108,55,0,0,114,55,0,0,116,55,0,0,128,55,0,0,128,55,0,0,128,55,0,0,128,55,0,0,134,55,0,0,134,55,0,0,136,55,0,0,140,55,0,0,140,55,0,0,144,55,0,0,144,55,0,0,148,55,0,0,148,55,0,0,150,55,0,0,156,55,0,0,156,55,0,0,156,55,0,0,156,55,0,0,160,55,0,0,162,55,0,0,162,55,0,0,162,55,0,0,166,55,0,0,166,55,0,0,166,55,0,0,166,55,0,0,178,55,0,0,178,55,0,0,178,55,0,0,180,55,0,0,180,55,0,0,180,55,0,0,184,55,0,0,188,55,0,0,192,55,0,0,192,55,0,0,192,55,0,0,192,55,0,0,192,55,0,0,192,55,0,0,192,55,0,0,196,55,0,0,198,55,0,0,198,55,0,0,204,55,0,0,208,55,0,0,208,55,0,0,208,55,0,0,208,55,0,0,208,55,0,0,210,55,0,0,212,55,0,0,212,55,0,0,212,55,0,0,212,55,0,0,214,55,0,0,218,55,0,0,226,55,0,0,228,55,0,0,228,55,0,0,228,55,0,0,234,55,0,0,234,55,0,0,234,55,0,0,244,55,0,0,244,55,0,0,244,55,0,0,244,55,0,0,244,55,0,0,248,55,0,0,4,56,0,0,4,56,0,0,6,56,0,0,6,56,0,0,10,56,0,0,10,56,0,0,12,56,0,0,12,56,0,0,14,56,0,0,16,56,0,0,18,56,0,0,22,56,0,0,24,56,0,0,24,56,0,0,32,56,0,0,36,56,0,0,36,56,0,0,36,56,0,0,38,56,0,0,42,56,0,0,52,56,0,0,56,56,0,0,58,56,0,0,64,56,0,0,64,56,0,0,64,56,0,0,66,56,0,0,66,56,0,0,66,56,0,0,70,56,0,0,70,56,0,0,76,56,0,0,76,56,0,0,78,56,0,0,84,56,0,0,88,56,0,0,92,56,0,0,92,56,0,0,94,56,0,0,96,56,0,0,98,56,0,0,98,56,0,0,100,56,0,0,100,56,0,0,100,56,0,0,104,56,0,0,104,56,0,0,104,56,0,0,104,56,0,0,104,56,0,0,104,56,0,0,104,56,0,0,104,56,0,0,108,56,0,0,114,56,0,0,120,56,0,0,122,56,0,0,122,56,0,0,124,56,0,0,124,56,0,0,126,56,0,0,126,56,0,0,126,56,0,0,126,56,0,0,126,56,0,0,130,56,0,0,130,56,0,0,130,56,0,0,130,56,0,0,134,56,0,0,142,56,0,0,144,56,0,0,144,56,0,0,144,56,0,0,146,56,0,0,148,56,0,0,148,56,0,0,148,56,0,0,148,56,0,0,148,56,0,0,148,56,0,0,148,56,0,0,154,56,0,0,156,56,0,0,156,56,0,0,162,56,0,0,162,56,0,0,168,56,0,0,170,56,0,0,170,56,0,0,172,56,0,0,182,56,0,0,182,56,0,0,186,56,0,0,188,56,0,0,190,56,0,0,190,56,0,0,192,56,0,0,192,56,0,0,198,56,0,0,198,56,0,0,198,56,0,0,202,56,0,0,206,56,0,0,206,56,0,0,206,56,0,0,206,56,0,0,210,56,0,0,218,56,0,0,218,56,0,0,220,56,0,0,222,56,0,0,222,56,0,0,224,56,0,0,226,56,0,0,228,56,0,0,232,56,0,0,232,56,0,0,234,56,0,0,234,56,0,0,238,56,0,0,238,56,0,0,238,56,0,0,240,56,0,0,242,56,0,0,244,56,0,0,244,56,0,0,244,56,0,0,244,56,0,0,246,56,0,0,246,56,0,0,246,56,0,0,250,56,0,0,250,56,0,0,250,56,0,0,250,56,0,0,250,56,0,0,0,57,0,0,2,57,0,0,4,57,0,0,4,57,0,0,6,57,0,0,6,57,0,0,8,57,0,0,10,57,0,0,10,57,0,0,10,57,0,0,10,57,0,0,12,57,0,0,14,57,0,0,18,57,0,0,20,57,0,0,20,57,0,0,20,57,0,0,22,57,0,0,22,57,0,0,22,57,0,0,22,57,0,0,22,57,0,0,22,57,0,0,22,57,0,0,24,57,0,0,24,57,0,0,26,57,0,0,26,57,0,0,26,57,0,0,26,57,0,0,28,57,0,0,28,57,0,0,28,57,0,0,28,57,0,0,28,57,0,0,28,57,0,0,32,57,0,0,36,57,0,0,36,57,0,0,36,57,0,0,40,57,0,0,40,57,0,0,42,57,0,0,42,57,0,0,42,57,0,0,42,57,0,0,48,57,0,0,50,57,0,0,54,57,0,0,58,57,0,0,60,57,0,0,60,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,66,57,0,0,66,57,0,0,68,57,0,0,76,57,0,0,76,57,0,0,76,57,0,0,82,57,0,0,86,57,0,0,88,57,0,0,92,57,0,0,92,57,0,0,94,57,0,0,96,57,0,0,96,57,0,0,104,57,0,0,104,57,0,0,108,57,0,0,114,57,0,0,126,57,0,0,130,57,0,0,130,57,0,0,132,57,0,0,132,57,0,0,134,57,0,0,136,57,0,0,142,57,0,0,146,57,0,0,146,57,0,0,146,57,0,0,150,57,0,0,152,57,0,0,152,57,0,0,152,57,0,0,152,57,0,0,152,57,0,0,152,57,0,0,152,57,0,0,152,57,0,0,154,57,0,0,156,57,0,0,160,57,0,0,160,57,0,0,162,57,0,0,162,57,0,0,168,57,0,0,168,57,0,0,172,57,0,0,172,57,0,0,172,57,0,0,172,57,0,0,172,57,0,0,180,57,0,0,182,57,0,0,182,57,0,0,182,57,0,0,182,57,0,0,184,57,0,0,184,57,0,0,184,57,0,0,186,57,0,0,186,57,0,0,186,57,0,0,190,57,0,0,190,57,0,0,192,57,0,0,192,57,0,0,192,57,0,0,194,57,0,0,196,57,0,0,198,57,0,0,198,57,0,0,198,57,0,0,198,57,0,0,198,57,0,0,198,57,0,0,198,57,0,0,198,57,0,0,200,57,0,0,202,57,0,0,204,57,0,0,212,57,0,0,212,57,0,0,212,57,0,0,212,57,0,0,222,57,0,0,222,57,0,0,222,57,0,0,222,57,0,0,222,57,0,0,224,57,0,0,234,57,0,0,234,57,0,0,234,57,0,0,240,57,0,0,240,57,0,0,244,57,0,0,246,57,0,0,248,57,0,0,248,57,0,0,252,57,0,0,0,58,0,0,10,58,0,0,10,58,0,0,10,58,0,0,10,58,0,0,10,58,0,0,12,58,0,0,12,58,0,0,14,58,0,0,16,58,0,0,20,58,0,0,22,58,0,0,22,58,0,0,22,58,0,0,24,58,0,0,24,58,0,0,24,58,0,0,28,58,0,0,28,58,0,0,32,58,0,0,32,58,0,0,36,58,0,0,38,58,0,0,42,58,0,0,42,58,0,0,48,58,0,0,48,58,0,0,48,58,0,0,48,58,0,0,48,58,0,0,50,58,0,0,50,58,0,0,56,58,0,0,56,58,0,0,58,58,0,0,58,58,0,0,58,58,0,0,62,58,0,0,62,58,0,0,62,58,0,0,64,58,0,0,64,58,0,0,68,58,0,0,68,58,0,0,74,58,0,0,76,58,0,0,76,58,0,0,78,58,0,0,78,58,0,0,78,58,0,0,78,58,0,0,80,58,0,0,84,58,0,0,84,58,0,0,84,58,0,0,88,58,0,0,90,58,0,0,92,58,0,0,92,58,0,0,92,58,0,0,94,58,0,0,94,58,0,0,96,58,0,0,106,58,0,0,112,58,0,0,112,58,0,0,116,58,0,0,124,58,0,0,130,58,0,0,132,58,0,0,132,58,0,0,132,58,0,0,136,58,0,0,142,58,0,0,150,58,0,0,152,58,0,0,152,58,0,0,154,58,0,0,154,58,0,0,154,58,0,0,158,58,0,0,158,58,0,0,158,58,0,0,162,58,0,0,164,58,0,0,166,58,0,0,166,58,0,0,166,58,0,0,166,58,0,0,166,58,0,0,166,58,0,0,166,58,0,0,168,58,0,0,170,58,0,0,170,58,0,0,170,58,0,0,170,58,0,0,170,58,0,0,174,58,0,0,174,58,0,0,176,58,0,0,178,58,0,0,178,58,0,0,178,58,0,0,182,58,0,0,182,58,0,0,184,58,0,0,184,58,0,0,186,58,0,0,190,58,0,0,190,58,0,0,194,58,0,0,194,58,0,0,198,58,0,0,198,58,0,0,200,58,0,0,200,58,0,0,200,58,0,0,202,58,0,0,206,58,0,0,206,58,0,0,206,58,0,0,206,58,0,0,206,58,0,0,208,58,0,0,210,58,0,0,218,58,0,0,218,58,0,0,226,58,0,0,226,58,0,0,230,58,0,0,230,58,0,0,234,58,0,0,236,58,0,0,236,58,0,0,238,58,0,0,238,58,0,0,244,58,0,0,244,58,0,0,248,58,0,0,248,58,0,0,248,58,0,0,248,58,0,0,248,58,0,0,252,58,0,0,252,58,0,0,252,58,0,0,4,59,0,0,8,59,0,0,10,59,0,0,12,59,0,0,12,59,0,0,20,59,0,0,20,59,0,0,28,59,0,0,32,59,0,0,32,59,0,0,38,59,0,0,46,59,0,0,48,59,0,0,52,59,0,0,56,59,0,0,56,59,0,0,58,59,0,0,58,59,0,0,58,59,0,0,60,59,0,0,70,59,0,0,70,59,0,0,72,59,0,0,74,59,0,0,74,59,0,0,76,59,0,0,76,59,0,0,80,59,0,0,82,59,0,0,82,59,0,0,86,59,0,0,88,59,0,0,88,59,0,0,88,59,0,0,88,59,0,0,90,59,0,0,90,59,0,0,90,59,0,0,90,59,0,0,90,59,0,0,90,59,0,0,92,59,0,0,92,59,0,0,92,59,0,0,94,59,0,0,94,59,0,0,94,59,0,0,94,59,0,0,102,59,0,0,110,59,0,0,110,59,0,0,110,59,0,0,110,59,0,0,114,59,0,0,118,59,0,0,118,59,0,0,120,59,0,0,120,59,0,0,120,59,0,0,122,59,0,0,122,59,0,0,122,59,0,0,122,59,0,0,122,59,0,0,122,59,0,0,128,59,0,0,140,59,0,0,140,59,0,0,148,59,0,0,150,59,0,0,150,59,0,0,150,59,0,0,150,59,0,0,152,59,0,0,154,59,0,0,154,59,0,0,154,59,0,0,154,59,0,0,154,59,0,0,158,59,0,0,158,59,0,0,160,59,0,0,162,59,0,0,164,59,0,0,164,59,0,0,166,59,0,0,168,59,0,0,170,59,0,0,172,59,0,0,174,59,0,0,180,59,0,0,182,59,0,0,186,59,0,0,186,59,0,0,186,59,0,0,188,59,0,0,194,59,0,0,194,59,0,0,194,59,0,0,198,59,0,0,198,59,0,0,198,59,0,0,200,59,0,0,200,59,0,0,206,59,0,0,208,59,0,0,208,59,0,0,210,59,0,0,210,59,0,0,216,59,0,0,216,59,0,0,218,59,0,0,222,59,0,0,222,59,0,0,224,59,0,0,228,59,0,0,232,59,0,0,232,59,0,0,234,59,0,0,234,59,0,0,234,59,0,0,236,59,0,0,236,59,0,0,236,59,0,0,236,59,0,0,242,59,0,0,244,59,0,0,246,59,0,0,246,59,0,0,246,59,0,0,248,59,0,0,248,59,0,0,248,59,0,0,248,59,0,0,0,60,0,0,2,60,0,0,2,60,0,0,2,60,0,0,2,60,0,0,8,60,0,0,8,60,0,0,8,60,0,0,10,60,0,0,10,60,0,0,10,60,0,0,12,60,0,0,12,60,0,0,12,60,0,0,16,60,0,0,16,60,0,0,16,60,0,0,16,60,0,0,16,60,0,0,16,60,0,0,24,60,0,0,24,60,0,0,24,60,0,0,24,60,0,0,24,60,0,0,24,60,0,0,24,60,0,0,26,60,0,0,38,60,0,0,44,60,0,0,48,60,0,0,62,60,0,0,62,60,0,0,66,60,0,0,66,60,0,0,72,60,0,0,72,60,0,0,78,60,0,0,78,60,0,0,78,60,0,0,78,60,0,0,78,60,0,0,82,60,0,0,82,60,0,0,82,60,0,0,82,60,0,0,84,60,0,0,84,60,0,0,84,60,0,0,90,60,0,0,90,60,0,0,94,60,0,0,94,60,0,0,94,60,0,0,102,60,0,0,106,60,0,0,110,60,0,0,116,60,0,0,120,60,0,0,122,60,0,0,122,60,0,0,128,60,0,0,132,60,0,0,132,60,0,0,138,60,0,0,140,60,0,0,146,60,0,0,148,60,0,0,154,60,0,0,154,60,0,0,154,60,0,0,156,60,0,0,156,60,0,0,158,60,0,0,162,60,0,0,172,60,0,0,172,60,0,0,176,60,0,0,178,60,0,0,178,60,0,0,178,60,0,0,184,60,0,0,192,60,0,0,194,60,0,0,196,60,0,0,196,60,0,0,196,60,0,0,196,60,0,0,196,60,0,0,196,60,0,0,200,60,0,0,204,60,0,0,206,60,0,0,212,60,0,0,212,60,0,0,214,60,0,0,214,60,0,0,220,60,0,0,220,60,0,0,220,60,0,0,220,60,0,0,228,60,0,0,230,60,0,0,230,60,0,0,234,60,0,0,234,60,0,0,234,60,0,0,234,60,0,0,234,60,0,0,236,60,0,0,236,60,0,0,236,60,0,0,236,60,0,0,240,60,0,0,244,60,0,0,244,60,0,0,244,60,0,0,244,60,0,0,252,60,0,0,254,60,0,0,254,60,0,0,254,60,0,0,0,61,0,0,2,61,0,0,4,61,0,0,4,61,0,0,10,61,0,0,10,61,0,0,10,61,0,0,10,61,0,0,10,61,0,0,10,61,0,0,14,61,0,0,14,61,0,0,14,61,0,0,14,61,0,0,18,61,0,0,18,61,0,0,18,61,0,0,22,61,0,0,22,61,0,0,22,61,0,0,26,61,0,0,26,61,0,0,26,61,0,0,28,61,0,0,28,61,0,0,28,61,0,0,30,61,0,0,34,61,0,0,36,61,0,0,36,61,0,0,36,61,0,0,42,61,0,0,42,61,0,0,42,61,0,0,42,61,0,0,42,61,0,0,52,61,0,0,52,61,0,0,60,61,0,0,60,61,0,0,60,61,0,0,66,61,0,0,68,61,0,0,68,61,0,0,68,61,0,0,68,61,0,0,68,61,0,0,68,61,0,0,68,61,0,0,68,61,0,0,68,61,0,0,70,61,0,0,70,61,0,0,76,61,0,0,80,61,0,0,84,61,0,0,86,61,0,0,86,61,0,0,88,61,0,0,88,61,0,0,88,61,0,0,92,61,0,0,98,61,0,0,98,61,0,0,102,61,0,0,106,61,0,0,108,61,0,0,110,61,0,0,110,61,0,0,110,61,0,0,112,61,0,0,114,61,0,0,114,61,0,0,114,61,0,0,114,61,0,0,114,61,0,0,114,61,0,0,114,61,0,0,114,61,0,0,114,61,0,0,114,61,0,0,116,61,0,0,116,61,0,0,118,61,0,0,122,61,0,0,126,61,0,0,126,61,0,0,126,61,0,0,132,61,0,0,134,61,0,0,136,61,0,0,140,61,0,0,142,61,0,0,144,61,0,0,144,61,0,0,146,61,0,0,148,61,0,0,148,61,0,0,148,61,0,0,148,61,0,0,148,61,0,0,154,61,0,0,158,61,0,0,168,61,0,0,168,61,0,0,172,61,0,0,172,61,0,0,178,61,0,0,180,61,0,0,180,61,0,0,180,61,0,0,182,61,0,0,184,61,0,0,184,61,0,0,186,61,0,0,186,61,0,0,192,61,0,0,192,61,0,0,192,61,0,0,194,61,0,0,194,61,0,0,194,61,0,0,194,61,0,0,198,61,0,0,198,61,0,0,202,61,0,0,204,61,0,0,210,61,0,0,232,61,0,0,234,61,0,0,238,61,0,0,238,61,0,0,244,61,0,0,244,61,0,0,244,61,0,0,244,61,0,0,244,61,0,0,252,61,0,0,0,62,0,0,2,62,0,0,2,62,0,0,4,62,0,0,6,62,0,0,8,62,0,0,8,62,0,0,10,62,0,0,10,62,0,0,10,62,0,0,14,62,0,0,14,62,0,0,16,62,0,0,20,62,0,0,22,62,0,0,22,62,0,0,30,62,0,0,30,62,0,0,30,62,0,0,32,62,0,0,36,62,0,0,38,62,0,0,38,62,0,0,38,62,0,0,40,62,0,0,50,62,0,0,54,62,0,0,64,62,0,0,68,62,0,0,68,62,0,0,80,62,0,0,84,62,0,0,86,62,0,0,88,62,0,0,88,62,0,0,88,62,0,0,88,62,0,0,90,62,0,0,90,62,0,0,92,62,0,0,92,62,0,0,92,62,0,0,92,62,0,0,92,62,0,0,94,62,0,0,104,62,0,0,104,62,0,0,104,62,0,0,108,62,0,0,110,62,0,0,110,62,0,0,110,62,0,0,112,62,0,0,116,62,0,0,128,62,0,0,132,62,0,0,136,62,0,0,136,62,0,0,136,62,0,0,138,62,0,0,138,62,0,0,140,62,0,0,142,62,0,0,142,62,0,0,144,62,0,0,144,62,0,0,144,62,0,0,148,62,0,0,148,62,0,0,148,62,0,0,148,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,160,62,0,0,160,62,0,0,162,62,0,0,164,62,0,0,166,62,0,0,172,62,0,0,172,62,0,0,172,62,0,0,172,62,0,0,178,62,0,0,178,62,0,0,178,62,0,0,178,62,0,0,182,62,0,0,184,62,0,0,184,62,0,0,188,62,0,0,188,62,0,0,190,62,0,0,190,62,0,0,190,62,0,0,190,62,0,0,196,62,0,0,196,62,0,0,196,62,0,0,198,62,0,0,202,62,0,0,206,62,0,0,206,62,0,0,208,62,0,0,210,62,0,0,210,62,0,0,210,62,0,0,210,62,0,0,210,62,0,0,214,62,0,0,214,62,0,0,216,62,0,0,218,62,0,0,224,62,0,0,226,62,0,0,226,62,0,0,232,62,0,0,232,62,0,0,234,62,0,0,234,62,0,0,234,62,0,0,234,62,0,0,234,62,0,0,240,62,0,0,250,62,0,0,252,62,0,0,0,63,0,0,0,63,0,0,0,63,0,0,0,63,0,0,0,63,0,0,4,63,0,0,6,63,0,0,6,63,0,0,6,63,0,0,14,63,0,0,18,63,0,0,22,63,0,0,22,63,0,0,28,63,0,0,30,63,0,0,34,63,0,0,34,63,0,0,36,63,0,0,36,63,0,0,40,63,0,0,44,63,0,0,46,63,0,0,46,63,0,0,46,63,0,0,54,63,0,0,54,63,0,0,54,63,0,0,54,63,0,0,54,63,0,0,54,63,0,0,62,63,0,0,62,63,0,0,62,63,0,0,64,63,0,0,68,63,0,0,68,63,0,0,70,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,78,63,0,0,78,63,0,0,80,63,0,0,82,63,0,0,82,63,0,0,84,63,0,0,84,63,0,0,84,63,0,0,90,63,0,0,90,63,0,0,92,63,0,0,92,63,0,0,94,63,0,0,98,63,0,0,98,63,0,0,98,63,0,0,106,63,0,0,110,63,0,0,112,63,0,0,112,63,0,0,112,63,0,0,112,63,0,0,116,63,0,0,116,63,0,0,116,63,0,0,116,63,0,0,116,63,0,0,116,63,0,0,118,63,0,0,120,63,0,0,120,63,0,0,120,63,0,0,120,63,0,0,120,63,0,0,126,63,0,0,126,63,0,0,128,63,0,0,128,63,0,0,128,63,0,0,130,63,0,0,130,63,0,0,132,63,0,0,134,63,0,0,136,63,0,0,144,63,0,0,146,63,0,0,146,63,0,0,152,63,0,0,156,63,0,0,162,63,0,0,166,63,0,0,168,63,0,0,168,63,0,0,168,63,0,0,170,63,0,0,170,63,0,0,176,63,0,0,182,63,0,0,182,63,0,0,186,63,0,0,188,63,0,0,188,63,0,0,188,63,0,0,202,63,0,0,202,63,0,0,202,63,0,0,204,63,0,0,204,63,0,0,204,63,0,0,204,63,0,0,204,63,0,0,208,63,0,0,208,63,0,0,210,63,0,0,220,63,0,0,220,63,0,0,222,63,0,0,222,63,0,0,222,63,0,0,222,63,0,0,222,63,0,0,224,63,0,0,226,63,0,0,232,63,0,0,234,63,0,0,238,63,0,0,238,63,0,0,244,63,0,0,244,63,0,0,250,63,0,0,252,63,0,0,252,63,0,0,252,63,0,0,0,64,0,0,2,64,0,0,4,64,0,0,4,64,0,0,8,64,0,0,8,64,0,0,8,64,0,0,8,64,0,0,12,64,0,0,12,64,0,0,12,64,0,0,12,64,0,0,16,64,0,0,16,64,0,0,18,64,0,0,18,64,0,0,20,64,0,0,20,64,0,0,22,64,0,0,28,64,0,0,32,64,0,0,32,64,0,0,34,64,0,0,36,64,0,0,40,64,0,0,44,64,0,0,44,64,0,0,46,64,0,0,46,64,0,0,48,64,0,0,48,64,0,0,50,64,0,0,50,64,0,0,50,64,0,0,52,64,0,0,56,64,0,0,56,64,0,0,60,64,0,0,60,64,0,0,60,64,0,0,60,64,0,0,66,64,0,0,66,64,0,0,66,64,0,0,66,64,0,0,66,64,0,0,68,64,0,0,68,64,0,0,70,64,0,0,80,64,0,0,86,64,0,0,86,64,0,0,86,64,0,0,86,64,0,0,88,64,0,0,88,64,0,0,88,64,0,0,90,64,0,0,90,64,0,0,90,64,0,0,94,64,0,0,94,64,0,0,94,64,0,0,96,64,0,0,96,64,0,0,102,64,0,0,106,64,0,0,106,64,0,0,108,64,0,0,108,64,0,0,110,64,0,0,110,64,0,0,112,64,0,0,112,64,0,0,112,64,0,0,112,64,0,0,112,64,0,0,112,64,0,0,114,64,0,0,114,64,0,0,114,64,0,0,114,64,0,0,116,64,0,0,116,64,0,0,116,64,0,0,116,64,0,0,118,64,0,0,118,64,0,0,118,64,0,0,122,64,0,0,126,64,0,0,134,64,0,0,138,64,0,0,144,64,0,0,148,64,0,0,148,64,0,0,148,64,0,0,148,64,0,0,150,64,0,0,152,64,0,0,152,64,0,0,154,64,0,0,160,64,0,0,160,64,0,0,162,64,0,0,162,64,0,0,164,64,0,0,168,64,0,0,168,64,0,0,168,64,0,0,168,64,0,0,172,64,0,0,172,64,0,0,172,64,0,0,172,64,0,0,172,64,0,0,174,64,0,0,174,64,0,0,174,64,0,0,176,64,0,0,176,64,0,0,178,64,0,0,178,64,0,0,182,64,0,0,186,64,0,0,194,64,0,0,194,64,0,0,194,64,0,0,196,64,0,0,206,64,0,0,206,64,0,0,210,64,0,0,214,64,0,0,218,64,0,0,222,64,0,0,224,64,0,0,224,64,0,0,226,64,0,0,226,64,0,0,226,64,0,0,226,64,0,0,228,64,0,0,228,64,0,0,228,64,0,0,228,64,0,0,228,64,0,0,228,64,0,0,230,64,0,0,232,64,0,0,232,64,0,0,232,64,0,0,232,64,0,0,232,64,0,0,232,64,0,0,236,64,0,0,238,64,0,0,240,64,0,0,250,64,0,0,252,64,0,0,252,64,0,0,254,64,0,0,254,64,0,0,254,64,0,0,0,65,0,0,4,65,0,0,6,65,0,0,8,65,0,0,12,65,0,0,24,65,0,0,28,65,0,0,36,65,0,0,36,65,0,0,36,65,0,0,36,65,0,0,36,65,0,0,40,65,0,0,40,65,0,0,42,65,0,0,44,65,0,0,46,65,0,0,50,65,0,0,50,65,0,0,52,65,0,0,62,65,0,0,62,65,0,0,68,65,0,0,68,65,0,0,70,65,0,0,78,65,0,0,78,65,0,0,78,65,0,0,82,65,0,0,82,65,0,0,82,65,0,0,84,65,0,0,92,65,0,0,94,65,0,0,94,65,0,0,94,65,0,0,104,65,0,0,104,65,0,0,106,65,0,0,106,65,0,0,108,65,0,0,110,65,0,0,116,65,0,0,122,65,0,0,124,65,0,0,124,65,0,0,128,65,0,0,128,65,0,0,128,65,0,0,130,65,0,0,132,65,0,0,142,65,0,0,142,65,0,0,142,65,0,0,142,65,0,0,142,65,0,0,142,65,0,0,154,65,0,0,154,65,0,0,154,65,0,0,154,65,0,0,156,65,0,0,162,65,0,0,162,65,0,0,162,65,0,0,162,65,0,0,162,65,0,0,162,65,0,0,164,65,0,0,168,65,0,0,174,65,0,0,176,65,0,0,176,65,0,0,180,65,0,0,180,65,0,0,180,65,0,0,180,65,0,0,182,65,0,0,182,65,0,0,186,65,0,0,186,65,0,0,188,65,0,0,190,65,0,0,194,65,0,0,194,65,0,0,194,65,0,0,194,65,0,0,194,65,0,0,194,65,0,0,198,65,0,0,200,65,0,0,200,65,0,0,204,65,0,0,206,65,0,0,206,65,0,0,214,65,0,0,216,65,0,0,216,65,0,0,216,65,0,0,216,65,0,0,216,65,0,0,218,65,0,0,232,65,0,0,232,65,0,0,232,65,0,0,238,65,0,0,242,65,0,0,242,65,0,0,242,65,0,0,242,65,0,0,244,65,0,0,254,65,0,0,254,65,0,0,0,66,0,0,0,66,0,0,0,66,0,0,4,66,0,0,8,66,0,0,14,66,0,0,14,66,0,0,14,66,0,0,14,66,0,0,14,66,0,0,16,66,0,0,18,66,0,0,18,66,0,0,18,66,0,0,18,66,0,0,18,66,0,0,18,66,0,0,18,66,0,0,18,66,0,0,22,66,0,0,22,66,0,0,22,66,0,0,22,66,0,0,22,66,0,0,22,66,0,0,22,66,0,0,22,66,0,0,26,66,0,0,26,66,0,0,26,66,0,0,26,66,0,0,32,66,0,0,34,66,0,0,36,66,0,0,40,66,0,0,40,66,0,0,50,66,0,0,52,66,0,0,58,66,0,0,58,66,0,0,60,66,0,0,66,66,0,0,70,66,0,0,76,66,0,0,76,66,0,0,78,66,0,0,78,66,0,0,78,66,0,0,78,66,0,0,84,66,0,0,84,66,0,0,84,66,0,0,84,66,0,0,84,66,0,0,84,66,0,0,84,66,0,0,90,66,0,0,92,66,0,0,92,66,0,0,94,66,0,0,98,66,0,0,98,66,0,0,98,66,0,0,98,66,0,0,98,66,0,0,100,66,0,0,106,66,0,0,106,66,0,0,106,66,0,0,110,66,0,0,110,66,0,0,110,66,0,0,110,66,0,0,112,66,0,0,112,66,0,0,114,66,0,0,114,66,0,0,118,66,0,0,118,66,0,0,120,66,0,0,120,66,0,0,120,66,0,0,122,66,0,0,124,66,0,0,134,66,0,0,134,66,0,0,138,66,0,0,138,66,0,0,140,66,0,0,140,66,0,0,140,66,0,0,142,66,0,0,142,66,0,0,142,66,0,0,144,66,0,0,158,66,0,0,158,66,0,0,162,66,0,0,162,66,0,0,164,66,0,0,164,66,0,0,164,66,0,0,164,66,0,0,164,66,0,0,166,66,0,0,170,66,0,0,170,66,0,0,170,66,0,0,176,66,0,0,176,66,0,0,176,66,0,0,178,66,0,0,180,66,0,0,184,66,0,0,184,66,0,0,186,66,0,0,186,66,0,0,190,66,0,0,196,66,0,0,198,66,0,0,202,66,0,0,202,66,0,0,202,66,0,0,202,66,0,0,202,66,0,0,212,66,0,0,214,66,0,0,220,66,0,0,220,66,0,0,228,66,0,0,228,66,0,0,230,66,0,0,232,66,0,0,232,66,0,0,234,66,0,0,236,66,0,0,242,66,0,0,244,66,0,0,244,66,0,0,248,66,0,0,248,66,0,0,250,66,0,0,250,66,0,0,254,66,0,0,0,67,0,0,6,67,0,0,6,67,0,0,16,67,0,0,16,67,0,0,18,67,0,0,20,67,0,0,20,67,0,0,22,67,0,0,22,67,0,0,22,67,0,0,22,67,0,0,24,67,0,0,24,67,0,0,28,67,0,0,34,67,0,0,34,67,0,0,40,67,0,0,44,67,0,0,44,67,0,0,48,67,0,0,50,67,0,0,50,67,0,0,54,67,0,0,58,67,0,0,62,67,0,0,62,67,0,0,62,67,0,0,62,67,0,0,66,67,0,0,74,67,0,0,74,67,0,0,74,67,0,0,74,67,0,0,74,67,0,0,76,67,0,0,78,67,0,0,78,67,0,0,80,67,0,0,86,67,0,0,86,67,0,0,86,67,0,0,88,67,0,0,90,67,0,0,90,67,0,0,90,67,0,0,94,67,0,0,94,67,0,0,98,67,0,0,98,67,0,0,102,67,0,0,104,67,0,0,108,67,0,0,108,67,0,0,108,67,0,0,112,67,0,0,112,67,0,0,112,67,0,0,112,67,0,0,112,67,0,0,112,67,0,0,112,67,0,0,112,67,0,0,114,67,0,0,120,67,0,0,126,67,0,0,130,67,0,0,130,67,0,0,134,67,0,0,142,67,0,0,146,67,0,0,146,67,0,0,148,67,0,0,150,67,0,0,152,67,0,0,152,67,0,0,152,67,0,0,152,67,0,0,154,67,0,0,154,67,0,0,154,67,0,0,154,67,0,0,154,67,0,0,156,67,0,0,156,67,0,0,172,67,0,0,172,67,0,0,172,67,0,0,172,67,0,0,172,67,0,0,180,67,0,0,180,67,0,0,180,67,0,0,180,67,0,0,186,67,0,0,186,67,0,0,186,67,0,0,186,67,0,0,194,67,0,0,194,67,0,0,194,67,0,0,200,67,0,0,202,67,0,0,212,67,0,0,212,67,0,0,214,67,0,0,220,67,0,0,220,67,0,0,220,67,0,0,226,67,0,0,226,67,0,0,226,67,0,0,230,67,0,0,232,67,0,0,234,67,0,0,234,67,0,0,234,67,0,0,236,67,0,0,236,67,0,0,236,67,0,0,236,67,0,0,238,67,0,0,238,67,0,0,238,67,0,0,240,67,0,0,240,67,0,0,240,67,0,0,244,67,0,0,246,67,0,0,246,67,0,0,252,67,0,0,252,67,0,0,252,67,0,0,252,67,0,0,252,67,0,0,252,67,0,0,254,67,0,0,0,68,0,0,0,68,0,0,2,68,0,0,2,68,0,0,2,68,0,0,4,68,0,0,4,68,0,0,6,68,0,0,14,68,0,0,16,68,0,0,22,68,0,0,26,68,0,0,30,68,0,0,32,68,0,0,34,68,0,0,44,68,0,0,44,68,0,0,46,68,0,0,54,68,0,0,54,68,0,0,58,68,0,0,58,68,0,0,58,68,0,0,64,68,0,0,66,68,0,0,80,68,0,0,80,68,0,0,80,68,0,0,80,68,0,0,80,68,0,0,86,68,0,0,86,68,0,0,86,68,0,0,86,68,0,0,86,68,0,0,86,68,0,0,86,68,0,0,88,68,0,0,90,68,0,0,96,68,0,0,96,68,0,0,98,68,0,0,104,68,0,0,106,68,0,0,108,68,0,0,110,68,0,0,110,68,0,0,112,68,0,0,118,68,0,0,118,68,0,0,118,68,0,0,120,68,0,0,120,68,0,0,122,68,0,0,122,68,0,0,122,68,0,0,126,68,0,0,126,68,0,0,128,68,0,0,128,68,0,0,130,68,0,0,130,68,0,0,130,68,0,0,130,68,0,0,130,68,0,0,130,68,0,0,134,68,0,0,134,68,0,0,134,68,0,0,138,68,0,0,138,68,0,0,148,68,0,0,148,68,0,0,148,68,0,0,148,68,0,0,148,68,0,0,148,68,0,0,148,68,0,0,148,68,0,0,156,68,0,0,156,68,0,0,166,68,0,0,166,68,0,0,166,68,0,0,166,68,0,0,166,68,0,0,166,68,0,0,166,68,0,0,168,68,0,0,172,68,0,0,172,68,0,0,174,68,0,0,174,68,0,0,178,68,0,0,182,68,0,0,184,68,0,0,192,68,0,0,192,68,0,0,200,68,0,0,200,68,0,0,200,68,0,0,208,68,0,0,208,68,0,0,208,68,0,0,208,68,0,0,210,68,0,0,210,68,0,0,216,68,0,0,222,68,0,0,226,68,0,0,226,68,0,0,226,68,0,0,228,68,0,0,230,68,0,0,230,68,0,0,230,68,0,0,230,68,0,0,230,68,0,0,230,68,0,0,238,68,0,0,240,68,0,0,248,68,0,0,252,68,0,0,4,69,0,0,4,69,0,0,4,69,0,0,4,69,0,0,4,69,0,0,6,69,0,0,6,69,0,0,6,69,0,0,10,69,0,0,12,69,0,0,12,69,0,0,12,69,0,0,14,69,0,0,16,69,0,0,26,69,0,0,26,69,0,0,28,69,0,0,28,69,0,0,36,69,0,0,36,69,0,0,36,69,0,0,36,69,0,0,38,69,0,0,38,69,0,0,42,69,0,0,44,69,0,0,50,69,0,0,52,69,0,0,56,69,0,0,60,69,0,0,60,69,0,0,60,69,0,0,60,69,0,0,60,69,0,0,60,69,0,0,64,69,0,0,66,69,0,0,66,69,0,0,68,69,0,0,68,69,0,0,68,69,0,0,70,69,0,0,70,69,0,0,76,69,0,0,76,69,0,0,78,69,0,0,80,69,0,0,82,69,0,0,84,69,0,0,84,69,0,0,86,69,0,0,86,69,0,0,86,69,0,0,88,69,0,0,90,69,0,0,92,69,0,0,94,69,0,0,98,69,0,0,100,69,0,0,104,69,0,0,106,69,0,0,110,69,0,0,110,69,0,0,120,69,0,0,120,69,0,0,120,69,0,0,120,69,0,0,122,69,0,0,124,69,0,0,128,69,0,0,128,69,0,0,130,69,0,0,142,69,0,0,142,69,0,0,142,69,0,0,158,69,0,0,160,69,0,0,160,69,0,0,162,69,0,0,162,69,0,0,164,69,0,0,170,69,0,0,174,69,0,0,176,69,0,0,178,69,0,0,184,69,0,0,184,69,0,0,184,69,0,0,184,69,0,0,184,69,0,0,190,69,0,0,192,69,0,0,192,69,0,0,192,69,0,0,202,69,0,0,204,69,0,0,208,69,0,0,212,69,0,0,214,69,0,0,214,69,0,0,214,69,0,0,222,69,0,0,224,69,0,0,226,69,0,0,226,69,0,0,228,69,0,0,228,69,0,0,228,69,0,0,230,69,0,0,232,69,0,0,232,69,0,0,232,69,0,0,234,69,0,0,234,69,0,0,234,69,0,0,244,69,0,0,252,69,0,0,252,69,0,0,254,69,0,0,254,69,0,0,10,70,0,0,12,70,0,0,14,70,0,0,16,70,0,0,16,70,0,0,18,70,0,0,18,70,0,0,18,70,0,0,18,70,0,0,18,70,0,0,18,70,0,0,20,70,0,0,20,70,0,0,24,70,0,0,24,70,0,0,24,70,0,0,28,70,0,0,32,70,0,0,32,70,0,0,36,70,0,0,38,70,0,0,40,70,0,0,42,70,0,0,42,70,0,0,48,70,0,0,50,70,0,0,52,70,0,0,54,70,0,0,54,70,0,0,56,70,0,0,56,70,0,0,66,70,0,0,66,70,0,0,70,70,0,0,70,70,0,0,70,70,0,0,74,70,0,0,76,70,0,0,76,70,0,0,78,70,0,0,78,70,0,0,78,70,0,0,80,70,0,0,80,70,0,0,86,70,0,0,88,70,0,0,88,70,0,0,88,70,0,0,88,70,0,0,90,70,0,0,94,70,0,0,94,70,0,0,100,70,0,0,100,70,0,0,100,70,0,0,100,70,0,0,100,70,0,0,100,70,0,0,100,70,0,0,102,70,0,0,104,70,0,0,108,70,0,0,110,70,0,0,110,70,0,0,110,70,0,0,110,70,0,0,116,70,0,0,116,70,0,0,118,70,0,0,118,70,0,0,118,70,0,0,118,70,0,0,120,70,0,0,120,70,0,0,122,70,0,0,122,70,0,0,122,70,0,0,122,70,0,0,122,70,0,0,122,70,0,0,128,70,0,0,128,70,0,0,130,70,0,0,130,70,0,0,130,70,0,0,130,70,0,0,130,70,0,0,130,70,0,0,132,70,0,0,132,70,0,0,132,70,0,0,134,70,0,0,136,70,0,0,138,70,0,0,142,70,0,0,144,70,0,0,146,70,0,0,150,70,0,0,158,70,0,0,158,70,0,0,158,70,0,0,162,70,0,0,164,70,0,0,164,70,0,0,166,70,0,0,166,70,0,0,170,70,0,0,170,70,0,0,170,70,0,0,174,70,0,0,174,70,0,0,176,70,0,0,176,70,0,0,184,70,0,0,184,70,0,0,194,70,0,0,206,70,0,0,206,70,0,0,210,70,0,0,216,70,0,0,218,70,0,0,218,70,0,0,226,70,0,0,226,70,0,0,228,70,0,0,228,70,0,0,230,70,0,0,234,70,0,0,234,70,0,0,234,70,0,0,234,70,0,0,238,70,0,0,238,70,0,0,238,70,0,0,238,70,0,0,244,70,0,0,246,70,0,0,246,70,0,0,250,70,0,0,2,71,0,0,2,71,0,0,2,71,0,0,4,71,0,0,4,71,0,0,4,71,0,0,6,71,0,0,6,71,0,0,6,71,0,0,6,71,0,0,6,71,0,0,8,71,0,0,8,71,0,0,8,71,0,0,12,71,0,0,14,71,0,0,18,71,0,0,18,71,0,0,22,71,0,0,26,71,0,0,36,71,0,0,38,71,0,0,44,71,0,0,48,71,0,0,50,71,0,0,50,71,0,0,50,71,0,0,52,71,0,0,54,71,0,0,54,71,0,0,54,71,0,0,56,71,0,0,56,71,0,0,62,71,0,0,66,71,0,0,66,71,0,0,66,71,0,0,66,71,0,0,66,71,0,0,66,71,0,0,68,71,0,0,68,71,0,0,68,71,0,0,68,71,0,0,70,71,0,0,74,71,0,0,74,71,0,0,74,71,0,0,78,71,0,0,78,71,0,0,78,71,0,0,80,71,0,0,84,71,0,0,84,71,0,0,84,71,0,0,88,71,0,0,90,71,0,0,90,71,0,0,90,71,0,0,90,71,0,0,96,71,0,0,98,71,0,0,100,71,0,0,100,71,0,0,102,71,0,0,102,71,0,0,108,71,0,0,108,71,0,0,108,71,0,0,108,71,0,0,110,71,0,0,114,71,0,0,114,71,0,0,114,71,0,0,116,71,0,0,118,71,0,0,118,71,0,0,122,71,0,0,140,71,0,0,140,71,0,0,140,71,0,0,142,71,0,0,144,71,0,0,150,71,0,0,152,71,0,0,156,71,0,0,164,71,0,0,168,71,0,0,174,71,0,0,174,71,0,0,176,71,0,0,176,71,0,0,176,71,0,0,178,71,0,0,178,71,0,0,180,71,0,0,182,71,0,0,182,71,0,0,182,71,0,0,188,71,0,0,188,71,0,0,190,71,0,0,194,71,0,0,194,71,0,0,196,71,0,0,196,71,0,0,200,71,0,0,200,71,0,0,200,71,0,0,200,71,0,0,200,71,0,0,202,71,0,0,206,71,0,0,206,71,0,0,208,71,0,0,210,71,0,0,210,71,0,0,218,71,0,0,218,71,0,0,220,71,0,0,220,71,0,0,222,71,0,0,226,71,0,0,226,71,0,0,228,71,0,0,234,71,0,0,234,71,0,0,236,71,0,0,236,71,0,0,236,71,0,0,238,71,0,0,238,71,0,0,240,71,0,0,240,71,0,0,240,71,0,0,242,71,0,0,242,71,0,0,242,71,0,0,242,71,0,0,244,71,0,0,244,71,0,0,246,71,0,0,252,71,0,0,252,71,0,0,252,71,0,0,252,71,0,0,2,72,0,0,2,72,0,0,2,72,0,0,4,72,0,0,4,72,0,0,8,72,0,0,8,72,0,0,14,72,0,0,18,72,0,0,18,72,0,0,18,72,0,0,18,72,0,0,18,72,0,0,18,72,0,0,26,72,0,0,28,72,0,0,28,72,0,0,28,72,0,0,30,72,0,0,30,72,0,0,30,72,0,0,30,72,0,0,34,72,0,0,42,72,0,0,46,72,0,0,52,72,0,0,52,72,0,0,52,72,0,0,58,72,0,0,58,72,0,0,58,72,0,0,58,72,0,0,58,72,0,0,58,72,0,0,60,72,0,0,86,72,0,0,86,72,0,0,86,72,0,0,86,72,0,0,88,72,0,0,90,72,0,0,90,72,0,0,96,72,0,0,98,72,0,0,100,72,0,0,100,72,0,0,100,72,0,0,100,72,0,0,100,72,0,0,102,72,0,0,104,72,0,0,104,72,0,0,108,72,0,0,108,72,0,0,110,72,0,0,112,72,0,0,114,72,0,0,114,72,0,0,114,72,0,0,116,72,0,0,118,72,0,0,120,72,0,0,120,72,0,0,120,72,0,0,124,72,0,0,128,72,0,0,132,72,0,0,132,72,0,0,132,72,0,0,132,72,0,0,134,72,0,0,134,72,0,0,136,72,0,0,144,72,0,0,144,72,0,0,144,72,0,0,150,72,0,0,150,72,0,0,150,72,0,0,150,72,0,0,150,72,0,0,150,72,0,0,152,72,0,0,152,72,0,0,156,72,0,0,156,72,0,0,164,72,0,0,164,72,0,0,168,72,0,0,174,72,0,0,174,72,0,0,176,72,0,0,176,72,0,0,178,72,0,0,178,72,0,0,184,72,0,0,186,72,0,0,186,72,0,0,188,72,0,0,190,72,0,0,190,72,0,0,200,72,0,0,204,72,0,0,204,72,0,0,206,72,0,0,208,72,0,0,208,72,0,0,212,72,0,0,212,72,0,0,214,72,0,0,216,72,0,0,220,72,0,0,222,72,0,0,226,72,0,0,228,72,0,0,232,72,0,0,232,72,0,0,232,72,0,0,238,72,0,0,244,72,0,0,244,72,0,0,244,72,0,0,244,72,0,0,244,72,0,0,248,72,0,0,248,72,0,0,248,72,0,0,250,72,0,0,250,72,0,0,250,72,0,0,250,72,0,0,250,72,0,0,250,72,0,0,252,72,0,0,252,72,0,0,252,72,0,0,252,72,0,0,0,73,0,0,0,73,0,0,2,73,0,0,6,73,0,0,6,73,0,0,12,73,0,0,14,73,0,0,18,73,0,0,18,73,0,0,22,73,0,0,22,73,0,0,22,73,0,0,24,73,0,0,24,73,0,0,24,73,0,0,24,73,0,0,26,73,0,0,26,73,0,0,30,73,0,0,30,73,0,0,32,73,0,0,36,73,0,0,40,73,0,0,40,73,0,0,42,73,0,0,42,73,0,0,42,73,0,0,42,73,0,0,42,73,0,0,46,73,0,0,46,73,0,0,46,73,0,0,46,73,0,0,48,73,0,0,52,73,0,0,52,73,0,0,52,73,0,0,64,73,0,0,64,73,0,0,68,73,0,0,70,73,0,0,70,73,0,0,80,73,0,0,80,73,0,0,82,73,0,0,82,73,0,0,82,73,0,0,94,73,0,0,96,73,0,0,96,73,0,0,96,73,0,0,96,73,0,0,96,73,0,0,98,73,0,0,104,73,0,0,108,73,0,0,108,73,0,0,108,73,0,0,118,73,0,0,118,73,0,0,120,73,0,0,120,73,0,0,128,73,0,0,128,73,0,0,130,73,0,0,132,73,0,0,134,73,0,0,138,73,0,0,140,73,0,0,140,73,0,0,140,73,0,0,146,73,0,0,150,73,0,0,162,73,0,0,164,73,0,0,164,73,0,0,164,73,0,0,170,73,0,0,172,73,0,0,172,73,0,0,172,73,0,0,172,73,0,0,176,73,0,0,178,73,0,0,178,73,0,0,180,73,0,0,180,73,0,0,184,73,0,0,190,73,0,0,194,73,0,0,196,73,0,0,196,73,0,0,196,73,0,0,196,73,0,0,200,73,0,0,204,73,0,0,204,73,0,0,204,73,0,0,210,73,0,0,218,73,0,0,220,73,0,0,220,73,0,0,220,73,0,0,222,73,0,0,224,73,0,0,224,73,0,0,226,73,0,0,226,73,0,0,226,73,0,0,230,73,0,0,240,73,0,0,240,73,0,0,240,73,0,0,240,73,0,0,240,73,0,0,242,73,0,0,242,73,0,0,248,73,0,0,248,73,0,0,248,73,0,0,252,73,0,0,252,73,0,0,0,74,0,0,2,74,0,0,4,74,0,0,10,74,0,0,10,74,0,0,10,74,0,0,14,74,0,0,18,74,0,0,18,74,0,0,20,74,0,0,24,74,0,0,28,74,0,0,30,74,0,0,32,74,0,0,34,74,0,0,34,74,0,0,40,74,0,0,44,74,0,0,48,74,0,0,48,74,0,0,48,74,0,0,50,74,0,0,52,74,0,0,58,74,0,0,62,74,0,0,64,74,0,0,64,74,0,0,64,74,0,0,68,74,0,0,76,74,0,0,76,74,0,0,78,74,0,0,84,74,0,0,84,74,0,0,84,74,0,0,84,74,0,0,84,74,0,0,86,74,0,0,88,74,0,0,88,74,0,0,90,74,0,0,90,74,0,0,96,74,0,0,102,74,0,0,106,74,0,0,106,74,0,0,106,74,0,0,106,74,0,0,106,74,0,0,106,74,0,0,106,74,0,0,114,74,0,0,116,74,0,0,118,74,0,0,126,74,0,0,138,74,0,0,144,74,0,0,150,74,0,0,158,74,0,0,160,74,0,0,160,74,0,0,160,74,0,0,160,74,0,0,166,74,0,0,166,74,0,0,168,74,0,0,170,74,0,0,170,74,0,0,170,74,0,0,170,74,0,0,170,74,0,0,170,74,0,0,172,74,0,0,176,74,0,0,176,74,0,0,176,74,0,0,180,74,0,0,180,74,0,0,182,74,0,0,182,74,0,0,182,74,0,0,182,74,0,0,190,74,0,0,194,74,0,0,198,74,0,0,198,74,0,0,202,74,0,0,202,74,0,0,204,74,0,0,210,74,0,0,210,74,0,0,210,74,0,0,210,74,0,0,210,74,0,0,210,74,0,0,212,74,0,0,212,74,0,0,212,74,0,0,214,74,0,0,214,74,0,0,218,74,0,0,220,74,0,0,220,74,0,0,224,74,0,0,226,74,0,0,228,74,0,0,234,74,0,0,238,74,0,0,242,74,0,0,242,74,0,0,244,74,0,0,244,74,0,0,248,74,0,0,248,74,0,0,250,74,0,0,252,74,0,0,252,74,0,0,254,74,0,0,254,74,0,0,254,74,0,0,2,75,0,0,4,75,0,0,4,75,0,0,4,75,0,0,6,75,0,0,6,75,0,0,6,75,0,0,6,75,0,0,6,75,0,0,6,75,0,0,8,75,0,0,10,75,0,0,14,75,0,0,20,75,0,0,20,75,0,0,22,75,0,0,26,75,0,0,26,75,0,0,26,75,0,0,28,75,0,0,32,75,0,0,44,75,0,0,44,75,0,0,44,75,0,0,48,75,0,0,52,75,0,0,52,75,0,0,56,75,0,0,58,75,0,0,64,75,0,0,64,75,0,0,64,75,0,0,66,75,0,0,68,75,0,0,74,75,0,0,74,75,0,0,74,75,0,0,74,75,0,0,74,75,0,0,76,75,0,0,76,75,0,0,76,75,0,0,76,75,0,0,76,75,0,0,84,75,0,0,84,75,0,0,86,75,0,0,88,75,0,0,88,75,0,0,88,75,0,0,88,75,0,0,88,75,0,0,88,75,0,0,88,75,0,0,92,75,0,0,92,75,0,0,92,75,0,0,92,75,0,0,100,75,0,0,100,75,0,0,106,75,0,0,106,75,0,0,110,75,0,0,112,75,0,0,112,75,0,0,112,75,0,0,112,75,0,0,118,75,0,0,118,75,0,0,120,75,0,0,124,75,0,0,124,75,0,0,128,75,0,0,128,75,0,0,128,75,0,0,128,75,0,0,130,75,0,0,130,75,0,0,134,75,0,0,134,75,0,0,134,75,0,0,134,75,0,0,136,75,0,0,136,75,0,0,144,75,0,0,144,75,0,0,146,75,0,0,148,75,0,0,148,75,0,0,154,75,0,0,158,75,0,0,162,75,0,0,162,75,0,0,162,75,0,0,162,75,0,0,162,75,0,0,164,75,0,0,164,75,0,0,164,75,0,0,164,75,0,0,168,75,0,0,168,75,0,0,168,75,0,0,170,75,0,0,170,75,0,0,170,75,0,0,174,75,0,0,174,75,0,0,174,75,0,0,176,75,0,0,180,75,0,0,184,75,0,0,190,75,0,0,190,75,0,0,190,75,0,0,190,75,0,0,190,75,0,0,194,75,0,0,194,75,0,0,194,75,0,0,194,75,0,0,194,75,0,0,198,75,0,0,202,75,0,0,206,75,0,0,206,75,0,0,206,75,0,0,208,75,0,0,210,75,0,0,210,75,0,0,212,75,0,0,212,75,0,0,220,75,0,0,222,75,0,0,222,75,0,0,228,75,0,0,228,75,0,0,228,75,0,0,228,75,0,0,230,75,0,0,230,75,0,0,234,75,0,0,234,75,0,0,234,75,0,0,236,75,0,0,240,75,0,0,240,75,0,0,242,75,0,0,242,75,0,0,250,75,0,0,250,75,0,0,250,75,0,0,2,76,0,0,4,76,0,0,6,76,0,0,8,76,0,0,10,76,0,0,14,76,0,0,14,76,0,0,14,76,0,0,14,76,0,0,20,76,0,0,22,76,0,0,22,76,0,0,24,76,0,0,26,76,0,0,30,76,0,0,30,76,0,0,30,76,0,0,36,76,0,0,38,76,0,0,38,76,0,0,40,76,0,0,46,76,0,0,48,76,0,0,48,76,0,0,54,76,0,0,56,76,0,0,60,76,0,0,68,76,0,0,68,76,0,0,74,76,0,0,74,76,0,0,74,76,0,0,80,76,0,0,80,76,0,0,80,76,0,0,80,76,0,0,80,76,0,0,80,76,0,0,84,76,0,0,86,76,0,0,86,76,0,0,86,76,0,0,86,76,0,0,88,76,0,0,88,76,0,0,88,76,0,0,88,76,0,0,90,76,0,0,90,76,0,0,90,76,0,0,90,76,0,0,90,76,0,0,90,76,0,0,96,76,0,0,98,76,0,0,100,76,0,0,102,76,0,0,106,76,0,0,106,76,0,0,114,76,0,0,116,76,0,0,116,76,0,0,116,76,0,0,122,76,0,0,124,76,0,0,124,76,0,0,128,76,0,0,134,76,0,0,134,76,0,0,134,76,0,0,134,76,0,0,134,76,0,0,136,76,0,0,150,76,0,0,152,76,0,0,154,76,0,0,158,76,0,0,158,76,0,0,158,76,0,0,160,76,0,0,162,76,0,0,162,76,0,0,162,76,0,0,162,76,0,0,166,76,0,0,166,76,0,0,166,76,0,0,166,76,0,0,166,76,0,0,172,76,0,0,174,76,0,0,174,76,0,0,176,76,0,0,178,76,0,0,184,76,0,0,186,76,0,0,186,76,0,0,186,76,0,0,192,76,0,0,198,76,0,0,202,76,0,0,208,76,0,0,208,76,0,0,208,76,0,0,210,76,0,0,210,76,0,0,210,76,0,0,210,76,0,0,210,76,0,0,210,76,0,0,210,76,0,0,210,76,0,0,210,76,0,0,214,76,0,0,216,76,0,0,216,76,0,0,216,76,0,0,216,76,0,0,216,76,0,0,218,76,0,0,218,76,0,0,220,76,0,0,246,76,0,0,246,76,0,0,246,76,0,0,246,76,0,0,254,76,0,0,6,77,0,0,6,77,0,0,6,77,0,0,6,77,0,0,6,77,0,0,8,77,0,0,10,77,0,0,10,77,0,0,12,77,0,0,16,77,0,0,16,77,0,0,16,77,0,0,22,77,0,0,22,77,0,0,22,77,0,0,22,77,0,0,22,77,0,0,36,77,0,0,36,77,0,0,40,77,0,0,42,77,0,0,42,77,0,0,42,77,0,0,42,77,0,0,46,77,0,0,48,77,0,0,48,77,0,0,50,77,0,0,52,77,0,0,54,77,0,0,56,77,0,0,60,77,0,0,68,77,0,0,68,77,0,0,74,77,0,0,76,77,0,0,76,77,0,0,80,77,0,0,94,77,0,0,94,77,0,0,94,77,0,0,94,77,0,0,98,77,0,0,98,77,0,0,104,77,0,0,104,77,0,0,110,77,0,0,110,77,0,0,110,77,0,0,110,77,0,0,110,77,0,0,110,77,0,0,110,77,0,0,110,77,0,0,110,77,0,0,110,77,0,0,110,77,0,0,120,77,0,0,120,77,0,0,120,77,0,0,120,77,0,0,120,77,0,0,122,77,0,0,132,77,0,0,134,77,0,0,134,77,0,0,134,77,0,0,136,77,0,0,138,77,0,0,140,77,0,0,142,77,0,0,142,77,0,0,142,77,0,0,142,77,0,0,144,77,0,0,144,77,0,0,150,77,0,0,150,77,0,0,156,77,0,0,156,77,0,0,160,77,0,0,160,77,0,0,162,77,0,0,164,77,0,0,164,77,0,0,164,77,0,0,166,77,0,0,166,77,0,0,166,77,0,0,170,77,0,0,170,77,0,0,174,77,0,0,174,77,0,0,178,77,0,0,178,77,0,0,178,77,0,0,178,77,0,0,182,77,0,0,182,77,0,0,182,77,0,0,184,77,0,0,186,77,0,0,186,77,0,0,186,77,0,0,186,77,0,0,186,77,0,0,188,77,0,0,196,77,0,0,196,77,0,0,196,77,0,0,208,77,0,0,210,77,0,0,210,77,0,0,210,77,0,0,218,77,0,0,220,77,0,0,232,77,0,0,232,77,0,0,232,77,0,0,232,77,0,0,236,77,0,0,236,77,0,0,236,77,0,0,236,77,0,0,238,77,0,0,238,77,0,0,242,77,0,0,246,77,0,0,248,77,0,0,248,77,0,0,248,77,0,0,248,77,0,0,250,77,0,0,252,77,0,0,0,78,0,0,2,78,0,0,2,78,0,0,4,78,0,0,4,78,0,0,4,78,0,0,4,78,0,0,10,78,0,0,14,78,0,0,14,78,0,0,14,78,0,0,14,78,0,0,20,78,0,0,20,78,0,0,26,78,0,0,32,78,0,0,34,78,0,0,34,78,0,0,34,78,0,0,46,78,0,0,48,78,0,0,54,78,0,0,54,78,0,0,54,78,0,0,54,78,0,0,56,78,0,0,60,78,0,0,60,78,0,0,60,78,0,0,62,78,0,0,62,78,0,0,62,78,0,0,64,78,0,0,72,78,0,0,72,78,0,0,76,78,0,0,78,78,0,0,80,78,0,0,80,78,0,0,82,78,0,0,82,78,0,0,86,78,0,0,94,78,0,0,96,78,0,0,100,78,0,0,100,78,0,0,104,78,0,0,108,78,0,0,108,78,0,0,108,78,0,0,108,78,0,0,108,78,0,0,110,78,0,0,110,78,0,0,110,78,0,0,110,78,0,0,110,78,0,0,122,78,0,0,132,78,0,0,132,78,0,0,134,78,0,0,134,78,0,0,136,78,0,0,136,78,0,0,142,78,0,0,142,78,0,0,142,78,0,0,142,78,0,0,144,78,0,0,146,78,0,0,146,78,0,0,146,78,0,0,146,78,0,0,146,78,0,0,146,78,0,0,146,78,0,0,146,78,0,0,146,78,0,0,146,78,0,0,146,78,0,0,146,78,0,0,148,78,0,0,148,78,0,0,150,78,0,0,150,78,0,0,150,78,0,0,152,78,0,0,156,78,0,0,156,78,0,0,156,78,0,0,156,78,0,0,156,78,0,0,156,78,0,0,158,78,0,0,162,78,0,0,162,78,0,0,166,78,0,0,170,78,0,0,170,78,0,0,170,78,0,0,170,78,0,0,170,78,0,0,174,78,0,0,174,78,0,0,174,78,0,0,178,78,0,0,178,78,0,0,178,78,0,0,184,78,0,0,184,78,0,0,184,78,0,0,186,78,0,0,192,78,0,0,198,78,0,0,206,78,0,0,208,78,0,0,214,78,0,0,216,78,0,0,216,78,0,0,216,78,0,0,224,78,0,0,224,78,0,0,226,78,0,0,226,78,0,0,226,78,0,0,226,78,0,0,226,78,0,0,228,78,0,0,228,78,0,0,232,78,0,0,234,78,0,0,234,78,0,0,238,78,0,0,238,78,0,0,238,78,0,0,238,78,0,0,242,78,0,0,248,78,0,0,0,79,0,0,0,79,0,0,2,79,0,0,2,79,0,0,4,79,0,0,4,79,0,0,4,79,0,0,4,79,0,0,10,79,0,0,10,79,0,0,10,79,0,0,10,79,0,0,10,79,0,0,10,79,0,0,10,79,0,0,10,79,0,0,10,79,0,0,12,79,0,0,12,79,0,0,18,79,0,0,18,79,0,0,22,79,0,0,26,79,0,0,28,79,0,0,28,79,0,0,28,79,0,0,28,79,0,0,28,79,0,0,28,79,0,0,28,79,0,0,28,79,0,0,28,79,0,0,36,79,0,0,38,79,0,0,40,79,0,0,40,79,0,0,40,79,0,0,40,79,0,0,44,79,0,0,46,79,0,0,46,79,0,0,46,79,0,0,46,79,0,0,46,79,0,0,46,79,0,0,46,79,0,0,46,79,0,0,50,79,0,0,52,79,0,0,54,79,0,0,54,79,0,0,54,79,0,0,56,79,0,0,56,79,0,0,60,79,0,0,60,79,0,0,60,79,0,0,60,79,0,0,62,79,0,0,66,79,0,0,66,79,0,0,68,79,0,0,70,79,0,0,78,79,0,0,88,79,0,0,90,79,0,0,90,79,0,0,94,79,0,0,94,79,0,0,106,79,0,0,106,79,0,0,106,79,0,0,106,79,0,0,106,79,0,0,116,79,0,0,116,79,0,0,120,79,0,0,120,79,0,0,120,79,0,0,130,79,0,0,134,79,0,0,134,79,0,0,134,79,0,0,138,79,0,0,140,79,0,0,140,79,0,0,140,79,0,0,156,79,0,0,164,79,0,0,164,79,0,0,172,79,0,0,174,79,0,0,178,79,0,0,178,79,0,0,182,79,0,0,182,79,0,0,190,79,0,0,194,79,0,0,196,79,0,0,198,79,0,0,202,79,0,0,204,79,0,0,206,79,0,0,206,79,0,0,206,79,0,0,210,79,0,0,210,79,0,0,212,79,0,0,212,79,0,0,212,79,0,0,214,79,0,0,218,79,0,0,218,79,0,0,218,79,0,0,218,79,0,0,218,79,0,0,228,79,0,0,230,79,0,0,230,79,0,0,234,79,0,0,240,79,0,0,244,79,0,0,246,79,0,0,246,79,0,0,248,79,0,0,248,79,0,0,252,79,0,0,0,80,0,0,6,80,0,0,6,80,0,0,12,80,0,0,20,80,0,0,24,80,0,0,26,80,0,0,30,80,0,0,34,80,0,0,34,80,0,0,36,80,0,0,40,80,0,0,46,80,0,0,46,80,0,0,50,80,0,0,52,80,0,0,54,80,0,0,54,80,0,0,54,80,0,0,64,80,0,0,64,80,0,0,66,80,0,0,66,80,0,0,66,80,0,0,70,80,0,0,70,80,0,0,70,80,0,0,70,80,0,0,70,80,0,0,70,80,0,0,70,80,0,0,70,80,0,0,74,80,0,0,74,80,0,0,74,80,0,0,76,80,0,0,82,80,0,0,82,80,0,0,86,80,0,0,94,80,0,0,94,80,0,0,94,80,0,0,96,80,0,0,98,80,0,0,102,80,0,0,102,80,0,0,102,80,0,0,104,80,0,0,104,80,0,0,108,80,0,0,108,80,0,0,108,80,0,0,108,80,0,0,110,80,0,0,110,80,0,0,110,80,0,0,112,80,0,0,112,80,0,0,118,80,0,0,118,80,0,0,124,80,0,0,128,80,0,0,128,80,0,0,132,80,0,0,132,80,0,0,132,80,0,0,132,80,0,0,132,80,0,0,132,80,0,0,132,80,0,0,136,80,0,0,136,80,0,0,136,80,0,0,140,80,0,0,146,80,0,0,148,80,0,0,150,80,0,0,154,80,0,0,154,80,0,0,154,80,0,0,154,80,0,0,156,80,0,0,156,80,0,0,156,80,0,0,156,80,0,0,162,80,0,0,168,80,0,0,172,80,0,0,174,80,0,0,174,80,0,0,176,80,0,0,176,80,0,0,176,80,0,0,176,80,0,0,176,80,0,0,182,80,0,0,190,80,0,0,190,80,0,0,190,80,0,0,192,80,0,0,192,80,0,0,192,80,0,0,194,80,0,0,198,80,0,0,198,80,0,0,198,80,0,0,200,80,0,0,208,80,0,0,210,80,0,0,214,80,0,0,220,80,0,0,222,80,0,0,226,80,0,0,226,80,0,0,230,80,0,0,230,80,0,0,230,80,0,0,230,80,0,0,230,80,0,0,230,80,0,0,230,80,0,0,230,80,0,0,234,80,0,0,234,80,0,0,234,80,0,0,248,80,0,0,248,80,0,0,252,80,0,0,0,81,0,0,4,81,0,0,6,81,0,0,6,81,0,0,10,81,0,0,10,81,0,0,14,81,0,0,16,81,0,0,16,81,0,0,16,81,0,0,18,81,0,0,18,81,0,0,24,81,0,0,26,81,0,0,26,81,0,0,26,81,0,0,32,81,0,0,36,81,0,0,36,81,0,0,36,81,0,0,42,81,0,0,44,81,0,0,48,81,0,0,54,81,0,0,56,81,0,0,64,81,0,0,64,81,0,0,64,81,0,0,64,81,0,0,64,81,0,0,64,81,0,0,76,81,0,0,78,81,0,0,80,81,0,0,80,81,0,0,80,81,0,0,82,81,0,0,84,81,0,0,86,81,0,0,86,81,0,0,88,81,0,0,88,81,0,0,90,81,0,0,90,81,0,0,92,81,0,0,92,81,0,0,92,81,0,0,100,81,0,0,104,81,0,0,104,81,0,0,104,81,0,0,106,81,0,0,106,81,0,0,106,81,0,0,106,81,0,0,106,81,0,0,108,81,0,0,108,81,0,0,108,81,0,0,108,81,0,0,108,81,0,0,110,81,0,0,112,81,0,0,112,81,0,0,118,81,0,0,118,81,0,0,120,81,0,0,120,81,0,0,128,81,0,0,128,81,0,0,130,81,0,0,130,81,0,0,130,81,0,0,130,81,0,0,130,81,0,0,134,81,0,0,134,81,0,0,134,81,0,0,134,81,0,0,134,81,0,0,136,81,0,0,142,81,0,0,148,81,0,0,150,81,0,0,150,81,0,0,156,81,0,0,156,81,0,0,156,81,0,0,162,81,0,0,162,81,0,0,162,81,0,0,162,81,0,0,164,81,0,0,164,81,0,0,166,81,0,0,166,81,0,0,166,81,0,0,166,81,0,0,168,81,0,0,168,81,0,0,170,81,0,0,170,81,0,0,170,81,0,0,170,81,0,0,174,81,0,0,182,81,0,0,188,81,0,0,190,81,0,0,190,81,0,0,190,81,0,0,190,81,0,0,190,81,0,0,192,81,0,0,194,81,0,0,198,81,0,0,200,81,0,0,202,81,0,0,202,81,0,0,210,81,0,0,210,81,0,0,210,81,0,0,210,81,0,0,210,81,0,0,210,81,0,0,210,81,0,0,210,81,0,0,210,81,0,0,210,81,0,0,212,81,0,0,218,81,0,0,222,81,0,0,222,81,0,0,224,81,0,0,224,81,0,0,226,81,0,0,230,81,0,0,236,81,0,0,238,81,0,0,238,81,0,0,238,81,0,0,238,81,0,0,240,81,0,0,240,81,0,0,240,81,0,0,240,81,0,0,246,81,0,0,246,81,0,0,248,81,0,0,248,81,0,0,250,81,0,0,250,81,0,0,250,81,0,0,10,82,0,0,10,82,0,0,12,82,0,0,16,82,0,0,20,82,0,0,22,82,0,0,24,82,0,0,26,82,0,0,28,82,0,0,28,82,0,0,32,82,0,0,32,82,0,0,32,82,0,0,34,82,0,0,34,82,0,0,34,82,0,0,34,82,0,0,44,82,0,0,44,82,0,0,44,82,0,0,50,82,0,0,50,82,0,0,52,82,0,0,52,82,0,0,52,82,0,0,58,82,0,0,58,82,0,0,60,82,0,0,62,82,0,0,62,82,0,0,62,82,0,0,64,82,0,0,64,82,0,0,64,82,0,0,64,82,0,0,64,82,0,0,66,82,0,0,66,82,0,0,74,82,0,0,76,82,0,0,78,82,0,0,80,82,0,0,90,82,0,0,90,82,0,0,90,82,0,0,96,82,0,0,100,82,0,0,100,82,0,0,100,82,0,0,106,82,0,0,112,82,0,0,120,82,0,0,120,82,0,0,120,82,0,0,120,82,0,0,126,82,0,0,126,82,0,0,132,82,0,0,132,82,0,0,132,82,0,0,132,82,0,0,144,82,0,0,144,82,0,0,144,82,0,0,144,82,0,0,148,82,0,0,150,82,0,0,150,82,0,0,150,82,0,0,152,82,0,0,154,82,0,0,160,82,0,0,160,82,0,0,162,82,0,0,162,82,0,0,168,82,0,0,172,82,0,0,172,82,0,0,172,82,0,0,174,82,0,0,174,82,0,0,176,82,0,0,178,82,0,0,180,82,0,0,180,82,0,0,188,82,0,0,196,82,0,0,200,82,0,0,200,82,0,0,212,82,0,0,214,82,0,0,214,82,0,0,218,82,0,0,230,82,0,0,230,82,0,0,234,82,0,0,240,82,0,0,240,82,0,0,240,82,0,0,240,82,0,0,240,82,0,0,240,82,0,0,240,82,0,0,240,82,0,0,242,82,0,0,242,82,0,0,244,82,0,0,248,82,0,0,252,82,0,0,252,82,0,0,252,82,0,0,252,82,0,0,252,82,0,0,252,82,0,0,254,82,0,0,6,83,0,0,10,83,0,0,16,83,0,0,16,83,0,0,28,83,0,0,30,83,0,0,32,83,0,0,32,83,0,0,46,83,0,0,54,83,0,0,54,83,0,0,60,83,0,0,60,83,0,0,60,83,0,0,60,83,0,0,60,83,0,0,60,83,0,0,60,83,0,0,64,83,0,0,66,83,0,0,74,83,0,0,74,83,0,0,80,83,0,0,80,83,0,0,84,83,0,0,88,83,0,0,88,83,0,0,90,83,0,0,94,83,0,0,94,83,0,0,98,83,0,0,100,83,0,0,100,83,0,0,100,83,0,0,102,83,0,0,104,83,0,0,104,83,0,0,104,83,0,0,104,83,0,0,106,83,0,0,106,83,0,0,106,83,0,0,106,83,0,0,106,83,0,0,110,83,0,0,110,83,0,0,114,83,0,0,114,83,0,0,116,83,0,0,116,83,0,0,116,83,0,0,116,83,0,0,120,83,0,0,120,83,0,0,120,83,0,0,122,83,0,0,122,83,0,0,126,83,0,0,132,83,0,0,134,83,0,0,138,83,0,0,144,83,0,0,146,83,0,0,146,83,0,0,148,83,0,0,148,83,0,0,148,83,0,0,148,83,0,0,152,83,0,0,154,83,0,0,154,83,0,0,154,83,0,0,154,83,0,0,156,83,0,0,156,83,0,0,162,83,0,0,164,83,0,0,164,83,0,0,166,83,0,0,166,83,0,0,166,83,0,0,166,83,0,0,170,83,0,0,178,83,0,0,178,83,0,0,178,83,0,0,178,83,0,0,178,83,0,0,178,83,0,0,182,83,0,0,182,83,0,0,182,83,0,0,194,83,0,0,196,83,0,0,198,83,0,0,198,83,0,0,202,83,0,0,206,83,0,0,206,83,0,0,216,83,0,0,218,83,0,0,220,83,0,0,222,83,0,0,224,83,0,0,224,83,0,0,224,83,0,0,232,83,0,0,234,83,0,0,236,83,0,0,236,83,0,0,236,83,0,0,236,83,0,0,238,83,0,0,238,83,0,0,240,83,0,0,240,83,0,0,240,83,0,0,248,83,0,0,250,83,0,0,0,84,0,0,0,84,0,0,2,84,0,0,6,84,0,0,6,84,0,0,6,84,0,0,6,84,0,0,6,84,0,0,6,84,0,0,16,84,0,0,16,84,0,0,18,84,0,0,18,84,0,0,18,84,0,0,24,84,0,0,24,84,0,0,24,84,0,0,26,84,0,0,28,84,0,0,28,84,0,0,34,84,0,0,34,84,0,0,38,84,0,0,38,84,0,0,38,84,0,0,38,84,0,0,40,84,0,0,42,84,0,0,44,84,0,0,44,84,0,0,46,84,0,0,50,84,0,0,50,84,0,0,52,84,0,0,52,84,0,0,52,84,0,0,52,84,0,0,56,84,0,0,58,84,0,0,60,84,0,0,60,84,0,0,64,84,0,0,68,84,0,0,72,84,0,0,78,84,0,0,78,84,0,0,80,84,0,0,84,84,0,0,84,84,0,0,86,84,0,0,90,84,0,0,94,84,0,0,96,84,0,0,108,84,0,0,110,84,0,0,110,84,0,0,114,84,0,0,116,84,0,0,116,84,0,0,118,84,0,0,118,84,0,0,118,84,0,0,120,84,0,0,120,84,0,0,122,84,0,0,122,84,0,0,132,84,0,0,132,84,0,0,132,84,0,0,132,84,0,0,132,84,0,0,132,84,0,0,142,84,0,0,148,84,0,0,148,84,0,0,148,84,0,0,152,84,0,0,156,84,0,0,160,84,0,0,168,84,0,0,168,84,0,0,168,84,0,0,170,84,0,0,174,84,0,0,174,84,0,0,174,84,0,0,174,84,0,0,174,84,0,0,174,84,0,0,174,84,0,0,176,84,0,0,176,84,0,0,176,84,0,0,180,84,0,0,180,84,0,0,182,84,0,0,182,84,0,0,182,84,0,0,182,84,0,0,188,84,0,0,188,84,0,0,188,84,0,0,194,84,0,0,194,84,0,0,198,84,0,0,198,84,0,0,198,84,0,0,202,84,0,0,202,84,0,0,206,84,0,0,206,84,0,0,206,84,0,0,208,84,0,0,208,84,0,0,210,84,0,0,210,84,0,0,210,84,0,0,212,84,0,0,220,84,0,0,220,84,0,0,222,84,0,0,222,84,0,0,224,84,0,0,224,84,0,0,224,84,0,0,224,84,0,0,228,84,0,0,234,84,0,0,234,84,0,0,238,84,0,0,246,84,0,0,248,84,0,0,2,85,0,0,2,85,0,0,2,85,0,0,4,85,0,0,6,85,0,0,10,85,0,0,14,85,0,0,14,85,0,0,20,85,0,0,22,85,0,0,22,85,0,0,28,85,0,0,28,85,0,0,28,85,0,0,28,85,0,0,28,85,0,0,28,85,0,0,28,85,0,0,32,85,0,0,32,85,0,0,32,85,0,0,32,85,0,0,32,85,0,0,32,85,0,0,36,85,0,0,36,85,0,0,36,85,0,0,38,85,0,0,38,85,0,0,38,85,0,0,40,85,0,0,46,85,0,0,50,85,0,0,50,85,0,0,52,85,0,0,52,85,0,0,54,85,0,0,60,85,0,0,66,85,0,0,66,85,0,0,68,85,0,0,70,85,0,0,72,85,0,0,72,85,0,0,78,85,0,0,78,85,0,0,84,85,0,0,86,85,0,0,86,85,0,0,86,85,0,0,88,85,0,0,88,85,0,0,88,85,0,0,90,85,0,0,90,85,0,0,90,85,0,0,92,85,0,0,92,85,0,0,92,85,0,0,92,85,0,0,92,85,0,0,92,85,0,0,92,85,0,0,94,85,0,0,96,85,0,0,98,85,0,0,98,85,0,0,98,85,0,0,98,85,0,0,98,85,0,0,98,85,0,0,104,85,0,0,104,85,0,0,104,85,0,0,104,85,0,0,104,85,0,0,104,85,0,0,104,85,0,0,104,85,0,0,104,85,0,0,108,85,0,0,108,85,0,0,110,85,0,0,112,85,0,0,114,85,0,0,114,85,0,0,114,85,0,0,114,85,0,0,114,85,0,0,114,85,0,0,116,85,0,0,118,85,0,0,118,85,0,0,118,85,0,0,118,85,0,0,118,85,0,0,122,85,0,0,124,85,0,0,124,85,0,0,126,85,0,0,126,85,0,0,126,85,0,0,134,85,0,0,144,85,0,0,146,85,0,0,148,85,0,0,150,85,0,0,152,85,0,0,152,85,0,0,152,85,0,0,154,85,0,0,156,85,0,0,158,85,0,0,162,85,0,0,164,85,0,0,164,85,0,0,164,85,0,0,178,85,0,0,178,85,0,0,178,85,0,0,180,85,0,0,182,85,0,0,182,85,0,0,184,85,0,0,186,85,0,0,186,85,0,0,190,85,0,0,194,85,0,0,194,85,0,0,196,85,0,0,196,85,0,0,198,85,0,0,200,85,0,0,202,85,0,0,202,85,0,0,206,85,0,0,206,85,0,0,210,85,0,0,210,85,0,0,210,85,0,0,218,85,0,0,218,85,0,0,218,85,0,0,218,85,0,0,220,85,0,0,220,85,0,0,220,85,0,0,220,85,0,0,226,85,0,0,228,85,0,0,234,85,0,0,234,85,0,0,234,85,0,0,234,85,0,0,234,85,0,0,234,85,0,0,236,85,0,0,236,85,0,0,240,85,0,0,240,85,0,0,244,85,0,0,244,85,0,0,248,85,0,0,252,85,0,0,254,85,0,0,254,85,0,0,2,86,0,0,2,86,0,0,6,86,0,0,8,86,0,0,8,86,0,0,8,86,0,0,10,86,0,0,16,86,0,0,18,86,0,0,20,86,0,0,30,86,0,0,32,86,0,0,40,86,0,0,42,86,0,0,42,86,0,0,48,86,0,0,48,86,0,0,48,86,0,0,50,86,0,0,50,86,0,0,50,86,0,0,52,86,0,0,52,86,0,0,54,86,0,0,56,86,0,0,58,86,0,0,58,86,0,0,58,86,0,0,58,86,0,0,58,86,0,0,60,86,0,0,60,86,0,0,60,86,0,0,60,86,0,0,60,86,0,0,60,86,0,0,62,86,0,0,62,86,0,0,64,86,0,0,68,86,0,0,68,86,0,0,70,86,0,0,72,86,0,0,72,86,0,0,74,86,0,0,88,86,0,0,88,86,0,0,88,86,0,0,96,86,0,0,98,86,0,0,102,86,0,0,104,86,0,0,106,86,0,0,110,86,0,0,110,86,0,0,112,86,0,0,118,86,0,0,118,86,0,0,118,86,0,0,120,86,0,0,120,86,0,0,124,86,0,0,126,86,0,0,126,86,0,0,126,86,0,0,132,86,0,0,132,86,0,0,132,86,0,0,132,86,0,0,132,86,0,0,132,86,0,0,136,86,0,0,138,86,0,0,140,86,0,0,148,86,0,0,150,86,0,0,156,86,0,0,160,86,0,0,160,86,0,0,160,86,0,0,160,86,0,0,160,86,0,0,162,86,0,0,166,86,0,0,166,86,0,0,168,86,0,0,168,86,0,0,168,86,0,0,168,86,0,0,174,86,0,0,176,86,0,0,176,86,0,0,176,86,0,0,176,86,0,0,178,86,0,0,184,86,0,0,194,86,0,0,202,86,0,0,204,86,0,0,208,86,0,0,210,86,0,0,212,86,0,0,224,86,0,0,228,86,0,0,232,86,0,0,238,86,0,0,238,86,0,0,240,86,0,0,242,86,0,0,242,86,0,0,242,86,0,0,242,86,0,0,244,86,0,0,248,86,0,0,254,86,0,0,4,87,0,0,6,87,0,0,6,87,0,0,6,87,0,0,10,87,0,0,10,87,0,0,12,87,0,0,20,87,0,0,22,87,0,0,28,87,0,0,28,87,0,0,28,87,0,0,28,87,0,0,28,87,0,0,32,87,0,0,32,87,0,0,32,87,0,0,32,87,0,0,38,87,0,0,46,87,0,0,46,87,0,0,52,87,0,0,52,87,0,0,52,87,0,0,56,87,0,0,56,87,0,0,70,87,0,0,72,87,0,0,82,87,0,0,82,87,0,0,82,87,0,0,84,87,0,0,86,87,0,0,86,87,0,0,86,87,0,0,90,87,0,0,94,87,0,0,94,87,0,0,94,87,0,0,94,87,0,0,102,87,0,0,104,87,0,0,106,87,0,0,106,87,0,0,108,87,0,0,110,87,0,0,116,87,0,0,122,87,0,0,126,87,0,0,128,87,0,0,130,87,0,0,130,87,0,0,132,87,0,0,134,87,0,0,136,87,0,0,138,87,0,0,144,87,0,0,144,87,0,0,146,87,0,0,146,87,0,0,148,87,0,0,154,87,0,0,156,87,0,0,158,87,0,0,160,87,0,0,160,87,0,0,162,87,0,0,164,87,0,0,164,87,0,0,164,87,0,0,164,87,0,0,164,87,0,0,168,87,0,0,168,87,0,0,174,87,0,0,174,87,0,0,176,87,0,0,176,87,0,0,176,87,0,0,178,87,0,0,180,87,0,0,184,87,0,0,184,87,0,0,184,87,0,0,186,87,0,0,186,87,0,0,186,87,0,0,194,87,0,0,194,87,0,0,194,87,0,0,194,87,0,0,194,87,0,0,198,87,0,0,198,87,0,0,198,87,0,0,198,87,0,0,198,87,0,0,198,87,0,0,204,87,0,0,208,87,0,0,212,87,0,0,212,87,0,0,212,87,0,0,212,87,0,0,212,87,0,0,218,87,0,0,220,87,0,0,222,87,0,0,222,87,0,0,226,87,0,0,228,87,0,0,232,87,0,0,234,87,0,0,236,87,0,0,240,87,0,0,242,87,0,0,242,87,0,0,248,87,0,0,248,87,0,0,248,87,0,0,250,87,0,0,250,87,0,0,254,87,0,0,0,88,0,0,0,88,0,0,4,88,0,0,10,88,0,0,12,88,0,0,12,88,0,0,12,88,0,0,16,88,0,0,22,88,0,0,22,88,0,0,24,88,0,0,26,88,0,0,26,88,0,0,26,88,0,0,36,88,0,0,36,88,0,0,40,88,0,0,40,88,0,0,40,88,0,0,42,88,0,0,42,88,0,0,42,88,0,0,42,88,0,0,42,88,0,0,42,88,0,0,44,88,0,0,44,88,0,0,44,88,0,0,44,88,0,0,44,88,0,0,44,88,0,0,44,88,0,0,44,88,0,0,44,88,0,0,46,88,0,0,46,88,0,0,48,88,0,0,54,88,0,0,54,88,0,0,54,88,0,0,56,88,0,0,62,88,0,0,66,88,0,0,66,88,0,0,66,88,0,0,68,88,0,0,70,88,0,0,74,88,0,0,80,88,0,0,80,88,0,0,84,88,0,0,84,88,0,0,84,88,0,0,84,88,0,0,84,88,0,0,84,88,0,0,90,88,0,0,94,88,0,0,94,88,0,0,100,88,0,0,100,88,0,0,100,88,0,0,100,88,0,0,100,88,0,0,100,88,0,0,100,88,0,0,100,88,0,0,102,88,0,0,106,88,0,0,106,88,0,0,112,88,0,0,114,88,0,0,116,88,0,0,118,88,0,0,120,88,0,0,120,88,0,0,126,88,0,0,132,88,0,0,132,88,0,0,132,88,0,0,132,88,0,0,132,88,0,0,134,88,0,0,134,88,0,0,134,88,0,0,136,88,0,0,136,88,0,0,144,88,0,0,144,88,0,0,146,88,0,0,146,88,0,0,146,88,0,0,146,88,0,0,148,88,0,0,148,88,0,0,148,88,0,0,148,88,0,0,148,88,0,0,150,88,0,0,158,88,0,0,158,88,0,0,158,88,0,0,162,88,0,0,164,88,0,0,164,88,0,0,164,88,0,0,164,88,0,0,168,88,0,0,168,88,0,0,168,88,0,0,176,88,0,0,180,88,0,0,182,88,0,0,184,88,0,0,194,88,0,0,194,88,0,0,194,88,0,0,196,88,0,0,196,88,0,0,196,88,0,0,196,88,0,0,196,88,0,0,196,88,0,0,196,88,0,0,196,88,0,0,196,88,0,0,196,88,0,0,196,88,0,0,196,88,0,0,200,88,0,0,200,88,0,0,208,88,0,0,210,88,0,0,210,88,0,0,210,88,0,0,210,88,0,0,212,88,0,0,212,88,0,0,220,88,0,0,222,88,0,0,230,88,0,0,230,88,0,0,234,88,0,0,234,88,0,0,234,88,0,0,238,88,0,0,246,88,0,0,0,89,0,0,2,89,0,0,2,89,0,0,8,89,0,0,10,89,0,0,10,89,0,0,14,89,0,0,14,89,0,0,16,89,0,0,16,89,0,0,16,89,0,0,16,89,0,0,18,89,0,0,24,89,0,0,24,89,0,0,24,89,0,0,28,89,0,0,32,89,0,0,32,89,0,0,32,89,0,0,32,89,0,0,32,89,0,0,32,89,0,0,32,89,0,0,32,89,0,0,34,89,0,0,48,89,0,0,48,89,0,0,48,89,0,0,52,89,0,0,52,89,0,0,52,89,0,0,58,89,0,0,58,89,0,0,58,89,0,0,58,89,0,0,58,89,0,0,68,89,0,0,68,89,0,0,68,89,0,0,68,89,0,0,68,89,0,0,70,89,0,0,74,89,0,0,74,89,0,0,76,89,0,0,76,89,0,0,76,89,0,0,82,89,0,0,86,89,0,0,86,89,0,0,90,89,0,0,90,89,0,0,92,89,0,0,92,89,0,0,94,89,0,0,94,89,0,0,96,89,0,0,96,89,0,0,96,89,0,0,96,89,0,0,96,89,0,0,96,89,0,0,104,89,0,0,104,89,0,0,104,89,0,0,104,89,0,0,104,89,0,0,106,89,0,0,108,89,0,0,110,89,0,0,114,89,0,0,114,89,0,0,114,89,0,0,116,89,0,0,122,89,0,0,122,89,0,0,122,89,0,0,124,89,0,0,124,89,0,0,126,89,0,0,126,89,0,0,126,89,0,0,126,89,0,0,126,89,0,0,128,89,0,0,136,89,0,0,138,89,0,0,138,89,0,0,146,89,0,0,148,89,0,0,148,89,0,0,148,89,0,0,148,89,0,0,150,89,0,0,150,89,0,0,150,89,0,0,150,89,0,0,150,89,0,0,158,89,0,0,160,89,0,0,160,89,0,0,160,89,0,0,166,89,0,0,178,89,0,0,178,89,0,0,182,89,0,0,184,89,0,0,196,89,0,0,196,89,0,0,196,89,0,0,196,89,0,0,198,89,0,0,204,89,0,0,206,89,0,0,206,89,0,0,206,89,0,0,208,89,0,0,210,89,0,0,214,89,0,0,216,89,0,0,218,89,0,0,218,89,0,0,218,89,0,0,222,89,0,0,222,89,0,0,226,89,0,0,226,89,0,0,226,89,0,0,228,89,0,0,230,89,0,0,236,89,0,0,238,89,0,0,240,89,0,0,240,89,0,0,240,89,0,0,240,89,0,0,250,89,0,0,0,90,0,0,2,90,0,0,2,90,0,0,4,90,0,0,4,90,0,0,6,90,0,0,6,90,0,0,6,90,0,0,6,90,0,0,6,90,0,0,6,90,0,0,6,90,0,0,8,90,0,0,14,90,0,0,14,90,0,0,14,90,0,0,16,90,0,0,18,90,0,0,20,90,0,0,26,90,0,0,26,90,0,0,26,90,0,0,26,90,0,0,30,90,0,0,30,90,0,0,32,90,0,0,32,90,0,0,32,90,0,0,32,90,0,0,32,90,0,0,32,90,0,0,32,90,0,0,32,90,0,0,32,90,0,0,32,90,0,0,32,90,0,0,34,90,0,0,34,90,0,0,34,90,0,0,36,90,0,0,36,90,0,0,36,90,0,0,36,90,0,0,38,90,0,0,42,90,0,0,44,90,0,0,44,90,0,0,46,90,0,0,48,90,0,0,48,90,0,0,48,90,0,0,48,90,0,0,50,90,0,0,50,90,0,0,50,90,0,0,52,90,0,0,52,90,0,0,56,90,0,0,56,90,0,0,56,90,0,0,56,90,0,0,56,90,0,0,60,90,0,0,72,90,0,0,72,90,0,0,88,90,0,0,88,90,0,0,88,90,0,0,88,90,0,0,88,90,0,0,88,90,0,0,88,90,0,0,88,90,0,0,88,90,0,0,92,90,0,0,92,90,0,0,92,90,0,0,92,90,0,0,94,90,0,0,94,90,0,0,96,90,0,0,98,90,0,0,100,90,0,0,106,90,0,0,106,90,0,0,112,90,0,0,112,90,0,0,116,90,0,0,120,90,0,0,122,90,0,0,122,90,0,0,122,90,0,0,122,90,0,0,122,90,0,0,122,90,0,0,122,90,0,0,122,90,0,0,130,90,0,0,130,90,0,0,130,90,0,0,130,90,0,0,134,90,0,0,134,90,0,0,134,90,0,0,138,90,0,0,140,90,0,0,142,90,0,0,146,90,0,0,146,90,0,0,152,90,0,0,158,90,0,0,158,90,0,0,162,90,0,0,162,90,0,0,162,90,0,0,162,90,0,0,162,90,0,0,162,90,0,0,162,90,0,0,162,90,0,0,162,90,0,0,164,90,0,0,164,90,0,0,168,90,0,0,172,90,0,0,172,90,0,0,172,90,0,0,176,90,0,0,176,90,0,0,178,90,0,0,178,90,0,0,178,90,0,0,178,90,0,0,178,90,0,0,178,90,0,0,178,90,0,0,178,90,0,0,178,90,0,0,184,90,0,0,184,90,0,0,186,90,0,0,186,90,0,0,188,90,0,0,188,90,0,0,190,90,0,0,200,90,0,0,202,90,0,0,204,90,0,0,206,90,0,0,208,90,0,0,208,90,0,0,210,90,0,0,214,90,0,0,226,90,0,0,226,90,0,0,226,90,0,0,226,90,0,0,228,90,0,0,230,90,0,0,230,90,0,0,232,90,0,0,236,90,0,0,238,90,0,0,238,90,0,0,238,90,0,0,238,90,0,0,238,90,0,0,238,90,0,0,240,90,0,0,240,90,0,0,240,90,0,0,240,90,0,0,240,90,0,0,242,90,0,0,242,90,0,0,244,90,0,0,244,90,0,0,246,90,0,0,246,90,0,0,246,90,0,0,252,90,0,0,252,90,0,0,252,90,0,0,254,90,0,0,254,90,0,0,2,91,0,0,2,91,0,0,2,91,0,0,6,91,0,0,8,91,0,0,8,91,0,0,10,91,0,0,14,91,0,0,16,91,0,0,18,91,0,0,18,91,0,0,18,91,0,0,20,91,0,0,20,91,0,0,20,91,0,0,20,91,0,0,20,91,0,0,30,91,0,0,30,91,0,0,36,91,0,0,36,91,0,0,42,91,0,0,48,91,0,0,56,91,0,0,58,91,0,0,58,91,0,0,60,91,0,0,60,91,0,0,60,91,0,0,60,91,0,0,60,91,0,0,60,91,0,0,60,91,0,0,60,91,0,0,64,91,0,0,66,91,0,0,68,91,0,0,74,91,0,0,74,91,0,0,74,91,0,0,74,91,0,0,76,91,0,0,78,91,0,0,78,91,0,0,78,91,0,0,78,91,0,0,78,91,0,0,82,91,0,0,86,91,0,0,88,91,0,0,90,91,0,0,98,91,0,0,98,91,0,0,100,91,0,0,100,91,0,0,100,91,0,0,102,91,0,0,102,91,0,0,102,91,0,0,106,91,0,0,106,91,0,0,112,91,0,0,112,91,0,0,118,91,0,0,122,91,0,0,124,91,0,0,124,91,0,0,124,91,0,0,126,91,0,0,126,91,0,0,126,91,0,0,128,91,0,0,128,91,0,0,128,91,0,0,128,91,0,0,128,91,0,0,128,91,0,0,128,91,0,0,134,91,0,0,134,91,0,0,134,91,0,0,134,91,0,0,138,91,0,0,140,91,0,0,140,91,0,0,140,91,0,0,140,91,0,0,140,91,0,0,142,91,0,0,142,91,0,0,142,91,0,0,142,91,0,0,144,91,0,0,144,91,0,0,146,91,0,0,148,91,0,0,154,91,0,0,154,91,0,0,158,91,0,0,160,91,0,0,160,91,0,0,160,91,0,0,166,91,0,0,166,91,0,0,166,91,0,0,166,91,0,0,168,91,0,0,168,91,0,0,176,91,0,0,178,91,0,0,178,91,0,0,178,91,0,0,184,91,0,0,188,91,0,0,188,91,0,0,190,91,0,0,192,91,0,0,194,91,0,0,194,91,0,0,194,91,0,0,194,91,0,0,194,91,0,0,198,91,0,0,198,91,0,0,198,91,0,0,198,91,0,0,198,91,0,0,198,91,0,0,200,91,0,0,204,91,0,0,204,91,0,0,210,91,0,0,210,91,0,0,210,91,0,0,210,91,0,0,210,91,0,0,210,91,0,0,220,91,0,0,220,91,0,0,220,91,0,0,226,91,0,0,226,91,0,0,228,91,0,0,228,91,0,0,228,91,0,0,228,91,0,0,228,91,0,0,228,91,0,0,228,91,0,0,234,91,0,0,234,91,0,0,234,91,0,0,238,91,0,0,238,91,0,0,242,91,0,0,242,91,0,0,246,91,0,0,0,92,0,0,0,92,0,0,4,92,0,0,4,92,0,0,6,92,0,0,8,92,0,0,12,92,0,0,14,92,0,0,14,92,0,0,14,92,0,0,18,92,0,0,20,92,0,0,22,92,0,0,24,92,0,0,34,92,0,0,38,92,0,0,38,92,0,0,38,92,0,0,38,92,0,0,38,92,0,0,38,92,0,0,42,92,0,0,42,92,0,0,44,92,0,0,44,92,0,0,48,92,0,0,48,92,0,0,52,92,0,0,54,92,0,0,54,92,0,0,60,92,0,0,70,92,0,0,70,92,0,0,70,92,0,0,74,92,0,0,78,92,0,0,78,92,0,0,80,92,0,0,86,92,0,0,88,92,0,0,92,92,0,0,98,92,0,0,98,92,0,0,98,92,0,0,100,92,0,0,108,92,0,0,114,92,0,0,116,92,0,0,120,92,0,0,120,92,0,0,120,92,0,0,122,92,0,0,126,92,0,0,126,92,0,0,126,92,0,0,126,92,0,0,128,92,0,0,128,92,0,0,128,92,0,0,134,92,0,0,136,92,0,0,142,92,0,0,142,92,0,0,146,92,0,0,146,92,0,0,146,92,0,0,148,92,0,0,154,92,0,0,166,92,0,0,174,92,0,0,174,92,0,0,178,92,0,0,178,92,0,0,182,92,0,0,186,92,0,0,192,92,0,0,192,92,0,0,192,92,0,0,194,92,0,0,198,92,0,0,198,92,0,0,200,92,0,0,206,92,0,0,208,92,0,0,214,92,0,0,214,92,0,0,214,92,0,0,216,92,0,0,220,92,0,0,220,92,0,0,220,92,0,0,220,92,0,0,222,92,0,0,222,92,0,0,230,92,0,0,232,92,0,0,234,92,0,0,244,92,0,0,244,92,0,0,244,92,0,0,244,92,0,0,244,92,0,0,244,92,0,0,246,92,0,0,246,92,0,0,246,92,0,0,246,92,0,0,248,92,0,0,248,92,0,0,250,92,0,0,250,92,0,0,252,92,0,0,4,93,0,0,4,93,0,0,4,93,0,0,4,93,0,0,6,93,0,0,6,93,0,0,6,93,0,0,6,93,0,0,6,93,0,0,6,93,0,0,8,93,0,0,8,93,0,0,10,93,0,0,10,93,0,0,10,93,0,0,10,93,0,0,10,93,0,0,12,93,0,0,16,93,0,0,16,93,0,0,16,93,0,0,16,93,0,0,16,93,0,0,16,93,0,0,24,93,0,0,24,93,0,0,24,93,0,0,26,93,0,0,26,93,0,0,26,93,0,0,26,93,0,0,28,93,0,0,30,93,0,0,32,93,0,0,32,93,0,0,32,93,0,0,44,93,0,0,46,93,0,0,48,93,0,0,48,93,0,0,50,93,0,0,50,93,0,0,50,93,0,0,50,93,0,0,58,93,0,0,66,93,0,0,68,93,0,0,72,93,0,0,72,93,0,0,74,93,0,0,74,93,0,0,74,93,0,0,80,93,0,0,86,93,0,0,92,93,0,0,94,93,0,0,98,93,0,0,102,93,0,0,104,93,0,0,104,93,0,0,116,93,0,0,122,93,0,0,126,93,0,0,128,93,0,0,138,93,0,0,138,93,0,0,138,93,0,0,138,93,0,0,142,93,0,0,144,93,0,0,146,93,0,0,146,93,0,0,146,93,0,0,148,93,0,0,148,93,0,0,148,93,0,0,148,93,0,0,152,93,0,0,154,93,0,0,162,93,0,0,164,93,0,0,164,93,0,0,168,93,0,0,170,93,0,0,170,93,0,0,172,93,0,0,172,93,0,0,174,93,0,0,176,93,0,0,184,93,0,0,184,93,0,0,190,93,0,0,190,93,0,0,190,93,0,0,194,93,0,0,194,93,0,0,194,93,0,0,196,93,0,0,196,93,0,0,198,93,0,0,198,93,0,0,204,93,0,0,204,93,0,0,208,93,0,0,220,93,0,0,230,93,0,0,230,93,0,0,230,93,0,0,234,93,0,0,238,93,0,0,238,93,0,0,238,93,0,0,242,93,0,0,242,93,0,0,244,93,0,0,246,93,0,0,248,93,0,0,248,93,0,0,250,93,0,0,250,93,0,0,250,93,0,0,254,93,0,0,0,94,0,0,0,94,0,0,0,94,0,0,6,94,0,0,8,94,0,0,8,94,0,0,8,94,0,0,8,94,0,0,10,94,0,0,16,94,0,0,22,94,0,0,22,94,0,0,32,94,0,0,32,94,0,0,32,94,0,0,32,94,0,0,42,94,0,0,52,94,0,0,54,94,0,0,62,94,0,0,62,94,0,0,68,94,0,0,68,94,0,0,68,94,0,0,70,94,0,0,70,94,0,0,72,94,0,0,72,94,0,0,76,94,0,0,76,94,0,0,80,94,0,0,84,94,0,0,86,94,0,0,96,94,0,0,98,94,0,0,100,94,0,0,102,94,0,0,106,94,0,0,106,94,0,0,106,94,0,0,106,94,0,0,106,94,0,0,106,94,0,0,108,94,0,0,108,94,0,0,108,94,0,0,108,94,0,0,112,94,0,0,112,94,0,0,116,94,0,0,116,94,0,0,116,94,0,0,118,94,0,0,118,94,0,0,118,94,0,0,126,94,0,0,128,94,0,0,128,94,0,0,140,94,0,0,142,94,0,0,150,94,0,0,152,94,0,0,156,94,0,0,158,94,0,0,158,94,0,0,160,94,0,0,160,94,0,0,160,94,0,0,160,94,0,0,162,94,0,0,162,94,0,0,166,94,0,0,166,94,0,0,168,94,0,0,176,94,0,0,176,94,0,0,176,94,0,0,182,94,0,0,188,94,0,0,190,94,0,0,192,94,0,0,192,94,0,0,196,94,0,0,196,94,0,0,206,94,0,0,206,94,0,0,206,94,0,0,206,94,0,0,208,94,0,0,210,94,0,0,210,94,0,0,210,94,0,0,216,94,0,0,216,94,0,0,220,94,0,0,222,94,0,0,226,94,0,0,236,94,0,0,236,94,0,0,240,94,0,0,240,94,0,0,242,94,0,0,242,94,0,0,242,94,0,0,242,94,0,0,250,94,0,0,250,94,0,0,250,94,0,0,2,95,0,0,2,95,0,0,2,95,0,0,2,95,0,0,2,95,0,0,2,95,0,0,4,95,0,0,6,95,0,0,6,95,0,0,6,95,0,0,14,95,0,0,20,95,0,0,20,95,0,0,24,95,0,0,28,95,0,0,30,95,0,0,30,95,0,0,32,95,0,0,34,95,0,0,36,95,0,0,36,95,0,0,36,95,0,0,38,95,0,0,40,95,0,0,44,95,0,0,52,95,0,0,52,95,0,0,52,95,0,0,54,95,0,0,54,95,0,0,56,95,0,0,60,95,0,0,60,95,0,0,62,95,0,0,62,95,0,0,62,95,0,0,62,95,0,0,68,95,0,0,68,95,0,0,76,95,0,0,76,95,0,0,76,95,0,0,80,95,0,0,84,95,0,0,84,95,0,0,86,95,0,0,86,95,0,0,88,95,0,0,88,95,0,0,90,95,0,0,90,95,0,0,92,95,0,0,92,95,0,0,94,95,0,0,100,95,0,0,102,95,0,0,102,95,0,0,106,95,0,0,106,95,0,0,106,95,0,0,106,95,0,0,114,95,0,0,118,95,0,0,118,95,0,0,120,95,0,0,126,95,0,0,134,95,0,0,136,95,0,0,138,95,0,0,138,95,0,0,138,95,0,0,138,95,0,0,138,95,0,0,142,95,0,0,144,95,0,0,146,95,0,0,150,95,0,0,150,95,0,0,150,95,0,0,156,95,0,0,156,95,0,0,156,95,0,0,156,95,0,0,156,95,0,0,156,95,0,0,158,95,0,0,158,95,0,0,158,95,0,0,158,95,0,0,160,95,0,0,162,95,0,0,170,95,0,0,170,95,0,0,176,95,0,0,176,95,0,0,176,95,0,0,176,95,0,0,178,95,0,0,178,95,0,0,182,95,0,0,182,95,0,0,182,95,0,0,186,95,0,0,186,95,0,0,186,95,0,0,186,95,0,0,188,95,0,0,192,95,0,0,196,95,0,0,196,95,0,0,202,95,0,0,204,95,0,0,208,95,0,0,208,95,0,0,210,95,0,0,216,95,0,0,216,95,0,0,222,95,0,0,224,95,0,0,228,95,0,0,228,95,0,0,230,95,0,0,232,95,0,0,234,95,0,0,236,95,0,0,236,95,0,0,238,95,0,0,238,95,0,0,246,95,0,0,248,95,0,0,250,95,0,0,250,95,0,0,250,95,0,0,250,95,0,0,252,95,0,0,252,95,0,0,252,95,0,0,4,96,0,0,6,96,0,0,6,96,0,0,10,96,0,0,10,96,0,0,10,96,0,0,10,96,0,0,10,96,0,0,10,96,0,0,16,96,0,0,16,96,0,0,16,96,0,0,20,96,0,0,20,96,0,0,20,96,0,0,20,96,0,0,26,96,0,0,26,96,0,0,26,96,0,0,26,96,0,0,26,96,0,0,26,96,0,0,30,96,0,0,34,96,0,0,36,96,0,0,36,96,0,0,40,96,0,0,46,96,0,0,46,96,0,0,46,96,0,0,52,96,0,0,52,96,0,0,52,96,0,0,58,96,0,0,70,96,0,0,70,96,0,0,70,96,0,0,70,96,0,0,70,96,0,0,70,96,0,0,70,96,0,0,72,96,0,0,72,96,0,0,72,96,0,0,72,96,0,0,80,96,0,0,80,96,0,0,86,96,0,0,88,96,0,0,88,96,0,0,88,96,0,0,88,96,0,0,88,96,0,0,90,96,0,0,98,96,0,0,100,96,0,0,100,96,0,0,100,96,0,0,104,96,0,0,108,96,0,0,108,96,0,0,110,96,0,0,110,96,0,0,110,96,0,0,110,96,0,0,110,96,0,0,110,96,0,0,118,96,0,0,118,96,0,0,118,96,0,0,124,96,0,0,124,96,0,0,128,96,0,0,128,96,0,0,128,96,0,0,128,96,0,0,128,96,0,0,128,96,0,0,136,96,0,0,144,96,0,0,144,96,0,0,146,96,0,0,156,96,0,0,156,96,0,0,160,96,0,0,162,96,0,0,166,96,0,0,170,96,0,0,170,96,0,0,174,96,0,0,176,96,0,0,178,96,0,0,178,96,0,0,182,96,0,0,186,96,0,0,190,96,0,0,192,96,0,0,192,96,0,0,194,96,0,0,198,96,0,0,198,96,0,0,202,96,0,0,204,96,0,0,206,96,0,0,206,96,0,0,214,96,0,0,214,96,0,0,216,96,0,0,216,96,0,0,216,96,0,0,216,96,0,0,220,96,0,0,222,96,0,0,232,96,0,0,232,96,0,0,232,96,0,0,232,96,0,0,234,96,0,0,236,96,0,0,238,96,0,0,238,96,0,0,238,96,0,0,238,96,0,0,238,96,0,0,238,96,0,0,238,96,0,0,238,96,0,0,238,96,0,0,240,96,0,0,242,96,0,0,246,96,0,0,246,96,0,0,248,96,0,0,248,96,0,0,248,96,0,0,248,96,0,0,248,96,0,0,248,96,0,0,248,96,0,0,248,96,0,0,252,96,0,0,254,96,0,0,254,96,0,0,254,96,0,0,0,97,0,0,4,97,0,0,10,97,0,0,14,97,0,0,14,97,0,0,14,97,0,0,20,97,0,0,22,97,0,0,22,97,0,0,22,97,0,0,22,97,0,0,24,97,0,0,24,97,0,0,24,97,0,0,28,97,0,0,30,97,0,0,30,97,0,0,32,97,0,0,32,97,0,0,32,97,0,0,34,97,0,0,44,97,0,0,44,97,0,0,44,97,0,0,44,97,0,0,50,97,0,0,50,97,0,0,50,97,0,0,50,97,0,0,54,97,0,0,54,97,0,0,56,97,0,0,60,97,0,0,62,97,0,0,62,97,0,0,62,97,0,0,62,97,0,0,62,97,0,0,64,97,0,0,64,97,0,0,70,97,0,0,72,97,0,0,72,97,0,0,72,97,0,0,72,97,0,0,76,97,0,0,78,97,0,0,78,97,0,0,78,97,0,0,78,97,0,0,92,97,0,0,92,97,0,0,100,97,0,0,104,97,0,0,104,97,0,0,104,97,0,0,106,97,0,0,106,97,0,0,112,97,0,0,120,97,0,0,120,97,0,0,120,97,0,0,120,97,0,0,120,97,0,0,120,97,0,0,124,97,0,0,128,97,0,0,134,97,0,0,138,97,0,0,138,97,0,0,146,97,0,0,146,97,0,0,152,97,0,0,160,97,0,0,162,97,0,0,162,97,0,0,166,97,0,0,170,97,0,0,172,97,0,0,174,97,0,0,178,97,0,0,178,97,0,0,180,97,0,0,180,97,0,0,182,97,0,0,182,97,0,0,182,97,0,0,182,97,0,0,186,97,0,0,186,97,0,0,190,97,0,0,192,97,0,0,192,97,0,0,194,97,0,0,194,97,0,0,194,97,0,0,194,97,0,0,196,97,0,0,200,97,0,0,200,97,0,0,200,97,0,0,200,97,0,0,200,97,0,0,204,97,0,0,204,97,0,0,210,97,0,0,210,97,0,0,214,97,0,0,214,97,0,0,218,97,0,0,218,97,0,0,228,97,0,0,230,97,0,0,232,97,0,0,236,97,0,0,242,97,0,0,242,97,0,0,246,97,0,0,252,97,0,0,254,97,0,0,0,98,0,0,0,98,0,0,0,98,0,0,2,98,0,0,2,98,0,0,6,98,0,0,8,98,0,0,16,98,0,0,18,98,0,0,18,98,0,0,26,98,0,0,28,98,0,0,30,98,0,0,30,98,0,0,30,98,0,0,36,98,0,0,36,98,0,0,36,98,0,0,36,98,0,0,36,98,0,0,42,98,0,0,42,98,0,0,42,98,0,0,46,98,0,0,46,98,0,0,48,98,0,0,52,98,0,0,54,98,0,0,54,98,0,0,54,98,0,0,58,98,0,0,58,98,0,0,62,98,0,0,62,98,0,0,62,98,0,0,68,98,0,0,70,98,0,0,76,98,0,0,78,98,0,0,80,98,0,0,80,98,0,0,82,98,0,0,86,98,0,0,94,98,0,0,94,98,0,0,96,98,0,0,96,98,0,0,100,98,0,0,106,98,0,0,106,98,0,0,108,98,0,0,108,98,0,0,108,98,0,0,108,98,0,0,110,98,0,0,122,98,0,0,122,98,0,0,122,98,0,0,122,98,0,0,122,98,0,0,122,98,0,0,122,98,0,0,122,98,0,0,126,98,0,0,128,98,0,0,128,98,0,0,128,98,0,0,128,98,0,0,132,98,0,0,132,98,0,0,136,98,0,0,136,98,0,0,146,98,0,0,152,98,0,0,152,98,0,0,154,98,0,0,158,98,0,0,166,98,0,0,170,98,0,0,172,98,0,0,174,98,0,0,174,98,0,0,174,98,0,0,176,98,0,0,176,98,0,0,178,98,0,0,180,98,0,0,180,98,0,0,180,98,0,0,182,98,0,0,182,98,0,0,182,98,0,0,186,98,0,0,190,98,0,0,194,98,0,0,196,98,0,0,200,98,0,0,202,98,0,0,202,98,0,0,204,98,0,0,204,98,0,0,204,98,0,0,210,98,0,0,212,98,0,0,214,98,0,0,216,98,0,0,220,98,0,0,220,98,0,0,224,98,0,0,224,98,0,0,226,98,0,0,228,98,0,0,228,98,0,0,230,98,0,0,230,98,0,0,236,98,0,0,236,98,0,0,238,98,0,0,238,98,0,0,238,98,0,0,242,98,0,0,246,98,0,0,246,98,0,0,246,98,0,0,250,98,0,0,250,98,0,0,250,98,0,0,250,98,0,0,250,98,0,0,254,98,0,0,254,98,0,0,254,98,0,0,254,98,0,0,0,99,0,0,0,99,0,0,0,99,0,0,2,99,0,0,2,99,0,0,2,99,0,0,2,99,0,0,2,99,0,0,2,99,0,0,2,99,0,0,4,99,0,0,4,99,0,0,4,99,0,0,6,99,0,0,12,99,0,0,14,99,0,0,18,99,0,0,18,99,0,0,20,99,0,0,20,99,0,0,20,99,0,0,20,99,0,0,26,99,0,0,28,99,0,0,28,99,0,0,28,99,0,0,28,99,0,0,32,99,0,0,34,99,0,0,34,99,0,0,36,99,0,0,36,99,0,0,40,99,0,0,48,99,0,0,50,99,0,0,54,99,0,0,54,99,0,0,54,99,0,0,54,99,0,0,54,99,0,0,56,99,0,0,60,99,0,0,62,99,0,0,66,99,0,0,66,99,0,0,66,99,0,0,66,99,0,0,68,99,0,0,68,99,0,0,68,99,0,0,68,99,0,0,68,99,0,0,76,99,0,0,86,99,0,0,94,99,0,0,94,99,0,0,94,99,0,0,94,99,0,0,94,99,0,0,110,99,0,0,110,99,0,0,110,99,0,0,110,99,0,0,110,99,0,0,110,99,0,0,116,99,0,0,116,99,0,0,118,99,0,0,124,99,0,0,128,99,0,0,134,99,0,0,138,99,0,0,144,99,0,0,144,99,0,0,150,99,0,0,152,99,0,0,152,99,0,0,154,99,0,0,164,99,0,0,168,99,0,0,168,99,0,0,168,99,0,0,174,99,0,0,174,99,0,0,176,99,0,0,176,99,0,0,180,99,0,0,182,99,0,0,184,99,0,0,184,99,0,0,186,99,0,0,186,99,0,0,188,99,0,0,190,99,0,0,194,99,0,0,194,99,0,0,194,99,0,0,194,99,0,0,194,99,0,0,196,99,0,0,208,99,0,0,212,99,0,0,214,99,0,0,214,99,0,0,214,99,0,0,216,99,0,0,218,99,0,0,218,99,0,0,222,99,0,0,226,99,0,0,228,99,0,0,238,99,0,0,238,99,0,0,240,99,0,0,248,99,0,0,248,99,0,0,254,99,0,0,0,100,0,0,0,100,0,0,0,100,0,0,0,100,0,0,0,100,0,0,0,100,0,0,4,100,0,0,12,100,0,0,16,100,0,0,16,100,0,0,20,100,0,0,22,100,0,0,22,100,0,0,24,100,0,0,24,100,0,0,24,100,0,0,24,100,0,0,24,100,0,0,24,100,0,0,26,100,0,0,26,100,0,0,32,100,0,0,32,100,0,0,32,100,0,0,34,100,0,0,34,100,0,0,34,100,0,0,34,100,0,0,34,100,0,0,38,100,0,0,40,100,0,0,40,100,0,0,44,100,0,0,44,100,0,0,48,100,0,0,54,100,0,0,60,100,0,0,64,100,0,0,66,100,0,0,66,100,0,0,70,100,0,0,70,100,0,0,76,100,0,0,76,100,0,0,76,100,0,0,76,100,0,0,76,100,0,0,78,100,0,0,80,100,0,0,84,100,0,0,84,100,0,0,88,100,0,0,92,100,0,0,92,100,0,0,96,100,0,0,106,100,0,0,110,100,0,0,116,100,0,0,116,100,0,0,118,100,0,0,118,100,0,0,118,100,0,0,118,100,0,0,118,100,0,0,118,100,0,0,120,100,0,0,122,100,0,0,124,100,0,0,124,100,0,0,128,100,0,0,128,100,0,0,128,100,0,0,128,100,0,0,134,100,0,0,136,100,0,0,142,100,0,0,142,100,0,0,142,100,0,0,142,100,0,0,146,100,0,0,148,100,0,0,158,100,0,0,164,100,0,0,164,100,0,0,166,100,0,0,168,100,0,0,170,100,0,0,170,100,0,0,176,100,0,0,188,100,0,0,190,100,0,0,190,100,0,0,190,100,0,0,192,100,0,0,192,100,0,0,202,100,0,0,204,100,0,0,204,100,0,0,204,100,0,0,204,100,0,0,204,100,0,0,206,100,0,0,206,100,0,0,214,100,0,0,214,100,0,0,216,100,0,0,216,100,0,0,216,100,0,0,216,100,0,0,218,100,0,0,220,100,0,0,220,100,0,0,220,100,0,0,222,100,0,0,222,100,0,0,222,100,0,0,222,100,0,0,222,100,0,0,222,100,0,0,224,100,0,0,224,100,0,0,224,100,0,0,226,100,0,0,228,100,0,0,228,100,0,0,234,100,0,0,240,100,0,0,240,100,0,0,240,100,0,0,242,100,0,0,242,100,0,0,246,100,0,0,252,100,0,0,252,100,0,0,254,100,0,0,2,101,0,0,2,101,0,0,2,101,0,0,6,101,0,0,8,101,0,0,8,101,0,0,8,101,0,0,8,101,0,0,8,101,0,0,8,101,0,0,10,101,0,0,12,101,0,0,14,101,0,0,14,101,0,0,14,101,0,0,16,101,0,0,16,101,0,0,16,101,0,0,18,101,0,0,22,101,0,0,24,101,0,0,24,101,0,0,26,101,0,0,30,101,0,0,32,101,0,0,34,101,0,0,40,101,0,0,40,101,0,0,40,101,0,0,44,101,0,0,52,101,0,0,56,101,0,0,58,101,0,0,58,101,0,0,60,101,0,0,62,101,0,0,62,101,0,0,64,101,0,0,68,101,0,0,72,101,0,0,72,101,0,0,76,101,0,0,80,101,0,0,80,101,0,0,80,101,0,0,80,101,0,0,80,101,0,0,84,101,0,0,84,101,0,0,90,101,0,0,92,101,0,0,94,101,0,0,94,101,0,0,94,101,0,0,98,101,0,0,104,101,0,0,108,101,0,0,108,101,0,0,110,101,0,0,114,101,0,0,118,101,0,0,118,101,0,0,124,101,0,0,130,101,0,0,130,101,0,0,130,101,0,0,130,101,0,0,130,101,0,0,134,101,0,0,134,101,0,0,140,101,0,0,140,101,0,0,140,101,0,0,140,101,0,0,144,101,0,0,144,101,0,0,152,101,0,0,154,101,0,0,158,101,0,0,160,101,0,0,160,101,0,0,164,101,0,0,164,101,0,0,164,101,0,0,172,101,0,0,172,101,0,0,178,101,0,0,178,101,0,0,180,101,0,0,182,101,0,0,188,101,0,0,188,101,0,0,190,101,0,0,190,101,0,0,190,101,0,0,192,101,0,0,192,101,0,0,196,101,0,0,200,101,0,0,202,101,0,0,204,101,0,0,208,101,0,0,208,101,0,0,208,101,0,0,208,101,0,0,210,101,0,0,210,101,0,0,212,101,0,0,212,101,0,0,214,101,0,0,214,101,0,0,216,101,0,0,218,101,0,0,220,101,0,0,222,101,0,0,224,101,0,0,224,101,0,0,224,101,0,0,226,101,0,0,226,101,0,0,228,101,0,0,230,101,0,0,230,101,0,0,230,101,0,0,234,101,0,0,234,101,0,0,240,101,0,0,240,101,0,0,240,101,0,0,242,101,0,0,242,101,0,0,244,101,0,0,244,101,0,0,246,101,0,0,246,101,0,0,250,101,0,0,250,101,0,0,254,101,0,0,6,102,0,0,6,102,0,0,10,102,0,0,14,102,0,0,16,102,0,0,16,102,0,0,16,102,0,0,22,102,0,0,28,102,0,0,32,102,0,0,38,102,0,0,42,102,0,0,44,102,0,0,46,102,0,0,46,102,0,0,46,102,0,0,46,102,0,0,46,102,0,0,46,102,0,0,52,102,0,0,52,102,0,0,60,102,0,0,68,102,0,0,68,102,0,0,68,102,0,0,72,102,0,0,80,102,0,0,82,102,0,0,82,102,0,0,82,102,0,0,82,102,0,0,84,102,0,0,84,102,0,0,84,102,0,0,88,102,0,0,88,102,0,0,90,102,0,0,90,102,0,0,92,102,0,0,110,102,0,0,112,102,0,0,112,102,0,0,114,102,0,0,114,102,0,0,120,102,0,0,126,102,0,0,128,102,0,0,130,102,0,0,130,102,0,0,132,102,0,0,132,102,0,0,132,102,0,0,136,102,0,0,136,102,0,0,142,102,0,0,144,102,0,0,150,102,0,0,150,102,0,0,150,102,0,0,150,102,0,0,150,102,0,0,150,102,0,0,150,102,0,0,150,102,0,0,158,102,0,0,158,102,0,0,158,102,0,0,162,102,0,0,162,102,0,0,172,102,0,0,174,102,0,0,180,102,0,0,182,102,0,0,182,102,0,0,182,102,0,0,182,102,0,0,186,102,0,0,190,102,0,0,190,102,0,0,194,102,0,0,194,102,0,0,196,102,0,0,200,102,0,0,200,102,0,0,200,102,0,0,200,102,0,0,200,102,0,0,204,102,0,0,204,102,0,0,204,102,0,0,208,102,0,0,208,102,0,0,208,102,0,0,208,102,0,0,214,102,0,0,214,102,0,0,214,102,0,0,216,102,0,0,220,102,0,0,220,102,0,0,224,102,0,0,224,102,0,0,228,102,0,0,228,102,0,0,228,102,0,0,230,102,0,0,232,102,0,0,232,102,0,0,234,102,0,0,236,102,0,0,238,102,0,0,242,102,0,0,244,102,0,0,246,102,0,0,0,103,0,0,0,103,0,0,0,103,0,0,2,103,0,0,6,103,0,0,6,103,0,0,6,103,0,0,6,103,0,0,8,103,0,0,8,103,0,0,10,103,0,0,10,103,0,0,10,103,0,0,10,103,0,0,10,103,0,0,10,103,0,0,20,103,0,0,22,103,0,0,24,103,0,0,24,103,0,0,26,103,0,0,36,103,0,0,36,103,0,0,36,103,0,0,36,103,0,0,36,103,0,0,40,103,0,0,44,103,0,0,44,103,0,0,48,103,0,0,50,103,0,0,50,103,0,0,52,103,0,0,52,103,0,0,60,103,0,0,60,103,0,0,66,103,0,0,66,103,0,0,66,103,0,0,68,103,0,0,68,103,0,0,72,103,0,0,80,103,0,0,82,103,0,0,84,103,0,0,84,103,0,0,88,103,0,0,92,103,0,0,92,103,0,0,92,103,0,0,96,103,0,0,96,103,0,0,96,103,0,0,98,103,0,0,100,103,0,0,104,103,0,0,104,103,0,0,110,103,0,0,112,103,0,0,112,103,0,0,116,103,0,0,118,103,0,0,122,103,0,0,122,103,0,0,122,103,0,0,124,103,0,0,124,103,0,0,128,103,0,0,132,103,0,0,138,103,0,0,138,103,0,0,140,103,0,0,140,103,0,0,146,103,0,0,148,103,0,0,148,103,0,0,150,103,0,0,150,103,0,0,150,103,0,0,150,103,0,0,152,103,0,0,158,103,0,0,158,103,0,0,164,103,0,0,164,103,0,0,164,103,0,0,164,103,0,0,164,103,0,0,166,103,0,0,166,103,0,0,166,103,0,0,166,103,0,0,166,103,0,0,168,103,0,0,168,103,0,0,168,103,0,0,168,103,0,0,168,103,0,0,168,103,0,0,170,103,0,0,174,103,0,0,180,103,0,0,180,103,0,0,180,103,0,0,180,103,0,0,180,103,0,0,184,103,0,0,188,103,0,0,188,103,0,0,190,103,0,0,196,103,0,0,202,103,0,0,202,103,0,0,202,103,0,0,210,103,0,0,214,103,0,0,214,103,0,0,214,103,0,0,214,103,0,0,218,103,0,0,218,103,0,0,218,103,0,0,230,103,0,0,230,103,0,0,230,103,0,0,230,103,0,0,234,103,0,0,234,103,0,0,236,103,0,0,238,103,0,0,240,103,0,0,240,103,0,0,240,103,0,0,252,103,0,0,254,103,0,0,254,103,0,0,254,103,0,0,254,103,0,0,2,104,0,0,2,104,0,0,4,104,0,0,4,104,0,0,14,104,0,0,14,104,0,0,16,104,0,0,16,104,0,0,16,104,0,0,20,104,0,0,24,104,0,0,26,104,0,0,26,104,0,0,26,104,0,0,26,104,0,0,26,104,0,0,26,104,0,0,26,104,0,0,26,104,0,0,30,104,0,0,38,104,0,0,44,104,0,0,52,104,0,0,58,104,0,0,58,104,0,0,58,104,0,0,58,104,0,0,58,104,0,0,62,104,0,0,68,104,0,0,68,104,0,0,68,104,0,0,70,104,0,0,70,104,0,0,72,104,0,0,72,104,0,0,72,104,0,0,72,104,0,0,74,104,0,0,74,104,0,0,76,104,0,0,76,104,0,0,76,104,0,0,82,104,0,0,84,104,0,0,86,104,0,0,86,104,0,0,88,104,0,0,90,104,0,0,90,104,0,0,92,104,0,0,92,104,0,0,92,104,0,0,92,104,0,0,102,104,0,0,106,104,0,0,106,104,0,0,112,104,0,0,114,104,0,0,116,104,0,0,116,104,0,0,120,104,0,0,122,104,0,0,122,104,0,0,130,104,0,0,130,104,0,0,130,104,0,0,130,104,0,0,134,104,0,0,134,104,0,0,140,104,0,0,140,104,0,0,140,104,0,0,140,104,0,0,140,104,0,0,142,104,0,0,148,104,0,0,158,104,0,0,158,104,0,0,160,104,0,0,170,104,0,0,170,104,0,0,170,104,0,0,170,104,0,0,170,104,0,0,170,104,0,0,170,104,0,0,170,104,0,0,174,104,0,0,174,104,0,0,178,104,0,0,178,104,0,0,180,104,0,0,180,104,0,0,186,104,0,0,188,104,0,0,188,104,0,0,194,104,0,0,194,104,0,0,194,104,0,0,198,104,0,0,198,104,0,0,198,104,0,0,198,104,0,0,198,104,0,0,198,104,0,0,198,104,0,0,198,104,0,0,200,104,0,0,208,104,0,0,216,104,0,0,216,104,0,0,216,104,0,0,222,104,0,0,222,104,0,0,224,104,0,0,224,104,0,0,224,104,0,0,224,104,0,0,224,104,0,0,230,104,0,0,230,104,0,0,230,104,0,0,230,104,0,0,232,104,0,0,232,104,0,0,232,104,0,0,234,104,0,0,234,104,0,0,234,104,0,0,234,104,0,0,238,104,0,0,246,104,0,0,252,104,0,0,252,104,0,0,254,104,0,0,254,104,0,0,0,105,0,0,4,105,0,0,4,105,0,0,8,105,0,0,8,105,0,0,8,105,0,0,8,105,0,0,14,105,0,0,16,105,0,0,16,105,0,0,18,105,0,0,22,105,0,0,22,105,0,0,26,105,0,0,26,105,0,0,34,105,0,0,34,105,0,0,40,105,0,0,40,105,0,0,40,105,0,0,40,105,0,0,40,105,0,0,40,105,0,0,42,105,0,0,44,105,0,0,48,105,0,0,48,105,0,0,54,105,0,0,54,105,0,0,54,105,0,0,60,105,0,0,60,105,0,0,60,105,0,0,60,105,0,0,62,105,0,0,64,105,0,0,66,105,0,0,68,105,0,0,70,105,0,0,74,105,0,0,76,105,0,0,76,105,0,0,76,105,0,0,78,105,0,0,82,105,0,0,82,105,0,0,84,105,0,0,84,105,0,0,84,105,0,0,84,105,0,0,84,105,0,0,84,105,0,0,84,105,0,0,84,105,0,0,84,105,0,0,86,105,0,0,86,105,0,0,88,105,0,0,92,105,0,0,94,105,0,0,94,105,0,0,94,105,0,0,102,105,0,0,106,105,0,0,114,105,0,0,116,105,0,0,116,105,0,0,116,105,0,0,122,105,0,0,128,105,0,0,128,105,0,0,128,105,0,0,130,105,0,0,138,105,0,0,138,105,0,0,138,105,0,0,138,105,0,0,138,105,0,0,142,105,0,0,142,105,0,0,142,105,0,0,144,105,0,0,146,105,0,0,146,105,0,0,146,105,0,0,148,105,0,0,150,105,0,0,150,105,0,0,152,105,0,0,152,105,0,0,152,105,0,0,154,105,0,0,154,105,0,0,154,105,0,0,154,105,0,0,154,105,0,0,160,105,0,0,164,105,0,0,166,105,0,0,170,105,0,0,172,105,0,0,176,105,0,0,184,105,0,0,186,105,0,0,190,105,0,0,194,105,0,0,204,105,0,0,206,105,0,0,206,105,0,0,206,105,0,0,208,105,0,0,208,105,0,0,208,105,0,0,208,105,0,0,210,105,0,0,214,105,0,0,216,105,0,0,216,105,0,0,218,105,0,0,218,105,0,0,218,105,0,0,218,105,0,0,228,105,0,0,228,105,0,0,228,105,0,0,232,105,0,0,232,105,0,0,238,105,0,0,238,105,0,0,238,105,0,0,246,105,0,0,254,105,0,0,2,106,0,0,4,106,0,0,4,106,0,0,6,106,0,0,6,106,0,0,8,106,0,0,12,106,0,0,12,106,0,0,12,106,0,0,14,106,0,0,16,106,0,0,18,106,0,0,22,106,0,0,24,106,0,0,24,106,0,0,24,106,0,0,24,106,0,0,24,106,0,0,26,106,0,0,34,106,0,0,34,106,0,0,38,106,0,0,38,106,0,0,42,106,0,0,46,106,0,0,46,106,0,0,52,106,0,0,58,106,0,0,58,106,0,0,60,106,0,0,62,106,0,0,62,106,0,0,68,106,0,0,68,106,0,0,78,106,0,0,80,106,0,0,82,106,0,0,86,106,0,0,88,106,0,0,88,106,0,0,90,106,0,0,90,106,0,0,94,106,0,0,100,106,0,0,100,106,0,0,100,106,0,0,102,106,0,0,102,106,0,0,104,106,0,0,104,106,0,0,104,106,0,0,104,106,0,0,104,106,0,0,108,106,0,0,108,106,0,0,110,106,0,0,110,106,0,0,110,106,0,0,110,106,0,0,112,106,0,0,112,106,0,0,114,106,0,0,118,106,0,0,120,106,0,0,120,106,0,0,130,106,0,0,142,106,0,0,146,106,0,0,146,106,0,0,148,106,0,0,156,106,0,0,156,106,0,0,156,106,0,0,160,106,0,0,160,106,0,0,162,106,0,0,162,106,0,0,162,106,0,0,162,106,0,0,168,106,0,0,174,106,0,0,174,106,0,0,174,106,0,0,174,106,0,0,174,106,0,0,180,106,0,0,182,106,0,0,182,106,0,0,182,106,0,0,182,106,0,0,182,106,0,0,184,106,0,0,190,106,0,0,196,106,0,0,198,106,0,0,206,106,0,0,206,106,0,0,208,106,0,0,216,106,0,0,216,106,0,0,218,106,0,0,218,106,0,0,218,106,0,0,218,106,0,0,226,106,0,0,230,106,0,0,234,106,0,0,236,106,0,0,236,106,0,0,236,106,0,0,238,106,0,0,240,106,0,0,244,106,0,0,246,106,0,0,246,106,0,0,250,106,0,0,250,106,0,0,250,106,0,0,250,106,0,0,250,106,0,0,254,106,0,0,254,106,0,0,2,107,0,0,6,107,0,0,6,107,0,0,6,107,0,0,6,107,0,0,8,107,0,0,14,107,0,0,16,107,0,0,16,107,0,0,18,107,0,0,18,107,0,0,18,107,0,0,18,107,0,0,18,107,0,0,18,107,0,0,18,107,0,0,20,107,0,0,22,107,0,0,30,107,0,0,34,107,0,0,36,107,0,0,36,107,0,0,40,107,0,0,40,107,0,0,40,107,0,0,42,107,0,0,46,107,0,0,46,107,0,0,50,107,0,0,50,107,0,0,60,107,0,0,62,107,0,0,64,107,0,0,64,107,0,0,64,107,0,0,64,107,0,0,68,107,0,0,70,107,0,0,70,107,0,0,72,107,0,0,82,107,0,0,82,107,0,0,86,107,0,0,90,107,0,0,90,107,0,0,90,107,0,0,90,107,0,0,90,107,0,0,94,107,0,0,98,107,0,0,98,107,0,0,102,107,0,0,106,107,0,0,106,107,0,0,106,107,0,0,106,107,0,0,110,107,0,0,110,107,0,0,114,107,0,0,116,107,0,0,116,107,0,0,122,107,0,0,126,107,0,0,126,107,0,0,136,107,0,0,142,107,0,0,142,107,0,0,144,107,0,0,144,107,0,0,146,107,0,0,146,107,0,0,146,107,0,0,148,107,0,0,150,107,0,0,150,107,0,0,150,107,0,0,150,107,0,0,158,107,0,0,166,107,0,0,174,107,0,0,174,107,0,0,174,107,0,0,174,107,0,0,174,107,0,0,174,107,0,0,176,107,0,0,176,107,0,0,176,107,0,0,176,107,0,0,178,107,0,0,180,107,0,0,182,107,0,0,182,107,0,0,182,107,0,0,182,107,0,0,182,107,0,0,184,107,0,0,184,107,0,0,190,107,0,0,190,107,0,0,190,107,0,0,192,107,0,0,192,107,0,0,194,107,0,0,198,107,0,0,200,107,0,0,200,107,0,0,202,107,0,0,202,107,0,0,202,107,0,0,202,107,0,0,202,107,0,0,208,107,0,0,208,107,0,0,208,107,0,0,210,107,0,0,214,107,0,0,214,107,0,0,214,107,0,0,214,107,0,0,214,107,0,0,214,107,0,0,214,107,0,0,216,107,0,0,218,107,0,0,218,107,0,0,218,107,0,0,218,107,0,0,218,107,0,0,218,107,0,0,220,107,0,0,220,107,0,0,220,107,0,0,222,107,0,0,222,107,0,0,226,107,0,0,226,107,0,0,228,107,0,0,228,107,0,0,234,107,0,0,236,107,0,0,242,107,0,0,242,107,0,0,244,107,0,0,246,107,0,0,246,107,0,0,250,107,0,0,252,107,0,0,0,108,0,0,0,108,0,0,0,108,0,0,0,108,0,0,4,108,0,0,4,108,0,0,4,108,0,0,6,108,0,0,6,108,0,0,6,108,0,0,12,108,0,0,16,108,0,0,22,108,0,0,30,108,0,0,30,108,0,0,30,108,0,0,38,108,0,0,38,108,0,0,38,108,0,0,48,108,0,0,50,108,0,0,50,108,0,0,50,108,0,0,50,108,0,0,52,108,0,0,54,108,0,0,66,108,0,0,74,108,0,0,74,108,0,0,80,108,0,0,82,108,0,0,82,108,0,0,82,108,0,0,82,108,0,0,88,108,0,0,90,108,0,0,96,108,0,0,96,108,0,0,96,108,0,0,96,108,0,0,96,108,0,0,96,108,0,0,98,108,0,0,100,108,0,0,102,108,0,0,102,108,0,0,102,108,0,0,104,108,0,0,106,108,0,0,112,108,0,0,112,108,0,0,114,108,0,0,114,108,0,0,114,108,0,0,116,108,0,0,122,108,0,0,122,108,0,0,122,108,0,0,122,108,0,0,122,108,0,0,130,108,0,0,130,108,0,0,136,108,0,0,138,108,0,0,138,108,0,0,138,108,0,0,140,108,0,0,142,108,0,0,146,108,0,0,146,108,0,0,146,108,0,0,148,108,0,0,148,108,0,0,148,108,0,0,152,108,0,0,152,108,0,0,158,108,0,0,158,108,0,0,158,108,0,0,158,108,0,0,160,108,0,0,168,108,0,0,170,108,0,0,170,108,0,0,170,108,0,0,170,108,0,0,170,108,0,0,170,108,0,0,174,108,0,0,174,108,0,0,176,108,0,0,178,108,0,0,178,108,0,0,178,108,0,0,180,108,0,0,182,108,0,0,182,108,0,0,182,108,0,0,184,108,0,0,184,108,0,0,196,108,0,0,196,108,0,0,196,108,0,0,196,108,0,0,196,108,0,0,196,108,0,0,196,108,0,0,198,108,0,0,198,108,0,0,198,108,0,0,200,108,0,0,202,108,0,0,206,108,0,0,206,108,0,0,208,108,0,0,208,108,0,0,208,108,0,0,208,108,0,0,208,108,0,0,210,108,0,0,210,108,0,0,214,108,0,0,214,108,0,0,218,108,0,0,218,108,0,0,224,108,0,0,230,108,0,0,230,108,0,0,230,108,0,0,232,108,0,0,232,108,0,0,234,108,0,0,238,108,0,0,238,108,0,0,240,108,0,0,242,108,0,0,250,108,0,0,0,109,0,0,0,109,0,0,0,109,0,0,0,109,0,0,0,109,0,0,2,109,0,0,2,109,0,0,2,109,0,0,2,109,0,0,4,109,0,0,10,109,0,0,10,109,0,0,14,109,0,0,18,109,0,0,18,109,0,0,18,109,0,0,18,109,0,0,18,109,0,0,20,109,0,0,20,109,0,0,22,109,0,0,26,109,0,0,26,109,0,0,42,109,0,0,42,109,0,0,42,109,0,0,42,109,0,0,42,109,0,0,42,109,0,0,42,109,0,0,44,109,0,0,48,109,0,0,50,109,0,0,54,109,0,0,56,109,0,0,56,109,0,0,56,109,0,0,56,109,0,0,56,109,0,0,58,109,0,0,60,109,0,0,68,109,0,0,70,109,0,0,70,109,0,0,72,109,0,0,76,109,0,0,78,109,0,0,78,109,0,0,78,109,0,0,78,109,0,0,80,109,0,0,88,109,0,0,90,109,0,0,90,109,0,0,90,109,0,0,90,109,0,0,92,109,0,0,94,109,0,0,94,109,0,0,94,109,0,0,94,109,0,0,96,109,0,0,96,109,0,0,96,109,0,0,100,109,0,0,104,109,0,0,104,109,0,0,110,109,0,0,110,109,0,0,114,109,0,0,114,109,0,0,118,109,0,0,118,109,0,0,118,109,0,0,120,109,0,0,122,109,0,0,142,109,0,0,142,109,0,0,144,109,0,0,146,109,0,0,146,109,0,0,150,109,0,0,158,109,0,0,162,109,0,0,162,109,0,0,162,109,0,0,162,109,0,0,164,109,0,0,164,109,0,0,164,109,0,0,166,109,0,0,170,109,0,0,170,109,0,0,172,109,0,0,172,109,0,0,172,109,0,0,174,109,0,0,176,109,0,0,176,109,0,0,178,109,0,0,178,109,0,0,180,109,0,0,182,109,0,0,182,109,0,0,182,109,0,0,184,109,0,0,188,109,0,0,188,109,0,0,188,109,0,0,188,109,0,0,194,109,0,0,194,109,0,0,194,109,0,0,194,109,0,0,194,109,0,0,194,109,0,0,194,109,0,0,196,109,0,0,198,109,0,0,198,109,0,0,198,109,0,0,202,109,0,0,216,109,0,0,216,109,0,0,218,109,0,0,222,109,0,0,226,109,0,0,228,109,0,0,228,109,0,0,230,109,0,0,230,109,0,0,234,109,0,0,236,109,0,0,238,109,0,0,240,109,0,0,240,109,0,0,244,109,0,0,244,109,0,0,248,109,0,0,250,109,0,0,254,109,0,0,0,110,0,0,4,110,0,0,6,110,0,0,6,110,0,0,6,110,0,0,6,110,0,0,8,110,0,0,8,110,0,0,8,110,0,0,12,110,0,0,12,110,0,0,16,110,0,0,16,110,0,0,16,110,0,0,16,110,0,0,16,110,0,0,16,110,0,0,18,110,0,0,22,110,0,0,24,110,0,0,30,110,0,0,30,110,0,0,34,110,0,0,40,110,0,0,44,110,0,0,44,110,0,0,44,110,0,0,50,110,0,0,50,110,0,0,50,110,0,0,50,110,0,0,56,110,0,0,58,110,0,0,58,110,0,0,58,110,0,0,60,110,0,0,64,110,0,0,64,110,0,0,64,110,0,0,64,110,0,0,64,110,0,0,66,110,0,0,68,110,0,0,68,110,0,0,68,110,0,0,68,110,0,0,68,110,0,0,68,110,0,0,76,110,0,0,76,110,0,0,76,110,0,0,82,110,0,0,86,110,0,0,86,110,0,0,86,110,0,0,90,110,0,0,90,110,0,0,94,110,0,0,96,110,0,0,98,110,0,0,98,110,0,0,100,110,0,0,102,110,0,0,104,110,0,0,104,110,0,0,104,110,0,0,108,110,0,0,108,110,0,0,108,110,0,0,110,110,0,0,110,110,0,0,112,110,0,0,116,110,0,0,116,110,0,0,118,110,0,0,124,110,0,0,124,110,0,0,126,110,0,0,126,110,0,0,126,110,0,0,128,110,0,0,128,110,0,0,130,110,0,0,132,110,0,0,136,110,0,0,138,110,0,0,144,110,0,0,146,110,0,0,146,110,0,0,148,110,0,0,148,110,0,0,150,110,0,0,152,110,0,0,152,110,0,0,152,110,0,0,152,110,0,0,156,110,0,0,158,110,0,0,162,110,0,0,164,110,0,0,166,110,0,0,166,110,0,0,166,110,0,0,166,110,0,0,166,110,0,0,170,110,0,0,174,110,0,0,176,110,0,0,176,110,0,0,176,110,0,0,176,110,0,0,178,110,0,0,178,110,0,0,182,110,0,0,182,110,0,0,182,110,0,0,182,110,0,0,184,110,0,0,184,110,0,0,192,110,0,0,194,110,0,0,194,110,0,0,194,110,0,0,194,110,0,0,196,110,0,0,196,110,0,0,196,110,0,0,196,110,0,0,200,110,0,0,202,110,0,0,204,110,0,0,206,110,0,0,206,110,0,0,208,110,0,0,208,110,0,0,210,110,0,0,210,110,0,0,210,110,0,0,214,110,0,0,214,110,0,0,214,110,0,0,214,110,0,0,214,110,0,0,214,110,0,0,216,110,0,0,220,110,0,0,222,110,0,0,230,110,0,0,230,110,0,0,230,110,0,0,230,110,0,0,234,110,0,0,234,110,0,0,234,110,0,0,234,110,0,0,234,110,0,0,234,110,0,0,234,110,0,0,234,110,0,0,236,110,0,0,238,110,0,0,238,110,0,0,238,110,0,0,248,110,0,0,248,110,0,0,252,110,0,0,252,110,0,0,0,111,0,0,2,111,0,0,6,111,0,0,6,111,0,0,14,111,0,0,16,111,0,0,16,111,0,0,16,111,0,0,18,111,0,0,18,111,0,0,18,111,0,0,18,111,0,0,20,111,0,0,20,111,0,0,22,111,0,0,22,111,0,0,24,111,0,0,24,111,0,0,24,111,0,0,26,111,0,0,26,111,0,0,26,111,0,0,26,111,0,0,34,111,0,0,34,111,0,0,34,111,0,0,34,111,0,0,36,111,0,0,36,111,0,0,36,111,0,0,40,111,0,0,44,111,0,0,50,111,0,0,52,111,0,0,52,111,0,0,60,111,0,0,60,111,0,0,60,111,0,0,66,111,0,0,70,111,0,0,70,111,0,0,72,111,0,0,72,111,0,0,76,111,0,0,80,111,0,0,86,111,0,0,90,111,0,0,94,111,0,0,94,111,0,0,100,111,0,0,100,111,0,0,100,111,0,0,102,111,0,0,104,111,0,0,104,111,0,0,104,111,0,0,104,111,0,0,106,111,0,0,106,111,0,0,112,111,0,0,112,111,0,0,114,111,0,0,116,111,0,0,120,111,0,0,120,111,0,0,120,111,0,0,120,111,0,0,122,111,0,0,128,111,0,0,128,111,0,0,128,111,0,0,134,111,0,0,134,111,0,0,138,111,0,0,138,111,0,0,138,111,0,0,142,111,0,0,148,111,0,0,148,111,0,0,150,111,0,0,150,111,0,0,154,111,0,0,154,111,0,0,158,111,0,0,162,111,0,0,162,111,0,0,164,111,0,0,172,111,0,0,172,111,0,0,174,111,0,0,176,111,0,0,176,111,0,0,176,111,0,0,178,111,0,0,178,111,0,0,178,111,0,0,184,111,0,0,184,111,0,0,192,111,0,0,194,111,0,0,196,111,0,0,202,111,0,0,202,111,0,0,208,111,0,0,210,111,0,0,214,111,0,0,214,111,0,0,216,111,0,0,218,111,0,0,218,111,0,0,228,111,0,0,228,111,0,0,228,111,0,0,232,111,0,0,238,111,0,0,238,111,0,0,244,111,0,0,244,111,0,0,244,111,0,0,246,111,0,0,246,111,0,0,246,111,0,0,246,111,0,0,246,111,0,0,248,111,0,0,252,111,0,0,0,112,0,0,4,112,0,0,6,112,0,0,6,112,0,0,10,112,0,0,18,112,0,0,20,112,0,0,26,112,0,0,28,112,0,0,28,112,0,0,36,112,0,0,36,112,0,0,44,112,0,0,44,112,0,0,44,112,0,0,46,112,0,0,48,112,0,0,48,112,0,0,58,112,0,0,62,112,0,0,66,112,0,0,66,112,0,0,72,112,0,0,72,112,0,0,78,112,0,0,84,112,0,0,84,112,0,0,88,112,0,0,88,112,0,0,88,112,0,0,92,112,0,0,98,112,0,0,104,112,0,0,104,112,0,0,110,112,0,0,112,112,0,0,112,112,0,0,112,112,0,0,112,112,0,0,114,112,0,0,114,112,0,0,114,112,0,0,118,112,0,0,120,112,0,0,120,112,0,0,120,112,0,0,122,112,0,0,124,112,0,0,128,112,0,0,132,112,0,0,132,112,0,0,134,112,0,0,136,112,0,0,136,112,0,0,138,112,0,0,138,112,0,0,138,112,0,0,144,112,0,0,150,112,0,0,150,112,0,0,152,112,0,0,154,112,0,0,154,112,0,0,156,112,0,0,156,112,0,0,160,112,0,0,160,112,0,0,160,112,0,0,162,112,0,0,162,112,0,0,162,112,0,0,164,112,0,0,166,112,0,0,170,112,0,0,174,112,0,0,176,112,0,0,176,112,0,0,178,112,0,0,182,112,0,0,184,112,0,0,188,112,0,0,188,112,0,0,188,112,0,0,188,112,0,0,188,112,0,0,188,112,0,0,188,112,0,0,188,112,0,0,188,112,0,0,192,112,0,0,192,112,0,0,192,112,0,0,194,112,0,0,194,112,0,0,200,112,0,0,206,112,0,0,208,112,0,0,216,112,0,0,216,112,0,0,216,112,0,0,216,112,0,0,218,112,0,0,218,112,0,0,220,112,0,0,226,112,0,0,228,112,0,0,228,112,0,0,228,112,0,0,228,112,0,0,228,112,0,0,232,112,0,0,232,112,0,0,232,112,0,0,232,112,0,0,232,112,0,0,234,112,0,0,234,112,0,0,236,112,0,0,236,112,0,0,236,112,0,0,236,112,0,0,236,112,0,0,236,112,0,0,236,112,0,0,240,112,0,0,242,112,0,0,246,112,0,0,246,112,0,0,250,112,0,0,250,112,0,0,250,112,0,0,252,112,0,0,252,112,0,0,254,112,0,0,254,112,0,0,254,112,0,0,254,112,0,0,254,112,0,0,254,112,0,0,254,112,0,0,254,112,0,0,0,113,0,0,0,113,0,0,2,113,0,0,4,113,0,0,4,113,0,0,4,113,0,0,4,113,0,0,4,113,0,0,4,113,0,0,4,113,0,0,4,113,0,0,6,113,0,0,8,113,0,0,8,113,0,0,8,113,0,0,14,113,0,0,20,113,0,0,20,113,0,0,20,113,0,0,20,113,0,0,20,113,0,0,20,113,0,0,22,113,0,0,24,113,0,0,24,113,0,0,32,113,0,0,34,113,0,0,38,113,0,0,40,113,0,0,40,113,0,0,46,113,0,0,46,113,0,0,50,113,0,0,56,113,0,0,56,113,0,0,56,113,0,0,64,113,0,0,64,113,0,0,64,113,0,0,64,113,0,0,66,113,0,0,68,113,0,0,68,113,0,0,68,113,0,0,70,113,0,0,78,113,0,0,78,113,0,0,80,113,0,0,80,113,0,0,84,113,0,0,92,113,0,0,92,113,0,0,96,113,0,0,98,113,0,0,98,113,0,0,98,113,0,0,104,113,0,0,110,113,0,0,114,113,0,0,114,113,0,0,116,113,0,0,120,113,0,0,120,113,0,0,120,113,0,0,120,113,0,0,120,113,0,0,124,113,0,0,124,113,0,0,124,113,0,0,124,113,0,0,124,113,0,0,124,113,0,0,124,113,0,0,126,113,0,0,128,113,0,0,128,113,0,0,134,113,0,0,134,113,0,0,142,113,0,0,142,113,0,0,144,113,0,0,144,113,0,0,146,113,0,0,152,113,0,0,152,113,0,0,154,113,0,0,154,113,0,0,158,113,0,0,158,113,0,0,158,113,0,0,164,113,0,0,168,113,0,0,168,113,0,0,170,113,0,0,172,113,0,0,172,113,0,0,172,113,0,0,172,113,0,0,178,113,0,0,178,113,0,0,178,113,0,0,178,113,0,0,178,113,0,0,178,113,0,0,178,113,0,0,180,113,0,0,184,113,0,0,186,113,0,0,192,113,0,0,194,113,0,0,194,113,0,0,196,113,0,0,200,113,0,0,200,113,0,0,202,113,0,0,214,113,0,0,214,113,0,0,214,113,0,0,216,113,0,0,218,113,0,0,220,113,0,0,220,113,0,0,220,113,0,0,220,113,0,0,220,113,0,0,220,113,0,0,222,113,0,0,228,113,0,0,230,113,0,0,234,113,0,0,238,113,0,0,242,113,0,0,242,113,0,0,242,113,0,0,242,113,0,0,242,113,0,0,242,113,0,0,242,113,0,0,246,113,0,0,248,113,0,0,248,113,0,0,248,113,0,0,248,113,0,0,248,113,0,0,254,113,0,0,254,113,0,0,0,114,0,0,0,114,0,0,2,114,0,0,6,114,0,0,6,114,0,0,6,114,0,0,8,114,0,0,8,114,0,0,8,114,0,0,8,114,0,0,12,114,0,0,12,114,0,0,16,114,0,0,16,114,0,0,16,114,0,0,16,114,0,0,16,114,0,0,18,114,0,0,18,114,0,0,18,114,0,0,18,114,0,0,18,114,0,0,22,114,0,0,22,114,0,0,22,114,0,0,26,114,0,0,28,114,0,0,28,114,0,0,32,114,0,0,32,114,0,0,42,114,0,0,42,114,0,0,42,114,0,0,42,114,0,0,44,114,0,0,48,114,0,0,48,114,0,0,52,114,0,0,54,114,0,0,56,114,0,0,60,114,0,0,66,114,0,0,66,114,0,0,68,114,0,0,68,114,0,0,68,114,0,0,70,114,0,0,72,114,0,0,72,114,0,0,76,114,0,0,78,114,0,0,78,114,0,0,80,114,0,0,80,114,0,0,80,114,0,0,82,114,0,0,88,114,0,0,88,114,0,0,90,114,0,0,90,114,0,0,96,114,0,0,98,114,0,0,104,114,0,0,108,114,0,0,108,114,0,0,108,114,0,0,110,114,0,0,112,114,0,0,112,114,0,0,114,114,0,0,116,114,0,0,116,114,0,0,120,114,0,0,124,114,0,0,124,114,0,0,126,114,0,0,128,114,0,0,130,114,0,0,132,114,0,0,134,114,0,0,134,114,0,0,138,114,0,0,138,114,0,0,138,114,0,0,140,114,0,0,142,114,0,0,142,114,0,0,148,114,0,0,156,114,0,0,158,114,0,0,158,114,0,0,160,114,0,0,160,114,0,0,162,114,0,0,166,114,0,0,168,114,0,0,174,114,0,0,174,114,0,0,174,114,0,0,176,114,0,0,176,114,0,0,176,114,0,0,176,114,0,0,182,114,0,0,184,114,0,0,186,114,0,0,186,114,0,0,186,114,0,0,190,114,0,0,194,114,0,0,194,114,0,0,196,114,0,0,196,114,0,0,196,114,0,0,196,114,0,0,196,114,0,0,196,114,0,0,202,114,0,0,202,114,0,0,202,114,0,0,202,114,0,0,210,114,0,0,210,114,0,0,212,114,0,0,216,114,0,0,218,114,0,0,220,114,0,0,224,114,0,0,232,114,0,0,234,114,0,0,234,114,0,0,234,114,0,0,234,114,0,0,234,114,0,0,234,114,0,0,236,114,0,0,238,114,0,0,238,114,0,0,238,114,0,0,238,114,0,0,240,114,0,0,244,114,0,0,244,114,0,0,244,114,0,0,246,114,0,0,246,114,0,0,246,114,0,0,248,114,0,0,248,114,0,0,254,114,0,0,254,114,0,0,254,114,0,0,2,115,0,0,2,115,0,0,2,115,0,0,2,115,0,0,2,115,0,0,2,115,0,0,4,115,0,0,4,115,0,0,4,115,0,0,4,115,0,0,4,115,0,0,4,115,0,0,4,115,0,0,4,115,0,0,12,115,0,0,12,115,0,0,18,115,0,0,26,115,0,0,26,115,0,0,26,115,0,0,32,115,0,0,32,115,0,0,32,115,0,0,32,115,0,0,34,115,0,0,36,115,0,0,38,115,0,0,40,115,0,0,40,115,0,0,40,115,0,0,44,115,0,0,44,115,0,0,52,115,0,0,56,115,0,0,56,115,0,0,56,115,0,0,56,115,0,0,64,115,0,0,66,115,0,0,66,115,0,0,66,115,0,0,66,115,0,0,66,115,0,0,66,115,0,0,70,115,0,0,70,115,0,0,70,115,0,0,70,115,0,0,72,115,0,0,74,115,0,0,76,115,0,0,80,115,0,0,80,115,0,0,82,115,0,0,84,115,0,0,84,115,0,0,86,115,0,0,88,115,0,0,88,115,0,0,90,115,0,0,92,115,0,0,98,115,0,0,100,115,0,0,100,115,0,0,100,115,0,0,108,115,0,0,108,115,0,0,114,115,0,0,114,115,0,0,114,115,0,0,114,115,0,0,114,115,0,0,116,115,0,0,116,115,0,0,116,115,0,0,116,115,0,0,122,115,0,0,124,115,0,0,124,115,0,0,124,115,0,0,126,115,0,0,130,115,0,0,134,115,0,0,144,115,0,0,146,115,0,0,146,115,0,0,152,115,0,0,152,115,0,0,152,115,0,0,154,115,0,0,154,115,0,0,154,115,0,0,156,115,0,0,166,115,0,0,176,115,0,0,178,115,0,0,178,115,0,0,178,115,0,0,178,115,0,0,182,115,0,0,182,115,0,0,184,115,0,0,188,115,0,0,190,115,0,0,194,115,0,0,196,115,0,0,196,115,0,0,196,115,0,0,198,115,0,0,204,115,0,0,204,115,0,0,204,115,0,0,204,115,0,0,204,115,0,0,212,115,0,0,214,115,0,0,214,115,0,0,218,115,0,0,218,115,0,0,220,115,0,0,220,115,0,0,220,115,0,0,220,115,0,0,228,115,0,0,228,115,0,0,228,115,0,0,228,115,0,0,228,115,0,0,232,115,0,0,234,115,0,0,234,115,0,0,234,115,0,0,238,115,0,0,238,115,0,0,238,115,0,0,238,115,0,0,240,115,0,0,246,115,0,0,248,115,0,0,248,115,0,0,248,115,0,0,250,115,0,0,250,115,0,0,250,115,0,0,250,115,0,0,250,115,0,0,252,115,0,0,254,115,0,0,254,115,0,0,254,115,0,0,254,115,0,0,254,115,0,0,0,116,0,0,0,116,0,0,4,116,0,0,4,116,0,0,6,116,0,0,6,116,0,0,6,116,0,0,10,116,0,0,10,116,0,0,12,116,0,0,14,116,0,0,14,116,0,0,16,116,0,0,16,116,0,0,16,116,0,0,16,116,0,0,16,116,0,0,16,116,0,0,16,116,0,0,18,116,0,0,18,116,0,0,18,116,0,0,24,116,0,0,26,116,0,0,30,116,0,0,34,116,0,0,40,116,0,0,40,116,0,0,42,116,0,0,42,116,0,0,44,116,0,0,46,116,0,0,46,116,0,0,46,116,0,0,46,116,0,0,48,116,0,0,48,116,0,0,50,116,0,0,50,116,0,0,52,116,0,0,54,116,0,0,66,116,0,0,66,116,0,0,66,116,0,0,72,116,0,0,76,116,0,0,76,116,0,0,78,116,0,0,86,116,0,0,88,116,0,0,90,116,0,0,90,116,0,0,90,116,0,0,96,116,0,0,96,116,0,0,98,116,0,0,98,116,0,0,100,116,0,0,100,116,0,0,100,116,0,0,104,116,0,0,108,116,0,0,108,116,0,0,120,116,0,0,120,116,0,0,124,116,0,0,124,116,0,0,124,116,0,0,126,116,0,0,126,116,0,0,126,116,0,0,126,116,0,0,126,116,0,0,128,116,0,0,130,116,0,0,134,116,0,0,134,116,0,0,136,116,0,0,138,116,0,0,138,116,0,0,138,116,0,0,138,116,0,0,138,116,0,0,138,116,0,0,140,116,0,0,142,116,0,0,142,116,0,0,142,116,0,0,142,116,0,0,142,116,0,0,142,116,0,0,148,116,0,0,152,116,0,0,154,116,0,0,154,116,0,0,154,116,0,0,156,116,0,0,156,116,0,0,156,116,0,0,158,116,0,0,162,116,0,0,162,116,0,0,162,116,0,0,166,116,0,0,166,116,0,0,170,116,0,0,176,116,0,0,178,116,0,0,186,116,0,0,194,116,0,0,194,116,0,0,194,116,0,0,194,116,0,0,194,116,0,0,194,116,0,0,194,116,0,0,194,116,0,0,196,116,0,0,196,116,0,0,196,116,0,0,196,116,0,0,196,116,0,0,196,116,0,0,196,116,0,0,198,116,0,0,202,116,0,0,210,116,0,0,214,116,0,0,216,116,0,0,218,116,0,0,218,116,0,0,218,116,0,0,222,116,0,0,222,116,0,0,222,116,0,0,224,116,0,0,226,116,0,0,228,116,0,0,228,116,0,0,228,116,0,0,232,116,0,0,234,116,0,0,238,116,0,0,238,116,0,0,240,116,0,0,240,116,0,0,240,116,0,0,248,116,0,0,248,116,0,0,248,116,0,0,254,116,0,0,0,117,0,0,6,117,0,0,8,117,0,0,14,117,0,0,24,117,0,0,26,117,0,0,28,117,0,0,28,117,0,0,28,117,0,0,28,117,0,0,28,117,0,0,28,117,0,0,34,117,0,0,34,117,0,0,34,117,0,0,34,117,0,0,36,117,0,0,42,117,0,0,44,117,0,0,44,117,0,0,44,117,0,0,44,117,0,0,46,117,0,0,46,117,0,0,54,117,0,0,64,117,0,0,68,117,0,0,72,117,0,0,80,117,0,0,82,117,0,0,82,117,0,0,88,117,0,0,90,117,0,0,90,117,0,0,90,117,0,0,96,117,0,0,98,117,0,0,98,117,0,0,102,117,0,0,102,117,0,0,102,117,0,0,102,117,0,0,102,117,0,0,102,117,0,0,104,117,0,0,106,117,0,0,110,117,0,0,112,117,0,0,112,117,0,0,112,117,0,0,118,117,0,0,118,117,0,0,118,117,0,0,118,117,0,0,124,117,0,0,124,117,0,0,126,117,0,0,130,117,0,0,134,117,0,0,134,117,0,0,134,117,0,0,134,117,0,0,136,117,0,0,140,117,0,0,142,117,0,0,142,117,0,0,148,117,0,0,148,117,0,0,148,117,0,0,148,117,0,0,148,117,0,0,148,117,0,0,148,117,0,0,148,117,0,0,162,117,0,0,162,117,0,0,162,117,0,0,164,117,0,0,172,117,0,0,172,117,0,0,172,117,0,0,172,117,0,0,172,117,0,0,174,117,0,0,174,117,0,0,174,117,0,0,174,117,0,0,176,117,0,0,176,117,0,0,176,117,0,0,178,117,0,0,184,117,0,0,192,117,0,0,194,117,0,0,194,117,0,0,194,117,0,0,194,117,0,0,194,117,0,0,196,117,0,0,196,117,0,0,196,117,0,0,196,117,0,0,196,117,0,0,196,117,0,0,196,117,0,0,204,117,0,0,208,117,0,0,214,117,0,0,218,117,0,0,218,117,0,0,224,117,0,0,224,117,0,0,228,117,0,0,230,117,0,0,230,117,0,0,234,117,0,0,234,117,0,0,236,117,0,0,236,117,0,0,238,117,0,0,238,117,0,0,238,117,0,0,238,117,0,0,238,117,0,0,242,117,0,0,242,117,0,0,6,118,0,0,12,118,0,0,14,118,0,0,22,118,0,0,32,118,0,0,32,118,0,0,32,118,0,0,32,118,0,0,32,118,0,0,42,118,0,0,48,118,0,0,52,118,0,0,56,118,0,0,64,118,0,0,66,118,0,0,68,118,0,0,68,118,0,0,70,118,0,0,70,118,0,0,70,118,0,0,74,118,0,0,78,118,0,0,82,118,0,0,82,118,0,0,86,118,0,0,86,118,0,0,88,118,0,0,90,118,0,0,90,118,0,0,92,118,0,0,92,118,0,0,100,118,0,0,100,118,0,0,100,118,0,0,100,118,0,0,104,118,0,0,104,118,0,0,108,118,0,0,112,118,0,0,112,118,0,0,114,118,0,0,114,118,0,0,114,118,0,0,118,118,0,0,120,118,0,0,128,118,0,0,138,118,0,0,138,118,0,0,140,118,0,0,140,118,0,0,140,118,0,0,140,118,0,0,146,118,0,0,148,118,0,0,154,118,0,0,162,118,0,0,162,118,0,0,162,118,0,0,162,118,0,0,170,118,0,0,170,118,0,0,170,118,0,0,174,118,0,0,188,118,0,0,190,118,0,0,190,118,0,0,190,118,0,0,190,118,0,0,196,118,0,0,202,118,0,0,202,118,0,0,202,118,0,0,202,118,0,0,204,118,0,0,204,118,0,0,216,118,0,0,216,118,0,0,216,118,0,0,228,118,0,0,230,118,0,0,240,118,0,0,242,118,0,0,246,118,0,0,254,118,0,0,0,119,0,0,0,119,0,0,4,119,0,0,4,119,0,0,6,119,0,0,8,119,0,0,8,119,0,0,8,119,0,0,18,119,0,0,20,119,0,0,20,119,0,0,22,119,0,0,22,119,0,0,22,119,0,0,28,119,0,0,28,119,0,0,28,119,0,0,30,119,0,0,36,119,0,0,36,119,0,0,36,119,0,0,36,119,0,0,38,119,0,0,38,119,0,0,44,119,0,0,52,119,0,0,54,119,0,0,54,119,0,0,56,119,0,0,60,119,0,0,62,119,0,0,64,119,0,0,66,119,0,0,66,119,0,0,66,119,0,0,70,119,0,0,70,119,0,0,72,119,0,0,72,119,0,0,76,119,0,0,76,119,0,0,78,119,0,0,78,119,0,0,78,119,0,0,78,119,0,0,80,119,0,0,82,119,0,0,88,119,0,0,88,119,0,0,92,119,0,0,94,119,0,0,96,119,0,0,96,119,0,0,98,119,0,0,98,119,0,0,98,119,0,0,108,119,0,0,108,119,0,0,108,119,0,0,108,119,0,0,110,119,0,0,114,119,0,0,114,119,0,0,114,119,0,0,116,119,0,0,116,119,0,0,116,119,0,0,116,119,0,0,116,119,0,0,122,119,0,0,122,119,0,0,122,119,0,0,128,119,0,0,130,119,0,0,134,119,0,0,136,119,0,0,138,119,0,0,138,119,0,0,142,119,0,0,144,119,0,0,144,119,0,0,146,119,0,0,146,119,0,0,146,119,0,0,146,119,0,0,148,119,0,0,148,119,0,0,148,119,0,0,152,119,0,0,156,119,0,0,162,119,0,0,164,119,0,0,170,119,0,0,170,119,0,0,170,119,0,0,170,119,0,0,176,119,0,0,176,119,0,0,178,119,0,0,180,119,0,0,182,119,0,0,184,119,0,0,184,119,0,0,186,119,0,0,188,119,0,0,188,119,0,0,188,119,0,0,188,119,0,0,192,119,0,0,196,119,0,0,198,119,0,0,198,119,0,0,202,119,0,0,202,119,0,0,202,119,0,0,202,119,0,0,204,119,0,0,216,119,0,0,220,119,0,0,222,119,0,0,222,119,0,0,222,119,0,0,228,119,0,0,228,119,0,0,230,119,0,0,230,119,0,0,230,119,0,0,230,119,0,0,236,119,0,0,236,119,0,0,236,119,0,0,238,119,0,0,238,119,0,0,238,119,0,0,238,119,0,0,238,119,0,0,242,119,0,0,246,119,0,0,250,119,0,0,254,119,0,0,254,119,0,0,0,120,0,0,0,120,0,0,0,120,0,0,4,120,0,0,6,120,0,0,6,120,0,0,6,120,0,0,6,120,0,0,8,120,0,0,14,120,0,0,16,120,0,0,16,120,0,0,16,120,0,0,16,120,0,0,16,120,0,0,20,120,0,0,20,120,0,0,20,120,0,0,20,120,0,0,24,120,0,0,24,120,0,0,24,120,0,0,24,120,0,0,24,120,0,0,24,120,0,0,24,120,0,0,28,120,0,0,38,120,0,0,38,120,0,0,42,120,0,0,44,120,0,0,46,120,0,0,46,120,0,0,46,120,0,0,52,120,0,0,54,120,0,0,54,120,0,0,54,120,0,0,54,120,0,0,60,120,0,0,66,120,0,0,76,120,0,0,76,120,0,0,76,120,0,0,80,120,0,0,84,120,0,0,84,120,0,0,86,120,0,0,94,120,0,0,96,120,0,0,96,120,0,0,98,120,0,0,110,120,0,0,110,120,0,0,110,120,0,0,110,120,0,0,110,120,0,0,114,120,0,0,116,120,0,0,118,120,0,0,118,120,0,0,118,120,0,0,118,120,0,0,120,120,0,0,122,120,0,0,122,120,0,0,122,120,0,0,126,120,0,0,126,120,0,0,126,120,0,0,130,120,0,0,136,120,0,0,138,120,0,0,142,120,0,0,146,120,0,0,160,120,0,0,162,120,0,0,162,120,0,0,162,120,0,0,178,120,0,0,178,120,0,0,178,120,0,0,178,120,0,0,180,120,0,0,182,120,0,0,182,120,0,0,184,120,0,0,186,120,0,0,190,120,0,0,196,120,0,0,196,120,0,0,198,120,0,0,198,120,0,0,200,120,0,0,204,120,0,0,204,120,0,0,204,120,0,0,210,120,0,0,210,120,0,0,210,120,0,0,210,120,0,0,210,120,0,0,210,120,0,0,214,120,0,0,214,120,0,0,214,120,0,0,218,120,0,0,218,120,0,0,218,120,0,0,220,120,0,0,228,120,0,0,228,120,0,0,234,120,0,0,234,120,0,0,234,120,0,0,234,120,0,0,234,120,0,0,234,120,0,0,234,120,0,0,234,120,0,0,236,120,0,0,240,120,0,0,242,120,0,0,244,120,0,0,244,120,0,0,244,120,0,0,244,120,0,0,246,120,0,0,246,120,0,0,250,120,0,0,254,120,0,0,0,121,0,0,0,121,0,0,2,121,0,0,4,121,0,0,4,121,0,0,6,121,0,0,10,121,0,0,10,121,0,0,16,121,0,0,22,121,0,0,22,121,0,0,22,121,0,0,22,121,0,0,26,121,0,0,28,121,0,0,28,121,0,0,36,121,0,0,38,121,0,0,38,121,0,0,40,121,0,0,40,121,0,0,40,121,0,0,40,121,0,0,40,121,0,0,40,121,0,0,42,121,0,0,42,121,0,0,42,121,0,0,42,121,0,0,42,121,0,0,44,121,0,0,50,121,0,0,50,121,0,0,50,121,0,0,52,121,0,0,54,121,0,0,54,121,0,0,54,121,0,0,54,121,0,0,56,121,0,0,56,121,0,0,56,121,0,0,60,121,0,0,64,121,0,0,64,121,0,0,64,121,0,0,68,121,0,0,70,121,0,0,70,121,0,0,72,121,0,0,74,121,0,0,76,121,0,0,76,121,0,0,76,121,0,0,76,121,0,0,76,121,0,0,76,121,0,0,82,121,0,0,82,121,0,0,84,121,0,0,86,121,0,0,94,121,0,0,94,121,0,0,94,121,0,0,94,121,0,0,94,121,0,0,94,121,0,0,94,121,0,0,98,121,0,0,98,121,0,0,98,121,0,0,98,121,0,0,98,121,0,0,98,121,0,0,98,121,0,0,102,121,0,0,102,121,0,0,102,121,0,0,102,121,0,0,102,121,0,0,104,121,0,0,104,121,0,0,104,121,0,0,104,121,0,0,104,121,0,0,104,121,0,0,108,121,0,0,108,121,0,0,108,121,0,0,112,121,0,0,112,121,0,0,116,121,0,0,122,121,0,0,122,121,0,0,122,121,0,0,122,121,0,0,126,121,0,0,130,121,0,0,136,121,0,0,138,121,0,0,142,121,0,0,144,121,0,0,146,121,0,0,146,121,0,0,146,121,0,0,146,121,0,0,146,121,0,0,148,121,0,0,150,121,0,0,154,121,0,0,156,121,0,0,156,121,0,0,158,121,0,0,160,121,0,0,170,121,0,0,172,121,0,0,174,121,0,0,176,121,0,0,176,121,0,0,178,121,0,0,178,121,0,0,182,121,0,0,182,121,0,0,186,121,0,0,186,121,0,0,186,121,0,0,186,121,0,0,192,121,0,0,192,121,0,0,192,121,0,0,192,121,0,0,196,121,0,0,196,121,0,0,196,121,0,0,196,121,0,0,200,121,0,0,200,121,0,0,204,121,0,0,208,121,0,0,214,121,0,0,216,121,0,0,224,121,0,0,226,121,0,0,226,121,0,0,226,121,0,0,226,121,0,0,230,121,0,0,240,121,0,0,240,121,0,0,240,121,0,0,240,121,0,0,240,121,0,0,240,121,0,0,242,121,0,0,242,121,0,0,246,121,0,0,246,121,0,0,246,121,0,0,246,121,0,0,246,121,0,0,252,121,0,0,252,121,0,0,252,121,0,0,252,121,0,0,2,122,0,0,6,122,0,0,6,122,0,0,6,122,0,0,10,122,0,0,12,122,0,0,12,122,0,0,12,122,0,0,12,122,0,0,18,122,0,0,18,122,0,0,18,122,0,0,18,122,0,0,20,122,0,0,20,122,0,0,24,122,0,0,26,122,0,0,26,122,0,0,26,122,0,0,30,122,0,0,32,122,0,0,32,122,0,0,32,122,0,0,34,122,0,0,34,122,0,0,38,122,0,0,38,122,0,0,50,122,0,0,52,122,0,0,52,122,0,0,56,122,0,0,56,122,0,0,56,122,0,0,56,122,0,0,56,122,0,0,56,122,0,0,64,122,0,0,68,122,0,0,72,122,0,0,72,122,0,0,72,122,0,0,72,122,0,0,78,122,0,0,86,122,0,0,90,122,0,0,90,122,0,0,90,122,0,0,90,122,0,0,90,122,0,0,90,122,0,0,94,122,0,0,94,122,0,0,94,122,0,0,94,122,0,0,96,122,0,0,104,122,0,0,108,122,0,0,110,122,0,0,116,122,0,0,116,122,0,0,120,122,0,0,120,122,0,0,120,122,0,0,120,122,0,0,122,122,0,0,124,122,0,0,128,122,0,0,128,122,0,0,128,122,0,0,130,122,0,0,134,122,0,0,138,122,0,0,142,122,0,0,148,122,0,0,148,122,0,0,148,122,0,0,148,122,0,0,148,122,0,0,148,122,0,0,156,122,0,0,156,122,0,0,156,122,0,0,156,122,0,0,156,122,0,0,158,122,0,0,158,122,0,0,158,122,0,0,164,122,0,0,164,122,0,0,170,122,0,0,170,122,0,0,170,122,0,0,170,122,0,0,172,122,0,0,172,122,0,0,174,122,0,0,174,122,0,0,174,122,0,0,174,122,0,0,176,122,0,0,176,122,0,0,178,122,0,0,190,122,0,0,192,122,0,0,194,122,0,0,198,122,0,0,198,122,0,0,200,122,0,0,200,122,0,0,200,122,0,0,204,122,0,0,208,122,0,0,208,122,0,0,210,122,0,0,210,122,0,0,210,122,0,0,210,122,0,0,210,122,0,0,212,122,0,0,216,122,0,0,218,122,0,0,218,122,0,0,226,122,0,0,228,122,0,0,230,122,0,0,230,122,0,0,230,122,0,0,230,122,0,0,230,122,0,0,230,122,0,0,232,122,0,0,232,122,0,0,234,122,0,0,234,122,0,0,234,122,0,0,234,122,0,0,234,122,0,0,234,122,0,0,234,122,0,0,234,122,0,0,234,122,0,0,238,122,0,0,240,122,0,0,242,122,0,0,244,122,0,0,248,122,0,0,248,122,0,0,248,122,0,0,248,122,0,0,250,122,0,0,252,122,0,0,252,122,0,0,252,122,0,0,252,122,0,0,252,122,0,0,252,122,0,0,252,122,0,0,252,122,0,0,252,122,0,0,4,123,0,0,4,123,0,0,6,123,0,0,8,123,0,0,8,123,0,0,8,123,0,0,12,123,0,0,12,123,0,0,14,123,0,0,14,123,0,0,14,123,0,0,14,123,0,0,14,123,0,0,14,123,0,0,14,123,0,0,18,123,0,0,18,123,0,0,18,123,0,0,18,123,0,0,18,123,0,0,18,123,0,0,18,123,0,0,20,123,0,0,20,123,0,0,20,123,0,0,20,123,0,0,20,123,0,0,20,123,0,0,20,123,0,0,26,123,0,0,34,123,0,0,36,123,0,0,36,123,0,0,36,123,0,0,38,123,0,0,44,123,0,0,46,123,0,0,50,123,0,0,50,123,0,0,50,123,0,0,50,123,0,0,50,123,0,0,52,123,0,0,52,123,0,0,54,123,0,0,62,123,0,0,64,123,0,0,66,123,0,0,68,123,0,0,68,123,0,0,68,123,0,0,68,123,0,0,76,123,0,0,76,123,0,0,78,123,0,0,78,123,0,0,82,123,0,0,82,123,0,0,100,123,0,0,104,123,0,0,104,123,0,0,116,123,0,0,116,123,0,0,118,123,0,0,122,123,0,0,122,123,0,0,122,123,0,0,122,123,0,0,124,123,0,0,130,123,0,0,130,123,0,0,132,123,0,0,132,123,0,0,136,123,0,0,138,123,0,0,144,123,0,0,144,123,0,0,144,123,0,0,150,123,0,0,154,123,0,0,154,123,0,0,154,123,0,0,156,123,0,0,158,123,0,0,160,123,0,0,162,123,0,0,170,123,0,0,170,123,0,0,170,123,0,0,178,123,0,0,182,123,0,0,184,123,0,0,184,123,0,0,186,123,0,0,186,123,0,0,190,123,0,0,190,123,0,0,190,123,0,0,192,123,0,0,194,123,0,0,196,123,0,0,198,123,0,0,198,123,0,0,208,123,0,0,214,123,0,0,216,123,0,0,222,123,0,0,222,123,0,0,222,123,0,0,224,123,0,0,226,123,0,0,226,123,0,0,226,123,0,0,228,123,0,0,230,123,0,0,234,123,0,0,234,123,0,0,234,123,0,0,234,123,0,0,236,123,0,0,236,123,0,0,238,123,0,0,240,123,0,0,240,123,0,0,246,123,0,0,248,123,0,0,252,123,0,0,0,124,0,0,0,124,0,0,2,124,0,0,4,124,0,0,10,124,0,0,10,124,0,0,10,124,0,0,16,124,0,0,16,124,0,0,16,124,0,0,16,124,0,0,16,124,0,0,18,124,0,0,20,124,0,0,24,124,0,0,24,124,0,0,32,124,0,0,36,124,0,0,36,124,0,0,38,124,0,0,40,124,0,0,44,124,0,0,46,124,0,0,46,124,0,0,48,124,0,0,48,124,0,0,48,124,0,0,48,124,0,0,52,124,0,0,58,124,0,0,64,124,0,0,68,124,0,0,68,124,0,0,72,124,0,0,72,124,0,0,74,124,0,0,74,124,0,0,74,124,0,0,76,124,0,0,76,124,0,0,82,124,0,0,82,124,0,0,82,124,0,0,84,124,0,0,84,124,0,0,84,124,0,0,84,124,0,0,84,124,0,0,86,124,0,0,88,124,0,0,90,124,0,0,94,124,0,0,94,124,0,0,96,124,0,0,96,124,0,0,100,124,0,0,102,124,0,0,102,124,0,0,104,124,0,0,108,124,0,0,108,124,0,0,112,124,0,0,114,124,0,0,114,124,0,0,114,124,0,0,114,124,0,0,114,124,0,0,124,124,0,0,124,124,0,0,124,124,0,0,124,124,0,0,126,124,0,0,128,124,0,0,128,124,0,0,128,124,0,0,128,124,0,0,130,124,0,0,130,124,0,0,132,124,0,0,132,124,0,0,132,124,0,0,136,124,0,0,136,124,0,0,142,124,0,0,142,124,0,0,146,124,0,0,146,124,0,0,146,124,0,0,148,124,0,0,152,124,0,0,156,124,0,0,156,124,0,0,158,124,0,0,160,124,0,0,162,124,0,0,164,124,0,0,168,124,0,0,170,124,0,0,176,124,0,0,176,124,0,0,178,124,0,0,178,124,0,0,178,124,0,0,182,124,0,0,192,124,0,0,192,124,0,0,198,124,0,0,198,124,0,0,198,124,0,0,204,124,0,0,206,124,0,0,206,124,0,0,206,124,0,0,212,124,0,0,212,124,0,0,216,124,0,0,222,124,0,0,224,124,0,0,224,124,0,0,224,124,0,0,224,124,0,0,226,124,0,0,226,124,0,0,226,124,0,0,228,124,0,0,232,124,0,0,232,124,0,0,234,124,0,0,236,124,0,0,240,124,0,0,242,124,0,0,244,124,0,0,244,124,0,0,248,124,0,0,248,124,0,0,248,124,0,0,248,124,0,0,252,124,0,0,252,124,0,0,252,124,0,0,252,124,0,0,252,124,0,0,2,125,0,0,6,125,0,0,6,125,0,0,12,125,0,0,12,125,0,0,22,125,0,0,22,125,0,0,22,125,0,0,22,125,0,0,22,125,0,0,22,125,0,0,22,125,0,0,22,125,0,0,24,125,0,0,30,125,0,0,30,125,0,0,32,125,0,0,36,125,0,0,36,125,0,0,38,125,0,0,40,125,0,0,46,125,0,0,46,125,0,0,48,125,0,0,48,125,0,0,56,125,0,0,56,125,0,0,58,125,0,0,58,125,0,0,58,125,0,0,62,125,0,0,62,125,0,0,64,125,0,0,66,125,0,0,70,125,0,0,70,125,0,0,72,125,0,0,72,125,0,0,72,125,0,0,72,125,0,0,72,125,0,0,72,125,0,0,72,125,0,0,72,125,0,0,74,125,0,0,74,125,0,0,76,125,0,0,76,125,0,0,76,125,0,0,76,125,0,0,76,125,0,0,76,125,0,0,78,125,0,0,80,125,0,0,80,125,0,0,86,125,0,0,88,125,0,0,88,125,0,0,88,125,0,0,88,125,0,0,88,125,0,0,88,125,0,0,88,125,0,0,88,125,0,0,90,125,0,0,92,125,0,0,100,125,0,0,100,125,0,0,104,125,0,0,106,125,0,0,114,125,0,0,114,125,0,0,114,125,0,0,114,125,0,0,114,125,0,0,116,125,0,0,118,125,0,0,122,125,0,0,122,125,0,0,122,125,0,0,122,125,0,0,122,125,0,0,126,125,0,0,128,125,0,0,128,125,0,0,130,125,0,0,130,125,0,0,130,125,0,0,132,125,0,0,132,125,0,0,134,125,0,0,134,125,0,0,134,125,0,0,134,125,0,0,140,125,0,0,146,125,0,0,146,125,0,0,146,125,0,0,152,125,0,0,152,125,0,0,152,125,0,0,154,125,0,0,154,125,0,0,154,125,0,0,156,125,0,0,164,125,0,0,168,125,0,0,168,125,0,0,168,125,0,0,172,125,0,0,172,125,0,0,178,125,0,0,180,125,0,0,180,125,0,0,182,125,0,0,186,125,0,0,186,125,0,0,186,125,0,0,186,125,0,0,192,125,0,0,192,125,0,0,194,125,0,0,198,125,0,0,204,125,0,0,204,125,0,0,208,125,0,0,212,125,0,0,212,125,0,0,214,125,0,0,220,125,0,0,220,125,0,0,220,125,0,0,226,125,0,0,228,125,0,0,234,125,0,0,234,125,0,0,234,125,0,0,236,125,0,0,236,125,0,0,236,125,0,0,236,125,0,0,242,125,0,0,244,125,0,0,252,125,0,0,252,125,0,0,0,126,0,0,0,126,0,0,0,126,0,0,0,126,0,0,4,126,0,0,4,126,0,0,4,126,0,0,4,126,0,0,4,126,0,0,4,126,0,0,6,126,0,0,8,126,0,0,10,126,0,0,12,126,0,0,12,126,0,0,14,126,0,0,14,126,0,0,18,126,0,0,26,126,0,0,28,126,0,0,32,126,0,0,38,126,0,0,38,126,0,0,40,126,0,0,42,126,0,0,44,126,0,0,44,126,0,0,50,126,0,0,58,126,0,0,64,126,0,0,64,126,0,0,64,126,0,0,64,126,0,0,64,126,0,0,64,126,0,0,70,126,0,0,70,126,0,0,70,126,0,0,74,126,0,0,74,126,0,0,74,126,0,0,76,126,0,0,76,126,0,0,76,126,0,0,76,126,0,0,78,126,0,0,78,126,0,0,84,126,0,0,84,126,0,0,90,126,0,0,90,126,0,0,96,126,0,0,98,126,0,0,98,126,0,0,108,126,0,0,112,126,0,0,114,126,0,0,118,126,0,0,118,126,0,0,120,126,0,0,120,126,0,0,126,126,0,0,126,126,0,0,134,126,0,0,134,126,0,0,138,126,0,0,138,126,0,0,138,126,0,0,142,126,0,0,142,126,0,0,142,126,0,0,144,126,0,0,144,126,0,0,148,126,0,0,154,126,0,0,154,126,0,0,154,126,0,0,154,126,0,0,154,126,0,0,156,126,0,0,156,126,0,0,156,126,0,0,156,126,0,0,158,126,0,0,160,126,0,0,162,126,0,0,162,126,0,0,162,126,0,0,162,126,0,0,164,126,0,0,164,126,0,0,164,126,0,0,164,126,0,0,164,126,0,0,164,126,0,0,166,126,0,0,166,126,0,0,168,126,0,0,168,126,0,0,170,126,0,0,172,126,0,0,176,126,0,0,184,126,0,0,184,126,0,0,190,126,0,0,192,126,0,0,192,126,0,0,192,126,0,0,194,126,0,0,200,126,0,0,200,126,0,0,204,126,0,0,204,126,0,0,204,126,0,0,208,126,0,0,208,126,0,0,208,126,0,0,208,126,0,0,210,126,0,0,218,126,0,0,218,126,0,0,218,126,0,0,220,126,0,0,220,126,0,0,220,126,0,0,220,126,0,0,226,126,0,0,228,126,0,0,232,126,0,0,232,126,0,0,234,126,0,0,234,126,0,0,236,126,0,0,236,126,0,0,240,126,0,0,242,126,0,0,244,126,0,0,248,126,0,0,248,126,0,0,254,126,0,0,0,127,0,0,2,127,0,0,8,127,0,0,22,127,0,0,26,127,0,0,32,127,0,0,32,127,0,0,32,127,0,0,32,127,0,0,44,127,0,0,44,127,0,0,46,127,0,0,46,127,0,0,46,127,0,0,46,127,0,0,48,127,0,0,50,127,0,0,56,127,0,0,60,127,0,0,60,127,0,0,60,127,0,0,66,127,0,0,68,127,0,0,68,127,0,0,68,127,0,0,72,127,0,0,78,127,0,0,78,127,0,0,78,127,0,0,78,127,0,0,84,127,0,0,86,127,0,0,86,127,0,0,86,127,0,0,86,127,0,0,86,127,0,0,86,127,0,0,86,127,0,0,88,127,0,0,94,127,0,0,94,127,0,0,94,127,0,0,96,127,0,0,104,127,0,0,104,127,0,0,106,127,0,0,106,127,0,0,106,127,0,0,106,127,0,0,106,127,0,0,106,127,0,0,106,127,0,0,110,127,0,0,114,127,0,0,114,127,0,0,120,127,0,0,120,127,0,0,122,127,0,0,122,127,0,0,122,127,0,0,126,127,0,0,126,127,0,0,134,127,0,0,140,127,0,0,146,127,0,0,150,127,0,0,150,127,0,0,152,127,0,0,156,127,0,0,158,127,0,0,158,127,0,0,162,127,0,0,164,127,0,0,164,127,0,0,166,127,0,0,166,127,0,0,166,127,0,0,166,127,0,0,166,127,0,0,168,127,0,0,168,127,0,0,168,127,0,0,168,127,0,0,178,127,0,0,178,127,0,0,182,127,0,0,188,127,0,0,190,127,0,0,196,127,0,0,198,127,0,0,198,127,0,0,202,127,0,0,202,127,0,0,204,127,0,0,204,127,0,0,206,127,0,0,210,127,0,0,214,127,0,0,214,127,0,0,216,127,0,0,216,127,0,0,216,127,0,0,216,127,0,0,216,127,0,0,218,127,0,0,218,127,0,0,218,127,0,0,220,127,0,0,220,127,0,0,220,127,0,0,222,127,0,0,222,127,0,0,222,127,0,0,222,127,0,0,222,127,0,0,222,127,0,0,222,127,0,0,222,127,0,0,222,127,0,0,222,127,0,0,222,127,0,0,222,127,0,0,224,127,0,0,226,127,0,0,228,127,0,0,228,127,0,0,232,127,0,0,232,127,0,0,234,127,0,0,236,127,0,0,240,127,0,0,240,127,0,0,246,127,0,0,246,127,0,0,248,127,0,0,248,127,0,0,248,127,0,0,250,127,0,0,250,127,0,0,250,127,0,0,250,127,0,0,252,127,0,0,252,127,0,0,254,127,0,0,254,127,0,0,254,127,0,0,254,127,0,0,0,128,0,0,0,128,0,0,2,128,0,0,6,128,0,0,6,128,0,0,6,128,0,0,6,128,0,0,6,128,0,0,12,128,0,0,14,128,0,0,16,128,0,0,16,128,0,0,20,128,0,0,30,128,0,0,32,128,0,0,34,128,0,0,36,128,0,0,36,128,0,0,38,128,0,0,44,128,0,0,44,128,0,0,44,128,0,0,46,128,0,0,50,128,0,0,52,128,0,0,56,128,0,0,58,128,0,0,64,128,0,0,68,128,0,0,70,128,0,0,88,128,0,0,92,128,0,0,92,128,0,0,94,128,0,0,96,128,0,0,104,128,0,0,104,128,0,0,104,128,0,0,104,128,0,0,108,128,0,0,110,128,0,0,114,128,0,0,120,128,0,0,124,128,0,0,130,128,0,0,130,128,0,0,130,128,0,0,136,128,0,0,136,128,0,0,150,128,0,0,150,128,0,0,152,128,0,0,152,128,0,0,152,128,0,0,154,128,0,0,160,128,0,0,168,128,0,0,168,128,0,0,170,128,0,0,172,128,0,0,172,128,0,0,176,128,0,0,176,128,0,0,176,128,0,0,180,128,0,0,180,128,0,0,180,128,0,0,180,128,0,0,180,128,0,0,182,128,0,0,184,128,0,0,184,128,0,0,184,128,0,0,188,128,0,0,190,128,0,0,194,128,0,0,196,128,0,0,198,128,0,0,198,128,0,0,202,128,0,0,202,128,0,0,208,128,0,0,210,128,0,0,210,128,0,0,222,128,0,0,224,128,0,0,224,128,0,0,232,128,0,0,232,128,0,0,236,128,0,0,238,128,0,0,242,128,0,0,246,128,0,0,248,128,0,0,250,128,0,0,250,128,0,0,254,128,0,0,254,128,0,0,4,129,0,0,4,129,0,0,4,129,0,0,6,129,0,0,12,129,0,0,12,129,0,0,12,129,0,0,12,129,0,0,18,129,0,0,20,129,0,0,24,129,0,0,28,129,0,0,32,129,0,0,34,129,0,0,36,129,0,0,36,129,0,0,38,129,0,0,44,129,0,0,46,129,0,0,46,129,0,0,48,129,0,0,52,129,0,0,54,129,0,0,54,129,0,0,56,129,0,0,60,129,0,0,62,129,0,0,62,129,0,0,68,129,0,0,68,129,0,0,68,129,0,0,68,129,0,0,72,129,0,0,72,129,0,0,72,129,0,0,76,129,0,0,76,129,0,0,76,129,0,0,78,129,0,0,78,129,0,0,82,129,0,0,82,129,0,0,82,129,0,0,84,129,0,0,84,129,0,0,84,129,0,0,84,129,0,0,94,129,0,0,96,129,0,0,96,129,0,0,108,129,0,0,108,129,0,0,112,129,0,0,114,129,0,0,118,129,0,0,118,129,0,0,120,129,0,0,124,129,0,0,132,129,0,0,134,129,0,0,136,129,0,0,142,129,0,0,144,129,0,0,144,129,0,0,148,129,0,0,150,129,0,0,150,129,0,0,152,129,0,0,152,129,0,0,154,129,0,0,154,129,0,0,162,129,0,0,168,129,0,0,176,129,0,0,176,129,0,0,180,129,0,0,180,129,0,0,180,129,0,0,180,129,0,0,182,129,0,0,182,129,0,0,186,129,0,0,186,129,0,0,188,129,0,0,188,129,0,0,192,129,0,0,192,129,0,0,196,129,0,0,198,129,0,0,200,129,0,0,200,129,0,0,202,129,0,0,202,129,0,0,206,129,0,0,208,129,0,0,218,129,0,0,220,129,0,0,220,129,0,0,220,129,0,0,220,129,0,0,220,129,0,0,226,129,0,0,226,129,0,0,230,129,0,0,234,129,0,0,236,129,0,0,240,129,0,0,240,129,0,0,248,129,0,0,248,129,0,0,252,129,0,0,4,130,0,0,10,130,0,0,10,130,0,0,10,130,0,0,14,130,0,0,14,130,0,0,16,130,0,0,18,130,0,0,18,130,0,0,18,130,0,0,20,130,0,0,20,130,0,0,28,130,0,0,28,130,0,0,28,130,0,0,28,130,0,0,30,130,0,0,30,130,0,0,30,130,0,0,30,130,0,0,34,130,0,0,34,130,0,0,36,130,0,0,36,130,0,0,36,130,0,0,38,130,0,0,46,130,0,0,46,130,0,0,46,130,0,0,46,130,0,0,54,130,0,0,54,130,0,0,56,130,0,0,56,130,0,0,60,130,0,0,62,130,0,0,62,130,0,0,64,130,0,0,66,130,0,0,66,130,0,0,68,130,0,0,70,130,0,0,70,130,0,0,72,130,0,0,74,130,0,0,76,130,0,0,78,130,0,0,84,130,0,0,84,130,0,0,84,130,0,0,84,130,0,0,86,130,0,0,94,130,0,0,94,130,0,0,94,130,0,0,96,130,0,0,96,130,0,0,96,130,0,0,96,130,0,0,106,130,0,0,108,130,0,0,114,130,0,0,114,130,0,0,114,130,0,0,114,130,0,0,114,130,0,0,114,130,0,0,114,130,0,0,120,130,0,0,122,130,0,0,124,130,0,0,130,130,0,0,132,130,0,0,140,130,0,0,140,130,0,0,140,130,0,0,140,130,0,0,146,130,0,0,156,130,0,0,160,130,0,0,160,130,0,0,164,130,0,0,164,130,0,0,164,130,0,0,166,130,0,0,166,130,0,0,168,130,0,0,168,130,0,0,170,130,0,0,170,130,0,0,178,130,0,0,180,130,0,0,184,130,0,0,184,130,0,0,184,130,0,0,184,130,0,0,184,130,0,0,184,130,0,0,184,130,0,0,184,130,0,0,184,130,0,0,186,130,0,0,190,130,0,0,190,130,0,0,190,130,0,0,190,130,0,0,192,130,0,0,194,130,0,0,196,130,0,0,196,130,0,0,198,130,0,0,198,130,0,0,198,130,0,0,198,130,0,0,198,130,0,0,198,130,0,0,200,130,0,0,204,130,0,0,204,130,0,0,206,130,0,0,214,130,0,0,214,130,0,0,214,130,0,0,216,130,0,0,222,130,0,0,228,130,0,0,228,130,0,0,236,130,0,0,238,130,0,0,240,130,0,0,246,130,0,0,250,130,0,0,250,130,0,0,250,130,0,0,252,130,0,0,2,131,0,0,4,131,0,0,4,131,0,0,6,131,0,0,8,131,0,0,12,131,0,0,14,131,0,0,16,131,0,0,16,131,0,0,18,131,0,0,18,131,0,0,18,131,0,0,18,131,0,0,18,131,0,0,20,131,0,0,24,131,0,0,24,131,0,0,24,131,0,0,28,131,0,0,28,131,0,0,28,131,0,0,28,131,0,0,32,131,0,0,32,131,0,0,32,131,0,0,38,131,0,0,38,131,0,0,38,131,0,0,40,131,0,0,42,131,0,0,42,131,0,0,46,131,0,0,50,131,0,0,54,131,0,0,54,131,0,0,54,131,0,0,54,131,0,0,60,131,0,0,62,131,0,0,68,131,0,0,70,131,0,0,70,131,0,0,70,131,0,0,70,131,0,0,70,131,0,0,70,131,0,0,70,131,0,0,72,131,0,0,78,131,0,0,82,131,0,0,82,131,0,0,82,131,0,0,82,131,0,0,82,131,0,0,82,131,0,0,84,131,0,0,84,131,0,0,86,131,0,0,88,131,0,0,88,131,0,0,90,131,0,0,90,131,0,0,92,131,0,0,94,131,0,0,94,131,0,0,94,131,0,0,94,131,0,0,96,131,0,0,98,131,0,0,98,131,0,0,106,131,0,0,106,131,0,0,106,131,0,0,108,131,0,0,108,131,0,0,108,131,0,0,108,131,0,0,108,131,0,0,108,131,0,0,112,131,0,0,112,131,0,0,114,131,0,0,118,131,0,0,118,131,0,0,120,131,0,0,120,131,0,0,120,131,0,0,120,131,0,0,122,131,0,0,122,131,0,0,126,131,0,0,126,131,0,0,130,131,0,0,130,131,0,0,132,131,0,0,134,131,0,0,136,131,0,0,142,131,0,0,142,131,0,0,146,131,0,0,146,131,0,0,146,131,0,0,148,131,0,0,148,131,0,0,150,131,0,0,152,131,0,0,154,131,0,0,156,131,0,0,156,131,0,0,156,131,0,0,160,131,0,0,160,131,0,0,160,131,0,0,162,131,0,0,162,131,0,0,162,131,0,0,166,131,0,0,172,131,0,0,176,131,0,0,176,131,0,0,178,131,0,0,182,131,0,0,186,131,0,0,186,131,0,0,186,131,0,0,186,131,0,0,188,131,0,0,188,131,0,0,188,131,0,0,188,131,0,0,188,131,0,0,188,131,0,0,192,131,0,0,196,131,0,0,196,131,0,0,196,131,0,0,198,131,0,0,202,131,0,0,208,131,0,0,208,131,0,0,208,131,0,0,208,131,0,0,208,131,0,0,214,131,0,0,214,131,0,0,216,131,0,0,216,131,0,0,222,131,0,0,238,131,0,0,238,131,0,0,238,131,0,0,238,131,0,0,238,131,0,0,242,131,0,0,242,131,0,0,242,131,0,0,242,131,0,0,248,131,0,0,248,131,0,0,2,132,0,0,4,132,0,0,4,132,0,0,4,132,0,0,6,132,0,0,8,132,0,0,8,132,0,0,24,132,0,0,26,132,0,0,26,132,0,0,26,132,0,0,30,132,0,0,30,132,0,0,30,132,0,0,32,132,0,0,36,132,0,0,36,132,0,0,36,132,0,0,42,132,0,0,48,132,0,0,52,132,0,0,54,132,0,0,56,132,0,0,58,132,0,0,72,132,0,0,72,132,0,0,74,132,0,0,74,132,0,0,78,132,0,0,84,132,0,0,88,132,0,0,94,132,0,0,94,132,0,0,100,132,0,0,102,132,0,0,108,132,0,0,114,132,0,0,116,132,0,0,118,132,0,0,118,132,0,0,132,132,0,0,132,132,0,0,136,132,0,0,136,132,0,0,138,132,0,0,138,132,0,0,142,132,0,0,142,132,0,0,144,132,0,0,150,132,0,0,150,132,0,0,156,132,0,0,162,132,0,0,162,132,0,0,168,132,0,0,170,132,0,0,170,132,0,0,170,132,0,0,170,132,0,0,170,132,0,0,174,132,0,0,176,132,0,0,176,132,0,0,176,132,0,0,178,132,0,0,192,132,0,0,198,132,0,0,202,132,0,0,202,132,0,0,202,132,0,0,202,132,0,0,202,132,0,0,202,132,0,0,210,132,0,0,210,132,0,0,212,132,0,0,212,132,0,0,214,132,0,0,216,132,0,0,220,132,0,0,220,132,0,0,224,132,0,0,226,132,0,0,230,132,0,0,230,132,0,0,230,132,0,0,230,132,0,0,230,132,0,0,232,132,0,0,234,132,0,0,234,132,0,0,234,132,0,0,242,132,0,0,0,133,0,0,2,133,0,0,6,133,0,0,8,133,0,0,16,133,0,0,16,133,0,0,16,133,0,0,20,133,0,0,26,133,0,0,26,133,0,0,26,133,0,0,30,133,0,0,30,133,0,0,30,133,0,0,32,133,0,0,34,133,0,0,40,133,0,0,40,133,0,0,46,133,0,0,48,133,0,0,48,133,0,0,48,133,0,0,50,133,0,0,52,133,0,0,52,133,0,0,58,133,0,0,62,133,0,0,64,133,0,0,64,133,0,0,64,133,0,0,68,133,0,0,68,133,0,0,68,133,0,0,74,133,0,0,76,133,0,0,76,133,0,0,80,133,0,0,82,133,0,0,82,133,0,0,86,133,0,0,86,133,0,0,86,133,0,0,88,133,0,0,88,133,0,0,88,133,0,0,88,133,0,0,94,133,0,0,94,133,0,0,94,133,0,0,98,133,0,0,98,133,0,0,102,133,0,0,112,133,0,0,116,133,0,0,118,133,0,0,118,133,0,0,122,133,0,0,122,133,0,0,126,133,0,0,126,133,0,0,126,133,0,0,126,133,0,0,126,133,0,0,126,133,0,0,126,133,0,0,126,133,0,0,126,133,0,0,126,133,0,0,128,133,0,0,128,133,0,0,128,133,0,0,130,133,0,0,130,133,0,0,134,133,0,0,138,133,0,0,146,133,0,0,146,133,0,0,146,133,0,0,150,133,0,0,152,133,0,0,152,133,0,0,152,133,0,0,154,133,0,0,154,133,0,0,154,133,0,0,154,133,0,0,156,133,0,0,160,133,0,0,160,133,0,0,166,133,0,0,166,133,0,0,168,133,0,0,170,133,0,0,178,133,0,0,186,133,0,0,186,133,0,0,186,133,0,0,186,133,0,0,186,133,0,0,186,133,0,0,186,133,0,0,186,133,0,0,188,133,0,0,190,133,0,0,190,133,0,0,190,133,0,0,202,133,0,0,204,133,0,0,204,133,0,0,204,133,0,0,204,133,0,0,204,133,0,0,206,133,0,0,208,133,0,0,208,133,0,0,212,133,0,0,212,133,0,0,214,133,0,0,214,133,0,0,214,133,0,0,214,133,0,0,214,133,0,0,220,133,0,0,224,133,0,0,232,133,0,0,232,133,0,0,232,133,0,0,234,133,0,0,234,133,0,0,236,133,0,0,238,133,0,0,238,133,0,0,244,133,0,0,248,133,0,0,248,133,0,0,0,134,0,0,2,134,0,0,4,134,0,0,4,134,0,0,4,134,0,0,6,134,0,0,6,134,0,0,8,134,0,0,10,134,0,0,16,134,0,0,16,134,0,0,18,134,0,0,18,134,0,0,18,134,0,0,18,134,0,0,22,134,0,0,22,134,0,0,24,134,0,0,30,134,0,0,34,134,0,0,42,134,0,0,42,134,0,0,42,134,0,0,44,134,0,0,52,134,0,0,54,134,0,0,54,134,0,0,56,134,0,0,60,134,0,0,60,134,0,0,62,134,0,0,62,134,0,0,64,134,0,0,66,134,0,0,66,134,0,0,66,134,0,0,66,134,0,0,66,134,0,0,66,134,0,0,68,134,0,0,70,134,0,0,70,134,0,0,74,134,0,0,74,134,0,0,74,134,0,0,74,134,0,0,80,134,0,0,82,134,0,0,84,134,0,0,84,134,0,0,84,134,0,0,84,134,0,0,84,134,0,0,84,134,0,0,84,134,0,0,84,134,0,0,86,134,0,0,88,134,0,0,92,134,0,0,92,134,0,0,92,134,0,0,92,134,0,0,94,134,0,0,94,134,0,0,94,134,0,0,98,134,0,0,100,134,0,0,102,134,0,0,102,134,0,0,110,134,0,0,112,134,0,0,114,134,0,0,118,134,0,0,118,134,0,0,130,134,0,0,136,134,0,0,142,134,0,0,142,134,0,0,142,134,0,0,142,134,0,0,142,134,0,0,142,134,0,0,142,134,0,0,142,134,0,0,142,134,0,0,144,134,0,0,144,134,0,0,152,134,0,0,154,134,0,0,156,134,0,0,156,134,0,0,156,134,0,0,160,134,0,0,168,134,0,0,168,134,0,0,178,134,0,0,180,134,0,0,180,134,0,0,180,134,0,0,190,134,0,0,190,134,0,0,192,134,0,0,192,134,0,0,196,134,0,0,204,134,0,0,206,134,0,0,206,134,0,0,206,134,0,0,206,134,0,0,206,134,0,0,210,134,0,0,218,134,0,0,220,134,0,0,224,134,0,0,226,134,0,0,226,134,0,0,230,134,0,0,230,134,0,0,234,134,0,0,234,134,0,0,238,134,0,0,240,134,0,0,240,134,0,0,244,134,0,0,248,134,0,0,248,134,0,0,248,134,0,0,252,134,0,0,252,134,0,0,252,134,0,0,252,134,0,0,252,134,0,0,252,134,0,0,0,135,0,0,4,135,0,0,4,135,0,0,6,135,0,0,6,135,0,0,6,135,0,0,6,135,0,0,14,135,0,0,16,135,0,0,18,135,0,0,20,135,0,0,26,135,0,0,28,135,0,0,32,135,0,0,32,135,0,0,34,135,0,0,38,135,0,0,38,135,0,0,42,135,0,0,42,135,0,0,42,135,0,0,42,135,0,0,42,135,0,0,42,135,0,0,44,135,0,0,44,135,0,0,46,135,0,0,48,135,0,0,54,135,0,0,54,135,0,0,54,135,0,0,54,135,0,0,54,135,0,0,54,135,0,0,56,135,0,0,60,135,0,0,60,135,0,0,60,135,0,0,62,135,0,0,62,135,0,0,64,135,0,0,64,135,0,0,66,135,0,0,66,135,0,0,66,135,0,0,72,135,0,0,76,135,0,0,80,135,0,0,82,135,0,0,82,135,0,0,86,135,0,0,88,135,0,0,88,135,0,0,88,135,0,0,88,135,0,0,88,135,0,0,88,135,0,0,90,135,0,0,92,135,0,0,92,135,0,0,92,135,0,0,92,135,0,0,92,135,0,0,94,135,0,0,96,135,0,0,98,135,0,0,102,135,0,0,102,135,0,0,102,135,0,0,104,135,0,0,106,135,0,0,106,135,0,0,108,135,0,0,110,135,0,0,116,135,0,0,116,135,0,0,120,135,0,0,120,135,0,0,120,135,0,0,122,135,0,0,126,135,0,0,132,135,0,0,132,135,0,0,136,135,0,0,136,135,0,0,136,135,0,0,136,135,0,0,136,135,0,0,140,135,0,0,154,135,0,0,154,135,0,0,156,135,0,0,162,135,0,0,164,135,0,0,170,135,0,0,174,135,0,0,174,135,0,0,174,135,0,0,176,135,0,0,176,135,0,0,176,135,0,0,176,135,0,0,180,135,0,0,180,135,0,0,180,135,0,0,180,135,0,0,182,135,0,0,182,135,0,0,190,135,0,0,190,135,0,0,194,135,0,0,194,135,0,0,194,135,0,0,194,135,0,0,194,135,0,0,194,135,0,0,196,135,0,0,196,135,0,0,200,135,0,0,200,135,0,0,200,135,0,0,200,135,0,0,200,135,0,0,200,135,0,0,202,135,0,0,204,135,0,0,210,135,0,0,210,135,0,0,220,135,0,0,220,135,0,0,222,135,0,0,230,135,0,0,236,135,0,0,238,135,0,0,242,135,0,0,244,135,0,0,244,135,0,0,244,135,0,0,244,135,0,0,246,135,0,0,246,135,0,0,248,135,0,0,248,135,0,0,248,135,0,0,248,135,0,0,252,135,0,0,254,135,0,0,254,135,0,0,2,136,0,0,6,136,0,0,8,136,0,0,8,136,0,0,12,136,0,0,14,136,0,0,14,136,0,0,14,136,0,0,16,136,0,0,16,136,0,0,16,136,0,0,22,136,0,0,24,136,0,0,24,136,0,0,34,136,0,0,34,136,0,0,36,136,0,0,36,136,0,0,40,136,0,0,44,136,0,0,44,136,0,0,46,136,0,0,46,136,0,0,48,136,0,0,48,136,0,0,54,136,0,0,54,136,0,0,56,136,0,0,60,136,0,0,60,136,0,0,66,136,0,0,66,136,0,0,70,136,0,0,70,136,0,0,70,136,0,0,70,136,0,0,76,136,0,0,76,136,0,0,80,136,0,0,80,136,0,0,80,136,0,0,80,136,0,0,82,136,0,0,84,136,0,0,84,136,0,0,84,136,0,0,84,136,0,0,84,136,0,0,84,136,0,0,84,136,0,0,86,136,0,0,88,136,0,0,92,136,0,0,94,136,0,0,94,136,0,0,96,136,0,0,100,136,0,0,100,136,0,0,104,136,0,0,104,136,0,0,104,136,0,0,104,136,0,0,110,136,0,0,110,136,0,0,110,136,0,0,110,136,0,0,110,136,0,0,110,136,0,0,110,136,0,0,114,136,0,0,118,136,0,0,122,136,0,0,124,136,0,0,128,136,0,0,128,136,0,0,130,136,0,0,130,136,0,0,138,136,0,0,144,136,0,0,144,136,0,0,144,136,0,0,148,136,0,0,154,136,0,0,158,136,0,0,160,136,0,0,160,136,0,0,164,136,0,0,168,136,0,0,170,136,0,0,170,136,0,0,170,136,0,0,174,136,0,0,174,136,0,0,176,136,0,0,176,136,0,0,176,136,0,0,176,136,0,0,176,136,0,0,180,136,0,0,190,136,0,0,190,136,0,0,190,136,0,0,192,136,0,0,196,136,0,0,198,136,0,0,198,136,0,0,198,136,0,0,200,136,0,0,200,136,0,0,200,136,0,0,204,136,0,0,204,136,0,0,206,136,0,0,212,136,0,0,212,136,0,0,212,136,0,0,214,136,0,0,218,136,0,0,222,136,0,0,224,136,0,0,224,136,0,0,224,136,0,0,224,136,0,0,224,136,0,0,228,136,0,0,236,136,0,0,236,136,0,0,236,136,0,0,236,136,0,0,238,136,0,0,240,136,0,0,244,136,0,0,244,136,0,0,244,136,0,0,250,136,0,0,252,136,0,0,252,136,0,0,252,136,0,0,0,137,0,0,0,137,0,0,0,137,0,0,0,137,0,0,2,137,0,0,6,137,0,0,8,137,0,0,8,137,0,0,8,137,0,0,8,137,0,0,12,137,0,0,14,137,0,0,14,137,0,0,14,137,0,0,14,137,0,0,14,137,0,0,16,137,0,0,16,137,0,0,26,137,0,0,26,137,0,0,26,137,0,0,26,137,0,0,26,137,0,0,26,137,0,0,26,137,0,0,28,137,0,0,30,137,0,0,38,137,0,0,40,137,0,0,40,137,0,0,40,137,0,0,40,137,0,0,46,137,0,0,56,137,0,0,58,137,0,0,60,137,0,0,60,137,0,0,60,137,0,0,60,137,0,0,60,137,0,0,62,137,0,0,62,137,0,0,62,137,0,0,64,137,0,0,72,137,0,0,74,137,0,0,78,137,0,0,80,137,0,0,80,137,0,0,82,137,0,0,82,137,0,0,86,137,0,0,86,137,0,0,94,137,0,0,96,137,0,0,98,137,0,0,98,137,0,0,98,137,0,0,98,137,0,0,98,137,0,0,104,137,0,0,108,137,0,0,110,137,0,0,116,137,0,0,120,137,0,0,122,137,0,0,128,137,0,0,130,137,0,0,130,137,0,0,132,137,0,0,132,137,0,0,132,137,0,0,132,137,0,0,132,137,0,0,134,137,0,0,134,137,0,0,134,137,0,0,134,137,0,0,140,137,0,0,144,137,0,0,144,137,0,0,146,137,0,0,146,137,0,0,154,137,0,0,156,137,0,0,160,137,0,0,166,137,0,0,166,137,0,0,166,137,0,0,166,137,0,0,166,137,0,0,166,137,0,0,168,137,0,0,168,137,0,0,168,137,0,0,170,137,0,0,172,137,0,0,174,137,0,0,174,137,0,0,174,137,0,0,174,137,0,0,174,137,0,0,174,137,0,0,174,137,0,0,176,137,0,0,176,137,0,0,178,137,0,0,178,137,0,0,182,137,0,0,182,137,0,0,182,137,0,0,182,137,0,0,182,137,0,0,182,137,0,0,182,137,0,0,182,137,0,0,188,137,0,0,192,137,0,0,196,137,0,0,196,137,0,0,196,137,0,0,196,137,0,0,196,137,0,0,200,137,0,0,202,137,0,0,204,137,0,0,204,137,0,0,210,137,0,0,210,137,0,0,212,137,0,0,212,137,0,0,212,137,0,0,212,137,0,0,212,137,0,0,212,137,0,0,212,137,0,0,212,137,0,0,212,137,0,0,212,137,0,0,212,137,0,0,212,137,0,0,214,137,0,0,214,137,0,0,214,137,0,0,214,137,0,0,216,137,0,0,220,137,0,0,222,137,0,0,226,137,0,0,230,137,0,0,236,137,0,0,242,137,0,0,248,137,0,0,248,137,0,0,248,137,0,0,248,137,0,0,250,137,0,0,250,137,0,0,252,137,0,0,2,138,0,0,2,138,0,0,2,138,0,0,4,138,0,0,8,138,0,0,8,138,0,0,10,138,0,0,16,138,0,0,16,138,0,0,22,138,0,0,24,138,0,0,32,138,0,0,32,138,0,0,34,138,0,0,44,138,0,0,44,138,0,0,46,138,0,0,46,138,0,0,50,138,0,0,50,138,0,0,50,138,0,0,54,138,0,0,54,138,0,0,54,138,0,0,54,138,0,0,56,138,0,0,58,138,0,0,64,138,0,0,68,138,0,0,70,138,0,0,70,138,0,0,70,138,0,0,70,138,0,0,70,138,0,0,70,138,0,0,74,138,0,0,74,138,0,0,80,138,0,0,80,138,0,0,80,138,0,0,80,138,0,0,80,138,0,0,82,138,0,0,82,138,0,0,82,138,0,0,82,138,0,0,82,138,0,0,88,138,0,0,92,138,0,0,92,138,0,0,94,138,0,0,94,138,0,0,94,138,0,0,94,138,0,0,94,138,0,0,96,138,0,0,98,138,0,0,98,138,0,0,98,138,0,0,98,138,0,0,98,138,0,0,100,138,0,0,100,138,0,0,100,138,0,0,100,138,0,0,100,138,0,0,102,138,0,0,106,138,0,0,108,138,0,0,108,138,0,0,108,138,0,0,110,138,0,0,114,138,0,0,114,138,0,0,118,138,0,0,118,138,0,0,122,138,0,0,128,138,0,0,128,138,0,0,128,138,0,0,130,138,0,0,130,138,0,0,130,138,0,0,132,138,0,0,134,138,0,0,134,138,0,0,134,138,0,0,136,138,0,0,138,138,0,0,138,138,0,0,138,138,0,0,138,138,0,0,138,138,0,0,144,138,0,0,154,138,0,0,154,138,0,0,154,138,0,0,154,138,0,0,154,138,0,0,154,138,0,0,156,138,0,0,160,138,0,0,162,138,0,0,164,138,0,0,164,138,0,0,164,138,0,0,164,138,0,0,172,138,0,0,174,138,0,0,176,138,0,0,180,138,0,0,180,138,0,0,182,138,0,0,182,138,0,0,182,138,0,0,182,138,0,0,184,138,0,0,184,138,0,0,184,138,0,0,186,138,0,0,190,138,0,0,192,138,0,0,194,138,0,0,194,138,0,0,200,138,0,0,202,138,0,0,204,138,0,0,204,138,0,0,204,138,0,0,204,138,0,0,208,138,0,0,220,138,0,0,230,138,0,0,236,138,0,0,240,138,0,0,244,138,0,0,244,138,0,0,244,138,0,0,244,138,0,0,244,138,0,0,244,138,0,0,244,138,0,0,246,138,0,0,246,138,0,0,246,138,0,0,248,138,0,0,250,138,0,0,252,138,0,0,254,138,0,0,254,138,0,0,254,138,0,0,2,139,0,0,8,139,0,0,8,139,0,0,8,139,0,0,8,139,0,0,8,139,0,0,8,139,0,0,10,139,0,0,10,139,0,0,10,139,0,0,10,139,0,0,10,139,0,0,10,139,0,0,10,139,0,0,12,139,0,0,16,139,0,0,18,139,0,0,18,139,0,0,18,139,0,0,20,139,0,0,26,139,0,0,26,139,0,0,30,139,0,0,32,139,0,0,36,139,0,0,38,139,0,0,46,139,0,0,48,139,0,0,48,139,0,0,54,139,0,0,54,139,0,0,54,139,0,0,62,139,0,0,64,139,0,0,64,139,0,0,66,139,0,0,72,139,0,0,72,139,0,0,76,139,0,0,76,139,0,0,80,139,0,0,90,139,0,0,90,139,0,0,90,139,0,0,90,139,0,0,96,139,0,0,96,139,0,0,96,139,0,0,96,139,0,0,96,139,0,0,96,139,0,0,96,139,0,0,98,139,0,0,98,139,0,0,98,139,0,0,102,139,0,0,106,139,0,0,106,139,0,0,106,139,0,0,106,139,0,0,114,139,0,0,116,139,0,0,120,139,0,0,120,139,0,0,122,139,0,0,126,139,0,0,130,139,0,0,130,139,0,0,136,139,0,0,136,139,0,0,140,139,0,0,140,139,0,0,140,139,0,0,142,139,0,0,142,139,0,0,144,139,0,0,144,139,0,0,144,139,0,0,148,139,0,0,150,139,0,0,152,139,0,0,156,139,0,0,156,139,0,0,158,139,0,0,158,139,0,0,160,139,0,0,160,139,0,0,162,139,0,0,162,139,0,0,162,139,0,0,164,139,0,0,164,139,0,0,168,139,0,0,168,139,0,0,168,139,0,0,172,139,0,0,172,139,0,0,172,139,0,0,174,139,0,0,180,139,0,0,188,139,0,0,188,139,0,0,192,139,0,0,196,139,0,0,198,139,0,0,208,139,0,0,212,139,0,0,212,139,0,0,212,139,0,0,214,139,0,0,214,139,0,0,222,139,0,0,222,139,0,0,222,139,0,0,224,139,0,0,224,139,0,0,224,139,0,0,226,139,0,0,230,139,0,0,232,139,0,0,232,139,0,0,244,139,0,0,244,139,0,0,246,139,0,0,248,139,0,0,248,139,0,0,248,139,0,0,254,139,0,0,8,140,0,0,8,140,0,0,10,140,0,0,10,140,0,0,16,140,0,0,24,140,0,0,30,140,0,0,30,140,0,0,36,140,0,0,36,140,0,0,36,140,0,0,46,140,0,0,46,140,0,0,50,140,0,0,52,140,0,0,52,140,0,0,54,140,0,0,56,140,0,0,56,140,0,0,58,140,0,0,58,140,0,0,62,140,0,0,64,140,0,0,66,140,0,0,66,140,0,0,66,140,0,0,66,140,0,0,66,140,0,0,66,140,0,0,70,140,0,0,70,140,0,0,72,140,0,0,74,140,0,0,78,140,0,0,78,140,0,0,78,140,0,0,78,140,0,0,82,140,0,0,82,140,0,0,82,140,0,0,82,140,0,0,86,140,0,0,86,140,0,0,100,140,0,0,100,140,0,0,102,140,0,0,102,140,0,0,102,140,0,0,104,140,0,0,106,140,0,0,106,140,0,0,114,140,0,0,116,140,0,0,116,140,0,0,116,140,0,0,120,140,0,0,120,140,0,0,126,140,0,0,130,140,0,0,130,140,0,0,132,140,0,0,132,140,0,0,138,140,0,0,140,140,0,0,140,140,0,0,140,140,0,0,144,140,0,0,144,140,0,0,144,140,0,0,144,140,0,0,146,140,0,0,154,140,0,0,156,140,0,0,156,140,0,0,156,140,0,0,160,140,0,0,160,140,0,0,162,140,0,0,162,140,0,0,164,140,0,0,164,140,0,0,166,140,0,0,166,140,0,0,166,140,0,0,166,140,0,0,168,140,0,0,168,140,0,0,168,140,0,0,168,140,0,0,174,140,0,0,174,140,0,0,176,140,0,0,176,140,0,0,180,140,0,0,182,140,0,0,184,140,0,0,190,140,0,0,190,140,0,0,192,140,0,0,196,140,0,0,196,140,0,0,200,140,0,0,200,140,0,0,200,140,0,0,202,140,0,0,210,140,0,0,210,140,0,0,210,140,0,0,214,140,0,0,216,140,0,0,226,140,0,0,226,140,0,0,226,140,0,0,226,140,0,0,230,140,0,0,230,140,0,0,230,140,0,0,230,140,0,0,236,140,0,0,236,140,0,0,240,140,0,0,250,140,0,0,2,141,0,0,2,141,0,0,2,141,0,0,2,141,0,0,2,141,0,0,6,141,0,0,6,141,0,0,6,141,0,0,8,141,0,0,8,141,0,0,10,141,0,0,10,141,0,0,10,141,0,0,10,141,0,0,12,141,0,0,12,141,0,0,12,141,0,0,12,141,0,0,12,141,0,0,18,141,0,0,22,141,0,0,32,141,0,0,36,141,0,0,38,141,0,0,38,141,0,0,38,141,0,0,42,141,0,0,42,141,0,0,42,141,0,0,48,141,0,0,60,141,0,0,62,141,0,0,62,141,0,0,62,141,0,0,62,141,0,0,62,141,0,0,62,141,0,0,64,141,0,0,64,141,0,0,66,141,0,0,66,141,0,0,66,141,0,0,70,141,0,0,70,141,0,0,70,141,0,0,70,141,0,0,70,141,0,0,70,141,0,0,72,141,0,0,72,141,0,0,74,141,0,0,78,141,0,0,80,141,0,0,80,141,0,0,80,141,0,0,80,141,0,0,86,141,0,0,86,141,0,0,86,141,0,0,90,141,0,0,94,141,0,0,94,141,0,0,94,141,0,0,96,141,0,0,102,141,0,0,114,141,0,0,120,141,0,0,120,141,0,0,120,141,0,0,126,141,0,0,134,141,0,0,134,141,0,0,136,141,0,0,140,141,0,0,148,141,0,0,148,141,0,0,150,141,0,0,150,141,0,0,152,141,0,0,152,141,0,0,152,141,0,0,152,141,0,0,152,141,0,0,154,141,0,0,164,141,0,0,164,141,0,0,164,141,0,0,164,141,0,0,164,141,0,0,174,141,0,0,176,141,0,0,176,141,0,0,176,141,0,0,178,141,0,0,178,141,0,0,182,141,0,0,182,141,0,0,188,141,0,0,188,141,0,0,190,141,0,0,192,141,0,0,192,141,0,0,192,141,0,0,192,141,0,0,194,141,0,0,194,141,0,0,194,141,0,0,202,141,0,0,202,141,0,0,202,141,0,0,204,141,0,0,204,141,0,0,206,141,0,0,206,141,0,0,208,141,0,0,218,141,0,0,218,141,0,0,226,141,0,0,238,141,0,0,240,141,0,0,242,141,0,0,242,141,0,0,248,141,0,0,252,141,0,0,254,141,0,0,254,141,0,0,254,141,0,0,0,142,0,0,4,142,0,0,8,142,0,0,14,142,0,0,14,142,0,0,14,142,0,0,16,142,0,0,16,142,0,0,16,142,0,0,18,142,0,0,20,142,0,0,20,142,0,0,20,142,0,0,22,142,0,0,22,142,0,0,26,142,0,0,30,142,0,0,30,142,0,0,30,142,0,0,30,142,0,0,30,142,0,0,30,142,0,0,32,142,0,0,36,142,0,0,36,142,0,0,36,142,0,0,38,142,0,0,40,142,0,0,40,142,0,0,40,142,0,0,44,142,0,0,44,142,0,0,46,142,0,0,46,142,0,0,48,142,0,0,52,142,0,0,58,142,0,0,64,142,0,0,66,142,0,0,66,142,0,0,70,142,0,0,70,142,0,0,70,142,0,0,70,142,0,0,70,142,0,0,70,142,0,0,72,142,0,0,72,142,0,0,74,142,0,0,74,142,0,0,74,142,0,0,74,142,0,0,74,142,0,0,74,142,0,0,80,142,0,0,80,142,0,0,80,142,0,0,88,142,0,0,94,142,0,0,96,142,0,0,100,142,0,0,100,142,0,0,102,142,0,0,102,142,0,0,102,142,0,0,108,142,0,0,110,142,0,0,110,142,0,0,114,142,0,0,118,142,0,0,122,142,0,0,124,142,0,0,124,142,0,0,130,142,0,0,130,142,0,0,130,142,0,0,130,142,0,0,138,142,0,0,146,142,0,0,158,142,0,0,158,142,0,0,158,142,0,0,160,142,0,0,160,142,0,0,170,142,0,0,172,142,0,0,174,142,0,0,178,142,0,0,178,142,0,0,186,142,0,0,190,142,0,0,196,142,0,0,196,142,0,0,196,142,0,0,198,142,0,0,198,142,0,0,200,142,0,0,204,142,0,0,210,142,0,0,216,142,0,0,216,142,0,0,218,142,0,0,220,142,0,0,220,142,0,0,220,142,0,0,220,142,0,0,226,142,0,0,226,142,0,0,226,142,0,0,228,142,0,0,228,142,0,0,228,142,0,0,230,142,0,0,230,142,0,0,236,142,0,0,238,142,0,0,238,142,0,0,244,142,0,0,244,142,0,0,244,142,0,0,246,142,0,0,254,142,0,0,254,142,0,0,254,142,0,0,0,143,0,0,0,143,0,0,4,143,0,0,4,143,0,0,4,143,0,0,4,143,0,0,10,143,0,0,12,143,0,0,12,143,0,0,12,143,0,0,14,143,0,0,14,143,0,0,14,143,0,0,16,143,0,0,16,143,0,0,24,143,0,0,32,143,0,0,32,143,0,0,38,143,0,0,38,143,0,0,38,143,0,0,38,143,0,0,38,143,0,0,38,143,0,0,38,143,0,0,38,143,0,0,40,143,0,0,40,143,0,0,44,143,0,0,50,143,0,0,50,143,0,0,52,143,0,0,54,143,0,0,56,143,0,0,64,143,0,0,70,143,0,0,78,143,0,0,80,143,0,0,84,143,0,0,84,143,0,0,84,143,0,0,84,143,0,0,84,143,0,0,84,143,0,0,84,143,0,0,84,143,0,0,84,143,0,0,84,143,0,0,88,143,0,0,92,143,0,0,92,143,0,0,92,143,0,0,94,143,0,0,94,143,0,0,102,143,0,0,108,143,0,0,108,143,0,0,122,143,0,0,124,143,0,0,124,143,0,0,124,143,0,0,126,143,0,0,130,143,0,0,130,143,0,0,136,143,0,0,138,143,0,0,138,143,0,0,140,143,0,0,142,143,0,0,146,143,0,0,148,143,0,0,150,143,0,0,150,143,0,0,150,143,0,0,154,143,0,0,158,143,0,0,160,143,0,0,160,143,0,0,162,143,0,0,170,143,0,0,174,143,0,0,174,143,0,0,174,143,0,0,176,143,0,0,176,143,0,0,176,143,0,0,176,143,0,0,176,143,0,0,176,143,0,0,176,143,0,0,176,143,0,0,176,143,0,0,176,143,0,0,182,143,0,0,182,143,0,0,182,143,0,0,182,143,0,0,188,143,0,0,188,143,0,0,188,143,0,0,188,143,0,0,188,143,0,0,190,143,0,0,190,143,0,0,190,143,0,0,204,143,0,0,204,143,0,0,206,143,0,0,206,143,0,0,210,143,0,0,210,143,0,0,210,143,0,0,216,143,0,0,216,143,0,0,216,143,0,0,216,143,0,0,216,143,0,0,216,143,0,0,218,143,0,0,218,143,0,0,218,143,0,0,218,143,0,0,222,143,0,0,224,143,0,0,230,143,0,0,230,143,0,0,234,143,0,0,234,143,0,0,240,143,0,0,240,143,0,0,244,143,0,0,246,143,0,0,248,143,0,0,248,143,0,0,252,143,0,0,254,143,0,0,254,143,0,0,4,144,0,0,4,144,0,0,4,144,0,0,4,144,0,0,8,144,0,0,10,144,0,0,10,144,0,0,16,144,0,0,18,144,0,0,20,144,0,0,20,144,0,0,32,144,0,0,32,144,0,0,36,144,0,0,40,144,0,0,40,144,0,0,40,144,0,0,40,144,0,0,40,144,0,0,42,144,0,0,42,144,0,0,42,144,0,0,42,144,0,0,44,144,0,0,48,144,0,0,48,144,0,0,52,144,0,0,56,144,0,0,56,144,0,0,58,144,0,0,64,144,0,0,68,144,0,0,72,144,0,0,72,144,0,0,72,144,0,0,72,144,0,0,72,144,0,0,78,144,0,0,78,144,0,0,88,144,0,0,88,144,0,0,90,144,0,0,90,144,0,0,90,144,0,0,98,144,0,0,98,144,0,0,98,144,0,0,98,144,0,0,98,144,0,0,98,144,0,0,98,144,0,0,98,144,0,0,98,144,0,0,100,144,0,0,102,144,0,0,106,144,0,0,112,144,0,0,112,144,0,0,120,144,0,0,120,144,0,0,122,144,0,0,122,144,0,0,124,144,0,0,124,144,0,0,124,144,0,0,130,144,0,0,130,144,0,0,130,144,0,0,134,144,0,0,136,144,0,0,142,144,0,0,142,144,0,0,146,144,0,0,146,144,0,0,146,144,0,0,146,144,0,0,152,144,0,0,158,144,0,0,158,144,0,0,160,144,0,0,162,144,0,0,170,144,0,0,172,144,0,0,174,144,0,0,178,144,0,0,178,144,0,0,178,144,0,0,178,144,0,0,178,144,0,0,178,144,0,0,180,144,0,0,184,144,0,0,186,144,0,0,190,144,0,0,190,144,0,0,190,144,0,0,190,144,0,0,190,144,0,0,190,144,0,0,194,144,0,0,194,144,0,0,196,144,0,0,198,144,0,0,202,144,0,0,202,144,0,0,206,144,0,0,206,144,0,0,210,144,0,0,210,144,0,0,212,144,0,0,218,144,0,0,220,144,0,0,220,144,0,0,220,144,0,0,220,144,0,0,220,144,0,0,220,144,0,0,222,144,0,0,222,144,0,0,224,144,0,0,224,144,0,0,234,144,0,0,236,144,0,0,242,144,0,0,242,144,0,0,242,144,0,0,242,144,0,0,244,144,0,0,252,144,0,0,252,144,0,0,0,145,0,0,0,145,0,0,0,145,0,0,2,145,0,0,8,145,0,0,8,145,0,0,12,145,0,0,18,145,0,0,22,145,0,0,24,145,0,0,24,145,0,0,28,145,0,0,30,145,0,0,34,145,0,0,36,145,0,0,36,145,0,0,36,145,0,0,46,145,0,0,46,145,0,0,48,145,0,0,48,145,0,0,52,145,0,0,54,145,0,0,54,145,0,0,58,145,0,0,58,145,0,0,60,145,0,0,60,145,0,0,60,145,0,0,60,145,0,0,64,145,0,0,66,145,0,0,68,145,0,0,68,145,0,0,76,145,0,0,80,145,0,0,80,145,0,0,80,145,0,0,82,145,0,0,82,145,0,0,86,145,0,0,86,145,0,0,86,145,0,0,86,145,0,0,86,145,0,0,86,145,0,0,88,145,0,0,88,145,0,0,90,145,0,0,90,145,0,0,96,145,0,0,96,145,0,0,96,145,0,0,102,145,0,0,102,145,0,0,104,145,0,0,106,145,0,0,114,145,0,0,118,145,0,0,120,145,0,0,126,145,0,0,126,145,0,0,130,145,0,0,130,145,0,0,132,145,0,0,132,145,0,0,132,145,0,0,138,145,0,0,144,145,0,0,146,145,0,0,146,145,0,0,146,145,0,0,150,145,0,0,156,145,0,0,156,145,0,0,158,145,0,0,158,145,0,0,162,145,0,0,162,145,0,0,162,145,0,0,164,145,0,0,164,145,0,0,168,145,0,0,168,145,0,0,172,145,0,0,178,145,0,0,178,145,0,0,184,145,0,0,186,145,0,0,186,145,0,0,190,145,0,0,190,145,0,0,192,145,0,0,204,145,0,0,204,145,0,0,206,145,0,0,206,145,0,0,206,145,0,0,206,145,0,0,206,145,0,0,212,145,0,0,214,145,0,0,214,145,0,0,214,145,0,0,214,145,0,0,220,145,0,0,224,145,0,0,228,145,0,0,228,145,0,0,228,145,0,0,228,145,0,0,228,145,0,0,232,145,0,0,232,145,0,0,240,145,0,0,240,145,0,0,240,145,0,0,240,145,0,0,240,145,0,0,244,145,0,0,244,145,0,0,244,145,0,0,252,145,0,0,252,145,0,0,252,145,0,0,252,145,0,0,252,145,0,0,252,145,0,0,252,145,0,0,254,145,0,0,254,145,0,0,0,146,0,0,8,146,0,0,14,146,0,0,24,146,0,0,28,146,0,0,38,146,0,0,40,146,0,0,42,146,0,0,46,146,0,0,50,146,0,0,52,146,0,0,56,146,0,0,60,146,0,0,60,146,0,0,70,146,0,0,70,146,0,0,72,146,0,0,72,146,0,0,78,146,0,0,78,146,0,0,80,146,0,0,82,146,0,0,88,146,0,0,90,146,0,0,90,146,0,0,96,146,0,0,98,146,0,0,102,146,0,0,110,146,0,0,114,146,0,0,114,146,0,0,120,146,0,0,120,146,0,0,120,146,0,0,120,146,0,0,124,146,0,0,126,146,0,0,128,146,0,0,130,146,0,0,130,146,0,0,132,146,0,0,132,146,0,0,136,146,0,0,136,146,0,0,136,146,0,0,136,146,0,0,136,146,0,0,136,146,0,0,142,146,0,0,150,146,0,0,150,146,0,0,156,146,0,0,156,146,0,0,160,146,0,0,160,146,0,0,162,146,0,0,162,146,0,0,162,146,0,0,166,146,0,0,170,146,0,0,174,146,0,0,174,146,0,0,176,146,0,0,178,146,0,0,188,146,0,0,188,146,0,0,194,146,0,0,194,146,0,0,194,146,0,0,198,146,0,0,210,146,0,0,210,146,0,0,214,146,0,0,218,146,0,0,218,146,0,0,218,146,0,0,220,146,0,0,226,146,0,0,226,146,0,0,230,146,0,0,230,146,0,0,230,146,0,0,234,146,0,0,236,146,0,0,236,146,0,0,236,146,0,0,236,146,0,0,238,146,0,0,238,146,0,0,238,146,0,0,238,146,0,0,238,146,0,0,246,146,0,0,0,147,0,0,0,147,0,0,0,147,0,0,0,147,0,0,2,147,0,0,2,147,0,0,2,147,0,0,4,147,0,0,4,147,0,0,4,147,0,0,4,147,0,0,8,147,0,0,8,147,0,0,12,147,0,0,18,147,0,0,18,147,0,0,18,147,0,0,18,147,0,0,20,147,0,0,20,147,0,0,20,147,0,0,20,147,0,0,22,147,0,0,22,147,0,0,24,147,0,0,24,147,0,0,28,147,0,0,30,147,0,0,30,147,0,0,34,147,0,0,34,147,0,0,38,147,0,0,38,147,0,0,38,147,0,0,40,147,0,0,40,147,0,0,48,147,0,0,50,147,0,0,50,147,0,0,50,147,0,0,54,147,0,0,56,147,0,0,56,147,0,0,58,147,0,0,58,147,0,0,62,147,0,0,62,147,0,0,64,147,0,0,64,147,0,0,64,147,0,0,64,147,0,0,64,147,0,0,64,147,0,0,64,147,0,0,64,147,0,0,70,147,0,0,70,147,0,0,70,147,0,0,72,147,0,0,72,147,0,0,76,147,0,0,78,147,0,0,80,147,0,0,80,147,0,0,80,147,0,0,88,147,0,0,88,147,0,0,88,147,0,0,88,147,0,0,94,147,0,0,96,147,0,0,96,147,0,0,98,147,0,0,98,147,0,0,100,147,0,0,102,147,0,0,102,147,0,0,104,147,0,0,104,147,0,0,104,147,0,0,110,147,0,0,116,147,0,0,116,147,0,0,116,147,0,0,116,147,0,0,116,147,0,0,118,147,0,0,118,147,0,0,118,147,0,0,118,147,0,0,118,147,0,0,118,147,0,0,122,147,0,0,126,147,0,0,130,147,0,0,130,147,0,0,130,147,0,0,130,147,0,0,130,147,0,0,130,147,0,0,130,147,0,0,130,147,0,0,130,147,0,0,132,147,0,0,136,147,0,0,136,147,0,0,140,147,0,0,140,147,0,0,142,147,0,0,142,147,0,0,144,147,0,0,144,147,0,0,144,147,0,0,144,147,0,0,144,147,0,0,144,147,0,0,144,147,0,0,144,147,0,0,148,147,0,0,152,147,0,0,154,147,0,0,156,147,0,0,158,147,0,0,160,147,0,0,160,147,0,0,160,147,0,0,160,147,0,0,160,147,0,0,160,147,0,0,160,147,0,0,164,147,0,0,166,147,0,0,166,147,0,0,166,147,0,0,172,147,0,0,172,147,0,0,172,147,0,0,174,147,0,0,180,147,0,0,180,147,0,0,182,147,0,0,182,147,0,0,182,147,0,0,182,147,0,0,182,147,0,0,186,147,0,0,186,147,0,0,186,147,0,0,186,147,0,0,186,147,0,0,188,147,0,0,192,147,0,0,196,147,0,0,202,147,0,0,202,147,0,0,204,147,0,0,208,147,0,0,208,147,0,0,208,147,0,0,214,147,0,0,214,147,0,0,214,147,0,0,218,147,0,0,220,147,0,0,220,147,0,0,220,147,0,0,224,147,0,0,226,147,0,0,230,147,0,0,230,147,0,0,232,147,0,0,236,147,0,0,240,147,0,0,240,147,0,0,240,147,0,0,240,147,0,0,240,147,0,0,244,147,0,0,244,147,0,0,244,147,0,0,244,147,0,0,248,147,0,0,250,147,0,0,0,148,0,0,0,148,0,0,0,148,0,0,0,148,0,0,2,148,0,0,10,148,0,0,12,148,0,0,12,148,0,0,16,148,0,0,20,148,0,0,26,148,0,0,30,148,0,0,32,148,0,0,36,148,0,0,36,148,0,0,36,148,0,0,36,148,0,0,38,148,0,0,40,148,0,0,44,148,0,0,44,148,0,0,44,148,0,0,44,148,0,0,44,148,0,0,44,148,0,0,44,148,0,0,44,148,0,0,48,148,0,0,48,148,0,0,48,148,0,0,48,148,0,0,48,148,0,0,48,148,0,0,50,148,0,0,50,148,0,0,52,148,0,0,54,148,0,0,54,148,0,0,54,148,0,0,56,148,0,0,56,148,0,0,56,148,0,0,68,148,0,0,70,148,0,0,70,148,0,0,70,148,0,0,70,148,0,0,76,148,0,0,78,148,0,0,78,148,0,0,80,148,0,0,82,148,0,0,82,148,0,0,84,148,0,0,84,148,0,0,84,148,0,0,88,148,0,0,90,148,0,0,92,148,0,0,92,148,0,0,96,148,0,0,96,148,0,0,96,148,0,0,98,148,0,0,108,148,0,0,108,148,0,0,110,148,0,0,110,148,0,0,114,148,0,0,118,148,0,0,118,148,0,0,118,148,0,0,118,148,0,0,120,148,0,0,122,148,0,0,130,148,0,0,130,148,0,0,134,148,0,0,136,148,0,0,136,148,0,0,136,148,0,0,140,148,0,0,140,148,0,0,146,148,0,0,146,148,0,0,152,148,0,0,152,148,0,0,154,148,0,0,154,148,0,0,154,148,0,0,156,148,0,0,164,148,0,0,168,148,0,0,168,148,0,0,168,148,0,0,172,148,0,0,172,148,0,0,176,148,0,0,186,148,0,0,186,148,0,0,186,148,0,0,186,148,0,0,190,148,0,0,192,148,0,0,192,148,0,0,192,148,0,0,194,148,0,0,194,148,0,0,194,148,0,0,198,148,0,0,206,148,0,0,208,148,0,0,212,148,0,0,216,148,0,0,216,148,0,0,216,148,0,0,216,148,0,0,220,148,0,0,220,148,0,0,222,148,0,0,222,148,0,0,222,148,0,0,222,148,0,0,232,148,0,0,232,148,0,0,232,148,0,0,232,148,0,0,240,148,0,0,244,148,0,0,244,148,0,0,244,148,0,0,244,148,0,0,244,148,0,0,246,148,0,0,246,148,0,0,246,148,0,0,246,148,0,0,250,148,0,0,250,148,0,0,250,148,0,0,252,148,0,0,4,149,0,0,4,149,0,0,6,149,0,0,8,149,0,0,8,149,0,0,10,149,0,0,10,149,0,0,10,149,0,0,18,149,0,0,18,149,0,0,18,149,0,0,18,149,0,0,20,149,0,0,26,149,0,0,26,149,0,0,28,149,0,0,28,149,0,0,28,149,0,0,28,149,0,0,30,149,0,0,30,149,0,0,30,149,0,0,30,149,0,0,32,149,0,0,34,149,0,0,34,149,0,0,34,149,0,0,34,149,0,0,38,149,0,0,40,149,0,0,40,149,0,0,44,149,0,0,46,149,0,0,46,149,0,0,50,149,0,0,52,149,0,0,52,149,0,0,52,149,0,0,56,149,0,0,56,149,0,0,56,149,0,0,56,149,0,0,56,149,0,0,60,149,0,0,62,149,0,0,64,149,0,0,64,149,0,0,64,149,0,0,66,149,0,0,66,149,0,0,70,149,0,0,72,149,0,0,72,149,0,0,72,149,0,0,74,149,0,0,74,149,0,0,78,149,0,0,78,149,0,0,80,149,0,0,80,149,0,0,82,149,0,0,84,149,0,0,84,149,0,0,84,149,0,0,84,149,0,0,86,149,0,0,86,149,0,0,92,149,0,0,92,149,0,0,100,149,0,0,104,149,0,0,104,149,0,0,104,149,0,0,114,149,0,0,114,149,0,0,116,149,0,0,116,149,0,0,118,149,0,0,122,149,0,0,124,149,0,0,124,149,0,0,124,149,0,0,126,149,0,0,126,149,0,0,126,149,0,0,130,149,0,0,130,149,0,0,130,149,0,0,130,149,0,0,130,149,0,0,130,149,0,0,134,149,0,0,134,149,0,0,134,149,0,0,134,149,0,0,150,149,0,0,150,149,0,0,160,149,0,0,160,149,0,0,162,149,0,0,162,149,0,0,162,149,0,0,162,149,0,0,162,149,0,0,162,149,0,0,162,149,0,0,164,149,0,0,164,149,0,0,166,149,0,0,170,149,0,0,170,149,0,0,170,149,0,0,170,149,0,0,174,149,0,0,178,149,0,0,178,149,0,0,180,149,0,0,180,149,0,0,180,149,0,0,180,149,0,0,180,149,0,0,184,149,0,0,190,149,0,0,190,149,0,0,192,149,0,0,192,149,0,0,192,149,0,0,192,149,0,0,194,149,0,0,196,149,0,0,200,149,0,0,200,149,0,0,200,149,0,0,202,149,0,0,202,149,0,0,208,149,0,0,208,149,0,0,208,149,0,0,214,149,0,0,214,149,0,0,214,149,0,0,214,149,0,0,216,149,0,0,220,149,0,0,224,149,0,0,224,149,0,0,230,149,0,0,232,149,0,0,234,149,0,0,236,149,0,0,236,149,0,0,240,149,0,0,240,149,0,0,242,149,0,0,242,149,0,0,248,149,0,0,248,149,0,0,0,150,0,0,0,150,0,0,4,150,0,0,6,150,0,0,6,150,0,0,14,150,0,0,14,150,0,0,18,150,0,0,18,150,0,0,22,150,0,0,28,150,0,0,28,150,0,0,28,150,0,0,30,150,0,0,32,150,0,0,42,150,0,0,42,150,0,0,44,150,0,0,48,150,0,0,52,150,0,0,52,150,0,0,58,150,0,0,58,150,0,0,66,150,0,0,70,150,0,0,70,150,0,0,72,150,0,0,72,150,0,0,74,150,0,0,78,150,0,0,80,150,0,0,84,150,0,0,86,150,0,0,86,150,0,0,86,150,0,0,86,150,0,0,88,150,0,0,94,150,0,0,94,150,0,0,94,150,0,0,94,150,0,0,94,150,0,0,94,150,0,0,100,150,0,0,102,150,0,0,102,150,0,0,106,150,0,0,106,150,0,0,106,150,0,0,110,150,0,0,116,150,0,0,120,150,0,0,120,150,0,0,120,150,0,0,122,150,0,0,124,150,0,0,128,150,0,0,130,150,0,0,130,150,0,0,130,150,0,0,134,150,0,0,136,150,0,0,138,150,0,0,140,150,0,0,140,150,0,0,140,150,0,0,140,150,0,0,142,150,0,0,146,150,0,0,152,150,0,0,152,150,0,0,154,150,0,0,160,150,0,0,162,150,0,0,166,150,0,0,166,150,0,0,166,150,0,0,168,150,0,0,170,150,0,0,170,150,0,0,170,150,0,0,174,150,0,0,178,150,0,0,182,150,0,0,184,150,0,0,184,150,0,0,190,150,0,0,190,150,0,0,194,150,0,0,194,150,0,0,194,150,0,0,196,150,0,0,196,150,0,0,202,150,0,0,202,150,0,0,202,150,0,0,208,150,0,0,214,150,0,0,216,150,0,0,222,150,0,0,222,150,0,0,230,150,0,0,230,150,0,0,230,150,0,0,230,150,0,0,230,150,0,0,230,150,0,0,234,150,0,0,236,150,0,0,236,150,0,0,236,150,0,0,236,150,0,0,238,150,0,0,238,150,0,0,238,150,0,0,242,150,0,0,242,150,0,0,242,150,0,0,244,150,0,0,244,150,0,0,244,150,0,0,248,150,0,0,252,150,0,0,252,150,0,0,254,150,0,0,254,150,0,0,0,151,0,0,2,151,0,0,2,151,0,0,16,151,0,0,16,151,0,0,16,151,0,0,18,151,0,0,20,151,0,0,20,151,0,0,20,151,0,0,22,151,0,0,22,151,0,0,24,151,0,0,24,151,0,0,24,151,0,0,24,151,0,0,28,151,0,0,30,151,0,0,32,151,0,0,36,151,0,0,36,151,0,0,36,151,0,0,36,151,0,0,36,151,0,0,36,151,0,0,40,151,0,0,40,151,0,0,40,151,0,0,44,151,0,0,46,151,0,0,48,151,0,0,56,151,0,0,62,151,0,0,62,151,0,0,64,151,0,0,64,151,0,0,68,151,0,0,68,151,0,0,76,151,0,0,76,151,0,0,76,151,0,0,80,151,0,0,80,151,0,0,84,151,0,0,90,151,0,0,90,151,0,0,92,151,0,0,98,151,0,0,98,151,0,0,98,151,0,0,100,151,0,0,100,151,0,0,100,151,0,0,100,151,0,0,100,151,0,0,100,151,0,0,100,151,0,0,102,151,0,0,102,151,0,0,102,151,0,0,102,151,0,0,102,151,0,0,104,151,0,0,104,151,0,0,108,151,0,0,108,151,0,0,116,151,0,0,118,151,0,0,120,151,0,0,124,151,0,0,126,151,0,0,128,151,0,0,128,151,0,0,128,151,0,0,132,151,0,0,132,151,0,0,138,151,0,0,138,151,0,0,138,151,0,0,138,151,0,0,144,151,0,0,144,151,0,0,148,151,0,0,148,151,0,0,150,151,0,0,158,151,0,0,166,151,0,0,166,151,0,0,168,151,0,0,168,151,0,0,172,151,0,0,172,151,0,0,176,151,0,0,178,151,0,0,182,151,0,0,190,151,0,0,192,151,0,0,192,151,0,0,196,151,0,0,198,151,0,0,204,151,0,0,208,151,0,0,212,151,0,0,214,151,0,0,216,151,0,0,216,151,0,0,218,151,0,0,222,151,0,0,224,151,0,0,224,151,0,0,226,151,0,0,226,151,0,0,232,151,0,0,232,151,0,0,232,151,0,0,238,151,0,0,240,151,0,0,240,151,0,0,240,151,0,0,240,151,0,0,244,151,0,0,246,151,0,0,252,151,0,0,2,152,0,0,2,152,0,0,4,152,0,0,4,152,0,0,4,152,0,0,4,152,0,0,12,152,0,0,12,152,0,0,12,152,0,0,14,152,0,0,14,152,0,0,20,152,0,0,20,152,0,0,20,152,0,0,26,152,0,0,30,152,0,0,30,152,0,0,32,152,0,0,34,152,0,0,38,152,0,0,42,152,0,0,48,152,0,0,54,152,0,0,54,152,0,0,60,152,0,0,64,152,0,0,64,152,0,0,64,152,0,0,66,152,0,0,66,152,0,0,70,152,0,0,70,152,0,0,70,152,0,0,70,152,0,0,72,152,0,0,74,152,0,0,74,152,0,0,76,152,0,0,80,152,0,0,80,152,0,0,86,152,0,0,86,152,0,0,88,152,0,0,90,152,0,0,90,152,0,0,90,152,0,0,90,152,0,0,92,152,0,0,94,152,0,0,98,152,0,0,102,152,0,0,104,152,0,0,104,152,0,0,106,152,0,0,106,152,0,0,108,152,0,0,108,152,0,0,112,152,0,0,114,152,0,0,114,152,0,0,120,152,0,0,122,152,0,0,122,152,0,0,130,152,0,0,130,152,0,0,132,152,0,0,138,152,0,0,138,152,0,0,138,152,0,0,138,152,0,0,144,152,0,0,144,152,0,0,144,152,0,0,144,152,0,0,144,152,0,0,146,152,0,0,148,152,0,0,154,152,0,0,158,152,0,0,160,152,0,0,160,152,0,0,160,152,0,0,160,152,0,0,164,152,0,0,166,152,0,0,166,152,0,0,166,152,0,0,166,152,0,0,166,152,0,0,166,152,0,0,170,152,0,0,170,152,0,0,170,152,0,0,170,152,0,0,182,152,0,0,186,152,0,0,186,152,0,0,186,152,0,0,186,152,0,0,186,152,0,0,188,152,0,0,188,152,0,0,188,152,0,0,188,152,0,0,194,152,0,0,194,152,0,0,196,152,0,0,196,152,0,0,200,152,0,0,206,152,0,0,206,152,0,0,206,152,0,0,214,152,0,0,214,152,0,0,214,152,0,0,218,152,0,0,218,152,0,0,218,152,0,0,218,152,0,0,218,152,0,0,220,152,0,0,222,152,0,0,222,152,0,0,226,152,0,0,238,152,0,0,238,152,0,0,238,152,0,0,244,152,0,0,244,152,0,0,244,152,0,0,246,152,0,0,246,152,0,0,246,152,0,0,246,152,0,0,246,152,0,0,248,152,0,0,250,152,0,0,250,152,0,0,250,152,0,0,4,153,0,0,8,153,0,0,8,153,0,0,8,153,0,0,8,153,0,0,8,153,0,0,14,153,0,0,14,153,0,0,20,153,0,0,20,153,0,0,26,153,0,0,26,153,0,0,28,153,0,0,28,153,0,0,28,153,0,0,28,153,0,0,34,153,0,0,36,153,0,0,36,153,0,0,36,153,0,0,38,153,0,0,40,153,0,0,42,153,0,0,42,153,0,0,44,153,0,0,46,153,0,0,46,153,0,0,50,153,0,0,50,153,0,0,54,153,0,0,54,153,0,0,56,153,0,0,56,153,0,0,60,153,0,0,64,153,0,0,66,153,0,0,66,153,0,0,66,153,0,0,66,153,0,0,68,153,0,0,78,153,0,0,80,153,0,0,82,153,0,0,84,153,0,0,84,153,0,0,94,153,0,0,98,153,0,0,104,153,0,0,110,153,0,0,110,153,0,0,116,153,0,0,118,153,0,0,120,153,0,0,122,153,0,0,122,153,0,0,122,153,0,0,130,153,0,0,134,153,0,0,136,153,0,0,138,153,0,0,140,153,0,0,142,153,0,0,142,153,0,0,144,153,0,0,144,153,0,0,148,153,0,0,154,153,0,0,154,153,0,0,154,153,0,0,158,153,0,0,160,153,0,0,162,153,0,0,162,153,0,0,166,153,0,0,166,153,0,0,170,153,0,0,170,153,0,0,170,153,0,0,172,153,0,0,174,153,0,0,174,153,0,0,174,153,0,0,178,153,0,0,180,153,0,0,180,153,0,0,186,153,0,0,188,153,0,0,190,153,0,0,192,153,0,0,192,153,0,0,194,153,0,0,194,153,0,0,194,153,0,0,196,153,0,0,196,153,0,0,196,153,0,0,196,153,0,0,204,153,0,0,212,153,0,0,218,153,0,0,218,153,0,0,222,153,0,0,222,153,0,0,224,153,0,0,230,153,0,0,230,153,0,0,230,153,0,0,232,153,0,0,232,153,0,0,232,153,0,0,246,153,0,0,246,153,0,0,246,153,0,0,246,153,0,0,246,153,0,0,246,153,0,0,246,153,0,0,246,153,0,0,254,153,0,0,0,154,0,0,0,154,0,0,0,154,0,0,4,154,0,0,8,154,0,0,12,154,0,0,16,154,0,0,18,154,0,0,20,154,0,0,22,154,0,0,26,154,0,0,26,154,0,0,28,154,0,0,28,154,0,0,30,154,0,0,30,154,0,0,30,154,0,0,30,154,0,0,34,154,0,0,38,154,0,0,40,154,0,0,40,154,0,0,40,154,0,0,40,154,0,0,40,154,0,0,40,154,0,0,42,154,0,0,42,154,0,0,44,154,0,0,46,154,0,0,46,154,0,0,48,154,0,0,48,154,0,0,50,154,0,0,52,154,0,0,56,154,0,0,56,154,0,0,56,154,0,0,64,154,0,0,66,154,0,0,66,154,0,0,68,154,0,0,68,154,0,0,74,154,0,0,74,154,0,0,74,154,0,0,82,154,0,0,82,154,0,0,82,154,0,0,82,154,0,0,84,154,0,0,86,154,0,0,86,154,0,0,88,154,0,0,88,154,0,0,88,154,0,0,88,154,0,0,88,154,0,0,88,154,0,0,90,154,0,0,96,154,0,0,96,154,0,0,100,154,0,0,100,154,0,0,100,154,0,0,100,154,0,0,106,154,0,0,106,154,0,0,106,154,0,0,120,154,0,0,126,154,0,0,128,154,0,0,128,154,0,0,130,154,0,0,130,154,0,0,130,154,0,0,130,154,0,0,132,154,0,0,132,154,0,0,132,154,0,0,132,154,0,0,132,154,0,0,132,154,0,0,132,154,0,0,132,154,0,0,132,154,0,0,132,154,0,0,136,154,0,0,138,154,0,0,138,154,0,0,142,154,0,0,144,154,0,0,146,154,0,0,152,154,0,0,154,154,0,0,160,154,0,0,166,154,0,0,168,154,0,0,168,154,0,0,168,154,0,0,170,154,0,0,174,154,0,0,182,154,0,0,184,154,0,0,186,154,0,0,190,154,0,0,192,154,0,0,192,154,0,0,196,154,0,0,198,154,0,0,200,154,0,0,200,154,0,0,200,154,0,0,200,154,0,0,200,154,0,0,200,154,0,0,202,154,0,0,204,154,0,0,210,154,0,0,210,154,0,0,210,154,0,0,210,154,0,0,212,154,0,0,212,154,0,0,218,154,0,0,218,154,0,0,224,154,0,0,224,154,0,0,224,154,0,0,224,154,0,0,224,154,0,0,224,154,0,0,224,154,0,0,228,154,0,0,234,154,0,0,234,154,0,0,234,154,0,0,234,154,0,0,234,154,0,0,234,154,0,0,234,154,0,0,240,154,0,0,240,154,0,0,244,154,0,0,244,154,0,0,252,154,0,0,254,154,0,0,254,154,0,0,0,155,0,0,0,155,0,0,6,155,0,0,8,155,0,0,12,155,0,0,20,155,0,0,20,155,0,0,22,155,0,0,22,155,0,0,22,155,0,0,22,155,0,0,26,155,0,0,26,155,0,0,26,155,0,0,26,155,0,0,32,155,0,0,36,155,0,0,36,155,0,0,36,155,0,0,36,155,0,0,36,155,0,0,36,155,0,0,44,155,0,0,48,155,0,0,48,155,0,0,50,155,0,0,50,155,0,0,50,155,0,0,50,155,0,0,50,155,0,0,50,155,0,0,52,155,0,0,52,155,0,0,52,155,0,0,52,155,0,0,52,155,0,0,54,155,0,0,56,155,0,0,56,155,0,0,56,155,0,0,56,155,0,0,56,155,0,0,56,155,0,0,56,155,0,0,56,155,0,0,58,155,0,0,62,155,0,0,62,155,0,0,62,155,0,0,62,155,0,0,62,155,0,0,64,155,0,0,68,155,0,0,78,155,0,0,78,155,0,0,82,155,0,0,86,155,0,0,86,155,0,0,88,155,0,0,96,155,0,0,100,155,0,0,102,155,0,0,110,155,0,0,110,155,0,0,114,155,0,0,118,155,0,0,118,155,0,0,118,155,0,0,118,155,0,0,118,155,0,0,120,155,0,0,124,155,0,0,128,155,0,0,128,155,0,0,128,155,0,0,128,155,0,0,128,155,0,0,130,155,0,0,130,155,0,0,130,155,0,0,130,155,0,0,130,155,0,0,130,155,0,0,132,155,0,0,132,155,0,0,134,155,0,0,134,155,0,0,134,155,0,0,136,155,0,0,140,155,0,0,144,155,0,0,148,155,0,0,148,155,0,0,148,155,0,0,150,155,0,0,150,155,0,0,150,155,0,0,154,155,0,0,156,155,0,0,156,155,0,0,156,155,0,0,156,155,0,0,158,155,0,0,158,155,0,0,160,155,0,0,160,155,0,0,160,155,0,0,160,155,0,0,160,155,0,0,164,155,0,0,166,155,0,0,168,155,0,0,176,155,0,0,176,155,0,0,182,155,0,0,184,155,0,0,188,155,0,0,198,155,0,0,200,155,0,0,200,155,0,0,206,155,0,0,214,155,0,0,220,155,0,0,224,155,0,0,224,155,0,0,230,155,0,0,234,155,0,0,236,155,0,0,238,155,0,0,242,155,0,0,244,155,0,0,244,155,0,0,244,155,0,0,244,155,0,0,244,155,0,0,250,155,0,0,252,155,0,0,252,155,0,0,254,155,0,0,254,155,0,0,2,156,0,0,2,156,0,0,2,156,0,0,2,156,0,0,2,156,0,0,2,156,0,0,4,156,0,0,4,156,0,0,6,156,0,0,8,156,0,0,20,156,0,0,20,156,0,0,26,156,0,0,28,156,0,0,28,156,0,0,28,156,0,0,28,156,0,0,28,156,0,0,30,156,0,0,30,156,0,0,30,156,0,0,32,156,0,0,34,156,0,0,38,156,0,0,40,156,0,0,42,156,0,0,44,156,0,0,44,156,0,0,46,156,0,0,48,156,0,0,52,156,0,0,52,156,0,0,54,156,0,0,58,156,0,0,58,156,0,0,58,156,0,0,58,156,0,0,58,156,0,0,68,156,0,0,68,156,0,0,70,156,0,0,70,156,0,0,70,156,0,0,70,156,0,0,72,156,0,0,78,156,0,0,78,156,0,0,78,156,0,0,78,156,0,0,88,156,0,0,92,156,0,0,100,156,0,0,100,156,0,0,100,156,0,0,104,156,0,0,106,156,0,0,106,156,0,0,108,156,0,0,108,156,0,0,110,156,0,0,112,156,0,0,112,156,0,0,116,156,0,0,116,156,0,0,122,156,0,0,124,156,0,0,126,156,0,0,130,156,0,0,130,156,0,0,130,156,0,0,134,156,0,0,134,156,0,0,136,156,0,0,138,156,0,0,142,156,0,0,148,156,0,0,152,156,0,0,152,156,0,0,152,156,0,0,152,156,0,0,152,156,0,0,152,156,0,0,156,156,0,0,158,156,0,0,160,156,0,0,160,156,0,0,160,156,0,0,160,156,0,0,160,156,0,0,164,156,0,0,164,156,0,0,164,156,0,0,164,156,0,0,164,156,0,0,168,156,0,0,168,156,0,0,170,156,0,0,174,156,0,0,178,156,0,0,178,156,0,0,182,156,0,0,188,156,0,0,190,156,0,0,190,156,0,0,192,156,0,0,200,156,0,0,202,156,0,0,202,156,0,0,202,156,0,0,206,156,0,0,206,156,0,0,210,156,0,0,210,156,0,0,210,156,0,0,212,156,0,0,212,156,0,0,212,156,0,0,218,156,0,0,218,156,0,0,226,156,0,0,228,156,0,0,228,156,0,0,236,156,0,0,236,156,0,0,242,156,0,0,248,156,0,0,250,156,0,0,250,156,0,0,2,157,0,0,4,157,0,0,4,157,0,0,4,157,0,0,4,157,0,0,4,157,0,0,8,157,0,0,8,157,0,0,8,157,0,0,12,157,0,0,16,157,0,0,18,157,0,0,18,157,0,0,18,157,0,0,20,157,0,0,20,157,0,0,20,157,0,0,20,157,0,0,20,157,0,0,22,157,0,0,22,157,0,0,24,157,0,0,24,157,0,0,30,157,0,0,30,157,0,0,32,157,0,0,36,157,0,0,36,157,0,0,48,157,0,0,56,157,0,0,58,157,0,0,58,157,0,0,58,157,0,0,64,157,0,0,66,157,0,0,66,157,0,0,68,157,0,0,70,157,0,0,74,157,0,0,74,157,0,0,76,157,0,0,76,157,0,0,82,157,0,0,86,157,0,0,94,157,0,0,96,157,0,0,96,157,0,0,96,157,0,0,104,157,0,0,104,157,0,0,104,157,0,0,104,157,0,0,104,157,0,0,106,157,0,0,106,157,0,0,108,157,0,0,110,157,0,0,110,157,0,0,110,157,0,0,112,157,0,0,116,157,0,0,118,157,0,0,118,157,0,0,120,157,0,0,120,157,0,0,130,157,0,0,130,157,0,0,132,157,0,0,134,157,0,0,134,157,0,0,140,157,0,0,142,157,0,0,144,157,0,0,144,157,0,0,144,157,0,0,144,157,0,0,146,157,0,0,148,157,0,0,148,157,0,0,154,157,0,0,160,157,0,0,162,157,0,0,162,157,0,0,162,157,0,0,164,157,0,0,164,157,0,0,164,157,0,0,164,157,0,0,166,157,0,0,166,157,0,0,170,157,0,0,170,157,0,0,172,157,0,0,178,157,0,0,178,157,0,0,178,157,0,0,180,157,0,0,180,157,0,0,180,157,0,0,182,157,0,0,182,157,0,0,182,157,0,0,182,157,0,0,182,157,0,0,182,157,0,0,186,157,0,0,186,157,0,0,186,157,0,0,186,157,0,0,186,157,0,0,186,157,0,0,186,157,0,0,186,157,0,0,188,157,0,0,194,157,0,0,194,157,0,0,196,157,0,0,204,157,0,0,204,157,0,0,208,157,0,0,208,157,0,0,214,157,0,0,214,157,0,0,216,157,0,0,218,157,0,0,218,157,0,0,218,157,0,0,218,157,0,0,218,157,0,0,218,157,0,0,220,157,0,0,226,157,0,0,230,157,0,0,230,157,0,0,232,157,0,0,234,157,0,0,236,157,0,0,238,157,0,0,238,157,0,0,242,157,0,0,242,157,0,0,242,157,0,0,246,157,0,0,246,157,0,0,248,157,0,0,248,157,0,0,248,157,0,0,248,157,0,0,248,157,0,0,250,157,0,0,250,157,0,0,250,157,0,0,254,157,0,0,254,157,0,0,0,158,0,0,4,158,0,0,6,158,0,0,10,158,0,0,16,158,0,0,20,158,0,0,26,158,0,0,26,158,0,0,26,158,0,0,28,158,0,0,34,158,0,0,40,158,0,0,42,158,0,0,42,158,0,0,42,158,0,0,44,158,0,0,44,158,0,0,46,158,0,0,52,158,0,0,52,158,0,0,56,158,0,0,56,158,0,0,58,158,0,0,58,158,0,0,58,158,0,0,58,158,0,0,64,158,0,0,64,158,0,0,64,158,0,0,64,158,0,0,64,158,0,0,64,158,0,0,64,158,0,0,66,158,0,0,66,158,0,0,66,158,0,0,68,158,0,0,68,158,0,0,70,158,0,0,70,158,0,0,74,158,0,0,78,158,0,0,78,158,0,0,78,158,0,0,82,158,0,0,82,158,0,0,86,158,0,0,86,158,0,0,90,158,0,0,92,158,0,0,92,158,0,0,92,158,0,0,96,158,0,0,102,158,0,0,106,158,0,0,108,158,0,0,120,158,0,0,120,158,0,0,122,158,0,0,122,158,0,0,124,158,0,0,134,158,0,0,134,158,0,0,136,158,0,0,140,158,0,0,142,158,0,0,142,158,0,0,146,158,0,0,146,158,0,0,146,158,0,0,148,158,0,0,148,158,0,0,148,158,0,0,148,158,0,0,154,158,0,0,156,158,0,0,158,158,0,0,162,158,0,0,168,158,0,0,168,158,0,0,170,158,0,0,170,158,0,0,172,158,0,0,172,158,0,0,172,158,0,0,176,158,0,0,178,158,0,0,178,158,0,0,178,158,0,0,178,158,0,0,178,158,0,0,178,158,0,0,184,158,0,0,186,158,0,0,196,158,0,0,196,158,0,0,198,158,0,0,198,158,0,0,204,158,0,0,204,158,0,0,204,158,0,0,204,158,0,0,206,158,0,0,208,158,0,0,208,158,0,0,208,158,0,0,208,158,0,0,208,158,0,0,208,158,0,0,208,158,0,0,208,158,0,0,208,158,0,0,208,158,0,0,210,158,0,0,218,158,0,0,218,158,0,0,220,158,0,0,220,158,0,0,222,158,0,0,222,158,0,0,224,158,0,0,226,158,0,0,226,158,0,0,226,158,0,0,226,158,0,0,226,158,0,0,226,158,0,0,226,158,0,0,226,158,0,0,228,158,0,0,230,158,0,0,232,158,0,0,234,158,0,0,240,158,0,0,240,158,0,0,242,158,0,0,244,158,0,0,244,158,0,0,244,158,0,0,244,158,0,0,252,158,0,0,254,158,0,0,254,158,0,0,254,158,0,0,254,158,0,0,254,158,0,0,254,158,0,0,2,159,0,0,10,159,0,0,12,159,0,0,16,159,0,0,18,159,0,0,24,159,0,0,24,159,0,0,28,159,0,0,28,159,0,0,28,159,0,0,28,159,0,0,28,159,0,0,34,159,0,0,34,159,0,0,34,159,0,0,34,159,0,0,34,159,0,0,36,159,0,0,36,159,0,0,36,159,0,0,38,159,0,0,38,159,0,0,42,159,0,0,42,159,0,0,50,159,0,0,56,159,0,0,64,159,0,0,64,159,0,0,64,159,0,0,64,159,0,0,64,159,0,0,64,159,0,0,68,159,0,0,76,159,0,0,80,159,0,0,82,159,0,0,86,159,0,0,88,159,0,0,88,159,0,0,88,159,0,0,90,159,0,0,92,159,0,0,92,159,0,0,92,159,0,0,92,159,0,0,94,159,0,0,100,159,0,0,100,159,0,0,102,159,0,0,102,159,0,0,106,159,0,0,106,159,0,0,106,159,0,0,106,159,0,0,108,159,0,0,114,159,0,0,118,159,0,0,120,159,0,0,122,159,0,0,124,159,0,0,124,159,0,0,124,159,0,0,124,159,0,0,126,159,0,0,126,159,0,0,130,159,0,0,132,159,0,0,134,159,0,0,136,159,0,0,142,159,0,0,142,159,0,0,142,159,0,0,148,159,0,0,148,159,0,0,148,159,0,0,150,159,0,0,152,159,0,0,156,159,0,0,156,159,0,0,160,159,0,0,162,159,0,0,162,159,0,0,166,159,0,0,166,159,0,0,166,159,0,0,174,159,0,0,180,159,0,0,180,159,0,0,184,159,0,0,184,159,0,0,184,159,0,0,186,159,0,0,186,159,0,0,188,159,0,0,190,159,0,0,192,159,0,0,192,159,0,0,192,159,0,0,196,159,0,0,200,159,0,0,200,159,0,0,200,159,0,0,200,159,0,0,200,159,0,0,200,159,0,0,202,159,0,0,202,159,0,0,214,159,0,0,222,159,0,0,222,159,0,0,232,159,0,0,234,159,0,0,240,159,0,0,244,159,0,0,244,159,0,0,246,159,0,0,248,159,0,0,248,159,0,0,248,159,0,0,248,159,0,0,248,159,0,0,248,159,0,0,248,159,0,0,248,159,0,0,252,159,0,0,252,159,0,0,252,159,0,0,0,160,0,0,4,160,0,0,6,160,0,0,6,160,0,0,20,160,0,0,20,160,0,0,26,160,0,0,26,160,0,0,26,160,0,0,26,160,0,0,26,160,0,0,30,160,0,0,30,160,0,0,30,160,0,0,30,160,0,0,30,160,0,0,30,160,0,0,30,160,0,0,38,160,0,0,38,160,0,0,40,160,0,0,48,160,0,0,52,160,0,0,52,160,0,0,52,160,0,0,54,160,0,0,54,160,0,0,56,160,0,0,58,160,0,0,58,160,0,0,58,160,0,0,60,160,0,0,62,160,0,0,62,160,0,0,64,160,0,0,66,160,0,0,70,160,0,0,74,160,0,0,88,160,0,0,88,160,0,0,88,160,0,0,90,160,0,0,92,160,0,0,92,160,0,0,96,160,0,0,98,160,0,0,98,160,0,0,98,160,0,0,100,160,0,0,100,160,0,0,100,160,0,0,100,160,0,0,100,160,0,0,100,160,0,0,102,160,0,0,104,160,0,0,104,160,0,0,104,160,0,0,106,160,0,0,110,160,0,0,124,160,0,0,124,160,0,0,124,160,0,0,134,160,0,0,136,160,0,0,138,160,0,0,138,160,0,0,140,160,0,0,140,160,0,0,144,160,0,0,148,160,0,0,148,160,0,0,148,160,0,0,148,160,0,0,154,160,0,0,156,160,0,0,156,160,0,0,156,160,0,0,156,160,0,0,156,160,0,0,156,160,0,0,158,160,0,0,158,160,0,0,170,160,0,0,170,160,0,0,172,160,0,0,178,160,0,0,180,160,0,0,184,160,0,0,184,160,0,0,186,160,0,0,190,160,0,0,192,160,0,0,192,160,0,0,196,160,0,0,198,160,0,0,202,160,0,0,202,160,0,0,202,160,0,0,202,160,0,0,202,160,0,0,202,160,0,0,206,160,0,0,208,160,0,0,210,160,0,0,210,160,0,0,210,160,0,0,214,160,0,0,218,160,0,0,222,160,0,0,222,160,0,0,222,160,0,0,222,160,0,0,224,160,0,0,226,160,0,0,226,160,0,0,226,160,0,0,226,160,0,0,226,160,0,0,228,160,0,0,234,160,0,0,236,160,0,0,244,160,0,0,252,160,0,0,254,160,0,0,254,160,0,0,2,161,0,0,2,161,0,0,14,161,0,0,14,161,0,0,14,161,0,0,22,161,0,0,30,161,0,0,32,161,0,0,34,161,0,0,34,161,0,0,40,161,0,0,40,161,0,0,52,161,0,0,52,161,0,0,56,161,0,0,56,161,0,0,56,161,0,0,56,161,0,0,58,161,0,0,58,161,0,0,60,161,0,0,60,161,0,0,62,161,0,0,68,161,0,0,76,161,0,0,76,161,0,0,80,161,0,0,80,161,0,0,80,161,0,0,82,161,0,0,82,161,0,0,84,161,0,0,92,161,0,0,92,161,0,0,94,161,0,0,94,161,0,0,94,161,0,0,106,161,0,0,106,161,0,0,106,161,0,0,114,161,0,0,116,161,0,0,116,161,0,0,116,161,0,0,116,161,0,0,118,161,0,0,118,161,0,0,118,161,0,0,118,161,0,0,118,161,0,0,118,161,0,0,126,161,0,0,134,161,0,0,136,161,0,0,140,161,0,0,140,161,0,0,140,161,0,0,140,161,0,0,142,161,0,0,142,161,0,0,144,161,0,0,148,161,0,0,158,161,0,0,160,161,0,0,162,161,0,0,164,161,0,0,166,161,0,0,166,161,0,0,166,161,0,0,166,161,0,0,168,161,0,0,168,161,0,0,174,161,0,0,174,161,0,0,178,161,0,0,182,161,0,0,186,161,0,0,190,161,0,0,190,161,0,0,190,161,0,0,192,161,0,0,196,161,0,0,196,161,0,0,196,161,0,0,196,161,0,0,196,161,0,0,196,161,0,0,198,161,0,0,198,161,0,0,198,161,0,0,204,161,0,0,204,161,0,0,204,161,0,0,206,161,0,0,206,161,0,0,206,161,0,0,208,161,0,0,212,161,0,0,212,161,0,0,212,161,0,0,214,161,0,0,214,161,0,0,214,161,0,0,220,161,0,0,220,161,0,0,220,161,0,0,222,161,0,0,226,161,0,0,226,161,0,0,226,161,0,0,228,161,0,0,238,161,0,0,238,161,0,0,238,161,0,0,238,161,0,0,240,161,0,0,240,161,0,0,240,161,0,0,240,161,0,0,250,161,0,0,250,161,0,0,250,161,0,0,250,161,0,0,250,161,0,0,250,161,0,0,252,161,0,0,254,161,0,0,254,161,0,0,2,162,0,0,2,162,0,0,2,162,0,0,2,162,0,0,2,162,0,0,8,162,0,0,14,162,0,0,20,162,0,0,28,162,0,0,30,162,0,0,30,162,0,0,34,162,0,0,36,162,0,0,38,162,0,0,38,162,0,0,38,162,0,0,38,162,0,0,40,162,0,0,40,162,0,0,40,162,0,0,40,162,0,0,44,162,0,0,44,162,0,0,50,162,0,0,56,162,0,0,60,162,0,0,60,162,0,0,60,162,0,0,62,162,0,0,64,162,0,0,68,162,0,0,72,162,0,0,72,162,0,0,72,162,0,0,74,162,0,0,78,162,0,0,80,162,0,0,80,162,0,0,80,162,0,0,80,162,0,0,82,162,0,0,82,162,0,0,82,162,0,0,84,162,0,0,84,162,0,0,88,162,0,0,94,162,0,0,104,162,0,0,104,162,0,0,106,162,0,0,106,162,0,0,106,162,0,0,108,162,0,0,108,162,0,0,110,162,0,0,120,162,0,0,120,162,0,0,120,162,0,0,122,162,0,0,122,162,0,0,122,162,0,0,122,162,0,0,122,162,0,0,126,162,0,0,126,162,0,0,126,162,0,0,126,162,0,0,132,162,0,0,132,162,0,0,132,162,0,0,138,162,0,0,142,162,0,0,142,162,0,0,142,162,0,0,142,162,0,0,142,162,0,0,142,162,0,0,146,162,0,0,148,162,0,0,148,162,0,0,158,162,0,0,160,162,0,0,160,162,0,0,160,162,0,0,170,162,0,0,170,162,0,0,170,162,0,0,170,162,0,0,174,162,0,0,174,162,0,0,176,162,0,0,178,162,0,0,178,162,0,0,178,162,0,0,178,162,0,0,178,162,0,0,184,162,0,0,186,162,0,0,186,162,0,0,188,162,0,0,188,162,0,0,188,162,0,0,188,162,0,0,188,162,0,0,188,162,0,0,190,162,0,0,190,162,0,0,196,162,0,0,202,162,0,0,202,162,0,0,202,162,0,0,202,162,0,0,206,162,0,0,206,162,0,0,206,162,0,0,206,162,0,0,206,162,0,0,206,162,0,0,206,162,0,0,208,162,0,0,208,162,0,0,210,162,0,0,210,162,0,0,210,162,0,0,210,162,0,0,220,162,0,0,220,162,0,0,224,162,0,0,224,162,0,0,224,162,0,0,226,162,0,0,226,162,0,0,226,162,0,0,226,162,0,0,230,162,0,0,230,162,0,0,230,162,0,0,230,162,0,0,234,162,0,0,238,162,0,0,240,162,0,0,240,162,0,0,240,162,0,0,240,162,0,0,250,162,0,0,250,162,0,0,252,162,0,0,0,163,0,0,0,163,0,0,2,163,0,0,2,163,0,0,2,163,0,0,2,163,0,0,2,163,0,0,2,163,0,0,4,163,0,0,10,163,0,0,10,163,0,0,12,163,0,0,12,163,0,0,14,163,0,0,14,163,0,0,16,163,0,0,16,163,0,0,16,163,0,0,18,163,0,0,18,163,0,0,18,163,0,0,18,163,0,0,20,163,0,0,22,163,0,0,22,163,0,0,22,163,0,0,22,163,0,0,22,163,0,0,26,163,0,0,26,163,0,0,28,163,0,0,28,163,0,0,28,163,0,0,30,163,0,0,30,163,0,0,30,163,0,0,42,163,0,0,42,163,0,0,42,163,0,0,42,163,0,0,42,163,0,0,44,163,0,0,46,163,0,0,46,163,0,0,46,163,0,0,46,163,0,0,48,163,0,0,48,163,0,0,48,163,0,0,48,163,0,0,48,163,0,0,52,163,0,0,52,163,0,0,52,163,0,0,56,163,0,0,56,163,0,0,56,163,0,0,58,163,0,0,58,163,0,0,58,163,0,0,64,163,0,0,64,163,0,0,68,163,0,0,68,163,0,0,68,163,0,0,68,163,0,0,68,163,0,0,74,163,0,0,74,163,0,0,74,163,0,0,76,163,0,0,78,163,0,0,82,163,0,0,82,163,0,0,82,163,0,0,82,163,0,0,88,163,0,0,92,163,0,0,102,163,0,0,104,163,0,0,104,163,0,0,110,163,0,0,110,163,0,0,110,163,0,0,110,163,0,0,110,163,0,0,114,163,0,0,114,163,0,0,114,163,0,0,114,163,0,0,114,163,0,0,114,163,0,0,114,163,0,0,114,163,0,0,114,163,0,0,114,163,0,0,116,163,0,0,118,163,0,0,118,163,0,0,120,163,0,0,122,163,0,0,122,163,0,0,124,163,0,0,124,163,0,0,126,163,0,0,136,163,0,0,138,163,0,0,144,163,0,0,150,163,0,0,152,163,0,0,158,163,0,0,158,163,0,0,164,163,0,0,168,163,0,0,172,163,0,0,176,163,0,0,180,163,0,0,184,163,0,0,184,163,0,0,184,163,0,0,184,163,0,0,184,163,0,0,190,163,0,0,192,163,0,0,196,163,0,0,202,163,0,0,204,163,0,0,204,163,0,0,204,163,0,0,204,163,0,0,210,163,0,0,210,163,0,0,210,163,0,0,214,163,0,0,216,163,0,0,220,163,0,0,222,163,0,0,226,163,0,0,226,163,0,0,226,163,0,0,226,163,0,0,226,163,0,0,226,163,0,0,228,163,0,0,228,163,0,0,230,163,0,0,236,163,0,0,242,163,0,0,246,163,0,0,250,163,0,0,2,164,0,0,4,164,0,0,6,164,0,0,6,164,0,0,10,164,0,0,16,164,0,0,16,164,0,0,16,164,0,0,22,164,0,0,26,164,0,0,26,164,0,0,30,164,0,0,30,164,0,0,38,164,0,0,38,164,0,0,40,164,0,0,40,164,0,0,46,164,0,0,50,164,0,0,54,164,0,0,56,164,0,0,56,164,0,0,60,164,0,0,60,164,0,0,60,164,0,0,70,164,0,0,70,164,0,0,70,164,0,0,70,164,0,0,72,164,0,0,76,164,0,0,80,164,0,0,80,164,0,0,90,164,0,0,94,164,0,0,98,164,0,0,100,164,0,0,100,164,0,0,104,164,0,0,104,164,0,0,106,164,0,0,108,164,0,0,108,164,0,0,108,164,0,0,108,164,0,0,120,164,0,0,120,164,0,0,126,164,0,0,132,164,0,0,134,164,0,0,136,164,0,0,136,164,0,0,144,164,0,0,154,164,0,0,156,164,0,0,158,164,0,0,158,164,0,0,158,164,0,0,160,164,0,0,166,164,0,0,166,164,0,0,176,164,0,0,176,164,0,0,182,164,0,0,182,164,0,0,186,164,0,0,186,164,0,0,188,164,0,0,192,164,0,0,192,164,0,0,192,164,0,0,196,164,0,0,196,164,0,0,196,164,0,0,200,164,0,0,204,164,0,0,204,164,0,0,204,164,0,0,208,164,0,0,210,164,0,0,210,164,0,0,212,164,0,0,212,164,0,0,212,164,0,0,214,164,0,0,214,164,0,0,214,164,0,0,216,164,0,0,216,164,0,0,216,164,0,0,218,164,0,0,218,164,0,0,218,164,0,0,218,164,0,0,222,164,0,0,222,164,0,0,224,164,0,0,230,164,0,0,230,164,0,0,230,164,0,0,232,164,0,0,232,164,0,0,240,164,0,0,240,164,0,0,240,164,0,0,240,164,0,0,242,164,0,0,242,164,0,0,244,164,0,0,244,164,0,0,244,164,0,0,246,164,0,0,252,164,0,0,252,164,0,0,8,165,0,0,12,165,0,0,14,165,0,0,18,165,0,0,20,165,0,0,20,165,0,0,20,165,0,0,20,165,0,0,20,165,0,0,20,165,0,0,20,165,0,0,22,165,0,0,22,165,0,0,22,165,0,0,22,165,0,0,24,165,0,0,32,165,0,0,36,165,0,0,40,165,0,0,40,165,0,0,40,165,0,0,40,165,0,0,48,165,0,0,50,165,0,0,52,165,0,0,54,165,0,0,54,165,0,0,54,165,0,0,54,165,0,0,54,165,0,0,54,165,0,0,56,165,0,0,60,165,0,0,66,165,0,0,70,165,0,0,72,165,0,0,76,165,0,0,76,165,0,0,84,165,0,0,84,165,0,0,90,165,0,0,90,165,0,0,96,165,0,0,108,165,0,0,108,165,0,0,108,165,0,0,108,165,0,0,108,165,0,0,112,165,0,0,116,165,0,0,118,165,0,0,122,165,0,0,122,165,0,0,128,165,0,0,128,165,0,0,128,165,0,0,128,165,0,0,136,165,0,0,136,165,0,0,138,165,0,0,138,165,0,0,146,165,0,0,148,165,0,0,154,165,0,0,156,165,0,0,160,165,0,0,162,165,0,0,162,165,0,0,162,165,0,0,162,165,0,0,162,165,0,0,176,165,0,0,178,165,0,0,178,165,0,0,182,165,0,0,186,165,0,0,192,165,0,0,196,165,0,0,202,165,0,0,202,165,0,0,204,165,0,0,204,165,0,0,204,165,0,0,204,165,0,0,206,165,0,0,206,165,0,0,208,165,0,0,208,165,0,0,208,165,0,0,208,165,0,0,210,165,0,0,210,165,0,0,212,165,0,0,212,165,0,0,212,165,0,0,212,165,0,0,214,165,0,0,214,165,0,0,216,165,0,0,216,165,0,0,218,165,0,0,218,165,0,0,222,165,0,0,226,165,0,0,234,165,0,0,238,165,0,0,238,165,0,0,246,165,0,0,246,165,0,0,246,165,0,0,248,165,0,0,248,165,0,0,248,165,0,0,252,165,0,0,254,165,0,0,254,165,0,0,0,166,0,0,4,166,0,0,10,166,0,0,12,166,0,0,14,166,0,0,14,166,0,0,14,166,0,0,18,166,0,0,24,166,0,0,24,166,0,0,24,166,0,0,30,166,0,0,34,166,0,0,42,166,0,0,50,166,0,0,50,166,0,0,52,166,0,0,54,166,0,0,56,166,0,0,56,166,0,0,60,166,0,0,66,166,0,0,66,166,0,0,66,166,0,0,66,166,0,0,66,166,0,0,66,166,0,0,68,166,0,0,68,166,0,0,70,166,0,0,72,166,0,0,72,166,0,0,72,166,0,0,78,166,0,0,82,166,0,0,88,166,0,0,88,166,0,0,92,166,0,0,92,166,0,0,100,166,0,0,100,166,0,0,100,166,0,0,100,166,0,0,104,166,0,0,110,166,0,0,110,166,0,0,110,166,0,0,110,166,0,0,112,166,0,0,120,166,0,0,124,166,0,0,128,166,0,0,128,166,0,0,130,166,0,0,130,166,0,0,134,166,0,0,140,166,0,0,140,166,0,0,140,166,0,0,140,166,0,0,140,166,0,0,146,166,0,0,148,166,0,0,150,166,0,0,154,166,0,0,154,166,0,0,154,166,0,0,162,166,0,0,162,166,0,0,162,166,0,0,162,166,0,0,162,166,0,0,164,166,0,0,166,166,0,0,166,166,0,0,166,166,0,0,166,166,0,0,166,166,0,0,166,166,0,0,172,166,0,0,172,166,0,0,172,166,0,0,172,166,0,0,174,166,0,0,174,166,0,0,174,166,0,0,178,166,0,0,178,166,0,0,180,166,0,0,184,166,0,0,192,166,0,0,196,166,0,0,196,166,0,0,198,166,0,0,202,166,0,0,202,166,0,0,204,166,0,0,204,166,0,0,204,166,0,0,204,166,0,0,204,166,0,0,204,166,0,0,204,166,0,0,204,166,0,0,208,166,0,0,216,166,0,0,216,166,0,0,218,166,0,0,220,166,0,0,222,166,0,0,224,166,0,0,228,166,0,0,230,166,0,0,230,166,0,0,230,166,0,0,232,166,0,0,232,166,0,0,236,166,0,0,238,166,0,0,238,166,0,0,238,166,0,0,238,166,0,0,242,166,0,0,246,166,0,0,246,166,0,0,246,166,0,0,246,166,0,0,246,166,0,0,248,166,0,0,248,166,0,0,250,166,0,0,252,166,0,0,252,166,0,0,252,166,0,0,254,166,0,0,2,167,0,0,2,167,0,0,2,167,0,0,2,167,0,0,6,167,0,0,6,167,0,0,8,167,0,0,18,167,0,0,22,167,0,0,26,167,0,0,26,167,0,0,28,167,0,0,28,167,0,0,30,167,0,0,30,167,0,0,30,167,0,0,30,167,0,0,30,167,0,0,34,167,0,0,34,167,0,0,36,167,0,0,38,167,0,0,38,167,0,0,38,167,0,0,40,167,0,0,40,167,0,0,46,167,0,0,46,167,0,0,48,167,0,0,48,167,0,0,52,167,0,0,52,167,0,0,56,167,0,0,58,167,0,0,62,167,0,0,62,167,0,0,62,167,0,0,68,167,0,0,70,167,0,0,70,167,0,0,70,167,0,0,70,167,0,0,70,167,0,0,70,167,0,0,70,167,0,0,72,167,0,0,72,167,0,0,72,167,0,0,72,167,0,0,74,167,0,0,74,167,0,0,80,167,0,0,82,167,0,0,84,167,0,0,84,167,0,0,84,167,0,0,90,167,0,0,90,167,0,0,90,167,0,0,90,167,0,0,90,167,0,0,90,167,0,0,90,167,0,0,94,167,0,0,94,167,0,0,106,167,0,0,106,167,0,0,108,167,0,0,108,167,0,0,110,167,0,0,110,167,0,0,110,167,0,0,110,167,0,0,114,167,0,0,118,167,0,0,118,167,0,0,118,167,0,0,120,167,0,0,128,167,0,0,128,167,0,0,130,167,0,0,136,167,0,0,136,167,0,0,138,167,0,0,140,167,0,0,152,167,0,0,152,167,0,0,152,167,0,0,152,167,0,0,156,167,0,0,156,167,0,0,162,167,0,0,164,167,0,0,164,167,0,0,176,167,0,0,176,167,0,0,176,167,0,0,176,167,0,0,186,167,0,0,186,167,0,0,190,167,0,0,190,167,0,0,190,167,0,0,194,167,0,0,194,167,0,0,196,167,0,0,200,167,0,0,200,167,0,0,206,167,0,0,206,167,0,0,216,167,0,0,220,167,0,0,220,167,0,0,220,167,0,0,220,167,0,0,226,167,0,0,226,167,0,0,226,167,0,0,230,167,0,0,232,167,0,0,232,167,0,0,242,167,0,0,242,167,0,0,242,167,0,0,244,167,0,0,244,167,0,0,248,167,0,0,248,167,0,0,248,167,0,0,248,167,0,0,248,167,0,0,248,167,0,0,248,167,0,0,248,167,0,0,248,167,0,0,252,167,0,0,252,167,0,0,252,167,0,0,0,168,0,0,10,168,0,0,14,168,0,0,14,168,0,0,14,168,0,0,14,168,0,0,14,168,0,0,16,168,0,0,16,168,0,0,18,168,0,0,18,168,0,0,18,168,0,0,18,168,0,0,18,168,0,0,22,168,0,0,22,168,0,0,30,168,0,0,34,168,0,0,38,168,0,0,38,168,0,0,40,168,0,0,48,168,0,0,48,168,0,0,50,168,0,0,50,168,0,0,54,168,0,0,64,168,0,0,68,168,0,0,74,168,0,0,74,168,0,0,78,168,0,0,78,168,0,0,82,168,0,0,86,168,0,0,86,168,0,0,86,168,0,0,86,168,0,0,86,168,0,0,92,168,0,0,92,168,0,0,92,168,0,0,92,168,0,0,92,168,0,0,94,168,0,0,98,168,0,0,98,168,0,0,98,168,0,0,98,168,0,0,102,168,0,0,102,168,0,0,108,168,0,0,108,168,0,0,112,168,0,0,118,168,0,0,120,168,0,0,120,168,0,0,120,168,0,0,124,168,0,0,126,168,0,0,128,168,0,0,132,168,0,0,136,168,0,0,136,168,0,0,136,168,0,0,136,168,0,0,140,168,0,0,142,168,0,0,142,168,0,0,150,168,0,0,152,168,0,0,158,168,0,0,158,168,0,0,158,168,0,0,158,168,0,0,160,168,0,0,160,168,0,0,160,168,0,0,160,168,0,0,164,168,0,0,164,168,0,0,166,168,0,0,168,168,0,0,176,168,0,0,180,168,0,0,180,168,0,0,188,168,0,0,198,168,0,0,198,168,0,0,206,168,0,0,208,168,0,0,210,168,0,0,214,168,0,0,222,168,0,0,224,168,0,0,224,168,0,0,228,168,0,0,230,168,0,0,230,168,0,0,232,168,0,0,232,168,0,0,232,168,0,0,232,168,0,0,232,168,0,0,234,168,0,0,234,168,0,0,238,168,0,0,238,168,0,0,240,168,0,0,242,168,0,0,242,168,0,0,246,168,0,0,246,168,0,0,246,168,0,0,246,168,0,0,246,168,0,0,246,168,0,0,250,168,0,0,250,168,0,0,250,168,0,0,252,168,0,0,0,169,0,0,0,169,0,0,0,169,0,0,2,169,0,0,4,169,0,0,4,169,0,0,4,169,0,0,4,169,0,0,6,169,0,0,6,169,0,0,6,169,0,0,8,169,0,0,8,169,0,0,10,169,0,0,10,169,0,0,10,169,0,0,14,169,0,0,16,169,0,0,18,169,0,0,20,169,0,0,20,169,0,0,30,169,0,0,32,169,0,0,32,169,0,0,34,169,0,0,34,169,0,0,34,169,0,0,34,169,0,0,36,169,0,0,36,169,0,0,40,169,0,0,40,169,0,0,44,169,0,0,44,169,0,0,48,169,0,0,50,169,0,0,50,169,0,0,50,169,0,0,50,169,0,0,50,169,0,0,52,169,0,0,58,169,0,0,58,169,0,0,60,169,0,0,60,169,0,0,62,169,0,0,68,169,0,0,70,169,0,0,74,169,0,0,74,169,0,0,74,169,0,0,80,169,0,0,82,169,0,0,92,169,0,0,94,169,0,0,94,169,0,0,94,169,0,0,94,169,0,0,94,169,0,0,100,169,0,0,100,169,0,0,100,169,0,0,108,169,0,0,108,169,0,0,114,169,0,0,114,169,0,0,114,169,0,0,114,169,0,0,114,169,0,0,116,169,0,0,118,169,0,0,118,169,0,0,118,169,0,0,118,169,0,0,118,169,0,0,118,169,0,0,118,169,0,0,120,169,0,0,120,169,0,0,120,169,0,0,124,169,0,0,124,169,0,0,126,169,0,0,132,169,0,0,132,169,0,0,132,169,0,0,132,169,0,0,134,169,0,0,134,169,0,0,134,169,0,0,142,169,0,0,142,169,0,0,142,169,0,0,144,169,0,0,144,169,0,0,144,169,0,0,144,169,0,0,144,169,0,0,144,169,0,0,146,169,0,0,150,169,0,0,150,169,0,0,150,169,0,0,154,169,0,0,154,169,0,0,154,169,0,0,160,169,0,0,160,169,0,0,162,169,0,0,162,169,0,0,162,169,0,0,162,169,0,0,170,169,0,0,174,169,0,0,176,169,0,0,176,169,0,0,182,169,0,0,184,169,0,0,184,169,0,0,190,169,0,0,194,169,0,0,196,169,0,0,196,169,0,0,198,169,0,0,198,169,0,0,202,169,0,0,206,169,0,0,206,169,0,0,218,169,0,0,218,169,0,0,220,169,0,0,220,169,0,0,222,169,0,0,224,169,0,0,226,169,0,0,226,169,0,0,228,169,0,0,230,169,0,0,232,169,0,0,236,169,0,0,244,169,0,0,244,169,0,0,248,169,0,0,248,169,0,0,252,169,0,0,252,169,0,0,252,169,0,0,2,170,0,0,2,170,0,0,8,170,0,0,10,170,0,0,20,170,0,0,22,170,0,0,24,170,0,0,24,170,0,0,24,170,0,0,26,170,0,0,26,170,0,0,26,170,0,0,26,170,0,0,26,170,0,0,26,170,0,0,30,170,0,0,32,170,0,0,40,170,0,0,42,170,0,0,46,170,0,0,46,170,0,0,46,170,0,0,46,170,0,0,50,170,0,0,56,170,0,0,56,170,0,0,60,170,0,0,62,170,0,0,64,170,0,0,68,170,0,0,72,170,0,0,72,170,0,0,72,170,0,0,72,170,0,0,76,170,0,0,80,170,0,0,80,170,0,0,80,170,0,0,86,170,0,0,94,170,0,0,96,170,0,0,98,170,0,0,98,170,0,0,100,170,0,0,100,170,0,0,100,170,0,0,100,170,0,0,100,170,0,0,100,170,0,0,100,170,0,0,104,170,0,0,104,170,0,0,106,170,0,0,108,170,0,0,108,170,0,0,108,170,0,0,110,170,0,0,110,170,0,0,110,170,0,0,110,170,0,0,112,170,0,0,112,170,0,0,114,170,0,0,114,170,0,0,114,170,0,0,114,170,0,0,118,170,0,0,118,170,0,0,118,170,0,0,122,170,0,0,122,170,0,0,126,170,0,0,126,170,0,0,126,170,0,0,126,170,0,0,128,170,0,0,128,170,0,0,130,170,0,0,130,170,0,0,130,170,0,0,134,170,0,0,138,170,0,0,140,170,0,0,140,170,0,0,140,170,0,0,142,170,0,0,152,170,0,0,156,170,0,0,156,170,0,0,164,170,0,0,164,170,0,0,166,170,0,0,166,170,0,0,166,170,0,0,168,170,0,0,168,170,0,0,170,170,0,0,170,170,0,0,174,170,0,0,176,170,0,0,180,170,0,0,180,170,0,0,182,170,0,0,184,170,0,0,186,170,0,0,186,170,0,0,186,170,0,0,186,170,0,0,188,170,0,0,188,170,0,0,188,170,0,0,190,170,0,0,194,170,0,0,194,170,0,0,202,170,0,0,202,170,0,0,204,170,0,0,204,170,0,0,204,170,0,0,206,170,0,0,206,170,0,0,210,170,0,0,216,170,0,0,222,170,0,0,224,170,0,0,228,170,0,0,228,170,0,0,238,170,0,0,240,170,0,0,244,170,0,0,244,170,0,0,254,170,0,0,254,170,0,0,254,170,0,0,0,171,0,0,2,171,0,0,14,171,0,0,20,171,0,0,24,171,0,0,26,171,0,0,34,171,0,0,44,171,0,0,48,171,0,0,52,171,0,0,52,171,0,0,56,171,0,0,60,171,0,0,70,171,0,0,70,171,0,0,70,171,0,0,70,171,0,0,70,171,0,0,70,171,0,0,70,171,0,0,72,171,0,0,76,171,0,0,78,171,0,0,78,171,0,0,78,171,0,0,80,171,0,0,80,171,0,0,82,171,0,0,82,171,0,0,84,171,0,0,90,171,0,0,90,171,0,0,90,171,0,0,90,171,0,0,90,171,0,0,90,171,0,0,92,171,0,0,96,171,0,0,96,171,0,0,104,171,0,0,104,171,0,0,106,171,0,0,106,171,0,0,106,171,0,0,106,171,0,0,106,171,0,0,112,171,0,0,116,171,0,0,116,171,0,0,116,171,0,0,116,171,0,0,120,171,0,0,124,171,0,0,124,171,0,0,126,171,0,0,126,171,0,0,126,171,0,0,128,171,0,0,130,171,0,0,134,171,0,0,136,171,0,0,138,171,0,0,140,171,0,0,146,171,0,0,146,171,0,0,150,171,0,0,150,171,0,0,152,171,0,0,158,171,0,0,160,171,0,0,160,171,0,0,160,171,0,0,172,171,0,0,172,171,0,0,172,171,0,0,174,171,0,0,174,171,0,0,174,171,0,0,174,171,0,0,176,171,0,0,178,171,0,0,178,171,0,0,178,171,0,0,188,171,0,0,188,171,0,0,190,171,0,0,190,171,0,0,196,171,0,0,202,171,0,0,204,171,0,0,208,171,0,0,208,171,0,0,214,171,0,0,222,171,0,0,234,171,0,0,234,171,0,0,234,171,0,0,238,171,0,0,238,171,0,0,238,171,0,0,248,171,0,0,248,171,0,0,248,171,0,0,6,172,0,0,10,172,0,0,10,172,0,0,14,172,0,0,16,172,0,0,18,172,0,0,18,172,0,0,20,172,0,0,20,172,0,0,22,172,0,0,24,172,0,0,40,172,0,0,40,172,0,0,44,172,0,0,56,172,0,0,68,172,0,0,70,172,0,0,70,172,0,0,72,172,0,0,78,172,0,0,80,172,0,0,82,172,0,0,82,172,0,0,82,172,0,0,82,172,0,0,82,172,0,0,84,172,0,0,84,172,0,0,84,172,0,0,86,172,0,0,88,172,0,0,88,172,0,0,88,172,0,0,90,172,0,0,96,172,0,0,96,172,0,0,96,172,0,0,102,172,0,0,104,172,0,0,110,172,0,0,110,172,0,0,114,172,0,0,114,172,0,0,114,172,0,0,114,172,0,0,114,172,0,0,118,172,0,0,122,172,0,0,122,172,0,0,126,172,0,0,126,172,0,0,126,172,0,0,126,172,0,0,132,172,0,0,132,172,0,0,134,172,0,0,138,172,0,0,142,172,0,0,142,172,0,0,142,172,0,0,142,172,0,0,144,172,0,0,146,172,0,0,150,172,0,0,152,172,0,0,154,172,0,0,154,172,0,0,154,172,0,0,154,172,0,0,154,172,0,0,160,172,0,0,164,172,0,0,166,172,0,0,166,172,0,0,174,172,0,0,174,172,0,0,174,172,0,0,174,172,0,0,178,172,0,0,178,172,0,0,178,172,0,0,180,172,0,0,182,172,0,0,192,172,0,0,198,172,0,0,200,172,0,0,202,172,0,0,204,172,0,0,206,172,0,0,208,172,0,0,208,172,0,0,208,172,0,0,210,172,0,0,210,172,0,0,210,172,0,0,210,172,0,0,210,172,0,0,214,172,0,0,228,172,0,0,228,172,0,0,228,172,0,0,228,172,0,0,228,172,0,0,232,172,0,0,234,172,0,0,234,172,0,0,234,172,0,0,238,172,0,0,238,172,0,0,240,172,0,0,244,172,0,0,244,172,0,0,250,172,0,0,252,172,0,0,252,172,0,0,252,172,0,0,252,172,0,0,254,172,0,0,2,173,0,0,6,173,0,0,6,173,0,0,6,173,0,0,12,173,0,0,16,173,0,0,16,173,0,0,16,173,0,0,22,173,0,0,26,173,0,0,28,173,0,0,32,173,0,0,32,173,0,0,38,173,0,0,42,173,0,0,42,173,0,0,42,173,0,0,44,173,0,0,44,173,0,0,44,173,0,0,44,173,0,0,46,173,0,0,48,173,0,0,52,173,0,0,60,173,0,0,60,173,0,0,62,173,0,0,62,173,0,0,64,173,0,0,64,173,0,0,68,173,0,0,68,173,0,0,74,173,0,0,74,173,0,0,78,173,0,0,78,173,0,0,78,173,0,0,78,173,0,0,78,173,0,0,80,173,0,0,88,173,0,0,92,173,0,0,92,173,0,0,98,173,0,0,98,173,0,0,100,173,0,0,110,173,0,0,112,173,0,0,112,173,0,0,114,173,0,0,114,173,0,0,114,173,0,0,114,173,0,0,116,173,0,0,116,173,0,0,128,173,0,0,128,173,0,0,138,173,0,0,140,173,0,0,150,173,0,0,150,173,0,0,152,173,0,0,152,173,0,0,154,173,0,0,154,173,0,0,158,173,0,0,160,173,0,0,162,173,0,0,164,173,0,0,170,173,0,0,172,173,0,0,172,173,0,0,176,173,0,0,176,173,0,0,176,173,0,0,176,173,0,0,176,173,0,0,190,173,0,0,194,173,0,0,196,173,0,0,198,173,0,0,200,173,0,0,204,173,0,0,204,173,0,0,204,173,0,0,204,173,0,0,210,173,0,0,216,173,0,0,226,173,0,0,226,173,0,0,226,173,0,0,234,173,0,0,236,173,0,0,238,173,0,0,238,173,0,0,238,173,0,0,238,173,0,0,242,173,0,0,242,173,0,0,242,173,0,0,244,173,0,0,244,173,0,0,244,173,0,0,246,173,0,0,250,173,0,0,252,173,0,0,252,173,0,0,252,173,0,0,254,173,0,0,4,174,0,0,14,174,0,0,14,174,0,0,14,174,0,0,16,174,0,0,16,174,0,0,16,174,0,0,16,174,0,0,16,174,0,0,16,174,0,0,18,174,0,0,18,174,0,0,18,174,0,0,18,174,0,0,18,174,0,0,18,174,0,0,24,174,0,0,24,174,0,0,24,174,0,0,24,174,0,0,24,174,0,0,24,174,0,0,24,174,0,0,30,174,0,0,30,174,0,0,34,174,0,0,34,174,0,0,34,174,0,0,34,174,0,0,34,174,0,0,34,174,0,0,36,174,0,0,36,174,0,0,38,174,0,0,40,174,0,0,40,174,0,0,40,174,0,0,42,174,0,0,46,174,0,0,48,174,0,0,54,174,0,0,54,174,0,0,58,174,0,0,58,174,0,0,60,174,0,0,62,174,0,0,62,174,0,0,64,174,0,0,68,174,0,0,68,174,0,0,72,174,0,0,72,174,0,0,72,174,0,0,72,174,0,0,78,174,0,0,78,174,0,0,78,174,0,0,78,174,0,0,82,174,0,0,84,174,0,0,84,174,0,0,88,174,0,0,90,174,0,0,94,174,0,0,94,174,0,0,94,174,0,0,94,174,0,0,96,174,0,0,102,174,0,0,106,174,0,0,108,174,0,0,108,174,0,0,108,174,0,0,116,174,0,0,118,174,0,0,122,174,0,0,122,174,0,0,122,174,0,0,122,174,0,0,122,174,0,0,122,174,0,0,124,174,0,0,124,174,0,0,126,174,0,0,128,174,0,0,130,174,0,0,140,174,0,0,140,174,0,0,140,174,0,0,140,174,0,0,144,174,0,0,144,174,0,0,144,174,0,0,150,174,0,0,162,174,0,0,164,174,0,0,164,174,0,0,168,174,0,0,170,174,0,0,174,174,0,0,174,174,0,0,174,174,0,0,174,174,0,0,174,174,0,0,174,174,0,0,180,174,0,0,180,174,0,0,180,174,0,0,184,174,0,0,184,174,0,0,184,174,0,0,190,174,0,0,190,174,0,0,190,174,0,0,192,174,0,0,192,174,0,0,196,174,0,0,196,174,0,0,196,174,0,0,200,174,0,0,202,174,0,0,206,174,0,0,206,174,0,0,208,174,0,0,216,174,0,0,216,174,0,0,218,174,0,0,218,174,0,0,218,174,0,0,220,174,0,0,220,174,0,0,220,174,0,0,220,174,0,0,226,174,0,0,226,174,0,0,230,174,0,0,230,174,0,0,230,174,0,0,234,174,0,0,236,174,0,0,244,174,0,0,246,174,0,0,250,174,0,0,2,175,0,0,2,175,0,0,2,175,0,0,2,175,0,0,10,175,0,0,12,175,0,0,12,175,0,0,12,175,0,0,14,175,0,0,22,175,0,0,22,175,0,0,22,175,0,0,22,175,0,0,26,175,0,0,26,175,0,0,26,175,0,0,28,175,0,0,32,175,0,0,34,175,0,0,38,175,0,0,42,175,0,0,46,175,0,0,50,175,0,0,52,175,0,0,52,175,0,0,52,175,0,0,56,175,0,0,56,175,0,0,56,175,0,0,56,175,0,0,56,175,0,0,58,175,0,0,62,175,0,0,62,175,0,0,62,175,0,0,62,175,0,0,62,175,0,0,62,175,0,0,62,175,0,0,66,175,0,0,66,175,0,0,68,175,0,0,68,175,0,0,68,175,0,0,68,175,0,0,74,175,0,0,74,175,0,0,78,175,0,0,78,175,0,0,82,175,0,0,84,175,0,0,84,175,0,0,84,175,0,0,84,175,0,0,86,175,0,0,88,175,0,0,90,175,0,0,90,175,0,0,90,175,0,0,92,175,0,0,94,175,0,0,100,175,0,0,100,175,0,0,104,175,0,0,106,175,0,0,106,175,0,0,108,175,0,0,112,175,0,0,112,175,0,0,114,175,0,0,114,175,0,0,114,175,0,0,116,175,0,0,120,175,0,0,122,175,0,0,122,175,0,0,122,175,0,0,122,175,0,0,126,175,0,0,128,175,0,0,130,175,0,0,132,175,0,0,138,175,0,0,138,175,0,0,142,175,0,0,144,175,0,0,144,175,0,0,144,175,0,0,146,175,0,0,164,175,0,0,164,175,0,0,166,175,0,0,168,175,0,0,168,175,0,0,172,175,0,0,172,175,0,0,172,175,0,0,176,175,0,0,180,175,0,0,186,175,0,0,186,175,0,0,190,175,0,0,190,175,0,0,190,175,0,0,192,175,0,0,202,175,0,0,202,175,0,0,204,175,0,0,206,175,0,0,210,175,0,0,212,175,0,0,214,175,0,0,218,175,0,0,218,175,0,0,218,175,0,0,222,175,0,0,222,175,0,0,222,175,0,0,222,175,0,0,224,175,0,0,228,175,0,0,228,175,0,0,228,175,0,0,228,175,0,0,228,175,0,0,228,175,0,0,230,175,0,0,230,175,0,0,230,175,0,0,232,175,0,0,232,175,0,0,236,175,0,0,236,175,0,0,236,175,0,0,240,175,0,0,240,175,0,0,242,175,0,0,242,175,0,0,244,175,0,0,244,175,0,0,248,175,0,0,250,175,0,0,254,175,0,0,254,175,0,0,254,175,0,0,254,175,0,0,0,176,0,0,0,176,0,0,2,176,0,0,4,176,0,0,14,176,0,0,16,176,0,0,22,176,0,0,28,176,0,0,28,176,0,0,34,176,0,0,34,176,0,0,40,176,0,0,40,176,0,0,40,176,0,0,46,176,0,0,46,176,0,0,46,176,0,0,46,176,0,0,46,176,0,0,46,176,0,0,46,176,0,0,58,176,0,0,58,176,0,0,60,176,0,0,62,176,0,0,64,176,0,0,64,176,0,0,64,176,0,0,64,176,0,0,64,176,0,0,64,176,0,0,64,176,0,0,66,176,0,0,66,176,0,0,66,176,0,0,66,176,0,0,66,176,0,0,66,176,0,0,66,176,0,0,66,176,0,0,66,176,0,0,68,176,0,0,68,176,0,0,68,176,0,0,70,176,0,0,74,176,0,0,76,176,0,0,76,176,0,0,76,176,0,0,86,176,0,0,88,176,0,0,92,176,0,0,92,176,0,0,94,176,0,0,94,176,0,0,94,176,0,0,98,176,0,0,100,176,0,0,104,176,0,0,112,176,0,0,114,176,0,0,114,176,0,0,120,176,0,0,122,176,0,0,126,176,0,0,130,176,0,0,130,176,0,0,136,176,0,0,138,176,0,0,140,176,0,0,140,176,0,0,142,176,0,0,142,176,0,0,148,176,0,0,148,176,0,0,150,176,0,0,150,176,0,0,150,176,0,0,150,176,0,0,150,176,0,0,150,176,0,0,150,176,0,0,154,176,0,0,154,176,0,0,168,176,0,0,172,176,0,0,172,176,0,0,172,176,0,0,180,176,0,0,180,176,0,0,184,176,0,0,184,176,0,0,186,176,0,0,188,176,0,0,192,176,0,0,196,176,0,0,198,176,0,0,202,176,0,0,202,176,0,0,214,176,0,0,220,176,0,0,220,176,0,0,220,176,0,0,220,176,0,0,222,176,0,0,222,176,0,0,222,176,0,0,226,176,0,0,228,176,0,0,232,176,0,0,232,176,0,0,234,176,0,0,238,176,0,0,240,176,0,0,240,176,0,0,246,176,0,0,2,177,0,0,2,177,0,0,2,177,0,0,2,177,0,0,2,177,0,0,12,177,0,0,12,177,0,0,12,177,0,0,14,177,0,0,14,177,0,0,16,177,0,0,16,177,0,0,16,177,0,0,20,177,0,0,24,177,0,0,26,177,0,0,26,177,0,0,28,177,0,0,28,177,0,0,28,177,0,0,28,177,0,0,28,177,0,0,28,177,0,0,32,177,0,0,32,177,0,0,40,177,0,0,40,177,0,0,40,177,0,0,42,177,0,0,44,177,0,0,44,177,0,0,50,177,0,0,50,177,0,0,50,177,0,0,56,177,0,0,56,177,0,0,56,177,0,0,56,177,0,0,56,177,0,0,56,177,0,0,56,177,0,0,56,177,0,0,60,177,0,0,64,177,0,0,68,177,0,0,68,177,0,0,68,177,0,0,78,177,0,0,82,177,0,0,86,177,0,0,88,177,0,0,88,177,0,0,90,177,0,0,98,177,0,0,98,177,0,0,100,177,0,0,102,177,0,0,104,177,0,0,104,177,0,0,106,177,0,0,112,177,0,0,112,177,0,0,112,177,0,0,112,177,0,0,114,177,0,0,114,177,0,0,114,177,0,0,114,177,0,0,114,177,0,0,116,177,0,0,116,177,0,0,116,177,0,0,116,177,0,0,116,177,0,0,116,177,0,0,116,177,0,0,118,177,0,0,122,177,0,0,126,177,0,0,132,177,0,0,134,177,0,0,142,177,0,0,142,177,0,0,146,177,0,0,146,177,0,0,146,177,0,0,146,177,0,0,146,177,0,0,156,177,0,0,156,177,0,0,160,177,0,0,162,177,0,0,162,177,0,0,164,177,0,0,164,177,0,0,164,177,0,0,164,177,0,0,164,177,0,0,164,177,0,0,164,177,0,0,164,177,0,0,166,177,0,0,166,177,0,0,166,177,0,0,168,177,0,0,168,177,0,0,168,177,0,0,168,177,0,0,168,177,0,0,174,177,0,0,176,177,0,0,176,177,0,0,176,177,0,0,176,177,0,0,180,177,0,0,182,177,0,0,184,177,0,0,186,177,0,0,188,177,0,0,188,177,0,0,198,177,0,0,200,177,0,0,206,177,0,0,206,177,0,0,214,177,0,0,214,177,0,0,216,177,0,0,216,177,0,0,226,177,0,0,226,177,0,0,226,177,0,0,232,177,0,0,232,177,0,0,232,177,0,0,232,177,0,0,232,177,0,0,232,177,0,0,232,177,0,0,232,177,0,0,232,177,0,0,232,177,0,0,234,177,0,0,234,177,0,0,234,177,0,0,234,177,0,0,238,177,0,0,240,177,0,0,240,177,0,0,244,177,0,0,252,177,0,0,0,178,0,0,2,178,0,0,2,178,0,0,2,178,0,0,6,178,0,0,6,178,0,0,8,178,0,0,8,178,0,0,8,178,0,0,8,178,0,0,14,178,0,0,14,178,0,0,14,178,0,0,18,178,0,0,24,178,0,0,24,178,0,0,26,178,0,0,26,178,0,0,28,178,0,0,28,178,0,0,28,178,0,0,28,178,0,0,28,178,0,0,28,178,0,0,32,178,0,0,32,178,0,0,32,178,0,0,32,178,0,0,34,178,0,0,34,178,0,0,34,178,0,0,36,178,0,0,42,178,0,0,44,178,0,0,46,178,0,0,46,178,0,0,46,178,0,0,54,178,0,0,60,178,0,0,60,178,0,0,60,178,0,0,66,178,0,0,72,178,0,0,72,178,0,0,72,178,0,0,72,178,0,0,72,178,0,0,80,178,0,0,80,178,0,0,82,178,0,0,84,178,0,0,84,178,0,0,84,178,0,0,84,178,0,0,86,178,0,0,86,178,0,0,86,178,0,0,90,178,0,0,90,178,0,0,96,178,0,0,96,178,0,0,96,178,0,0,96,178,0,0,98,178,0,0,98,178,0,0,98,178,0,0,106,178,0,0,110,178,0,0,114,178,0,0,114,178,0,0,124,178,0,0,124,178,0,0,124,178,0,0,124,178,0,0,130,178,0,0,132,178,0,0,132,178,0,0,138,178,0,0,138,178,0,0,142,178,0,0,146,178,0,0,146,178,0,0,146,178,0,0,146,178,0,0,146,178,0,0,150,178,0,0,152,178,0,0,154,178,0,0,154,178,0,0,158,178,0,0,158,178,0,0,164,178,0,0,164,178,0,0,168,178,0,0,168,178,0,0,174,178,0,0,174,178,0,0,174,178,0,0,174,178,0,0,174,178,0,0,182,178,0,0,184,178,0,0,186,178,0,0,186,178,0,0,188,178,0,0,192,178,0,0,192,178,0,0,194,178,0,0,198,178,0,0,204,178,0,0,204,178,0,0,206,178,0,0,208,178,0,0,210,178,0,0,210,178,0,0,212,178,0,0,214,178,0,0,214,178,0,0,218,178,0,0,222,178,0,0,224,178,0,0,226,178,0,0,230,178,0,0,232,178,0,0,236,178,0,0,240,178,0,0,240,178,0,0,244,178,0,0,246,178,0,0,252,178,0,0,252,178,0,0,252,178,0,0,0,179,0,0,12,179,0,0,12,179,0,0,12,179,0,0,18,179,0,0,24,179,0,0,26,179,0,0,26,179,0,0,26,179,0,0,26,179,0,0,28,179,0,0,30,179,0,0,32,179,0,0,36,179,0,0,36,179,0,0,36,179,0,0,42,179,0,0,44,179,0,0,44,179,0,0,44,179,0,0,44,179,0,0,46,179,0,0,48,179,0,0,48,179,0,0,50,179,0,0,52,179,0,0,60,179,0,0,62,179,0,0,70,179,0,0,70,179,0,0,70,179,0,0,70,179,0,0,70,179,0,0,72,179,0,0,74,179,0,0,74,179,0,0,74,179,0,0,74,179,0,0,78,179,0,0,80,179,0,0,84,179,0,0,84,179,0,0,84,179,0,0,92,179,0,0,94,179,0,0,94,179,0,0,94,179,0,0,98,179,0,0,98,179,0,0,102,179,0,0,102,179,0,0,104,179,0,0,104,179,0,0,112,179,0,0,118,179,0,0,120,179,0,0,120,179,0,0,124,179,0,0,128,179,0,0,132,179,0,0,134,179,0,0,134,179,0,0,134,179,0,0,140,179,0,0,140,179,0,0,140,179,0,0,146,179,0,0,146,179,0,0,146,179,0,0,146,179,0,0,148,179,0,0,150,179,0,0,150,179,0,0,158,179,0,0,158,179,0,0,158,179,0,0,158,179,0,0,158,179,0,0,158,179,0,0,158,179,0,0,158,179,0,0,158,179,0,0,158,179,0,0,158,179,0,0,158,179,0,0,158,179,0,0,160,179,0,0,164,179,0,0,174,179,0,0,174,179,0,0,174,179,0,0,174,179,0,0,178,179,0,0,178,179,0,0,178,179,0,0,186,179,0,0,190,179,0,0,192,179,0,0,202,179,0,0,204,179,0,0,206,179,0,0,206,179,0,0,206,179,0,0,206,179,0,0,206,179,0,0,206,179,0,0,206,179,0,0,206,179,0,0,206,179,0,0,208,179,0,0,208,179,0,0,208,179,0,0,210,179,0,0,210,179,0,0,218,179,0,0,218,179,0,0,218,179,0,0,218,179,0,0,218,179,0,0,218,179,0,0,226,179,0,0,226,179,0,0,230,179,0,0,234,179,0,0,234,179,0,0,234,179,0,0,238,179,0,0,238,179,0,0,238,179,0,0,240,179,0,0,240,179,0,0,240,179,0,0,242,179,0,0,242,179,0,0,244,179,0,0,246,179,0,0,248,179,0,0,0,180,0,0,4,180,0,0,12,180,0,0,14,180,0,0,16,180,0,0,16,180,0,0,16,180,0,0,20,180,0,0,26,180,0,0,30,180,0,0,32,180,0,0,32,180,0,0,34,180,0,0,34,180,0,0,34,180,0,0,34,180,0,0,34,180,0,0,34,180,0,0,34,180,0,0,36,180,0,0,44,180,0,0,44,180,0,0,48,180,0,0,48,180,0,0,52,180,0,0,52,180,0,0,54,180,0,0,56,180,0,0,56,180,0,0,56,180,0,0,56,180,0,0,58,180,0,0,58,180,0,0,58,180,0,0,60,180,0,0,60,180,0,0,60,180,0,0,60,180,0,0,62,180,0,0,70,180,0,0,70,180,0,0,70,180,0,0,70,180,0,0,70,180,0,0,72,180,0,0,72,180,0,0,72,180,0,0,72,180,0,0,72,180,0,0,72,180,0,0,72,180,0,0,74,180,0,0,74,180,0,0,78,180,0,0,86,180,0,0,92,180,0,0,92,180,0,0,96,180,0,0,98,180,0,0,104,180,0,0,110,180,0,0,110,180,0,0,114,180,0,0,114,180,0,0,114,180,0,0,120,180,0,0,120,180,0,0,120,180,0,0,122,180,0,0,126,180,0,0,126,180,0,0,128,180,0,0,128,180,0,0,128,180,0,0,138,180,0,0,138,180,0,0,142,180,0,0,144,180,0,0,144,180,0,0,144,180,0,0,146,180,0,0,162,180,0,0,162,180,0,0,164,180,0,0,166,180,0,0,170,180,0,0,170,180,0,0,170,180,0,0,170,180,0,0,172,180,0,0,172,180,0,0,172,180,0,0,174,180,0,0,174,180,0,0,178,180,0,0,180,180,0,0,184,180,0,0,190,180,0,0,194,180,0,0,202,180,0,0,204,180,0,0,210,180,0,0,210,180,0,0,212,180,0,0,214,180,0,0,216,180,0,0,216,180,0,0,218,180,0,0,218,180,0,0,218,180,0,0,220,180,0,0,220,180,0,0,220,180,0,0,220,180,0,0,224,180,0,0,226,180,0,0,226,180,0,0,226,180,0,0,226,180,0,0,228,180,0,0,230,180,0,0,232,180,0,0,232,180,0,0,234,180,0,0,234,180,0,0,240,180,0,0,240,180,0,0,240,180,0,0,246,180,0,0,250,180,0,0,250,180,0,0,250,180,0,0,250,180,0,0,252,180,0,0,252,180,0,0,252,180,0,0,252,180,0,0,4,181,0,0,4,181,0,0,4,181,0,0,4,181,0,0,4,181,0,0,16,181,0,0,18,181,0,0,18,181,0,0,20,181,0,0,20,181,0,0,20,181,0,0,24,181,0,0,26,181,0,0,30,181,0,0,32,181,0,0,34,181,0,0,36,181,0,0,36,181,0,0,40,181,0,0,42,181,0,0,42,181,0,0,42,181,0,0,42,181,0,0,42,181,0,0,46,181,0,0,46,181,0,0,50,181,0,0,52,181,0,0,52,181,0,0,52,181,0,0,58,181,0,0,60,181,0,0,60,181,0,0,60,181,0,0,62,181,0,0,62,181,0,0,62,181,0,0,64,181,0,0,64,181,0,0,68,181,0,0,68,181,0,0,74,181,0,0,74,181,0,0,74,181,0,0,76,181,0,0,78,181,0,0,84,181,0,0,88,181,0,0,92,181,0,0,94,181,0,0,98,181,0,0,102,181,0,0,108,181,0,0,114,181,0,0,114,181,0,0,118,181,0,0,118,181,0,0,120,181,0,0,124,181,0,0,140,181,0,0,140,181,0,0,142,181,0,0,148,181,0,0,148,181,0,0,148,181,0,0,154,181,0,0,154,181,0,0,158,181,0,0,158,181,0,0,160,181,0,0,162,181,0,0,164,181,0,0,164,181,0,0,164,181,0,0,164,181,0,0,166,181,0,0,166,181,0,0,170,181,0,0,180,181,0,0,182,181,0,0,188,181,0,0,190,181,0,0,190,181,0,0,190,181,0,0,192,181,0,0,192,181,0,0,198,181,0,0,198,181,0,0,202,181,0,0,204,181,0,0,204,181,0,0,204,181,0,0,204,181,0,0,208,181,0,0,216,181,0,0,216,181,0,0,216,181,0,0,222,181,0,0,222,181,0,0,226,181,0,0,228,181,0,0,234,181,0,0,238,181,0,0,242,181,0,0,242,181,0,0,242,181,0,0,242,181,0,0,242,181,0,0,244,181,0,0,244,181,0,0,244,181,0,0,244,181,0,0,244,181,0,0,248,181,0,0,0,182,0,0,8,182,0,0,8,182,0,0,8,182,0,0,8,182,0,0,12,182,0,0,16,182,0,0,16,182,0,0,16,182,0,0,16,182,0,0,16,182,0,0,16,182,0,0,18,182,0,0,18,182,0,0,18,182,0,0,28,182,0,0,30,182,0,0,32,182,0,0,36,182,0,0,36,182,0,0,40,182,0,0,40,182,0,0,42,182,0,0,42,182,0,0,42,182,0,0,42,182,0,0,44,182,0,0,44,182,0,0,44,182,0,0,48,182,0,0,48,182,0,0,48,182,0,0,48,182,0,0,50,182,0,0,50,182,0,0,64,182,0,0,64,182,0,0,64,182,0,0,64,182,0,0,70,182,0,0,70,182,0,0,82,182,0,0,82,182,0,0,86,182,0,0,90,182,0,0,92,182,0,0,92,182,0,0,92,182,0,0,92,182,0,0,92,182,0,0,92,182,0,0,92,182,0,0,98,182,0,0,102,182,0,0,106,182,0,0,106,182,0,0,106,182,0,0,108,182,0,0,110,182,0,0,110,182,0,0,110,182,0,0,110,182,0,0,110,182,0,0,114,182,0,0,114,182,0,0,118,182,0,0,120,182,0,0,124,182,0,0,124,182,0,0,128,182,0,0,130,182,0,0,130,182,0,0,130,182,0,0,130,182,0,0,136,182,0,0,136,182,0,0,136,182,0,0,140,182,0,0,140,182,0,0,140,182,0,0,140,182,0,0,140,182,0,0,144,182,0,0,144,182,0,0,144,182,0,0,146,182,0,0,148,182,0,0,156,182,0,0,158,182,0,0,166,182,0,0,166,182,0,0,166,182,0,0,166,182,0,0,168,182,0,0,168,182,0,0,172,182,0,0,172,182,0,0,172,182,0,0,180,182,0,0,180,182,0,0,182,182,0,0,182,182,0,0,192,182,0,0,192,182,0,0,194,182,0,0,196,182,0,0,196,182,0,0,196,182,0,0,206,182,0,0,206,182,0,0,206,182,0,0,210,182,0,0,214,182,0,0,216,182,0,0,216,182,0,0,220,182,0,0,220,182,0,0,220,182,0,0,220,182,0,0,224,182,0,0,228,182,0,0,230,182,0,0,230,182,0,0,230,182,0,0,230,182,0,0,230,182,0,0,230,182,0,0,230,182,0,0,230,182,0,0,230,182,0,0,232,182,0,0,232,182,0,0,232,182,0,0,234,182,0,0,234,182,0,0,234,182,0,0,234,182,0,0,236,182,0,0,238,182,0,0,240,182,0,0,240,182,0,0,240,182,0,0,240,182,0,0,240,182,0,0,242,182,0,0,246,182,0,0,246,182,0,0,246,182,0,0,4,183,0,0,6,183,0,0,6,183,0,0,6,183,0,0,8,183,0,0,8,183,0,0,8,183,0,0,20,183,0,0,22,183,0,0,24,183,0,0,24,183,0,0,26,183,0,0,28,183,0,0,28,183,0,0,28,183,0,0,38,183,0,0,38,183,0,0,42,183,0,0,42,183,0,0,42,183,0,0,42,183,0,0,44,183,0,0,44,183,0,0,44,183,0,0,46,183,0,0,54,183,0,0,54,183,0,0,54,183,0,0,56,183,0,0,56,183,0,0,58,183,0,0,58,183,0,0,58,183,0,0,60,183,0,0,60,183,0,0,62,183,0,0,62,183,0,0,62,183,0,0,62,183,0,0,64,183,0,0,64,183,0,0,64,183,0,0,64,183,0,0,66,183,0,0,68,183,0,0,68,183,0,0,70,183,0,0,70,183,0,0,70,183,0,0,76,183,0,0,78,183,0,0,78,183,0,0,82,183,0,0,88,183,0,0,88,183,0,0,88,183,0,0,88,183,0,0,90,183,0,0,90,183,0,0,92,183,0,0,98,183,0,0,98,183,0,0,98,183,0,0,98,183,0,0,98,183,0,0,98,183,0,0,98,183,0,0,102,183,0,0,104,183,0,0,106,183,0,0,108,183,0,0,110,183,0,0,110,183,0,0,110,183,0,0,112,183,0,0,116,183,0,0,118,183,0,0,122,183,0,0,122,183,0,0,122,183,0,0,122,183,0,0,132,183,0,0,134,183,0,0,136,183,0,0,136,183,0,0,140,183,0,0,142,183,0,0,144,183,0,0,152,183,0,0,152,183,0,0,152,183,0,0,156,183,0,0,156,183,0,0,156,183,0,0,156,183,0,0,156,183,0,0,160,183,0,0,160,183,0,0,160,183,0,0,162,183,0,0,162,183,0,0,162,183,0,0,166,183,0,0,166,183,0,0,168,183,0,0,172,183,0,0,172,183,0,0,176,183,0,0,182,183,0,0,182,183,0,0,184,183,0,0,186,183,0,0,188,183,0,0,188,183,0,0,196,183,0,0,196,183,0,0,200,183,0,0,202,183,0,0,206,183,0,0,206,183,0,0,206,183,0,0,214,183,0,0,214,183,0,0,218,183,0,0,220,183,0,0,220,183,0,0,220,183,0,0,220,183,0,0,220,183,0,0,224,183,0,0,224,183,0,0,224,183,0,0,224,183,0,0,226,183,0,0,226,183,0,0,226,183,0,0,228,183,0,0,228,183,0,0,228,183,0,0,228,183,0,0,228,183,0,0,228,183,0,0,234,183,0,0,236,183,0,0,236,183,0,0,236,183,0,0,236,183,0,0,236,183,0,0,246,183,0,0,250,183,0,0,250,183,0,0,252,183,0,0,254,183,0,0,254,183,0,0,0,184,0,0,0,184,0,0,0,184,0,0,2,184,0,0,4,184,0,0,10,184,0,0,10,184,0,0,14,184,0,0,16,184,0,0,16,184,0,0,16,184,0,0,18,184,0,0,18,184,0,0,18,184,0,0,18,184,0,0,18,184,0,0,18,184,0,0,20,184,0,0,20,184,0,0,24,184,0,0,24,184,0,0,24,184,0,0,24,184,0,0,24,184,0,0,24,184,0,0,34,184,0,0,40,184,0,0,44,184,0,0,50,184,0,0,50,184,0,0,54,184,0,0,54,184,0,0,54,184,0,0,60,184,0,0,66,184,0,0,72,184,0,0,72,184,0,0,72,184,0,0,74,184,0,0,74,184,0,0,74,184,0,0,74,184,0,0,74,184,0,0,74,184,0,0,76,184,0,0,78,184,0,0,78,184,0,0,78,184,0,0,80,184,0,0,84,184,0,0,90,184,0,0,92,184,0,0,92,184,0,0,94,184,0,0,94,184,0,0,94,184,0,0,94,184,0,0,94,184,0,0,98,184,0,0,104,184,0,0,106,184,0,0,106,184,0,0,106,184,0,0,106,184,0,0,106,184,0,0,106,184,0,0,106,184,0,0,112,184,0,0,114,184,0,0,116,184,0,0,116,184,0,0,118,184,0,0,118,184,0,0,120,184,0,0,122,184,0,0,122,184,0,0,122,184,0,0,122,184,0,0,130,184,0,0,132,184,0,0,136,184,0,0,136,184,0,0,136,184,0,0,140,184,0,0,140,184,0,0,140,184,0,0,140,184,0,0,140,184,0,0,140,184,0,0,140,184,0,0,140,184,0,0,140,184,0,0,142,184,0,0,142,184,0,0,142,184,0,0,142,184,0,0,144,184,0,0,150,184,0,0,154,184,0,0,156,184,0,0,170,184,0,0,170,184,0,0,170,184,0,0,174,184,0,0,176,184,0,0,180,184,0,0,180,184,0,0,180,184,0,0,180,184,0,0,182,184,0,0,182,184,0,0,182,184,0,0,182,184,0,0,182,184,0,0,182,184,0,0,182,184,0,0,188,184,0,0,196,184,0,0,196,184,0,0,196,184,0,0,196,184,0,0,198,184,0,0,200,184,0,0,200,184,0,0,200,184,0,0,200,184,0,0,200,184,0,0,200,184,0,0,202,184,0,0,204,184,0,0,204,184,0,0,208,184,0,0,208,184,0,0,212,184,0,0,220,184,0,0,222,184,0,0,222,184,0,0,222,184,0,0,224,184,0,0,226,184,0,0,228,184,0,0,228,184,0,0,230,184,0,0,230,184,0,0,234,184,0,0,236,184,0,0,242,184,0,0,244,184,0,0,250,184,0,0,254,184,0,0,2,185,0,0,6,185,0,0,6,185,0,0,6,185,0,0,6,185,0,0,10,185,0,0,16,185,0,0,16,185,0,0,16,185,0,0,16,185,0,0,16,185,0,0,22,185,0,0,26,185,0,0,26,185,0,0,28,185,0,0,38,185,0,0,38,185,0,0,40,185,0,0,50,185,0,0,50,185,0,0,50,185,0,0,50,185,0,0,52,185,0,0,52,185,0,0,52,185,0,0,54,185,0,0,58,185,0,0,64,185,0,0,66,185,0,0,72,185,0,0,78,185,0,0,78,185,0,0,80,185,0,0,80,185,0,0,86,185,0,0,92,185,0,0,98,185,0,0,98,185,0,0,100,185,0,0,100,185,0,0,106,185,0,0,110,185,0,0,112,185,0,0,114,185,0,0,114,185,0,0,114,185,0,0,116,185,0,0,126,185,0,0,126,185,0,0,126,185,0,0,128,185,0,0,128,185,0,0,132,185,0,0,132,185,0,0,132,185,0,0,134,185,0,0,134,185,0,0,136,185,0,0,138,185,0,0,140,185,0,0,142,185,0,0,142,185,0,0,144,185,0,0,144,185,0,0,158,185,0,0,158,185,0,0,158,185,0,0,158,185,0,0,158,185,0,0,162,185,0,0,162,185,0,0,164,185,0,0,164,185,0,0,166,185,0,0,174,185,0,0,174,185,0,0,178,185,0,0,188,185,0,0,188,185,0,0,188,185,0,0,188,185,0,0,188,185,0,0,190,185,0,0,190,185,0,0,196,185,0,0,198,185,0,0,198,185,0,0,204,185,0,0,204,185,0,0,208,185,0,0,208,185,0,0,212,185,0,0,216,185,0,0,216,185,0,0,216,185,0,0,216,185,0,0,216,185,0,0,216,185,0,0,216,185,0,0,218,185,0,0,220,185,0,0,222,185,0,0,228,185,0,0,228,185,0,0,228,185,0,0,228,185,0,0,228,185,0,0,228,185,0,0,228,185,0,0,232,185,0,0,234,185,0,0,234,185,0,0,238,185,0,0,238,185,0,0,238,185,0,0,240,185,0,0,240,185,0,0,240,185,0,0,246,185,0,0,246,185,0,0,248,185,0,0,250,185,0,0,250,185,0,0,252,185,0,0,254,185,0,0,254,185,0,0,0,186,0,0,4,186,0,0,8,186,0,0,8,186,0,0,8,186,0,0,16,186,0,0,20,186,0,0,20,186,0,0,24,186,0,0,24,186,0,0,24,186,0,0,24,186,0,0,24,186,0,0,32,186,0,0,32,186,0,0,40,186,0,0,40,186,0,0,52,186,0,0,52,186,0,0,52,186,0,0,52,186,0,0,52,186,0,0,54,186,0,0,56,186,0,0,56,186,0,0,56,186,0,0,56,186,0,0,58,186,0,0,60,186,0,0,60,186,0,0,60,186,0,0,60,186,0,0,62,186,0,0,62,186,0,0,70,186,0,0,70,186,0,0,72,186,0,0,72,186,0,0,72,186,0,0,76,186,0,0,82,186,0,0,84,186,0,0,88,186,0,0,92,186,0,0,94,186,0,0,94,186,0,0,94,186,0,0,94,186,0,0,94,186,0,0,94,186,0,0,94,186,0,0,96,186,0,0,96,186,0,0,98,186,0,0,100,186,0,0,100,186,0,0,104,186,0,0,104,186,0,0,104,186,0,0,106,186,0,0,110,186,0,0,112,186,0,0,118,186,0,0,122,186,0,0,124,186,0,0,124,186,0,0,124,186,0,0,128,186,0,0,132,186,0,0,132,186,0,0,134,186,0,0,134,186,0,0,138,186,0,0,144,186,0,0,144,186,0,0,144,186,0,0,150,186,0,0,154,186,0,0,154,186,0,0,156,186,0,0,160,186,0,0,162,186,0,0,166,186,0,0,166,186,0,0,170,186,0,0,170,186,0,0,170,186,0,0,170,186,0,0,172,186,0,0,172,186,0,0,172,186,0,0,176,186,0,0,178,186,0,0,182,186,0,0,186,186,0,0,186,186,0,0,186,186,0,0,188,186,0,0,192,186,0,0,192,186,0,0,192,186,0,0,192,186,0,0,194,186,0,0,196,186,0,0,196,186,0,0,196,186,0,0,202,186,0,0,204,186,0,0,206,186,0,0,210,186,0,0,212,186,0,0,212,186,0,0,214,186,0,0,218,186,0,0,218,186,0,0,218,186,0,0,218,186,0,0,218,186,0,0,220,186,0,0,220,186,0,0,220,186,0,0,226,186,0,0,232,186,0,0,234,186,0,0,240,186,0,0,242,186,0,0,246,186,0,0,250,186,0,0,254,186,0,0,254,186,0,0,254,186,0,0,254,186,0,0,0,187,0,0,0,187,0,0,6,187,0,0,10,187,0,0,14,187,0,0,20,187,0,0,20,187,0,0,20,187,0,0,24,187,0,0,28,187,0,0,30,187,0,0,30,187,0,0,30,187,0,0,30,187,0,0,32,187,0,0,32,187,0,0,34,187,0,0,34,187,0,0,36,187,0,0,36,187,0,0,36,187,0,0,38,187,0,0,42,187,0,0,42,187,0,0,42,187,0,0,42,187,0,0,42,187,0,0,42,187,0,0,42,187,0,0,48,187,0,0,48,187,0,0,50,187,0,0,60,187,0,0,62,187,0,0,74,187,0,0,74,187,0,0,76,187,0,0,76,187,0,0,78,187,0,0,78,187,0,0,82,187,0,0,82,187,0,0,82,187,0,0,84,187,0,0,84,187,0,0,84,187,0,0,84,187,0,0,84,187,0,0,84,187,0,0,84,187,0,0,88,187,0,0,88,187,0,0,88,187,0,0,96,187,0,0,96,187,0,0,98,187,0,0,98,187,0,0,98,187,0,0,100,187,0,0,104,187,0,0,106,187,0,0,110,187,0,0,110,187,0,0,112,187,0,0,112,187,0,0,112,187,0,0,116,187,0,0,118,187,0,0,118,187,0,0,124,187,0,0,126,187,0,0,126,187,0,0,126,187,0,0,126,187,0,0,126,187,0,0,132,187,0,0,132,187,0,0,132,187,0,0,136,187,0,0,138,187,0,0,138,187,0,0,138,187,0,0,140,187,0,0,146,187,0,0,146,187,0,0,146,187,0,0,146,187,0,0,146,187,0,0,146,187,0,0,148,187,0,0,148,187,0,0,150,187,0,0,162,187,0,0,162,187,0,0,170,187,0,0,170,187,0,0,170,187,0,0,174,187,0,0,174,187,0,0,182,187,0,0,194,187,0,0,196,187,0,0,198,187,0,0,198,187,0,0,198,187,0,0,204,187,0,0,204,187,0,0,204,187,0,0,204,187,0,0,204,187,0,0,208,187,0,0,208,187,0,0,208,187,0,0,208,187,0,0,208,187,0,0,210,187,0,0,222,187,0,0,226,187,0,0,226,187,0,0,226,187,0,0,226,187,0,0,226,187,0,0,226,187,0,0,228,187,0,0,232,187,0,0,232,187,0,0,236,187,0,0,244,187,0,0,246,187,0,0,246,187,0,0,4,188,0,0,4,188,0,0,6,188,0,0,8,188,0,0,8,188,0,0,10,188,0,0,10,188,0,0,30,188,0,0,32,188,0,0,34,188,0,0,36,188,0,0,38,188,0,0,40,188,0,0,42,188,0,0,42,188,0,0,52,188,0,0,52,188,0,0,52,188,0,0,52,188,0,0,54,188,0,0,56,188,0,0,58,188,0,0,58,188,0,0,58,188,0,0,58,188,0,0,58,188,0,0,58,188,0,0,58,188,0,0,58,188,0,0,64,188,0,0,68,188,0,0,70,188,0,0,70,188,0,0,70,188,0,0,70,188,0,0,70,188,0,0,70,188,0,0,76,188,0,0,78,188,0,0,84,188,0,0,84,188,0,0,84,188,0,0,84,188,0,0,86,188,0,0,90,188,0,0,90,188,0,0,94,188,0,0,96,188,0,0,96,188,0,0,100,188,0,0,102,188,0,0,108,188,0,0,110,188,0,0,110,188,0,0,110,188,0,0,110,188,0,0,112,188,0,0,112,188,0,0,112,188,0,0,112,188,0,0,118,188,0,0,122,188,0,0,122,188,0,0,122,188,0,0,124,188,0,0,134,188,0,0,134,188,0,0,142,188,0,0,144,188,0,0,154,188,0,0,156,188,0,0,158,188,0,0,164,188,0,0,164,188,0,0,164,188,0,0,166,188,0,0,166,188,0,0,166,188,0,0,170,188,0,0,176,188,0,0,176,188,0,0,176,188,0,0,180,188,0,0,180,188,0,0,182,188,0,0,184,188,0,0,188,188,0,0,192,188,0,0,192,188,0,0,194,188,0,0,202,188,0,0,208,188,0,0,210,188,0,0,214,188,0,0,214,188,0,0,214,188,0,0,218,188,0,0,220,188,0,0,222,188,0,0,224,188,0,0,228,188,0,0,228,188,0,0,230,188,0,0,232,188,0,0,232,188,0,0,232,188,0,0,236,188,0,0,236,188,0,0,236,188,0,0,238,188,0,0,240,188,0,0,240,188,0,0,242,188,0,0,244,188,0,0,244,188,0,0,244,188,0,0,244,188,0,0,246,188,0,0,250,188,0,0,254,188,0,0,254,188,0,0,0,189,0,0,2,189,0,0,10,189,0,0,10,189,0,0,10,189,0,0,10,189,0,0,10,189,0,0,12,189,0,0,16,189,0,0,16,189,0,0,16,189,0,0,16,189,0,0,16,189,0,0,22,189,0,0,26,189,0,0,32,189,0,0,32,189,0,0,46,189,0,0,46,189,0,0,46,189,0,0,48,189,0,0,48,189,0,0,48,189,0,0,50,189,0,0,58,189,0,0,58,189,0,0,58,189,0,0,60,189,0,0,62,189,0,0,68,189,0,0,68,189,0,0,68,189,0,0,68,189,0,0,70,189,0,0,72,189,0,0,72,189,0,0,78,189,0,0,78,189,0,0,78,189,0,0,82,189,0,0,88,189,0,0,90,189,0,0,90,189,0,0,90,189,0,0,90,189,0,0,90,189,0,0,92,189,0,0,94,189,0,0,96,189,0,0,96,189,0,0,96,189,0,0,96,189,0,0,102,189,0,0,106,189,0,0,108,189,0,0,112,189,0,0,112,189,0,0,116,189,0,0,116,189,0,0,116,189,0,0,116,189,0,0,116,189,0,0,120,189,0,0,122,189,0,0,122,189,0,0,122,189,0,0,122,189,0,0,122,189,0,0,122,189,0,0,122,189,0,0,122,189,0,0,122,189,0,0,128,189,0,0,140,189,0,0,142,189,0,0,146,189,0,0,152,189,0,0,158,189,0,0,160,189,0,0,162,189,0,0,168,189,0,0,168,189,0,0,172,189,0,0,172,189,0,0,174,189,0,0,176,189,0,0,178,189,0,0,178,189,0,0,180,189,0,0,184,189,0,0,190,189,0,0,194,189,0,0,196,189,0,0,196,189,0,0,196,189,0,0,198,189,0,0,198,189,0,0,198,189,0,0,198,189,0,0,204,189,0,0,206,189,0,0,210,189,0,0,216,189,0,0,216,189,0,0,216,189,0,0,224,189,0,0,232,189,0,0,232,189,0,0,232,189,0,0,238,189,0,0,242,189,0,0,244,189,0,0,244,189,0,0,246,189,0,0,246,189,0,0,246,189,0,0,246,189,0,0,248,189,0,0,250,189,0,0,250,189,0,0,250,189,0,0,250,189,0,0,2,190,0,0,4,190,0,0,4,190,0,0,6,190,0,0,6,190,0,0,6,190,0,0,12,190,0,0,16,190,0,0,16,190,0,0,16,190,0,0,22,190,0,0,22,190,0,0,24,190,0,0,28,190,0,0,30,190,0,0,36,190,0,0,36,190,0,0,38,190,0,0,44,190,0,0,44,190,0,0,44,190,0,0,44,190,0,0,44,190,0,0,48,190,0,0,50,190,0,0,50,190,0,0,56,190,0,0,56,190,0,0,60,190,0,0,60,190,0,0,66,190,0,0,68,190,0,0,68,190,0,0,68,190,0,0,68,190,0,0,68,190,0,0,68,190,0,0,68,190,0,0,72,190,0,0,72,190,0,0,74,190,0,0,74,190,0,0,74,190,0,0,74,190,0,0,74,190,0,0,74,190,0,0,76,190,0,0,80,190,0,0,82,190,0,0,84,190,0,0,86,190,0,0,86,190,0,0,90,190,0,0,90,190,0,0,90,190,0,0,90,190,0,0,90,190,0,0,94,190,0,0,94,190,0,0,94,190,0,0,94,190,0,0,98,190,0,0,98,190,0,0,98,190,0,0,98,190,0,0,98,190,0,0,98,190,0,0,106,190,0,0,108,190,0,0,114,190,0,0,118,190,0,0,118,190,0,0,118,190,0,0,122,190,0,0,126,190,0,0,128,190,0,0,134,190,0,0,144,190,0,0,150,190,0,0,150,190,0,0,150,190,0,0,152,190,0,0,152,190,0,0,152,190,0,0,152,190,0,0,162,190,0,0,166,190,0,0,170,190,0,0,170,190,0,0,170,190,0,0,182,190,0,0,184,190,0,0,184,190,0,0,184,190,0,0,186,190,0,0,186,190,0,0,186,190,0,0,192,190,0,0,196,190,0,0,196,190,0,0,200,190,0,0,202,190,0,0,204,190,0,0,210,190,0,0,210,190,0,0,210,190,0,0,214,190,0,0,214,190,0,0,224,190,0,0,224,190,0,0,224,190,0,0,224,190,0,0,226,190,0,0,230,190,0,0,230,190,0,0,234,190,0,0,234,190,0,0,234,190,0,0,234,190,0,0,234,190,0,0,236,190,0,0,236,190,0,0,236,190,0,0,238,190,0,0,242,190,0,0,242,190,0,0,248,190,0,0,250,190,0,0,250,190,0,0,252,190,0,0,252,190,0,0,254,190,0,0,254,190,0,0,254,190,0,0,4,191,0,0,4,191,0,0,4,191,0,0,10,191,0,0,12,191,0,0,12,191,0,0,14,191,0,0,14,191,0,0,20,191,0,0,24,191,0,0,26,191,0,0,26,191,0,0,26,191,0,0,26,191,0,0,26,191,0,0,32,191,0,0,34,191,0,0,42,191,0,0,42,191,0,0,44,191,0,0,44,191,0,0,44,191,0,0,48,191,0,0,48,191,0,0,50,191,0,0,52,191,0,0,52,191,0,0,62,191,0,0,62,191,0,0,62,191,0,0,64,191,0,0,66,191,0,0,66,191,0,0,66,191,0,0,66,191,0,0,66,191,0,0,68,191,0,0,70,191,0,0,70,191,0,0,70,191,0,0,70,191,0,0,70,191,0,0,70,191,0,0,70,191,0,0,76,191,0,0,78,191,0,0,84,191,0,0,88,191,0,0,90,191,0,0,92,191,0,0,96,191,0,0,98,191,0,0,98,191,0,0,98,191,0,0,98,191,0,0,98,191,0,0,98,191,0,0,102,191,0,0,102,191,0,0,106,191,0,0,106,191,0,0,106,191,0,0,108,191,0,0,114,191,0,0,116,191,0,0,120,191,0,0,120,191,0,0,122,191,0,0,126,191,0,0,126,191,0,0,126,191,0,0,126,191,0,0,128,191,0,0,130,191,0,0,134,191,0,0,138,191,0,0,144,191,0,0,146,191,0,0,146,191,0,0,148,191,0,0,150,191,0,0,150,191,0,0,152,191,0,0,154,191,0,0,154,191,0,0,156,191,0,0,156,191,0,0,156,191,0,0,160,191,0,0,160,191,0,0,164,191,0,0,166,191,0,0,166,191,0,0,166,191,0,0,168,191,0,0,168,191,0,0,180,191,0,0,180,191,0,0,180,191,0,0,184,191,0,0,190,191,0,0,190,191,0,0,194,191,0,0,194,191,0,0,196,191,0,0,196,191,0,0,196,191,0,0,196,191,0,0,200,191,0,0,202,191,0,0,202,191,0,0,206,191,0,0,208,191,0,0,208,191,0,0,208,191,0,0,214,191,0,0,214,191,0,0,216,191,0,0,218,191,0,0,220,191,0,0,222,191,0,0,222,191,0,0,222,191,0,0,236,191,0,0,240,191,0,0,240,191,0,0,242,191,0,0,246,191,0,0,250,191,0,0,0,192,0,0,4,192,0,0,6,192,0,0,10,192,0,0,10,192,0,0,10,192,0,0,12,192,0,0,16,192,0,0,18,192,0,0,18,192,0,0,18,192,0,0,18,192,0,0,20,192,0,0,20,192,0,0,20,192,0,0,22,192,0,0,28,192,0,0,30,192,0,0,32,192,0,0,32,192,0,0,32,192,0,0,34,192,0,0,36,192,0,0,42,192,0,0,46,192,0,0,46,192,0,0,54,192,0,0,54,192,0,0,56,192,0,0,60,192,0,0,62,192,0,0,70,192,0,0,70,192,0,0,70,192,0,0,74,192,0,0,74,192,0,0,80,192,0,0,80,192,0,0,84,192,0,0,86,192,0,0,92,192,0,0,92,192,0,0,92,192,0,0,96,192,0,0,96,192,0,0,108,192,0,0,110,192,0,0,110,192,0,0,110,192,0,0,114,192,0,0,114,192,0,0,118,192,0,0,118,192,0,0,118,192,0,0,118,192,0,0,124,192,0,0,124,192,0,0,124,192,0,0,126,192,0,0,126,192,0,0,132,192,0,0,132,192,0,0,132,192,0,0,132,192,0,0,132,192,0,0,132,192,0,0,134,192,0,0,140,192,0,0,146,192,0,0,150,192,0,0,152,192,0,0,154,192,0,0,156,192,0,0,156,192,0,0,164,192,0,0,166,192,0,0,168,192,0,0,172,192,0,0,172,192,0,0,172,192,0,0,172,192,0,0,174,192,0,0,180,192,0,0,180,192,0,0,182,192,0,0,190,192,0,0,200,192,0,0,200,192,0,0,206,192,0,0,210,192,0,0,214,192,0,0,214,192,0,0,214,192,0,0,214,192,0,0,214,192,0,0,216,192,0,0,218,192,0,0,218,192,0,0,232,192,0,0,236,192,0,0,236,192,0,0,236,192,0,0,236,192,0,0,236,192,0,0,236,192,0,0,236,192,0,0,236,192,0,0,242,192,0,0,242,192,0,0,244,192,0,0,244,192,0,0,244,192,0,0,252,192,0,0,254,192,0,0,0,193,0,0,0,193,0,0,2,193,0,0,2,193,0,0,2,193,0,0,12,193,0,0,14,193,0,0,14,193,0,0,16,193,0,0,16,193,0,0,18,193,0,0,22,193,0,0,22,193,0,0,22,193,0,0,22,193,0,0,24,193,0,0,26,193,0,0,26,193,0,0,28,193,0,0,32,193,0,0,38,193,0,0,42,193,0,0,42,193,0,0,44,193,0,0,44,193,0,0,46,193,0,0,46,193,0,0,46,193,0,0,50,193,0,0,50,193,0,0,50,193,0,0,52,193,0,0,52,193,0,0,54,193,0,0,54,193,0,0,64,193,0,0,74,193,0,0,74,193,0,0,74,193,0,0,74,193,0,0,82,193,0,0,82,193,0,0,86,193,0,0,86,193,0,0,94,193,0,0,94,193,0,0,94,193,0,0,96,193,0,0,106,193,0,0,106,193,0,0,120,193,0,0,122,193,0,0,122,193,0,0,122,193,0,0,122,193,0,0,122,193,0,0,122,193,0,0,128,193,0,0,128,193,0,0,130,193,0,0,130,193,0,0,130,193,0,0,130,193,0,0,130,193,0,0,130,193,0,0,134,193,0,0,134,193,0,0,134,193,0,0,134,193,0,0,134,193,0,0,134,193,0,0,140,193,0,0,140,193,0,0,140,193,0,0,142,193,0,0,150,193,0,0,150,193,0,0,150,193,0,0,154,193,0,0,154,193,0,0,156,193,0,0,156,193,0,0,156,193,0,0,156,193,0,0,162,193,0,0,166,193,0,0,168,193,0,0,168,193,0,0,170,193,0,0,172,193,0,0,180,193,0,0,182,193,0,0,182,193,0,0,182,193,0,0,182,193,0,0,184,193,0,0,186,193,0,0,188,193,0,0,192,193,0,0,194,193,0,0,200,193,0,0,202,193,0,0,202,193,0,0,202,193,0,0,202,193,0,0,202,193,0,0,206,193,0,0,206,193,0,0,212,193,0,0,214,193,0,0,222,193,0,0,222,193,0,0,222,193,0,0,226,193,0,0,238,193,0,0,242,193,0,0,244,193,0,0,246,193,0,0,252,193,0,0,254,193,0,0,254,193,0,0,6,194,0,0,6,194,0,0,6,194,0,0,6,194,0,0,6,194,0,0,10,194,0,0,10,194,0,0,16,194,0,0,16,194,0,0,18,194,0,0,20,194,0,0,20,194,0,0,20,194,0,0,22,194,0,0,26,194,0,0,28,194,0,0,30,194,0,0,30,194,0,0,30,194,0,0,30,194,0,0,32,194,0,0,32,194,0,0,36,194,0,0,42,194,0,0,42,194,0,0,42,194,0,0,42,194,0,0,44,194,0,0,44,194,0,0,44,194,0,0,48,194,0,0,48,194,0,0,50,194,0,0,50,194,0,0,52,194,0,0,52,194,0,0,54,194,0,0,54,194,0,0,64,194,0,0,64,194,0,0,64,194,0,0,64,194,0,0,66,194,0,0,66,194,0,0,66,194,0,0,68,194,0,0,68,194,0,0,68,194,0,0,72,194,0,0,72,194,0,0,74,194,0,0,74,194,0,0,74,194,0,0,74,194,0,0,78,194,0,0,82,194,0,0,84,194,0,0,84,194,0,0,88,194,0,0,88,194,0,0,88,194,0,0,88,194,0,0,88,194,0,0,92,194,0,0,98,194,0,0,104,194,0,0,106,194,0,0,106,194,0,0,106,194,0,0,108,194,0,0,108,194,0,0,110,194,0,0,110,194,0,0,122,194,0,0,126,194,0,0,128,194,0,0,128,194,0,0,134,194,0,0,134,194,0,0,134,194,0,0,138,194,0,0,138,194,0,0,138,194,0,0,142,194,0,0,142,194,0,0,142,194,0,0,148,194,0,0,150,194,0,0,154,194,0,0,154,194,0,0,154,194,0,0,158,194,0,0,158,194,0,0,160,194,0,0,160,194,0,0,160,194,0,0,162,194,0,0,168,194,0,0,168,194,0,0,168,194,0,0,170,194,0,0,170,194,0,0,170,194,0,0,172,194,0,0,178,194,0,0,180,194,0,0,180,194,0,0,182,194,0,0,184,194,0,0,184,194,0,0,190,194,0,0,192,194,0,0,192,194,0,0,194,194,0,0,194,194,0,0,196,194,0,0,196,194,0,0,204,194,0,0,210,194,0,0,212,194,0,0,214,194,0,0,214,194,0,0,220,194,0,0,220,194,0,0,220,194,0,0,222,194,0,0,224,194,0,0,232,194,0,0,234,194,0,0,234,194,0,0,234,194,0,0,236,194,0,0,236,194,0,0,240,194,0,0,242,194,0,0,242,194,0,0,244,194,0,0,244,194,0,0,244,194,0,0,244,194,0,0,246,194,0,0,246,194,0,0,248,194,0,0,250,194,0,0,250,194,0,0,250,194,0,0,250,194,0,0,254,194,0,0,254,194,0,0,4,195,0,0,4,195,0,0,4,195,0,0,14,195,0,0,18,195,0,0,18,195,0,0,18,195,0,0,18,195,0,0,18,195,0,0,18,195,0,0,22,195,0,0,26,195,0,0,26,195,0,0,26,195,0,0,26,195,0,0,32,195,0,0,34,195,0,0,34,195,0,0,36,195,0,0,38,195,0,0,44,195,0,0,44,195,0,0,44,195,0,0,44,195,0,0,44,195,0,0,48,195,0,0,48,195,0,0,50,195,0,0,50,195,0,0,50,195,0,0,50,195,0,0,54,195,0,0,54,195,0,0,56,195,0,0,60,195,0,0,64,195,0,0,68,195,0,0,68,195,0,0,70,195,0,0,74,195,0,0,76,195,0,0,82,195,0,0,84,195,0,0,84,195,0,0,92,195,0,0,92,195,0,0,94,195,0,0,96,195,0,0,100,195,0,0,104,195,0,0,106,195,0,0,106,195,0,0,108,195,0,0,108,195,0,0,108,195,0,0,108,195,0,0,116,195,0,0,124,195,0,0,128,195,0,0,128,195,0,0,128,195,0,0,132,195,0,0,132,195,0,0,132,195,0,0,132,195,0,0,132,195,0,0,132,195,0,0,132,195,0,0,134,195,0,0,140,195,0,0,140,195,0,0,142,195,0,0,146,195,0,0,146,195,0,0,146,195,0,0,146,195,0,0,146,195,0,0,150,195,0,0,150,195,0,0,152,195,0,0,152,195,0,0,160,195,0,0,164,195,0,0,164,195,0,0,170,195,0,0,174,195,0,0,174,195,0,0,178,195,0,0,182,195,0,0,182,195,0,0,190,195,0,0,190,195,0,0,190,195,0,0,190,195,0,0,190,195,0,0,190,195,0,0,192,195,0,0,192,195,0,0,192,195,0,0,196,195,0,0,196,195,0,0,198,195,0,0,200,195,0,0,200,195,0,0,200,195,0,0,200,195,0,0,202,195,0,0,204,195,0,0,206,195,0,0,206,195,0,0,206,195,0,0,208,195,0,0,208,195,0,0,208,195,0,0,208,195,0,0,208,195,0,0,208,195,0,0,208,195,0,0,208,195,0,0,208,195,0,0,208,195,0,0,210,195,0,0,210,195,0,0,212,195,0,0,222,195,0,0,222,195,0,0,222,195,0,0,228,195,0,0,230,195,0,0,234,195,0,0,236,195,0,0,236,195,0,0,236,195,0,0,238,195,0,0,238,195,0,0,238,195,0,0,238,195,0,0,240,195,0,0,240,195,0,0,244,195,0,0,246,195,0,0,246,195,0,0,248,195,0,0,252,195,0,0,4,196,0,0,6,196,0,0,8,196,0,0,8,196,0,0,8,196,0,0,8,196,0,0,8,196,0,0,10,196,0,0,10,196,0,0,14,196,0,0,14,196,0,0,14,196,0,0,14,196,0,0,16,196,0,0,16,196,0,0,16,196,0,0,16,196,0,0,20,196,0,0,20,196,0,0,24,196,0,0,24,196,0,0,24,196,0,0,26,196,0,0,26,196,0,0,30,196,0,0,38,196,0,0,46,196,0,0,46,196,0,0,46,196,0,0,50,196,0,0,52,196,0,0,54,196,0,0,56,196,0,0,56,196,0,0,58,196,0,0,62,196,0,0,62,196,0,0,62,196,0,0,62,196,0,0,64,196,0,0,66,196,0,0,68,196,0,0,70,196,0,0,70,196,0,0,78,196,0,0,78,196,0,0,78,196,0,0,82,196,0,0,82,196,0,0,82,196,0,0,82,196,0,0,82,196,0,0,84,196,0,0,86,196,0,0,86,196,0,0,86,196,0,0,86,196,0,0,86,196,0,0,86,196,0,0,86,196,0,0,86,196,0,0,88,196,0,0,88,196,0,0,88,196,0,0,88,196,0,0,92,196,0,0,94,196,0,0,94,196,0,0,104,196,0,0,104,196,0,0,106,196,0,0,108,196,0,0,110,196,0,0,112,196,0,0,112,196,0,0,112,196,0,0,118,196,0,0,118,196,0,0,118,196,0,0,118,196,0,0,118,196,0,0,118,196,0,0,118,196,0,0,118,196,0,0,128,196,0,0,128,196,0,0,136,196,0,0,136,196,0,0,136,196,0,0,138,196,0,0,138,196,0,0,140,196,0,0,142,196,0,0,142,196,0,0,142,196,0,0,142,196,0,0,142,196,0,0,142,196,0,0,142,196,0,0,146,196,0,0,150,196,0,0,150,196,0,0,150,196,0,0,150,196,0,0,150,196,0,0,152,196,0,0,152,196,0,0,158,196,0,0,168,196,0,0,168,196,0,0,170,196,0,0,178,196,0,0,178,196,0,0,178,196,0,0,178,196,0,0,182,196,0,0,182,196,0,0,182,196,0,0,196,196,0,0,198,196,0,0,198,196,0,0,198,196,0,0,198,196,0,0,200,196,0,0,200,196,0,0,202,196,0,0,204,196,0,0,204,196,0,0,204,196,0,0,204,196,0,0,204,196,0,0,204,196,0,0,206,196,0,0,210,196,0,0,214,196,0,0,214,196,0,0,216,196,0,0,216,196,0,0,220,196,0,0,222,196,0,0,224,196,0,0,228,196,0,0,236,196,0,0,244,196,0,0,0,197,0,0,2,197,0,0,4,197,0,0,8,197,0,0,8,197,0,0,8,197,0,0,10,197,0,0,20,197,0,0,20,197,0,0,26,197,0,0,30,197,0,0,30,197,0,0,34,197,0,0,38,197,0,0,42,197,0,0,46,197,0,0,48,197,0,0,50,197,0,0,50,197,0,0,50,197,0,0,50,197,0,0,52,197,0,0,54,197,0,0,54,197,0,0,56,197,0,0,56,197,0,0,56,197,0,0,58,197,0,0,58,197,0,0,68,197,0,0,68,197,0,0,72,197,0,0,78,197,0,0,80,197,0,0,84,197,0,0,84,197,0,0,86,197,0,0,86,197,0,0,88,197,0,0,88,197,0,0,88,197,0,0,88,197,0,0,88,197,0,0,90,197,0,0,90,197,0,0,90,197,0,0,90,197,0,0,92,197,0,0,94,197,0,0,96,197,0,0,98,197,0,0,102,197,0,0,106,197,0,0,108,197,0,0,108,197,0,0,118,197,0,0,124,197,0,0,128,197,0,0,134,197,0,0,134,197,0,0,134,197,0,0,134,197,0,0,140,197,0,0,140,197,0,0,152,197,0,0,158,197,0,0,158,197,0,0,158,197,0,0,166,197,0,0,166,197,0,0,166,197,0,0,168,197,0,0,172,197,0,0,178,197,0,0,186,197,0,0,186,197,0,0,188,197,0,0,188,197,0,0,188,197,0,0,192,197,0,0,192,197,0,0,192,197,0,0,192,197,0,0,194,197,0,0,194,197,0,0,194,197,0,0,196,197,0,0,198,197,0,0,200,197,0,0,200,197,0,0,204,197,0,0,204,197,0,0,206,197,0,0,206,197,0,0,208,197,0,0,212,197,0,0,212,197,0,0,212,197,0,0,218,197,0,0,220,197,0,0,220,197,0,0,224,197,0,0,224,197,0,0,224,197,0,0,224,197,0,0,224,197,0,0,226,197,0,0,228,197,0,0,228,197,0,0,228,197,0,0,228,197,0,0,228,197,0,0,234,197,0,0,234,197,0,0,234,197,0,0,238,197,0,0,242,197,0,0,242,197,0,0,244,197,0,0,246,197,0,0,250,197,0,0,250,197,0,0,252,197,0,0,254,197,0,0,254,197,0,0,4,198,0,0,4,198,0,0,12,198,0,0,12,198,0,0,12,198,0,0,12,198,0,0,12,198,0,0,14,198,0,0,22,198,0,0,22,198,0,0,44,198,0,0,46,198,0,0,50,198,0,0,50,198,0,0,50,198,0,0,50,198,0,0,50,198,0,0,50,198,0,0,50,198,0,0,50,198,0,0,52,198,0,0,56,198,0,0,56,198,0,0,56,198,0,0,56,198,0,0,56,198,0,0,62,198,0,0,62,198,0,0,62,198,0,0,62,198,0,0,66,198,0,0,68,198,0,0,70,198,0,0,72,198,0,0,72,198,0,0,76,198,0,0,76,198,0,0,78,198,0,0,78,198,0,0,78,198,0,0,78,198,0,0,78,198,0,0,80,198,0,0,80,198,0,0,82,198,0,0,92,198,0,0,104,198,0,0,108,198,0,0,108,198,0,0,114,198,0,0,114,198,0,0,116,198,0,0,122,198,0,0,122,198,0,0,124,198,0,0,124,198,0,0,124,198,0,0,134,198,0,0,134,198,0,0,134,198,0,0,142,198,0,0,142,198,0,0,142,198,0,0,142,198,0,0,142,198,0,0,144,198,0,0,146,198,0,0,146,198,0,0,154,198,0,0,154,198,0,0,154,198,0,0,154,198,0,0,154,198,0,0,154,198,0,0,162,198,0,0,166,198,0,0,166,198,0,0,172,198,0,0,174,198,0,0,182,198,0,0,186,198,0,0,188,198,0,0,190,198,0,0,190,198,0,0,196,198,0,0,196,198,0,0,196,198,0,0,196,198,0,0,198,198,0,0,198,198,0,0,198,198,0,0,198,198,0,0,212,198,0,0,212,198,0,0,214,198,0,0,218,198,0,0,218,198,0,0,218,198,0,0,218,198,0,0,222,198,0,0,222,198,0,0,228,198,0,0,230,198,0,0,230,198,0,0,230,198,0,0,230,198,0,0,234,198,0,0,238,198,0,0,242,198,0,0,242,198,0,0,242,198,0,0,242,198,0,0,242,198,0,0,244,198,0,0,246,198,0,0,248,198,0,0,250,198,0,0,250,198,0,0,250,198,0,0,2,199,0,0,6,199,0,0,8,199,0,0,8,199,0,0,8,199,0,0,8,199,0,0,8,199,0,0,8,199,0,0,8,199,0,0,8,199,0,0,8,199,0,0,8,199,0,0,8,199,0,0,8,199,0,0,10,199,0,0,12,199,0,0,12,199,0,0,16,199,0,0,18,199,0,0,18,199,0,0,18,199,0,0,18,199,0,0,20,199,0,0,20,199,0,0,20,199,0,0,20,199,0,0,20,199,0,0,22,199,0,0,22,199,0,0,22,199,0,0,24,199,0,0,26,199,0,0,26,199,0,0,28,199,0,0,30,199,0,0,30,199,0,0,30,199,0,0,36,199,0,0,38,199,0,0,40,199,0,0,48,199,0,0,48,199,0,0,50,199,0,0,50,199,0,0,50,199,0,0,50,199,0,0,50,199,0,0,52,199,0,0,56,199,0,0,62,199,0,0,64,199,0,0,64,199,0,0,64,199,0,0,68,199,0,0,68,199,0,0,72,199,0,0,76,199,0,0,82,199,0,0,82,199,0,0,82,199,0,0,82,199,0,0,82,199,0,0,88,199,0,0,88,199,0,0,88,199,0,0,92,199,0,0,94,199,0,0,96,199,0,0,102,199,0,0,102,199,0,0,104,199,0,0,106,199,0,0,108,199,0,0,112,199,0,0,112,199,0,0,112,199,0,0,112,199,0,0,114,199,0,0,118,199,0,0,118,199,0,0,120,199,0,0,122,199,0,0,124,199,0,0,124,199,0,0,124,199,0,0,124,199,0,0,124,199,0,0,128,199,0,0,130,199,0,0,140,199,0,0,140,199,0,0,140,199,0,0,142,199,0,0,150,199,0,0,158,199,0,0,170,199,0,0,170,199,0,0,170,199,0,0,172,199,0,0,174,199,0,0,174,199,0,0,178,199,0,0,182,199,0,0,182,199,0,0,184,199,0,0,184,199,0,0,186,199,0,0,190,199,0,0,190,199,0,0,194,199,0,0,200,199,0,0,202,199,0,0,204,199,0,0,204,199,0,0,204,199,0,0,206,199,0,0,208,199,0,0,210,199,0,0,212,199,0,0,212,199,0,0,212,199,0,0,218,199,0,0,218,199,0,0,218,199,0,0,226,199,0,0,226,199,0,0,228,199,0,0,228,199,0,0,232,199,0,0,234,199,0,0,236,199,0,0,242,199,0,0,242,199,0,0,242,199,0,0,2,200,0,0,4,200,0,0,6,200,0,0,6,200,0,0,8,200,0,0,8,200,0,0,8,200,0,0,16,200,0,0,18,200,0,0,20,200,0,0,26,200,0,0,30,200,0,0,30,200,0,0,30,200,0,0,30,200,0,0,30,200,0,0,30,200,0,0,30,200,0,0,30,200,0,0,30,200,0,0,30,200,0,0,32,200,0,0,32,200,0,0,36,200,0,0,40,200,0,0,42,200,0,0,44,200,0,0,46,200,0,0,46,200,0,0,54,200,0,0,58,200,0,0,60,200,0,0,60,200,0,0,60,200,0,0,60,200,0,0,62,200,0,0,62,200,0,0,62,200,0,0,62,200,0,0,66,200,0,0,66,200,0,0,66,200,0,0,66,200,0,0,66,200,0,0,68,200,0,0,70,200,0,0,72,200,0,0,72,200,0,0,72,200,0,0,72,200,0,0,76,200,0,0,76,200,0,0,78,200,0,0,78,200,0,0,78,200,0,0,78,200,0,0,80,200,0,0,82,200,0,0,82,200,0,0,84,200,0,0,88,200,0,0,88,200,0,0,88,200,0,0,88,200,0,0,88,200,0,0,88,200,0,0,88,200,0,0,90,200,0,0,98,200,0,0,100,200,0,0,108,200,0,0,116,200,0,0,118,200,0,0,122,200,0,0,128,200,0,0,134,200,0,0,136,200,0,0,136,200,0,0,138,200,0,0,138,200,0,0,140,200,0,0,146,200,0,0,150,200,0,0,150,200,0,0,152,200,0,0,158,200,0,0,158,200,0,0,158,200,0,0,162,200,0,0,162,200,0,0,168,200,0,0,170,200,0,0,170,200,0,0,170,200,0,0,170,200,0,0,170,200,0,0,170,200,0,0,184,200,0,0,188,200,0,0,192,200,0,0,192,200,0,0,196,200,0,0,202,200,0,0,202,200,0,0,202,200,0,0,204,200,0,0,204,200,0,0,208,200,0,0,208,200,0,0,208,200,0,0,218,200,0,0,220,200,0,0,220,200,0,0,224,200,0,0,228,200,0,0,228,200,0,0,232,200,0,0,232,200,0,0,232,200,0,0,232,200,0,0,238,200,0,0,242,200,0,0,252,200,0,0,254,200,0,0,254,200,0,0,254,200,0,0,254,200,0,0,0,201,0,0,0,201,0,0,4,201,0,0,4,201,0,0,6,201,0,0,10,201,0,0,10,201,0,0,14,201,0,0,16,201,0,0,18,201,0,0,18,201,0,0,20,201,0,0,20,201,0,0,24,201,0,0,24,201,0,0,26,201,0,0,32,201,0,0,32,201,0,0,32,201,0,0,38,201,0,0,44,201,0,0,46,201,0,0,46,201,0,0,50,201,0,0,54,201,0,0,58,201,0,0,58,201,0,0,60,201,0,0,62,201,0,0,74,201,0,0,74,201,0,0,74,201,0,0,74,201,0,0,76,201,0,0,76,201,0,0,76,201,0,0,76,201,0,0,76,201,0,0,80,201,0,0,80,201,0,0,86,201,0,0,90,201,0,0,90,201,0,0,92,201,0,0,92,201,0,0,92,201,0,0,102,201,0,0,102,201,0,0,102,201,0,0,102,201,0,0,102,201,0,0,104,201,0,0,104,201,0,0,104,201,0,0,106,201,0,0,106,201,0,0,110,201,0,0,110,201,0,0,110,201,0,0,112,201,0,0,112,201,0,0,112,201,0,0,112,201,0,0,114,201,0,0,116,201,0,0,116,201,0,0,116,201,0,0,118,201,0,0,118,201,0,0,118,201,0,0,118,201,0,0,120,201,0,0,120,201,0,0,122,201,0,0,126,201,0,0,128,201,0,0,128,201,0,0,130,201,0,0,134,201,0,0,138,201,0,0,138,201,0,0,138,201,0,0,138,201,0,0,140,201,0,0,144,201,0,0,146,201,0,0,148,201,0,0,150,201,0,0,154,201,0,0,156,201,0,0,156,201,0,0,156,201,0,0,156,201,0,0,166,201,0,0,166,201,0,0,166,201,0,0,172,201,0,0,172,201,0,0,178,201,0,0,182,201,0,0,190,201,0,0,194,201,0,0,194,201,0,0,194,201,0,0,194,201,0,0,194,201,0,0,194,201,0,0,194,201,0,0,194,201,0,0,194,201,0,0,204,201,0,0,206,201,0,0,210,201,0,0,210,201,0,0,212,201,0,0,216,201,0,0,216,201,0,0,216,201,0,0,222,201,0,0,224,201,0,0,226,201,0,0,226,201,0,0,230,201,0,0,232,201,0,0,232,201,0,0,232,201,0,0,232,201,0,0,232,201,0,0,236,201,0,0,238,201,0,0,240,201,0,0,242,201,0,0,242,201,0,0,244,201,0,0,246,201,0,0,250,201,0,0,250,201,0,0,250,201,0,0,252,201,0,0,252,201,0,0,6,202,0,0,16,202,0,0,16,202,0,0,22,202,0,0,24,202,0,0,26,202,0,0,28,202,0,0,30,202,0,0,34,202,0,0,34,202,0,0,36,202,0,0,36,202,0,0,36,202,0,0,36,202,0,0,38,202,0,0,38,202,0,0,42,202,0,0,44,202,0,0,44,202,0,0,44,202,0,0,44,202,0,0,50,202,0,0,50,202,0,0,50,202,0,0,52,202,0,0,56,202,0,0,60,202,0,0,74,202,0,0,74,202,0,0,74,202,0,0,74,202,0,0,80,202,0,0,82,202,0,0,94,202,0,0,94,202,0,0,94,202,0,0,98,202,0,0,100,202,0,0,100,202,0,0,100,202,0,0,106,202,0,0,106,202,0,0,106,202,0,0,106,202,0,0,106,202,0,0,108,202,0,0,108,202,0,0,114,202,0,0,116,202,0,0,116,202,0,0,122,202,0,0,130,202,0,0,130,202,0,0,136,202,0,0,136,202,0,0,136,202,0,0,136,202,0,0,136,202,0,0,136,202,0,0,136,202,0,0,142,202,0,0,142,202,0,0,144,202,0,0,146,202,0,0,148,202,0,0,148,202,0,0,148,202,0,0,150,202,0,0,150,202,0,0,152,202,0,0,154,202,0,0,158,202,0,0,158,202,0,0,166,202,0,0,168,202,0,0,168,202,0,0,168,202,0,0,172,202,0,0,172,202,0,0,172,202,0,0,176,202,0,0,180,202,0,0,182,202,0,0,184,202,0,0,184,202,0,0,184,202,0,0,184,202,0,0,186,202,0,0,190,202,0,0,192,202,0,0,192,202,0,0,198,202,0,0,198,202,0,0,202,202,0,0,202,202,0,0,202,202,0,0,208,202,0,0,208,202,0,0,208,202,0,0,208,202,0,0,210,202,0,0,214,202,0,0,216,202,0,0,216,202,0,0,216,202,0,0,216,202,0,0,216,202,0,0,218,202,0,0,220,202,0,0,220,202,0,0,222,202,0,0,222,202,0,0,224,202,0,0,226,202,0,0,228,202,0,0,228,202,0,0,228,202,0,0,230,202,0,0,230,202,0,0,230,202,0,0,236,202,0,0,236,202,0,0,240,202,0,0,240,202,0,0,240,202,0,0,240,202,0,0,244,202,0,0,244,202,0,0,244,202,0,0,244,202,0,0,254,202,0,0,0,203,0,0,4,203,0,0,12,203,0,0,14,203,0,0,14,203,0,0,14,203,0,0,14,203,0,0,14,203,0,0,16,203,0,0,16,203,0,0,16,203,0,0,16,203,0,0,16,203,0,0,18,203,0,0,20,203,0,0,24,203,0,0,30,203,0,0,32,203,0,0,38,203,0,0,38,203,0,0,38,203,0,0,38,203,0,0,40,203,0,0,40,203,0,0,46,203,0,0,50,203,0,0,50,203,0,0,56,203,0,0,56,203,0,0,58,203,0,0,60,203,0,0,62,203,0,0,62,203,0,0,68,203,0,0,70,203,0,0,72,203,0,0,74,203,0,0,76,203,0,0,78,203,0,0,78,203,0,0,78,203,0,0,78,203,0,0,84,203,0,0,84,203,0,0,84,203,0,0,86,203,0,0,86,203,0,0,88,203,0,0,88,203,0,0,90,203,0,0,90,203,0,0,90,203,0,0,92,203,0,0,96,203,0,0,96,203,0,0,96,203,0,0,98,203,0,0,98,203,0,0,98,203,0,0,110,203,0,0,110,203,0,0,110,203,0,0,110,203,0,0,110,203,0,0,110,203,0,0,112,203,0,0,112,203,0,0,114,203,0,0,116,203,0,0,116,203,0,0,116,203,0,0,116,203,0,0,118,203,0,0,118,203,0,0,118,203,0,0,120,203,0,0,122,203,0,0,124,203,0,0,124,203,0,0,124,203,0,0,124,203,0,0,124,203,0,0,124,203,0,0,124,203,0,0,124,203,0,0,124,203,0,0,124,203,0,0,124,203,0,0,126,203,0,0,132,203,0,0,132,203,0,0,142,203,0,0,142,203,0,0,142,203,0,0,144,203,0,0,148,203,0,0,148,203,0,0,150,203,0,0,150,203,0,0,152,203,0,0,152,203,0,0,152,203,0,0,152,203,0,0,154,203,0,0,154,203,0,0,164,203,0,0,164,203,0,0,164,203,0,0,164,203,0,0,166,203,0,0,170,203,0,0,170,203,0,0,170,203,0,0,172,203,0,0,176,203,0,0,176,203,0,0,178,203,0,0,178,203,0,0,178,203,0,0,180,203,0,0,182,203,0,0,186,203,0,0,190,203,0,0,192,203,0,0,194,203,0,0,198,203,0,0,200,203,0,0,206,203,0,0,214,203,0,0,214,203,0,0,216,203,0,0,216,203,0,0,216,203,0,0,216,203,0,0,216,203,0,0,220,203,0,0,220,203,0,0,222,203,0,0,224,203,0,0,228,203,0,0,230,203,0,0,242,203,0,0,242,203,0,0,242,203,0,0,242,203,0,0,244,203,0,0,246,203,0,0,248,203,0,0,254,203,0,0,0,204,0,0,0,204,0,0,0,204,0,0,0,204,0,0,2,204,0,0,8,204,0,0,8,204,0,0,18,204,0,0,18,204,0,0,20,204,0,0,20,204,0,0,22,204,0,0,22,204,0,0,24,204,0,0,32,204,0,0,40,204,0,0,40,204,0,0,40,204,0,0,42,204,0,0,42,204,0,0,44,204,0,0,44,204,0,0,44,204,0,0,44,204,0,0,46,204,0,0,50,204,0,0,50,204,0,0,50,204,0,0,50,204,0,0,50,204,0,0,52,204,0,0,52,204,0,0,52,204,0,0,54,204,0,0,54,204,0,0,54,204,0,0,54,204,0,0,60,204,0,0,60,204,0,0,62,204,0,0,62,204,0,0,62,204,0,0,62,204,0,0,68,204,0,0,70,204,0,0,72,204,0,0,80,204,0,0,80,204,0,0,80,204,0,0,86,204,0,0,90,204,0,0,90,204,0,0,90,204,0,0,90,204,0,0,92,204,0,0,92,204,0,0,100,204,0,0,100,204,0,0,100,204,0,0,106,204,0,0,106,204,0,0,106,204,0,0,106,204,0,0,108,204,0,0,108,204,0,0,110,204,0,0,112,204,0,0,120,204,0,0,126,204,0,0,128,204,0,0,134,204,0,0,138,204,0,0,140,204,0,0,140,204,0,0,140,204,0,0,144,204,0,0,146,204,0,0,148,204,0,0,148,204,0,0,148,204,0,0,156,204,0,0,160,204,0,0,166,204,0,0,168,204,0,0,168,204,0,0,174,204,0,0,176,204,0,0,180,204,0,0,182,204,0,0,182,204,0,0,182,204,0,0,182,204,0,0,182,204,0,0,182,204,0,0,186,204,0,0,190,204,0,0,192,204,0,0,194,204,0,0,194,204,0,0,194,204,0,0,200,204,0,0,200,204,0,0,202,204,0,0,204,204,0,0,204,204,0,0,206,204,0,0,208,204,0,0,216,204,0,0,218,204,0,0,222,204,0,0,224,204,0,0,224,204,0,0,224,204,0,0,224,204,0,0,224,204,0,0,226,204,0,0,226,204,0,0,226,204,0,0,226,204,0,0,228,204,0,0,228,204,0,0,230,204,0,0,232,204,0,0,232,204,0,0,232,204,0,0,236,204,0,0,236,204,0,0,236,204,0,0,240,204,0,0,240,204,0,0,240,204,0,0,244,204,0,0,244,204,0,0,244,204,0,0,244,204,0,0,244,204,0,0,248,204,0,0,248,204,0,0,250,204,0,0,252,204,0,0,252,204,0,0,18,205,0,0,18,205,0,0,18,205,0,0,18,205,0,0,18,205,0,0,18,205,0,0,22,205,0,0,22,205,0,0,24,205,0,0,24,205,0,0,24,205,0,0,32,205,0,0,38,205,0,0,38,205,0,0,40,205,0,0,40,205,0,0,42,205,0,0,42,205,0,0,46,205,0,0,46,205,0,0,46,205,0,0,48,205,0,0,48,205,0,0,58,205,0,0,66,205,0,0,68,205,0,0,68,205,0,0,74,205,0,0,78,205,0,0,80,205,0,0,80,205,0,0,80,205,0,0,80,205,0,0,80,205,0,0,84,205,0,0,84,205,0,0,86,205,0,0,86,205,0,0,88,205,0,0,88,205,0,0,90,205,0,0,92,205,0,0,92,205,0,0,92,205,0,0,94,205,0,0,96,205,0,0,100,205,0,0,100,205,0,0,100,205,0,0,106,205,0,0,106,205,0,0,110,205,0,0,112,205,0,0,112,205,0,0,118,205,0,0,118,205,0,0,120,205,0,0,120,205,0,0,126,205,0,0,126,205,0,0,134,205,0,0,138,205,0,0,144,205,0,0,144,205,0,0,144,205,0,0,146,205,0,0,148,205,0,0,148,205,0,0,150,205,0,0,152,205,0,0,152,205,0,0,154,205,0,0,154,205,0,0,154,205,0,0,158,205,0,0,158,205,0,0,160,205,0,0,160,205,0,0,162,205,0,0,164,205,0,0,166,205,0,0,166,205,0,0,166,205,0,0,168,205,0,0,174,205,0,0,174,205,0,0,176,205,0,0,182,205,0,0,186,205,0,0,186,205,0,0,186,205,0,0,188,205,0,0,190,205,0,0,190,205,0,0,192,205,0,0,194,205,0,0,194,205,0,0,194,205,0,0,196,205,0,0,200,205,0,0,202,205,0,0,202,205,0,0,204,205,0,0,208,205,0,0,210,205,0,0,214,205,0,0,216,205,0,0,220,205,0,0,226,205,0,0,226,205,0,0,226,205,0,0,226,205,0,0,228,205,0,0,228,205,0,0,236,205,0,0,236,205,0,0,236,205,0,0,236,205,0,0,240,205,0,0,242,205,0,0,242,205,0,0,242,205,0,0,242,205,0,0,242,205,0,0,244,205,0,0,244,205,0,0,244,205,0,0,252,205,0,0,252,205,0,0,252,205,0,0,0,206,0,0,0,206,0,0,0,206,0,0,2,206,0,0,2,206,0,0,2,206,0,0,4,206,0,0,4,206,0,0,10,206,0,0,12,206,0,0,16,206,0,0,22,206,0,0,24,206,0,0,34,206,0,0,42,206,0,0,48,206,0,0,50,206,0,0,52,206,0,0,56,206,0,0,60,206,0,0,60,206,0,0,62,206,0,0,62,206,0,0,62,206,0,0,62,206,0,0,64,206,0,0,64,206,0,0,66,206,0,0,66,206,0,0,66,206,0,0,68,206,0,0,74,206,0,0,74,206,0,0,74,206,0,0,74,206,0,0,74,206,0,0,76,206,0,0,80,206,0,0,88,206,0,0,90,206,0,0,90,206,0,0,96,206,0,0,98,206,0,0,102,206,0,0,102,206,0,0,102,206,0,0,102,206,0,0,102,206,0,0,106,206,0,0,106,206,0,0,106,206,0,0,110,206,0,0,110,206,0,0,110,206,0,0,114,206,0,0,114,206,0,0,116,206,0,0,116,206,0,0,116,206,0,0,116,206,0,0,118,206,0,0,118,206,0,0,118,206,0,0,118,206,0,0,120,206,0,0,120,206,0,0,128,206,0,0,134,206,0,0,134,206,0,0,134,206,0,0,144,206,0,0,148,206,0,0,148,206,0,0,148,206,0,0,148,206,0,0,148,206,0,0,148,206,0,0,150,206,0,0,150,206,0,0,150,206,0,0,150,206,0,0,162,206,0,0,162,206,0,0,162,206,0,0,164,206,0,0,170,206,0,0,170,206,0,0,170,206,0,0,170,206,0,0,170,206,0,0,174,206,0,0,178,206,0,0,178,206,0,0,178,206,0,0,182,206,0,0,184,206,0,0,188,206,0,0,192,206,0,0,192,206,0,0,192,206,0,0,194,206,0,0,196,206,0,0,196,206,0,0,196,206,0,0,196,206,0,0,196,206,0,0,198,206,0,0,208,206,0,0,208,206,0,0,210,206,0,0,210,206,0,0,210,206,0,0,216,206,0,0,228,206,0,0,230,206,0,0,232,206,0,0,232,206,0,0,232,206,0,0,232,206,0,0,232,206,0,0,232,206,0,0,234,206,0,0,234,206,0,0,236,206,0,0,244,206,0,0,244,206,0,0,244,206,0,0,250,206,0,0,252,206,0,0,252,206,0,0,254,206,0,0,0,207,0,0,2,207,0,0,4,207,0,0,4,207,0,0,4,207,0,0,8,207,0,0,8,207,0,0,8,207,0,0,16,207,0,0,18,207,0,0,22,207,0,0,30,207,0,0,40,207,0,0,44,207,0,0,44,207,0,0,46,207,0,0,46,207,0,0,52,207,0,0,54,207,0,0,62,207,0,0,62,207,0,0,64,207,0,0,64,207,0,0,68,207,0,0,70,207,0,0,70,207,0,0,74,207,0,0,78,207,0,0,78,207,0,0,78,207,0,0,78,207,0,0,82,207,0,0,86,207,0,0,86,207,0,0,90,207,0,0,100,207,0,0,100,207,0,0,100,207,0,0,100,207,0,0,100,207,0,0,102,207,0,0,102,207,0,0,102,207,0,0,106,207,0,0,108,207,0,0,114,207,0,0,114,207,0,0,124,207,0,0,124,207,0,0,126,207,0,0,126,207,0,0,132,207,0,0,134,207,0,0,138,207,0,0,140,207,0,0,146,207,0,0,148,207,0,0,148,207,0,0,148,207,0,0,154,207,0,0,154,207,0,0,154,207,0,0,154,207,0,0,156,207,0,0,156,207,0,0,158,207,0,0,158,207,0,0,162,207,0,0,162,207,0,0,164,207,0,0,166,207,0,0,166,207,0,0,168,207,0,0,168,207,0,0,168,207,0,0,168,207,0,0,168,207,0,0,168,207,0,0,172,207,0,0,172,207,0,0,178,207,0,0,186,207,0,0,186,207,0,0,186,207,0,0,186,207,0,0,186,207,0,0,188,207,0,0,190,207,0,0,192,207,0,0,192,207,0,0,192,207,0,0,192,207,0,0,194,207,0,0,196,207,0,0,198,207,0,0,198,207,0,0,198,207,0,0,204,207,0,0,206,207,0,0,206,207,0,0,206,207,0,0,210,207,0,0,210,207,0,0,216,207,0,0,216,207,0,0,216,207,0,0,220,207,0,0,220,207,0,0,228,207,0,0,228,207,0,0,228,207,0,0,228,207,0,0,228,207,0,0,230,207,0,0,230,207,0,0,232,207,0,0,236,207,0,0,236,207,0,0,236,207,0,0,238,207,0,0,240,207,0,0,244,207,0,0,248,207,0,0,250,207,0,0,250,207,0,0,250,207,0,0,250,207,0,0,250,207,0,0,250,207,0,0,250,207,0,0,254,207,0,0,254,207,0,0,0,208,0,0,0,208,0,0,2,208,0,0,4,208,0,0,6,208,0,0,8,208,0,0,8,208,0,0,8,208,0,0,12,208,0,0,12,208,0,0,24,208,0,0,26,208,0,0,26,208,0,0,26,208,0,0,36,208,0,0,36,208,0,0,36,208,0,0,36,208,0,0,36,208,0,0,38,208,0,0,40,208,0,0,46,208,0,0,46,208,0,0,48,208,0,0,54,208,0,0,54,208,0,0,58,208,0,0,58,208,0,0,60,208,0,0,64,208,0,0,66,208,0,0,66,208,0,0,70,208,0,0,70,208,0,0,72,208,0,0,72,208,0,0,78,208,0,0,82,208,0,0,82,208,0,0,84,208,0,0,86,208,0,0,86,208,0,0,92,208,0,0,92,208,0,0,96,208,0,0,100,208,0,0,100,208,0,0,106,208,0,0,106,208,0,0,106,208,0,0,106,208,0,0,110,208,0,0,114,208,0,0,114,208,0,0,114,208,0,0,120,208,0,0,120,208,0,0,126,208,0,0,126,208,0,0,130,208,0,0,136,208,0,0,140,208,0,0,142,208,0,0,142,208,0,0,142,208,0,0,142,208,0,0,142,208,0,0,150,208,0,0,150,208,0,0,150,208,0,0,158,208,0,0,160,208,0,0,160,208,0,0,160,208,0,0,162,208,0,0,162,208,0,0,162,208,0,0,172,208,0,0,172,208,0,0,172,208,0,0,174,208,0,0,176,208,0,0,178,208,0,0,178,208,0,0,178,208,0,0,182,208,0,0,184,208,0,0,186,208,0,0,188,208,0,0,188,208,0,0,192,208,0,0,194,208,0,0,194,208,0,0,194,208,0,0,200,208,0,0,200,208,0,0,208,208,0,0,208,208,0,0,208,208,0,0,214,208,0,0,216,208,0,0,218,208,0,0,220,208,0,0,226,208,0,0,228,208,0,0,228,208,0,0,228,208,0,0,228,208,0,0,230,208,0,0,230,208,0,0,230,208,0,0,234,208,0,0,240,208,0,0,244,208,0,0,244,208,0,0,246,208,0,0,252,208,0,0,252,208,0,0,254,208,0,0,254,208,0,0,254,208,0,0,254,208,0,0,0,209,0,0,0,209,0,0,2,209,0,0,4,209,0,0,8,209,0,0,8,209,0,0,16,209,0,0,18,209,0,0,24,209,0,0,28,209,0,0,28,209,0,0,28,209,0,0,34,209,0,0,34,209,0,0,38,209,0,0,40,209,0,0,40,209,0,0,40,209,0,0,46,209,0,0,46,209,0,0,48,209,0,0,48,209,0,0,52,209,0,0,58,209,0,0,60,209,0,0,60,209,0,0,70,209,0,0,74,209,0,0,76,209,0,0,76,209,0,0,76,209,0,0,76,209,0,0,80,209,0,0,80,209,0,0,86,209,0,0,90,209,0,0,90,209,0,0,96,209,0,0,100,209,0,0,106,209,0,0,106,209,0,0,106,209,0,0,106,209,0,0,106,209,0,0,110,209,0,0,114,209,0,0,114,209,0,0,124,209,0,0,126,209,0,0,130,209,0,0,132,209,0,0,134,209,0,0,138,209,0,0,146,209,0,0,146,209,0,0,146,209,0,0,146,209,0,0,146,209,0,0,146,209,0,0,148,209,0,0,148,209,0,0,150,209,0,0,150,209,0,0,154,209,0,0,154,209,0,0,156,209,0,0,156,209,0,0,156,209,0,0,156,209,0,0,156,209,0,0,160,209,0,0,162,209,0,0,162,209,0,0,164,209,0,0,168,209,0,0,174,209,0,0,174,209,0,0,174,209,0,0,174,209,0,0,174,209,0,0,174,209,0,0,176,209,0,0,186,209,0,0,188,209,0,0,192,209,0,0,194,209,0,0,196,209,0,0,198,209,0,0,202,209,0,0,202,209,0,0,202,209,0,0,202,209,0,0,204,209,0,0,206,209,0,0,206,209,0,0,208,209,0,0,208,209,0,0,214,209,0,0,214,209,0,0,214,209,0,0,218,209,0,0,218,209,0,0,224,209,0,0,230,209,0,0,230,209,0,0,230,209,0,0,230,209,0,0,230,209,0,0,230,209,0,0,230,209,0,0,230,209,0,0,230,209,0,0,230,209,0,0,232,209,0,0,232,209,0,0,232,209,0,0,232,209,0,0,232,209,0,0,232,209,0,0,232,209,0,0,232,209,0,0,232,209,0,0,234,209,0,0,234,209,0,0,234,209,0,0,236,209,0,0,250,209,0,0,250,209,0,0,0,210,0,0,4,210,0,0,4,210,0,0,6,210,0,0,6,210,0,0,12,210,0,0,12,210,0,0,12,210,0,0,12,210,0,0,12,210,0,0,14,210,0,0,24,210,0,0,28,210,0,0,30,210,0,0,32,210,0,0,34,210,0,0,34,210,0,0,34,210,0,0,34,210,0,0,38,210,0,0,46,210,0,0,52,210,0,0,52,210,0,0,52,210,0,0,54,210,0,0,62,210,0,0,62,210,0,0,62,210,0,0,62,210,0,0,64,210,0,0,64,210,0,0,70,210,0,0,70,210,0,0,76,210,0,0,82,210,0,0,82,210,0,0,84,210,0,0,84,210,0,0,86,210,0,0,86,210,0,0,94,210,0,0,100,210,0,0,100,210,0,0,100,210,0,0,104,210,0,0,110,210,0,0,110,210,0,0,116,210,0,0,118,210,0,0,122,210,0,0,128,210,0,0,132,210,0,0,132,210,0,0,132,210,0,0,134,210,0,0,136,210,0,0,136,210,0,0,138,210,0,0,138,210,0,0,138,210,0,0,138,210,0,0,138,210,0,0,144,210,0,0,152,210,0,0,158,210,0,0,158,210,0,0,158,210,0,0,162,210,0,0,162,210,0,0,166,210,0,0,166,210,0,0,168,210,0,0,168,210,0,0,172,210,0,0,172,210,0,0,174,210,0,0,176,210,0,0,176,210,0,0,184,210,0,0,194,210,0,0,196,210,0,0,196,210,0,0,196,210,0,0,206,210,0,0,206,210,0,0,206,210,0,0,206,210,0,0,206,210,0,0,212,210,0,0,212,210,0,0,216,210,0,0,218,210,0,0,218,210,0,0,222,210,0,0,222,210,0,0,222,210,0,0,224,210,0,0,224,210,0,0,224,210,0,0,226,210,0,0,228,210,0,0,228,210,0,0,232,210,0,0,232,210,0,0,234,210,0,0,234,210,0,0,234,210,0,0,234,210,0,0,246,210,0,0,246,210,0,0,250,210,0,0,0,211,0,0,0,211,0,0,0,211,0,0,2,211,0,0,2,211,0,0,2,211,0,0,2,211,0,0,4,211,0,0,6,211,0,0,8,211,0,0,8,211,0,0,10,211,0,0,10,211,0,0,10,211,0,0,16,211,0,0,16,211,0,0,16,211,0,0,26,211,0,0,26,211,0,0,28,211,0,0,32,211,0,0,34,211,0,0,34,211,0,0,44,211,0,0,44,211,0,0,50,211,0,0,54,211,0,0,62,211,0,0,62,211,0,0,62,211,0,0,62,211,0,0,64,211,0,0,68,211,0,0,68,211,0,0,70,211,0,0,78,211,0,0,80,211,0,0,80,211,0,0,84,211,0,0,84,211,0,0,90,211,0,0,94,211,0,0,94,211,0,0,96,211,0,0,96,211,0,0,96,211,0,0,98,211,0,0,98,211,0,0,100,211,0,0,102,211,0,0,102,211,0,0,102,211,0,0,102,211,0,0,102,211,0,0,110,211,0,0,122,211,0,0,122,211,0,0,126,211,0,0,126,211,0,0,126,211,0,0,126,211,0,0,126,211,0,0,126,211,0,0,126,211,0,0,130,211,0,0,130,211,0,0,132,211,0,0,134,211,0,0,134,211,0,0,134,211,0,0,134,211,0,0,136,211,0,0,136,211,0,0,138,211,0,0,138,211,0,0,138,211,0,0,138,211,0,0,140,211,0,0,140,211,0,0,150,211,0,0,154,211,0,0,154,211,0,0,154,211,0,0,154,211,0,0,158,211,0,0,158,211,0,0,158,211,0,0,160,211,0,0,160,211,0,0,164,211,0,0,164,211,0,0,168,211,0,0,168,211,0,0,168,211,0,0,168,211,0,0,170,211,0,0,172,211,0,0,172,211,0,0,172,211,0,0,176,211,0,0,176,211,0,0,176,211,0,0,180,211,0,0,182,211,0,0,182,211,0,0,182,211,0,0,188,211,0,0,194,211,0,0,194,211,0,0,200,211,0,0,200,211,0,0,200,211,0,0,200,211,0,0,202,211,0,0,204,211,0,0,210,211,0,0,210,211,0,0,212,211,0,0,212,211,0,0,212,211,0,0,212,211,0,0,212,211,0,0,212,211,0,0,222,211,0,0,224,211,0,0,224,211,0,0,226,211,0,0,226,211,0,0,226,211,0,0,240,211,0,0,242,211,0,0,246,211,0,0,248,211,0,0,250,211,0,0,254,211,0,0,254,211,0,0,254,211,0,0,254,211,0,0,254,211,0,0,254,211,0,0,254,211,0,0,0,212,0,0,4,212,0,0,10,212,0,0,10,212,0,0,14,212,0,0,18,212,0,0,18,212,0,0,18,212,0,0,20,212,0,0,24,212,0,0,36,212,0,0,36,212,0,0,38,212,0,0,38,212,0,0,38,212,0,0,38,212,0,0,38,212,0,0,46,212,0,0,50,212,0,0,50,212,0,0,50,212,0,0,52,212,0,0,52,212,0,0,58,212,0,0,58,212,0,0,60,212,0,0,64,212,0,0,64,212,0,0,64,212,0,0,64,212,0,0,64,212,0,0,66,212,0,0,70,212,0,0,70,212,0,0,70,212,0,0,70,212,0,0,70,212,0,0,72,212,0,0,72,212,0,0,76,212,0,0,78,212,0,0,80,212,0,0,82,212,0,0,86,212,0,0,86,212,0,0,88,212,0,0,98,212,0,0,100,212,0,0,106,212,0,0,106,212,0,0,106,212,0,0,106,212,0,0,112,212,0,0,114,212,0,0,116,212,0,0,116,212,0,0,120,212,0,0,120,212,0,0,120,212,0,0,120,212,0,0,122,212,0,0,126,212,0,0,132,212,0,0,134,212,0,0,146,212,0,0,146,212,0,0,146,212,0,0,148,212,0,0,148,212,0,0,150,212,0,0,150,212,0,0,152,212,0,0,154,212,0,0,156,212,0,0,156,212,0,0,158,212,0,0,158,212,0,0,158,212,0,0,160,212,0,0,162,212,0,0,162,212,0,0,162,212,0,0,162,212,0,0,162,212,0,0,162,212,0,0,162,212,0,0,162,212,0,0,162,212,0,0,162,212,0,0,168,212,0,0,168,212,0,0,168,212,0,0,168,212,0,0,168,212,0,0,168,212,0,0,168,212,0,0,168,212,0,0,176,212,0,0,176,212,0,0,178,212,0,0,178,212,0,0,180,212,0,0,182,212,0,0,182,212,0,0,182,212,0,0,186,212,0,0,186,212,0,0,186,212,0,0,192,212,0,0,196,212,0,0,196,212,0,0,196,212,0,0,198,212,0,0,202,212,0,0,202,212,0,0,204,212,0,0,204,212,0,0,204,212,0,0,208,212,0,0,212,212,0,0,212,212,0,0,212,212,0,0,212,212,0,0,212,212,0,0,212,212,0,0,212,212,0,0,218,212,0,0,218,212,0,0,220,212,0,0,222,212,0,0,226,212,0,0,228,212,0,0,228,212,0,0,230,212,0,0,236,212,0,0,240,212,0,0,242,212,0,0,244,212,0,0,246,212,0,0,248,212,0,0,252,212,0,0,0,213,0,0,0,213,0,0,6,213,0,0,10,213,0,0,10,213,0,0,10,213,0,0,12,213,0,0,12,213,0,0,12,213,0,0,14,213,0,0,16,213,0,0,16,213,0,0,20,213,0,0,20,213,0,0,20,213,0,0,22,213,0,0,22,213,0,0,24,213,0,0,24,213,0,0,30,213,0,0,40,213,0,0,42,213,0,0,46,213,0,0,50,213,0,0,54,213,0,0,60,213,0,0,66,213,0,0,66,213,0,0,66,213,0,0,66,213,0,0,72,213,0,0,72,213,0,0,72,213,0,0,72,213,0,0,74,213,0,0,74,213,0,0,76,213,0,0,76,213,0,0,82,213,0,0,82,213,0,0,82,213,0,0,86,213,0,0,88,213,0,0,90,213,0,0,90,213,0,0,94,213,0,0,94,213,0,0,96,213,0,0,100,213,0,0,102,213,0,0,112,213,0,0,112,213,0,0,120,213,0,0,126,213,0,0,130,213,0,0,130,213,0,0,132,213,0,0,136,213,0,0,138,213,0,0,138,213,0,0,140,213,0,0,148,213,0,0,148,213,0,0,150,213,0,0,152,213,0,0,156,213,0,0,156,213,0,0,156,213,0,0,158,213,0,0,158,213,0,0,158,213,0,0,162,213,0,0,164,213,0,0,170,213,0,0,174,213,0,0,178,213,0,0,178,213,0,0,184,213,0,0,184,213,0,0,184,213,0,0,184,213,0,0,186,213,0,0,188,213,0,0,190,213,0,0,192,213,0,0,194,213,0,0,196,213,0,0,196,213,0,0,198,213,0,0,204,213,0,0,204,213,0,0,204,213,0,0,204,213,0,0,204,213,0,0,206,213,0,0,206,213,0,0,206,213,0,0,210,213,0,0,210,213,0,0,222,213,0,0,226,213,0,0,226,213,0,0,226,213,0,0,226,213,0,0,226,213,0,0,228,213,0,0,230,213,0,0,232,213,0,0,238,213,0,0,238,213,0,0,240,213,0,0,240,213,0,0,240,213,0,0,244,213,0,0,246,213,0,0,246,213,0,0,246,213,0,0,250,213,0,0,254,213,0,0,254,213,0,0,0,214,0,0,8,214,0,0,8,214,0,0,14,214,0,0,14,214,0,0,16,214,0,0,16,214,0,0,20,214,0,0,22,214,0,0,22,214,0,0,22,214,0,0,22,214,0,0,24,214,0,0,24,214,0,0,26,214,0,0,26,214,0,0,26,214,0,0,26,214,0,0,30,214,0,0,30,214,0,0,32,214,0,0,32,214,0,0,34,214,0,0,42,214,0,0,42,214,0,0,44,214,0,0,48,214,0,0,48,214,0,0,50,214,0,0,54,214,0,0,54,214,0,0,54,214,0,0,58,214,0,0,58,214,0,0,58,214,0,0,60,214,0,0,60,214,0,0,60,214,0,0,60,214,0,0,60,214,0,0,62,214,0,0,66,214,0,0,68,214,0,0,72,214,0,0,72,214,0,0,72,214,0,0,72,214,0,0,72,214,0,0,76,214,0,0,76,214,0,0,78,214,0,0,80,214,0,0,82,214,0,0,82,214,0,0,82,214,0,0,84,214,0,0,88,214,0,0,92,214,0,0,92,214,0,0,94,214,0,0,96,214,0,0,98,214,0,0,98,214,0,0,100,214,0,0,100,214,0,0,100,214,0,0,100,214,0,0,100,214,0,0,100,214,0,0,100,214,0,0,104,214,0,0,104,214,0,0,106,214,0,0,110,214,0,0,114,214,0,0,114,214,0,0,118,214,0,0,120,214,0,0,120,214,0,0,122,214,0,0,124,214,0,0,130,214,0,0,134,214,0,0,146,214,0,0,146,214,0,0,146,214,0,0,148,214,0,0,152,214,0,0,160,214,0,0,164,214,0,0,164,214,0,0,170,214,0,0,170,214,0,0,172,214,0,0,172,214,0,0,174,214,0,0,176,214,0,0,182,214,0,0,182,214,0,0,184,214,0,0,186,214,0,0,186,214,0,0,186,214,0,0,186,214,0,0,186,214,0,0,192,214,0,0,194,214,0,0,194,214,0,0,194,214,0,0,196,214,0,0,196,214,0,0,202,214,0,0,202,214,0,0,204,214,0,0,204,214,0,0,208,214,0,0,210,214,0,0,210,214,0,0,210,214,0,0,210,214,0,0,212,214,0,0,214,214,0,0,216,214,0,0,216,214,0,0,216,214,0,0,216,214,0,0,216,214,0,0,216,214,0,0,218,214,0,0,218,214,0,0,218,214,0,0,220,214,0,0,222,214,0,0,222,214,0,0,222,214,0,0,222,214,0,0,224,214,0,0,224,214,0,0,224,214,0,0,232,214,0,0,234,214,0,0,236,214,0,0,236,214,0,0,236,214,0,0,236,214,0,0,236,214,0,0,236,214,0,0,236,214,0,0,242,214,0,0,244,214,0,0,246,214,0,0,246,214,0,0,246,214,0,0,2,215,0,0,2,215,0,0,2,215,0,0,2,215,0,0,2,215,0,0,4,215,0,0,4,215,0,0,4,215,0,0,10,215,0,0,14,215,0,0,14,215,0,0,14,215,0,0,14,215,0,0,18,215,0,0,20,215,0,0,20,215,0,0,22,215,0,0,24,215,0,0,24,215,0,0,26,215,0,0,28,215,0,0,28,215,0,0,28,215,0,0,30,215,0,0,30,215,0,0,42,215,0,0,42,215,0,0,44,215,0,0,44,215,0,0,46,215,0,0,50,215,0,0,52,215,0,0,52,215,0,0,52,215,0,0,66,215,0,0,66,215,0,0,68,215,0,0,68,215,0,0,68,215,0,0,68,215,0,0,68,215,0,0,70,215,0,0,72,215,0,0,72,215,0,0,74,215,0,0,74,215,0,0,78,215,0,0,80,215,0,0,80,215,0,0,80,215,0,0,80,215,0,0,80,215,0,0,80,215,0,0,82,215,0,0,88,215,0,0,88,215,0,0,88,215,0,0,92,215,0,0,92,215,0,0,92,215,0,0,92,215,0,0,92,215,0,0,94,215,0,0,94,215,0,0,98,215,0,0,100,215,0,0,100,215,0,0,102,215,0,0,104,215,0,0,104,215,0,0,110,215,0,0,110,215,0,0,112,215,0,0,114,215,0,0,116,215,0,0,116,215,0,0,118,215,0,0,120,215,0,0,124,215,0,0,126,215,0,0,132,215,0,0,132,215,0,0,132,215,0,0,136,215,0,0,136,215,0,0,136,215,0,0,140,215,0,0,140,215,0,0,140,215,0,0,144,215,0,0,150,215,0,0,150,215,0,0,150,215,0,0,150,215,0,0,150,215,0,0,154,215,0,0,154,215,0,0,154,215,0,0,156,215,0,0,156,215,0,0,162,215,0,0,162,215,0,0,172,215,0,0,174,215,0,0,174,215,0,0,178,215,0,0,178,215,0,0,178,215,0,0,186,215,0,0,186,215,0,0,186,215,0,0,188,215,0,0,190,215,0,0,192,215,0,0,196,215,0,0,198,215,0,0,198,215,0,0,198,215,0,0,200,215,0,0,206,215,0,0,206,215,0,0,208,215,0,0,208,215,0,0,208,215,0,0,208,215,0,0,208,215,0,0,210,215,0,0,212,215,0,0,212,215,0,0,216,215,0,0,216,215,0,0,218,215,0,0,222,215,0,0,226,215,0,0,226,215,0,0,226,215,0,0,228,215,0,0,232,215,0,0,236,215,0,0,240,215,0,0,242,215,0,0,242,215,0,0,242,215,0,0,244,215,0,0,250,215,0,0,254,215,0,0,254,215,0,0,0,216,0,0,2,216,0,0,6,216,0,0,6,216,0,0,6,216,0,0,10,216,0,0,12,216,0,0,24,216,0,0,26,216,0,0,26,216,0,0,32,216,0,0,36,216,0,0,40,216,0,0,40,216,0,0,44,216,0,0,44,216,0,0,54,216,0,0,54,216,0,0,54,216,0,0,62,216,0,0,64,216,0,0,70,216,0,0,70,216,0,0,76,216,0,0,76,216,0,0,76,216,0,0,78,216,0,0,84,216,0,0,90,216,0,0,92,216,0,0,92,216,0,0,94,216,0,0,100,216,0,0,100,216,0,0,102,216,0,0,104,216,0,0,106,216,0,0,106,216,0,0,106,216,0,0,106,216,0,0,108,216,0,0,108,216,0,0,110,216,0,0,110,216,0,0,112,216,0,0,112,216,0,0,112,216,0,0,112,216,0,0,112,216,0,0,114,216,0,0,118,216,0,0,118,216,0,0,118,216,0,0,118,216,0,0,120,216,0,0,120,216,0,0,120,216,0,0,124,216,0,0,124,216,0,0,124,216,0,0,126,216,0,0,126,216,0,0,126,216,0,0,126,216,0,0,128,216,0,0,128,216,0,0,130,216,0,0,130,216,0,0,130,216,0,0,130,216,0,0,134,216,0,0,138,216,0,0,146,216,0,0,146,216,0,0,150,216,0,0,154,216,0,0,154,216,0,0,154,216,0,0,154,216,0,0,158,216,0,0,158,216,0,0,160,216,0,0,160,216,0,0,160,216,0,0,162,216,0,0,162,216,0,0,164,216,0,0,164,216,0,0,164,216,0,0,166,216,0,0,166,216,0,0,168,216,0,0,170,216,0,0,176,216,0,0,176,216,0,0,178,216,0,0,178,216,0,0,178,216,0,0,178,216,0,0,180,216,0,0,184,216,0,0,186,216,0,0,190,216,0,0,190,216,0,0,194,216,0,0,194,216,0,0,196,216,0,0,196,216,0,0,196,216,0,0,198,216,0,0,198,216,0,0,200,216,0,0,200,216,0,0,208,216,0,0,210,216,0,0,212,216,0,0,212,216,0,0,214,216,0,0,214,216,0,0,226,216,0,0,226,216,0,0,226,216,0,0,230,216,0,0,234,216,0,0,234,216,0,0,234,216,0,0,242,216,0,0,242,216,0,0,242,216,0,0,244,216,0,0,244,216,0,0,244,216,0,0,246,216,0,0,246,216,0,0,248,216,0,0,248,216,0,0,248,216,0,0,250,216,0,0,252,216,0,0,254,216,0,0,254,216,0,0,10,217,0,0,12,217,0,0,12,217,0,0,22,217,0,0,24,217,0,0,30,217,0,0,32,217,0,0,34,217,0,0,36,217,0,0,40,217,0,0,54,217,0,0,54,217,0,0,54,217,0,0,56,217,0,0,60,217,0,0,60,217,0,0,74,217,0,0,74,217,0,0,78,217,0,0,78,217,0,0,80,217,0,0,80,217,0,0,82,217,0,0,88,217,0,0,92,217,0,0,96,217,0,0,98,217,0,0,98,217,0,0,104,217,0,0,110,217,0,0,110,217,0,0,112,217,0,0,112,217,0,0,112,217,0,0,112,217,0,0,114,217,0,0,120,217,0,0,120,217,0,0,122,217,0,0,122,217,0,0,130,217,0,0,132,217,0,0,140,217,0,0,140,217,0,0,140,217,0,0,140,217,0,0,142,217,0,0,142,217,0,0,144,217,0,0,144,217,0,0,150,217,0,0,152,217,0,0,152,217,0,0,154,217,0,0,154,217,0,0,154,217,0,0,154,217,0,0,154,217,0,0,158,217,0,0,162,217,0,0,164,217,0,0,168,217,0,0,168,217,0,0,170,217,0,0,170,217,0,0,170,217,0,0,172,217,0,0,172,217,0,0,172,217,0,0,172,217,0,0,174,217,0,0,174,217,0,0,174,217,0,0,180,217,0,0,180,217,0,0,180,217,0,0,180,217,0,0,184,217,0,0,184,217,0,0,186,217,0,0,188,217,0,0,190,217,0,0,190,217,0,0,192,217,0,0,192,217,0,0,196,217,0,0,202,217,0,0,202,217,0,0,210,217,0,0,212,217,0,0,212,217,0,0,220,217,0,0,220,217,0,0,220,217,0,0,222,217,0,0,224,217,0,0,228,217,0,0,228,217,0,0,230,217,0,0,236,217,0,0,236,217,0,0,236,217,0,0,238,217,0,0,240,217,0,0,242,217,0,0,242,217,0,0,242,217,0,0,248,217,0,0,250,217,0,0,252,217,0,0,252,217,0,0,252,217,0,0,254,217,0,0,0,218,0,0,4,218,0,0,6,218,0,0,6,218,0,0,6,218,0,0,8,218,0,0,10,218,0,0,10,218,0,0,10,218,0,0,10,218,0,0,12,218,0,0,12,218,0,0,12,218,0,0,16,218,0,0,18,218,0,0,22,218,0,0,22,218,0,0,26,218,0,0,26,218,0,0,26,218,0,0,28,218,0,0,28,218,0,0,28,218,0,0,28,218,0,0,28,218,0,0,28,218,0,0,34,218,0,0,34,218,0,0,38,218,0,0,38,218,0,0,44,218,0,0,46,218,0,0,46,218,0,0,46,218,0,0,50,218,0,0,50,218,0,0,50,218,0,0,54,218,0,0,54,218,0,0,54,218,0,0,56,218,0,0,56,218,0,0,58,218,0,0,60,218,0,0,66,218,0,0,66,218,0,0,66,218,0,0,66,218,0,0,72,218,0,0,72,218,0,0,74,218,0,0,76,218,0,0,82,218,0,0,82,218,0,0,82,218,0,0,92,218,0,0,94,218,0,0,94,218,0,0,94,218,0,0,94,218,0,0,94,218,0,0,94,218,0,0,100,218,0,0,100,218,0,0,104,218,0,0,104,218,0,0,106,218,0,0,106,218,0,0,108,218,0,0,108,218,0,0,108,218,0,0,108,218,0,0,110,218,0,0,112,218,0,0,112,218,0,0,122,218,0,0,124,218,0,0,126,218,0,0,128,218,0,0,128,218,0,0,134,218,0,0,134,218,0,0,140,218,0,0,140,218,0,0,140,218,0,0,140,218,0,0,144,218,0,0,146,218,0,0,146,218,0,0,148,218,0,0,148,218,0,0,148,218,0,0,148,218,0,0,148,218,0,0,148,218,0,0,150,218,0,0,150,218,0,0,150,218,0,0,156,218,0,0,166,218,0,0,166,218,0,0,166,218,0,0,166,218,0,0,166,218,0,0,166,218,0,0,168,218,0,0,168,218,0,0,172,218,0,0,176,218,0,0,182,218,0,0,190,218,0,0,196,218,0,0,200,218,0,0,202,218,0,0,204,218,0,0,208,218,0,0,210,218,0,0,212,218,0,0,212,218,0,0,212,218,0,0,214,218,0,0,216,218,0,0,216,218,0,0,216,218,0,0,216,218,0,0,216,218,0,0,216,218,0,0,222,218,0,0,222,218,0,0,224,218,0,0,224,218,0,0,228,218,0,0,228,218,0,0,230,218,0,0,236,218,0,0,238,218,0,0,238,218,0,0,242,218,0,0,244,218,0,0,244,218,0,0,248,218,0,0,248,218,0,0,250,218,0,0,0,219,0,0,0,219,0,0,0,219,0,0,2,219,0,0,16,219,0,0,22,219,0,0,24,219,0,0,28,219,0,0,28,219,0,0,28,219,0,0,28,219,0,0,32,219,0,0,32,219,0,0,32,219,0,0,38,219,0,0,40,219,0,0,42,219,0,0,42,219,0,0,42,219,0,0,44,219,0,0,46,219,0,0,48,219,0,0,50,219,0,0,56,219,0,0,56,219,0,0,58,219,0,0,58,219,0,0,58,219,0,0,60,219,0,0,60,219,0,0,62,219,0,0,62,219,0,0,66,219,0,0,66,219,0,0,66,219,0,0,70,219,0,0,72,219,0,0,72,219,0,0,74,219,0,0,74,219,0,0,74,219,0,0,76,219,0,0,80,219,0,0,80,219,0,0,82,219,0,0,82,219,0,0,82,219,0,0,88,219,0,0,88,219,0,0,90,219,0,0,102,219,0,0,102,219,0,0,108,219,0,0,108,219,0,0,108,219,0,0,108,219,0,0,108,219,0,0,112,219,0,0,114,219,0,0,114,219,0,0,114,219,0,0,116,219,0,0,152,219,0,0,154,219,0,0,160,219,0,0,162,219,0,0,170,219,0,0,170,219,0,0,170,219,0,0,176,219,0,0,178,219,0,0,182,219,0,0,182,219,0,0,182,219,0,0,182,219,0,0,182,219,0,0,182,219,0,0,182,219,0,0,182,219,0,0,184,219,0,0,186,219,0,0,188,219,0,0,188,219,0,0,192,219,0,0,204,219,0,0,204,219,0,0,204,219,0,0,204,219,0,0,206,219,0,0,210,219,0,0,220,219,0,0,222,219,0,0,222,219,0,0,222,219,0,0,224,219,0,0,226,219,0,0,226,219,0,0,226,219,0,0,226,219,0,0,230,219,0,0,230,219,0,0,236,219,0,0,242,219,0,0,242,219,0,0,242,219,0,0,244,219,0,0,244,219,0,0,246,219,0,0,246,219,0,0,252,219,0,0,0,220,0,0,0,220,0,0,4,220,0,0,4,220,0,0,8,220,0,0,12,220,0,0,14,220,0,0,16,220,0,0,18,220,0,0,30,220,0,0,30,220,0,0,36,220,0,0,40,220,0,0,44,220,0,0,46,220,0,0,48,220,0,0,48,220,0,0,48,220,0,0,52,220,0,0,56,220,0,0,56,220,0,0,60,220,0,0,60,220,0,0,64,220,0,0,66,220,0,0,66,220,0,0,66,220,0,0,68,220,0,0,78,220,0,0,80,220,0,0,80,220,0,0,80,220,0,0,82,220,0,0,82,220,0,0,86,220,0,0,90,220,0,0,96,220,0,0,96,220,0,0,96,220,0,0,96,220,0,0,96,220,0,0,96,220,0,0,96,220,0,0,104,220,0,0,112,220,0,0,112,220,0,0,112,220,0,0,112,220,0,0,112,220,0,0,114,220,0,0,114,220,0,0,116,220,0,0,124,220,0,0,130,220,0,0,130,220,0,0,132,220,0,0,132,220,0,0,138,220,0,0,140,220,0,0,140,220,0,0,140,220,0,0,140,220,0,0,146,220,0,0,150,220,0,0,150,220,0,0,150,220,0,0,150,220,0,0,150,220,0,0,154,220,0,0,158,220,0,0,160,220,0,0,160,220,0,0,160,220,0,0,164,220,0,0,164,220,0,0,164,220,0,0,164,220,0,0,166,220,0,0,168,220,0,0,174,220,0,0,174,220,0,0,174,220,0,0,176,220,0,0,186,220,0,0,190,220,0,0,190,220,0,0,194,220,0,0,206,220,0,0,210,220,0,0,210,220,0,0,214,220,0,0,214,220,0,0,224,220,0,0,224,220,0,0,224,220,0,0,226,220,0,0,226,220,0,0,228,220,0,0,230,220,0,0,230,220,0,0,236,220,0,0,236,220,0,0,236,220,0,0,236,220,0,0,240,220,0,0,242,220,0,0,242,220,0,0,250,220,0,0,250,220,0,0,252,220,0,0,252,220,0,0,252,220,0,0,252,220,0,0,252,220,0,0,252,220,0,0,252,220,0,0,254,220,0,0,6,221,0,0,10,221,0,0,12,221,0,0,16,221,0,0,18,221,0,0,20,221,0,0,22,221,0,0,26,221,0,0,32,221,0,0,36,221,0,0,40,221,0,0,40,221,0,0,40,221,0,0,44,221,0,0,44,221,0,0,48,221,0,0,54,221,0,0,56,221,0,0,56,221,0,0,58,221,0,0,58,221,0,0,60,221,0,0,60,221,0,0,64,221,0,0,64,221,0,0,66,221,0,0,66,221,0,0,66,221,0,0,74,221,0,0,74,221,0,0,76,221,0,0,76,221,0,0,80,221,0,0,82,221,0,0,82,221,0,0,82,221,0,0,82,221,0,0,84,221,0,0,84,221,0,0,88,221,0,0,88,221,0,0,96,221,0,0,96,221,0,0,96,221,0,0,98,221,0,0,102,221,0,0,106,221,0,0,110,221,0,0,110,221,0,0,110,221,0,0,110,221,0,0,112,221,0,0,120,221,0,0,122,221,0,0,132,221,0,0,132,221,0,0,138,221,0,0,138,221,0,0,140,221,0,0,144,221,0,0,144,221,0,0,148,221,0,0,150,221,0,0,150,221,0,0,160,221,0,0,160,221,0,0,162,221,0,0,164,221,0,0,164,221,0,0,166,221,0,0,166,221,0,0,166,221,0,0,166,221,0,0,170,221,0,0,176,221,0,0,176,221,0,0,176,221,0,0,178,221,0,0,180,221,0,0,190,221,0,0,190,221,0,0,192,221,0,0,192,221,0,0,202,221,0,0,208,221,0,0,208,221,0,0,220,221,0,0,224,221,0,0,224,221,0,0,224,221,0,0,230,221,0,0,230,221,0,0,232,221,0,0,234,221,0,0,236,221,0,0,236,221,0,0,238,221,0,0,246,221,0,0,252,221,0,0,0,222,0,0,4,222,0,0,4,222,0,0,4,222,0,0,4,222,0,0,4,222,0,0,10,222,0,0,12,222,0,0,18,222,0,0,18,222,0,0,18,222,0,0,20,222,0,0,20,222,0,0,20,222,0,0,20,222,0,0,26,222,0,0,30,222,0,0,30,222,0,0,36,222,0,0,40,222,0,0,40,222,0,0,42,222,0,0,44,222,0,0,44,222,0,0,44,222,0,0,46,222,0,0,46,222,0,0,48,222,0,0,52,222,0,0,58,222,0,0,62,222,0,0,62,222,0,0,66,222,0,0,66,222,0,0,66,222,0,0,68,222,0,0,70,222,0,0,74,222,0,0,74,222,0,0,86,222,0,0,90,222,0,0,96,222,0,0,96,222,0,0,102,222,0,0,102,222,0,0,102,222,0,0,102,222,0,0,102,222,0,0,104,222,0,0,104,222,0,0,104,222,0,0,104,222,0,0,104,222,0,0,104,222,0,0,104,222,0,0,104,222,0,0,106,222,0,0,106,222,0,0,106,222,0,0,112,222,0,0,112,222,0,0,114,222,0,0,114,222,0,0,116,222,0,0,118,222,0,0,118,222,0,0,118,222,0,0,118,222,0,0,118,222,0,0,124,222,0,0,126,222,0,0,126,222,0,0,126,222,0,0,126,222,0,0,126,222,0,0,126,222,0,0,128,222,0,0,128,222,0,0,130,222,0,0,130,222,0,0,130,222,0,0,130,222,0,0,132,222,0,0,142,222,0,0,152,222,0,0,154,222,0,0,160,222,0,0,162,222,0,0,162,222,0,0,164,222,0,0,168,222,0,0,170,222,0,0,172,222,0,0,178,222,0,0,178,222,0,0,182,222,0,0,186,222,0,0,190,222,0,0,190,222,0,0,192,222,0,0,200,222,0,0,202,222,0,0,206,222,0,0,210,222,0,0,210,222,0,0,212,222,0,0,212,222,0,0,216,222,0,0,216,222,0,0,224,222,0,0,226,222,0,0,226,222,0,0,226,222,0,0,230,222,0,0,230,222,0,0,234,222,0,0,234,222,0,0,244,222,0,0,244,222,0,0,246,222,0,0,248,222,0,0,248,222,0,0,250,222,0,0,254,222,0,0,2,223,0,0,4,223,0,0,4,223,0,0,4,223,0,0,4,223,0,0,12,223,0,0,22,223,0,0,22,223,0,0,28,223,0,0,34,223,0,0,36,223,0,0,36,223,0,0,36,223,0,0,36,223,0,0,44,223,0,0,44,223,0,0,44,223,0,0,48,223,0,0,48,223,0,0,48,223,0,0,50,223,0,0,54,223,0,0,54,223,0,0,54,223,0,0,54,223,0,0,54,223,0,0,54,223,0,0,54,223,0,0,60,223,0,0,62,223,0,0,64,223,0,0,64,223,0,0,68,223,0,0,68,223,0,0,68,223,0,0,68,223,0,0,68,223,0,0,70,223,0,0,70,223,0,0,70,223,0,0,70,223,0,0,72,223,0,0,78,223,0,0,78,223,0,0,78,223,0,0,78,223,0,0,78,223,0,0,78,223,0,0,78,223,0,0,78,223,0,0,78,223,0,0,78,223,0,0,82,223,0,0,84,223,0,0,84,223,0,0,90,223,0,0,90,223,0,0,92,223,0,0,98,223,0,0,98,223,0,0,98,223,0,0,98,223,0,0,98,223,0,0,98,223,0,0,98,223,0,0,100,223,0,0,106,223,0,0,106,223,0,0,106,223,0,0,108,223,0,0,108,223,0,0,108,223,0,0,108,223,0,0,112,223,0,0,112,223,0,0,114,223,0,0,114,223,0,0,114,223,0,0,116,223,0,0,124,223,0,0,128,223,0,0,128,223,0,0,128,223,0,0,128,223,0,0,128,223,0,0,128,223,0,0,130,223,0,0,132,223,0,0,132,223,0,0,132,223,0,0,136,223,0,0,138,223,0,0,144,223,0,0,144,223,0,0,146,223,0,0,152,223,0,0,152,223,0,0,152,223,0,0,152,223,0,0,154,223,0,0,158,223,0,0,158,223,0,0,160,223,0,0,166,223,0,0,168,223,0,0,170,223,0,0,172,223,0,0,172,223,0,0,176,223,0,0,176,223,0,0,176,223,0,0,180,223,0,0,180,223,0,0,180,223,0,0,184,223,0,0,186,223,0,0,186,223,0,0,188,223,0,0,190,223,0,0,194,223,0,0,196,223,0,0,198,223,0,0,204,223,0,0,204,223,0,0,208,223,0,0,208,223,0,0,208,223,0,0,208,223,0,0,208,223,0,0,208,223,0,0,208,223,0,0,208,223,0,0,208,223,0,0,208,223,0,0,212,223,0,0,212,223,0,0,214,223,0,0,214,223,0,0,216,223,0,0,222,223,0,0,222,223,0,0,228,223,0,0,230,223,0,0,232,223,0,0,236,223,0,0,238,223,0,0,238,223,0,0,240,223,0,0,240,223,0,0,240,223,0,0,240,223,0,0,244,223,0,0,244,223,0,0,244,223,0,0,244,223,0,0,250,223,0,0,250,223,0,0,250,223,0,0,250,223,0,0,254,223,0,0,4,224,0,0,6,224,0,0,10,224,0,0,18,224,0,0,20,224,0,0,20,224,0,0,20,224,0,0,24,224,0,0,28,224,0,0,28,224,0,0,28,224,0,0,30,224,0,0,32,224,0,0,32,224,0,0,32,224,0,0,32,224,0,0,34,224,0,0,34,224,0,0,36,224,0,0,36,224,0,0,38,224,0,0,38,224,0,0,42,224,0,0,42,224,0,0,42,224,0,0,44,224,0,0,48,224,0,0,48,224,0,0,54,224,0,0,60,224,0,0,64,224,0,0,64,224,0,0,68,224,0,0,68,224,0,0,72,224,0,0,78,224,0,0,78,224,0,0,80,224,0,0,80,224,0,0,80,224,0,0,82,224,0,0,82,224,0,0,84,224,0,0,84,224,0,0,92,224,0,0,94,224,0,0,94,224,0,0,100,224,0,0,100,224,0,0,104,224,0,0,104,224,0,0,106,224,0,0,106,224,0,0,106,224,0,0,106,224,0,0,110,224,0,0,114,224,0,0,114,224,0,0,116,224,0,0,116,224,0,0,120,224,0,0,124,224,0,0,128,224,0,0,134,224,0,0,138,224,0,0,138,224,0,0,142,224,0,0,144,224,0,0,150,224,0,0,150,224,0,0,150,224,0,0,152,224,0,0,152,224,0,0,156,224,0,0,156,224,0,0,158,224,0,0,158,224,0,0,158,224,0,0,166,224,0,0,166,224,0,0,170,224,0,0,172,224,0,0,174,224,0,0,182,224,0,0,182,224,0,0,182,224,0,0,182,224,0,0,184,224,0,0,184,224,0,0,184,224,0,0,184,224,0,0,194,224,0,0,196,224,0,0,198,224,0,0,200,224,0,0,202,224,0,0,202,224,0,0,202,224,0,0,204,224,0,0,204,224,0,0,204,224,0,0,208,224,0,0,208,224,0,0,212,224,0,0,212,224,0,0,214,224,0,0,216,224,0,0,216,224,0,0,220,224,0,0,220,224,0,0,222,224,0,0,230,224,0,0,238,224,0,0,238,224,0,0,246,224,0,0,246,224,0,0,250,224,0,0,250,224,0,0,250,224,0,0,250,224,0,0,2,225,0,0,2,225,0,0,8,225,0,0,8,225,0,0,14,225,0,0,14,225,0,0,14,225,0,0,18,225,0,0,20,225,0,0,20,225,0,0,22,225,0,0,22,225,0,0,22,225,0,0,22,225,0,0,26,225,0,0,28,225,0,0,34,225,0,0,34,225,0,0,36,225,0,0,36,225,0,0,36,225,0,0,36,225,0,0,42,225,0,0,46,225,0,0,46,225,0,0,46,225,0,0,48,225,0,0,48,225,0,0,48,225,0,0,48,225,0,0,48,225,0,0,52,225,0,0,52,225,0,0,52,225,0,0,58,225,0,0,62,225,0,0,68,225,0,0,72,225,0,0,72,225,0,0,74,225,0,0,74,225,0,0,74,225,0,0,74,225,0,0,74,225,0,0,74,225,0,0,76,225,0,0,76,225,0,0,80,225,0,0,84,225,0,0,86,225,0,0,86,225,0,0,86,225,0,0,86,225,0,0,86,225,0,0,90,225,0,0,90,225,0,0,90,225,0,0,92,225,0,0,92,225,0,0,94,225,0,0,98,225,0,0,98,225,0,0,100,225,0,0,100,225,0,0,100,225,0,0,100,225,0,0,102,225,0,0,104,225,0,0,104,225,0,0,104,225,0,0,104,225,0,0,104,225,0,0,106,225,0,0,106,225,0,0,106,225,0,0,106,225,0,0,106,225,0,0,108,225,0,0,108,225,0,0,114,225,0,0,118,225,0,0,118,225,0,0,118,225,0,0,118,225,0,0,118,225,0,0,118,225,0,0,122,225,0,0,142,225,0,0,142,225,0,0,148,225,0,0,148,225,0,0,148,225,0,0,148,225,0,0,152,225,0,0,152,225,0,0,152,225,0,0,152,225,0,0,154,225,0,0,154,225,0,0,156,225,0,0,160,225,0,0,160,225,0,0,160,225,0,0,162,225,0,0,162,225,0,0,162,225,0,0,162,225,0,0,166,225,0,0,170,225,0,0,172,225,0,0,172,225,0,0,172,225,0,0,172,225,0,0,174,225,0,0,176,225,0,0,182,225,0,0,184,225,0,0,186,225,0,0,186,225,0,0,196,225,0,0,196,225,0,0,196,225,0,0,206,225,0,0,214,225,0,0,218,225,0,0,218,225,0,0,218,225,0,0,222,225,0,0,222,225,0,0,222,225,0,0,222,225,0,0,222,225,0,0,224,225,0,0,224,225,0,0,224,225,0,0,226,225,0,0,226,225,0,0,226,225,0,0,228,225,0,0,230,225,0,0,234,225,0,0,234,225,0,0,234,225,0,0,236,225,0,0,236,225,0,0,242,225,0,0,242,225,0,0,242,225,0,0,242,225,0,0,250,225,0,0,4,226,0,0,4,226,0,0,4,226,0,0,4,226,0,0,4,226,0,0,4,226,0,0,4,226,0,0,4,226,0,0,6,226,0,0,8,226,0,0,8,226,0,0,10,226,0,0,10,226,0,0,10,226,0,0,10,226,0,0,14,226,0,0,16,226,0,0,16,226,0,0,16,226,0,0,16,226,0,0,18,226,0,0,22,226,0,0,22,226,0,0,24,226,0,0,24,226,0,0,24,226,0,0,26,226,0,0,28,226,0,0,32,226,0,0,34,226,0,0,36,226,0,0,40,226,0,0,40,226,0,0,40,226,0,0,40,226,0,0,50,226,0,0,50,226,0,0,54,226,0,0,56,226,0,0,58,226,0,0,60,226,0,0,62,226,0,0,64,226,0,0,66,226,0,0,66,226,0,0,66,226,0,0,66,226,0,0,66,226,0,0,70,226,0,0,70,226,0,0,70,226,0,0,70,226,0,0,74,226,0,0,78,226,0,0,80,226,0,0,80,226,0,0,86,226,0,0,86,226,0,0,88,226,0,0,88,226,0,0,90,226,0,0,92,226,0,0,92,226,0,0,94,226,0,0,94,226,0,0,94,226,0,0,94,226,0,0,94,226,0,0,100,226,0,0,100,226,0,0,100,226,0,0,104,226,0,0,106,226,0,0,106,226,0,0,114,226,0,0,114,226,0,0,114,226,0,0,118,226,0,0,120,226,0,0,120,226,0,0,122,226,0,0,122,226,0,0,126,226,0,0,132,226,0,0,138,226,0,0,138,226,0,0,140,226,0,0,140,226,0,0,142,226,0,0,142,226,0,0,142,226,0,0,142,226,0,0,148,226,0,0,150,226,0,0,150,226,0,0,152,226,0,0,152,226,0,0,152,226,0,0,156,226,0,0,158,226,0,0,160,226,0,0,160,226,0,0,160,226,0,0,164,226,0,0,168,226,0,0,170,226,0,0,170,226,0,0,174,226,0,0,174,226,0,0,176,226,0,0,176,226,0,0,182,226,0,0,182,226,0,0,184,226,0,0,184,226,0,0,184,226,0,0,188,226,0,0,188,226,0,0,190,226,0,0,192,226,0,0,192,226,0,0,192,226,0,0,194,226,0,0,196,226,0,0,198,226,0,0,198,226,0,0,198,226,0,0,198,226,0,0,198,226,0,0,198,226,0,0,198,226,0,0,208,226,0,0,208,226,0,0,208,226,0,0,208,226,0,0,212,226,0,0,216,226,0,0,216,226,0,0,216,226,0,0,216,226,0,0,218,226,0,0,222,226,0,0,222,226,0,0,224,226,0,0,224,226,0,0,224,226,0,0,224,226,0,0,230,226,0,0,234,226,0,0,234,226,0,0,234,226,0,0,234,226,0,0,236,226,0,0,242,226,0,0,242,226,0,0,242,226,0,0,242,226,0,0,242,226,0,0,248,226,0,0,250,226,0,0,250,226,0,0,250,226,0,0,250,226,0,0,250,226,0,0,250,226,0,0,252,226,0,0,252,226,0,0,252,226,0,0,254,226,0,0,8,227,0,0,8,227,0,0,8,227,0,0,8,227,0,0,8,227,0,0,8,227,0,0,10,227,0,0,12,227,0,0,12,227,0,0,12,227,0,0,12,227,0,0,24,227,0,0,24,227,0,0,24,227,0,0,24,227,0,0,24,227,0,0,26,227,0,0,26,227,0,0,26,227,0,0,26,227,0,0,30,227,0,0,30,227,0,0,30,227,0,0,30,227,0,0,36,227,0,0,42,227,0,0,44,227,0,0,44,227,0,0,46,227,0,0,46,227,0,0,48,227,0,0,48,227,0,0,48,227,0,0,48,227,0,0,50,227,0,0,50,227,0,0,52,227,0,0,52,227,0,0,52,227,0,0,56,227,0,0,56,227,0,0,58,227,0,0,58,227,0,0,58,227,0,0,60,227,0,0,72,227,0,0,76,227,0,0,78,227,0,0,82,227,0,0,82,227,0,0,82,227,0,0,82,227,0,0,82,227,0,0,82,227,0,0,86,227,0,0,88,227,0,0,88,227,0,0,90,227,0,0,90,227,0,0,90,227,0,0,90,227,0,0,90,227,0,0,92,227,0,0,92,227,0,0,92,227,0,0,96,227,0,0,100,227,0,0,100,227,0,0,100,227,0,0,100,227,0,0,100,227,0,0,102,227,0,0,104,227,0,0,104,227,0,0,104,227,0,0,104,227,0,0,104,227,0,0,104,227,0,0,104,227,0,0,104,227,0,0,106,227,0,0,106,227,0,0,108,227,0,0,108,227,0,0,108,227,0,0,108,227,0,0,108,227,0,0,112,227,0,0,120,227,0,0,120,227,0,0,122,227,0,0,122,227,0,0,126,227,0,0,126,227,0,0,126,227,0,0,126,227,0,0,134,227,0,0,136,227,0,0,136,227,0,0,136,227,0,0,136,227,0,0,138,227,0,0,140,227,0,0,140,227,0,0,140,227,0,0,154,227,0,0,154,227,0,0,154,227,0,0,156,227,0,0,156,227,0,0,160,227,0,0,160,227,0,0,160,227,0,0,168,227,0,0,168,227,0,0,172,227,0,0,172,227,0,0,178,227,0,0,178,227,0,0,188,227,0,0,188,227,0,0,188,227,0,0,194,227,0,0,194,227,0,0,200,227,0,0,204,227,0,0,206,227,0,0,212,227,0,0,216,227,0,0,216,227,0,0,222,227,0,0,226,227,0,0,228,227,0,0,228,227,0,0,236,227,0,0,236,227,0,0,238,227,0,0,244,227,0,0,246,227,0,0,246,227,0,0,248,227,0,0,248,227,0,0,250,227,0,0,2,228,0,0,2,228,0,0,2,228,0,0,4,228,0,0,8,228,0,0,8,228,0,0,14,228,0,0,20,228,0,0,20,228,0,0,22,228,0,0,26,228,0,0,26,228,0,0,30,228,0,0,32,228,0,0,32,228,0,0,36,228,0,0,38,228,0,0,38,228,0,0,40,228,0,0,40,228,0,0,40,228,0,0,46,228,0,0,48,228,0,0,48,228,0,0,52,228,0,0,58,228,0,0,70,228,0,0,70,228,0,0,74,228,0,0,74,228,0,0,74,228,0,0,74,228,0,0,76,228,0,0,78,228,0,0,78,228,0,0,84,228,0,0,84,228,0,0,86,228,0,0,88,228,0,0,92,228,0,0,100,228,0,0,100,228,0,0,102,228,0,0,102,228,0,0,104,228,0,0,104,228,0,0,108,228,0,0,108,228,0,0,108,228,0,0,112,228,0,0,114,228,0,0,114,228,0,0,116,228,0,0,120,228,0,0,126,228,0,0,130,228,0,0,134,228,0,0,134,228,0,0,140,228,0,0,140,228,0,0,140,228,0,0,142,228,0,0,142,228,0,0,142,228,0,0,144,228,0,0,144,228,0,0,148,228,0,0,150,228,0,0,150,228,0,0,152,228,0,0,152,228,0,0,164,228,0,0,164,228,0,0,164,228,0,0,168,228,0,0,168,228,0,0,168,228,0,0,168,228,0,0,168,228,0,0,168,228,0,0,170,228,0,0,170,228,0,0,172,228,0,0,174,228,0,0,174,228,0,0,174,228,0,0,174,228,0,0,174,228,0,0,176,228,0,0,176,228,0,0,180,228,0,0,186,228,0,0,186,228,0,0,186,228,0,0,186,228,0,0,188,228,0,0,188,228,0,0,190,228,0,0,192,228,0,0,192,228,0,0,192,228,0,0,192,228,0,0,192,228,0,0,198,228,0,0,198,228,0,0,198,228,0,0,200,228,0,0,206,228,0,0,208,228,0,0,210,228,0,0,214,228,0,0,214,228,0,0,214,228,0,0,216,228,0,0,218,228,0,0,226,228,0,0,228,228,0,0,236,228,0,0,238,228,0,0,240,228,0,0,242,228,0,0,244,228,0,0,244,228,0,0,252,228,0,0,0,229,0,0,0,229,0,0,0,229,0,0,0,229,0,0,8,229,0,0,12,229,0,0,12,229,0,0,14,229,0,0,14,229,0,0,18,229,0,0,18,229,0,0,18,229,0,0,18,229,0,0,24,229,0,0,26,229,0,0,26,229,0,0,28,229,0,0,30,229,0,0,30,229,0,0,42,229,0,0,42,229,0,0,48,229,0,0,48,229,0,0,48,229,0,0,50,229,0,0,52,229,0,0,54,229,0,0,56,229,0,0,56,229,0,0,58,229,0,0,62,229,0,0,62,229,0,0,64,229,0,0,64,229,0,0,64,229,0,0,68,229,0,0,68,229,0,0,74,229,0,0,74,229,0,0,76,229,0,0,82,229,0,0,98,229,0,0,98,229,0,0,102,229,0,0,102,229,0,0,104,229,0,0,104,229,0,0,108,229,0,0,110,229,0,0,120,229,0,0,120,229,0,0,120,229,0,0,132,229,0,0,138,229,0,0,138,229,0,0,140,229,0,0,146,229,0,0,148,229,0,0,154,229,0,0,154,229,0,0,154,229,0,0,154,229,0,0,154,229,0,0,154,229,0,0,154,229,0,0,154,229,0,0,154,229,0,0,164,229,0,0,166,229,0,0,170,229,0,0,174,229,0,0,174,229,0,0,176,229,0,0,180,229,0,0,184,229,0,0,192,229,0,0,192,229,0,0,194,229,0,0,200,229,0,0,200,229,0,0,204,229,0,0,204,229,0,0,206,229,0,0,208,229,0,0,208,229,0,0,210,229,0,0,212,229,0,0,212,229,0,0,214,229,0,0,214,229,0,0,216,229,0,0,220,229,0,0,220,229,0,0,220,229,0,0,222,229,0,0,226,229,0,0,226,229,0,0,226,229,0,0,226,229,0,0,226,229,0,0,230,229,0,0,230,229,0,0,234,229,0,0,234,229,0,0,236,229,0,0,236,229,0,0,236,229,0,0,238,229,0,0,238,229,0,0,240,229,0,0,240,229,0,0,242,229,0,0,244,229,0,0,244,229,0,0,244,229,0,0,248,229,0,0,248,229,0,0,248,229,0,0,250,229,0,0,252,229,0,0,8,230,0,0,8,230,0,0,12,230,0,0,12,230,0,0,18,230,0,0,24,230,0,0,24,230,0,0,24,230,0,0,24,230,0,0,26,230,0,0,26,230,0,0,26,230,0,0,26,230,0,0,26,230,0,0,26,230,0,0,32,230,0,0,34,230,0,0,36,230,0,0,38,230,0,0,38,230,0,0,38,230,0,0,38,230,0,0,38,230,0,0,40,230,0,0,40,230,0,0,44,230,0,0,44,230,0,0,44,230,0,0,44,230,0,0,44,230,0,0,50,230,0,0,54,230,0,0,56,230,0,0,56,230,0,0,58,230,0,0,60,230,0,0,64,230,0,0,66,230,0,0,66,230,0,0,66,230,0,0,66,230,0,0,66,230,0,0,68,230,0,0,68,230,0,0,68,230,0,0,68,230,0,0,68,230,0,0,68,230,0,0,70,230,0,0,70,230,0,0,70,230,0,0,70,230,0,0,78,230,0,0,78,230,0,0,82,230,0,0,82,230,0,0,82,230,0,0,88,230,0,0,98,230,0,0,98,230,0,0,98,230,0,0,98,230,0,0,98,230,0,0,98,230,0,0,98,230,0,0,98,230,0,0,98,230,0,0,104,230,0,0,104,230,0,0,110,230,0,0,110,230,0,0,110,230,0,0,112,230,0,0,112,230,0,0,114,230,0,0,114,230,0,0,118,230,0,0,120,230,0,0,120,230,0,0,120,230,0,0,124,230,0,0,126,230,0,0,128,230,0,0,128,230,0,0,130,230,0,0,134,230,0,0,136,230,0,0,138,230,0,0,138,230,0,0,148,230,0,0,148,230,0,0,148,230,0,0,148,230,0,0,148,230,0,0,152,230,0,0,160,230,0,0,166,230,0,0,166,230,0,0,170,230,0,0,172,230,0,0,176,230,0,0,180,230,0,0,184,230,0,0,186,230,0,0,186,230,0,0,188,230,0,0,188,230,0,0,188,230,0,0,188,230,0,0,188,230,0,0,188,230,0,0,188,230,0,0,200,230,0,0,200,230,0,0,204,230,0,0,204,230,0,0,208,230,0,0,208,230,0,0,212,230,0,0,212,230,0,0,212,230,0,0,212,230,0,0,212,230,0,0,212,230,0,0,212,230,0,0,212,230,0,0,212,230,0,0,220,230,0,0,224,230,0,0,224,230,0,0,224,230,0,0,224,230,0,0,228,230,0,0,230,230,0,0,230,230,0,0,230,230,0,0,230,230,0,0,232,230,0,0,234,230,0,0,234,230,0,0,240,230,0,0,242,230,0,0,244,230,0,0,244,230,0,0,2,231,0,0,2,231,0,0,2,231,0,0,2,231,0,0,2,231,0,0,6,231,0,0,6,231,0,0,6,231,0,0,6,231,0,0,6,231,0,0,6,231,0,0,12,231,0,0,12,231,0,0,14,231,0,0,14,231,0,0,16,231,0,0,16,231,0,0,20,231,0,0,20,231,0,0,20,231,0,0,22,231,0,0,22,231,0,0,22,231,0,0,28,231,0,0,30,231,0,0,34,231,0,0,38,231,0,0,38,231,0,0,38,231,0,0,38,231,0,0,38,231,0,0,40,231,0,0,48,231,0,0,48,231,0,0,56,231,0,0,58,231,0,0,72,231,0,0,72,231,0,0,78,231,0,0,78,231,0,0,80,231,0,0,80,231,0,0,80,231,0,0,84,231,0,0,84,231,0,0,84,231,0,0,84,231,0,0,84,231,0,0,84,231,0,0,84,231,0,0,86,231,0,0,88,231,0,0,90,231,0,0,92,231,0,0,94,231,0,0,94,231,0,0,94,231,0,0,94,231,0,0,94,231,0,0,94,231,0,0,94,231,0,0,96,231,0,0,96,231,0,0,102,231,0,0,102,231,0,0,104,231,0,0,104,231,0,0,104,231,0,0,104,231,0,0,106,231,0,0,106,231,0,0,106,231,0,0,106,231,0,0,106,231,0,0,106,231,0,0,106,231,0,0,106,231,0,0,106,231,0,0,106,231,0,0,106,231,0,0,110,231,0,0,110,231,0,0,110,231,0,0,112,231,0,0,112,231,0,0,112,231,0,0,114,231,0,0,120,231,0,0,126,231,0,0,128,231,0,0,132,231,0,0,140,231,0,0,140,231,0,0,140,231,0,0,144,231,0,0,144,231,0,0,144,231,0,0,144,231,0,0,144,231,0,0,144,231,0,0,144,231,0,0,144,231,0,0,150,231,0,0,150,231,0,0,154,231,0,0,158,231,0,0,158,231,0,0,160,231,0,0,162,231,0,0,162,231,0,0,164,231,0,0,164,231,0,0,168,231,0,0,172,231,0,0,172,231,0,0,174,231,0,0,174,231,0,0,174,231,0,0,176,231,0,0,176,231,0,0,176,231,0,0,178,231,0,0,182,231,0,0,184,231,0,0,190,231,0,0,194,231,0,0,194,231,0,0,194,231,0,0,198,231,0,0,200,231,0,0,200,231,0,0,202,231,0,0,206,231,0,0,210,231,0,0,212,231,0,0,214,231,0,0,216,231,0,0,216,231,0,0,218,231,0,0,220,231,0,0,222,231,0,0,226,231,0,0,228,231,0,0,236,231,0,0,236,231,0,0,236,231,0,0,240,231,0,0,240,231,0,0,240,231,0,0,240,231,0,0,240,231,0,0,240,231,0,0,240,231,0,0,240,231,0,0,242,231,0,0,242,231,0,0,242,231,0,0,248,231,0,0,252,231,0,0,252,231,0,0,252,231,0,0,254,231,0,0,0,232,0,0,0,232,0,0,6,232,0,0,10,232,0,0,12,232,0,0,12,232,0,0,16,232,0,0,16,232,0,0,16,232,0,0,18,232,0,0,22,232,0,0,22,232,0,0,24,232,0,0,24,232,0,0,24,232,0,0,24,232,0,0,24,232,0,0,24,232,0,0,24,232,0,0,26,232,0,0,26,232,0,0,26,232,0,0,26,232,0,0,30,232,0,0,34,232,0,0,36,232,0,0,36,232,0,0,36,232,0,0,36,232,0,0,36,232,0,0,38,232,0,0,38,232,0,0,38,232,0,0,38,232,0,0,42,232,0,0,44,232,0,0,50,232,0,0,52,232,0,0,52,232,0,0,54,232,0,0,54,232,0,0,56,232,0,0,56,232,0,0,56,232,0,0,58,232,0,0,62,232,0,0,68,232,0,0,74,232,0,0,78,232,0,0,78,232,0,0,78,232,0,0,78,232,0,0,80,232,0,0,82,232,0,0,84,232,0,0,84,232,0,0,84,232,0,0,88,232,0,0,88,232,0,0,88,232,0,0,90,232,0,0,100,232,0,0,100,232,0,0,104,232,0,0,104,232,0,0,110,232,0,0,110,232,0,0,110,232,0,0,114,232,0,0,114,232,0,0,122,232,0,0,124,232,0,0,128,232,0,0,128,232,0,0,136,232,0,0,142,232,0,0,144,232,0,0,144,232,0,0,144,232,0,0,148,232,0,0,148,232,0,0,150,232,0,0,150,232,0,0,150,232,0,0,152,232,0,0,158,232,0,0,162,232,0,0,168,232,0,0,168,232,0,0,170,232,0,0,172,232,0,0,176,232,0,0,178,232,0,0,180,232,0,0,182,232,0,0,184,232,0,0,186,232,0,0,194,232,0,0,196,232,0,0,200,232,0,0,200,232,0,0,200,232,0,0,200,232,0,0,200,232,0,0,206,232,0,0,206,232,0,0,206,232,0,0,210,232,0,0,210,232,0,0,210,232,0,0,212,232,0,0,212,232,0,0,212,232,0,0,216,232,0,0,216,232,0,0,222,232,0,0,222,232,0,0,222,232,0,0,222,232,0,0,226,232,0,0,228,232,0,0,230,232,0,0,230,232,0,0,232,232,0,0,232,232,0,0,234,232,0,0,234,232,0,0,238,232,0,0,238,232,0,0,238,232,0,0,238,232,0,0,238,232,0,0,238,232,0,0,240,232,0,0,244,232,0,0,248,232,0,0,252,232,0,0,0,233,0,0,2,233,0,0,2,233,0,0,2,233,0,0,2,233,0,0,4,233,0,0,4,233,0,0,6,233,0,0,10,233,0,0,10,233,0,0,10,233,0,0,14,233,0,0,18,233,0,0,20,233,0,0,20,233,0,0,20,233,0,0,20,233,0,0,22,233,0,0,22,233,0,0,28,233,0,0,28,233,0,0,28,233,0,0,30,233,0,0,30,233,0,0,38,233,0,0,38,233,0,0,44,233,0,0,44,233,0,0,44,233,0,0,48,233,0,0,48,233,0,0,48,233,0,0,62,233,0,0,70,233,0,0,74,233,0,0,74,233,0,0,74,233,0,0,78,233,0,0,82,233,0,0,82,233,0,0,90,233,0,0,92,233,0,0,96,233,0,0,96,233,0,0,100,233,0,0,100,233,0,0,104,233,0,0,104,233,0,0,104,233,0,0,104,233,0,0,104,233,0,0,108,233,0,0,110,233,0,0,110,233,0,0,114,233,0,0,114,233,0,0,118,233,0,0,124,233,0,0,124,233,0,0,124,233,0,0,124,233,0,0,124,233,0,0,124,233,0,0,124,233,0,0,130,233,0,0,130,233,0,0,134,233,0,0,134,233,0,0,138,233,0,0,138,233,0,0,146,233,0,0,148,233,0,0,156,233,0,0,158,233,0,0,158,233,0,0,160,233,0,0,162,233,0,0,168,233,0,0,168,233,0,0,168,233,0,0,170,233,0,0,172,233,0,0,172,233,0,0,176,233,0,0,182,233,0,0,188,233,0,0,192,233,0,0,194,233,0,0,198,233,0,0,198,233,0,0,198,233,0,0,198,233,0,0,208,233,0,0,208,233,0,0,210,233,0,0,214,233,0,0,216,233,0,0,216,233,0,0,218,233,0,0,218,233,0,0,218,233,0,0,224,233,0,0,226,233,0,0,230,233,0,0,234,233,0,0,240,233,0,0,242,233,0,0,242,233,0,0,242,233,0,0,248,233,0,0,248,233,0,0,250,233,0,0,250,233,0,0,254,233,0,0,254,233,0,0,254,233,0,0,254,233,0,0,254,233,0,0,254,233,0,0,2,234,0,0,6,234,0,0,10,234,0,0,12,234,0,0,12,234,0,0,12,234,0,0,12,234,0,0,14,234,0,0,14,234,0,0,14,234,0,0,20,234,0,0,20,234,0,0,20,234,0,0,20,234,0,0,20,234,0,0,20,234,0,0,20,234,0,0,26,234,0,0,28,234,0,0,28,234,0,0,28,234,0,0,38,234,0,0,38,234,0,0,38,234,0,0,40,234,0,0,54,234,0,0,60,234,0,0,64,234,0,0,68,234,0,0,68,234,0,0,68,234,0,0,68,234,0,0,68,234,0,0,74,234,0,0,82,234,0,0,90,234,0,0,90,234,0,0,92,234,0,0,92,234,0,0,92,234,0,0,94,234,0,0,96,234,0,0,98,234,0,0,102,234,0,0,102,234,0,0,102,234,0,0,102,234,0,0,102,234,0,0,102,234,0,0,106,234,0,0,108,234,0,0,110,234,0,0,110,234,0,0,112,234,0,0,112,234,0,0,114,234,0,0,118,234,0,0,118,234,0,0,118,234,0,0,118,234,0,0,120,234,0,0,120,234,0,0,128,234,0,0,130,234,0,0,134,234,0,0,134,234,0,0,134,234,0,0,134,234,0,0,136,234,0,0,136,234,0,0,140,234,0,0,140,234,0,0,140,234,0,0,140,234,0,0,146,234,0,0,146,234,0,0,146,234,0,0,150,234,0,0,154,234,0,0,158,234,0,0,162,234,0,0,162,234,0,0,162,234,0,0,170,234,0,0,172,234,0,0,172,234,0,0,174,234,0,0,174,234,0,0,174,234,0,0,174,234,0,0,174,234,0,0,176,234,0,0,184,234,0,0,188,234,0,0,188,234,0,0,190,234,0,0,192,234,0,0,192,234,0,0,196,234,0,0,200,234,0,0,208,234,0,0,212,234,0,0,212,234,0,0,212,234,0,0,212,234,0,0,212,234,0,0,220,234,0,0,222,234,0,0,228,234,0,0,228,234,0,0,228,234,0,0,230,234,0,0,236,234,0,0,236,234,0,0,236,234,0,0,236,234,0,0,236,234,0,0,236,234,0,0,238,234,0,0,240,234,0,0,240,234,0,0,240,234,0,0,240,234,0,0,240,234,0,0,242,234,0,0,242,234,0,0,242,234,0,0,248,234,0,0,0,235,0,0,0,235,0,0,10,235,0,0,10,235,0,0,10,235,0,0,10,235,0,0,10,235,0,0,12,235,0,0,14,235,0,0,14,235,0,0,16,235,0,0,20,235,0,0,24,235,0,0,24,235,0,0,24,235,0,0,24,235,0,0,24,235,0,0,26,235,0,0,28,235,0,0,28,235,0,0,32,235,0,0,32,235,0,0,34,235,0,0,34,235,0,0,40,235,0,0,56,235,0,0,56,235,0,0,58,235,0,0,62,235,0,0,64,235,0,0,64,235,0,0,68,235,0,0,70,235,0,0,70,235,0,0,76,235,0,0,76,235,0,0,80,235,0,0,80,235,0,0,80,235,0,0,80,235,0,0,80,235,0,0,80,235,0,0,86,235,0,0,88,235,0,0,88,235,0,0,90,235,0,0,90,235,0,0,90,235,0,0,94,235,0,0,96,235,0,0,98,235,0,0,104,235,0,0,104,235,0,0,104,235,0,0,110,235,0,0,110,235,0,0,126,235,0,0,128,235,0,0,130,235,0,0,132,235,0,0,132,235,0,0,132,235,0,0,140,235,0,0,144,235,0,0,144,235,0,0,144,235,0,0,146,235,0,0,152,235,0,0,152,235,0,0,156,235,0,0,156,235,0,0,158,235,0,0,162,235,0,0,162,235,0,0,168,235,0,0,170,235,0,0,172,235,0,0,174,235,0,0,180,235,0,0,184,235,0,0,184,235,0,0,184,235,0,0,184,235,0,0,184,235,0,0,186,235,0,0,186,235,0,0,186,235,0,0,188,235,0,0,190,235,0,0,190,235,0,0,190,235,0,0,192,235,0,0,198,235,0,0,200,235,0,0,206,235,0,0,208,235,0,0,212,235,0,0,222,235,0,0,230,235,0,0,232,235,0,0,234,235,0,0,234,235,0,0,238,235,0,0,238,235,0,0,238,235,0,0,242,235,0,0,244,235,0,0,244,235,0,0,244,235,0,0,244,235,0,0,248,235,0,0,252,235,0,0,252,235,0,0,2,236,0,0,4,236,0,0,4,236,0,0,4,236,0,0,4,236,0,0,4,236,0,0,4,236,0,0,8,236,0,0,10,236,0,0,12,236,0,0,12,236,0,0,18,236,0,0,20,236,0,0,22,236,0,0,22,236,0,0,22,236,0,0,24,236,0,0,24,236,0,0,26,236,0,0,26,236,0,0,30,236,0,0,30,236,0,0,36,236,0,0,36,236,0,0,36,236,0,0,36,236,0,0,48,236,0,0,48,236,0,0,48,236,0,0,50,236,0,0,52,236,0,0,52,236,0,0,52,236,0,0,54,236,0,0,56,236,0,0,56,236,0,0,56,236,0,0,64,236,0,0,66,236,0,0,66,236,0,0,66,236,0,0,66,236,0,0,68,236,0,0,76,236,0,0,76,236,0,0,78,236,0,0,78,236,0,0,80,236,0,0,80,236,0,0,86,236,0,0,86,236,0,0,86,236,0,0,92,236,0,0,92,236,0,0,94,236,0,0,98,236,0,0,98,236,0,0,106,236,0,0,106,236,0,0,112,236,0,0,112,236,0,0,112,236,0,0,114,236,0,0,118,236,0,0,118,236,0,0,120,236,0,0,132,236,0,0,132,236,0,0,132,236,0,0,138,236,0,0,138,236,0,0,138,236,0,0,138,236,0,0,140,236,0,0,142,236,0,0,142,236,0,0,142,236,0,0,144,236,0,0,144,236,0,0,144,236,0,0,144,236,0,0,144,236,0,0,144,236,0,0,146,236,0,0,146,236,0,0,146,236,0,0,146,236,0,0,146,236,0,0,148,236,0,0,148,236,0,0,150,236,0,0,150,236,0,0,152,236,0,0,160,236,0,0,160,236,0,0,162,236,0,0,162,236,0,0,164,236,0,0,168,236,0,0,168,236,0,0,170,236,0,0,174,236,0,0,180,236,0,0,180,236,0,0,180,236,0,0,182,236,0,0,182,236,0,0,182,236,0,0,182,236,0,0,182,236,0,0,182,236,0,0,182,236,0,0,182,236,0,0,182,236,0,0,182,236,0,0,186,236,0,0,188,236,0,0,188,236,0,0,188,236,0,0,192,236,0,0,192,236,0,0,194,236,0,0,198,236,0,0,202,236,0,0,202,236,0,0,204,236,0,0,204,236,0,0,206,236,0,0,210,236,0,0,214,236,0,0,214,236,0,0,220,236,0,0,220,236,0,0,222,236,0,0,226,236,0,0,226,236,0,0,228,236,0,0,228,236,0,0,236,236,0,0,238,236,0,0,238,236,0,0,244,236,0,0,246,236,0,0,246,236,0,0,248,236,0,0,248,236,0,0,248,236,0,0,248,236,0,0,252,236,0,0,2,237,0,0,10,237,0,0,10,237,0,0,14,237,0,0,14,237,0,0,14,237,0,0,14,237,0,0,16,237,0,0,16,237,0,0,24,237,0,0,24,237,0,0,30,237,0,0,32,237,0,0,32,237,0,0,32,237,0,0,34,237,0,0,36,237,0,0,36,237,0,0,36,237,0,0,40,237,0,0,42,237,0,0,42,237,0,0,48,237,0,0,50,237,0,0,58,237,0,0,62,237,0,0,64,237,0,0,66,237,0,0,70,237,0,0,72,237,0,0,72,237,0,0,72,237,0,0,74,237,0,0,74,237,0,0,74,237,0,0,74,237,0,0,74,237,0,0,76,237,0,0,80,237,0,0,80,237,0,0,84,237,0,0,86,237,0,0,86,237,0,0,86,237,0,0,86,237,0,0,92,237,0,0,92,237,0,0,92,237,0,0,100,237,0,0,100,237,0,0,104,237,0,0,108,237,0,0,110,237,0,0,110,237,0,0,110,237,0,0,114,237,0,0,114,237,0,0,120,237,0,0,120,237,0,0,120,237,0,0,122,237,0,0,122,237,0,0,124,237,0,0,126,237,0,0,126,237,0,0,128,237,0,0,128,237,0,0,128,237,0,0,128,237,0,0,128,237,0,0,128,237,0,0,132,237,0,0,138,237,0,0,138,237,0,0,138,237,0,0,140,237,0,0,140,237,0,0,140,237,0,0,142,237,0,0,142,237,0,0,146,237,0,0,152,237,0,0,152,237,0,0,154,237,0,0,156,237,0,0,156,237,0,0,166,237,0,0,172,237,0,0,172,237,0,0,178,237,0,0,184,237,0,0,184,237,0,0,184,237,0,0,184,237,0,0,184,237,0,0,188,237,0,0,188,237,0,0,192,237,0,0,196,237,0,0,196,237,0,0,198,237,0,0,198,237,0,0,198,237,0,0,198,237,0,0,204,237,0,0,206,237,0,0,210,237,0,0,214,237,0,0,214,237,0,0,214,237,0,0,214,237,0,0,214,237,0,0,214,237,0,0,216,237,0,0,228,237,0,0,232,237,0,0,234,237,0,0,234,237,0,0,236,237,0,0,242,237,0,0,244,237,0,0,244,237,0,0,244,237,0,0,246,237,0,0,250,237,0,0,254,237,0,0,254,237,0,0,254,237,0,0,0,238,0,0,0,238,0,0,2,238,0,0,2,238,0,0,2,238,0,0,2,238,0,0,2,238,0,0,2,238,0,0,12,238,0,0,14,238,0,0,14,238,0,0,18,238,0,0,20,238,0,0,20,238,0,0,20,238,0,0,20,238,0,0,24,238,0,0,24,238,0,0,26,238,0,0,26,238,0,0,26,238,0,0,26,238,0,0,28,238,0,0,28,238,0,0,28,238,0,0,30,238,0,0,32,238,0,0,32,238,0,0,44,238,0,0,44,238,0,0,44,238,0,0,44,238,0,0,46,238,0,0,48,238,0,0,48,238,0,0,52,238,0,0,54,238,0,0,54,238,0,0,54,238,0,0,62,238,0,0,62,238,0,0,62,238,0,0,66,238,0,0,66,238,0,0,68,238,0,0,70,238,0,0,82,238,0,0,82,238,0,0,82,238,0,0,84,238,0,0,84,238,0,0,84,238,0,0,86,238,0,0,86,238,0,0,86,238,0,0,86,238,0,0,86,238,0,0,90,238,0,0,90,238,0,0,90,238,0,0,92,238,0,0,92,238,0,0,92,238,0,0,92,238,0,0,92,238,0,0,92,238,0,0,92,238,0,0,92,238,0,0,98,238,0,0,98,238,0,0,98,238,0,0,98,238,0,0,98,238,0,0,104,238,0,0,104,238,0,0,106,238,0,0,110,238,0,0,112,238,0,0,120,238,0,0,120,238,0,0,130,238,0,0,132,238,0,0,132,238,0,0,136,238,0,0,138,238,0,0,140,238,0,0,142,238,0,0,144,238,0,0,144,238,0,0,144,238,0,0,144,238,0,0,144,238,0,0,146,238,0,0,146,238,0,0,152,238,0,0,152,238,0,0,154,238,0,0,162,238,0,0,162,238,0,0,162,238,0,0,162,238,0,0,166,238,0,0,166,238,0,0,170,238,0,0,172,238,0,0,174,238,0,0,180,238,0,0,180,238,0,0,188,238,0,0,188,238,0,0,192,238,0,0,196,238,0,0,198,238,0,0,198,238,0,0,198,238,0,0,200,238,0,0,202,238,0,0,202,238,0,0,204,238,0,0,204,238,0,0,204,238,0,0,210,238,0,0,210,238,0,0,214,238,0,0,216,238,0,0,216,238,0,0,216,238,0,0,224,238,0,0,224,238,0,0,224,238,0,0,224,238,0,0,224,238,0,0,224,238,0,0,224,238,0,0,224,238,0,0,226,238,0,0,226,238,0,0,226,238,0,0,230,238,0,0,230,238,0,0,230,238,0,0,234,238,0,0,234,238,0,0,236,238,0,0,236,238,0,0,238,238,0,0,244,238,0,0,254,238,0,0,254,238,0,0,254,238,0,0,254,238,0,0,254,238,0,0,254,238,0,0,0,239,0,0,2,239,0,0,8,239,0,0,14,239,0,0,14,239,0,0,14,239,0,0,14,239,0,0,20,239,0,0,20,239,0,0,20,239,0,0,24,239,0,0,24,239,0,0,28,239,0,0,30,239,0,0,30,239,0,0,30,239,0,0,30,239,0,0,30,239,0,0,30,239,0,0,30,239,0,0,30,239,0,0,34,239,0,0,36,239,0,0,38,239,0,0,38,239,0,0,38,239,0,0,38,239,0,0,38,239,0,0,40,239,0,0,44,239,0,0,44,239,0,0,52,239,0,0,54,239,0,0,54,239,0,0,58,239,0,0,60,239,0,0,60,239,0,0,60,239,0,0,60,239,0,0,62,239,0,0,62,239,0,0,62,239,0,0,62,239,0,0,62,239,0,0,62,239,0,0,62,239,0,0,64,239,0,0,64,239,0,0,70,239,0,0,72,239,0,0,76,239,0,0,76,239,0,0,76,239,0,0,82,239,0,0,88,239,0,0,90,239,0,0,94,239,0,0,94,239,0,0,96,239,0,0,96,239,0,0,98,239,0,0,102,239,0,0,108,239,0,0,110,239,0,0,112,239,0,0,112,239,0,0,112,239,0,0,116,239,0,0,122,239,0,0,124,239,0,0,130,239,0,0,130,239,0,0,130,239,0,0,130,239,0,0,130,239,0,0,130,239,0,0,130,239,0,0,134,239,0,0,134,239,0,0,134,239,0,0,134,239,0,0,140,239,0,0,140,239,0,0,140,239,0,0,142,239,0,0,146,239,0,0,150,239,0,0,152,239,0,0,152,239,0,0,154,239,0,0,154,239,0,0,158,239,0,0,158,239,0,0,158,239,0,0,160,239,0,0,160,239,0,0,164,239,0,0,176,239,0,0,176,239,0,0,176,239,0,0,186,239,0,0,186,239,0,0,188,239,0,0,188,239,0,0,188,239,0,0,190,239,0,0,190,239,0,0,194,239,0,0,198,239,0,0,198,239,0,0,198,239,0,0,204,239,0,0,204,239,0,0,206,239,0,0,206,239,0,0,206,239,0,0,206,239,0,0,210,239,0,0,210,239,0,0,210,239,0,0,210,239,0,0,212,239,0,0,216,239,0,0,218,239,0,0,226,239,0,0,226,239,0,0,230,239,0,0,230,239,0,0,230,239,0,0,232,239,0,0,232,239,0,0,234,239,0,0,238,239,0,0,242,239,0,0,242,239,0,0,246,239,0,0,250,239,0,0,250,239,0,0,250,239,0,0,252,239,0,0,254,239,0,0,0,240,0,0,0,240,0,0,0,240,0,0,4,240,0,0,14,240,0,0,20,240,0,0,22,240,0,0,24,240,0,0,24,240,0,0,26,240,0,0,26,240,0,0,30,240,0,0,30,240,0,0,32,240,0,0,32,240,0,0,34,240,0,0,42,240,0,0,44,240,0,0,46,240,0,0,46,240,0,0,46,240,0,0,50,240,0,0,50,240,0,0,50,240,0,0,60,240,0,0,60,240,0,0,66,240,0,0,66,240,0,0,66,240,0,0,70,240,0,0,70,240,0,0,70,240,0,0,70,240,0,0,70,240,0,0,74,240,0,0,76,240,0,0,78,240,0,0,84,240,0,0,84,240,0,0,84,240,0,0,88,240,0,0,88,240,0,0,90,240,0,0,94,240,0,0,94,240,0,0,106,240,0,0,106,240,0,0,108,240,0,0,110,240,0,0,110,240,0,0,112,240,0,0,112,240,0,0,112,240,0,0,112,240,0,0,114,240,0,0,120,240,0,0,120,240,0,0,122,240,0,0,122,240,0,0,122,240,0,0,124,240,0,0,128,240,0,0,128,240,0,0,130,240,0,0,136,240,0,0,138,240,0,0,142,240,0,0,142,240,0,0,148,240,0,0,148,240,0,0,150,240,0,0,150,240,0,0,152,240,0,0,154,240,0,0,162,240,0,0,164,240,0,0,170,240,0,0,170,240,0,0,174,240,0,0,174,240,0,0,176,240,0,0,178,240,0,0,180,240,0,0,184,240,0,0,194,240,0,0,196,240,0,0,196,240,0,0,196,240,0,0,196,240,0,0,198,240,0,0,202,240,0,0,202,240,0,0,206,240,0,0,206,240,0,0,206,240,0,0,206,240,0,0,206,240,0,0,206,240,0,0,206,240,0,0,210,240,0,0,212,240,0,0,212,240,0,0,214,240,0,0,216,240,0,0,218,240,0,0,218,240,0,0,220,240,0,0,220,240,0,0,222,240,0,0,222,240,0,0,224,240,0,0,224,240,0,0,224,240,0,0,234,240,0,0,234,240,0,0,234,240,0,0,234,240,0,0,240,240,0,0,242,240,0,0,242,240,0,0,242,240,0,0,242,240,0,0,242,240,0,0,242,240,0,0,242,240,0,0,242,240,0,0,244,240,0,0,246,240,0,0,246,240,0,0,248,240,0,0,250,240,0,0,250,240,0,0,250,240,0,0,250,240,0,0,250,240,0,0,252,240,0,0,252,240,0,0,254,240,0,0,0,241,0,0,0,241,0,0,2,241,0,0,2,241,0,0,2,241,0,0,2,241,0,0,10,241,0,0,12,241,0,0,14,241,0,0,22,241,0,0,32,241,0,0,40,241,0,0,46,241,0,0,46,241,0,0,46,241,0,0,50,241,0,0,52,241,0,0,58,241,0,0,60,241,0,0,62,241,0,0,62,241,0,0,62,241,0,0,62,241,0,0,68,241,0,0,68,241,0,0,68,241,0,0,70,241,0,0,70,241,0,0,70,241,0,0,72,241,0,0,72,241,0,0,72,241,0,0,72,241,0,0,78,241,0,0,82,241,0,0,82,241,0,0,82,241,0,0,82,241,0,0,84,241,0,0,84,241,0,0,86,241,0,0,88,241,0,0,88,241,0,0,88,241,0,0,94,241,0,0,96,241,0,0,96,241,0,0,96,241,0,0,100,241,0,0,102,241,0,0,104,241,0,0,106,241,0,0,106,241,0,0,108,241,0,0,108,241,0,0,112,241,0,0,112,241,0,0,116,241,0,0,118,241,0,0,118,241,0,0,118,241,0,0,120,241,0,0,122,241,0,0,122,241,0,0,134,241,0,0,134,241,0,0,136,241,0,0,136,241,0,0,136,241,0,0,138,241,0,0,142,241,0,0,142,241,0,0,142,241,0,0,142,241,0,0,142,241,0,0,144,241,0,0,146,241,0,0,146,241,0,0,146,241,0,0,148,241,0,0,152,241,0,0,152,241,0,0,152,241,0,0,152,241,0,0,152,241,0,0,152,241,0,0,152,241,0,0,152,241,0,0,152,241,0,0,152,241,0,0,162,241,0,0,164,241,0,0,164,241,0,0,164,241,0,0,168,241,0,0,170,241,0,0,174,241,0,0,174,241,0,0,174,241,0,0,174,241,0,0,182,241,0,0,182,241,0,0,186,241,0,0,186,241,0,0,186,241,0,0,186,241,0,0,188,241,0,0,192,241,0,0,192,241,0,0,192,241,0,0,192,241,0,0,192,241,0,0,192,241,0,0,192,241,0,0,192,241,0,0,192,241,0,0,196,241,0,0,196,241,0,0,196,241,0,0,198,241,0,0,202,241,0,0,208,241,0,0,210,241,0,0,210,241,0,0,210,241,0,0,210,241,0,0,210,241,0,0,216,241,0,0,216,241,0,0,216,241,0,0,216,241,0,0,216,241,0,0,220,241,0,0,220,241,0,0,226,241,0,0,226,241,0,0,228,241,0,0,230,241,0,0,252,241,0,0,252,241,0,0,252,241,0,0,2,242,0,0,6,242,0,0,6,242,0,0,6,242,0,0,8,242,0,0,14,242,0,0,14,242,0,0,14,242,0,0,18,242,0,0,22,242,0,0,22,242,0,0,24,242,0,0,28,242,0,0,28,242,0,0,32,242,0,0,32,242,0,0,36,242,0,0,36,242,0,0,36,242,0,0,36,242,0,0,36,242,0,0,36,242,0,0,36,242,0,0,42,242,0,0,48,242,0,0,50,242,0,0,50,242,0,0,50,242,0,0,54,242,0,0,56,242,0,0,58,242,0,0,62,242,0,0,62,242,0,0,64,242,0,0,66,242,0,0,74,242,0,0,74,242,0,0,80,242,0,0,82,242,0,0,84,242,0,0,84,242,0,0,88,242,0,0,94,242,0,0,94,242,0,0,96,242,0,0,96,242,0,0,96,242,0,0,96,242,0,0,96,242,0,0,96,242,0,0,96,242,0,0,96,242,0,0,96,242,0,0,96,242,0,0,96,242,0,0,96,242,0,0,98,242,0,0,98,242,0,0,98,242,0,0,102,242,0,0,104,242,0,0,104,242,0,0,104,242,0,0,106,242,0,0,106,242,0,0,110,242,0,0,114,242,0,0,114,242,0,0,116,242,0,0,126,242,0,0,126,242,0,0,126,242,0,0,126,242,0,0,130,242,0,0,130,242,0,0,134,242,0,0,140,242,0,0,140,242,0,0,140,242,0,0,140,242,0,0,140,242,0,0,140,242,0,0,140,242,0,0,140,242,0,0,140,242,0,0,144,242,0,0,144,242,0,0,148,242,0,0,156,242,0,0,156,242,0,0,158,242,0,0,164,242,0,0,164,242,0,0,164,242,0,0,166,242,0,0,166,242,0,0,168,242,0,0,170,242,0,0,174,242,0,0,178,242,0,0,184,242,0,0,188,242,0,0,188,242,0,0,188,242,0,0,188,242,0,0,190,242,0,0,192,242,0,0,192,242,0,0,192,242,0,0,194,242,0,0,194,242,0,0,198,242,0,0,200,242,0,0,202,242,0,0,202,242,0,0,202,242,0,0,204,242,0,0,204,242,0,0,210,242,0,0,210,242,0,0,214,242,0,0,216,242,0,0,216,242,0,0,218,242,0,0,224,242,0,0,224,242,0,0,224,242,0,0,226,242,0,0,228,242,0,0,232,242,0,0,232,242,0,0,234,242,0,0,242,242,0,0,246,242,0,0,248,242,0,0,248,242,0,0,248,242,0,0,252,242,0,0,0,243,0,0,0,243,0,0,0,243,0,0,6,243,0,0,12,243,0,0,12,243,0,0,14,243,0,0,18,243,0,0,20,243,0,0,20,243,0,0,20,243,0,0,24,243,0,0,24,243,0,0,24,243,0,0,26,243,0,0,34,243,0,0,38,243,0,0,38,243,0,0,38,243,0,0,38,243,0,0,38,243,0,0,40,243,0,0,46,243,0,0,48,243,0,0,48,243,0,0,50,243,0,0,60,243,0,0,62,243,0,0,68,243,0,0,68,243,0,0,68,243,0,0,70,243,0,0,72,243,0,0,74,243,0,0,80,243,0,0,80,243,0,0,82,243,0,0,82,243,0,0,82,243,0,0,82,243,0,0,86,243,0,0,86,243,0,0,88,243,0,0,90,243,0,0,90,243,0,0,94,243,0,0,94,243,0,0,96,243,0,0,100,243,0,0,100,243,0,0,106,243,0,0,112,243,0,0,112,243,0,0,112,243,0,0,112,243,0,0,114,243,0,0,114,243,0,0,116,243,0,0,118,243,0,0,118,243,0,0,124,243,0,0,124,243,0,0,126,243,0,0,126,243,0,0,128,243,0,0,128,243,0,0,134,243,0,0,134,243,0,0,134,243,0,0,134,243,0,0,134,243,0,0,134,243,0,0,134,243,0,0,134,243,0,0,134,243,0,0,134,243,0,0,138,243,0,0,138,243,0,0,144,243,0,0,146,243,0,0,148,243,0,0,156,243,0,0,156,243,0,0,158,243,0,0,160,243,0,0,166,243,0,0,166,243,0,0,168,243,0,0,168,243,0,0,176,243,0,0,176,243,0,0,176,243,0,0,178,243,0,0,180,243,0,0,180,243,0,0,180,243,0,0,184,243,0,0,186,243,0,0,194,243,0,0,194,243,0,0,194,243,0,0,194,243,0,0,200,243,0,0,200,243,0,0,202,243,0,0,202,243,0,0,204,243,0,0,204,243,0,0,206,243,0,0,208,243,0,0,208,243,0,0,208,243,0,0,208,243,0,0,210,243,0,0,210,243,0,0,214,243,0,0,214,243,0,0,214,243,0,0,216,243,0,0,216,243,0,0,222,243,0,0,222,243,0,0,224,243,0,0,230,243,0,0,234,243,0,0,234,243,0,0,244,243,0,0,252,243,0,0,252,243,0,0,252,243,0,0,254,243,0,0,0,244,0,0,4,244,0,0,4,244,0,0,10,244,0,0,12,244,0,0,12,244,0,0,14,244,0,0,16,244,0,0,16,244,0,0,16,244,0,0,16,244,0,0,20,244,0,0,20,244,0,0,22,244,0,0,22,244,0,0,24,244,0,0,26,244,0,0,30,244,0,0,36,244,0,0,36,244,0,0,44,244,0,0,44,244,0,0,46,244,0,0,46,244,0,0,48,244,0,0,48,244,0,0,50,244,0,0,54,244,0,0,54,244,0,0,54,244,0,0,54,244,0,0,56,244,0,0,58,244,0,0,58,244,0,0,58,244,0,0,62,244,0,0,62,244,0,0,2,128,175,22,119,96,7,0,3,128,95,208,237,27,8,0,5,0,246,29,16,183,8,0,5,0,246,29,251,191,8,0,5,0,246,29,239,200,8,0,9,0,9,60,29,120,7,0,10,128,205,131,171,68,6,0,11,0,69,152,219,204,9,0,11,0,69,152,249,204,9,0,12,128,41,238,96,8,7,0,12,128,121,27,194,138,7,0,18,0,45,122,49,36,6,0,20,128,135,177,204,225,5,0,25,128,79,239,194,138,7,0,26,128,97,35,145,114,7,0,26,128,185,133,253,38,9,0,26,128,185,133,207,40,9,0,28,128,222,12,183,221,5,0,28,128,136,62,159,170,11,0,29,128,195,116,16,183,8,0,29,128,195,116,251,191,8,0,29,128,195,116,239,200,8,0,29,0,120,139,224,123,9,0,29,0,120,139,29,124,9,0,29,0,120,139,109,124,9,0,33,128,218,4,4,52,10,0,34,0,179,82,96,112,6,0,35,0,189,146,16,183,8,0,35,0,189,146,251,191,8,0,35,0,189,146,239,200,8,0,36,128,192,231,47,102,6,0,36,128,165,124,113,0,9,0,36,128,165,124,160,0,9,0,39,0,148,29,76,187,6,0,40,0,248,69,191,86,7,0,40,128,123,247,18,210,8,0,40,128,123,247,113,210,8,0,40,128,123,247,217,210,8,0,42,128,126,91,67,73,6,0,45,0,6,52,134,19,7,0,47,128,123,2,216,142,9,0,50,0,62,121,83,201,7,0,52,128,95,33,16,223,5,0,52,128,217,200,145,114,7,0,55,0,36,172,4,52,10,0,57,0,6,164,100,224,7,0,65,128,189,174,12,99,7,0,65,0,195,0,219,238,8,0,65,0,195,0,39,240,8,0,65,0,195,0,117,241,8,0,67,128,135,19,183,249,6,0,68,0,112,167,32,124,11,0,69,0,118,201,104,238,6,0,70,128,230,36,103,48,7,0,71,0,170,242,23,27,7,0,73,0,39,154,75,112,7,0,78,0,72,20,121,5,8,0,78,128,174,13,156,152,10,0,78,0,79,51,141,91,11,0,79,128,215,157,16,183,8,0,79,128,215,157,251,191,8,0,79,128,215,157,239,200,8,0,80,0,141,124,181,134,7,0,81,128,83,34,134,19,7,0,81,128,221,59,254,171,7,0,83,0,168,16,229,109,7,0,84,0,227,247,12,27,8,0,85,0,66,132,4,52,10,0,86,0,94,198,134,19,7,0,86,0,189,70,15,143,11,0,90,0,126,16,169,61,6,0,91,0,125,27,20,74,8,0,91,0,125,27,66,74,8,0,91,0,125,27,119,74,8,0,91,0,207,58,69,33,11,0,92,128,151,49,70,128,6,0,92,128,26,15,102,15,7,0,92,0,25,247,134,19,7,0,93,0,168,26,110,30,6,0,96,0,254,83,60,152,7,0,96,128,212,147,85,4,8,0,96,0,254,83,128,112,8,0,96,0,35,124,115,161,9,0,96,0,35,124,104,162,9,0,97,0,15,170,26,7,7,0,97,0,172,59,205,87,7,0,98,0,251,192,4,52,10,0,100,0,220,247,193,100,10,0,100,0,220,247,89,103,10,0,102,128,214,223,23,27,7,0,103,0,58,238,64,47,7,0,106,128,96,181,159,97,11,0,108,0,33,116,248,5,7,0,110,128,156,99,4,52,10,0,113,0,176,45,200,215,6,0,114,128,28,219,216,51,9,0,114,128,28,219,175,52,9,0,115,0,166,41,3,124,6,0,115,128,197,5,194,138,7,0,117,0,239,10,51,18,7,0,117,0,239,10,194,138,7,0,118,0,17,186,194,138,7,0,119,0,99,244,116,72,7,0,120,128,230,207,238,219,7,0,123,0,83,229,255,234,5,0,125,128,222,213,23,27,7,0,127,128,52,85,12,99,7,0,127,128,184,138,20,49,11,0,128,0,148,130,102,214,8,0,128,0,148,130,14,218,8,0,129,128,73,206,194,138,7,0,132,128,70,198,45,226,8,0,132,128,70,198,130,231,8,0,133,0,187,118,202,149,10,0,136,128,17,67,135,44,7,0,138,0,10,184,117,71,7,0,138,0,227,160,58,212,8,0,138,0,227,160,201,212,8,0,138,0,53,145,132,21,9,0,138,0,53,145,157,23,9,0,139,128,216,106,12,99,7,0,141,128,152,199,152,65,7,0,141,128,134,130,175,88,9,0,141,128,134,130,254,88,9,0,141,128,134,130,92,89,9,0,141,128,134,130,173,89,9,0,143,128,134,96,103,40,11,0,144,128,112,5,29,120,7,0,144,128,212,198,18,210,8,0,144,128,212,198,113,210,8,0,144,128,212,198,217,210,8,0,146,0,192,42,58,35,9,0,146,0,192,42,31,36,9,0,148,128,13,185,117,71,7,0,150,128,125,205,97,16,7,0,150,128,161,7,175,148,8,0,150,128,161,7,251,148,8,0,150,128,161,7,72,149,8,0,150,128,225,30,16,183,8,0,150,128,131,105,16,183,8,0,150,128,225,30,251,191,8,0,150,128,131,105,251,191,8,0,150,128,225,30,239,200,8,0,150,128,131,105,239,200,8,0,150,128,13,60,220,137,10,0,150,128,13,60,16,138,10,0,151,128,184,177,47,13,7,0,153,0,171,135,219,238,8,0,153,0,171,135,39,240,8,0,153,0,171,135,117,241,8,0,154,0,135,28,242,239,5,0,154,128,157,226,102,214,8,0,154,128,157,226,14,218,8,0,154,128,157,226,161,207,10,0,155,128,110,0,4,52,10,0,157,0,192,104,43,188,7,0,163,128,102,114,29,120,7,0,164,128,123,198,183,249,6,0,165,0,136,201,29,120,7,0,167,0,6,253,90,177,8,0,167,0,6,253,165,177,8,0,169,128,198,142,177,222,7,0,169,0,53,234,16,183,8,0,169,0,53,234,251,191,8,0,169,0,53,234,239,200,8,0,169,0,173,77,216,51,9,0,169,0,173,77,175,52,9,0,171,0,253,45,42,98,11,0,177,128,67,114,50,206,10,0,178,0,123,146,161,110,10,0,178,0,123,146,2,112,10,0,181,128,228,148,226,11,7,0,181,128,227,26,34,7,11,0,181,128,227,26,49,7,11,0,186,0,234,105,138,111,7,0,187,0,94,82,42,62,6,0,191,128,37,236,38,117,8,0,193,128,56,31,65,41,7,0,193,128,190,64,16,183,8,0,193,128,190,64,251,191,8,0,193,128,190,64,239,200,8,0,194,0,191,26,196,109,6,0,195,0,178,55,134,2,6,0,196,0,22,142,62,223,9,0,196,0,22,142,64,224,9,0,196,0,22,142,93,225,9,0,196,0,22,142,234,157,10,0,197,128,105,239,36,231,5,0,197,128,80,3,132,21,9,0,197,128,80,3,157,23,9,0,197,0,168,209,89,147,10,0,199,0,200,85,164,16,9,0,199,0,200,85,141,17,9,0,200,0,195,104,35,240,7,0,200,0,189,76,102,214,8,0,200,0,189,76,14,218,8,0,202,0,82,253,193,24,6,0,203,128,155,134,209,84,7,0,203,128,155,134,177,105,7,0,206,0,184,30,246,243,9,0,206,0,184,30,59,245,9,0,206,0,184,30,131,246,9,0,206,128,40,148,190,54,11,0,208,128,240,192,69,67,11,0,209,128,42,180,194,138,7,0,210,0,76,134,251,83,6,0,212,0,161,94,118,151,7,0,213,128,101,42,66,3,7,0,214,0,141,193,34,122,6,0,214,0,141,193,99,122,6,0,214,0,188,65,222,214,10,0,216,0,209,71,35,37,11,0,221,0,203,141,56,238,7,0,224,0,188,208,161,110,10,0,224,0,188,208,2,112,10,0,226,0,7,16,23,27,7,0,229,0,111,83,98,237,6,0,229,128,176,25,134,19,7,0,229,128,225,137,102,214,8,0,229,128,225,137,14,218,8,0,230,0,6,209,91,244,5,0,230,128,19,204,29,14,6,0,230,128,19,204,73,130,7,0,232,0,151,144,46,174,9,0,232,0,151,144,74,174,9,0,234,0,252,82,228,66,7,0,238,128,234,183,194,138,7,0,238,0,220,247,21,71,9,0,238,0,220,247,100,72,9,0,238,0,220,247,181,73,9,0,238,0,220,247,11,75,9,0,241,0,80,174,65,76,7,0,241,0,87,0,176,161,10,0,241,0,87,0,202,161,10,0,242,0,24,243,154,20,10,0,242,0,24,243,190,20,10,0,242,0,24,243,214,20,10,0,243,0,76,196,83,126,8,0,244,128,40,84,25,134,9,0,244,128,40,84,147,134,9,0,244,128,40,84,7,135,9,0,244,128,40,84,174,135,9,0,244,128,40,84,71,136,9,0,246,128,196,139,26,7,7,0,246,0,10,76,223,233,10,0,250,128,196,65,23,27,7,0,250,128,13,99,145,114,7,0,252,0,76,202,161,110,10,0,252,0,76,202,2,112,10,0,253,0,69,196,244,253,9,0,253,0,69,196,22,254,9,0,1,129,253,136,66,3,7,0,3,129,206,242,193,71,11,0,4,1,196,224,58,212,8,0,4,1,196,224,201,212,8,0,5,1,162,9,218,93,7,0,5,1,95,44,71,65,10,0,5,1,95,44,103,65,10,0,5,1,95,44,130,65,10,0,9,1,237,6,78,24,11,0,16,1,86,135,96,18,7,0,16,129,186,183,45,226,8,0,16,129,186,183,130,231,8,0,16,1,86,135,166,176,10,0,17,129,17,176,160,79,8,0,18,129,82,104,67,17,7,0,18,129,157,38,201,214,7,0,20,1,31,235,100,92,7,0,21,1,49,103,163,57,7,0,21,1,49,103,194,138,7,0,21,1,171,201,194,138,7,0,21,1,171,201,135,149,7,0,21,129,65,29,209,19,10,0,24,1,152,103,96,8,7,0,24,1,0,79,16,183,8,0,24,1,0,79,251,191,8,0,24,1,0,79,239,200,8,0,26,129,16,162,12,94,9,0,26,129,16,162,39,94,9,0,31,129,205,175,114,170,11,0,32,1,83,126,154,241,5,0,38,129,23,101,12,99,7,0,38,129,23,101,194,138,7,0,40,129,224,45,74,240,6,0,40,129,224,45,95,60,9,0,40,129,224,45,133,60,9,0,41,1,59,77,4,52,10,0,43,1,127,223,165,224,8,0,43,1,127,223,86,225,8,0,44,129,163,28,27,218,10,0,45,129,254,166,204,21,11,0,45,129,254,166,81,30,11,0,46,129,26,177,129,80,7,0,50,1,157,128,62,130,6,0,50,1,50,105,92,9,8,0,50,1,157,128,144,98,8,0,50,1,157,128,195,98,8,0,50,1,157,128,245,98,8,0,53,129,241,106,166,118,11,0,57,129,82,93,79,123,6,0,58,1,20,200,23,27,7,0,61,129,39,149,139,14,10,0,61,129,39,149,50,15,10,0,64,1,226,40,177,105,7,0,67,1,253,161,135,149,7,0,67,1,253,161,214,99,10,0,67,1,253,161,22,100,10,0,67,1,253,161,82,100,10,0,72,1,43,28,76,112,6,0,72,129,54,197,132,21,9,0,72,129,54,197,157,23,9,0,76,129,64,127,240,248,5,0,76,129,5,118,194,138,7,0,76,1,52,150,70,80,9,0,77,1,109,134,164,16,9,0,77,1,109,134,141,17,9,0,81,1,225,23,233,16,7,0,81,1,222,100,75,112,7,0,82,129,122,250,16,232,7,0,82,129,114,223,16,183,8,0,82,129,114,223,251,191,8,0,82,129,114,223,239,200,8,0,85,1,88,233,75,247,8,0,85,1,88,233,171,247,8,0,88,1,239,9,207,70,7,0,88,129,197,29,219,238,8,0,88,129,197,29,39,240,8,0,88,129,197,29,117,241,8,0,88,1,7,81,115,161,9,0,88,1,7,81,104,162,9,0,91,1,171,122,60,152,7,0,91,1,171,122,106,255,9,0,92,1,77,159,102,214,8,0,92,1,77,159,14,218,8,0,94,1,42,4,143,209,6,0,95,1,106,220,89,5,7,0,99,129,19,246,7,109,10,0,99,129,19,246,36,109,10,0,99,129,19,246,62,109,10,0,100,1,153,167,193,100,10,0,100,1,153,167,89,103,10,0,101,1,47,102,222,14,7,0,102,1,102,215,135,61,7,0,105,129,75,105,127,254,7,0,105,1,161,212,139,163,9,0,105,1,161,212,241,163,9,0,107,129,111,51,3,191,9,0,107,129,111,51,78,191,9,0,110,129,61,103,131,222,8,0,110,129,61,103,38,223,8,0,110,129,61,103,206,223,8,0,110,129,32,217,4,52,10,0,114,1,34,176,106,231,10,0,117,1,46,190,161,77,7,0,123,129,148,255,228,212,7,0,123,129,153,249,14,137,9,0,123,129,153,249,201,137,9,0,123,1,79,209,153,113,10,0,123,1,79,209,27,114,10,0,124,1,93,21,183,82,7,0,125,1,4,110,194,241,6,0,125,1,65,72,224,6,7,0,126,1,14,105,176,68,7,0,130,1,216,47,73,38,7,0,130,129,186,148,250,159,8,0,131,129,7,64,52,87,10,0,131,129,7,64,117,87,10,0,131,129,64,233,52,3,11,0,132,129,5,182,135,149,7,0,132,129,5,182,0,168,7,0,132,129,10,12,127,136,11,0,140,129,11,27,73,38,7,0,142,129,108,106,15,98,11,0,143,129,121,28,132,21,9,0,143,129,121,28,157,23,9,0,143,129,123,42,196,178,11,0,145,129,231,242,111,79,9,0,145,129,231,242,167,79,9,0,145,129,231,242,224,79,9,0,146,1,84,148,154,15,8,0,148,1,122,234,62,223,9,0,148,1,122,234,64,224,9,0,148,1,122,234,93,225,9,0,149,1,231,178,81,126,9,0,149,1,231,178,166,126,9,0,149,1,231,178,53,127,9,0,152,129,51,51,82,121,11,0,154,129,65,29,218,93,7,0,155,1,217,248,39,184,9,0,155,1,217,248,92,184,9,0,157,129,182,163,111,4,9,0,157,129,182,163,41,6,9,0,159,1,3,41,167,113,9,0,159,1,3,41,7,114,9,0,159,1,3,41,108,114,9,0,159,1,3,41,202,114,9,0,159,1,3,41,49,115,9,0,160,129,160,236,16,183,8,0,160,129,160,236,251,191,8,0,160,129,160,236,239,200,8,0,160,129,215,6,228,94,11,0,161,1,76,206,144,81,7,0,161,1,33,219,60,152,7,0,161,1,33,219,151,159,7,0,161,1,33,219,175,159,7,0,161,1,33,219,226,164,7,0,162,129,27,167,102,214,8,0,162,129,27,167,14,218,8,0,163,129,69,242,60,215,5,0,166,129,25,41,65,41,7,0,166,129,25,41,201,42,7,0,168,129,127,254,98,35,6,0,168,129,174,250,19,90,7,0,170,129,237,101,203,74,7,0,171,129,172,97,131,222,8,0,171,129,172,97,38,223,8,0,171,129,172,97,206,223,8,0,172,1,93,158,248,5,7,0,172,129,194,5,238,81,10,0,172,1,93,158,143,10,11,0,173,129,66,237,29,120,7,0,175,129,28,79,194,138,7,0,177,129,155,235,219,238,8,0,177,129,155,235,39,240,8,0,177,129,155,235,117,241,8,0,178,129,213,252,23,27,7,0,181,1,252,92,136,1,7,0,182,1,233,114,253,38,9,0,182,1,233,114,207,40,9,0,183,1,136,84,55,221,10,0,187,1,170,7,86,243,6,0,188,1,169,29,145,114,7,0,189,129,111,245,4,44,7,0,190,129,6,73,64,70,7,0,190,1,80,187,62,150,9,0,190,1,80,187,101,150,9,0,191,129,64,233,110,40,7,0,192,1,207,28,231,178,11,0,193,129,17,91,117,51,7,0,193,129,17,91,111,53,7,0,193,129,17,91,207,136,7,0,193,1,223,69,60,152,7,0,193,1,223,69,226,164,7,0,193,129,17,91,197,176,7,0,193,1,103,126,132,21,9,0,193,1,103,126,157,23,9,0,196,1,252,179,194,138,7,0,196,1,215,38,106,50,9,0,196,1,215,38,129,50,9,0,198,129,57,154,194,138,7,0,200,1,44,77,135,149,7,0,200,1,44,77,25,18,10,0,201,129,111,40,116,72,7,0,205,129,210,151,240,78,6,0,206,1,102,36,43,188,7,0,207,129,105,115,198,245,7,0,212,129,97,251,194,138,7,0,215,1,46,126,168,54,8,0,218,129,137,17,57,5,7,0,222,129,140,172,4,52,10,0,223,1,52,208,90,14,7,0,223,1,24,69,43,89,7,0,223,1,24,69,2,92,7,0,223,129,56,12,45,226,8,0,223,129,56,12,130,231,8,0,223,1,248,133,163,161,11,0,226,129,112,37,206,35,7,0,226,129,112,37,9,36,7,0,228,1,220,145,209,19,10,0,229,1,195,121,60,152,7,0,229,1,195,121,226,164,7,0,229,129,41,157,135,2,9,0,229,129,41,157,47,3,9,0,230,1,84,157,103,83,6,0,230,129,230,175,163,57,7,0,230,1,18,54,223,12,11,0,231,1,36,255,113,166,6,0,231,1,118,58,49,35,10,0,231,1,118,58,77,35,10,0,234,129,3,72,124,114,8,0,235,129,14,99,64,205,7,0,235,129,14,99,127,205,7,0,235,129,14,99,170,205,7,0,237,129,33,119,23,27,7,0,240,1,240,1,134,19,7,0,242,1,16,36,16,183,8,0,242,1,16,36,251,191,8,0,242,1,16,36,239,200,8,0,243,129,82,182,253,3,11,0,244,1,226,154,252,242,8,0,244,1,226,154,240,243,8,0,246,129,171,122,96,226,5,0,249,1,15,22,118,81,7,0,254,1,25,190,57,15,6,0,254,129,138,219,233,156,6,0,254,129,155,6,72,236,6,0,255,129,171,92,2,251,6,0,1,2,81,248,50,83,7,0,1,2,178,11,102,13,11,0,5,130,19,79,229,249,8,0,5,130,19,79,0,250,8,0,14,130,155,43,45,226,8,0,14,130,155,43,130,231,8,0,17,2,217,184,100,92,7,0,18,2,221,28,0,55,7,0,18,2,43,113,34,144,9,0,18,2,43,113,77,144,9,0,19,130,78,1,47,13,7,0,20,2,234,2,222,14,7,0,20,130,201,108,168,43,7,0,21,130,59,28,151,186,7,0,21,130,240,89,4,52,10,0,22,2,17,249,19,245,8,0,22,2,17,249,76,245,8,0,23,2,130,180,192,2,7,0,25,130,160,228,249,251,5,0,27,130,133,76,73,30,6,0,27,2,93,133,75,148,7,0,27,2,93,133,191,158,7,0,27,2,37,120,232,211,10,0,28,2,220,43,194,138,7,0,28,2,220,43,86,56,9,0,28,2,220,43,9,57,9,0,29,2,81,101,23,253,6,0,32,130,81,190,81,126,9,0,32,130,81,190,166,126,9,0,32,130,81,190,53,127,9,0,33,130,23,101,39,95,11,0,35,2,122,35,177,4,7,0,37,130,4,141,209,84,7,0,40,2,11,146,100,92,7,0,42,130,122,27,253,38,9,0,42,130,122,27,207,40,9,0,42,130,28,81,44,56,11,0,50,130,224,248,39,47,9,0,50,130,224,248,54,48,9,0,51,2,106,212,13,230,10,0,56,130,86,69,101,231,7,0,60,2,169,166,136,1,7,0,60,2,169,166,10,2,7,0,61,130,81,190,113,74,10,0,61,130,81,190,132,74,10,0,62,2,63,193,51,104,7,0,63,130,89,53,119,96,7,0,64,2,59,78,81,222,5,0,65,2,132,159,216,51,9,0,65,2,132,159,175,52,9,0,66,130,139,152,105,216,6,0,68,2,163,187,194,138,7,0,68,130,204,241,107,3,8,0,68,130,116,253,57,67,8,0,68,130,116,253,107,67,8,0,73,130,58,255,142,9,7,0,75,130,121,42,45,226,8,0,75,130,121,42,130,231,8,0,76,2,52,36,192,2,7,0,76,2,83,207,161,77,7,0,77,130,215,120,182,13,7,0,77,130,18,237,18,210,8,0,77,130,18,237,113,210,8,0,77,130,18,237,217,210,8,0,79,130,8,137,102,214,8,0,79,130,8,137,14,218,8,0,79,130,25,135,125,67,10,0,79,130,25,135,69,68,10,0,82,130,92,117,233,16,7,0,84,130,163,236,163,57,7,0,84,2,126,241,58,172,8,0,84,2,116,174,165,224,8,0,84,2,116,174,86,225,8,0,85,2,215,90,240,66,9,0,85,2,215,90,119,67,9,0,86,2,99,38,29,120,7,0,87,2,180,148,194,138,7,0,88,130,56,30,60,77,10,0,88,130,56,30,232,77,10,0,90,2,46,80,4,52,10,0,92,2,73,106,172,123,6,0,92,130,65,130,60,152,7,0,92,130,65,130,231,4,10,0,96,2,174,170,241,217,6,0,96,2,231,242,145,114,7,0,96,130,142,120,38,60,11,0,100,2,37,144,248,46,8,0,103,2,7,237,119,96,7,0,105,2,234,2,228,216,5,0,105,2,234,2,43,163,6,0,109,2,246,157,145,114,7,0,110,130,98,27,73,45,6,0,111,130,157,38,92,81,6,0,112,2,141,58,116,72,7,0,112,2,116,104,205,183,11,0,115,2,188,148,134,19,7,0,115,130,154,109,145,114,7,0,116,130,123,198,187,91,8,0,118,130,32,157,71,81,8,0,119,2,41,4,23,27,7,0,121,130,112,179,167,242,9,0,121,130,112,179,167,242,9,0,122,130,150,83,102,214,8,0,122,130,150,83,14,218,8,0,122,130,64,96,253,59,10,0,122,130,64,96,144,60,10,0,122,130,64,96,39,61,10,0,122,130,241,134,25,147,10,0,124,130,67,47,16,183,8,0,124,130,67,47,251,191,8,0,124,130,67,47,239,200,8,0,127,130,206,229,7,14,10,0,127,130,206,229,40,14,10,0,127,130,206,229,64,14,10,0,130,2,154,37,12,99,7,0,134,2,94,45,16,219,6,0,136,2,73,139,117,71,7,0,138,130,153,239,220,39,7,0,139,2,99,244,147,189,7,0,140,130,113,46,16,183,8,0,140,130,113,46,251,191,8,0,140,130,113,46,239,200,8,0,146,2,240,127,239,158,10,0,147,130,202,188,57,8,6,0,147,130,202,188,105,173,6,0,148,130,1,123,62,223,9,0,148,130,1,123,64,224,9,0,148,130,1,123,93,225,9,0,150,2,96,108,134,19,7,0,150,2,90,97,45,226,8,0,150,130,55,220,45,226,8,0,150,2,90,97,130,231,8,0,150,130,55,220,130,231,8,0,150,2,203,55,164,16,9,0,150,2,203,55,141,17,9,0,151,2,241,26,253,38,9,0,151,2,241,26,207,40,9,0,153,2,232,3,23,27,7,0,153,130,102,205,111,4,9,0,153,130,102,205,41,6,9,0,156,130,46,128,32,20,9,0,156,130,46,128,179,20,9,0,158,2,73,203,228,66,7,0,159,130,240,45,0,112,11,0,162,2,202,251,128,152,9,0,166,2,168,247,55,108,7,0,166,130,224,239,140,113,8,0,167,130,81,91,88,3,6,0,167,130,113,196,23,253,6,0,170,130,186,148,162,238,5,0,170,130,4,171,153,157,8,0,171,2,100,146,186,158,9,0,171,2,100,146,5,159,9,0,173,2,201,154,184,214,10,0,173,2,109,139,131,242,10,0,174,2,94,252,4,52,10,0,176,130,165,55,118,226,5,0,176,130,186,148,116,19,6,0,178,2,139,50,205,87,7,0,178,2,139,50,63,1,8,0,179,130,181,202,107,10,7,0,180,130,231,242,193,100,10,0,180,130,231,242,89,103,10,0,180,130,177,189,176,18,11,0,182,130,233,195,194,138,7,0,182,2,15,28,93,118,8,0,182,2,15,28,155,118,8,0,182,2,15,28,224,118,8,0,184,2,39,157,178,87,11,0,185,2,208,138,51,104,7,0,185,2,127,223,145,114,7,0,187,130,226,49,238,81,10,0,188,2,232,54,132,21,9,0,188,2,232,54,157,23,9,0,188,2,38,126,163,88,10,0,188,2,38,126,83,89,10,0,189,2,209,154,241,190,7,0,189,2,209,231,45,226,8,0,189,2,209,231,130,231,8,0,191,130,99,194,156,253,6,0,194,2,188,7,209,18,7,0,195,2,34,239,65,11,9,0,195,2,34,239,92,11,9,0,195,2,34,239,127,11,9,0,195,2,200,226,253,38,9,0,195,2,200,226,207,40,9,0,196,130,55,167,45,226,8,0,196,130,55,167,130,231,8,0,198,130,128,171,104,237,10,0,199,2,99,244,102,15,7,0,199,2,99,244,35,165,11,0,200,130,201,200,115,4,7,0,200,130,81,82,4,44,7,0,201,2,101,12,245,108,6,0,202,2,160,197,145,114,7,0,203,2,63,153,134,19,7,0,205,130,60,82,203,159,6,0,209,2,195,243,47,13,7,0,209,2,192,181,194,138,7,0,211,130,23,156,224,123,9,0,211,130,23,156,29,124,9,0,211,130,23,156,109,124,9,0,213,130,100,68,238,177,9,0,213,130,100,68,7,178,9,0,213,130,19,69,171,16,11,0,214,2,182,219,212,196,6,0,216,2,130,158,107,46,6,0,216,130,170,37,90,177,8,0,216,130,170,37,165,177,8,0,217,130,200,146,113,134,8,0,218,2,250,209,235,145,11,0,219,2,235,194,230,58,6,0,221,130,190,167,188,40,11,0,222,130,178,11,72,51,6,0,222,2,238,103,132,21,9,0,222,2,238,103,157,23,9,0,225,2,129,14,0,55,7,0,225,130,160,33,116,72,7,0,229,2,192,148,78,32,6,0,229,130,217,173,161,110,10,0,229,130,217,173,2,112,10,0,230,130,102,27,75,148,7,0,230,130,102,27,165,163,7,0,231,2,192,148,161,77,7,0,236,130,124,132,29,120,7,0,240,130,60,216,132,21,9,0,240,130,60,216,157,23,9,0,242,2,171,31,111,4,9,0,242,2,171,31,111,4,9,0,242,2,171,31,41,6,9,0,242,2,171,31,41,6,9,0,243,2,212,134,160,79,8,0,243,130,5,116,20,30,10,0,243,130,5,116,115,30,10,0,243,130,5,116,207,30,10,0,247,130,78,213,194,138,7,0,248,2,56,189,168,43,7,0,251,2,78,70,11,25,8,0,251,2,78,70,96,25,8,0,251,2,78,70,144,25,8,0,252,130,120,238,207,142,10,0,254,2,154,109,47,16,7,0,255,130,208,199,100,92,7,0,2,3,45,178,253,38,9,0,2,3,45,178,207,40,9,0,3,131,165,21,145,114,7,0,6,3,64,91,194,138,7,0,9,3,92,128,112,246,7,0,12,131,86,135,194,138,7,0,14,3,244,147,101,77,6,0,14,131,213,0,115,4,7,0,14,3,251,210,102,214,8,0,14,3,251,210,14,218,8,0,14,131,215,203,38,124,10,0,14,131,215,203,106,124,10,0,17,3,52,44,0,55,7,0,17,3,52,44,163,57,7,0,17,131,114,244,12,99,7,0,17,3,12,194,145,12,8,0,17,3,52,44,228,150,11,0,18,3,92,128,129,119,6,0,19,3,234,174,16,223,5,0,20,131,39,127,253,49,7,0,22,131,27,136,245,13,8,0,24,131,143,138,12,152,10,0,30,3,66,60,246,176,6,0,32,131,87,51,162,89,11,0,32,131,87,51,159,97,11,0,38,131,98,87,16,183,8,0,38,131,98,87,251,191,8,0,38,131,98,87,239,200,8,0,47,131,175,124,22,133,7,0,47,3,84,146,148,213,8,0,47,3,84,146,183,213,8,0,48,131,132,136,60,152,7,0,48,131,132,136,79,237,8,0,48,3,140,16,232,119,11,0,51,131,94,124,126,140,11,0,52,3,248,165,229,109,7,0,55,3,121,242,108,49,7,0,55,3,121,242,150,220,7,0,55,3,246,187,65,101,11,0,57,131,208,28,59,5,6,0,57,131,206,6,4,52,10,0,58,131,111,97,118,151,7,0,61,131,11,94,207,14,9,0,61,131,11,94,54,15,9,0,61,131,211,225,95,87,11,0,62,3,255,178,188,213,9,0,62,3,255,178,58,214,9,0,62,3,255,178,197,214,9,0,62,3,22,57,188,90,11,0,64,131,124,149,101,17,11,0,67,131,84,107,134,19,7,0,68,131,102,92,219,200,6,0,69,131,76,247,90,85,6,0,69,3,235,148,186,99,6,0,72,131,217,123,246,163,6,0,72,131,132,113,141,252,6,0,77,3,19,246,23,27,7,0,79,3,41,80,115,4,7,0,80,131,142,249,194,138,7,0,80,3,193,50,60,152,7,0,80,3,193,50,238,13,9,0,80,3,193,50,11,14,9,0,81,3,128,34,102,214,8,0,81,3,128,34,14,218,8,0,85,3,15,110,48,223,5,0,85,131,214,26,131,110,6,0,85,3,15,110,163,57,7,0,86,3,125,148,58,35,9,0,86,3,125,148,31,36,9,0,86,3,211,104,27,130,11,0,88,3,255,180,60,152,7,0,88,3,255,180,151,164,7,0,88,3,255,180,226,164,7,0,90,131,191,117,55,156,11,0,91,3,158,220,161,77,7,0,92,131,83,127,140,208,7,0,94,3,5,61,211,65,8,0,94,131,20,185,239,200,8,0,94,3,1,251,52,87,10,0,94,3,1,251,117,87,10,0,95,131,31,190,253,59,10,0,95,131,31,190,144,60,10,0,95,131,31,190,39,61,10,0,96,3,231,230,44,155,11,0,102,3,186,148,35,25,6,0,102,3,155,196,146,99,6,0,102,131,122,227,60,152,7,0,102,131,122,227,244,128,9,0,105,3,18,1,163,66,7,0,105,3,41,165,83,126,8,0,107,3,175,222,168,116,8,0,108,3,23,107,38,117,8,0,109,131,36,56,54,113,8,0,110,131,29,104,92,9,8,0,112,131,167,216,132,21,9,0,112,131,167,216,157,23,9,0,114,131,87,198,4,52,10,0,116,3,3,165,252,169,7,0,118,3,223,168,60,152,7,0,118,131,177,168,53,192,9,0,118,131,177,168,99,192,9,0,123,3,84,171,134,19,7,0,123,3,227,89,102,214,8,0,123,3,227,89,14,218,8,0,124,3,71,170,206,159,10,0,125,131,217,232,159,122,11,0,128,131,136,37,128,39,7,0,131,131,43,140,132,21,9,0,131,131,43,140,157,23,9,0,132,3,9,0,16,219,6,0,133,131,52,216,20,8,9,0,133,131,52,216,247,8,9,0,133,131,52,216,210,9,9,0,136,3,234,28,75,148,7,0,136,3,234,28,226,164,7,0,137,131,106,148,51,65,7,0,138,131,72,108,217,219,6,0,138,131,72,108,79,196,10,0,140,131,242,253,117,51,7,0,140,131,242,253,111,53,7,0,140,131,242,253,15,120,8,0,142,3,180,147,203,74,7,0,142,3,59,76,253,10,8,0,144,131,177,37,23,27,7,0,145,131,116,136,134,19,7,0,148,3,135,165,45,226,8,0,148,3,135,165,130,231,8,0,149,3,57,176,78,254,8,0,149,3,57,176,111,254,8,0,155,131,25,142,56,243,6,0,157,3,121,201,100,92,7,0,159,131,91,18,55,108,7,0,161,131,162,106,145,114,7,0,162,3,62,32,45,226,8,0,162,3,62,32,130,231,8,0,163,131,23,154,219,0,7,0,165,131,140,8,134,19,7,0,166,3,180,55,247,135,6,0,167,3,84,219,111,81,9,0,167,3,84,219,4,82,9,0,170,3,91,99,148,244,6,0,172,3,36,149,45,113,7,0,175,131,149,3,4,52,10,0,176,3,46,254,253,49,7,0,177,3,157,247,218,93,7,0,180,3,43,52,65,41,7,0,181,131,169,138,195,25,8,0,181,131,215,213,16,183,8,0,181,131,215,213,251,191,8,0,181,131,215,213,239,200,8,0,184,3,62,127,124,186,7,0,185,3,150,253,38,33,8,0,187,131,223,94,128,190,9,0,187,131,223,94,172,190,9,0,188,3,65,76,65,41,7,0,189,131,20,144,187,157,10,0,193,131,2,105,0,55,7,0,193,131,140,231,206,254,10,0,194,131,189,120,32,182,8,0,194,3,240,11,16,183,8,0,194,3,240,11,251,191,8,0,194,3,240,11,239,200,8,0,194,3,126,33,60,77,10,0,194,3,126,33,232,77,10,0,196,3,233,77,139,254,6,0,197,3,80,167,118,237,5,0,198,131,242,25,23,27,7,0,199,131,192,126,92,9,8,0,200,3,1,123,226,11,7,0,200,131,16,14,237,170,9,0,200,131,16,14,12,171,9,0,200,3,100,214,139,126,11,0,200,3,1,123,6,163,11,0,208,3,198,148,31,225,5,0,208,3,157,238,93,175,10,0,213,3,87,102,23,26,8,0,213,131,144,68,94,91,10,0,213,131,144,68,125,91,10,0,213,3,150,49,173,37,11,0,214,3,12,30,77,250,8,0,214,3,12,30,94,250,8,0,214,131,54,158,217,238,9,0,215,3,215,36,123,35,11,0,216,3,105,40,66,3,7,0,216,131,76,162,134,19,7,0,216,3,230,27,60,182,8,0,216,131,133,36,35,75,10,0,216,131,133,36,60,75,10,0,216,131,133,36,84,75,10,0,219,3,103,163,107,210,5,0,220,131,185,67,43,89,7,0,220,3,216,54,238,81,10,0,224,3,229,186,111,81,9,0,224,3,229,186,4,82,9,0,231,131,167,10,185,216,7,0,232,131,145,128,73,173,8,0,234,3,203,13,29,120,7,0,234,131,147,26,148,49,11,0,236,3,22,79,194,138,7,0,236,131,39,128,166,121,8,0,236,131,39,128,159,249,10,0,237,3,148,190,125,67,10,0,237,3,148,190,69,68,10,0,238,3,76,120,194,138,7,0,243,3,141,202,229,135,11,0,244,3,83,156,241,174,10,0,244,3,83,156,10,175,10,0,245,131,66,151,77,135,10,0,246,131,170,19,222,182,11,0,248,131,142,11,20,8,9,0,248,131,142,11,247,8,9,0,248,131,142,11,210,9,9,0,251,3,58,4,173,250,8,0,251,3,58,4,205,250,8,0,252,131,145,254,241,190,7,0,253,131,27,243,227,152,6,0,2,4,75,163,4,52,10,0,3,132,73,193,81,10,11,0,4,4,161,15,4,52,10,0,5,4,217,167,66,3,7,0,6,132,211,16,34,72,7,0,6,4,184,232,73,13,11,0,9,132,30,191,29,120,7,0,10,132,85,166,209,250,5,0,10,132,85,166,96,80,6,0,11,4,74,124,125,18,9,0,11,4,74,124,34,19,9,0,12,4,22,126,51,220,6,0,15,132,20,20,191,86,7,0,16,4,168,9,44,240,6,0,18,132,245,54,22,46,10,0,18,132,245,54,98,46,10,0,19,4,133,212,29,120,7,0,20,132,7,71,85,207,6,0,22,132,66,120,145,114,7,0,23,132,82,126,66,3,7,0,23,4,184,232,23,27,7,0,24,132,56,198,214,96,6,0,24,132,112,101,64,133,6,0,24,132,56,198,248,212,10,0,25,132,14,192,103,83,6,0,25,132,235,151,102,214,8,0,25,132,235,151,14,218,8,0,27,132,121,27,4,52,10,0,28,4,118,181,117,235,5,0,34,132,59,78,183,82,7,0,35,4,254,7,156,253,6,0,35,132,49,190,136,1,7,0,35,132,49,190,10,2,7,0,35,4,190,59,161,77,7,0,35,132,49,190,29,120,7,0,37,4,92,236,253,59,10,0,37,4,92,236,144,60,10,0,37,4,92,236,39,61,10,0,38,132,77,240,59,12,7,0,40,132,110,49,222,41,11,0,44,4,74,139,194,138,7,0,44,4,157,251,168,152,9,0,44,4,157,251,232,212,10,0,47,4,198,6,6,249,9,0,47,4,198,6,105,249,9,0,47,4,198,6,201,249,9,0,48,132,193,148,194,181,6,0,49,4,188,236,135,242,6,0,50,132,219,241,101,64,7,0,52,4,28,237,84,231,5,0,52,4,192,199,194,138,7,0,52,4,72,203,194,138,7,0,52,4,72,203,70,252,8,0,59,132,34,243,217,9,7,0,60,132,157,38,12,99,7,0,60,132,157,96,229,109,7,0,60,4,244,197,12,165,8,0,60,4,214,14,216,51,9,0,60,4,214,14,175,52,9,0,60,4,11,136,161,110,10,0,60,4,11,136,2,112,10,0,61,132,142,227,58,35,9,0,61,132,142,227,31,36,9,0,68,132,169,223,187,124,11,0,72,4,223,1,38,178,10,0,73,132,197,227,227,103,6,0,73,4,192,250,253,38,9,0,73,4,192,250,207,40,9,0,75,4,231,118,155,33,6,0,75,4,184,7,57,187,10,0,77,4,207,50,62,223,9,0,77,4,207,50,64,224,9,0,77,4,207,50,93,225,9,0,78,4,202,133,186,112,6,0,78,132,132,170,148,244,6,0,78,132,132,170,134,19,7,0,81,132,73,175,16,183,8,0,81,132,73,175,251,191,8,0,81,132,73,175,239,200,8,0,82,4,146,47,205,87,7,0,82,132,67,1,60,182,8,0,85,132,187,144,145,114,7,0,86,4,29,83,16,183,8,0,86,4,29,83,251,191,8,0,86,4,29,83,239,200,8,0,87,4,48,209,47,13,7,0,87,132,122,143,91,19,7,0,88,4,212,252,60,152,7,0,88,4,212,252,137,159,7,0,88,4,212,252,226,164,7,0,92,132,145,0,232,195,6,0,95,4,15,127,82,212,5,0,96,132,117,172,231,132,10,0,97,4,7,185,29,120,7,0,98,4,92,248,67,17,7,0,101,132,36,182,37,202,10,0,102,132,143,166,101,179,6,0,103,132,48,72,246,243,9,0,103,132,48,72,59,245,9,0,103,132,48,72,131,246,9,0,104,132,171,152,145,114,7,0,104,132,119,151,19,59,11,0,106,132,155,123,125,236,7,0,106,132,155,123,59,147,8,0,106,132,61,103,129,113,11,0,108,132,34,129,246,98,6,0,108,132,250,24,160,79,8,0,111,132,151,52,59,72,7,0,111,4,180,120,29,120,7,0,112,132,7,116,60,77,10,0,112,132,7,116,232,77,10,0,114,132,128,163,83,70,6,0,114,132,225,249,134,19,7,0,118,4,97,216,228,66,7,0,120,4,136,129,77,125,6,0,122,132,24,253,166,248,6,0,122,4,94,195,148,57,11,0,124,132,118,46,111,4,9,0,124,132,118,46,41,6,9,0,127,4,52,244,60,152,7,0,127,4,52,244,122,115,10,0,128,132,16,246,111,4,9,0,128,132,16,246,41,6,9,0,128,132,47,44,164,16,9,0,128,132,47,44,141,17,9,0,128,132,170,162,201,8,10,0,129,4,61,126,21,138,7,0,129,4,61,126,189,167,7,0,131,132,218,227,81,63,6,0,131,132,218,227,198,151,6,0,132,132,112,70,195,163,10,0,134,132,31,114,238,247,9,0,134,132,31,114,11,248,9,0,135,4,22,150,219,238,8,0,135,4,22,150,39,240,8,0,135,4,22,150,117,241,8,0,135,132,47,157,160,14,11,0,136,132,109,109,152,65,7,0,137,132,182,94,134,107,10,0,137,132,182,94,210,107,10,0,139,132,116,108,0,55,7,0,139,132,116,108,163,57,7,0,141,132,37,139,14,137,9,0,141,132,37,139,201,137,9,0,142,132,171,51,44,188,10,0,143,132,46,49,16,183,8,0,143,132,46,49,251,191,8,0,143,132,46,49,239,200,8,0,145,4,15,64,235,9,6,0,145,132,29,85,255,110,7,0,147,4,51,126,255,129,6,0,148,4,129,240,47,13,7,0,148,132,126,33,246,243,9,0,148,132,126,33,59,245,9,0,148,132,126,33,131,246,9,0,149,132,113,153,145,12,8,0,151,132,4,12,16,37,7,0,152,132,253,158,176,68,7,0,153,132,19,246,86,244,6,0,154,4,185,140,21,228,9,0,154,4,185,140,38,228,9,0,154,4,185,140,58,228,9,0,155,132,151,217,163,57,7,0,155,4,180,148,38,119,10,0,155,4,180,148,50,119,10,0,155,132,151,217,59,138,10,0,157,132,159,126,1,135,7,0,158,132,118,239,88,67,6,0,159,4,27,97,47,13,7,0,162,132,157,92,102,214,8,0,162,132,157,92,14,218,8,0,165,4,192,0,83,126,8,0,166,132,9,77,41,254,6,0,168,4,151,239,53,163,10,0,169,4,131,232,218,93,7,0,172,4,68,75,117,71,7,0,174,4,181,218,100,92,7,0,176,132,179,205,55,108,7,0,178,4,194,179,29,120,7,0,179,4,188,229,50,247,6,0,179,4,39,86,253,49,7,0,185,132,11,36,202,149,10,0,187,132,140,15,117,51,7,0,187,132,140,15,111,53,7,0,187,4,100,158,21,138,7,0,187,4,100,158,6,7,11,0,189,4,34,119,105,129,9,0,189,4,34,119,180,129,9,0,193,132,92,221,193,100,10,0,193,132,92,221,89,103,10,0,196,4,86,53,145,114,7,0,198,132,105,51,177,126,11,0,200,132,168,46,16,183,8,0,200,132,168,46,251,191,8,0,200,132,168,46,239,200,8,0,201,4,148,165,190,2,11,0,202,132,57,104,23,27,7,0,206,132,54,30,237,181,8,0,206,4,117,204,252,242,8,0,206,4,117,204,240,243,8,0,206,4,90,58,253,38,9,0,206,4,90,58,207,40,9,0,207,4,166,157,145,114,7,0,207,4,127,231,16,183,8,0,207,4,127,231,251,191,8,0,207,4,127,231,239,200,8,0,208,132,150,144,72,79,6,0,208,132,244,239,24,242,6,0,210,4,174,239,202,65,6,0,215,4,34,153,40,14,9,0,215,4,34,153,96,14,9,0,216,4,252,28,53,139,10,0,217,4,168,239,133,12,7,0,217,132,74,57,4,52,10,0,217,4,115,0,50,24,11,0,218,132,82,102,65,41,7,0,218,4,86,162,205,87,7,0,218,132,82,102,70,129,11,0,220,4,62,3,241,17,7,0,220,4,32,2,119,96,7,0,220,4,32,2,194,138,7,0,221,4,113,87,83,132,10,0,222,4,214,101,115,86,9,0,222,4,214,101,181,86,9,0,223,132,184,54,134,19,7,0,226,4,20,179,70,80,9,0,228,4,226,252,4,52,10,0,229,4,133,82,253,38,9,0,229,4,133,82,207,40,9,0,232,4,118,48,243,255,6,0,234,132,180,213,0,55,7,0,234,4,243,106,227,49,11,0,236,132,201,214,43,126,6,0,236,4,185,146,125,67,10,0,236,4,185,146,69,68,10,0,237,132,61,139,192,2,7,0,237,132,94,219,134,19,7,0,237,132,94,219,151,112,11,0,238,4,236,196,23,27,7,0,242,4,234,189,23,27,7,0,248,132,156,6,145,12,8,0,249,4,149,25,65,41,7,0,250,132,135,128,207,4,7,0,250,4,17,54,118,151,7,0,250,4,17,54,85,159,7,0,250,4,90,233,126,14,11,0,250,132,115,209,170,153,11,0,253,132,82,218,134,19,7,0,0,5,76,104,81,50,6,0,0,5,47,5,132,21,9,0,0,5,47,5,157,23,9,0,0,5,163,185,246,145,10,0,2,5,162,234,194,138,7,0,7,133,100,89,158,11,6,0,7,133,55,91,101,64,7,0,7,133,187,143,145,114,7,0,9,133,155,251,194,138,7,0,10,5,248,110,253,38,9,0,10,5,248,110,207,40,9,0,11,133,86,3,135,149,7,0,11,133,86,3,7,107,9,0,11,5,190,15,152,66,11,0,12,5,161,194,175,29,9,0,12,5,161,194,88,30,9,0,12,5,58,185,25,134,9,0,12,5,58,185,147,134,9,0,12,5,58,185,7,135,9,0,12,5,58,185,174,135,9,0,12,5,58,185,71,136,9,0,12,5,146,39,197,76,10,0,12,5,146,39,223,76,10,0,12,5,146,39,247,76,10,0,15,5,91,240,29,120,7,0,15,133,0,212,194,138,7,0,17,133,103,181,194,138,7,0,20,5,165,204,252,242,8,0,20,5,165,204,240,243,8,0,23,133,43,4,134,19,7,0,24,133,59,135,206,238,6,0,30,5,56,52,135,36,6,0,30,5,93,224,101,64,7,0,31,5,174,2,133,234,5,0,32,133,143,166,102,15,7,0,32,5,238,90,55,108,7,0,34,5,183,27,23,27,7,0,34,133,89,44,252,242,8,0,34,133,89,44,240,243,8,0,35,133,109,172,119,96,7,0,35,133,238,145,29,120,7,0,37,5,83,42,179,122,9,0,38,5,26,125,134,19,7,0,39,133,142,74,163,57,7,0,39,133,142,74,78,61,9,0,39,133,142,74,115,61,9,0,42,133,176,193,248,242,6,0,43,133,179,224,185,191,10,0,44,5,24,73,207,219,5,0,45,5,76,94,104,67,7,0,48,133,192,5,84,139,11,0,48,133,192,5,15,140,11,0,51,5,106,202,16,223,5,0,53,133,216,252,98,208,10,0,56,5,128,143,45,226,8,0,56,5,128,143,130,231,8,0,56,5,114,17,168,84,10,0,56,5,114,17,226,84,10,0,58,5,190,144,66,3,7,0,58,133,217,232,23,27,7,0,59,133,193,66,132,21,9,0,59,133,193,66,157,23,9,0,60,133,3,92,29,120,7,0,61,5,148,77,201,251,6,0,63,133,119,166,4,52,10,0,64,5,5,152,66,3,7,0,65,5,188,161,60,152,7,0,65,5,188,161,224,6,8,0,69,5,131,218,82,51,7,0,70,133,243,183,12,213,5,0,73,5,151,81,117,65,7,0,75,133,11,140,145,114,7,0,75,5,193,29,138,137,10,0,75,133,11,140,20,185,10,0,76,5,164,17,45,8,10,0,76,5,164,17,79,8,10,0,76,5,164,17,123,8,10,0,77,133,75,26,111,4,9,0,77,133,75,26,41,6,9,0,79,133,150,68,95,115,6,0,80,133,192,2,134,19,7,0,80,133,90,220,29,120,7,0,82,5,98,34,21,71,9,0,82,5,98,34,100,72,9,0,82,5,98,34,181,73,9,0,82,5,98,34,11,75,9,0,83,5,122,100,107,242,5,0,83,5,200,193,218,93,7,0,85,133,164,1,176,68,7,0,87,5,68,140,221,98,9,0,87,5,68,140,47,99,9,0,94,5,40,164,134,19,7,0,95,5,152,197,165,224,8,0,95,5,152,197,86,225,8,0,97,133,211,135,1,55,6,0,98,133,201,121,117,71,7,0,98,133,55,189,193,100,10,0,98,133,55,189,89,103,10,0,102,5,221,8,12,99,7,0,105,133,197,74,183,249,6,0,109,133,191,213,177,105,7,0,110,5,169,50,29,120,7,0,110,5,170,131,5,175,8,0,110,133,157,38,193,100,10,0,110,133,157,38,89,103,10,0,111,133,130,40,89,5,7,0,111,133,9,243,97,16,7,0,112,5,83,14,245,48,11,0,113,5,58,49,240,173,6,0,113,5,178,81,145,114,7,0,115,133,212,106,114,175,9,0,115,133,212,106,141,175,9,0,116,5,159,128,252,169,7,0,120,5,67,129,68,159,6,0,120,133,73,8,12,99,7,0,122,133,218,29,116,72,7,0,124,133,8,160,65,230,5,0,125,133,21,240,45,226,8,0,125,133,21,240,130,231,8,0,126,133,82,4,111,81,9,0,126,133,82,4,4,82,9,0,126,5,109,247,243,5,10,0,126,5,109,247,40,6,10,0,127,133,38,94,76,25,11,0,129,133,11,132,29,81,7,0,131,5,57,11,208,116,6,0,131,5,39,116,151,186,7,0,131,133,34,66,45,226,8,0,131,133,34,66,130,231,8,0,131,5,67,195,132,21,9,0,131,5,67,195,157,23,9,0,132,5,54,150,230,64,6,0,133,133,44,97,115,4,7,0,135,133,59,93,23,27,7,0,139,133,19,36,101,64,7,0,143,133,161,131,163,237,5,0,144,133,8,192,18,53,11,0,145,5,83,6,227,152,10,0,149,133,155,83,209,18,7,0,149,5,17,189,73,196,7,0,151,5,160,175,102,214,8,0,151,5,160,175,14,218,8,0,151,5,17,253,146,76,9,0,151,5,17,253,63,77,9,0,152,5,186,61,205,87,7,0,153,133,188,3,139,254,6,0,153,5,55,129,194,185,9,0,153,5,55,129,96,186,9,0,154,5,163,134,23,27,7,0,156,5,127,15,153,113,10,0,156,5,127,15,27,114,10,0,158,133,44,150,41,74,11,0,161,133,125,17,171,43,6,0,161,5,3,7,21,71,9,0,161,5,3,7,100,72,9,0,161,5,3,7,181,73,9,0,161,5,3,7,11,75,9,0,161,5,3,7,9,84,9,0,161,5,3,7,62,84,9,0,161,5,67,45,137,234,10,0,161,5,67,45,188,234,10,0,162,5,84,248,161,77,7,0,163,5,128,130,194,138,7,0,166,133,117,42,29,120,7,0,166,133,158,210,246,243,9,0,166,133,158,210,59,245,9,0,166,133,158,210,131,246,9,0,171,5,39,170,233,16,7,0,172,5,46,206,218,93,7,0,173,133,137,128,254,115,6,0,175,133,23,112,163,255,6,0,176,133,153,122,222,14,7,0,177,5,72,28,238,239,6,0,178,5,153,140,73,38,7,0,181,133,156,187,216,51,9,0,181,133,156,187,175,52,9,0,182,5,216,43,82,56,11,0,183,133,89,237,140,160,10,0,184,133,37,213,188,168,8,0,184,133,37,213,45,169,8,0,184,5,117,27,4,52,10,0,184,5,195,40,167,63,10,0,184,5,195,40,233,63,10,0,185,133,150,192,102,15,7,0,185,5,249,60,228,49,7,0,185,133,150,192,194,138,7,0,185,133,150,192,164,176,11,0,186,133,103,97,23,27,7,0,186,133,207,87,67,139,11,0,187,5,213,34,37,25,11,0,188,133,154,199,60,152,7,0,188,133,154,199,190,122,8,0,188,133,154,199,83,123,8,0,188,133,154,199,244,123,8,0,188,133,154,199,210,33,10,0,189,133,171,4,12,99,7,0,193,5,25,132,146,76,9,0,193,5,25,132,63,77,9,0,194,5,79,177,23,253,6,0,194,5,204,7,184,155,11,0,198,133,93,126,0,55,7,0,198,133,93,126,163,57,7,0,199,133,174,152,186,26,9,0,199,133,174,152,120,27,9,0,199,133,174,152,48,28,9,0,201,133,32,232,175,29,9,0,201,133,32,232,88,30,9,0,203,133,127,34,107,211,5,0,205,5,246,69,134,158,10,0,213,133,154,58,221,98,9,0,213,133,154,58,47,99,9,0,213,5,27,237,126,152,10,0,213,5,119,93,127,243,10,0,216,5,10,238,116,72,7,0,217,5,167,200,45,226,8,0,217,5,167,200,130,231,8,0,219,133,163,71,4,172,8,0,221,133,122,161,134,19,7,0,223,133,200,204,225,65,11,0,223,133,125,60,48,136,11,0,224,5,75,25,38,162,6,0,225,133,162,34,23,27,7,0,228,5,157,63,118,71,11,0,229,5,0,157,134,19,7,0,230,133,64,17,187,124,11,0,232,5,97,205,16,183,8,0,232,5,97,205,251,191,8,0,232,5,97,205,239,200,8,0,232,5,116,112,168,152,9,0,233,133,229,10,193,100,10,0,233,133,229,10,89,103,10,0,234,133,167,197,238,239,6,0,237,5,23,182,120,151,8,0,241,133,209,2,119,200,10,0,246,133,85,170,29,120,7,0,247,5,162,199,23,27,7,0,247,5,209,204,253,49,7,0,247,5,143,238,45,226,8,0,247,5,143,238,130,231,8,0,247,133,77,42,199,169,10,0,248,133,84,36,23,27,7,0,249,133,73,141,86,56,9,0,249,133,73,141,9,57,9,0,250,133,137,149,209,19,10,0,251,133,4,29,185,199,7,0,253,5,188,240,5,23,6,0,253,133,7,92,117,65,7,0,253,5,86,131,4,52,10,0,0,6,202,2,45,226,8,0,0,6,202,2,130,231,8,0,1,134,155,56,58,212,8,0,1,134,155,56,201,212,8,0,1,6,18,2,21,71,9,0,1,6,18,2,100,72,9,0,1,6,18,2,181,73,9,0,1,6,18,2,11,75,9,0,4,6,112,57,41,254,6,0,4,6,112,57,22,63,11,0,6,6,17,233,0,55,7,0,6,6,17,233,163,57,7,0,8,6,135,126,209,19,10,0,10,6,119,215,119,96,7,0,14,6,239,77,92,9,8,0,15,134,107,99,145,114,7,0,19,134,104,36,161,110,10,0,19,134,104,36,2,112,10,0,20,134,138,107,23,27,7,0,20,6,54,254,1,126,11,0,21,6,81,128,45,226,8,0,21,6,81,128,130,231,8,0,22,134,150,69,75,241,6,0,23,134,117,117,125,18,9,0,23,134,117,117,34,19,9,0,23,134,123,7,235,111,11,0,24,6,67,143,117,234,10,0,24,6,129,160,91,181,11,0,25,134,143,21,69,96,6,0,25,6,172,133,207,14,9,0,25,6,172,133,54,15,9,0,26,6,128,170,167,242,9,0,30,134,117,48,143,240,6,0,30,6,51,93,4,52,10,0,33,134,249,121,246,53,11,0,38,6,123,230,75,17,11,0,41,134,70,215,163,244,10,0,45,134,201,163,209,84,7,0,45,6,9,93,160,79,8,0,45,134,201,163,74,239,9,0,45,134,201,163,174,239,9,0,48,6,83,126,107,10,7,0,49,134,193,148,162,238,5,0,49,134,103,27,247,247,6,0,49,6,95,33,134,19,7,0,51,134,230,149,176,68,7,0,53,134,121,108,103,147,8,0,57,134,112,133,167,242,9,0,59,6,14,190,85,174,8,0,60,134,51,39,167,242,9,0,67,134,125,250,47,13,7,0,67,6,164,160,29,120,7,0,68,134,205,182,43,241,9,0,70,6,253,141,218,133,7,0,70,134,248,243,146,76,9,0,70,134,248,243,63,77,9,0,71,6,112,31,190,227,9,0,75,134,13,125,189,109,7,0,77,6,133,173,29,120,7,0,77,6,9,126,8,37,10,0,77,6,9,126,32,37,10,0,80,134,109,102,207,41,8,0,83,134,2,114,134,19,7,0,83,134,109,62,136,39,11,0,85,6,164,160,104,31,9,0,85,6,164,160,130,31,9,0,85,134,82,182,47,252,10,0,86,134,137,218,177,242,6,0,89,6,155,235,218,93,7,0,89,134,183,18,177,105,7,0,90,134,126,95,161,110,10,0,90,134,126,95,2,112,10,0,93,134,78,220,23,27,7,0,93,134,151,246,194,138,7,0,94,134,119,109,39,79,6,0,94,134,121,27,188,71,7,0,94,134,119,109,194,138,7,0,94,134,119,109,206,155,10,0,95,6,78,154,161,110,10,0,95,6,78,154,2,112,10,0,97,6,187,190,209,18,7,0,99,134,254,46,4,150,6,0,102,6,105,33,16,183,8,0,102,6,105,33,251,191,8,0,102,6,105,33,239,200,8,0,107,134,225,28,105,202,6,0,107,134,133,111,16,183,8,0,107,134,133,111,251,191,8,0,107,134,133,111,239,200,8,0,110,134,23,207,209,19,10,0,111,6,17,183,233,156,11,0,115,6,233,92,18,66,11,0,117,6,18,248,29,244,6,0,117,6,134,231,135,149,7,0,117,6,134,231,60,152,7,0,120,6,209,107,212,57,6,0,123,6,7,52,29,120,7,0,124,134,157,38,33,23,6,0,127,134,48,7,117,51,7,0,127,134,191,254,58,35,9,0,127,134,191,254,31,36,9,0,128,6,211,173,9,238,5,0,130,134,58,151,48,172,11,0,133,134,136,10,23,27,7,0,134,6,196,172,60,112,6,0,134,134,68,153,92,9,8,0,139,6,159,231,29,120,7,0,140,6,149,161,147,35,7,0,142,6,243,153,4,52,10,0,144,6,51,184,19,90,7,0,146,134,208,6,133,68,6,0,148,134,55,195,4,44,7,0,148,6,85,143,253,117,10,0,148,6,85,143,53,118,10,0,148,134,127,61,50,170,10,0,149,134,16,230,53,192,9,0,149,134,16,230,99,192,9,0,150,6,137,148,104,212,5,0,152,6,157,62,195,100,6,0,152,6,61,164,16,183,8,0,152,6,61,164,251,191,8,0,152,6,61,164,239,200,8,0,152,6,83,217,253,38,9,0,152,6,83,217,207,40,9,0,152,6,114,226,150,52,11,0,153,134,7,200,184,89,7,0,153,134,7,200,19,90,7,0,155,134,122,87,158,6,7,0,155,134,222,46,102,214,8,0,155,134,222,46,14,218,8,0,160,134,45,108,12,99,7,0,161,134,224,14,41,201,7,0,161,134,112,103,187,124,11,0,162,6,160,126,29,120,7,0,163,6,219,16,60,152,7,0,163,6,219,16,226,164,7,0,163,134,125,129,193,100,10,0,163,134,125,129,89,103,10,0,164,6,22,48,89,176,6,0,164,6,22,48,99,36,7,0,164,6,81,190,194,138,7,0,164,6,98,130,134,158,10,0,166,134,155,19,153,75,10,0,166,134,155,19,175,75,10,0,166,134,155,74,28,188,10,0,166,6,164,254,168,194,10,0,168,134,193,148,161,77,7,0,169,6,2,83,143,240,6,0,170,134,250,193,31,6,7,0,173,134,201,148,31,33,6,0,176,134,242,214,60,182,8,0,178,6,164,77,97,71,11,0,178,134,185,206,158,144,11,0,183,134,148,164,236,16,11,0,184,134,147,95,23,27,7,0,184,6,114,117,222,35,11,0,188,6,14,76,134,19,7,0,190,134,60,132,29,177,6,0,192,6,173,234,211,65,8,0,192,6,173,234,210,176,11,0,192,6,173,234,147,178,11,0,194,134,132,182,132,21,9,0,194,134,132,182,157,23,9,0,197,134,20,67,72,102,9,0,197,134,20,67,254,102,9,0,198,6,132,216,116,72,7,0,201,134,223,81,204,181,9,0,201,134,223,81,224,182,9,0,204,6,7,11,218,93,7,0,204,6,167,241,204,50,9,0,204,6,167,241,17,51,9,0,204,6,167,241,93,51,9,0,205,134,145,130,12,99,7,0,208,6,70,37,144,67,8,0,208,6,148,190,14,137,9,0,208,6,148,190,201,137,9,0,209,134,160,116,164,16,9,0,209,134,160,116,141,17,9,0,211,134,254,82,161,77,7,0,213,134,186,4,135,61,7,0,214,134,214,107,135,44,7,0,215,134,29,86,225,160,11,0,216,6,236,38,22,159,8,0,220,6,237,252,29,177,6,0,220,134,194,179,85,29,10,0,223,134,157,38,77,11,7,0,223,134,198,66,163,57,7,0,223,134,198,66,70,147,11,0,224,134,127,242,20,8,9,0,224,134,127,242,247,8,9,0,224,134,127,242,210,9,9,0,224,134,201,86,168,152,9,0,228,134,145,39,26,67,6,0,229,134,169,63,16,183,8,0,229,134,169,63,251,191,8,0,229,134,169,63,239,200,8,0,229,6,20,162,226,64,9,0,229,6,20,162,8,65,9,0,229,6,20,162,40,65,9,0,230,134,253,189,109,140,9,0,230,134,253,189,137,140,9,0,236,134,206,229,125,67,10,0,236,134,206,229,69,68,10,0,240,134,217,129,88,119,11,0,241,6,172,112,107,162,6,0,241,6,64,193,29,120,7,0,243,134,75,196,246,19,8,0,247,134,128,62,166,98,6,0,248,134,190,227,205,141,6,0,248,134,215,242,45,226,8,0,248,134,215,242,130,231,8,0,250,6,131,182,117,51,7,0,253,6,101,23,243,234,7,0,253,6,242,3,16,183,8,0,253,6,242,3,251,191,8,0,253,6,242,3,239,200,8,0,253,134,240,233,152,131,11,0,255,134,34,211,39,177,7,0,1,7,224,253,145,114,7,0,4,135,39,141,118,134,10,0,7,7,46,86,0,93,11,0,8,7,6,7,29,120,7,0,12,135,152,45,67,6,7,0,12,7,239,188,23,27,7,0,13,7,134,169,189,199,6,0,13,135,237,96,221,98,9,0,13,135,237,96,47,99,9,0,13,7,149,180,4,52,10,0,14,7,127,222,152,63,7,0,15,135,141,250,194,138,7,0,15,135,141,250,113,248,10,0,15,135,141,250,137,248,10,0,17,135,232,158,23,27,7,0,18,7,142,140,100,224,7,0,21,135,201,42,167,156,8,0,22,135,1,79,23,27,7,0,22,135,230,251,145,114,7,0,24,7,66,187,74,240,6,0,24,135,188,59,248,64,7,0,26,7,220,109,102,15,7,0,26,135,230,91,116,72,7,0,26,7,192,5,252,242,8,0,26,7,192,5,240,243,8,0,29,135,10,158,102,214,8,0,29,135,10,158,14,218,8,0,30,7,188,29,0,55,7,0,30,7,188,29,163,57,7,0,32,7,215,89,55,23,6,0,32,135,186,46,58,75,7,0,35,135,170,6,83,198,7,0,35,7,18,3,133,249,10,0,37,135,223,246,135,44,7,0,38,7,170,228,168,138,6,0,40,135,13,125,129,15,6,0,41,7,141,131,36,223,6,0,41,135,54,10,119,96,7,0,46,7,7,146,194,138,7,0,49,7,194,52,191,86,7,0,54,7,193,144,159,168,11,0,56,135,33,16,177,223,5,0,57,7,135,186,175,29,9,0,57,7,135,186,88,30,9,0,58,7,3,163,215,149,11,0,60,135,157,38,34,138,6,0,60,135,174,136,4,52,10,0,61,135,105,24,60,152,7,0,61,135,105,24,70,252,8,0,61,7,148,56,63,115,11,0,62,7,26,125,115,2,7,0,62,7,26,125,116,137,11,0,64,7,33,135,233,16,7,0,64,7,116,143,12,99,7,0,66,135,139,105,31,32,6,0,66,135,53,113,103,48,7,0,67,7,147,18,39,80,6,0,67,135,229,1,0,55,7,0,67,135,229,1,163,57,7,0,70,135,1,84,111,81,9,0,70,135,1,84,4,82,9,0,72,7,185,176,43,72,10,0,72,7,185,176,148,72,10,0,74,7,108,177,92,9,8,0,75,7,87,149,193,100,10,0,75,7,87,149,89,103,10,0,77,135,183,221,158,91,6,0,77,135,114,224,177,203,6,0,77,135,25,76,100,92,7,0,78,135,106,100,91,57,8,0,78,135,106,100,138,57,8,0,81,135,244,220,60,152,7,0,81,135,244,220,190,122,8,0,81,135,244,220,83,123,8,0,81,135,244,220,244,123,8,0,81,135,244,220,210,33,10,0,82,135,164,226,18,108,6,0,82,7,163,45,68,209,9,0,82,7,163,45,92,209,9,0,83,7,208,5,154,90,10,0,83,7,208,5,186,90,10,0,85,7,2,197,168,152,9,0,86,135,202,170,141,49,7,0,87,7,169,198,243,255,6,0,88,7,5,55,117,5,6,0,89,135,228,215,160,79,8,0,90,135,244,158,134,19,7,0,90,7,19,246,115,107,9,0,90,7,19,246,143,107,9,0,90,7,100,38,187,235,10,0,91,7,87,225,127,250,10,0,91,7,87,225,241,255,10,0,93,7,117,216,29,120,7,0,94,7,138,3,100,92,7,0,95,135,253,128,199,89,6,0,95,7,26,149,45,141,6,0,96,135,242,113,161,77,7,0,96,7,138,239,152,252,8,0,97,135,148,120,29,120,7,0,97,135,48,235,60,152,10,0,98,7,46,113,81,126,9,0,98,7,46,113,166,126,9,0,98,7,46,113,53,127,9,0,100,135,52,147,16,183,8,0,100,135,52,147,251,191,8,0,100,135,52,147,239,200,8,0,102,135,176,79,253,59,10,0,102,135,176,79,144,60,10,0,102,135,176,79,39,61,10,0,104,135,236,25,233,4,7,0,104,135,176,39,16,183,8,0,104,135,176,39,251,191,8,0,104,135,176,39,239,200,8,0,108,7,81,34,192,136,8,0,108,7,81,34,37,137,8,0,112,135,148,150,16,183,8,0,112,135,148,150,251,191,8,0,112,135,148,150,239,200,8,0,113,135,246,31,209,84,7,0,114,7,144,255,59,32,11,0,116,7,248,30,135,149,7,0,116,7,36,151,76,202,7,0,116,7,248,30,70,80,9,0,118,135,92,74,76,66,7,0,119,7,33,208,73,38,7,0,123,135,69,18,188,213,9,0,123,135,69,18,58,214,9,0,123,135,69,18,197,214,9,0,123,135,80,100,167,242,9,0,123,135,162,247,104,62,11,0,126,135,5,197,43,163,6,0,126,7,134,14,186,235,6,0,126,135,16,41,29,120,7,0,126,7,212,89,251,22,11,0,127,135,106,139,14,137,9,0,127,135,106,139,201,137,9,0,128,135,22,174,29,120,7,0,129,135,103,111,145,114,7,0,131,135,72,226,183,82,7,0,132,7,202,54,160,79,8,0,133,7,37,142,19,224,10,0,136,135,234,33,186,235,6,0,136,135,149,50,146,76,9,0,136,135,149,50,63,77,9,0,137,7,65,137,60,152,7,0,139,7,228,57,60,182,8,0,139,135,154,154,215,136,10,0,139,135,154,154,235,136,10,0,140,135,201,190,29,120,7,0,142,135,33,249,147,176,6,0,142,135,11,220,81,101,8,0,143,7,115,122,119,96,7,0,143,7,39,131,16,183,8,0,143,7,39,131,251,191,8,0,143,7,39,131,239,200,8,0,144,7,139,197,114,47,6,0,144,7,139,197,58,75,7,0,144,135,172,124,194,138,7,0,144,135,192,203,24,16,8,0,145,135,239,179,226,49,6,0,145,7,202,92,194,138,7,0,147,135,254,22,145,114,7,0,148,135,191,143,231,0,8,0,148,135,191,143,20,1,8,0,150,135,32,237,217,9,7,0,150,7,212,43,134,19,7,0,150,7,60,225,186,53,9,0,150,7,60,225,77,54,9,0,153,7,205,137,166,63,6,0,155,7,81,49,194,138,7,0,157,135,126,201,21,138,7,0,159,135,104,175,134,19,7,0,160,7,64,161,209,211,6,0,160,7,64,161,108,213,6,0,161,135,173,26,60,152,7,0,161,135,173,26,104,103,8,0,161,135,173,26,219,103,8,0,161,135,173,26,68,104,8,0,161,135,173,26,59,45,10,0,162,135,189,32,23,27,7,0,162,7,115,24,165,224,8,0,162,7,115,24,86,225,8,0,165,7,226,149,4,52,10,0,170,135,147,136,38,47,6,0,170,135,147,136,117,51,7,0,170,135,147,136,111,53,7,0,170,135,241,147,125,67,10,0,170,135,241,147,69,68,10,0,173,7,94,199,29,120,7,0,176,135,235,31,12,99,7,0,178,7,231,242,135,44,7,0,182,135,81,95,145,114,7,0,182,135,126,11,45,226,8,0,182,135,126,11,130,231,8,0,184,135,91,202,252,230,7,0,184,135,91,202,42,231,7,0,186,135,97,56,29,120,7,0,186,135,239,163,133,170,8,0,186,135,239,163,98,206,10,0,188,135,169,215,253,12,11,0,189,7,209,89,189,199,6,0,189,135,136,154,45,226,8,0,189,135,136,154,130,231,8,0,190,7,73,145,41,254,6,0,191,7,194,24,189,246,6,0,192,7,10,46,167,183,6,0,192,135,243,252,194,138,7,0,192,135,240,28,43,188,7,0,193,7,195,125,240,248,6,0,193,135,209,34,12,99,7,0,193,7,31,29,4,52,10,0,196,7,148,25,119,96,7,0,197,135,15,154,29,120,7,0,199,135,81,242,23,27,7,0,200,135,138,39,144,252,10,0,208,135,249,200,134,19,7,0,209,135,23,30,223,233,10,0,210,135,255,193,159,122,11,0,215,7,36,116,51,104,7,0,218,135,199,84,223,142,11,0,221,7,155,125,181,184,6,0,221,7,27,118,253,136,7,0,221,7,27,118,85,168,7,0,221,7,27,118,117,168,7,0,221,7,211,82,4,52,10,0,226,7,71,209,60,152,7,0,226,7,71,209,226,164,7,0,228,135,53,176,131,222,8,0,228,135,53,176,38,223,8,0,228,135,53,176,206,223,8,0,230,135,200,47,78,9,7,0,234,7,252,206,117,51,7,0,234,7,252,206,111,53,7,0,235,135,94,78,65,177,6,0,235,7,166,30,181,184,10,0,237,7,216,228,186,47,6,0,239,7,228,151,183,249,6,0,241,7,69,101,190,227,9,0,242,135,196,134,4,52,10,0,245,135,63,191,196,46,7,0,246,135,58,201,163,57,7,0,246,135,58,201,209,84,7,0,247,7,19,73,135,44,7,0,248,135,107,19,186,53,9,0,248,135,107,19,77,54,9,0,248,7,111,206,239,85,11,0,249,7,254,38,151,164,8,0,250,7,200,129,116,65,11,0,250,7,200,129,167,70,11,0,253,135,131,142,70,84,11,0,255,135,185,100,252,242,8,0,255,135,185,100,240,243,8,0,2,136,0,55,214,220,5,0,4,136,219,152,111,4,9,0,4,136,219,152,41,6,9,0,12,136,75,89,149,70,11,0,13,8,107,103,160,242,5,0,13,136,126,201,74,64,6,0,13,136,67,239,117,71,7,0,13,8,146,94,218,93,7,0,14,136,26,126,16,183,8,0,14,136,26,126,251,191,8,0,14,136,26,126,239,200,8,0,15,136,41,77,83,126,8,0,16,136,178,8,246,62,7,0,17,8,211,248,51,136,10,0,18,8,67,135,51,104,7,0,22,8,106,168,4,52,10,0,22,8,37,116,135,224,10,0,23,8,179,229,238,118,6,0,29,136,15,55,32,66,7,0,32,8,228,98,55,108,7,0,32,8,62,156,194,138,7,0,34,8,207,89,101,118,10,0,34,8,207,89,178,118,10,0,35,8,96,3,23,27,7,0,35,8,144,84,193,100,10,0,35,8,144,84,89,103,10,0,36,8,209,179,145,114,7,0,37,136,133,216,58,35,9,0,37,136,133,216,31,36,9,0,39,8,234,229,27,222,5,0,41,8,101,228,2,41,7,0,45,8,238,19,202,13,6,0,48,8,64,245,133,89,7,0,49,136,198,191,247,147,6,0,49,136,154,247,168,152,9,0,51,136,178,193,189,199,6,0,52,8,183,223,176,137,6,0,55,8,127,192,217,44,11,0,58,136,144,105,158,144,11,0,60,136,87,74,22,91,7,0,62,8,24,101,187,209,6,0,62,8,24,101,111,86,8,0,63,8,131,13,119,96,7,0,65,136,133,83,243,129,10,0,67,136,52,51,195,112,11,0,68,8,200,167,17,214,8,0,68,8,200,167,32,214,8,0,70,8,58,130,65,56,11,0,70,136,14,193,244,68,11,0,71,136,133,242,219,238,8,0,71,136,133,242,39,240,8,0,71,136,133,242,117,241,8,0,76,136,81,242,51,18,7,0,77,8,76,152,55,70,9,0,77,8,76,152,92,70,9,0,82,8,97,52,22,91,7,0,84,136,11,171,207,14,9,0,84,136,11,171,54,15,9,0,85,136,111,91,134,19,7,0,87,136,252,79,185,46,9,0,87,136,252,79,221,46,9,0,87,136,109,205,161,110,10,0,87,136,109,205,2,112,10,0,88,8,31,24,160,4,6,0,88,8,109,231,10,153,10,0,92,8,236,177,164,16,9,0,92,8,236,177,141,17,9,0,93,136,50,232,249,63,8,0,93,136,209,191,111,4,9,0,93,136,209,191,41,6,9,0,94,136,112,150,65,41,7,0,94,136,60,90,120,15,11,0,94,136,60,90,160,19,11,0,97,136,67,160,217,9,7,0,97,136,224,98,34,233,7,0,97,136,229,17,92,9,8,0,101,136,224,91,83,126,8,0,104,136,230,166,16,183,8,0,104,136,230,166,251,191,8,0,104,136,230,166,239,200,8,0,105,8,30,114,156,253,6,0,105,8,108,53,97,16,7,0,105,8,6,126,9,238,8,0,105,8,6,126,94,238,8,0,107,8,226,226,165,254,5,0,107,136,183,96,4,52,10,0,108,136,168,22,135,44,7,0,109,8,156,31,144,67,8,0,111,8,192,136,46,66,11,0,116,136,107,129,219,238,8,0,116,136,107,129,39,240,8,0,116,136,107,129,117,241,8,0,119,8,8,181,224,6,7,0,119,8,95,120,132,21,9,0,119,8,95,120,157,23,9,0,120,136,45,184,73,82,7,0,120,8,205,37,16,183,8,0,120,8,205,37,251,191,8,0,120,8,205,37,239,200,8,0,124,136,165,97,140,212,6,0,125,8,23,131,86,180,8,0,126,8,243,99,105,129,9,0,126,8,243,99,180,129,9,0,127,8,234,94,76,15,6,0,127,8,234,94,58,75,7,0,129,8,79,237,245,253,5,0,130,136,39,161,237,39,8,0,131,136,26,126,118,151,7,0,133,8,98,102,69,151,7,0,133,136,13,161,246,243,9,0,133,136,13,161,59,245,9,0,133,136,13,161,131,246,9,0,133,8,98,102,191,28,10,0,134,136,139,108,55,108,7,0,134,8,154,141,130,130,11,0,135,136,136,122,64,94,6,0,135,8,152,66,4,52,10,0,139,136,107,90,14,137,9,0,139,136,107,90,201,137,9,0,142,136,223,170,194,138,7,0,143,136,4,207,195,77,6,0,143,136,76,65,62,26,9,0,143,136,76,65,116,26,9,0,144,8,170,126,29,120,7,0,146,8,19,252,142,9,7,0,146,8,19,252,163,57,7,0,147,8,194,8,130,189,10,0,150,136,103,184,79,68,6,0,151,136,206,65,197,96,8,0,151,136,206,65,4,97,8,0,151,136,206,65,57,97,8,0,155,136,140,95,117,51,7,0,156,8,94,61,25,86,7,0,156,8,94,61,74,86,7,0,156,8,170,242,29,120,7,0,157,8,97,166,132,21,9,0,157,8,97,166,157,23,9,0,158,8,76,50,135,44,7,0,159,8,225,246,116,72,7,0,160,136,92,79,97,16,7,0,160,136,145,22,0,55,7,0,166,136,74,4,51,104,7,0,167,8,245,69,23,27,7,0,168,8,84,64,148,27,11,0,169,136,215,178,126,106,8,0,170,136,45,229,234,205,9,0,170,136,45,229,1,206,9,0,174,136,67,142,16,183,8,0,174,136,67,142,251,191,8,0,174,136,67,142,239,200,8,0,177,136,164,174,208,11,6,0,178,136,125,113,45,226,8,0,178,136,125,113,130,231,8,0,178,136,121,182,4,52,10,0,180,8,203,148,56,59,6,0,180,8,75,200,29,120,7,0,182,8,66,5,170,181,6,0,182,8,66,5,65,41,7,0,182,136,68,42,181,212,10,0,183,136,173,111,175,80,7,0,186,8,12,250,194,138,7,0,187,136,120,101,126,11,6,0,187,136,114,6,135,149,7,0,187,136,114,6,153,98,10,0,187,136,114,6,177,98,10,0,187,136,114,6,203,98,10,0,188,136,157,1,238,10,6,0,188,8,6,166,135,44,7,0,191,136,68,117,219,238,8,0,191,136,68,117,39,240,8,0,191,136,68,117,117,241,8,0,192,136,98,168,60,152,7,0,192,136,98,168,128,112,8,0,194,136,220,148,60,152,7,0,194,136,220,148,79,237,8,0,194,8,118,144,224,94,9,0,195,8,164,160,117,51,7,0,200,136,252,93,255,110,7,0,202,136,127,12,134,19,7,0,202,8,136,161,252,46,7,0,203,8,1,228,60,182,8,0,203,8,87,170,85,209,10,0,204,8,146,149,228,240,10,0,204,8,146,149,244,240,10,0,204,8,146,149,14,246,10,0,206,136,95,52,152,65,7,0,206,136,8,172,107,226,9,0,206,136,8,172,251,226,9,0,208,136,244,28,49,16,6,0,212,136,206,149,187,124,11,0,213,136,50,30,65,76,7,0,217,136,103,27,23,253,6,0,217,8,33,131,134,19,7,0,222,8,202,67,199,236,5,0,225,136,155,247,23,27,7,0,226,8,156,61,121,233,5,0,228,136,189,183,55,174,6,0,231,136,125,46,85,174,7,0,231,136,125,46,202,174,7,0,233,136,89,254,140,7,6,0,235,136,77,223,194,138,7,0,235,136,23,89,4,52,10,0,238,8,231,105,194,138,7,0,238,8,231,105,84,200,10,0,239,136,48,120,65,41,7,0,239,8,77,203,161,77,7,0,239,136,213,129,104,142,8,0,240,136,137,197,60,152,7,0,240,136,137,197,173,64,8,0,240,136,137,197,215,64,8,0,240,136,137,197,33,115,10,0,240,136,137,197,69,115,10,0,240,136,137,197,92,115,10,0,243,136,26,120,165,224,8,0,243,136,26,120,86,225,8,0,245,136,214,54,111,81,9,0,245,136,214,54,4,82,9,0,245,8,19,182,4,52,10,0,248,136,58,58,65,41,7,0,248,8,106,156,135,61,7,0,248,136,37,103,102,214,8,0,248,136,37,103,14,218,8,0,250,8,254,48,194,138,7,0,254,8,18,0,222,14,7,0,254,136,75,20,139,174,11,0,0,9,132,102,183,249,6,0,0,137,136,224,209,19,10,0,1,9,161,75,188,71,7,0,1,9,161,75,66,161,10,0,3,9,86,193,152,230,7,0,6,9,124,9,161,77,7,0,7,9,169,125,45,226,8,0,7,9,169,125,130,231,8,0,8,9,119,27,89,251,6,0,12,9,112,211,65,41,7,0,12,137,247,136,12,99,7,0,12,9,107,48,16,183,8,0,12,9,107,48,251,191,8,0,12,9,107,48,239,200,8,0,12,9,0,26,118,24,11,0,14,9,216,132,145,12,8,0,15,9,227,145,156,253,6,0,15,9,182,60,73,92,11,0,16,9,53,191,167,232,6,0,17,137,173,20,209,84,7,0,17,137,31,47,174,93,7,0,18,9,123,102,193,220,7,0,18,9,62,235,145,12,8,0,20,137,208,126,16,183,8,0,20,137,208,126,251,191,8,0,20,137,208,126,239,200,8,0,21,9,107,229,145,114,7,0,27,9,198,47,23,27,7,0,31,9,176,34,176,68,7,0,31,9,192,171,205,87,7,0,32,9,182,103,66,3,7,0,33,137,30,4,13,8,7,0,34,137,140,65,150,45,9,0,34,137,140,65,18,46,9,0,34,9,239,176,168,152,9,0,38,9,193,107,145,114,7,0,42,9,211,241,248,242,6,0,42,137,241,215,26,7,7,0,42,9,6,231,19,90,7,0,42,137,223,60,45,226,8,0,42,137,223,60,130,231,8,0,43,137,233,60,14,137,9,0,43,137,233,60,201,137,9,0,44,9,181,166,199,105,11,0,45,9,151,167,227,135,7,0,48,9,181,10,212,26,6,0,48,9,69,42,71,250,6,0,48,137,41,202,104,67,7,0,49,9,6,39,75,112,7,0,49,137,217,138,70,14,8,0,49,137,217,138,99,14,8,0,49,137,217,138,139,14,8,0,50,9,153,117,134,19,7,0,51,137,189,209,161,110,10,0,51,137,189,209,2,112,10,0,52,9,180,45,86,223,10,0,55,9,195,65,229,103,9,0,55,9,195,65,3,104,9,0,55,9,195,65,29,104,9,0,56,9,193,223,20,8,9,0,56,9,193,223,247,8,9,0,58,9,145,217,10,84,8,0,59,9,35,33,145,114,7,0,59,9,140,192,4,52,10,0,61,9,201,238,29,120,7,0,61,137,226,31,60,152,7,0,61,137,226,31,226,164,7,0,62,137,231,100,16,183,8,0,62,137,231,100,251,191,8,0,62,137,231,100,239,200,8,0,63,137,63,189,186,53,9,0,63,137,63,189,77,54,9,0,65,9,172,51,212,243,6,0,65,137,1,241,120,20,11,0,65,137,1,241,139,20,11,0,66,9,24,77,218,93,7,0,66,137,233,141,12,99,7,0,66,137,16,3,16,183,8,0,66,137,16,3,251,191,8,0,66,137,16,3,239,200,8,0,67,137,14,191,29,14,6,0,67,137,14,191,73,130,7,0,70,137,3,18,134,19,7,0,70,9,223,251,47,143,8,0,70,137,104,61,45,226,8,0,70,137,104,61,130,231,8,0,72,9,186,148,115,139,6,0,72,9,104,214,204,181,9,0,72,9,104,214,224,182,9,0,73,9,25,46,38,92,7,0,74,9,214,208,23,27,7,0,74,9,38,18,119,96,7,0,75,9,35,208,101,114,6,0,76,137,4,16,29,120,7,0,78,9,115,10,215,238,5,0,79,137,144,160,253,49,7,0,80,9,149,6,219,0,7,0,80,9,14,157,132,21,9,0,80,9,14,157,157,23,9,0,83,137,152,61,246,243,9,0,83,137,152,61,59,245,9,0,83,137,152,61,131,246,9,0,84,137,114,27,10,251,7,0,85,137,81,82,160,163,11,0,87,137,62,214,252,46,7,0,89,137,178,70,117,51,7,0,91,9,86,238,234,226,10,0,94,137,15,80,6,249,9,0,94,137,15,80,105,249,9,0,94,137,15,80,201,249,9,0,94,137,55,19,168,94,11,0,97,137,245,126,4,52,10,0,98,9,6,13,65,174,10,0,99,137,153,38,97,16,7,0,99,9,252,93,82,20,8,0,102,9,98,83,238,82,6,0,102,9,255,177,117,51,7,0,102,9,255,177,111,53,7,0,102,9,255,177,242,163,7,0,104,9,82,198,233,176,7,0,105,137,35,57,65,226,6,0,105,9,8,24,233,16,7,0,105,137,59,59,218,93,7,0,106,137,250,197,143,240,6,0,106,9,39,3,57,135,7,0,108,137,201,148,53,118,8,0,108,137,201,148,69,119,8,0,108,137,201,148,125,18,9,0,108,137,201,148,34,19,9,0,114,9,186,247,102,15,7,0,116,137,78,149,176,147,11,0,117,9,162,76,31,161,11,0,118,9,35,22,206,172,6,0,118,9,127,143,16,183,8,0,118,9,127,143,251,191,8,0,118,9,127,143,239,200,8,0,120,137,158,204,100,191,10,0,120,9,180,237,85,63,11,0,120,9,180,237,160,68,11,0,125,9,134,131,60,152,7,0,127,9,37,29,6,72,10,0,128,137,29,72,220,180,7,0,128,9,94,127,62,223,9,0,128,9,94,127,64,224,9,0,128,9,94,127,93,225,9,0,129,9,111,92,16,183,8,0,129,9,111,92,251,191,8,0,129,9,111,92,239,200,8,0,131,9,26,188,55,27,6,0,132,137,115,27,37,248,7,0,133,9,207,58,0,122,8,0,133,9,207,58,56,122,8,0,135,137,41,129,55,108,7,0,135,9,167,194,147,176,11,0,137,9,123,132,4,52,10,0,138,137,248,51,202,203,9,0,138,137,248,51,237,203,9,0,138,137,248,51,28,204,9,0,141,137,221,139,21,71,9,0,141,137,221,139,100,72,9,0,141,137,221,139,181,73,9,0,141,137,221,139,11,75,9,0,143,9,196,130,82,20,8,0,143,9,68,82,246,243,9,0,143,9,68,82,59,245,9,0,143,9,68,82,131,246,9,0,143,9,201,238,167,69,11,0,144,137,62,37,116,72,7,0,145,137,205,234,103,245,6,0,149,9,116,211,77,11,7,0,152,9,203,143,72,120,6,0,153,9,216,10,48,245,6,0,154,9,188,118,66,42,6,0,154,9,230,200,104,222,10,0,156,9,168,105,73,38,7,0,161,9,105,188,115,85,9,0,161,9,105,188,150,85,9,0,161,9,105,188,187,85,9,0,163,9,46,175,44,15,8,0,163,9,46,175,94,15,8,0,164,137,15,208,218,93,7,0,164,137,148,44,21,138,7,0,165,137,184,234,236,71,6,0,166,137,79,150,135,1,9,0,166,137,79,150,189,1,9,0,167,137,173,15,0,55,7,0,168,9,76,115,194,138,7,0,170,137,151,133,167,242,9,0,170,9,25,95,220,137,11,0,171,9,229,66,111,228,7,0,175,137,72,82,161,30,8,0,182,9,125,248,161,77,7,0,184,137,175,248,19,245,7,0,185,9,150,164,60,152,7,0,185,9,150,164,79,237,8,0,185,137,63,51,130,128,11,0,186,137,144,114,9,40,8,0,186,137,20,27,62,223,9,0,186,137,20,27,64,224,9,0,186,137,20,27,93,225,9,0,187,9,115,102,233,16,7,0,189,9,96,130,176,68,7,0,189,9,11,181,142,113,7,0,189,137,51,12,145,12,8,0,189,9,247,9,230,120,8,0,189,137,217,181,20,30,10,0,189,137,217,181,115,30,10,0,189,137,217,181,207,30,10,0,190,137,86,206,0,55,7,0,190,137,86,206,163,57,7,0,193,9,169,99,217,9,7,0,194,137,249,96,194,138,7,0,194,9,179,68,45,226,8,0,194,9,179,68,130,231,8,0,194,9,33,144,187,220,9,0,194,9,33,144,14,221,9,0,195,137,138,209,23,27,7,0,197,9,40,40,23,27,7,0,200,9,134,2,199,221,5,0,200,9,128,143,72,238,9,0,200,9,128,143,133,238,9,0,200,9,128,143,176,238,9,0,200,137,13,147,4,52,10,0,202,9,67,234,102,214,8,0,202,9,67,234,14,218,8,0,203,9,150,23,128,39,7,0,203,9,218,94,92,9,8,0,204,137,77,105,253,38,9,0,204,137,77,105,207,40,9,0,205,137,76,137,184,220,5,0,205,9,191,173,125,67,10,0,205,9,191,173,69,68,10,0,206,137,199,94,90,49,6,0,207,9,74,176,16,183,8,0,207,9,74,176,251,191,8,0,207,9,74,176,239,200,8,0,207,137,66,43,102,214,8,0,207,137,66,43,14,218,8,0,208,137,92,210,191,179,8,0,208,137,92,210,239,179,8,0,210,9,188,148,96,188,6,0,210,9,188,148,117,51,7,0,210,9,188,148,111,53,7,0,212,137,52,189,16,183,8,0,212,137,52,189,251,191,8,0,212,137,52,189,239,200,8,0,213,137,30,43,51,65,7,0,215,9,158,214,167,242,9,0,216,9,137,199,139,163,9,0,216,9,137,199,241,163,9,0,217,9,120,40,134,19,7,0,218,137,196,78,115,2,7,0,218,137,196,78,29,120,7,0,219,9,71,153,161,77,7,0,219,9,181,245,143,167,10,0,220,9,125,169,4,52,10,0,221,9,217,200,145,12,8,0,223,9,31,36,143,240,6,0,223,9,112,28,156,253,6,0,225,9,148,67,131,110,6,0,225,9,1,188,182,13,7,0,225,9,208,148,45,226,8,0,225,9,208,148,130,231,8,0,225,9,96,76,1,208,9,0,225,9,96,76,27,208,9,0,225,9,96,76,51,208,9,0,225,137,212,190,187,48,11,0,226,9,2,186,135,61,7,0,227,137,160,111,134,19,7,0,228,9,96,164,190,82,9,0,228,9,96,164,223,82,9,0,230,9,63,51,58,35,9,0,230,9,63,51,31,36,9,0,232,9,143,185,231,132,10,0,233,137,3,126,45,226,8,0,233,137,3,126,130,231,8,0,235,137,4,163,45,226,8,0,235,137,4,163,130,231,8,0,235,9,117,79,164,16,9,0,235,9,117,79,141,17,9,0,235,137,77,121,186,26,9,0,235,137,77,121,120,27,9,0,235,137,77,121,48,28,9,0,240,137,3,204,16,183,8,0,240,137,3,204,251,191,8,0,240,137,3,204,239,200,8,0,244,9,46,201,209,84,7,0,244,137,134,86,190,192,9,0,244,137,134,86,239,192,9,0,244,137,134,86,19,193,9,0,245,137,85,44,191,107,11,0,246,9,22,52,60,152,7,0,246,9,22,52,190,122,8,0,246,9,22,52,83,123,8,0,246,9,22,52,244,123,8,0,246,9,22,52,210,33,10,0,250,137,34,202,191,253,5,0,250,9,153,38,16,183,8,0,250,9,153,38,251,191,8,0,250,9,153,38,239,200,8,0,251,137,244,56,151,211,5,0,251,9,247,90,65,36,7,0,252,137,54,8,12,146,8,0,0,10,131,149,4,52,10,0,2,10,155,126,35,238,5,0,3,10,148,217,132,21,9,0,3,10,148,217,157,23,9,0,3,10,232,88,206,58,11,0,4,10,16,56,132,104,6,0,4,138,121,3,45,226,8,0,4,138,121,3,130,231,8,0,5,138,214,23,230,237,7,0,7,138,133,63,102,214,8,0,7,138,133,63,14,218,8,0,7,10,19,245,146,76,9,0,7,10,19,245,63,77,9,0,12,10,80,126,218,93,7,0,13,138,84,242,134,212,5,0,13,138,5,98,194,138,7,0,15,10,160,248,2,41,7,0,15,138,174,76,126,176,11,0,17,10,243,3,74,239,9,0,17,10,243,3,174,239,9,0,19,138,118,31,160,216,5,0,21,138,85,170,99,7,11,0,24,138,90,246,23,27,7,0,24,10,3,128,25,134,9,0,24,10,3,128,147,134,9,0,24,10,3,128,7,135,9,0,24,10,3,128,174,135,9,0,24,10,3,128,71,136,9,0,25,10,148,190,60,248,6,0,25,138,127,6,193,113,7,0,28,138,242,54,102,214,8,0,28,138,242,54,14,218,8,0,29,10,241,27,43,163,6,0,29,10,221,191,2,237,6,0,30,10,254,109,117,51,7,0,30,10,254,109,111,53,7,0,31,138,227,150,216,140,9,0,31,138,227,150,69,141,9,0,31,10,46,190,137,147,9,0,31,10,46,190,174,147,9,0,31,10,46,190,206,147,9,0,32,138,113,159,111,4,9,0,32,138,113,159,41,6,9,0,35,10,149,249,102,214,8,0,35,10,149,249,14,218,8,0,37,10,168,176,23,27,7,0,40,10,77,168,22,179,7,0,44,10,223,68,193,235,5,0,44,138,181,171,4,52,10,0,45,10,216,1,135,44,7,0,45,10,89,12,27,2,9,0,45,10,89,12,56,2,9,0,46,138,47,145,29,120,7,0,51,10,10,208,59,49,6,0,51,10,10,208,59,72,7,0,53,10,43,161,59,109,9,0,53,10,43,161,76,109,9,0,53,10,43,161,93,109,9,0,53,10,43,161,163,109,9,0,55,138,33,50,207,70,7,0,55,138,234,167,119,96,7,0,58,138,189,115,143,167,10,0,59,138,28,116,16,183,8,0,59,138,28,116,251,191,8,0,59,138,28,116,239,200,8,0,61,138,120,140,130,47,7,0,62,10,215,33,186,158,9,0,62,10,215,33,5,159,9,0,63,138,172,3,145,114,7,0,68,10,215,111,10,2,7,0,68,10,153,137,145,114,7,0,68,138,220,11,253,38,9,0,68,138,220,11,207,40,9,0,69,10,158,58,85,52,11,0,70,138,52,158,103,48,7,0,73,138,225,22,60,152,7,0,73,138,225,22,74,160,7,0,73,138,225,22,226,164,7,0,75,10,197,138,189,199,6,0,75,138,181,136,51,104,7,0,76,10,212,45,22,91,7,0,77,10,116,85,55,108,7,0,79,138,49,35,176,68,7,0,79,138,44,127,166,190,7,0,80,138,168,144,202,210,5,0,80,138,231,242,247,247,6,0,83,10,208,253,101,124,6,0,83,10,157,242,4,52,10,0,85,10,104,128,239,177,7,0,86,138,126,177,55,95,10,0,86,138,126,177,143,95,10,0,87,138,42,33,145,114,7,0,90,138,85,65,134,19,7,0,90,10,51,106,4,52,10,0,91,10,137,232,227,212,5,0,92,138,174,230,145,12,8,0,100,10,104,196,207,24,10,0,100,10,104,196,22,25,10,0,100,10,104,196,89,25,10,0,100,10,104,196,150,25,10,0,101,10,2,138,64,47,7,0,103,10,205,71,66,3,7,0,105,10,158,76,102,214,8,0,105,10,158,76,14,218,8,0,105,138,18,148,253,110,9,0,105,138,18,148,26,111,9,0,105,138,18,148,52,111,9,0,106,138,38,62,130,40,8,0,106,10,148,190,16,183,8,0,106,10,148,190,251,191,8,0,106,10,148,190,239,200,8,0,110,138,7,199,56,218,6,0,111,10,253,181,55,108,7,0,112,138,133,252,105,129,9,0,112,138,133,252,180,129,9,0,114,10,211,206,163,66,7,0,118,10,14,93,124,233,10,0,121,10,8,177,161,102,11,0,122,10,100,27,163,139,11,0,124,138,130,81,250,87,10,0,125,10,134,68,241,17,7,0,126,10,72,169,26,7,7,0,127,138,141,146,134,19,7,0,130,10,46,50,98,19,11,0,131,138,22,200,4,52,10,0,133,10,52,99,90,14,7,0,133,10,232,84,4,52,10,0,137,138,55,245,207,214,10,0,138,138,250,35,165,125,11,0,139,138,227,40,45,226,8,0,139,138,227,40,130,231,8,0,140,10,90,41,141,252,6,0,142,138,207,132,177,105,7,0,143,138,208,80,0,182,7,0,143,138,208,80,58,182,7,0,143,138,52,138,90,177,8,0,143,138,52,138,165,177,8,0,143,138,104,202,119,148,11,0,144,138,48,200,23,27,7,0,144,10,62,80,97,103,7,0,145,10,5,255,62,223,9,0,145,10,5,255,64,224,9,0,145,10,5,255,93,225,9,0,147,10,62,213,119,96,7,0,147,138,134,181,19,59,11,0,148,10,93,187,92,230,10,0,151,10,67,16,117,240,6,0,152,138,10,175,193,113,7,0,161,10,75,68,161,77,7,0,161,10,181,197,145,114,7,0,162,10,186,171,209,84,7,0,166,10,116,151,197,244,5,0,167,138,225,218,117,51,7,0,167,138,225,218,111,53,7,0,168,138,61,82,4,52,10,0,170,138,83,50,126,35,6,0,172,10,29,78,26,22,8,0,172,10,29,78,66,22,8,0,176,138,71,27,29,120,7,0,176,10,75,178,201,8,10,0,177,138,63,51,183,116,11,0,180,10,142,51,134,19,7,0,180,138,44,127,12,99,7,0,184,138,58,88,167,40,6,0,184,138,46,26,209,18,7,0,184,138,165,112,217,187,10,0,185,138,201,236,183,83,10,0,185,138,201,236,209,83,10,0,185,138,11,102,45,146,11,0,185,138,240,13,246,160,11,0,186,138,134,233,119,96,7,0,187,10,143,185,194,138,7,0,190,138,99,230,26,7,7,0,190,138,177,74,136,142,10,0,193,10,81,190,71,57,11,0,194,10,181,135,139,163,9,0,194,10,181,135,241,163,9,0,199,10,230,83,119,96,7,0,199,138,42,185,0,64,11,0,199,138,42,185,43,64,11,0,200,10,148,98,83,126,8,0,200,10,148,98,214,127,8,0,200,10,148,98,65,128,8,0,200,10,148,98,4,129,8,0,200,10,148,98,151,129,8,0,200,10,148,98,228,129,8,0,202,10,240,186,229,109,7,0,203,10,48,135,2,63,8,0,203,10,48,135,35,79,8,0,203,10,114,29,102,214,8,0,203,10,114,29,14,218,8,0,203,10,58,150,135,2,9,0,203,10,58,150,47,3,9,0,205,138,104,249,240,242,7,0,205,138,104,249,38,243,7,0,205,138,104,249,92,243,7,0,205,10,215,240,139,48,8,0,205,10,215,240,178,48,8,0,205,138,113,57,38,117,8,0,206,10,244,24,102,15,7,0,206,138,77,129,58,75,7,0,206,138,175,23,45,226,8,0,206,138,175,23,130,231,8,0,211,138,16,3,72,102,9,0,211,138,16,3,254,102,9,0,212,10,204,250,151,186,7,0,217,138,134,172,115,247,5,0,218,10,55,69,129,80,7,0,221,10,221,25,135,153,8,0,222,10,166,6,115,4,7,0,224,10,141,129,58,75,7,0,224,10,141,129,161,77,7,0,227,138,203,151,186,81,7,0,228,10,103,231,118,251,5,0,234,10,77,225,165,224,8,0,234,10,77,225,86,225,8,0,234,10,53,124,125,18,9,0,234,10,53,124,34,19,9,0,235,10,218,128,236,43,11,0,240,10,181,211,194,241,6,0,241,138,211,192,194,138,7,0,242,10,181,87,197,138,10,0,243,138,211,14,9,84,9,0,243,138,211,14,62,84,9,0,243,138,211,14,59,168,10,0,245,138,100,168,228,66,7,0,246,138,200,45,62,150,9,0,246,138,200,45,101,150,9,0,247,10,46,21,160,245,7,0,247,138,178,230,111,4,9,0,247,138,178,230,41,6,9,0,248,138,32,37,177,3,11,0,249,10,49,154,164,16,9,0,249,10,49,154,141,17,9,0,250,10,254,167,29,120,7,0,252,138,197,184,237,63,7,0,252,138,197,184,7,64,7,0,252,138,146,115,220,119,9,0,252,138,146,115,8,120,9,0,252,138,146,115,38,194,10,0,253,10,1,214,151,56,8,0,255,138,69,152,16,183,8,0,255,138,69,152,251,191,8,0,255,138,69,152,239,200,8,0,2,11,106,100,161,77,7,0,5,11,147,254,194,185,9,0,5,11,147,254,96,186,9,0,6,139,160,109,112,93,11,0,7,139,114,75,116,72,7,0,11,11,201,247,60,152,7,0,11,11,201,247,226,164,7,0,11,139,115,77,165,224,8,0,11,139,115,77,86,225,8,0,11,11,34,239,216,32,11,0,13,139,174,141,83,126,8,0,13,139,58,50,250,87,10,0,14,139,46,44,51,220,6,0,15,139,1,110,240,66,9,0,15,139,1,110,119,67,9,0,19,11,133,206,147,140,11,0,20,11,48,158,115,4,7,0,23,11,142,94,38,117,8,0,23,139,226,109,211,100,11,0,24,139,118,164,55,108,7,0,26,139,33,212,218,93,7,0,27,11,63,253,92,28,8,0,28,11,69,108,221,255,10,0,29,11,49,14,134,19,7,0,30,11,63,253,163,57,7,0,30,11,217,224,194,138,7,0,30,139,104,38,178,173,11,0,32,139,19,221,161,77,7,0,35,11,133,147,31,84,6,0,37,139,75,77,205,216,5,0,40,139,42,145,212,57,6,0,46,11,133,161,135,61,7,0,46,11,237,54,38,62,11,0,50,139,123,255,111,4,9,0,50,139,123,255,41,6,9,0,54,139,69,57,175,148,8,0,54,139,69,57,251,148,8,0,54,139,69,57,72,149,8,0,54,11,85,99,4,52,10,0,54,139,14,60,23,234,10,0,55,11,215,67,130,89,8,0,55,11,215,67,174,89,8,0,55,11,215,67,219,89,8,0,55,11,215,67,9,90,8,0,55,11,121,27,102,214,8,0,55,11,121,27,14,218,8,0,57,139,178,64,33,69,11,0,59,139,220,14,242,55,11,0,60,139,121,169,176,176,8,0,60,139,121,169,224,176,8,0,61,11,132,182,253,49,7,0,61,139,205,31,194,138,7,0,61,11,109,4,145,12,8,0,61,139,189,128,194,185,9,0,61,139,189,128,96,186,9,0,63,139,243,57,175,7,7,0,63,11,133,246,135,44,7,0,68,139,146,50,100,92,7,0,68,139,10,140,186,36,8,0,69,11,129,243,25,86,7,0,69,11,129,243,74,86,7,0,69,11,205,128,21,71,9,0,69,11,205,128,100,72,9,0,69,11,205,128,181,73,9,0,69,11,205,128,11,75,9,0,71,139,199,56,116,72,7,0,71,139,83,140,15,220,10,0,75,139,149,148,79,224,6,0,75,139,149,148,173,14,7,0,75,139,28,116,209,84,7,0,75,139,49,98,122,88,11,0,76,11,213,151,215,246,5,0,77,11,163,235,161,77,7,0,78,11,164,47,194,138,7,0,80,11,41,19,181,14,11,0,82,139,181,148,52,213,6,0,82,11,163,150,250,59,9,0,82,11,163,150,20,60,9,0,82,139,100,98,9,84,9,0,82,139,100,98,62,84,9,0,82,139,142,58,13,99,11,0,84,11,40,191,12,99,7,0,88,139,162,20,101,53,11,0,89,139,53,237,45,226,8,0,89,139,53,237,130,231,8,0,91,11,217,218,18,180,10,0,92,11,65,232,127,72,11,0,95,11,32,32,1,162,10,0,100,139,42,208,204,181,9,0,100,139,42,208,224,182,9,0,104,139,43,192,16,223,5,0,104,139,175,237,216,47,7,0,107,139,180,255,19,1,7,0,107,11,138,255,135,44,7,0,108,11,43,211,107,226,9,0,108,11,43,211,251,226,9,0,109,139,225,57,168,152,9,0,109,11,221,48,183,116,11,0,110,11,164,160,135,250,5,0,115,139,167,212,175,29,9,0,115,139,167,212,88,30,9,0,120,139,156,169,168,152,9,0,121,139,74,3,193,39,6,0,122,11,35,53,101,64,7,0,123,139,143,109,47,43,7,0,125,139,94,77,36,174,7,0,129,139,206,61,2,117,6,0,130,11,81,81,174,65,6,0,132,139,181,82,4,52,10,0,135,139,205,31,81,122,6,0,135,11,138,173,228,66,7,0,135,139,201,200,45,226,8,0,135,139,201,200,130,231,8,0,136,139,210,230,174,216,10,0,138,11,5,87,55,140,11,0,140,139,157,144,27,255,8,0,140,139,157,144,100,255,8,0,141,139,171,152,65,41,7,0,141,139,156,217,104,67,7,0,141,139,33,120,135,149,7,0,141,11,146,97,102,214,8,0,141,11,146,97,14,218,8,0,144,11,194,153,231,254,5,0,144,139,232,207,119,96,7,0,144,139,64,69,197,96,8,0,144,139,64,69,4,97,8,0,144,139,64,69,57,97,8,0,144,11,245,4,77,135,10,0,145,11,185,251,178,53,6,0,145,11,145,116,134,19,7,0,145,139,225,73,145,114,7,0,147,139,88,177,32,107,7,0,147,139,88,177,130,107,7,0,147,139,85,37,102,214,8,0,147,139,85,37,14,218,8,0,148,11,15,205,149,110,11,0,152,11,241,28,65,88,8,0,152,139,240,247,253,38,9,0,152,139,240,247,207,40,9,0,153,139,0,52,116,72,7,0,153,139,0,11,16,183,8,0,153,139,0,11,251,191,8,0,153,139,0,11,239,200,8,0,154,139,75,90,20,218,6,0,154,11,52,246,183,249,6,0,154,11,95,209,29,120,7,0,154,139,75,90,137,65,8,0,155,139,118,63,207,218,5,0,155,139,118,63,234,227,5,0,155,11,146,19,19,90,7,0,157,11,164,160,139,6,8,0,162,11,148,190,110,246,10,0,163,11,19,80,253,49,7,0,163,139,76,238,217,103,7,0,164,11,171,100,23,27,7,0,164,139,173,133,12,99,7,0,166,11,33,83,228,236,6,0,166,11,33,83,73,214,7,0,168,11,13,131,73,38,7,0,168,11,154,228,241,153,10,0,168,11,13,131,117,94,11,0,170,11,53,189,207,160,6,0,170,11,223,245,193,100,10,0,170,11,223,245,89,103,10,0,173,11,59,152,60,152,7,0,173,11,59,152,128,112,8,0,173,11,143,165,161,248,10,0,177,11,133,120,26,83,10,0,177,11,133,120,60,83,10,0,179,139,240,119,217,108,11,0,181,139,238,57,81,126,9,0,181,139,238,57,166,126,9,0,181,139,238,57,53,127,9,0,182,11,201,241,48,35,6,0,183,11,106,55,47,43,7,0,183,11,154,214,59,72,7,0,184,139,120,232,134,19,7,0,193,11,254,253,2,168,8,0,193,11,254,253,65,168,8,0,193,11,254,253,125,168,8,0,194,139,59,243,45,226,8,0,194,139,59,243,130,231,8,0,196,11,82,129,29,1,6,0,196,139,86,178,119,96,7,0,196,139,216,207,135,149,7,0,196,11,116,201,72,217,10,0,197,11,2,89,222,14,7,0,197,11,227,239,128,39,7,0,197,11,85,93,16,183,8,0,197,11,85,93,251,191,8,0,197,11,85,93,239,200,8,0,198,11,168,247,214,236,8,0,198,11,168,247,252,236,8,0,200,139,63,9,17,169,6,0,200,11,223,59,61,39,7,0,202,139,253,239,221,98,6,0,202,139,253,239,78,15,7,0,206,11,128,180,205,87,7,0,208,11,243,239,12,99,7,0,208,11,250,173,207,177,11,0,210,139,20,94,51,104,7,0,210,11,15,204,133,228,9,0,210,11,15,204,175,228,9,0,212,11,20,234,235,235,9,0,212,11,20,234,13,236,9,0,215,139,235,179,55,108,7,0,215,139,247,190,72,102,9,0,215,139,247,190,254,102,9,0,217,11,28,234,135,44,7,0,217,11,105,189,160,79,8,0,219,139,187,72,102,214,8,0,219,139,187,72,14,218,8,0,219,139,73,24,57,220,10,0,220,139,81,242,125,67,10,0,220,139,81,242,69,68,10,0,222,11,153,162,236,13,11,0,225,11,169,47,135,44,7,0,226,11,46,210,165,224,8,0,226,11,46,210,86,225,8,0,227,11,139,224,143,240,6,0,227,11,211,29,12,99,7,0,227,11,118,92,90,61,11,0,227,11,118,92,107,61,11,0,228,139,170,166,245,232,7,0,228,139,87,250,16,183,8,0,228,139,87,250,251,191,8,0,228,139,87,250,239,200,8,0,228,11,180,242,19,19,11,0,230,11,7,189,219,238,8,0,230,11,7,189,39,240,8,0,230,11,7,189,117,241,8,0,231,11,87,172,10,107,8,0,235,139,154,101,141,111,11,0,236,11,164,160,66,3,7,0,237,11,63,101,80,113,7,0,237,139,1,21,150,189,10,0,239,11,94,121,99,174,6,0,239,11,1,124,23,27,7,0,239,11,130,194,7,189,10,0,241,11,85,232,4,52,10,0,242,11,75,127,59,245,10,0,243,139,38,90,104,67,7,0,243,139,70,175,240,66,9,0,243,139,70,175,119,67,9,0,244,11,189,86,134,143,11,0,245,11,131,173,23,27,7,0,248,11,153,134,38,251,8,0,248,11,153,134,50,251,8,0,249,11,241,46,117,101,6,0,249,139,115,37,227,172,8,0,251,11,29,110,134,19,7,0,252,139,192,222,4,52,10,0,254,11,79,253,133,10,8,0,255,11,23,1,16,183,8,0,255,11,23,1,251,191,8,0,255,11,23,1,239,200,8,0,1,12,40,118,83,132,10,0,10,140,78,136,60,120,11,0,12,140,107,215,252,169,7,0,13,140,218,52,233,16,7,0,13,140,112,90,179,122,9,0,15,12,106,63,29,120,7,0,18,140,244,145,1,53,6,0,21,140,11,131,74,240,6,0,21,140,106,65,163,66,7,0,21,140,11,131,95,60,9,0,21,140,11,131,133,60,9,0,22,140,196,86,16,183,8,0,22,140,196,86,251,191,8,0,22,140,196,86,239,200,8,0,25,140,81,242,135,149,7,0,25,140,81,242,60,152,7,0,25,140,81,242,131,44,9,0,26,140,102,153,122,87,9,0,26,140,102,153,212,87,9,0,26,140,102,153,40,88,9,0,26,140,82,58,246,243,9,0,26,140,82,58,59,245,9,0,26,140,82,58,131,246,9,0,27,140,148,88,51,104,7,0,30,12,149,43,102,214,8,0,30,12,149,43,14,218,8,0,31,140,133,227,171,9,10,0,31,140,133,227,188,9,10,0,31,140,133,227,203,9,10,0,31,140,149,27,4,52,10,0,34,140,236,36,12,99,7,0,34,12,49,131,194,138,7,0,36,12,199,28,16,183,8,0,36,12,199,28,251,191,8,0,36,12,199,28,239,200,8,0,38,12,35,190,246,148,11,0,39,140,132,106,145,114,7,0,39,12,45,208,64,252,9,0,39,12,45,208,81,252,9,0,40,140,25,96,43,72,10,0,40,140,25,96,148,72,10,0,42,12,82,98,138,171,7,0,42,140,85,200,4,52,10,0,43,12,89,16,71,250,6,0,46,12,7,103,107,226,9,0,46,12,7,103,251,226,9,0,47,12,20,234,118,163,10,0,47,12,20,234,157,163,10,0,48,140,209,181,82,9,6,0,50,12,158,132,8,155,8,0,52,12,110,161,214,236,8,0,52,12,110,161,252,236,8,0,52,12,88,136,193,100,10,0,52,12,88,136,89,103,10,0,53,140,62,253,65,41,7,0,53,140,62,253,201,42,7,0,55,12,77,243,216,135,6,0,55,12,36,251,64,70,7,0,57,140,31,193,92,9,8,0,57,12,95,139,238,81,10,0,59,12,109,102,117,51,7,0,59,12,109,102,111,53,7,0,60,12,237,0,81,248,7,0,60,12,237,0,123,248,7,0,60,140,122,111,186,53,9,0,60,140,122,111,77,54,9,0,61,12,107,235,70,80,9,0,61,140,179,242,161,110,10,0,61,140,179,242,2,112,10,0,61,12,254,110,112,25,11,0,62,12,21,236,132,21,9,0,62,12,21,236,157,23,9,0,64,12,168,102,14,111,11,0,64,12,168,102,159,122,11,0,65,140,210,17,219,238,8,0,65,140,210,17,39,240,8,0,65,140,210,17,117,241,8,0,69,12,191,93,201,80,7,0,70,12,72,80,0,55,7,0,70,12,72,80,163,57,7,0,70,140,13,102,168,104,8,0,70,140,13,102,45,105,8,0,70,140,13,102,167,105,8,0,71,12,242,18,4,52,10,0,72,12,220,234,46,130,6,0,72,140,183,152,224,123,9,0,72,140,183,152,29,124,9,0,72,140,183,152,109,124,9,0,74,140,21,125,97,207,7,0,76,140,204,25,4,52,10,0,79,140,183,45,218,44,6,0,80,140,155,242,176,94,6,0,81,12,187,215,51,104,7,0,86,12,204,122,134,19,7,0,86,12,168,9,132,21,9,0,86,12,168,9,157,23,9,0,87,140,65,77,60,152,7,0,87,140,65,77,190,122,8,0,87,140,65,77,83,123,8,0,87,140,65,77,244,123,8,0,87,140,65,77,210,33,10,0,88,12,228,33,99,36,7,0,90,12,21,223,147,218,5,0,93,12,248,137,47,166,6,0,94,140,14,205,145,173,6,0,94,140,14,205,181,173,6,0,96,12,2,22,6,65,6,0,104,12,189,115,240,248,6,0,104,12,120,171,65,64,8,0,104,140,125,156,4,52,10,0,106,12,61,23,134,19,7,0,110,140,116,221,65,50,6,0,110,140,116,221,119,121,6,0,112,12,115,242,81,223,5,0,112,12,115,242,147,110,7,0,113,140,219,47,181,245,6,0,113,140,230,127,194,185,9,0,113,140,230,127,96,186,9,0,116,12,22,77,16,183,8,0,116,12,22,77,251,191,8,0,116,12,22,77,239,200,8,0,119,140,85,210,246,62,7,0,120,140,196,148,245,63,6,0,120,12,143,86,51,104,7,0,121,12,152,215,29,120,7,0,121,140,128,130,106,143,10,0,121,140,128,130,160,143,10,0,123,12,139,232,194,138,7,0,125,12,11,210,194,185,9,0,125,12,11,210,96,186,9,0,125,12,7,196,137,3,11,0,127,12,61,9,143,147,10,0,130,12,46,131,70,17,8,0,130,140,8,34,252,242,8,0,130,140,8,34,240,243,8,0,131,140,103,102,83,126,8,0,137,140,206,96,41,212,5,0,137,12,9,198,209,18,7,0,138,140,28,142,207,34,6,0,138,12,101,88,232,238,10,0,138,12,101,88,36,239,10,0,138,12,101,88,138,239,10,0,138,12,101,88,180,243,10,0,139,140,222,126,112,246,7,0,141,140,42,62,247,238,5,0,145,12,201,132,158,141,10,0,145,12,201,132,182,141,10,0,146,12,164,160,145,114,7,0,146,140,154,39,168,152,9,0,148,140,18,116,31,225,10,0,149,140,253,137,76,17,6,0,150,12,137,13,51,104,7,0,153,140,37,195,77,250,8,0,153,140,37,195,94,250,8,0,154,12,159,138,193,100,10,0,154,12,159,138,89,103,10,0,157,12,227,205,114,109,11,0,158,12,211,2,161,77,7,0,158,12,150,4,16,183,8,0,158,12,150,4,251,191,8,0,158,12,150,4,239,200,8,0,160,140,123,21,135,44,7,0,165,140,82,158,29,14,6,0,165,12,10,172,72,236,6,0,165,12,160,63,173,17,7,0,165,140,82,158,73,130,7,0,165,140,17,150,4,52,10,0,166,12,172,62,26,7,7,0,166,12,82,132,4,52,10,0,168,140,254,53,183,219,6,0,168,140,254,53,133,12,7,0,168,140,254,53,222,14,7,0,168,12,222,255,194,138,7,0,168,140,254,53,195,124,10,0,168,140,254,53,211,124,10,0,169,12,170,17,31,161,11,0,171,12,161,241,29,14,6,0,171,12,161,241,73,130,7,0,172,12,55,161,152,66,8,0,172,12,156,140,4,52,10,0,172,12,55,161,15,192,10,0,174,12,29,180,82,116,11,0,174,12,29,180,36,117,11,0,174,12,29,180,119,126,11,0,177,140,46,78,13,228,10,0,179,140,121,181,224,58,11,0,184,12,185,247,163,57,7,0,186,140,22,83,169,82,10,0,186,140,22,83,203,82,10,0,187,140,157,38,12,247,5,0,193,140,174,65,208,121,6,0,194,12,112,167,119,131,11,0,195,12,185,120,135,61,7,0,195,12,109,20,187,124,11,0,196,140,85,210,25,84,7,0,196,140,85,210,114,84,7,0,198,12,164,160,212,157,6,0,198,12,119,227,23,27,7,0,199,12,43,211,16,183,8,0,199,12,43,211,251,191,8,0,199,12,43,211,239,200,8,0,201,12,168,138,100,92,7,0,201,140,181,148,148,125,11,0,202,12,207,170,214,212,5,0,205,140,56,139,75,148,7,0,205,140,56,139,226,164,7,0,205,12,204,81,132,21,9,0,205,12,204,81,157,23,9,0,205,12,220,89,4,52,10,0,206,12,155,120,130,47,7,0,207,140,0,206,111,4,9,0,207,140,0,206,41,6,9,0,212,140,51,23,25,84,7,0,212,140,51,23,114,84,7,0,214,12,207,192,4,52,10,0,215,140,212,58,163,57,7,0,215,12,220,213,205,87,7,0,217,12,243,12,230,155,6,0,217,140,135,105,23,27,7,0,218,12,207,245,218,93,7,0,219,12,97,7,169,251,6,0,219,140,73,214,65,76,7,0,221,140,233,126,190,76,8,0,222,12,161,38,184,89,7,0,222,12,161,38,19,90,7,0,222,140,222,126,187,131,11,0,224,140,233,249,4,52,10,0,227,140,126,144,47,181,7,0,227,140,126,144,115,182,7,0,233,140,82,54,204,181,9,0,233,140,82,54,224,182,9,0,234,12,198,97,23,159,6,0,234,12,22,187,161,77,7,0,236,140,137,173,122,246,6,0,239,140,39,95,16,183,8,0,239,140,39,95,251,191,8,0,239,140,39,95,239,200,8,0,240,12,102,10,236,17,6,0,241,12,186,189,187,67,11,0,243,12,203,43,247,80,7,0,243,12,105,19,102,214,8,0,243,12,105,19,14,218,8,0,245,140,189,92,195,217,7,0,245,140,169,201,16,183,8,0,245,140,169,201,251,191,8,0,245,140,169,201,239,200,8,0,252,140,152,228,102,214,8,0,252,140,152,228,14,218,8,0,254,140,141,102,203,255,6,0,254,12,171,53,19,1,7,0,254,12,177,101,66,3,7,0,0,13,87,34,132,21,9,0,0,13,87,34,157,23,9,0,1,141,132,171,4,52,10,0,3,13,99,171,125,18,9,0,3,13,99,171,34,19,9,0,3,13,201,136,12,168,10,0,4,13,215,30,219,0,7,0,6,13,9,212,20,30,10,0,6,13,9,212,115,30,10,0,6,13,9,212,207,30,10,0,7,141,171,10,241,190,7,0,11,141,152,6,205,87,7,0,12,141,186,18,211,17,7,0,12,141,104,156,16,183,8,0,12,141,104,156,251,191,8,0,12,141,104,156,239,200,8,0,13,141,36,103,97,16,7,0,15,13,129,202,175,67,6,0,15,13,146,232,134,19,7,0,15,13,10,73,245,15,8,0,15,13,205,112,25,134,9,0,15,13,205,112,147,134,9,0,15,13,205,112,7,135,9,0,15,13,205,112,174,135,9,0,15,13,205,112,71,136,9,0,16,13,187,191,23,27,7,0,17,13,215,203,9,238,8,0,17,13,215,203,94,238,8,0,17,141,16,227,196,97,9,0,17,141,16,227,228,97,9,0,18,13,161,174,29,81,7,0,18,13,161,174,101,95,11,0,22,141,81,190,134,19,7,0,22,13,142,10,119,96,7,0,22,141,179,168,194,138,7,0,23,141,87,227,135,149,7,0,25,13,56,51,250,121,11,0,26,141,229,141,12,99,7,0,30,13,155,120,132,206,10,0,32,141,61,81,37,69,6,0,35,13,223,23,90,220,5,0,35,13,239,38,252,193,6,0,38,13,190,13,51,18,7,0,38,13,95,64,218,93,7,0,41,13,10,206,116,72,7,0,41,13,153,236,115,161,9,0,41,13,153,236,104,162,9,0,41,141,49,178,209,19,10,0,43,141,66,0,2,175,11,0,47,141,74,10,190,192,9,0,47,141,74,10,239,192,9,0,47,141,74,10,19,193,9,0,47,13,110,249,85,176,11,0,49,141,30,127,213,188,7,0,49,141,18,175,55,64,10,0,49,141,18,175,85,64,10,0,50,141,237,232,0,55,7,0,50,141,237,232,163,57,7,0,50,141,110,0,4,52,10,0,51,13,73,145,60,77,10,0,51,13,73,145,232,77,10,0,52,141,95,9,66,139,9,0,52,141,95,9,88,139,9,0,52,141,95,9,129,139,9,0,52,141,95,9,160,139,9,0,55,141,99,56,238,27,6,0,56,13,253,6,220,137,7,0,56,13,253,6,197,176,7,0,56,13,212,110,16,183,8,0,56,13,212,110,251,191,8,0,56,13,212,110,239,200,8,0,56,141,164,125,253,146,11,0,57,13,87,184,116,72,7,0,61,141,216,153,134,19,7,0,63,13,151,130,134,19,7,0,65,13,63,127,81,189,10,0,67,13,157,253,10,135,10,0,68,141,133,18,134,19,7,0,69,13,62,181,79,109,6,0,69,13,141,154,8,146,10,0,77,141,228,131,4,52,10,0,81,141,100,244,19,113,7,0,81,141,100,244,104,113,7,0,84,141,14,70,53,157,6,0,87,141,233,52,32,27,6,0,89,13,29,253,233,16,7,0,90,141,151,150,134,19,7,0,90,141,231,242,113,55,9,0,90,141,231,242,149,55,9,0,92,13,239,109,23,27,7,0,95,141,179,214,50,247,6,0,96,141,62,204,149,40,7,0,99,13,9,148,116,72,7,0,102,13,94,175,16,183,8,0,102,13,94,175,251,191,8,0,102,13,94,175,239,200,8,0,102,141,106,112,163,88,10,0,102,141,106,112,83,89,10,0,104,141,86,60,99,24,8,0,104,141,86,60,133,24,8,0,109,13,34,106,253,49,7,0,110,13,188,87,4,52,10,0,111,13,163,139,23,27,7,0,111,13,210,174,0,55,7,0,111,13,210,174,163,57,7,0,111,141,61,116,145,114,7,0,112,13,221,246,213,15,9,0,119,141,11,135,65,41,7,0,121,141,226,230,45,135,11,0,122,141,41,160,134,19,7,0,122,141,213,133,135,61,7,0,122,13,116,46,16,183,8,0,122,13,116,46,251,191,8,0,122,13,116,46,239,200,8,0,122,13,9,201,51,248,8,0,122,13,9,201,162,248,8,0,123,13,35,246,119,96,7,0,123,13,64,59,168,84,10,0,123,13,64,59,226,84,10,0,127,141,15,190,194,233,5,0,127,141,28,162,23,205,10,0,127,141,28,162,61,205,10,0,135,13,214,4,69,157,10,0,135,13,214,4,255,180,10,0,139,13,50,125,48,127,6,0,139,141,170,122,210,202,7,0,140,13,108,36,167,242,9,0,143,13,1,190,21,138,7,0,144,141,87,248,4,52,10,0,145,141,102,78,115,34,9,0,145,141,102,78,142,34,9,0,146,141,124,79,194,138,7,0,147,141,187,236,241,190,7,0,147,13,149,176,144,152,11,0,147,141,113,15,64,173,11,0,149,13,209,198,12,99,7,0,149,13,209,198,60,152,7,0,149,13,209,198,83,126,8,0,150,141,235,36,99,135,6,0,150,141,146,155,119,96,7,0,151,141,124,197,189,199,6,0,152,141,82,195,0,55,7,0,152,141,82,195,163,57,7,0,152,141,241,126,166,16,8,0,156,13,99,74,45,226,8,0,156,13,99,74,130,231,8,0,157,13,227,32,158,231,6,0,159,141,23,126,69,106,9,0,159,141,23,126,89,106,9,0,161,141,15,190,66,117,6,0,164,141,99,183,85,3,11,0,166,13,51,126,149,118,6,0,167,141,152,112,102,214,8,0,167,141,152,112,14,218,8,0,168,141,26,87,105,129,9,0,168,141,26,87,180,129,9,0,170,141,87,74,194,138,7,0,171,141,168,109,235,88,7,0,171,141,178,242,102,214,8,0,171,141,178,242,14,218,8,0,179,13,134,248,252,169,7,0,179,141,165,235,21,135,8,0,179,13,33,124,216,176,10,0,179,13,33,124,248,176,10,0,180,13,168,201,134,19,7,0,180,13,3,121,252,242,8,0,180,13,3,121,240,243,8,0,182,141,218,20,243,246,5,0,182,141,149,181,196,73,6,0,182,141,149,181,65,126,6,0,182,141,95,221,160,64,10,0,182,141,95,221,181,64,10,0,182,141,95,221,205,64,10,0,183,13,21,168,186,26,9,0,183,13,21,168,120,27,9,0,183,13,21,168,48,28,9,0,184,141,205,198,32,5,6,0,186,13,243,27,246,243,9,0,186,13,243,27,59,245,9,0,186,13,243,27,131,246,9,0,187,13,15,221,23,27,7,0,188,141,46,227,145,12,8,0,190,13,239,17,148,193,6,0,192,141,117,25,145,12,8,0,193,13,223,33,89,136,7,0,193,13,223,33,189,167,7,0,195,13,221,8,238,177,9,0,195,13,221,8,7,178,9,0,198,13,88,168,159,237,6,0,198,141,78,50,55,231,10,0,202,141,93,240,89,5,7,0,202,13,40,203,29,120,7,0,203,141,84,24,143,240,6,0,203,141,48,33,134,19,7,0,204,13,226,180,37,82,7,0,204,13,143,212,194,138,7,0,207,13,209,241,134,19,7,0,207,141,28,59,29,120,7,0,216,13,229,69,4,52,10,0,217,13,233,147,160,79,8,0,218,141,50,130,29,14,6,0,218,141,50,130,73,130,7,0,219,13,32,196,145,114,7,0,221,13,203,110,134,19,7,0,221,13,209,166,29,120,7,0,222,141,201,94,134,19,7,0,222,141,190,181,4,52,10,0,224,13,89,243,119,96,7,0,232,13,53,20,135,44,7,0,233,141,109,69,12,99,7,0,234,13,207,62,60,152,7,0,234,13,207,62,79,237,8,0,235,141,29,61,138,149,11,0,239,13,142,228,194,138,7,0,239,141,33,8,222,43,11,0,240,13,189,157,141,180,9,0,240,13,189,157,190,180,9,0,240,13,189,157,3,181,9,0,241,13,196,248,134,19,7,0,244,13,121,44,246,243,9,0,244,13,121,44,59,245,9,0,244,13,121,44,131,246,9,0,245,141,78,189,23,27,7,0,248,13,197,38,60,152,7,0,250,141,19,130,102,214,8,0,250,141,19,130,14,218,8,0,251,141,25,32,81,28,6,0,251,141,251,203,234,157,10,0,252,141,40,149,161,77,7,0,2,142,163,186,29,120,7,0,8,142,206,100,183,116,6,0,10,14,75,27,45,226,8,0,10,14,75,27,130,231,8,0,11,14,47,116,104,67,7,0,12,142,67,176,135,149,7,0,12,142,67,176,60,152,7,0,12,142,67,176,94,164,7,0,12,14,176,40,153,113,10,0,12,14,176,40,27,114,10,0,14,14,226,82,120,129,6,0,14,142,203,231,213,140,8,0,14,142,203,231,8,141,8,0,19,14,231,126,184,89,7,0,19,14,231,126,19,90,7,0,20,142,68,201,73,38,7,0,23,142,43,219,60,152,7,0,23,142,43,219,79,237,8,0,23,14,43,84,34,236,10,0,29,14,52,163,134,131,8,0,34,142,252,82,70,71,7,0,34,142,131,213,145,39,8,0,35,142,165,195,134,19,7,0,37,14,115,214,119,52,11,0,37,14,115,214,60,55,11,0,38,14,114,242,237,63,7,0,38,14,114,242,7,64,7,0,39,14,63,207,218,93,7,0,40,142,170,173,18,246,6,0,40,142,18,232,51,104,7,0,42,14,196,5,204,181,9,0,42,14,196,5,224,182,9,0,47,142,242,167,208,61,6,0,47,142,169,214,6,220,6,0,50,142,35,217,22,46,10,0,50,142,35,217,98,46,10,0,50,14,242,0,193,100,10,0,50,14,242,0,193,100,10,0,50,14,242,0,89,103,10,0,50,14,242,0,89,103,10,0,52,14,30,4,161,77,7,0,56,14,197,55,43,163,6,0,59,14,43,16,31,21,6,0,59,14,138,90,23,27,7,0,59,14,138,90,73,38,7,0,61,142,172,212,109,183,10,0,62,142,217,68,45,226,8,0,62,142,217,68,130,231,8,0,62,142,195,129,252,242,8,0,62,142,195,129,240,243,8,0,62,14,4,151,76,206,9,0,62,14,4,151,91,206,9,0,63,14,249,22,134,19,7,0,64,14,142,162,39,47,9,0,64,14,142,162,54,48,9,0,65,142,240,33,187,8,7,0,67,142,196,53,134,19,7,0,67,14,87,99,25,134,9,0,67,14,87,99,147,134,9,0,67,14,87,99,7,135,9,0,67,14,87,99,174,135,9,0,67,14,87,99,71,136,9,0,69,142,213,234,23,27,7,0,69,142,30,172,135,149,7,0,69,142,30,172,16,183,8,0,69,142,30,172,251,191,8,0,69,142,30,172,239,200,8,0,70,142,134,254,0,55,7,0,70,142,134,254,163,57,7,0,72,142,107,249,44,130,10,0,72,142,107,249,132,168,10,0,75,14,202,148,122,140,10,0,76,14,56,147,134,19,7,0,76,142,247,13,23,27,7,0,78,142,5,41,58,210,10,0,80,142,231,134,76,253,5,0,81,14,21,93,15,137,10,0,83,142,0,77,255,110,7,0,83,14,200,180,145,114,7,0,84,14,44,128,134,107,10,0,84,14,44,128,210,107,10,0,89,14,207,119,253,49,7,0,90,14,116,140,130,47,7,0,90,14,53,35,62,223,9,0,90,14,53,35,64,224,9,0,90,14,53,35,93,225,9,0,94,142,239,96,23,26,8,0,96,14,47,54,130,47,7,0,96,14,99,51,16,183,8,0,96,14,99,51,251,191,8,0,96,14,99,51,239,200,8,0,97,14,244,184,132,21,9,0,97,14,244,184,157,23,9,0,101,14,37,17,117,51,7,0,101,14,37,17,111,53,7,0,101,142,195,129,19,59,11,0,104,14,99,18,59,18,6,0,104,14,55,82,146,190,6,0,105,14,152,158,42,70,7,0,105,142,216,118,103,252,10,0,108,142,85,17,44,67,6,0,110,14,112,45,252,182,11,0,111,14,134,250,16,183,8,0,111,14,134,250,251,191,8,0,111,14,134,250,239,200,8,0,112,14,24,190,135,1,9,0,112,14,24,190,189,1,9,0,115,14,185,146,193,100,10,0,115,14,185,146,89,103,10,0,116,14,106,165,206,76,7,0,118,14,58,98,50,12,6,0,119,142,88,30,193,100,10,0,119,142,88,30,89,103,10,0,122,142,73,225,192,150,8,0,124,14,159,139,178,29,6,0,125,142,150,208,245,13,8,0,126,14,83,11,206,236,10,0,126,14,83,11,212,242,10,0,127,14,244,101,105,56,6,0,127,14,244,101,173,161,6,0,128,14,46,139,4,52,10,0,129,14,248,210,113,132,10,0,130,14,175,227,60,152,7,0,130,14,175,227,5,4,9,0,130,14,175,227,54,4,9,0,130,142,5,84,253,38,9,0,130,142,5,84,207,40,9,0,131,142,47,7,246,169,10,0,137,142,164,63,132,21,9,0,137,142,164,63,157,23,9,0,137,142,118,74,167,138,10,0,140,14,74,64,135,61,7,0,141,14,194,122,37,82,7,0,143,142,201,201,109,230,7,0,143,142,230,89,24,32,8,0,143,142,230,89,65,32,8,0,143,142,230,89,118,32,8,0,147,142,250,100,186,26,9,0,147,142,250,100,120,27,9,0,147,142,250,100,48,28,9,0,149,142,30,227,135,1,9,0,149,142,30,227,189,1,9,0,150,142,119,115,167,162,10,0,154,14,87,232,96,237,5,0,154,14,158,49,12,7,6,0,154,142,147,8,241,32,11,0,155,14,19,184,76,187,6,0,157,14,62,169,55,128,11,0,158,142,65,227,73,82,7,0,160,142,6,2,67,17,7,0,162,14,95,250,2,63,8,0,164,142,135,133,152,241,6,0,166,142,233,23,12,99,7,0,166,14,193,93,87,69,9,0,166,14,193,93,181,69,9,0,166,142,217,232,228,129,11,0,168,142,21,103,169,233,5,0,172,14,33,139,238,239,6,0,172,142,28,249,193,100,10,0,172,142,28,249,89,103,10,0,173,142,1,187,218,93,7,0,178,142,144,202,161,110,10,0,178,142,144,202,2,112,10,0,179,14,52,219,19,90,7,0,180,142,195,5,194,138,7,0,183,14,193,214,62,223,9,0,183,14,193,214,64,224,9,0,183,14,193,214,93,225,9,0,186,14,152,9,129,197,6,0,186,14,129,236,191,86,7,0,187,14,190,169,16,183,8,0,187,14,190,169,251,191,8,0,187,14,190,169,239,200,8,0,190,142,132,159,51,104,7,0,191,14,121,137,49,36,6,0,191,142,198,87,194,243,7,0,193,142,125,222,206,214,6,0,195,142,121,31,117,71,7,0,196,142,23,53,134,19,7,0,197,14,246,254,186,64,11,0,202,14,99,139,62,150,9,0,202,14,99,139,101,150,9,0,202,142,245,91,37,71,11,0,203,142,207,210,66,15,11,0,204,14,120,127,229,221,8,0,204,14,120,127,29,222,8,0,208,14,12,114,81,79,8,0,208,14,12,114,28,88,11,0,209,14,101,17,19,90,7,0,209,14,101,17,43,72,10,0,209,14,101,17,148,72,10,0,210,142,152,23,12,99,7,0,210,142,194,214,220,114,11,0,210,142,194,214,114,116,11,0,211,14,233,25,241,190,7,0,212,142,224,160,223,122,11,0,217,14,2,61,95,111,7,0,218,142,209,159,246,243,9,0,218,142,209,159,59,245,9,0,218,142,209,159,131,246,9,0,219,142,24,226,26,83,10,0,219,142,24,226,60,83,10,0,221,14,241,245,62,223,9,0,221,14,241,245,64,224,9,0,221,14,241,245,93,225,9,0,223,14,58,76,111,79,9,0,223,14,58,76,167,79,9,0,223,14,58,76,224,79,9,0,223,14,25,128,89,14,11,0,225,14,198,156,101,45,6,0,228,14,225,156,39,47,9,0,228,14,225,156,54,48,9,0,231,142,231,250,125,18,9,0,231,142,231,250,34,19,9,0,232,14,187,220,151,186,7,0,233,14,232,17,30,0,7,0,233,142,98,121,233,173,8,0,234,14,185,71,235,235,9,0,234,14,185,71,13,236,9,0,235,14,205,33,241,17,7,0,235,14,155,128,160,141,8,0,235,14,155,128,37,142,8,0,236,142,93,107,82,52,6,0,236,14,89,171,12,99,7,0,238,142,42,250,116,72,7,0,240,142,162,179,139,163,9,0,240,142,162,179,241,163,9,0,241,14,33,247,139,14,10,0,243,142,184,244,67,17,7,0,243,14,219,86,23,27,7,0,245,14,60,81,222,65,6,0,247,14,234,26,50,110,8,0,247,14,234,26,112,110,8,0,247,14,234,26,173,110,8,0,247,14,234,26,233,110,8,0,249,142,172,193,27,42,10,0,249,142,172,193,49,42,10,0,249,142,172,193,63,42,10,0,250,14,14,0,25,147,10,0,251,142,86,122,4,52,10,0,252,142,32,249,187,41,10,0,252,142,32,249,208,41,10,0,254,142,67,153,55,239,6,0,0,15,50,127,210,106,6,0,0,15,50,127,48,215,6,0,2,15,76,188,16,183,8,0,2,15,76,188,251,191,8,0,2,15,76,188,239,200,8,0,7,143,97,66,60,152,7,0,8,15,250,194,2,175,11,0,9,15,15,3,29,120,7,0,9,143,132,73,32,20,9,0,9,143,132,73,179,20,9,0,12,15,226,137,16,183,8,0,12,15,226,137,251,191,8,0,12,15,226,137,239,200,8,0,14,143,65,221,60,152,7,0,14,143,65,221,79,237,8,0,16,143,0,150,4,52,10,0,21,15,104,147,52,87,10,0,21,15,104,147,117,87,10,0,26,15,96,26,29,120,7,0,27,143,55,106,89,5,7,0,28,15,210,208,117,51,7,0,28,15,210,208,111,53,7,0,28,15,210,208,242,163,7,0,30,15,254,151,8,109,11,0,31,143,119,30,79,33,6,0,31,143,58,65,147,35,7,0,37,143,231,242,89,251,6,0,38,15,33,243,139,14,10,0,38,15,33,243,50,15,10,0,41,143,50,170,1,72,6,0,42,15,58,192,64,29,11,0,45,15,1,128,12,99,7,0,46,143,109,98,61,39,7,0,47,143,130,243,12,99,7,0,47,143,241,3,177,105,7,0,49,143,29,26,62,110,7,0,49,143,29,26,106,110,7,0,51,143,79,157,152,238,10,0,53,143,59,172,16,183,8,0,53,143,59,172,251,191,8,0,53,143,59,172,239,200,8,0,53,143,145,205,253,59,10,0,53,143,145,205,144,60,10,0,53,143,145,205,39,61,10,0,56,15,2,231,253,16,11,0,58,143,79,66,55,95,10,0,58,143,79,66,143,95,10,0,58,15,121,188,132,156,11,0,59,15,18,197,7,42,6,0,59,143,207,121,102,214,8,0,59,143,207,121,14,218,8,0,62,15,164,160,135,44,7,0,62,15,60,246,250,87,10,0,64,15,100,46,133,96,6,0,66,143,180,243,180,49,6,0,66,143,9,164,2,175,11,0,71,143,195,85,194,138,7,0,72,15,55,127,49,22,6,0,72,15,55,127,154,30,6,0,72,15,55,127,103,121,6,0,73,143,217,203,29,120,7,0,74,143,27,197,111,4,9,0,74,143,27,197,41,6,9,0,75,143,118,68,23,27,7,0,75,15,69,182,243,85,7,0,77,15,233,205,81,222,5,0,77,15,39,82,78,2,6,0,78,143,118,22,209,45,6,0,78,15,227,173,244,177,8,0,78,15,36,44,20,8,9,0,78,15,36,44,247,8,9,0,78,15,36,44,210,9,9,0,79,15,28,61,102,214,8,0,79,15,28,61,14,218,8,0,84,15,184,77,130,47,7,0,84,143,212,253,19,90,7,0,84,143,212,253,29,159,10,0,87,143,26,144,143,167,10,0,90,15,104,9,0,55,7,0,90,15,104,9,163,57,7,0,90,15,104,9,226,164,7,0,91,143,71,199,23,27,7,0,91,15,210,219,111,4,9,0,91,15,210,219,41,6,9,0,93,143,71,90,44,255,5,0,94,143,236,106,218,93,7,0,95,143,124,159,4,0,6,0,95,143,114,192,135,149,7,0,95,143,114,192,69,151,7,0,96,15,84,34,173,44,11,0,99,15,160,120,4,158,6,0,100,15,63,207,182,13,7,0,100,143,254,175,67,26,11,0,102,15,38,77,161,77,7,0,102,143,10,201,29,120,7,0,102,143,139,30,102,214,8,0,102,143,139,30,14,218,8,0,104,143,50,44,234,152,11,0,105,15,253,103,117,71,7,0,105,15,62,165,145,114,7,0,106,15,6,59,60,152,7,0,106,15,6,59,50,110,10,0,106,15,6,59,112,110,10,0,108,15,215,149,64,47,7,0,111,143,237,232,75,148,7,0,111,143,237,232,189,167,7,0,111,143,28,229,247,243,7,0,111,143,237,232,247,17,8,0,111,143,237,232,35,18,8,0,111,143,237,232,79,18,8,0,117,15,253,190,58,92,6,0,117,15,121,254,69,155,10,0,118,15,200,202,141,252,6,0,118,15,120,87,209,18,7,0,118,143,74,175,73,82,7,0,118,143,74,175,75,148,7,0,118,143,74,175,226,164,7,0,118,143,148,203,111,4,9,0,118,143,148,203,41,6,9,0,119,143,132,219,25,84,7,0,119,143,132,219,114,84,7,0,120,143,105,61,119,96,7,0,121,15,174,241,250,202,9,0,121,15,174,241,34,203,9,0,123,15,28,244,161,77,7,0,123,15,28,244,221,133,10,0,124,15,47,115,45,226,8,0,124,15,47,115,130,231,8,0,124,15,228,190,150,45,9,0,124,15,228,190,18,46,9,0,125,143,240,89,194,138,7,0,130,143,233,233,60,152,7,0,131,15,5,137,135,44,7,0,134,15,221,55,201,80,7,0,134,143,227,150,108,125,8,0,134,143,227,150,152,125,8,0,134,143,227,150,209,125,8,0,134,143,227,150,253,125,8,0,135,143,57,173,145,114,7,0,137,15,130,87,216,51,9,0,137,15,130,87,175,52,9,0,137,143,104,48,159,146,10,0,140,143,30,54,129,15,6,0,140,15,216,223,115,2,7,0,140,143,196,179,103,48,7,0,140,15,160,238,116,72,7,0,141,143,25,224,194,138,7,0,141,143,25,224,20,158,7,0,141,15,73,248,45,226,8,0,141,15,73,248,130,231,8,0,142,15,225,86,141,188,6,0,143,15,85,198,186,26,9,0,143,15,85,198,120,27,9,0,143,15,85,198,48,28,9,0,151,143,42,120,179,151,11,0,153,143,203,140,23,27,7,0,154,143,11,241,66,3,7,0,157,143,153,198,76,48,11,0,158,143,168,233,194,138,7,0,158,15,242,255,148,91,8,0,159,15,215,163,92,9,8,0,159,143,54,212,111,4,9,0,159,143,54,212,41,6,9,0,160,143,51,22,46,185,10,0,161,15,6,103,211,114,8,0,162,15,44,47,139,254,6,0,162,143,4,55,58,75,7,0,163,15,144,138,191,86,7,0,164,15,49,235,163,57,7,0,164,15,49,235,21,71,9,0,164,15,49,235,100,72,9,0,164,15,49,235,181,73,9,0,164,15,49,235,11,75,9,0,164,15,207,52,87,152,11,0,166,143,230,146,245,23,6,0,166,15,213,7,160,79,8,0,167,15,160,212,134,19,7,0,170,143,84,116,217,9,7,0,171,15,117,24,204,181,9,0,171,15,117,24,224,182,9,0,172,143,68,82,183,249,6,0,173,143,127,127,191,86,7,0,174,15,43,7,168,152,9,0,175,143,21,219,245,145,6,0,178,15,180,123,153,113,10,0,178,15,180,123,27,114,10,0,179,143,64,5,159,249,10,0,179,15,244,122,12,135,11,0,180,143,21,165,194,138,7,0,181,15,6,126,122,18,8,0,182,15,223,193,12,99,7,0,184,143,133,62,92,9,8,0,186,143,172,105,92,28,8,0,190,15,64,114,102,214,8,0,190,15,64,114,14,218,8,0,197,143,30,96,4,52,10,0,199,15,118,50,162,232,5,0,202,15,210,63,177,105,7,0,202,15,118,157,216,51,9,0,202,15,118,157,175,52,9,0,203,143,131,202,109,96,10,0,203,143,131,202,167,96,10,0,203,143,131,202,219,96,10,0,205,143,118,145,31,68,7,0,205,15,59,163,72,102,9,0,205,15,59,163,254,102,9,0,207,15,252,64,116,72,7,0,207,143,183,97,16,183,8,0,207,143,183,97,251,191,8,0,207,143,183,97,239,200,8,0,207,143,190,10,164,139,10,0,207,143,178,63,220,45,11,0,209,15,83,163,12,99,7,0,210,143,36,72,134,19,7,0,210,15,225,48,145,12,8,0,214,143,51,239,255,74,7,0,216,15,153,0,145,114,7,0,217,15,164,177,221,98,9,0,217,15,164,177,47,99,9,0,221,15,6,216,19,59,11,0,222,15,76,219,0,55,7,0,222,15,76,219,163,57,7,0,222,143,24,39,252,242,8,0,222,143,24,39,240,243,8,0,224,15,192,134,145,114,7,0,228,15,8,7,70,80,9,0,232,143,52,241,78,39,6,0,234,15,49,4,29,120,7,0,235,15,68,70,29,120,7,0,235,15,159,123,201,191,9,0,235,15,159,123,230,191,9,0,237,143,108,248,23,27,7,0,240,143,133,246,65,41,7,0,241,143,199,132,16,229,7,0,242,143,214,31,145,114,7,0,244,15,202,6,27,255,8,0,244,15,202,6,100,255,8,0,246,15,25,63,135,149,7,0,247,15,24,131,100,92,7,0,247,143,109,99,145,114,7,0,247,143,118,50,4,52,10,0,248,143,65,40,217,103,7,0,249,15,220,22,65,76,7,0,251,15,46,172,161,77,7,0,251,15,132,97,209,84,7,0,252,15,197,172,145,114,7,0,254,15,99,78,29,120,7,0,254,15,70,244,125,67,10,0,254,15,70,244,69,68,10,0,2,144,56,251,134,150,10,0,5,144,254,16,168,152,9,0,6,144,171,135,50,185,6,0,6,144,171,135,16,183,8,0,6,144,171,135,251,191,8,0,6,144,171,135,239,200,8,0,6,16,185,21,186,158,9,0,6,16,185,21,5,159,9,0,6,144,44,105,188,213,9,0,6,144,44,105,58,214,9,0,6,144,44,105,197,214,9,0,7,144,16,187,58,42,11,0,9,16,178,67,71,226,5,0,12,16,168,131,45,226,8,0,12,16,168,131,130,231,8,0,15,144,252,170,27,245,10,0,16,144,15,9,170,86,7,0,18,144,88,85,229,107,6,0,19,16,16,174,29,120,7,0,23,16,226,126,186,26,9,0,23,16,226,126,120,27,9,0,23,16,226,126,48,28,9,0,24,16,7,98,232,179,7,0,29,16,143,233,145,12,8,0,34,16,134,29,142,99,11,0,35,16,232,109,117,22,6,0,35,144,88,255,3,226,7,0,36,144,55,51,100,224,7,0,42,16,244,187,134,19,7,0,46,16,61,35,29,38,8,0,49,16,145,33,177,105,7,0,53,144,158,16,145,114,7,0,54,16,170,239,139,254,6,0,54,16,118,37,23,27,7,0,57,144,14,44,209,18,7,0,57,144,131,48,246,243,9,0,57,144,131,48,59,245,9,0,57,144,131,48,131,246,9,0,58,16,212,160,29,14,6,0,58,144,20,52,93,46,7,0,58,144,62,237,161,77,7,0,58,16,212,160,73,130,7,0,60,144,147,221,57,153,6,0,61,16,136,251,45,226,8,0,61,16,136,251,130,231,8,0,62,16,174,45,119,96,7,0,62,144,148,159,16,183,8,0,62,144,148,159,251,191,8,0,62,144,148,159,239,200,8,0,63,16,51,64,183,249,6,0,63,16,10,53,78,9,7,0,63,144,227,101,194,138,7,0,63,144,14,163,150,154,10,0,63,16,10,53,140,96,11,0,64,16,214,249,145,114,7,0,68,144,253,117,135,172,10,0,74,16,60,204,44,51,7,0,78,16,226,141,246,243,9,0,78,16,226,141,59,245,9,0,78,16,226,141,131,246,9,0,84,144,104,211,29,120,7,0,85,16,48,238,224,220,6,0,91,144,236,96,110,189,10,0,91,144,236,96,150,189,10,0,92,144,0,35,184,89,7,0,93,16,205,63,159,122,11,0,95,144,47,126,100,92,7,0,97,16,146,200,116,72,7,0,97,16,150,99,252,242,8,0,97,16,150,99,240,243,8,0,97,16,72,201,107,226,9,0,97,16,72,201,251,226,9,0,97,16,174,45,2,137,11,0,98,144,148,227,96,8,7,0,101,144,143,68,86,56,9,0,101,144,143,68,9,57,9,0,106,144,33,170,23,27,7,0,107,16,12,251,235,167,10,0,108,16,155,255,23,27,7,0,108,16,35,185,102,214,8,0,108,16,35,185,14,218,8,0,110,16,238,42,143,240,6,0,112,16,52,129,20,151,10,0,114,16,46,169,130,51,8,0,114,144,6,241,14,216,10,0,116,144,231,242,102,214,8,0,116,144,231,242,14,218,8,0,119,144,39,115,60,248,6,0,119,16,81,95,54,179,10,0,120,144,118,237,45,226,8,0,120,144,118,237,130,231,8,0,121,16,0,228,92,9,8,0,121,16,244,183,45,226,8,0,121,16,244,183,130,231,8,0,126,144,171,108,104,212,5,0,126,16,139,16,58,35,9,0,126,16,139,16,31,36,9,0,129,144,241,96,23,27,7,0,130,16,74,75,39,47,9,0,130,16,74,75,54,48,9,0,134,144,130,243,194,138,7,0,137,16,247,4,55,128,11,0,139,16,4,214,72,102,9,0,139,16,4,214,254,102,9,0,141,16,33,25,23,27,7,0,142,16,25,177,134,19,7,0,142,16,144,221,216,140,9,0,142,16,144,221,69,141,9,0,147,144,169,148,96,221,6,0,147,144,169,148,0,132,9,0,151,144,240,187,192,72,6,0,153,144,227,118,194,138,7,0,156,16,98,4,119,96,7,0,157,16,191,226,151,248,5,0,158,16,93,34,145,114,7,0,158,144,150,101,211,65,8,0,158,144,150,101,3,116,11,0,158,144,150,101,245,118,11,0,158,144,150,101,107,124,11,0,159,144,29,142,177,105,7,0,161,16,228,125,16,183,8,0,161,16,228,125,251,191,8,0,161,16,228,125,239,200,8,0,162,144,245,7,111,4,9,0,162,144,245,7,41,6,9,0,163,144,99,94,105,243,5,0,163,16,158,162,116,72,7,0,164,144,162,68,93,46,7,0,164,16,167,50,17,185,7,0,164,16,167,50,54,185,7,0,164,16,154,177,193,100,10,0,164,16,154,177,89,103,10,0,165,144,166,170,253,38,9,0,165,144,166,170,207,40,9,0,166,16,105,31,226,11,7,0,166,144,85,40,180,47,8,0,169,144,79,149,15,152,6,0,169,144,79,149,96,114,7,0,172,144,135,227,145,114,7,0,172,16,227,173,155,206,10,0,174,144,51,142,194,163,7,0,174,144,51,142,148,115,10,0,174,144,51,142,195,115,10,0,174,144,51,142,241,115,10,0,174,144,51,142,44,116,10,0,181,144,205,229,66,3,7,0,181,144,120,112,60,152,7,0,181,144,120,112,215,159,7,0,182,16,233,57,77,11,7,0,186,16,186,55,246,120,6,0,186,144,83,114,45,226,8,0,186,144,83,114,130,231,8,0,186,16,190,232,152,252,8,0,187,144,250,90,61,60,8,0,189,16,186,3,214,242,5,0,189,16,186,3,211,60,6,0,189,16,186,3,235,60,6,0,190,144,196,127,225,114,6,0,194,144,188,105,255,70,10,0,194,144,188,105,87,71,10,0,194,144,188,105,174,71,10,0,196,144,247,81,45,226,8,0,196,144,247,81,130,231,8,0,200,16,167,0,1,22,11,0,202,16,235,93,9,222,5,0,203,144,102,228,200,111,6,0,203,144,80,89,152,142,6,0,204,144,221,3,194,138,7,0,204,144,221,3,85,174,7,0,204,144,221,3,202,174,7,0,205,144,51,181,219,238,8,0,205,144,51,181,39,240,8,0,205,144,51,181,117,241,8,0,207,16,170,149,219,238,8,0,207,16,170,149,39,240,8,0,207,16,170,149,117,241,8,0,208,16,27,250,187,8,7,0,210,144,192,148,154,36,7,0,211,144,94,78,253,49,7,0,211,16,190,226,168,152,9,0,212,16,222,28,120,158,6,0,212,16,207,123,116,72,7,0,214,16,198,161,21,78,6,0,214,144,227,150,163,57,7,0,214,144,227,150,96,57,11,0,216,16,156,190,253,107,6,0,220,144,89,70,221,5,7,0,220,144,162,119,134,19,7,0,221,16,64,112,119,96,7,0,224,144,60,166,79,150,10,0,226,16,221,57,77,246,6,0,227,144,214,23,194,138,7,0,228,16,52,129,29,120,7,0,229,16,168,176,194,138,7,0,230,144,198,160,201,55,8,0,230,144,198,160,242,55,8,0,231,144,149,50,4,52,10,0,235,16,12,202,34,44,10,0,237,144,18,142,53,83,6,0,238,144,4,219,4,52,10,0,239,144,101,11,134,19,7,0,240,16,248,245,207,48,7,0,240,16,248,245,21,71,9,0,240,16,248,245,100,72,9,0,240,16,248,245,181,73,9,0,240,16,248,245,11,75,9,0,240,144,8,227,139,163,9,0,240,144,8,227,241,163,9,0,244,16,190,201,21,71,9,0,244,16,190,201,100,72,9,0,244,16,190,201,181,73,9,0,244,16,190,201,11,75,9,0,245,144,190,243,108,233,9,0,245,144,190,243,155,233,9,0,250,144,159,145,182,244,5,0,250,144,138,220,4,52,10,0,255,144,154,171,220,217,5,0,255,16,226,205,135,44,7,0,255,144,96,245,146,76,9,0,255,144,96,245,63,77,9,0,1,145,132,181,150,202,10,0,3,17,67,68,244,154,6,0,3,17,56,0,175,88,9,0,3,17,56,0,254,88,9,0,3,17,56,0,92,89,9,0,3,17,56,0,173,89,9,0,4,17,58,234,28,236,6,0,6,17,213,121,60,152,7,0,6,145,63,194,77,135,10,0,8,145,203,105,23,27,7,0,15,145,207,126,164,231,5,0,15,17,19,202,135,2,9,0,15,17,19,202,47,3,9,0,16,17,3,88,107,3,8,0,17,145,62,192,217,9,7,0,23,17,124,10,183,82,7,0,25,17,147,242,4,52,10,0,27,145,171,15,29,14,6,0,27,145,171,15,73,130,7,0,27,17,11,100,76,44,8,0,28,17,100,117,160,49,7,0,30,145,179,125,248,49,9,0,30,145,179,125,23,50,9,0,36,17,152,33,186,235,6,0,36,17,241,192,96,1,7,0,37,145,220,55,194,138,7,0,40,17,6,170,163,57,7,0,41,17,134,122,86,243,6,0,42,145,16,7,23,27,7,0,42,17,209,77,80,59,8,0,42,17,209,77,101,28,11,0,42,17,209,77,117,28,11,0,44,145,67,188,216,51,9,0,44,145,67,188,175,52,9,0,45,145,66,125,228,51,6,0,47,17,156,240,255,70,10,0,47,17,156,240,87,71,10,0,47,17,156,240,174,71,10,0,48,145,15,244,23,27,7,0,48,145,66,59,168,104,8,0,48,145,66,59,45,105,8,0,48,145,66,59,167,105,8,0,48,17,200,22,4,52,10,0,53,145,166,222,175,88,9,0,53,145,166,222,254,88,9,0,53,145,166,222,92,89,9,0,53,145,166,222,173,89,9,0,53,145,203,253,4,52,10,0,54,17,67,36,23,27,7,0,55,145,224,251,194,138,7,0,58,145,107,135,201,251,6,0,58,145,90,118,186,53,9,0,58,145,90,118,77,54,9,0,59,145,103,98,135,44,7,0,59,145,46,197,45,226,8,0,59,145,46,197,130,231,8,0,61,145,47,184,218,7,6,0,66,145,20,251,32,107,7,0,66,145,20,251,130,107,7,0,66,17,184,11,251,49,11,0,67,17,20,7,141,252,6,0,69,145,30,111,16,112,8,0,71,17,62,172,107,10,7,0,76,17,233,127,230,87,10,0,76,17,233,127,250,87,10,0,77,145,135,139,87,59,6,0,81,145,51,91,100,92,7,0,83,17,107,5,29,120,7,0,84,17,87,206,60,77,10,0,84,17,87,206,232,77,10,0,86,145,78,10,60,152,7,0,86,145,78,10,104,103,8,0,86,145,78,10,219,103,8,0,86,145,78,10,68,104,8,0,86,145,165,67,179,163,8,0,86,145,78,10,59,45,10,0,87,145,207,100,16,37,7,0,88,17,100,74,163,120,6,0,88,17,232,253,134,19,7,0,88,145,218,52,60,77,10,0,88,145,218,52,232,77,10,0,90,17,214,175,23,27,7,0,90,17,148,118,158,21,8,0,90,145,88,14,177,221,10,0,91,145,58,46,16,183,8,0,91,145,58,46,251,191,8,0,91,145,58,46,239,200,8,0,93,145,186,55,96,114,7,0,94,17,203,13,253,49,7,0,94,17,123,72,52,102,11,0,97,145,162,198,35,129,10,0,98,17,236,114,235,12,10,0,98,17,236,114,7,13,10,0,99,145,133,104,9,238,8,0,99,145,133,104,94,238,8,0,102,145,178,55,145,12,8,0,102,17,138,147,153,113,10,0,102,17,138,147,27,114,10,0,105,145,63,95,131,222,8,0,105,145,63,95,38,223,8,0,105,145,63,95,206,223,8,0,105,145,151,254,15,92,9,0,105,145,151,254,90,92,9,0,105,145,151,254,162,92,9,0,106,145,57,180,21,138,7,0,106,17,68,250,168,152,9,0,107,17,46,220,195,163,10,0,108,145,219,91,139,14,10,0,108,145,219,91,50,15,10,0,111,145,176,148,149,203,7,0,112,17,210,160,145,114,7,0,112,17,49,77,79,155,9,0,112,17,49,77,99,155,9,0,112,17,49,77,128,155,9,0,117,17,166,148,65,47,6,0,117,17,116,247,97,103,7,0,117,145,46,150,45,226,8,0,117,145,46,150,130,231,8,0,117,17,166,148,1,20,9,0,118,145,67,182,65,41,7,0,118,145,86,232,152,252,8,0,120,145,223,66,135,149,7,0,120,145,223,66,60,152,7,0,121,17,37,77,165,189,6,0,123,145,223,40,160,174,11,0,127,145,166,154,135,149,7,0,127,145,166,154,1,79,9,0,127,145,166,154,32,79,9,0,128,145,237,193,16,183,8,0,128,145,237,193,251,191,8,0,128,145,237,193,239,200,8,0,130,145,140,13,38,117,8,0,132,145,248,226,132,21,9,0,132,145,248,226,157,23,9,0,133,17,197,54,145,114,7,0,133,17,225,194,193,100,10,0,133,17,225,194,89,103,10,0,133,145,68,70,243,164,11,0,134,145,0,101,145,12,8,0,137,145,3,142,45,226,8,0,137,145,3,142,130,231,8,0,138,145,118,166,45,226,8,0,138,145,118,166,130,231,8,0,140,17,183,223,134,19,7,0,140,17,77,175,90,253,8,0,140,17,77,175,126,253,8,0,140,17,77,175,157,253,8,0,141,145,251,219,107,10,7,0,144,145,102,149,50,90,10,0,144,145,102,149,81,90,10,0,147,17,180,148,71,250,6,0,147,145,206,98,117,51,7,0,147,145,206,98,111,53,7,0,149,17,116,103,160,36,11,0,150,17,231,242,97,103,7,0,151,17,36,18,100,92,7,0,151,145,125,16,39,142,11,0,155,145,204,106,194,138,7,0,156,145,153,57,4,52,10,0,157,145,209,12,71,250,6,0,157,17,132,115,191,86,7,0,160,145,37,252,158,193,10,0,161,145,142,119,16,52,6,0,161,17,157,40,46,111,7,0,161,145,177,172,253,38,9,0,161,145,177,172,207,40,9,0,161,17,83,126,192,197,9,0,161,17,83,126,219,197,9,0,163,145,234,115,85,211,7,0,163,17,148,7,45,226,8,0,163,17,148,7,130,231,8,0,164,145,33,111,92,9,8,0,165,145,106,5,95,111,7,0,166,17,216,156,253,49,7,0,168,17,167,18,202,203,9,0,168,17,167,18,237,203,9,0,168,17,167,18,28,204,9,0,170,145,132,201,194,138,7,0,170,17,114,174,16,183,8,0,170,17,114,174,251,191,8,0,170,17,114,174,239,200,8,0,171,17,19,243,208,12,7,0,174,17,180,128,156,253,6,0,177,17,200,166,95,60,9,0,177,17,200,166,133,60,9,0,179,17,111,86,90,253,8,0,179,17,111,86,126,253,8,0,179,17,111,86,157,253,8,0,179,145,152,143,14,252,10,0,184,145,194,208,178,109,11,0,185,145,115,82,31,184,6,0,186,17,124,138,192,2,7,0,188,17,58,59,253,117,10,0,188,17,58,59,53,118,10,0,189,145,231,242,132,21,9,0,189,145,231,242,157,23,9,0,190,17,126,5,55,108,7,0,192,145,37,112,29,120,7,0,193,145,78,176,16,183,8,0,193,145,78,176,251,191,8,0,193,145,78,176,239,200,8,0,195,145,196,57,9,110,11,0,196,17,23,53,74,239,9,0,196,17,23,53,174,239,9,0,198,17,179,196,29,120,7,0,199,145,107,73,55,108,7,0,199,145,210,226,25,134,9,0,199,145,210,226,147,134,9,0,199,145,210,226,7,135,9,0,199,145,210,226,174,135,9,0,199,145,210,226,71,136,9,0,199,145,20,193,54,57,11,0,200,145,62,109,134,19,7,0,201,145,40,15,204,68,11,0,202,17,138,37,4,52,10,0,204,145,86,136,65,11,9,0,204,145,86,136,92,11,9,0,204,145,86,136,127,11,9,0,208,145,10,175,135,44,7,0,209,145,185,16,81,237,10,0,210,17,24,93,16,37,7,0,210,17,24,93,168,104,8,0,210,17,24,93,45,105,8,0,210,17,24,93,167,105,8,0,211,17,173,150,20,8,9,0,211,17,173,150,247,8,9,0,211,17,173,150,210,9,9,0,212,17,118,240,115,2,7,0,212,17,185,210,134,19,7,0,213,145,249,198,131,222,8,0,213,145,249,198,38,223,8,0,213,145,249,198,206,223,8,0,214,17,237,65,53,1,6,0,214,17,240,74,16,183,8,0,214,17,240,74,251,191,8,0,214,17,240,74,239,200,8,0,215,145,7,57,83,126,8,0,217,145,61,171,194,138,7,0,217,145,61,171,226,164,7,0,217,145,61,171,37,166,7,0,218,145,130,207,181,142,6,0,219,145,55,62,23,27,7,0,219,145,55,62,13,99,11,0,222,145,45,115,14,137,9,0,222,145,45,115,201,137,9,0,223,17,182,211,145,114,7,0,223,17,175,128,194,138,7,0,223,145,197,18,207,75,8,0,223,145,94,171,207,14,9,0,223,145,94,171,54,15,9,0,225,17,76,241,56,238,7,0,226,145,21,21,12,99,7,0,227,17,14,243,116,72,7,0,229,145,6,248,30,135,6,0,229,17,49,197,238,35,10,0,229,17,49,197,35,36,10,0,229,17,220,160,88,125,11,0,230,145,155,31,204,200,6,0,230,145,155,31,39,99,8,0,230,17,41,118,201,38,10,0,230,17,41,118,237,38,10,0,239,17,99,107,16,183,8,0,239,17,99,107,251,191,8,0,239,17,99,107,239,200,8,0,241,145,197,227,51,104,7,0,241,145,252,133,131,222,8,0,241,145,252,133,38,223,8,0,241,145,252,133,206,223,8,0,241,17,70,215,248,238,10,0,246,17,191,150,60,152,7,0,246,145,245,88,206,223,7,0,246,145,175,244,156,70,8,0,246,17,191,150,50,110,10,0,246,17,191,150,112,110,10,0,247,145,130,97,116,72,7,0,247,17,240,96,130,148,8,0,252,17,59,246,23,27,7,0,252,145,210,230,4,44,7,0,254,17,107,186,0,55,7,0,4,146,183,128,3,98,6,0,5,146,133,53,191,232,10,0,5,18,92,85,169,91,11,0,7,18,122,156,116,72,7,0,10,18,125,34,60,152,7,0,10,18,125,34,5,4,9,0,10,18,125,34,54,4,9,0,11,18,81,92,176,68,7,0,11,18,81,92,33,106,8,0,13,146,109,243,201,80,7,0,15,146,196,93,240,8,7,0,16,146,35,89,115,161,9,0,16,146,35,89,104,162,9,0,20,146,54,73,55,108,7,0,25,18,49,167,220,65,7,0,25,18,139,253,45,226,8,0,25,18,139,253,130,231,8,0,29,146,103,173,65,132,7,0,29,146,103,173,94,132,7,0,29,18,86,159,133,228,9,0,29,18,86,159,175,228,9,0,30,18,227,20,177,166,6,0,30,18,83,253,4,52,10,0,31,18,114,21,218,93,7,0,34,146,252,245,0,182,7,0,34,146,252,245,58,182,7,0,34,18,227,27,163,88,10,0,34,18,227,27,83,89,10,0,34,146,85,170,50,8,11,0,37,18,79,27,180,187,7,0,39,18,217,43,168,152,9,0,40,18,112,178,0,55,7,0,40,18,112,178,163,57,7,0,42,146,197,220,135,2,9,0,42,146,197,220,47,3,9,0,46,18,59,96,78,135,8,0,49,18,84,199,212,175,6,0,53,146,60,188,69,182,11,0,54,146,160,30,77,135,10,0,55,18,218,173,77,11,7,0,55,146,59,9,135,61,7,0,56,18,216,34,38,65,6,0,56,18,55,159,22,91,7,0,58,146,116,207,46,183,10,0,68,18,43,1,138,171,7,0,68,18,34,228,112,246,7,0,70,18,115,40,16,183,8,0,70,18,115,40,251,191,8,0,70,18,115,40,239,200,8,0,70,146,109,21,106,231,10,0,71,18,67,74,23,27,7,0,74,18,163,157,221,98,9,0,74,18,163,157,47,99,9,0,75,146,240,244,94,116,6,0,75,18,193,197,164,238,6,0,76,146,78,96,51,104,7,0,76,146,77,0,184,136,10,0,77,146,178,169,4,52,10,0,77,18,29,104,22,122,11,0,78,146,181,33,29,120,7,0,79,146,113,52,45,226,8,0,79,146,113,52,130,231,8,0,81,18,213,78,45,226,8,0,81,18,213,78,130,231,8,0,82,146,187,63,33,198,9,0,82,146,187,63,70,198,9,0,85,18,40,146,160,79,8,0,94,18,74,113,183,249,6,0,94,18,74,113,73,38,7,0,96,18,60,99,74,239,9,0,96,18,60,99,174,239,9,0,96,146,113,154,4,52,10,0,97,146,105,68,119,96,7,0,99,146,249,107,161,77,7,0,99,146,194,233,145,114,7,0,100,18,220,215,62,223,9,0,100,18,220,215,64,224,9,0,100,18,220,215,93,225,9,0,102,146,5,229,73,185,6,0,103,18,117,182,0,55,7,0,103,18,117,182,163,57,7,0,103,18,180,128,168,152,9,0,103,18,156,148,62,223,9,0,103,18,156,148,64,224,9,0,103,18,156,148,93,225,9,0,104,146,7,79,23,27,7,0,105,146,18,167,18,117,6,0,105,146,177,91,163,57,7,0,106,18,55,29,60,51,10,0,106,18,55,29,121,51,10,0,108,146,50,95,145,12,8,0,108,18,42,188,16,183,8,0,108,18,42,188,251,191,8,0,108,18,42,188,239,200,8,0,112,18,171,145,39,230,6,0,112,18,175,7,187,0,7,0,113,146,159,161,217,202,10,0,114,18,223,117,77,60,6,0,115,146,192,85,60,152,7,0,115,146,192,85,148,160,7,0,115,146,254,7,153,113,10,0,115,146,254,7,27,114,10,0,119,18,16,3,97,103,7,0,122,18,32,249,35,133,10,0,123,18,154,250,145,12,8,0,124,146,5,228,75,247,8,0,124,146,5,228,171,247,8,0,125,146,172,228,4,52,10,0,126,146,29,150,122,54,6,0,127,18,17,122,86,56,9,0,127,18,17,122,9,57,9,0,130,146,196,148,157,109,11,0,131,18,59,185,57,86,8,0,131,18,59,185,210,86,8,0,132,18,164,135,39,47,9,0,132,18,164,135,54,48,9,0,136,18,91,14,143,104,11,0,137,18,21,177,237,120,11,0,137,18,60,1,58,179,11,0,140,146,178,6,84,0,7,0,143,18,24,25,194,138,7,0,145,146,80,33,0,55,7,0,145,146,80,33,163,57,7,0,145,146,80,33,16,183,8,0,145,146,80,33,251,191,8,0,145,146,80,33,239,200,8,0,146,18,25,35,193,252,5,0,147,18,122,224,39,35,7,0,147,146,201,212,62,223,9,0,147,146,201,212,64,224,9,0,147,146,201,212,93,225,9,0,148,18,231,129,60,74,6,0,148,18,195,170,119,96,7,0,149,18,99,139,16,183,8,0,149,18,99,139,251,191,8,0,149,18,99,139,239,200,8,0,149,146,63,6,45,226,8,0,149,146,63,6,130,231,8,0,152,18,78,198,45,226,8,0,152,18,78,198,130,231,8,0,153,146,244,19,186,26,9,0,153,146,244,19,120,27,9,0,153,146,244,19,48,28,9,0,153,18,119,170,4,52,10,0,154,18,247,40,229,66,6,0,154,18,247,40,227,94,6,0,157,146,43,14,144,189,6,0,158,18,39,87,56,226,10,0,159,18,22,168,117,84,11,0,161,146,227,234,1,70,11,0,162,18,7,31,162,117,8,0,164,146,252,165,191,6,11,0,167,146,240,89,60,152,7,0,168,18,96,216,161,77,7,0,172,18,84,56,83,126,8,0,173,18,185,148,29,120,7,0,175,146,255,86,193,100,10,0,175,146,255,86,89,103,10,0,177,146,196,170,12,99,7,0,180,146,139,5,45,226,8,0,180,146,254,39,45,226,8,0,180,146,139,5,130,231,8,0,180,146,254,39,130,231,8,0,180,146,219,104,60,77,10,0,180,146,219,104,232,77,10,0,184,146,64,223,193,100,10,0,184,146,64,223,89,103,10,0,184,146,151,90,107,236,10,0,184,146,151,90,122,236,10,0,189,18,170,156,119,96,7,0,189,146,160,107,168,152,9,0,191,18,34,228,225,57,8,0,191,18,237,52,200,30,11,0,192,146,63,240,17,145,6,0,192,146,63,240,41,145,6,0,199,146,101,78,12,132,10,0,201,18,72,88,16,183,8,0,201,18,72,88,251,191,8,0,201,18,72,88,239,200,8,0,204,18,219,58,45,226,8,0,204,18,219,58,130,231,8,0,206,146,192,76,75,112,7,0,206,18,42,208,98,22,11,0,207,18,189,6,16,183,8,0,207,18,189,6,251,191,8,0,207,18,189,6,239,200,8,0,210,146,246,23,36,111,6,0,211,146,201,95,135,44,7,0,215,146,123,43,148,226,6,0,216,18,236,204,145,114,7,0,217,146,103,28,145,114,7,0,219,18,38,234,98,211,6,0,220,146,188,215,77,11,7,0,221,18,109,233,85,126,6,0,223,146,120,29,161,77,7,0,223,146,120,29,147,110,7,0,224,146,207,132,253,192,6,0,227,146,45,146,113,132,9,0,227,146,45,146,167,132,9,0,227,146,45,146,51,133,9,0,229,146,172,20,207,14,9,0,229,146,172,20,54,15,9,0,229,146,84,196,132,98,11,0,230,146,54,74,5,133,11,0,231,18,132,55,156,253,6,0,232,18,185,148,119,96,7,0,232,146,224,32,204,181,9,0,232,146,224,32,224,182,9,0,233,18,231,154,77,11,7,0,233,18,231,154,90,14,7,0,233,18,232,130,132,21,9,0,233,18,232,130,157,23,9,0,235,18,74,67,244,241,6,0,235,146,183,236,62,26,9,0,235,146,183,236,116,26,9,0,238,146,151,157,96,221,6,0,238,146,151,157,0,132,9,0,240,146,111,240,121,55,6,0,240,146,239,84,29,120,7,0,240,18,23,210,102,214,8,0,240,18,23,210,14,218,8,0,241,18,63,71,140,219,6,0,241,18,60,31,23,253,6,0,243,146,230,6,86,243,6,0,244,146,207,150,147,110,7,0,244,18,110,166,191,204,7,0,244,18,110,166,230,204,7,0,245,146,14,7,55,108,7,0,245,18,249,8,194,138,7,0,246,146,184,177,120,45,6,0,247,146,110,66,57,172,10,0,251,18,180,17,45,226,8,0,251,18,180,17,130,231,8,0,252,18,21,233,20,8,9,0,252,18,21,233,247,8,9,0,252,18,21,233,210,9,9,0,253,18,97,60,198,64,6,0,254,146,241,64,60,152,7,0,254,146,241,64,103,6,8,0,4,147,195,38,217,103,7,0,4,147,63,127,65,148,10,0,6,19,185,139,201,8,10,0,12,19,193,87,162,238,5,0,12,147,94,136,119,32,6,0,12,19,193,87,130,118,6,0,12,19,193,87,179,134,6,0,14,147,16,133,45,226,8,0,14,147,16,133,130,231,8,0,16,19,157,5,135,44,7,0,20,147,68,7,29,120,7,0,20,19,142,95,213,53,11,0,21,19,110,3,77,37,6,0,21,147,124,123,100,189,6,0,21,19,28,171,243,234,7,0,22,19,74,46,161,207,10,0,24,19,221,78,159,32,10,0,24,19,221,78,240,32,10,0,25,19,56,185,60,152,7,0,26,147,205,32,134,19,7,0,28,147,181,44,23,27,7,0,28,147,205,150,149,174,9,0,28,147,205,150,200,174,9,0,30,147,230,138,213,81,7,0,32,147,164,55,92,224,5,0,34,147,83,83,165,224,8,0,34,147,83,83,86,225,8,0,36,19,22,239,209,19,10,0,39,19,94,7,39,35,7,0,40,19,2,233,116,72,7,0,42,19,201,78,154,28,8,0,42,19,201,78,194,28,8,0,47,147,71,219,76,187,6,0,49,19,30,36,97,103,7,0,52,19,182,148,47,70,6,0,53,19,19,28,29,14,6,0,53,19,19,28,73,130,7,0,54,19,220,202,119,96,7,0,54,147,4,220,175,29,9,0,54,147,4,220,88,30,9,0,58,147,224,57,193,100,10,0,58,147,224,57,89,103,10,0,59,147,124,231,45,226,8,0,59,147,124,231,130,231,8,0,59,147,39,132,135,2,9,0,59,147,39,132,47,3,9,0,60,19,100,154,113,50,11,0,62,147,231,31,161,110,10,0,62,147,231,31,2,112,10,0,62,19,128,109,199,105,11,0,65,147,224,133,29,14,6,0,65,147,224,133,73,130,7,0,69,147,165,96,173,250,8,0,69,147,165,96,205,250,8,0,70,147,84,13,103,140,10,0,72,147,200,150,4,52,10,0,75,19,36,248,129,80,7,0,75,147,190,142,177,43,11,0,77,147,115,56,115,2,7,0,77,19,73,187,164,16,9,0,77,19,73,187,141,17,9,0,78,19,109,205,168,152,9,0,83,19,213,126,119,96,7,0,84,147,63,218,147,64,11,0,86,147,238,21,62,223,9,0,86,147,238,21,64,224,9,0,86,147,238,21,93,225,9,0,89,147,99,129,135,149,7,0,90,19,240,189,65,41,7,0,90,19,240,189,201,42,7,0,93,147,14,146,71,172,7,0,95,19,161,26,165,125,11,0,98,19,86,2,16,183,8,0,98,19,86,2,251,191,8,0,98,19,86,2,239,200,8,0,98,19,112,74,219,238,8,0,98,19,145,179,219,238,8,0,98,19,112,74,39,240,8,0,98,19,145,179,39,240,8,0,98,19,112,74,117,241,8,0,98,19,145,179,117,241,8,0,103,19,98,74,194,17,6,0,104,147,156,220,102,214,8,0,104,147,156,220,14,218,8,0,104,147,156,220,60,241,10,0,107,19,84,2,13,238,6,0,107,19,194,124,131,222,8,0,107,19,194,124,38,223,8,0,107,19,194,124,206,223,8,0,108,147,121,200,29,120,7,0,113,19,141,41,172,51,6,0,117,19,124,80,23,148,9,0,117,19,124,80,56,148,9,0,118,147,235,194,145,114,7,0,118,147,156,86,29,120,7,0,120,147,252,117,8,146,10,0,122,19,44,106,60,152,7,0,122,19,44,106,5,4,9,0,122,19,44,106,54,4,9,0,123,19,193,129,134,63,11,0,128,147,214,215,70,56,6,0,128,19,76,72,45,226,8,0,128,19,76,72,130,231,8,0,128,19,175,147,161,83,9,0,128,19,175,147,186,83,9,0,130,19,124,111,45,226,8,0,130,19,124,111,130,231,8,0,131,147,237,209,67,111,6,0,134,19,180,148,44,202,6,0,136,19,121,30,100,92,7,0,137,147,74,42,246,229,9,0,137,147,74,42,4,230,9,0,142,147,13,9,177,105,7,0,143,147,34,124,89,5,7,0,146,19,220,215,253,38,9,0,146,19,220,215,207,40,9,0,146,147,37,151,60,77,10,0,146,147,37,151,232,77,10,0,148,19,147,75,245,89,6,0,148,147,213,94,19,7,8,0,150,147,57,35,168,43,7,0,151,19,112,248,197,189,7,0,152,147,66,176,29,120,7,0,152,147,32,220,147,163,11,0,154,147,189,248,246,243,9,0,154,147,189,248,59,245,9,0,154,147,189,248,131,246,9,0,155,19,249,196,111,4,9,0,155,19,249,196,41,6,9,0,156,19,203,176,210,70,6,0,156,19,107,54,12,99,7,0,157,19,254,85,19,124,6,0,159,147,210,193,103,48,7,0,159,19,157,242,242,21,8,0,161,19,6,108,179,140,6,0,162,19,181,109,248,172,9,0,162,19,181,109,6,173,9,0,166,147,63,166,189,199,6,0,170,147,11,147,87,173,10,0,173,147,34,11,179,122,9,0,174,147,95,212,239,76,6,0,176,19,124,10,204,50,9,0,176,19,124,10,17,51,9,0,176,19,124,10,93,51,9,0,178,147,222,220,200,91,6,0,178,147,222,220,66,3,7,0,180,147,175,219,240,66,9,0,180,147,175,219,119,67,9,0,181,19,223,222,60,152,7,0,181,147,114,17,200,131,8,0,181,19,223,222,79,237,8,0,182,19,154,251,163,57,7,0,182,19,0,170,62,26,9,0,182,19,0,170,116,26,9,0,183,19,136,135,77,37,6,0,184,19,88,242,134,138,8,0,184,19,88,242,225,143,11,0,185,19,251,225,116,16,6,0,185,19,114,69,23,27,7,0,185,19,7,27,135,61,7,0,186,147,5,56,63,81,6,0,190,147,196,64,23,27,7,0,190,19,41,205,164,173,10,0,190,19,41,205,190,173,10,0,191,147,115,193,233,149,6,0,191,147,27,154,64,70,7,0,191,19,165,144,19,59,11,0,194,147,150,179,111,4,9,0,194,147,150,179,41,6,9,0,195,19,83,126,100,92,7,0,199,19,61,143,127,26,11,0,203,19,179,135,194,138,7,0,204,19,33,203,32,129,6,0,204,147,178,154,147,169,11,0,206,19,180,53,217,238,9,0,206,19,180,53,4,241,9,0,207,19,128,236,216,47,7,0,209,147,174,185,133,0,7,0,209,147,167,249,16,6,11,0,210,147,9,247,58,75,7,0,214,19,241,167,23,27,7,0,214,147,236,97,100,92,7,0,216,19,73,60,3,19,11,0,217,147,45,144,60,77,10,0,217,147,45,144,232,77,10,0,219,19,221,190,103,208,6,0,219,19,233,95,53,157,11,0,220,19,139,249,194,138,7,0,220,147,174,129,181,30,11,0,223,19,106,5,166,65,11,0,226,19,158,228,209,117,6,0,227,147,223,0,16,183,8,0,227,147,223,0,251,191,8,0,227,147,223,0,239,200,8,0,228,147,96,39,128,151,11,0,229,147,73,41,233,176,7,0,230,147,146,92,39,47,9,0,230,147,146,92,54,48,9,0,233,19,155,26,16,183,8,0,233,19,155,26,251,191,8,0,233,19,155,26,239,200,8,0,237,19,250,186,207,14,9,0,237,19,250,186,54,15,9,0,239,19,137,155,72,235,6,0,239,147,193,176,163,57,7,0,239,147,193,176,152,63,7,0,240,147,72,245,103,83,6,0,243,147,139,48,29,213,6,0,243,147,73,238,23,27,7,0,244,147,223,162,160,79,8,0,245,147,203,67,23,27,7,0,250,19,197,94,9,84,9,0,250,19,197,94,62,84,9,0,252,19,105,170,23,27,7,0,252,19,117,13,159,32,10,0,252,19,117,13,240,32,10,0,1,20,20,58,172,87,7,0,3,148,242,192,77,135,10,0,3,20,49,94,185,139,11,0,5,148,6,51,26,228,7,0,5,148,5,255,149,174,9,0,5,148,5,255,200,174,9,0,9,20,163,38,23,27,7,0,10,20,188,148,146,131,6,0,13,148,79,83,23,27,7,0,16,20,168,31,16,183,8,0,16,20,168,31,251,191,8,0,16,20,168,31,239,200,8,0,17,20,138,252,0,55,7,0,17,20,138,252,163,57,7,0,20,20,180,128,116,72,7,0,22,148,195,61,55,108,7,0,22,148,104,209,194,138,7,0,22,148,104,209,96,113,8,0,24,20,34,184,218,93,7,0,24,148,211,33,4,52,10,0,28,148,172,170,116,72,7,0,30,148,4,130,13,212,10,0,32,20,169,231,194,138,7,0,33,20,1,159,248,238,10,0,35,148,44,44,60,152,7,0,35,148,44,44,122,158,7,0,35,148,44,44,226,164,7,0,38,148,153,48,128,221,5,0,44,148,50,147,230,161,10,0,47,20,192,108,134,19,7,0,48,148,31,88,191,156,6,0,48,20,217,105,194,185,9,0,48,20,217,105,96,186,9,0,49,148,163,224,246,243,9,0,49,148,163,224,59,245,9,0,49,148,163,224,131,246,9,0,54,20,191,232,145,12,8,0,57,20,1,93,45,33,9,0,57,20,1,93,120,33,9,0,58,20,115,244,115,161,9,0,58,20,115,244,104,162,9,0,59,148,133,71,145,114,7,0,59,148,208,163,16,183,8,0,59,148,208,163,251,191,8,0,59,148,208,163,239,200,8,0,60,20,97,12,156,121,11,0,61,20,205,191,53,41,6,0,61,148,217,139,246,243,9,0,61,148,217,139,59,245,9,0,61,148,217,139,131,246,9,0,62,148,185,94,29,14,6,0,62,20,252,127,57,109,6,0,62,148,185,94,73,130,7,0,63,20,103,234,133,210,6,0,64,148,227,230,12,99,7,0,65,20,60,30,123,181,10,0,66,148,128,137,195,163,11,0,67,148,173,169,4,52,10,0,68,148,76,249,210,165,11,0,80,20,10,48,101,137,6,0,83,148,48,117,45,226,8,0,83,148,48,117,130,231,8,0,85,148,232,156,153,132,7,0,86,20,97,82,156,253,6,0,86,20,170,151,232,222,10,0,87,148,137,125,9,77,6,0,87,20,197,41,187,227,7,0,88,148,195,48,209,18,7,0,88,148,126,211,145,114,7,0,90,20,255,49,199,131,6,0,90,20,188,97,84,157,11,0,91,148,169,232,160,20,8,0,92,148,94,222,195,163,10,0,92,148,6,64,117,227,10,0,92,20,184,58,27,233,10,0,95,148,73,18,145,114,7,0,96,20,208,66,63,25,8,0,104,148,186,64,136,1,7,0,104,148,186,64,10,2,7,0,104,148,144,17,36,131,9,0,104,148,144,17,58,131,9,0,104,148,239,154,198,61,11,0,105,148,239,125,185,45,6,0,105,148,239,125,231,171,6,0,105,20,53,138,102,214,8,0,105,20,53,138,14,218,8,0,105,20,53,138,69,167,10,0,106,20,231,242,21,138,7,0,106,148,142,120,194,138,7,0,107,148,73,18,45,226,8,0,107,148,73,18,130,231,8,0,108,148,58,193,180,243,5,0,111,20,112,186,67,6,7,0,112,148,45,106,81,49,7,0,114,148,244,168,163,146,6,0,114,148,244,168,194,146,6,0,114,20,88,103,193,100,10,0,114,20,88,103,89,103,10,0,115,20,162,126,176,36,6,0,115,20,114,62,111,4,9,0,115,20,114,62,41,6,9,0,116,148,3,97,75,148,7,0,117,148,139,20,79,148,10,0,117,20,211,80,17,38,11,0,117,20,211,80,38,40,11,0,124,148,121,148,32,174,6,0,126,20,29,247,201,55,9,0,126,20,29,247,253,55,9,0,127,20,243,213,82,138,10,0,128,20,20,180,194,138,7,0,129,148,6,237,106,66,7,0,129,148,122,94,218,225,10,0,130,148,132,193,4,52,10,0,130,20,98,245,161,110,10,0,130,20,98,245,2,112,10,0,132,20,42,218,75,148,7,0,132,20,42,218,191,158,7,0,135,20,164,38,219,238,8,0,135,20,164,38,39,240,8,0,135,20,164,38,117,241,8,0,135,20,176,55,20,8,9,0,135,20,176,55,247,8,9,0,135,20,176,55,210,9,9,0,138,148,0,171,72,83,6,0,138,148,0,171,191,159,8,0,140,148,93,247,194,193,6,0,141,148,30,73,116,72,7,0,141,148,85,143,125,18,9,0,141,148,85,143,34,19,9,0,141,20,192,228,137,234,10,0,141,20,192,228,188,234,10,0,142,20,100,155,249,153,6,0,144,20,157,38,245,28,8,0,147,20,64,230,135,1,9,0,147,20,64,230,189,1,9,0,149,148,211,106,227,219,5,0,149,20,166,12,194,185,9,0,149,20,166,12,96,186,9,0,151,20,168,237,23,27,7,0,152,20,169,219,193,220,7,0,156,148,79,102,27,123,11,0,157,20,157,38,193,100,10,0,157,20,157,38,89,103,10,0,159,148,1,66,38,193,6,0,159,148,237,51,29,120,7,0,160,20,47,30,44,87,8,0,161,148,210,190,30,241,5,0,162,20,131,182,58,35,9,0,162,20,131,182,31,36,9,0,164,20,26,20,107,10,7,0,167,148,235,17,160,237,9,0,167,148,235,17,187,237,9,0,167,148,235,17,217,237,9,0,167,148,235,17,253,237,9,0,169,20,56,117,16,37,7,0,171,148,123,2,39,192,6,0,171,20,148,190,142,7,8,0,172,148,125,235,253,49,7,0,172,148,27,95,111,4,9,0,172,148,27,95,41,6,9,0,176,20,78,170,33,48,7,0,179,148,1,126,58,108,6,0,181,20,76,105,49,175,9,0,181,20,76,105,70,175,9,0,182,20,137,238,201,94,11,0,183,148,167,255,63,79,10,0,183,148,167,255,138,79,10,0,183,148,167,255,214,79,10,0,183,20,213,75,164,142,10,0,184,20,143,91,95,17,6,0,185,148,176,3,225,101,11,0,188,20,237,119,58,35,9,0,188,20,237,119,31,36,9,0,189,20,245,194,163,57,7,0,189,148,253,90,12,99,7,0,189,20,245,194,21,71,9,0,189,20,245,194,100,72,9,0,189,20,245,194,181,73,9,0,189,20,245,194,11,75,9,0,192,20,221,240,90,150,6,0,197,148,156,20,217,9,7,0,197,20,103,32,87,243,10,0,200,148,36,5,161,77,7,0,202,148,247,86,26,34,6,0,206,20,148,225,75,148,7,0,206,20,1,42,89,140,10,0,207,20,155,205,66,3,7,0,207,148,240,52,250,60,8,0,208,20,137,135,21,71,9,0,208,20,137,135,100,72,9,0,208,20,137,135,181,73,9,0,208,20,137,135,11,75,9,0,209,148,120,183,119,96,7,0,214,148,174,69,28,12,6,0,214,20,154,89,65,41,7,0,216,148,178,102,213,15,9,0,217,20,59,254,40,14,9,0,217,20,59,254,96,14,9,0,220,148,153,226,163,57,7,0,220,148,153,226,74,239,9,0,220,148,153,226,174,239,9,0,221,20,156,251,29,14,6,0,221,148,243,126,23,27,7,0,221,20,156,251,73,130,7,0,222,20,99,88,23,27,7,0,223,20,95,149,108,31,11,0,224,148,118,182,42,68,9,0,224,148,118,182,103,68,9,0,224,148,118,182,200,231,10,0,225,20,184,84,253,59,10,0,225,20,184,84,144,60,10,0,225,20,184,84,39,61,10,0,227,148,38,217,169,40,8,0,227,148,107,245,125,18,9,0,227,148,107,245,34,19,9,0,228,20,182,93,168,152,9,0,229,20,180,60,134,19,7,0,231,148,121,143,36,235,7,0,231,20,61,38,16,183,8,0,231,20,61,38,251,191,8,0,231,20,61,38,239,200,8,0,231,20,231,242,129,130,9,0,231,20,231,242,155,130,9,0,232,20,173,102,60,182,8,0,237,20,254,148,193,100,10,0,237,20,254,148,89,103,10,0,238,20,66,38,4,52,10,0,240,148,40,0,51,248,8,0,240,148,40,0,162,248,8,0,241,20,5,6,175,29,9,0,241,20,5,6,88,30,9,0,242,148,120,136,130,47,7,0,245,148,176,47,16,183,8,0,245,148,176,47,251,191,8,0,245,148,176,47,239,200,8,0,250,148,96,153,59,135,6,0,251,20,231,242,224,237,6,0,253,148,67,152,131,133,7,0,253,20,190,211,45,226,8,0,253,20,190,211,130,231,8,0,254,148,250,126,72,130,10,0,255,20,169,222,60,152,7,0,255,20,169,222,28,167,7,0,2,21,175,105,193,220,7,0,5,21,146,177,145,114,7,0,6,149,112,119,191,19,8,0,7,149,4,9,60,190,10,0,8,149,71,71,102,214,8,0,8,149,71,71,14,218,8,0,8,149,231,242,193,100,10,0,8,149,231,242,89,103,10,0,9,149,68,22,240,66,9,0,9,149,68,22,119,67,9,0,10,21,195,227,108,44,10,0,10,21,195,227,129,44,10,0,13,149,244,103,1,195,9,0,13,149,244,103,29,195,9,0,15,21,39,116,215,218,10,0,15,21,123,55,91,51,11,0,18,21,155,112,25,134,9,0,18,21,155,112,147,134,9,0,18,21,155,112,7,135,9,0,18,21,155,112,174,135,9,0,18,21,155,112,71,136,9,0,19,21,99,244,115,2,7,0,19,21,214,111,115,161,9,0,19,21,214,111,104,162,9,0,22,21,226,50,45,226,8,0,22,21,226,50,130,231,8,0,26,149,231,242,194,138,7,0,27,21,157,69,28,118,11,0,27,21,157,69,166,119,11,0,29,21,168,237,70,80,9,0,30,21,143,205,117,51,7,0,31,21,122,94,29,120,7,0,31,149,65,35,234,157,10,0,31,149,65,35,132,166,10,0,34,21,234,70,137,75,8,0,34,21,234,70,238,203,10,0,36,21,184,148,177,105,7,0,37,149,133,8,33,171,7,0,37,149,229,14,105,129,9,0,37,149,229,14,180,129,9,0,40,21,198,65,183,48,6,0,40,21,9,177,21,138,7,0,40,149,240,0,60,152,7,0,40,21,145,20,192,251,7,0,43,21,136,194,16,183,8,0,43,21,136,194,251,191,8,0,43,21,136,194,239,200,8,0,43,21,220,235,138,12,11,0,44,149,79,28,29,94,6,0,45,21,100,152,153,113,10,0,45,21,100,152,27,114,10,0,46,21,88,71,134,19,7,0,46,149,223,190,101,193,9,0,46,149,223,190,128,193,9,0,46,149,229,223,47,94,11,0,50,149,175,107,66,3,7,0,50,21,149,225,194,138,7,0,51,21,40,200,248,177,10,0,52,149,131,32,147,64,6,0,52,149,209,154,135,61,7,0,52,149,132,1,120,63,7,0,52,149,132,1,204,181,9,0,52,149,132,1,224,182,9,0,55,21,144,60,100,92,7,0,55,21,104,44,49,222,7,0,55,149,216,144,45,226,8,0,55,149,216,144,130,231,8,0,56,149,34,73,4,52,10,0,60,21,79,147,20,8,9,0,60,21,79,147,247,8,9,0,60,21,79,147,210,9,9,0,62,21,162,243,64,110,6,0,68,21,79,226,83,126,8,0,68,21,26,103,28,113,11,0,69,149,161,29,45,226,8,0,69,149,161,29,130,231,8,0,70,21,66,31,21,2,8,0,71,21,213,35,138,38,11,0,78,149,84,165,134,19,7,0,78,21,17,98,73,38,7,0,78,149,84,165,194,138,7,0,82,21,153,114,176,68,8,0,82,149,205,13,55,95,10,0,82,149,205,13,143,95,10,0,85,149,143,32,245,13,8,0,85,149,101,27,193,100,10,0,85,149,101,27,89,103,10,0,90,149,240,33,45,226,8,0,90,149,240,33,130,231,8,0,90,149,145,107,28,147,11,0,91,149,13,55,129,80,7,0,93,149,239,60,29,120,7,0,93,21,7,119,45,226,8,0,93,21,7,119,130,231,8,0,95,21,250,45,194,138,7,0,96,149,90,64,209,84,7,0,97,21,70,127,135,250,5,0,97,21,147,190,247,231,10,0,98,21,186,18,187,48,11,0,103,149,121,208,117,51,7,0,103,149,121,208,111,53,7,0,104,21,13,192,73,82,7,0,107,21,131,206,194,138,7,0,107,149,104,78,204,181,9,0,107,149,104,78,224,182,9,0,110,149,55,105,237,122,6,0,110,21,232,176,27,255,8,0,110,21,232,176,100,255,8,0,111,21,21,174,60,152,7,0,111,21,21,174,46,160,7,0,113,21,227,36,116,72,7,0,113,149,124,118,82,186,10,0,115,149,160,142,190,2,11,0,117,149,217,26,233,16,7,0,117,149,64,1,134,19,7,0,117,21,244,84,23,27,7,0,118,149,83,239,117,51,7,0,118,149,235,7,55,108,7,0,119,149,133,58,16,183,8,0,119,149,133,58,251,191,8,0,119,149,133,58,239,200,8,0,120,21,149,42,102,214,8,0,120,21,149,42,14,218,8,0,121,149,46,51,125,67,10,0,121,149,46,51,69,68,10,0,121,21,33,32,49,18,11,0,122,149,52,187,81,145,8,0,125,149,134,171,135,61,7,0,125,21,231,235,125,18,9,0,125,21,231,235,34,19,9,0,128,21,112,219,105,64,6,0,128,21,112,219,210,184,6,0,128,21,173,17,175,242,10,0,129,149,94,145,194,138,7,0,130,21,197,88,60,77,10,0,130,21,197,88,232,77,10,0,132,21,211,13,162,212,6,0,132,21,72,64,194,138,7,0,132,149,162,128,60,182,8,0,132,21,72,64,65,144,11,0,134,149,105,27,255,255,8,0,134,149,105,27,30,0,9,0,137,21,213,213,77,252,6,0,137,21,213,213,60,152,7,0,137,21,213,213,167,113,9,0,137,21,213,213,7,114,9,0,137,21,213,213,108,114,9,0,137,21,213,213,202,114,9,0,137,21,213,213,49,115,9,0,138,149,136,35,203,245,8,0,138,149,136,35,232,245,8,0,138,149,136,35,0,246,8,0,139,149,18,86,16,68,8,0,139,149,57,92,241,172,11,0,142,21,21,242,192,2,7,0,143,149,245,25,115,161,9,0,143,149,245,25,104,162,9,0,144,21,231,160,45,226,8,0,144,21,231,160,130,231,8,0,149,21,59,23,145,114,7,0,149,21,22,249,29,120,7,0,151,21,254,162,253,14,11,0,153,21,77,36,93,46,7,0,153,149,43,159,4,52,10,0,153,149,213,233,210,138,11,0,155,149,2,82,134,19,7,0,158,21,178,191,226,11,7,0,159,21,209,173,173,180,6,0,160,149,67,193,116,72,7,0,163,21,22,172,45,226,8,0,163,21,22,172,130,231,8,0,163,21,174,61,48,129,11,0,166,149,193,113,30,109,6,0,166,21,148,148,2,41,7,0,166,21,138,209,218,93,7,0,166,149,12,22,132,21,9,0,166,149,12,22,157,23,9,0,166,149,99,114,175,88,9,0,166,149,99,114,254,88,9,0,166,149,99,114,92,89,9,0,166,149,99,114,173,89,9,0,166,21,194,252,53,163,10,0,167,149,245,114,4,44,7,0,167,21,71,172,230,29,11,0,168,149,255,235,39,184,9,0,168,149,255,235,92,184,9,0,169,149,140,92,214,16,11,0,170,21,179,225,218,93,7,0,170,149,178,27,217,103,7,0,175,21,192,121,156,253,6,0,175,21,182,37,37,82,7,0,176,21,230,228,65,41,7,0,179,149,105,77,106,31,6,0,180,149,59,195,77,252,6,0,180,149,59,195,167,113,9,0,180,149,59,195,7,114,9,0,180,149,59,195,108,114,9,0,180,149,59,195,202,114,9,0,180,149,59,195,49,115,9,0,183,149,216,214,250,87,10,0,184,21,126,148,23,27,7,0,184,21,126,148,73,38,7,0,186,149,38,142,99,120,9,0,186,149,38,142,113,120,9,0,186,149,38,142,138,120,9,0,186,149,38,142,61,207,9,0,186,149,38,142,85,207,9,0,187,21,116,95,253,49,7,0,188,21,88,144,45,226,8,0,188,21,88,144,130,231,8,0,190,149,225,116,16,183,8,0,190,149,225,116,251,191,8,0,190,149,225,116,239,200,8,0,191,149,85,194,161,77,7,0,192,21,229,212,116,72,7,0,194,21,11,237,13,54,6,0,194,149,33,203,201,201,9,0,194,149,33,203,243,201,9,0,198,21,109,139,135,61,7,0,201,21,113,182,252,242,8,0,201,21,113,182,240,243,8,0,201,21,245,200,142,81,10,0,201,21,245,200,163,81,10,0,202,149,0,84,29,120,7,0,202,149,0,84,233,54,11,0,203,21,91,43,102,15,7,0,203,21,108,69,58,35,9,0,203,21,108,69,31,36,9,0,204,21,206,232,82,20,8,0,205,21,112,124,237,223,6,0,207,21,38,3,220,40,6,0,207,149,157,46,115,161,9,0,207,149,157,46,104,162,9,0,209,21,243,58,168,152,9,0,210,21,5,8,194,138,7,0,211,149,254,125,71,250,6,0,211,149,69,95,145,114,7,0,211,21,138,177,30,100,11,0,212,149,221,78,116,72,7,0,212,21,146,111,55,108,7,0,212,149,221,78,145,114,7,0,212,21,51,254,57,24,8,0,212,21,51,254,220,24,8,0,213,21,197,52,168,152,9,0,215,21,202,210,237,175,10,0,218,21,211,195,240,248,6,0,219,21,64,255,228,66,7,0,220,149,206,91,45,226,8,0,220,149,206,91,130,231,8,0,220,21,85,123,187,136,11,0,225,149,115,77,23,27,7,0,225,21,239,130,16,183,8,0,225,21,239,130,251,191,8,0,225,21,239,130,239,200,8,0,225,149,217,25,198,1,10,0,225,149,217,25,220,1,10,0,225,149,217,25,240,1,10,0,227,149,74,176,161,77,7,0,232,21,17,1,64,67,7,0,233,149,220,121,32,106,6,0,233,149,81,242,83,231,10,0,239,149,129,229,103,93,10,0,239,149,129,229,153,93,10,0,241,149,42,127,16,183,8,0,241,149,42,127,251,191,8,0,241,149,42,127,239,200,8,0,245,149,87,79,168,152,9,0,246,149,138,47,147,151,9,0,246,149,138,47,184,151,9,0,248,21,124,148,107,251,10,0,249,21,65,68,117,196,9,0,249,21,65,68,157,196,9,0,250,21,99,73,201,106,7,0,251,149,195,42,223,105,9,0,251,149,195,42,250,105,9,0,251,149,179,207,14,137,9,0,251,149,179,207,201,137,9,0,254,149,78,49,216,51,9,0,254,149,78,49,175,52,9,0,254,149,78,49,12,148,11,0,255,149,195,159,138,222,5,0,255,21,226,184,25,134,9,0,255,21,226,184,147,134,9,0,255,21,226,184,7,135,9,0,255,21,226,184,174,135,9,0,255,21,226,184,71,136,9,0,2,22,138,190,253,38,9,0,2,22,138,190,207,40,9,0,7,150,134,231,209,19,10,0,8,22,239,136,217,247,5,0,19,22,207,82,53,30,8,0,19,22,207,82,108,30,8,0,19,22,207,82,161,30,8,0,20,22,247,61,93,193,6,0,20,150,107,15,4,44,7,0,21,150,82,3,149,40,7,0,21,150,57,22,92,9,8,0,22,22,77,136,4,52,10,0,25,22,36,155,255,151,7,0,25,22,36,155,165,5,8,0,25,22,36,155,221,5,8,0,25,22,36,155,17,6,8,0,25,150,88,45,250,52,11,0,27,22,178,115,129,248,6,0,30,150,237,133,166,247,7,0,32,150,67,39,23,27,7,0,32,150,113,61,12,99,7,0,34,22,52,74,166,248,6,0,36,150,215,207,180,114,6,0,38,150,253,85,62,223,9,0,38,150,253,85,64,224,9,0,38,150,253,85,93,225,9,0,41,22,139,251,219,143,6,0,44,22,59,244,206,214,6,0,49,150,223,122,143,42,11,0,50,150,245,201,165,224,8,0,50,150,245,201,86,225,8,0,51,22,129,114,3,180,6,0,51,22,128,186,32,226,10,0,59,150,56,3,219,238,8,0,59,150,56,3,39,240,8,0,59,150,56,3,117,241,8,0,59,150,126,204,143,167,10,0,60,150,140,128,102,214,8,0,60,150,140,128,14,218,8,0,61,22,40,62,113,143,6,0,62,150,64,231,219,46,10,0,62,150,151,202,59,186,10,0,63,150,4,126,65,41,7,0,63,22,91,29,164,16,9,0,63,22,91,29,141,17,9,0,63,22,198,100,85,29,10,0,65,22,32,111,191,86,7,0,65,22,109,27,193,100,10,0,65,22,109,27,89,103,10,0,66,150,68,186,152,65,7,0,66,22,214,226,194,138,7,0,66,22,214,226,72,102,9,0,66,22,214,226,254,102,9,0,68,22,141,243,45,226,8,0,68,22,141,243,130,231,8,0,69,22,171,189,53,216,5,0,73,150,186,148,222,74,8,0,75,150,142,5,115,2,7,0,75,150,142,5,66,3,7,0,76,22,47,146,97,103,7,0,77,150,87,42,12,99,7,0,80,150,228,79,72,132,6,0,80,22,255,6,160,79,8,0,82,150,210,239,34,177,8,0,82,150,210,239,190,2,11,0,84,150,32,0,38,117,8,0,85,22,148,8,16,183,8,0,85,22,148,8,251,191,8,0,85,22,148,8,239,200,8,0,87,150,73,31,23,27,7,0,88,150,47,8,191,86,7,0,88,150,245,88,196,99,8,0,90,150,99,192,47,16,7,0,91,22,202,52,194,233,5,0,91,22,174,206,139,14,10,0,91,22,174,206,50,15,10,0,95,150,187,254,167,50,6,0,97,150,188,76,128,39,7,0,97,22,121,180,225,255,7,0,97,22,121,180,27,0,8,0,97,22,121,180,95,0,8,0,97,22,121,180,164,0,8,0,100,22,252,21,144,70,7,0,100,22,252,21,176,70,7,0,103,22,96,28,219,238,8,0,103,22,96,28,39,240,8,0,103,22,96,28,117,241,8,0,107,150,152,55,194,138,7,0,108,150,157,38,192,2,7,0,109,22,150,95,141,39,6,0,109,150,102,103,210,4,11,0,110,150,117,38,246,243,9,0,110,150,117,38,59,245,9,0,110,150,117,38,131,246,9,0,111,22,157,106,133,12,7,0,113,150,100,200,12,99,7,0,114,22,84,245,193,100,10,0,114,22,84,245,89,103,10,0,118,150,19,69,26,34,6,0,123,22,168,144,107,10,7,0,124,22,221,134,134,19,7,0,124,22,199,11,125,67,10,0,124,22,199,11,69,68,10,0,125,150,55,134,43,72,10,0,125,150,55,134,148,72,10,0,126,150,13,134,51,137,6,0,126,150,255,46,194,138,7,0,126,150,255,46,74,73,11,0,127,150,208,38,134,19,7,0,129,150,233,90,23,27,7,0,130,22,99,244,134,19,7,0,134,22,244,110,45,226,8,0,134,22,244,110,130,231,8,0,135,22,171,72,181,104,6,0,135,22,198,105,94,248,6,0,138,22,142,101,219,238,8,0,138,22,142,101,39,240,8,0,138,22,142,101,117,241,8,0,139,22,21,159,182,13,7,0,139,22,137,187,220,137,10,0,141,22,75,136,163,57,7,0,141,22,75,136,209,84,7,0,142,150,217,40,55,237,6,0,142,150,252,21,11,14,7,0,145,22,158,235,221,69,6,0,148,22,93,111,117,51,7,0,148,22,93,111,111,53,7,0,150,22,160,134,29,120,7,0,150,22,166,42,92,9,8,0,151,150,247,187,45,226,8,0,151,150,247,187,130,231,8,0,152,150,49,200,139,254,6,0,152,150,209,131,60,51,10,0,152,150,209,131,121,51,10,0,154,150,247,21,222,141,10,0,154,150,247,21,251,141,10,0,158,150,37,19,240,66,9,0,158,150,37,19,119,67,9,0,163,150,143,99,111,4,9,0,163,150,143,99,41,6,9,0,165,150,135,13,63,102,6,0,166,22,82,176,212,178,7,0,168,150,56,161,132,171,6,0,169,22,117,230,139,14,10,0,169,22,117,230,50,15,10,0,169,150,233,163,183,101,11,0,170,22,174,193,23,27,7,0,171,150,56,16,43,89,7,0,171,150,56,16,115,86,9,0,171,150,56,16,181,86,9,0,174,150,3,214,119,7,7,0,174,22,232,94,218,93,7,0,176,22,113,19,145,114,7,0,177,150,118,81,173,207,7,0,177,150,48,199,168,152,9,0,180,150,9,146,234,212,6,0,180,22,99,110,45,226,8,0,180,22,99,110,130,231,8,0,180,22,184,138,168,152,9,0,180,150,9,146,148,159,11,0,181,22,195,148,160,79,8,0,185,22,142,180,176,147,11,0,186,150,128,13,220,65,7,0,187,22,146,248,156,253,6,0,189,22,182,47,121,188,6,0,189,22,59,144,12,99,7,0,192,22,143,248,252,179,10,0,193,22,76,115,188,157,11,0,195,150,98,203,176,68,7,0,198,150,172,211,240,66,9,0,198,150,172,211,119,67,9,0,199,150,232,111,253,185,10,0,199,150,232,111,29,186,10,0,200,150,87,138,91,154,8,0,204,22,27,45,218,93,7,0,204,150,44,36,60,152,7,0,204,150,44,36,190,122,8,0,204,150,44,36,83,123,8,0,204,150,44,36,244,123,8,0,204,150,44,36,210,33,10,0,208,150,238,246,252,30,8,0,208,150,238,246,41,31,8,0,208,150,238,246,97,31,8,0,208,22,129,228,40,14,9,0,208,22,129,228,96,14,9,0,208,22,72,172,110,118,11,0,209,150,61,163,114,118,6,0,210,150,43,161,23,27,7,0,210,22,204,138,86,56,9,0,210,22,204,138,9,57,9,0,213,150,175,226,134,19,7,0,214,22,188,51,134,19,7,0,214,150,205,156,65,41,7,0,215,22,171,114,218,93,7,0,215,150,206,139,155,137,11,0,215,150,206,139,170,138,11,0,219,22,194,24,16,183,8,0,219,22,194,24,251,191,8,0,219,22,194,24,239,200,8,0,221,150,208,98,111,86,8,0,223,150,19,12,177,105,7,0,224,22,231,242,104,67,7,0,225,150,157,128,16,183,8,0,225,150,157,128,251,191,8,0,225,150,157,128,239,200,8,0,225,22,50,49,202,136,11,0,226,150,122,6,217,9,7,0,226,150,180,162,5,76,7,0,229,22,172,213,188,213,9,0,229,22,172,213,58,214,9,0,229,22,172,213,197,214,9,0,232,22,9,193,22,91,7,0,232,150,16,80,193,226,10,0,237,150,18,127,242,202,10,0,239,22,83,196,115,161,9,0,239,22,83,196,104,162,9,0,244,22,168,210,23,27,7,0,244,22,187,202,147,189,7,0,248,150,37,167,135,149,7,0,248,150,152,165,179,122,9,0,248,150,92,104,86,248,9,0,248,150,92,104,129,248,9,0,248,150,92,104,171,248,9,0,248,150,37,167,151,252,9,0,250,22,14,30,0,55,7,0,250,150,224,104,228,66,7,0,252,150,101,139,33,230,10,0,254,150,131,32,155,242,10,0,1,151,218,47,253,49,7,0,3,151,255,99,0,2,11,0,4,23,184,135,107,226,9,0,4,23,184,135,251,226,9,0,6,151,103,72,109,210,7,0,6,151,103,72,170,210,7,0,6,151,103,72,234,210,7,0,8,23,5,231,45,33,9,0,8,23,5,231,120,33,9,0,11,151,20,214,150,202,10,0,15,151,176,117,39,35,7,0,15,151,119,31,29,120,7,0,18,23,39,32,57,37,9,0,18,23,39,32,83,37,9,0,24,151,241,244,130,86,7,0,24,23,208,194,107,226,9,0,24,23,208,194,251,226,9,0,25,23,242,101,232,106,6,0,25,23,134,241,45,226,8,0,25,23,134,241,130,231,8,0,25,23,107,138,134,210,10,0,26,23,122,188,152,241,6,0,28,23,185,148,94,143,9,0,28,23,185,148,117,143,9,0,29,151,221,108,145,114,7,0,30,151,146,228,145,12,8,0,31,23,128,94,12,99,7,0,31,151,255,195,60,152,7,0,31,151,255,195,104,103,8,0,31,151,255,195,219,103,8,0,31,151,255,195,68,104,8,0,31,151,255,195,59,45,10,0,34,151,123,84,16,183,8,0,34,151,123,84,251,191,8,0,34,151,123,84,239,200,8,0,38,23,133,67,75,112,7,0,39,151,208,104,15,55,11,0,41,23,70,102,234,223,5,0,43,151,238,31,24,91,9,0,43,151,238,31,53,91,9,0,43,151,206,193,75,17,11,0,47,151,122,209,241,12,6,0,48,151,237,128,135,44,7,0,52,23,140,5,222,14,7,0,52,23,140,5,60,152,7,0,52,151,209,71,147,35,10,0,52,151,209,71,163,35,10,0,53,23,23,146,60,77,10,0,53,23,23,146,232,77,10,0,54,23,245,143,172,47,6,0,58,23,133,206,51,65,7,0,63,151,208,31,218,93,7,0,64,23,75,252,167,242,9,0,64,23,31,152,168,84,10,0,64,23,31,152,226,84,10,0,64,151,231,242,53,163,10,0,64,151,89,140,3,190,10,0,64,23,30,118,236,0,11,0,66,151,235,24,41,15,11,0,66,151,235,24,8,26,11,0,67,151,111,93,60,77,10,0,67,151,111,93,232,77,10,0,68,151,159,86,209,84,7,0,68,151,5,91,187,220,9,0,68,151,5,91,14,221,9,0,68,151,31,58,113,127,11,0,69,23,157,38,253,38,9,0,69,23,157,38,207,40,9,0,69,23,72,236,238,171,11,0,71,151,68,93,83,126,8,0,71,151,68,93,214,127,8,0,71,151,68,93,65,128,8,0,72,151,234,78,207,217,10,0,75,151,161,15,168,152,9,0,76,23,97,157,60,152,7,0,76,23,97,157,9,16,10,0,79,23,3,108,0,143,9,0,79,23,3,108,24,143,9,0,84,151,10,87,225,107,7,0,84,151,100,25,5,87,8,0,85,23,231,242,133,179,10,0,86,23,8,62,39,184,9,0,86,23,8,62,92,184,9,0,86,23,157,254,246,243,9,0,86,23,157,254,59,245,9,0,86,23,157,254,131,246,9,0,87,151,116,227,55,239,6,0,89,151,207,150,101,118,10,0,89,151,207,150,178,118,10,0,90,23,121,137,62,69,11,0,91,23,120,254,4,52,10,0,92,23,224,36,23,27,7,0,94,23,194,219,98,208,10,0,96,23,130,166,79,77,7,0,96,23,231,242,194,138,7,0,98,151,175,137,132,21,9,0,98,151,175,137,157,23,9,0,99,23,243,66,135,149,7,0,99,23,243,66,16,183,8,0,99,23,243,66,251,191,8,0,99,23,243,66,239,200,8,0,100,151,245,24,125,18,9,0,100,151,245,24,34,19,9,0,102,23,31,246,139,170,10,0,109,151,61,94,176,68,7,0,114,23,30,97,81,162,11,0,116,23,41,167,58,35,9,0,116,23,41,167,31,36,9,0,119,151,6,33,133,244,5,0,119,151,10,155,112,46,11,0,120,23,89,78,104,143,8,0,120,151,228,86,4,52,10,0,120,151,18,106,181,53,11,0,122,23,45,9,52,209,10,0,123,23,99,244,194,138,7,0,123,23,118,24,76,43,9,0,123,23,118,24,114,43,9,0,125,23,248,96,146,18,10,0,128,151,174,165,239,186,10,0,129,23,24,233,65,41,7,0,132,23,93,139,194,138,7,0,134,151,119,37,1,13,6,0,139,23,233,202,167,164,6,0,139,23,233,202,254,165,6,0,139,151,176,166,85,93,11,0,140,151,160,153,251,223,5,0,141,151,86,212,0,55,7,0,143,23,25,250,16,183,8,0,143,23,25,250,251,191,8,0,143,23,25,250,239,200,8,0,144,151,87,2,18,210,8,0,144,151,87,2,113,210,8,0,144,151,87,2,217,210,8,0,146,23,171,226,113,35,7,0,146,151,74,9,4,52,10,0,149,151,111,84,204,181,9,0,149,151,111,84,224,182,9,0,153,23,198,194,149,10,6,0,155,23,27,2,4,52,10,0,156,23,141,173,152,65,7,0,157,151,60,174,230,126,6,0,162,151,21,145,39,230,6,0,163,151,106,90,14,137,9,0,163,151,106,90,201,137,9,0,164,151,254,104,40,34,8,0,167,151,37,47,139,14,10,0,167,151,37,47,50,15,10,0,167,151,106,28,153,113,10,0,167,151,106,28,27,114,10,0,168,23,172,12,176,68,7,0,168,151,81,15,116,72,7,0,172,23,96,136,218,93,7,0,173,23,82,177,194,138,7,0,173,23,82,177,53,167,7,0,173,23,26,102,145,55,11,0,176,151,175,222,225,101,11,0,177,23,208,89,250,60,8,0,177,23,103,242,194,185,9,0,177,23,103,242,96,186,9,0,179,23,150,248,143,240,6,0,180,23,141,105,218,93,7,0,181,151,16,71,204,181,9,0,181,151,16,71,224,182,9,0,185,23,29,205,248,150,11,0,187,23,217,235,206,214,6,0,188,151,219,41,164,222,5,0,191,151,112,231,194,228,7,0,191,151,208,242,150,45,9,0,191,151,208,242,18,46,9,0,193,151,130,37,57,103,7,0,194,151,37,189,243,143,10,0,194,151,121,233,106,231,10,0,195,23,32,101,220,127,11,0,196,23,49,245,129,15,6,0,196,151,193,80,134,19,7,0,197,23,246,31,134,19,7,0,197,23,175,129,22,136,8,0,198,23,40,113,134,19,7,0,198,23,160,135,135,2,9,0,198,23,160,135,47,3,9,0,200,23,170,133,208,25,11,0,206,23,175,182,29,120,7,0,207,23,185,223,163,88,10,0,207,23,185,223,83,89,10,0,208,23,8,89,4,52,10,0,210,151,234,144,27,93,6,0,210,23,237,143,83,126,8,0,210,151,29,252,4,52,10,0,212,23,233,20,60,152,7,0,212,23,233,20,226,164,7,0,216,151,41,38,175,62,8,0,221,23,132,70,29,120,7,0,222,23,102,172,60,151,10,0,227,151,223,44,39,47,9,0,227,151,223,44,54,48,9,0,228,151,26,33,21,138,7,0,229,151,24,165,120,111,6,0,230,23,57,7,241,190,7,0,235,151,8,146,155,102,6,0,235,151,243,126,194,138,7,0,235,23,205,239,125,18,9,0,235,23,205,239,34,19,9,0,239,23,56,78,8,107,6,0,239,23,12,25,241,190,7,0,242,23,46,119,202,84,6,0,242,151,143,124,55,108,7,0,248,23,12,106,104,67,7,0,250,151,208,216,65,76,7,0,253,151,220,18,4,52,10,0,253,23,80,35,217,88,11,0,254,151,186,148,156,20,6,0,254,151,186,148,23,27,7,0,254,151,186,148,194,138,7,0,254,23,180,54,193,100,10,0,254,23,180,54,89,103,10,0,255,23,73,136,186,53,9,0,255,23,73,136,77,54,9,0,0,24,77,117,142,139,10,0,1,152,140,128,194,243,7,0,2,152,140,213,60,152,7,0,2,152,140,213,190,122,8,0,2,152,140,213,83,123,8,0,2,152,140,213,244,123,8,0,2,152,140,213,210,33,10,0,3,24,111,201,132,21,9,0,3,24,111,201,157,23,9,0,4,152,171,226,160,198,6,0,4,152,171,226,211,208,6,0,4,152,171,226,134,19,7,0,4,152,171,226,80,53,8,0,5,24,9,166,209,84,7,0,6,152,164,34,93,46,7,0,8,152,14,57,101,64,7,0,8,152,201,99,29,120,7,0,9,24,248,96,209,84,7,0,9,24,248,96,60,152,7,0,9,24,248,96,226,164,7,0,9,152,181,123,192,150,8,0,11,24,164,160,246,99,6,0,12,24,157,211,16,183,8,0,12,24,157,211,251,191,8,0,12,24,157,211,239,200,8,0,14,24,246,112,4,52,10,0,15,24,172,122,16,183,8,0,15,24,172,122,251,191,8,0,15,24,172,122,239,200,8,0,17,152,129,229,134,19,7,0,17,24,78,85,213,84,8,0,20,24,9,38,251,137,10,0,21,24,93,42,150,133,10,0,21,152,24,105,89,136,11,0,22,152,219,227,204,181,9,0,22,152,219,227,224,182,9,0,22,152,128,247,191,153,11,0,25,152,35,2,4,119,6,0,25,24,112,167,60,121,11,0,29,152,47,7,176,68,7,0,29,24,86,47,145,114,7,0,35,152,104,58,166,129,10,0,36,24,48,175,29,120,7,0,37,152,106,152,194,138,7,0,41,152,212,247,75,112,7,0,41,152,159,138,16,183,8,0,41,152,159,138,251,191,8,0,41,152,159,138,239,200,8,0,42,152,118,128,90,14,7,0,42,152,118,128,252,242,8,0,42,152,118,128,240,243,8,0,42,152,206,200,32,20,9,0,42,152,206,200,179,20,9,0,43,24,14,129,10,17,6,0,43,152,213,109,170,91,7,0,45,24,52,52,21,71,9,0,45,24,52,52,100,72,9,0,45,24,52,52,181,73,9,0,45,24,52,52,11,75,9,0,47,152,179,73,29,120,7,0,47,24,40,52,55,128,11,0,51,152,36,226,12,99,7,0,52,152,142,15,32,107,7,0,52,152,142,15,130,107,7,0,53,24,220,138,8,245,6,0,55,152,210,9,141,252,6,0,56,24,78,243,223,150,6,0,58,24,198,255,23,27,7,0,59,152,86,129,194,138,7,0,60,152,200,29,112,61,6,0,60,152,227,65,29,120,7,0,60,152,76,165,221,98,9,0,60,152,76,165,47,99,9,0,60,24,112,167,125,67,10,0,60,24,112,167,69,68,10,0,61,24,245,199,132,52,6,0,62,24,245,165,64,71,6,0,65,24,50,222,252,205,7,0,65,152,231,242,4,52,10,0,66,24,199,228,12,99,7,0,67,152,175,240,168,152,9,0,68,24,229,140,16,183,8,0,68,24,229,140,251,191,8,0,68,24,229,140,239,200,8,0,69,152,69,195,0,55,7,0,69,152,197,165,82,20,8,0,69,152,66,43,102,214,8,0,69,152,66,43,14,218,8,0,69,24,99,139,170,238,10,0,70,24,74,208,193,100,10,0,70,24,74,208,89,103,10,0,72,152,50,244,219,238,8,0,72,152,50,244,39,240,8,0,72,152,50,244,117,241,8,0,78,24,128,236,209,84,7,0,78,152,135,78,219,46,10,0,83,24,192,148,148,213,8,0,83,24,192,148,183,213,8,0,84,152,222,233,79,148,10,0,86,24,202,208,16,183,8,0,86,24,202,208,251,191,8,0,86,24,202,208,239,200,8,0,87,24,230,31,92,9,8,0,87,24,76,136,234,128,10,0,90,152,210,157,255,104,11,0,95,24,114,27,185,124,8,0,96,152,101,116,145,114,7,0,97,152,25,156,252,242,8,0,97,152,25,156,240,243,8,0,100,152,236,223,16,183,8,0,100,152,236,223,251,191,8,0,100,152,236,223,239,200,8,0,100,152,253,3,45,226,8,0,100,152,253,3,130,231,8,0,103,24,185,146,25,224,5,0,104,24,252,6,218,93,7,0,105,24,73,9,230,165,6,0,108,152,241,75,101,64,7,0,109,152,113,0,11,244,5,0,110,152,28,45,50,110,8,0,110,152,28,45,112,110,8,0,110,152,28,45,173,110,8,0,112,152,135,240,186,26,9,0,112,152,135,240,120,27,9,0,112,152,135,240,48,28,9,0,112,152,56,75,188,90,11,0,113,152,201,148,119,96,7,0,113,152,234,19,60,117,10,0,113,152,234,19,101,117,10,0,113,152,164,209,226,31,11,0,113,152,164,209,245,31,11,0,115,152,19,5,194,138,7,0,116,24,44,161,218,93,7,0,118,152,98,254,29,120,7,0,118,152,10,157,107,226,9,0,118,152,10,157,251,226,9,0,123,152,11,195,72,27,10,0,123,152,11,195,193,100,10,0,123,152,11,195,89,103,10,0,123,152,148,202,23,71,11,0,124,24,152,215,194,138,7,0,124,24,245,14,16,183,8,0,124,24,245,14,251,191,8,0,124,24,245,14,239,200,8,0,125,24,123,152,35,9,6,0,127,152,48,120,98,4,6,0,128,152,105,43,101,64,7,0,129,152,232,89,253,49,7,0,132,152,3,221,84,0,7,0,134,152,89,154,228,236,6,0,134,152,233,163,135,149,7,0,134,152,89,154,73,214,7,0,134,152,233,163,214,99,10,0,134,152,233,163,22,100,10,0,134,152,233,163,82,100,10,0,138,24,139,5,147,110,7,0,138,24,254,225,252,242,8,0,138,24,254,225,240,243,8,0,140,152,105,123,24,144,6,0,141,24,134,148,150,245,6,0,141,152,89,186,92,9,8,0,143,24,168,100,34,89,6,0,144,24,238,216,206,238,6,0,149,24,219,130,252,169,7,0,149,152,231,242,180,187,7,0,152,24,94,141,63,79,10,0,152,24,94,141,138,79,10,0,152,24,94,141,214,79,10,0,153,152,101,144,240,8,7,0,153,152,55,217,198,18,11,0,156,24,25,109,29,120,7,0,161,24,177,9,102,15,7,0,161,24,233,90,75,112,7,0,162,152,101,180,26,7,7,0,164,152,93,136,23,27,7,0,166,24,236,3,20,8,9,0,166,24,236,3,247,8,9,0,166,24,236,3,210,9,9,0,168,24,154,143,161,110,10,0,168,24,154,143,2,112,10,0,170,24,4,242,132,185,10,0,173,24,91,172,176,68,7,0,175,152,136,139,252,242,8,0,175,152,136,139,240,243,8,0,179,152,251,183,191,182,6,0,183,24,164,160,24,219,5,0,184,152,41,95,163,57,7,0,184,24,202,0,12,99,7,0,184,24,113,202,219,30,11,0,185,152,232,113,66,3,7,0,185,24,187,23,4,52,10,0,186,24,164,160,216,135,6,0,188,24,164,160,11,11,6,0,194,152,239,241,4,52,10,0,197,24,242,4,0,55,7,0,197,24,242,4,163,57,7,0,199,152,53,33,102,214,8,0,199,152,53,33,14,218,8,0,200,152,243,109,151,97,10,0,200,152,243,109,176,97,10,0,200,152,243,109,230,97,10,0,201,152,50,175,23,27,7,0,206,24,38,129,51,65,11,0,207,152,83,73,116,72,7,0,210,152,242,126,16,219,6,0,212,24,125,19,124,223,5,0,212,152,252,236,45,226,8,0,212,152,252,236,130,231,8,0,213,152,251,198,16,183,8,0,213,152,251,198,251,191,8,0,213,152,251,198,239,200,8,0,214,152,70,194,85,98,6,0,215,152,120,127,23,27,7,0,216,152,11,27,253,43,6,0,217,24,22,229,177,105,7,0,218,152,162,84,126,63,9,0,218,152,162,84,156,63,9,0,219,24,207,88,198,146,9,0,219,24,207,88,20,147,9,0,222,152,42,185,96,70,11,0,223,152,249,126,131,110,6,0,223,152,38,46,111,81,9,0,223,152,38,46,4,82,9,0,223,152,154,98,4,52,10,0,225,152,137,47,35,133,10,0,232,24,194,240,138,171,7,0,235,152,25,204,2,237,6,0,235,24,121,8,243,85,7,0,235,24,188,148,85,174,7,0,235,24,188,148,202,174,7,0,235,152,177,186,244,46,11,0,236,24,210,27,50,164,11,0,238,24,16,135,218,93,7,0,238,152,62,69,235,168,10,0,239,152,223,227,147,35,7,0,239,24,44,255,43,188,7,0,240,24,38,255,16,183,8,0,240,24,38,255,251,191,8,0,240,24,38,255,239,200,8,0,244,152,68,21,15,92,9,0,244,152,68,21,90,92,9,0,244,152,68,21,162,92,9,0,244,152,160,127,232,222,10,0,245,152,28,222,23,27,7,0,248,24,101,174,213,15,9,0,251,24,63,98,168,152,9,0,252,152,149,237,129,32,11,0,255,152,144,105,253,15,6,0,255,152,165,141,12,255,7,0,0,153,148,128,247,172,6,0,1,25,33,118,60,152,7,0,1,25,33,118,197,22,8,0,2,153,188,15,28,239,7,0,3,25,132,142,152,6,11,0,5,25,96,2,111,4,9,0,5,25,96,2,41,6,9,0,7,153,128,194,101,179,6,0,9,153,144,238,218,93,7,0,12,25,119,26,192,85,11,0,20,25,104,128,5,58,6,0,20,153,163,186,53,47,8,0,20,25,202,110,18,5,11,0,20,25,202,110,86,6,11,0,21,25,67,190,29,120,7,0,21,25,59,103,252,242,8,0,21,25,59,103,240,243,8,0,24,25,157,38,145,114,7,0,25,153,244,192,253,38,9,0,25,153,244,192,207,40,9,0,30,25,83,119,212,178,7,0,31,153,188,87,84,174,11,0,33,153,126,141,239,240,5,0,33,153,220,168,176,68,7,0,33,25,163,60,43,188,7,0,34,25,122,252,60,152,7,0,34,25,122,252,79,237,8,0,35,153,170,31,160,0,7,0,35,25,199,210,4,207,10,0,36,25,153,7,252,242,8,0,36,25,153,7,240,243,8,0,38,25,123,180,85,174,7,0,38,25,123,180,202,174,7,0,44,25,209,238,116,72,7,0,44,25,245,158,153,113,10,0,44,25,245,158,27,114,10,0,45,25,117,21,143,240,6,0,47,153,89,170,47,98,9,0,50,25,109,195,148,244,6,0,51,153,20,207,109,241,5,0,51,153,239,16,145,114,7,0,52,25,248,4,134,19,7,0,53,25,170,254,100,169,8,0,54,153,103,209,139,254,6,0,55,25,157,38,95,251,5,0,55,25,157,38,49,252,5,0,55,25,157,38,182,35,6,0,55,25,157,38,70,38,6,0,55,25,157,38,249,70,6,0,55,25,157,38,219,161,6,0,55,153,5,121,164,185,6,0,55,25,157,38,127,186,6,0,55,25,157,38,243,194,6,0,55,25,157,38,117,51,7,0,55,25,157,38,111,53,7,0,55,25,157,38,85,174,7,0,55,25,157,38,202,174,7,0,56,25,207,144,213,252,5,0,57,153,237,199,134,19,7,0,57,153,91,165,183,82,7,0,57,153,71,189,16,183,8,0,57,153,71,189,251,191,8,0,57,153,71,189,239,200,8,0,58,153,7,22,161,159,9,0,58,153,7,22,185,159,9,0,59,25,178,21,135,149,7,0,59,153,23,77,23,26,8,0,59,25,178,21,79,230,9,0,59,25,178,21,94,230,9,0,60,25,1,81,58,75,7,0,63,25,45,101,54,230,10,0,65,25,255,160,227,109,11,0,66,153,189,237,163,57,7,0,67,153,52,70,176,68,7,0,67,153,255,29,246,243,9,0,67,153,255,29,59,245,9,0,67,153,255,29,131,246,9,0,68,25,202,72,253,49,7,0,68,153,230,222,175,29,9,0,68,153,230,222,88,30,9,0,69,25,159,179,23,27,7,0,73,153,112,236,143,167,10,0,75,153,166,164,215,39,6,0,75,153,145,178,116,70,6,0,75,153,145,178,243,112,7,0,75,153,174,183,132,21,9,0,75,153,174,183,157,23,9,0,79,25,41,65,13,8,7,0,80,153,213,77,207,48,7,0,80,153,132,150,216,51,9,0,80,153,132,150,175,52,9,0,80,153,213,77,21,71,9,0,80,153,213,77,100,72,9,0,80,153,213,77,181,73,9,0,80,153,213,77,11,75,9,0,81,25,91,124,107,10,7,0,81,25,91,124,101,105,11,0,82,25,148,149,93,181,8,0,84,25,188,148,30,137,6,0,84,25,188,148,117,51,7,0,84,25,188,148,111,53,7,0,84,153,231,242,172,130,10,0,91,25,209,177,104,67,7,0,91,25,106,102,235,136,8,0,92,25,127,94,142,226,5,0,94,25,236,141,75,112,7,0,96,153,87,29,168,152,9,0,97,25,71,252,58,35,9,0,97,25,71,252,31,36,9,0,99,25,178,42,185,185,6,0,100,25,142,247,16,183,8,0,100,25,142,247,251,191,8,0,100,25,142,247,239,200,8,0,101,153,71,79,100,92,7,0,101,153,80,49,12,99,7,0,103,25,131,164,205,132,8,0,105,25,82,51,78,9,7,0,105,153,7,198,252,169,7,0,106,25,35,167,156,253,6,0,109,25,229,212,68,1,7,0,110,25,47,236,201,8,10,0,112,153,150,95,24,242,6,0,113,153,5,213,40,108,6,0,113,25,25,56,203,129,6,0,113,25,219,198,44,161,10,0,114,25,190,7,64,70,7,0,114,153,200,44,132,21,9,0,114,153,200,44,157,23,9,0,116,25,187,202,70,45,11,0,118,25,9,162,170,91,7,0,118,25,22,126,110,174,11,0,119,25,5,77,16,183,8,0,119,25,5,77,251,191,8,0,119,25,5,77,239,200,8,0,119,153,73,31,125,67,10,0,119,153,73,31,69,68,10,0,123,153,190,209,216,51,9,0,123,153,190,209,175,52,9,0,125,25,245,249,31,84,11,0,126,25,18,205,97,103,7,0,127,25,195,29,15,5,7,0,127,153,169,133,197,66,8,0,127,153,121,167,125,67,10,0,127,153,121,167,69,68,10,0,127,25,98,218,78,161,11,0,133,25,143,118,189,237,6,0,133,153,5,187,119,96,7,0,135,153,225,128,167,113,9,0,135,153,225,128,7,114,9,0,135,153,225,128,108,114,9,0,135,153,225,128,202,114,9,0,135,153,225,128,49,115,9,0,135,25,60,171,4,52,10,0,136,25,156,23,115,227,5,0,137,153,255,1,142,9,7,0,141,25,213,176,193,100,10,0,141,25,213,176,89,103,10,0,142,25,143,222,4,52,10,0,143,153,151,99,47,43,7,0,143,153,182,93,132,21,9,0,143,153,182,93,157,23,9,0,144,25,246,229,111,81,9,0,144,25,246,229,4,82,9,0,145,153,162,248,194,138,7,0,145,25,24,54,74,239,9,0,146,153,118,24,213,15,9,0,152,153,180,148,214,90,6,0,152,153,200,129,196,70,11,0,153,25,101,72,232,25,11,0,155,25,109,124,233,16,7,0,158,153,29,153,16,223,5,0,158,25,134,9,21,71,9,0,158,25,134,9,100,72,9,0,158,25,134,9,181,73,9,0,158,25,134,9,11,75,9,0,161,153,14,60,88,230,5,0,161,153,14,60,104,40,6,0,161,153,75,42,213,71,6,0,163,25,153,23,4,52,10,0,163,25,231,242,171,149,10,0,165,153,56,66,132,248,5,0,169,153,120,242,235,144,10,0,170,25,76,80,136,123,11,0,171,25,212,1,129,211,7,0,171,25,212,1,165,211,7,0,172,25,67,129,103,83,6,0,173,25,234,231,209,84,7,0,174,153,131,155,168,17,6,0,174,25,77,185,177,105,7,0,179,25,20,77,110,140,6,0,180,153,28,121,202,103,6,0,180,153,28,121,4,52,10,0,181,153,113,27,238,245,7,0,182,153,156,186,23,27,7,0,190,25,30,180,113,141,6,0,190,153,242,212,72,102,9,0,190,153,242,212,254,102,9,0,191,153,176,42,68,151,6,0,196,153,244,116,12,99,7,0,198,25,57,79,219,238,8,0,198,25,57,79,39,240,8,0,198,25,57,79,117,241,8,0,199,25,196,148,226,83,8,0,203,25,109,195,12,99,7,0,207,153,137,179,207,48,7,0,207,153,96,77,145,114,7,0,207,153,137,179,21,71,9,0,207,153,137,179,100,72,9,0,207,153,137,179,181,73,9,0,207,153,137,179,11,75,9,0,209,153,244,75,11,14,7,0,209,153,148,148,102,214,8,0,209,153,148,148,14,218,8,0,212,153,46,59,178,178,6,0,214,153,86,246,29,120,7,0,219,25,178,79,224,58,11,0,221,25,186,148,102,112,8,0,222,25,12,77,23,27,7,0,222,153,125,241,212,178,7,0,224,25,233,130,134,19,7,0,225,25,155,189,45,226,8,0,225,25,155,189,130,231,8,0,225,25,73,167,27,29,9,0,225,25,73,167,68,29,9,0,225,25,215,5,216,140,9,0,225,25,215,5,69,141,9,0,226,25,32,8,135,44,7,0,229,25,240,109,207,234,7,0,231,153,241,226,174,24,8,0,232,25,252,102,161,110,10,0,232,25,252,102,2,112,10,0,234,153,108,234,12,99,7,0,238,25,131,182,177,105,7,0,240,25,56,51,23,27,7,0,241,153,195,147,117,251,6,0,241,153,77,130,161,77,7,0,241,153,120,248,47,98,9,0,248,153,30,124,102,214,8,0,248,153,30,124,14,218,8,0,251,25,247,34,135,44,7,0,254,153,62,71,55,250,10,0,255,153,9,157,135,2,9,0,255,153,9,157,47,3,9,0,0,154,94,112,211,215,10,0,1,26,111,87,209,84,7,0,3,154,58,189,152,252,8,0,3,154,120,212,4,52,10,0,5,154,61,57,103,178,6,0,5,154,182,116,102,214,8,0,5,154,182,116,14,218,8,0,7,154,212,78,29,120,7,0,10,26,83,197,135,170,6,0,13,154,35,44,111,81,9,0,13,154,35,44,4,82,9,0,14,154,219,178,29,120,7,0,15,26,201,63,119,5,11,0,18,26,124,154,252,242,8,0,18,26,124,154,240,243,8,0,20,154,158,29,198,4,8,0,22,154,191,149,39,166,10,0,27,154,202,45,81,179,8,0,27,26,226,36,167,31,11,0,29,154,71,203,145,12,8,0,29,26,116,238,14,137,9,0,29,26,116,238,201,137,9,0,29,154,224,105,74,239,9,0,32,26,191,111,103,157,8,0,33,26,115,149,32,66,7,0,33,154,90,71,16,183,8,0,33,154,90,71,251,191,8,0,33,154,90,71,239,200,8,0,38,26,233,211,122,53,6,0,40,26,28,119,9,240,10,0,41,154,136,150,120,16,11,0,41,154,136,150,55,17,11,0,44,154,189,173,60,152,7,0,47,154,180,227,147,110,7,0,48,154,27,102,29,14,6,0,48,26,42,230,233,202,6,0,48,26,42,230,170,207,6,0,48,154,27,102,73,130,7,0,50,154,102,79,191,86,7,0,51,26,86,103,192,72,6,0,53,154,126,242,206,214,6,0,53,154,23,191,72,102,9,0,53,154,23,191,254,102,9,0,56,26,209,93,45,226,8,0,56,26,209,93,130,231,8,0,58,154,0,238,135,2,9,0,58,154,0,238,47,3,9,0,59,26,203,182,102,214,8,0,59,26,203,182,14,218,8,0,59,26,73,111,60,234,10,0,61,154,88,13,161,77,7,0,63,154,158,12,55,108,7,0,64,26,87,214,55,108,7,0,65,154,129,143,238,81,10,0,66,154,248,205,4,52,10,0,68,26,41,223,112,17,8,0,68,154,221,221,85,66,9,0,68,154,221,221,117,66,9,0,68,154,221,221,153,66,9,0,68,154,80,150,104,222,10,0,69,154,243,218,136,1,7,0,69,154,243,218,10,2,7,0,75,26,144,199,45,226,8,0,75,26,144,199,130,231,8,0,77,154,85,157,20,30,10,0,77,154,85,157,115,30,10,0,77,154,85,157,207,30,10,0,79,26,243,150,219,238,8,0,79,26,243,150,39,240,8,0,79,26,243,150,117,241,8,0,79,26,128,189,81,126,9,0,79,26,128,189,166,126,9,0,79,26,128,189,53,127,9,0,82,26,143,112,175,173,7,0,83,154,10,114,4,52,10,0,83,154,88,246,55,95,10,0,83,154,88,246,143,95,10,0,85,26,120,198,29,120,7,0,86,154,127,140,45,226,8,0,86,154,127,140,130,231,8,0,90,154,149,101,194,138,7,0,91,154,184,92,60,152,7,0,91,154,184,92,14,163,7,0,93,154,195,148,4,37,6,0,93,154,195,148,51,38,6,0,93,154,195,148,10,39,6,0,93,154,195,148,39,139,8,0,93,154,195,148,94,139,8,0,93,154,195,148,253,156,8,0,97,26,204,44,117,51,7,0,97,26,204,44,111,53,7,0,97,26,73,134,16,183,8,0,97,26,73,134,251,191,8,0,97,26,73,134,239,200,8,0,99,26,220,142,66,3,7,0,99,154,23,129,203,74,7,0,100,26,1,152,29,14,6,0,100,26,1,152,73,130,7,0,101,26,170,90,20,104,6,0,101,154,71,200,44,206,6,0,103,26,42,130,127,224,5,0,104,154,114,84,64,70,7,0,106,26,156,135,145,114,7,0,110,26,157,38,115,67,6,0,110,26,126,231,65,41,7,0,110,26,157,38,252,169,7,0,114,26,0,184,221,8,6,0,114,154,74,229,29,14,6,0,114,154,74,229,73,130,7,0,115,26,99,244,134,19,7,0,115,154,10,192,98,56,11,0,119,154,94,58,13,99,11,0,122,26,151,131,119,96,7,0,122,26,234,219,60,152,7,0,122,26,234,219,190,122,8,0,122,26,234,219,83,123,8,0,122,26,234,219,244,123,8,0,122,26,234,219,210,33,10,0,123,26,16,100,29,14,6,0,123,26,16,100,73,130,7,0,124,26,237,215,16,183,8,0,124,26,237,215,251,191,8,0,124,26,237,215,239,200,8,0,124,154,86,124,216,51,9,0,124,154,86,124,175,52,9,0,129,26,89,115,8,187,6,0,135,26,201,214,205,87,7,0,136,154,7,111,120,63,7,0,136,26,224,30,119,96,7,0,138,154,199,107,145,114,7,0,140,26,37,172,90,14,7,0,143,154,201,233,43,188,7,0,143,154,244,51,71,255,10,0,144,26,82,237,75,241,6,0,144,154,9,46,189,249,10,0,144,26,79,65,109,147,11,0,145,154,216,47,135,44,7,0,145,26,157,38,146,183,7,0,145,154,149,48,192,67,8,0,145,154,149,48,105,115,11,0,151,154,145,228,194,138,7,0,151,26,185,185,66,66,11,0,154,154,60,11,8,112,7,0,155,26,115,162,163,66,7,0,159,154,39,34,145,114,7,0,160,154,113,173,23,27,7,0,162,26,236,234,142,34,6,0,162,26,31,128,186,4,11,0,163,26,2,102,203,74,7,0,165,154,175,39,216,176,10,0,165,154,175,39,248,176,10,0,168,154,233,10,119,96,7,0,168,26,34,174,194,138,7,0,168,154,28,145,51,193,10,0,171,26,53,58,194,138,7,0,171,154,83,176,208,107,11,0,173,26,32,211,60,152,7,0,173,26,32,211,190,122,8,0,173,26,32,211,83,123,8,0,173,26,32,211,244,123,8,0,173,26,32,211,210,33,10,0,174,26,246,97,163,57,7,0,175,154,44,92,38,248,5,0,175,154,110,251,73,38,7,0,179,154,180,239,77,135,10,0,181,154,126,33,18,210,8,0,181,154,126,33,113,210,8,0,181,154,126,33,217,210,8,0,182,26,186,148,58,75,7,0,183,26,253,47,161,140,11,0,183,26,253,47,185,140,11,0,187,154,76,4,160,79,8,0,191,26,215,221,139,163,9,0,191,26,215,221,241,163,9,0,192,26,94,19,122,87,9,0,192,26,94,19,212,87,9,0,192,26,94,19,40,88,9,0,192,26,126,146,167,242,9,0,193,154,106,231,247,247,6,0,193,154,96,155,23,27,7,0,197,26,249,213,161,207,10,0,200,26,157,38,21,164,6,0,201,26,168,18,134,19,7,0,202,154,130,215,154,115,6,0,203,26,119,153,4,52,10,0,207,26,43,19,12,99,7,0,208,26,5,86,55,108,7,0,210,26,162,88,160,247,10,0,211,26,109,132,12,99,7,0,212,26,70,184,190,162,10,0,215,154,7,164,194,138,7,0,215,154,7,164,151,192,10,0,215,154,7,164,212,196,10,0,218,26,140,244,240,66,9,0,218,26,140,244,119,67,9,0,220,154,185,130,65,41,7,0,221,26,233,28,113,0,9,0,221,26,233,28,160,0,9,0,223,26,160,10,91,103,11,0,225,154,232,107,29,81,7,0,225,154,61,121,60,152,7,0,225,154,61,121,50,90,8,0,225,154,61,121,97,90,8,0,225,154,61,121,143,90,8,0,225,154,61,121,190,90,8,0,228,26,113,85,134,19,7,0,229,26,180,177,25,134,9,0,229,26,180,177,147,134,9,0,229,26,180,177,7,135,9,0,229,26,180,177,174,135,9,0,229,26,180,177,71,136,9,0,235,26,142,209,139,14,10,0,235,26,142,209,50,15,10,0,235,26,74,17,238,81,10,0,242,154,9,77,130,156,6,0,245,26,46,127,47,181,7,0,245,26,46,127,115,182,7,0,245,154,36,230,92,28,8,0,245,26,111,172,141,180,9,0,245,26,111,172,190,180,9,0,245,26,111,172,3,181,9,0,246,154,86,74,15,109,6,0,249,154,236,126,121,160,6,0,250,154,179,123,127,142,6,0,250,154,149,125,246,62,7,0,253,154,41,102,255,151,6,0,1,27,101,72,23,27,7,0,2,27,141,209,73,82,7,0,2,27,143,254,95,235,10,0,2,27,143,254,182,241,10,0,4,155,34,247,85,207,6,0,4,155,46,153,205,87,7,0,4,27,140,200,255,70,10,0,4,27,140,200,87,71,10,0,4,27,140,200,174,71,10,0,4,155,172,185,126,181,11,0,6,155,169,177,91,84,10,0,8,27,229,109,135,43,7,0,11,27,45,14,4,52,10,0,11,155,167,130,178,197,10,0,11,155,167,130,202,197,10,0,16,27,107,212,51,104,7,0,19,155,255,63,19,59,11,0,23,155,140,235,65,19,6,0,24,155,199,214,20,30,10,0,24,155,199,214,115,30,10,0,24,155,199,214,207,30,10,0,25,155,169,201,22,63,11,0,28,155,172,7,168,14,8,0,29,155,205,161,145,114,7,0,29,155,209,69,4,52,10,0,30,155,251,2,104,226,7,0,31,27,210,193,143,17,6,0,31,155,108,109,225,107,7,0,31,27,81,68,167,86,11,0,33,155,233,34,135,44,7,0,34,27,15,27,187,0,7,0,35,27,18,20,66,3,7,0,36,27,57,231,108,25,6,0,36,155,169,139,9,238,8,0,36,155,169,139,94,238,8,0,36,27,57,231,239,253,8,0,38,27,97,16,23,27,7,0,38,155,26,235,145,114,7,0,41,27,86,45,168,147,10,0,42,155,231,242,125,67,10,0,42,155,231,242,69,68,10,0,44,155,44,110,166,248,6,0,46,27,22,176,55,95,10,0,46,27,22,176,143,95,10,0,48,27,189,232,219,46,10,0,49,27,139,231,124,22,10,0,49,27,139,231,179,22,10,0,49,27,139,231,235,22,10,0,52,27,110,137,39,35,7,0,52,27,178,160,174,220,10,0,52,27,178,160,228,220,10,0,54,155,189,115,226,64,9,0,54,155,189,115,8,65,9,0,54,155,189,115,40,65,9,0,54,155,99,222,66,66,11,0,55,155,227,253,40,187,6,0,56,27,207,16,12,99,7,0,57,27,41,156,246,243,9,0,57,27,41,156,59,245,9,0,57,27,41,156,131,246,9,0,57,155,215,54,85,172,10,0,58,155,70,132,29,120,7,0,59,27,104,13,201,240,5,0,60,27,117,82,56,238,7,0,62,155,87,58,106,146,10,0,64,27,43,71,74,240,6,0,64,27,43,71,95,60,9,0,64,27,43,71,133,60,9,0,66,155,161,148,107,167,9,0,66,155,161,148,129,167,9,0,66,155,196,73,3,191,9,0,66,155,196,73,78,191,9,0,70,155,140,186,193,100,10,0,70,155,140,186,89,103,10,0,71,155,191,14,134,19,7,0,73,155,201,202,9,84,9,0,73,155,201,202,62,84,9,0,73,155,201,202,59,168,10,0,76,155,137,150,241,17,7,0,77,155,83,243,19,90,7,0,80,27,45,224,59,89,6,0,81,155,205,88,196,55,11,0,82,27,231,94,146,76,9,0,82,27,231,94,63,77,9,0,84,155,87,92,122,87,9,0,84,155,87,92,212,87,9,0,84,155,87,92,40,88,9,0,86,27,216,178,42,7,6,0,87,155,32,158,205,243,5,0,87,27,225,137,29,120,7,0,91,27,35,222,23,27,7,0,92,27,240,209,253,49,7,0,92,155,186,148,152,63,7,0,92,27,92,94,16,183,8,0,92,27,92,94,251,191,8,0,92,27,92,94,239,200,8,0,94,27,251,241,4,52,10,0,97,155,135,0,16,183,8,0,97,155,135,0,251,191,8,0,97,155,135,0,239,200,8,0,102,155,118,240,218,93,7,0,102,27,247,227,252,169,7,0,102,27,93,85,55,128,11,0,103,27,91,22,145,114,7,0,105,155,13,19,38,92,7,0,106,155,150,15,255,162,8,0,107,27,86,96,51,17,6,0,107,155,214,242,253,38,9,0,107,155,214,242,207,40,9,0,110,155,100,183,107,10,7,0,110,155,74,220,194,138,7,0,111,155,50,127,193,100,10,0,111,155,50,127,89,103,10,0,112,155,100,43,135,61,7,0,114,27,132,93,62,250,5,0,114,27,132,93,104,67,7,0,114,155,29,65,51,104,7,0,114,27,203,239,204,50,9,0,114,27,203,239,17,51,9,0,114,27,203,239,93,51,9,0,114,155,108,149,190,61,10,0,114,155,108,149,213,61,10,0,114,155,108,149,254,61,10,0,115,155,84,144,139,254,6,0,115,155,233,20,136,198,7,0,115,155,233,20,130,116,11,0,117,27,175,182,134,19,7,0,118,155,163,160,197,43,6,0,118,155,189,126,23,27,7,0,118,155,10,126,66,133,8,0,119,155,129,19,227,209,10,0,120,155,111,199,145,114,7,0,124,27,73,100,169,91,11,0,126,27,63,153,187,242,5,0,126,27,59,137,248,47,6,0,128,155,52,94,242,106,11,0,134,27,37,105,38,117,8,0,136,155,60,166,194,177,9,0,140,27,59,46,237,131,10,0,142,155,233,32,0,38,6,0,143,27,46,210,164,16,9,0,143,27,46,210,141,17,9,0,146,155,103,250,29,120,7,0,149,27,75,86,12,99,7,0,154,27,150,107,62,223,9,0,154,27,150,107,64,224,9,0,154,27,150,107,93,225,9,0,154,27,236,171,15,220,10,0,156,27,228,137,42,241,5,0,156,27,81,60,16,188,6,0,158,27,195,5,204,181,9,0,158,27,195,5,224,182,9,0,158,27,124,80,84,68,11,0,159,155,110,14,47,43,7,0,160,27,183,203,233,83,7,0,161,155,197,153,4,52,10,0,162,27,180,138,23,27,7,0,166,155,63,100,121,108,6,0,166,27,153,134,125,67,10,0,166,27,153,134,69,68,10,0,168,155,216,203,19,113,7,0,168,155,216,203,104,113,7,0,169,27,137,247,23,27,7,0,169,27,30,193,194,138,7,0,169,27,30,193,5,54,11,0,169,27,30,193,113,63,11,0,170,155,159,191,105,129,9,0,170,155,159,191,180,129,9,0,170,27,3,226,161,110,10,0,170,27,3,226,2,112,10,0,176,27,165,207,212,253,5,0,179,155,103,121,134,19,7,0,179,155,210,20,60,152,7,0,179,155,210,20,128,112,8,0,182,27,47,93,163,57,7,0,182,27,47,93,205,87,7,0,184,155,16,241,160,79,8,0,184,27,143,74,115,161,9,0,184,27,143,74,104,162,9,0,185,155,111,231,138,171,7,0,186,155,178,254,116,72,7,0,186,27,126,8,16,183,8,0,186,27,126,8,251,191,8,0,186,27,126,8,239,200,8,0,192,155,92,93,11,14,7,0,193,155,175,182,161,77,7,0,193,155,36,252,115,161,9,0,193,155,36,252,104,162,9,0,194,155,20,77,85,29,10,0,198,155,213,227,191,86,7,0,198,27,238,46,145,114,7,0,200,155,119,131,75,112,7,0,201,27,178,218,4,52,10,0,202,155,175,182,89,185,7,0,211,27,216,201,34,73,6,0,211,27,182,26,16,183,8,0,211,27,182,26,251,191,8,0,211,27,182,26,239,200,8,0,212,155,199,53,180,131,10,0,213,155,72,220,173,250,8,0,213,155,72,220,205,250,8,0,217,155,49,213,73,38,7,0,219,155,85,77,16,219,6,0,222,155,216,159,53,40,10,0,222,155,216,159,80,40,10,0,223,27,62,193,45,226,8,0,223,27,62,193,130,231,8,0,225,155,154,214,143,240,6,0,225,27,163,225,29,120,7,0,225,155,156,255,75,148,7,0,225,155,156,255,105,177,7,0,226,155,119,251,201,251,6,0,230,155,151,247,4,52,10,0,231,27,212,109,45,226,8,0,231,27,212,109,130,231,8,0,234,27,214,152,62,223,9,0,234,27,214,152,64,224,9,0,234,27,214,152,93,225,9,0,235,155,210,189,39,47,9,0,235,155,210,189,54,48,9,0,239,155,185,53,221,206,6,0,239,155,247,148,111,81,9,0,239,155,247,148,4,82,9,0,239,27,232,114,25,147,10,0,240,155,243,150,147,124,8,0,242,27,221,31,55,108,7,0,243,27,219,254,100,92,7,0,246,27,137,90,145,18,7,0,248,155,166,9,194,138,7,0,252,27,17,58,85,153,6,0,255,155,32,226,59,12,7,0,255,27,174,127,117,51,7,0,255,27,174,127,111,53,7,0,255,155,228,215,62,223,9,0,255,155,228,215,64,224,9,0,255,155,228,215,93,225,9,0,0,28,139,5,135,44,7,0,1,156,162,38,135,61,7,0,1,156,254,25,155,171,10,0,2,156,233,236,226,164,7,0,2,156,233,236,197,170,7,0,3,156,157,38,134,19,7,0,6,28,85,66,56,21,11,0,8,156,159,181,23,208,6,0,8,156,159,181,58,75,7,0,9,28,241,255,157,62,9,0,9,28,241,255,177,62,9,0,11,28,13,175,4,44,7,0,11,28,36,175,21,71,9,0,11,28,36,175,100,72,9,0,11,28,36,175,181,73,9,0,11,28,36,175,11,75,9,0,12,156,126,80,152,65,7,0,15,156,231,242,187,158,10,0,16,156,120,235,48,51,6,0,16,156,132,241,67,144,10,0,19,156,132,236,217,238,9,0,19,156,132,236,174,239,9,0,20,28,169,126,16,183,8,0,20,28,169,126,251,191,8,0,20,28,169,126,239,200,8,0,21,28,195,181,246,243,9,0,21,28,195,181,59,245,9,0,21,28,195,181,131,246,9,0,22,156,251,118,23,27,7,0,22,156,13,9,12,99,7,0,23,156,14,35,71,183,10,0,24,156,232,253,4,52,10,0,25,156,217,23,73,38,7,0,26,28,4,169,69,147,6,0,26,28,184,66,77,11,7,0,26,28,40,137,174,177,7,0,26,156,166,31,132,21,9,0,26,156,166,31,157,23,9,0,26,28,86,47,60,77,10,0,26,28,86,47,232,77,10,0,27,28,168,247,51,104,7,0,30,28,116,125,97,93,6,0,31,28,12,67,165,224,8,0,31,28,12,67,86,225,8,0,34,156,250,67,51,104,7,0,34,156,16,171,222,158,11,0,39,156,56,230,167,113,9,0,39,156,56,230,7,114,9,0,39,156,56,230,108,114,9,0,39,156,56,230,202,114,9,0,39,156,56,230,49,115,9,0,41,28,56,248,60,152,7,0,41,28,56,248,226,164,7,0,42,156,230,61,64,189,6,0,44,28,75,95,120,158,6,0,44,156,255,98,213,164,6,0,44,156,200,233,123,213,7,0,44,156,200,233,166,213,7,0,46,156,200,6,16,183,8,0,46,156,200,6,251,191,8,0,46,156,200,6,239,200,8,0,47,156,186,148,157,33,8,0,48,28,157,38,58,225,5,0,48,28,157,38,12,112,6,0,48,28,157,38,173,152,6,0,48,28,157,38,117,51,7,0,48,28,157,38,111,53,7,0,48,156,83,150,29,120,7,0,48,28,157,38,44,134,7,0,49,28,245,205,23,253,6,0,50,28,94,77,107,10,7,0,51,156,218,46,99,239,6,0,54,28,223,233,43,178,6,0,54,28,223,233,74,178,6,0,57,28,79,12,0,178,11,0,57,28,79,12,85,179,11,0,60,28,129,99,194,138,7,0,60,156,85,28,24,161,10,0,62,28,232,61,134,19,7,0,64,156,124,111,241,35,8,0,64,156,124,111,18,36,8,0,64,156,124,111,51,36,8,0,66,28,76,213,111,4,9,0,66,28,76,213,41,6,9,0,69,156,10,82,100,92,7,0,70,156,221,211,161,163,6,0,70,28,28,152,176,68,7,0,71,28,12,97,134,19,7,0,73,28,69,59,43,72,10,0,73,28,69,59,148,72,10,0,74,156,150,250,23,27,7,0,76,156,218,31,102,214,8,0,76,156,218,31,14,218,8,0,77,28,128,244,111,86,8,0,78,28,56,114,163,57,7,0,78,28,56,114,151,231,7,0,81,156,57,228,246,243,9,0,81,156,57,228,59,245,9,0,81,156,57,228,131,246,9,0,84,156,129,228,20,8,9,0,84,156,129,228,247,8,9,0,84,156,129,228,210,9,9,0,89,28,133,157,145,114,7,0,90,28,193,120,19,90,7,0,90,28,193,120,254,153,11,0,91,28,108,89,90,204,6,0,93,156,94,79,100,92,7,0,93,156,94,79,45,33,9,0,93,156,94,79,120,33,9,0,93,28,43,78,253,38,9,0,93,28,43,78,207,40,9,0,94,28,67,180,161,77,7,0,95,156,185,245,131,222,8,0,95,156,185,245,38,223,8,0,95,156,185,245,206,223,8,0,95,156,237,161,41,235,9,0,95,156,237,161,74,235,9,0,98,156,237,241,66,3,7,0,98,28,229,85,4,52,10,0,99,28,149,9,182,13,7,0,99,28,125,139,81,126,9,0,99,28,125,139,166,126,9,0,99,28,125,139,53,127,9,0,102,28,196,21,73,38,7,0,103,28,121,27,57,103,7,0,105,28,99,244,242,161,11,0,105,28,99,244,128,164,11,0,108,28,27,78,117,51,7,0,108,28,27,78,111,53,7,0,108,156,139,251,29,120,7,0,109,28,175,226,21,71,9,0,109,28,175,226,100,72,9,0,109,28,175,226,181,73,9,0,109,28,175,226,11,75,9,0,110,28,63,150,155,114,6,0,112,156,217,251,37,251,5,0,112,28,214,214,127,108,9,0,112,28,214,214,141,108,9,0,113,28,172,111,73,82,7,0,115,28,65,116,12,99,7,0,116,28,159,248,99,116,10,0,116,28,159,248,113,116,10,0,116,28,159,248,127,116,10,0,117,28,217,248,126,112,6,0,117,28,211,126,29,120,7,0,118,156,219,126,115,2,7,0,120,28,231,242,115,85,9,0,120,28,231,242,150,85,9,0,120,28,231,242,187,85,9,0,121,156,135,199,111,4,9,0,121,156,135,199,41,6,9,0,122,28,113,163,220,17,11,0,124,156,198,229,247,14,8,0,126,156,115,117,11,14,7,0,130,156,97,168,7,162,6,0,130,156,122,155,84,170,11,0,131,156,70,251,221,101,6,0,133,28,89,5,4,52,10,0,133,156,228,251,89,168,10,0,134,28,87,190,92,9,8,0,134,28,199,117,86,56,9,0,134,28,199,117,9,57,9,0,136,156,125,135,16,255,5,0,136,28,80,95,203,42,6,0,136,28,174,168,16,183,8,0,136,28,174,168,251,191,8,0,136,28,174,168,239,200,8,0,139,156,1,208,55,108,7,0,140,28,5,145,115,161,9,0,140,28,5,145,104,162,9,0,141,156,169,137,169,90,6,0,142,156,182,68,217,9,7,0,142,28,54,18,184,89,7,0,142,28,54,18,19,90,7,0,142,28,18,109,149,145,11,0,147,28,14,246,45,226,8,0,147,28,14,246,130,231,8,0,147,28,215,255,238,176,11,0,152,28,86,202,91,50,10,0,152,28,86,202,118,50,10,0,154,156,99,102,16,183,8,0,154,156,99,102,251,191,8,0,154,156,99,102,239,200,8,0,155,156,141,219,95,229,5,0,155,156,25,156,228,236,6,0,155,156,25,156,73,214,7,0,157,156,74,231,135,44,7,0,157,156,148,92,168,84,10,0,157,156,148,92,226,84,10,0,161,28,21,143,16,183,8,0,161,28,21,143,251,191,8,0,161,28,21,143,239,200,8,0,165,156,237,113,12,99,7,0,166,156,153,124,203,159,6,0,166,28,159,61,20,30,10,0,166,28,159,61,115,30,10,0,166,28,159,61,207,30,10,0,169,28,58,154,86,56,9,0,169,28,58,154,9,57,9,0,171,28,30,158,196,99,8,0,171,28,30,158,126,116,8,0,173,156,21,37,92,9,8,0,174,28,178,248,10,135,6,0,175,156,91,102,107,10,7,0,176,156,161,115,226,64,9,0,176,156,161,115,8,65,9,0,176,156,161,115,40,65,9,0,177,28,168,133,194,138,7,0,178,28,38,99,4,52,10,0,179,156,194,20,38,242,5,0,179,28,118,54,209,84,7,0,181,156,171,199,58,98,6,0,182,156,73,197,24,192,7,0,183,28,252,196,4,52,10,0,189,156,238,55,22,39,11,0,190,156,89,195,66,3,7,0,190,156,170,172,135,44,7,0,190,156,208,72,119,96,7,0,191,28,72,92,146,178,7,0,191,28,210,60,102,214,8,0,191,28,210,60,14,218,8,0,195,28,45,12,175,44,6,0,200,28,65,203,205,239,6,0,200,28,222,175,73,203,10,0,202,156,220,35,28,23,8,0,205,28,25,130,60,152,7,0,205,28,25,130,190,122,8,0,205,28,25,130,83,123,8,0,205,28,25,130,244,123,8,0,205,28,25,130,210,33,10,0,206,28,222,20,39,35,7,0,206,156,174,127,183,69,11,0,208,156,36,172,29,14,6,0,208,156,36,172,73,130,7,0,209,28,49,83,206,68,9,0,209,28,49,83,252,68,9,0,209,28,172,94,49,61,11,0,211,156,239,150,110,59,6,0,211,28,19,14,6,144,11,0,216,28,208,116,235,198,6,0,219,156,219,212,100,92,7,0,219,28,196,24,153,113,10,0,219,28,196,24,27,114,10,0,220,28,146,204,161,100,9,0,220,28,146,204,184,100,9,0,223,156,43,81,80,37,11,0,223,156,103,157,57,48,11,0,225,28,73,37,134,19,7,0,225,28,78,124,16,37,7,0,225,28,42,237,251,192,7,0,225,28,73,37,161,171,8,0,225,28,73,37,211,171,8,0,226,156,60,141,23,27,7,0,226,28,227,115,145,114,7,0,227,156,81,194,134,211,8,0,227,156,81,194,165,211,8,0,227,156,81,194,205,211,8,0,228,156,96,114,148,79,6,0,229,156,128,42,72,83,6,0,229,156,128,42,117,202,7,0,229,156,128,42,191,159,8,0,229,28,209,77,60,146,11,0,232,156,251,126,119,96,7,0,238,156,179,223,194,138,7,0,240,156,70,38,226,11,7,0,240,156,121,255,134,19,7,0,240,156,226,223,228,148,10,0,241,28,111,249,253,38,9,0,241,28,111,249,207,40,9,0,242,156,204,213,191,86,7,0,243,156,15,58,206,255,5,0,245,28,100,45,216,239,10,0,246,28,83,184,209,19,10,0,247,28,46,131,59,195,6,0,249,28,58,127,85,197,6,0,249,156,248,112,8,112,7,0,250,28,173,85,136,1,7,0,250,28,173,85,10,2,7,0,250,28,173,85,207,233,7,0,250,156,201,107,250,87,10,0,251,156,162,79,45,226,8,0,251,156,162,79,130,231,8,0,252,28,49,175,206,214,6,0,253,156,109,127,16,183,8,0,253,156,109,127,251,191,8,0,253,156,109,127,239,200,8,0,255,28,76,24,164,16,9,0,255,28,76,24,141,17,9,0,1,29,76,71,148,78,9,0,1,29,76,71,182,78,9,0,5,29,125,78,109,109,6,0,5,157,21,179,135,61,7,0,5,29,77,196,130,83,7,0,6,29,162,193,55,108,7,0,7,157,157,38,45,91,6,0,7,157,157,38,53,124,6,0,7,157,157,38,73,127,6,0,7,157,157,38,96,127,6,0,7,157,157,38,140,255,7,0,7,29,56,237,80,53,8,0,11,29,118,250,113,132,9,0,11,29,118,250,167,132,9,0,11,29,118,250,233,132,9,0,13,157,77,103,233,16,7,0,14,157,205,223,183,249,6,0,14,157,97,153,43,162,8,0,16,29,86,71,198,146,9,0,16,29,86,71,20,147,9,0,18,29,174,83,194,138,7,0,18,29,174,83,202,15,8,0,20,157,176,55,134,19,7,0,21,157,7,86,12,99,7,0,21,29,114,221,75,58,9,0,21,29,114,221,123,58,9,0,25,157,5,156,16,37,7,0,25,157,22,77,145,114,7,0,26,157,123,189,194,138,7,0,29,29,27,0,23,27,7,0,29,29,27,0,134,63,11,0,33,157,165,86,81,54,6,0,33,157,165,86,206,54,6,0,33,29,184,10,207,48,7,0,33,29,53,14,205,87,7,0,33,29,184,10,249,164,10,0,33,29,74,246,86,195,10,0,36,29,71,168,67,17,7,0,39,29,169,76,102,214,8,0,39,29,169,76,14,218,8,0,40,29,244,240,78,9,7,0,40,29,244,240,140,96,11,0,41,157,178,102,85,174,7,0,41,157,178,102,202,174,7,0,48,157,217,129,60,51,10,0,48,157,217,129,121,51,10,0,49,29,93,168,69,176,6,0,51,29,147,41,16,183,8,0,51,29,147,41,251,191,8,0,51,29,147,41,239,200,8,0,52,29,168,162,111,4,9,0,52,29,168,162,41,6,9,0,57,29,125,53,199,83,7,0,58,29,233,63,134,19,7,0,62,157,138,123,244,119,6,0,63,157,216,53,60,77,10,0,63,157,216,53,232,77,10,0,64,29,161,220,60,152,7,0,64,29,161,220,226,164,7,0,64,29,89,178,9,238,8,0,64,29,89,178,94,238,8,0,65,29,227,206,101,40,8,0,68,157,227,240,253,59,10,0,68,157,227,240,144,60,10,0,68,157,227,240,39,61,10,0,71,29,136,107,204,181,9,0,71,29,136,107,224,182,9,0,71,157,4,134,55,95,10,0,71,157,4,134,143,95,10,0,71,157,143,67,85,52,11,0,76,157,213,56,201,251,6,0,76,29,227,88,145,114,7,0,77,157,166,62,219,238,8,0,77,157,166,62,219,238,8,0,77,157,166,62,39,240,8,0,77,157,166,62,39,240,8,0,77,157,166,62,117,241,8,0,77,157,166,62,117,241,8,0,79,29,17,39,5,76,7,0,81,157,13,215,193,5,6,0,81,29,177,151,106,176,11,0,83,157,144,226,58,208,10,0,85,157,92,151,147,110,7,0,86,29,158,144,92,9,8,0,87,29,149,101,168,94,11,0,88,157,37,63,47,128,6,0,88,157,37,63,176,151,8,0,89,29,36,196,160,179,10,0,91,157,143,56,135,149,7,0,91,157,143,56,214,99,10,0,91,157,143,56,22,100,10,0,91,157,143,56,82,100,10,0,92,157,65,61,193,100,10,0,92,157,65,61,89,103,10,0,95,157,205,158,176,68,7,0,96,29,149,158,0,55,7,0,96,29,149,158,163,57,7,0,97,157,86,20,122,87,9,0,97,157,86,20,212,87,9,0,97,157,86,20,40,88,9,0,97,157,226,171,161,110,10,0,97,157,226,171,2,112,10,0,98,29,76,20,203,221,9,0,98,29,76,20,230,221,9,0,99,157,106,126,108,33,11,0,100,29,132,79,16,183,8,0,100,29,132,79,251,191,8,0,100,29,132,79,239,200,8,0,103,29,38,215,107,107,6,0,106,157,172,181,252,242,8,0,106,157,172,181,240,243,8,0,108,157,34,124,45,226,8,0,108,157,34,124,130,231,8,0,108,29,196,175,119,42,11,0,110,29,11,13,134,19,7,0,111,157,110,56,62,223,9,0,111,157,110,56,64,224,9,0,111,157,110,56,93,225,9,0,112,29,194,187,160,4,6,0,112,29,5,159,99,54,6,0,113,157,18,19,44,205,6,0,113,157,18,19,249,63,8,0,115,29,150,60,205,87,7,0,116,29,243,35,134,19,7,0,117,157,36,105,143,242,5,0,119,157,76,95,92,9,8,0,122,29,17,237,207,14,9,0,122,29,17,237,54,15,9,0,130,157,17,109,111,4,9,0,130,157,17,109,41,6,9,0,131,29,198,139,219,238,8,0,131,29,198,139,39,240,8,0,131,29,198,139,117,241,8,0,132,29,176,94,18,210,8,0,132,29,176,94,113,210,8,0,132,29,176,94,217,210,8,0,133,29,146,10,134,19,7,0,135,29,192,111,193,220,7,0,137,157,124,141,116,72,7,0,142,29,211,57,104,136,6,0,142,157,129,143,152,252,8,0,146,29,48,194,186,53,9,0,146,29,48,194,77,54,9,0,147,157,184,220,14,40,6,0,147,29,212,6,239,22,8,0,147,29,193,165,165,234,10,0,147,29,193,165,216,234,10,0,148,29,61,247,205,111,11,0,151,29,112,189,78,206,6,0,152,157,54,111,100,92,7,0,159,157,177,199,253,59,10,0,159,157,177,199,144,60,10,0,159,157,177,199,39,61,10,0,160,157,170,2,167,81,7,0,162,29,235,111,250,111,6,0,162,157,92,224,207,70,7,0,162,157,139,14,4,52,10,0,164,29,187,136,36,127,10,0,164,29,187,136,60,127,10,0,164,29,187,136,91,127,10,0,165,29,198,90,180,19,6,0,167,29,10,50,119,133,10,0,168,29,121,199,66,97,6,0,168,29,121,199,97,16,7,0,168,29,123,71,134,19,7,0,168,157,141,81,22,46,10,0,168,157,141,81,98,46,10,0,170,29,132,49,45,226,8,0,170,29,132,49,130,231,8,0,171,157,174,216,100,92,7,0,172,29,204,72,107,46,6,0,174,29,108,156,65,41,7,0,176,29,5,82,117,51,7,0,176,29,5,82,111,53,7,0,176,29,151,222,246,62,7,0,179,29,42,118,113,0,9,0,179,29,42,118,160,0,9,0,180,29,107,219,58,35,9,0,180,29,107,219,31,36,9,0,184,29,211,95,104,177,9,0,184,29,211,95,124,177,9,0,185,29,47,103,162,221,7,0,185,29,47,103,206,221,7,0,185,29,47,103,0,222,7,0,185,29,170,136,29,199,10,0,187,157,18,158,157,229,5,0,188,29,14,15,21,253,10,0,190,157,197,219,167,239,6,0,191,157,228,126,4,52,10,0,192,157,244,112,98,237,6,0,193,29,115,92,204,181,9,0,193,29,115,92,224,182,9,0,195,29,85,188,224,220,6,0,197,157,120,111,210,29,6,0,197,157,35,187,167,242,9,0,200,29,170,231,176,68,7,0,201,29,164,85,217,172,11,0,202,29,91,46,218,93,7,0,206,157,84,92,217,158,10,0,209,157,248,174,60,182,8,0,209,29,129,32,4,52,10,0,214,157,3,187,73,38,7,0,214,157,135,225,60,152,7,0,214,29,178,20,168,152,9,0,215,157,98,71,29,120,7,0,216,157,127,200,123,70,11,0,218,29,213,45,12,99,7,0,220,29,190,151,83,126,8,0,221,157,217,4,23,27,7,0,225,29,229,247,16,129,10,0,226,29,87,63,97,16,7,0,227,29,64,192,146,91,9,0,227,29,64,192,189,91,9,0,228,29,215,79,23,27,7,0,231,157,94,12,38,120,6,0,238,157,129,72,168,152,9,0,240,29,73,42,239,44,6,0,244,157,93,191,92,9,8,0,250,29,117,173,253,38,9,0,250,29,117,173,207,40,9,0,251,29,68,101,219,46,10,0,251,29,216,114,136,41,11,0,254,157,199,200,165,56,6,0,254,157,199,200,184,56,6,0,0,30,139,162,167,21,11,0,4,30,120,134,122,87,9,0,4,30,120,134,212,87,9,0,4,30,120,134,40,88,9,0,5,30,113,15,106,1,6,0,6,158,159,4,240,70,8,0,6,158,162,191,167,242,9,0,7,158,203,171,159,32,10,0,7,158,203,171,240,32,10,0,8,158,212,51,219,46,10,0,10,30,157,38,79,235,5,0,10,30,157,38,32,121,6,0,15,30,85,114,135,61,7,0,17,158,40,94,210,98,11,0,18,30,226,126,16,183,8,0,18,30,226,126,251,191,8,0,18,30,226,126,239,200,8,0,18,158,18,43,207,144,10,0,21,30,174,230,97,103,7,0,21,30,209,27,29,120,7,0,21,30,97,35,222,224,7,0,22,30,117,108,134,19,7,0,22,30,25,73,29,120,7,0,23,158,150,59,165,254,5,0,24,158,87,120,253,38,9,0,24,158,87,120,207,40,9,0,26,30,41,61,116,72,7,0,27,30,9,146,142,139,6,0,29,158,98,165,21,71,9,0,29,158,98,165,100,72,9,0,29,158,98,165,181,73,9,0,29,158,98,165,11,75,9,0,31,158,96,27,46,83,9,0,31,158,96,27,86,83,9,0,32,30,72,76,110,253,5,0,32,30,87,243,206,201,6,0,32,158,149,161,77,135,10,0,33,30,118,112,119,96,7,0,33,30,92,58,27,111,8,0,33,30,92,58,72,111,8,0,33,30,92,58,115,111,8,0,33,30,92,58,157,111,8,0,33,30,92,58,198,111,8,0,34,158,196,170,125,67,10,0,34,158,196,170,69,68,10,0,36,158,19,145,29,120,7,0,38,30,227,107,143,234,6,0,39,30,0,164,100,92,7,0,40,158,201,148,226,229,5,0,40,158,201,148,29,247,7,0,40,158,201,148,77,247,7,0,41,30,112,5,45,110,9,0,41,30,112,5,78,110,9,0,44,30,46,51,45,226,8,0,44,30,46,51,130,231,8,0,45,158,140,255,63,146,8,0,53,30,172,167,161,77,7,0,54,158,84,175,117,51,7,0,55,30,153,134,134,19,7,0,55,158,245,97,151,186,7,0,57,30,150,116,212,243,6,0,59,30,56,26,0,55,7,0,59,30,104,0,161,77,7,0,59,30,240,251,145,114,7,0,61,158,248,111,102,15,7,0,61,158,88,160,225,107,7,0,66,30,235,241,44,157,9,0,66,30,235,241,89,157,9,0,66,30,216,245,210,94,10,0,66,30,216,245,242,94,10,0,67,30,183,141,23,27,7,0,71,158,245,126,96,8,7,0,74,30,157,38,121,194,6,0,77,158,66,152,45,226,8,0,77,158,66,152,130,231,8,0,79,30,236,23,135,44,7,0,82,158,3,253,39,35,7,0,83,30,198,125,50,148,6,0,84,30,195,130,29,120,7,0,92,30,147,0,243,129,10,0,93,158,1,145,3,70,7,0,94,30,202,19,191,86,7,0,95,158,20,246,107,10,7,0,95,30,213,200,100,92,7,0,95,30,166,224,255,151,7,0,95,30,166,224,24,169,7,0,99,30,189,167,51,104,7,0,99,30,6,185,21,71,9,0,99,30,6,185,100,72,9,0,99,30,6,185,181,73,9,0,99,30,6,185,11,75,9,0,104,30,152,118,194,138,7,0,105,158,100,252,12,99,7,0,105,30,122,27,111,79,9,0,105,30,122,27,167,79,9,0,105,30,122,27,224,79,9,0,105,158,54,167,56,189,10,0,108,158,34,35,23,27,7,0,108,158,198,151,58,35,9,0,108,158,198,151,31,36,9,0,110,30,50,153,141,10,10,0,110,30,50,153,166,10,10,0,111,30,240,161,176,68,7,0,112,158,75,129,29,120,7,0,114,30,184,109,72,102,9,0,114,30,184,109,254,102,9,0,115,30,238,76,29,244,6,0,115,30,214,148,207,48,7,0,116,30,125,135,194,11,7,0,116,30,15,24,21,138,7,0,116,30,15,24,118,151,7,0,116,158,188,129,161,171,9,0,116,158,188,129,188,171,9,0,121,30,42,188,4,52,10,0,123,158,37,106,159,97,11,0,124,30,224,25,94,187,10,0,125,158,175,188,32,107,7,0,125,158,175,188,130,107,7,0,126,30,49,37,252,49,8,0,129,158,2,67,107,10,7,0,132,30,253,14,23,27,7,0,132,30,231,115,158,246,10,0,134,158,84,127,27,210,10,0,134,158,19,248,44,182,11,0,136,30,56,203,126,87,7,0,136,30,56,203,144,87,7,0,137,30,217,111,124,247,6,0,138,30,82,22,29,120,7,0,138,30,58,201,4,52,10,0,140,158,88,27,209,84,7,0,140,158,88,128,102,214,8,0,140,158,88,128,14,218,8,0,145,158,223,142,11,14,7,0,147,158,46,101,5,160,6,0,147,158,161,99,16,37,7,0,147,158,94,203,11,188,10,0,149,158,23,134,163,57,7,0,152,158,175,210,146,76,9,0,152,158,175,210,63,77,9,0,155,30,154,77,209,84,7,0,157,158,248,125,19,245,8,0,157,158,248,125,76,245,8,0,159,158,220,234,89,215,6,0,159,30,76,6,102,214,8,0,159,30,76,6,14,218,8,0,160,158,213,130,244,131,7,0,162,158,37,63,116,72,7,0,166,30,205,32,69,151,11,0,167,158,26,171,60,51,10,0,167,158,26,171,121,51,10,0,170,30,97,155,38,117,8,0,170,158,137,84,192,150,8,0,171,158,221,40,145,114,7,0,172,158,114,149,145,114,7,0,175,158,251,120,57,220,10,0,177,158,165,230,34,28,11,0,178,30,222,3,7,115,8,0,178,30,222,3,56,115,8,0,178,30,222,3,117,115,8,0,178,30,222,3,165,115,8,0,178,30,222,3,231,115,8,0,179,158,107,195,216,140,9,0,179,158,107,195,69,141,9,0,179,30,174,83,4,52,10,0,181,30,194,236,186,158,9,0,181,30,194,236,5,159,9,0,182,30,167,40,191,171,6,0,182,158,196,187,12,99,7,0,182,158,133,254,45,226,8,0,182,158,133,254,130,231,8,0,183,158,252,145,100,224,7,0,183,158,165,7,102,214,8,0,183,158,165,7,14,218,8,0,184,158,41,186,23,27,7,0,187,30,18,123,117,51,7,0,187,30,18,123,111,53,7,0,188,158,74,177,131,222,8,0,188,158,74,177,38,223,8,0,188,158,74,177,206,223,8,0,189,30,164,47,148,115,10,0,189,30,164,47,195,115,10,0,189,30,164,47,241,115,10,0,189,30,164,47,44,116,10,0,190,30,65,57,47,13,7,0,192,158,153,51,85,209,10,0,195,30,63,90,135,44,7,0,195,158,110,174,91,241,7,0,198,30,221,143,235,88,7,0,198,30,55,255,83,126,8,0,199,158,114,89,73,131,10,0,200,158,21,91,141,227,5,0,207,158,154,199,61,134,6,0,208,30,12,179,250,175,8,0,213,30,255,231,23,27,7,0,213,158,30,167,66,116,11,0,215,158,158,254,135,44,7,0,216,158,89,31,239,1,6,0,219,158,244,228,135,61,7,0,219,30,29,129,12,99,7,0,221,30,154,98,249,216,5,0,223,30,5,8,129,25,11,0,224,30,121,17,117,51,7,0,224,30,121,17,111,53,7,0,226,158,243,115,55,63,10,0,226,158,243,115,88,63,10,0,228,158,183,11,187,220,9,0,228,158,183,11,233,220,9,0,230,30,210,102,193,144,11,0,233,30,21,252,161,77,7,0,234,30,144,108,253,38,9,0,234,30,144,108,207,40,9,0,239,30,110,209,4,232,6,0,240,158,169,199,61,39,7,0,241,158,120,83,55,108,7,0,241,30,213,138,16,183,8,0,241,30,213,138,251,191,8,0,241,30,213,138,239,200,8,0,243,158,36,62,21,71,9,0,243,158,36,62,100,72,9,0,243,158,36,62,181,73,9,0,243,158,36,62,11,75,9,0,245,30,39,2,216,176,10,0,245,30,39,2,248,176,10,0,247,158,237,95,45,226,8,0,247,158,237,95,130,231,8,0,248,30,38,255,184,58,11,0,250,158,86,183,58,68,7,0,252,158,107,237,16,183,8,0,252,158,107,237,251,191,8,0,252,158,107,237,239,200,8,0,254,158,64,53,161,77,7,0,254,30,163,162,12,99,7,0,3,31,54,138,194,138,7,0,3,31,54,138,20,158,7,0,6,31,5,94,29,134,8,0,6,31,114,159,3,191,9,0,6,31,114,159,78,191,9,0,6,159,212,194,18,25,11,0,7,159,107,223,122,53,6,0,7,159,65,251,98,50,11,0,8,31,132,8,18,246,6,0,9,31,42,209,66,3,7,0,11,31,99,244,45,226,8,0,11,31,99,244,130,231,8,0,11,31,84,182,32,20,9,0,11,31,84,182,179,20,9,0,13,159,135,86,165,129,6,0,13,31,213,213,60,77,10,0,13,31,213,213,232,77,10,0,13,31,185,250,106,231,10,0,14,159,44,56,220,119,9,0,14,159,44,56,8,120,9,0,16,31,85,32,207,147,6,0,16,31,96,166,11,14,7,0,16,31,209,211,191,86,7,0,17,159,229,217,4,82,7,0,17,31,85,136,160,79,8,0,17,31,238,204,164,16,9,0,17,31,238,204,141,17,9,0,18,159,178,193,116,72,7,0,19,31,83,200,146,76,9,0,19,31,83,200,63,77,9,0,20,31,187,202,12,99,7,0,20,31,198,222,171,232,10,0,22,31,17,127,71,35,6,0,25,159,242,111,91,140,11,0,26,159,200,5,248,64,7,0,26,31,220,8,135,149,7,0,26,31,220,8,60,152,7,0,26,31,21,107,112,60,8,0,26,31,220,8,131,44,9,0,28,159,33,73,205,87,7,0,29,159,55,180,116,72,7,0,31,31,188,87,4,44,7,0,33,31,151,11,90,177,8,0,33,31,151,11,165,177,8,0,34,159,211,229,10,161,11,0,36,159,115,124,204,181,9,0,36,159,115,124,224,182,9,0,37,31,27,126,12,99,7,0,41,159,179,72,255,141,6,0,47,159,106,132,110,232,5,0,50,31,158,243,12,99,7,0,54,31,200,57,193,100,10,0,54,31,200,57,89,103,10,0,54,159,203,89,77,135,10,0,54,31,187,129,134,63,11,0,55,159,241,39,93,11,6,0,55,31,228,197,219,238,8,0,55,31,228,197,39,240,8,0,55,31,228,197,117,241,8,0,59,31,172,69,102,214,8,0,59,31,172,69,14,218,8,0,60,31,116,137,193,100,10,0,60,31,116,137,89,103,10,0,62,31,124,94,140,232,10,0,65,31,57,233,60,152,7,0,71,159,78,75,117,26,6,0,71,159,96,54,58,35,9,0,71,159,96,54,31,36,9,0,72,31,42,90,16,183,8,0,72,31,42,90,251,191,8,0,72,31,42,90,239,200,8,0,72,31,42,90,63,79,10,0,72,31,42,90,138,79,10,0,72,31,42,90,214,79,10,0,74,159,83,108,0,55,7,0,74,159,83,108,163,57,7,0,74,159,92,34,60,152,7,0,74,159,92,34,210,163,7,0,75,159,62,153,32,174,8,0,79,31,170,254,211,153,11,0,80,31,22,63,3,183,6,0,85,159,233,197,105,129,9,0,85,159,233,197,180,129,9,0,87,159,192,129,85,77,11,0,88,159,147,27,85,175,6,0,89,31,51,35,222,244,6,0,91,31,9,209,161,77,7,0,92,31,44,93,98,24,11,0,93,159,162,16,103,245,7,0,94,159,108,93,67,133,10,0,95,31,17,127,119,96,7,0,96,159,215,166,183,222,5,0,96,159,215,89,60,152,7,0,96,159,215,89,79,237,8,0,97,159,169,122,12,99,7,0,98,31,175,24,0,55,7,0,98,31,175,24,163,57,7,0,101,31,228,157,60,84,6,0,102,159,65,194,16,183,8,0,102,159,65,194,251,191,8,0,102,159,65,194,239,200,8,0,105,159,113,72,149,174,9,0,105,159,113,72,200,174,9,0,108,31,108,57,119,96,7,0,110,159,95,199,58,35,9,0,110,159,95,199,31,36,9,0,110,159,130,44,2,175,11,0,111,31,65,39,161,77,7,0,113,159,11,70,158,220,10,0,115,31,228,189,75,148,7,0,115,31,228,189,120,164,7,0,115,31,203,58,230,192,10,0,117,31,243,95,92,9,8,0,118,159,207,11,135,149,7,0,118,159,207,11,69,151,7,0,120,159,76,253,228,4,11,0,121,31,167,125,143,240,6,0,121,31,237,31,29,120,7,0,122,159,23,253,194,138,7,0,122,159,23,253,103,178,7,0,124,159,93,51,100,169,11,0,127,159,163,132,129,80,7,0,131,31,251,129,160,230,6,0,131,31,237,93,146,13,9,0,131,31,237,93,168,13,9,0,132,159,217,84,217,224,6,0,133,159,41,221,247,6,11,0,136,31,208,248,29,120,7,0,140,31,139,36,124,22,10,0,140,31,139,36,179,22,10,0,140,31,139,36,235,22,10,0,140,159,213,151,84,148,11,0,141,31,154,64,145,114,7,0,145,31,237,29,57,5,7,0,145,159,11,207,29,120,7,0,145,159,194,214,29,120,7,0,148,31,2,73,168,152,9,0,151,31,252,145,134,19,7,0,154,31,117,78,29,120,7,0,154,31,45,129,42,210,10,0,160,159,97,128,114,177,6,0,160,31,49,238,143,240,6,0,160,159,118,154,32,107,7,0,160,159,118,154,130,107,7,0,167,159,117,197,116,72,7,0,168,31,158,3,117,51,7,0,168,31,158,3,111,53,7,0,168,159,201,129,29,120,7,0,168,31,158,3,220,137,7,0,168,31,158,3,197,176,7,0,168,159,201,129,122,188,7,0,169,31,77,82,246,243,9,0,169,31,77,82,59,245,9,0,169,31,77,82,131,246,9,0,170,31,172,176,161,110,10,0,170,31,172,176,2,112,10,0,171,31,208,41,246,3,6,0,171,31,208,41,174,38,8,0,171,31,208,41,207,38,8,0,171,31,208,41,242,38,8,0,171,31,208,41,185,173,9,0,171,31,208,41,204,173,9,0,171,31,208,41,203,189,10,0,173,159,163,191,45,226,8,0,173,159,163,191,130,231,8,0,175,159,207,142,134,19,7,0,175,31,206,173,60,152,7,0,175,31,206,173,128,112,8,0,177,31,157,38,135,44,7,0,177,159,187,129,58,75,7,0,177,31,3,127,29,120,7,0,182,31,105,78,45,226,8,0,182,31,105,78,130,231,8,0,186,159,8,198,51,3,6,0,189,31,111,98,136,1,7,0,189,31,111,98,10,2,7,0,189,159,244,38,117,51,7,0,191,159,73,33,23,27,7,0,191,31,40,74,24,214,10,0,194,31,135,34,51,104,7,0,194,31,69,232,8,112,7,0,194,31,135,34,45,226,8,0,194,31,135,34,130,231,8,0,195,31,177,133,45,226,8,0,195,31,177,133,130,231,8,0,196,159,63,48,152,144,9,0,196,159,63,48,177,144,9,0,197,159,177,69,156,9,6,0,197,31,227,51,150,142,8,0,197,31,227,51,158,101,11,0,198,31,53,118,183,82,7,0,198,31,25,110,206,159,10,0,199,31,73,180,29,120,7,0,201,159,45,127,100,34,6,0,201,159,45,127,104,200,6,0,201,159,45,127,198,196,7,0,202,31,30,110,45,226,8,0,202,31,30,110,130,231,8,0,204,159,236,105,55,108,7,0,204,159,69,3,195,163,10,0,204,31,126,231,149,61,11,0,205,31,73,64,52,160,10,0,206,159,17,225,48,245,6,0,206,31,113,49,115,4,7,0,206,159,17,225,221,177,10,0,207,159,61,165,140,132,6,0,208,159,141,142,6,249,9,0,208,159,141,142,105,249,9,0,208,159,141,142,201,249,9,0,211,31,136,84,142,113,7,0,213,31,248,136,253,197,6,0,214,159,235,65,216,51,9,0,214,159,235,65,175,52,9,0,215,31,134,149,204,181,9,0,215,31,134,149,224,182,9,0,215,159,78,221,107,226,9,0,215,159,78,221,251,226,9,0,215,31,9,88,4,52,10,0,217,159,234,129,165,224,8,0,217,159,234,129,86,225,8,0,218,31,20,54,191,176,6,0,221,31,15,76,188,213,9,0,221,31,15,76,58,214,9,0,221,31,15,76,197,214,9,0,222,31,5,199,209,84,7,0,222,159,101,91,26,83,10,0,222,159,101,91,60,83,10,0,222,159,157,18,253,226,10,0,223,31,231,32,133,234,5,0,224,31,248,13,209,19,10,0,230,159,168,67,194,185,9,0,230,159,168,67,96,186,9,0,231,31,80,181,58,35,9,0,231,31,80,181,31,36,9,0,232,31,255,93,240,248,6,0,233,159,215,56,131,148,9,0,233,159,215,56,152,148,9,0,233,159,106,35,167,242,9,0,235,159,10,64,29,120,7,0,237,159,24,182,16,183,8,0,237,159,24,182,251,191,8,0,237,159,24,182,239,200,8,0,241,31,217,85,240,66,9,0,241,31,217,85,119,67,9,0,241,31,3,145,202,166,10,0,241,159,99,241,211,190,10,0,242,159,169,181,251,38,11,0,244,159,191,253,154,85,6,0,244,31,129,86,12,99,7,0,249,31,13,4,245,48,11,0,253,159,122,81,240,156,10,0,253,159,122,81,12,157,10,0,254,159,93,157,240,248,6,0,254,159,249,62,245,139,10,0,2,160,141,254,55,108,7,0,2,32,53,87,16,183,8,0,2,32,53,87,251,191,8,0,2,32,53,87,239,200,8,0,3,160,98,141,47,43,7,0,6,32,59,109,115,2,7,0,7,160,61,16,100,92,7,0,8,32,187,142,4,52,10,0,10,160,117,229,142,230,9,0,10,160,117,229,179,230,9,0,10,160,117,229,221,230,9,0,16,160,17,201,62,110,7,0,16,160,17,201,106,110,7,0,20,160,147,226,134,19,7,0,20,160,3,227,83,126,8,0,23,32,208,73,45,226,8,0,23,32,208,73,130,231,8,0,26,160,83,43,249,236,5,0,26,160,83,43,10,237,5,0,29,160,156,11,168,43,7,0,32,32,233,2,23,27,7,0,33,160,13,138,45,226,8,0,33,160,13,138,130,231,8,0,34,160,164,1,184,209,5,0,37,32,48,242,135,149,7,0,37,32,48,242,60,152,7,0,37,32,48,242,231,255,8,0,42,160,46,66,224,92,6,0,42,160,46,66,136,101,6,0,42,160,46,66,219,187,6,0,42,160,46,66,135,61,7,0,42,160,46,66,198,135,7,0,44,32,143,241,243,238,6,0,44,32,118,66,221,5,7,0,44,32,231,242,253,38,9,0,44,32,231,242,207,40,9,0,47,160,177,95,168,104,8,0,47,160,177,95,45,105,8,0,47,160,177,95,167,105,8,0,48,32,67,220,232,198,10,0,57,160,231,242,115,128,10,0,59,32,234,43,194,138,7,0,59,160,161,251,62,150,9,0,59,160,161,251,101,150,9,0,60,160,215,169,194,67,6,0,60,160,242,156,194,138,7,0,61,32,146,95,183,174,6,0,61,160,164,247,97,103,7,0,62,32,240,168,213,15,9,0,64,32,205,232,168,152,9,0,67,32,239,18,55,108,7,0,67,32,69,202,2,172,11,0,68,160,115,187,117,51,7,0,68,160,115,187,111,53,7,0,68,160,115,187,242,163,7,0,70,32,219,4,252,242,8,0,70,32,219,4,240,243,8,0,71,160,209,76,29,120,7,0,71,32,6,113,29,120,7,0,72,160,97,79,191,86,7,0,73,160,106,177,150,18,11,0,76,32,244,198,18,217,5,0,77,160,147,222,188,15,11,0,87,160,70,193,51,104,7,0,89,32,104,164,250,87,10,0,90,160,101,143,160,5,6,0,90,160,230,197,217,168,6,0,91,160,246,151,90,14,7,0,91,32,214,176,194,138,7,0,94,32,160,204,60,152,7,0,94,32,160,204,239,162,7,0,94,32,160,204,226,164,7,0,95,160,72,109,29,120,7,0,96,160,178,80,60,152,7,0,97,32,25,83,163,88,10,0,97,32,25,83,83,89,10,0,98,160,64,80,161,77,7,0,99,160,186,147,67,6,7,0,101,160,223,83,134,19,7,0,102,32,57,169,21,174,11,0,107,160,158,115,240,242,7,0,107,160,158,115,38,243,7,0,107,160,158,115,92,243,7,0,108,32,141,204,193,100,10,0,108,32,141,204,89,103,10,0,109,32,66,116,253,38,9,0,109,32,66,116,207,40,9,0,109,160,148,103,206,68,9,0,109,160,148,103,252,68,9,0,109,160,13,63,203,178,10,0,111,160,59,244,41,254,6,0,111,160,59,244,22,63,11,0,113,160,221,28,16,183,8,0,113,160,221,28,251,191,8,0,113,160,221,28,239,200,8,0,114,32,206,204,86,243,6,0,117,32,179,91,235,7,7,0,118,32,156,74,66,3,7,0,120,32,96,66,22,213,7,0,122,32,228,190,16,183,8,0,122,32,228,190,251,191,8,0,122,32,228,190,239,200,8,0,125,32,63,188,134,19,7,0,129,160,135,158,115,91,11,0,129,32,155,44,153,127,11,0,131,160,30,245,55,149,6,0,131,32,198,39,50,62,8,0,132,32,193,234,75,112,7,0,133,32,133,221,252,242,8,0,133,32,133,221,240,243,8,0,133,32,199,96,193,25,11,0,134,32,44,242,115,131,6,0,134,160,231,37,45,226,8,0,134,160,231,37,130,231,8,0,134,160,231,141,219,238,8,0,134,160,231,141,39,240,8,0,134,160,231,141,117,241,8,0,134,32,133,126,175,88,9,0,134,32,133,126,254,88,9,0,134,32,133,126,92,89,9,0,134,32,133,126,173,89,9,0,134,32,202,26,253,216,10,0,135,160,0,77,23,253,6,0,136,32,27,33,145,151,6,0,136,32,27,33,226,179,6,0,138,32,179,129,80,50,11,0,138,32,188,217,123,153,11,0,138,32,188,217,142,153,11,0,143,160,176,42,253,38,9,0,143,160,176,42,207,40,9,0,143,160,160,7,253,185,10,0,143,160,160,7,29,186,10,0,144,32,62,231,161,110,10,0,144,32,62,231,2,112,10,0,145,160,241,234,38,117,8,0,147,32,121,37,177,3,11,0,148,160,41,190,65,76,7,0,149,32,217,244,219,142,6,0,151,32,168,22,107,3,8,0,154,160,132,182,250,132,7,0,154,160,132,182,21,138,7,0,156,32,156,222,223,113,7,0,157,32,208,17,77,252,6,0,157,32,113,57,4,52,10,0,158,160,146,126,29,120,7,0,160,160,122,143,176,191,7,0,160,160,122,143,93,34,10,0,160,160,122,143,146,34,10,0,160,160,122,143,206,34,10,0,163,32,5,253,12,99,7,0,164,160,194,47,75,58,8,0,164,32,125,130,242,142,8,0,165,32,103,118,66,66,11,0,168,160,205,234,134,19,7,0,169,160,124,154,201,106,7,0,169,160,115,199,21,71,9,0,169,160,115,199,100,72,9,0,169,160,115,199,181,73,9,0,169,160,115,199,11,75,9,0,170,32,147,177,117,51,7,0,170,32,147,177,111,53,7,0,171,160,73,77,175,88,9,0,171,160,73,77,254,88,9,0,171,160,73,77,92,89,9,0,171,160,73,77,173,89,9,0,171,160,213,80,244,143,11,0,172,160,179,161,199,173,11,0,172,160,179,161,43,178,11,0,174,32,183,10,192,2,7,0,174,32,172,156,117,51,7,0,174,32,172,156,111,53,7,0,174,160,251,250,60,152,7,0,174,32,172,156,242,163,7,0,174,160,251,250,128,112,8,0,175,160,127,100,102,214,8,0,175,160,127,100,14,218,8,0,176,160,106,249,233,156,6,0,177,32,178,168,201,251,6,0,181,160,22,156,218,28,11,0,183,32,229,94,211,232,5,0,188,160,110,239,194,138,7,0,189,32,136,159,12,49,8,0,189,32,136,159,60,49,8,0,189,32,136,159,110,49,8,0,189,32,136,159,164,49,8,0,189,32,136,159,209,49,8,0,192,160,130,243,213,252,5,0,192,160,17,246,16,212,6,0,193,32,22,171,102,245,5,0,196,32,21,227,194,138,7,0,197,32,66,39,207,14,9,0,197,32,66,39,54,15,9,0,198,160,97,40,33,171,7,0,198,160,71,249,81,126,9,0,198,160,71,249,166,126,9,0,198,160,71,249,53,127,9,0,198,32,79,179,163,88,10,0,198,32,79,179,83,89,10,0,199,32,239,89,177,105,7,0,199,32,239,89,129,4,11,0,200,32,218,196,0,55,7,0,200,32,218,196,163,57,7,0,203,32,88,202,163,66,7,0,205,160,214,69,2,41,7,0,206,160,146,144,70,213,10,0,208,160,142,13,252,218,5,0,211,160,163,69,164,57,6,0,211,160,163,69,153,169,8,0,215,160,190,244,164,16,9,0,215,160,190,244,141,17,9,0,218,160,160,195,145,12,8,0,218,160,214,243,169,160,8,0,218,32,143,189,111,4,9,0,218,32,143,189,41,6,9,0,220,32,84,207,254,159,11,0,221,32,50,103,145,114,7,0,222,160,67,211,7,8,11,0,223,32,18,231,33,171,7,0,223,32,18,231,105,149,9,0,223,32,18,231,150,149,9,0,227,32,104,135,188,213,9,0,227,32,104,135,58,214,9,0,227,32,104,135,197,214,9,0,231,32,119,251,51,104,7,0,231,160,85,188,55,224,10,0,232,160,239,227,71,176,7,0,234,32,157,38,194,233,5,0,234,32,190,176,107,10,7,0,236,32,46,58,12,99,7,0,240,160,247,10,32,107,7,0,240,160,247,10,130,107,7,0,240,160,247,10,233,3,11,0,243,32,188,137,165,226,7,0,244,32,41,4,39,184,9,0,244,32,41,4,92,184,9,0,245,32,213,56,134,19,7,0,245,160,128,192,161,207,10,0,247,160,60,19,167,242,9,0,248,160,188,45,83,126,8,0,253,160,231,242,64,70,7,0,253,160,234,244,250,87,10,0,255,160,163,225,138,169,10,0,0,161,152,192,204,31,11,0,1,33,207,69,75,112,7,0,1,161,230,30,115,161,9,0,1,161,230,30,104,162,9,0,2,161,131,192,106,1,6,0,4,161,57,120,16,183,8,0,4,161,57,120,251,191,8,0,4,161,57,120,239,200,8,0,6,33,39,33,29,120,7,0,11,33,198,199,67,70,6,0,11,161,131,207,0,55,7,0,11,33,196,115,35,129,10,0,12,33,67,47,45,226,8,0,12,33,67,47,130,231,8,0,12,161,33,206,163,88,10,0,12,161,33,206,83,89,10,0,12,33,202,249,77,135,10,0,13,161,134,45,102,15,7,0,14,33,23,7,111,4,9,0,14,33,23,7,41,6,9,0,19,161,187,103,130,4,6,0,19,33,81,103,92,9,8,0,20,33,24,155,60,248,6,0,23,161,168,35,63,82,6,0,23,161,168,35,124,178,6,0,23,161,248,216,42,68,9,0,23,161,248,216,103,68,9,0,24,33,234,64,158,6,7,0,24,161,111,63,58,75,7,0,25,161,57,51,5,76,7,0,25,33,8,55,4,52,10,0,27,33,239,111,193,100,10,0,27,33,239,111,89,103,10,0,27,33,38,58,10,43,11,0,28,33,59,68,4,52,10,0,29,161,40,94,150,45,9,0,29,161,40,94,18,46,9,0,31,33,211,239,209,18,7,0,33,33,239,24,39,47,9,0,33,33,239,24,54,48,9,0,34,33,177,48,25,224,5,0,34,33,51,38,53,157,11,0,35,161,6,28,7,254,10,0,38,33,89,185,66,3,7,0,38,33,39,170,161,77,7,0,38,33,52,102,102,214,8,0,38,33,52,102,14,218,8,0,44,161,77,28,135,44,7,0,44,33,191,107,234,93,10,0,44,33,191,107,7,94,10,0,44,33,191,107,27,94,10,0,47,33,172,82,79,255,7,0,48,161,186,68,208,116,6,0,48,33,65,250,28,128,10,0,50,33,46,78,4,44,7,0,51,33,185,214,60,182,8,0,55,161,231,242,16,183,8,0,55,161,231,242,251,191,8,0,55,161,231,242,239,200,8,0,57,33,9,85,194,138,7,0,58,161,253,35,153,67,6,0,60,33,62,240,8,235,10,0,63,33,80,38,60,152,7,0,63,33,80,38,128,112,8,0,63,33,17,88,213,15,9,0,65,161,222,6,139,254,6,0,67,161,100,0,233,83,7,0,68,33,148,204,217,238,9,0,68,33,148,204,174,239,9,0,71,161,44,122,192,77,8,0,71,161,44,122,14,115,11,0,71,161,44,122,33,116,11,0,71,161,44,122,222,132,11,0,72,33,88,171,127,172,6,0,72,33,91,81,145,12,8,0,73,161,61,8,207,48,7,0,77,33,117,242,3,70,7,0,77,33,82,54,100,92,7,0,83,161,173,114,12,99,7,0,84,161,145,38,161,77,7,0,89,33,32,20,0,55,7,0,89,33,32,20,163,57,7,0,89,161,103,117,29,120,7,0,91,161,112,124,4,52,10,0,94,33,182,213,116,72,7,0,96,161,214,152,220,225,7,0,97,33,140,142,224,176,6,0,98,33,122,172,216,171,11,0,99,161,121,47,21,71,9,0,99,161,121,47,100,72,9,0,99,161,121,47,181,73,9,0,99,161,121,47,11,75,9,0,100,161,209,163,201,204,10,0,102,33,155,206,145,114,7,0,102,33,151,70,253,38,9,0,102,33,151,70,207,40,9,0,103,33,106,28,115,161,9,0,103,33,106,28,104,162,9,0,104,33,35,252,107,10,7,0,104,161,55,37,25,84,7,0,104,161,55,37,114,84,7,0,105,161,180,46,0,55,7,0,105,161,180,46,207,237,10,0,106,161,85,170,145,114,7,0,109,161,35,248,194,138,7,0,111,161,99,139,23,27,7,0,111,161,99,139,194,138,7,0,111,161,168,133,16,229,7,0,112,161,195,147,186,26,9,0,112,161,195,147,120,27,9,0,112,161,195,147,48,28,9,0,114,33,229,212,163,57,7,0,114,161,218,246,10,153,10,0,115,161,39,218,135,61,7,0,118,33,10,211,172,87,6,0,118,33,10,211,223,197,6,0,118,161,182,140,139,254,6,0,118,161,163,128,173,187,9,0,118,161,163,128,189,187,9,0,118,161,4,126,124,205,9,0,118,161,4,126,159,205,9,0,121,33,207,50,65,122,11,0,126,161,209,55,161,110,10,0,126,161,209,55,2,112,10,0,128,161,250,17,70,71,7,0,129,161,167,126,135,149,7,0,129,33,225,218,81,126,9,0,129,33,225,218,166,126,9,0,129,33,225,218,53,127,9,0,129,161,167,126,180,19,10,0,131,33,233,57,139,235,5,0,136,33,235,246,13,99,11,0,137,161,108,56,4,52,10,0,138,33,148,204,20,8,9,0,138,33,148,204,247,8,9,0,138,33,148,204,210,9,9,0,139,161,213,117,65,41,7,0,140,33,247,188,116,72,7,0,140,161,42,173,29,120,7,0,142,161,7,170,197,56,8,0,142,161,31,63,45,226,8,0,142,161,31,63,130,231,8,0,144,33,125,202,16,183,8,0,144,33,125,202,251,191,8,0,144,33,125,202,239,200,8,0,145,161,74,108,190,239,5,0,148,33,224,19,200,166,6,0,148,33,102,168,211,20,11,0,149,161,172,86,177,105,7,0,150,161,32,109,159,122,11,0,152,161,114,27,102,214,8,0,152,161,114,27,14,218,8,0,156,161,172,24,51,248,8,0,156,161,172,24,162,248,8,0,160,33,30,156,253,38,9,0,160,33,30,156,207,40,9,0,162,33,84,141,79,241,10,0,164,161,15,78,213,84,11,0,166,161,211,29,4,52,10,0,167,33,167,67,60,152,7,0,167,33,167,67,163,166,7,0,167,161,226,43,168,152,9,0,168,161,52,167,56,235,5,0,168,33,76,254,29,120,7,0,170,33,160,122,83,126,8,0,171,161,164,3,219,180,10,0,172,33,80,230,135,61,7,0,172,33,85,130,194,138,7,0,173,33,244,40,248,18,6,0,173,161,32,104,4,44,7,0,175,33,1,40,107,158,8,0,177,161,219,113,218,93,7,0,179,33,163,133,61,75,6,0,182,161,133,225,191,176,10,0,183,161,155,54,139,254,6,0,183,161,209,226,130,83,7,0,185,33,182,16,223,250,5,0,185,33,175,250,116,72,7,0,189,161,76,247,126,20,6,0,189,33,23,68,133,207,10,0,189,161,190,53,91,98,11,0,194,33,213,162,207,48,7,0,196,33,37,199,189,109,7,0,197,33,39,159,242,239,5,0,197,33,39,159,67,142,6,0,197,33,39,159,99,142,6,0,197,33,115,28,99,147,6,0,197,33,109,54,100,92,7,0,198,161,97,52,36,168,6,0,198,161,97,52,219,182,6,0,198,33,221,190,4,52,10,0,202,33,225,3,194,138,7,0,205,33,34,123,255,70,7,0,208,161,47,242,23,253,6,0,208,33,37,105,56,176,10,0,211,161,103,27,4,52,10,0,213,33,4,113,65,41,7,0,213,33,69,179,160,79,8,0,213,161,63,248,200,131,10,0,214,33,79,150,135,1,9,0,214,33,79,150,189,1,9,0,216,161,156,217,16,37,7,0,218,161,237,163,77,11,7,0,220,161,9,94,107,211,5,0,226,161,109,178,76,47,11,0,230,161,77,207,200,211,7,0,234,33,155,2,93,129,10,0,237,161,209,5,29,244,6,0,237,161,65,212,20,151,10,0,238,33,130,107,244,168,6,0,238,33,220,119,220,39,7,0,239,161,95,156,7,67,6,0,239,161,154,156,220,125,6,0,239,33,88,250,216,140,9,0,239,33,88,250,69,141,9,0,240,33,48,18,118,151,7,0,240,33,48,18,141,162,7,0,241,161,89,122,40,94,8,0,241,161,89,122,88,94,8,0,241,161,89,122,138,94,8,0,242,161,120,102,134,19,7,0,242,161,188,6,238,81,10,0,246,161,127,39,4,52,10,0,247,161,167,213,12,99,7,0,249,33,128,37,177,105,7,0,250,161,100,222,65,41,7,0,250,33,213,121,123,65,9,0,250,33,213,121,159,65,9,0,252,161,21,126,122,60,11,0,254,161,151,226,191,86,7,0,255,161,117,80,250,51,6,0,255,33,164,126,102,15,7,0,3,162,148,177,163,57,7,0,3,34,168,239,252,169,7,0,8,162,24,133,82,20,8,0,11,34,0,97,112,246,7,0,13,162,117,43,213,84,8,0,15,34,237,5,29,120,7,0,15,162,164,251,194,138,7,0,16,34,109,251,71,250,6,0,16,34,49,100,23,253,6,0,17,34,88,204,179,140,6,0,17,34,88,204,163,57,7,0,17,34,88,204,89,41,8,0,17,34,88,204,133,41,8,0,20,162,231,242,77,11,7,0,21,162,188,187,117,65,7,0,21,34,23,96,111,4,9,0,21,34,23,96,41,6,9,0,21,162,162,110,58,35,9,0,21,162,162,110,31,36,9,0,23,34,242,13,105,129,9,0,23,34,242,13,180,129,9,0,24,34,244,125,111,4,9,0,24,34,244,125,41,6,9,0,25,162,53,34,134,19,7,0,25,162,215,65,75,148,7,0,26,162,23,112,216,51,9,0,26,162,23,112,175,52,9,0,27,34,134,200,139,254,6,0,29,162,122,57,45,176,6,0,33,162,189,170,194,138,7,0,39,34,165,4,99,36,7,0,40,162,108,136,23,190,10,0,46,162,109,42,209,84,7,0,46,34,203,110,100,92,7,0,47,34,219,61,66,3,7,0,48,162,134,125,12,99,7,0,49,162,168,104,145,151,6,0,49,162,168,104,226,179,6,0,49,162,168,104,118,135,7,0,49,162,191,191,118,151,7,0,49,34,150,96,143,92,11,0,50,162,36,65,194,138,7,0,52,34,192,225,23,27,7,0,55,162,238,107,191,86,7,0,56,34,206,229,59,68,8,0,56,34,206,229,70,69,8,0,57,34,0,84,213,110,7,0,58,34,62,166,15,178,10,0,59,162,160,32,125,18,9,0,59,162,160,32,34,19,9,0,60,162,71,3,23,27,7,0,60,34,22,187,175,88,9,0,60,34,22,187,254,88,9,0,60,34,22,187,92,89,9,0,60,34,22,187,173,89,9,0,60,162,223,127,157,25,11,0,61,162,4,108,132,21,9,0,61,162,4,108,157,23,9,0,62,162,241,208,139,152,8,0,62,34,87,87,16,183,8,0,62,34,87,87,251,191,8,0,62,34,87,87,239,200,8,0,67,34,180,148,38,178,8,0,67,34,1,219,105,221,10,0,69,34,234,35,71,250,6,0,70,162,151,126,167,242,9,0,71,34,109,162,224,169,10,0,72,162,69,169,187,8,7,0,72,162,115,160,33,229,10,0,74,34,219,4,167,242,9,0,75,162,182,120,113,75,6,0,75,162,182,120,82,136,6,0,75,34,90,48,233,65,9,0,75,34,90,48,2,66,9,0,75,162,201,76,218,6,10,0,77,34,201,85,170,172,8,0,77,162,38,192,146,76,9,0,77,162,38,192,63,77,9,0,79,34,253,194,161,77,7,0,80,34,204,80,13,238,6,0,80,34,215,91,16,183,8,0,80,34,215,91,251,191,8,0,80,34,215,91,239,200,8,0,83,34,98,254,50,121,6,0,83,34,220,149,217,103,7,0,86,34,147,191,23,27,7,0,87,162,3,252,224,123,6,0,87,162,3,252,163,57,7,0,87,34,14,144,21,138,7,0,87,34,14,144,120,164,7,0,88,162,240,218,67,17,7,0,91,34,96,86,112,246,7,0,91,162,62,70,164,16,9,0,91,162,62,70,141,17,9,0,91,34,86,48,77,135,10,0,91,162,106,171,207,168,10,0,93,34,26,202,73,82,7,0,95,162,164,222,85,29,10,0,96,162,141,34,8,235,10,0,97,34,23,187,23,27,7,0,97,34,47,199,12,99,7,0,97,34,73,129,15,177,11,0,98,162,231,242,246,62,7,0,98,34,17,173,58,75,7,0,98,34,113,27,4,52,10,0,99,34,89,230,227,201,7,0,101,34,59,134,137,234,10,0,101,34,59,134,188,234,10,0,104,34,102,185,245,161,6,0,105,34,10,64,23,27,7,0,106,162,76,92,16,183,8,0,106,162,76,92,251,191,8,0,106,162,76,92,239,200,8,0,106,34,54,238,153,113,10,0,106,34,54,238,27,114,10,0,112,34,11,174,138,171,7,0,112,34,72,218,21,71,9,0,112,34,72,218,100,72,9,0,112,34,72,218,181,73,9,0,112,34,72,218,11,75,9,0,112,34,216,185,167,242,9,0,116,34,255,121,23,196,6,0,117,34,4,216,23,234,5,0,117,34,4,216,252,140,6,0,117,34,82,23,117,65,7,0,123,162,81,24,193,252,5,0,124,162,122,108,117,51,7,0,124,162,122,108,111,53,7,0,125,34,69,104,115,161,9,0,125,34,69,104,104,162,9,0,125,34,74,13,224,235,10,0,126,162,147,228,88,129,6,0,128,162,188,190,216,51,9,0,128,162,188,190,175,52,9,0,132,162,123,21,134,19,7,0,134,162,162,230,161,110,10,0,134,162,162,230,2,112,10,0,136,34,123,15,154,108,11,0,137,162,108,242,130,47,7,0,138,34,71,170,143,240,6,0,138,34,190,137,135,61,7,0,144,34,109,109,184,89,7,0,144,34,109,109,19,90,7,0,145,162,34,216,64,70,7,0,147,162,137,218,153,113,10,0,147,162,137,218,27,114,10,0,148,162,233,105,55,108,7,0,150,34,224,81,100,62,6,0,150,34,224,81,52,90,6,0,150,34,224,81,193,100,10,0,150,34,224,81,89,103,10,0,151,162,245,240,115,2,7,0,156,162,228,112,42,228,10,0,157,34,13,162,241,190,7,0,157,34,149,237,16,183,8,0,157,34,149,237,251,191,8,0,157,34,149,237,239,200,8,0,157,34,75,232,62,223,9,0,157,34,75,232,64,224,9,0,157,34,75,232,93,225,9,0,160,162,42,27,135,76,6,0,160,162,187,165,59,12,7,0,160,162,42,27,134,19,7,0,161,34,131,251,253,38,9,0,161,34,131,251,207,40,9,0,165,34,241,11,3,159,10,0,166,162,216,54,124,212,6,0,166,162,136,88,194,138,7,0,166,34,82,115,188,213,9,0,166,34,82,115,58,214,9,0,166,34,82,115,197,214,9,0,168,34,102,194,144,90,11,0,171,162,153,179,155,127,9,0,171,162,153,179,213,127,9,0,172,162,231,242,194,138,7,0,172,162,8,89,39,193,7,0,173,34,17,140,23,27,7,0,173,162,34,125,75,58,9,0,173,162,34,125,123,58,9,0,178,34,42,23,104,238,6,0,179,34,187,254,166,22,6,0,187,34,137,157,209,31,8,0,187,34,137,157,244,31,8,0,195,34,192,151,52,190,6,0,195,34,192,151,237,196,6,0,199,34,202,92,131,222,8,0,199,34,202,92,38,223,8,0,199,34,202,92,206,223,8,0,200,34,32,7,103,83,6,0,201,162,247,126,71,250,6,0,202,34,35,149,253,38,9,0,202,34,35,149,207,40,9,0,204,34,119,142,194,138,7,0,204,162,252,143,175,29,9,0,204,162,252,143,88,30,9,0,204,162,252,143,240,66,9,0,204,162,252,143,119,67,9,0,205,34,182,148,235,7,7,0,206,162,189,38,90,105,9,0,206,162,189,38,116,105,9,0,206,162,189,38,144,105,9,0,208,34,156,78,7,197,6,0,209,34,248,7,135,149,7,0,209,34,248,7,152,255,9,0,209,34,248,7,196,255,9,0,210,162,32,248,204,181,9,0,210,162,32,248,224,182,9,0,211,34,217,49,117,144,6,0,211,34,217,49,0,55,7,0,211,34,217,49,163,57,7,0,213,162,233,90,158,150,6,0,217,162,81,190,145,114,7,0,217,34,144,33,253,38,9,0,217,34,144,33,207,40,9,0,224,162,57,127,130,211,9,0,224,162,57,127,154,211,9,0,224,162,57,127,178,211,9,0,225,34,242,206,168,152,9,0,227,162,156,35,4,52,10,0,228,34,203,101,71,7,6,0,228,34,203,101,51,18,7,0,233,162,84,226,21,253,10,0,234,162,71,75,246,243,9,0,234,162,71,75,59,245,9,0,234,162,71,75,131,246,9,0,237,34,158,23,29,120,7,0,237,162,112,33,8,185,9,0,241,162,148,206,23,27,7,0,243,162,116,125,188,110,6,0,245,162,5,50,87,69,9,0,245,162,5,50,181,69,9,0,247,162,67,115,233,4,7,0,250,34,135,143,141,86,6,0,251,162,191,136,23,27,7,0,252,162,123,87,23,27,7,0,252,34,129,96,186,26,9,0,252,34,129,96,120,27,9,0,252,34,129,96,48,28,9,0,252,34,22,111,112,230,10,0,254,34,134,230,23,27,7,0,254,34,134,230,161,77,7,0,0,163,54,116,15,19,6,0,3,163,122,21,226,134,8,0,6,35,235,146,105,125,10,0,7,163,151,104,7,115,8,0,7,163,151,104,56,115,8,0,7,163,151,104,117,115,8,0,7,163,151,104,165,115,8,0,7,163,151,104,231,115,8,0,7,163,151,104,1,238,10,0,7,163,151,104,35,238,10,0,9,163,86,126,240,57,9,0,9,163,86,126,1,58,9,0,11,163,205,136,83,126,8,0,16,35,234,53,27,9,11,0,17,163,255,149,29,120,7,0,17,163,72,63,159,122,11,0,20,163,104,47,23,253,6,0,20,35,2,170,134,19,7,0,20,163,100,126,145,114,7,0,23,35,78,51,24,94,11,0,24,163,198,88,149,40,7,0,25,163,101,116,42,68,9,0,25,163,101,116,103,68,9,0,27,35,244,73,255,70,7,0,29,163,75,124,29,120,7,0,29,163,178,129,29,120,7,0,30,35,139,251,0,55,7,0,30,35,139,251,163,57,7,0,30,35,200,34,212,178,7,0,31,163,130,84,29,120,7,0,32,35,132,223,146,76,9,0,32,35,132,223,63,77,9,0,37,35,83,81,11,14,7,0,37,35,68,15,78,61,9,0,37,35,68,15,115,61,9,0,37,163,225,162,77,85,10,0,37,163,225,162,99,85,10,0,38,35,1,97,245,13,8,0,39,35,183,252,29,120,7,0,39,163,45,199,45,226,8,0,39,163,45,199,130,231,8,0,41,35,61,28,135,44,7,0,41,163,64,54,135,44,7,0,41,163,64,54,145,114,7,0,41,35,156,19,50,169,10,0,43,163,239,9,51,104,7,0,44,163,37,147,71,250,6,0,46,163,59,113,233,16,7,0,47,163,176,212,214,29,11,0,48,35,240,198,106,143,10,0,48,35,240,198,160,143,10,0,48,163,7,140,223,230,10,0,49,35,213,245,125,139,10,0,51,35,3,1,111,4,9,0,51,35,3,1,41,6,9,0,53,163,174,115,129,80,7,0,55,35,47,232,102,214,8,0,55,35,47,232,14,218,8,0,56,35,128,166,65,248,10,0,57,35,193,240,16,183,8,0,57,35,193,240,251,191,8,0,57,35,193,240,239,200,8,0,59,163,9,50,65,41,7,0,59,163,202,78,51,104,7,0,59,163,191,21,16,183,8,0,59,163,191,21,251,191,8,0,59,163,191,21,239,200,8,0,61,163,222,240,194,138,7,0,62,163,240,226,201,106,7,0,64,163,5,14,160,79,8,0,68,35,224,127,81,170,10,0,70,163,45,69,96,221,6,0,70,163,178,129,117,172,7,0,71,163,185,237,106,15,6,0,71,163,232,20,4,247,6,0,71,35,242,245,224,169,10,0,73,35,139,8,249,0,9,0,73,35,139,8,36,1,9,0,73,163,158,141,4,52,10,0,74,163,241,192,126,224,6,0,74,163,28,115,91,19,7,0,76,163,62,45,86,56,9,0,76,163,62,45,9,57,9,0,77,35,216,19,103,98,8,0,79,163,244,115,86,56,9,0,79,163,244,115,9,57,9,0,80,163,85,170,226,8,11,0,80,163,85,170,251,8,11,0,81,35,193,148,126,18,6,0,81,35,127,50,102,15,7,0,85,35,134,199,161,77,7,0,85,163,117,47,194,138,7,0,86,163,48,183,143,90,6,0,86,35,209,230,16,183,8,0,86,35,209,230,251,191,8,0,86,35,209,230,239,200,8,0,91,163,161,197,23,27,7,0,92,35,234,65,211,17,7,0,94,35,143,78,241,190,7,0,95,35,162,54,31,214,5,0,95,35,117,100,165,224,8,0,95,35,117,100,86,225,8,0,98,163,222,35,138,27,6,0,99,35,118,69,145,114,7,0,102,163,94,213,161,110,10,0,102,163,94,213,2,112,10,0,104,163,141,82,61,32,10,0,104,163,141,82,84,32,10,0,106,35,15,99,209,19,10,0,106,35,127,227,52,102,11,0,107,163,236,89,65,76,7,0,108,35,147,9,208,149,6,0,108,35,186,93,12,139,10,0,111,163,95,248,104,209,6,0,111,35,182,166,145,114,7,0,119,35,157,38,51,37,11,0,120,35,164,76,119,96,7,0,120,163,105,125,32,107,7,0,120,163,105,125,130,107,7,0,121,163,28,6,33,21,10,0,121,163,28,6,60,21,10,0,121,163,28,6,84,21,10,0,122,163,113,51,164,16,9,0,122,163,113,51,141,17,9,0,124,163,70,91,59,18,6,0,124,35,81,217,187,57,11,0,125,163,163,248,54,138,6,0,125,35,165,213,16,183,8,0,125,35,165,213,251,191,8,0,125,35,165,213,239,200,8,0,126,35,95,163,172,172,9,0,126,35,95,163,203,172,9,0,128,35,254,251,149,40,7,0,129,163,115,71,190,244,10,0,130,163,149,110,75,112,7,0,134,163,73,31,23,27,7,0,139,35,198,132,92,9,8,0,141,163,73,31,107,10,7,0,141,163,203,48,16,183,8,0,141,163,203,48,251,191,8,0,141,163,203,48,239,200,8,0,141,163,156,8,21,71,9,0,141,163,156,8,100,72,9,0,141,163,156,8,181,73,9,0,141,163,156,8,11,75,9,0,146,35,31,19,53,252,7,0,146,35,31,19,95,252,7,0,146,35,31,19,136,252,7,0,146,35,31,19,187,252,7,0,150,163,248,93,124,22,10,0,150,163,248,93,179,22,10,0,150,163,248,93,235,22,10,0,154,35,236,253,225,255,7,0,154,35,236,253,27,0,8,0,154,35,236,253,95,0,8,0,154,35,236,253,164,0,8,0,157,163,93,99,86,23,10,0,157,163,93,99,102,23,10,0,157,163,93,99,118,23,10,0,158,163,231,242,214,172,10,0,159,163,150,60,103,132,6,0,159,35,168,131,96,8,7,0,159,35,168,34,16,183,8,0,159,35,168,34,251,191,8,0,159,35,168,34,239,200,8,0,161,163,216,98,55,108,7,0,162,35,253,168,218,93,7,0,162,35,98,62,60,152,7,0,162,35,98,62,202,164,7,0,165,163,109,18,65,226,6,0,165,163,15,249,67,17,7,0,165,163,109,18,50,251,10,0,168,35,2,55,255,74,7,0,168,35,2,55,47,41,8,0,169,35,174,134,124,90,11,0,170,35,131,118,100,123,6,0,173,163,193,244,12,204,7,0,177,35,236,54,58,214,10,0,180,35,155,161,29,244,6,0,183,163,96,22,85,120,6,0,183,163,233,203,29,120,7,0,184,163,216,196,29,120,7,0,186,35,21,223,194,138,7,0,186,35,197,134,206,68,9,0,186,35,197,134,252,68,9,0,192,163,156,114,209,84,7,0,193,35,14,63,97,95,6,0,195,35,92,164,170,201,7,0,198,35,227,1,160,233,7,0,200,163,167,231,23,27,7,0,201,35,80,132,15,92,9,0,201,35,80,132,90,92,9,0,201,35,80,132,162,92,9,0,201,163,39,20,225,252,10,0,202,35,215,158,29,120,7,0,203,35,193,188,16,183,8,0,203,35,193,188,251,191,8,0,203,35,193,188,239,200,8,0,204,35,222,192,29,14,6,0,204,35,222,192,73,130,7,0,205,35,185,219,176,68,7,0,205,163,91,149,167,242,9,0,206,35,216,38,103,68,7,0,207,163,246,59,119,96,7,0,208,163,85,210,204,181,9,0,208,163,85,210,224,182,9,0,208,35,217,192,62,223,9,0,208,35,217,192,64,224,9,0,208,35,217,192,93,225,9,0,210,35,76,39,229,109,7,0,211,163,148,9,218,93,7,0,211,163,0,172,16,183,8,0,211,163,0,172,251,191,8,0,211,163,0,172,239,200,8,0,213,35,66,30,134,19,7,0,213,163,68,45,79,76,8,0,216,35,232,137,21,138,7,0,216,163,192,27,107,226,9,0,216,163,192,27,251,226,9,0,217,35,80,166,65,41,7,0,218,35,175,122,151,175,7,0,218,35,226,173,81,100,8,0,218,163,77,221,229,221,8,0,218,163,77,221,29,222,8,0,218,35,188,110,219,238,8,0,218,35,188,110,39,240,8,0,218,35,188,110,117,241,8,0,223,163,163,248,36,174,7,0,223,163,91,55,22,46,10,0,223,163,91,55,98,46,10,0,230,163,177,228,13,81,8,0,231,163,175,234,171,77,11,0,232,35,84,174,12,99,7,0,232,35,216,166,35,194,9,0,232,35,216,166,67,194,9,0,234,163,199,134,207,155,6,0,235,35,94,15,23,27,7,0,235,163,50,83,19,7,8,0,235,35,69,89,69,151,11,0,236,35,109,5,92,28,8,0,237,35,21,54,135,149,7,0,238,35,69,94,83,126,8,0,240,35,117,27,97,165,10,0,241,163,133,12,73,38,7,0,241,35,79,106,51,104,7,0,241,35,107,51,187,124,11,0,244,163,210,191,134,68,7,0,246,35,239,59,76,170,8,0,249,163,52,20,23,27,7,0,249,163,186,6,145,114,7,0,251,163,140,148,113,69,6,0,253,35,236,198,75,148,7,0,3,164,18,3,4,52,10,0,3,36,109,251,244,23,11,0,6,36,146,249,39,35,7,0,6,36,59,92,43,162,8,0,8,36,83,103,205,87,7,0,8,36,163,63,55,108,7,0,8,36,155,110,4,162,7,0,8,36,155,110,35,162,7,0,8,164,85,141,110,225,10,0,16,164,244,211,56,209,6,0,16,36,190,126,219,238,8,0,16,36,190,126,39,240,8,0,16,36,190,126,117,241,8,0,18,164,134,41,25,134,9,0,18,164,134,41,147,134,9,0,18,164,134,41,7,135,9,0,18,164,134,41,174,135,9,0,18,164,134,41,71,136,9,0,25,36,46,60,36,174,7,0,26,164,21,118,186,158,9,0,26,164,21,118,5,159,9,0,28,36,18,193,41,254,6,0,30,164,129,101,39,47,9,0,30,164,129,101,54,48,9,0,31,164,53,33,126,63,9,0,31,164,53,33,156,63,9,0,32,164,124,116,53,163,10,0,33,164,5,100,194,138,7,0,33,164,243,140,4,52,10,0,33,164,51,118,131,92,10,0,33,164,51,118,178,92,10,0,35,164,190,88,158,6,7,0,35,164,231,76,47,98,9,0,35,36,111,222,99,158,9,0,35,36,111,222,117,158,9,0,38,36,200,29,21,71,9,0,38,36,200,29,100,72,9,0,38,36,200,29,181,73,9,0,38,36,200,29,11,75,9,0,42,164,6,154,12,99,7,0,44,36,37,19,6,249,9,0,44,36,37,19,105,249,9,0,44,36,37,19,201,249,9,0,45,164,32,171,169,253,5,0,45,36,122,145,184,68,11,0,45,36,122,145,145,69,11,0,46,164,92,156,23,27,7,0,46,36,146,98,166,165,8,0,49,164,221,167,194,138,7,0,50,164,80,11,106,66,7,0,56,36,20,219,67,184,6,0,56,36,20,219,125,134,7,0,56,36,20,219,194,138,7,0,56,36,80,181,77,142,10,0,57,164,227,97,124,247,6,0,58,164,139,73,29,120,7,0,58,36,152,248,16,183,8,0,58,36,152,248,251,191,8,0,58,36,152,248,239,200,8,0,59,36,147,174,29,14,6,0,59,36,147,174,73,130,7,0,60,164,250,65,30,109,6,0,60,36,102,195,134,19,7,0,60,164,13,102,158,160,9,0,60,164,13,102,179,160,9,0,65,36,218,107,23,27,7,0,68,36,44,38,2,237,6,0,68,36,16,17,29,120,7,0,69,164,242,229,243,85,7,0,72,164,244,168,224,6,7,0,73,164,129,99,2,41,7,0,74,36,250,125,16,37,7,0,74,36,173,222,57,97,9,0,74,36,173,222,83,97,9,0,74,36,173,222,107,97,9,0,74,36,173,222,121,97,9,0,76,36,192,148,109,224,5,0,78,36,250,241,148,115,10,0,78,36,250,241,195,115,10,0,78,36,250,241,241,115,10,0,78,36,250,241,44,116,10,0,82,164,153,223,141,252,6,0,84,164,212,173,145,236,5,0,84,164,2,0,13,99,11,0,85,36,53,86,167,103,6,0,86,164,78,54,97,43,6,0,86,36,179,17,44,240,6,0,86,36,209,196,219,61,11,0,87,36,57,213,194,138,7,0,88,164,53,2,220,119,9,0,88,164,53,2,8,120,9,0,89,164,0,97,186,158,9,0,89,164,0,97,5,159,9,0,95,36,115,10,60,77,10,0,95,36,115,10,232,77,10,0,96,36,40,105,191,86,7,0,98,164,33,131,201,106,7,0,101,36,223,186,163,57,7,0,103,164,95,116,16,37,7,0,103,164,30,54,102,214,8,0,103,164,30,54,14,218,8,0,105,36,22,92,23,27,7,0,106,36,57,79,112,140,11,0,107,36,136,161,109,109,6,0,108,164,90,56,65,226,6,0,110,164,130,243,66,246,7,0,113,36,229,189,119,189,6,0,114,36,121,31,103,245,6,0,115,164,130,205,12,99,7,0,116,164,248,224,107,249,10,0,117,164,71,199,220,39,7,0,117,36,154,9,29,120,7,0,118,36,179,68,134,19,7,0,119,164,101,57,203,137,6,0,119,36,144,80,2,147,6,0,120,36,45,162,194,138,7,0,121,36,250,15,29,14,6,0,121,36,250,15,73,130,7,0,123,164,52,178,229,87,6,0,123,164,149,172,177,105,7,0,123,164,159,54,40,231,9,0,123,164,159,54,70,231,9,0,123,164,159,54,94,231,9,0,127,36,90,28,132,201,6,0,128,36,104,210,129,15,6,0,129,36,52,5,216,140,9,0,129,36,52,5,69,141,9,0,131,164,135,218,183,82,7,0,132,164,242,61,126,214,5,0,132,164,129,181,63,79,10,0,132,164,129,181,138,79,10,0,132,164,129,181,214,79,10,0,132,164,129,181,153,188,10,0,132,164,129,181,88,198,10,0,135,164,15,100,58,122,10,0,135,164,15,100,121,122,10,0,135,164,15,100,186,122,10,0,135,164,15,100,251,122,10,0,135,164,15,100,57,123,10,0,135,164,15,100,121,123,10,0,135,164,15,100,185,123,10,0,135,164,15,100,248,123,10,0,136,36,156,141,51,104,7,0,138,36,4,218,141,252,6,0,140,36,224,126,29,120,7,0,141,36,27,3,253,38,9,0,141,36,27,3,207,40,9,0,141,36,73,113,75,18,11,0,142,36,250,135,179,127,6,0,142,36,250,135,249,63,8,0,143,164,40,14,22,91,7,0,144,36,58,17,149,28,6,0,145,36,205,90,0,55,7,0,145,36,205,90,163,57,7,0,145,36,205,90,194,138,7,0,150,36,52,115,149,129,6,0,150,36,76,36,146,76,9,0,150,36,76,36,63,77,9,0,151,164,184,148,192,2,7,0,154,164,200,18,155,2,6,0,154,164,200,18,61,162,6,0,154,164,204,144,143,240,6,0,154,36,51,198,45,226,8,0,154,36,51,198,130,231,8,0,155,164,72,115,85,209,10,0,156,164,166,6,29,14,6,0,156,164,166,6,73,130,7,0,157,36,240,231,179,224,10,0,157,36,240,231,210,224,10,0,158,36,254,58,224,8,8,0,161,164,186,214,10,60,6,0,161,164,202,36,208,61,6,0,161,164,202,36,58,75,7,0,161,164,99,243,25,215,7,0,162,164,112,66,250,87,10,0,163,36,88,223,83,201,7,0,165,164,208,232,241,190,7,0,168,36,25,21,161,77,7,0,169,164,74,240,29,120,7,0,172,164,241,122,194,138,7,0,175,164,199,81,103,48,7,0,175,36,30,11,222,44,10,0,175,36,30,11,246,44,10,0,175,36,63,114,143,175,10,0,175,36,63,114,171,175,10,0,176,164,80,126,138,180,8,0,176,36,183,219,109,140,9,0,176,36,183,219,137,140,9,0,176,164,80,126,97,178,11,0,178,164,10,44,134,19,7,0,180,164,201,55,25,134,9,0,180,164,201,55,147,134,9,0,180,164,201,55,7,135,9,0,180,164,201,55,174,135,9,0,180,164,201,55,71,136,9,0,180,36,224,149,4,52,10,0,181,36,158,89,191,86,7,0,182,164,166,29,163,66,7,0,183,36,66,58,217,9,7,0,185,36,214,235,192,2,7,0,191,164,250,159,197,167,8,0,193,164,100,227,58,75,7,0,193,164,201,48,103,96,8,0,196,164,46,145,16,37,7,0,196,36,126,255,92,9,8,0,197,164,209,27,39,47,9,0,197,164,209,27,54,48,9,0,199,36,37,202,187,8,7,0,199,36,37,202,23,27,7,0,200,36,42,175,4,52,10,0,201,164,76,247,141,73,8,0,202,36,22,219,85,166,11,0,204,36,63,131,15,92,9,0,204,36,63,131,90,92,9,0,204,36,63,131,162,92,9,0,205,36,16,64,243,238,6,0,206,36,171,46,240,2,6,0,207,164,133,142,145,114,7,0,209,164,192,128,23,253,6,0,211,36,253,22,32,107,7,0,211,36,253,22,130,107,7,0,211,36,42,91,219,238,8,0,211,36,42,91,39,240,8,0,211,36,42,91,117,241,8,0,213,164,23,11,102,214,8,0,213,164,23,11,14,218,8,0,216,36,237,203,125,18,9,0,216,36,237,203,34,19,9,0,217,36,60,117,152,65,7,0,219,36,138,171,90,106,6,0,222,164,232,88,59,47,11,0,224,164,164,159,16,183,8,0,224,164,164,159,251,191,8,0,224,164,164,159,239,200,8,0,225,36,100,66,41,212,5,0,229,36,116,211,4,52,10,0,230,164,152,188,90,14,7,0,230,36,162,78,51,104,7,0,232,164,16,176,122,87,9,0,232,164,16,176,212,87,9,0,232,164,16,176,40,88,9,0,239,36,42,79,158,58,6,0,240,36,219,251,66,3,7,0,241,164,93,110,185,216,5,0,241,36,178,128,77,135,10,0,242,164,245,66,9,42,11,0,246,164,32,233,16,183,8,0,246,164,32,233,251,191,8,0,246,164,32,233,239,200,8,0,248,36,62,86,9,21,11,0,252,164,166,125,200,197,6,0,254,164,248,166,226,70,6,0,4,165,160,117,134,211,8,0,4,165,160,117,165,211,8,0,4,165,160,117,205,211,8,0,6,165,208,38,74,145,11,0,12,165,45,121,13,238,6,0,15,165,195,127,174,193,7,0,16,165,143,248,83,134,11,0,17,37,181,26,201,80,7,0,18,37,85,147,130,47,7,0,18,37,85,147,104,199,10,0,19,37,92,94,67,6,7,0,20,165,222,68,133,62,8,0,21,165,78,56,163,57,7,0,21,165,78,56,178,231,10,0,22,165,28,136,21,71,9,0,22,165,28,136,100,72,9,0,22,165,28,136,181,73,9,0,22,165,28,136,11,75,9,0,25,37,207,99,186,53,9,0,25,37,207,99,77,54,9,0,26,165,163,199,145,114,7,0,28,37,239,246,154,29,8,0,30,37,186,148,114,24,10,0,30,37,186,148,138,24,10,0,33,165,231,240,41,19,6,0,33,165,204,38,7,8,11,0,35,37,197,131,100,92,7,0,37,165,129,8,135,149,7,0,37,165,129,8,152,255,9,0,37,165,129,8,196,255,9,0,37,165,228,149,209,140,11,0,39,37,187,132,25,134,9,0,39,37,187,132,147,134,9,0,39,37,187,132,7,135,9,0,39,37,187,132,174,135,9,0,39,37,187,132,71,136,9,0,40,165,21,211,102,227,5,0,40,165,41,58,143,249,7,0,40,165,41,58,213,249,7,0,40,165,41,58,23,250,7,0,40,165,143,64,45,226,8,0,40,165,143,64,130,231,8,0,42,37,157,234,118,151,7,0,42,37,157,234,85,159,7,0,43,37,116,216,1,136,7,0,43,37,116,216,135,149,7,0,43,37,193,148,171,65,8,0,44,165,251,106,253,49,7,0,46,37,252,137,161,77,7,0,46,165,231,248,16,183,8,0,46,165,231,248,251,191,8,0,46,165,231,248,239,200,8,0,48,37,131,96,160,224,10,0,50,37,214,158,81,88,6,0,51,165,43,88,163,57,7,0,51,165,43,88,130,83,7,0,55,37,78,99,252,49,6,0,55,37,78,99,185,63,6,0,59,37,224,133,45,226,8,0,59,37,224,133,130,231,8,0,59,165,0,27,4,52,10,0,60,165,255,246,141,252,6,0,62,37,243,157,178,188,9,0,62,37,243,157,229,188,9,0,63,37,10,46,75,148,7,0,63,165,193,162,75,148,7,0,63,165,193,162,239,160,7,0,63,165,193,162,9,161,7,0,66,165,160,81,62,150,10,0,69,165,236,80,180,137,11,0,74,37,192,148,49,36,6,0,77,165,60,29,29,14,6,0,77,165,60,29,73,130,7,0,78,165,27,119,211,97,11,0,79,37,26,68,103,9,11,0,79,165,155,205,96,148,11,0,81,165,8,220,120,200,6,0,81,165,8,220,159,200,6,0,82,165,186,196,102,214,8,0,82,165,186,196,14,218,8,0,83,37,110,237,16,183,8,0,83,37,110,237,251,191,8,0,83,37,110,237,239,200,8,0,83,165,10,80,216,140,9,0,83,165,10,80,69,141,9,0,84,165,168,178,163,244,10,0,85,165,197,5,72,238,9,0,85,165,197,5,133,238,9,0,85,165,197,5,176,238,9,0,86,37,154,78,163,88,10,0,86,37,154,78,83,89,10,0,87,37,35,126,153,155,6,0,90,165,58,193,179,56,11,0,91,37,162,246,11,244,5,0,94,37,162,106,29,120,7,0,96,37,115,98,219,238,8,0,96,37,115,98,39,240,8,0,96,37,115,98,117,241,8,0,97,165,240,104,155,180,7,0,97,165,155,30,70,252,8,0,103,37,187,244,4,52,10,0,107,165,38,182,38,65,6,0,108,37,187,176,108,233,9,0,108,37,187,176,155,233,9,0,111,37,148,85,204,181,9,0,111,37,148,85,224,182,9,0,114,165,46,63,68,171,11,0,115,37,188,43,194,138,7,0,115,37,237,110,191,213,10,0,118,37,45,154,71,250,6,0,118,37,111,162,228,153,11,0,119,165,237,120,56,49,7,0,123,37,23,57,194,138,7,0,123,37,121,167,194,185,9,0,123,37,121,167,96,186,9,0,124,37,67,80,168,152,9,0,125,37,20,37,233,4,7,0,127,37,89,244,243,50,11,0,129,37,54,155,16,183,8,0,129,37,54,155,251,191,8,0,129,37,54,155,239,200,8,0,133,37,100,148,169,40,8,0,134,165,128,57,111,4,9,0,134,165,128,57,41,6,9,0,137,37,239,203,47,43,7,0,138,165,113,65,93,46,7,0,140,165,117,57,55,113,6,0,140,37,89,77,88,124,11,0,141,165,208,18,188,213,9,0,141,165,208,18,188,213,9,0,141,165,208,18,58,214,9,0,141,165,208,18,58,214,9,0,141,165,208,18,197,214,9,0,141,165,208,18,197,214,9,0,141,37,64,242,52,87,10,0,141,37,64,242,117,87,10,0,141,165,80,103,166,214,10,0,144,37,136,125,154,147,11,0,145,37,20,44,52,209,10,0,146,37,160,1,168,104,8,0,146,37,160,1,45,105,8,0,146,37,160,1,167,105,8,0,147,165,224,103,168,111,6,0,148,165,173,202,65,58,6,0,148,165,110,153,134,19,7,0,149,37,20,28,135,61,7,0,149,37,168,97,16,183,8,0,149,37,168,97,251,191,8,0,149,37,168,97,239,200,8,0,150,165,161,99,105,129,9,0,150,165,161,99,180,129,9,0,151,165,197,249,45,226,8,0,151,165,197,249,130,231,8,0,151,37,243,117,4,52,10,0,153,37,59,197,129,202,6,0,156,165,9,243,23,27,7,0,158,37,23,35,217,47,8,0,159,165,158,177,134,19,7,0,162,165,62,181,135,149,7,0,162,165,80,224,146,76,9,0,162,165,80,224,63,77,9,0,164,37,100,102,244,61,6,0,165,37,55,162,45,226,8,0,165,37,55,162,130,231,8,0,167,37,133,3,31,213,10,0,169,37,103,242,135,44,7,0,169,165,191,171,194,138,7,0,174,37,192,117,59,100,11,0,175,37,56,6,209,84,7,0,175,37,8,162,100,92,7,0,177,165,102,52,73,38,7,0,178,37,83,180,216,47,7,0,180,37,215,206,12,99,7,0,180,37,24,46,15,92,9,0,180,37,24,46,90,92,9,0,180,37,24,46,162,92,9,0,182,37,203,148,100,92,7,0,184,37,196,16,143,240,6,0,185,165,216,173,221,108,6,0,185,37,218,136,12,99,7,0,187,37,158,115,32,66,7,0,188,165,119,84,80,213,6,0,188,165,104,209,240,66,9,0,188,165,104,209,119,67,9,0,190,37,66,168,234,197,10,0,193,165,25,186,85,29,10,0,195,37,254,43,170,175,6,0,198,165,115,57,12,99,7,0,202,165,171,117,180,168,10,0,204,165,59,103,113,119,11,0,205,165,60,58,183,82,7,0,205,37,56,144,39,47,9,0,205,37,56,144,54,48,9,0,209,37,213,166,65,226,6,0,209,165,85,88,193,100,10,0,209,165,85,88,89,103,10,0,212,37,135,227,51,104,7,0,214,37,79,82,193,100,10,0,214,37,79,82,89,103,10,0,216,165,192,25,168,104,8,0,216,165,192,25,45,105,8,0,216,165,192,25,167,105,8,0,217,165,130,243,117,241,9,0,217,165,130,243,144,241,9,0,223,37,25,227,119,96,7,0,223,165,42,222,16,183,8,0,223,165,42,222,251,191,8,0,223,165,42,222,239,200,8,0,224,37,223,252,13,8,7,0,227,165,34,188,134,19,7,0,231,37,199,20,43,188,7,0,231,37,73,70,199,167,11,0,232,165,183,32,39,47,9,0,232,165,183,32,54,48,9,0,232,37,31,51,14,137,9,0,232,37,31,51,201,137,9,0,233,165,38,121,109,52,6,0,233,37,220,100,194,138,7,0,234,165,151,220,166,248,6,0,234,37,45,16,2,251,6,0,234,37,22,153,168,84,8,0,237,165,76,244,212,143,8,0,237,165,76,244,13,144,8,0,237,165,76,244,68,144,8,0,243,165,203,166,139,254,6,0,244,165,150,233,34,127,7,0,244,165,150,233,79,127,7,0,244,165,150,233,135,127,7,0,244,165,150,233,8,128,7,0,244,165,150,233,108,128,7,0,244,165,150,233,207,128,7,0,244,165,150,233,50,129,7,0,244,165,150,233,148,129,7,0,244,165,150,233,207,129,7,0,244,165,150,233,82,135,7,0,244,165,167,9,60,152,7,0,244,165,146,231,139,14,10,0,244,165,146,231,50,15,10,0,248,37,181,227,12,99,7,0,249,165,236,16,10,231,5,0,251,165,212,246,37,82,7,0,251,37,245,113,60,117,9,0,251,37,245,113,86,117,9,0,252,37,89,35,221,109,6,0,253,165,176,233,168,90,11,0,2,38,10,70,130,83,7,0,3,166,56,250,38,65,6,0,5,166,215,131,118,151,7,0,5,166,215,131,85,159,7,0,7,38,194,228,207,8,11,0,8,38,112,116,75,241,6,0,9,166,207,173,135,61,7,0,12,166,79,223,194,138,7,0,13,166,91,6,58,75,7,0,14,38,93,209,23,27,7,0,17,166,40,118,30,0,7,0,17,166,178,50,65,181,11,0,18,166,201,209,12,99,7,0,18,166,17,49,194,138,7,0,19,38,18,36,59,28,6,0,19,38,80,169,29,120,7,0,23,166,61,205,3,195,10,0,25,38,247,27,100,92,7,0,26,166,233,66,62,223,9,0,26,166,233,66,64,224,9,0,26,166,233,66,93,225,9,0,26,166,55,149,69,7,11,0,29,38,78,38,103,222,7,0,29,38,78,38,142,222,7,0,29,166,26,13,124,208,10,0,35,166,38,126,29,81,7,0,37,166,6,6,193,100,10,0,37,166,6,6,89,103,10,0,39,166,117,78,206,34,8,0,39,166,117,78,255,34,8,0,39,166,117,78,43,35,8,0,39,166,117,78,83,35,8,0,41,166,87,109,229,249,8,0,41,166,87,109,0,250,8,0,42,38,46,153,13,49,6,0,42,38,46,153,198,53,6,0,42,38,46,153,184,115,6,0,44,38,44,185,29,120,7,0,46,38,249,22,187,124,11,0,48,166,159,36,184,89,7,0,48,166,159,36,19,90,7,0,48,38,67,58,136,195,7,0,49,38,130,24,232,185,6,0,51,166,204,1,229,168,11,0,52,38,3,152,119,96,7,0,54,166,60,166,16,183,8,0,54,166,60,166,251,191,8,0,54,166,60,166,239,200,8,0,54,38,230,218,65,137,10,0,54,38,230,218,70,159,10,0,55,166,125,165,216,51,9,0,55,166,125,165,175,52,9,0,57,38,22,197,29,120,7,0,58,166,193,104,4,52,10,0,60,38,223,104,9,238,8,0,60,38,223,104,94,238,8,0,62,38,164,63,194,138,7,0,63,38,112,242,194,138,7,0,64,38,180,8,75,247,8,0,64,38,180,8,171,247,8,0,65,38,68,201,76,187,6,0,66,166,214,125,109,0,7,0,66,166,229,106,51,132,8,0,67,166,137,125,12,99,7,0,68,38,77,98,58,35,9,0,68,38,77,98,31,36,9,0,71,166,75,86,165,39,10,0,71,166,75,86,202,39,10,0,71,166,75,86,230,39,10,0,72,38,205,68,85,66,9,0,72,38,205,68,117,66,9,0,72,38,205,68,153,66,9,0,77,38,115,40,46,111,7,0,77,38,19,88,41,49,11,0,80,166,140,138,247,80,7,0,86,38,236,113,2,182,11,0,90,38,240,141,131,92,10,0,90,38,240,141,178,92,10,0,92,166,140,5,229,109,7,0,93,38,183,37,95,200,9,0,93,38,183,37,114,200,9,0,95,166,78,137,9,106,6,0,95,166,201,110,194,185,9,0,95,166,201,110,96,186,9,0,96,38,45,47,4,52,10,0,97,38,106,43,183,249,6,0,97,38,175,52,65,41,7,0,99,38,21,243,132,21,9,0,99,38,21,243,157,23,9,0,102,38,55,243,197,147,10,0,106,166,20,141,21,131,10,0,108,166,205,80,72,102,9,0,108,166,205,80,254,102,9,0,110,38,234,89,18,43,7,0,111,38,6,234,160,245,10,0,111,38,100,218,2,175,11,0,112,166,8,60,39,47,9,0,112,166,8,60,54,48,9,0,114,166,34,203,190,81,6,0,119,38,234,220,134,19,7,0,119,166,115,27,10,251,7,0,123,166,88,202,75,241,6,0,124,166,193,148,111,210,9,0,124,166,193,148,155,210,9,0,127,166,37,144,134,19,7,0,127,166,173,134,207,24,10,0,127,166,173,134,22,25,10,0,127,166,173,134,89,25,10,0,127,166,173,134,150,25,10,0,127,166,173,134,90,144,10,0,129,166,179,39,163,88,10,0,129,166,179,39,83,89,10,0,130,38,95,206,12,99,7,0,132,38,162,129,241,190,7,0,132,166,85,22,198,146,9,0,132,166,85,22,20,147,9,0,132,38,7,198,161,110,10,0,132,38,7,198,2,112,10,0,134,38,190,25,114,66,8,0,137,38,123,37,81,119,6,0,137,166,154,143,132,21,9,0,137,166,154,143,157,23,9,0,137,166,46,3,246,243,9,0,137,166,46,3,59,245,9,0,137,166,46,3,131,246,9,0,138,38,67,82,51,104,7,0,143,38,187,144,71,250,6,0,144,38,147,194,0,55,7,0,144,38,147,194,163,57,7,0,144,38,197,118,92,9,8,0,145,38,71,236,152,49,6,0,145,166,235,96,48,174,11,0,148,38,29,31,246,243,9,0,148,38,29,31,59,245,9,0,148,38,29,31,131,246,9,0,148,38,221,128,193,100,10,0,148,38,221,128,89,103,10,0,150,166,77,213,19,90,7,0,152,38,145,187,216,51,9,0,152,38,145,187,175,52,9,0,152,166,124,198,14,137,9,0,152,166,124,198,201,137,9,0,154,166,56,180,170,91,7,0,155,166,2,248,135,61,7,0,156,38,196,217,92,28,8,0,157,166,251,99,1,253,6,0,157,38,188,148,161,77,7,0,158,38,34,75,64,48,7,0,161,38,146,80,160,236,5,0,161,166,75,202,161,77,7,0,161,38,7,17,218,93,7,0,162,166,41,129,1,181,6,0,162,166,85,170,177,7,11,0,163,38,23,120,245,5,6,0,163,38,231,208,29,14,6,0,163,38,231,208,73,130,7,0,163,166,109,82,62,223,9,0,163,166,109,82,64,224,9,0,163,166,109,82,93,225,9,0,164,38,236,102,100,92,7,0,167,166,181,218,0,55,7,0,167,166,181,218,163,57,7,0,167,166,207,222,167,242,9,0,168,38,241,206,219,46,10,0,172,38,120,226,161,110,10,0,172,38,120,226,2,112,10,0,173,38,146,40,122,142,10,0,175,38,150,136,141,155,10,0,177,38,120,101,45,226,8,0,177,38,120,101,130,231,8,0,178,38,3,255,92,9,8,0,178,166,208,224,221,98,9,0,178,166,208,224,47,99,9,0,179,38,186,79,101,118,10,0,179,38,186,79,178,118,10,0,180,166,122,87,93,249,5,0,184,166,41,129,199,36,7,0,184,38,77,180,135,61,7,0,185,166,241,22,134,19,7,0,185,38,85,71,116,72,7,0,188,166,11,157,113,132,9,0,188,166,11,157,167,132,9,0,188,166,11,157,51,133,9,0,189,38,45,152,175,88,9,0,189,38,45,152,254,88,9,0,189,38,45,152,92,89,9,0,189,38,45,152,173,89,9,0,190,166,185,7,124,178,10,0,193,38,217,157,10,60,6,0,194,166,154,196,228,32,6,0,196,38,46,143,55,108,7,0,199,166,232,88,158,16,6,0,199,166,148,138,201,161,11,0,200,38,176,183,9,238,8,0,200,38,176,183,94,238,8,0,200,38,134,203,226,206,9,0,200,38,134,203,4,207,9,0,200,38,134,203,85,207,9,0,205,166,237,58,201,42,7,0,207,38,32,178,102,214,8,0,207,38,32,178,14,218,8,0,207,166,199,173,125,55,11,0,210,38,180,47,115,161,9,0,210,38,180,47,104,162,9,0,212,166,56,100,39,47,9,0,212,166,56,100,54,48,9,0,213,166,15,249,77,135,10,0,214,38,212,16,192,2,7,0,215,38,139,171,39,47,9,0,215,38,139,171,54,48,9,0,215,166,237,201,133,117,11,0,218,166,31,178,115,161,9,0,218,166,31,178,104,162,9,0,219,38,82,110,45,226,8,0,219,38,82,110,130,231,8,0,221,38,208,2,181,159,6,0,222,38,12,73,207,14,9,0,222,38,12,73,54,15,9,0,223,166,223,53,60,152,7,0,223,166,223,53,79,237,8,0,224,166,234,216,77,252,5,0,225,166,41,213,4,52,10,0,226,38,151,137,251,170,11,0,228,166,229,241,132,21,9,0,228,166,229,241,157,23,9,0,228,166,164,40,155,84,11,0,229,166,238,98,101,64,7,0,229,38,55,152,12,99,7,0,230,38,63,140,150,45,9,0,230,38,63,140,18,46,9,0,233,166,113,31,209,82,6,0,234,166,239,139,85,225,5,0,235,166,173,247,186,26,9,0,235,166,173,247,120,27,9,0,235,166,173,247,48,28,9,0,236,166,184,148,123,65,9,0,236,166,184,148,159,65,9,0,237,166,71,202,194,138,7,0,240,166,60,182,242,175,7,0,240,166,166,98,8,62,11,0,241,38,202,179,247,80,7,0,241,166,29,207,213,15,9,0,241,166,152,36,149,217,10,0,241,166,152,36,168,217,10,0,243,166,185,24,134,19,7,0,244,38,13,190,145,114,7,0,244,166,10,243,132,21,9,0,244,166,10,243,157,23,9,0,249,166,67,193,82,20,8,0,250,166,33,7,168,66,11,0,252,38,194,129,76,48,11,0,254,38,149,164,139,254,6,0,254,38,108,89,51,248,8,0,254,38,108,89,162,248,8,0,255,38,253,42,186,26,9,0,255,38,253,42,120,27,9,0,255,38,253,42,48,28,9,0,0,167,40,117,65,41,7,0,0,167,30,144,166,240,10,0,7,167,156,133,183,116,6,0,7,167,253,98,119,96,7,0,7,39,120,221,163,88,10,0,7,39,120,221,83,89,10,0,8,39,220,24,194,138,7,0,9,39,107,105,222,86,11,0,10,167,26,150,29,120,7,0,10,39,45,154,16,183,8,0,10,39,45,154,251,191,8,0,10,39,45,154,239,200,8,0,11,167,201,107,119,163,6,0,11,167,201,107,7,189,6,0,11,39,174,189,45,226,8,0,11,39,174,189,130,231,8,0,11,167,122,198,60,77,10,0,11,167,122,198,232,77,10,0,12,39,41,152,168,104,8,0,12,39,41,152,45,105,8,0,12,39,41,152,167,105,8,0,13,39,103,217,176,68,7,0,13,167,165,91,119,96,7,0,13,39,32,106,203,102,11,0,14,167,101,162,163,57,7,0,14,167,126,185,135,1,9,0,14,167,126,185,189,1,9,0,14,167,101,162,94,155,11,0,15,39,31,105,70,212,5,0,19,167,27,233,240,66,9,0,19,167,27,233,119,67,9,0,19,39,143,135,244,23,11,0,21,167,144,201,87,133,6,0,22,167,32,136,4,52,10,0,28,167,132,19,30,0,7,0,29,39,98,204,247,247,6,0,29,39,118,200,100,92,7,0,32,167,107,80,253,38,9,0,32,167,107,80,207,40,9,0,34,39,45,29,23,26,8,0,38,167,132,135,113,49,9,0,38,167,132,135,144,49,9,0,38,167,132,135,173,49,9,0,38,167,26,118,89,213,10,0,39,39,93,17,12,199,7,0,39,167,98,4,220,93,8,0,40,167,233,207,56,189,7,0,40,167,233,207,108,189,7,0,42,39,232,255,167,162,10,0,42,167,22,236,175,159,11,0,44,167,51,51,205,87,7,0,45,167,203,125,96,114,7,0,45,39,226,122,193,100,10,0,45,39,226,122,89,103,10,0,51,167,93,45,242,136,11,0,54,39,21,169,135,44,7,0,56,167,68,64,35,211,5,0,56,39,214,180,75,148,7,0,57,167,217,126,29,120,7,0,59,167,159,148,21,138,7,0,59,167,244,229,75,148,7,0,60,167,56,49,193,119,11,0,61,39,172,249,194,228,7,0,62,39,166,117,134,19,7,0,62,39,56,85,150,45,9,0,62,39,56,85,18,46,9,0,63,167,67,2,73,62,10,0,63,167,67,2,110,62,10,0,64,167,112,11,220,39,7,0,64,167,155,71,199,83,7,0,66,167,12,178,106,66,7,0,68,167,75,142,98,237,6,0,68,167,102,139,19,90,7,0,70,39,133,29,243,255,6,0,71,167,214,229,194,243,7,0,73,39,162,165,97,184,7,0,76,167,153,206,45,226,8,0,76,167,153,206,130,231,8,0,77,39,209,68,108,128,11,0,80,167,115,84,123,51,6,0,86,39,3,134,119,96,7,0,87,167,144,45,163,57,7,0,88,39,41,86,129,80,7,0,88,167,16,151,12,99,7,0,89,167,107,17,71,4,6,0,89,167,107,17,6,172,6,0,89,39,237,39,12,99,7,0,91,39,64,51,155,114,11,0,92,167,213,91,71,4,6,0,92,167,93,224,72,109,11,0,95,167,189,35,115,4,7,0,96,167,63,166,134,19,7,0,96,167,75,221,23,27,7,0,97,39,175,3,121,175,8,0,97,39,175,3,167,113,9,0,97,39,175,3,7,114,9,0,97,39,175,3,108,114,9,0,97,39,175,3,202,114,9,0,97,39,175,3,49,115,9,0,100,167,41,37,107,10,7,0,100,167,214,122,218,93,7,0,101,167,107,69,140,147,6,0,101,167,148,155,4,52,10,0,103,39,70,225,153,113,10,0,103,39,70,225,27,114,10,0,104,167,200,194,199,157,8,0,105,39,10,247,164,16,9,0,105,39,10,247,141,17,9,0,105,39,187,90,147,177,10,0,108,167,32,224,117,51,7,0,109,39,21,33,10,6,6,0,110,167,13,109,224,123,9,0,110,167,13,109,29,124,9,0,110,167,13,109,109,124,9,0,115,167,39,159,138,115,6,0,120,39,60,17,174,156,9,0,120,39,60,17,221,156,9,0,120,167,16,76,79,148,10,0,120,167,16,76,133,148,10,0,122,39,198,214,247,247,6,0,123,167,231,105,43,89,7,0,130,39,187,34,115,161,9,0,130,39,187,34,104,162,9,0,134,167,231,181,99,36,7,0,134,167,37,30,135,61,7,0,134,39,58,141,135,2,9,0,134,39,58,141,47,3,9,0,136,167,250,126,87,22,6,0,136,39,146,217,161,77,7,0,136,39,242,38,177,61,11,0,138,167,86,213,138,171,7,0,138,39,83,128,160,146,8,0,139,39,174,94,163,57,7,0,143,39,170,211,23,253,6,0,143,39,136,67,204,181,9,0,143,39,136,67,224,182,9,0,145,167,126,33,134,19,7,0,146,39,28,127,102,214,8,0,146,39,28,127,14,218,8,0,148,167,193,165,61,224,5,0,148,39,94,94,1,167,7,0,152,39,111,52,130,83,7,0,154,39,148,190,145,114,7,0,154,39,148,190,60,152,7,0,158,39,1,97,117,172,7,0,160,39,54,81,92,26,10,0,160,39,54,81,126,26,10,0,160,39,223,3,85,29,10,0,160,167,121,182,53,163,10,0,162,39,78,108,109,88,6,0,163,167,140,1,130,113,6,0,165,167,35,129,194,138,7,0,165,39,102,100,193,100,10,0,165,39,102,100,89,103,10,0,166,167,160,196,252,242,8,0,166,167,160,196,240,243,8,0,167,39,16,51,252,242,8,0,167,39,16,51,240,243,8,0,172,39,93,53,6,172,6,0,176,167,155,2,146,91,9,0,176,167,155,2,189,91,9,0,179,39,16,61,191,252,10,0,182,39,18,156,60,152,7,0,182,39,18,156,128,112,8,0,185,39,76,123,194,138,7,0,186,39,45,79,177,105,7,0,186,167,33,18,55,108,7,0,187,39,74,72,23,27,7,0,187,167,153,97,30,135,10,0,188,39,175,138,192,235,7,0,188,39,175,138,237,235,7,0,188,39,175,138,30,236,7,0,193,39,74,0,118,86,10,0,193,39,74,0,139,86,10,0,198,39,165,125,219,241,9,0,198,39,165,125,243,241,9,0,199,39,26,202,132,21,9,0,199,39,26,202,157,23,9,0,200,167,205,143,116,72,7,0,200,39,34,41,159,150,10,0,203,39,246,151,168,152,9,0,204,39,27,46,38,117,8,0,206,39,177,149,145,114,7,0,208,167,180,148,230,120,8,0,208,167,27,171,16,183,8,0,208,167,27,171,251,191,8,0,208,167,27,171,239,200,8,0,209,39,173,191,77,11,7,0,211,39,127,166,217,9,7,0,211,39,248,109,218,93,7,0,211,39,40,248,124,90,11,0,215,39,207,233,4,52,10,0,217,167,28,229,44,252,6,0,217,167,62,193,145,114,7,0,220,167,71,213,176,146,10,0,221,39,225,136,9,238,8,0,221,39,225,136,94,238,8,0,223,39,220,190,189,49,7,0,225,39,184,255,70,71,7,0,225,39,161,29,16,183,8,0,225,39,161,29,251,191,8,0,225,39,161,29,239,200,8,0,228,167,173,145,49,78,8,0,228,167,173,145,147,78,8,0,228,39,0,239,220,149,9,0,228,39,0,239,243,149,9,0,229,39,43,52,251,155,11,0,230,39,33,100,134,19,7,0,231,167,157,112,209,84,7,0,232,39,70,166,209,84,7,0,233,39,63,142,216,51,9,0,233,39,63,142,175,52,9,0,237,167,148,128,16,183,8,0,237,167,148,128,251,191,8,0,237,167,148,128,239,200,8,0,238,39,62,102,255,162,8,0,240,39,101,45,143,167,10,0,241,167,128,182,166,10,8,0,242,39,139,10,91,113,6,0,242,39,139,204,169,181,11,0,245,39,238,170,85,124,6,0,245,39,238,170,105,142,9,0,245,39,238,170,141,142,9,0,246,39,133,240,161,23,6,0,248,167,38,213,51,146,6,0,249,167,225,81,163,66,10,0,249,167,225,81,185,66,10,0,249,167,225,81,209,66,10,0,250,39,225,137,29,120,7,0,252,167,200,31,204,181,9,0,252,167,200,31,224,182,9,0,252,39,91,169,162,197,10,0,253,167,229,33,255,45,11,0,254,39,35,216,194,91,10,0,254,39,35,216,224,91,10,0,255,167,164,101,210,231,6,0,255,167,37,180,119,96,7,0,255,167,162,44,138,171,7,0,255,167,61,33,21,246,7,0,1,168,242,195,149,174,9,0,1,168,242,195,200,174,9,0,1,40,55,3,232,103,11,0,4,168,106,173,246,243,9,0,4,168,106,173,59,245,9,0,4,168,106,173,131,246,9,0,10,168,201,189,15,193,6,0,10,168,50,240,97,16,7,0,11,40,54,12,52,0,6,0,15,168,179,220,61,39,7,0,19,168,188,98,65,226,6,0,25,40,111,178,45,226,8,0,25,40,111,178,130,231,8,0,25,168,229,186,70,80,9,0,26,168,205,93,93,46,7,0,27,168,132,182,64,47,7,0,28,40,24,244,135,61,7,0,29,168,131,9,15,143,11,0,29,168,131,9,60,146,11,0,31,168,20,154,97,16,7,0,31,168,24,64,202,203,9,0,31,168,24,64,237,203,9,0,31,168,24,64,28,204,9,0,32,40,174,30,164,246,5,0,35,168,202,62,6,249,9,0,35,168,202,62,105,249,9,0,35,168,202,62,201,249,9,0,36,40,43,70,145,114,7,0,38,168,184,45,47,222,5,0,38,40,10,58,44,188,10,0,39,168,73,153,151,69,10,0,39,168,73,153,171,69,10,0,39,168,62,49,7,222,10,0,44,40,144,180,218,93,7,0,45,40,172,111,131,222,8,0,45,40,172,111,131,222,8,0,45,40,172,111,38,223,8,0,45,40,172,111,38,223,8,0,45,40,172,111,206,223,8,0,45,40,172,111,206,223,8,0,45,40,128,76,4,52,10,0,46,168,232,208,134,19,7,0,47,40,191,143,229,37,8,0,48,40,5,78,92,254,5,0,48,168,20,202,56,238,7,0,51,168,183,22,76,66,7,0,52,40,164,93,181,8,6,0,56,168,134,216,213,195,9,0,56,168,134,216,239,195,9,0,61,168,222,60,141,252,6,0,61,40,226,220,72,102,9,0,61,40,226,220,254,102,9,0,62,168,194,209,62,181,6,0,64,168,229,212,254,137,11,0,65,40,158,172,135,61,7,0,66,40,20,236,208,110,6,0,66,168,237,96,23,27,7,0,66,40,169,203,151,186,7,0,67,168,183,87,60,163,11,0,70,40,81,150,63,79,10,0,70,40,81,150,138,79,10,0,70,40,81,150,214,79,10,0,71,40,148,16,191,86,7,0,71,168,0,251,127,194,7,0,71,168,100,214,144,252,10,0,72,40,81,190,106,66,7,0,72,168,32,134,119,96,7,0,73,168,136,186,249,0,9,0,73,168,136,186,36,1,9,0,73,168,246,117,238,81,10,0,76,168,42,189,246,62,7,0,85,40,120,136,135,44,7,0,85,168,72,222,119,96,7,0,86,168,79,66,247,51,11,0,91,168,95,219,220,228,10,0,93,168,67,152,168,111,6,0,94,40,1,217,145,114,7,0,94,40,12,99,45,226,8,0,94,40,12,99,130,231,8,0,94,40,1,217,192,157,9,0,94,40,1,217,221,157,9,0,94,40,1,217,251,157,9,0,94,40,1,217,31,158,9,0,94,40,1,217,67,158,9,0,94,168,114,94,209,19,10,0,94,40,1,217,212,62,11,0,94,40,1,217,82,64,11,0,94,40,1,217,107,64,11,0,94,40,1,217,28,73,11,0,98,168,133,224,134,19,7,0,98,168,235,235,113,132,9,0,98,168,235,235,167,132,9,0,98,168,235,235,233,132,9,0,99,40,195,103,159,168,6,0,99,40,195,103,137,136,7,0,99,40,195,103,176,136,7,0,99,40,195,103,114,137,7,0,104,40,107,159,103,99,6,0,105,168,12,220,92,65,11,0,107,168,35,129,133,64,6,0,108,168,249,96,111,4,9,0,108,168,249,96,41,6,9,0,111,40,5,80,132,21,9,0,111,40,5,80,157,23,9,0,111,40,201,143,13,112,11,0,116,40,60,120,22,0,6,0,116,168,138,120,100,117,6,0,116,168,149,13,146,172,6,0,116,168,149,13,166,172,6,0,116,168,129,186,134,19,7,0,116,40,38,118,85,174,7,0,116,40,38,118,202,174,7,0,118,40,239,123,143,240,6,0,118,168,172,59,145,114,7,0,119,168,100,116,67,6,7,0,123,40,152,235,58,35,9,0,123,40,152,235,31,36,9,0,124,40,39,252,83,126,8,0,126,40,192,148,238,81,10,0,127,40,144,90,78,150,8,0,128,168,60,188,228,66,7,0,129,40,121,44,129,241,10,0,130,40,195,3,161,77,7,0,130,40,220,6,116,59,8,0,131,168,15,151,44,26,6,0,131,168,209,74,16,37,7,0,131,40,130,33,102,214,8,0,131,40,130,33,14,218,8,0,133,168,39,26,209,84,7,0,133,40,188,41,102,214,8,0,133,40,188,41,14,218,8,0,134,168,242,251,217,12,6,0,136,40,22,198,149,174,6,0,136,40,89,180,50,147,11,0,137,40,247,220,23,27,7,0,137,168,219,151,3,70,7,0,137,40,201,221,184,89,7,0,137,168,194,45,111,4,9,0,137,168,194,45,41,6,9,0,137,40,119,49,152,123,11,0,137,40,119,49,180,132,11,0,141,168,99,180,193,100,10,0,141,168,99,180,89,103,10,0,143,40,59,149,14,93,10,0,143,40,59,149,47,93,10,0,143,40,59,149,103,93,10,0,145,40,166,230,219,238,8,0,145,40,166,230,39,240,8,0,145,40,166,230,117,241,8,0,156,40,236,187,23,27,7,0,156,168,24,179,12,99,7,0,156,40,141,220,246,243,9,0,156,40,141,220,59,245,9,0,156,40,141,220,131,246,9,0,161,40,152,93,149,40,7,0,162,40,0,112,60,152,7,0,162,40,0,112,104,103,8,0,162,40,0,112,219,103,8,0,162,40,0,112,68,104,8,0,162,40,0,112,59,45,10,0,163,40,180,148,105,63,6,0,166,40,185,148,151,37,11,0,167,40,100,61,103,131,10,0,168,40,41,13,4,52,10,0,169,40,241,8,93,46,7,0,173,168,13,44,135,149,7,0,175,168,35,129,60,152,7,0,175,168,35,129,210,161,7,0,175,168,35,129,236,161,7,0,177,168,133,1,223,251,5,0,177,168,108,167,41,254,6,0,177,40,95,34,205,87,7,0,179,40,160,20,194,138,7,0,179,168,99,46,95,8,8,0,181,40,187,148,27,112,6,0,182,40,1,220,195,50,8,0,185,40,166,188,190,196,6,0,188,40,185,148,36,75,6,0,188,40,107,90,23,27,7,0,190,40,16,27,45,226,8,0,190,40,16,27,130,231,8,0,192,40,158,18,29,81,7,0,192,40,57,34,5,179,10,0,196,40,3,70,19,245,8,0,196,40,3,70,76,245,8,0,199,168,21,111,233,111,8,0,200,40,148,71,119,96,7,0,205,168,150,42,145,12,8,0,206,40,13,237,91,248,5,0,206,40,202,59,20,8,9,0,206,40,202,59,247,8,9,0,206,40,202,59,210,9,9,0,209,168,117,112,16,183,8,0,209,168,117,112,251,191,8,0,209,168,117,112,239,200,8,0,209,168,195,202,20,8,9,0,209,168,195,202,247,8,9,0,209,168,195,202,210,9,9,0,210,40,31,124,151,186,7,0,213,40,26,233,60,152,7,0,213,40,26,233,79,237,8,0,213,40,231,242,193,100,10,0,213,40,231,242,89,103,10,0,214,168,144,247,24,4,11,0,215,168,112,4,38,65,6,0,215,40,150,228,58,75,7,0,215,40,150,44,6,133,8,0,215,40,125,27,91,236,9,0,215,40,125,27,113,236,9,0,215,40,125,27,133,236,9,0,219,40,53,51,223,125,11,0,219,40,53,51,93,133,11,0,223,40,128,254,58,75,7,0,225,168,148,65,60,152,7,0,225,168,148,65,9,16,10,0,226,40,180,8,164,16,9,0,226,40,180,8,141,17,9,0,227,168,209,6,117,172,7,0,231,40,19,229,170,91,7,0,232,40,100,210,76,48,11,0,233,40,15,161,139,254,6,0,233,168,227,110,134,19,7,0,234,168,176,89,9,190,6,0,236,40,143,142,243,238,6,0,240,168,105,57,218,93,7,0,240,40,42,94,107,226,9,0,240,40,42,94,251,226,9,0,241,168,106,152,9,84,9,0,241,168,106,152,62,84,9,0,245,168,82,198,82,250,5,0,245,168,12,156,45,33,9,0,245,168,12,156,120,33,9,0,247,168,197,146,161,77,7,0,247,40,251,220,235,139,9,0,247,40,251,220,11,140,9,0,248,168,255,94,230,54,8,0,248,168,255,94,16,183,8,0,248,168,255,94,251,191,8,0,249,40,187,136,28,45,6,0,252,168,95,107,81,126,9,0,252,168,95,107,81,126,9,0,252,168,95,107,166,126,9,0,252,168,95,107,166,126,9,0,252,168,95,107,53,127,9,0,252,168,95,107,53,127,9,0,253,40,32,240,56,243,6,0,254,40,151,212,134,68,7,0,254,168,208,106,136,255,10,0,254,168,208,106,52,2,11,0,2,41,238,89,177,105,7,0,3,169,207,202,122,246,6,0,3,169,162,187,4,52,10,0,6,41,53,166,194,138,7,0,9,41,55,230,134,19,7,0,10,41,51,234,58,168,7,0,10,41,51,234,131,222,8,0,10,41,51,234,38,223,8,0,10,41,51,234,206,223,8,0,12,169,194,109,144,164,9,0,12,169,194,109,169,164,9,0,13,41,16,69,70,212,6,0,14,41,33,149,154,61,6,0,16,41,222,4,92,154,10,0,18,41,109,248,32,107,7,0,18,41,109,248,130,107,7,0,19,169,235,170,229,45,6,0,19,169,106,228,194,138,7,0,19,169,70,198,107,226,9,0,19,169,70,198,251,226,9,0,20,169,251,88,145,114,7,0,21,41,19,86,117,51,7,0,21,41,19,86,111,53,7,0,23,169,76,144,55,95,10,0,23,169,76,144,143,95,10,0,24,41,247,6,111,4,9,0,24,41,247,6,41,6,9,0,29,41,105,121,45,50,11,0,34,169,160,114,252,242,8,0,34,169,160,114,240,243,8,0,34,169,24,180,180,138,9,0,34,169,24,180,217,138,9,0,34,169,24,180,30,139,9,0,34,169,254,166,249,28,11,0,35,169,169,213,90,177,8,0,35,169,169,213,165,177,8,0,35,41,27,152,208,246,8,0,35,41,27,152,229,246,8,0,35,41,27,152,5,247,8,0,37,41,172,227,145,114,7,0,39,41,156,80,102,72,6,0,41,41,136,3,20,30,10,0,41,41,136,3,115,30,10,0,41,41,136,3,207,30,10,0,45,169,227,50,188,71,7,0,46,169,190,117,117,87,11,0,58,169,157,38,134,19,7,0,60,169,83,192,134,19,7,0,63,169,107,209,115,143,11,0,64,169,35,224,75,148,7,0,64,41,189,108,73,193,10,0,70,169,212,23,4,52,10,0,71,41,187,148,117,51,7,0,71,41,187,148,111,53,7,0,73,41,137,232,249,0,9,0,73,41,137,232,36,1,9,0,74,41,144,126,102,214,8,0,74,41,144,126,14,218,8,0,79,41,8,157,135,149,7,0,79,41,236,96,238,81,10,0,82,41,221,14,147,119,8,0,82,41,221,14,188,119,8,0,85,41,239,174,145,114,7,0,85,41,188,148,62,150,9,0,85,41,188,148,101,150,9,0,88,41,137,203,237,17,11,0,89,41,79,7,155,2,6,0,89,169,63,35,12,122,6,0,89,169,79,125,9,151,6,0,90,41,226,101,23,27,7,0,90,41,132,172,117,51,7,0,90,41,132,172,111,53,7,0,91,169,205,63,206,34,8,0,91,169,205,63,255,34,8,0,91,169,205,63,43,35,8,0,91,169,205,63,83,35,8,0,92,169,29,155,145,114,7,0,93,169,218,151,64,48,7,0,93,169,249,197,125,18,9,0,93,169,249,197,34,19,9,0,94,169,13,157,102,15,7,0,97,169,162,107,221,252,7,0,97,169,162,107,7,253,7,0,97,169,162,107,54,253,7,0,97,169,162,107,100,253,7,0,99,169,224,200,51,222,10,0,104,169,94,140,55,239,6,0,106,169,11,6,115,7,11,0,106,169,11,6,80,8,11,0,107,41,127,72,235,88,7,0,109,169,163,215,139,163,9,0,109,169,163,215,241,163,9,0,113,169,86,190,107,226,9,0,113,169,86,190,251,226,9,0,114,169,35,157,170,162,6,0,114,169,223,104,135,44,7,0,114,41,243,51,114,92,11,0,115,169,184,207,16,183,8,0,115,169,184,207,251,191,8,0,115,169,184,207,239,200,8,0,115,169,131,220,186,165,11,0,117,169,93,110,42,76,6,0,119,169,132,89,181,36,11,0,123,41,82,1,253,38,9,0,123,41,82,1,207,40,9,0,123,41,85,106,71,97,11,0,132,169,194,222,50,215,10,0,134,41,175,120,224,123,9,0,134,41,175,120,29,124,9,0,134,41,175,120,109,124,9,0,136,169,51,155,162,83,6,0,136,169,104,233,214,226,10,0,137,41,13,35,134,19,7,0,137,169,227,234,29,120,7,0,138,169,171,24,59,85,11,0,147,169,92,35,163,57,7,0,147,41,123,45,194,138,7,0,147,41,121,242,194,138,7,0,147,41,33,116,253,220,10,0,148,169,148,93,199,122,6,0,149,169,225,81,175,7,7,0,153,169,108,187,4,52,10,0,153,169,117,132,56,233,10,0,154,169,115,7,200,162,8,0,162,41,34,45,102,15,7,0,162,169,138,111,134,19,7,0,163,41,69,175,78,146,10,0,164,169,196,30,106,66,7,0,167,41,14,81,190,154,11,0,169,41,230,197,164,16,9,0,169,41,230,197,141,17,9,0,173,41,207,40,149,40,7,0,174,169,45,1,186,53,9,0,174,169,45,1,77,54,9,0,176,169,253,168,29,120,7,0,177,41,118,45,227,64,7,0,178,169,210,202,116,72,7,0,178,169,16,98,135,2,9,0,178,169,16,98,47,3,9,0,178,41,215,203,117,2,11,0,179,169,203,125,16,183,8,0,179,169,203,125,251,191,8,0,179,169,203,125,239,200,8,0,179,41,9,60,223,71,11,0,179,41,9,60,14,72,11,0,180,41,47,175,194,138,7,0,182,169,214,223,11,232,9,0,182,169,214,223,25,232,9,0,184,169,157,38,185,108,6,0,184,41,81,190,23,27,7,0,184,169,197,170,12,99,7,0,184,169,157,38,118,151,7,0,184,41,161,24,45,226,8,0,184,41,161,24,130,231,8,0,189,169,160,179,18,78,9,0,189,169,160,179,48,78,9,0,189,169,160,179,78,78,9,0,189,169,86,77,204,181,9,0,189,169,86,77,224,182,9,0,191,41,131,198,117,27,11,0,191,41,131,198,241,27,11,0,194,169,157,38,177,213,5,0,194,41,65,90,168,43,7,0,194,169,151,48,83,126,8,0,194,169,151,48,214,127,8,0,194,169,151,48,65,128,8,0,195,169,225,20,136,1,7,0,195,169,225,20,10,2,7,0,198,41,156,9,45,226,8,0,198,41,156,9,130,231,8,0,199,169,126,248,10,153,10,0,202,41,124,141,198,169,6,0,202,41,124,141,229,201,6,0,202,41,185,250,179,244,6,0,202,169,72,86,194,138,7,0,202,41,185,250,170,130,8,0,202,41,185,250,227,130,8,0,202,41,185,250,26,131,8,0,202,41,17,99,212,170,11,0,203,41,96,111,213,188,7,0,203,169,12,5,16,183,8,0,203,169,12,5,251,191,8,0,203,169,12,5,239,200,8,0,205,169,126,40,237,189,7,0,205,41,14,134,75,247,8,0,205,41,14,134,171,247,8,0,205,41,46,211,0,55,11,0,206,169,112,16,145,12,8,0,207,41,148,210,205,87,7,0,207,169,99,214,171,152,11,0,209,41,49,240,171,43,6,0,209,41,75,249,191,86,7,0,211,41,26,125,178,89,6,0,211,41,232,238,51,104,7,0,211,41,190,183,43,72,10,0,211,41,190,183,148,72,10,0,212,41,58,115,60,152,7,0,212,41,177,22,92,9,8,0,213,169,222,28,134,19,7,0,214,169,121,213,156,117,11,0,215,169,142,214,135,2,9,0,215,169,142,214,47,3,9,0,216,41,27,220,119,95,11,0,217,169,105,128,191,86,7,0,220,41,231,149,44,157,9,0,220,41,231,149,89,157,9,0,222,169,80,15,187,158,10,0,225,41,215,171,143,252,5,0,226,169,220,255,115,161,9,0,226,169,220,255,104,162,9,0,231,41,209,121,79,105,6,0,231,169,118,215,100,92,7,0,231,169,248,238,16,183,8,0,231,169,248,238,251,191,8,0,231,169,248,238,239,200,8,0,232,41,158,200,119,96,7,0,234,169,214,70,249,153,6,0,234,169,77,2,134,19,7,0,235,169,100,210,11,225,5,0,235,169,135,142,164,16,9,0,235,169,135,142,141,17,9,0,236,169,201,49,117,51,7,0,236,169,201,49,111,53,7,0,237,41,54,52,4,52,10,0,239,41,93,94,225,107,7,0,241,169,202,117,58,35,9,0,241,169,202,117,31,36,9,0,242,41,61,120,58,212,8,0,242,41,61,120,201,212,8,0,243,169,80,11,155,117,9,0,243,169,80,11,180,117,9,0,243,169,80,11,212,117,9,0,245,169,102,224,59,55,8,0,245,169,102,224,102,55,8,0,245,169,102,224,145,55,8,0,246,41,131,182,64,47,7,0,246,41,110,230,16,183,8,0,246,41,110,230,251,191,8,0,246,41,110,230,239,200,8,0,247,169,58,253,176,68,7,0,247,41,5,165,43,188,7,0,248,169,98,20,230,80,6,0,249,41,161,45,193,100,10,0,249,41,161,45,89,103,10,0,250,41,20,172,124,247,6,0,250,169,65,117,194,138,7,0,252,41,241,36,23,27,7,0,253,41,84,92,206,69,10,0,253,41,84,92,244,69,10,0,254,41,124,77,73,82,7,0,254,169,249,187,192,143,9,0,254,169,249,187,215,143,9,0,0,170,84,108,85,174,7,0,0,170,84,108,202,174,7,0,1,42,130,157,116,72,7,0,2,170,233,69,55,108,7,0,5,42,219,239,246,62,7,0,5,170,250,78,68,205,9,0,5,170,250,78,90,205,9,0,5,170,225,77,159,32,10,0,5,170,225,77,240,32,10,0,7,170,34,143,218,93,7,0,10,170,164,151,135,149,7,0,10,42,81,190,223,56,11,0,18,42,17,160,207,14,9,0,18,42,17,160,54,15,9,0,21,42,84,176,111,8,6,0,22,170,31,11,60,152,7,0,22,170,31,11,178,164,7,0,22,170,31,11,226,164,7,0,24,170,8,125,139,202,9,0,24,170,8,125,175,202,9,0,25,42,51,181,74,251,5,0,25,170,225,154,35,50,6,0,25,170,225,154,156,68,6,0,25,42,112,37,232,159,6,0,28,42,178,54,134,19,7,0,29,42,15,52,158,87,11,0,30,42,193,155,72,102,9,0,30,42,193,155,254,102,9,0,33,42,7,107,135,132,11,0,35,42,36,177,139,163,9,0,35,42,36,177,241,163,9,0,39,170,87,158,145,114,7,0,42,42,99,224,93,46,7,0,44,42,108,61,16,183,8,0,44,42,108,61,251,191,8,0,44,42,108,61,239,200,8,0,46,170,198,84,29,14,6,0,46,170,198,84,73,130,7,0,46,170,123,101,250,87,10,0,47,42,185,44,216,108,9,0,47,42,185,44,240,108,9,0,49,170,220,106,175,29,9,0,49,170,220,106,88,30,9,0,56,42,64,239,39,35,7,0,56,42,64,239,163,57,7,0,59,170,196,77,40,40,6,0,59,170,213,187,101,64,7,0,60,170,157,38,38,248,5,0,60,170,131,19,106,253,10,0,60,170,131,19,146,253,10,0,61,42,10,84,92,62,8,0,62,42,113,182,119,176,8,0,63,42,139,201,217,238,9,0,63,42,139,201,174,239,9,0,67,42,29,180,23,27,7,0,71,170,1,66,13,8,7,0,71,42,176,138,72,102,9,0,71,42,176,138,254,102,9,0,72,170,17,190,200,88,6,0,72,42,55,13,133,152,6,0,72,170,131,150,134,19,7,0,73,42,254,67,221,98,9,0,73,42,254,67,47,99,9,0,74,170,182,7,119,96,7,0,76,42,65,229,196,99,8,0,81,170,145,2,188,213,9,0,81,170,145,2,58,214,9,0,81,170,145,2,197,214,9,0,82,42,89,211,246,243,9,0,82,42,89,211,59,245,9,0,82,42,89,211,131,246,9,0,82,170,157,48,74,107,11,0,85,42,184,81,191,86,7,0,88,170,13,205,178,186,10,0,89,42,0,170,60,152,7,0,89,42,0,170,86,166,7,0,92,170,229,212,95,137,11,0,93,42,96,23,23,27,7,0,93,42,31,161,161,77,7,0,93,42,96,23,60,152,7,0,93,42,96,23,95,160,7,0,94,42,178,111,210,154,6,0,95,170,250,64,58,35,9,0,95,170,250,64,31,36,9,0,96,42,65,53,16,183,8,0,96,42,65,53,251,191,8,0,96,42,65,53,239,200,8,0,97,170,4,192,196,46,7,0,98,42,128,76,9,165,6,0,98,170,157,38,117,51,7,0,100,170,157,38,88,131,6,0,100,42,39,52,60,152,7,0,108,170,164,133,23,27,7,0,108,42,177,105,249,150,10,0,111,170,158,182,175,240,7,0,111,170,158,182,229,240,7,0,111,170,158,182,27,241,7,0,111,170,126,215,51,248,8,0,111,170,126,215,162,248,8,0,111,42,43,87,132,21,9,0,111,42,43,87,157,23,9,0,113,170,246,197,194,138,7,0,113,170,246,197,178,182,8,0,114,170,80,36,135,149,7,0,114,170,80,36,7,107,9,0,115,170,227,234,60,189,9,0,115,170,227,234,90,189,9,0,116,170,47,161,202,133,6,0,118,170,141,84,115,161,9,0,118,170,141,84,104,162,9,0,120,170,14,118,128,39,7,0,120,170,233,188,218,93,7,0,121,42,190,26,218,93,7,0,124,42,87,198,99,108,6,0,126,42,113,150,223,71,8,0,126,42,240,16,66,204,10,0,126,170,130,131,65,14,11,0,127,170,182,159,93,111,6,0,130,42,113,5,16,183,8,0,130,42,113,5,251,191,8,0,130,42,113,5,239,200,8,0,131,42,195,47,189,199,6,0,131,42,197,157,103,48,7,0,134,170,254,166,219,238,8,0,134,170,254,166,39,240,8,0,134,170,254,166,117,241,8,0,135,170,207,235,228,94,11,0,136,170,230,10,87,69,9,0,136,170,230,10,181,69,9,0,137,170,191,225,0,55,7,0,137,170,40,173,60,152,7,0,137,170,40,173,128,112,8,0,138,170,102,255,119,96,7,0,139,170,202,169,64,48,7,0,139,42,32,113,22,77,7,0,139,170,2,3,193,100,10,0,139,170,2,3,89,103,10,0,145,170,164,7,168,104,8,0,145,170,164,7,45,105,8,0,145,170,164,7,167,105,8,0,145,170,224,166,165,224,8,0,145,170,224,166,86,225,8,0,145,42,190,93,176,147,11,0,146,170,78,85,135,242,6,0,147,42,170,55,113,134,8,0,150,170,72,178,176,68,7,0,151,42,178,142,4,52,10,0,152,42,91,143,168,152,9,0,154,170,143,138,183,82,7,0,156,170,39,48,145,165,6,0,158,170,68,91,115,227,5,0,161,42,102,227,16,183,8,0,161,42,102,227,251,191,8,0,161,42,102,227,239,200,8,0,161,170,50,255,66,194,10,0,162,170,183,188,163,57,7,0,162,42,64,104,29,120,7,0,165,170,129,169,121,195,6,0,170,42,155,17,107,10,7,0,175,170,6,33,237,73,11,0,176,42,184,124,198,242,7,0,178,42,241,53,95,210,6,0,178,42,211,227,8,154,10,0,178,42,182,102,64,125,11,0,180,42,29,237,4,52,10,0,182,170,193,99,16,183,8,0,182,170,193,99,251,191,8,0,182,170,193,99,239,200,8,0,182,170,201,49,246,147,11,0,184,170,214,40,169,115,6,0,189,42,92,100,115,79,6,0,189,170,218,87,179,183,11,0,194,170,179,67,173,17,7,0,195,170,212,236,163,57,7,0,195,170,212,236,57,98,10,0,195,170,212,236,132,98,10,0,196,42,185,166,16,183,8,0,196,42,185,166,251,191,8,0,196,42,185,166,239,200,8,0,197,42,29,102,233,16,7,0,199,42,183,132,16,183,8,0,199,42,183,132,251,191,8,0,199,42,183,132,239,200,8,0,202,42,55,247,81,241,5,0,202,42,55,247,155,60,8,0,202,170,84,112,109,39,11,0,206,42,98,154,231,132,10,0,208,170,96,61,252,211,7,0,212,42,90,62,76,48,11,0,214,42,26,43,238,251,10,0,218,170,170,38,58,212,8,0,218,170,170,38,201,212,8,0,219,42,25,118,6,0,11,0,219,42,25,118,71,0,11,0,219,42,25,118,132,0,11,0,219,170,130,169,210,110,11,0,220,42,7,40,253,59,10,0,220,42,7,40,144,60,10,0,220,42,7,40,39,61,10,0,221,42,146,111,23,27,7,0,226,42,91,110,101,142,10,0,227,170,14,28,254,166,10,0,228,42,187,202,18,217,5,0,228,42,187,202,173,44,11,0,229,42,180,255,21,171,6,0,230,42,192,52,156,253,6,0,232,42,58,56,242,245,5,0,232,42,58,56,18,246,5,0,232,42,58,56,23,27,7,0,232,42,100,120,4,52,10,0,242,42,225,10,152,65,7,0,243,42,53,149,169,233,5,0,243,42,75,9,60,152,7,0,243,42,75,9,79,237,8,0,244,170,95,42,23,27,7,0,244,170,125,140,29,120,7,0,246,170,53,127,243,188,6,0,248,170,218,215,124,87,8,0,249,170,227,234,96,85,8,0,249,42,237,216,72,169,10,0,250,170,53,149,254,100,8,0,250,170,162,1,83,126,8,0,250,170,90,59,34,52,11,0,251,42,138,9,127,66,6,0,255,170,227,234,4,52,10,0,3,171,128,209,207,65,10,0,3,171,128,209,228,65,10,0,3,171,128,209,252,65,10,0,5,43,220,216,29,120,7,0,7,171,2,230,16,37,7,0,10,171,43,226,92,9,8,0,10,43,81,172,47,120,10,0,10,43,81,172,120,120,10,0,10,43,81,172,190,120,10,0,10,43,81,172,11,121,10,0,10,43,81,172,87,121,10,0,10,43,81,172,163,121,10,0,10,43,81,172,239,121,10,0,12,43,121,46,194,138,7,0,13,43,27,59,144,53,6,0,13,43,36,249,194,138,7,0,14,43,243,216,111,4,9,0,14,43,243,216,41,6,9,0,15,43,189,127,13,236,5,0,16,43,164,116,199,179,11,0,17,171,43,42,1,207,6,0,18,43,54,204,145,114,7,0,20,171,215,136,163,57,7,0,20,171,30,76,12,99,7,0,23,43,36,176,187,124,11,0,27,171,247,249,188,71,7,0,27,43,145,101,29,120,7,0,27,43,12,116,27,255,8,0,27,43,12,116,100,255,8,0,27,43,41,48,81,7,11,0,30,43,194,167,19,90,7,0,30,171,7,141,63,96,7,0,30,171,7,141,119,96,7,0,32,171,119,82,29,120,7,0,35,43,42,242,209,84,7,0,35,171,64,64,132,21,9,0,35,171,64,64,157,23,9,0,37,43,199,150,177,105,7,0,38,43,87,88,70,80,9,0,41,171,35,189,179,6,8,0,46,171,193,148,242,127,6,0,48,171,212,68,21,71,9,0,48,171,212,68,100,72,9,0,48,171,212,68,181,73,9,0,48,171,212,68,11,75,9,0,49,43,221,96,116,123,6,0,50,43,63,107,194,138,7,0,51,43,247,84,153,240,5,0,52,43,164,171,60,152,7,0,52,43,79,246,85,174,7,0,52,43,79,246,202,174,7,0,52,43,164,171,222,109,10,0,52,43,164,171,250,109,10,0,55,43,205,2,154,6,6,0,55,43,104,109,115,161,9,0,55,43,104,109,104,162,9,0,56,43,190,36,176,68,7,0,56,43,254,168,170,32,8,0,59,43,2,225,224,83,6,0,59,43,108,205,117,51,7,0,59,43,108,205,111,53,7,0,60,171,203,6,112,170,9,0,60,171,203,6,136,170,9,0,60,171,203,6,168,170,9,0,61,43,185,73,152,127,6,0,61,171,237,56,208,12,7,0,61,43,185,73,194,138,7,0,61,171,164,133,83,126,8,0,65,171,110,22,134,19,7,0,65,171,128,254,49,78,8,0,65,171,128,254,147,78,8,0,67,171,24,120,202,203,9,0,67,171,24,120,237,203,9,0,67,171,24,120,28,204,9,0,71,171,32,32,45,226,8,0,71,171,32,32,130,231,8,0,71,43,179,186,217,10,9,0,71,43,179,186,251,10,9,0,71,43,227,97,186,53,9,0,71,43,227,97,77,54,9,0,75,43,140,187,107,226,9,0,75,43,140,187,251,226,9,0,76,171,67,71,85,29,10,0,79,43,205,188,119,96,7,0,80,171,75,108,104,67,7,0,81,43,160,203,155,159,6,0,81,171,225,227,134,107,10,0,81,171,225,227,210,107,10,0,83,43,155,10,139,254,6,0,85,171,99,216,253,59,10,0,85,171,99,216,144,60,10,0,85,171,99,216,39,61,10,0,86,43,130,114,119,96,7,0,86,43,40,31,145,114,7,0,89,171,166,58,168,152,9,0,91,171,236,3,115,12,6,0,92,43,145,128,116,148,6,0,93,43,81,207,163,215,10,0,95,43,147,143,21,71,9,0,95,43,147,143,100,72,9,0,95,43,147,143,181,73,9,0,95,43,147,143,11,75,9,0,96,171,47,170,33,134,6,0,96,43,220,245,194,138,7,0,96,171,42,40,194,185,9,0,96,171,42,40,96,186,9,0,97,171,36,207,29,120,7,0,97,43,237,245,85,177,10,0,99,171,124,159,96,8,7,0,99,171,124,159,134,19,7,0,99,171,124,159,135,149,7,0,99,171,124,159,60,152,7,0,99,171,116,169,83,126,8,0,99,171,124,159,2,125,9,0,100,171,169,177,156,161,10,0,102,171,174,85,175,29,9,0,102,171,174,85,88,30,9,0,103,171,144,173,217,231,5,0,103,171,35,129,131,232,5,0,103,171,144,173,202,66,6,0,103,43,158,48,16,183,8,0,103,43,158,48,251,191,8,0,103,43,158,48,239,200,8,0,105,171,13,184,150,45,9,0,105,171,13,184,18,46,9,0,106,43,155,88,18,210,8,0,106,43,155,88,113,210,8,0,106,43,155,88,217,210,8,0,114,171,211,2,244,127,11,0,116,171,231,136,28,147,11,0,117,171,208,125,47,13,7,0,117,171,211,53,43,162,8,0,118,43,196,133,19,90,7,0,118,171,204,116,46,9,11,0,124,171,65,208,187,8,7,0,125,171,207,154,63,102,8,0,125,43,211,217,139,179,9,0,125,43,211,217,177,179,9,0,125,43,211,217,213,179,9,0,126,43,217,65,86,56,9,0,126,43,217,65,9,57,9,0,127,43,244,145,145,114,7,0,127,43,36,157,102,214,8,0,127,43,36,157,14,218,8,0,129,171,226,127,194,233,5,0,129,43,61,202,236,193,6,0,129,43,225,24,219,238,8,0,129,43,225,24,39,240,8,0,129,43,225,24,117,241,8,0,129,171,177,114,56,242,10,0,130,43,29,10,104,67,7,0,131,43,167,179,212,207,7,0,133,171,2,160,62,201,6,0,133,171,206,31,224,220,6,0,133,43,11,1,194,138,7,0,133,171,2,160,43,162,8,0,133,43,56,132,150,48,10,0,133,43,56,132,166,48,10,0,133,43,56,132,189,48,10,0,134,43,89,111,55,108,7,0,134,43,17,244,246,243,9,0,134,43,17,244,59,245,9,0,134,43,17,244,131,246,9,0,136,43,169,92,161,110,10,0,136,43,169,92,2,112,10,0,136,171,145,227,152,6,11,0,143,43,2,55,10,80,6,0,143,171,60,98,96,103,6,0,144,171,5,171,8,112,7,0,145,43,127,22,23,27,7,0,145,171,85,156,135,61,7,0,145,171,162,26,216,51,9,0,145,171,162,26,175,52,9,0,147,171,199,8,249,58,8,0,147,43,73,90,45,226,8,0,147,43,73,90,130,231,8,0,149,171,78,97,167,145,6,0,149,43,167,26,175,152,10,0,150,43,204,105,60,77,10,0,150,43,204,105,232,77,10,0,152,43,175,89,161,77,7,0,153,171,89,4,125,18,9,0,153,171,89,4,34,19,9,0,155,171,34,29,23,27,7,0,155,43,177,48,145,114,7,0,156,43,88,104,168,64,6,0,159,171,65,199,29,120,7,0,160,43,239,252,23,27,7,0,164,43,209,214,19,90,7,0,169,171,89,50,6,45,6,0,169,171,205,89,161,77,7,0,171,171,0,167,111,4,9,0,171,171,0,167,41,6,9,0,173,43,148,88,7,93,6,0,177,171,126,254,73,38,7,0,177,171,126,254,42,39,7,0,180,171,150,242,58,75,7,0,182,171,186,180,183,249,6,0,182,171,247,106,241,89,11,0,183,171,221,168,188,213,9,0,183,171,221,168,58,214,9,0,183,171,221,168,197,214,9,0,184,171,188,35,98,247,5,0,185,43,21,98,95,235,10,0,185,43,21,98,182,241,10,0,186,43,125,88,219,238,8,0,186,43,125,88,39,240,8,0,186,43,125,88,117,241,8,0,187,171,92,169,194,138,7,0,189,171,166,229,100,92,7,0,193,171,187,11,22,86,9,0,193,171,187,11,45,86,9,0,194,171,123,109,240,248,6,0,198,171,64,160,12,99,7,0,200,171,157,38,244,221,5,0,200,171,157,38,50,167,6,0,200,171,157,38,136,1,7,0,201,171,157,38,11,14,7,0,203,171,170,119,209,19,10,0,207,43,25,166,100,232,9,0,207,43,25,166,126,232,9,0,208,43,245,185,168,104,8,0,208,43,245,185,45,105,8,0,208,43,245,185,167,105,8,0,208,171,158,21,227,173,11,0,214,171,170,133,135,121,6,0,214,171,51,51,23,27,7,0,217,43,95,154,188,90,6,0,217,171,244,192,12,99,7,0,217,171,142,164,16,183,8,0,217,171,142,164,251,191,8,0,217,171,142,164,239,200,8,0,217,43,211,43,8,185,9,0,218,171,31,62,183,249,6,0,219,171,99,252,60,194,7,0,221,171,1,103,14,137,9,0,221,171,1,103,201,137,9,0,222,171,157,38,117,51,7,0,222,171,157,38,111,53,7,0,224,171,168,78,16,183,8,0,224,171,168,78,251,191,8,0,224,171,168,78,239,200,8,0,224,171,134,138,111,81,9,0,224,171,134,138,4,82,9,0,225,43,56,169,246,62,7,0,226,171,151,47,23,253,6,0,227,43,12,190,142,137,6,0,228,171,213,5,12,99,7,0,231,43,120,104,39,47,9,0,231,43,120,104,54,48,9,0,231,171,212,43,238,81,10,0,231,171,145,206,151,162,11,0,232,171,188,4,183,249,6,0,233,171,221,4,213,15,9,0,237,43,29,77,241,151,6,0,239,43,16,108,29,120,7,0,242,171,34,35,49,125,6,0,242,171,34,35,186,153,6,0,242,171,47,38,39,47,9,0,242,171,47,38,54,48,9,0,243,43,64,162,134,19,7,0,244,43,214,28,142,9,7,0,244,43,47,64,45,226,8,0,244,43,47,64,130,231,8,0,246,171,134,125,135,44,7,0,247,171,25,217,16,37,7,0,247,171,92,9,167,242,9,0,253,43,11,152,176,118,9,0,253,43,11,152,191,118,9,0,253,43,11,152,215,118,9,0,253,43,196,154,25,147,10,0,253,43,212,113,240,184,10,0,255,43,143,55,4,52,10,0,2,172,121,27,219,238,8,0,2,172,121,27,39,240,8,0,2,172,121,27,117,241,8,0,5,172,145,101,222,214,10,0,6,44,223,217,163,57,7,0,8,44,188,152,41,254,6,0,8,44,172,106,184,89,7,0,8,44,172,106,19,90,7,0,10,44,0,85,130,47,7,0,10,172,212,65,166,52,11,0,14,172,237,89,208,186,10,0,15,172,235,47,84,0,7,0,16,44,106,92,253,49,7,0,18,172,44,216,254,186,10,0,19,44,124,164,184,89,7,0,19,44,124,164,19,90,7,0,21,172,39,93,119,96,7,0,25,44,86,170,165,224,8,0,25,44,86,170,86,225,8,0,26,44,90,120,251,227,10,0,27,44,232,186,209,84,7,0,29,44,242,42,116,34,6,0,29,44,194,214,18,132,7,0,30,172,111,245,202,217,6,0,30,172,133,94,194,138,7,0,31,172,252,151,111,81,9,0,31,172,252,151,4,82,9,0,32,172,211,199,139,254,6,0,32,44,176,7,32,122,9,0,32,44,176,7,65,122,9,0,34,172,169,62,68,177,7,0,35,44,95,127,92,250,9,0,35,44,95,127,116,250,9,0,37,172,180,229,170,236,10,0,38,44,120,248,4,136,10,0,38,44,94,199,143,155,11,0,39,172,240,133,51,66,6,0,39,44,221,120,66,3,7,0,40,172,16,134,26,7,7,0,41,172,236,14,16,183,8,0,41,44,246,215,16,183,8,0,41,172,236,14,251,191,8,0,41,44,246,215,251,191,8,0,41,172,236,14,239,200,8,0,41,44,246,215,239,200,8,0,42,172,38,224,122,206,6,0,44,44,101,139,52,239,10,0,44,44,101,139,79,239,10,0,45,44,186,238,55,237,6,0,47,172,33,239,51,104,7,0,50,44,230,143,67,17,7,0,52,44,127,241,119,196,10,0,54,172,134,37,176,68,7,0,54,44,110,37,45,226,8,0,54,44,110,37,130,231,8,0,54,172,46,149,161,180,11,0,54,172,46,149,193,180,11,0,60,44,145,28,43,237,7,0,60,44,145,28,82,237,7,0,60,44,145,28,117,237,7,0,60,44,145,28,156,237,7,0,60,44,145,28,195,237,7,0,61,172,0,103,39,47,9,0,61,172,0,103,54,48,9,0,61,172,213,10,4,52,10,0,64,44,103,138,23,27,7,0,64,44,99,244,13,168,11,0,65,172,91,154,14,137,9,0,65,172,91,154,201,137,9,0,66,44,96,139,39,47,9,0,66,44,96,139,54,48,9,0,67,172,24,217,23,27,7,0,67,172,9,120,60,152,7,0,67,172,9,120,226,164,7,0,67,172,49,2,199,243,10,0,70,44,126,39,217,239,7,0,71,172,73,147,45,226,8,0,71,172,73,147,130,231,8,0,78,172,98,90,228,129,11,0,81,172,157,189,161,110,10,0,81,172,157,189,2,112,10,0,83,44,84,106,145,114,7,0,87,44,188,59,85,174,7,0,87,44,188,59,202,174,7,0,87,44,190,66,224,58,11,0,90,44,90,170,194,138,7,0,90,172,53,254,58,212,8,0,90,172,53,254,201,212,8,0,92,172,247,96,193,100,10,0,92,172,247,96,89,103,10,0,95,172,240,133,115,161,9,0,95,172,240,133,104,162,9,0,97,172,194,6,56,189,7,0,97,172,194,6,108,189,7,0,100,44,47,65,161,77,7,0,102,44,95,128,121,138,11,0,105,44,240,216,12,99,7,0,106,44,50,244,29,244,6,0,106,44,89,207,16,183,8,0,106,44,89,207,251,191,8,0,106,44,89,207,239,200,8,0,108,172,89,140,103,12,7,0,110,172,254,166,18,246,6,0,114,44,45,157,3,191,9,0,114,44,45,157,78,191,9,0,115,44,71,254,145,114,7,0,115,44,251,91,45,226,8,0,115,44,251,91,130,231,8,0,117,44,188,246,229,109,7,0,117,44,221,160,29,120,7,0,118,44,36,150,29,120,7,0,118,44,61,145,20,30,10,0,118,44,61,145,115,30,10,0,118,44,61,145,207,30,10,0,119,172,133,49,55,108,7,0,120,44,57,110,117,26,6,0,120,44,57,110,86,138,6,0,120,44,57,110,102,138,6,0,120,44,57,110,13,8,7,0,120,172,68,144,145,12,8,0,123,172,161,133,124,242,5,0,124,44,57,174,187,42,6,0,125,172,44,109,187,70,6,0,125,44,66,239,206,214,6,0,126,44,242,31,229,221,8,0,126,44,242,31,29,222,8,0,128,44,60,244,97,44,6,0,128,44,44,101,190,124,9,0,128,44,44,101,223,124,9,0,129,44,217,89,249,216,6,0,131,172,191,234,184,55,6,0,131,172,89,228,17,45,8,0,131,172,89,228,209,59,11,0,138,172,252,16,75,247,8,0,138,172,252,16,171,247,8,0,144,172,0,0,60,152,7,0,144,172,0,0,128,112,8,0,147,44,1,138,163,57,7,0,150,44,188,56,102,214,8,0,151,172,166,16,134,19,7,0,151,44,92,13,72,150,11,0,151,44,92,13,119,150,11,0,152,172,84,196,45,151,10,0,152,172,84,196,5,160,10,0,154,44,201,172,219,46,10,0,156,172,66,157,12,99,7,0,157,44,128,19,219,238,8,0,157,44,128,19,39,240,8,0,157,44,128,19,117,241,8,0,158,44,206,40,93,235,7,0,158,44,206,40,102,214,8,0,158,44,206,40,14,218,8,0,160,172,250,29,143,126,10,0,161,44,27,68,145,114,7,0,162,44,178,239,116,72,7,0,164,172,19,55,200,251,9,0,164,172,19,55,224,251,9,0,164,172,19,55,245,251,9,0,166,172,196,107,16,183,8,0,166,172,196,107,251,191,8,0,166,172,196,107,239,200,8,0,167,172,47,107,4,52,10,0,170,44,178,219,23,27,7,0,173,44,58,122,115,2,7,0,176,172,194,179,77,135,10,0,183,44,115,27,36,174,7,0,184,172,254,97,229,180,8,0,185,44,41,99,135,94,6,0,191,44,46,81,32,107,7,0,191,44,46,81,130,107,7,0,191,172,121,27,160,79,8,0,200,172,5,237,194,138,7,0,200,172,179,148,61,203,7,0,202,172,127,254,109,183,10,0,203,44,157,214,134,19,7,0,204,44,156,220,221,42,11,0,210,172,224,226,4,177,6,0,211,172,131,141,34,20,11,0,216,44,184,148,140,32,6,0,216,44,24,5,103,83,6,0,217,44,224,217,145,114,7,0,219,172,204,241,4,52,10,0,222,172,150,63,13,100,6,0,222,172,105,36,134,68,7,0,222,172,214,19,135,2,9,0,222,172,214,19,47,3,9,0,223,44,52,91,0,209,6,0,223,44,52,91,117,51,7,0,223,44,52,91,111,53,7,0,223,44,115,27,169,231,9,0,223,44,115,27,192,231,9,0,224,172,135,182,76,187,6,0,225,44,114,165,167,192,10,0,226,172,196,91,29,120,7,0,227,172,131,154,134,19,7,0,230,172,4,126,177,240,5,0,231,44,180,148,161,77,7,0,232,172,25,61,19,13,11,0,233,44,57,98,12,70,6,0,233,44,116,174,109,0,7,0,234,44,14,78,253,49,7,0,237,44,36,229,235,136,6,0,237,44,145,29,145,12,8,0,237,172,51,232,19,233,9,0,237,172,51,232,35,233,9,0,237,44,135,69,246,243,9,0,237,44,135,69,59,245,9,0,237,44,135,69,131,246,9,0,240,172,56,58,49,109,11,0,241,172,58,115,10,17,6,0,243,44,221,202,168,152,9,0,244,172,205,214,207,113,6,0,246,172,105,250,16,37,7,0,246,172,189,47,151,175,7,0,247,172,202,20,37,249,5,0,247,172,202,20,168,249,5,0,249,44,160,224,89,136,7,0,251,172,1,164,4,247,6,0,252,172,106,229,222,244,6,0,253,172,109,195,218,93,7,0,255,172,107,176,134,19,7,0,255,172,128,0,205,145,10,0,1,173,197,121,80,101,6,0,1,173,62,180,253,49,7,0,4,173,181,219,60,152,7,0,4,173,222,126,104,226,7,0,4,173,222,126,243,234,7,0,4,173,181,219,79,237,8,0,8,45,32,141,120,190,6,0,12,173,154,254,6,204,6,0,12,173,154,254,0,205,6,0,12,45,223,138,209,84,7,0,13,45,153,41,209,84,7,0,14,45,136,103,23,27,7,0,14,45,105,82,252,242,8,0,14,45,105,82,240,243,8,0,20,45,251,67,16,219,6,0,22,45,167,3,102,214,8,0,22,45,167,3,14,218,8,0,24,45,112,17,159,32,10,0,24,45,112,17,240,32,10,0,26,45,87,83,146,76,9,0,26,45,87,83,63,77,9,0,27,173,140,219,161,110,10,0,27,173,140,219,2,112,10,0,28,173,88,71,44,241,10,0,30,45,208,163,165,224,8,0,30,45,208,163,86,225,8,0,32,173,151,159,23,27,7,0,32,173,179,234,87,207,10,0,33,45,116,121,89,5,7,0,36,173,29,55,23,27,7,0,37,173,233,107,16,183,8,0,37,173,233,107,251,191,8,0,37,173,233,107,239,200,8,0,38,173,109,149,63,154,6,0,39,45,8,107,135,46,11,0,40,45,97,19,25,134,9,0,40,45,97,19,147,134,9,0,40,45,97,19,7,135,9,0,40,45,97,19,174,135,9,0,40,45,97,19,71,136,9,0,41,173,64,99,14,137,11,0,42,45,73,3,176,68,7,0,42,173,4,225,29,120,7,0,42,45,231,242,29,156,10,0,42,173,4,225,65,49,11,0,43,45,231,11,11,14,7,0,45,173,72,54,214,25,10,0,45,173,72,54,254,25,10,0,45,173,72,54,22,26,10,0,48,45,89,51,159,97,11,0,51,45,221,74,185,117,6,0,53,173,237,154,227,246,6,0,54,45,228,20,190,208,10,0,55,45,180,248,207,168,10,0,60,173,161,86,176,68,7,0,66,173,21,129,215,198,6,0,68,45,63,118,218,93,7,0,69,45,57,201,82,20,8,0,69,173,174,18,4,52,10,0,71,45,29,121,158,144,11,0,72,45,148,142,65,76,7,0,74,173,149,29,26,179,11,0,75,45,205,45,192,2,7,0,75,173,32,106,16,183,8,0,75,173,32,106,251,191,8,0,75,173,32,106,239,200,8,0,75,45,35,33,253,59,10,0,75,45,35,33,144,60,10,0,75,45,35,33,39,61,10,0,78,45,144,127,3,140,6,0,78,45,144,127,28,140,6,0,78,45,144,127,55,140,6,0,78,45,133,75,176,168,11,0,79,45,183,227,29,120,7,0,80,45,90,243,72,27,10,0,80,45,58,130,179,74,11,0,81,45,103,200,24,238,7,0,82,173,76,141,23,27,7,0,83,173,52,68,194,138,7,0,83,173,175,241,145,12,8,0,85,173,215,6,117,130,6,0,86,45,157,38,207,234,5,0,86,45,157,38,232,234,5,0,86,45,157,38,125,134,7,0,89,173,144,235,160,151,10,0,91,173,3,95,29,120,7,0,91,173,214,125,29,120,7,0,92,173,242,65,141,252,6,0,95,173,166,32,194,138,7,0,95,173,166,32,193,100,10,0,95,173,166,32,89,103,10,0,101,173,233,151,161,110,10,0,101,173,233,151,2,112,10,0,102,45,217,227,55,221,10,0,103,45,92,121,35,96,6,0,104,173,89,136,98,237,6,0,104,173,120,18,8,49,10,0,104,173,120,18,36,49,10,0,104,173,120,18,60,49,10,0,105,173,152,58,163,57,7,0,106,45,66,166,219,238,8,0,106,45,66,166,39,240,8,0,106,45,66,166,117,241,8,0,107,45,64,57,135,2,9,0,107,45,64,57,47,3,9,0,112,45,203,208,136,1,7,0,113,173,7,9,193,100,10,0,113,173,7,9,89,103,10,0,115,45,96,19,12,99,7,0,119,173,45,135,243,255,6,0,119,45,206,100,55,95,10,0,119,45,206,100,143,95,10,0,120,45,115,27,185,255,7,0,124,173,157,38,114,145,11,0,125,45,11,171,83,126,8,0,125,45,11,171,65,128,8,0,125,45,11,171,195,128,8,0,126,173,186,148,65,106,6,0,126,173,186,148,90,106,6,0,126,45,140,79,104,67,7,0,126,45,93,242,55,108,7,0,126,173,5,60,209,19,10,0,127,45,99,18,116,72,7,0,127,173,27,3,186,26,9,0,127,173,27,3,120,27,9,0,127,173,27,3,48,28,9,0,128,173,216,31,130,47,7,0,129,45,173,133,226,13,6,0,129,173,69,248,26,7,7,0,130,173,34,200,4,52,10,0,131,173,124,188,134,19,7,0,132,45,95,139,60,152,7,0,132,45,225,112,216,51,9,0,132,45,225,112,175,52,9,0,132,45,11,176,147,212,9,0,132,45,11,176,179,212,9,0,132,173,187,237,159,173,11,0,133,45,192,92,11,244,5,0,133,173,192,74,192,2,7,0,134,45,27,177,45,226,8,0,134,45,27,177,130,231,8,0,135,173,53,96,11,225,6,0,135,173,53,96,28,67,10,0,135,173,53,96,50,67,10,0,137,173,59,43,94,89,11,0,138,45,254,97,216,85,11,0,142,45,205,101,4,52,10,0,143,45,95,139,102,214,8,0,143,45,95,139,14,218,8,0,144,173,207,28,131,222,8,0,144,173,207,28,38,223,8,0,144,173,207,28,206,223,8,0,145,173,81,102,188,213,9,0,145,173,81,102,58,214,9,0,145,173,81,102,197,214,9,0,146,45,4,24,133,249,10,0,149,173,13,154,129,130,9,0,149,173,13,154,155,130,9,0,151,173,97,37,252,169,7,0,152,45,187,57,195,249,5,0,152,45,182,30,16,183,8,0,152,45,182,30,251,191,8,0,152,45,182,30,239,200,8,0,153,173,253,103,103,120,11,0,154,173,57,61,27,9,7,0,154,45,38,25,106,66,7,0,154,173,203,88,108,146,8,0,159,45,217,180,208,12,7,0,159,45,49,184,29,120,7,0,163,45,231,242,10,251,7,0,163,45,162,202,132,21,9,0,163,45,162,202,157,23,9,0,164,45,203,120,138,40,6,0,164,45,203,120,30,130,6,0,164,45,203,120,175,186,6,0,164,45,203,120,75,216,7,0,166,45,190,223,20,8,9,0,166,45,190,223,247,8,9,0,166,45,190,223,210,9,9,0,169,173,225,167,186,53,9,0,169,173,225,167,77,54,9,0,171,45,74,91,96,8,7,0,171,45,141,94,29,120,7,0,171,45,74,91,167,113,9,0,171,45,74,91,7,114,9,0,171,45,74,91,108,114,9,0,171,45,74,91,202,114,9,0,171,45,74,91,49,115,9,0,172,173,239,9,71,178,10,0,173,45,100,106,37,86,6,0,173,173,36,48,163,57,7,0,173,45,114,27,102,214,8,0,173,45,114,27,14,218,8,0,173,173,36,48,97,185,10,0,176,45,212,90,220,39,7,0,177,45,74,45,77,252,6,0,180,45,190,179,111,4,9,0,180,45,190,179,41,6,9,0,181,45,231,242,93,181,9,0,181,45,231,242,125,181,9,0,185,173,105,14,183,100,8,0,185,45,114,27,106,38,9,0,185,45,114,27,139,38,9,0,185,45,114,27,178,38,9,0,186,173,55,41,146,178,7,0,187,45,127,6,138,228,10,0,189,45,165,33,93,57,6,0,190,173,96,33,134,19,7,0,191,173,98,244,246,243,9,0,191,173,98,244,59,245,9,0,191,173,98,244,131,246,9,0,192,45,58,151,204,50,9,0,192,45,58,151,17,51,9,0,192,45,58,151,93,51,9,0,193,173,48,22,64,110,6,0,193,45,224,97,111,175,11,0,194,173,140,175,150,189,10,0,195,173,42,90,29,120,7,0,197,173,111,37,253,49,7,0,198,45,244,216,30,5,7,0,199,173,188,117,189,109,7,0,200,45,244,89,55,4,11,0,201,45,157,38,16,183,8,0,201,45,157,38,251,191,8,0,201,45,157,38,239,200,8,0,203,45,163,126,12,99,7,0,205,45,79,196,89,94,11,0,206,173,56,183,186,26,9,0,206,173,56,183,120,27,9,0,206,173,56,183,48,28,9,0,207,173,254,74,183,249,6,0,208,173,48,7,5,133,6,0,209,45,57,126,118,215,5,0,211,45,34,110,185,248,10,0,212,45,221,19,152,252,8,0,217,173,105,27,194,138,7,0,217,173,170,135,72,134,8,0,219,45,149,95,17,16,6,0,219,173,237,123,250,87,10,0,219,173,237,123,231,241,10,0,221,45,132,119,175,172,11,0,224,45,180,207,145,114,7,0,225,173,128,155,29,120,7,0,226,173,148,178,146,76,9,0,226,173,148,178,63,77,9,0,229,173,205,194,0,55,7,0,232,45,13,40,116,0,6,0,232,45,159,68,175,29,9,0,232,45,159,68,88,30,9,0,232,173,158,171,50,144,10,0,237,173,227,0,193,100,10,0,237,173,227,0,89,103,10,0,243,173,242,10,51,104,7,0,243,45,126,59,45,226,8,0,243,45,126,59,130,231,8,0,244,173,100,231,50,83,7,0,244,45,170,138,2,175,11,0,245,173,236,242,45,226,8,0,245,173,236,242,130,231,8,0,250,45,125,135,174,247,6,0,250,173,98,56,255,70,7,0,250,173,8,201,194,138,7,0,251,173,45,192,23,27,7,0,252,45,90,6,29,120,7,0,254,173,207,77,123,130,10,0,254,173,207,77,135,130,10,0,255,45,232,132,4,52,10,0,0,174,143,212,176,68,7,0,0,174,86,34,211,65,8,0,1,46,185,52,133,89,7,0,2,174,68,129,176,147,11,0,3,46,80,80,65,41,7,0,3,174,54,135,75,148,7,0,4,46,64,245,64,78,11,0,6,174,198,185,131,222,8,0,6,174,198,185,38,223,8,0,6,174,198,185,206,223,8,0,9,174,174,60,141,252,6,0,11,46,171,175,45,226,8,0,11,46,171,175,130,231,8,0,12,46,100,218,242,90,6,0,14,174,193,78,95,8,8,0,14,174,193,78,140,8,8,0,15,46,151,113,64,70,7,0,15,46,115,178,246,243,9,0,15,46,115,178,59,245,9,0,16,46,16,244,91,218,10,0,19,174,134,51,58,212,8,0,19,174,134,51,201,212,8,0,20,46,183,160,206,214,6,0,20,174,41,4,117,51,7,0,20,174,41,4,111,53,7,0,22,46,102,7,194,109,11,0,23,46,74,188,21,246,7,0,26,174,188,151,205,6,6,0,26,174,66,97,16,183,8,0,26,174,66,97,251,191,8,0,26,174,66,97,239,200,8,0,26,174,85,170,238,9,11,0,28,46,212,45,216,156,6,0,28,46,95,66,65,41,7,0,31,46,124,221,176,222,10,0,37,46,57,7,4,52,10,0,46,46,214,103,58,75,7,0,48,46,134,248,66,3,7,0,49,46,231,10,65,41,7,0,49,46,92,240,253,38,9,0,49,46,92,240,207,40,9,0,52,46,39,7,171,25,11,0,53,174,180,126,46,107,6,0,53,46,16,2,96,8,7,0,53,46,104,54,116,72,7,0,54,46,100,65,253,49,7,0,54,174,105,139,10,243,10,0,57,174,182,158,192,2,7,0,58,174,249,189,130,249,6,0,59,174,252,96,255,255,8,0,59,174,252,96,30,0,9,0,60,46,170,62,204,50,9,0,60,46,170,62,17,51,9,0,60,46,170,62,93,51,9,0,62,174,247,208,195,12,6,0,62,174,247,208,31,85,6,0,68,46,74,232,228,66,7,0,68,174,19,207,75,247,8,0,68,174,19,207,171,247,8,0,69,46,72,222,164,16,9,0,69,46,72,222,141,17,9,0,71,46,26,254,15,92,9,0,71,46,26,254,90,92,9,0,71,46,26,254,162,92,9,0,79,174,30,4,58,75,7,0,80,174,64,41,115,86,9,0,80,174,64,41,181,86,9,0,82,46,77,225,86,248,9,0,82,46,77,225,129,248,9,0,82,46,77,225,171,248,9,0,83,174,243,37,3,53,8,0,84,46,150,34,218,93,7,0,85,174,164,212,138,227,7,0,86,174,133,104,223,113,7,0,88,174,224,186,151,97,10,0,88,174,224,186,176,97,10,0,88,174,224,186,230,97,10,0,89,174,233,4,16,183,8,0,89,174,233,4,251,191,8,0,89,174,233,4,239,200,8,0,94,174,1,131,246,7,11,0,97,46,244,176,183,82,7,0,99,174,123,21,247,125,6,0,99,46,220,101,131,222,8,0,99,46,220,101,38,223,8,0,99,46,220,101,206,223,8,0,101,174,50,152,67,6,7,0,105,174,111,140,120,197,10,0,110,46,90,71,117,240,6,0,111,46,54,250,204,50,9,0,111,46,54,250,17,51,9,0,111,46,54,250,93,51,9,0,111,174,128,199,228,179,10,0,114,46,1,221,133,234,5,0,114,46,236,94,206,221,10,0,115,46,249,143,151,175,7,0,119,46,243,229,194,138,7,0,119,46,243,229,216,157,7,0,122,46,134,213,102,214,8,0,122,46,134,213,102,214,8,0,122,46,134,213,14,218,8,0,122,46,134,213,14,218,8,0,123,46,50,202,253,49,7,0,123,46,198,190,145,114,7,0,124,46,88,181,145,164,6,0,125,46,72,202,163,57,7,0,126,174,29,72,102,214,8,0,126,174,29,72,14,218,8,0,126,174,70,196,72,238,9,0,126,174,70,196,133,238,9,0,126,174,70,196,176,238,9,0,129,46,18,212,66,66,11,0,141,46,70,245,102,214,8,0,141,46,70,245,14,218,8,0,143,174,42,82,135,149,7,0,143,174,42,82,214,99,10,0,143,174,42,82,22,100,10,0,143,174,42,82,82,100,10,0,144,46,36,254,26,7,7,0,148,174,100,16,156,253,6,0,150,46,248,132,23,27,7,0,150,174,127,248,219,238,8,0,150,174,127,248,39,240,8,0,150,174,127,248,117,241,8,0,151,46,197,165,194,138,7,0,152,174,160,35,86,100,6,0,152,174,160,35,75,113,6,0,152,174,128,229,135,149,7,0,152,174,128,229,60,152,7,0,154,174,254,201,134,65,6,0,154,174,237,38,158,121,6,0,157,174,211,124,102,214,8,0,157,174,211,124,14,218,8,0,158,46,15,240,23,27,7,0,158,46,151,232,188,213,9,0,158,46,151,232,58,214,9,0,158,46,151,232,197,214,9,0,159,174,73,171,180,250,5,0,159,174,231,63,134,19,7,0,159,46,235,168,160,79,8,0,159,174,57,107,216,140,9,0,159,174,57,107,69,141,9,0,160,46,238,137,71,250,6,0,162,174,121,11,8,233,5,0,162,174,121,11,38,233,5,0,162,46,125,185,189,246,6,0,163,46,110,105,55,237,6,0,165,46,217,74,87,69,9,0,165,46,217,74,181,69,9,0,167,174,232,20,57,209,5,0,171,174,189,209,85,6,6,0,172,174,116,26,75,241,6,0,172,46,157,198,147,110,7,0,172,46,157,198,83,131,8,0,175,174,48,14,112,28,6,0,175,174,48,14,37,5,8,0,176,46,181,148,120,43,6,0,176,46,181,148,172,167,6,0,184,46,45,5,252,235,5,0,185,174,1,127,16,219,6,0,185,46,171,254,134,19,7,0,185,174,1,127,117,51,7,0,185,174,1,127,111,53,7,0,185,46,171,254,226,25,8,0,185,46,171,254,9,238,8,0,185,46,171,254,94,238,8,0,188,174,62,85,248,5,7,0,188,46,247,143,194,138,7,0,191,46,8,170,252,169,7,0,191,46,239,41,125,18,9,0,191,46,239,41,34,19,9,0,196,174,220,135,60,152,7,0,196,174,220,135,104,103,8,0,196,174,220,135,219,103,8,0,196,174,220,135,68,104,8,0,196,174,220,135,59,45,10,0,201,174,9,184,30,5,7,0,202,174,185,124,100,224,7,0,202,174,23,235,76,25,11,0,204,46,246,189,194,138,7,0,207,46,214,241,168,152,9,0,207,46,103,52,60,77,10,0,207,46,103,52,232,77,10,0,208,174,140,73,102,214,8,0,208,174,140,73,14,218,8,0,210,174,163,133,169,82,10,0,210,174,163,133,203,82,10,0,212,46,236,8,144,134,10,0,214,174,130,138,148,205,6,0,216,46,198,148,185,113,8,0,222,174,58,69,205,87,7,0,222,46,109,9,60,152,7,0,222,46,109,9,5,4,9,0,222,46,109,9,54,4,9,0,227,46,189,134,101,73,6,0,228,46,107,54,201,182,7,0,229,174,248,218,2,41,7,0,230,174,182,4,119,96,7,0,230,174,194,95,118,151,7,0,233,46,187,200,210,71,11,0,234,174,8,237,246,243,9,0,234,174,8,237,59,245,9,0,234,174,8,237,131,246,9,0,237,46,220,46,160,79,8,0,239,174,97,127,145,114,7,0,244,46,90,27,241,190,7,0,245,46,223,64,135,61,7,0,245,174,250,2,16,183,8,0,245,174,250,2,251,191,8,0,245,174,250,2,239,200,8,0,246,174,235,126,68,141,6,0,248,46,224,22,211,17,7,0,248,46,13,214,57,103,7,0,248,174,179,133,111,4,9,0,248,174,179,133,41,6,9,0,249,174,218,136,135,44,7,0,253,174,46,195,156,204,10,0,2,47,217,144,134,19,7,0,2,47,169,142,29,120,7,0,2,47,241,88,186,53,9,0,2,47,241,88,77,54,9,0,3,175,172,125,36,21,11,0,6,47,199,46,229,40,7,0,6,175,217,26,204,181,9,0,6,175,217,26,224,182,9,0,7,47,211,143,111,81,9,0,7,47,211,143,4,82,9,0,7,175,14,169,50,16,10,0,7,175,14,169,85,16,10,0,7,175,14,169,119,16,10,0,7,175,255,100,4,52,10,0,9,47,241,190,198,146,9,0,9,47,241,190,20,147,9,0,10,175,172,72,29,120,7,0,11,47,9,9,51,248,8,0,11,47,9,9,162,248,8,0,11,47,15,100,175,88,9,0,11,47,15,100,254,88,9,0,11,47,15,100,92,89,9,0,11,47,15,100,173,89,9,0,15,47,75,33,16,37,7,0,16,175,128,19,12,99,7,0,16,47,35,97,161,110,10,0,16,47,35,97,2,112,10,0,17,47,50,204,4,52,10,0,20,175,233,209,141,185,6,0,21,175,91,156,175,160,6,0,22,47,24,100,111,81,9,0,22,47,24,100,4,82,9,0,23,47,216,89,4,52,10,0,24,47,19,190,209,182,10,0,27,47,54,141,145,151,6,0,27,47,54,141,226,179,6,0,29,47,170,157,80,83,7,0,29,175,182,221,95,111,7,0,32,175,250,222,0,55,7,0,33,175,224,120,89,5,7,0,34,47,34,103,145,12,8,0,34,47,65,35,132,21,9,0,34,47,65,35,157,23,9,0,35,47,141,196,51,104,7,0,36,47,36,21,179,145,10,0,40,175,237,56,167,113,9,0,40,175,237,56,7,114,9,0,40,175,237,56,108,114,9,0,40,175,237,56,202,114,9,0,40,175,237,56,49,115,9,0,41,47,191,166,241,109,6,0,41,175,147,142,186,53,9,0,41,175,147,142,77,54,9,0,42,47,3,136,41,150,10,0,44,47,213,103,134,19,7,0,46,47,11,132,217,222,5,0,53,47,32,252,71,250,6,0,54,175,225,190,145,114,7,0,54,175,138,142,207,14,9,0,54,175,138,142,54,15,9,0,57,47,232,86,77,135,10,0,58,47,65,129,16,219,6,0,59,47,92,72,0,48,7,0,60,175,29,108,14,228,5,0,60,175,122,191,182,13,7,0,60,175,29,108,136,171,10,0,64,175,241,131,132,255,6,0,64,175,241,131,63,96,7,0,66,175,91,14,195,163,10,0,77,175,206,234,163,57,7,0,80,175,244,76,144,252,10,0,84,47,237,139,212,243,6,0,85,175,149,24,135,2,9,0,85,175,149,24,47,3,9,0,86,175,105,139,83,244,10,0,88,175,53,65,6,10,11,0,89,47,144,235,134,19,7,0,93,175,47,51,213,115,11,0,96,47,225,6,134,19,7,0,98,175,36,233,218,213,6,0,98,47,31,44,243,41,11,0,103,47,54,188,85,126,6,0,103,175,240,77,29,120,7,0,104,47,79,36,140,198,6,0,104,47,41,78,16,183,8,0,104,47,41,78,251,191,8,0,104,47,41,78,239,200,8,0,104,47,34,55,102,214,8,0,104,47,34,55,14,218,8,0,106,175,234,247,119,96,7,0,106,175,239,205,102,214,8,0,106,175,239,205,14,218,8,0,106,175,37,103,45,226,8,0,106,175,37,103,130,231,8,0,106,47,35,86,186,26,9,0,106,47,35,86,120,27,9,0,106,47,35,86,48,28,9,0,115,47,111,150,184,89,7,0,115,47,111,150,19,90,7,0,119,175,122,80,101,137,6,0,121,175,137,233,234,138,10,0,122,47,0,170,23,27,7,0,123,175,38,145,213,84,8,0,124,47,202,32,172,3,6,0,124,47,202,32,198,33,6,0,124,47,202,32,55,251,7,0,126,47,19,183,194,138,7,0,126,47,110,164,164,142,10,0,126,175,226,33,249,171,10,0,128,47,3,145,146,76,9,0,128,47,3,145,63,77,9,0,129,175,55,127,163,255,6,0,129,47,88,239,77,11,7,0,130,175,161,231,245,13,8,0,138,47,86,179,116,72,7,0,138,47,214,13,60,152,7,0,138,47,214,13,5,4,9,0,138,47,214,13,54,4,9,0,142,175,65,32,178,188,9,0,142,175,65,32,229,188,9,0,145,175,218,215,93,181,9,0,145,175,218,215,125,181,9,0,146,175,78,253,119,96,7,0,147,47,70,59,82,192,10,0,148,47,58,130,134,19,7,0,148,47,213,88,105,164,11,0,150,47,152,38,71,250,6,0,150,47,60,188,111,4,9,0,150,47,60,188,41,6,9,0,151,47,200,33,47,43,7,0,151,175,67,210,168,84,10,0,151,175,67,210,226,84,10,0,153,47,99,0,252,242,8,0,153,47,99,0,240,243,8,0,162,47,162,241,4,247,6,0,164,175,190,181,102,214,8,0,164,175,190,181,14,218,8,0,165,47,91,108,240,248,6,0,165,47,125,234,135,44,7,0,168,47,166,96,243,238,6,0,168,175,175,133,145,114,7,0,170,175,176,140,4,52,10,0,179,47,117,61,164,16,9,0,179,47,117,61,141,17,9,0,179,47,142,111,31,161,11,0,181,175,252,165,148,181,6,0,183,47,3,197,205,87,7,0,185,47,245,135,253,187,6,0,186,47,124,129,240,248,6,0,186,175,46,84,220,39,7,0,186,47,124,129,2,92,7,0,186,47,91,59,21,138,7,0,186,47,91,59,89,190,7,0,187,175,221,35,235,46,6,0,188,47,94,15,119,32,6,0,189,47,29,33,229,109,7,0,190,47,62,110,120,129,10,0,192,47,147,120,68,77,6,0,193,47,194,98,102,214,8,0,193,47,194,98,14,218,8,0,194,47,186,227,16,183,8,0,194,47,186,227,251,191,8,0,194,47,186,227,239,200,8,0,194,47,13,137,81,126,9,0,194,47,13,137,166,126,9,0,194,47,13,137,53,127,9,0,198,175,247,135,233,4,7,0,199,175,57,185,189,199,6,0,201,47,102,255,38,92,7,0,202,175,191,31,193,100,10,0,202,175,191,31,89,103,10,0,203,47,70,124,183,82,7,0,209,47,75,5,117,51,7,0,214,175,218,169,71,108,10,0,216,47,111,45,153,62,11,0,218,47,146,30,145,114,7,0,221,175,172,8,137,144,6,0,221,47,206,181,158,37,9,0,221,47,206,181,187,37,9,0,224,47,100,14,23,27,7,0,226,175,8,32,119,251,8,0,226,175,8,32,150,251,8,0,229,175,194,243,44,81,10,0,229,175,194,243,73,81,10,0,230,175,188,13,29,120,7,0,232,47,157,212,65,76,7,0,233,47,34,126,235,129,6,0,233,47,34,126,82,136,6,0,234,175,89,210,129,15,6,0,235,175,98,230,161,77,7,0,238,47,179,213,9,9,8,0,243,47,60,241,253,38,9,0,243,47,60,241,207,40,9,0,243,47,4,175,170,70,9,0,243,47,4,175,203,70,9,0,243,175,159,25,217,202,10,0,245,175,86,200,23,27,7,0,245,47,27,150,207,48,7,0,245,175,215,212,4,52,10,0,247,175,143,44,110,229,9,0,247,175,143,44,145,229,9,0,247,175,143,44,171,229,9,0,248,175,51,170,213,52,6,0,248,47,149,226,45,226,8,0,248,47,149,226,130,231,8,0,249,175,72,172,116,72,7,0,249,175,17,24,160,79,8,0,249,175,79,228,72,102,9,0,249,175,79,228,254,102,9,0,250,47,238,40,230,16,6,0,252,175,243,20,29,120,7,0,4,48,219,7,53,163,10,0,4,48,5,29,150,189,10,0,5,176,44,186,117,71,7,0,6,48,231,211,255,70,7,0,7,48,70,82,246,243,9,0,7,48,70,82,59,245,9,0,7,48,70,82,131,246,9,0,11,48,157,244,124,247,6,0,12,176,215,173,208,12,7,0,17,176,88,195,102,214,8,0,17,176,88,195,14,218,8,0,18,48,52,76,57,144,6,0,18,48,133,29,168,152,9,0,19,48,100,115,100,178,8,0,20,48,29,70,201,106,7,0,21,176,189,144,210,76,6,0,21,176,243,87,16,183,8,0,21,176,243,87,251,191,8,0,21,176,243,87,239,200,8,0,23,176,227,175,239,22,8,0,26,48,190,251,101,64,7,0,29,176,127,15,86,56,9,0,29,176,127,15,9,57,9,0,31,48,239,41,23,27,7,0,31,176,87,158,55,225,10,0,31,48,73,7,224,66,11,0,33,176,53,244,12,99,7,0,33,48,142,181,161,110,10,0,33,48,142,181,2,112,10,0,34,48,13,225,0,55,7,0,34,48,13,225,177,105,7,0,35,48,180,188,29,120,7,0,38,176,89,130,134,19,7,0,41,176,157,38,103,238,5,0,48,48,20,223,92,155,6,0,48,48,243,95,101,64,7,0,48,48,16,233,218,93,7,0,52,48,65,196,111,4,9,0,52,48,65,196,41,6,9,0,53,176,214,159,194,138,7,0,58,176,147,61,12,99,7,0,62,48,120,36,12,99,7,0,64,48,153,134,163,57,7,0,65,176,6,70,134,19,7,0,66,48,22,255,2,168,8,0,66,48,22,255,65,168,8,0,66,48,22,255,125,168,8,0,68,48,191,49,111,81,9,0,68,48,191,49,4,82,9,0,69,176,72,222,12,139,10,0,72,176,146,42,145,114,7,0,72,176,132,110,164,16,9,0,72,176,132,110,141,17,9,0,76,48,21,237,31,145,11,0,78,176,155,247,241,17,7,0,78,176,180,195,16,183,8,0,78,176,180,195,251,191,8,0,78,176,180,195,239,200,8,0,79,176,242,209,23,27,7,0,82,176,66,93,15,92,9,0,82,176,66,93,90,92,9,0,82,176,66,93,162,92,9,0,83,48,231,237,132,21,9,0,83,48,231,237,157,23,9,0,85,176,172,62,134,19,7,0,86,176,69,12,37,58,6,0,87,48,144,195,167,242,9,0,92,176,53,193,193,100,10,0,92,176,53,193,89,103,10,0,98,176,85,210,147,189,7,0,99,176,14,63,220,171,9,0,99,176,14,63,247,171,9,0,101,176,147,153,65,238,10,0,101,48,180,230,158,3,11,0,101,48,46,120,243,67,11,0,107,48,26,40,200,228,5,0,107,176,93,218,9,238,8,0,107,176,93,218,94,238,8,0,107,176,12,246,54,159,10,0,107,176,93,218,198,198,10,0,110,176,219,127,96,114,7,0,110,176,219,127,60,152,7,0,110,176,219,127,163,160,7,0,112,176,216,5,179,180,10,0,119,48,197,5,194,138,7,0,119,48,69,144,216,176,10,0,119,48,69,144,248,176,10,0,122,176,143,161,253,49,7,0,122,176,46,57,139,172,11,0,124,176,228,0,161,77,7,0,124,176,99,158,11,144,10,0,126,176,60,101,13,62,6,0,126,48,129,169,252,193,6,0,127,176,44,67,16,183,8,0,127,176,44,67,251,191,8,0,127,176,44,67,239,200,8,0,127,176,246,224,165,224,8,0,127,176,246,224,86,225,8,0,129,176,100,124,132,21,9,0,129,176,100,124,157,23,9,0,131,48,205,135,19,90,7,0,132,48,4,241,161,77,7,0,133,48,80,174,3,191,9,0,133,48,80,174,78,191,9,0,134,176,1,4,135,44,7,0,137,176,86,22,47,13,7,0,137,48,125,118,209,69,11,0,138,176,208,200,145,114,7,0,139,176,63,222,56,238,7,0,140,48,17,170,160,79,8,0,141,48,168,57,165,5,8,0,141,48,168,57,221,5,8,0,141,48,168,57,17,6,8,0,141,176,150,99,4,52,10,0,141,48,168,57,133,147,11,0,142,48,71,93,172,51,6,0,142,176,201,143,248,152,6,0,148,176,70,139,221,98,9,0,148,176,70,139,47,99,9,0,150,48,27,198,107,10,7,0,152,176,148,8,119,7,7,0,152,48,133,204,135,44,7,0,154,176,206,187,41,232,10,0,154,176,206,187,64,232,10,0,155,176,160,25,139,254,6,0,157,176,231,237,18,210,8,0,157,176,231,237,113,210,8,0,157,176,231,237,217,210,8,0,158,48,1,219,192,2,7,0,158,176,33,46,176,68,7,0,158,176,238,68,16,183,8,0,158,176,238,68,251,191,8,0,158,176,238,68,239,200,8,0,161,176,49,102,0,55,7,0,161,176,49,102,163,57,7,0,162,176,185,111,27,222,5,0,162,48,74,32,11,229,5,0,164,48,216,126,152,221,10,0,165,176,157,38,60,182,8,0,165,176,238,181,72,102,9,0,165,176,238,181,254,102,9,0,166,48,128,13,179,122,9,0,167,48,38,202,30,247,5,0,167,176,85,10,135,187,10,0,168,176,30,86,82,219,5,0,168,48,100,103,71,250,6,0,168,48,100,103,107,10,7,0,171,176,160,199,106,117,11,0,172,48,80,230,201,106,7,0,172,176,202,230,62,223,9,0,172,176,202,230,64,224,9,0,172,176,202,230,93,225,9,0,173,176,35,118,13,8,7,0,173,48,84,39,45,226,8,0,173,48,84,39,130,231,8,0,174,176,177,159,194,138,7,0,175,176,110,170,43,162,8,0,175,48,108,11,139,226,10,0,178,48,151,182,134,19,7,0,179,176,235,86,204,181,9,0,179,176,235,86,224,182,9,0,183,48,112,89,138,171,7,0,186,48,28,64,92,255,6,0,186,48,13,254,58,212,8,0,186,48,13,254,201,212,8,0,187,176,49,90,150,225,5,0,188,176,118,51,135,149,7,0,188,176,118,51,60,152,7,0,188,176,118,51,131,44,9,0,190,48,22,243,119,132,6,0,190,176,38,0,41,197,10,0,193,48,171,116,177,105,7,0,194,48,212,105,204,181,9,0,194,48,212,105,224,182,9,0,194,176,251,38,159,38,11,0,195,48,175,235,191,86,7,0,195,48,246,253,211,114,8,0,195,48,246,253,150,45,9,0,195,48,246,253,18,46,9,0,195,48,122,69,115,161,9,0,195,48,122,69,104,162,9,0,196,48,191,27,104,67,7,0,196,176,57,222,235,50,8,0,196,176,137,247,102,214,8,0,196,176,137,247,14,218,8,0,198,176,92,69,135,61,7,0,198,48,80,126,78,46,8,0,200,48,77,126,102,214,8,0,200,48,77,126,14,218,8,0,201,176,47,51,135,149,7,0,201,176,47,51,60,152,7,0,202,176,106,162,61,55,6,0,202,176,106,162,187,129,6,0,202,176,106,162,58,75,7,0,205,48,105,37,161,77,7,0,206,48,38,100,102,214,8,0,206,48,38,100,14,218,8,0,208,176,62,126,165,212,10,0,209,176,22,127,199,147,7,0,209,176,22,127,226,164,7,0,209,176,22,127,8,176,7,0,210,176,101,93,75,165,6,0,211,176,105,27,194,138,7,0,211,48,63,39,204,181,9,0,211,48,63,39,224,182,9,0,214,176,167,128,142,113,7,0,215,48,125,143,148,182,6,0,215,48,14,189,107,7,8,0,219,48,66,12,23,27,7,0,221,176,39,14,58,212,8,0,221,176,39,14,201,212,8,0,221,48,25,86,193,100,10,0,221,48,25,86,89,103,10,0,222,48,55,25,72,131,11,0,223,48,47,243,163,57,7,0,224,48,47,46,16,183,8,0,224,48,47,46,251,191,8,0,224,48,47,46,239,200,8,0,224,176,73,146,253,38,9,0,224,176,73,146,207,40,9,0,230,48,222,103,174,127,11,0,234,176,39,171,4,52,10,0,236,176,68,185,0,40,6,0,238,48,8,142,107,151,10,0,239,48,244,147,111,4,9,0,239,48,244,147,41,6,9,0,239,176,2,188,216,51,9,0,239,176,2,188,175,52,9,0,243,48,110,137,116,72,7,0,249,48,198,63,159,154,11,0,251,176,85,140,134,19,7,0,0,177,125,28,116,72,7,0,1,177,49,202,36,174,7,0,1,177,69,235,242,181,11,0,7,177,21,154,179,21,6,0,7,177,21,154,182,22,6,0,7,49,84,167,135,193,6,0,7,177,170,137,145,114,7,0,10,177,212,54,29,120,7,0,14,177,107,41,173,37,8,0,15,49,218,5,134,19,7,0,16,49,32,105,58,232,5,0,19,177,25,63,219,238,8,0,19,177,25,63,39,240,8,0,19,177,25,63,117,241,8,0,19,177,120,233,20,8,9,0,19,177,120,233,247,8,9,0,19,177,120,233,210,9,9,0,20,49,170,230,80,182,6,0,21,49,48,49,184,132,7,0,23,49,99,26,51,104,7,0,27,177,149,103,154,213,5,0,27,49,113,238,115,4,7,0,27,177,185,27,134,19,7,0,27,49,48,197,94,89,11,0,28,177,108,2,71,244,5,0,28,49,44,1,186,26,9,0,28,49,44,1,120,27,9,0,28,49,44,1,48,28,9,0,29,177,203,241,250,38,6,0,30,49,84,24,178,130,6,0,30,49,43,193,97,16,7,0,32,49,203,153,184,209,5,0,35,177,131,10,226,252,9,0,35,177,131,10,4,253,9,0,35,177,131,10,30,253,9,0,36,49,247,200,186,26,9,0,36,49,247,200,120,27,9,0,36,49,247,200,48,28,9,0,37,49,141,98,142,113,7,0,37,49,213,95,60,152,7,0,37,49,213,95,202,164,7,0,38,49,157,38,76,24,6,0,39,177,45,218,45,226,8,0,39,177,45,218,130,231,8,0,40,49,183,127,175,184,7,0,40,177,6,113,83,54,11,0,41,49,63,125,76,187,6,0,43,49,4,114,131,103,6,0,43,49,174,75,25,134,9,0,43,49,174,75,147,134,9,0,43,49,174,75,7,135,9,0,43,49,174,75,174,135,9,0,43,49,174,75,71,136,9,0,44,177,184,35,0,55,7,0,44,177,184,35,163,57,7,0,44,177,125,77,194,138,7,0,45,49,58,129,58,212,8,0,45,49,58,129,201,212,8,0,46,177,220,110,113,220,5,0,47,49,241,167,102,214,8,0,47,49,241,167,14,218,8,0,47,49,241,14,135,2,9,0,47,49,241,14,47,3,9,0,47,49,8,234,125,198,10,0,51,177,163,243,226,8,11,0,51,177,163,243,251,8,11,0,52,49,226,163,135,44,7,0,53,177,113,111,148,131,7,0,56,177,250,159,89,5,7,0,60,177,206,34,163,57,7,0,60,177,206,34,118,17,11,0,61,177,230,249,75,112,7,0,62,177,163,2,21,71,9,0,62,177,163,2,100,72,9,0,62,177,163,2,181,73,9,0,62,177,163,2,11,75,9,0,63,49,157,38,17,130,7,0,65,177,80,245,113,35,7,0,65,177,80,245,34,160,10,0,66,177,253,100,51,104,7,0,68,49,237,62,194,138,7,0,70,177,105,2,208,224,5,0,71,49,216,21,25,163,11,0,72,49,19,193,16,183,8,0,72,49,19,193,251,191,8,0,72,49,19,193,239,200,8,0,72,177,2,77,223,243,10,0,74,177,94,11,48,152,6,0,74,177,94,11,23,27,7,0,74,177,18,135,244,23,11,0,77,49,58,157,151,149,6,0,77,49,52,198,204,174,10,0,80,49,1,4,119,96,7,0,82,177,198,127,60,152,7,0,84,177,239,220,247,247,6,0,84,177,172,68,45,226,8,0,84,177,172,68,130,231,8,0,86,177,203,146,234,215,6,0,86,49,212,106,205,87,7,0,87,49,202,152,60,152,7,0,87,49,208,54,92,9,8,0,87,49,202,152,104,103,8,0,87,49,202,152,219,103,8,0,87,49,202,152,68,104,8,0,87,49,202,152,59,45,10,0,88,49,244,127,16,183,8,0,88,49,244,127,251,191,8,0,88,49,244,127,239,200,8,0,88,177,131,46,102,214,8,0,88,177,131,46,14,218,8,0,91,177,196,229,203,245,5,0,91,49,132,221,194,138,7,0,92,177,36,90,139,14,10,0,92,177,36,90,50,15,10,0,95,49,68,19,134,19,7,0,95,177,24,149,135,61,7,0,97,49,134,72,152,252,8,0,98,177,241,243,76,48,11,0,99,49,140,158,120,232,7,0,101,49,148,1,134,19,7,0,104,49,93,94,235,46,6,0,104,177,188,129,29,120,7,0,105,49,247,12,192,83,6,0,108,49,154,250,192,235,7,0,108,49,154,250,237,235,7,0,108,49,154,250,30,236,7,0,109,49,113,186,152,230,10,0,113,177,10,251,177,105,7,0,114,177,135,84,16,183,8,0,114,177,135,84,251,191,8,0,114,177,135,84,239,200,8,0,115,177,63,187,16,37,7,0,115,49,144,194,103,48,7,0,115,49,77,121,202,190,7,0,117,49,214,49,60,152,7,0,117,49,214,49,190,122,8,0,117,49,214,49,83,123,8,0,117,49,214,49,244,123,8,0,117,49,214,49,210,33,10,0,121,49,201,11,161,77,7,0,121,49,253,148,122,87,9,0,121,49,253,148,212,87,9,0,121,49,253,148,40,88,9,0,121,49,70,2,250,42,11,0,122,177,186,196,65,41,7,0,122,49,60,38,139,14,10,0,122,49,60,38,50,15,10,0,122,49,200,60,130,188,10,0,122,177,111,240,245,207,10,0,123,49,169,47,98,203,6,0,124,177,104,216,111,81,9,0,124,177,104,216,4,82,9,0,124,49,209,34,193,100,10,0,124,49,209,34,89,103,10,0,126,49,231,247,60,152,7,0,126,49,231,247,79,237,8,0,126,49,83,178,47,98,9,0,129,49,185,80,216,247,10,0,131,177,26,58,134,19,7,0,133,49,112,52,60,152,7,0,133,49,112,52,59,45,10,0,135,49,99,236,19,90,7,0,135,49,121,32,194,138,7,0,136,177,24,161,120,158,6,0,136,49,192,148,161,77,7,0,137,49,155,115,109,217,6,0,138,49,48,56,29,120,7,0,138,177,101,15,194,138,7,0,138,49,117,203,246,243,9,0,138,49,117,203,59,245,9,0,138,49,117,203,131,246,9,0,139,49,150,197,209,84,7,0,140,177,157,78,166,226,5,0,141,177,76,33,31,161,11,0,142,177,106,13,150,45,9,0,142,177,106,13,18,46,9,0,148,49,11,207,85,29,10,0,152,177,70,106,132,21,9,0,152,177,70,106,157,23,9,0,154,177,8,120,164,16,9,0,154,177,8,120,141,17,9,0,157,49,252,194,209,84,7,0,160,177,207,178,32,20,9,0,160,177,207,178,179,20,9,0,160,177,11,196,253,38,9,0,160,177,11,196,207,40,9,0,161,49,177,94,177,105,7,0,163,49,219,56,207,147,6,0,163,49,199,126,139,254,6,0,163,177,156,57,205,87,7,0,163,177,41,238,145,198,9,0,163,177,41,238,171,198,9,0,163,177,41,238,195,198,9,0,164,49,156,196,241,190,7,0,165,49,77,17,45,226,8,0,165,49,77,17,130,231,8,0,165,177,89,101,111,4,9,0,165,177,89,101,41,6,9,0,166,49,217,46,55,108,7,0,167,177,164,166,0,55,7,0,167,177,164,166,163,57,7,0,168,177,33,98,176,68,7,0,170,49,196,148,34,198,6,0,174,49,127,99,194,138,7,0,176,177,219,62,191,229,5,0,176,49,158,203,176,68,7,0,178,49,202,34,0,137,10,0,179,177,38,246,73,38,7,0,179,49,152,206,16,183,8,0,179,49,152,206,251,191,8,0,179,49,152,206,239,200,8,0,182,177,191,225,23,27,7,0,182,177,94,174,60,152,7,0,182,177,94,174,79,237,8,0,183,49,81,199,85,29,10,0,183,177,99,128,193,100,10,0,183,177,99,128,89,103,10,0,184,177,200,80,134,19,7,0,185,177,50,221,194,138,7,0,187,177,151,53,175,29,9,0,187,177,151,53,88,30,9,0,189,49,239,1,73,38,7,0,189,49,246,13,12,99,7,0,189,177,138,206,68,11,8,0,189,177,138,206,105,11,8,0,189,177,138,206,142,11,8,0,193,177,143,166,83,126,8,0,194,49,10,220,163,57,7,0,197,49,151,133,100,92,6,0,197,49,151,133,238,174,6,0,197,177,134,39,27,9,7,0,199,49,245,80,106,123,11,0,199,49,34,52,2,142,11,0,200,49,131,235,145,114,7,0,201,49,215,123,222,141,10,0,201,49,215,123,251,141,10,0,202,177,115,42,45,226,8,0,202,177,115,42,130,231,8,0,202,177,3,154,92,11,10,0,202,177,3,154,115,11,10,0,202,177,3,154,141,11,10,0,204,49,195,146,176,160,10,0,204,177,55,224,146,71,11,0,206,177,38,215,61,39,7,0,210,49,45,74,165,224,8,0,210,49,45,74,86,225,8,0,210,49,45,74,173,5,10,0,210,177,50,175,4,52,10,0,213,177,17,154,45,226,8,0,213,177,17,154,130,231,8,0,213,49,122,184,39,47,9,0,213,49,122,184,54,48,9,0,219,49,175,68,235,88,7,0,220,177,226,36,57,220,10,0,223,177,95,131,75,112,7,0,223,177,78,34,52,152,11,0,223,177,78,34,1,158,11,0,223,177,78,34,32,158,11,0,224,177,34,215,253,59,10,0,224,177,34,215,144,60,10,0,224,177,34,215,39,61,10,0,226,177,205,184,195,39,8,0,226,49,136,198,4,52,10,0,227,177,208,1,220,194,10,0,227,177,208,1,175,200,10,0,228,177,198,227,119,96,7,0,230,49,82,215,100,92,7,0,231,49,108,50,124,222,5,0,232,49,13,145,118,99,11,0,235,177,171,137,179,15,6,0,236,49,153,183,209,152,6,0,237,49,20,136,136,1,7,0,237,49,20,136,10,2,7,0,238,177,40,201,183,249,6,0,238,177,239,7,115,81,8,0,238,49,93,189,60,77,10,0,238,49,93,189,232,77,10,0,241,49,206,70,23,27,7,0,243,49,113,60,199,221,5,0,244,177,134,82,252,242,8,0,244,177,134,82,240,243,8,0,246,177,246,252,31,220,7,0,250,49,252,98,157,144,6,0,250,49,252,98,115,6,10,0,250,49,252,98,143,6,10,0,252,49,170,4,40,20,8,0,252,177,226,23,219,238,8,0,252,177,226,23,39,240,8,0,252,177,226,23,117,241,8,0,255,177,167,133,46,246,5,0,255,49,123,108,29,177,6,0,0,178,191,254,27,58,8,0,0,178,252,86,3,102,11,0,2,178,175,191,174,247,6,0,4,178,217,49,23,27,7,0,6,50,165,235,65,41,7,0,8,178,220,126,152,107,11,0,10,178,25,130,145,114,7,0,11,50,19,9,104,238,6,0,11,50,76,251,145,114,7,0,11,50,19,9,148,235,7,0,12,50,133,230,58,68,7,0,14,50,132,47,45,226,8,0,14,50,132,47,130,231,8,0,18,178,129,196,12,99,7,0,18,178,124,206,135,149,7,0,18,178,124,206,97,62,9,0,18,178,124,206,126,62,9,0,19,178,188,94,23,27,7,0,19,50,79,156,4,62,8,0,21,178,195,67,4,52,10,0,22,50,91,142,249,63,8,0,22,50,98,20,55,95,10,0,22,50,98,20,143,95,10,0,23,178,149,169,175,88,9,0,23,178,149,169,254,88,9,0,23,178,149,169,92,89,9,0,23,178,149,169,173,89,9,0,24,50,232,232,29,120,7,0,25,50,37,228,186,164,11,0,30,50,33,115,65,41,7,0,30,178,58,99,12,99,7,0,31,178,41,140,97,16,7,0,32,178,199,148,236,134,7,0,33,178,17,109,51,248,8,0,33,178,17,109,162,248,8,0,36,50,78,188,217,9,7,0,36,50,92,145,132,21,9,0,36,50,92,145,157,23,9,0,42,50,45,113,6,244,6,0,46,50,162,65,92,9,8,0,47,50,208,139,115,165,8,0,48,50,181,86,217,35,6,0,48,50,110,7,122,87,9,0,48,50,110,7,212,87,9,0,48,50,110,7,40,88,9,0,50,50,211,194,183,82,7,0,50,50,211,194,255,90,10,0,50,50,211,194,25,91,10,0,54,178,249,7,205,87,7,0,56,50,103,48,23,27,7,0,56,50,27,87,10,50,11,0,59,178,229,212,125,67,10,0,59,178,229,212,69,68,10,0,63,50,239,198,167,242,9,0,64,178,203,49,36,111,6,0,64,178,1,254,160,79,8,0,65,50,57,36,146,76,9,0,65,50,57,36,63,77,9,0,67,50,193,104,16,183,8,0,67,50,193,104,251,191,8,0,67,50,193,104,239,200,8,0,68,178,98,244,125,250,7,0,69,178,33,170,60,152,7,0,69,178,33,170,226,164,7,0,71,50,145,245,4,52,10,0,72,178,57,50,62,223,9,0,72,178,57,50,64,224,9,0,72,178,57,50,93,225,9,0,74,50,175,204,240,104,6,0,74,50,49,54,153,178,6,0,74,178,21,77,194,138,7,0,75,178,16,209,77,246,6,0,76,50,113,27,102,214,8,0,76,50,113,27,14,218,8,0,78,50,101,179,25,147,10,0,79,50,127,151,136,118,11,0,80,178,98,244,177,105,7,0,81,50,57,235,145,114,7,0,83,50,46,127,240,248,6,0,85,178,229,20,103,157,6,0,85,178,229,20,17,221,6,0,85,50,165,242,111,4,9,0,85,50,165,242,41,6,9,0,86,50,66,160,35,9,6,0,87,50,23,126,102,121,8,0,91,178,101,209,168,152,9,0,94,178,203,26,23,27,7,0,94,178,12,188,20,8,9,0,94,178,12,188,247,8,9,0,94,178,12,188,210,9,9,0,95,178,22,201,145,114,7,0,97,178,34,202,144,111,6,0,97,50,145,56,73,38,7,0,103,178,57,130,219,238,8,0,103,178,57,130,39,240,8,0,103,178,57,130,117,241,8,0,106,178,142,160,102,214,8,0,106,178,142,160,14,218,8,0,110,178,79,197,16,183,8,0,110,178,79,197,251,191,8,0,110,178,79,197,239,200,8,0,116,50,88,119,65,41,7,0,116,178,250,181,116,72,7,0,117,50,28,200,236,169,9,0,117,50,28,200,14,170,9,0,118,50,33,239,121,144,10,0,120,178,5,75,125,63,8,0,120,178,5,75,33,119,8,0,121,50,54,14,151,97,10,0,121,50,54,14,176,97,10,0,121,50,54,14,230,97,10,0,124,178,200,165,6,249,9,0,124,178,200,165,105,249,9,0,124,178,200,165,201,249,9,0,127,178,19,61,224,123,9,0,127,178,19,61,29,124,9,0,127,178,19,61,109,124,9,0,128,178,157,246,6,249,9,0,128,178,157,246,105,249,9,0,128,178,157,246,201,249,9,0,128,50,239,233,63,79,10,0,128,50,239,233,138,79,10,0,128,50,239,233,214,79,10,0,135,178,100,127,67,6,7,0,139,178,230,60,102,214,8,0,139,178,230,60,14,218,8,0,139,178,213,11,252,242,8,0,139,178,213,11,240,243,8,0,141,178,106,73,156,113,6,0,141,178,33,239,216,51,9,0,141,178,33,239,175,52,9,0,142,50,230,22,253,49,7,0,147,178,147,46,23,27,7,0,148,50,229,115,161,77,7,0,148,50,237,50,16,183,8,0,148,50,237,50,251,191,8,0,148,50,237,50,239,200,8,0,149,178,148,57,29,232,5,0,152,178,126,215,135,2,9,0,152,178,126,215,47,3,9,0,153,178,230,133,2,251,6,0,153,178,46,207,42,190,10,0,155,50,199,174,240,248,6,0,161,50,64,130,31,63,6,0,161,178,163,211,16,183,8,0,161,178,163,211,251,191,8,0,161,178,163,211,239,200,8,0,164,178,235,28,216,51,9,0,164,178,235,28,175,52,9,0,164,178,192,219,95,134,10,0,166,50,150,74,184,89,7,0,166,50,150,74,19,90,7,0,172,178,154,178,43,53,6,0,172,50,178,216,62,223,9,0,172,50,178,216,64,224,9,0,172,50,178,216,93,225,9,0,173,178,114,251,134,19,7,0,173,50,200,15,118,151,7,0,173,50,226,70,144,164,9,0,173,50,226,70,169,164,9,0,175,50,125,194,220,28,6,0,176,178,245,218,30,181,6,0,176,178,245,183,22,91,7,0,176,50,162,159,8,214,7,0,176,50,226,199,221,98,9,0,176,50,226,199,47,99,9,0,178,178,168,255,55,95,10,0,178,178,168,255,143,95,10,0,179,178,143,173,37,211,10,0,180,178,231,51,48,245,6,0,180,50,145,103,51,104,7,0,181,50,152,77,90,64,6,0,181,50,246,49,186,12,11,0,183,178,47,42,167,209,9,0,183,178,47,42,205,209,9,0,184,50,44,44,194,138,7,0,185,178,63,119,12,208,10,0,187,50,80,108,55,123,6,0,187,50,33,38,102,15,7,0,188,178,44,118,125,67,10,0,188,178,44,118,69,68,10,0,189,178,231,234,163,57,7,0,189,178,231,234,228,144,11,0,190,178,185,227,109,109,6,0,192,178,130,8,12,99,7,0,193,178,215,26,45,226,8,0,193,178,215,26,130,231,8,0,195,178,170,104,134,19,7,0,195,178,158,174,163,66,7,0,196,178,153,164,160,205,10,0,197,178,166,225,29,120,7,0,199,178,226,188,109,179,7,0,199,50,40,222,7,152,9,0,199,50,40,222,45,152,9,0,199,50,40,222,86,152,9,0,201,178,79,96,230,197,7,0,205,178,253,181,254,32,6,0,205,50,81,18,217,103,7,0,206,178,149,101,83,126,8,0,207,178,181,167,183,82,7,0,207,178,115,178,16,183,8,0,207,178,115,178,251,191,8,0,207,178,115,178,239,200,8,0,207,50,167,210,79,148,10,0,211,50,62,16,13,8,7,0,212,178,97,69,23,27,7,0,213,50,32,73,200,66,11,0,222,178,199,148,239,221,6,0,223,50,172,217,206,159,10,0,224,178,106,96,193,100,10,0,224,178,106,96,89,103,10,0,226,50,162,93,19,90,7,0,234,178,221,104,38,248,5,0,234,178,48,38,196,46,7,0,235,50,32,231,103,48,7,0,238,178,130,16,135,149,7,0,239,178,226,217,231,130,6,0,239,50,166,182,191,6,11,0,240,178,99,230,30,5,7,0,240,178,141,253,29,120,7,0,240,178,99,230,194,138,7,0,241,50,245,170,52,87,10,0,241,50,245,170,117,87,10,0,244,50,157,204,0,55,7,0,244,50,157,204,163,57,7,0,244,50,195,68,203,74,7,0,245,50,90,115,195,163,10,0,249,178,125,229,194,138,7,0,252,50,182,191,36,200,6,0,252,50,216,171,134,19,7,0,253,178,245,244,134,19,7,0,255,178,191,174,134,19,7,0,2,179,151,182,220,39,7,0,3,51,26,157,235,235,6,0,3,179,38,47,23,27,7,0,3,51,26,157,186,175,9,0,3,51,26,157,203,175,9,0,3,179,22,84,25,147,10,0,7,51,81,133,16,183,8,0,7,51,81,133,251,191,8,0,7,51,81,133,239,200,8,0,11,51,74,83,60,152,7,0,11,51,74,83,210,12,10,0,13,51,10,58,182,13,7,0,14,51,203,43,161,110,10,0,14,51,203,43,2,112,10,0,15,179,37,239,2,175,11,0,20,179,154,64,65,251,6,0,22,51,29,52,25,84,7,0,22,51,29,52,114,84,7,0,22,179,153,23,55,97,11,0,23,51,77,13,99,239,6,0,27,179,75,59,132,21,9,0,27,179,75,59,157,23,9,0,28,51,135,177,51,3,6,0,32,51,79,132,60,152,7,0,32,179,200,126,16,183,8,0,32,179,200,126,251,191,8,0,32,179,200,126,239,200,8,0,32,51,79,132,50,110,10,0,32,51,79,132,112,110,10,0,32,179,95,73,51,126,11,0,34,179,28,3,135,149,7,0,34,179,28,3,47,100,9,0,34,179,28,3,62,100,9,0,34,179,28,3,86,100,9,0,35,179,236,26,239,193,10,0,35,51,33,116,31,217,10,0,38,51,250,154,189,237,6,0,40,179,182,2,252,230,7,0,40,179,182,2,42,231,7,0,40,51,85,174,127,247,10,0,41,179,31,7,240,30,6,0,41,179,31,7,158,37,6,0,41,179,31,7,12,121,8,0,41,179,253,208,250,87,10,0,47,51,18,83,80,177,11,0,47,51,18,83,99,177,11,0,48,179,172,123,113,252,5,0,48,179,172,123,195,106,6,0,49,51,253,124,29,120,7,0,49,179,130,247,253,38,9,0,49,179,130,247,207,40,9,0,50,179,73,190,149,125,6,0,50,179,73,190,172,125,6,0,52,51,88,0,135,61,7,0,52,179,230,19,143,169,7,0,52,51,88,0,169,189,9,0,52,51,88,0,197,189,9,0,54,179,200,45,16,183,8,0,54,179,200,45,251,191,8,0,54,179,200,45,239,200,8,0,55,51,145,207,134,19,7,0,55,179,130,247,253,38,9,0,55,179,130,247,207,40,9,0,55,179,128,223,4,52,10,0,56,51,61,95,10,60,6,0,58,51,224,200,217,238,9,0,58,51,224,200,174,239,9,0,59,179,80,166,32,85,9,0,59,179,80,166,62,85,9,0,60,51,235,2,23,27,7,0,61,179,189,8,112,246,7,0,62,51,18,1,163,66,7,0,62,51,179,96,243,179,11,0,64,51,76,8,145,114,7,0,66,179,76,82,107,10,7,0,70,179,227,43,206,35,7,0,70,179,227,43,9,36,7,0,72,51,249,21,202,211,10,0,72,179,129,184,227,173,11,0,73,179,189,134,218,93,7,0,75,51,150,178,8,112,7,0,79,51,17,57,67,17,7,0,80,179,131,93,16,37,7,0,80,51,83,39,253,49,7,0,85,51,39,190,86,56,9,0,85,51,39,190,9,57,9,0,87,51,242,221,220,119,9,0,87,51,242,221,8,120,9,0,87,179,187,172,71,130,11,0,89,51,50,247,115,161,9,0,89,51,50,247,104,162,9,0,91,179,198,235,125,18,9,0,91,179,198,235,34,19,9,0,93,51,66,14,0,55,7,0,93,51,66,14,163,57,7,0,93,51,66,14,16,183,8,0,93,51,66,14,251,191,8,0,93,51,66,14,239,200,8,0,94,179,172,2,52,209,10,0,95,179,100,179,168,43,7,0,96,51,217,135,125,18,9,0,96,51,217,135,34,19,9,0,97,179,83,222,119,96,7,0,97,179,83,89,49,222,9,0,97,179,83,89,130,222,9,0,99,51,123,158,129,69,6,0,99,51,123,158,187,42,8,0,100,179,193,71,16,183,8,0,100,179,193,71,251,191,8,0,100,179,193,71,239,200,8,0,101,179,112,17,134,19,7,0,102,51,110,137,32,48,11,0,105,51,197,8,175,173,7,0,107,179,49,251,49,106,6,0,107,179,49,251,221,122,6,0,108,179,238,208,135,149,7,0,109,179,75,0,15,8,6,0,109,51,5,3,75,247,8,0,109,51,5,3,171,247,8,0,109,179,232,96,6,173,11,0,110,51,117,212,161,77,7,0,112,179,6,27,103,48,7,0,112,179,79,36,16,183,8,0,112,179,79,36,251,191,8,0,112,179,79,36,239,200,8,0,113,51,32,127,46,142,10,0,114,179,0,63,160,79,8,0,117,51,188,148,63,249,8,0,117,51,188,148,121,249,8,0,117,51,188,148,175,249,8,0,122,51,225,86,15,92,9,0,122,51,225,86,90,92,9,0,122,51,225,86,162,92,9,0,125,51,155,196,132,21,9,0,125,51,155,196,157,23,9,0,127,179,87,116,130,249,6,0,128,179,179,170,194,185,9,0,128,179,179,170,96,186,9,0,129,51,28,197,23,172,11,0,132,179,130,247,253,38,9,0,132,179,130,247,207,40,9,0,134,51,255,220,15,143,11,0,134,51,255,220,60,146,11,0,137,179,153,93,139,231,5,0,137,179,153,93,55,60,6,0,137,179,21,163,51,104,7,0,138,51,176,204,12,99,7,0,139,179,253,44,16,183,8,0,139,179,253,44,251,191,8,0,139,179,253,44,239,200,8,0,140,179,245,30,194,138,7,0,141,51,101,6,119,96,7,0,143,179,16,55,35,140,11,0,144,51,81,190,23,27,7,0,144,179,118,94,191,130,11,0,145,179,244,209,248,215,5,0,145,51,200,82,41,254,6,0,145,179,165,117,163,57,7,0,145,179,165,117,194,138,7,0,147,179,157,38,114,133,7,0,149,179,114,33,253,38,9,0,149,179,114,33,207,40,9,0,150,179,90,6,16,183,8,0,150,179,90,6,251,191,8,0,150,179,90,6,239,200,8,0,152,51,40,48,5,88,11,0,156,179,250,136,9,48,11,0,157,51,206,6,29,120,7,0,157,51,8,220,135,149,7,0,157,51,205,100,194,228,7,0,157,51,8,220,48,107,9,0,157,51,83,67,139,14,10,0,157,51,83,67,50,15,10,0,165,179,212,194,209,18,7,0,165,179,114,139,12,99,7,0,166,51,143,33,165,135,6,0,170,51,74,27,132,21,9,0,170,51,74,27,157,23,9,0,172,179,229,211,194,138,7,0,172,51,172,227,227,48,11,0,174,51,112,171,134,19,7,0,174,51,230,133,218,93,7,0,174,179,13,198,152,252,8,0,174,51,3,100,186,53,9,0,174,51,3,100,77,54,9,0,175,179,91,209,89,5,7,0,175,51,164,214,23,27,7,0,175,179,192,172,4,52,10,0,177,51,99,34,194,138,7,0,178,179,123,216,57,118,11,0,178,179,123,216,18,127,11,0,179,179,131,0,25,86,7,0,179,179,131,0,74,86,7,0,179,179,187,201,55,108,7,0,179,51,88,38,194,138,7,0,180,51,193,142,248,200,10,0,180,51,160,80,22,68,11,0,181,51,57,138,29,120,7,0,182,179,154,34,29,120,7,0,185,179,115,167,160,79,8,0,187,51,255,229,213,252,5,0,188,51,83,46,246,152,10,0,191,179,201,196,4,52,10,0,194,179,25,116,179,224,10,0,194,179,25,116,210,224,10,0,195,51,247,12,23,27,7,0,195,51,40,116,135,61,7,0,196,179,205,233,220,65,7,0,196,51,122,247,12,99,7,0,197,179,42,30,133,234,5,0,198,51,33,82,0,55,7,0,198,51,33,82,163,57,7,0,199,51,190,131,134,68,7,0,201,179,47,110,134,19,7,0,204,179,255,169,16,183,8,0,204,179,255,169,251,191,8,0,204,179,255,169,239,200,8,0,205,179,84,43,19,90,7,0,206,179,80,230,104,67,7,0,207,51,91,52,161,77,7,0,208,51,3,31,134,19,7,0,208,51,213,34,240,168,8,0,210,179,4,16,63,226,7,0,210,179,239,50,92,130,11,0,212,179,226,29,161,77,7,0,213,179,216,250,233,83,7,0,215,51,11,206,232,237,10,0,217,179,107,56,31,132,6,0,217,179,107,56,53,132,6,0,217,51,215,234,160,79,8,0,219,179,6,194,103,48,7,0,222,51,149,160,246,231,5,0,222,51,180,121,23,27,7,0,223,179,66,220,98,97,6,0,223,179,66,220,55,108,7,0,226,179,219,240,60,152,7,0,226,179,219,240,226,164,7,0,231,51,156,38,94,172,7,0,231,51,156,38,151,175,7,0,235,51,33,242,128,34,8,0,238,51,13,135,106,66,7,0,245,179,99,236,239,230,5,0,248,179,43,186,140,45,8,0,249,51,6,91,16,183,8,0,249,51,6,91,251,191,8,0,249,51,6,91,239,200,8,0,250,51,242,124,241,190,7,0,251,179,80,56,65,41,7,0,251,51,167,71,130,112,11,0,253,179,195,56,163,57,7,0,1,180,102,145,60,152,7,0,1,52,232,126,229,221,8,0,1,52,232,126,29,222,8,0,2,180,224,154,29,120,7,0,6,180,10,27,192,2,7,0,6,52,37,238,172,110,11,0,7,180,2,126,209,30,8,0,9,52,109,175,100,92,7,0,11,180,242,46,29,14,6,0,11,180,242,46,73,130,7,0,12,52,5,162,164,16,9,0,12,52,5,162,141,17,9,0,12,180,251,238,216,140,9,0,12,180,251,238,69,141,9,0,13,52,170,170,253,99,8,0,14,180,175,122,204,167,6,0,14,52,105,125,33,222,6,0,19,180,80,55,12,99,7,0,20,180,176,217,111,4,9,0,20,180,176,217,41,6,9,0,21,52,140,206,51,65,7,0,22,180,227,144,120,181,6,0,22,180,140,98,194,138,7,0,26,180,46,11,160,79,8,0,31,52,38,124,141,175,6,0,31,180,238,86,217,194,6,0,31,180,238,86,120,149,11,0,31,180,11,30,111,180,11,0,32,180,144,121,163,57,7,0,32,52,135,227,102,214,8,0,32,52,135,227,14,218,8,0,32,180,144,121,161,190,10,0,32,180,81,141,25,129,11,0,33,52,145,204,102,214,8,0,33,52,145,204,14,218,8,0,33,52,145,204,11,75,9,0,33,52,145,204,12,165,10,0,38,52,32,136,60,152,7,0,38,52,32,136,190,122,8,0,38,52,32,136,83,123,8,0,38,52,32,136,244,123,8,0,38,52,94,69,20,8,9,0,38,52,94,69,247,8,9,0,38,52,94,69,210,9,9,0,38,52,32,136,210,33,10,0,44,180,13,70,62,223,9,0,44,180,13,70,64,224,9,0,44,180,13,70,93,225,9,0,46,180,117,163,196,225,10,0,47,180,0,97,16,183,8,0,47,180,0,97,251,191,8,0,47,180,0,97,239,200,8,0,48,180,233,111,193,100,10,0,48,180,233,111,89,103,10,0,49,180,54,29,16,183,8,0,49,180,54,29,251,191,8,0,49,180,54,29,239,200,8,0,50,180,198,158,75,148,7,0,50,180,198,158,191,158,7,0,51,52,81,190,221,187,7,0,51,52,81,190,146,91,9,0,51,52,81,190,189,91,9,0,53,52,98,162,23,253,6,0,53,180,181,214,161,77,7,0,53,180,157,254,119,96,7,0,54,52,45,144,57,220,10,0,56,52,252,159,116,72,7,0,57,52,141,144,253,59,10,0,57,52,141,144,144,60,10,0,57,52,141,144,39,61,10,0,57,180,246,245,193,100,10,0,57,180,246,245,89,103,10,0,58,52,71,173,0,55,7,0,58,52,71,173,163,57,7,0,61,52,240,127,253,49,7,0,61,52,186,148,193,100,10,0,61,52,186,148,89,103,10,0,63,180,160,123,106,76,6,0,65,180,173,16,161,110,10,0,65,180,173,16,2,112,10,0,66,180,78,22,62,185,9,0,67,180,219,247,218,93,7,0,69,52,81,190,242,55,11,0,71,180,98,199,44,174,10,0,72,52,79,107,132,201,10,0,73,180,136,75,167,242,9,0,73,52,23,60,122,229,10,0,78,180,163,160,170,91,7,0,79,180,102,3,139,192,6,0,79,180,172,101,135,149,7,0,79,52,153,151,6,249,9,0,79,52,153,151,105,249,9,0,79,52,153,151,201,249,9,0,79,52,187,202,18,46,11,0,80,180,254,144,58,35,9,0,80,180,254,144,31,36,9,0,81,52,182,241,97,16,7,0,84,180,40,170,207,48,7,0,85,52,157,38,60,152,7,0,87,180,140,115,203,222,6,0,87,180,140,115,194,138,7,0,88,52,161,239,165,224,8,0,88,52,161,239,86,225,8,0,89,52,68,250,168,152,9,0,90,180,52,218,207,24,10,0,90,180,52,218,22,25,10,0,90,180,52,218,89,25,10,0,90,180,52,218,150,25,10,0,90,180,52,218,90,144,10,0,92,52,166,69,117,240,6,0,93,180,14,58,36,111,6,0,93,52,84,90,16,183,8,0,93,52,84,90,251,191,8,0,93,52,84,90,239,200,8,0,95,180,207,135,16,183,8,0,95,180,207,135,251,191,8,0,95,180,207,135,239,200,8,0,96,180,143,66,4,52,10,0,102,180,249,54,99,23,6,0,102,180,249,54,138,107,6,0,103,52,63,219,23,27,7,0,103,180,133,173,246,243,9,0,103,180,133,173,59,245,9,0,103,180,133,173,131,246,9,0,104,52,108,2,216,51,9,0,104,52,108,2,175,52,9,0,106,52,93,203,75,148,7,0,106,52,93,203,149,166,7,0,107,52,100,241,194,138,7,0,109,180,29,100,234,216,10,0,115,180,250,132,113,211,10,0,117,52,16,224,186,26,9,0,117,52,16,224,120,27,9,0,117,52,16,224,48,28,9,0,120,52,242,221,23,27,7,0,125,52,61,130,125,18,9,0,125,52,61,130,34,19,9,0,126,180,179,63,134,19,7,0,128,52,124,217,111,4,9,0,128,52,124,217,41,6,9,0,130,180,182,180,134,19,7,0,130,180,59,70,12,99,7,0,131,180,72,20,16,183,8,0,131,180,72,20,251,191,8,0,131,180,72,20,239,200,8,0,132,180,245,19,134,19,7,0,132,180,211,100,250,87,10,0,132,180,211,100,250,87,10,0,133,52,212,217,51,45,6,0,133,52,212,217,190,98,6,0,134,180,5,40,194,138,7,0,136,180,202,56,135,2,9,0,136,180,202,56,47,3,9,0,138,180,193,103,93,46,7,0,138,180,193,103,111,4,9,0,138,180,193,103,41,6,9,0,143,52,237,64,12,99,7,0,144,52,46,129,175,44,6,0,145,180,41,46,99,239,6,0,145,52,90,36,66,3,7,0,147,52,61,129,170,27,6,0,147,52,61,129,66,16,8,0,148,52,34,70,219,121,8,0,148,52,44,60,235,228,10,0,150,52,152,167,114,47,6,0,150,52,152,167,97,164,8,0,151,180,175,212,89,5,7,0,151,180,235,19,3,41,8,0,151,180,235,19,58,251,9,0,151,180,235,19,82,251,9,0,151,180,235,19,1,255,10,0,152,52,166,193,29,120,7,0,152,52,48,226,234,138,10,0,153,180,57,40,16,183,8,0,153,180,57,40,251,191,8,0,153,180,57,40,239,200,8,0,155,180,26,140,20,179,10,0,161,180,13,147,220,39,7,0,162,52,46,24,23,27,7,0,163,180,94,57,147,35,7,0,165,52,247,92,55,95,10,0,165,52,247,92,143,95,10,0,169,52,207,192,176,68,7,0,169,52,92,176,253,38,9,0,169,52,92,176,207,40,9,0,170,52,112,167,29,115,11,0,171,180,224,215,190,192,9,0,171,180,224,215,239,192,9,0,171,180,224,215,19,193,9,0,175,52,33,191,58,35,9,0,175,52,33,191,31,36,9,0,176,180,45,165,160,79,8,0,177,52,102,240,90,154,6,0,177,52,124,3,21,71,9,0,177,52,124,3,100,72,9,0,177,52,124,3,181,73,9,0,177,52,124,3,11,75,9,0,178,180,111,226,124,22,10,0,178,180,111,226,179,22,10,0,178,180,111,226,235,22,10,0,180,52,207,182,38,92,7,0,181,52,186,148,4,44,7,0,182,180,236,93,217,9,7,0,184,52,105,155,60,182,8,0,184,180,22,182,27,141,10,0,184,180,22,182,56,141,10,0,185,180,129,47,209,84,7,0,185,52,249,43,219,238,8,0,185,52,249,43,39,240,8,0,185,52,249,43,117,241,8,0,185,52,249,43,53,192,9,0,185,52,249,43,99,192,9,0,186,52,75,175,173,181,8,0,189,52,248,74,226,11,7,0,191,180,27,112,92,9,8,0,191,180,130,247,253,38,9,0,191,180,130,247,207,40,9,0,191,180,25,179,153,113,10,0,191,180,25,179,27,114,10,0,192,52,175,115,152,252,8,0,197,52,179,239,152,230,10,0,199,52,103,123,188,136,6,0,199,180,3,64,186,26,9,0,199,180,3,64,120,27,9,0,199,180,3,64,48,28,9,0,201,52,231,203,201,106,7,0,205,52,219,111,4,52,10,0,206,180,196,40,27,18,11,0,209,52,142,173,185,219,10,0,215,180,167,160,162,116,6,0,218,180,241,15,145,114,7,0,219,52,77,202,209,19,10,0,221,52,95,31,29,14,6,0,221,52,95,31,73,130,7,0,221,180,160,68,146,199,7,0,222,180,237,96,72,238,9,0,222,180,237,96,133,238,9,0,222,180,237,96,176,238,9,0,225,52,234,3,34,195,6,0,227,52,204,248,111,168,9,0,227,52,204,248,147,168,9,0,228,180,200,247,132,21,9,0,228,180,200,247,157,23,9,0,228,52,96,29,130,112,11,0,230,52,27,48,29,120,7,0,231,180,161,113,153,80,6,0,231,180,79,116,4,52,10,0,234,180,183,154,75,247,8,0,234,180,183,154,171,247,8,0,235,180,184,195,146,78,6,0,241,52,24,122,1,230,5,0,242,180,164,71,244,23,11,0,243,180,142,54,223,184,7,0,246,52,94,91,107,60,11,0,249,52,3,163,176,147,11,0,250,180,172,164,45,226,8,0,250,180,172,164,130,231,8,0,251,52,37,84,170,55,11,0,253,52,181,189,77,135,10,0,254,52,123,96,173,250,8,0,254,52,123,96,205,250,8,0,255,52,158,182,50,148,6,0,0,53,245,158,94,79,6,0,1,53,149,13,117,251,6,0,1,53,149,13,192,2,7,0,1,53,211,72,134,19,7,0,4,53,7,207,238,81,10,0,4,53,119,114,57,220,10,0,5,53,139,130,23,27,7,0,5,181,123,121,161,77,7,0,5,181,154,214,3,101,9,0,5,181,154,214,29,101,9,0,6,181,38,91,95,59,9,0,6,181,38,91,147,59,9,0,7,181,168,223,83,232,5,0,9,181,158,98,252,133,10,0,10,181,152,162,22,91,7,0,12,53,181,87,92,9,8,0,13,53,199,130,29,244,6,0,13,53,32,215,101,64,7,0,14,181,131,60,233,149,6,0,14,53,146,201,255,70,7,0,16,53,187,235,45,226,8,0,16,53,187,235,130,231,8,0,17,181,237,66,87,69,9,0,17,181,237,66,181,69,9,0,22,181,54,196,134,107,10,0,22,181,54,196,210,107,10,0,24,181,83,27,212,127,6,0,24,181,83,27,2,92,7,0,24,181,101,237,21,138,7,0,25,53,81,148,104,67,7,0,26,181,16,193,212,135,11,0,29,53,135,26,105,129,9,0,29,53,135,26,180,129,9,0,30,53,241,195,51,3,6,0,30,181,235,13,194,185,9,0,30,181,235,13,96,186,9,0,31,181,95,16,243,241,5,0,31,53,90,231,122,69,11,0,33,53,187,0,29,120,7,0,34,181,250,16,253,38,9,0,34,181,250,16,207,40,9,0,35,181,63,80,11,76,6,0,35,181,137,60,116,32,11,0,37,181,20,29,160,79,8,0,37,181,199,222,149,174,9,0,37,181,199,222,200,174,9,0,38,53,129,143,51,104,7,0,38,53,66,254,75,247,8,0,38,53,66,254,171,247,8,0,43,181,250,89,219,18,8,0,43,181,250,89,94,19,8,0,45,181,61,68,140,3,10,0,45,181,61,68,163,3,10,0,45,181,61,68,187,3,10,0,49,53,63,15,11,225,7,0,49,53,63,15,52,225,7,0,51,53,23,224,18,31,6,0,51,53,23,224,178,31,6,0,51,53,23,224,136,145,6,0,51,53,23,224,156,19,8,0,52,53,207,146,97,103,7,0,53,53,28,126,199,36,7,0,53,53,80,177,197,177,10,0,54,53,50,85,195,81,8,0,56,181,234,71,119,116,9,0,56,181,234,71,140,116,9,0,59,181,120,27,176,191,7,0,59,181,120,27,93,34,10,0,59,181,120,27,146,34,10,0,59,181,120,27,206,34,10,0,61,53,16,220,16,183,8,0,61,53,16,220,251,191,8,0,61,53,16,220,239,200,8,0,63,181,46,97,135,44,7,0,64,181,133,139,4,52,10,0,65,181,9,171,188,213,9,0,65,181,9,171,58,214,9,0,65,181,9,171,197,214,9,0,67,181,43,139,62,172,6,0,70,53,132,213,116,196,7,0,72,181,13,55,23,27,7,0,72,53,117,149,194,138,7,0,73,53,196,144,105,129,9,0,73,53,196,144,180,129,9,0,74,181,114,11,249,162,6,0,75,181,172,247,38,4,8,0,76,181,30,66,252,169,7,0,76,53,138,210,25,103,11,0,80,53,65,41,55,176,8,0,82,181,232,251,4,52,10,0,84,181,205,233,18,217,5,0,86,53,158,248,86,13,11,0,87,53,57,228,135,149,7,0,88,53,166,53,114,156,8,0,89,181,44,23,56,238,7,0,90,181,48,142,55,108,7,0,93,181,55,86,112,246,7,0,95,53,222,142,187,219,7,0,96,181,158,126,44,51,7,0,99,181,185,234,32,107,7,0,99,181,185,234,130,107,7,0,101,181,190,190,152,63,7,0,101,181,190,190,60,152,7,0,101,181,190,190,226,164,7,0,104,181,155,97,29,2,6,0,106,53,217,103,23,27,7,0,108,181,77,121,92,211,10,0,110,53,177,202,139,254,6,0,110,53,43,168,181,111,7,0,112,181,32,143,102,214,8,0,112,181,32,143,14,218,8,0,113,181,214,140,194,185,9,0,113,181,214,140,96,186,9,0,113,181,173,130,149,13,11,0,113,181,173,130,35,14,11,0,115,181,165,22,52,87,10,0,115,181,165,22,117,87,10,0,116,53,58,146,163,57,7,0,116,53,58,146,103,5,10,0,117,181,228,88,119,96,7,0,120,181,29,90,26,7,7,0,120,181,17,150,149,174,9,0,120,181,17,150,200,174,9,0,121,53,157,38,244,36,6,0,121,181,83,118,45,226,8,0,121,181,83,118,130,231,8,0,122,53,157,38,200,179,6,0,122,53,116,161,119,96,7,0,123,181,72,40,151,175,7,0,123,181,190,254,25,173,11,0,123,53,150,147,235,174,11,0,124,53,205,104,45,226,8,0,124,53,205,104,130,231,8,0,125,181,199,98,218,42,6,0,126,181,136,166,64,47,7,0,132,181,254,42,57,153,6,0,132,53,25,159,22,77,7,0,132,181,107,35,9,21,11,0,134,53,181,38,66,3,7,0,134,181,165,52,111,4,9,0,134,181,165,52,41,6,9,0,134,53,203,5,236,247,10,0,135,53,6,33,67,6,7,0,135,181,36,136,135,61,7,0,135,181,46,30,150,45,9,0,135,181,46,30,18,46,9,0,138,181,57,12,145,114,7,0,138,181,124,164,253,5,11,0,139,181,193,148,52,239,5,0,139,181,193,148,152,161,6,0,139,53,188,235,185,195,7,0,139,53,188,235,83,126,8,0,140,53,191,126,21,164,6,0,144,181,91,151,163,210,10,0,147,181,116,104,12,99,7,0,147,53,166,225,12,99,7,0,149,181,134,37,134,19,7,0,151,53,177,50,145,12,8,0,152,181,219,177,12,49,8,0,152,181,219,177,60,49,8,0,152,181,219,177,110,49,8,0,152,181,219,177,164,49,8,0,152,181,219,177,209,49,8,0,152,53,249,3,139,179,9,0,152,53,249,3,177,179,9,0,152,53,249,3,213,179,9,0,152,181,155,32,227,48,11,0,153,53,192,13,161,77,7,0,155,181,161,180,67,6,7,0,157,181,220,45,47,250,5,0,157,53,146,254,207,14,9,0,157,53,146,254,54,15,9,0,158,53,108,76,176,68,7,0,158,181,154,239,4,52,10,0,158,53,59,46,169,228,10,0,159,181,192,189,4,52,10,0,160,181,71,99,44,41,11,0,162,181,72,136,123,53,11,0,165,181,166,103,134,19,7,0,165,181,195,76,194,138,7,0,167,53,63,148,16,183,8,0,167,53,63,148,251,191,8,0,167,53,63,148,239,200,8,0,168,181,229,210,101,64,7,0,169,181,6,46,101,118,10,0,169,181,6,46,178,118,10,0,169,181,211,179,97,234,10,0,177,181,231,242,0,55,7,0,177,181,231,242,163,57,7,0,177,181,142,13,72,102,9,0,177,181,142,13,254,102,9,0,180,181,111,15,66,3,7,0,180,53,208,8,74,239,7,0,182,181,148,91,60,152,7,0,182,181,148,91,104,103,8,0,182,181,148,91,219,103,8,0,182,181,148,91,68,104,8,0,182,181,148,91,59,45,10,0,183,181,71,78,117,65,7,0,184,181,205,79,214,223,5,0,184,181,135,184,65,175,8,0,184,181,85,170,22,10,11,0,185,181,238,243,202,230,7,0,189,181,152,66,135,61,7,0,189,53,250,48,209,156,11,0,190,181,194,162,131,109,10,0,190,181,194,162,152,109,10,0,192,181,227,176,45,226,8,0,192,181,227,176,130,231,8,0,194,53,142,224,244,23,11,0,195,53,244,166,87,9,11,0,195,53,244,166,65,10,11,0,200,53,48,245,66,239,5,0,200,181,148,39,209,19,10,0,203,181,223,140,162,154,9,0,203,181,72,149,124,174,10,0,207,181,26,136,114,213,5,0,207,53,118,31,25,86,7,0,207,53,118,31,74,86,7,0,210,53,203,104,122,59,11,0,211,181,0,159,23,27,7,0,211,181,145,151,108,46,8,0,213,53,252,216,189,231,7,0,213,53,252,216,204,232,7,0,215,53,136,209,186,53,9,0,215,53,136,209,77,54,9,0,218,53,53,15,163,57,7,0,219,53,159,102,249,219,10,0,221,181,105,126,6,74,6,0,222,181,60,163,191,86,7,0,223,181,86,41,151,186,7,0,224,181,116,108,45,226,8,0,224,181,116,108,130,231,8,0,225,181,250,221,226,158,8,0,226,53,141,76,96,200,7,0,227,181,168,85,25,170,6,0,227,181,140,95,30,0,7,0,227,181,38,254,253,59,10,0,227,181,38,254,144,60,10,0,227,181,38,254,39,61,10,0,230,181,128,80,77,11,7,0,231,53,187,142,213,110,7,0,231,181,90,215,139,126,11,0,235,53,84,110,134,19,7,0,237,181,231,242,11,14,7,0,243,53,157,38,248,69,6,0,243,53,157,38,75,162,6,0,243,181,83,177,116,72,7,0,243,53,81,190,145,114,7,0,243,53,81,190,29,120,7,0,244,181,210,106,234,146,6,0,245,181,204,237,241,190,7,0,247,53,157,38,100,92,7,0,248,181,245,57,188,213,9,0,248,181,245,57,58,214,9,0,248,181,245,57,197,214,9,0,248,181,203,6,72,216,9,0,248,181,203,6,90,216,9,0,253,53,118,6,229,109,7,0,253,181,202,97,191,168,11,0,254,53,140,196,111,81,9,0,254,53,140,196,4,82,9,0,0,182,134,147,92,42,6,0,0,182,134,147,151,215,7,0,1,54,102,26,145,114,7,0,3,54,77,6,122,36,11,0,5,182,222,7,23,27,7,0,5,54,115,57,246,243,9,0,5,54,115,57,59,245,9,0,5,54,115,57,131,246,9,0,7,54,66,6,0,48,7,0,7,54,201,88,194,185,9,0,7,54,201,88,96,186,9,0,10,54,198,111,29,120,7,0,12,54,191,98,125,67,10,0,12,54,191,98,69,68,10,0,13,54,196,186,143,240,6,0,13,54,15,17,253,59,10,0,13,54,15,17,144,60,10,0,13,54,15,17,39,61,10,0,14,182,78,190,232,72,6,0,15,54,231,164,13,63,6,0,17,182,59,115,0,55,7,0,17,182,59,115,163,57,7,0,18,54,201,58,60,152,7,0,18,54,201,58,79,237,8,0,21,54,105,206,230,53,11,0,21,182,190,234,248,60,11,0,24,182,85,130,49,177,11,0,25,54,29,9,161,77,7,0,26,182,192,233,218,51,11,0,26,54,233,12,41,68,11,0,28,182,247,24,16,181,8,0,28,182,30,141,252,242,8,0,28,182,30,141,240,243,8,0,29,54,106,66,139,254,6,0,31,54,47,83,193,100,10,0,31,54,47,83,89,103,10,0,32,182,113,12,44,169,11,0,33,182,165,133,238,35,10,0,33,182,165,133,35,36,10,0,36,54,104,205,241,172,10,0,38,54,151,75,159,21,10,0,38,54,151,75,224,21,10,0,39,54,178,6,207,14,9,0,39,54,178,6,54,15,9,0,40,182,2,145,107,10,7,0,40,54,112,88,9,238,8,0,40,54,112,88,94,238,8,0,42,182,229,66,192,123,6,0,44,182,46,80,119,96,7,0,44,54,49,70,241,190,7,0,44,54,189,39,164,136,11,0,45,54,239,57,160,79,8,0,47,182,31,191,167,239,6,0,51,54,211,249,4,52,10,0,52,182,180,31,16,183,8,0,52,182,180,31,251,191,8,0,52,182,180,31,239,200,8,0,54,54,29,74,14,137,9,0,54,54,29,74,201,137,9,0,54,182,125,102,131,119,11,0,59,182,102,27,107,151,10,0,64,54,234,242,114,111,11,0,70,182,226,139,145,18,7,0,71,54,78,177,194,138,7,0,71,54,78,177,125,50,11,0,72,182,111,157,176,68,7,0,72,182,35,48,168,152,9,0,72,182,180,148,4,52,10,0,77,182,138,215,79,148,10,0,77,54,116,214,224,58,11,0,78,182,203,86,67,17,7,0,78,54,200,126,255,74,7,0,80,54,194,92,77,11,7,0,81,182,232,126,101,137,6,0,81,182,232,126,117,51,7,0,81,182,232,126,111,53,7,0,82,182,223,29,161,77,7,0,82,54,44,57,111,4,9,0,82,54,44,57,41,6,9,0,85,54,249,162,0,55,7,0,85,54,249,162,163,57,7,0,85,54,183,126,80,113,9,0,85,54,183,126,97,113,9,0,86,54,66,151,139,254,6,0,86,54,72,189,46,22,11,0,90,182,177,180,111,4,9,0,90,182,177,180,41,6,9,0,93,182,165,55,16,183,8,0,93,182,199,171,16,183,8,0,93,182,165,55,251,191,8,0,93,182,199,171,251,191,8,0,93,182,165,55,239,200,8,0,93,182,199,171,239,200,8,0,97,182,127,203,215,249,5,0,97,182,127,203,163,57,7,0,99,54,13,143,220,39,7,0,100,54,36,166,23,27,7,0,101,54,116,143,29,120,7,0,104,54,182,92,16,183,8,0,104,54,182,92,251,191,8,0,104,54,182,92,239,200,8,0,104,182,218,79,18,210,8,0,104,182,218,79,113,210,8,0,104,182,218,79,217,210,8,0,105,54,205,220,25,250,5,0,109,54,89,35,145,18,7,0,109,182,128,114,13,211,10,0,111,182,95,19,180,170,11,0,113,182,222,177,83,126,8,0,113,182,222,177,65,128,8,0,113,182,222,177,4,129,8,0,113,182,222,177,151,129,8,0,113,182,222,177,228,129,8,0,115,182,163,127,4,52,10,0,118,182,236,88,123,204,6,0,118,182,236,88,42,164,8,0,119,182,84,144,164,106,9,0,119,182,84,144,188,106,9,0,120,182,206,185,160,79,8,0,128,54,249,110,139,163,9,0,128,54,249,110,241,163,9,0,129,54,250,73,74,119,9,0,129,54,250,73,94,119,9,0,129,54,15,28,217,238,9,0,129,54,15,28,174,239,9,0,130,182,196,50,141,180,9,0,130,182,196,50,190,180,9,0,130,182,196,50,3,181,9,0,131,54,87,138,12,99,7,0,131,182,120,8,246,243,9,0,131,182,120,8,59,245,9,0,131,182,120,8,131,246,9,0,132,182,135,227,16,183,8,0,132,182,135,227,251,191,8,0,132,182,135,227,239,200,8,0,137,54,27,55,27,255,8,0,137,54,27,55,100,255,8,0,138,182,7,22,24,163,6,0,138,182,17,240,218,93,7,0,138,54,235,19,122,254,10,0,141,54,18,202,92,9,8,0,143,182,87,247,228,18,6,0,147,182,68,165,145,12,8,0,149,182,168,94,194,138,7,0,152,182,227,244,228,66,7,0,152,54,174,102,249,0,9,0,152,54,174,102,36,1,9,0,153,182,205,40,26,179,11,0,154,54,41,104,163,57,7,0,156,182,72,188,47,13,7,0,157,54,47,132,129,8,11,0,159,54,103,45,75,64,7,0,163,54,115,45,97,16,7,0,163,54,248,119,78,254,8,0,163,54,248,119,111,254,8,0,163,54,226,14,193,100,10,0,163,54,226,14,89,103,10,0,164,182,128,112,161,110,10,0,164,182,128,112,2,112,10,0,166,54,128,243,219,238,8,0,166,54,128,243,39,240,8,0,166,54,128,243,117,241,8,0,167,54,196,148,134,2,6,0,168,54,44,43,82,149,11,0,170,54,251,13,216,51,9,0,170,54,251,13,175,52,9,0,171,182,136,163,116,72,7,0,173,182,203,129,65,41,7,0,173,182,217,35,250,75,10,0,173,182,217,35,18,76,10,0,173,182,217,35,37,76,10,0,177,182,117,157,142,243,6,0,177,54,15,122,90,99,8,0,179,182,43,9,62,223,9,0,179,182,43,9,64,224,9,0,179,182,43,9,93,225,9,0,184,182,205,140,241,190,7,0,185,182,201,0,16,183,8,0,185,182,201,0,251,191,8,0,185,182,201,0,239,200,8,0,186,54,134,9,204,150,6,0,186,54,99,143,16,183,8,0,186,54,99,143,251,191,8,0,186,54,99,143,239,200,8,0,186,182,99,106,223,18,11,0,188,54,183,136,112,246,7,0,189,182,98,244,29,180,7,0,189,182,143,151,62,223,9,0,189,182,143,151,64,224,9,0,189,182,143,151,93,225,9,0,189,54,194,201,149,53,11,0,197,54,131,206,71,250,6,0,197,54,131,206,135,149,7,0,199,182,74,199,245,48,11,0,199,182,74,199,166,57,11,0,201,54,119,96,183,221,5,0,203,54,11,209,160,79,8,0,203,54,233,60,39,47,9,0,203,54,233,60,54,48,9,0,204,182,101,103,120,214,10,0,206,54,207,63,139,254,6,0,206,182,150,34,43,50,8,0,206,182,150,34,93,50,8,0,209,182,231,242,193,100,10,0,209,182,231,242,89,103,10,0,217,54,11,238,147,187,6,0,218,182,162,39,139,209,5,0,218,182,161,86,254,226,6,0,218,182,244,104,58,68,7,0,218,182,115,27,4,52,10,0,219,182,174,45,67,6,7,0,219,182,18,186,8,112,7,0,219,54,124,27,72,102,9,0,219,54,124,27,254,102,9,0,222,182,95,35,181,179,6,0,222,182,246,56,254,160,9,0,222,182,246,56,46,161,9,0,224,54,197,85,242,189,6,0,229,54,77,231,40,169,6,0,229,54,77,231,42,186,6,0,229,54,90,155,73,82,7,0,233,54,203,43,114,84,7,0,236,182,236,229,83,126,8,0,240,54,101,224,137,23,6,0,240,182,98,47,209,19,10,0,241,54,170,163,221,98,9,0,241,54,170,163,47,99,9,0,241,182,213,198,194,185,9,0,241,182,213,198,96,186,9,0,242,54,10,117,160,79,8,0,242,182,196,67,45,226,8,0,242,182,196,67,130,231,8,0,244,182,3,165,218,93,7,0,246,182,236,167,44,87,8,0,247,54,57,133,221,98,9,0,247,54,57,133,47,99,9,0,249,54,64,43,96,221,6,0,249,54,64,43,0,132,9,0,253,182,164,241,204,181,9,0,253,182,164,241,224,182,9,0,253,54,95,139,5,231,10,0,254,54,234,125,12,99,7,0,0,183,137,248,218,93,7,0,1,55,185,163,23,27,7,0,1,183,235,130,82,155,10,0,3,183,190,166,143,51,11,0,3,183,190,166,182,51,11,0,5,55,42,246,100,92,7,0,5,55,224,163,194,138,7,0,5,55,42,246,45,33,9,0,5,55,42,246,120,33,9,0,7,55,194,132,102,214,8,0,7,55,194,132,14,218,8,0,7,183,102,223,47,98,9,0,13,55,124,196,29,120,7,0,14,55,45,163,79,149,10,0,15,55,130,14,150,225,5,0,15,183,207,34,240,248,6,0,17,183,211,55,29,14,6,0,17,183,36,116,145,114,7,0,17,183,211,55,73,130,7,0,20,183,37,82,29,120,7,0,20,55,153,134,217,238,9,0,20,55,153,134,174,239,9,0,24,55,219,127,189,199,6,0,25,55,0,61,206,238,6,0,26,183,4,226,100,199,7,0,27,55,214,186,134,19,7,0,28,183,232,169,23,27,7,0,29,183,127,11,229,218,5,0,29,55,59,209,161,77,7,0,30,183,253,55,147,35,7,0,33,55,35,108,60,151,10,0,34,55,236,7,60,152,7,0,34,55,236,7,128,112,8,0,36,55,27,126,145,114,7,0,45,183,144,239,65,41,7,0,47,55,67,205,101,64,7,0,48,55,1,101,115,161,9,0,48,55,1,101,104,162,9,0,49,183,15,167,163,57,7,0,52,183,248,189,184,209,5,0,52,183,225,150,16,183,8,0,52,183,225,150,251,191,8,0,52,183,225,150,239,200,8,0,53,183,15,120,125,18,9,0,53,183,15,120,34,19,9,0,54,55,7,141,252,242,8,0,54,55,7,141,240,243,8,0,54,55,166,77,15,143,11,0,54,55,166,77,60,146,11,0,55,183,58,193,114,56,11,0,58,183,174,204,6,249,9,0,58,183,174,204,105,249,9,0,58,183,174,204,201,249,9,0,59,183,135,227,29,120,7,0,59,55,80,18,43,72,10,0,59,55,80,18,148,72,10,0,62,55,36,228,46,167,11,0,63,55,207,163,152,65,7,0,63,183,254,107,16,183,8,0,63,183,254,107,251,191,8,0,63,183,254,107,239,200,8,0,68,55,210,58,115,227,5,0,68,183,195,40,85,181,7,0,71,55,84,131,71,251,10,0,72,55,15,138,194,138,7,0,75,183,131,250,68,216,5,0,76,55,31,81,4,52,10,0,78,55,118,36,48,53,8,0,81,183,236,182,102,15,7,0,86,55,37,102,23,27,7,0,86,183,169,39,228,66,7,0,86,183,211,113,181,39,11,0,87,55,114,61,217,168,6,0,87,55,206,191,160,230,6,0,88,55,32,253,4,52,10,0,89,183,217,48,167,239,6,0,89,55,157,144,161,77,7,0,90,55,47,117,218,93,7,0,91,183,113,143,111,210,9,0,91,183,113,143,155,210,9,0,92,183,240,80,134,247,5,0,92,55,52,50,26,7,7,0,92,55,153,109,252,242,8,0,92,55,153,109,240,243,8,0,93,183,82,11,170,91,7,0,94,183,228,250,255,74,7,0,94,55,184,156,171,218,10,0,95,183,249,113,28,190,9,0,95,183,249,113,53,190,9,0,96,55,113,171,161,233,6,0,96,55,127,21,60,152,7,0,96,55,127,21,128,112,8,0,96,183,57,235,32,20,9,0,96,183,57,235,179,20,9,0,97,55,100,27,4,52,10,0,100,183,18,75,180,205,6,0,104,183,193,106,29,120,7,0,105,55,128,124,73,38,7,0,105,183,229,55,4,44,7,0,106,55,92,134,167,242,9,0,108,55,249,141,125,67,11,0,112,55,146,189,134,19,7,0,112,183,43,215,135,2,9,0,112,183,43,215,47,3,9,0,112,183,148,2,115,161,9,0,112,183,148,2,104,162,9,0,115,183,99,161,185,46,9,0,115,183,99,161,221,46,9,0,117,55,160,149,12,99,7,0,117,183,86,90,111,81,9,0,117,183,86,90,4,82,9,0,120,183,106,226,60,152,7,0,120,183,106,226,59,2,10,0,120,183,106,226,95,2,10,0,120,183,106,226,126,2,10,0,121,55,208,11,253,43,6,0,121,55,240,101,106,66,7,0,121,55,187,12,243,85,7,0,121,183,61,142,70,160,11,0,122,183,147,240,23,27,7,0,122,55,189,156,104,67,7,0,123,183,76,92,22,91,7,0,125,183,248,56,218,93,7,0,127,55,56,73,167,242,9,0,128,183,202,120,161,110,10,0,128,183,202,120,2,112,10,0,131,183,168,141,160,230,6,0,132,183,36,131,23,27,7,0,133,183,105,52,57,5,7,0,134,55,52,171,89,38,6,0,134,183,58,206,51,65,7,0,135,55,98,128,100,92,7,0,140,183,67,205,161,77,7,0,141,55,101,132,241,22,6,0,141,55,194,95,116,72,7,0,141,183,192,0,65,76,7,0,141,55,101,132,129,37,8,0,143,183,107,187,252,242,8,0,143,183,107,187,240,243,8,0,145,55,120,27,86,56,9,0,145,55,120,27,9,57,9,0,146,55,40,251,92,9,8,0,146,183,127,105,249,63,8,0,148,183,165,193,60,152,7,0,148,183,165,193,151,164,7,0,148,183,165,193,226,164,7,0,149,55,19,197,47,183,7,0,149,183,157,92,193,100,10,0,149,183,157,92,89,103,10,0,151,55,250,94,198,8,6,0,152,55,99,125,70,119,11,0,154,55,172,72,89,102,6,0,154,55,194,32,45,226,8,0,154,55,194,32,130,231,8,0,156,55,168,133,30,5,7,0,156,55,168,133,45,8,8,0,156,183,105,120,6,4,10,0,156,183,105,120,28,4,10,0,156,183,105,120,48,4,10,0,157,183,119,71,149,223,7,0,158,55,160,45,170,227,10,0,159,55,157,38,75,145,6,0,159,55,61,51,197,121,11,0,160,55,94,20,56,238,7,0,162,55,233,183,209,207,10,0,164,183,100,235,125,18,9,0,164,183,100,235,34,19,9,0,165,183,236,42,16,183,8,0,165,183,236,42,251,191,8,0,165,183,236,42,239,200,8,0,168,55,247,191,63,51,11,0,170,55,147,249,79,15,11,0,175,55,118,92,149,40,7,0,175,55,10,49,154,30,11,0,177,55,143,199,229,109,7,0,181,183,252,82,122,4,8,0,183,55,116,136,218,93,7,0,184,55,128,172,35,91,11,0,184,55,128,172,157,95,11,0,185,55,207,120,135,61,7,0,187,183,206,64,29,14,6,0,187,183,206,64,73,130,7,0,187,183,251,81,20,30,10,0,187,183,251,81,115,30,10,0,187,183,251,81,207,30,10,0,188,55,56,109,132,135,6,0,188,183,139,50,51,104,7,0,188,55,112,167,199,70,8,0,188,183,31,237,168,104,8,0,188,183,31,237,45,105,8,0,188,183,31,237,167,105,8,0,189,55,60,127,198,234,6,0,189,55,27,88,147,110,7,0,191,55,23,106,231,243,5,0,192,55,26,58,43,89,7,0,192,183,201,84,224,123,9,0,192,183,201,84,29,124,9,0,192,183,201,84,109,124,9,0,195,183,35,102,61,39,7,0,195,183,126,223,119,96,7,0,197,183,170,210,152,252,8,0,201,55,212,230,145,114,7,0,201,55,209,107,145,12,8,0,201,183,107,238,236,10,10,0,202,55,215,130,103,88,8,0,202,55,215,130,137,88,8,0,202,55,215,130,171,88,8,0,207,55,104,241,132,21,9,0,207,55,104,241,157,23,9,0,207,55,234,52,106,231,10,0,208,183,48,69,227,43,6,0,213,183,142,38,22,107,11,0,214,183,58,206,95,186,7,0,214,183,248,12,23,160,11,0,214,183,248,12,42,160,11,0,215,183,221,184,62,223,9,0,215,183,221,184,64,224,9,0,215,183,221,184,93,225,9,0,216,55,113,231,141,252,6,0,217,55,197,177,194,241,6,0,217,183,67,153,51,104,7,0,217,55,197,177,56,189,7,0,217,55,197,177,108,189,7,0,219,55,176,116,211,250,6,0,220,55,255,175,213,43,9,0,220,55,255,175,238,43,9,0,220,55,255,175,30,44,9,0,220,55,255,175,233,201,10,0,222,55,214,223,44,188,10,0,226,55,29,245,38,248,5,0,226,183,187,205,127,142,6,0,226,55,29,245,29,120,7,0,226,183,156,236,194,138,7,0,227,183,74,88,121,160,6,0,227,55,97,44,136,1,7,0,228,183,99,158,238,35,10,0,228,183,99,158,35,36,10,0,229,55,252,47,23,27,7,0,232,55,0,99,209,84,7,0,233,55,42,238,135,44,7,0,234,55,211,204,159,32,10,0,234,55,211,204,240,32,10,0,235,55,39,165,98,237,6,0,237,183,113,144,145,12,8,0,237,55,225,42,207,145,11,0,242,183,98,127,115,168,6,0,242,183,73,129,139,254,6,0,244,183,52,202,95,59,9,0,244,183,52,202,147,59,9,0,245,183,30,103,193,100,10,0,245,183,30,103,89,103,10,0,249,55,28,88,161,77,7,0,250,55,222,115,116,72,7,0,250,55,77,49,45,226,8,0,250,55,77,49,130,231,8,0,251,183,174,55,65,41,7,0,253,183,49,244,170,91,7,0,4,184,159,132,207,70,7,0,5,184,126,223,12,99,7,0,6,184,89,101,21,71,9,0,6,184,89,101,100,72,9,0,6,184,89,101,181,73,9,0,6,184,89,101,11,75,9,0,7,56,188,72,31,36,6,0,7,56,132,110,194,138,7,0,8,184,181,102,101,64,7,0,10,184,114,27,253,38,9,0,10,184,114,27,207,40,9,0,13,184,255,2,149,108,6,0,14,56,112,38,45,226,8,0,14,56,112,38,130,231,8,0,16,184,84,67,29,120,7,0,16,184,232,13,215,175,11,0,18,184,172,120,175,88,9,0,18,184,172,120,254,88,9,0,18,184,172,120,92,89,9,0,18,184,172,120,173,89,9,0,18,184,11,28,77,135,10,0,19,56,245,199,134,19,7,0,20,56,133,252,0,55,7,0,24,56,25,177,23,27,7,0,24,56,23,79,187,179,10,0,25,184,222,124,226,255,5,0,27,184,22,127,134,19,7,0,28,56,38,210,29,14,6,0,28,56,38,210,73,130,7,0,28,184,191,4,60,152,7,0,28,184,191,4,104,22,8,0,28,184,191,4,148,22,8,0,30,56,239,67,39,47,9,0,30,56,239,67,54,48,9,0,31,184,250,125,51,220,6,0,31,56,92,224,145,12,8,0,36,184,247,126,102,233,6,0,36,184,247,126,130,233,6,0,37,56,42,91,201,251,6,0,37,184,168,71,135,44,7,0,39,56,223,81,125,18,9,0,39,56,223,81,34,19,9,0,40,184,157,243,161,77,7,0,40,184,193,25,127,163,11,0,44,184,97,128,81,95,6,0,44,184,97,128,76,197,7,0,46,184,51,55,85,174,7,0,46,184,51,55,202,174,7,0,47,56,40,25,11,214,5,0,49,56,72,173,134,19,7,0,49,184,119,79,135,86,11,0,49,184,80,81,176,147,11,0,50,56,151,234,159,32,10,0,50,56,151,234,240,32,10,0,52,56,169,127,21,71,9,0,52,56,169,127,100,72,9,0,52,56,169,127,181,73,9,0,52,56,169,127,11,75,9,0,52,56,226,108,4,52,10,0,53,56,98,231,182,13,7,0,53,56,94,247,4,52,10,0,53,56,116,229,148,85,11,0,55,184,128,79,29,81,7,0,57,184,14,108,13,99,11,0,60,56,75,134,163,57,7,0,61,56,148,132,232,179,7,0,65,56,204,131,1,220,5,0,65,184,72,226,92,9,8,0,65,56,204,131,45,226,8,0,65,56,204,131,130,231,8,0,66,184,241,130,163,57,7,0,66,184,221,139,250,87,10,0,66,56,0,164,193,100,10,0,66,56,0,164,89,103,10,0,67,184,138,123,246,243,9,0,67,184,138,123,59,245,9,0,67,184,138,123,131,246,9,0,67,184,85,61,207,188,10,0,73,184,123,219,29,120,7,0,77,184,189,28,241,188,10,0,78,56,79,28,128,39,7,0,79,56,68,182,73,82,7,0,84,184,80,12,213,15,9,0,86,184,78,140,142,36,10,0,86,184,78,140,163,36,10,0,86,184,78,140,189,36,10,0,89,56,24,203,222,214,10,0,91,184,210,88,63,1,8,0,92,184,36,8,110,68,6,0,92,184,208,28,134,19,7,0,93,56,54,198,23,27,7,0,95,184,93,238,0,185,10,0,100,56,62,91,189,109,7,0,100,56,62,91,44,163,11,0,100,56,62,91,69,165,11,0,103,184,77,220,160,79,8,0,104,184,168,185,65,174,11,0,104,184,168,185,171,177,11,0,111,184,83,253,22,91,7,0,112,184,42,121,194,138,7,0,118,184,88,107,29,120,7,0,121,56,63,123,0,48,7,0,123,56,83,112,132,21,9,0,123,56,83,112,157,23,9,0,125,56,157,105,130,112,11,0,127,56,187,190,124,22,10,0,127,56,187,190,179,22,10,0,127,56,187,190,235,22,10,0,128,184,237,155,29,177,6,0,129,184,235,233,16,183,8,0,129,184,235,233,251,191,8,0,129,184,235,233,239,200,8,0,131,184,137,173,100,78,8,0,132,184,24,167,117,225,5,0,134,56,94,247,249,155,10,0,134,56,169,234,177,251,10,0,135,56,60,134,201,106,7,0,136,56,216,149,45,226,8,0,136,56,216,149,130,231,8,0,140,184,78,18,13,197,7,0,140,184,78,18,20,198,7,0,143,56,156,141,161,77,7,0,146,56,251,65,217,177,6,0,146,184,126,66,92,9,8,0,146,56,220,243,43,162,8,0,147,184,55,127,249,105,6,0,147,184,121,89,16,37,7,0,148,56,180,220,4,247,6,0,148,184,137,43,99,194,7,0,148,184,82,98,112,246,7,0,149,56,250,182,16,219,6,0,149,184,184,32,220,65,7,0,149,184,203,174,216,51,9,0,149,184,203,174,175,52,9,0,152,56,3,239,16,183,8,0,152,56,3,239,251,191,8,0,152,56,3,239,239,200,8,0,152,184,68,71,159,169,10,0,155,184,228,140,60,152,7,0,155,56,206,87,31,176,7,0,155,184,228,140,79,237,8,0,155,184,193,110,22,46,10,0,155,184,193,110,98,46,10,0,156,184,104,201,90,171,7,0,160,184,6,125,4,52,10,0,161,56,212,167,134,19,7,0,162,184,19,247,77,252,6,0,162,184,19,247,167,113,9,0,162,184,19,247,7,114,9,0,162,184,19,247,108,114,9,0,162,184,19,247,202,114,9,0,162,184,19,247,49,115,9,0,163,184,228,139,228,36,6,0,163,184,228,139,62,39,6,0,163,56,238,229,43,72,10,0,163,56,238,229,148,72,10,0,165,56,153,235,246,118,9,0,165,56,153,235,10,119,9,0,165,56,227,86,109,72,11,0,166,184,97,158,21,118,8,0,170,56,159,110,89,141,11,0,170,56,159,110,203,141,11,0,170,56,159,110,229,141,11,0,171,184,10,176,143,240,6,0,172,184,192,98,223,167,6,0,172,56,133,253,173,169,6,0,172,184,87,218,23,27,7,0,178,184,100,199,30,149,6,0,179,56,214,34,116,72,7,0,180,56,216,223,4,52,10,0,183,184,242,45,167,239,7,0,184,184,149,96,36,153,10,0,185,184,180,2,194,138,7,0,185,184,12,114,204,181,9,0,185,184,12,114,224,182,9,0,187,56,186,164,190,175,6,0,190,184,147,153,29,120,7,0,191,56,156,59,158,217,5,0,191,56,226,36,88,239,5,0,191,184,94,19,213,188,7,0,196,184,63,220,32,20,9,0,196,184,63,220,179,20,9,0,196,184,53,252,43,72,10,0,196,184,53,252,148,72,10,0,198,56,15,112,218,93,7,0,198,56,214,126,45,226,8,0,198,56,214,126,130,231,8,0,199,184,223,7,255,70,7,0,202,184,200,20,158,241,10,0,203,56,19,27,160,79,8,0,204,184,218,147,253,38,9,0,204,184,218,147,207,40,9,0,207,56,235,177,179,85,6,0,210,184,45,12,8,185,9,0,210,184,45,12,59,52,11,0,212,56,192,114,29,120,7,0,212,184,23,192,101,118,10,0,212,184,23,192,178,118,10,0,216,56,173,246,218,93,7,0,217,56,110,168,21,71,9,0,217,56,110,168,100,72,9,0,217,56,110,168,181,73,9,0,217,56,110,168,11,75,9,0,218,56,116,141,176,68,7,0,224,184,248,131,39,47,9,0,224,184,248,131,54,48,9,0,226,56,246,194,4,1,6,0,227,56,180,109,232,72,6,0,230,184,145,141,240,248,6,0,231,56,136,118,207,139,10,0,234,184,171,230,223,37,6,0,236,56,218,54,116,72,7,0,236,184,50,65,16,183,8,0,236,184,50,65,251,191,8,0,236,184,50,65,239,200,8,0,236,56,218,54,181,106,10,0,236,56,218,54,200,106,10,0,243,184,160,248,23,20,6,0,246,184,137,116,82,250,5,0,247,184,128,251,156,253,6,0,248,184,127,23,112,255,5,0,248,56,53,57,146,198,10,0,250,184,115,12,23,27,7,0,255,56,213,92,27,9,7,0,1,57,112,146,161,110,10,0,1,57,112,146,2,112,10,0,3,185,145,200,51,104,7,0,3,57,78,100,16,171,11,0,5,185,15,123,43,163,6,0,5,57,221,204,134,19,7,0,5,57,170,36,116,72,7,0,6,57,0,1,204,50,9,0,6,57,0,1,17,51,9,0,6,57,0,1,93,51,9,0,9,57,188,148,240,154,10,0,11,57,235,217,145,114,7,0,12,185,27,71,241,39,6,0,12,185,116,32,80,221,10,0,14,57,58,155,184,89,7,0,15,57,81,190,107,55,11,0,16,185,111,143,71,228,5,0,16,57,49,14,177,105,7,0,16,57,249,19,32,20,9,0,16,57,249,19,179,20,9,0,17,57,197,107,246,243,9,0,17,57,197,107,59,245,9,0,17,57,197,107,131,246,9,0,22,57,96,46,194,138,7,0,26,57,230,151,75,148,7,0,27,185,251,176,51,104,7,0,27,185,76,47,86,56,9,0,27,185,76,47,9,57,9,0,29,185,210,2,55,108,7,0,29,185,31,36,244,35,11,0,30,185,26,234,134,19,7,0,30,185,72,251,29,120,7,0,35,185,117,40,169,251,6,0,37,185,84,124,69,223,10,0,38,185,199,227,204,181,9,0,38,185,199,227,224,182,9,0,40,185,182,232,165,194,7,0,40,57,230,104,163,88,10,0,40,57,230,104,163,88,10,0,40,57,230,104,163,88,10,0,40,57,230,104,83,89,10,0,40,57,230,104,83,89,10,0,40,57,230,104,83,89,10,0,40,185,194,179,145,8,11,0,47,57,186,170,194,138,7,0,48,57,188,49,9,84,9,0,48,57,188,49,62,84,9,0,49,57,33,51,4,52,10,0,50,57,154,112,44,157,9,0,50,57,154,112,89,157,9,0,51,185,80,241,51,104,7,0,56,57,115,11,29,120,7,0,57,57,123,21,162,74,6,0,58,57,58,67,157,81,6,0,58,57,58,132,139,254,6,0,58,185,235,207,132,21,9,0,58,185,235,207,157,23,9,0,59,57,174,221,193,27,11,0,61,57,242,178,194,138,7,0,62,57,98,126,16,37,7,0,62,185,25,249,194,138,7,0,63,57,41,34,23,27,7,0,67,185,195,133,209,253,10,0,68,57,33,203,114,58,8,0,68,185,127,73,16,183,8,0,68,185,127,73,251,191,8,0,68,185,127,73,239,200,8,0,69,57,221,183,205,150,10,0,73,57,42,59,132,65,11,0,74,185,40,40,145,12,8,0,78,185,95,8,242,243,10,0,81,185,216,16,237,178,6,0,81,185,216,16,79,179,6,0,82,57,246,234,221,98,9,0,82,57,246,234,47,99,9,0,84,185,81,242,134,19,7,0,84,57,74,110,193,100,10,0,84,57,74,110,89,103,10,0,86,57,35,93,175,100,6,0,86,185,17,53,65,41,7,0,88,57,17,112,252,169,7,0,88,57,76,103,154,228,10,0,91,185,4,109,253,49,7,0,92,185,186,234,235,208,10,0,93,185,214,177,14,41,6,0,93,185,91,72,242,148,6,0,93,185,214,177,140,163,6,0,93,185,91,72,183,249,6,0,93,57,115,168,60,152,7,0,93,185,45,6,115,85,9,0,93,185,45,6,150,85,9,0,93,185,45,6,187,85,9,0,93,57,115,168,224,136,9,0,93,57,115,168,251,136,9,0,95,57,10,69,240,248,6,0,96,185,187,203,31,237,5,0,98,57,229,246,60,152,7,0,98,57,229,246,79,237,8,0,99,57,164,184,16,183,8,0,99,57,164,184,251,191,8,0,99,57,164,184,239,200,8,0,99,185,7,101,204,118,11,0,100,57,32,121,139,254,6,0,100,57,175,200,76,84,8,0,104,57,9,126,116,72,7,0,107,57,37,152,213,110,7,0,108,57,25,193,29,14,6,0,108,57,25,193,73,130,7,0,110,185,165,84,109,242,7,0,113,57,44,4,103,83,6,0,114,185,229,184,58,45,8,0,116,57,211,200,102,15,7,0,118,185,58,3,57,220,10,0,119,185,81,45,97,169,6,0,122,57,162,214,168,152,9,0,123,57,127,98,65,76,7,0,123,185,45,9,216,181,7,0,127,185,107,139,255,70,10,0,127,185,107,139,87,71,10,0,127,185,107,139,174,71,10,0,134,57,81,170,40,240,5,0,135,185,127,212,23,27,7,0,138,185,215,68,193,100,10,0,138,185,215,68,89,103,10,0,139,185,198,231,217,103,7,0,139,185,198,231,194,138,7,0,139,57,160,40,60,152,7,0,139,57,160,40,190,122,8,0,139,57,160,40,83,123,8,0,139,57,160,40,244,123,8,0,139,57,160,40,210,33,10,0,141,185,143,186,152,211,6,0,142,185,234,65,179,122,9,0,142,185,32,126,11,213,10,0,143,57,255,204,27,9,7,0,143,185,108,254,15,166,8,0,144,185,45,100,183,66,6,0,146,185,182,47,23,27,7,0,148,57,107,189,117,71,7,0,148,57,102,232,194,138,7,0,149,185,184,49,194,138,7,0,150,185,105,69,135,44,7,0,151,185,139,229,83,126,8,0,153,57,22,26,149,174,9,0,153,57,22,26,200,174,9,0,155,185,39,93,196,1,6,0,155,185,39,93,216,1,6,0,156,185,166,225,118,74,11,0,157,57,66,161,27,255,8,0,157,57,66,161,100,255,8,0,158,185,135,227,29,120,7,0,159,185,99,159,184,47,11,0,159,185,99,159,208,47,11,0,160,185,50,127,145,114,7,0,164,185,46,35,169,59,11,0,167,57,225,67,139,14,10,0,167,57,225,67,50,15,10,0,169,57,191,29,134,19,7,0,169,185,98,244,60,152,7,0,175,57,123,26,64,47,7,0,176,57,144,158,47,93,9,0,176,57,144,158,74,93,9,0,177,57,244,136,168,230,5,0,178,185,69,218,194,138,7,0,178,57,72,76,91,38,10,0,178,57,72,76,132,38,10,0,180,185,207,217,66,3,7,0,180,185,207,217,126,175,10,0,181,185,71,82,45,226,8,0,181,185,71,82,130,231,8,0,181,57,128,153,114,160,11,0,182,185,34,65,108,233,9,0,182,185,34,65,155,233,9,0,185,185,193,176,16,183,8,0,185,185,193,176,251,191,8,0,185,185,193,176,239,200,8,0,189,185,173,129,55,217,7,0,189,185,173,129,108,217,7,0,189,185,173,129,151,217,7,0,190,185,69,13,128,39,7,0,193,57,17,97,4,52,10,0,194,185,58,206,134,139,11,0,194,185,58,206,202,139,11,0,199,57,38,247,233,16,7,0,200,57,4,222,4,52,10,0,206,185,251,36,21,71,9,0,206,185,251,36,100,72,9,0,206,185,251,36,181,73,9,0,206,185,251,36,11,75,9,0,209,185,226,161,86,56,9,0,209,185,226,161,9,57,9,0,209,185,121,16,2,175,11,0,210,57,4,53,216,140,9,0,210,57,4,53,69,141,9,0,213,57,37,136,45,226,8,0,213,57,37,136,130,231,8,0,215,57,238,177,146,76,9,0,215,57,238,177,63,77,9,0,216,57,38,85,181,111,7,0,217,185,78,153,77,87,11,0,219,185,64,62,12,99,7,0,220,185,60,75,211,114,8,0,221,185,212,112,233,16,7,0,224,57,28,48,95,59,9,0,224,57,28,48,147,59,9,0,227,185,138,73,160,79,8,0,229,57,135,128,220,239,5,0,230,57,109,23,18,242,5,0,230,185,4,233,167,60,11,0,232,185,236,135,186,245,10,0,233,57,228,124,189,72,8,0,233,57,228,124,246,72,8,0,233,57,228,124,43,73,8,0,235,57,236,164,103,48,7,0,238,57,11,58,131,141,10,0,240,57,215,237,133,214,10,0,241,185,110,170,99,239,6,0,242,185,132,235,255,70,7,0,242,57,87,186,116,138,10,0,243,57,120,218,205,87,7,0,244,185,239,19,16,183,8,0,244,185,239,19,251,191,8,0,244,185,239,19,239,200,8,0,245,57,51,205,23,27,7,0,247,185,79,35,120,180,7,0,249,185,172,30,202,137,11,0,250,57,94,63,88,177,6,0,254,185,209,229,243,238,6,0,254,185,18,1,114,182,11,0,255,57,198,4,242,239,5,0,0,58,9,48,233,184,6,0,0,58,9,48,201,175,8,0,1,186,203,199,186,22,11,0,2,186,81,171,156,132,6,0,7,58,108,16,249,63,8,0,7,58,108,16,110,64,8,0,8,186,168,224,163,88,10,0,8,186,168,224,83,89,10,0,9,58,215,203,221,170,7,0,13,58,248,83,145,114,7,0,15,58,113,181,111,4,9,0,15,58,113,181,41,6,9,0,19,186,97,211,8,215,5,0,21,58,110,230,16,183,8,0,21,58,110,230,251,191,8,0,21,58,110,230,239,200,8,0,21,58,197,212,83,197,10,0,22,186,106,132,226,11,7,0,26,186,214,88,168,152,9,0,30,186,46,38,114,242,10,0,30,186,179,197,187,135,11,0,31,58,65,53,219,121,11,0,32,186,60,239,103,66,6,0,33,58,157,200,76,222,10,0,35,58,255,109,194,138,7,0,37,58,146,194,4,52,10,0,40,186,223,190,12,99,7,0,40,58,237,137,77,135,10,0,46,186,4,51,68,86,11,0,47,186,119,176,139,14,10,0,47,186,119,176,50,15,10,0,48,58,12,164,218,93,7,0,49,58,61,39,21,71,9,0,49,58,61,39,100,72,9,0,49,58,61,39,181,73,9,0,49,58,61,39,11,75,9,0,53,186,41,82,194,138,7,0,53,186,209,133,211,54,11,0,61,186,83,102,169,250,10,0,62,58,37,183,150,214,10,0,65,58,239,52,111,79,9,0,65,58,239,52,167,79,9,0,65,58,239,52,224,79,9,0,65,186,85,120,115,161,9,0,65,186,85,120,104,162,9,0,67,58,154,20,226,89,11,0,67,58,154,20,253,98,11,0,69,58,231,250,49,248,10,0,69,58,231,250,82,248,10,0,70,58,81,116,233,4,7,0,71,58,253,102,43,89,7,0,71,58,66,170,204,96,11,0,73,58,196,104,218,93,7,0,73,186,140,197,6,93,8,0,73,186,140,197,56,93,8,0,73,58,196,104,89,160,10,0,74,186,29,157,145,114,7,0,77,58,197,98,10,20,11,0,81,186,14,79,38,137,7,0,83,186,27,248,93,192,6,0,85,186,44,202,145,114,7,0,88,186,204,99,233,29,8,0,92,186,88,81,253,49,7,0,92,58,165,90,135,61,7,0,92,58,38,135,252,169,7,0,92,186,222,15,83,126,8,0,96,186,119,198,64,67,7,0,99,186,60,166,0,55,7,0,99,186,60,166,163,57,7,0,100,186,224,185,145,12,8,0,100,186,227,90,70,136,8,0,101,186,76,214,107,226,9,0,101,186,76,214,251,226,9,0,101,186,62,68,4,52,10,0,102,186,135,78,36,174,7,0,104,58,8,52,131,222,8,0,104,58,8,52,38,223,8,0,104,58,8,52,206,223,8,0,104,58,126,15,153,48,11,0,107,58,172,238,137,102,6,0,107,58,237,149,104,67,7,0,107,186,98,157,200,162,7,0,108,58,186,21,136,236,6,0,108,186,223,71,29,120,7,0,110,186,109,117,190,208,10,0,112,58,181,221,75,148,7,0,112,58,181,221,120,164,7,0,113,58,147,95,101,221,9,0,113,58,147,95,133,221,9,0,114,186,113,82,183,82,7,0,114,186,203,44,133,62,8,0,114,186,28,224,4,52,10,0,115,58,18,12,29,14,6,0,115,58,18,12,73,130,7,0,116,186,67,251,74,193,6,0,116,58,41,70,41,254,6,0,118,58,252,111,16,183,8,0,118,58,252,111,251,191,8,0,118,58,252,111,239,200,8,0,121,186,87,63,106,91,6,0,122,58,148,192,145,114,7,0,126,58,195,3,55,108,7,0,128,58,52,139,43,163,6,0,128,58,94,52,111,81,9,0,128,58,94,52,4,82,9,0,130,58,94,188,142,245,10,0,131,58,148,190,64,243,10,0,132,58,50,253,25,86,7,0,132,58,50,253,74,86,7,0,136,58,82,41,4,52,10,0,137,58,92,216,153,71,6,0,137,186,92,124,97,173,7,0,137,58,95,235,4,52,10,0,140,58,248,149,4,44,7,0,140,186,118,214,163,57,7,0,140,58,38,131,4,52,10,0,142,58,12,219,102,214,8,0,142,58,12,219,14,218,8,0,145,186,223,56,126,214,5,0,145,58,152,10,180,114,6,0,146,58,154,245,16,183,8,0,146,58,154,245,251,191,8,0,146,58,154,245,239,200,8,0,148,58,123,65,115,141,10,0,150,58,119,13,134,19,7,0,150,58,163,137,73,82,7,0,152,58,57,126,45,226,8,0,152,58,57,126,130,231,8,0,153,58,186,152,118,151,7,0,153,58,186,152,85,159,7,0,155,58,132,71,152,252,8,0,156,58,184,212,143,240,6,0,156,58,98,39,119,96,7,0,156,58,24,31,194,138,7,0,156,58,178,15,4,52,10,0,158,58,101,107,102,158,11,0,159,58,215,203,30,255,10,0,162,58,253,237,86,23,11,0,165,58,212,93,19,90,7,0,165,186,149,142,198,146,9,0,165,186,149,142,20,147,9,0,167,186,7,29,194,138,7,0,167,58,216,188,253,38,9,0,167,58,216,188,207,40,9,0,167,186,25,115,121,164,10,0,168,58,64,178,73,38,7,0,169,186,253,94,119,96,7,0,170,186,192,189,16,183,8,0,170,186,192,189,251,191,8,0,170,186,192,189,239,200,8,0,172,58,93,11,186,26,9,0,172,58,93,11,120,27,9,0,172,58,93,11,48,28,9,0,173,58,101,210,119,96,7,0,174,58,216,92,121,195,6,0,174,58,30,3,113,35,7,0,176,186,2,94,112,246,7,0,177,58,181,31,127,142,6,0,179,186,180,129,175,88,9,0,179,186,180,129,254,88,9,0,179,186,180,129,92,89,9,0,179,186,180,129,173,89,9,0,179,186,12,31,107,218,10,0,182,186,67,134,45,33,9,0,182,186,67,134,120,33,9,0,183,58,45,203,115,161,9,0,183,58,45,203,104,162,9,0,183,58,211,48,164,165,11,0,185,58,152,177,168,152,9,0,185,58,152,177,216,212,10,0,185,186,31,192,10,124,11,0,188,58,220,33,85,238,10,0,193,58,1,81,77,135,10,0,194,58,200,108,45,226,8,0,194,58,200,108,130,231,8,0,195,186,241,214,253,38,9,0,195,186,241,214,207,40,9,0,196,186,1,163,86,56,9,0,196,186,1,163,9,57,9,0,197,58,58,126,12,139,10,0,199,186,116,33,45,226,8,0,199,186,116,33,130,231,8,0,200,186,158,160,16,183,8,0,200,186,158,160,251,191,8,0,200,186,158,160,239,200,8,0,200,58,216,199,195,163,10,0,201,58,96,236,159,122,11,0,202,186,96,228,75,228,7,0,202,186,193,110,161,110,10,0,202,186,193,110,2,112,10,0,203,186,149,17,60,152,7,0,205,186,74,4,23,27,7,0,205,58,170,85,213,84,8,0,205,58,166,154,194,185,9,0,205,58,166,154,96,186,9,0,207,58,168,24,45,224,5,0,207,58,162,202,119,96,7,0,207,58,23,54,51,104,7,0,207,186,147,49,96,193,10,0,210,186,248,115,113,19,11,0,211,186,151,219,29,120,7,0,213,58,170,53,0,185,6,0,213,186,166,140,154,178,8,0,213,58,253,71,131,222,8,0,213,58,253,71,38,223,8,0,213,58,253,71,206,223,8,0,214,186,171,126,161,77,7,0,214,186,164,77,29,120,7,0,215,58,114,168,130,218,5,0,215,58,114,168,58,75,7,0,217,186,136,13,105,253,9,0,217,186,136,13,139,253,9,0,217,186,136,13,169,253,9,0,219,58,121,55,201,30,6,0,219,58,121,55,222,14,7,0,219,58,121,55,16,250,10,0,220,186,86,186,145,114,7,0,220,186,170,93,19,7,8,0,220,186,170,93,162,58,8,0,222,58,205,121,161,77,7,0,222,58,239,186,145,114,7,0,225,186,73,176,23,27,7,0,225,58,236,61,145,12,8,0,226,186,48,167,201,251,6,0,226,186,140,61,73,38,7,0,226,186,140,61,22,91,7,0,227,58,231,108,65,41,7,0,227,58,59,182,45,226,8,0,227,58,59,182,130,231,8,0,229,186,189,1,60,152,7,0,229,186,54,60,28,152,10,0,229,186,54,60,10,163,10,0,230,58,223,89,135,44,7,0,234,58,210,107,64,229,5,0,237,58,13,180,77,11,7,0,237,186,123,169,234,124,8,0,238,186,44,55,191,86,7,0,241,186,237,44,23,27,7,0,242,186,100,121,176,216,6,0,243,58,82,121,244,94,6,0,243,58,82,121,9,95,6,0,244,58,173,63,86,56,9,0,244,58,173,63,9,57,9,0,246,186,71,13,134,19,7,0,247,58,216,149,134,19,7,0,249,58,238,103,2,237,6,0,252,186,202,36,117,93,6,0,252,186,70,70,45,226,8,0,252,186,70,70,130,231,8,0,253,186,250,41,246,243,9,0,253,186,250,41,59,245,9,0,253,186,250,41,131,246,9,0,255,58,142,141,145,12,8,0,0,187,144,211,16,37,7,0,2,59,201,224,138,137,10,0,4,59,158,44,7,11,10,0,4,59,158,44,23,11,10,0,7,59,82,238,163,57,7,0,10,59,108,53,16,219,6,0,11,59,232,67,4,52,10,0,12,59,40,14,242,142,8,0,12,59,67,82,231,167,11,0,13,59,160,1,89,5,7,0,13,187,214,107,104,67,7,0,14,59,173,226,141,252,6,0,16,187,121,56,244,79,6,0,17,59,165,252,194,138,7,0,17,187,185,165,60,182,8,0,18,59,174,120,119,193,7,0,19,59,79,211,116,72,7,0,19,187,196,208,132,206,10,0,28,187,25,116,205,87,7,0,28,187,252,107,211,114,8,0,31,59,218,42,176,68,7,0,33,187,193,11,252,35,6,0,33,59,236,93,134,19,7,0,33,187,83,230,137,150,8,0,34,187,193,51,168,104,8,0,34,187,193,51,45,105,8,0,34,187,193,51,167,105,8,0,35,187,240,134,4,52,10,0,36,187,105,91,16,183,8,0,36,187,105,91,251,191,8,0,36,187,105,91,239,200,8,0,36,59,128,212,27,50,11,0,40,187,115,146,75,247,5,0,42,187,122,77,117,87,6,0,43,187,20,140,246,243,9,0,43,187,20,140,59,245,9,0,43,187,20,140,131,246,9,0,44,59,105,139,51,237,10,0,49,187,238,46,2,251,6,0,49,187,238,46,0,55,7,0,54,59,107,89,53,40,8,0,56,187,171,126,96,29,6,0,63,59,22,125,205,87,7,0,63,59,22,125,75,148,7,0,64,187,75,114,23,27,7,0,65,59,223,41,200,120,6,0,65,59,223,41,12,52,8,0,67,59,85,139,161,110,10,0,67,59,85,139,2,112,10,0,70,187,218,11,194,108,11,0,72,187,218,159,143,240,6,0,80,187,126,217,242,61,11,0,82,59,255,174,30,112,11,0,83,187,196,70,91,159,6,0,91,187,226,99,60,182,8,0,92,59,146,67,4,52,10,0,95,187,166,212,194,138,7,0,95,59,215,203,101,118,10,0,95,59,215,203,178,118,10,0,96,59,100,207,186,26,9,0,96,59,100,207,120,27,9,0,96,59,100,207,48,28,9,0,102,59,191,126,134,19,7,0,103,187,29,72,10,115,6,0,105,187,101,14,135,149,7,0,105,187,101,14,16,176,9,0,105,187,101,14,40,176,9,0,105,187,101,14,55,176,9,0,106,187,209,159,13,235,5,0,107,59,39,197,19,1,7,0,107,59,93,191,233,176,7,0,108,187,70,178,151,186,7,0,110,187,25,115,16,183,8,0,110,187,25,115,251,191,8,0,110,187,25,115,239,200,8,0,112,187,76,202,60,152,7,0,112,187,76,202,128,112,8,0,113,59,145,243,159,77,8,0,113,59,145,243,17,78,8,0,113,187,77,41,69,151,11,0,116,59,158,116,82,20,8,0,116,187,122,111,28,179,9,0,116,187,122,111,56,179,9,0,116,187,70,108,82,182,10,0,120,187,99,253,4,52,10,0,121,187,60,251,83,167,6,0,124,187,192,148,249,153,6,0,125,59,252,203,135,149,7,0,125,59,252,203,153,98,10,0,125,59,252,203,177,98,10,0,125,59,252,203,203,98,10,0,127,187,170,210,103,48,7,0,129,187,169,208,134,19,7,0,129,59,26,41,4,52,10,0,130,187,254,166,125,67,10,0,130,187,254,166,69,68,10,0,130,187,59,167,230,87,10,0,130,187,59,167,250,87,10,0,132,187,26,182,59,199,10,0,132,59,137,27,42,19,11,0,133,59,67,122,205,205,7,0,136,59,67,200,174,247,6,0,136,187,180,213,194,138,7,0,136,187,180,213,118,151,7,0,137,187,208,149,157,151,11,0,137,187,139,5,218,152,11,0,137,187,139,5,21,153,11,0,138,59,182,5,132,21,9,0,138,59,182,5,157,23,9,0,140,59,209,1,111,86,8,0,141,187,110,191,189,199,6,0,141,59,102,99,161,77,7,0,146,187,146,111,222,63,6,0,146,187,146,111,91,133,7,0,153,187,227,42,233,5,11,0,154,59,239,20,135,44,7,0,156,59,222,189,16,183,8,0,156,59,222,189,251,191,8,0,156,59,222,189,239,200,8,0,158,187,22,155,21,71,9,0,158,187,22,155,100,72,9,0,158,187,22,155,181,73,9,0,158,187,22,155,11,75,9,0,160,187,55,32,4,52,10,0,162,187,107,108,55,221,10,0,163,187,176,148,62,6,6,0,163,59,225,86,222,244,6,0,163,187,139,54,122,166,8,0,165,187,152,137,41,111,11,0,167,187,38,139,8,112,7,0,167,59,191,63,241,190,7,0,170,59,21,183,85,200,6,0,170,187,144,92,92,9,8,0,170,59,21,183,23,155,9,0,171,187,35,182,164,250,5,0,171,187,149,66,201,251,6,0,173,59,250,136,170,172,8,0,174,59,92,36,212,243,6,0,178,59,244,1,9,221,7,0,178,59,151,90,175,29,9,0,178,59,151,90,88,30,9,0,185,59,132,30,187,93,6,0,186,59,246,114,175,29,9,0,186,59,246,114,88,30,9,0,187,59,157,38,177,105,7,0,188,59,217,195,83,126,8,0,188,59,217,195,4,129,8,0,188,59,157,38,25,144,11,0,189,59,231,200,125,216,10,0,191,59,209,40,194,138,7,0,192,59,72,15,96,221,6,0,192,59,72,15,0,132,9,0,194,59,192,149,218,51,11,0,195,59,177,153,83,126,8,0,195,59,177,153,214,127,8,0,195,59,177,153,65,128,8,0,195,59,177,153,4,129,8,0,195,59,177,153,151,129,8,0,195,59,177,153,228,129,8,0,198,59,130,94,255,70,7,0,199,187,186,15,144,152,10,0,200,187,200,58,160,32,6,0,206,59,205,105,53,163,10,0,207,59,170,147,16,183,8,0,207,59,170,147,251,191,8,0,207,59,170,147,239,200,8,0,208,187,26,220,134,19,7,0,209,59,150,86,239,253,8,0,209,187,245,205,77,135,10,0,210,187,120,143,239,116,11,0,210,59,51,126,78,172,11,0,211,59,69,98,47,16,7,0,211,59,97,153,183,82,7,0,218,187,133,128,45,226,8,0,218,187,133,128,130,231,8,0,219,187,24,161,217,12,6,0,224,187,255,240,18,210,8,0,224,187,255,240,113,210,8,0,224,187,255,240,217,210,8,0,226,59,58,106,71,16,11,0,228,187,78,137,124,87,8,0,229,187,99,19,12,99,7,0,229,59,51,142,124,106,11,0,232,187,116,139,47,13,7,0,236,59,248,18,253,38,9,0,236,59,248,18,207,40,9,0,238,59,30,105,23,253,6,0,238,187,119,23,158,109,7,0,243,59,91,201,64,146,10,0,248,187,100,156,12,99,7,0,248,59,242,250,155,154,8,0,251,187,255,65,117,51,7,0,251,187,255,65,111,53,7,0,252,59,125,160,37,82,7,0,254,187,166,222,161,110,10,0,254,187,166,222,2,112,10,0,0,188,230,243,29,120,7,0,0,60,109,225,60,152,7,0,0,60,109,225,79,237,8,0,0,60,4,193,105,129,9,0,0,60,4,193,180,129,9,0,4,60,231,54,109,37,11,0,5,188,52,99,186,53,9,0,5,188,52,99,77,54,9,0,7,188,245,230,209,84,7,0,7,188,51,29,149,217,10,0,8,60,66,25,134,19,7,0,9,60,129,143,238,81,10,0,10,60,198,210,0,55,7,0,10,60,198,210,163,57,7,0,11,188,213,45,165,39,10,0,11,188,213,45,202,39,10,0,11,188,213,45,230,39,10,0,13,188,128,14,168,152,9,0,16,188,86,189,220,39,7,0,17,60,196,60,16,248,5,0,19,188,145,23,164,16,9,0,19,188,145,23,141,17,9,0,20,188,108,40,208,194,7,0,22,60,191,225,80,134,6,0,25,188,163,89,12,99,7,0,26,60,223,20,131,222,8,0,26,60,223,20,38,223,8,0,26,60,223,20,206,223,8,0,28,60,58,166,2,157,6,0,30,188,17,127,102,15,7,0,30,60,0,160,204,181,9,0,30,60,0,160,224,182,9,0,31,60,121,231,236,111,7,0,32,60,204,168,219,238,8,0,32,60,204,168,39,240,8,0,32,60,204,168,117,241,8,0,33,188,171,196,255,85,6,0,33,188,31,159,252,169,7,0,36,60,192,161,100,92,7,0,37,60,21,246,188,71,7,0,39,60,71,236,4,52,10,0,40,188,67,184,135,61,7,0,42,188,255,162,73,38,7,0,42,188,255,162,174,156,10,0,43,188,83,195,25,84,7,0,43,188,83,195,114,84,7,0,45,60,57,89,26,224,6,0,46,60,92,113,104,129,6,0,47,188,83,195,23,27,7,0,48,60,89,240,195,163,10,0,49,188,60,230,62,237,5,0,51,188,68,171,111,4,9,0,51,188,68,171,41,6,9,0,54,188,33,202,193,113,7,0,55,60,172,136,238,239,6,0,57,188,188,107,163,57,7,0,57,188,188,107,78,61,9,0,57,188,188,107,115,61,9,0,58,188,56,147,181,188,7,0,58,60,167,78,125,18,9,0,58,60,167,78,34,19,9,0,58,60,11,65,179,133,11,0,59,188,16,197,92,9,8,0,61,188,200,103,169,188,6,0,63,188,190,190,118,115,6,0,64,188,144,231,135,2,9,0,64,188,144,231,47,3,9,0,65,188,209,215,180,5,11,0,66,188,1,243,16,183,8,0,66,188,1,243,251,191,8,0,66,188,1,243,239,200,8,0,69,60,8,207,219,206,10,0,73,188,204,18,225,235,5,0,73,188,158,61,60,77,10,0,73,188,158,61,232,77,10,0,74,60,14,187,172,87,7,0,75,60,222,19,86,244,6,0,78,60,80,127,52,214,5,0,78,60,80,127,242,41,6,0,79,60,80,18,196,134,6,0,79,188,212,133,30,222,10,0,81,188,93,10,74,180,7,0,87,188,154,161,134,19,7,0,87,60,62,0,187,220,9,0,87,60,62,0,233,220,9,0,91,60,111,255,45,226,8,0,91,60,111,255,130,231,8,0,91,188,239,247,211,159,11,0,91,188,239,247,233,159,11,0,93,188,186,148,214,193,6,0,94,188,14,229,115,112,9,0,94,188,14,229,147,112,9,0,95,60,162,238,211,215,10,0,96,188,26,154,138,88,11,0,97,188,242,163,191,135,6,0,97,60,221,230,240,248,6,0,98,60,166,212,76,43,9,0,98,60,166,212,114,43,9,0,98,188,179,79,139,163,9,0,98,188,179,79,241,163,9,0,99,188,52,51,41,127,11,0,105,188,210,226,243,229,10,0,106,188,245,3,12,99,7,0,110,60,159,122,109,128,6,0,111,60,102,187,111,4,9,0,111,60,102,187,41,6,9,0,114,188,187,148,80,41,6,0,117,60,149,60,60,122,6,0,119,60,134,127,15,56,6,0,119,60,134,127,130,116,6,0,119,188,239,116,107,10,7,0,122,188,0,254,58,35,9,0,122,188,0,254,31,36,9,0,128,188,97,109,23,27,7,0,136,60,221,79,163,57,7,0,136,60,122,217,16,183,8,0,136,60,122,217,251,191,8,0,136,60,122,217,239,200,8,0,138,188,14,123,194,138,7,0,138,60,125,229,132,21,9,0,138,60,125,229,157,23,9,0,139,188,73,51,23,27,7,0,139,60,162,54,194,138,7,0,139,188,239,20,161,110,10,0,139,188,239,20,2,112,10,0,142,60,159,3,0,55,7,0,142,60,159,3,163,57,7,0,142,188,180,11,249,63,8,0,146,60,105,202,218,93,7,0,147,188,109,188,137,144,10,0,148,188,237,174,217,247,5,0,149,188,182,138,168,152,9,0,152,60,54,132,23,27,7,0,152,60,183,122,5,131,10,0,154,60,28,38,25,84,7,0,154,60,28,38,114,84,7,0,154,60,234,45,62,26,9,0,154,60,234,45,116,26,9,0,155,188,90,51,253,38,9,0,155,188,90,51,207,40,9,0,159,188,76,132,29,120,7,0,159,188,231,35,246,243,9,0,159,188,231,35,59,245,9,0,159,188,231,35,131,246,9,0,160,60,157,119,173,17,7,0,166,188,23,199,179,223,10,0,166,188,23,199,217,223,10,0,170,60,174,16,182,239,10,0,171,60,103,216,60,152,7,0,172,188,233,40,37,92,6,0,173,60,57,13,249,153,6,0,173,188,85,158,145,114,7,0,175,188,230,91,165,125,11,0,176,188,91,158,161,77,7,0,178,188,9,191,29,120,7,0,179,60,88,171,147,110,7,0,181,188,195,129,65,41,7,0,182,188,136,121,152,157,11,0,183,188,216,137,204,50,9,0,183,188,216,137,17,51,9,0,183,188,216,137,93,51,9,0,184,188,109,237,6,72,10,0,187,60,89,186,83,126,8,0,187,60,97,139,112,64,9,0,187,60,97,139,134,64,9,0,187,60,97,139,151,64,9,0,189,188,114,117,60,77,10,0,189,188,114,117,232,77,10,0,189,60,47,111,29,216,10,0,194,188,112,147,209,84,7,0,198,188,20,99,108,90,6,0,198,188,126,11,102,214,8,0,198,188,126,11,14,218,8,0,199,60,158,85,105,190,10,0,202,188,219,228,108,184,10,0,203,60,147,33,58,212,8,0,203,60,147,33,201,212,8,0,204,188,241,42,187,220,9,0,204,188,241,42,14,221,9,0,205,60,133,238,32,107,7,0,205,60,133,238,130,107,7,0,205,188,121,82,118,195,10,0,205,188,121,82,148,195,10,0,205,60,37,191,51,117,11,0,206,60,60,157,229,143,10,0,208,188,106,88,77,246,6,0,208,188,208,122,12,99,7,0,208,60,66,186,145,114,7,0,211,188,17,77,241,17,7,0,214,188,134,207,150,134,11,0,215,188,13,59,30,0,7,0,215,60,251,180,23,27,7,0,215,188,26,93,253,59,10,0,215,188,26,93,144,60,10,0,215,188,26,93,39,61,10,0,216,60,66,252,97,16,7,0,216,60,212,26,102,214,8,0,216,60,212,26,14,218,8,0,216,60,184,139,111,4,9,0,216,60,184,139,41,6,9,0,217,60,175,75,30,59,8,0,221,188,13,127,150,245,5,0,221,60,127,86,169,69,6,0,223,188,3,42,27,153,6,0,224,188,144,184,193,100,10,0,224,188,144,184,89,103,10,0,225,60,113,60,151,175,7,0,226,188,120,248,131,92,10,0,226,188,120,248,178,92,10,0,227,60,174,19,184,209,5,0,230,60,234,235,224,169,10,0,231,188,24,20,204,50,9,0,231,188,24,20,17,51,9,0,231,188,24,20,93,51,9,0,236,60,135,127,161,59,6,0,236,60,55,23,132,21,9,0,236,60,55,23,157,23,9,0,236,60,162,98,4,52,10,0,237,60,251,144,119,96,7,0,239,188,19,186,152,153,6,0,239,188,168,67,181,166,11,0,241,188,90,204,241,17,7,0,245,188,123,191,176,68,7,0,245,60,75,144,160,79,8,0,245,188,238,68,86,56,9,0,245,188,238,68,9,57,9,0,250,188,13,134,14,137,9,0,250,188,13,134,201,137,9,0,251,188,181,38,23,27,7,0,254,188,96,90,24,186,6,0,254,188,6,14,233,140,11,0,2,189,229,9,88,58,6,0,3,189,19,246,253,59,10,0,3,189,19,246,144,60,10,0,3,189,19,246,39,61,10,0,4,189,187,156,75,112,7,0,7,189,100,126,115,4,7,0,12,61,134,77,167,242,9,0,13,61,255,236,194,138,7,0,18,61,222,54,145,114,7,0,20,61,52,181,68,227,5,0,20,189,153,241,12,99,7,0,22,189,192,230,59,218,5,0,25,189,75,23,240,66,9,0,25,189,75,23,119,67,9,0,27,189,136,153,23,27,7,0,28,61,88,65,6,125,6,0,30,189,51,191,12,99,7,0,37,61,102,249,216,165,8,0,40,189,147,199,71,250,6,0,40,189,204,54,102,214,8,0,40,189,204,54,14,218,8,0,41,189,161,25,116,72,7,0,42,189,32,203,176,151,8,0,42,189,32,203,235,151,8,0,43,61,196,77,39,47,9,0,43,61,196,77,54,48,9,0,44,189,43,68,26,135,7,0,44,61,193,183,3,191,9,0,44,61,193,183,78,191,9,0,46,189,63,2,86,137,8,0,48,61,130,238,55,108,7,0,49,61,158,41,192,2,7,0,53,61,150,35,145,114,7,0,55,61,0,183,134,19,7,0,57,61,204,195,130,117,6,0,58,61,83,4,12,99,7,0,59,189,33,124,19,90,7,0,59,189,44,236,60,152,7,0,59,189,44,236,190,122,8,0,59,189,44,236,83,123,8,0,59,189,44,236,244,123,8,0,59,189,44,236,210,33,10,0,62,61,85,185,137,105,6,0,62,189,249,66,32,85,9,0,62,189,249,66,62,85,9,0,63,61,171,36,6,175,6,0,63,61,199,220,56,221,6,0,65,61,154,244,66,3,7,0,66,189,40,13,161,77,7,0,66,61,195,193,83,126,8,0,66,61,195,193,214,127,8,0,66,61,195,193,65,128,8,0,67,61,101,246,96,214,6,0,68,61,161,182,192,2,7,0,71,189,254,68,16,183,8,0,71,189,254,68,251,191,8,0,71,189,254,68,239,200,8,0,73,189,43,247,145,114,7,0,75,61,162,130,191,46,8,0,78,61,152,41,145,147,7,0,78,61,152,41,54,176,7,0,79,61,36,225,189,199,6,0,79,61,180,215,60,152,7,0,81,61,161,81,1,5,6,0,81,189,13,40,60,152,7,0,81,189,13,40,249,159,7,0,81,61,163,191,134,107,10,0,81,61,163,191,210,107,10,0,81,189,134,120,110,57,11,0,83,61,131,72,219,243,5,0,83,189,171,209,127,28,6,0,86,61,76,123,123,125,11,0,91,61,24,106,135,44,7,0,92,189,16,249,134,19,7,0,93,189,68,123,218,93,7,0,93,189,163,112,248,37,11,0,95,189,30,95,194,138,7,0,96,61,168,231,134,19,7,0,102,189,188,31,2,8,6,0,103,61,70,36,112,246,7,0,109,61,157,38,4,245,5,0,109,189,171,161,45,226,8,0,109,189,171,161,130,231,8,0,110,189,172,21,75,148,7,0,110,189,172,21,226,164,7,0,111,61,76,99,102,15,7,0,114,189,178,80,213,15,9,0,117,61,48,86,195,163,10,0,118,61,27,237,72,102,9,0,118,61,27,237,254,102,9,0,121,189,204,58,182,13,7,0,121,189,142,232,246,62,7,0,123,61,191,225,136,140,6,0,123,61,139,200,115,4,7,0,124,189,173,149,123,4,10,0,124,189,173,149,156,4,10,0,124,61,105,232,168,54,11,0,125,61,176,0,29,120,7,0,126,61,143,220,45,226,8,0,126,61,143,220,130,231,8,0,126,61,156,38,94,47,10,0,126,61,156,38,130,47,10,0,127,189,96,158,176,191,7,0,127,189,96,158,93,34,10,0,127,189,96,158,146,34,10,0,127,189,96,158,206,34,10,0,135,189,193,129,65,41,7,0,142,189,144,55,134,19,7,0,143,61,160,70,59,187,9,0,143,61,160,70,91,187,9,0,144,61,211,86,148,47,6,0,144,189,66,217,71,65,10,0,144,189,66,217,103,65,10,0,144,189,66,217,130,65,10,0,145,61,251,245,60,152,7,0,145,61,125,141,84,5,11,0,146,61,233,110,23,27,7,0,147,61,216,54,155,191,6,0,150,61,87,24,213,182,8,0,150,61,87,24,233,182,8,0,153,61,142,48,50,15,10,0,154,189,205,175,55,108,7,0,155,61,129,229,69,63,8,0,158,61,250,104,15,56,6,0,158,61,250,104,130,116,6,0,159,61,162,7,194,138,7,0,160,61,143,149,135,149,7,0,160,61,143,149,120,79,8,0,162,61,64,36,29,120,7,0,165,61,160,90,60,152,7,0,165,189,73,33,102,214,8,0,165,189,73,33,14,218,8,0,165,61,160,90,79,237,8,0,168,189,76,241,16,183,8,0,168,189,76,241,251,191,8,0,168,189,76,241,239,200,8,0,169,189,54,125,240,248,6,0,170,189,34,95,219,238,8,0,170,189,34,95,39,240,8,0,170,189,34,95,117,241,8,0,171,189,141,86,220,65,7,0,172,189,58,98,116,122,6,0,172,189,122,249,168,152,9,0,172,189,115,122,192,152,11,0,173,61,112,167,135,149,7,0,173,61,112,167,16,183,8,0,173,61,112,167,251,191,8,0,173,61,112,167,239,200,8,0,173,189,127,52,109,3,11,0,174,189,50,213,23,253,6,0,175,61,155,34,49,75,8,0,181,189,44,44,146,91,9,0,181,189,44,44,189,91,9,0,181,189,16,6,15,220,10,0,185,189,200,156,135,61,7,0,186,189,180,226,23,143,6,0,186,189,43,146,79,224,6,0,186,61,86,173,206,233,10,0,187,61,99,243,3,248,10,0,191,189,66,189,170,91,7,0,193,189,230,193,134,19,7,0,193,189,105,157,18,210,8,0,193,189,105,157,113,210,8,0,193,189,105,157,217,210,8,0,194,189,85,71,145,114,7,0,194,61,214,86,175,88,9,0,194,61,214,86,254,88,9,0,194,61,214,86,92,89,9,0,194,61,214,86,173,89,9,0,195,61,245,113,163,88,10,0,195,61,245,113,83,89,10,0,196,189,232,230,65,76,7,0,196,61,179,4,12,99,7,0,197,61,237,167,77,205,6,0,197,189,157,108,86,244,6,0,197,61,237,167,60,152,7,0,197,61,237,167,222,165,7,0,198,61,164,106,174,6,6,0,200,189,66,37,209,125,9,0,200,189,66,37,248,125,9,0,200,189,66,37,35,126,9,0,201,189,88,131,173,41,11,0,204,189,193,151,130,83,7,0,204,189,193,151,177,105,7,0,204,189,193,151,194,138,7,0,205,61,108,137,243,159,10,0,207,189,244,13,225,215,5,0,207,61,6,91,194,138,7,0,213,61,137,84,39,138,10,0,214,61,87,31,148,124,10,0,215,61,250,249,29,120,7,0,215,61,9,109,209,19,10,0,216,61,238,124,12,99,7,0,219,61,66,178,160,79,8,0,219,189,36,170,133,228,9,0,219,189,36,170,175,228,9,0,223,189,223,90,84,2,7,0,223,61,200,56,134,19,7,0,223,61,183,126,29,120,7,0,225,189,90,13,187,124,11,0,226,189,170,107,194,185,9,0,226,189,170,107,96,186,9,0,227,189,108,23,81,5,8,0,227,189,108,23,114,56,11,0,231,61,164,142,7,42,6,0,232,61,112,111,33,154,11,0,232,61,112,111,67,154,11,0,233,189,204,134,97,16,7,0,235,61,234,243,16,183,8,0,235,61,234,243,251,191,8,0,235,61,234,243,239,200,8,0,243,61,47,215,206,58,6,0,243,189,60,65,224,6,7,0,243,61,254,31,116,72,7,0,243,189,168,196,45,226,8,0,243,189,168,196,130,231,8,0,243,61,76,31,163,88,10,0,243,61,76,31,83,89,10,0,246,61,1,237,183,82,7,0,247,61,199,120,62,223,9,0,247,61,199,120,64,224,9,0,247,61,199,120,93,225,9,0,247,61,226,183,160,201,10,0,252,189,58,111,134,19,7,0,0,62,175,106,101,52,8,0,3,190,203,165,246,62,7,0,4,190,245,231,49,118,9,0,4,190,245,231,75,118,9,0,4,190,245,231,101,118,9,0,5,190,213,149,161,110,10,0,5,190,213,149,2,112,10,0,5,190,19,208,80,139,10,0,5,62,86,138,228,171,10,0,6,62,103,27,39,133,7,0,11,190,105,137,111,160,8,0,18,62,200,166,138,171,7,0,18,62,200,166,43,126,8,0,18,62,102,27,76,233,10,0,18,62,102,27,27,245,10,0,19,190,71,105,154,213,5,0,19,190,108,37,211,250,6,0,20,62,148,190,23,27,7,0,20,62,254,178,43,72,10,0,20,62,254,178,148,72,10,0,21,62,66,70,163,88,10,0,21,62,66,70,83,89,10,0,23,62,46,21,231,43,7,0,23,62,184,148,160,79,8,0,23,62,184,148,160,79,8,0,25,190,193,201,49,196,6,0,25,190,193,201,48,245,6,0,26,62,102,68,226,134,11,0,28,62,234,228,102,214,8,0,28,62,234,228,14,218,8,0,30,62,157,38,240,248,6,0,32,62,33,116,194,138,7,0,37,190,251,105,53,204,6,0,37,62,244,63,160,79,8,0,39,190,201,26,117,51,7,0,39,190,201,26,111,53,7,0,39,190,144,248,40,211,7,0,39,62,96,213,16,183,8,0,39,62,96,213,251,191,8,0,39,62,96,213,239,200,8,0,39,62,138,99,127,111,9,0,39,62,138,99,165,111,9,0,39,62,138,99,195,111,9,0,39,62,112,17,230,249,10,0,40,190,125,36,16,183,8,0,40,190,125,36,251,191,8,0,40,190,125,36,239,200,8,0,41,190,44,103,23,27,7,0,42,190,99,172,135,149,7,0,42,190,99,172,214,99,10,0,42,190,99,172,22,100,10,0,42,190,99,172,82,100,10,0,43,190,130,41,102,214,8,0,43,190,130,41,14,218,8,0,43,62,211,34,72,238,9,0,43,62,211,34,133,238,9,0,43,62,211,34,176,238,9,0,48,62,255,4,56,238,7,0,48,190,234,167,246,243,9,0,48,190,234,167,59,245,9,0,48,190,234,167,131,246,9,0,48,190,28,50,198,158,11,0,49,62,39,181,130,83,7,0,49,62,39,181,60,152,7,0,49,62,39,181,226,164,7,0,50,190,105,49,125,18,9,0,50,190,105,49,34,19,9,0,51,190,91,184,4,247,6,0,51,190,249,24,11,14,7,0,52,190,172,223,252,49,6,0,52,190,92,206,46,159,6,0,52,190,172,223,151,162,6,0,52,62,33,196,23,27,7,0,53,190,20,13,2,113,11,0,54,190,29,85,12,199,7,0,56,62,100,92,4,52,10,0,59,190,205,234,194,138,7,0,59,190,205,234,8,185,9,0,60,62,252,229,135,61,7,0,60,190,22,249,135,149,7,0,61,190,203,221,58,212,8,0,61,190,203,221,201,212,8,0,63,62,29,251,115,161,9,0,63,62,29,251,104,162,9,0,65,190,241,147,194,138,7,0,66,62,162,245,155,50,11,0,68,62,170,151,19,90,7,0,70,190,192,12,39,47,9,0,70,190,192,12,54,48,9,0,70,190,244,190,153,113,10,0,70,190,244,190,27,114,10,0,74,190,225,94,139,14,10,0,74,190,225,94,50,15,10,0,76,190,19,229,140,31,8,0,76,190,135,20,93,242,10,0,77,190,159,54,58,212,8,0,77,190,159,54,201,212,8,0,79,62,72,196,31,45,11,0,82,62,74,110,45,226,8,0,82,62,74,110,130,231,8,0,83,62,51,32,94,176,7,0,84,62,219,176,117,51,7,0,84,62,219,176,111,53,7,0,84,62,219,176,206,177,7,0,84,62,78,94,246,97,8,0,85,190,214,189,66,3,7,0,85,190,80,36,60,152,7,0,85,190,80,36,11,159,7,0,85,190,80,36,226,164,7,0,85,190,120,161,138,171,7,0,87,62,104,77,83,126,8,0,91,62,76,16,218,93,7,0,91,62,234,225,253,38,9,0,91,62,234,225,207,40,9,0,92,62,176,51,15,136,6,0,93,62,58,127,116,72,7,0,93,62,247,24,252,242,8,0,93,62,247,24,240,243,8,0,94,62,186,120,112,153,6,0,94,62,145,183,194,185,9,0,94,62,145,183,96,186,9,0,94,190,85,1,100,169,11,0,98,190,17,179,225,255,7,0,98,190,17,179,27,0,8,0,98,190,17,179,95,0,8,0,98,190,17,179,164,0,8,0,101,190,199,148,182,228,6,0,101,62,222,90,194,138,7,0,102,62,63,101,60,152,7,0,102,62,155,89,93,75,8,0,102,62,166,186,115,81,8,0,102,62,63,101,190,122,8,0,102,62,63,101,83,123,8,0,102,62,63,101,244,123,8,0,102,62,63,101,210,33,10,0,103,62,57,244,142,113,7,0,107,62,3,126,109,192,6,0,107,190,39,100,161,110,10,0,107,190,39,100,2,112,10,0,108,190,175,105,16,183,8,0,108,190,175,105,251,191,8,0,108,190,175,105,239,200,8,0,112,190,233,40,194,138,7,0,114,62,93,46,179,227,5,0,114,62,252,109,8,171,6,0,114,62,49,109,60,152,7,0,114,62,49,109,109,167,7,0,114,190,58,79,149,174,9,0,114,190,58,79,200,174,9,0,117,62,125,135,132,153,6,0,117,62,163,38,97,16,7,0,117,62,136,204,65,76,7,0,117,190,16,249,134,107,10,0,117,190,16,249,210,107,10,0,117,62,174,217,190,154,10,0,118,190,153,74,4,44,7,0,119,190,58,213,234,233,6,0,119,190,155,140,29,120,7,0,119,62,124,217,131,222,8,0,119,62,124,217,38,223,8,0,119,62,124,217,206,223,8,0,120,62,235,138,4,52,10,0,121,62,244,210,29,14,6,0,121,62,244,210,73,130,7,0,122,190,161,237,242,123,6,0,122,190,161,237,47,13,7,0,122,62,180,160,240,66,9,0,122,62,180,160,119,67,9,0,123,62,44,86,143,240,6,0,125,190,95,102,45,226,8,0,125,190,95,102,130,231,8,0,127,190,71,40,113,126,6,0,128,62,74,36,194,138,7,0,131,62,171,141,75,247,8,0,131,62,171,141,171,247,8,0,131,62,191,198,4,52,10,0,131,62,191,198,4,52,10,0,131,62,55,12,41,127,11,0,132,62,157,38,39,35,7,0,134,190,119,40,248,238,10,0,137,190,49,104,14,93,10,0,137,190,49,104,47,93,10,0,137,190,49,104,103,93,10,0,140,190,243,128,67,236,5,0,141,190,244,70,135,149,7,0,141,190,244,70,60,152,7,0,141,62,7,29,233,138,8,0,145,190,72,105,4,52,10,0,147,190,14,76,219,238,8,0,147,190,14,76,39,240,8,0,147,190,14,76,117,241,8,0,148,190,163,87,168,152,9,0,148,190,130,50,202,203,9,0,148,190,130,50,237,203,9,0,148,190,130,50,28,204,9,0,149,62,115,224,23,27,7,0,151,62,230,16,133,132,10,0,152,190,233,87,38,65,6,0,152,62,29,88,55,19,8,0,153,62,188,187,176,68,7,0,154,190,21,79,22,91,7,0,155,190,58,98,250,87,10,0,158,190,173,237,163,57,7,0,158,190,173,237,185,185,10,0,160,62,252,66,67,31,6,0,162,62,207,47,207,147,6,0,162,190,213,57,118,151,7,0,164,190,111,239,173,1,6,0,168,62,55,93,179,24,11,0,169,190,59,68,210,183,10,0,170,190,154,140,199,167,9,0,170,190,154,140,230,167,9,0,170,190,154,140,14,168,9,0,172,62,95,191,106,30,11,0,172,190,165,16,109,34,11,0,173,62,240,211,66,192,6,0,174,190,91,113,145,114,7,0,176,62,106,102,47,13,7,0,179,190,14,55,134,19,7,0,179,190,81,61,0,55,7,0,179,190,81,61,163,57,7,0,179,62,1,210,60,152,7,0,179,62,1,210,79,237,8,0,183,190,128,1,29,120,7,0,184,62,138,61,134,19,7,0,184,190,142,7,242,163,7,0,187,62,249,97,104,67,7,0,192,62,118,73,143,240,6,0,192,62,88,216,194,11,7,0,192,190,185,36,79,15,11,0,195,190,131,53,166,42,6,0,195,190,113,19,41,54,6,0,195,190,131,53,96,8,7,0,196,190,53,31,16,37,7,0,197,62,99,22,39,47,9,0,197,62,99,22,54,48,9,0,198,190,50,87,160,104,11,0,199,62,68,162,18,243,6,0,201,62,210,24,161,110,10,0,201,62,210,24,2,112,10,0,202,190,186,92,200,17,11,0,204,190,113,208,167,134,10,0,208,62,133,13,29,120,7,0,211,62,81,58,186,53,9,0,211,62,81,58,77,54,9,0,212,190,178,230,163,88,10,0,212,190,178,230,83,89,10,0,213,190,37,63,61,214,6,0,213,190,37,63,43,162,8,0,213,62,148,190,52,236,10,0,214,62,145,154,78,9,7,0,215,190,181,209,97,50,6,0,215,190,181,209,170,105,6,0,215,190,150,207,212,178,7,0,219,62,163,42,150,225,5,0,219,190,249,118,38,224,10,0,219,190,251,214,239,224,10,0,221,62,152,86,61,39,7,0,222,190,239,47,133,249,10,0,223,62,71,24,147,35,7,0,224,62,246,194,134,19,7,0,226,62,55,163,29,120,7,0,227,62,191,225,4,44,7,0,231,190,240,215,108,146,6,0,231,190,211,161,173,202,10,0,232,190,190,143,29,120,7,0,232,190,190,143,101,227,7,0,233,190,53,158,4,52,10,0,235,190,226,59,253,38,9,0,235,190,226,59,207,40,9,0,239,190,73,88,218,93,7,0,240,190,103,146,199,102,8,0,240,62,217,13,16,183,8,0,240,62,217,13,251,191,8,0,240,62,217,13,239,200,8,0,240,190,176,12,58,35,9,0,240,190,176,12,31,36,9,0,241,62,197,98,107,226,9,0,241,62,197,98,251,226,9,0,242,62,242,96,12,99,7,0,245,190,157,33,197,71,6,0,245,190,211,226,102,214,8,0,245,190,211,226,14,218,8,0,247,190,65,50,4,52,10,0,251,62,30,159,192,188,6,0,251,190,168,231,205,87,7,0,251,62,214,34,23,26,8,0,254,62,60,141,4,247,6,0,3,63,139,48,55,108,7,0,3,191,40,178,167,242,9,0,4,63,235,205,44,157,9,0,4,63,235,205,89,157,9,0,5,191,54,95,23,27,7,0,5,191,54,95,73,38,7,0,6,63,157,152,161,110,10,0,6,63,157,152,2,112,10,0,8,191,69,149,49,36,6,0,11,63,91,196,207,14,9,0,11,63,91,196,54,15,9,0,12,63,122,46,134,19,7,0,16,191,34,138,224,84,6,0,17,63,175,247,29,120,7,0,17,191,164,30,135,149,7,0,17,191,164,30,70,80,9,0,18,63,160,228,85,8,6,0,23,63,235,232,9,238,8,0,23,63,235,232,94,238,8,0,27,63,69,29,150,45,9,0,27,63,69,29,18,46,9,0,34,63,62,247,165,224,8,0,34,63,62,247,86,225,8,0,35,191,38,29,23,27,7,0,35,191,23,126,60,152,7,0,35,191,23,126,248,168,7,0,35,63,41,34,132,21,9,0,35,63,41,34,157,23,9,0,37,191,26,130,75,58,9,0,37,191,26,130,123,58,9,0,38,191,111,115,234,166,10,0,39,191,174,253,0,251,10,0,42,191,205,211,20,8,9,0,42,191,205,211,247,8,9,0,42,191,205,211,210,9,9,0,43,191,100,8,57,67,8,0,47,191,149,170,138,141,6,0,47,63,133,14,15,143,11,0,47,63,133,14,60,146,11,0,48,191,222,177,125,176,9,0,48,191,222,177,149,176,9,0,48,191,222,177,164,176,9,0,49,191,23,126,136,1,7,0,49,191,23,126,10,2,7,0,49,191,84,63,85,174,7,0,49,191,84,63,202,174,7,0,49,191,188,28,151,186,7,0,52,63,115,183,161,110,10,0,52,63,115,183,2,112,10,0,53,191,6,38,181,224,6,0,53,191,6,38,145,18,7,0,55,63,39,18,67,17,7,0,56,191,189,129,75,99,6,0,56,191,189,129,117,51,7,0,56,191,189,129,111,53,7,0,56,63,16,252,135,61,7,0,57,191,195,46,156,212,5,0,59,191,102,22,118,151,7,0,60,191,123,115,29,120,7,0,60,63,39,23,60,152,7,0,60,63,39,23,190,122,8,0,60,63,39,23,83,123,8,0,60,63,39,23,244,123,8,0,60,63,39,23,210,33,10,0,65,191,145,121,75,148,7,0,65,191,145,121,232,158,7,0,66,191,175,20,179,122,9,0,67,191,3,236,56,19,11,0,71,191,234,65,11,171,10,0,72,191,211,238,63,5,11,0,75,63,127,111,4,52,10,0,75,191,236,78,252,33,11,0,78,63,222,82,77,246,6,0,78,63,221,196,134,19,7,0,79,191,84,68,12,99,7,0,79,191,153,1,116,192,7,0,79,63,19,13,49,89,11,0,80,191,39,29,107,10,7,0,81,191,131,3,85,174,7,0,81,191,131,3,202,174,7,0,82,63,154,247,208,12,7,0,82,191,38,45,23,27,7,0,83,191,82,89,90,14,7,0,83,191,67,206,75,148,7,0,83,63,134,86,16,183,8,0,83,63,134,86,251,191,8,0,83,63,134,86,239,200,8,0,83,63,251,76,52,87,10,0,83,63,251,76,117,87,10,0,84,191,200,80,100,92,7,0,87,191,69,102,117,51,7,0,87,191,69,102,111,53,7,0,87,63,132,101,0,55,7,0,87,63,132,101,16,183,8,0,87,63,132,101,251,191,8,0,87,63,132,101,239,200,8,0,87,63,131,174,253,38,9,0,87,63,131,174,207,40,9,0,91,191,140,209,137,5,6,0,92,63,212,180,222,14,7,0,94,63,209,50,0,209,5,0,95,63,54,68,152,252,8,0,96,191,88,108,193,100,10,0,96,191,88,108,89,103,10,0,97,63,162,225,16,183,8,0,97,63,162,225,251,191,8,0,97,63,162,225,239,200,8,0,99,191,29,73,29,120,7,0,101,191,237,96,92,255,6,0,102,191,19,241,234,157,10,0,102,191,19,241,132,166,10,0,105,191,246,45,16,183,8,0,105,191,246,45,251,191,8,0,105,191,246,45,239,200,8,0,111,191,181,220,56,238,7,0,111,63,72,232,190,227,9,0,114,191,224,29,14,137,9,0,114,191,224,29,201,137,9,0,117,191,247,85,74,239,9,0,118,191,89,185,232,230,6,0,118,63,32,92,16,183,8,0,118,63,32,92,251,191,8,0,118,63,32,92,239,200,8,0,120,63,131,34,0,55,7,0,120,191,179,101,122,137,10,0,120,63,46,63,117,171,11,0,128,63,204,47,130,83,7,0,129,63,163,62,105,129,9,0,129,63,163,62,180,129,9,0,130,63,222,184,13,225,10,0,131,63,232,6,4,43,6,0,135,191,2,178,168,152,9,0,137,63,64,241,96,18,11,0,137,63,64,241,14,29,11,0,138,191,150,117,3,191,9,0,138,191,150,117,78,191,9,0,139,191,3,204,181,245,6,0,141,63,230,143,23,27,7,0,142,63,153,198,225,92,11,0,144,63,41,233,98,59,11,0,145,63,192,86,249,202,7,0,145,63,192,86,92,38,11,0,147,191,244,38,23,253,6,0,147,191,170,240,62,26,9,0,147,191,170,240,116,26,9,0,148,63,172,122,107,186,6,0,148,63,107,249,102,214,8,0,148,63,107,249,14,218,8,0,152,63,11,80,206,214,6,0,152,63,125,60,156,253,6,0,153,63,151,87,194,138,7,0,155,191,175,83,125,23,8,0,155,191,175,83,166,23,8,0,155,191,175,83,219,23,8,0,155,191,175,83,10,24,8,0,156,63,213,55,253,49,7,0,158,63,65,18,142,219,10,0,164,63,8,21,23,27,7,0,169,191,220,206,16,252,6,0,170,63,95,253,0,55,7,0,170,63,13,240,176,68,7,0,170,63,117,122,218,93,7,0,173,191,66,242,23,27,7,0,174,63,79,135,145,114,7,0,178,63,226,230,229,109,7,0,181,191,151,179,105,152,6,0,181,63,11,35,134,19,7,0,182,63,186,169,253,38,9,0,182,63,186,169,207,40,9,0,185,191,95,26,29,14,6,0,185,191,95,26,73,130,7,0,186,191,164,65,135,44,7,0,188,191,23,146,188,71,7,0,189,191,146,19,194,138,7,0,190,191,133,69,126,240,10,0,196,191,119,240,198,146,9,0,196,191,119,240,20,147,9,0,196,63,180,41,106,231,10,0,198,63,218,20,42,181,8,0,199,191,227,169,192,72,6,0,200,63,164,180,21,71,9,0,200,63,164,180,100,72,9,0,200,63,164,180,181,73,9,0,200,63,164,180,11,75,9,0,207,191,74,48,187,220,9,0,207,191,74,48,14,221,9,0,214,191,8,244,97,16,7,0,214,63,196,214,73,38,7,0,219,191,155,101,112,130,11,0,225,63,232,167,61,39,7,0,225,191,238,51,17,173,7,0,228,191,210,110,45,226,8,0,228,191,210,110,130,231,8,0,230,191,242,46,166,248,6,0,230,191,158,102,205,229,10,0,231,63,236,155,217,9,7,0,231,191,213,102,23,27,7,0,231,63,137,130,22,91,7,0,235,191,241,125,96,221,6,0,235,191,241,125,0,132,9,0,236,191,146,119,39,230,6,0,236,191,203,98,194,138,7,0,237,63,220,142,167,242,9,0,237,63,9,99,218,153,10,0,237,63,9,99,122,177,10,0,238,63,242,210,43,188,7,0,239,63,161,132,111,4,9,0,239,63,161,132,41,6,9,0,240,63,241,186,66,3,7,0,241,191,130,79,135,149,7,0,246,191,75,114,23,27,7,0,247,63,73,30,129,177,6,0,248,191,33,15,163,57,7,0,248,191,33,15,22,215,10,0,249,191,204,70,253,49,7,0,251,63,151,145,60,182,8,0,252,63,39,153,115,2,6,0,253,63,104,110,163,57,7,0,253,63,104,110,21,71,9,0,253,63,104,110,100,72,9,0,253,63,104,110,181,73,9,0,253,63,104,110,11,75,9,0,254,63,59,146,100,92,7,0,255,191,117,210,134,19,7,0,0,64,168,198,237,191,10,0,2,192,57,130,104,85,11,0,4,192,225,126,139,163,9,0,4,192,225,126,241,163,9,0,6,192,214,83,0,55,7,0,6,192,214,83,163,57,7,0,10,64,99,94,86,248,9,0,10,64,99,94,129,248,9,0,10,64,99,94,171,248,9,0,14,64,58,70,38,65,6,0,14,192,28,115,218,93,7,0,18,64,69,193,252,144,9,0,18,64,69,193,15,145,9,0,20,192,57,106,60,77,10,0,20,192,57,106,232,77,10,0,21,64,105,154,183,249,6,0,21,192,40,226,176,68,7,0,22,64,166,14,134,19,7,0,22,64,133,135,60,152,7,0,22,64,133,135,226,164,7,0,23,192,239,96,12,99,7,0,24,192,31,172,29,81,7,0,24,64,66,155,16,183,8,0,24,64,66,155,251,191,8,0,24,64,66,155,239,200,8,0,25,192,54,132,99,239,6,0,29,192,127,76,181,245,6,0,29,192,34,89,251,182,10,0,30,64,42,138,193,80,6,0,30,192,86,173,134,19,7,0,30,64,199,54,145,114,7,0,30,64,42,138,34,116,9,0,30,64,42,138,63,116,9,0,36,64,96,48,147,106,6,0,38,192,66,151,71,250,6,0,38,192,223,7,176,68,7,0,43,192,115,225,100,92,7,0,43,192,62,135,160,79,8,0,43,64,153,222,4,52,10,0,47,64,46,81,1,223,5,0,47,192,196,5,95,59,9,0,47,192,196,5,147,59,9,0,48,192,19,241,102,214,8,0,48,192,19,241,14,218,8,0,51,192,197,226,12,99,7,0,51,64,19,44,4,52,10,0,52,192,105,188,145,12,8,0,56,64,6,65,148,35,6,0,56,192,78,2,108,233,9,0,56,192,78,2,155,233,9,0,60,192,37,201,60,39,11,0,62,192,235,70,132,21,9,0,62,192,235,70,157,23,9,0,63,192,234,198,206,76,7,0,66,64,223,26,164,21,6,0,66,192,30,172,209,192,10,0,67,192,0,214,220,39,7,0,70,64,52,149,4,52,10,0,72,192,179,16,72,102,9,0,72,192,179,16,254,102,9,0,74,192,95,93,156,123,6,0,74,192,95,93,46,129,6,0,74,64,160,247,0,55,7,0,74,64,160,247,163,57,7,0,74,192,95,93,49,77,8,0,74,64,213,13,4,52,10,0,75,192,129,207,116,72,7,0,77,192,11,153,4,44,7,0,77,192,11,153,135,44,7,0,83,64,85,13,65,41,7,0,83,64,85,13,201,42,7,0,83,192,77,229,102,214,8,0,83,192,77,229,14,218,8,0,84,64,249,67,60,77,10,0,84,64,249,67,232,77,10,0,85,64,87,150,86,56,9,0,85,64,87,150,9,57,9,0,89,192,81,54,9,128,9,0,89,192,81,54,58,128,9,0,89,192,81,54,105,128,9,0,90,64,225,57,0,55,7,0,90,64,225,57,177,105,7,0,90,64,225,57,194,138,7,0,90,192,220,77,208,154,9,0,91,64,189,144,2,255,5,0,91,192,142,127,234,38,6,0,97,192,27,146,77,246,6,0,97,64,139,137,23,27,7,0,101,64,158,119,194,138,7,0,102,192,222,90,60,152,7,0,102,192,207,86,251,62,9,0,102,192,207,86,27,63,9,0,102,192,207,86,51,63,9,0,103,192,72,188,58,75,7,0,103,192,195,171,250,60,8,0,104,192,84,216,206,193,7,0,105,64,125,161,16,183,8,0,105,64,125,161,251,191,8,0,105,64,125,161,239,200,8,0,107,192,119,32,115,57,6,0,107,192,191,34,117,172,7,0,111,64,109,165,150,154,10,0,112,64,185,57,29,120,7,0,113,64,42,176,135,2,9,0,113,64,42,176,47,3,9,0,116,192,75,112,224,6,7,0,117,192,158,112,208,205,10,0,117,64,125,193,191,232,10,0,118,192,20,202,194,138,7,0,118,192,168,253,160,79,8,0,119,64,143,227,145,196,6,0,119,64,143,227,48,245,6,0,120,192,119,124,16,183,8,0,120,192,119,124,251,191,8,0,120,192,119,124,239,200,8,0,126,64,51,218,57,85,6,0,126,192,97,234,194,138,7,0,126,192,214,211,72,102,9,0,126,192,214,211,254,102,9,0,131,64,129,127,148,22,11,0,134,192,226,187,219,238,8,0,134,192,226,187,39,240,8,0,134,192,226,187,117,241,8,0,136,192,105,84,134,19,7,0,136,192,133,150,60,152,7,0,136,192,133,150,128,112,8,0,140,64,216,89,75,148,7,0,142,64,243,8,100,125,6,0,146,64,200,163,255,70,7,0,148,64,251,129,115,227,5,0,149,192,27,171,60,152,7,0,149,192,27,171,121,33,8,0,149,192,34,182,63,79,10,0,149,192,34,182,138,79,10,0,149,192,34,182,214,79,10,0,149,192,27,171,26,42,11,0,150,64,77,218,194,176,11,0,151,64,206,56,213,154,8,0,152,192,60,51,47,13,7,0,152,64,134,29,135,221,10,0,154,192,184,103,134,19,7,0,157,192,50,197,248,5,7,0,157,192,221,247,85,177,10,0,158,192,136,91,220,180,7,0,158,192,220,209,171,65,8,0,160,192,74,70,248,150,11,0,165,64,71,129,209,84,7,0,166,192,8,94,121,162,10,0,166,64,108,248,63,173,10,0,167,64,203,201,176,68,7,0,169,192,116,96,21,71,9,0,169,192,116,96,100,72,9,0,169,192,116,96,181,73,9,0,169,192,116,96,11,75,9,0,170,64,139,70,85,20,6,0,171,64,245,54,100,92,7,0,177,64,53,51,22,122,11,0,179,192,161,147,233,165,11,0,188,192,34,127,235,144,8,0,188,64,123,18,4,52,10,0,189,192,19,14,173,202,10,0,190,192,63,47,109,172,11,0,191,64,224,36,160,79,8,0,192,64,206,229,60,152,7,0,192,64,206,229,243,191,7,0,196,192,58,206,160,79,8,0,197,192,97,56,62,183,6,0,206,192,223,232,29,14,6,0,206,192,223,232,73,130,7,0,206,64,227,234,102,214,8,0,206,64,227,234,14,218,8,0,208,192,157,232,113,66,11,0,209,64,177,74,187,124,11,0,212,64,187,227,38,65,6,0,212,192,181,78,86,243,6,0,214,192,121,176,142,43,6,0,221,192,148,194,5,223,7,0,221,192,148,194,45,223,7,0,228,64,153,114,29,120,7,0,235,192,204,70,16,183,8,0,235,192,204,70,251,191,8,0,235,192,204,70,239,200,8,0,236,192,19,86,20,8,9,0,236,192,19,86,247,8,9,0,236,192,19,86,210,9,9,0,236,192,23,246,79,148,10,0,237,192,28,190,233,105,6,0,240,192,89,42,145,114,7,0,241,192,238,98,138,45,6,0,241,64,140,161,111,81,9,0,241,64,140,161,4,82,9,0,242,192,50,124,143,167,10,0,243,64,23,214,39,27,11,0,243,64,134,255,76,46,11,0,248,64,174,133,58,75,7,0,250,192,176,148,218,240,5,0,251,192,62,224,145,114,7,0,251,64,129,40,16,183,8,0,251,64,129,40,251,191,8,0,251,64,129,40,239,200,8,0,252,192,51,138,134,19,7,0,253,192,23,18,134,19,7,0,254,64,157,4,70,61,11,0,2,193,38,70,45,226,8,0,2,193,38,70,130,231,8,0,2,65,59,213,204,181,9,0,2,65,59,213,224,182,9,0,4,193,207,223,250,16,6,0,6,65,236,230,107,226,9,0,6,65,236,230,251,226,9,0,8,193,36,11,77,252,6,0,8,193,44,30,51,248,8,0,8,193,44,30,162,248,8,0,8,193,36,11,167,113,9,0,8,193,36,11,7,114,9,0,8,193,36,11,108,114,9,0,8,193,36,11,202,114,9,0,8,193,36,11,49,115,9,0,8,193,43,104,2,175,11,0,9,193,204,12,23,27,7,0,9,193,15,100,144,56,11,0,11,65,77,4,0,182,7,0,11,65,77,4,58,182,7,0,11,193,1,89,53,40,8,0,11,65,26,130,74,96,9,0,11,65,26,130,110,96,9,0,11,65,26,130,136,96,9,0,13,65,37,238,191,86,7,0,14,65,74,159,183,249,6,0,14,193,186,29,145,114,7,0,18,193,129,40,71,183,10,0,19,193,119,123,132,220,5,0,19,193,13,192,217,238,9,0,19,193,13,192,174,239,9,0,21,65,18,195,38,117,8,0,23,65,54,86,116,72,7,0,23,65,129,134,145,114,7,0,24,65,240,180,134,19,7,0,25,193,201,26,117,51,7,0,25,193,201,26,111,53,7,0,25,65,123,127,139,153,10,0,28,65,87,101,0,55,7,0,28,65,87,101,163,57,7,0,28,193,185,4,12,99,7,0,29,193,3,215,207,50,6,0,29,65,79,154,134,19,7,0,32,65,214,75,194,138,7,0,33,65,197,127,232,100,6,0,34,193,205,29,106,113,6,0,35,65,115,167,167,242,9,0,36,193,114,250,145,114,7,0,36,65,102,235,16,183,8,0,36,65,102,235,251,191,8,0,36,65,102,235,239,200,8,0,39,193,224,191,88,187,7,0,39,65,130,197,145,12,8,0,39,193,187,53,132,21,9,0,39,193,187,53,157,23,9,0,40,193,121,138,154,170,6,0,40,65,28,128,107,10,7,0,41,193,121,182,2,237,6,0,43,193,210,101,57,46,6,0,45,193,12,4,216,51,9,0,45,193,12,4,175,52,9,0,48,65,141,10,85,58,11,0,49,65,146,76,23,27,7,0,50,193,12,181,85,167,11,0,51,65,15,226,201,3,6,0,53,193,123,35,204,181,9,0,53,193,123,35,224,182,9,0,53,65,178,61,6,249,9,0,53,65,178,61,105,249,9,0,53,65,178,61,201,249,9,0,54,65,181,148,37,113,6,0,54,65,181,148,127,127,6,0,54,65,181,148,180,158,6,0,55,65,239,126,208,18,6,0,56,193,235,92,102,214,8,0,56,193,235,92,14,218,8,0,56,65,11,148,175,179,11,0,59,193,187,10,51,104,7,0,60,65,235,26,19,128,11,0,63,193,89,129,30,57,11,0,64,193,107,157,97,16,7,0,65,65,194,77,29,120,7,0,65,65,194,77,65,49,11,0,69,65,3,46,21,138,7,0,71,193,154,198,168,152,9,0,72,193,13,156,226,210,5,0,74,193,236,174,194,138,7,0,74,193,236,174,114,173,10,0,74,65,118,221,201,56,11,0,75,65,235,221,52,121,9,0,76,65,141,29,213,81,7,0,76,193,227,126,179,31,8,0,77,65,80,147,12,149,10,0,77,65,80,147,24,167,10,0,79,193,196,58,146,72,11,0,80,65,43,47,144,59,11,0,81,65,86,14,16,183,8,0,81,65,86,14,251,191,8,0,81,65,86,14,239,200,8,0,84,193,56,91,133,63,6,0,84,193,40,144,161,110,10,0,84,193,40,144,2,112,10,0,89,65,119,225,100,92,7,0,90,65,105,99,82,72,11,0,91,193,185,37,249,0,9,0,91,193,185,37,36,1,9,0,93,193,65,55,12,99,7,0,93,193,172,168,204,181,9,0,93,193,172,168,224,182,9,0,93,193,117,139,238,177,11,0,94,65,63,255,253,38,9,0,94,65,63,255,207,40,9,0,96,65,181,125,188,71,7,0,97,193,188,181,18,246,6,0,98,65,208,68,146,76,9,0,98,65,208,68,63,77,9,0,99,193,85,181,248,159,6,0,101,65,181,55,193,238,7,0,105,65,182,89,135,2,9,0,105,65,182,89,47,3,9,0,106,193,252,237,43,163,6,0,106,193,112,150,221,188,6,0,106,193,210,69,176,68,7,0,107,65,52,205,191,86,7,0,107,193,183,211,145,114,7,0,107,65,20,157,194,138,7,0,108,65,125,76,160,94,6,0,108,65,125,76,220,178,8,0,110,193,170,148,65,66,10,0,110,193,170,148,88,66,10,0,112,193,196,3,23,27,7,0,115,65,200,39,104,77,7,0,117,193,159,175,23,253,6,0,117,193,129,187,39,47,9,0,117,193,129,187,54,48,9,0,120,65,106,61,13,51,11,0,125,193,248,100,194,138,7,0,126,193,32,248,23,27,7,0,127,193,204,26,65,226,6,0,128,193,191,250,72,216,9,0,128,193,191,250,90,216,9,0,130,193,73,91,237,131,10,0,132,193,235,78,102,214,8,0,132,193,235,78,14,218,8,0,133,193,209,116,4,52,10,0,135,65,229,112,51,104,7,0,136,65,115,57,104,188,10,0,136,65,115,57,184,188,10,0,138,65,201,97,226,11,7,0,138,65,201,97,164,173,10,0,139,193,67,236,134,19,7,0,144,65,104,194,117,51,7,0,144,65,104,194,111,53,7,0,144,65,38,247,161,83,9,0,144,65,38,247,186,83,9,0,144,65,98,191,116,228,10,0,148,65,69,25,217,9,7,0,149,193,253,240,23,27,7,0,153,193,181,180,205,3,11,0,155,65,98,128,220,65,7,0,158,193,229,91,19,245,8,0,158,193,229,91,76,245,8,0,160,65,245,215,23,27,7,0,160,193,189,1,198,146,9,0,160,193,189,1,20,147,9,0,162,65,188,83,4,52,10,0,162,193,135,48,13,130,11,0,165,193,118,255,187,124,11,0,166,193,221,162,13,238,6,0,166,65,137,58,24,242,6,0,167,193,252,185,143,160,11,0,167,193,252,185,148,161,11,0,169,65,224,11,183,249,6,0,170,65,34,109,235,88,7,0,171,65,40,220,4,52,10,0,172,65,39,54,5,234,5,0,173,193,251,127,135,61,7,0,173,193,90,59,176,68,7,0,174,193,125,123,29,120,7,0,175,65,13,5,45,226,8,0,175,65,13,5,130,231,8,0,175,65,107,0,152,252,8,0,177,65,55,47,6,74,6,0,180,65,102,139,102,214,8,0,180,65,102,139,14,218,8,0,181,65,91,210,65,41,7,0,181,65,51,95,194,138,7,0,181,65,51,95,1,249,7,0,181,65,51,95,41,249,7,0,181,65,51,95,92,249,7,0,183,193,41,178,109,128,6,0,183,193,41,178,138,128,6,0,183,193,41,178,168,128,6,0,186,65,237,117,16,183,8,0,186,65,237,117,251,191,8,0,186,65,237,117,239,200,8,0,187,65,101,21,66,3,7,0,190,65,8,30,85,174,7,0,190,65,8,30,202,174,7,0,190,65,220,47,213,15,9,0,192,193,215,192,59,135,6,0,192,193,223,65,29,120,7,0,193,193,22,215,109,109,6,0,193,65,85,98,58,35,9,0,193,65,85,98,31,36,9,0,194,65,79,57,201,46,11,0,198,193,36,13,29,120,7,0,201,65,32,116,16,37,7,0,202,65,106,119,240,227,7,0,202,193,170,214,19,59,11,0,204,65,217,203,228,172,7,0,205,193,95,48,145,114,7,0,206,193,144,207,108,244,5,0,206,193,177,147,218,93,7,0,207,65,235,140,12,99,7,0,208,193,25,96,77,135,10,0,210,193,197,250,253,49,7,0,210,193,158,70,33,102,11,0,214,193,206,88,60,152,7,0,214,193,206,88,34,160,7,0,219,193,58,94,135,108,10,0,219,193,58,94,156,108,10,0,219,193,58,94,188,108,10,0,220,193,94,72,216,140,9,0,220,193,94,72,69,141,9,0,222,65,143,68,122,87,9,0,222,65,143,68,212,87,9,0,222,65,143,68,40,88,9,0,224,193,47,4,45,226,8,0,224,193,47,4,130,231,8,0,224,193,98,102,90,253,8,0,224,193,98,102,126,253,8,0,224,193,98,102,157,253,8,0,232,65,82,16,248,222,10,0,233,193,135,155,58,212,8,0,233,193,135,155,201,212,8,0,233,65,106,240,4,52,10,0,235,193,4,248,250,172,7,0,236,65,167,24,241,190,7,0,236,65,181,148,105,213,10,0,238,193,24,185,100,92,7,0,239,193,159,175,75,161,8,0,240,65,173,44,145,114,7,0,240,65,157,38,19,233,9,0,240,65,157,38,35,233,9,0,242,193,253,210,76,187,6,0,244,65,182,148,228,60,9,0,244,65,182,148,3,61,9,0,244,193,74,198,105,129,9,0,244,193,74,198,180,129,9,0,246,65,82,100,139,143,6,0,249,193,252,30,85,174,7,0,249,193,252,30,202,174,7,0,251,65,239,219,150,189,10,0,252,193,100,89,114,101,11,0,253,65,70,161,172,96,11,0,253,193,64,179,211,120,11,0,255,193,104,152,218,93,7,0,7,66,174,150,1,61,6,0,9,194,50,171,167,242,9,0,15,66,244,20,29,120,7,0,16,66,142,105,143,94,11,0,18,194,80,235,164,16,9,0,18,194,80,235,141,17,9,0,18,66,105,28,72,236,10,0,19,194,220,197,55,104,6,0,27,66,225,110,73,38,7,0,28,194,113,34,4,52,10,0,29,194,39,146,18,210,8,0,29,194,39,146,113,210,8,0,29,194,39,146,217,210,8,0,29,194,152,162,5,209,10,0,31,66,8,98,165,224,8,0,31,66,8,98,86,225,8,0,32,194,159,129,134,19,7,0,33,194,58,160,24,39,8,0,33,194,58,160,66,39,8,0,33,194,58,160,104,39,8,0,33,66,129,95,225,101,11,0,38,66,193,115,139,254,6,0,39,66,130,207,67,4,11,0,40,66,215,150,194,138,7,0,40,66,19,210,112,246,7,0,45,194,229,117,221,214,5,0,45,194,30,236,1,132,8,0,46,66,146,174,23,27,7,0,48,194,165,75,13,62,6,0,51,66,202,130,203,132,6,0,53,194,235,119,192,60,11,0,57,66,141,158,204,181,9,0,57,66,141,158,224,182,9,0,57,194,1,103,17,149,11,0,58,66,112,212,145,18,7,0,58,66,40,190,253,38,9,0,58,66,40,190,207,40,9,0,61,66,155,110,55,108,7,0,61,66,28,235,137,234,10,0,61,66,28,235,188,234,10,0,64,66,74,27,56,40,11,0,67,66,52,143,123,181,8,0,68,194,181,120,21,71,9,0,68,194,181,120,100,72,9,0,68,194,181,120,181,73,9,0,68,194,181,120,11,75,9,0,69,66,1,144,24,148,6,0,69,194,72,171,167,242,9,0,72,66,129,44,204,181,9,0,72,66,129,44,224,182,9,0,74,194,7,111,16,183,8,0,74,194,7,111,251,191,8,0,74,194,7,111,239,200,8,0,75,66,218,134,16,37,7,0,77,194,88,24,133,203,10,0,78,66,173,103,135,61,7,0,78,66,33,128,29,120,7,0,82,194,171,32,14,19,8,0,82,66,237,18,249,63,8,0,82,66,237,18,110,64,8,0,84,194,91,170,55,108,7,0,85,194,252,198,103,93,10,0,85,194,252,198,153,93,10,0,86,66,128,189,0,38,9,0,86,66,128,189,44,38,9,0,86,66,128,189,65,38,9,0,88,66,64,10,206,68,9,0,88,66,64,10,252,68,9,0,89,66,125,102,102,235,5,0,89,194,90,14,223,116,11,0,91,66,204,80,51,99,6,0,92,194,227,89,83,126,8,0,92,194,227,89,214,127,8,0,92,194,227,89,65,128,8,0,95,194,238,68,16,183,8,0,95,194,238,68,251,191,8,0,95,194,238,68,239,200,8,0,96,194,44,28,89,166,10,0,97,66,87,247,96,18,7,0,97,194,80,91,60,152,7,0,97,194,80,91,105,44,9,0,100,194,117,56,102,15,7,0,104,194,89,27,255,70,10,0,104,194,89,27,87,71,10,0,104,194,89,27,174,71,10,0,105,66,195,98,176,68,7,0,106,66,219,171,41,254,6,0,106,66,184,200,16,183,8,0,106,66,184,200,251,191,8,0,106,66,184,200,239,200,8,0,108,194,110,86,39,47,9,0,108,194,110,86,54,48,9,0,112,66,219,146,139,14,10,0,112,66,219,146,50,15,10,0,118,66,92,21,23,37,6,0,119,66,175,79,161,77,7,0,120,66,44,158,252,169,7,0,121,194,149,243,36,153,8,0,123,66,66,20,23,27,7,0,125,194,12,170,193,100,10,0,125,194,12,170,89,103,10,0,126,66,231,129,192,2,7,0,126,194,22,42,16,183,8,0,126,194,22,42,251,191,8,0,126,194,22,42,239,200,8,0,127,66,147,93,4,52,10,0,128,66,97,96,134,19,7,0,128,194,122,104,161,77,7,0,129,194,236,70,60,152,7,0,129,194,236,70,233,183,7,0,129,194,147,241,196,134,10,0,131,194,233,178,38,117,8,0,132,194,184,83,119,96,7,0,133,66,104,61,222,48,6,0,135,194,210,8,246,243,9,0,135,194,210,8,59,245,9,0,135,194,210,8,131,246,9,0,136,66,208,124,89,5,7,0,136,66,180,23,141,180,9,0,136,66,180,23,190,180,9,0,136,66,180,23,3,181,9,0,137,194,69,236,16,183,8,0,137,194,69,236,251,191,8,0,137,194,69,236,239,200,8,0,143,66,190,29,184,209,5,0,143,66,202,172,49,222,9,0,143,66,202,172,130,222,9,0,146,66,98,44,194,138,7,0,146,194,123,51,69,106,8,0,149,194,133,150,99,36,7,0,153,194,225,239,252,169,7,0,155,66,178,194,116,37,6,0,155,66,178,194,101,225,6,0,155,66,82,147,241,77,8,0,157,66,187,119,9,199,9,0,157,66,187,119,49,199,9,0,157,194,200,74,4,52,10,0,159,66,1,6,178,139,6,0,159,66,1,6,202,139,6,0,159,194,214,36,23,95,8,0,160,66,83,75,180,254,7,0,162,194,242,76,60,152,7,0,162,194,242,76,190,122,8,0,162,194,242,76,83,123,8,0,162,194,242,76,244,123,8,0,162,194,242,76,210,33,10,0,163,194,171,156,38,57,6,0,163,194,81,9,168,157,10,0,164,194,228,1,194,138,7,0,165,194,106,134,39,47,9,0,165,194,106,134,54,48,9,0,167,66,80,224,194,138,7,0,169,194,225,214,186,26,9,0,169,194,225,214,120,27,9,0,169,194,225,214,48,28,9,0,171,66,188,92,135,149,7,0,171,66,188,92,214,99,10,0,171,66,188,92,22,100,10,0,171,66,188,92,82,100,10,0,173,194,211,226,156,253,6,0,173,194,190,92,146,178,7,0,176,194,41,177,117,51,7,0,176,194,41,177,111,53,7,0,179,194,8,205,29,120,7,0,181,66,19,48,175,29,9,0,181,66,19,48,88,30,9,0,182,66,244,86,29,14,6,0,182,194,8,90,240,248,6,0,182,66,244,86,73,130,7,0,187,194,11,124,64,47,7,0,191,194,129,211,1,60,8,0,192,66,231,72,2,58,11,0,193,66,207,212,38,117,8,0,197,194,13,108,99,36,7,0,203,66,191,131,59,219,7,0,205,66,240,200,12,99,7,0,207,66,41,75,23,27,7,0,208,66,12,205,175,7,7,0,209,66,191,185,201,51,6,0,209,66,60,247,145,12,8,0,210,194,18,51,41,245,5,0,210,194,18,51,222,3,6,0,210,194,115,135,119,96,7,0,210,66,208,107,75,112,7,0,212,194,134,245,194,138,7,0,212,66,206,119,111,4,9,0,212,66,206,119,41,6,9,0,213,194,222,148,23,27,7,0,216,66,7,143,107,10,7,0,217,66,177,121,69,234,5,0,217,66,171,96,23,27,7,0,217,66,76,42,177,45,8,0,219,194,137,170,38,162,6,0,219,66,81,22,112,246,7,0,222,66,151,243,68,233,5,0,222,194,188,117,213,226,7,0,226,194,120,54,183,249,6,0,227,194,207,34,176,191,7,0,227,194,207,34,93,34,10,0,227,194,207,34,146,34,10,0,227,194,207,34,206,34,10,0,230,66,85,58,161,77,7,0,234,66,228,171,16,183,8,0,234,66,228,171,251,191,8,0,234,66,228,171,239,200,8,0,235,194,243,191,149,40,7,0,236,194,63,107,183,82,7,0,236,194,92,248,218,93,7,0,238,66,222,145,75,191,10,0,240,194,30,63,4,52,10,0,242,194,138,187,77,135,10,0,242,66,159,210,145,136,10,0,243,194,50,130,145,12,8,0,244,194,26,45,133,89,7,0,245,194,93,196,167,242,9,0,245,66,119,214,108,240,10,0,247,194,6,83,16,183,8,0,247,194,6,83,251,191,8,0,247,194,6,83,239,200,8,0,248,66,156,44,4,179,11,0,249,194,98,66,10,69,8,0,250,66,92,235,23,27,7,0,250,194,85,201,4,82,7,0,250,66,239,109,194,138,7,0,251,194,164,64,168,249,5,0,251,194,164,64,237,249,5,0,251,194,164,64,0,55,7,0,251,194,164,64,163,57,7,0,251,194,97,24,60,152,7,0,251,194,97,24,42,164,8,0,251,194,97,24,205,47,10,0,252,194,44,146,51,104,7,0,252,66,179,74,167,242,9,0,253,66,65,157,28,83,6,0,253,66,143,14,58,234,6,0,253,194,141,4,4,52,10,0,1,67,140,158,135,61,7,0,1,195,106,212,150,45,9,0,1,195,106,212,18,46,9,0,1,195,184,203,62,223,9,0,1,195,184,203,64,224,9,0,1,195,184,203,93,225,9,0,3,67,125,27,67,6,7,0,7,67,203,240,255,74,7,0,8,195,250,117,192,2,7,0,9,195,50,51,116,72,7,0,9,195,50,51,104,77,7,0,9,195,50,51,213,81,7,0,10,195,141,201,163,88,10,0,10,195,141,201,83,89,10,0,13,67,189,118,29,120,7,0,13,195,152,54,132,21,9,0,13,195,152,54,157,23,9,0,14,195,178,166,134,19,7,0,17,67,50,75,111,4,9,0,17,67,50,75,41,6,9,0,18,195,44,214,51,139,6,0,18,67,38,228,58,35,9,0,18,67,38,228,31,36,9,0,22,195,165,165,16,183,8,0,22,195,165,165,251,191,8,0,22,195,165,165,239,200,8,0,23,67,255,108,253,122,11,0,30,67,43,171,213,84,8,0,31,67,188,148,107,10,7,0,31,67,1,144,129,135,8,0,31,67,1,144,184,135,8,0,34,195,124,96,23,27,7,0,35,67,249,20,145,114,7,0,35,195,252,130,16,183,8,0,35,195,252,130,251,191,8,0,35,195,252,130,239,200,8,0,37,195,52,111,145,114,7,0,44,67,140,24,62,26,9,0,44,67,140,24,116,26,9,0,45,195,15,6,216,24,6,0,45,195,15,6,1,25,6,0,47,67,218,86,23,27,7,0,47,67,8,56,45,226,8,0,47,67,8,56,130,231,8,0,49,195,233,7,90,47,6,0,52,195,49,89,153,113,10,0,52,195,49,89,27,114,10,0,54,67,68,207,128,229,5,0,54,195,147,33,38,117,8,0,54,195,96,248,193,100,10,0,54,195,96,248,89,103,10,0,55,67,83,224,183,249,6,0,55,195,111,103,224,6,7,0,55,67,240,88,161,77,7,0,56,195,75,237,219,238,8,0,56,195,75,237,39,240,8,0,56,195,75,237,117,241,8,0,57,67,131,139,204,181,9,0,57,67,131,139,224,182,9,0,59,67,139,224,161,77,7,0,60,67,229,89,102,214,8,0,60,67,229,89,14,218,8,0,61,195,98,27,29,120,7,0,63,67,58,228,0,55,7,0,63,67,58,228,163,57,7,0,64,195,53,22,75,241,6,0,66,67,213,42,186,212,7,0,71,67,30,251,3,83,6,0,75,195,115,75,111,4,9,0,75,195,115,75,41,6,9,0,75,195,152,95,175,29,9,0,75,195,152,95,88,30,9,0,75,195,227,235,13,99,11,0,77,195,165,11,132,21,9,0,77,195,165,11,157,23,9,0,78,67,216,108,188,213,9,0,78,67,216,108,58,214,9,0,78,67,216,108,197,214,9,0,79,67,167,193,166,62,11,0,80,67,125,199,186,26,9,0,80,67,125,199,120,27,9,0,80,67,125,199,48,28,9,0,81,195,122,215,92,9,8,0,83,67,234,53,132,21,9,0,83,67,234,53,157,23,9,0,85,67,26,132,211,213,7,0,87,67,84,140,135,17,11,0,88,67,86,6,135,44,7,0,88,67,243,162,143,135,7,0,89,195,53,28,218,93,7,0,89,195,139,72,194,138,7,0,91,67,160,1,176,68,7,0,96,195,197,160,16,37,7,0,99,67,187,1,29,120,7,0,102,67,15,30,145,114,7,0,114,195,56,85,198,97,6,0,115,195,149,198,145,12,8,0,116,67,112,152,33,69,11,0,118,67,116,18,39,47,9,0,118,67,116,18,54,48,9,0,120,195,191,176,243,222,5,0,121,195,239,96,105,186,10,0,122,195,127,53,40,14,9,0,122,195,127,53,96,14,9,0,124,67,93,118,28,55,6,0,124,195,222,252,132,21,9,0,124,195,222,252,157,23,9,0,126,67,210,10,147,35,7,0,129,195,33,15,29,120,7,0,133,195,104,140,167,107,11,0,135,195,84,177,194,138,7,0,139,67,124,226,74,199,7,0,141,195,87,107,163,57,7,0,142,67,252,199,0,21,6,0,142,67,252,199,91,184,6,0,147,67,252,154,134,19,7,0,147,67,3,55,32,66,7,0,147,67,250,145,179,180,10,0,148,195,158,10,116,185,6,0,149,195,16,87,213,252,5,0,151,67,187,202,23,253,6,0,151,67,187,202,156,253,6,0,152,195,34,102,16,183,8,0,152,195,34,102,251,191,8,0,152,195,34,102,239,200,8,0,152,195,175,55,45,226,8,0,152,195,175,55,130,231,8,0,153,67,249,229,161,201,6,0,154,195,165,37,156,232,10,0,155,67,105,112,51,104,7,0,157,195,125,11,13,17,11,0,158,195,124,249,246,210,9,0,158,195,124,249,12,211,9,0,158,67,249,96,4,52,10,0,161,67,51,209,4,52,10,0,162,67,212,72,55,95,10,0,162,67,212,72,143,95,10,0,163,67,83,23,100,92,7,0,164,67,25,78,217,238,9,0,164,67,25,78,174,239,9,0,165,195,223,217,255,110,7,0,166,67,2,172,47,13,7,0,166,67,245,11,195,250,9,0,166,67,245,11,231,250,9,0,167,67,3,73,120,13,6,0,167,67,126,225,228,171,10,0,168,67,73,82,236,166,11,0,169,67,235,15,60,152,7,0,169,67,175,105,98,47,8,0,169,67,235,15,104,103,8,0,169,67,235,15,219,103,8,0,169,67,235,15,68,104,8,0,169,67,235,15,59,45,10,0,169,67,235,15,202,45,10,0,169,67,235,15,237,45,10,0,169,67,217,203,67,178,11,0,170,67,237,223,103,32,6,0,170,67,14,135,176,68,7,0,172,67,23,83,4,52,10,0,173,67,248,82,23,27,7,0,174,67,123,93,60,152,7,0,174,195,214,55,0,17,8,0,174,67,123,93,79,237,8,0,174,195,57,215,151,178,10,0,178,195,86,234,206,214,6,0,178,67,20,179,186,57,8,0,179,195,103,253,157,1,6,0,180,67,137,125,135,44,7,0,180,67,231,68,25,71,8,0,181,67,57,179,164,16,9,0,181,67,57,179,141,17,9,0,181,195,155,103,168,152,9,0,182,195,81,23,125,67,10,0,182,195,81,23,69,68,10,0,183,195,18,81,104,67,7,0,183,195,121,91,223,7,11,0,183,195,121,91,110,8,11,0,186,195,177,90,217,9,7,0,186,195,46,233,191,137,10,0,186,195,177,90,124,147,10,0,188,67,224,92,142,113,7,0,188,195,123,138,252,242,8,0,188,195,123,138,240,243,8,0,188,67,212,171,21,71,9,0,188,67,212,171,100,72,9,0,188,67,212,171,181,73,9,0,188,67,212,171,11,75,9,0,190,67,250,224,253,13,6,0,193,195,177,41,154,239,10,0,194,195,108,10,16,183,8,0,194,195,108,10,251,191,8,0,194,195,108,10,239,200,8,0,195,195,154,159,60,152,7,0,195,195,154,159,128,112,8,0,195,195,183,23,179,224,10,0,195,195,183,23,210,224,10,0,197,67,147,187,51,104,7,0,198,195,112,49,241,219,5,0,200,67,134,125,117,51,7,0,200,67,134,125,177,133,7,0,203,195,129,206,152,65,7,0,203,195,16,59,236,111,7,0,208,195,187,207,16,37,7,0,209,195,228,236,77,135,10,0,212,195,68,86,229,221,8,0,212,195,68,86,29,222,8,0,213,195,202,97,200,172,7,0,214,195,180,213,204,181,9,0,214,195,180,213,224,182,9,0,215,67,207,234,161,9,11,0,216,67,148,171,210,181,6,0,218,67,165,209,41,254,6,0,218,195,16,234,4,52,10,0,220,195,217,201,134,19,7,0,220,67,120,56,175,29,9,0,220,67,120,56,88,30,9,0,221,195,62,39,199,221,5,0,223,195,101,132,0,55,7,0,223,195,101,132,163,57,7,0,223,195,89,227,29,120,7,0,223,67,111,36,194,138,7,0,223,195,202,153,132,21,9,0,223,195,202,153,157,23,9,0,224,67,135,122,23,27,7,0,226,67,115,141,187,220,6,0,226,195,3,16,188,213,9,0,226,195,3,16,58,214,9,0,226,195,3,16,197,214,9,0,228,195,98,61,228,158,6,0,228,195,1,192,209,19,10,0,229,67,49,133,219,27,11,0,230,195,98,210,125,18,9,0,230,195,98,210,34,19,9,0,231,67,17,205,117,251,6,0,231,195,199,111,215,100,8,0,232,67,242,19,194,138,7,0,233,67,239,107,29,120,7,0,235,67,34,102,55,63,10,0,235,67,34,102,88,63,10,0,237,67,72,22,45,226,8,0,237,67,72,22,130,231,8,0,237,67,131,182,204,194,10,0,240,67,203,241,23,27,7,0,241,195,162,238,71,250,6,0,241,67,130,39,118,195,10,0,241,67,130,39,148,195,10,0,245,195,92,175,125,18,9,0,245,195,92,175,34,19,9,0,245,195,254,98,61,200,10,0,246,195,252,68,218,93,7,0,247,67,77,152,106,15,6,0,247,67,167,14,130,252,10,0,248,67,183,255,248,69,6,0,248,67,50,175,226,11,7,0,249,67,215,55,73,38,7,0,249,67,215,55,75,99,11,0,250,67,199,118,233,80,8,0,251,67,171,202,160,79,8,0,253,67,75,20,246,84,6,0,254,67,73,20,62,223,9,0,254,67,73,20,64,224,9,0,254,67,73,20,93,225,9,0,255,67,3,127,50,232,6,0,1,196,160,68,115,143,11,0,2,196,68,17,77,135,10,0,2,68,244,39,21,253,10,0,3,196,246,192,76,66,7,0,5,68,99,10,208,205,10,0,6,68,121,27,253,38,9,0,6,68,121,27,207,40,9,0,7,196,156,150,229,26,11,0,9,196,187,129,252,242,8,0,9,196,187,129,240,243,8,0,9,68,47,149,4,52,10,0,13,68,45,213,204,181,9,0,13,68,45,213,224,182,9,0,16,196,9,34,193,100,10,0,16,196,9,34,89,103,10,0,19,68,75,51,236,85,6,0,21,68,181,221,41,254,6,0,21,68,37,235,23,27,7,0,24,68,44,187,177,105,7,0,28,196,63,21,21,71,9,0,28,196,63,21,100,72,9,0,28,196,63,21,181,73,9,0,28,196,63,21,11,75,9,0,28,68,217,203,69,176,11,0,29,68,102,35,250,13,11,0,31,196,198,152,119,96,7,0,31,68,24,109,143,249,7,0,31,68,24,109,213,249,7,0,31,68,24,109,23,250,7,0,31,196,198,152,83,126,8,0,31,68,112,60,168,152,9,0,33,196,122,87,240,246,7,0,33,68,254,138,238,86,11,0,34,196,81,23,182,208,6,0,35,196,207,43,2,251,6,0,35,196,207,43,47,213,10,0,37,68,10,118,200,125,11,0,38,196,60,77,111,4,9,0,38,196,60,77,41,6,9,0,39,196,74,9,219,238,8,0,39,196,74,9,39,240,8,0,39,196,74,9,117,241,8,0,39,68,236,237,149,53,11,0,40,196,205,42,249,212,5,0,41,196,44,183,238,153,8,0,42,68,11,135,83,126,8,0,42,68,11,135,65,128,8,0,42,68,11,135,195,128,8,0,43,68,51,6,194,138,7,0,45,196,35,200,139,14,10,0,45,196,35,200,50,15,10,0,46,68,23,165,145,114,7,0,48,68,20,32,218,93,7,0,50,196,129,133,4,52,10,0,52,68,38,161,241,190,7,0,52,196,227,0,6,249,9,0,52,196,227,0,105,249,9,0,52,196,227,0,201,249,9,0,53,196,209,39,135,149,7,0,53,196,209,39,1,79,9,0,53,196,209,39,32,79,9,0,54,68,126,80,142,239,6,0,54,196,213,179,173,14,7,0,54,196,143,74,25,84,7,0,54,196,143,74,114,84,7,0,56,196,168,169,39,47,9,0,56,196,168,169,54,48,9,0,60,196,226,228,8,27,11,0,62,196,146,184,60,77,10,0,62,196,146,184,232,77,10,0,64,196,174,241,170,91,7,0,66,68,23,208,133,62,8,0,66,68,35,60,188,217,10,0,68,68,211,175,27,255,8,0,68,68,211,175,100,255,8,0,69,68,21,132,34,214,6,0,70,196,154,178,111,58,6,0,72,68,106,119,23,27,7,0,74,68,146,137,42,97,6,0,74,68,146,137,214,191,6,0,75,68,172,216,4,52,10,0,76,196,136,52,21,71,9,0,76,196,136,52,100,72,9,0,76,196,136,52,181,73,9,0,76,196,136,52,11,75,9,0,76,196,57,183,190,238,10,0,77,68,94,147,77,11,7,0,82,196,5,220,16,183,8,0,82,196,5,220,251,191,8,0,82,196,5,220,239,200,8,0,84,68,218,243,32,20,9,0,84,68,218,243,179,20,9,0,85,68,252,134,222,58,9,0,85,68,252,134,248,58,9,0,86,196,188,18,54,44,11,0,87,68,16,254,44,56,6,0,87,68,16,254,77,121,6,0,89,68,200,0,75,148,7,0,89,68,200,0,226,164,7,0,89,68,200,0,218,7,8,0,89,68,200,0,2,8,8,0,91,196,37,143,194,185,9,0,91,196,37,143,96,186,9,0,92,196,189,237,32,107,7,0,92,196,189,237,130,107,7,0,92,68,184,134,193,100,10,0,92,68,184,134,89,103,10,0,93,68,25,53,16,183,8,0,93,68,25,53,251,191,8,0,93,68,25,53,239,200,8,0,96,68,195,193,134,19,7,0,96,196,221,197,119,96,7,0,98,68,159,101,228,160,8,0,99,68,117,27,23,26,8,0,102,196,196,49,4,52,10,0,104,68,171,114,135,149,7,0,104,68,171,114,60,152,7,0,104,68,171,114,131,44,9,0,104,68,66,15,137,44,11,0,108,68,204,3,143,240,6,0,112,68,125,135,163,223,5,0,112,196,147,190,177,105,7,0,114,196,84,70,185,206,6,0,117,196,54,40,196,109,6,0,118,196,143,199,102,214,8,0,118,196,143,199,14,218,8,0,118,68,208,105,70,235,10,0,118,68,76,152,42,108,11,0,122,68,173,15,175,88,9,0,122,68,173,15,254,88,9,0,122,68,173,15,92,89,9,0,122,68,173,15,173,89,9,0,124,196,9,220,199,36,7,0,126,68,188,148,85,29,10,0,126,196,116,32,15,220,10,0,127,196,37,44,99,91,8,0,129,68,169,13,29,120,7,0,130,196,79,13,17,11,11,0,132,68,27,190,4,52,10,0,133,196,36,131,177,105,7,0,135,196,82,37,177,105,7,0,136,68,85,144,231,254,5,0,137,196,16,22,107,10,7,0,138,68,211,78,13,8,7,0,139,68,239,174,23,27,7,0,139,196,112,164,125,67,10,0,139,196,112,164,69,68,10,0,143,68,241,14,147,40,11,0,144,68,18,145,115,86,9,0,144,68,18,145,181,86,9,0,144,196,77,99,109,243,10,0,144,68,246,123,224,58,11,0,147,196,128,122,255,152,11,0,151,196,160,192,118,91,6,0,151,196,160,192,194,138,7,0,151,196,160,192,13,160,7,0,151,68,84,243,111,4,9,0,151,68,84,243,41,6,9,0,152,196,169,135,65,76,7,0,153,196,52,252,219,238,8,0,153,196,52,252,39,240,8,0,153,196,52,252,117,241,8,0,160,68,38,173,118,131,7,0,160,196,153,174,168,152,9,0,160,68,170,149,176,147,11,0,161,68,50,204,29,120,7,0,162,196,147,158,167,113,9,0,163,68,171,186,194,138,7,0,163,68,128,96,146,76,9,0,163,68,128,96,63,77,9,0,164,196,128,98,201,89,11,0,165,68,164,79,18,210,8,0,165,68,164,79,113,210,8,0,165,68,164,79,217,210,8,0,165,68,147,7,104,197,10,0,169,196,213,63,161,77,7,0,169,196,204,254,187,118,11,0,169,196,204,254,165,125,11,0,170,196,2,126,222,226,5,0,170,68,99,2,194,138,7,0,170,68,193,97,246,243,9,0,170,68,193,97,59,245,9,0,170,68,193,97,131,246,9,0,171,68,131,182,125,67,10,0,171,68,131,182,69,68,10,0,173,68,182,199,20,64,6,0,173,68,112,249,145,114,7,0,176,68,68,128,173,196,9,0,178,196,17,20,51,65,7,0,180,68,14,32,160,79,8,0,182,196,21,110,167,239,6,0,182,68,61,157,219,238,8,0,182,68,61,157,39,240,8,0,182,68,61,157,117,241,8,0,183,196,60,166,194,138,7,0,184,68,249,122,117,51,7,0,184,68,249,122,111,53,7,0,193,196,144,192,166,149,11,0,194,196,219,54,249,250,5,0,194,196,219,54,15,251,5,0,198,196,111,175,204,140,10,0,199,196,89,52,133,0,7,0,200,68,203,27,130,83,7,0,202,196,11,67,86,244,6,0,208,196,117,196,114,139,11,0,209,68,77,95,16,37,7,0,209,196,211,248,218,93,7,0,211,68,9,116,161,77,7,0,212,68,76,141,45,226,8,0,212,68,76,141,130,231,8,0,212,196,205,40,101,118,10,0,212,196,205,40,178,118,10,0,215,196,127,170,160,79,8,0,216,68,136,42,62,223,9,0,216,68,136,42,64,224,9,0,216,68,136,42,93,225,9,0,217,196,254,212,194,138,7,0,217,68,15,71,35,171,10,0,217,68,212,28,198,172,11,0,219,196,253,51,170,2,8,0,219,196,253,51,215,2,8,0,219,196,253,51,6,3,8,0,219,196,72,15,96,143,11,0,220,196,198,67,233,70,11,0,221,68,55,142,23,27,7,0,222,196,120,49,219,238,8,0,222,196,120,49,39,240,8,0,222,196,120,49,117,241,8,0,223,68,34,117,134,19,7,0,223,196,165,55,29,120,7,0,226,196,204,104,123,249,5,0,227,196,10,145,202,88,7,0,227,196,6,201,14,137,9,0,227,196,6,201,201,137,9,0,228,196,171,78,217,103,7,0,230,68,19,160,86,244,6,0,231,68,158,155,138,111,7,0,232,196,65,105,73,38,7,0,232,196,65,105,22,91,7,0,233,68,53,22,209,84,7,0,234,68,156,116,133,165,10,0,236,68,163,143,79,224,6,0,241,68,72,21,218,138,10,0,242,68,203,221,1,229,9,0,242,68,203,221,31,229,9,0,245,68,139,76,179,38,11,0,245,196,199,129,66,50,11,0,249,196,163,160,176,68,7,0,249,196,149,85,12,99,7,0,252,68,186,153,88,234,9,0,252,68,186,153,126,234,9,0,252,68,186,153,144,234,9,0,255,196,40,170,187,0,7,0,0,69,100,148,133,73,6,0,2,69,86,218,132,21,9,0,2,69,86,218,157,23,9,0,3,69,131,145,58,35,9,0,3,69,131,145,31,36,9,0,4,69,224,27,47,43,7,0,4,197,48,188,63,11,11,0,8,69,47,55,99,36,7,0,8,197,124,57,113,0,9,0,8,197,124,57,160,0,9,0,9,69,4,55,11,210,6,0,10,69,89,210,66,3,7,0,10,197,32,169,58,212,8,0,10,197,32,169,201,212,8,0,11,197,172,17,224,6,7,0,18,197,225,148,145,114,7,0,19,197,17,165,20,30,10,0,19,197,17,165,115,30,10,0,19,197,17,165,207,30,10,0,20,197,195,80,19,90,7,0,20,197,93,187,156,168,10,0,26,197,215,210,29,120,7,0,28,69,53,51,85,29,10,0,29,69,160,117,198,46,6,0,31,197,254,241,204,16,8,0,33,69,48,18,135,149,7,0,34,197,61,73,206,162,6,0,38,197,188,112,119,7,7,0,39,69,205,107,219,46,10,0,41,197,179,61,166,73,6,0,41,69,108,41,20,8,9,0,41,69,108,41,247,8,9,0,41,69,108,41,210,9,9,0,44,197,193,22,29,120,7,0,50,69,145,248,194,138,7,0,50,69,145,248,53,167,7,0,52,197,15,74,22,91,7,0,53,69,3,163,125,67,10,0,53,69,3,163,69,68,10,0,55,197,225,231,252,169,7,0,59,197,81,146,39,191,10,0,61,69,78,32,166,248,6,0,61,197,94,158,161,77,7,0,63,69,173,218,131,92,10,0,63,69,173,218,178,92,10,0,65,69,182,25,39,162,10,0,66,69,29,98,101,234,5,0,67,69,218,13,217,103,7,0,68,197,7,68,16,183,8,0,68,197,7,68,251,191,8,0,68,197,7,68,239,200,8,0,70,197,86,127,218,93,7,0,70,69,19,21,60,249,10,0,73,69,85,2,204,141,10,0,75,69,89,161,187,48,11,0,76,197,203,8,241,190,7,0,77,69,183,55,21,141,6,0,78,197,33,221,222,55,11,0,81,69,114,239,216,86,6,0,81,69,195,10,123,70,11,0,84,197,219,146,51,104,7,0,87,197,139,66,25,84,7,0,87,197,139,66,114,84,7,0,88,69,153,105,16,183,8,0,88,69,153,105,251,191,8,0,88,69,153,105,239,200,8,0,89,69,189,3,19,1,7,0,89,69,184,170,242,55,11,0,91,69,242,241,194,138,7,0,92,69,81,222,213,15,9,0,92,69,246,17,200,125,11,0,93,69,177,4,43,72,10,0,93,69,177,4,148,72,10,0,97,69,214,211,184,19,11,0,103,69,193,70,39,47,9,0,103,69,193,70,54,48,9,0,104,197,75,243,186,81,7,0,104,197,79,75,194,138,7,0,107,197,181,37,2,175,11,0,108,197,237,134,205,232,9,0,108,197,237,134,235,232,9,0,109,69,91,220,128,39,7,0,109,69,197,227,115,161,9,0,109,69,197,227,104,162,9,0,114,69,200,47,135,44,7,0,114,69,199,102,163,88,10,0,114,69,199,102,83,89,10,0,116,197,94,135,76,225,10,0,118,69,4,149,103,219,7,0,118,197,143,95,14,137,9,0,118,197,143,95,201,137,9,0,119,69,211,141,0,55,7,0,119,69,160,221,16,183,8,0,119,69,160,221,251,191,8,0,119,69,160,221,239,200,8,0,119,69,224,79,58,35,9,0,119,69,224,79,58,35,9,0,119,69,224,79,31,36,9,0,119,69,224,79,31,36,9,0,124,69,136,7,124,18,11,0,124,69,136,7,169,20,11,0,128,69,2,46,20,30,10,0,128,69,2,46,115,30,10,0,128,69,2,46,207,30,10,0,130,69,156,84,121,160,6,0,130,197,24,195,185,152,8,0,130,69,128,174,77,125,9,0,130,69,128,174,110,125,9,0,130,69,128,174,134,125,9,0,131,197,140,180,240,248,6,0,134,197,151,217,23,27,7,0,135,197,160,219,222,14,7,0,137,69,131,29,31,6,7,0,137,69,131,29,194,138,7,0,137,69,131,29,135,149,7,0,137,69,131,29,245,193,7,0,137,69,131,29,23,194,7,0,137,69,108,233,97,254,9,0,137,69,108,233,127,254,9,0,137,69,108,233,151,254,9,0,138,69,221,230,75,112,7,0,141,69,98,230,184,89,7,0,141,69,98,230,19,90,7,0,144,197,133,210,216,145,8,0,145,69,25,187,0,55,7,0,145,69,247,36,12,99,7,0,148,197,190,117,222,14,7,0,148,197,127,75,233,16,7,0,148,69,253,219,231,146,11,0,149,197,79,118,253,49,7,0,149,69,52,144,116,72,7,0,149,69,92,229,224,58,11,0,150,69,83,110,67,165,8,0,150,69,163,138,168,152,9,0,151,197,216,226,135,61,7,0,152,197,177,70,152,228,7,0,153,69,99,80,80,83,7,0,154,197,50,193,52,68,6,0,154,69,22,126,167,113,9,0,154,69,22,126,7,114,9,0,154,69,22,126,108,114,9,0,154,69,22,126,202,114,9,0,154,69,22,126,49,115,9,0,154,69,148,195,4,52,10,0,156,69,192,105,209,18,7,0,158,69,212,193,186,81,7,0,158,69,212,193,255,4,8,0,159,69,141,254,194,138,7,0,159,69,227,137,45,226,8,0,159,69,227,137,130,231,8,0,160,69,6,152,16,37,7,0,160,69,55,185,145,114,7,0,161,69,69,237,39,47,9,0,161,69,69,237,54,48,9,0,161,69,167,4,158,183,10,0,163,69,169,134,162,238,5,0,163,69,223,242,4,52,10,0,163,69,105,3,35,133,10,0,164,197,98,127,145,114,7,0,165,197,211,158,240,78,6,0,165,69,107,136,132,21,9,0,165,69,107,136,157,23,9,0,166,69,165,75,29,177,6,0,166,69,154,191,252,242,8,0,166,69,154,191,240,243,8,0,167,69,62,192,196,127,6,0,168,197,29,33,97,103,7,0,170,197,66,97,23,27,7,0,170,197,66,97,60,152,7,0,170,197,66,97,226,164,7,0,170,197,198,148,255,255,8,0,170,197,198,148,30,0,9,0,170,197,66,97,20,241,10,0,170,197,89,195,101,53,11,0,172,197,23,170,1,229,9,0,172,197,23,170,31,229,9,0,174,69,224,45,173,84,6,0,176,69,80,148,221,56,6,0,176,69,107,119,3,108,11,0,178,197,170,48,122,246,6,0,179,197,43,112,201,80,7,0,179,69,38,176,194,138,7,0,179,197,60,167,169,40,8,0,181,197,220,156,135,44,7,0,181,197,47,214,60,152,7,0,181,197,192,211,4,52,10,0,182,197,12,143,139,14,10,0,182,197,12,143,50,15,10,0,182,69,206,103,229,123,11,0,184,69,29,154,135,250,5,0,184,197,252,18,27,29,9,0,184,197,252,18,68,29,9,0,185,197,93,33,134,19,7,0,190,197,116,184,60,152,7,0,190,197,116,184,128,112,8,0,191,197,196,232,161,77,7,0,194,197,4,187,195,215,5,0,195,197,159,144,238,209,6,0,195,69,139,199,67,17,7,0,195,197,159,144,60,152,7,0,195,197,159,144,104,103,8,0,195,197,159,144,219,103,8,0,195,197,159,144,68,104,8,0,195,197,159,144,59,45,10,0,196,197,193,115,192,231,5,0,196,197,193,115,173,20,6,0,196,197,251,21,168,152,9,0,197,69,121,249,134,19,7,0,197,69,138,149,135,149,7,0,203,197,141,196,60,152,7,0,203,197,141,196,128,112,8,0,203,197,110,49,58,35,9,0,203,197,110,49,31,36,9,0,205,69,52,186,51,104,7,0,207,197,146,83,60,152,7,0,208,69,239,142,177,95,6,0,209,69,93,170,117,51,7,0,209,69,93,170,111,53,7,0,211,69,218,83,220,39,7,0,211,197,131,174,51,36,11,0,212,197,234,211,135,61,7,0,213,69,170,17,4,52,10,0,213,197,102,18,4,52,10,0,218,197,94,26,244,220,5,0,219,197,167,28,100,92,7,0,222,69,246,252,53,251,5,0,222,197,252,202,20,8,9,0,222,197,252,202,247,8,9,0,222,197,252,202,210,9,9,0,223,197,105,78,187,34,6,0,223,197,105,78,8,120,6,0,223,197,105,78,117,51,7,0,223,197,105,78,111,53,7,0,223,197,36,36,147,110,7,0,223,69,39,34,102,214,8,0,223,69,39,34,14,218,8,0,224,69,126,98,141,252,6,0,225,197,32,36,77,11,7,0,225,197,126,115,51,104,7,0,226,197,29,244,213,95,6,0,227,69,120,21,32,20,9,0,227,69,120,21,179,20,9,0,227,69,138,231,14,137,9,0,227,69,138,231,201,137,9,0,230,197,14,78,84,202,6,0,230,69,189,132,135,86,11,0,231,69,104,220,131,222,8,0,231,69,104,220,38,223,8,0,231,69,104,220,206,223,8,0,234,197,97,3,1,156,6,0,234,197,97,3,13,8,7,0,237,69,229,250,75,241,6,0,238,69,127,44,65,76,7,0,239,197,228,28,16,183,8,0,239,197,228,28,251,191,8,0,239,197,228,28,239,200,8,0,241,69,227,40,16,183,8,0,241,69,227,40,251,191,8,0,241,69,227,40,239,200,8,0,242,197,113,248,37,248,7,0,245,197,237,32,207,48,7,0,246,69,135,2,44,87,8,0,248,197,156,199,188,71,7,0,248,69,57,50,108,119,8,0,248,69,77,14,4,52,10,0,249,69,18,112,45,226,8,0,249,69,18,112,130,231,8,0,250,197,2,128,23,27,7,0,253,197,120,241,191,46,8,0,253,69,207,10,69,22,11,0,0,70,139,220,191,86,7,0,0,70,244,20,146,116,11,0,0,70,104,137,176,147,11,0,1,70,72,49,213,15,9,0,3,198,21,199,194,138,7,0,3,198,204,132,214,249,10,0,4,198,11,21,67,6,7,0,6,198,184,149,102,15,7,0,6,70,83,228,226,164,7,0,9,70,171,122,65,95,6,0,13,198,229,188,119,86,6,0,13,70,191,125,23,27,7,0,13,70,106,0,217,199,10,0,16,198,204,6,111,210,9,0,16,198,204,6,155,210,9,0,18,70,51,21,150,189,10,0,18,198,127,168,194,16,11,0,19,70,211,4,60,152,7,0,19,70,211,4,190,122,8,0,19,70,211,4,83,123,8,0,19,70,211,4,244,123,8,0,19,70,211,4,210,33,10,0,20,70,153,162,156,253,6,0,20,70,5,12,30,142,10,0,21,198,59,113,44,87,8,0,23,198,84,247,76,238,6,0,23,70,43,215,4,52,10,0,25,198,25,244,102,214,8,0,25,198,25,244,14,218,8,0,35,198,159,73,21,125,8,0,38,198,165,107,116,72,7,0,40,198,9,53,23,27,7,0,40,198,144,1,176,68,7,0,41,198,146,77,45,226,8,0,41,198,146,77,130,231,8,0,42,198,118,253,175,88,9,0,42,198,118,253,254,88,9,0,42,198,118,253,92,89,9,0,42,198,118,253,173,89,9,0,45,70,56,44,67,6,7,0,45,70,219,86,134,19,7,0,46,70,255,176,219,247,6,0,49,70,231,242,60,152,7,0,53,70,43,105,187,124,11,0,54,70,180,92,86,56,9,0,54,70,180,92,9,57,9,0,56,70,23,59,96,221,6,0,56,70,129,19,16,37,7,0,56,70,23,59,0,132,9,0,58,70,103,142,12,99,7,0,59,198,49,18,119,96,7,0,60,70,70,91,96,221,6,0,60,70,70,91,0,132,9,0,60,198,240,143,115,161,9,0,60,198,240,143,104,162,9,0,61,198,200,211,37,77,6,0,61,198,66,116,89,5,7,0,61,198,137,116,146,139,8,0,61,198,137,116,204,139,8,0,69,198,223,145,101,225,6,0,70,198,5,83,115,175,6,0,73,198,53,39,172,157,6,0,73,198,105,143,134,19,7,0,73,198,160,63,45,226,8,0,73,198,160,63,130,231,8,0,73,70,253,158,51,248,8,0,73,70,253,158,162,248,8,0,74,198,207,28,238,81,10,0,79,70,228,117,23,27,7,0,80,198,101,36,234,22,11,0,82,70,102,218,45,226,8,0,82,70,102,218,130,231,8,0,84,198,25,121,143,240,6,0,89,70,73,183,29,14,6,0,89,70,73,183,73,130,7,0,89,70,92,197,187,124,11,0,90,70,103,58,152,132,8,0,90,198,207,247,59,130,9,0,91,198,206,168,176,191,7,0,91,198,206,168,93,34,10,0,91,198,206,168,146,34,10,0,91,198,206,168,206,34,10,0,94,70,65,161,116,72,7,0,96,70,241,96,21,2,8,0,97,70,86,226,174,166,10,0,99,70,179,94,109,248,5,0,99,198,163,229,60,152,7,0,99,198,163,229,128,112,8,0,100,70,103,171,45,226,8,0,100,70,103,171,130,231,8,0,102,70,36,253,135,149,7,0,102,70,36,253,16,183,8,0,102,70,36,253,251,191,8,0,102,70,36,253,239,200,8,0,103,198,239,196,199,105,11,0,104,198,169,150,29,120,7,0,107,198,194,127,185,101,6,0,109,198,207,127,53,178,10,0,110,198,201,148,194,138,7,0,111,70,231,242,16,183,8,0,111,70,231,242,251,191,8,0,111,70,231,242,239,200,8,0,113,198,182,18,145,114,7,0,117,198,124,220,4,52,10,0,117,70,209,137,166,149,11,0,119,198,192,196,144,67,8,0,120,198,116,172,71,250,6,0,120,198,243,33,102,214,8,0,120,198,243,33,14,218,8,0,121,198,43,15,132,21,9,0,121,198,43,15,157,23,9,0,122,198,179,194,16,183,8,0,122,198,179,194,251,191,8,0,122,198,179,194,239,200,8,0,122,198,63,221,135,86,11,0,125,70,153,8,161,77,7,0,126,198,104,203,16,183,8,0,126,198,104,203,251,191,8,0,126,198,104,203,239,200,8,0,126,70,115,40,33,165,10,0,127,198,77,132,184,49,11,0,129,70,72,76,249,155,10,0,130,198,125,216,43,188,7,0,130,198,34,253,114,58,8,0,132,198,82,182,194,11,7,0,134,198,138,111,93,166,6,0,135,198,8,255,13,97,6,0,141,198,79,160,2,41,7,0,142,198,247,38,187,48,11,0,144,198,93,59,29,14,6,0,144,198,93,59,73,130,7,0,148,198,246,177,117,51,7,0,148,198,246,177,111,53,7,0,148,70,211,26,127,101,11,0,149,198,79,67,65,76,7,0,150,70,64,135,190,164,10,0,158,198,160,175,23,27,7,0,159,70,33,138,134,136,6,0,160,70,214,173,22,77,7,0,160,70,115,171,140,167,11,0,164,198,123,22,160,79,8,0,167,198,33,193,134,107,10,0,167,198,33,193,210,107,10,0,168,70,82,28,23,27,7,0,169,198,133,57,23,27,7,0,171,70,60,56,29,14,6,0,171,70,60,56,73,130,7,0,171,70,138,39,216,51,9,0,171,70,138,39,175,52,9,0,172,70,212,23,207,48,7,0,173,198,122,119,24,46,6,0,174,198,29,96,60,77,10,0,174,198,29,96,232,77,10,0,176,198,64,66,29,120,7,0,176,70,215,83,60,152,7,0,176,70,215,83,118,230,9,0,176,70,181,166,193,100,10,0,176,70,181,166,89,103,10,0,176,70,113,63,44,188,10,0,177,70,117,196,204,50,9,0,177,70,117,196,17,51,9,0,177,70,117,196,93,51,9,0,178,70,49,190,124,22,10,0,178,70,49,190,179,22,10,0,178,70,49,190,235,22,10,0,187,70,103,168,145,12,8,0,189,70,69,248,145,114,7,0,189,70,157,38,66,166,8,0,189,70,157,38,170,166,8,0,189,198,184,54,44,148,11,0,190,70,152,1,160,79,8,0,191,198,22,96,182,59,6,0,194,70,87,71,45,226,8,0,194,70,87,71,130,231,8,0,195,70,251,247,102,214,8,0,195,70,251,247,14,218,8,0,195,70,31,13,45,226,8,0,195,70,31,13,130,231,8,0,197,198,13,189,60,152,7,0,197,198,13,189,190,122,8,0,197,198,13,189,83,123,8,0,197,198,13,189,244,123,8,0,197,198,13,189,210,33,10,0,198,198,203,159,14,130,6,0,201,70,183,169,173,106,8,0,201,198,161,198,45,226,8,0,201,198,161,198,130,231,8,0,201,198,71,192,139,54,11,0,201,198,57,130,200,65,11,0,203,70,115,137,152,210,5,0,205,198,117,37,39,154,6,0,205,198,189,129,67,65,11,0,206,198,236,225,85,66,9,0,206,198,236,225,117,66,9,0,206,198,236,225,153,66,9,0,206,70,239,233,103,5,11,0,207,70,13,41,19,90,7,0,212,198,79,197,45,226,8,0,212,198,79,197,130,231,8,0,213,70,21,237,9,238,8,0,213,70,21,237,94,238,8,0,213,198,185,60,132,21,9,0,213,198,185,60,157,23,9,0,214,198,177,79,119,168,11,0,215,198,224,138,75,148,7,0,215,198,224,138,120,164,7,0,216,198,147,190,23,27,7,0,218,70,221,210,51,3,6,0,218,70,27,245,253,49,7,0,220,70,169,116,216,51,9,0,220,70,169,116,175,52,9,0,222,198,115,250,147,173,7,0,222,198,173,51,145,12,8,0,223,70,241,56,132,230,10,0,225,70,137,10,248,49,9,0,225,70,137,10,23,50,9,0,226,198,183,161,222,58,9,0,226,198,183,161,248,58,9,0,229,70,121,148,136,77,6,0,229,70,139,203,36,151,11,0,235,70,141,248,29,120,7,0,235,198,28,223,70,80,9,0,236,198,218,223,43,72,10,0,236,198,218,223,148,72,10,0,238,70,112,168,86,131,10,0,242,198,181,148,185,102,6,0,242,70,170,5,58,35,9,0,242,70,170,5,31,36,9,0,242,70,128,59,67,133,10,0,243,70,39,22,6,72,10,0,244,198,157,93,85,209,10,0,245,198,4,138,103,68,7,0,246,70,80,74,50,70,8,0,246,198,181,196,204,181,9,0,246,198,181,196,224,182,9,0,247,198,15,232,14,151,11,0,248,198,155,123,100,92,7,0,248,70,246,179,194,138,7,0,250,70,123,232,107,10,7,0,251,198,190,223,161,110,10,0,251,198,190,223,2,112,10,0,253,70,224,46,72,102,9,0,253,70,224,46,254,102,9,0,3,199,173,87,47,13,7,0,5,199,47,111,231,132,10,0,6,71,175,254,245,145,6,0,7,199,67,55,90,105,9,0,7,199,67,55,116,105,9,0,7,199,67,55,144,105,9,0,13,199,119,27,228,155,10,0,14,71,40,231,239,67,6,0,14,71,40,231,31,68,7,0,17,199,85,144,123,186,10,0,19,71,112,145,134,19,7,0,21,199,254,18,194,11,7,0,24,199,144,125,158,225,6,0,24,71,9,124,111,4,9,0,24,71,9,124,41,6,9,0,25,71,215,203,205,87,7,0,25,71,215,203,77,254,10,0,26,199,158,201,32,7,10,0,26,199,158,201,70,7,10,0,27,199,58,15,65,41,7,0,29,71,100,2,132,21,9,0,29,71,100,2,157,23,9,0,30,71,251,206,176,68,7,0,36,71,193,148,67,17,7,0,37,199,229,20,53,30,11,0,42,199,119,227,209,19,10,0,43,71,137,24,217,9,7,0,44,71,80,203,168,224,5,0,45,71,62,167,45,226,8,0,45,71,62,167,130,231,8,0,48,199,62,122,211,191,10,0,49,199,128,213,77,135,10,0,51,71,214,173,135,44,7,0,52,199,164,68,56,238,7,0,53,199,113,244,55,108,7,0,53,199,173,95,62,110,7,0,53,199,173,95,106,110,7,0,55,199,214,114,151,221,5,0,55,199,214,114,24,131,6,0,58,71,113,137,75,64,7,0,59,71,101,158,175,29,9,0,59,71,101,158,88,30,9,0,60,199,37,229,246,243,9,0,60,199,37,229,59,245,9,0,60,199,37,229,131,246,9,0,62,71,215,177,125,18,9,0,62,71,215,177,34,19,9,0,67,199,222,75,163,57,7,0,67,199,222,75,56,131,10,0,68,71,74,189,145,114,7,0,68,199,239,245,60,152,7,0,68,199,239,245,182,166,7,0,68,199,239,245,221,166,7,0,68,199,232,103,131,222,8,0,68,199,232,103,38,223,8,0,68,199,232,103,206,223,8,0,70,199,133,45,161,77,7,0,71,199,189,191,42,220,5,0,71,71,251,95,75,55,11,0,71,71,251,95,91,55,11,0,72,71,107,73,11,139,6,0,73,71,81,242,16,183,8,0,73,71,81,242,251,191,8,0,73,71,81,242,239,200,8,0,74,71,183,169,117,51,7,0,74,71,183,169,111,53,7,0,77,71,246,7,29,120,7,0,81,71,233,54,129,146,10,0,81,71,233,54,144,146,10,0,85,199,203,156,188,241,5,0,87,199,46,170,75,148,7,0,87,199,46,170,191,158,7,0,87,199,95,187,51,248,8,0,87,199,95,187,162,248,8,0,89,71,80,135,58,35,9,0,89,71,80,135,31,36,9,0,95,199,38,173,37,104,6,0,97,199,60,163,39,47,9,0,97,199,60,163,54,48,9,0,103,199,180,17,181,166,11,0,104,199,203,15,134,19,7,0,105,71,94,139,60,152,7,0,105,71,134,249,252,169,7,0,105,71,94,139,66,230,10,0,107,71,55,243,58,161,6,0,107,199,214,181,21,71,9,0,107,199,214,181,100,72,9,0,107,199,214,181,181,73,9,0,107,199,214,181,11,75,9,0,109,71,194,45,183,144,10,0,110,71,79,69,116,72,7,0,110,71,39,141,16,183,8,0,110,71,39,141,251,191,8,0,110,71,39,141,239,200,8,0,111,199,173,196,217,9,7,0,111,199,173,196,124,147,10,0,111,71,188,52,244,194,10,0,112,71,161,117,163,66,7,0,113,199,38,56,29,82,6,0,113,199,197,176,170,229,7,0,114,71,21,150,165,219,5,0,118,71,91,108,205,222,10,0,120,199,210,43,168,152,9,0,124,199,129,143,186,158,9,0,124,199,129,143,5,159,9,0,125,199,209,150,176,101,8,0,127,199,135,48,102,214,8,0,127,199,135,48,14,218,8,0,128,199,112,40,102,214,8,0,128,199,112,40,14,218,8,0,129,199,104,0,118,115,6,0,131,199,230,17,3,191,9,0,131,199,230,17,78,191,9,0,132,71,100,141,215,242,6,0,135,199,1,178,23,27,7,0,138,199,50,204,21,71,9,0,138,199,50,204,100,72,9,0,138,199,50,204,181,73,9,0,139,199,248,107,29,120,7,0,141,71,29,250,194,138,7,0,141,199,23,82,77,145,10,0,141,199,23,82,228,170,10,0,141,71,213,107,75,246,10,0,141,199,146,134,125,6,11,0,143,199,183,3,139,254,6,0,145,71,224,72,4,52,10,0,145,199,98,244,183,161,11,0,146,199,135,248,12,99,7,0,146,199,161,194,224,139,10,0,148,199,128,101,169,59,11,0,150,199,196,232,134,19,7,0,152,199,86,115,29,44,8,0,152,71,157,83,115,86,9,0,152,71,157,83,181,86,9,0,154,199,165,247,134,19,7,0,155,199,227,47,41,254,6,0,155,199,20,193,194,138,7,0,157,71,103,27,131,148,9,0,157,71,103,27,152,148,9,0,157,71,49,130,217,198,10,0,159,199,245,217,45,226,8,0,159,199,245,217,130,231,8,0,163,71,181,148,16,183,8,0,163,71,181,148,251,191,8,0,163,71,181,148,239,200,8,0,165,71,210,200,102,214,8,0,165,71,210,200,14,218,8,0,169,71,151,23,165,156,11,0,170,199,176,230,161,77,7,0,177,199,135,114,154,65,6,0,178,71,227,95,247,33,6,0,179,199,91,226,40,14,9,0,179,199,91,226,96,14,9,0,180,199,131,193,61,96,8,0,182,71,213,191,39,35,7,0,183,199,233,10,201,106,7,0,183,71,33,237,4,52,10,0,185,71,169,18,134,19,7,0,185,199,160,68,29,120,7,0,189,199,175,230,147,239,5,0,189,71,57,65,193,100,10,0,189,71,57,65,89,103,10,0,196,199,211,54,139,14,10,0,196,199,211,54,50,15,10,0,197,71,95,46,74,239,9,0,197,71,95,46,174,239,9,0,198,71,239,127,235,112,6,0,198,199,23,152,51,65,7,0,199,71,47,152,177,242,6,0,200,199,244,147,149,40,7,0,200,199,244,147,60,152,7,0,202,199,16,244,239,206,10,0,204,71,224,83,109,109,6,0,204,199,78,205,153,167,6,0,204,71,197,106,127,196,6,0,204,71,197,106,48,245,6,0,205,71,145,93,135,61,7,0,205,199,187,254,51,104,7,0,205,199,228,159,92,9,8,0,208,71,231,242,102,214,8,0,208,71,231,242,14,218,8,0,209,199,182,203,219,238,8,0,209,199,182,203,39,240,8,0,209,199,182,203,117,241,8,0,210,199,205,131,194,138,7,0,210,199,181,21,229,231,7,0,211,71,157,38,29,244,6,0,213,199,180,230,166,248,6,0,213,199,16,13,240,248,6,0,214,71,57,202,204,181,9,0,214,71,57,202,224,182,9,0,215,71,53,176,203,255,6,0,218,199,215,72,206,35,7,0,218,199,215,72,9,36,7,0,220,71,118,51,133,234,5,0,225,71,220,251,145,114,7,0,225,71,213,78,98,245,10,0,226,199,50,90,16,183,8,0,226,199,50,90,251,191,8,0,226,199,50,90,239,200,8,0,226,199,78,179,102,214,8,0,226,199,78,179,14,218,8,0,229,199,94,188,170,91,7,0,230,71,36,168,104,67,7,0,230,71,36,168,194,138,7,0,231,199,150,105,180,145,11,0,234,199,102,209,145,114,7,0,237,199,5,201,74,239,9,0,237,199,5,201,174,239,9,0,239,71,213,151,11,66,6,0,240,199,151,111,29,120,7,0,240,199,198,101,163,88,10,0,240,199,198,101,83,89,10,0,243,199,188,77,187,48,11,0,244,199,79,251,0,55,7,0,244,199,79,251,163,57,7,0,245,71,108,20,208,12,7,0,245,71,157,38,23,27,7,0,246,71,233,59,65,41,7,0,251,71,81,63,29,14,6,0,251,71,81,63,73,130,7,0,252,199,102,2,182,97,6,0,252,199,102,2,44,234,7,0,252,199,102,2,95,234,7,0,252,199,102,2,145,234,7,0,0,200,26,84,145,114,7,0,1,200,29,183,102,15,7,0,2,200,67,59,58,35,9,0,2,200,67,59,31,36,9,0,5,72,112,167,23,27,7,0,5,72,146,134,32,20,9,0,5,72,146,134,179,20,9,0,6,72,165,122,77,135,10,0,9,72,188,109,131,237,10,0,9,72,5,85,58,60,11,0,13,72,190,175,133,12,7,0,14,200,143,100,193,100,10,0,14,200,143,100,89,103,10,0,15,72,47,254,106,66,7,0,19,72,155,2,40,8,6,0,19,72,220,241,64,112,11,0,20,200,209,80,103,245,6,0,25,72,82,232,15,60,11,0,27,200,44,209,29,14,6,0,27,72,180,54,0,55,7,0,27,72,180,54,163,57,7,0,27,200,214,66,191,86,7,0,27,200,44,209,73,130,7,0,34,200,2,46,92,9,8,0,35,200,102,139,191,86,7,0,36,72,110,33,16,183,8,0,36,72,110,33,251,191,8,0,36,72,110,33,239,200,8,0,36,72,183,131,151,244,10,0,37,72,40,253,134,19,7,0,41,72,234,149,204,186,6,0,41,72,215,203,101,118,10,0,41,72,215,203,178,118,10,0,42,200,34,176,179,16,6,0,42,200,243,125,253,59,10,0,42,200,243,125,144,60,10,0,42,200,243,125,39,61,10,0,42,72,146,247,153,236,10,0,43,72,75,111,27,254,10,0,44,72,63,139,29,120,7,0,49,72,165,166,103,48,7,0,52,72,117,81,65,41,7,0,53,200,202,128,139,254,6,0,53,72,112,84,11,105,9,0,53,72,112,84,52,105,9,0,53,200,135,105,218,167,10,0,54,200,97,72,243,238,6,0,55,72,61,22,102,214,8,0,55,72,61,22,14,218,8,0,56,72,19,239,22,63,11,0,58,72,179,209,118,232,10,0,60,72,208,193,218,93,7,0,60,200,19,51,12,99,7,0,62,72,116,7,217,238,9,0,62,72,116,7,174,239,9,0,62,200,236,209,193,100,10,0,62,200,236,209,89,103,10,0,63,72,249,114,218,93,7,0,64,72,156,38,31,150,11,0,69,72,2,43,45,226,8,0,69,72,2,43,130,231,8,0,69,200,214,34,88,21,11,0,70,72,180,81,181,245,6,0,70,200,4,9,107,10,7,0,71,72,253,98,134,19,7,0,72,72,254,79,201,106,7,0,72,200,143,156,204,181,9,0,72,200,143,156,224,182,9,0,73,72,234,2,125,67,10,0,73,72,234,2,69,68,10,0,74,72,146,205,2,63,8,0,75,200,82,126,121,114,6,0,75,200,166,142,253,38,9,0,75,200,166,142,207,40,9,0,76,72,157,38,3,202,6,0,78,72,160,133,146,89,6,0,83,72,140,200,23,27,7,0,87,200,35,86,117,51,7,0,87,200,35,86,239,253,8,0,87,200,114,47,73,123,11,0,88,72,9,146,86,140,6,0,88,72,62,5,23,27,7,0,90,200,112,8,194,138,7,0,92,72,14,12,16,183,8,0,92,72,14,12,251,191,8,0,92,72,14,12,239,200,8,0,92,72,226,200,191,196,10,0,93,200,89,220,100,92,7,0,94,200,150,58,253,38,9,0,94,200,150,58,207,40,9,0,95,200,99,35,23,27,7,0,95,200,98,244,6,66,8,0,95,200,98,244,110,167,11,0,101,72,214,148,163,187,6,0,104,200,80,143,90,214,5,0,105,200,71,159,66,3,7,0,106,72,70,211,164,66,6,0,113,72,137,251,75,112,7,0,115,200,175,75,51,104,7,0,117,200,250,237,120,158,6,0,117,72,203,138,189,183,7,0,125,200,234,33,73,38,7,0,125,200,119,226,51,104,7,0,125,200,223,110,173,121,11,0,126,72,153,70,176,68,7,0,126,200,163,111,244,23,11,0,127,200,122,218,79,148,10,0,127,72,35,183,160,67,11,0,132,72,215,203,125,67,10,0,132,72,215,203,69,68,10,0,133,200,146,14,25,11,8,0,134,200,97,174,92,9,8,0,136,200,66,202,122,246,6,0,136,72,206,38,134,19,7,0,136,72,228,11,58,75,7,0,138,200,202,227,12,99,7,0,150,200,240,237,134,19,7,0,154,72,218,80,135,61,7,0,155,72,34,62,102,214,8,0,155,72,34,62,14,218,8,0,156,72,66,245,82,51,7,0,157,72,14,182,168,152,9,0,157,200,188,202,161,28,11,0,158,200,26,20,0,55,7,0,158,200,113,18,151,15,11,0,159,200,124,147,29,120,7,0,159,72,229,167,115,161,9,0,159,72,229,167,104,162,9,0,160,72,235,65,28,146,6,0,160,200,46,24,23,27,7,0,160,200,113,218,113,35,7,0,161,200,49,34,122,87,9,0,161,200,49,34,212,87,9,0,161,200,49,34,40,88,9,0,165,72,241,78,188,71,7,0,167,72,249,96,139,29,6,0,168,200,46,0,83,126,8,0,168,200,46,0,214,127,8,0,168,200,46,0,65,128,8,0,171,72,142,7,134,19,7,0,172,200,107,136,224,58,11,0,172,200,107,136,19,59,11,0,174,72,139,27,194,241,6,0,175,72,108,77,194,138,7,0,175,72,217,232,55,95,10,0,175,72,217,232,143,95,10,0,177,72,40,144,66,3,7,0,177,200,120,60,100,92,7,0,177,72,189,111,249,210,10,0,178,200,254,211,212,178,7,0,179,200,13,107,29,120,7,0,179,200,154,199,16,183,8,0,179,200,154,199,251,191,8,0,179,200,154,199,239,200,8,0,181,72,132,248,134,19,7,0,182,72,170,78,168,104,8,0,182,72,170,78,45,105,8,0,182,72,170,78,167,105,8,0,182,72,87,227,45,226,8,0,182,72,87,227,130,231,8,0,184,200,224,142,17,139,11,0,186,72,76,114,51,104,7,0,186,72,219,1,1,127,11,0,189,200,32,199,200,178,6,0,189,200,208,221,4,44,7,0,193,72,180,222,165,254,5,0,194,200,170,191,26,10,6,0,195,200,106,90,143,240,6,0,195,72,224,36,201,26,10,0,195,72,224,36,253,26,10,0,196,200,167,127,195,163,10,0,196,72,253,145,235,69,11,0,197,72,173,214,108,152,10,0,203,200,169,33,132,21,9,0,203,200,169,33,157,23,9,0,205,72,230,63,63,143,6,0,205,200,187,161,134,19,7,0,205,72,48,30,165,137,8,0,210,72,216,42,101,205,10,0,215,200,56,188,145,12,8,0,215,200,49,149,39,47,9,0,215,200,49,149,54,48,9,0,216,200,89,91,102,214,8,0,216,200,89,91,14,218,8,0,218,72,70,225,177,242,6,0,223,72,88,80,4,52,10,0,224,200,14,23,134,19,7,0,229,72,7,84,12,214,6,0,234,72,43,62,23,27,7,0,235,72,128,182,12,99,7,0,235,200,84,249,145,114,7,0,236,200,225,9,191,86,7,0,239,72,120,15,124,87,8,0,240,72,3,126,134,19,7,0,240,72,119,188,15,220,10,0,242,72,171,236,213,188,7,0,242,72,132,112,163,202,7,0,244,200,126,112,38,65,6,0,244,72,202,244,65,41,7,0,245,72,55,127,169,181,7,0,245,200,61,198,186,53,9,0,245,200,61,198,77,54,9,0,248,72,196,178,213,15,9,0,251,200,176,3,145,12,8,0,252,72,172,28,29,120,7,0,255,200,232,234,94,2,6,0,0,73,106,114,212,132,7,0,5,201,82,230,194,138,7,0,5,73,119,114,76,43,9,0,5,73,119,114,114,43,9,0,6,73,94,132,96,18,7,0,6,73,254,69,72,102,9,0,6,73,254,69,254,102,9,0,6,201,226,220,167,242,9,0,6,201,169,55,39,11,11,0,12,73,31,203,120,158,6,0,13,201,124,32,198,146,9,0,13,201,124,32,20,147,9,0,14,201,249,51,107,98,11,0,15,201,89,166,26,254,7,0,19,201,127,171,192,4,6,0,19,201,40,71,16,183,8,0,19,201,40,71,251,191,8,0,19,201,40,71,239,200,8,0,20,73,5,77,47,98,9,0,21,201,44,114,53,67,11,0,22,201,209,186,45,33,9,0,22,201,209,186,120,33,9,0,24,201,20,12,55,108,7,0,28,73,218,29,38,65,6,0,31,73,181,230,12,99,7,0,32,73,196,81,102,214,8,0,32,73,196,81,14,218,8,0,33,73,42,142,23,27,7,0,34,201,223,67,83,253,10,0,36,73,157,38,133,12,7,0,36,73,172,242,218,134,10,0,36,73,157,38,99,214,10,0,37,73,217,147,224,102,6,0,38,73,18,48,134,19,7,0,42,73,156,38,19,113,7,0,42,73,156,38,104,113,7,0,43,73,52,78,96,8,7,0,43,201,35,237,218,93,7,0,43,73,60,211,132,21,9,0,43,73,60,211,157,23,9,0,43,201,19,241,126,208,9,0,43,201,19,241,150,208,9,0,44,73,213,1,87,236,5,0,44,201,189,210,214,42,9,0,44,201,189,210,249,42,9,0,44,73,213,151,207,64,11,0,44,73,213,151,11,65,11,0,45,73,75,233,139,16,6,0,45,201,165,96,161,110,10,0,45,201,165,96,2,112,10,0,46,201,134,54,12,99,7,0,46,73,166,109,12,99,7,0,47,201,236,107,29,14,6,0,47,201,236,107,73,130,7,0,54,201,30,46,54,199,6,0,57,73,154,60,102,15,7,0,58,201,240,149,246,62,7,0,59,73,28,213,167,242,9,0,60,73,6,159,4,52,10,0,63,201,204,179,23,27,7,0,63,73,226,25,51,104,7,0,64,73,72,6,20,8,9,0,64,73,72,6,247,8,9,0,64,73,72,6,210,9,9,0,70,73,26,19,217,247,5,0,77,201,52,185,23,27,7,0,78,73,123,188,117,51,7,0,78,73,123,188,111,53,7,0,79,201,204,76,227,135,7,0,82,201,13,122,243,194,6,0,83,201,173,4,16,183,8,0,83,201,173,4,251,191,8,0,83,201,173,4,239,200,8,0,85,201,236,71,39,47,9,0,85,201,236,71,54,48,9,0,86,73,124,204,4,52,10,0,87,73,56,123,58,212,8,0,87,73,56,123,201,212,8,0,88,73,194,23,145,114,7,0,89,201,198,33,18,217,5,0,89,201,136,94,95,51,6,0,89,201,198,33,173,44,11,0,89,201,198,33,109,45,11,0,90,201,150,228,56,170,11,0,92,73,34,83,83,126,8,0,92,73,34,83,65,128,8,0,92,73,34,83,4,129,8,0,95,201,176,131,21,71,9,0,95,201,176,131,100,72,9,0,95,201,176,131,181,73,9,0,95,201,176,131,11,75,9,0,96,73,85,210,131,82,6,0,98,73,175,37,175,87,8,0,99,73,252,99,16,183,8,0,99,73,252,99,251,191,8,0,99,73,252,99,239,200,8,0,101,201,178,92,102,214,8,0,101,201,178,92,14,218,8,0,103,73,89,149,134,107,10,0,103,73,89,149,210,107,10,0,104,201,156,238,76,209,5,0,104,201,255,67,253,38,9,0,104,201,255,67,207,40,9,0,104,73,243,23,39,47,9,0,104,73,243,23,54,48,9,0,108,201,25,220,29,120,7,0,108,73,138,63,58,35,9,0,108,73,138,63,31,36,9,0,115,201,22,106,194,138,7,0,118,201,243,54,134,19,7,0,118,201,221,104,29,120,7,0,119,201,86,71,176,68,7,0,119,201,237,130,114,114,11,0,123,201,38,73,135,61,7,0,123,201,3,241,16,183,8,0,123,201,3,241,251,191,8,0,123,201,3,241,239,200,8,0,124,73,182,161,194,138,7,0,125,73,56,45,8,123,6,0,125,73,246,5,23,27,7,0,127,201,188,91,65,80,6,0,128,73,58,134,193,78,10,0,128,73,58,134,218,78,10,0,129,73,203,253,164,16,9,0,129,73,203,253,141,17,9,0,131,73,125,254,75,245,5,0,131,73,171,55,28,12,6,0,131,73,125,254,29,120,7,0,133,73,102,153,102,214,8,0,133,73,102,153,14,218,8,0,136,201,74,64,218,93,7,0,138,201,97,146,194,138,7,0,141,73,200,44,238,239,6,0,141,73,12,18,129,248,6,0,142,73,69,20,100,119,6,0,143,201,38,128,145,114,7,0,144,201,132,222,40,116,8,0,144,201,132,222,125,144,8,0,146,201,151,58,11,166,10,0,148,201,251,209,179,172,10,0,150,73,31,248,161,77,7,0,153,73,107,181,97,103,7,0,155,73,131,80,253,49,7,0,155,73,187,85,194,228,7,0,158,201,90,138,90,106,6,0,158,201,90,138,124,106,6,0,161,201,199,70,226,245,5,0,162,73,40,208,16,183,8,0,162,73,40,208,251,191,8,0,162,73,40,208,239,200,8,0,163,73,137,190,175,7,7,0,163,201,60,68,16,183,8,0,163,201,60,68,251,191,8,0,163,201,60,68,239,200,8,0,165,201,163,217,135,149,7,0,165,73,44,195,19,59,11,0,166,73,8,250,129,95,6,0,166,201,137,61,30,0,7,0,167,201,195,47,108,207,10,0,168,201,242,252,16,183,8,0,168,201,242,252,251,191,8,0,168,201,242,252,239,200,8,0,168,73,109,5,51,248,8,0,168,73,109,5,162,248,8,0,169,201,63,182,45,226,8,0,169,201,63,182,130,231,8,0,172,201,58,243,16,37,7,0,174,201,188,11,102,214,8,0,174,201,188,11,14,218,8,0,174,73,213,87,204,181,9,0,174,73,213,87,224,182,9,0,177,201,38,91,194,138,7,0,180,201,1,22,8,112,7,0,181,73,119,200,215,165,9,0,181,73,119,200,244,165,9,0,182,73,248,96,135,44,7,0,184,73,74,35,16,183,8,0,184,73,171,126,16,183,8,0,184,73,74,35,251,191,8,0,184,73,171,126,251,191,8,0,184,73,74,35,239,200,8,0,184,73,171,126,239,200,8,0,186,73,112,158,96,114,7,0,187,201,195,140,188,110,11,0,190,201,76,247,177,247,5,0,190,201,76,247,168,136,6,0,190,201,76,247,23,253,6,0,191,73,122,86,175,29,9,0,191,73,122,86,88,30,9,0,191,73,223,6,150,2,10,0,191,73,223,6,169,2,10,0,191,73,223,6,193,2,10,0,193,73,137,88,209,84,7,0,195,73,109,8,229,251,7,0,195,73,148,243,168,84,10,0,195,73,148,243,226,84,10,0,196,73,12,90,45,226,8,0,196,73,12,90,130,231,8,0,196,201,59,78,4,52,10,0,196,201,112,234,4,52,10,0,197,73,18,2,16,183,8,0,197,73,18,2,251,191,8,0,197,73,18,2,239,200,8,0,199,201,71,207,168,152,9,0,199,73,231,235,231,37,10,0,199,73,231,235,12,38,10,0,202,73,116,78,16,183,8,0,202,73,116,78,251,191,8,0,202,73,116,78,239,200,8,0,202,201,183,148,102,214,8,0,202,201,183,148,14,218,8,0,204,201,25,179,89,5,7,0,204,201,201,148,205,87,7,0,205,73,71,92,104,67,7,0,207,73,213,158,143,167,10,0,208,201,201,148,4,44,7,0,210,201,160,161,209,207,10,0,212,201,183,148,102,214,8,0,212,201,183,148,14,218,8,0,213,201,185,144,192,2,7,0,214,201,72,23,98,158,6,0,220,73,233,67,86,56,9,0,220,73,233,67,9,57,9,0,222,201,153,65,222,14,7,0,223,201,120,168,187,0,7,0,224,201,67,60,212,241,5,0,224,201,243,91,187,124,11,0,228,73,196,126,96,221,6,0,228,201,247,231,119,96,7,0,232,201,215,14,130,83,7,0,232,201,215,14,177,105,7,0,234,73,251,0,108,90,6,0,234,201,75,46,0,117,8,0,234,201,96,205,16,183,8,0,234,201,96,205,251,191,8,0,234,201,96,205,239,200,8,0,234,73,160,8,117,176,10,0,234,201,75,46,53,151,11,0,236,73,223,47,141,180,11,0,239,201,250,126,133,255,5,0,240,73,237,242,29,120,7,0,242,201,154,184,58,196,9,0,242,201,154,184,88,196,9,0,242,73,66,163,201,8,10,0,242,201,58,244,70,128,10,0,243,73,175,182,23,27,7,0,246,201,161,255,138,157,6,0,246,201,161,255,64,67,7,0,248,73,197,5,16,183,8,0,248,73,197,5,251,191,8,0,248,73,197,5,239,200,8,0,249,73,64,150,39,35,7,0,249,201,10,1,171,69,8,0,251,73,43,216,34,52,11,0,253,201,15,173,102,214,8,0,253,201,15,173,14,218,8,0,253,73,49,174,191,20,11,0,254,201,173,248,170,91,7,0,1,74,205,130,66,3,7,0,1,74,231,227,65,41,7,0,5,202,76,177,190,238,10,0,6,202,241,37,23,27,7,0,6,202,122,188,246,243,9,0,6,202,122,188,59,245,9,0,6,202,122,188,131,246,9,0,7,74,247,161,12,99,7,0,10,74,169,44,59,187,9,0,10,74,169,44,91,187,9,0,12,74,118,51,218,93,7,0,14,202,137,42,145,114,7,0,16,74,60,175,168,135,7,0,20,202,109,189,214,238,10,0,24,202,157,159,160,79,8,0,24,202,141,238,194,185,9,0,24,202,141,238,96,186,9,0,26,202,247,216,29,120,7,0,28,202,67,162,120,158,6,0,28,202,198,103,12,99,7,0,29,74,210,11,156,58,11,0,30,202,17,254,233,83,7,0,31,202,199,243,218,93,7,0,31,74,140,231,139,14,10,0,31,74,140,231,50,15,10,0,33,74,25,3,4,52,10,0,34,74,226,124,71,227,10,0,34,74,226,124,92,227,10,0,36,202,228,143,42,68,9,0,36,202,228,143,103,68,9,0,39,74,192,229,103,48,7,0,40,202,204,220,119,96,7,0,40,74,106,137,153,113,10,0,40,74,106,137,27,114,10,0,40,74,181,57,71,183,10,0,43,74,54,151,185,189,6,0,43,74,113,170,145,12,8,0,44,74,106,226,145,114,7,0,45,202,2,183,217,103,7,0,45,74,196,209,204,16,8,0,45,202,195,148,186,26,9,0,45,202,195,148,120,27,9,0,45,202,195,148,48,28,9,0,49,202,106,120,189,109,7,0,49,74,186,180,145,12,8,0,53,202,134,147,16,183,8,0,53,202,134,147,251,191,8,0,53,202,134,147,239,200,8,0,55,74,145,199,159,32,10,0,55,74,145,199,240,32,10,0,56,74,126,146,125,250,7,0,56,74,222,55,16,183,8,0,56,74,222,55,251,191,8,0,56,74,222,55,239,200,8,0,56,202,76,248,143,167,10,0,57,202,120,66,159,48,6,0,57,74,49,142,176,88,6,0,57,74,152,111,135,61,7,0,57,74,49,142,90,61,8,0,62,202,167,39,90,14,7,0,62,74,115,175,241,190,7,0,65,74,71,190,134,19,7,0,67,74,246,184,172,190,6,0,71,74,94,206,135,61,7,0,76,202,68,247,73,38,7,0,76,202,101,244,163,57,7,0,76,202,101,244,37,134,10,0,77,202,41,80,250,210,6,0,77,202,41,80,253,49,7,0,78,74,89,165,96,1,7,0,78,74,137,228,93,46,7,0,78,202,165,116,218,93,7,0,78,74,137,228,111,4,9,0,78,74,137,228,41,6,9,0,79,202,147,190,73,38,7,0,79,202,147,190,1,79,8,0,80,74,98,192,194,138,7,0,83,202,140,184,125,134,7,0,83,202,191,113,213,188,7,0,86,74,110,140,134,19,7,0,86,202,127,145,45,226,8,0,86,202,127,145,130,231,8,0,87,202,242,137,149,56,6,0,87,74,109,174,209,18,7,0,87,74,253,75,0,55,7,0,87,202,242,137,156,34,8,0,87,74,253,75,74,239,9,0,87,74,253,75,174,239,9,0,88,202,102,118,196,178,11,0,94,74,253,166,187,21,11,0,96,74,89,220,59,72,7,0,99,74,86,150,194,138,7,0,99,74,229,200,219,101,8,0,105,202,217,141,117,251,6,0,107,74,94,245,197,162,11,0,108,74,1,101,23,27,7,0,108,202,228,120,49,116,11,0,109,74,177,100,5,210,10,0,113,202,127,63,111,4,9,0,113,202,127,63,41,6,9,0,113,74,242,122,213,162,10,0,116,74,157,37,115,161,9,0,116,74,157,37,104,162,9,0,117,74,5,122,186,158,9,0,117,74,5,122,5,159,9,0,120,74,205,79,212,170,11,0,121,202,0,105,107,10,7,0,121,74,208,236,253,38,9,0,121,74,208,236,207,40,9,0,122,202,166,136,50,12,6,0,122,202,30,148,137,147,9,0,122,202,30,148,174,147,9,0,122,202,30,148,206,147,9,0,122,74,176,11,193,100,10,0,122,74,176,11,89,103,10,0,123,202,24,91,38,248,5,0,123,202,24,91,133,6,6,0,123,74,191,220,49,240,10,0,126,74,215,203,12,99,7,0,126,74,240,108,39,47,9,0,126,74,240,108,54,48,9,0,127,202,133,26,207,14,9,0,127,202,133,26,54,15,9,0,127,74,78,205,101,118,10,0,127,74,78,205,178,118,10,0,129,202,33,239,155,98,11,0,130,74,156,252,43,72,10,0,130,74,156,252,148,72,10,0,131,202,131,85,118,9,6,0,131,202,215,197,117,51,7,0,131,202,215,197,111,53,7,0,131,202,215,197,255,151,7,0,133,74,210,242,78,9,7,0,135,202,46,107,194,138,7,0,140,74,151,81,158,6,7,0,141,202,215,229,16,183,8,0,141,202,215,229,251,191,8,0,141,202,215,229,239,200,8,0,141,202,215,229,22,46,10,0,141,202,215,229,98,46,10,0,146,202,202,76,144,70,7,0,146,202,202,76,176,70,7,0,146,202,141,245,16,183,8,0,146,202,141,245,251,191,8,0,146,202,141,245,239,200,8,0,147,74,201,167,65,76,7,0,150,202,191,161,145,114,7,0,152,202,52,129,32,128,6,0,152,202,108,247,119,96,7,0,154,74,42,5,253,59,10,0,154,74,42,5,144,60,10,0,154,74,42,5,39,61,10,0,156,202,147,87,8,36,11,0,157,74,46,51,43,171,11,0,161,202,185,131,205,87,7,0,164,202,7,252,97,16,7,0,164,74,37,2,16,183,8,0,164,74,37,2,251,191,8,0,164,74,37,2,239,200,8,0,167,74,187,251,23,27,7,0,169,202,89,27,116,72,7,0,171,202,36,87,160,79,8,0,172,74,16,193,55,108,7,0,172,74,191,70,21,71,9,0,172,74,191,70,100,72,9,0,172,74,191,70,181,73,9,0,172,74,191,70,11,75,9,0,174,74,215,21,21,71,9,0,174,74,215,21,100,72,9,0,174,74,215,21,181,73,9,0,174,74,215,21,11,75,9,0,175,202,132,214,115,161,9,0,175,202,132,214,104,162,9,0,175,74,242,96,234,42,10,0,175,74,242,96,253,42,10,0,175,74,242,96,14,43,10,0,175,74,242,96,111,198,10,0,176,202,244,46,135,149,7,0,177,202,144,243,134,19,7,0,179,202,70,132,16,183,8,0,179,202,70,132,251,191,8,0,179,202,70,132,239,200,8,0,180,74,215,96,225,206,7,0,180,74,215,96,7,207,7,0,181,74,139,238,71,216,10,0,184,202,0,34,4,52,10,0,185,202,72,195,130,47,7,0,185,202,170,246,135,61,7,0,186,202,243,8,45,226,8,0,186,202,243,8,130,231,8,0,187,202,67,103,204,181,9,0,187,202,67,103,224,182,9,0,187,74,215,203,43,254,10,0,190,202,78,57,90,229,6,0,193,74,225,182,145,114,7,0,194,74,238,244,41,254,6,0,197,202,252,123,42,181,8,0,199,74,196,85,45,226,8,0,199,74,196,85,130,231,8,0,200,202,107,193,123,147,6,0,200,74,185,207,64,70,7,0,206,74,167,189,16,37,7,0,207,202,39,192,32,20,9,0,207,202,39,192,179,20,9,0,210,202,143,22,187,124,11,0,211,74,109,212,223,37,11,0,214,202,248,200,29,64,7,0,214,74,121,220,98,59,11,0,216,74,160,145,192,103,11,0,218,202,37,159,76,48,11,0,219,74,209,193,193,100,10,0,219,74,209,193,89,103,10,0,220,202,2,126,16,183,8,0,220,202,2,126,251,191,8,0,220,202,2,126,239,200,8,0,221,74,224,151,16,183,8,0,221,74,224,151,251,191,8,0,221,74,224,151,239,200,8,0,222,202,188,50,107,10,7,0,224,74,246,196,209,18,7,0,224,202,172,126,19,90,7,0,230,74,175,182,163,215,10,0,232,74,239,20,23,27,7,0,238,202,105,230,62,26,9,0,238,202,105,230,116,26,9,0,238,202,231,236,167,242,9,0,241,202,180,116,193,100,10,0,241,202,180,116,89,103,10,0,241,74,47,86,188,151,10,0,241,74,47,86,104,161,10,0,242,202,23,225,116,72,7,0,242,202,75,142,209,130,10,0,242,202,75,142,236,130,10,0,243,202,187,73,29,120,7,0,244,74,78,233,105,129,9,0,244,74,78,233,180,129,9,0,246,74,218,39,215,242,6,0,249,202,88,40,255,110,7,0,249,202,144,201,107,226,9,0,249,202,144,201,251,226,9,0,250,74,45,12,145,114,7,0,252,74,110,137,125,67,10,0,252,74,110,137,69,68,10,0,253,202,127,6,72,102,9,0,253,202,127,6,254,102,9,0,254,74,102,124,104,67,7,0,254,74,67,57,168,152,9,0,255,74,246,224,106,181,11,0,1,75,181,252,66,3,7,0,1,203,93,223,249,71,7,0,1,75,81,242,177,105,7,0,5,203,193,205,15,92,9,0,5,203,193,205,90,92,9,0,5,203,193,205,162,92,9,0,5,203,33,109,4,52,10,0,6,75,146,169,21,71,9,0,6,75,146,169,100,72,9,0,6,75,146,169,181,73,9,0,6,75,146,169,11,75,9,0,7,75,89,47,96,221,6,0,7,75,161,153,241,76,7,0,7,203,229,212,122,87,9,0,7,203,229,212,212,87,9,0,7,203,229,212,40,88,9,0,7,75,89,47,0,132,9,0,10,203,229,32,29,120,7,0,12,203,146,116,150,45,9,0,12,203,146,116,18,46,9,0,12,203,90,9,246,243,9,0,12,203,90,9,59,245,9,0,12,203,90,9,131,246,9,0,13,75,154,131,197,212,5,0,14,75,197,40,86,148,6,0,15,75,133,223,175,18,8,0,15,75,175,79,167,242,9,0,17,203,246,224,253,38,9,0,17,203,246,224,207,40,9,0,17,203,116,141,155,70,10,0,17,203,116,141,176,70,10,0,18,75,232,131,23,27,7,0,18,75,162,251,135,61,7,0,19,75,193,121,219,230,5,0,19,75,193,121,23,253,6,0,19,75,193,121,40,243,10,0,22,75,47,232,182,175,11,0,24,203,201,157,253,49,7,0,25,75,88,34,158,251,5,0,25,75,147,81,105,172,6,0,26,75,135,123,16,183,8,0,26,75,135,123,251,191,8,0,26,75,135,123,239,200,8,0,27,203,172,234,117,51,7,0,27,203,172,234,111,53,7,0,27,203,117,226,145,114,7,0,29,75,191,215,204,116,11,0,30,75,94,125,55,210,5,0,34,75,19,139,92,255,5,0,34,75,19,139,189,237,6,0,34,75,175,230,189,246,6,0,37,203,163,30,158,112,6,0,40,75,175,53,99,41,6,0,42,75,192,183,16,183,8,0,42,75,192,183,251,191,8,0,42,75,192,183,239,200,8,0,43,203,158,61,23,27,7,0,45,75,149,98,75,58,9,0,45,75,149,98,123,58,9,0,45,75,57,162,240,195,10,0,48,75,88,189,87,4,11,0,49,75,128,111,246,62,7,0,49,203,202,127,62,223,9,0,49,203,202,127,64,224,9,0,49,203,202,127,93,225,9,0,52,75,160,2,191,177,11,0,54,203,121,100,186,53,9,0,54,203,121,100,77,54,9,0,58,75,220,114,197,167,8,0,58,75,220,114,85,95,11,0,58,75,220,114,39,97,11,0,59,75,186,106,231,113,8,0,62,75,66,177,227,246,6,0,65,75,175,182,119,96,7,0,67,75,146,160,188,213,9,0,67,75,146,160,58,214,9,0,67,75,146,160,197,214,9,0,67,75,135,150,8,229,10,0,68,203,94,24,247,177,6,0,68,203,94,24,13,178,6,0,68,75,157,86,25,84,7,0,68,75,157,86,114,84,7,0,70,203,64,163,143,249,7,0,70,203,64,163,213,249,7,0,70,203,64,163,23,250,7,0,78,75,103,188,29,64,7,0,80,75,159,251,134,19,7,0,80,75,68,203,116,72,7,0,81,203,63,192,134,19,7,0,81,75,218,198,118,151,7,0,81,75,218,198,85,159,7,0,83,75,33,101,135,61,7,0,84,75,254,238,194,138,7,0,85,75,1,57,20,239,5,0,86,75,225,217,201,8,10,0,86,75,72,69,116,4,11,0,86,203,15,141,247,88,11,0,86,203,15,141,98,92,11,0,87,75,136,70,16,183,8,0,87,75,136,70,251,191,8,0,87,75,136,70,239,200,8,0,88,203,39,245,28,44,6,0,88,203,232,64,16,183,8,0,88,203,232,64,251,191,8,0,88,203,232,64,239,200,8,0,89,203,133,146,15,220,10,0,90,75,118,36,136,220,6,0,90,75,205,128,250,17,11,0,100,75,89,59,209,84,7,0,100,75,61,43,153,199,10,0,101,75,95,86,252,147,7,0,101,75,95,86,85,162,7,0,104,75,99,32,181,98,11,0,106,75,9,207,219,0,7,0,106,75,79,79,55,108,7,0,106,75,8,7,102,214,8,0,106,75,8,7,14,218,8,0,107,203,107,14,46,4,6,0,107,203,54,146,125,18,9,0,107,203,54,146,34,19,9,0,109,75,177,105,57,108,8,0,109,75,177,105,130,108,8,0,109,75,177,105,203,108,8,0,109,75,177,105,21,109,8,0,109,75,177,105,95,109,8,0,109,75,177,105,166,109,8,0,109,75,177,105,236,109,8,0,110,203,53,51,23,27,7,0,113,75,180,64,60,152,7,0,114,75,53,201,134,107,10,0,114,75,53,201,210,107,10,0,116,203,248,127,52,221,5,0,116,75,145,178,125,67,10,0,116,75,145,178,69,68,10,0,117,203,103,176,160,4,6,0,119,75,133,138,52,157,8,0,120,203,172,107,141,232,6,0,121,75,65,68,30,0,7,0,121,75,194,132,130,47,7,0,122,203,195,149,221,160,10,0,123,75,81,23,152,6,11,0,126,75,104,31,96,221,6,0,126,75,104,31,0,132,9,0,127,203,240,208,135,2,9,0,127,203,240,208,47,3,9,0,128,203,113,167,23,27,7,0,130,75,0,81,99,23,6,0,131,203,119,225,34,122,6,0,131,203,63,112,16,183,8,0,131,203,63,112,251,191,8,0,131,203,63,112,239,200,8,0,132,75,182,35,107,120,6,0,132,75,119,150,194,138,7,0,135,203,57,161,72,236,6,0,145,75,111,251,16,37,7,0,145,75,231,185,175,29,9,0,145,75,231,185,88,30,9,0,149,203,120,216,6,249,9,0,149,203,120,216,105,249,9,0,149,203,120,216,201,249,9,0,154,203,64,200,85,29,10,0,157,75,162,74,109,210,7,0,157,75,162,74,170,210,7,0,157,75,162,74,234,210,7,0,157,75,96,81,131,222,8,0,157,75,96,81,38,223,8,0,157,75,96,81,206,223,8,0,157,75,57,75,213,15,9,0,159,203,148,33,184,11,6,0,161,203,195,111,60,152,7,0,161,203,195,111,226,164,7,0,164,75,153,134,16,183,8,0,164,75,153,134,251,191,8,0,164,75,153,134,239,200,8,0,170,203,209,180,93,46,7,0,174,203,8,84,0,55,7,0,174,203,8,84,177,105,7,0,175,203,139,241,161,77,7,0,176,75,96,204,18,210,8,0,176,75,96,204,113,210,8,0,176,75,96,204,217,210,8,0,178,203,15,170,184,234,5,0,178,203,202,247,194,138,7,0,180,75,109,123,23,88,6,0,180,75,222,228,176,141,6,0,180,203,254,252,77,152,10,0,182,203,25,61,69,188,6,0,182,203,204,217,93,46,7,0,183,75,91,184,99,36,7,0,184,203,244,238,23,27,7,0,186,75,131,181,45,226,8,0,186,75,131,181,130,231,8,0,187,203,212,147,163,57,7,0,189,203,23,6,6,249,9,0,189,203,23,6,105,249,9,0,189,203,23,6,201,249,9,0,193,75,174,52,113,98,6,0,193,75,174,52,22,91,7,0,194,203,36,189,219,210,6,0,196,75,26,170,18,217,5,0,196,75,26,170,93,45,11,0,196,75,26,170,147,45,11,0,197,75,135,227,139,254,6,0,198,75,8,65,134,19,7,0,200,203,96,213,121,164,6,0,200,75,178,255,213,84,8,0,200,203,91,121,21,71,9,0,200,203,91,121,100,72,9,0,200,203,91,121,181,73,9,0,200,203,91,121,11,75,9,0,202,75,140,182,58,212,8,0,202,75,140,182,201,212,8,0,203,75,99,241,201,182,7,0,203,75,111,181,2,175,11,0,208,203,130,145,77,11,7,0,212,75,142,32,22,77,7,0,213,203,64,34,235,235,9,0,213,203,64,34,13,236,9,0,215,203,136,52,175,7,7,0,215,203,192,148,117,172,7,0,216,75,199,36,179,85,6,0,216,75,179,148,151,88,6,0,218,75,100,20,173,165,6,0,219,203,81,169,176,68,7,0,219,75,169,65,168,152,9,0,219,75,233,22,4,52,10,0,220,203,208,211,193,100,10,0,220,203,208,211,89,103,10,0,221,203,187,68,218,93,7,0,221,75,168,226,178,187,10,0,226,75,116,155,16,183,8,0,226,75,116,155,251,191,8,0,226,75,116,155,239,200,8,0,228,75,122,90,145,114,7,0,228,203,226,91,102,214,8,0,228,203,226,91,14,218,8,0,228,75,48,213,165,224,8,0,228,75,48,213,86,225,8,0,230,75,252,212,194,138,7,0,233,75,84,26,141,252,6,0,233,203,224,59,16,183,8,0,233,203,224,59,251,191,8,0,233,203,224,59,239,200,8,0,242,203,201,93,213,15,9,0,243,75,109,233,43,162,8,0,244,75,186,26,204,40,6,0,244,75,186,26,39,131,6,0,245,75,174,162,205,87,7,0,245,203,17,146,150,45,9,0,245,203,17,146,18,46,9,0,247,203,144,37,184,92,6,0,247,75,54,114,16,183,8,0,247,75,54,114,251,191,8,0,247,75,54,114,239,200,8,0,249,75,134,92,167,242,9,0,251,75,11,211,4,52,10,0,254,203,40,61,218,2,6,0,254,203,135,87,134,19,7,0,254,203,135,87,161,77,7,0,1,204,151,136,253,38,9,0,1,204,151,136,207,40,9,0,2,204,163,38,248,192,10,0,3,204,141,129,135,61,7,0,3,204,36,179,111,4,9,0,3,204,36,179,41,6,9,0,5,204,166,219,156,253,6,0,5,204,136,38,241,77,8,0,9,76,70,144,16,183,8,0,9,76,70,144,251,191,8,0,9,76,70,144,239,200,8,0,10,76,224,127,0,131,6,0,10,204,1,230,139,254,6,0,10,204,42,34,145,114,7,0,12,204,122,4,253,197,10,0,13,204,69,127,119,96,7,0,14,76,157,38,18,210,7,0,14,76,69,165,16,183,8,0,14,76,69,165,251,191,8,0,14,76,69,165,239,200,8,0,15,204,197,141,46,229,6,0,16,204,54,214,142,92,6,0,17,76,111,186,63,70,10,0,17,76,111,186,86,70,10,0,23,76,246,231,75,218,10,0,24,76,86,162,117,51,7,0,24,76,86,162,111,53,7,0,25,76,171,236,111,97,11,0,26,76,164,52,139,163,9,0,26,76,164,52,241,163,9,0,32,76,39,197,45,226,8,0,32,76,39,197,130,231,8,0,34,204,215,14,191,86,7,0,35,76,228,19,107,10,7,0,36,76,164,103,102,214,8,0,36,76,164,103,14,218,8,0,38,204,92,123,45,226,8,0,38,204,92,123,130,231,8,0,40,204,169,32,58,35,9,0,40,204,169,32,31,36,9,0,42,204,56,31,33,190,7,0,43,204,81,103,238,35,10,0,43,204,81,103,35,36,10,0,43,204,194,175,110,122,11,0,44,204,235,150,253,49,7,0,50,204,59,179,193,118,6,0,52,76,189,123,218,93,7,0,54,76,63,246,53,155,6,0,54,204,32,116,209,84,7,0,54,204,48,12,205,87,7,0,54,204,32,116,74,239,9,0,54,204,32,116,174,239,9,0,55,204,82,232,160,79,8,0,56,76,157,38,214,64,6,0,56,76,157,38,40,118,6,0,56,76,157,38,91,198,6,0,60,76,112,167,64,124,11,0,61,204,51,175,122,87,9,0,61,204,51,175,212,87,9,0,61,204,51,175,40,88,9,0,61,204,139,93,236,21,11,0,63,204,227,207,45,226,8,0,63,204,227,207,130,231,8,0,66,76,229,202,134,19,7,0,67,76,67,224,203,236,9,0,67,76,67,224,234,236,9,0,67,76,67,224,253,236,9,0,69,76,109,7,80,113,7,0,69,76,109,7,12,73,11,0,70,76,217,204,44,117,6,0,70,76,153,236,205,239,6,0,70,204,94,210,75,112,7,0,71,204,93,164,12,99,7,0,71,204,245,168,146,4,11,0,72,76,237,246,227,50,6,0,74,76,87,130,167,242,9,0,74,204,198,188,184,128,11,0,75,76,58,228,81,164,10,0,76,76,196,168,52,87,10,0,76,76,196,168,117,87,10,0,77,76,185,197,194,138,7,0,80,204,215,227,222,14,7,0,80,204,215,227,16,183,8,0,80,204,215,227,251,191,8,0,80,204,215,227,239,200,8,0,80,204,10,186,200,230,10,0,82,76,140,175,55,108,7,0,84,76,153,134,51,104,7,0,84,76,20,32,194,138,7,0,85,204,207,141,83,126,8,0,87,204,245,59,23,27,7,0,87,204,87,242,228,49,7,0,89,76,26,131,59,87,11,0,93,76,165,228,253,38,9,0,93,76,165,228,207,40,9,0,94,204,216,192,159,97,11,0,95,204,43,204,135,61,7,0,97,76,157,38,192,250,5,0,97,76,157,38,82,1,6,0,97,76,157,38,117,51,7,0,97,76,157,38,111,53,7,0,98,76,37,119,195,23,11,0,98,76,37,119,211,23,11,0,101,76,30,49,194,138,7,0,103,204,37,182,217,9,7,0,103,204,80,146,222,14,7,0,109,204,64,50,83,33,8,0,111,204,109,234,55,108,7,0,113,76,246,231,48,245,6,0,113,76,246,231,194,138,7,0,113,76,87,130,167,242,9,0,116,76,77,99,146,76,9,0,116,76,77,99,63,77,9,0,116,204,146,143,234,200,10,0,118,204,212,6,189,199,6,0,119,76,30,61,134,19,7,0,120,76,31,34,45,226,8,0,120,76,31,34,130,231,8,0,120,76,152,134,111,4,9,0,120,76,152,134,41,6,9,0,121,76,150,100,58,212,8,0,121,76,150,100,201,212,8,0,122,76,219,140,29,120,7,0,123,204,219,27,97,103,7,0,123,204,219,27,15,48,8,0,123,204,219,27,94,48,8,0,125,204,184,164,116,72,7,0,125,76,138,45,4,52,10,0,127,204,24,138,62,31,11,0,130,204,59,250,16,183,8,0,130,204,59,250,251,191,8,0,130,204,59,250,239,200,8,0,131,204,200,106,117,51,7,0,131,204,200,106,111,53,7,0,131,204,200,106,242,163,7,0,132,204,166,2,16,37,7,0,135,204,235,127,127,142,6,0,135,76,43,31,98,237,6,0,136,76,54,205,67,6,7,0,136,76,250,6,252,242,8,0,136,76,250,6,240,243,8,0,138,204,177,239,119,187,10,0,140,76,180,225,132,21,9,0,140,76,180,225,157,23,9,0,143,76,119,216,135,44,7,0,145,76,132,144,161,110,10,0,145,76,132,144,2,112,10,0,147,76,80,219,45,226,8,0,147,76,80,219,130,231,8,0,148,204,250,87,135,44,7,0,148,204,145,89,139,14,10,0,148,204,145,89,50,15,10,0,150,204,88,208,149,73,10,0,150,204,88,208,169,73,10,0,150,204,88,208,193,73,10,0,151,76,87,130,167,242,9,0,153,76,73,82,45,226,8,0,153,76,73,82,130,231,8,0,155,204,53,115,134,19,7,0,156,76,237,65,22,77,7,0,156,204,67,174,194,138,7,0,156,76,237,65,102,214,8,0,156,76,237,65,14,218,8,0,156,76,237,65,78,61,9,0,156,76,237,65,115,61,9,0,158,204,47,96,65,76,7,0,163,76,4,34,169,195,6,0,163,76,137,171,117,51,7,0,163,76,137,171,111,53,7,0,164,204,135,212,161,77,7,0,168,76,193,154,213,110,7,0,168,76,174,158,45,226,8,0,168,76,174,158,130,231,8,0,169,76,157,38,148,70,6,0,169,76,157,38,243,112,7,0,170,204,72,5,0,55,7,0,170,204,72,5,163,57,7,0,175,204,162,156,0,55,7,0,175,204,220,138,168,152,9,0,177,76,150,110,161,77,7,0,177,76,48,174,29,120,7,0,177,76,28,48,167,146,11,0,177,76,28,48,187,146,11,0,182,204,104,90,102,214,8,0,182,204,104,90,14,218,8,0,185,204,136,130,119,96,7,0,185,76,104,205,134,211,8,0,185,76,104,205,165,211,8,0,185,76,104,205,205,211,8,0,192,204,171,100,179,122,9,0,194,76,118,182,194,138,7,0,195,204,207,55,197,247,5,0,195,76,141,141,119,96,7,0,195,204,177,205,193,100,10,0,195,204,177,205,89,103,10,0,196,76,114,126,113,132,9,0,196,76,114,126,167,132,9,0,196,76,114,126,51,133,9,0,197,204,114,67,219,238,8,0,197,204,114,67,39,240,8,0,197,204,114,67,117,241,8,0,197,204,53,152,216,95,9,0,197,204,53,152,255,95,9,0,198,76,179,131,145,114,7,0,198,204,250,26,83,126,8,0,199,76,216,127,195,21,6,0,199,76,55,215,240,66,9,0,199,76,55,215,240,66,9,0,199,76,55,215,119,67,9,0,199,76,55,215,119,67,9,0,200,204,134,176,145,114,7,0,201,76,224,103,156,253,6,0,202,204,31,236,255,70,7,0,202,204,240,251,4,52,10,0,203,76,52,200,241,17,7,0,203,76,231,223,191,232,10,0,204,204,110,42,145,114,7,0,205,204,42,84,216,247,7,0,205,76,197,250,171,199,10,0,206,76,19,54,9,241,5,0,206,76,150,248,177,105,7,0,208,76,84,61,83,126,8,0,208,76,84,61,65,128,8,0,208,76,84,61,51,130,8,0,208,76,84,61,111,130,8,0,208,76,22,126,47,90,11,0,210,204,118,120,4,52,10,0,212,204,151,71,87,69,9,0,212,204,151,71,181,69,9,0,212,76,28,171,199,43,11,0,214,204,246,237,24,242,6,0,215,204,81,149,230,77,6,0,216,76,2,40,102,15,7,0,216,204,204,156,233,16,7,0,216,204,37,142,194,138,7,0,217,76,246,81,71,248,5,0,219,204,131,110,224,237,6,0,219,76,137,92,3,191,9,0,219,76,137,92,78,191,9,0,220,76,201,41,11,14,7,0,221,204,49,157,194,138,7,0,221,204,49,157,29,44,8,0,222,76,158,27,56,18,10,0,222,76,158,27,84,18,10,0,222,76,31,91,193,100,10,0,222,76,31,91,89,103,10,0,223,204,143,228,115,161,9,0,223,204,143,228,104,162,9,0,225,76,53,12,23,27,7,0,225,204,243,205,53,143,10,0,225,76,76,222,39,51,11,0,229,76,57,123,187,210,10,0,229,76,120,89,110,212,10,0,230,204,31,122,219,46,10,0,231,76,48,179,147,110,7,0,232,204,238,8,139,254,6,0,234,76,45,44,15,236,10,0,236,76,253,32,83,126,8,0,236,76,126,90,93,153,8,0,242,204,189,78,92,215,5,0,242,76,218,204,25,22,10,0,242,76,218,204,49,22,10,0,243,204,230,61,177,210,5,0,243,204,189,241,67,142,6,0,243,204,91,64,60,77,10,0,243,204,91,64,232,77,10,0,245,204,237,196,66,155,6,0,245,76,30,30,45,226,8,0,245,76,30,30,130,231,8,0,247,76,215,58,85,174,7,0,247,76,215,58,202,174,7,0,249,204,165,200,209,19,10,0,252,76,222,122,134,19,7,0,252,204,134,180,134,19,7,0,253,76,247,223,100,92,7,0,253,204,68,79,145,138,10,0,254,76,222,42,163,66,7,0,254,76,78,186,51,104,7,0,0,77,91,248,181,111,7,0,1,77,34,120,29,151,6,0,2,205,40,125,60,152,7,0,2,205,40,125,104,103,8,0,2,205,40,125,219,103,8,0,2,205,40,125,68,104,8,0,2,205,40,125,59,45,10,0,4,205,84,100,45,226,8,0,4,205,84,100,130,231,8,0,4,77,244,163,4,52,10,0,7,77,70,134,76,43,9,0,7,77,70,134,114,43,9,0,8,205,239,169,62,223,9,0,8,205,239,169,64,224,9,0,8,205,239,169,93,225,9,0,8,205,97,18,6,0,11,0,8,205,97,18,71,0,11,0,8,205,97,18,132,0,11,0,10,205,100,184,216,140,9,0,10,205,100,184,69,141,9,0,11,77,126,189,23,27,7,0,11,77,83,234,123,190,7,0,14,77,15,95,73,82,7,0,15,205,102,24,204,50,9,0,15,205,102,24,17,51,9,0,15,205,102,24,93,51,9,0,17,77,208,119,14,137,9,0,17,77,208,119,201,137,9,0,20,205,7,235,66,3,7,0,20,205,140,165,167,254,10,0,21,77,111,10,249,71,7,0,25,205,29,1,4,52,10,0,30,205,63,149,145,114,7,0,30,205,62,188,16,183,8,0,30,205,62,188,251,191,8,0,30,205,62,188,239,200,8,0,31,77,132,166,89,5,7,0,31,77,99,26,20,8,9,0,31,77,99,26,247,8,9,0,31,77,99,26,210,9,9,0,31,77,214,78,225,65,11,0,35,205,191,35,245,123,11,0,38,77,113,30,23,27,7,0,42,77,139,48,187,0,7,0,42,77,186,20,253,49,7,0,44,77,184,148,225,47,10,0,44,77,184,148,23,48,10,0,45,205,99,58,49,246,6,0,45,205,63,221,194,185,9,0,45,205,63,221,96,186,9,0,49,205,56,24,70,71,7,0,53,205,43,38,59,133,7,0,55,77,238,158,184,209,5,0,57,205,2,14,4,52,10,0,57,205,2,14,4,52,10,0,58,77,70,87,66,3,7,0,60,77,64,141,253,185,10,0,60,77,64,141,29,186,10,0,62,77,247,46,115,86,9,0,62,77,247,46,181,86,9,0,65,77,167,87,15,130,10,0,67,205,106,49,132,21,9,0,67,205,106,49,157,23,9,0,67,77,36,195,253,38,9,0,67,77,36,195,207,40,9,0,68,77,242,122,49,36,6,0,71,205,47,116,135,44,7,0,71,77,163,82,145,114,7,0,72,205,36,141,133,48,11,0,74,205,61,111,58,75,7,0,76,205,91,245,253,38,9,0,76,205,91,245,207,40,9,0,78,205,212,89,211,174,6,0,86,77,189,63,186,26,9,0,86,77,189,63,120,27,9,0,86,77,189,63,48,28,9,0,89,77,112,208,134,19,7,0,91,77,115,54,131,92,10,0,91,77,115,54,178,92,10,0,92,205,250,66,50,147,6,0,93,205,159,4,38,92,7,0,96,205,4,38,143,240,6,0,96,77,33,116,81,126,9,0,96,77,33,116,166,126,9,0,96,77,33,116,53,127,9,0,100,205,55,208,216,0,6,0,100,205,86,55,60,152,7,0,100,205,86,55,174,158,7,0,101,205,3,171,16,37,7,0,103,205,74,58,157,151,11,0,105,205,49,129,114,56,11,0,106,77,20,138,123,49,6,0,108,205,97,188,10,60,6,0,111,77,104,139,204,130,6,0,111,77,195,233,240,168,9,0,111,77,195,233,11,169,9,0,112,205,135,79,218,233,5,0,112,77,132,43,75,148,7,0,112,205,25,192,48,130,11,0,117,77,122,196,207,37,6,0,123,205,167,105,73,38,7,0,123,205,103,58,234,96,11,0,124,77,15,251,67,17,7,0,124,77,161,90,12,99,7,0,125,205,181,131,60,152,7,0,125,205,181,131,79,237,8,0,134,205,55,236,118,173,11,0,135,205,115,196,97,44,6,0,135,205,33,255,237,189,7,0,137,205,38,129,43,72,10,0,137,205,38,129,148,72,10,0,139,77,243,136,216,181,11,0,141,77,31,16,107,10,7,0,149,205,157,128,143,233,5,0,149,77,103,189,61,91,11,0,150,205,113,8,4,247,6,0,150,77,29,217,177,4,7,0,151,205,65,114,66,3,7,0,152,205,15,27,59,12,7,0,153,77,95,11,37,236,5,0,154,77,59,91,58,204,7,0,161,77,157,86,58,108,6,0,161,77,10,52,207,70,7,0,162,77,38,52,181,245,6,0,165,77,231,118,253,49,7,0,165,205,21,227,168,84,10,0,165,205,21,227,226,84,10,0,168,77,190,90,194,228,10,0,169,205,113,129,228,49,7,0,169,77,161,110,132,21,9,0,169,77,161,110,157,23,9,0,171,77,164,1,160,79,8,0,176,77,14,131,209,84,7,0,176,77,170,135,225,65,11,0,181,77,187,138,219,82,11,0,182,77,22,59,155,70,10,0,182,77,22,59,176,70,10,0,183,77,242,127,135,61,7,0,183,77,99,164,191,45,11,0,184,205,115,117,132,21,9,0,184,205,115,117,157,23,9,0,184,77,81,242,70,134,10,0,186,205,73,31,177,105,7,0,187,77,34,198,182,170,10,0,187,77,246,231,214,216,10,0,190,205,184,127,131,222,8,0,190,205,184,127,38,223,8,0,190,205,184,127,206,223,8,0,193,205,36,49,132,21,9,0,193,205,36,49,157,23,9,0,194,205,170,93,12,99,7,0,197,77,37,23,240,8,7,0,197,77,113,106,1,104,11,0,198,77,196,139,82,102,11,0,199,205,21,80,120,21,11,0,199,77,94,59,64,108,11,0,201,77,100,64,218,93,7,0,202,205,19,220,58,232,5,0,202,77,97,253,38,117,8,0,203,205,156,76,102,214,8,0,203,205,156,76,14,218,8,0,208,205,14,45,0,55,7,0,208,205,14,45,163,57,7,0,212,205,171,17,60,152,7,0,212,205,171,17,198,169,9,0,213,205,104,130,4,52,10,0,214,205,186,94,219,238,8,0,214,205,186,94,39,240,8,0,214,205,186,94,117,241,8,0,218,77,38,247,145,12,8,0,219,205,24,20,45,226,8,0,219,205,24,20,130,231,8,0,219,77,130,147,253,38,9,0,219,77,130,147,207,40,9,0,220,205,6,191,255,96,11,0,222,77,198,80,45,226,8,0,222,77,198,80,130,231,8,0,223,77,87,126,204,181,9,0,223,77,87,126,224,182,9,0,224,77,121,252,241,213,5,0,224,205,117,208,154,36,7,0,224,77,56,134,86,254,7,0,225,77,195,38,23,53,6,0,225,77,113,35,206,76,7,0,226,205,105,254,108,49,7,0,227,205,154,47,125,151,6,0,227,205,154,47,161,77,7,0,231,205,93,210,73,38,7,0,232,77,203,37,29,120,7,0,233,205,68,215,40,14,9,0,233,205,68,215,96,14,9,0,241,205,220,5,45,226,8,0,241,205,220,5,130,231,8,0,247,77,250,142,161,77,7,0,249,205,142,22,16,223,5,0,250,205,130,38,134,235,6,0,253,205,99,23,119,17,6,0,0,78,91,128,23,253,6,0,0,206,128,195,23,27,7,0,0,78,93,249,60,152,7,0,0,78,93,249,149,158,7,0,0,78,93,249,226,164,7,0,0,78,200,127,86,39,11,0,1,78,71,95,23,27,7,0,5,78,108,166,85,174,7,0,5,78,108,166,202,174,7,0,5,78,188,157,146,223,10,0,6,78,91,255,179,122,9,0,8,78,64,66,26,7,7,0,9,78,255,125,134,19,7,0,11,206,103,144,29,120,7,0,14,206,192,55,253,38,9,0,14,206,192,55,207,40,9,0,15,78,174,55,32,66,7,0,16,78,236,96,130,194,10,0,18,78,57,47,29,120,7,0,18,206,187,56,194,138,7,0,21,206,69,12,21,138,7,0,22,78,189,243,135,61,7,0,22,206,149,178,161,77,7,0,22,78,97,34,18,210,8,0,22,78,97,34,113,210,8,0,22,78,97,34,217,210,8,0,24,206,35,190,19,161,8,0,26,206,156,22,45,226,8,0,26,206,156,22,130,231,8,0,27,78,116,27,132,199,9,0,27,78,116,27,155,199,9,0,31,206,202,36,181,245,6,0,32,206,88,212,194,138,7,0,33,78,104,128,203,254,5,0,33,78,104,128,245,63,6,0,33,78,104,128,117,51,7,0,33,78,104,128,111,53,7,0,35,206,66,207,145,114,7,0,35,78,0,31,207,144,11,0,36,78,255,90,67,17,7,0,39,78,181,231,150,243,7,0,39,206,218,164,19,195,10,0,41,206,121,94,16,183,8,0,41,206,121,94,251,191,8,0,41,206,121,94,239,200,8,0,43,78,98,133,83,126,8,0,43,78,98,133,214,127,8,0,43,78,98,133,65,128,8,0,45,206,27,127,210,233,6,0,48,206,50,58,147,35,7,0,49,78,179,192,134,19,7,0,49,206,247,74,27,29,8,0,49,206,247,74,70,29,8,0,49,206,247,74,108,29,8,0,50,78,187,129,65,41,7,0,50,78,38,129,116,72,7,0,53,206,217,76,164,16,9,0,53,206,217,76,141,17,9,0,55,78,66,66,111,4,9,0,55,78,66,66,41,6,9,0,56,78,144,116,252,242,8,0,56,78,144,116,240,243,8,0,56,206,51,55,115,161,9,0,56,206,51,55,104,162,9,0,56,206,68,117,4,52,10,0,60,78,151,13,86,247,6,0,60,206,119,63,194,138,7,0,61,78,11,224,245,13,8,0,64,206,155,149,213,15,9,0,67,206,191,11,94,80,10,0,67,206,191,11,110,80,10,0,68,206,22,112,102,214,8,0,68,206,22,112,14,218,8,0,68,206,245,205,4,52,10,0,68,78,187,212,158,105,11,0,69,78,206,25,224,19,6,0,70,78,236,96,59,197,10,0,70,206,23,207,196,143,11,0,71,78,222,182,111,4,9,0,71,78,222,182,41,6,9,0,75,78,19,167,172,10,6,0,75,78,4,122,66,3,7,0,77,206,231,157,193,200,10,0,81,78,81,190,60,152,7,0,81,78,81,190,196,157,7,0,81,78,81,190,226,164,7,0,81,78,11,224,19,210,9,0,81,78,11,224,36,210,9,0,85,206,16,198,194,138,7,0,85,206,16,198,69,151,7,0,85,206,202,246,20,183,10,0,85,206,3,27,37,242,10,0,86,206,250,126,97,41,11,0,86,206,20,98,93,145,11,0,91,206,140,165,182,13,7,0,95,206,111,128,201,251,6,0,95,206,76,247,134,19,7,0,98,78,175,83,145,114,7,0,99,206,209,144,163,57,7,0,99,78,254,174,16,183,8,0,99,78,254,174,251,191,8,0,99,78,254,174,239,200,8,0,101,78,101,139,103,48,7,0,102,206,202,62,64,70,7,0,104,78,15,213,240,248,6,0,107,78,199,238,58,212,8,0,107,78,199,238,201,212,8,0,107,78,144,51,40,14,9,0,107,78,144,51,96,14,9,0,111,78,14,186,199,1,11,0,112,206,33,116,134,211,8,0,112,206,33,116,165,211,8,0,112,206,33,116,205,211,8,0,114,78,221,28,227,173,11,0,118,206,122,19,55,93,6,0,122,206,151,132,145,12,8,0,123,206,147,73,231,115,6,0,127,206,185,57,219,129,6,0,127,206,185,57,205,87,7,0,128,78,205,15,43,144,11,0,130,206,152,54,58,35,9,0,130,206,152,54,31,36,9,0,131,78,0,179,176,68,7,0,133,78,42,5,174,44,9,0,133,78,42,5,208,44,9,0,134,206,33,218,154,170,6,0,137,78,145,235,251,40,6,0,137,206,171,199,73,38,7,0,142,206,52,110,253,49,7,0,142,206,208,28,145,114,7,0,143,206,184,189,22,77,7,0,144,206,108,139,116,72,7,0,147,206,147,210,25,197,10,0,149,78,65,104,39,47,9,0,149,78,65,104,54,48,9,0,150,78,3,166,6,67,11,0,153,206,221,137,65,41,7,0,155,206,68,24,0,182,7,0,155,206,68,24,58,182,7,0,157,206,120,241,209,19,10,0,159,78,172,63,205,87,7,0,160,206,16,82,58,210,10,0,164,78,108,106,116,72,7,0,166,206,103,98,240,248,6,0,166,206,104,85,50,69,10,0,166,206,104,85,76,69,10,0,168,206,79,67,23,27,7,0,168,206,98,3,229,221,8,0,168,206,98,3,29,222,8,0,168,206,98,3,215,173,10,0,169,78,138,232,136,1,7,0,169,78,138,232,10,2,7,0,172,78,113,42,16,183,8,0,172,78,113,42,251,191,8,0,172,78,113,42,239,200,8,0,172,206,160,153,111,4,9,0,172,206,160,153,41,6,9,0,174,78,202,148,200,145,6,0,176,78,165,38,66,3,7,0,177,78,34,38,58,35,9,0,177,78,34,38,31,36,9,0,178,78,78,15,23,27,7,0,181,78,179,30,168,152,9,0,184,78,246,231,15,221,10,0,184,206,210,126,14,40,11,0,190,206,205,5,146,93,8,0,190,206,205,5,182,93,8,0,194,206,225,65,7,243,5,0,194,206,36,157,83,126,8,0,194,206,36,157,214,127,8,0,194,206,36,157,65,128,8,0,194,206,36,157,65,128,8,0,194,206,36,157,4,129,8,0,194,206,36,157,151,129,8,0,194,206,36,157,228,129,8,0,196,206,214,208,68,221,5,0,196,206,224,202,96,8,7,0,196,78,7,18,65,41,7,0,196,78,103,27,27,255,8,0,196,78,103,27,100,255,8,0,198,206,241,69,172,159,10,0,205,206,127,251,145,12,8,0,207,78,158,128,181,132,6,0,208,78,157,52,155,101,6,0,208,206,68,198,19,13,11,0,212,206,96,158,168,43,7,0,212,206,96,158,161,77,7,0,213,78,103,174,101,137,6,0,213,78,201,83,116,72,7,0,215,206,252,194,62,231,5,0,220,206,227,204,138,171,7,0,220,206,184,111,177,206,10,0,221,206,51,116,238,43,8,0,221,206,51,116,229,44,8,0,221,78,194,87,168,152,9,0,223,78,45,23,23,27,7,0,227,78,126,82,91,171,11,0,228,206,60,121,23,27,7,0,229,206,158,133,118,81,7,0,229,206,87,47,190,26,11,0,232,206,119,77,97,103,7,0,234,78,69,203,36,119,6,0,234,78,54,251,59,187,9,0,234,78,54,251,91,187,9,0,237,78,34,116,16,183,8,0,237,78,34,116,251,191,8,0,237,78,34,116,239,200,8,0,241,206,38,177,156,253,6,0,242,206,232,101,247,33,6,0,242,206,232,101,10,60,6,0,243,78,167,50,127,184,6,0,243,206,185,106,213,15,9,0,245,206,3,124,115,4,7,0,245,206,86,60,229,221,8,0,245,206,86,60,29,222,8,0,246,206,148,104,199,104,6,0,247,206,213,154,47,13,7,0,248,206,172,161,161,77,7,0,250,206,67,87,60,77,10,0,250,206,67,87,232,77,10,0,252,78,92,12,134,19,7,0,254,78,244,245,32,20,9,0,254,78,244,245,179,20,9,0,254,78,30,64,62,69,11,0,0,207,197,187,134,19,7,0,0,207,188,175,73,38,7,0,0,79,136,186,135,61,7,0,0,79,177,54,49,130,7,0,2,79,255,221,139,254,6,0,2,79,255,221,73,38,7,0,3,79,169,199,176,225,10,0,5,79,48,252,132,21,9,0,5,79,48,252,157,23,9,0,5,207,57,246,186,158,9,0,5,207,57,246,5,159,9,0,7,207,14,193,45,226,8,0,7,207,14,193,130,231,8,0,9,79,252,137,202,116,10,0,9,79,252,137,232,116,10,0,10,79,109,55,255,228,6,0,10,79,109,55,235,229,6,0,10,79,110,19,134,235,6,0,13,207,93,157,134,19,7,0,14,79,82,193,29,120,7,0,15,79,172,19,60,152,7,0,15,79,172,19,104,103,8,0,15,79,172,19,219,103,8,0,15,79,172,19,68,104,8,0,15,79,172,19,59,45,10,0,17,207,77,70,8,112,7,0,18,207,106,27,216,140,9,0,18,207,106,27,69,141,9,0,19,207,162,30,10,28,11,0,19,207,162,30,141,29,11,0,21,79,9,217,107,10,7,0,21,79,14,220,161,110,10,0,21,79,14,220,2,112,10,0,23,79,149,146,60,152,7,0,23,79,149,146,226,164,7,0,23,79,149,146,252,169,7,0,23,79,91,254,212,213,10,0,24,207,184,1,107,226,9,0,24,207,184,1,251,226,9,0,26,207,24,103,51,65,7,0,28,79,123,149,135,169,6,0,29,79,51,97,246,64,6,0,29,207,104,210,245,103,6,0,30,207,93,95,119,193,7,0,31,79,239,136,194,138,7,0,31,79,172,63,145,89,11,0,32,79,165,237,166,166,11,0,36,207,127,76,145,114,7,0,37,207,91,90,79,92,6,0,37,207,30,177,217,103,7,0,37,207,91,90,11,170,8,0,43,207,205,202,16,183,8,0,43,207,205,202,251,191,8,0,43,207,205,202,239,200,8,0,44,79,81,178,85,29,10,0,46,79,117,100,5,79,11,0,46,79,117,100,33,82,11,0,49,79,108,28,107,226,9,0,49,79,108,28,251,226,9,0,50,207,218,80,178,130,6,0,50,207,90,46,193,100,10,0,50,207,90,46,89,103,10,0,51,207,67,62,145,114,7,0,51,79,54,116,29,120,7,0,54,207,205,20,192,72,6,0,55,207,16,103,243,117,11,0,56,79,181,112,232,185,7,0,56,207,201,44,147,64,11,0,57,207,172,221,168,152,9,0,60,207,64,58,110,58,11,0,60,207,64,58,132,58,11,0,61,207,143,36,12,99,7,0,62,207,191,73,45,136,7,0,63,79,59,157,189,246,6,0,67,79,210,73,194,138,7,0,68,79,202,148,183,50,6,0,68,79,202,148,137,207,6,0,69,207,192,221,178,71,11,0,69,207,192,221,74,73,11,0,69,207,192,221,4,85,11,0,71,79,89,231,134,19,7,0,72,207,113,145,20,8,9,0,72,207,113,145,247,8,9,0,72,207,113,145,210,9,9,0,73,207,54,1,29,120,7,0,74,79,65,17,53,247,5,0,74,79,65,17,53,2,6,0,77,79,94,187,44,207,6,0,78,207,214,177,14,205,7,0,81,79,225,17,89,5,7,0,81,79,40,113,23,27,7,0,82,207,43,53,111,4,9,0,82,207,43,53,41,6,9,0,83,207,28,99,42,64,6,0,83,79,225,241,201,182,7,0,84,207,143,101,37,18,6,0,86,207,113,55,16,183,8,0,86,207,113,55,251,191,8,0,86,207,113,55,239,200,8,0,88,207,101,164,161,110,10,0,88,207,101,164,2,112,10,0,91,207,249,66,79,114,11,0,93,207,19,208,194,138,7,0,93,79,138,145,19,245,8,0,93,79,138,145,76,245,8,0,96,207,204,28,23,27,7,0,96,79,27,194,132,21,9,0,96,79,27,194,157,23,9,0,97,79,123,202,194,138,7,0,97,79,145,33,60,152,7,0,97,79,145,33,231,4,10,0,98,79,202,179,24,61,11,0,99,79,38,200,66,3,7,0,99,207,73,31,4,44,7,0,99,207,8,31,18,196,7,0,101,207,224,168,32,97,10,0,101,207,224,168,59,97,10,0,101,207,224,168,82,97,10,0,101,79,137,6,213,163,11,0,107,79,108,130,8,112,9,0,107,79,108,130,40,112,9,0,108,207,2,100,147,99,8,0,112,207,204,57,135,61,7,0,115,79,32,188,253,49,7,0,115,207,142,72,161,7,11,0,118,79,214,64,238,215,10,0,121,207,50,70,14,137,9,0,121,207,50,70,201,137,9,0,122,207,245,13,111,81,9,0,122,207,245,13,4,82,9,0,124,79,171,32,143,240,6,0,126,207,66,190,29,120,7,0,127,207,231,209,176,120,11,0,129,79,231,101,104,60,6,0,129,79,231,101,147,208,6,0,129,79,65,137,16,37,7,0,129,79,156,191,241,190,7,0,129,79,231,101,171,41,8,0,129,207,142,77,101,118,10,0,129,207,142,77,178,118,10,0,132,79,42,75,134,19,7,0,133,207,210,223,119,96,7,0,136,207,5,28,12,99,7,0,138,79,172,69,207,189,6,0,142,207,121,161,161,110,10,0,142,207,121,161,2,112,10,0,143,79,68,161,139,254,6,0,144,207,31,218,171,177,10,0,145,79,219,193,29,120,7,0,145,79,18,33,180,144,8,0,151,207,26,205,86,56,9,0,151,207,26,205,9,57,9,0,154,207,128,58,83,91,6,0,154,207,173,129,4,52,10,0,155,207,147,61,247,129,7,0,156,207,43,170,126,177,11,0,157,79,226,73,0,55,7,0,157,79,226,73,163,57,7,0,157,207,106,150,25,86,7,0,157,207,106,150,74,86,7,0,158,79,87,220,196,46,7,0,158,79,182,224,132,21,9,0,158,79,182,224,157,23,9,0,160,79,27,11,36,152,8,0,162,207,31,252,11,105,6,0,162,79,164,200,117,251,6,0,164,207,207,206,238,239,6,0,164,79,202,68,16,183,8,0,164,79,202,68,251,191,8,0,164,79,202,68,239,200,8,0,167,79,97,212,244,62,6,0,167,79,185,222,194,138,7,0,169,207,195,61,193,100,10,0,169,207,195,61,89,103,10,0,170,79,215,203,147,189,7,0,170,79,165,145,249,109,9,0,170,79,165,145,13,110,9,0,172,79,139,251,161,144,10,0,173,79,189,157,16,183,8,0,173,79,189,157,251,191,8,0,173,79,189,157,239,200,8,0,176,79,58,160,101,64,7,0,183,207,231,224,135,61,7,0,188,207,175,94,213,15,9,0,190,79,14,240,96,221,6,0,190,79,14,240,0,132,9,0,192,79,166,124,217,9,7,0,192,79,41,68,0,55,7,0,192,79,20,229,139,163,9,0,192,79,20,229,241,163,9,0,193,207,147,46,135,54,8,0,194,207,77,247,150,204,7,0,195,207,105,41,153,113,10,0,195,207,105,41,27,114,10,0,196,207,153,165,135,61,7,0,197,79,212,176,82,20,8,0,200,207,218,234,27,233,10,0,200,207,218,234,207,241,10,0,202,207,33,80,186,26,9,0,202,207,33,80,120,27,9,0,202,207,33,80,48,28,9,0,206,79,125,105,132,21,9,0,206,79,125,105,157,23,9,0,206,79,131,182,109,183,10,0,208,79,131,182,76,43,9,0,208,79,131,182,114,43,9,0,210,207,215,97,194,138,7,0,211,207,140,0,204,181,9,0,211,207,140,0,224,182,9,0,211,79,165,232,77,135,10,0,211,79,219,35,202,206,10,0,212,79,101,136,23,253,6,0,212,79,4,103,255,70,10,0,212,79,4,103,87,71,10,0,212,79,4,103,174,71,10,0,214,79,109,126,225,107,7,0,216,207,224,104,204,181,9,0,216,207,224,104,224,182,9,0,218,79,166,85,135,242,6,0,218,79,245,112,188,71,7,0,219,79,131,182,23,27,7,0,220,207,244,40,16,183,8,0,220,207,244,40,251,191,8,0,221,207,165,129,166,125,10,0,221,207,165,129,224,125,10,0,221,207,165,129,40,126,10,0,221,207,165,129,97,126,10,0,222,207,26,54,37,132,7,0,224,207,182,147,0,55,7,0,224,207,182,147,163,57,7,0,225,207,50,220,89,91,11,0,226,207,41,244,121,243,5,0,226,79,42,244,67,17,7,0,226,207,57,87,179,93,11,0,227,79,14,187,70,43,11,0,227,79,14,187,95,43,11,0,228,79,42,231,182,151,6,0,228,79,220,94,42,105,11,0,229,207,73,184,96,221,6,0,230,79,173,20,59,87,11,0,232,207,88,95,58,75,7,0,233,79,15,78,100,92,7,0,233,79,138,164,181,171,10,0,234,207,79,122,49,131,11,0,236,207,91,113,145,12,8,0,238,79,233,146,71,250,6,0,238,207,73,106,241,190,7,0,238,79,104,158,85,29,10,0,241,207,192,222,62,223,9,0,241,207,192,222,64,224,9,0,241,207,192,222,93,225,9,0,242,79,36,218,12,139,10,0,246,207,203,244,40,20,6,0,246,207,138,72,179,122,9,0,247,207,214,201,145,95,6,0,248,79,227,167,0,55,7,0,248,79,227,167,163,57,7,0,248,79,227,167,177,105,7,0,249,207,227,133,29,120,7,0,249,207,31,239,146,76,9,0,249,207,31,239,63,77,9,0,251,207,229,215,229,109,7,0,255,79,101,232,135,44,7,0,255,207,60,166,16,183,8,0,255,207,60,166,251,191,8,0,255,207,60,166,239,200,8,0,2,208,97,148,9,146,6,0,4,208,129,83,135,61,7,0,4,80,82,1,72,102,9,0,4,80,82,1,254,102,9,0,7,80,15,65,72,115,6,0,7,80,60,56,164,16,9,0,7,80,60,56,141,17,9,0,8,208,16,40,181,111,7,0,8,208,105,159,87,62,11,0,10,80,158,115,239,253,8,0,11,80,21,64,220,65,7,0,12,80,27,142,96,221,6,0,12,80,27,142,0,132,9,0,13,208,219,223,189,29,8,0,13,80,87,157,83,126,8,0,14,80,123,29,188,213,9,0,14,80,123,29,58,214,9,0,14,80,123,29,197,214,9,0,15,208,94,170,71,250,6,0,15,208,150,52,45,226,8,0,15,208,150,52,130,231,8,0,17,80,50,36,63,79,10,0,17,80,50,36,138,79,10,0,17,80,50,36,214,79,10,0,18,208,178,239,228,61,6,0,18,208,178,239,140,203,6,0,21,80,177,158,157,187,10,0,23,80,88,146,60,152,7,0,23,80,88,146,226,164,7,0,27,80,5,87,4,52,10,0,28,80,248,30,51,104,7,0,30,80,90,202,194,138,7,0,31,80,228,210,29,14,6,0,31,80,228,210,73,130,7,0,33,208,136,146,88,239,5,0,33,80,248,158,167,239,6,0,33,80,9,8,151,186,7,0,35,80,65,30,183,82,7,0,36,208,200,100,175,7,7,0,40,80,213,209,74,179,10,0,41,80,194,1,27,136,10,0,42,208,188,135,120,129,6,0,42,208,103,249,12,99,7,0,43,80,168,238,185,163,6,0,43,208,164,196,4,52,10,0,44,208,50,98,61,39,7,0,46,80,147,241,194,138,7,0,48,80,44,196,214,136,6,0,50,80,113,72,66,3,7,0,50,208,152,52,4,52,10,0,51,80,81,190,213,188,7,0,53,208,6,107,128,241,7,0,53,80,137,195,159,32,10,0,53,80,137,195,240,32,10,0,54,208,107,89,145,114,7,0,56,80,132,103,12,99,7,0,56,208,54,63,194,138,7,0,56,208,54,63,86,56,9,0,56,208,54,63,9,57,9,0,58,208,160,82,145,114,7,0,59,208,74,163,219,238,8,0,59,208,74,163,39,240,8,0,59,208,74,163,117,241,8,0,63,208,167,126,217,183,6,0,63,80,40,22,134,19,7,0,63,208,105,27,8,128,10,0,68,80,79,82,16,167,11,0,69,208,48,236,200,68,6,0,70,80,254,103,23,27,7,0,70,208,64,12,32,20,9,0,70,208,64,12,179,20,9,0,71,80,234,187,193,100,10,0,71,80,234,187,89,103,10,0,72,208,247,48,130,131,10,0,76,208,237,127,253,49,7,0,76,208,46,185,247,80,7,0,77,208,104,10,4,52,10,0,83,208,35,234,44,87,8,0,83,80,44,54,62,156,10,0,87,208,73,149,240,248,6,0,87,208,213,146,189,109,7,0,87,208,52,140,139,14,10,0,87,208,52,140,50,15,10,0,87,208,213,146,124,160,10,0,87,208,96,34,251,102,11,0,88,208,79,3,119,96,7,0,88,208,6,139,122,214,7,0,93,80,188,115,194,138,7,0,97,80,170,241,122,246,6,0,97,80,197,172,207,14,9,0,97,80,197,172,54,15,9,0,99,80,93,41,142,238,6,0,101,208,6,121,28,179,9,0,101,208,6,121,56,179,9,0,102,80,205,57,20,8,9,0,102,80,205,57,247,8,9,0,102,80,205,57,210,9,9,0,105,80,181,148,240,0,6,0,105,208,108,76,119,96,7,0,105,208,23,162,198,146,9,0,105,208,23,162,20,147,9,0,108,208,164,166,142,113,7,0,108,208,0,115,194,138,7,0,113,80,16,91,48,160,8,0,114,208,79,45,194,138,7,0,116,80,120,253,30,114,7,0,116,80,120,253,66,114,7,0,117,208,9,143,194,138,6,0,117,208,128,248,163,57,7,0,117,208,128,248,152,63,7,0,117,80,145,64,111,4,9,0,117,80,145,64,41,6,9,0,117,80,192,213,18,69,11,0,120,208,125,136,240,36,7,0,120,208,39,10,85,174,7,0,120,208,39,10,202,174,7,0,123,80,132,42,127,213,10,0,128,80,161,219,226,11,7,0,129,80,170,46,200,37,11,0,132,208,130,222,45,226,8,0,132,208,130,222,130,231,8,0,132,208,16,178,62,223,9,0,132,208,16,178,64,224,9,0,132,208,16,178,93,225,9,0,133,208,81,42,4,52,10,0,133,208,40,38,122,238,10,0,138,80,222,84,193,220,7,0,138,208,68,69,221,255,9,0,138,208,68,69,241,255,9,0,140,208,91,228,45,226,8,0,140,208,91,228,130,231,8,0,140,80,143,13,103,131,11,0,142,208,98,244,167,155,9,0,142,208,98,244,208,155,9,0,142,208,98,244,3,162,11,0,144,80,48,66,241,190,7,0,148,80,122,228,246,243,9,0,148,80,122,228,59,245,9,0,148,80,122,228,131,246,9,0,149,208,106,164,29,120,7,0,152,80,28,116,209,84,7,0,153,80,6,150,155,196,10,0,154,80,127,253,23,27,7,0,156,208,151,214,246,62,7,0,157,208,153,54,212,243,6,0,159,208,90,158,102,214,8,0,159,208,90,158,14,218,8,0,161,208,26,192,175,29,9,0,161,208,26,192,88,30,9,0,163,208,188,203,117,71,7,0,165,208,114,27,213,188,7,0,165,80,238,169,217,200,10,0,166,80,151,30,9,199,9,0,166,80,151,30,49,199,9,0,167,80,43,2,168,152,9,0,171,80,245,39,19,7,8,0,172,80,46,19,20,8,9,0,172,80,46,19,247,8,9,0,172,80,46,19,210,9,9,0,172,80,203,58,164,16,9,0,172,80,203,58,141,17,9,0,173,80,81,21,59,54,6,0,174,208,240,112,253,232,10,0,175,208,91,96,29,120,7,0,177,80,61,173,161,36,6,0,177,80,33,224,75,148,7,0,177,80,33,224,11,166,7,0,177,80,61,173,123,69,8,0,177,80,36,228,108,163,11,0,178,80,28,214,97,16,7,0,178,80,207,238,118,104,11,0,179,80,217,24,131,222,8,0,179,80,217,24,38,223,8,0,179,80,217,24,206,223,8,0,180,208,75,121,102,214,8,0,180,208,75,121,14,218,8,0,180,80,30,197,79,237,8,0,182,208,214,89,203,158,6,0,182,80,154,16,175,29,9,0,182,80,154,16,88,30,9,0,183,208,13,101,194,138,7,0,184,208,92,36,119,96,7,0,185,208,219,173,173,14,7,0,188,208,146,150,65,41,7,0,188,80,236,126,16,183,8,0,188,80,236,126,251,191,8,0,188,80,236,126,239,200,8,0,189,208,33,154,134,19,7,0,189,80,67,86,163,57,7,0,190,80,49,163,23,27,7,0,191,80,221,242,168,152,9,0,192,208,2,54,134,19,7,0,193,80,121,253,178,50,11,0,195,208,159,225,249,166,11,0,197,80,134,32,134,19,7,0,197,80,171,27,195,163,10,0,198,80,200,222,147,215,6,0,198,80,3,255,194,17,8,0,198,80,3,255,191,252,10,0,201,80,125,187,108,74,6,0,201,80,127,47,73,82,7,0,202,80,76,20,121,5,8,0,203,80,126,54,134,19,7,0,205,208,16,9,14,137,9,0,205,208,16,9,201,137,9,0,207,80,68,124,58,75,7,0,207,208,87,181,98,47,11,0,210,208,24,42,10,60,6,0,211,80,208,31,238,149,11,0,214,80,56,128,58,75,7,0,214,80,59,229,134,121,8,0,215,208,98,167,141,251,5,0,217,80,171,140,19,1,7,0,217,80,252,122,83,126,8,0,217,80,171,140,90,173,11,0,218,208,143,173,168,152,9,0,219,208,189,77,152,220,5,0,220,80,199,149,55,108,7,0,222,80,205,179,135,44,7,0,225,208,229,67,12,99,7,0,229,208,145,61,176,68,7,0,229,80,226,240,141,180,9,0,229,80,226,240,190,180,9,0,229,80,226,240,3,181,9,0,230,208,138,22,102,214,8,0,230,208,138,22,14,218,8,0,230,208,173,179,161,110,10,0,230,208,173,179,2,112,10,0,231,80,28,31,119,96,7,0,231,80,13,41,125,18,9,0,231,80,13,41,34,19,9,0,233,208,164,6,0,55,7,0,233,208,164,6,163,57,7,0,235,208,78,115,220,39,7,0,236,80,144,233,41,254,6,0,236,208,13,123,161,43,11,0,236,80,144,233,22,63,11,0,239,208,192,148,117,51,7,0,242,208,73,183,219,238,8,0,242,208,73,183,39,240,8,0,242,208,73,183,117,241,8,0,242,80,126,86,62,223,9,0,242,80,126,86,64,224,9,0,242,80,126,86,93,225,9,0,242,80,234,73,252,235,10,0,250,80,19,139,23,27,7,0,250,208,154,241,45,226,8,0,250,208,154,241,130,231,8,0,250,80,193,101,152,252,8,0,251,208,160,245,145,114,7,0,254,80,157,149,139,163,9,0,254,80,157,149,241,163,9,0,255,80,42,133,159,88,7,0,255,208,119,233,128,57,11,0,0,81,2,234,106,76,10,0,0,81,2,234,128,76,10,0,1,209,211,150,28,132,10,0,1,81,131,115,153,17,11,0,2,209,241,117,145,12,8,0,3,81,61,129,20,185,6,0,4,81,5,204,194,241,6,0,5,81,90,215,193,100,10,0,5,81,90,215,89,103,10,0,7,209,203,236,197,138,10,0,9,209,0,93,52,121,8,0,13,81,178,50,59,18,6,0,13,81,29,20,95,86,6,0,14,209,204,2,65,41,7,0,14,209,8,192,45,85,8,0,15,209,138,24,150,214,5,0,21,81,9,142,38,92,7,0,23,209,8,192,19,59,11,0,24,209,148,60,1,253,6,0,26,209,192,247,251,139,11,0,28,81,152,42,47,98,9,0,29,81,213,0,66,3,7,0,30,81,192,159,253,38,9,0,30,81,192,159,207,40,9,0,33,81,65,13,134,19,7,0,33,209,67,109,16,183,8,0,33,209,67,109,251,191,8,0,33,209,67,109,239,200,8,0,34,209,183,118,29,120,7,0,36,81,117,44,151,159,10,0,38,81,135,195,194,243,7,0,38,81,91,184,167,242,9,0,38,81,118,227,213,208,10,0,41,81,115,106,0,55,7,0,41,81,115,106,163,57,7,0,41,81,155,71,44,157,9,0,41,81,155,71,89,157,9,0,45,209,157,144,90,95,9,0,46,81,237,25,34,183,6,0,48,209,160,164,116,158,10,0,54,209,160,223,83,126,8,0,55,209,29,40,58,75,7,0,55,209,155,82,60,152,7,0,55,209,155,82,79,237,8,0,57,81,239,21,45,226,8,0,57,81,239,21,130,231,8,0,61,209,183,186,86,56,9,0,61,209,183,186,9,57,9,0,61,209,129,237,192,50,11,0,64,81,186,245,16,183,8,0,64,81,186,245,251,191,8,0,64,81,186,245,239,200,8,0,64,81,175,107,115,161,9,0,64,81,175,107,104,162,9,0,64,81,6,254,217,238,9,0,64,81,6,254,174,239,9,0,65,209,8,181,186,26,9,0,65,209,8,181,120,27,9,0,65,209,8,181,48,28,9,0,66,81,250,117,10,240,5,0,68,81,210,225,13,99,11,0,72,81,213,128,99,220,6,0,82,81,146,97,253,137,6,0,82,209,119,233,242,66,11,0,83,209,184,237,240,160,10,0,85,209,82,35,194,185,9,0,85,209,82,35,96,186,9,0,86,81,46,70,3,245,10,0,87,81,201,129,238,81,10,0,88,209,252,194,16,183,8,0,88,209,252,194,251,191,8,0,88,209,252,194,239,200,8,0,89,81,40,25,100,92,7,0,90,81,174,88,219,238,8,0,90,81,174,88,39,240,8,0,90,81,174,88,117,241,8,0,91,81,57,92,16,183,8,0,91,81,57,92,251,191,8,0,91,81,57,92,239,200,8,0,92,81,167,34,92,9,8,0,95,81,236,60,218,93,7,0,96,81,149,215,34,16,6,0,96,81,149,215,79,16,6,0,97,81,176,75,2,63,8,0,97,81,196,191,62,223,9,0,97,81,196,191,64,224,9,0,97,81,196,191,93,225,9,0,98,209,173,59,213,252,5,0,99,209,129,128,66,66,11,0,100,81,229,36,29,14,6,0,100,81,229,36,73,130,7,0,101,209,254,47,251,129,11,0,103,209,104,134,132,21,9,0,103,209,104,134,157,23,9,0,104,81,175,0,43,89,7,0,105,81,61,255,40,164,10,0,111,209,154,140,218,93,7,0,112,81,162,29,241,190,7,0,113,209,191,34,134,19,7,0,113,81,101,164,220,31,10,0,113,81,101,164,242,31,10,0,117,209,253,110,117,51,7,0,119,209,123,103,114,58,8,0,119,209,236,165,193,100,10,0,119,209,236,165,89,103,10,0,121,209,105,147,208,116,6,0,121,209,183,42,167,133,6,0,121,209,127,79,93,133,10,0,128,209,3,144,45,226,8,0,128,209,3,144,130,231,8,0,129,81,157,53,107,211,5,0,129,209,245,164,244,23,11,0,129,209,29,125,141,36,11,0,136,209,42,189,241,190,7,0,136,209,50,78,102,214,8,0,136,209,50,78,14,218,8,0,138,209,220,189,194,138,7,0,138,209,85,238,194,138,7,0,140,81,148,62,64,67,7,0,140,81,57,251,252,242,8,0,140,81,57,251,240,243,8,0,140,209,129,186,65,228,10,0,141,81,217,231,12,99,7,0,143,209,236,57,119,96,7,0,145,81,20,241,16,183,8,0,145,81,20,241,251,191,8,0,145,81,20,241,239,200,8,0,146,81,69,203,107,10,7,0,147,81,145,24,209,84,7,0,147,81,10,8,52,229,10,0,148,209,251,58,133,12,7,0,148,81,185,178,20,8,9,0,148,81,185,178,247,8,9,0,148,81,9,203,4,52,10,0,150,81,25,230,134,19,7,0,154,209,151,81,50,50,6,0,154,209,151,81,248,64,7,0,158,209,16,251,210,11,10,0,158,209,16,251,238,11,10,0,158,209,16,251,1,12,10,0,159,81,51,93,147,212,9,0,159,81,51,93,179,212,9,0,165,81,183,89,12,99,7,0,165,81,131,19,135,149,7,0,165,81,131,19,152,255,9,0,165,81,131,19,196,255,9,0,166,209,183,166,252,44,11,0,166,209,183,166,163,46,11,0,168,209,147,90,14,249,10,0,174,81,74,200,91,89,6,0,179,209,84,124,151,186,7,0,180,209,127,150,27,61,6,0,188,81,64,103,153,165,10,0,189,81,25,82,103,102,6,0,189,81,39,116,50,151,6,0,194,81,175,32,4,52,10,0,195,209,190,180,63,96,7,0,195,209,190,180,119,96,7,0,196,209,114,144,194,138,7,0,196,209,114,144,135,149,7,0,196,209,170,61,204,181,9,0,196,209,170,61,224,182,9,0,196,209,114,144,79,80,10,0,198,81,224,174,217,9,7,0,198,209,131,32,58,75,7,0,199,209,155,183,216,51,9,0,199,209,155,183,175,52,9,0,201,209,86,13,64,47,7,0,202,81,127,245,183,249,6,0,202,209,110,213,204,181,9,0,202,209,110,213,224,182,9,0,202,209,157,149,95,153,10,0,203,81,18,112,253,38,9,0,203,81,18,112,207,40,9,0,204,209,18,157,218,93,7,0,205,81,38,187,0,55,7,0,205,81,7,195,0,55,7,0,205,81,38,187,163,57,7,0,205,81,7,195,163,57,7,0,207,81,106,152,23,27,7,0,207,81,0,90,195,100,11,0,208,209,97,98,134,19,7,0,208,81,109,184,151,164,8,0,213,209,222,103,248,211,10,0,214,81,42,251,102,214,8,0,214,81,42,251,14,218,8,0,215,81,226,227,30,0,7,0,215,209,121,11,23,27,7,0,220,81,187,222,145,114,7,0,226,209,249,58,129,11,11,0,228,209,250,205,29,120,7,0,231,209,159,149,0,55,7,0,232,209,97,48,72,102,9,0,232,209,97,48,254,102,9,0,233,81,218,30,148,213,8,0,233,81,218,30,183,213,8,0,234,209,157,99,135,61,7,0,234,209,39,160,83,126,8,0,237,209,145,147,209,18,7,0,240,209,105,143,17,91,6,0,240,81,100,166,12,99,7,0,241,209,103,176,145,12,8,0,245,81,96,202,230,221,10,0,247,209,188,5,219,131,6,0,252,81,192,91,179,58,6,0,252,209,142,59,144,215,10,0,253,81,228,194,76,243,5,0,254,209,41,127,209,19,10,0,255,81,133,234,194,138,7,0,255,209,57,187,20,8,9,0,255,209,57,187,247,8,9,0,255,209,57,187,210,9,9,0,1,210,43,35,246,243,9,0,1,210,43,35,59,245,9,0,1,210,43,35,131,246,9,0,2,210,41,55,120,102,8,0,3,82,158,115,132,21,9,0,3,82,158,115,157,23,9,0,4,82,34,158,60,152,7,0,4,82,34,158,190,122,8,0,4,82,34,158,83,123,8,0,4,82,34,158,244,123,8,0,4,82,34,158,210,33,10,0,5,82,15,80,75,112,7,0,7,82,229,111,98,4,6,0,7,210,10,10,216,51,9,0,7,210,10,10,175,52,9,0,8,82,20,6,127,201,7,0,8,82,75,152,15,92,9,0,8,82,75,152,90,92,9,0,8,82,75,152,162,92,9,0,9,82,44,116,219,238,8,0,9,82,44,116,39,240,8,0,9,82,44,116,117,241,8,0,10,82,254,132,186,53,9,0,10,82,254,132,77,54,9,0,12,210,206,145,132,21,9,0,12,210,206,145,157,23,9,0,12,210,85,255,4,52,10,0,13,82,240,191,139,14,10,0,13,82,240,191,50,15,10,0,14,210,233,87,217,9,7,0,15,210,40,137,152,65,7,0,16,210,61,145,113,171,10,0,16,210,65,233,57,192,10,0,17,210,157,28,220,180,7,0,22,82,92,162,219,238,8,0,22,82,92,162,39,240,8,0,22,82,92,162,117,241,8,0,23,82,115,231,207,48,7,0,25,82,203,192,134,19,7,0,27,210,98,27,48,173,6,0,27,210,42,92,0,55,7,0,33,82,20,26,135,44,7,0,35,82,176,144,23,44,11,0,36,82,77,76,139,5,11,0,37,210,156,197,117,51,7,0,37,210,156,197,111,53,7,0,37,210,156,197,242,163,7,0,37,210,143,34,16,183,8,0,37,210,143,34,251,191,8,0,37,210,143,34,239,200,8,0,39,82,10,183,52,114,6,0,39,82,10,183,193,100,10,0,39,82,10,183,89,103,10,0,40,210,228,241,19,134,7,0,45,210,63,8,235,114,11,0,48,82,187,97,161,77,7,0,49,210,219,152,27,9,7,0,50,210,206,61,206,214,6,0,50,210,127,144,23,27,7,0,51,82,163,147,229,62,11,0,52,210,7,37,71,250,6,0,53,82,167,212,194,138,7,0,55,210,241,114,132,159,8,0,56,210,244,103,73,38,7,0,57,82,253,187,66,66,6,0,57,82,49,89,34,172,6,0,59,210,251,110,235,213,10,0,60,82,84,113,145,114,7,0,60,82,51,166,220,203,10,0,65,210,189,209,60,152,7,0,65,210,188,75,186,158,9,0,65,210,188,75,5,159,9,0,65,210,189,209,210,12,10,0,65,82,210,169,153,32,11,0,67,210,121,224,240,248,6,0,71,210,102,217,4,52,10,0,72,82,68,86,60,152,7,0,72,82,68,86,5,4,9,0,72,82,68,86,54,4,9,0,76,210,69,187,119,7,7,0,76,210,250,172,241,190,7,0,76,82,46,217,111,81,9,0,76,82,46,217,4,82,9,0,76,82,101,9,4,52,10,0,77,210,87,174,194,138,7,0,77,210,193,120,238,81,10,0,78,82,173,30,135,149,7,0,78,82,173,30,214,99,10,0,78,82,173,30,22,100,10,0,78,82,173,30,82,100,10,0,81,82,202,155,253,38,9,0,81,82,202,155,207,40,9,0,82,82,189,54,23,27,7,0,84,82,26,14,135,61,7,0,86,82,11,28,228,66,7,0,87,82,189,154,72,78,6,0,89,82,157,66,116,72,7,0,89,82,67,102,194,138,7,0,91,82,103,27,218,93,7,0,91,82,38,185,39,47,9,0,91,82,38,185,54,48,9,0,92,82,205,166,141,252,6,0,93,82,36,44,51,104,7,0,94,82,69,144,0,55,7,0,94,82,69,144,163,57,7,0,97,210,116,230,134,19,7,0,97,210,212,53,75,112,7,0,99,210,202,100,58,75,7,0,100,82,154,86,75,64,7,0,101,82,2,59,145,114,7,0,101,210,191,186,36,247,10,0,102,210,176,155,194,138,7,0,102,210,153,238,4,52,10,0,102,82,100,198,100,88,11,0,103,82,55,45,163,57,7,0,103,82,55,45,130,83,7,0,109,82,181,244,68,107,9,0,109,82,181,244,90,107,9,0,110,82,3,251,65,41,7,0,111,210,66,56,129,80,7,0,116,210,231,0,86,244,6,0,116,82,31,82,243,134,11,0,121,82,16,192,102,214,8,0,121,82,16,192,14,218,8,0,123,210,104,113,184,89,7,0,124,210,192,3,97,16,7,0,124,210,192,3,55,108,7,0,125,82,196,19,126,99,6,0,125,82,199,95,48,245,6,0,127,210,180,217,111,4,9,0,127,210,180,217,41,6,9,0,128,210,52,241,64,47,7,0,128,210,39,143,87,69,9,0,128,210,39,143,181,69,9,0,129,82,227,239,4,52,10,0,131,82,135,171,79,246,5,0,132,210,171,92,227,246,6,0,132,82,233,68,16,183,8,0,132,82,233,68,251,191,8,0,132,82,233,68,239,200,8,0,133,210,10,23,101,225,6,0,136,210,125,47,135,2,9,0,136,210,125,47,47,3,9,0,138,210,31,196,203,142,6,0,138,82,242,149,145,114,7,0,141,82,100,160,40,201,10,0,144,210,137,16,124,22,10,0,144,210,137,16,179,22,10,0,144,210,137,16,235,22,10,0,146,210,9,253,16,183,8,0,146,210,9,253,251,191,8,0,146,210,9,253,239,200,8,0,146,82,213,117,149,53,11,0,147,82,219,218,150,142,11,0,149,210,39,176,21,71,9,0,149,210,39,176,100,72,9,0,149,210,39,176,181,73,9,0,149,210,39,176,11,75,9,0,151,210,245,123,194,138,7,0,151,210,177,109,11,45,11,0,151,82,213,117,58,62,11,0,152,82,151,198,60,152,7,0,152,82,151,198,50,110,10,0,152,82,151,198,112,110,10,0,153,82,227,95,11,110,6,0,155,210,31,55,169,251,6,0,155,210,169,207,198,43,10,0,155,210,169,207,251,43,10,0,155,210,86,244,159,122,11,0,156,210,60,69,6,18,11,0,161,210,114,78,130,197,7,0,161,210,114,78,182,197,7,0,164,210,112,234,60,77,10,0,164,210,112,234,232,77,10,0,165,82,145,153,102,214,8,0,165,82,145,153,14,218,8,0,166,210,12,31,177,105,7,0,169,210,54,250,234,216,10,0,174,210,32,2,73,223,6,0,176,82,255,61,90,86,11,0,178,82,26,171,39,35,7,0,178,82,26,171,60,152,7,0,178,82,26,171,128,112,8,0,180,82,150,13,135,149,7,0,181,210,208,245,233,65,9,0,181,210,208,245,2,66,9,0,183,82,207,151,131,222,8,0,183,82,207,151,38,223,8,0,183,82,207,151,206,223,8,0,183,82,91,19,246,243,9,0,183,82,91,19,59,245,9,0,183,82,91,19,131,246,9,0,184,82,13,162,209,18,7,0,184,82,237,224,20,30,10,0,184,82,237,224,115,30,10,0,184,82,237,224,207,30,10,0,185,82,102,209,135,242,6,0,188,82,74,186,16,183,8,0,188,82,74,186,251,191,8,0,188,82,74,186,239,200,8,0,189,82,74,81,194,138,7,0,191,210,69,81,53,163,10,0,192,82,222,248,182,13,7,0,193,82,11,186,44,87,8,0,193,82,11,186,223,174,10,0,195,210,27,243,75,112,7,0,197,82,187,80,222,244,6,0,197,210,134,27,153,113,10,0,197,210,134,27,27,114,10,0,198,210,108,247,214,165,10,0,198,210,108,247,240,165,10,0,199,82,80,79,133,12,7,0,199,210,162,209,50,16,10,0,199,210,162,209,85,16,10,0,199,210,162,209,119,16,10,0,200,82,231,6,194,138,7,0,203,82,17,206,60,152,7,0,203,82,27,235,45,33,9,0,203,82,27,235,120,33,9,0,203,82,17,206,87,211,9,0,208,210,117,139,117,172,7,0,210,210,122,253,247,33,6,0,211,82,133,40,128,39,7,0,214,210,30,127,31,149,11,0,215,210,164,149,102,214,8,0,215,210,164,149,14,218,8,0,216,82,195,119,218,93,7,0,218,82,145,237,28,189,6,0,220,82,218,194,44,157,9,0,220,82,218,194,89,157,9,0,220,210,159,126,99,1,10,0,220,210,159,126,123,1,10,0,220,82,206,32,83,156,11,0,222,210,35,182,27,93,6,0,223,210,155,250,56,221,6,0,225,82,234,204,202,203,9,0,225,82,234,204,237,203,9,0,225,82,234,204,28,204,9,0,226,210,103,36,24,242,6,0,227,210,181,254,174,75,6,0,231,210,57,207,156,168,10,0,232,210,22,80,229,109,7,0,234,82,27,7,194,138,7,0,234,82,31,81,65,177,10,0,234,210,84,35,203,142,11,0,235,210,115,188,196,128,6,0,235,82,164,236,60,152,7,0,235,82,164,236,182,161,7,0,236,210,31,158,199,101,11,0,239,82,214,38,63,149,10,0,243,210,213,34,228,234,6,0,245,82,20,128,39,184,9,0,245,82,20,128,92,184,9,0,247,210,81,153,161,77,7,0,248,82,32,136,135,149,7,0,248,82,32,136,161,251,9,0,248,82,32,136,176,251,9,0,251,210,5,175,218,93,7,0,254,210,70,22,145,114,7,0,4,83,232,3,134,107,10,0,4,83,232,3,210,107,10,0,12,83,215,190,168,152,9,0,13,83,105,33,20,8,9,0,13,83,105,33,247,8,9,0,13,83,105,33,210,9,9,0,15,211,60,237,195,163,10,0,16,211,53,246,224,237,6,0,16,211,137,57,16,183,8,0,16,211,137,57,251,191,8,0,16,211,137,57,239,200,8,0,18,211,211,252,62,26,9,0,18,211,211,252,116,26,9,0,20,83,146,126,219,238,8,0,20,83,146,126,39,240,8,0,20,83,146,126,117,241,8,0,22,211,21,207,160,79,8,0,23,83,58,104,134,19,7,0,29,83,215,122,60,182,8,0,30,211,48,244,118,199,6,0,30,211,73,218,60,152,7,0,30,211,73,218,79,237,8,0,31,83,105,27,60,152,7,0,31,83,125,178,169,165,10,0,33,83,135,62,23,166,6,0,34,83,4,201,134,19,7,0,35,83,141,97,104,67,7,0,36,83,44,162,19,187,10,0,38,211,117,123,21,138,7,0,38,211,117,123,21,138,7,0,41,211,227,19,150,45,9,0,41,211,227,19,18,46,9,0,43,211,132,255,250,6,6,0,48,211,95,139,23,26,8,0,51,211,92,207,209,18,7,0,51,83,164,43,135,44,7,0,53,211,233,71,145,114,7,0,54,211,9,32,186,218,5,0,54,211,96,69,164,139,10,0,55,211,180,47,194,138,7,0,56,83,107,149,52,87,10,0,56,83,107,149,117,87,10,0,57,211,174,35,16,183,8,0,57,211,174,35,251,191,8,0,57,211,174,35,239,200,8,0,58,83,197,197,107,226,9,0,58,83,197,197,251,226,9,0,59,83,142,42,144,81,7,0,59,83,36,184,179,11,8,0,59,83,26,54,248,156,11,0,62,83,206,69,9,195,6,0,63,83,51,32,23,27,7,0,63,83,249,224,218,93,7,0,63,211,164,204,29,120,7,0,64,211,252,237,16,183,8,0,64,211,252,237,251,191,8,0,64,211,252,237,239,200,8,0,65,83,61,166,5,199,6,0,68,211,190,138,100,92,7,0,70,83,209,55,12,99,7,0,71,211,167,124,109,105,6,0,71,211,167,124,140,200,7,0,71,211,126,106,189,218,10,0,73,211,225,57,32,66,7,0,73,83,61,255,157,188,7,0,75,211,207,38,18,221,5,0,79,211,192,0,0,55,7,0,79,211,192,0,163,57,7,0,79,211,192,0,202,171,10,0,86,211,54,151,95,129,11,0,89,211,250,86,14,182,6,0,91,83,99,94,190,226,5,0,93,83,138,6,132,21,9,0,93,83,138,6,157,23,9,0,94,211,175,116,123,51,6,0,94,83,45,164,4,52,10,0,97,211,115,105,231,37,10,0,97,211,115,105,12,38,10,0,99,211,154,107,239,42,6,0,99,211,154,107,104,156,6,0,101,211,87,215,45,226,8,0,101,211,87,215,130,231,8,0,102,211,133,66,188,198,6,0,105,211,37,179,45,226,8,0,105,211,37,179,130,231,8,0,106,211,255,40,168,104,8,0,106,211,255,40,45,105,8,0,106,211,255,40,167,105,8,0,107,83,133,246,29,120,7,0,107,211,204,238,168,152,9,0,108,211,235,21,14,228,5,0,109,83,240,163,67,17,7,0,109,83,34,176,135,149,7,0,109,83,34,176,60,152,7,0,109,83,34,176,94,164,7,0,109,83,122,143,111,4,9,0,109,83,122,143,41,6,9,0,111,211,35,159,179,122,9,0,113,83,83,178,199,83,7,0,114,83,252,199,253,38,9,0,114,83,252,199,207,40,9,0,114,211,209,190,253,59,10,0,114,211,209,190,144,60,10,0,114,211,209,190,39,61,10,0,116,83,136,86,91,130,10,0,117,211,203,216,252,242,8,0,117,211,203,216,240,243,8,0,118,211,250,16,179,244,6,0,120,83,134,171,163,57,7,0,120,83,134,171,39,234,10,0,123,83,60,81,18,243,6,0,127,83,18,45,255,70,7,0,127,211,165,156,218,93,7,0,127,211,66,227,29,120,7,0,128,83,102,227,155,194,6,0,129,211,99,203,124,176,7,0,130,211,199,171,38,92,7,0,130,83,113,27,238,81,10,0,131,83,226,187,0,55,7,0,131,83,226,187,163,57,7,0,131,83,89,103,220,180,7,0,133,83,106,119,218,93,7,0,135,83,142,107,180,230,10,0,138,83,121,240,0,55,7,0,138,83,121,240,163,57,7,0,139,211,49,112,175,80,7,0,145,211,105,247,62,223,9,0,145,211,105,247,64,224,9,0,145,211,105,247,93,225,9,0,146,211,75,45,98,97,6,0,147,211,252,96,136,1,7,0,147,83,31,239,58,212,8,0,147,83,31,239,201,212,8,0,147,211,15,221,217,238,9,0,147,211,15,221,174,239,9,0,149,83,159,167,20,116,6,0,151,211,102,184,45,8,8,0,151,211,200,133,168,152,9,0,151,83,236,24,206,164,10,0,155,83,60,5,102,15,7,0,156,83,179,91,235,7,7,0,166,83,90,197,241,190,7,0,167,83,204,39,6,244,6,0,167,211,146,250,97,103,7,0,167,211,188,14,161,110,10,0,167,211,188,14,2,112,10,0,169,83,20,148,221,136,11,0,171,211,82,10,209,19,10,0,173,211,83,19,137,230,5,0,174,83,175,65,73,82,7,0,182,211,135,137,64,70,7,0,183,83,65,187,231,20,6,0,184,83,74,62,47,13,7,0,185,211,73,31,4,44,7,0,186,211,191,243,16,183,8,0,186,211,191,243,251,191,8,0,186,211,191,243,239,200,8,0,188,83,239,173,29,120,7,0,189,211,199,8,145,114,7,0,193,83,105,157,75,241,6,0,193,211,140,235,16,183,8,0,193,211,140,235,251,191,8,0,193,211,140,235,239,200,8,0,194,83,91,5,176,68,7,0,200,211,215,75,45,226,8,0,200,211,215,75,130,231,8,0,201,83,148,48,175,29,9,0,201,83,148,48,175,29,9,0,201,83,148,48,88,30,9,0,201,83,148,48,88,30,9,0,202,83,145,58,222,244,6,0,203,83,92,81,139,14,10,0,203,83,92,81,50,15,10,0,204,211,185,148,16,219,6,0,205,83,72,5,103,245,6,0,205,211,143,98,134,19,7,0,205,211,146,168,194,138,7,0,207,83,79,208,169,251,6,0,207,83,188,148,120,206,7,0,212,211,100,244,16,183,8,0,212,211,100,244,251,191,8,0,212,211,100,244,239,200,8,0,217,211,224,157,223,147,10,0,220,83,19,54,116,72,7,0,222,83,77,138,175,29,9,0,222,83,77,138,88,30,9,0,224,83,52,173,239,133,8,0,224,211,221,57,232,11,9,0,224,211,221,57,15,12,9,0,224,211,221,57,89,12,9,0,225,83,184,148,19,90,7,0,225,83,184,148,41,73,10,0,225,83,184,148,70,73,10,0,226,83,244,52,226,11,7,0,226,83,244,52,60,152,7,0,226,83,244,52,63,161,7,0,226,83,244,52,80,161,7,0,232,211,19,175,194,185,9,0,232,211,19,175,96,186,9,0,233,83,207,13,22,46,10,0,233,83,207,13,98,46,10,0,233,211,29,193,39,70,11,0,233,211,29,193,200,72,11,0,234,211,49,0,119,96,7,0,234,211,213,81,135,149,7,0,235,83,181,195,58,34,6,0,236,211,60,22,216,51,9,0,236,211,60,22,175,52,9,0,237,211,171,10,4,52,10,0,240,83,170,140,4,52,10,0,241,211,50,229,194,138,7,0,245,211,152,93,58,75,7,0,246,83,61,245,242,225,5,0,246,211,2,173,212,36,6,0,246,211,195,192,194,221,10,0,248,211,164,149,42,228,5,0,250,83,178,51,2,251,6,0,250,83,92,30,83,126,8,0,254,211,151,9,134,19,7,0,255,211,218,238,190,143,6,0,255,211,218,238,199,36,7,0,255,211,171,20,119,96,7,0,0,212,108,43,143,240,6,0,0,84,146,49,29,120,7,0,1,84,83,159,29,244,6,0,2,84,56,220,22,220,5,0,3,84,176,171,169,22,11,0,7,212,9,73,187,124,11,0,9,84,241,130,111,240,5,0,9,84,241,130,236,238,7,0,10,84,117,184,23,27,7,0,11,84,14,133,83,126,8,0,12,84,76,141,240,8,7,0,13,84,19,161,246,243,9,0,13,84,19,161,59,245,9,0,13,84,19,161,131,246,9,0,16,84,82,82,246,243,9,0,16,84,82,82,59,245,9,0,16,84,82,82,131,246,9,0,19,84,99,65,194,138,7,0,20,84,137,219,53,255,10,0,21,84,31,8,28,132,10,0,21,212,69,182,133,145,10,0,23,84,11,142,238,239,6,0,23,84,7,121,253,49,7,0,24,84,180,2,187,124,11,0,26,84,213,108,156,134,6,0,26,212,135,102,34,172,6,0,29,212,219,54,164,16,9,0,29,212,219,54,141,17,9,0,29,84,105,245,192,115,9,0,29,84,105,245,215,115,9,0,30,84,3,13,186,26,9,0,30,84,3,13,120,27,9,0,30,84,3,13,48,28,9,0,32,84,115,108,60,77,10,0,32,84,115,108,232,77,10,0,35,84,3,28,137,184,7,0,37,212,199,120,2,175,11,0,38,84,246,193,240,8,7,0,39,212,192,138,220,137,10,0,42,212,166,126,161,77,7,0,42,84,244,220,37,155,10,0,43,212,75,61,240,242,5,0,43,212,75,61,194,241,6,0,49,212,138,179,248,238,10,0,51,84,161,229,207,218,5,0,51,84,161,229,101,64,7,0,51,212,252,15,205,87,7,0,51,84,161,229,198,73,8,0,51,212,31,197,45,226,8,0,51,212,31,197,130,231,8,0,52,212,39,237,30,0,7,0,52,212,44,164,145,114,7,0,52,212,87,192,139,163,9,0,52,212,87,192,241,163,9,0,54,84,52,254,202,227,5,0,54,212,140,47,194,138,7,0,54,84,201,130,16,183,8,0,54,84,201,130,251,191,8,0,54,84,201,130,239,200,8,0,55,212,204,106,191,86,7,0,56,212,138,216,23,27,7,0,56,84,187,202,60,152,7,0,56,84,187,202,113,162,7,0,57,84,35,106,102,214,8,0,57,84,35,106,14,218,8,0,59,212,195,239,82,51,7,0,60,84,113,193,187,233,6,0,68,84,157,98,57,24,8,0,68,84,157,98,220,24,8,0,71,212,68,192,161,77,7,0,71,84,216,201,240,100,11,0,72,212,25,8,0,55,7,0,72,212,25,8,163,57,7,0,73,84,75,175,83,126,8,0,75,84,113,193,142,34,6,0,75,212,174,102,134,19,7,0,75,212,252,63,16,183,8,0,75,212,252,63,251,191,8,0,75,212,252,63,239,200,8,0,75,212,154,78,75,58,9,0,75,212,154,78,123,58,9,0,77,84,255,66,186,26,9,0,77,84,255,66,120,27,9,0,77,84,255,66,48,28,9,0,82,212,86,8,60,152,7,0,82,212,86,8,79,237,8,0,89,84,201,204,45,226,8,0,89,84,201,204,130,231,8,0,89,84,13,126,55,95,10,0,89,84,13,126,143,95,10,0,91,212,175,70,135,44,7,0,92,84,215,183,62,110,7,0,92,84,215,183,106,110,7,0,92,212,85,170,91,185,9,0,92,212,85,170,119,185,9,0,93,84,218,16,134,19,7,0,93,84,212,71,23,27,7,0,96,212,231,113,194,138,7,0,98,212,40,118,0,119,10,0,99,212,125,162,196,46,7,0,102,212,56,201,163,57,7,0,103,212,35,47,142,113,7,0,105,84,137,229,194,138,7,0,106,212,121,39,62,153,10,0,107,212,21,134,218,173,6,0,107,212,21,134,255,226,7,0,108,212,143,189,253,38,9,0,108,212,143,189,207,40,9,0,109,212,89,193,96,8,7,0,109,212,35,166,95,111,7,0,109,212,66,240,16,183,8,0,109,212,66,240,251,191,8,0,109,212,66,240,239,200,8,0,109,212,89,193,59,135,10,0,109,212,109,179,192,111,11,0,112,212,119,52,116,155,11,0,113,212,198,228,182,7,8,0,115,84,104,27,117,172,7,0,115,84,79,208,33,198,10,0,116,84,245,64,115,125,6,0,119,84,128,221,148,51,6,0,125,212,212,232,89,141,6,0,126,212,210,80,202,36,11,0,129,212,219,239,116,72,7,0,130,84,160,82,66,3,7,0,130,84,94,116,237,189,7,0,131,212,6,229,224,244,5,0,131,212,218,137,240,121,6,0,131,212,54,141,16,183,8,0,131,212,54,141,251,191,8,0,131,212,54,141,239,200,8,0,131,212,218,12,161,110,10,0,131,212,218,12,2,112,10,0,134,84,16,117,221,68,6,0,134,84,16,117,6,69,6,0,134,84,16,117,60,152,7,0,134,84,16,117,140,161,7,0,134,84,16,117,151,164,7,0,135,212,103,156,193,180,8,0,136,212,53,159,217,9,7,0,138,212,177,7,51,137,10,0,140,212,139,123,156,253,6,0,140,212,173,27,4,52,10,0,141,84,231,253,45,226,8,0,141,84,231,253,130,231,8,0,145,212,149,102,226,11,7,0,145,212,149,102,95,59,9,0,145,212,149,102,147,59,9,0,146,212,145,254,194,138,7,0,152,212,52,117,55,108,7,0,154,212,124,99,14,137,9,0,154,212,124,99,201,137,9,0,154,212,243,174,253,211,9,0,154,212,243,174,31,212,9,0,154,212,243,174,72,212,9,0,154,212,79,190,82,79,11,0,156,84,187,202,220,65,7,0,157,212,175,126,216,120,6,0,157,212,181,156,65,41,7,0,157,212,198,53,18,14,11,0,158,84,205,0,180,6,11,0,159,212,247,123,13,54,6,0,159,212,247,123,107,10,7,0,161,84,137,208,119,96,7,0,162,84,200,181,145,12,8,0,162,84,129,19,120,154,10,0,163,212,187,193,134,19,7,0,165,84,189,78,43,72,10,0,165,84,189,78,148,72,10,0,166,212,195,139,156,164,11,0,167,212,66,79,39,47,9,0,167,212,66,79,54,48,9,0,173,212,198,122,125,18,9,0,173,212,198,122,34,19,9,0,174,212,237,26,102,15,7,0,175,84,210,29,126,235,10,0,178,212,182,94,66,202,9,0,178,212,182,94,100,202,9,0,179,84,24,82,58,35,9,0,179,84,24,82,31,36,9,0,180,212,56,104,75,148,7,0,180,212,56,104,191,158,7,0,184,212,254,255,104,130,10,0,185,212,218,106,29,120,7,0,190,84,110,192,145,18,7,0,191,84,55,219,196,99,8,0,191,84,119,171,207,14,9,0,191,84,119,171,54,15,9,0,192,84,174,42,2,166,11,0,193,84,100,139,112,246,7,0,193,84,159,139,62,223,9,0,193,84,159,139,64,224,9,0,193,84,159,139,93,225,9,0,194,84,80,227,213,15,9,0,194,212,67,88,139,163,9,0,194,212,67,88,241,163,9,0,194,212,210,80,201,39,11,0,195,212,71,184,138,111,7,0,197,84,10,251,134,107,10,0,197,84,10,251,210,107,10,0,199,84,174,205,11,226,5,0,199,84,174,205,211,250,6,0,199,84,233,77,23,27,7,0,199,84,108,14,135,149,7,0,199,84,108,14,23,87,9,0,199,84,108,14,47,87,9,0,202,212,10,218,93,46,7,0,202,84,197,106,131,92,10,0,202,84,197,106,178,92,10,0,202,84,218,104,227,49,11,0,203,212,52,65,16,183,8,0,203,212,52,65,251,191,8,0,203,212,52,65,239,200,8,0,203,212,221,107,168,26,11,0,204,84,94,58,235,9,6,0,205,212,84,115,56,238,7,0,207,84,251,24,16,183,8,0,207,84,251,24,251,191,8,0,207,84,251,24,239,200,8,0,209,84,254,69,52,68,6,0,209,84,83,22,194,138,7,0,209,212,145,92,60,152,7,0,209,212,145,92,104,22,8,0,209,212,145,92,148,22,8,0,209,212,224,228,197,167,8,0,211,212,100,230,65,41,7,0,211,84,253,51,163,57,7,0,215,212,125,183,218,40,8,0,217,212,96,139,244,236,10,0,219,84,159,168,119,96,7,0,220,84,71,135,79,59,9,0,220,84,71,135,95,59,9,0,220,84,71,135,147,59,9,0,221,212,87,145,30,114,7,0,221,212,87,145,66,114,7,0,221,84,243,190,52,87,10,0,221,84,243,190,117,87,10,0,223,212,70,188,103,83,6,0,223,84,250,177,244,47,11,0,226,212,150,195,145,66,6,0,228,212,64,143,176,68,7,0,229,84,202,148,250,150,8,0,229,84,202,148,54,151,8,0,229,212,164,4,111,4,9,0,229,212,164,4,41,6,9,0,231,84,104,97,2,41,7,0,234,212,10,248,163,57,7,0,234,84,140,248,18,210,8,0,234,84,140,248,113,210,8,0,234,84,140,248,217,210,8,0,234,212,10,248,248,249,10,0,234,84,140,248,27,30,11,0,237,84,226,236,52,9,10,0,237,84,226,236,77,9,10,0,237,84,226,236,101,9,10,0,237,84,203,9,4,52,10,0,238,212,147,92,94,178,10,0,242,212,247,104,194,138,7,0,248,212,123,169,206,20,8,0,248,212,123,169,2,21,8,0,248,212,123,169,51,21,8,0,248,212,123,169,106,21,8,0,249,212,138,63,65,213,5,0,249,84,45,183,0,55,7,0,249,84,45,183,163,57,7,0,249,84,83,98,203,73,11,0,250,84,131,172,116,72,7,0,251,212,128,84,206,68,9,0,251,212,128,84,252,68,9,0,255,84,167,37,120,13,6,0,1,213,177,133,143,240,6,0,2,85,142,183,96,221,6,0,2,85,142,183,0,132,9,0,3,85,133,150,12,99,7,0,3,213,46,127,131,222,8,0,3,213,46,127,38,223,8,0,3,213,46,127,206,223,8,0,3,213,244,31,168,157,10,0,4,85,46,51,1,111,11,0,5,85,89,43,124,85,6,0,6,213,136,162,26,228,7,0,7,213,50,42,119,176,6,0,11,213,193,126,119,96,7,0,13,85,104,252,213,112,6,0,13,85,54,198,193,100,10,0,13,85,54,198,89,103,10,0,15,85,28,154,201,55,9,0,15,85,28,154,253,55,9,0,16,85,228,111,0,55,7,0,16,85,228,111,163,57,7,0,17,213,76,184,32,85,9,0,17,213,76,184,62,85,9,0,18,213,144,166,69,186,6,0,18,213,3,67,0,55,7,0,21,213,178,214,236,239,10,0,22,213,121,154,19,245,8,0,22,213,121,154,76,245,8,0,28,213,158,25,12,99,7,0,31,213,102,32,145,114,7,0,31,85,114,216,186,53,9,0,31,85,114,216,77,54,9,0,34,85,159,64,36,17,11,0,37,213,25,124,231,137,6,0,38,85,88,24,23,27,7,0,38,213,151,80,128,39,7,0,41,85,197,251,134,19,7,0,44,85,243,153,16,183,8,0,44,85,243,153,251,191,8,0,44,85,243,153,239,200,8,0,47,213,235,122,12,99,7,0,48,213,186,52,100,92,7,0,48,85,21,14,29,120,7,0,51,213,84,210,64,93,11,0,52,213,214,119,122,246,6,0,52,85,180,225,89,5,7,0,52,85,148,190,163,57,7,0,52,85,148,190,213,126,10,0,52,85,148,190,9,127,10,0,56,85,59,179,23,27,7,0,60,85,223,212,192,2,7,0,60,213,207,52,116,72,7,0,60,85,234,123,162,17,10,0,60,85,234,123,182,17,10,0,60,85,234,123,206,17,10,0,66,213,166,20,105,168,10,0,67,213,102,172,51,104,7,0,69,213,143,75,60,152,7,0,69,213,143,75,151,29,9,0,74,85,158,140,16,183,8,0,74,85,158,140,251,191,8,0,74,85,158,140,239,200,8,0,75,213,34,116,63,98,8,0,75,85,194,219,118,204,9,0,75,85,194,219,149,204,9,0,76,85,211,231,134,19,7,0,76,85,211,231,248,49,9,0,76,85,211,231,23,50,9,0,77,85,233,209,104,67,7,0,77,85,52,194,16,183,8,0,77,85,52,194,251,191,8,0,77,85,52,194,239,200,8,0,78,85,197,225,117,51,7,0,80,213,160,101,61,107,6,0,80,213,100,18,194,138,7,0,81,85,237,195,64,180,11,0,82,213,185,70,171,10,11,0,86,85,86,234,128,205,10,0,90,213,172,115,139,163,9,0,90,213,172,115,241,163,9,0,92,213,82,224,16,183,8,0,92,213,82,224,251,191,8,0,92,213,82,224,239,200,8,0,93,213,115,5,184,204,10,0,93,213,115,5,224,204,10,0,93,85,64,186,98,116,11,0,94,85,5,169,161,77,7,0,94,213,0,222,58,143,11,0,97,85,99,85,3,183,6,0,98,85,26,163,29,120,7,0,99,85,207,247,194,138,7,0,99,85,108,191,6,202,7,0,100,85,0,52,10,155,11,0,100,85,0,52,26,155,11,0,103,85,220,86,102,15,7,0,104,85,130,111,96,221,6,0,104,85,130,111,0,132,9,0,105,85,197,5,51,104,7,0,109,213,101,230,136,216,7,0,112,213,39,19,225,6,6,0,114,213,184,28,14,137,9,0,114,213,184,28,201,137,9,0,115,213,46,122,13,8,7,0,115,213,204,228,115,161,9,0,115,213,204,228,104,162,9,0,116,213,218,175,29,120,7,0,116,213,67,82,45,226,8,0,116,213,67,82,130,231,8,0,116,213,60,44,164,16,9,0,116,213,60,44,141,17,9,0,118,213,215,165,55,128,11,0,121,213,224,107,12,99,7,0,123,213,76,105,168,152,9,0,124,213,202,166,45,226,8,0,124,213,202,166,130,231,8,0,124,213,168,233,55,70,9,0,124,213,168,233,92,70,9,0,124,213,76,204,60,58,11,0,127,85,99,26,89,251,6,0,132,85,117,127,240,11,6,0,132,213,146,85,168,152,9,0,136,85,207,121,224,123,9,0,136,85,207,121,29,124,9,0,136,85,207,121,109,124,9,0,139,85,182,5,253,59,10,0,139,85,182,5,144,60,10,0,139,85,182,5,39,61,10,0,140,85,158,157,12,99,7,0,140,85,39,243,168,152,9,0,146,85,102,118,125,67,10,0,146,85,102,118,69,68,10,0,147,85,183,30,59,12,7,0,149,85,218,121,45,226,8,0,149,85,218,121,130,231,8,0,149,85,203,57,169,189,9,0,149,85,203,57,197,189,9,0,149,213,91,28,219,46,10,0,150,85,203,95,24,138,8,0,153,85,55,7,79,43,6,0,153,85,14,151,134,19,7,0,153,85,14,151,19,90,7,0,153,85,14,151,102,214,8,0,153,85,14,151,14,218,8,0,157,213,94,247,119,96,7,0,157,85,237,217,52,209,10,0,159,213,100,203,29,120,7,0,160,85,138,239,52,102,11,0,165,213,232,155,84,225,7,0,165,213,232,155,128,225,7,0,165,213,232,155,174,225,7,0,166,213,72,209,213,188,7,0,168,85,217,212,145,114,7,0,174,85,25,198,221,6,11,0,176,213,113,13,188,213,9,0,176,213,113,13,58,214,9,0,176,213,113,13,197,214,9,0,177,85,27,29,102,214,8,0,177,85,27,29,14,218,8,0,177,85,81,27,228,83,11,0,181,85,103,101,103,20,6,0,181,85,2,183,12,99,7,0,188,85,30,159,29,120,7,0,190,85,16,3,43,241,9,0,194,213,176,106,145,114,7,0,194,85,49,84,86,56,9,0,194,85,49,84,9,57,9,0,194,85,221,5,108,95,9,0,194,85,221,5,141,95,9,0,196,85,11,79,207,74,6,0,196,85,143,27,194,138,7,0,199,85,165,99,134,19,7,0,203,213,54,48,32,20,9,0,203,213,54,48,179,20,9,0,207,85,120,192,102,214,8,0,207,85,120,192,14,218,8,0,208,213,240,191,125,67,10,0,208,213,240,191,69,68,10,0,209,213,1,61,119,96,7,0,213,85,129,234,134,19,7,0,213,85,207,31,58,35,9,0,213,85,207,31,31,36,9,0,213,85,207,32,86,56,9,0,213,85,207,32,9,57,9,0,215,213,112,164,18,89,11,0,216,213,10,160,253,38,9,0,216,213,10,160,207,40,9,0,218,85,255,127,142,226,5,0,224,213,187,50,194,138,7,0,225,213,21,173,228,127,6,0,225,213,32,129,32,20,9,0,225,213,32,129,179,20,9,0,227,213,1,81,100,224,7,0,229,85,201,5,86,244,6,0,231,213,253,200,100,92,7,0,234,85,140,7,139,207,7,0,238,213,207,169,217,9,7,0,239,213,222,198,219,247,6,0,244,213,238,229,135,44,7,0,244,85,0,79,145,114,7,0,246,85,39,169,236,72,11,0,249,85,13,137,145,54,6,0,252,213,90,136,16,183,8,0,252,213,90,136,251,191,8,0,252,213,90,136,239,200,8,0,252,213,10,46,246,243,9,0,252,213,10,46,59,245,9,0,252,213,10,46,131,246,9,0,1,214,6,153,142,9,7,0,2,86,16,170,220,93,6,0,6,214,194,250,119,96,7,0,11,86,72,106,132,21,9,0,11,86,72,106,157,23,9,0,14,214,152,248,182,0,6,0,14,214,234,222,145,12,8,0,17,86,112,167,249,130,11,0,20,86,108,153,16,183,8,0,20,86,108,153,251,191,8,0,20,86,108,153,239,200,8,0,22,86,48,148,132,21,9,0,22,86,48,148,157,23,9,0,27,86,171,122,103,218,6,0,27,86,29,229,163,57,7,0,27,86,228,233,179,122,9,0,30,86,93,193,168,152,9,0,31,86,31,43,134,19,7,0,32,214,166,205,115,7,11,0,32,214,166,205,195,9,11,0,36,214,81,132,104,103,8,0,36,214,81,132,219,103,8,0,36,214,81,132,68,104,8,0,37,86,193,65,161,77,7,0,37,214,106,96,209,19,10,0,38,214,219,156,60,152,7,0,38,214,219,156,190,122,8,0,38,214,219,156,83,123,8,0,38,214,219,156,244,123,8,0,38,214,219,156,210,33,10,0,39,86,129,43,21,138,7,0,41,214,25,96,205,165,6,0,41,86,209,155,114,84,7,0,41,214,211,70,28,179,8,0,46,214,216,118,163,57,7,0,46,214,216,118,131,47,11,0,56,214,2,223,248,53,6,0,57,86,153,134,58,244,10,0,59,214,162,150,29,120,7,0,60,214,153,100,204,207,6,0,62,214,34,26,4,52,10,0,64,214,151,102,47,13,7,0,65,86,186,186,126,254,5,0,65,86,186,186,171,147,6,0,65,214,184,199,117,51,7,0,65,214,184,199,111,53,7,0,65,86,186,186,92,9,8,0,66,86,55,200,100,92,7,0,67,214,156,231,199,157,6,0,67,86,7,217,102,214,8,0,67,86,7,217,14,218,8,0,68,86,133,173,230,162,10,0,68,86,133,173,101,180,10,0,68,86,133,173,138,180,10,0,69,86,160,68,218,93,7,0,70,214,98,112,92,165,9,0,70,214,98,112,116,165,9,0,70,214,98,112,140,165,9,0,72,214,157,212,108,49,7,0,72,86,173,4,135,2,9,0,72,86,173,4,47,3,9,0,73,86,31,130,64,91,6,0,73,86,48,29,194,138,7,0,74,86,170,65,229,90,8,0,74,86,170,65,16,91,8,0,75,86,220,11,102,214,8,0,75,86,220,11,14,218,8,0,76,86,10,249,191,86,7,0,76,214,175,18,145,12,8,0,77,214,128,114,204,181,9,0,77,214,128,114,224,182,9,0,82,86,150,170,179,80,10,0,82,86,150,170,207,80,10,0,82,86,150,170,231,80,10,0,83,214,95,174,56,238,7,0,84,214,84,196,201,55,9,0,84,214,84,196,253,55,9,0,85,86,249,208,16,183,8,0,85,86,249,208,251,191,8,0,85,86,249,208,239,200,8,0,86,214,53,136,110,23,11,0,90,86,56,218,186,26,9,0,90,86,56,218,120,27,9,0,90,86,56,218,48,28,9,0,93,214,79,34,0,55,7,0,93,214,79,34,163,57,7,0,94,86,165,125,217,247,5,0,95,86,152,170,102,214,8,0,95,86,152,170,14,218,8,0,96,86,24,9,203,114,6,0,97,86,194,208,120,138,6,0,97,86,202,8,80,83,7,0,103,214,227,58,21,173,8,0,105,86,74,148,134,19,7,0,106,214,75,140,134,19,7,0,106,86,9,193,65,41,7,0,106,214,108,139,72,27,10,0,107,214,246,98,85,174,7,0,107,214,246,98,202,174,7,0,107,86,230,17,4,52,10,0,108,86,246,197,145,114,7,0,108,86,191,50,235,154,11,0,109,214,20,114,105,38,6,0,109,86,6,138,47,45,11,0,110,86,162,82,115,161,9,0,110,86,162,82,104,162,9,0,110,214,210,201,193,100,10,0,110,214,210,201,89,103,10,0,111,86,175,242,158,93,6,0,112,86,102,194,189,199,6,0,114,86,239,12,135,149,7,0,114,86,239,12,24,65,10,0,115,214,20,203,29,120,7,0,115,214,148,144,111,81,9,0,115,214,148,144,4,82,9,0,118,214,113,85,107,10,7,0,118,214,140,109,0,55,7,0,118,214,140,109,163,57,7,0,119,86,9,21,134,19,7,0,119,86,26,74,220,39,7,0,121,214,158,94,99,36,7,0,121,214,158,94,161,77,7,0,123,86,236,125,243,238,6,0,123,214,127,151,86,243,6,0,123,214,156,215,77,11,7,0,123,214,210,83,228,66,7,0,125,86,87,153,131,37,11,0,127,214,118,206,238,75,6,0,127,214,44,251,96,221,6,0,127,214,44,251,0,132,9,0,128,214,104,100,54,180,6,0,128,214,0,37,194,138,7,0,129,86,43,143,87,69,9,0,129,86,43,143,181,69,9,0,130,86,121,85,100,224,7,0,132,86,200,156,39,184,9,0,132,86,200,156,92,184,9,0,135,214,81,48,194,138,7,0,135,214,84,77,39,47,9,0,135,214,84,77,54,48,9,0,135,86,97,207,22,46,10,0,135,86,97,207,98,46,10,0,139,86,102,84,115,2,7,0,140,214,168,222,161,110,10,0,140,214,168,222,2,112,10,0,141,214,19,227,12,99,7,0,141,214,103,158,112,220,7,0,143,214,221,163,75,247,8,0,143,214,221,163,171,247,8,0,143,214,204,203,168,152,9,0,143,214,204,203,203,210,10,0,143,214,204,203,149,212,10,0,144,214,119,102,119,96,7,0,144,214,18,201,21,138,7,0,145,86,127,35,0,55,7,0,145,86,127,35,163,57,7,0,146,214,73,98,134,19,7,0,148,214,91,48,161,77,7,0,148,214,85,210,194,138,7,0,150,86,158,226,255,110,7,0,151,214,90,36,167,242,9,0,155,86,50,78,64,48,7,0,155,86,95,27,1,136,7,0,155,86,95,27,135,149,7,0,155,86,75,104,151,186,7,0,155,86,91,49,215,195,10,0,155,214,198,37,100,217,10,0,157,214,192,129,211,17,7,0,157,214,0,50,130,86,7,0,157,86,133,87,92,9,8,0,158,86,52,192,16,183,8,0,158,86,52,192,251,191,8,0,158,86,52,192,239,200,8,0,159,86,149,89,125,62,6,0,160,86,152,186,92,9,8,0,162,86,44,78,16,183,8,0,162,86,44,78,251,191,8,0,162,86,44,78,239,200,8,0,162,86,233,10,160,111,11,0,163,214,156,25,12,99,7,0,163,86,86,250,164,16,9,0,163,86,86,250,141,17,9,0,163,86,77,34,14,137,9,0,163,86,77,34,201,137,9,0,164,86,201,57,222,188,10,0,165,214,117,9,145,114,7,0,168,86,223,21,138,171,7,0,169,214,105,27,134,19,7,0,169,86,138,59,20,55,9,0,169,86,138,59,44,55,9,0,171,214,172,122,247,129,7,0,171,214,81,163,20,30,10,0,171,214,81,163,115,30,10,0,171,214,81,163,207,30,10,0,171,86,122,127,4,52,10,0,173,86,237,96,23,27,7,0,173,86,248,145,0,55,7,0,173,86,248,145,163,57,7,0,175,214,29,110,145,114,7,0,175,86,36,5,156,185,10,0,177,86,45,68,112,246,7,0,178,214,90,142,29,203,6,0,178,214,90,142,161,77,7,0,181,86,160,247,43,72,10,0,181,86,160,247,148,72,10,0,184,214,206,59,96,1,7,0,184,214,91,211,3,74,11,0,185,214,134,189,134,76,8,0,185,86,118,200,15,220,10,0,188,214,169,174,252,242,8,0,188,214,169,174,240,243,8,0,189,214,87,14,212,243,6,0,191,86,44,29,29,120,7,0,194,214,7,57,82,51,7,0,197,214,81,18,77,11,7,0,200,86,112,167,64,112,11,0,204,86,194,190,125,18,9,0,204,86,194,190,34,19,9,0,206,86,4,50,4,52,10,0,207,86,11,162,85,66,9,0,207,86,11,162,117,66,9,0,207,86,11,162,153,66,9,0,210,214,246,224,134,19,7,0,212,86,107,178,23,27,7,0,212,86,62,91,228,66,7,0,212,86,187,118,194,185,9,0,212,86,187,118,96,186,9,0,216,214,72,133,161,77,7,0,218,214,25,69,16,37,7,0,221,214,85,35,4,52,10,0,222,214,75,150,12,99,7,0,222,214,69,55,111,4,9,0,222,214,69,55,41,6,9,0,224,86,246,36,209,18,7,0,224,86,48,166,172,87,7,0,224,86,48,166,194,243,7,0,224,214,124,255,231,148,9,0,224,214,124,255,6,149,9,0,224,214,124,255,30,149,9,0,225,214,9,126,117,51,7,0,225,214,9,126,111,53,7,0,226,214,99,218,218,38,6,0,227,214,37,173,111,81,9,0,227,214,37,173,4,82,9,0,228,214,156,123,194,138,7,0,235,86,221,192,48,149,11,0,239,86,89,59,220,93,8,0,240,214,22,227,5,65,8,0,240,214,22,227,53,65,8,0,240,214,22,227,95,65,8,0,240,214,224,254,143,158,11,0,241,214,183,162,34,72,7,0,241,214,220,212,138,171,7,0,242,214,143,179,187,8,7,0,242,214,210,66,193,180,8,0,246,214,222,174,203,126,6,0,246,86,205,251,29,120,7,0,246,214,222,174,135,149,7,0,246,214,222,174,2,140,8,0,247,214,160,221,119,96,7,0,248,214,226,217,83,151,10,0,249,86,218,173,57,5,7,0,255,86,89,217,194,138,7,0,0,215,239,121,49,36,6,0,0,215,14,234,145,114,7,0,1,215,138,254,18,210,8,0,1,215,138,254,113,210,8,0,1,215,138,254,217,210,8,0,2,87,193,165,119,96,7,0,2,215,195,67,12,99,7,0,3,215,168,11,25,108,11,0,4,215,24,118,104,238,6,0,4,215,162,177,167,242,9,0,6,215,81,165,163,57,7,0,6,215,81,165,16,183,8,0,6,215,81,165,251,191,8,0,6,215,81,165,239,200,8,0,8,215,227,89,163,57,7,0,8,215,249,151,22,91,7,0,8,215,227,89,178,183,10,0,10,87,1,102,45,226,8,0,10,87,1,102,130,231,8,0,10,87,87,184,8,41,11,0,11,87,168,255,145,114,7,0,11,87,33,4,118,151,7,0,11,87,201,6,176,191,7,0,11,87,201,6,93,34,10,0,11,87,201,6,146,34,10,0,11,87,201,6,206,34,10,0,16,87,124,198,145,12,8,0,16,87,128,64,4,52,10,0,17,87,170,245,146,76,9,0,17,87,170,245,63,77,9,0,18,87,199,67,55,27,6,0,19,215,86,244,253,38,9,0,19,215,86,244,207,40,9,0,21,87,170,173,86,169,9,0,21,87,170,173,109,169,9,0,21,87,170,173,128,169,9,0,25,215,188,193,252,169,7,0,25,215,151,25,4,52,10,0,25,215,248,179,29,137,10,0,25,215,248,179,39,173,10,0,27,87,205,196,145,114,7,0,29,87,82,80,145,114,7,0,29,215,168,167,57,71,8,0,29,215,168,167,119,71,8,0,29,215,168,167,171,71,8,0,30,215,21,109,134,19,7,0,31,215,31,134,115,85,9,0,31,215,31,134,150,85,9,0,31,215,31,134,187,85,9,0,32,87,34,76,42,115,6,0,33,87,17,78,206,238,6,0,33,215,8,47,13,99,11,0,34,87,75,233,168,72,11,0,39,87,46,33,218,93,7,0,39,87,223,72,16,183,8,0,39,215,27,224,16,183,8,0,39,87,223,72,251,191,8,0,39,215,27,224,251,191,8,0,39,87,223,72,239,200,8,0,39,215,27,224,239,200,8,0,40,215,210,28,23,27,7,0,42,215,175,99,60,152,7,0,42,215,175,99,181,168,7,0,43,87,160,185,101,82,6,0,43,215,0,204,134,19,7,0,44,87,183,61,116,72,7,0,44,215,93,158,194,138,7,0,44,215,164,240,56,111,11,0,45,215,124,61,168,3,8,0,45,215,124,61,209,3,8,0,46,215,15,147,207,200,9,0,46,215,15,147,230,200,9,0,46,215,15,147,4,201,9,0,48,215,192,235,65,41,7,0,52,87,64,215,209,19,10,0,54,215,33,184,114,47,6,0,58,215,157,201,67,127,11,0,60,87,75,112,216,0,6,0,64,87,114,135,120,138,6,0,66,215,113,27,217,103,7,0,68,215,208,26,214,116,8,0,70,215,171,114,73,38,7,0,70,87,49,8,12,99,7,0,71,215,235,200,191,86,7,0,71,87,175,22,145,114,7,0,72,87,152,121,156,253,6,0,72,87,46,115,20,8,9,0,72,87,46,115,247,8,9,0,72,87,46,115,210,9,9,0,73,87,166,177,32,107,7,0,73,87,166,177,130,107,7,0,75,87,92,127,89,5,7,0,75,215,91,236,186,26,9,0,75,215,91,236,120,27,9,0,75,215,91,236,48,28,9,0,78,87,228,157,184,209,5,0,81,87,57,126,31,243,5,0,81,87,223,247,4,52,10,0,82,215,43,116,16,37,7,0,84,87,122,75,73,38,7,0,85,87,103,72,29,14,6,0,85,87,103,72,73,130,7,0,86,87,47,104,220,180,7,0,86,215,236,170,58,212,8,0,86,215,236,170,201,212,8,0,87,215,254,86,233,83,7,0,88,87,107,190,23,27,7,0,91,215,71,100,60,152,7,0,91,215,71,100,122,115,10,0,92,87,212,236,16,183,8,0,92,87,212,236,251,191,8,0,92,87,212,236,239,200,8,0,95,87,130,243,104,101,9,0,95,87,130,243,137,101,9,0,95,87,130,243,161,101,9,0,96,87,167,247,116,133,8,0,96,87,167,247,172,133,8,0,97,87,12,2,115,85,9,0,97,87,12,2,150,85,9,0,97,87,12,2,187,85,9,0,97,215,94,227,250,218,10,0,98,215,153,65,208,12,7,0,98,215,233,142,29,120,7,0,98,87,148,190,60,152,7,0,98,87,148,190,35,161,7,0,100,87,243,167,56,238,7,0,101,87,153,177,167,242,9,0,102,87,32,117,135,61,7,0,104,87,114,33,194,138,7,0,104,87,87,45,241,190,7,0,105,87,156,89,39,184,9,0,105,87,156,89,92,184,9,0,105,215,182,56,224,139,11,0,111,215,231,84,194,138,7,0,113,215,21,133,101,225,6,0,114,87,20,57,23,27,7,0,117,215,203,229,73,40,6,0,117,215,190,60,113,102,11,0,117,87,59,224,2,175,11,0,118,87,2,103,0,55,7,0,118,87,2,103,163,57,7,0,119,215,189,190,67,6,7,0,119,87,66,216,102,214,8,0,119,87,66,216,14,218,8,0,121,87,97,205,23,27,7,0,121,215,161,25,135,44,7,0,123,87,129,214,29,14,6,0,123,215,59,96,58,75,7,0,123,215,197,85,119,96,7,0,123,87,129,214,73,130,7,0,127,87,208,98,3,70,7,0,127,87,208,98,205,87,7,0,128,215,70,128,136,1,7,0,128,215,70,128,10,2,7,0,128,215,47,7,23,27,7,0,132,215,126,245,64,211,5,0,133,215,149,18,161,77,7,0,133,215,180,222,16,183,8,0,133,215,180,222,251,191,8,0,133,215,180,222,239,200,8,0,134,87,170,107,190,82,9,0,134,87,170,107,223,82,9,0,135,87,29,219,246,62,7,0,135,215,56,206,4,52,10,0,137,87,71,17,245,36,11,0,139,215,45,33,249,0,9,0,139,215,45,33,36,1,9,0,140,87,101,30,152,241,6,0,140,87,14,192,145,114,7,0,140,87,85,135,4,52,10,0,145,87,147,147,16,183,8,0,145,87,147,147,251,191,8,0,145,87,147,147,239,200,8,0,146,215,22,221,145,114,7,0,147,87,140,125,99,101,6,0,148,215,61,242,134,19,7,0,148,87,3,84,119,96,7,0,151,87,127,66,117,51,7,0,151,87,127,66,111,53,7,0,151,87,105,143,193,100,10,0,151,87,105,143,89,103,10,0,156,215,86,171,250,87,10,0,157,215,181,57,209,18,7,0,163,87,251,125,145,114,7,0,163,87,1,240,186,53,9,0,163,87,1,240,77,54,9,0,167,215,7,154,64,110,6,0,170,215,46,55,45,33,9,0,170,215,46,55,120,33,9,0,172,215,34,16,83,126,8,0,173,215,131,247,129,248,6,0,173,215,205,92,142,250,10,0,174,87,25,58,128,39,7,0,174,215,20,215,81,192,7,0,174,215,87,184,125,18,9,0,174,215,87,184,34,19,9,0,175,215,132,99,134,19,7,0,175,87,113,193,117,234,10,0,177,87,243,67,33,150,6,0,178,87,208,31,11,192,6,0,178,87,32,132,245,13,8,0,180,87,210,214,24,180,6,0,188,215,1,144,19,90,7,0,188,215,19,146,77,236,7,0,189,215,161,131,60,248,6,0,189,215,142,249,16,183,8,0,189,215,142,249,251,191,8,0,189,215,142,249,239,200,8,0,191,87,94,205,49,63,6,0,192,87,122,231,192,6,7,0,193,87,130,239,145,114,7,0,194,215,37,142,194,138,7,0,195,215,200,163,194,138,7,0,195,215,200,163,226,164,7,0,196,87,61,144,145,114,7,0,199,87,44,236,4,52,10,0,201,215,103,62,29,14,6,0,201,215,103,62,73,130,7,0,202,215,234,27,134,19,7,0,206,215,210,54,111,210,9,0,206,215,210,54,155,210,9,0,207,87,251,201,60,152,7,0,207,87,251,201,105,44,9,0,212,87,170,180,23,27,7,0,214,87,184,54,62,216,6,0,215,215,76,84,160,88,11,0,218,87,211,11,62,136,11,0,219,215,133,164,141,47,8,0,219,87,26,7,57,220,10,0,223,87,112,141,102,214,8,0,223,87,112,141,14,218,8,0,225,87,79,196,9,101,11,0,226,215,212,131,139,254,6,0,226,215,182,1,20,8,9,0,226,215,182,1,247,8,9,0,226,215,182,1,210,9,9,0,226,87,21,126,229,150,10,0,227,87,60,56,134,19,7,0,227,87,119,145,168,152,9,0,228,215,222,79,165,224,8,0,228,215,222,79,86,225,8,0,230,215,212,9,16,37,7,0,232,87,200,69,0,168,6,0,237,87,204,190,116,161,11,0,237,87,204,190,121,166,11,0,239,87,193,165,230,145,10,0,240,87,59,132,194,138,7,0,243,215,207,12,246,62,7,0,245,87,6,197,111,79,9,0,245,87,6,197,167,79,9,0,245,87,6,197,224,79,9,0,247,215,226,107,43,89,7,0,249,215,55,248,176,79,6,0,249,215,149,241,145,114,7,0,251,87,49,101,145,12,8,0,251,215,184,101,43,114,11,0,252,87,171,67,138,171,7,0,253,87,239,17,43,165,6,0,253,215,18,60,23,208,7,0,0,88,221,85,23,27,7,0,0,216,53,39,135,44,7,0,0,88,117,27,27,176,10,0,1,216,103,39,116,150,6,0,8,216,224,133,16,37,7,0,12,88,128,82,145,114,7,0,14,216,128,58,28,140,6,0,14,88,158,12,134,19,7,0,14,88,138,251,134,19,7,0,15,216,127,226,15,184,7,0,16,216,94,97,194,138,7,0,19,88,211,239,2,92,7,0,19,88,105,164,168,152,9,0,19,216,220,168,189,11,11,0,26,216,106,21,55,108,7,0,26,88,99,247,69,223,10,0,28,88,150,84,91,19,7,0,28,88,33,91,151,186,7,0,28,216,84,85,156,42,10,0,28,216,84,85,171,42,10,0,28,216,84,85,195,42,10,0,28,88,198,33,167,45,11,0,30,88,99,246,168,152,9,0,32,88,187,43,5,119,11,0,36,88,75,166,193,100,10,0,36,88,75,166,89,103,10,0,37,88,67,231,150,69,6,0,37,88,143,251,246,62,7,0,40,88,1,57,206,76,7,0,41,88,18,86,29,14,6,0,41,88,18,86,73,130,7,0,41,88,171,93,124,161,10,0,41,216,15,81,86,210,10,0,43,88,7,122,51,18,7,0,44,88,60,46,45,226,8,0,44,88,60,46,130,231,8,0,44,88,147,41,4,52,10,0,46,216,34,154,42,11,6,0,47,216,1,16,134,19,7,0,48,88,252,141,207,48,7,0,48,216,92,139,253,49,7,0,48,88,252,141,21,71,9,0,48,88,252,141,100,72,9,0,48,88,252,141,181,73,9,0,48,88,252,141,11,75,9,0,52,216,158,49,45,226,8,0,52,216,158,49,130,231,8,0,54,216,26,138,72,102,9,0,54,216,26,138,254,102,9,0,54,216,152,162,126,14,11,0,55,216,38,186,243,238,6,0,57,88,111,53,135,44,7,0,57,88,177,216,16,183,8,0,57,88,177,216,251,191,8,0,57,88,177,216,239,200,8,0,57,216,166,63,45,226,8,0,57,216,166,63,130,231,8,0,61,88,76,191,158,251,5,0,61,216,125,18,47,13,7,0,61,88,182,73,45,226,8,0,61,88,182,73,130,231,8,0,61,88,191,82,86,188,10,0,63,216,176,237,49,151,9,0,63,216,176,237,72,151,9,0,66,88,70,10,196,32,9,0,66,88,70,10,226,32,9,0,68,88,165,50,238,81,10,0,69,88,153,75,27,93,6,0,69,88,154,166,249,63,8,0,71,216,160,110,205,59,6,0,71,216,219,5,253,38,9,0,71,216,219,5,207,40,9,0,73,88,67,162,203,88,8,0,73,88,67,162,248,88,8,0,73,88,67,162,37,89,8,0,73,88,52,235,111,81,9,0,73,88,52,235,4,82,9,0,74,88,218,26,165,224,8,0,74,88,218,26,86,225,8,0,78,216,193,88,252,164,9,0,78,216,193,88,17,165,9,0,78,216,165,80,250,87,10,0,81,88,128,143,111,4,9,0,81,88,128,143,41,6,9,0,82,88,161,255,153,81,8,0,84,88,201,61,117,251,6,0,84,216,21,70,111,4,9,0,84,216,21,70,41,6,9,0,84,216,13,211,253,38,9,0,84,216,13,211,207,40,9,0,87,88,75,116,42,106,11,0,89,216,205,9,146,76,9,0,89,216,205,9,63,77,9,0,98,88,71,30,132,21,9,0,98,88,71,30,157,23,9,0,101,216,251,96,102,214,8,0,101,216,251,96,14,218,8,0,102,216,62,5,246,243,9,0,102,216,62,5,59,245,9,0,102,216,62,5,131,246,9,0,102,88,195,48,195,250,9,0,102,88,195,48,231,250,9,0,103,216,147,190,58,212,8,0,103,216,147,190,201,212,8,0,108,216,233,26,32,234,6,0,110,216,160,195,55,108,7,0,115,88,165,16,78,113,11,0,115,88,165,16,229,133,11,0,117,88,179,82,23,27,7,0,117,88,168,190,104,67,7,0,117,88,179,82,65,132,7,0,117,88,179,82,94,132,7,0,118,216,49,7,4,52,10,0,118,216,46,231,225,98,11,0,119,88,189,199,195,250,9,0,119,88,189,199,231,250,9,0,121,216,21,199,12,99,7,0,122,216,9,213,26,57,8,0,122,88,12,207,219,238,8,0,122,88,12,207,39,240,8,0,122,88,12,207,117,241,8,0,124,216,151,81,112,50,6,0,126,88,189,148,132,21,9,0,126,88,189,148,157,23,9,0,127,88,134,89,60,152,7,0,127,216,53,173,220,180,7,0,127,88,164,202,132,21,9,0,127,88,164,202,157,23,9,0,127,216,91,71,47,140,10,0,128,216,114,249,12,99,7,0,128,216,107,23,29,120,7,0,129,88,13,139,60,152,7,0,129,216,125,228,57,86,8,0,129,216,125,228,210,86,8,0,131,88,186,61,193,100,10,0,131,88,186,61,89,103,10,0,133,88,187,156,211,75,6,0,133,88,241,174,29,120,7,0,134,216,90,47,52,87,10,0,134,216,90,47,117,87,10,0,139,216,72,3,29,14,6,0,139,216,72,3,73,130,7,0,139,216,211,214,250,87,10,0,144,88,39,216,59,135,6,0,145,216,189,13,86,56,9,0,145,216,189,13,9,57,9,0,149,216,226,117,128,44,6,0,149,88,159,149,255,70,7,0,151,88,227,40,77,11,7,0,151,216,210,97,32,7,10,0,151,216,210,97,70,7,10,0,153,88,21,186,60,152,7,0,153,88,21,186,226,164,7,0,154,88,215,66,20,30,10,0,154,88,215,66,115,30,10,0,154,88,215,66,207,30,10,0,155,88,143,61,75,148,7,0,158,88,179,28,22,46,10,0,158,88,179,28,98,46,10,0,159,88,16,7,168,46,6,0,160,216,244,182,243,85,7,0,161,216,58,236,253,38,9,0,161,216,58,236,207,40,9,0,162,88,86,204,163,88,10,0,162,88,86,204,83,89,10,0,166,88,150,124,193,100,10,0,166,88,150,124,89,103,10,0,167,216,79,190,29,120,7,0,169,88,53,56,240,248,6,0,169,88,53,56,16,183,8,0,169,88,53,56,251,191,8,0,169,88,53,56,239,200,8,0,170,216,8,76,38,65,6,0,171,88,24,243,219,238,8,0,171,88,24,243,39,240,8,0,171,88,24,243,117,241,8,0,175,88,139,238,194,138,7,0,179,88,239,59,189,183,7,0,179,88,239,59,4,52,10,0,181,216,228,232,218,93,7,0,182,88,109,163,192,2,7,0,183,88,236,83,96,221,6,0,183,88,87,167,134,19,7,0,183,88,236,83,0,132,9,0,183,88,77,6,134,211,10,0,184,216,204,33,90,14,7,0,184,216,110,45,255,110,7,0,186,216,97,117,116,72,7,0,186,216,248,120,12,99,7,0,186,88,49,62,194,185,9,0,186,88,49,62,96,186,9,0,187,216,7,126,16,183,8,0,187,216,7,126,251,191,8,0,187,216,7,126,239,200,8,0,187,216,82,16,163,88,10,0,187,216,82,16,83,89,10,0,189,88,95,201,16,183,8,0,189,88,95,201,251,191,8,0,189,88,95,201,239,200,8,0,189,216,78,215,87,131,11,0,190,216,51,195,4,52,10,0,191,88,28,16,245,146,10,0,192,216,85,230,45,226,8,0,192,216,85,230,130,231,8,0,193,88,105,47,194,138,7,0,193,88,105,47,216,157,7,0,193,88,10,1,45,226,8,0,193,88,10,1,130,231,8,0,194,88,31,62,20,193,10,0,196,88,79,172,84,153,11,0,196,88,79,172,129,154,11,0,197,88,185,248,4,52,10,0,199,88,218,59,152,252,8,0,204,88,21,111,159,122,11,0,206,216,73,97,18,43,7,0,206,88,135,166,194,138,7,0,208,216,25,213,179,122,9,0,209,216,160,40,70,242,10,0,211,216,61,122,206,238,6,0,211,88,239,226,59,221,7,0,217,88,216,197,209,19,10,0,217,216,165,146,199,146,10,0,220,88,8,29,12,99,7,0,221,88,184,239,14,137,9,0,221,88,184,239,201,137,9,0,224,216,187,67,143,240,6,0,225,216,178,224,4,129,11,0,229,88,0,208,213,15,9,0,232,88,95,103,51,104,7,0,234,88,79,170,164,52,6,0,237,216,150,233,146,76,9,0,237,216,150,233,63,77,9,0,238,88,114,11,119,96,7,0,239,216,64,214,201,181,11,0,240,88,221,223,177,105,7,0,242,88,62,227,144,138,6,0,242,88,62,227,117,51,7,0,242,88,62,227,111,53,7,0,242,88,62,227,177,169,7,0,242,88,136,98,204,141,10,0,243,216,61,20,102,233,10,0,245,216,87,79,116,72,7,0,249,216,78,187,4,52,10,0,251,88,81,27,32,20,9,0,251,88,81,27,179,20,9,0,253,88,76,197,218,93,7,0,253,88,166,195,211,169,8,0,255,216,163,134,175,29,9,0,255,216,163,134,88,30,9,0,0,217,224,32,134,19,7,0,5,89,183,94,23,27,7,0,6,217,87,7,16,183,8,0,6,217,87,7,251,191,8,0,6,217,87,7,239,200,8,0,8,217,51,136,152,228,7,0,10,217,129,242,42,61,8,0,11,89,243,86,223,138,6,0,11,89,243,86,39,184,9,0,11,89,243,86,92,184,9,0,12,89,151,249,75,112,7,0,13,89,226,209,49,16,6,0,13,217,177,41,73,38,7,0,16,89,140,69,220,65,7,0,16,217,246,228,162,58,8,0,16,89,177,16,203,86,11,0,17,217,9,50,83,126,8,0,18,89,117,46,60,152,7,0,18,89,117,46,104,103,8,0,18,89,117,46,219,103,8,0,18,89,117,46,68,104,8,0,18,89,117,46,59,45,10,0,19,89,79,19,4,52,10,0,24,217,105,16,70,255,5,0,24,217,19,117,45,226,8,0,24,217,19,117,130,231,8,0,27,217,199,138,209,84,7,0,27,217,34,103,102,214,8,0,27,217,34,103,14,218,8,0,27,217,112,103,19,134,11,0,29,217,202,129,81,114,6,0,29,89,142,240,23,27,7,0,29,217,202,129,101,64,7,0,34,217,187,250,121,195,6,0,35,89,21,241,23,27,7,0,42,89,201,57,100,92,7,0,45,89,27,249,164,207,9,0,45,89,27,249,182,207,9,0,47,89,58,127,12,99,7,0,48,217,240,57,129,161,6,0,48,89,37,13,18,194,6,0,48,217,13,246,253,49,7,0,52,217,58,206,51,65,7,0,55,217,204,225,18,210,8,0,55,217,204,225,113,210,8,0,55,217,204,225,217,210,8,0,55,217,146,230,44,39,11,0,58,217,169,158,2,137,6,0,64,217,9,193,226,11,7,0,65,89,92,115,23,27,7,0,65,217,97,172,0,55,7,0,68,217,34,101,60,152,7,0,68,217,34,101,128,112,8,0,71,217,190,110,29,120,7,0,71,89,107,226,101,118,10,0,71,89,107,226,178,118,10,0,73,217,152,162,223,12,11,0,77,217,141,127,173,2,6,0,77,217,141,127,194,2,6,0,77,217,78,178,66,3,7,0,77,217,62,123,201,106,7,0,78,89,132,10,78,168,6,0,78,217,216,113,161,207,10,0,79,217,11,111,29,120,7,0,81,217,9,37,134,107,10,0,81,217,9,37,210,107,10,0,81,217,124,19,104,222,10,0,82,217,226,170,23,27,7,0,84,217,205,172,249,71,7,0,84,89,43,3,216,51,9,0,84,89,43,3,175,52,9,0,85,217,164,34,60,152,7,0,85,217,164,34,128,112,8,0,86,217,64,36,186,62,11,0,88,217,32,115,16,37,7,0,90,217,224,147,45,226,8,0,90,217,224,147,130,231,8,0,91,217,153,103,45,226,8,0,91,217,153,103,130,231,8,0,93,89,80,70,171,68,6,0,93,217,183,147,66,3,7,0,93,89,135,94,117,51,7,0,93,89,135,94,111,53,7,0,93,217,185,66,45,226,8,0,93,217,185,66,130,231,8,0,95,89,116,32,114,220,10,0,97,89,37,133,23,27,7,0,98,217,241,102,159,122,11,0,99,217,49,182,29,120,7,0,101,89,5,193,4,52,10,0,102,89,183,178,167,242,9,0,103,89,122,222,4,52,10,0,104,89,105,230,28,230,7,0,104,89,239,83,90,77,8,0,105,89,166,8,146,178,7,0,105,89,117,154,122,87,9,0,105,89,117,154,212,87,9,0,105,89,117,154,40,88,9,0,107,89,56,115,111,4,9,0,107,89,56,115,41,6,9,0,109,89,177,119,253,38,9,0,109,89,177,119,207,40,9,0,112,89,51,108,221,91,6,0,112,217,32,232,204,181,9,0,112,217,32,232,224,182,9,0,114,89,155,19,246,62,7,0,114,89,155,19,194,138,7,0,114,217,200,127,66,132,10,0,115,217,87,113,182,239,10,0,116,217,235,17,0,182,7,0,116,217,235,17,58,182,7,0,116,89,39,57,240,66,9,0,116,89,39,57,119,67,9,0,116,217,204,73,154,164,10,0,117,89,86,137,189,199,6,0,118,89,101,197,193,113,7,0,121,89,138,180,23,27,7,0,127,89,125,143,45,226,8,0,127,89,125,143,130,231,8,0,128,89,220,176,191,86,7,0,129,217,4,216,201,7,11,0,129,217,4,216,102,11,11,0,129,89,172,187,240,142,11,0,129,89,172,187,37,153,11,0,130,217,151,239,179,122,9,0,131,89,105,165,39,47,9,0,131,89,105,165,54,48,9,0,135,217,155,169,160,79,8,0,135,217,22,181,100,156,10,0,136,89,16,130,194,138,7,0,136,89,16,130,33,114,8,0,136,89,16,130,81,114,8,0,138,217,218,127,84,218,5,0,138,217,44,202,2,251,6,0,139,217,155,158,119,96,7,0,140,217,249,55,57,103,7,0,141,89,229,14,95,209,7,0,141,89,229,14,183,209,7,0,142,89,178,214,11,156,11,0,142,89,178,214,32,156,11,0,146,217,198,235,194,138,7,0,146,217,244,231,60,182,8,0,147,217,51,69,77,246,6,0,147,217,12,171,107,100,11,0,150,89,53,225,16,183,8,0,150,89,53,225,251,191,8,0,150,89,53,225,239,200,8,0,151,89,157,78,145,114,7,0,151,217,143,154,45,226,8,0,151,217,143,154,130,231,8,0,151,217,129,46,4,52,10,0,152,89,166,22,25,207,10,0,153,89,12,5,8,112,7,0,155,89,220,35,4,52,10,0,162,217,172,89,53,225,6,0,162,217,213,230,13,8,7,0,164,89,168,54,148,104,6,0,165,89,115,181,189,199,6,0,168,89,214,99,65,76,7,0,172,89,71,45,23,27,7,0,174,89,106,70,188,130,10,0,178,217,148,192,97,37,8,0,178,217,214,54,4,52,10,0,181,89,133,154,134,19,7,0,181,217,79,87,177,105,7,0,183,217,105,60,102,214,8,0,183,217,105,60,14,218,8,0,187,217,14,169,4,52,10,0,189,217,102,254,148,131,7,0,192,89,192,217,132,21,9,0,192,89,192,217,157,23,9,0,193,217,13,29,253,38,9,0,193,217,13,29,207,40,9,0,194,217,114,151,19,86,6,0,197,89,154,97,194,138,7,0,198,89,148,12,176,68,7,0,198,217,134,7,207,24,10,0,198,217,134,7,22,25,10,0,198,217,134,7,89,25,10,0,198,217,134,7,150,25,10,0,199,89,197,242,24,3,6,0,199,89,197,242,17,113,6,0,201,217,51,177,23,27,7,0,201,217,13,112,81,217,9,0,201,217,13,112,103,217,9,0,201,217,13,112,10,206,10,0,203,217,21,0,128,152,9,0,206,89,197,155,145,114,7,0,208,89,72,82,23,26,8,0,210,217,209,77,161,110,10,0,210,217,209,77,2,112,10,0,211,217,17,142,29,120,7,0,212,89,95,22,16,37,7,0,212,89,189,190,29,44,8,0,214,217,178,21,93,46,7,0,215,89,156,244,218,93,7,0,216,89,103,38,4,103,6,0,220,217,8,168,35,129,10,0,223,217,129,111,100,92,7,0,224,89,25,168,191,86,7,0,224,89,152,215,194,138,7,0,226,89,55,127,12,249,5,0,226,217,9,12,62,223,9,0,226,217,9,12,64,224,9,0,226,217,9,12,93,225,9,0,228,89,45,252,134,19,7,0,231,217,160,159,145,114,7,0,233,217,80,95,135,149,7,0,233,217,80,95,180,19,10,0,234,217,77,21,139,14,10,0,234,217,77,21,50,15,10,0,234,89,82,250,203,14,11,0,235,89,188,5,196,222,5,0,235,217,248,61,0,55,7,0,235,217,248,61,177,105,7,0,236,217,7,187,102,15,7,0,237,89,131,93,132,21,9,0,237,89,131,93,157,23,9,0,239,217,124,190,26,7,7,0,239,217,120,216,20,8,9,0,239,217,120,216,247,8,9,0,239,217,120,216,210,9,9,0,239,89,125,142,19,59,11,0,240,89,93,10,25,147,10,0,241,89,234,211,67,6,7,0,241,89,106,108,12,99,7,0,243,217,22,38,103,12,7,0,243,89,180,90,220,39,7,0,243,89,40,245,135,149,7,0,243,89,40,245,60,152,7,0,243,89,61,131,219,210,10,0,246,89,137,171,23,27,7,0,247,217,238,166,187,124,11,0,248,217,155,13,20,28,6,0,248,217,179,175,207,48,7,0,248,217,179,175,21,71,9,0,248,217,179,175,100,72,9,0,248,217,179,175,181,73,9,0,248,217,179,175,11,75,9,0,249,89,120,36,72,236,6,0,249,89,110,143,133,28,11,0,249,217,148,110,246,107,11,0,250,89,15,20,97,230,6,0,250,89,15,20,61,28,8,0,251,89,34,112,194,138,7,0,252,217,180,122,122,87,9,0,252,217,180,122,212,87,9,0,252,217,180,122,40,88,9,0,252,89,8,11,16,217,10,0,253,217,16,130,160,79,8,0,253,217,190,64,209,19,10,0,253,89,93,94,193,100,10,0,253,89,93,94,89,103,10,0,253,89,215,104,51,123,11,0,254,217,17,211,186,53,9,0,254,217,17,211,77,54,9,0,255,89,165,55,168,43,7,0,255,217,138,217,194,138,7,0,1,90,142,238,191,216,10,0,1,90,142,238,104,219,10,0,2,90,38,4,53,192,9,0,2,90,38,4,99,192,9,0,3,90,67,5,167,113,9,0,3,90,67,5,7,114,9,0,3,90,67,5,108,114,9,0,3,90,67,5,202,114,9,0,3,90,67,5,49,115,9,0,10,218,221,213,134,19,7,0,11,218,129,239,193,100,10,0,11,218,129,239,89,103,10,0,12,90,123,151,21,200,6,0,15,218,117,254,134,109,11,0,17,90,197,196,38,92,7,0,19,218,107,13,145,114,7,0,20,218,194,45,66,3,7,0,20,218,39,150,221,98,9,0,20,218,39,150,47,99,9,0,26,218,127,248,61,141,8,0,27,218,182,81,132,21,9,0,27,218,182,81,157,23,9,0,29,90,186,101,163,57,7,0,29,90,186,101,159,12,9,0,29,90,186,101,183,12,9,0,29,90,186,101,207,12,9,0,31,90,25,155,47,143,8,0,36,218,166,190,163,57,7,0,36,218,166,190,194,138,7,0,36,218,166,190,205,170,10,0,37,90,181,55,253,49,7,0,37,218,200,109,189,114,11,0,41,90,107,17,0,55,7,0,41,90,107,17,163,57,7,0,42,90,200,33,115,161,9,0,42,90,200,33,104,162,9,0,44,218,94,66,218,93,7,0,47,218,101,161,29,120,7,0,48,90,173,8,143,240,6,0,49,218,68,187,126,41,6,0,49,90,32,27,99,155,10,0,50,90,192,86,23,27,7,0,51,90,67,82,192,2,7,0,52,90,168,164,4,82,7,0,53,218,167,96,16,183,8,0,53,218,167,96,251,191,8,0,53,218,167,96,239,200,8,0,55,90,114,213,193,100,10,0,55,90,114,213,89,103,10,0,57,218,163,212,201,251,6,0,58,218,166,220,96,8,7,0,58,90,172,254,134,19,7,0,58,218,166,220,160,79,8,0,59,218,179,63,247,10,11,0,62,90,42,86,225,29,6,0,62,90,42,86,102,100,6,0,62,90,3,5,16,183,8,0,62,90,3,5,251,191,8,0,62,90,3,5,239,200,8,0,62,90,5,96,2,176,11,0,65,90,190,129,4,52,10,0,69,218,7,142,29,120,7,0,70,218,146,89,116,72,7,0,73,90,143,155,60,152,7,0,73,90,143,155,226,164,7,0,73,90,143,155,81,167,7,0,73,218,59,48,128,190,9,0,73,218,59,48,172,190,9,0,75,218,119,191,226,4,6,0,77,90,237,240,38,117,8,0,77,218,168,28,209,19,10,0,77,90,162,79,135,73,11,0,78,90,142,216,16,183,8,0,78,90,142,216,251,191,8,0,78,90,142,216,239,200,8,0,79,90,39,248,23,27,7,0,80,218,185,128,45,226,8,0,80,218,185,128,130,231,8,0,82,218,222,99,16,183,8,0,82,218,222,99,251,191,8,0,82,218,222,99,239,200,8,0,83,90,7,27,134,19,7,0,83,90,44,54,20,30,10,0,83,90,44,54,115,30,10,0,83,90,44,54,207,30,10,0,84,218,4,201,60,152,7,0,84,218,4,201,68,175,7,0,84,218,4,201,91,175,7,0,84,90,57,45,14,137,9,0,84,90,57,45,201,137,9,0,84,218,155,62,4,52,10,0,87,218,85,38,55,70,9,0,87,218,85,38,92,70,9,0,90,90,210,202,23,27,7,0,90,90,241,141,16,183,8,0,90,90,241,141,251,191,8,0,90,90,241,141,239,200,8,0,90,218,25,167,200,125,11,0,93,218,1,163,131,222,8,0,93,218,1,163,38,223,8,0,93,218,1,163,206,223,8,0,93,90,140,68,21,71,9,0,93,90,140,68,100,72,9,0,93,90,140,68,181,73,9,0,93,90,140,68,11,75,9,0,94,90,236,98,113,55,9,0,94,90,236,98,149,55,9,0,96,218,61,81,125,67,10,0,96,218,61,81,69,68,10,0,97,90,107,88,227,246,6,0,98,218,66,189,205,133,10,0,100,90,11,178,154,200,10,0,102,90,75,205,218,93,7,0,103,90,104,20,134,19,7,0,104,218,41,74,117,51,7,0,104,218,138,123,117,51,7,0,104,218,41,74,111,53,7,0,104,218,138,123,111,53,7,0,104,218,41,74,220,137,7,0,104,90,90,188,194,138,7,0,104,218,41,74,172,176,7,0,104,218,63,146,107,159,10,0,106,90,27,33,193,100,10,0,106,90,27,33,89,103,10,0,107,218,32,39,16,183,8,0,107,218,32,39,251,191,8,0,107,218,32,39,239,200,8,0,107,90,207,60,192,216,9,0,107,90,207,60,229,216,9,0,107,90,207,60,244,216,9,0,108,90,197,152,137,59,6,0,108,90,197,152,79,139,6,0,108,90,197,152,95,199,6,0,108,90,197,152,96,221,6,0,108,90,197,152,194,138,7,0,108,90,197,152,0,132,9,0,109,90,75,103,145,114,7,0,111,90,226,14,240,161,8,0,112,90,50,190,1,128,6,0,112,90,122,8,23,27,7,0,112,218,56,98,29,120,7,0,113,90,11,62,86,126,11,0,114,218,145,86,97,201,10,0,119,218,51,174,19,90,7,0,122,90,67,64,179,211,5,0,123,218,10,65,23,27,7,0,126,218,138,99,195,160,10,0,127,218,242,114,89,251,6,0,127,218,191,59,47,17,10,0,127,218,191,59,83,17,10,0,130,218,101,128,23,27,7,0,130,90,84,46,32,20,9,0,130,90,84,46,179,20,9,0,131,90,48,124,75,112,7,0,132,218,240,213,16,183,8,0,132,218,240,213,251,191,8,0,132,218,240,213,239,200,8,0,134,90,175,203,45,226,8,0,134,90,175,203,130,231,8,0,139,218,159,141,132,21,9,0,139,218,159,141,157,23,9,0,140,90,40,20,201,217,9,0,140,90,40,20,230,217,9,0,142,90,67,4,14,137,9,0,142,90,67,4,201,137,9,0,146,90,185,55,253,38,9,0,146,90,185,55,207,40,9,0,146,218,151,159,182,203,10,0,148,90,189,14,240,8,7,0,149,90,223,44,5,3,6,0,149,90,223,44,227,186,6,0,150,218,65,8,51,248,8,0,150,218,65,8,162,248,8,0,154,90,47,244,23,27,7,0,155,90,112,50,145,114,7,0,156,218,119,160,33,125,6,0,156,218,58,230,194,138,7,0,157,218,44,127,83,126,8,0,158,218,32,68,234,210,10,0,163,218,243,59,220,180,7,0,163,90,143,189,32,20,9,0,163,90,143,189,179,20,9,0,164,90,207,168,35,194,9,0,164,90,207,168,67,194,9,0,165,90,180,109,89,5,7,0,167,90,140,42,0,55,7,0,167,90,140,42,163,57,7,0,167,218,37,86,86,56,9,0,167,218,37,86,9,57,9,0,171,90,79,236,193,100,10,0,171,90,79,236,89,103,10,0,174,218,200,198,194,228,7,0,175,90,180,225,205,87,7,0,176,218,212,92,25,134,9,0,176,218,212,92,147,134,9,0,176,218,212,92,7,135,9,0,176,218,212,92,174,135,9,0,176,218,212,92,71,136,9,0,177,218,174,112,253,59,10,0,177,218,174,112,144,60,10,0,177,218,174,112,39,61,10,0,178,90,82,195,176,68,7,0,179,90,187,166,123,70,11,0,180,218,158,79,29,120,7,0,181,90,73,197,129,25,11,0,182,90,176,252,117,103,11,0,185,218,148,148,166,109,6,0,190,218,194,225,96,221,6,0,190,218,194,225,0,132,9,0,191,90,207,168,60,152,7,0,191,90,207,168,16,178,7,0,191,218,134,122,16,183,8,0,191,218,134,122,251,191,8,0,191,218,134,122,239,200,8,0,191,90,204,211,111,4,9,0,191,90,204,211,41,6,9,0,196,90,193,126,45,226,8,0,196,90,193,126,130,231,8,0,197,218,159,39,130,47,7,0,200,218,163,210,23,27,7,0,200,218,231,77,92,9,8,0,202,90,140,123,207,48,7,0,203,90,26,15,161,110,10,0,203,90,26,15,2,112,10,0,205,90,8,154,16,183,8,0,205,90,8,154,251,191,8,0,205,90,8,154,239,200,8,0,206,90,122,21,126,14,11,0,210,218,88,15,54,132,11,0,211,218,57,37,55,108,7,0,211,218,225,241,143,167,10,0,212,90,13,242,60,152,7,0,212,90,13,242,59,166,7,0,215,218,75,79,122,173,8,0,215,218,34,246,125,18,9,0,215,218,34,246,34,19,9,0,216,218,52,184,108,233,9,0,216,218,52,184,155,233,9,0,219,90,162,214,220,81,6,0,219,218,141,152,93,46,7,0,219,90,164,70,38,202,7,0,220,218,36,180,226,11,7,0,220,218,75,103,118,54,11,0,221,218,5,106,48,136,6,0,222,90,129,124,58,212,8,0,222,90,129,124,201,212,8,0,224,90,165,226,145,114,7,0,224,218,194,156,45,226,8,0,224,218,194,156,130,231,8,0,225,218,3,65,93,46,7,0,225,90,90,209,194,138,7,0,228,218,108,124,83,126,8,0,232,218,230,19,135,44,7,0,233,90,198,228,64,67,6,0,234,218,85,42,135,2,9,0,234,218,85,42,47,3,9,0,235,218,42,84,155,180,6,0,235,90,239,142,116,72,7,0,235,90,34,22,161,110,10,0,235,90,34,22,2,112,10,0,237,90,186,55,135,44,7,0,239,218,246,251,220,131,10,0,241,218,126,221,240,66,9,0,241,218,126,221,119,67,9,0,243,218,7,103,16,183,8,0,243,218,7,103,251,191,8,0,243,218,7,103,239,200,8,0,245,90,215,75,111,4,9,0,245,90,215,75,41,6,9,0,250,90,108,77,197,201,10,0,251,90,240,113,125,18,9,0,251,90,240,113,34,19,9,0,251,218,67,134,125,67,10,0,251,218,67,134,69,68,10,0,252,218,199,72,58,75,7,0,252,90,96,200,18,116,11,0,254,218,176,241,229,103,9,0,254,218,176,241,3,104,9,0,254,218,176,241,29,104,9,0,0,91,85,17,73,82,7,0,1,91,14,37,23,27,7,0,1,91,95,233,194,138,7,0,1,91,95,233,86,56,9,0,1,91,95,233,9,57,9,0,1,91,44,136,195,98,11,0,2,219,113,115,145,114,7,0,4,219,204,250,119,96,7,0,8,91,130,154,23,27,7,0,10,219,129,221,0,55,7,0,10,219,129,221,16,183,8,0,10,219,129,221,251,191,8,0,10,219,129,221,239,200,8,0,10,91,52,38,102,214,8,0,10,91,52,38,14,218,8,0,12,91,164,97,82,158,6,0,12,91,158,79,134,19,7,0,12,91,126,34,79,33,10,0,12,91,126,34,106,33,10,0,12,91,126,34,176,33,10,0,13,91,198,5,4,52,10,0,14,91,38,143,187,8,7,0,14,91,45,3,122,175,7,0,14,219,208,10,219,238,8,0,14,219,208,10,39,240,8,0,14,219,208,10,117,241,8,0,16,219,147,190,225,244,10,0,18,91,225,79,133,0,7,0,20,91,130,168,194,138,7,0,20,219,181,229,168,90,11,0,21,91,210,107,238,81,10,0,22,219,230,109,194,138,7,0,23,219,230,237,134,19,7,0,24,219,16,167,56,120,8,0,24,219,16,167,103,120,8,0,24,219,163,25,33,209,10,0,25,219,140,134,134,19,7,0,27,219,197,240,45,226,8,0,27,219,197,240,130,231,8,0,32,219,196,202,2,147,6,0,32,91,184,218,209,84,7,0,32,219,10,44,145,114,7,0,32,91,34,24,222,112,9,0,32,91,34,24,5,113,9,0,32,219,154,68,193,100,10,0,32,219,154,68,89,103,10,0,33,91,232,237,204,181,9,0,33,91,232,237,224,182,9,0,34,219,54,207,23,27,7,0,35,91,169,215,214,156,10,0,36,91,115,188,43,162,8,0,37,91,176,25,96,221,6,0,37,219,160,81,4,52,10,0,41,91,82,110,41,253,5,0,41,219,123,144,216,51,9,0,41,219,123,144,175,52,9,0,42,219,145,79,192,6,7,0,42,219,122,235,45,226,8,0,42,219,122,235,130,231,8,0,43,219,214,117,7,211,5,0,43,219,58,224,23,27,7,0,43,91,238,90,135,149,7,0,43,91,238,90,32,159,7,0,43,219,236,237,194,129,10,0,46,91,79,192,161,77,7,0,46,91,20,186,135,149,7,0,46,91,20,186,97,62,9,0,46,91,20,186,126,62,9,0,47,219,214,117,28,209,5,0,48,91,153,244,197,127,11,0,52,91,47,155,60,152,7,0,52,91,47,155,111,166,7,0,55,91,165,230,76,147,10,0,58,219,5,108,27,9,7,0,59,219,134,64,59,116,6,0,59,91,167,114,255,140,10,0,60,219,14,88,85,74,11,0,63,91,224,194,47,13,7,0,64,91,95,86,51,104,7,0,64,91,95,86,45,226,8,0,64,91,95,86,130,231,8,0,65,219,87,61,102,214,8,0,65,219,87,61,14,218,8,0,65,219,251,8,124,22,10,0,65,219,251,8,179,22,10,0,65,219,251,8,235,22,10,0,68,219,24,198,29,120,7,0,74,91,16,27,67,153,11,0,80,219,206,179,116,72,7,0,80,91,24,20,164,16,9,0,80,91,24,20,141,17,9,0,87,219,153,32,64,222,5,0,87,91,215,222,183,249,6,0,87,91,20,82,4,52,10,0,89,91,130,168,194,138,7,0,89,219,190,11,239,234,10,0,95,219,157,45,180,9,7,0,97,91,211,138,102,15,7,0,98,219,17,68,4,52,10,0,101,91,246,130,241,17,7,0,102,91,37,14,158,45,6,0,102,91,199,129,23,26,8,0,103,219,62,201,219,0,7,0,104,91,20,210,2,251,6,0,104,91,20,210,23,27,7,0,104,219,101,27,4,52,10,0,106,219,129,181,216,140,9,0,106,219,129,181,69,141,9,0,108,91,252,154,23,27,7,0,109,219,254,189,29,120,7,0,111,219,1,253,19,59,11,0,112,219,65,233,75,148,7,0,112,219,65,233,226,164,7,0,114,91,80,168,165,236,6,0,114,91,80,168,199,236,6,0,118,91,100,96,199,190,6,0,118,219,119,29,32,107,7,0,118,219,119,29,130,107,7,0,122,91,31,221,252,242,8,0,122,91,31,221,240,243,8,0,123,219,141,107,237,245,10,0,125,91,68,233,86,56,9,0,125,91,68,233,9,57,9,0,126,91,204,11,145,114,7,0,127,219,93,153,161,77,7,0,127,219,111,63,227,164,11,0,131,91,133,87,166,248,6,0,132,219,197,32,213,188,7,0,132,91,15,193,107,226,9,0,132,91,15,193,251,226,9,0,133,91,233,96,222,58,9,0,133,91,233,96,248,58,9,0,134,219,102,118,175,178,11,0,137,91,138,219,16,183,8,0,137,91,138,219,251,191,8,0,137,91,138,219,239,200,8,0,137,91,179,200,31,90,11,0,138,219,226,36,23,27,7,0,139,219,58,48,78,24,11,0,139,91,72,51,56,105,11,0,145,91,161,189,66,3,7,0,147,219,178,205,226,166,8,0,148,91,41,25,145,114,7,0,149,219,100,234,115,2,7,0,150,91,209,107,66,3,7,0,150,219,224,151,92,9,8,0,150,91,142,142,246,243,9,0,150,91,142,142,59,245,9,0,150,91,142,142,131,246,9,0,154,91,236,63,163,88,10,0,154,91,236,63,83,89,10,0,157,219,209,232,62,95,8,0,157,219,209,232,103,95,8,0,157,219,209,232,157,95,8,0,158,91,213,66,60,152,7,0,158,219,96,206,19,7,8,0,158,219,96,206,162,58,8,0,158,219,208,147,83,126,8,0,158,91,213,66,140,122,9,0,158,91,213,66,155,122,9,0,159,219,113,217,143,240,6,0,161,91,168,243,71,250,6,0,161,91,218,215,135,61,7,0,162,91,45,241,194,138,7,0,163,91,209,171,194,185,9,0,163,91,209,171,96,186,9,0,169,219,103,70,16,183,8,0,169,219,103,70,251,191,8,0,169,219,103,70,239,200,8,0,172,91,127,89,65,146,6,0,172,219,19,243,124,68,8,0,175,219,245,4,45,8,10,0,175,219,245,4,79,8,10,0,175,219,245,4,123,8,10,0,178,91,157,165,92,28,8,0,180,219,109,105,161,110,10,0,180,219,109,105,2,112,10,0,183,91,226,212,55,108,7,0,183,219,159,83,75,112,7,0,184,219,184,61,145,114,7,0,185,219,86,92,45,226,8,0,185,219,86,92,130,231,8,0,187,91,184,148,156,222,6,0,188,219,58,206,159,82,8,0,188,219,58,206,211,82,8,0,188,219,58,206,7,83,8,0,188,219,58,206,60,83,8,0,190,219,182,49,125,215,10,0,193,219,23,1,105,191,6,0,197,219,71,205,110,1,8,0,197,219,71,205,160,1,8,0,197,219,71,205,228,1,8,0,199,91,138,60,97,16,7,0,199,219,154,185,77,135,10,0,202,219,114,235,60,152,7,0,202,219,114,235,105,161,7,0,203,91,208,231,42,203,10,0,204,219,183,112,219,143,6,0,204,219,45,231,177,4,7,0,204,91,112,216,195,215,7,0,204,91,112,216,143,36,8,0,205,91,73,218,23,27,7,0,206,91,190,202,45,226,8,0,206,91,190,202,130,231,8,0,207,91,195,158,133,234,5,0,207,219,100,74,16,183,8,0,207,219,100,74,251,191,8,0,207,219,100,74,239,200,8,0,211,219,89,140,95,144,6,0,211,91,13,80,104,67,7,0,211,91,131,102,73,82,7,0,211,91,217,98,43,89,7,0,212,219,28,59,66,3,7,0,215,91,1,118,168,152,9,0,216,219,105,88,105,38,6,0,216,219,20,207,246,243,9,0,216,219,20,207,59,245,9,0,216,219,20,207,131,246,9,0,220,219,50,98,45,226,8,0,220,219,50,98,130,231,8,0,223,91,105,30,29,120,7,0,224,91,191,126,163,57,7,0,224,219,250,99,168,152,9,0,225,91,64,127,23,27,7,0,226,91,199,180,176,170,6,0,226,91,255,91,134,19,7,0,227,219,26,36,250,158,6,0,227,219,170,218,102,15,7,0,228,219,107,229,115,161,9,0,228,219,107,229,104,162,9,0,229,91,33,8,23,27,7,0,229,219,24,252,229,109,7,0,230,219,168,134,194,138,7,0,233,219,88,77,238,81,10,0,233,219,144,98,67,103,11,0,238,219,115,81,134,19,7,0,239,91,146,145,19,107,10,0,239,91,146,145,41,107,10,0,246,91,180,214,134,19,7,0,246,219,178,214,136,30,11,0,248,219,109,143,117,172,7,0,252,91,174,15,16,183,8,0,252,91,174,15,251,191,8,0,252,91,174,15,239,200,8,0,254,219,88,73,252,242,8,0,254,219,88,73,240,243,8,0,0,92,197,100,137,167,7,0,0,92,197,100,165,167,7,0,1,92,68,196,134,19,7,0,5,220,75,160,93,46,7,0,6,92,163,133,58,75,7,0,7,220,126,124,45,167,10,0,10,220,219,18,145,114,7,0,11,92,173,204,16,93,11,0,12,220,57,64,81,178,9,0,12,220,57,64,116,178,9,0,12,92,59,59,74,36,11,0,14,220,106,175,47,17,10,0,14,220,106,175,83,17,10,0,15,92,126,228,145,114,7,0,17,220,195,54,161,77,7,0,18,220,93,121,30,90,6,0,18,92,240,20,142,238,6,0,20,92,171,84,209,18,7,0,23,220,206,129,194,138,7,0,24,92,146,155,45,224,7,0,24,92,183,40,91,233,7,0,25,92,221,108,145,12,8,0,29,92,207,188,90,14,7,0,29,220,43,190,12,99,7,0,30,92,117,116,154,47,11,0,31,220,17,142,23,27,7,0,32,92,148,174,63,126,11,0,33,92,101,247,207,147,6,0,33,92,55,201,194,138,7,0,33,92,55,201,82,20,8,0,35,92,31,240,132,21,9,0,35,92,31,240,157,23,9,0,36,92,61,102,134,19,7,0,39,92,99,100,73,185,6,0,40,220,120,246,65,41,7,0,40,92,38,188,51,65,7,0,40,220,160,85,16,183,8,0,40,220,160,85,251,191,8,0,40,220,160,85,239,200,8,0,40,220,35,165,190,192,9,0,40,220,35,165,239,192,9,0,40,220,35,165,19,193,9,0,40,92,102,27,53,163,10,0,42,92,43,200,238,57,6,0,43,92,188,202,98,237,6,0,45,92,207,124,163,88,10,0,45,92,207,124,83,89,10,0,48,92,38,147,70,252,8,0,48,92,38,147,85,101,11,0,49,92,237,187,145,173,6,0,49,92,237,187,181,173,6,0,50,92,40,52,189,199,6,0,50,92,122,250,174,156,9,0,50,92,122,250,221,156,9,0,52,92,105,165,71,160,10,0,52,92,148,214,81,76,11,0,55,220,68,66,1,158,11,0,56,92,34,99,13,254,5,0,56,220,58,22,194,107,6,0,56,220,43,231,0,55,7,0,56,220,43,231,163,57,7,0,56,220,58,22,241,81,7,0,58,220,54,230,12,99,7,0,59,92,116,84,119,96,7,0,60,220,118,114,132,21,9,0,60,220,118,114,157,23,9,0,61,220,157,153,244,23,11,0,62,220,184,15,96,241,10,0,63,220,16,130,182,212,6,0,63,92,225,142,177,242,6,0,66,220,13,152,29,14,6,0,66,220,13,152,73,130,7,0,70,92,158,148,145,114,7,0,71,92,160,86,23,27,7,0,71,92,22,62,168,84,8,0,77,92,9,99,163,57,7,0,80,220,42,115,64,70,7,0,82,92,19,103,194,138,7,0,82,220,196,230,220,137,10,0,85,92,26,163,39,47,9,0,85,92,26,163,54,48,9,0,87,220,125,194,99,81,7,0,89,92,241,247,58,37,6,0,91,92,197,96,150,45,9,0,91,92,197,96,18,46,9,0,92,92,100,38,106,231,10,0,93,220,43,47,74,201,9,0,93,220,43,47,103,201,9,0,97,92,197,202,194,138,7,0,99,92,96,207,56,238,7,0,100,92,63,8,170,35,11,0,101,92,10,35,175,240,7,0,101,92,10,35,229,240,7,0,101,92,10,35,27,241,7,0,101,92,25,32,102,214,8,0,101,92,25,32,14,218,8,0,102,220,137,238,61,9,11,0,103,92,27,151,45,226,8,0,103,92,27,151,130,231,8,0,103,220,65,83,111,14,11,0,104,220,9,206,138,61,6,0,104,220,54,68,176,104,11,0,104,220,231,111,85,165,11,0,106,92,171,201,134,19,7,0,106,220,187,62,49,222,9,0,106,220,187,62,130,222,9,0,108,220,69,254,83,126,8,0,108,220,32,107,111,81,9,0,108,220,32,107,4,82,9,0,111,220,77,126,72,237,9,0,111,220,77,126,91,237,9,0,111,92,59,20,27,36,11,0,118,220,233,103,249,0,9,0,118,220,233,103,36,1,9,0,118,92,13,227,193,100,10,0,118,92,13,227,193,100,10,0,118,92,13,227,89,103,10,0,118,92,13,227,89,103,10,0,120,92,11,61,161,77,7,0,121,92,52,51,205,134,11,0,122,220,4,41,134,19,7,0,129,220,31,74,146,122,8,0,138,92,69,91,66,3,7,0,141,92,113,245,29,120,7,0,142,220,152,218,184,209,5,0,142,220,27,171,118,43,11,0,143,92,35,183,4,52,10,0,146,220,40,90,246,28,6,0,146,220,40,90,21,29,6,0,146,92,195,62,94,31,10,0,146,92,195,62,121,31,10,0,146,92,195,62,145,31,10,0,147,92,157,126,178,155,6,0,148,92,230,224,180,28,11,0,148,92,254,66,242,55,11,0,150,220,206,57,134,19,7,0,153,220,87,0,45,226,8,0,153,220,87,0,130,231,8,0,154,92,104,148,2,237,6,0,155,220,64,141,203,23,6,0,155,220,64,141,51,211,6,0,156,220,147,177,55,108,7,0,156,92,235,90,219,238,8,0,156,92,235,90,39,240,8,0,156,92,235,90,117,241,8,0,157,92,253,15,53,178,10,0,159,220,183,226,187,121,9,0,159,220,183,226,213,121,9,0,159,220,183,226,208,151,10,0,160,220,164,145,29,120,7,0,161,92,18,91,117,51,7,0,161,92,18,91,111,53,7,0,162,220,225,142,153,113,10,0,162,220,225,142,27,114,10,0,164,220,97,67,22,91,7,0,164,92,34,116,238,35,10,0,164,92,34,116,35,36,10,0,165,92,155,173,108,231,5,0,166,220,214,254,134,19,7,0,168,220,8,155,25,216,5,0,170,92,221,236,165,96,6,0,170,92,221,236,208,116,6,0,170,220,148,10,220,65,7,0,172,220,103,47,184,209,5,0,179,220,241,126,117,51,7,0,179,220,241,126,111,53,7,0,181,92,33,111,253,239,7,0,181,92,33,111,84,240,7,0,181,92,33,111,129,240,7,0,181,220,82,132,229,249,8,0,181,220,82,132,0,250,8,0,181,220,82,132,213,15,9,0,181,92,73,246,4,52,10,0,182,220,21,79,99,36,11,0,182,92,114,106,210,87,11,0,185,92,107,214,20,8,9,0,185,92,107,214,247,8,9,0,185,92,107,214,210,9,9,0,185,92,112,129,74,239,9,0,187,220,47,58,39,47,9,0,187,220,47,58,54,48,9,0,189,92,57,23,88,167,10,0,190,92,138,189,141,148,11,0,191,92,110,144,51,248,8,0,191,92,110,144,162,248,8,0,192,92,166,107,184,89,7,0,192,92,166,107,19,90,7,0,193,220,46,43,65,41,7,0,194,92,33,12,216,51,9,0,194,92,33,12,175,52,9,0,196,220,61,124,60,152,7,0,196,220,46,85,16,183,8,0,196,220,46,85,251,191,8,0,196,220,46,85,239,200,8,0,196,220,61,124,147,83,10,0,196,220,61,124,167,83,10,0,197,92,147,222,226,189,6,0,197,92,147,222,248,207,7,0,197,220,194,14,51,153,11,0,201,92,55,127,85,162,10,0,204,220,130,166,104,67,7,0,204,220,130,166,248,113,7,0,205,220,110,167,4,44,7,0,206,92,75,220,139,254,6,0,206,92,75,220,34,208,10,0,208,220,58,237,213,188,7,0,209,220,116,111,59,42,8,0,209,220,116,111,102,42,8,0,210,92,106,16,83,215,10,0,212,92,188,148,16,183,8,0,212,92,188,148,251,191,8,0,212,92,188,148,239,200,8,0,213,220,96,99,62,110,7,0,213,220,96,99,106,110,7,0,213,92,133,104,225,255,7,0,213,92,133,104,27,0,8,0,213,92,133,104,95,0,8,0,213,92,133,104,164,0,8,0,218,92,201,131,92,233,5,0,218,92,201,131,154,76,6,0,218,92,114,74,16,183,8,0,218,92,114,74,251,191,8,0,218,92,114,74,239,200,8,0,221,220,169,160,25,140,10,0,223,92,36,175,189,246,6,0,226,220,115,191,161,110,10,0,226,220,115,191,2,112,10,0,227,92,228,227,63,245,7,0,227,220,65,225,92,9,8,0,228,92,107,101,101,64,7,0,230,220,81,168,194,138,7,0,236,220,138,81,209,84,7,0,236,92,128,241,159,122,11,0,238,220,197,91,157,184,6,0,238,220,197,91,151,223,6,0,238,92,220,181,22,46,10,0,238,92,220,181,98,46,10,0,241,220,38,122,134,19,7,0,242,92,120,29,145,114,7,0,244,92,14,96,219,238,8,0,244,92,14,96,39,240,8,0,244,92,14,96,117,241,8,0,247,92,197,148,12,179,6,0,247,220,221,24,181,245,6,0,247,220,152,230,218,93,7,0,255,220,26,89,191,178,9,0,255,220,26,89,209,178,9,0,0,93,49,83,0,170,6,0,0,221,233,124,185,86,11,0,1,221,136,125,246,62,7,0,1,221,64,52,39,154,8,0,4,221,60,178,201,251,6,0,4,93,91,46,132,21,9,0,4,93,91,46,157,23,9,0,4,221,60,178,193,100,10,0,4,221,60,178,89,103,10,0,5,93,136,60,45,226,8,0,5,93,136,60,130,231,8,0,6,93,128,32,29,120,7,0,6,93,128,32,65,49,11,0,7,93,91,204,27,67,11,0,9,93,251,119,130,31,11,0,10,221,93,27,29,120,7,0,10,93,238,173,29,120,7,0,10,221,111,180,221,227,10,0,10,221,132,78,176,147,11,0,12,221,87,247,220,39,7,0,13,93,123,119,161,77,7,0,14,221,216,43,68,211,10,0,16,221,117,55,163,57,7,0,17,93,100,193,16,183,8,0,17,93,100,193,251,191,8,0,17,93,100,193,239,200,8,0,21,93,88,171,206,159,10,0,26,221,234,163,4,52,10,0,33,93,60,228,73,137,6,0,34,221,0,77,70,172,9,0,34,221,0,77,97,172,9,0,35,221,37,154,116,72,7,0,35,221,192,202,218,93,7,0,36,93,210,101,0,55,7,0,36,93,210,101,163,57,7,0,36,93,125,142,80,50,11,0,37,221,64,231,134,19,7,0,38,93,153,134,248,160,6,0,38,93,153,134,96,8,7,0,38,93,153,134,60,152,7,0,38,221,11,32,11,45,11,0,40,221,180,35,233,4,7,0,40,221,222,190,36,76,8,0,45,93,62,5,71,11,6,0,45,93,62,5,117,240,6,0,45,93,62,5,22,91,7,0,45,221,99,167,19,108,7,0,45,221,33,63,194,138,7,0,47,93,109,33,245,13,8,0,47,221,176,249,80,117,11,0,48,221,62,229,139,254,6,0,50,221,214,63,100,92,7,0,58,221,70,74,145,12,8,0,61,221,239,33,134,33,11,0,66,221,183,168,242,194,7,0,66,221,183,168,38,195,7,0,66,221,222,142,211,191,10,0,67,93,122,76,61,21,6,0,71,93,106,168,150,45,9,0,71,93,106,168,18,46,9,0,72,221,133,237,19,90,7,0,73,221,199,89,116,72,7,0,74,221,47,228,249,81,6,0,75,221,239,111,86,243,6,0,77,93,93,57,207,48,7,0,77,93,93,57,21,71,9,0,77,93,93,57,100,72,9,0,77,93,93,57,181,73,9,0,77,93,93,57,11,75,9,0,78,221,203,250,141,252,6,0,79,221,151,148,49,36,6,0,79,93,132,194,240,66,9,0,79,93,132,194,119,67,9,0,81,221,4,62,112,26,8,0,81,221,134,51,16,183,8,0,81,221,134,51,251,191,8,0,81,221,134,51,239,200,8,0,83,93,61,238,145,114,7,0,85,93,60,113,135,2,9,0,85,93,60,113,47,3,9,0,85,221,78,147,45,33,9,0,85,221,78,147,120,33,9,0,85,221,78,147,249,150,10,0,88,93,6,164,20,8,9,0,88,93,6,164,247,8,9,0,88,93,6,164,210,9,9,0,98,221,59,8,247,29,11,0,102,93,222,82,111,4,9,0,102,93,222,82,41,6,9,0,103,93,233,180,100,224,7,0,105,93,174,94,86,56,9,0,105,93,174,94,9,57,9,0,106,221,252,84,119,96,7,0,106,221,203,187,29,120,7,0,106,221,193,59,135,2,9,0,106,221,193,59,47,3,9,0,107,93,174,140,193,100,10,0,107,93,174,140,89,103,10,0,108,221,104,7,187,124,11,0,111,93,141,254,102,15,7,0,111,93,105,27,49,154,10,0,113,93,226,132,174,191,6,0,117,221,184,142,16,183,8,0,117,221,184,142,251,191,8,0,117,221,184,142,239,200,8,0,120,93,31,40,125,67,10,0,120,93,31,40,69,68,10,0,121,93,92,181,194,138,7,0,121,93,207,132,253,38,9,0,121,93,207,132,207,40,9,0,123,93,144,48,184,209,5,0,125,221,40,221,29,64,7,0,131,221,249,99,164,16,9,0,131,221,249,99,141,17,9,0,135,221,69,249,181,111,7,0,138,221,69,201,114,84,7,0,139,93,94,23,65,41,7,0,139,93,31,248,115,161,9,0,139,93,31,248,104,162,9,0,140,221,119,193,51,104,7,0,141,221,221,166,135,175,11,0,144,93,110,8,183,177,6,0,144,93,210,229,246,243,9,0,144,93,210,229,59,245,9,0,144,93,210,229,131,246,9,0,145,221,147,190,217,28,10,0,145,221,147,190,242,28,10,0,145,221,147,190,10,29,10,0,148,221,154,161,62,223,9,0,148,221,154,161,64,224,9,0,148,221,154,161,93,225,9,0,149,93,74,4,60,152,7,0,149,93,74,4,182,166,7,0,149,93,74,4,221,166,7,0,154,93,49,17,203,101,6,0,154,221,109,95,131,222,8,0,154,221,109,95,38,223,8,0,154,221,109,95,206,223,8,0,156,221,207,90,145,114,7,0,157,93,32,71,65,76,7,0,161,221,229,204,167,242,9,0,164,221,237,158,2,251,6,0,164,221,214,105,78,9,7,0,166,93,242,7,3,150,10,0,166,93,242,7,26,163,10,0,166,93,38,142,178,87,11,0,170,93,200,126,181,33,6,0,173,93,102,153,16,183,8,0,173,93,102,153,251,191,8,0,173,93,102,153,239,200,8,0,173,93,102,153,205,170,10,0,174,93,195,224,16,37,7,0,174,93,114,11,100,92,7,0,175,93,72,182,65,41,7,0,175,93,62,120,145,114,7,0,177,221,29,58,229,69,8,0,177,93,54,92,105,107,8,0,177,93,54,92,159,107,8,0,177,93,54,92,211,107,8,0,177,93,54,92,5,108,8,0,181,93,74,84,16,183,8,0,181,93,74,84,251,191,8,0,181,93,74,84,239,200,8,0,182,93,218,131,181,111,7,0,184,221,66,95,182,232,6,0,184,221,195,102,205,10,8,0,184,93,30,201,224,107,11,0,186,221,11,183,66,3,7,0,186,93,92,151,29,120,7,0,187,221,244,178,4,44,7,0,187,221,231,212,156,23,11,0,192,93,30,149,58,212,8,0,192,93,30,149,201,212,8,0,193,93,100,206,25,138,11,0,194,221,121,22,22,56,11,0,196,93,22,6,111,4,9,0,196,93,22,6,41,6,9,0,198,221,167,160,220,180,7,0,198,93,250,126,60,77,10,0,198,93,250,126,232,77,10,0,200,221,207,170,60,152,7,0,200,221,207,170,79,237,8,0,202,93,143,171,75,69,6,0,202,93,143,171,119,94,6,0,202,221,60,249,73,38,7,0,207,93,36,234,60,152,7,0,207,93,36,234,79,237,8,0,207,221,203,50,253,38,9,0,207,221,203,50,207,40,9,0,208,221,247,18,119,96,7,0,209,93,86,40,213,15,9,0,211,93,75,84,4,52,10,0,212,221,194,123,146,76,9,0,212,221,194,123,63,77,9,0,214,221,139,204,218,93,7,0,215,221,146,77,97,103,7,0,215,221,75,180,135,149,7,0,216,93,189,251,175,148,8,0,216,93,189,251,251,148,8,0,216,93,189,251,72,149,8,0,218,221,154,0,25,147,10,0,219,221,205,51,98,237,6,0,220,221,214,182,141,252,6,0,222,221,132,83,67,111,6,0,223,93,100,20,145,114,7,0,225,93,81,48,201,55,9,0,225,93,81,48,253,55,9,0,226,93,93,68,58,212,8,0,226,93,93,68,201,212,8,0,227,221,13,23,237,157,11,0,228,93,250,229,29,120,7,0,229,221,130,166,104,67,7,0,229,221,130,166,248,113,7,0,230,221,146,94,241,190,7,0,231,93,105,119,19,90,7,0,231,221,238,94,209,19,10,0,232,93,47,122,29,14,6,0,232,93,47,122,73,130,7,0,234,221,108,231,115,161,9,0,234,221,108,231,104,162,9,0,235,221,250,191,115,168,6,0,236,93,164,73,16,183,8,0,236,93,164,73,251,191,8,0,236,93,164,73,239,200,8,0,239,221,184,109,29,120,7,0,239,221,66,100,100,153,11,0,240,93,75,246,16,183,8,0,240,93,75,246,16,183,8,0,240,93,75,246,251,191,8,0,240,93,75,246,251,191,8,0,240,93,75,246,239,200,8,0,240,93,75,246,239,200,8,0,243,221,79,233,140,238,5,0,243,221,198,41,116,72,7,0,243,221,220,247,4,52,10,0,244,221,130,47,6,249,9,0,244,221,130,47,105,249,9,0,244,221,130,47,201,249,9,0,245,221,28,146,168,152,9,0,249,221,243,222,80,62,6,0,250,221,10,171,199,250,10,0,251,221,32,16,189,246,6,0,252,93,213,219,39,47,9,0,252,93,213,219,54,48,9,0,255,93,9,77,253,117,6,0,255,221,145,61,119,96,7,0,255,221,110,50,30,251,10,0,0,222,134,158,134,19,7,0,4,94,6,56,12,99,7,0,5,222,242,203,73,38,7,0,7,222,29,141,214,63,7,0,8,222,136,89,116,72,7,0,9,94,118,11,116,72,7,0,9,222,151,210,16,183,8,0,9,222,151,210,251,191,8,0,9,222,151,210,239,200,8,0,10,222,30,163,23,27,7,0,11,94,143,66,194,138,7,0,11,222,61,37,63,79,10,0,11,222,61,37,138,79,10,0,11,222,61,37,214,79,10,0,16,94,221,122,183,249,6,0,17,94,26,3,240,248,6,0,21,94,43,189,216,51,9,0,21,94,43,189,175,52,9,0,22,94,103,24,171,134,8,0,23,222,198,89,108,146,6,0,23,94,12,7,134,19,7,0,26,222,139,127,98,97,6,0,26,222,106,28,177,242,6,0,26,94,244,122,223,148,11,0,26,94,4,163,172,157,11,0,27,94,168,80,8,100,11,0,30,222,37,222,211,96,9,0,30,222,37,222,238,96,9,0,32,94,38,50,176,173,8,0,32,94,246,128,188,190,10,0,34,94,67,253,152,241,6,0,36,222,97,91,16,183,8,0,36,222,97,91,251,191,8,0,36,222,97,91,239,200,8,0,36,222,91,93,249,109,11,0,37,94,225,49,16,183,8,0,37,94,225,49,251,191,8,0,37,94,225,49,239,200,8,0,38,94,219,200,136,66,11,0,40,94,33,205,16,37,7,0,40,94,213,82,103,48,7,0,41,94,228,254,181,245,6,0,41,94,73,23,196,46,7,0,42,94,104,11,250,142,6,0,42,222,164,64,29,120,7,0,43,94,87,85,35,41,6,0,46,222,49,162,224,6,7,0,46,222,114,35,194,138,7,0,46,94,126,15,83,126,8,0,49,222,228,96,194,138,7,0,49,94,121,233,111,4,9,0,49,94,121,233,41,6,9,0,53,94,93,98,235,211,5,0,54,94,170,44,23,27,7,0,56,94,80,166,86,244,6,0,56,94,128,192,16,183,8,0,56,94,128,192,251,191,8,0,56,94,128,192,239,200,8,0,69,222,210,234,174,93,7,0,70,222,172,169,135,149,7,0,70,222,172,169,24,65,10,0,71,222,233,95,196,73,6,0,71,94,185,38,175,88,9,0,71,94,185,38,254,88,9,0,71,94,185,38,92,89,9,0,71,94,185,38,173,89,9,0,75,94,50,100,161,110,10,0,75,94,50,100,2,112,10,0,78,222,162,64,45,226,8,0,78,222,162,64,130,231,8,0,78,222,214,48,217,238,9,0,78,222,214,48,174,239,9,0,79,94,31,1,194,138,7,0,79,94,48,152,107,110,11,0,80,222,202,109,12,99,7,0,81,222,143,248,218,93,7,0,81,94,108,247,102,214,8,0,81,94,108,247,14,218,8,0,81,222,170,94,51,248,8,0,81,222,170,94,162,248,8,0,82,94,52,51,191,123,11,0,83,222,101,184,85,29,10,0,92,222,201,38,198,133,7,0,95,94,132,10,170,215,5,0,97,94,6,41,21,71,9,0,97,94,6,41,100,72,9,0,97,94,6,41,181,73,9,0,97,94,6,41,11,75,9,0,103,94,255,178,23,27,7,0,103,94,105,27,109,94,9,0,103,94,105,27,130,94,9,0,103,94,105,27,149,94,9,0,105,94,107,30,254,149,8,0,105,94,107,30,37,150,8,0,106,222,192,40,8,112,7,0,106,94,254,120,213,15,9,0,109,94,110,160,56,90,9,0,109,94,110,160,80,90,9,0,112,222,254,103,122,244,10,0,115,222,145,14,145,114,7,0,117,222,69,157,145,114,7,0,118,222,140,27,26,179,11,0,119,94,158,170,194,138,7,0,120,94,9,78,194,185,9,0,120,94,9,78,96,186,9,0,120,222,178,70,161,110,10,0,120,222,178,70,2,112,10,0,121,222,208,70,247,66,6,0,121,222,55,185,163,255,6,0,122,94,175,10,51,248,8,0,122,94,175,10,162,248,8,0,122,94,232,148,58,251,9,0,122,94,232,148,82,251,9,0,123,222,199,54,174,131,6,0,124,222,234,242,209,19,10,0,127,222,248,161,193,100,10,0,127,222,248,161,89,103,10,0,128,94,94,45,60,152,7,0,128,94,94,45,151,164,7,0,128,94,94,45,226,164,7,0,129,94,163,39,23,27,7,0,129,222,39,108,122,238,10,0,130,222,23,243,55,247,10,0,132,94,186,44,15,136,6,0,139,222,1,165,64,70,7,0,140,94,201,2,14,93,10,0,140,94,201,2,47,93,10,0,140,94,201,2,103,93,10,0,140,94,201,2,153,93,10,0,142,222,173,29,45,226,8,0,142,222,173,29,130,231,8,0,144,94,251,126,93,151,6,0,144,222,213,175,236,242,10,0,146,94,95,14,15,114,6,0,147,94,57,150,145,114,7,0,151,222,10,16,183,249,6,0,154,94,121,83,250,19,6,0,158,94,37,125,22,91,7,0,159,222,44,128,58,254,5,0,159,222,60,166,0,55,7,0,159,222,60,166,163,57,7,0,159,94,49,163,4,114,11,0,164,94,105,92,50,170,6,0,171,94,28,171,26,42,11,0,173,222,24,56,29,120,7,0,173,222,21,213,194,138,7,0,174,94,122,88,165,224,8,0,174,94,122,88,86,225,8,0,174,94,21,227,249,7,10,0,174,94,21,227,14,8,10,0,175,94,173,122,20,30,10,0,175,94,173,122,115,30,10,0,175,94,173,122,207,30,10,0,177,94,2,184,55,113,6,0,177,222,200,248,52,119,11,0,178,222,30,2,22,91,7,0,179,222,7,105,12,99,7,0,179,222,71,63,115,161,9,0,179,222,71,63,104,162,9,0,180,222,199,142,23,253,6,0,180,222,130,166,20,96,10,0,180,222,130,166,36,96,10,0,182,222,147,190,138,57,6,0,182,94,127,118,84,2,7,0,185,94,204,119,29,120,7,0,185,222,247,189,115,161,9,0,185,222,247,189,104,162,9,0,188,94,153,21,134,19,7,0,189,94,190,229,119,96,7,0,189,222,152,25,176,147,11,0,191,94,116,233,194,138,7,0,194,94,37,221,81,126,9,0,194,94,37,221,166,126,9,0,194,94,37,221,53,127,9,0,194,222,246,149,165,229,10,0,194,222,246,149,186,229,10,0,196,222,89,162,157,62,9,0,196,222,89,162,177,62,9,0,197,94,132,248,213,188,7,0,200,222,228,231,134,19,7,0,201,222,116,75,68,1,7,0,201,222,130,17,0,55,7,0,201,222,130,17,163,57,7,0,201,222,130,17,16,183,8,0,201,222,130,17,251,191,8,0,201,222,130,17,239,200,8,0,201,94,87,199,111,4,9,0,201,94,87,199,41,6,9,0,203,94,169,233,130,61,8,0,204,222,201,148,240,73,6,0,205,222,44,179,95,59,9,0,205,222,44,179,147,59,9,0,209,222,46,127,18,181,11,0,212,222,177,111,180,153,10,0,214,222,9,179,4,52,10,0,214,222,70,201,250,87,10,0,215,94,173,160,85,190,10,0,216,94,252,137,51,105,6,0,216,94,118,102,188,124,6,0,217,94,140,58,146,76,9,0,217,94,140,58,63,77,9,0,217,94,180,192,164,142,10,0,218,222,154,88,32,20,9,0,218,222,154,88,179,20,9,0,219,222,26,10,14,93,10,0,219,222,26,10,47,93,10,0,219,222,26,10,103,93,10,0,219,222,26,10,153,93,10,0,220,94,201,48,246,62,7,0,221,94,245,190,89,251,6,0,221,222,191,40,152,184,10,0,221,222,191,40,30,189,10,0,223,94,156,78,215,173,10,0,224,222,122,53,179,212,5,0,225,222,13,5,130,249,6,0,227,94,245,115,49,246,6,0,230,222,211,192,88,118,6,0,234,222,155,33,161,77,7,0,234,222,135,48,51,104,7,0,235,222,68,87,29,120,7,0,239,222,44,140,75,112,7,0,240,222,63,195,55,88,11,0,241,94,254,231,134,19,7,0,243,222,113,31,137,159,10,0,245,222,139,109,4,52,10,0,245,94,11,81,175,132,10,0,245,222,244,212,100,54,11,0,248,94,40,119,246,243,9,0,248,94,40,119,59,245,9,0,248,94,40,119,131,246,9,0,249,222,140,102,196,46,7,0,249,222,95,246,12,99,7,0,253,222,218,175,29,120,7,0,1,95,190,157,230,96,6,0,1,223,11,245,218,134,6,0,1,95,195,191,22,91,7,0,1,95,154,149,208,131,7,0,6,223,66,128,119,7,7,0,6,95,138,38,201,80,7,0,6,95,163,7,125,119,10,0,6,95,163,7,155,119,10,0,6,95,163,7,205,119,10,0,6,95,163,7,254,119,10,0,7,95,134,44,4,52,10,0,9,223,156,14,116,72,7,0,12,223,96,92,32,20,9,0,12,223,96,92,179,20,9,0,13,95,233,20,77,246,6,0,14,223,59,33,145,114,7,0,14,223,46,127,60,152,7,0,15,95,195,112,173,17,7,0,16,223,252,148,145,114,7,0,17,223,135,106,244,131,7,0,19,95,60,70,134,19,7,0,19,95,200,131,15,220,10,0,20,223,188,117,109,197,6,0,25,95,157,71,90,14,7,0,25,223,211,246,9,75,8,0,27,95,138,146,139,14,10,0,27,95,138,146,50,15,10,0,28,95,228,38,33,48,7,0,31,95,61,116,146,178,7,0,31,223,222,102,170,13,10,0,31,223,222,102,188,13,10,0,32,95,31,13,25,104,11,0,35,95,229,170,199,32,6,0,38,95,75,79,134,19,7,0,40,95,142,26,182,13,7,0,40,223,243,230,134,19,7,0,42,95,48,119,16,183,8,0,42,95,48,119,251,191,8,0,42,95,48,119,239,200,8,0,45,95,10,192,227,64,11,0,46,95,115,208,191,86,7,0,47,95,151,66,23,27,7,0,47,95,76,76,135,2,9,0,47,95,76,76,47,3,9,0,48,223,142,113,132,21,9,0,48,223,142,113,157,23,9,0,49,223,3,208,131,92,10,0,49,223,3,208,178,92,10,0,50,95,39,104,0,55,7,0,51,95,81,190,125,67,10,0,51,95,81,190,69,68,10,0,52,95,77,63,204,181,9,0,52,95,77,63,224,182,9,0,53,223,230,204,209,84,7,0,53,223,49,137,86,169,7,0,53,95,215,138,89,250,7,0,54,95,227,127,213,188,7,0,54,95,167,172,27,255,8,0,54,95,167,172,100,255,8,0,56,223,14,240,252,242,8,0,56,223,14,240,240,243,8,0,58,223,218,175,29,120,7,0,59,95,173,1,146,76,9,0,59,95,173,1,63,77,9,0,60,223,156,140,156,124,6,0,60,95,14,221,29,120,7,0,60,95,231,19,45,226,8,0,60,95,231,19,130,231,8,0,60,223,156,140,148,115,10,0,60,223,156,140,195,115,10,0,60,223,156,140,241,115,10,0,60,223,156,140,44,116,10,0,62,95,116,160,51,65,7,0,63,95,32,84,135,149,7,0,63,95,32,84,97,62,9,0,63,95,32,84,126,62,9,0,66,223,62,233,44,157,9,0,66,223,62,233,89,157,9,0,66,95,136,228,106,149,10,0,68,223,96,208,169,245,5,0,68,95,101,95,20,179,10,0,70,223,154,79,87,240,5,0,71,95,37,212,252,169,7,0,72,95,53,251,213,188,7,0,76,223,164,4,223,184,10,0,78,223,241,201,111,4,9,0,78,223,241,201,41,6,9,0,79,223,147,204,100,19,6,0,79,223,211,106,135,149,7,0,79,223,211,106,60,152,7,0,79,95,100,243,83,126,8,0,79,223,211,106,244,128,9,0,80,95,171,231,145,114,7,0,81,95,226,122,131,222,8,0,81,95,226,122,38,223,8,0,81,95,226,122,206,223,8,0,82,223,187,241,29,120,7,0,85,223,236,80,85,29,10,0,87,223,28,10,16,183,8,0,87,223,28,10,251,191,8,0,87,223,28,10,239,200,8,0,89,223,37,135,183,249,6,0,89,95,254,177,210,26,11,0,90,95,199,120,31,161,11,0,94,223,67,30,252,169,7,0,94,223,67,30,60,182,8,0,95,223,138,122,145,114,7,0,95,223,231,24,251,91,8,0,95,223,231,24,48,92,8,0,95,223,231,24,225,94,8,0,98,223,68,35,26,96,8,0,98,95,60,210,124,119,9,0,98,95,60,210,150,119,9,0,100,95,249,4,77,135,10,0,100,95,223,214,166,158,10,0,101,95,183,67,55,108,7,0,102,95,227,214,78,135,11,0,102,95,227,214,113,135,11,0,102,95,227,214,151,135,11,0,103,95,79,20,135,44,7,0,103,223,0,46,60,152,7,0,104,95,198,60,158,217,5,0,104,223,50,43,29,120,7,0,109,95,15,140,31,150,11,0,114,223,250,192,173,250,8,0,114,223,250,192,205,250,8,0,115,95,122,28,2,41,7,0,115,95,193,234,86,248,9,0,115,95,193,234,129,248,9,0,115,95,193,234,171,248,9,0,116,223,161,4,55,239,6,0,116,95,225,219,104,67,7,0,116,223,232,15,250,60,8,0,116,223,91,228,252,11,11,0,120,95,26,221,164,16,9,0,120,95,26,221,141,17,9,0,121,95,75,21,58,212,8,0,121,95,75,21,201,212,8,0,127,223,192,148,119,96,7,0,130,223,218,233,216,51,9,0,130,223,218,233,175,52,9,0,130,223,83,159,246,243,9,0,130,223,83,159,59,245,9,0,130,223,83,159,131,246,9,0,131,95,166,206,142,21,11,0,132,223,151,38,113,215,7,0,133,95,98,15,84,107,6,0,133,223,199,135,29,120,7,0,135,95,102,93,135,2,9,0,135,95,102,93,47,3,9,0,137,95,62,219,97,103,7,0,141,95,247,154,145,114,7,0,144,95,242,158,4,52,10,0,144,223,9,144,168,182,11,0,148,223,166,189,137,95,11,0,150,95,235,157,55,171,6,0,150,223,241,200,76,187,6,0,150,223,81,25,207,48,7,0,150,223,81,25,21,71,9,0,150,223,81,25,100,72,9,0,150,223,81,25,181,73,9,0,150,223,81,25,11,75,9,0,154,95,202,54,109,6,6,0,154,223,204,230,193,100,10,0,154,223,204,230,89,103,10,0,156,95,35,215,16,183,8,0,156,95,35,215,251,191,8,0,156,95,35,215,239,200,8,0,156,223,118,75,6,249,9,0,156,223,118,75,105,249,9,0,156,223,118,75,201,249,9,0,158,223,18,206,161,110,10,0,158,223,18,206,2,112,10,0,159,223,68,99,174,13,6,0,159,223,68,99,58,75,7,0,160,95,28,25,218,93,7,0,167,223,15,164,16,183,8,0,167,223,15,164,251,191,8,0,167,223,15,164,239,200,8,0,168,223,152,155,125,18,9,0,168,223,152,155,34,19,9,0,169,95,244,98,183,82,7,0,169,223,83,102,131,127,11,0,172,223,187,38,23,27,7,0,173,95,107,139,209,84,7,0,178,95,21,30,75,247,8,0,178,95,21,30,171,247,8,0,180,95,68,177,107,10,7,0,180,223,255,154,64,162,11,0,181,95,214,49,183,249,6,0,182,223,29,120,45,226,8,0,182,223,29,120,130,231,8,0,184,95,238,58,144,70,7,0,184,95,238,58,176,70,7,0,185,223,92,77,85,29,10,0,189,223,184,191,159,102,8,0,189,223,184,191,237,102,8,0,189,223,184,191,48,181,10,0,192,95,193,114,193,100,10,0,192,95,193,114,89,103,10,0,197,95,117,200,60,152,7,0,197,95,117,200,226,164,7,0,200,223,147,190,106,231,10,0,201,95,61,129,39,35,7,0,202,95,119,189,236,17,6,0,202,95,119,189,7,18,6,0,202,223,214,18,30,114,7,0,202,223,214,18,66,114,7,0,203,223,41,146,73,38,7,0,204,95,155,52,107,251,7,0,204,95,155,52,155,251,7,0,204,223,23,120,193,100,10,0,204,223,23,120,89,103,10,0,208,223,80,16,194,138,7,0,210,223,96,61,84,199,10,0,210,223,85,170,209,10,11,0,213,223,71,104,75,112,7,0,213,95,193,76,188,213,9,0,213,95,193,76,58,214,9,0,213,95,193,76,197,214,9,0,215,95,124,105,215,90,11,0,217,223,114,242,139,216,6,0,217,95,244,12,247,247,6,0,217,95,89,228,16,183,8,0,217,95,89,228,251,191,8,0,217,95,89,228,239,200,8,0,219,223,183,189,119,96,7,0,220,95,128,122,42,101,6,0,223,223,1,109,63,249,5,0,223,95,66,95,45,226,8,0,223,95,66,95,130,231,8,0,223,223,77,149,150,45,9,0,223,223,77,149,18,46,9,0,226,223,208,40,220,39,7,0,226,223,157,226,18,43,7,0,227,223,153,0,182,107,9,0,227,223,153,0,210,107,9,0,228,95,237,217,246,62,7,0,230,95,241,125,166,127,10,0,230,95,241,125,194,127,10,0,234,223,235,93,145,114,7,0,234,95,27,246,160,203,10,0,235,223,41,107,0,55,7,0,235,223,41,107,163,57,7,0,236,95,207,22,75,185,10,0,245,223,24,216,12,139,10,0,248,223,57,146,76,48,11,0,252,95,66,179,23,27,7,0,253,223,254,215,194,138,7,0,254,95,94,120,64,87,6,0,3,224,118,1,0,159,11,0,4,224,80,65,102,214,8,0,4,224,80,65,14,218,8,0,7,224,198,50,12,12,6,0,7,96,76,191,119,183,6,0,7,224,161,240,25,134,9,0,7,224,161,240,147,134,9,0,7,224,161,240,7,135,9,0,7,224,161,240,174,135,9,0,7,224,161,240,71,136,9,0,8,224,170,194,32,27,6,0,11,96,153,79,118,54,11,0,14,96,151,140,165,5,8,0,14,96,151,140,221,5,8,0,14,96,151,140,17,6,8,0,14,224,153,106,20,8,9,0,14,224,153,106,247,8,9,0,14,224,153,106,210,9,9,0,15,96,161,228,244,23,11,0,16,96,192,87,179,122,9,0,18,224,242,96,194,138,7,0,19,224,153,76,134,19,7,0,22,224,131,189,16,183,8,0,22,224,131,189,251,191,8,0,22,224,131,189,239,200,8,0,22,224,153,173,102,214,8,0,22,224,153,173,14,218,8,0,24,96,204,51,163,57,7,0,24,96,177,23,30,65,7,0,28,224,176,151,243,170,6,0,31,96,9,108,13,99,11,0,32,96,193,83,230,15,6,0,32,96,193,83,177,105,7,0,32,96,178,3,14,137,9,0,32,96,178,3,201,137,9,0,35,224,37,190,176,25,6,0,37,224,202,12,134,19,7,0,40,96,91,185,231,74,6,0,42,224,250,148,110,40,7,0,46,224,255,231,209,84,7,0,50,224,0,242,31,161,11,0,51,96,83,72,241,109,6,0,53,224,135,229,4,52,10,0,56,96,122,242,2,59,6,0,56,96,122,242,170,234,6,0,56,96,122,242,177,224,7,0,57,224,207,91,228,66,7,0,59,224,98,176,218,93,7,0,59,96,200,142,114,82,8,0,60,96,152,120,23,27,7,0,60,224,14,75,12,99,7,0,60,96,24,178,209,154,11,0,64,224,4,126,182,13,7,0,66,224,87,156,107,172,10,0,67,96,58,51,168,104,8,0,67,96,58,51,45,105,8,0,67,96,58,51,167,105,8,0,74,224,53,48,158,16,6,0,74,96,217,54,183,134,11,0,75,96,217,64,203,128,11,0,76,96,17,126,254,145,11,0,77,96,225,28,11,14,7,0,78,224,62,58,58,68,7,0,81,224,247,40,23,27,7,0,82,96,208,254,27,255,8,0,82,96,208,254,100,255,8,0,83,96,204,93,218,93,7,0,84,96,70,230,23,27,7,0,84,224,71,33,116,72,7,0,88,96,158,175,253,43,6,0,88,96,158,175,136,1,7,0,88,96,158,175,10,2,7,0,88,96,9,66,4,44,7,0,88,224,228,44,125,136,8,0,89,224,35,130,204,33,8,0,90,224,169,201,81,49,7,0,92,224,179,165,60,152,7,0,92,224,179,165,82,158,7,0,93,224,28,43,247,64,11,0,94,224,43,233,237,117,6,0,95,96,156,177,16,183,8,0,95,96,156,177,251,191,8,0,95,96,156,177,239,200,8,0,95,96,79,40,4,52,10,0,98,96,166,254,135,2,9,0,98,96,166,254,47,3,9,0,103,96,116,226,29,120,7,0,103,224,191,86,168,84,8,0,106,96,45,5,111,89,6,0,109,224,25,217,146,76,9,0,109,224,25,217,63,77,9,0,111,96,8,105,115,2,7,0,112,224,187,72,75,247,8,0,112,224,187,72,171,247,8,0,114,224,17,239,45,226,8,0,114,224,17,239,130,231,8,0,115,96,57,91,234,97,6,0,115,224,130,166,104,67,7,0,115,224,130,166,248,113,7,0,117,224,56,10,239,134,6,0,118,224,50,215,247,105,11,0,119,224,81,149,160,79,8,0,121,96,202,6,21,71,9,0,121,96,202,6,100,72,9,0,121,96,202,6,181,73,9,0,121,96,202,6,11,75,9,0,123,224,25,65,253,38,9,0,123,224,25,65,207,40,9,0,124,224,227,83,4,52,10,0,125,224,31,197,141,194,9,0,125,224,31,197,164,194,9,0,128,96,68,16,60,152,7,0,128,96,68,16,128,112,8,0,128,96,25,92,45,226,8,0,128,96,25,92,130,231,8,0,130,224,26,235,77,11,7,0,130,224,82,251,163,244,10,0,131,96,207,78,163,57,7,0,136,224,128,173,60,152,7,0,136,224,128,173,79,237,8,0,140,224,247,7,4,52,10,0,143,224,153,242,180,149,6,0,149,96,34,63,29,14,6,0,149,96,24,148,134,19,7,0,149,96,34,63,73,130,7,0,150,96,211,199,211,250,6,0,155,96,119,223,0,55,7,0,155,96,119,223,163,57,7,0,155,224,117,143,194,138,7,0,155,96,119,223,74,239,9,0,155,96,119,223,174,239,9,0,156,96,201,199,60,152,7,0,156,96,201,199,226,164,7,0,158,96,239,240,222,214,10,0,159,96,177,121,134,19,7,0,161,224,193,147,58,75,7,0,164,224,128,208,179,91,6,0,165,224,8,175,150,245,6,0,166,224,193,93,158,251,5,0,166,224,87,65,218,93,7,0,166,224,61,149,194,138,7,0,168,224,242,162,85,174,7,0,168,224,242,162,202,174,7,0,169,224,171,221,116,72,7,0,172,224,20,144,134,19,7,0,178,224,78,245,29,244,6,0,180,224,112,164,29,120,7,0,180,224,107,203,22,84,10,0,186,224,58,74,205,239,6,0,186,224,248,29,60,152,7,0,186,224,248,29,128,112,8,0,186,96,11,240,139,14,10,0,186,96,11,240,50,15,10,0,187,96,124,146,165,29,11,0,187,96,14,41,186,29,11,0,187,224,206,78,176,147,11,0,188,224,69,160,186,53,9,0,188,224,69,160,77,54,9,0,189,224,66,250,100,92,7,0,189,224,132,31,45,226,8,0,189,224,132,31,130,231,8,0,191,224,127,121,183,249,6,0,191,224,33,170,118,134,10,0,194,96,93,248,253,38,9,0,194,96,93,248,207,40,9,0,194,96,49,169,114,160,11,0,195,224,231,55,57,15,6,0,195,224,217,220,9,238,8,0,195,224,217,220,94,238,8,0,196,96,221,181,134,19,7,0,196,224,137,182,134,19,7,0,196,96,24,5,190,227,9,0,199,224,198,8,7,189,6,0,205,96,207,154,134,19,7,0,206,224,63,242,149,40,7,0,209,224,196,184,130,117,6,0,210,224,130,166,248,113,7,0,210,224,15,181,232,179,7,0,211,96,50,58,219,46,10,0,211,224,40,134,81,106,10,0,211,224,40,134,106,106,10,0,212,96,78,93,29,120,7,0,214,224,9,146,194,138,7,0,219,96,152,73,45,226,8,0,219,96,152,73,130,231,8,0,220,224,73,31,29,120,7,0,220,224,82,3,75,247,8,0,220,224,82,3,171,247,8,0,221,96,217,58,183,177,6,0,228,96,155,130,104,67,7,0,228,96,165,34,12,99,7,0,228,96,165,34,4,52,10,0,229,96,29,190,218,175,7,0,230,96,37,47,50,145,11,0,232,96,122,99,51,104,7,0,234,96,210,49,90,183,6,0,235,96,218,79,134,19,7,0,239,96,240,52,111,4,9,0,239,96,240,52,41,6,9,0,239,96,228,213,40,14,9,0,239,96,228,213,96,14,9,0,240,224,108,116,233,102,11,0,241,96,102,61,201,106,7,0,241,96,20,28,141,121,11,0,244,224,193,148,249,153,6,0,244,224,136,207,102,15,7,0,253,224,225,173,243,238,6,0,1,225,82,219,149,40,7,0,2,97,175,126,86,56,9,0,2,97,175,126,9,57,9,0,2,225,84,255,148,26,11,0,3,225,76,64,145,12,8,0,3,225,166,109,155,16,11,0,4,225,108,207,125,120,11,0,5,225,220,60,135,149,7,0,5,225,17,140,60,152,7,0,5,225,77,166,131,222,8,0,5,225,77,166,38,223,8,0,5,225,77,166,206,223,8,0,5,225,17,140,9,110,10,0,5,225,17,140,26,110,10,0,8,97,28,25,74,239,9,0,8,97,28,25,174,239,9,0,9,225,163,160,194,138,7,0,10,97,44,63,158,140,6,0,10,97,46,81,74,53,11,0,14,97,59,222,194,230,5,0,21,225,218,187,63,103,8,0,21,97,177,67,161,110,10,0,21,97,177,67,2,112,10,0,22,97,98,15,122,246,6,0,22,225,134,156,90,177,8,0,22,225,134,156,165,177,8,0,22,225,119,234,176,73,11,0,26,97,214,34,238,81,10,0,27,225,167,109,171,243,6,0,33,225,64,134,4,52,10,0,34,97,238,89,238,81,10,0,36,97,231,242,23,27,7,0,36,97,78,142,45,162,11,0,38,225,52,43,252,242,8,0,38,225,52,43,240,243,8,0,39,97,49,186,18,210,8,0,39,97,49,186,113,210,8,0,39,97,49,186,217,210,8,0,39,225,249,225,4,52,10,0,40,97,62,209,4,52,10,0,43,97,127,187,29,120,7,0,44,225,60,134,2,175,11,0,45,225,154,112,26,28,8,0,47,225,234,12,152,220,5,0,49,97,71,33,134,19,7,0,49,225,247,25,145,114,7,0,50,225,146,109,103,68,7,0,51,225,193,129,89,43,10,0,51,225,193,129,106,43,10,0,51,225,193,129,123,43,10,0,52,97,28,144,209,19,10,0,53,225,160,243,16,198,6,0,53,225,208,7,98,48,10,0,53,225,208,7,125,48,10,0,54,97,138,140,135,149,7,0,54,97,138,140,60,152,7,0,55,225,126,212,174,247,6,0,55,225,43,71,4,52,10,0,56,97,56,127,51,158,6,0,56,225,103,36,163,57,7,0,60,97,167,92,194,138,7,0,60,97,167,92,242,55,11,0,61,225,20,144,64,47,7,0,61,225,249,62,73,82,7,0,61,97,40,171,217,147,8,0,66,225,49,116,136,168,6,0,66,97,47,162,243,238,6,0,66,97,140,186,83,126,8,0,67,225,0,36,206,35,7,0,67,225,0,36,9,36,7,0,69,225,211,60,12,99,7,0,70,225,247,69,25,84,7,0,70,225,247,69,114,84,7,0,70,225,161,194,111,4,9,0,70,225,161,194,41,6,9,0,70,97,89,18,145,2,11,0,72,97,209,251,91,75,6,0,73,97,2,221,163,57,7,0,73,97,183,200,139,14,10,0,73,97,183,200,50,15,10,0,73,97,166,5,185,139,10,0,73,97,166,5,220,157,10,0,77,97,81,242,55,239,6,0,80,97,186,113,168,152,9,0,81,97,115,247,102,214,8,0,81,97,115,247,14,218,8,0,82,97,202,154,255,70,10,0,82,97,202,154,87,71,10,0,82,97,202,154,174,71,10,0,83,97,123,132,128,193,10,0,84,97,183,219,152,63,7,0,84,97,55,166,27,255,8,0,84,97,55,166,100,255,8,0,85,225,90,201,81,126,9,0,85,225,90,201,166,126,9,0,85,225,90,201,53,127,9,0,87,225,55,74,90,14,7,0,89,225,97,74,16,183,8,0,89,225,97,74,251,191,8,0,89,225,97,74,239,200,8,0,90,97,248,39,170,204,6,0,90,225,71,59,217,238,9,0,90,225,71,59,174,239,9,0,91,225,24,207,49,198,6,0,91,97,142,163,71,250,6,0,91,225,241,203,98,90,11,0,93,97,102,118,123,178,11,0,95,97,178,28,241,17,7,0,95,97,170,95,23,27,7,0,95,225,220,64,145,114,7,0,96,97,0,98,120,13,6,0,96,97,73,79,24,242,6,0,97,97,251,90,55,108,7,0,98,97,138,49,245,75,8,0,101,97,215,203,12,99,7,0,102,97,120,248,137,145,9,0,102,97,120,248,168,145,9,0,102,97,120,248,210,145,9,0,102,97,120,248,246,145,9,0,102,97,120,248,20,146,9,0,105,97,97,234,195,163,10,0,107,97,91,167,45,226,8,0,107,97,91,167,130,231,8,0,110,97,126,79,65,41,7,0,112,225,200,39,63,52,8,0,113,225,243,125,253,49,7,0,114,225,248,222,94,204,10,0,115,97,63,11,250,86,6,0,117,225,147,234,134,19,7,0,119,97,128,163,83,156,6,0,119,97,48,129,23,27,7,0,119,97,128,163,176,68,7,0,119,225,253,201,32,20,9,0,119,225,253,201,179,20,9,0,119,225,209,243,107,226,9,0,119,225,209,243,251,226,9,0,124,225,11,82,191,201,6,0,124,225,11,82,77,11,7,0,126,225,216,176,91,122,11,0,128,225,173,102,255,70,7,0,129,225,30,170,188,151,10,0,129,225,30,170,44,152,10,0,129,225,30,170,104,161,10,0,129,225,30,170,150,162,10,0,131,225,193,237,204,181,9,0,131,225,193,237,224,182,9,0,132,97,57,91,179,200,7,0,132,97,57,91,219,200,7,0,132,97,57,91,5,201,7,0,132,225,250,77,3,191,9,0,132,225,250,77,78,191,9,0,137,225,131,16,192,6,7,0,139,225,54,44,12,99,7,0,139,97,224,192,246,233,9,0,139,97,224,192,13,234,9,0,140,225,78,7,23,27,7,0,142,97,88,159,23,27,7,0,142,97,205,155,139,14,10,0,142,97,205,155,50,15,10,0,144,225,44,160,193,78,10,0,144,225,44,160,218,78,10,0,146,97,154,183,153,113,10,0,146,97,154,183,27,114,10,0,147,225,56,57,236,155,9,0,147,225,56,57,2,156,9,0,154,225,6,187,167,42,11,0,155,97,199,197,4,52,10,0,156,225,119,74,92,9,8,0,157,97,119,190,186,26,9,0,157,97,119,190,120,27,9,0,157,97,119,190,48,28,9,0,164,225,86,66,221,98,9,0,164,225,86,66,47,99,9,0,165,225,3,76,194,241,6,0,167,225,230,111,31,74,6,0,167,225,86,85,168,152,9,0,170,97,181,4,12,99,7,0,173,225,36,97,63,96,7,0,173,225,36,97,119,96,7,0,173,225,180,124,77,135,10,0,175,97,44,41,29,120,7,0,176,225,242,151,126,14,11,0,178,97,61,0,150,154,10,0,179,97,86,133,192,2,7,0,181,225,59,120,87,53,11,0,182,97,57,43,253,38,9,0,182,97,57,43,207,40,9,0,183,97,7,218,249,81,6,0,183,97,7,218,184,119,6,0,186,225,168,3,21,71,9,0,186,225,168,3,100,72,9,0,186,225,168,3,181,73,9,0,186,225,168,3,11,75,9,0,187,97,8,72,230,196,7,0,187,225,242,232,183,42,11,0,189,225,86,163,44,252,6,0,189,225,235,232,159,249,10,0,194,97,181,239,194,138,7,0,194,225,238,117,83,126,8,0,194,225,238,117,214,127,8,0,194,225,238,117,65,128,8,0,196,225,166,54,31,158,6,0,196,97,207,121,39,47,9,0,196,97,207,121,54,48,9,0,196,225,131,109,241,178,10,0,198,225,60,63,43,89,7,0,198,97,162,31,146,76,9,0,198,97,162,31,63,77,9,0,198,225,23,226,63,79,10,0,198,225,23,226,138,79,10,0,198,225,23,226,214,79,10,0,203,97,4,167,161,77,7,0,204,225,203,126,58,112,8,0,208,97,73,68,51,104,7,0,209,97,3,183,145,114,7,0,213,225,146,14,232,106,6,0,215,225,166,222,20,72,8,0,215,225,166,222,66,72,8,0,215,225,166,222,107,72,8,0,215,225,166,222,160,79,8,0,217,225,7,38,220,180,7,0,220,97,80,45,194,138,7,0,220,97,115,17,83,126,8,0,221,225,211,24,65,11,9,0,221,225,211,24,92,11,9,0,221,225,211,24,127,11,9,0,222,225,30,110,168,152,9,0,223,97,23,94,45,226,8,0,223,97,23,94,130,231,8,0,224,97,197,154,60,152,7,0,224,97,197,154,128,112,8,0,225,225,214,19,145,12,8,0,232,225,212,63,65,41,7,0,234,225,183,80,65,41,7,0,235,97,97,54,106,76,6,0,237,97,233,4,0,55,7,0,237,97,233,4,163,57,7,0,240,225,148,69,58,243,5,0,241,225,157,92,63,166,9,0,241,225,157,92,82,166,9,0,242,97,120,210,61,21,6,0,243,225,64,205,59,160,9,0,243,225,64,205,91,160,9,0,243,225,64,205,123,160,9,0,244,97,22,229,201,55,9,0,244,97,22,229,253,55,9,0,245,97,3,51,225,24,11,0,248,97,196,148,27,255,8,0,248,97,196,148,100,255,8,0,249,97,100,113,168,12,6,0,249,225,175,76,134,19,7,0,251,97,174,183,161,77,7,0,253,97,144,212,89,5,7,0,253,97,169,97,194,138,7,0,254,97,41,217,215,151,6,0,254,225,245,207,152,142,10,0,254,225,151,159,198,203,10,0,1,98,86,37,145,114,7,0,1,226,243,112,194,138,7,0,1,98,86,37,20,185,10,0,2,226,26,174,170,162,6,0,2,226,84,154,117,51,7,0,4,98,154,153,51,104,7,0,5,98,97,33,253,49,7,0,5,226,98,56,117,51,7,0,6,98,95,25,161,59,8,0,7,98,148,52,102,214,8,0,7,98,148,52,14,218,8,0,9,98,245,14,119,96,7,0,9,226,29,182,29,120,7,0,13,226,156,228,217,9,7,0,16,98,14,120,38,133,6,0,16,226,26,143,163,57,7,0,17,226,109,159,194,138,7,0,18,226,105,161,29,120,7,0,18,98,199,248,194,138,7,0,19,226,200,171,117,65,6,0,19,98,224,109,253,49,7,0,22,98,233,226,92,224,5,0,23,226,229,10,60,152,7,0,23,226,229,10,79,237,8,0,27,98,44,81,159,122,11,0,28,226,69,65,245,59,6,0,31,226,5,177,121,195,6,0,31,226,226,124,60,152,7,0,31,226,226,124,79,237,8,0,32,98,32,205,73,38,7,0,33,226,4,92,63,168,6,0,34,98,62,156,145,114,7,0,34,98,135,174,239,224,10,0,35,98,201,84,51,104,7,0,37,98,247,219,194,138,7,0,38,226,88,87,0,55,7,0,38,226,88,87,163,57,7,0,43,98,118,103,196,178,11,0,46,98,67,162,131,222,8,0,46,98,67,162,38,223,8,0,46,98,67,162,206,223,8,0,47,226,44,122,19,90,7,0,47,226,235,153,193,100,10,0,47,226,235,153,89,103,10,0,48,226,210,87,19,1,7,0,49,226,8,73,232,233,5,0,49,226,8,73,117,51,7,0,49,226,8,73,111,53,7,0,50,226,184,9,240,36,7,0,51,98,68,129,163,171,6,0,51,98,253,227,23,27,7,0,52,98,27,235,59,62,6,0,52,98,82,125,143,85,8,0,53,226,18,112,186,53,9,0,53,226,18,112,77,54,9,0,57,98,179,196,73,199,6,0,59,98,54,42,134,19,7,0,59,98,105,223,3,70,7,0,59,98,168,52,163,113,11,0,60,98,117,118,33,137,11,0,60,98,117,118,61,137,11,0,61,98,252,221,205,87,7,0,61,226,237,179,29,120,7,0,62,98,189,53,5,234,6,0,62,226,32,173,144,70,7,0,62,226,32,173,176,70,7,0,65,98,33,100,167,242,9,0,65,98,33,100,167,242,9,0,66,226,121,121,27,255,8,0,66,226,121,121,100,255,8,0,67,98,121,255,194,228,7,0,71,226,248,222,43,162,8,0,73,98,166,222,161,77,7,0,75,226,115,55,218,93,7,0,78,98,156,197,6,72,10,0,79,226,12,47,38,65,6,0,79,98,132,170,157,97,6,0,86,226,135,243,102,15,7,0,86,226,119,8,65,41,7,0,86,226,14,194,29,120,7,0,88,226,3,227,176,68,7,0,89,98,241,59,140,3,6,0,89,98,18,147,20,8,9,0,89,98,18,147,247,8,9,0,89,98,18,147,210,9,9,0,89,98,101,56,85,29,10,0,90,226,227,132,43,188,7,0,91,226,81,23,82,250,5,0,91,226,81,23,237,35,6,0,91,226,87,208,148,115,10,0,91,226,87,208,195,115,10,0,91,226,87,208,241,115,10,0,91,226,87,208,44,116,10,0,93,226,34,129,44,188,10,0,95,98,33,152,46,254,5,0,97,226,27,237,75,247,8,0,97,226,27,237,171,247,8,0,100,226,45,131,14,174,6,0,107,98,45,117,167,239,6,0,107,226,189,0,22,77,7,0,110,98,108,165,177,105,7,0,110,98,223,40,18,210,8,0,110,98,223,40,113,210,8,0,110,98,223,40,217,210,8,0,112,226,114,219,213,188,7,0,115,226,137,3,91,19,7,0,116,98,58,69,27,153,6,0,116,226,189,201,75,112,7,0,117,98,38,92,36,68,6,0,118,98,123,57,71,217,6,0,118,226,234,227,25,147,10,0,120,226,102,255,163,57,7,0,123,226,84,233,55,95,10,0,123,226,84,233,143,95,10,0,124,226,31,70,186,10,11,0,126,226,20,182,23,27,7,0,126,226,163,17,4,52,10,0,126,98,1,126,0,152,11,0,127,98,186,124,164,235,5,0,132,98,157,137,23,27,7,0,132,226,85,73,75,58,9,0,132,226,85,73,123,58,9,0,135,98,20,33,181,126,6,0,135,226,146,190,179,244,6,0,136,98,197,246,33,23,6,0,139,98,73,114,238,239,6,0,140,98,16,100,16,183,8,0,140,98,16,100,251,191,8,0,140,98,16,100,239,200,8,0,146,98,228,158,124,121,11,0,148,226,159,201,207,70,7,0,149,98,208,37,16,219,6,0,149,98,208,37,117,51,7,0,149,98,208,37,111,53,7,0,149,226,135,13,60,152,7,0,149,226,135,13,104,22,8,0,149,226,135,13,148,22,8,0,151,226,157,143,60,152,7,0,151,226,157,143,128,112,8,0,151,226,179,120,103,224,10,0,151,98,73,121,210,157,11,0,154,226,67,15,72,102,9,0,154,226,67,15,254,102,9,0,156,98,188,148,161,154,6,0,156,98,102,34,60,152,7,0,156,98,102,34,38,163,7,0,156,226,26,178,125,246,10,0,157,226,236,172,90,216,5,0,157,226,236,172,20,252,5,0,157,226,236,172,42,201,6,0,157,226,236,172,117,223,6,0,157,98,164,178,201,55,9,0,157,98,164,178,253,55,9,0,158,98,114,131,23,27,7,0,159,98,113,152,70,7,8,0,162,98,30,239,220,39,7,0,162,98,124,23,60,152,7,0,162,98,124,23,79,237,8,0,167,98,156,95,4,52,10,0,167,226,93,73,37,221,10,0,172,226,250,106,255,33,8,0,173,98,143,83,77,252,6,0,173,98,143,83,167,113,9,0,173,98,143,83,7,114,9,0,173,98,143,83,108,114,9,0,173,98,143,83,202,114,9,0,173,98,143,83,49,115,9,0,174,226,187,129,75,148,7,0,174,226,187,129,226,164,7,0,180,226,151,163,195,163,10,0,181,226,244,23,204,181,9,0,181,226,244,23,224,182,9,0,183,98,195,239,135,2,9,0,183,98,195,239,47,3,9,0,184,226,119,52,21,71,9,0,184,226,119,52,100,72,9,0,184,226,119,52,181,73,9,0,184,226,119,52,11,75,9,0,185,226,152,208,188,133,6,0,187,226,147,190,161,77,7,0,187,226,158,58,158,185,7,0,187,226,158,58,195,185,7,0,187,226,194,226,175,29,9,0,187,226,194,226,88,30,9,0,187,226,158,58,71,197,9,0,187,226,189,130,6,30,11,0,189,98,53,116,135,44,7,0,190,226,221,75,218,93,7,0,192,98,38,4,107,134,6,0,194,98,14,142,29,39,6,0,194,98,14,142,141,122,6,0,194,98,14,142,159,210,6,0,194,98,14,142,201,225,6,0,194,98,14,142,228,234,6,0,194,98,14,142,41,235,6,0,194,226,252,43,119,96,7,0,194,98,14,142,127,132,7,0,194,98,160,181,252,242,8,0,194,98,160,181,240,243,8,0,195,98,6,6,184,65,11,0,196,226,132,139,134,19,7,0,197,98,200,2,245,13,8,0,198,226,18,187,60,152,7,0,199,226,16,71,4,52,10,0,200,226,61,47,222,63,11,0,202,226,106,103,44,51,7,0,202,226,18,36,3,70,7,0,202,98,40,238,194,138,7,0,202,226,232,254,4,52,10,0,202,98,56,247,37,93,11,0,206,226,112,164,42,86,11,0,207,226,165,237,75,241,6,0,208,226,111,223,255,74,7,0,216,98,55,149,119,96,7,0,216,98,88,233,132,21,9,0,216,98,88,233,157,23,9,0,217,98,235,185,102,15,7,0,217,98,42,243,4,52,10,0,218,226,84,82,194,138,7,0,224,226,39,185,155,214,7,0,224,226,52,60,159,32,10,0,224,226,52,60,240,32,10,0,225,98,252,105,161,77,7,0,226,226,130,100,16,183,8,0,226,226,130,100,251,191,8,0,226,226,130,100,239,200,8,0,230,226,177,176,11,217,7,0,231,98,49,238,252,230,7,0,231,98,49,238,42,231,7,0,233,226,207,146,244,241,6,0,233,226,145,214,215,242,6,0,234,98,24,51,209,84,7,0,236,98,113,50,4,44,7,0,236,98,44,24,205,87,7,0,237,226,210,8,4,52,10,0,238,226,158,90,16,183,8,0,238,226,158,90,251,191,8,0,238,226,158,90,239,200,8,0,239,226,20,158,236,133,6,0,243,226,105,139,139,254,6,0,247,98,158,246,96,221,6,0,247,98,158,246,0,132,9,0,247,226,52,162,4,52,10,0,248,226,91,137,43,72,10,0,248,226,91,137,148,72,10,0,251,98,54,179,194,138,7,0,252,98,97,128,173,2,6,0,252,98,97,128,194,2,6,0,252,226,96,246,188,213,9,0,252,226,96,246,58,214,9,0,252,226,96,246,197,214,9,0,254,98,72,196,23,26,8,0,254,226,200,204,198,146,9,0,254,226,200,204,20,147,9,0,254,226,158,161,146,7,11,0,255,226,244,126,252,169,7,0,0,227,188,242,186,144,6,0,0,227,141,208,16,183,8,0,0,227,141,208,251,191,8,0,0,227,141,208,239,200,8,0,0,99,70,16,106,231,10,0,1,227,35,129,138,183,6,0,2,227,40,24,6,89,6,0,3,99,80,123,186,26,9,0,3,99,80,123,120,27,9,0,3,99,80,123,48,28,9,0,6,99,176,189,69,166,11,0,9,227,147,33,60,152,7,0,9,227,147,33,82,163,7,0,10,227,93,171,102,214,8,0,10,227,93,171,14,218,8,0,10,227,172,36,61,68,11,0,13,99,111,60,51,220,6,0,13,227,227,213,177,105,7,0,15,227,232,125,145,114,7,0,16,227,104,139,106,231,10,0,17,99,40,254,28,13,6,0,17,227,233,127,16,37,7,0,18,227,137,146,55,108,7,0,18,99,188,9,194,138,7,0,20,99,16,144,143,24,11,0,21,227,23,207,65,41,7,0,21,227,209,145,219,238,8,0,21,227,209,145,39,240,8,0,21,227,209,145,117,241,8,0,22,227,6,7,32,20,9,0,22,227,6,7,179,20,9,0,22,99,207,41,99,250,10,0,23,227,115,82,29,120,7,0,24,227,43,219,75,148,7,0,24,227,43,219,191,158,7,0,27,99,117,97,0,55,7,0,27,99,117,97,163,57,7,0,28,227,38,211,23,27,7,0,29,99,3,163,135,44,7,0,30,99,1,138,135,43,7,0,31,99,17,167,194,185,9,0,31,99,17,167,96,186,9,0,33,99,27,125,55,108,7,0,34,227,223,104,135,44,7,0,37,227,5,55,32,20,9,0,37,227,5,55,179,20,9,0,40,227,206,189,248,209,5,0,41,99,49,150,47,43,7,0,43,227,153,79,97,16,7,0,44,99,170,41,60,27,11,0,48,227,40,104,223,113,7,0,49,227,37,224,187,6,6,0,49,99,219,36,117,84,8,0,50,227,102,100,193,100,10,0,50,227,102,100,89,103,10,0,52,99,17,245,168,152,9,0,53,99,230,250,167,242,9,0,54,99,95,125,93,27,6,0,54,99,234,2,111,201,6,0,54,99,82,139,183,82,7,0,54,99,245,144,243,234,7,0,59,99,73,148,209,149,8,0,60,99,198,222,45,226,8,0,60,99,198,222,130,231,8,0,65,99,118,181,227,221,5,0,65,99,213,233,77,250,10,0,65,99,213,233,224,250,10,0,66,99,49,189,86,56,9,0,66,99,49,189,9,57,9,0,67,99,178,66,129,44,8,0,67,99,178,66,158,44,8,0,67,99,178,66,200,44,8,0,69,227,137,8,239,22,8,0,69,99,15,233,83,126,8,0,69,99,15,233,214,127,8,0,69,99,15,233,65,128,8,0,69,99,15,233,89,129,8,0,69,99,15,233,151,129,8,0,69,99,15,233,228,129,8,0,72,227,186,52,77,11,7,0,75,227,108,2,77,246,6,0,76,99,213,233,12,99,7,0,76,227,195,5,16,183,8,0,76,227,195,5,251,191,8,0,76,227,195,5,239,200,8,0,79,99,122,119,213,15,9,0,80,227,25,142,134,19,7,0,81,227,46,127,102,214,8,0,81,227,46,127,14,218,8,0,81,99,61,250,208,240,10,0,85,227,144,25,176,137,6,0,86,99,1,28,127,217,10,0,88,227,238,17,4,52,10,0,88,99,254,72,163,88,10,0,88,99,254,72,83,89,10,0,91,99,196,244,234,110,6,0,91,227,225,148,76,144,6,0,92,99,240,4,197,96,8,0,92,99,240,4,4,97,8,0,92,99,240,4,57,97,8,0,93,99,181,0,168,152,9,0,98,99,231,133,231,111,6,0,99,227,112,131,209,19,10,0,100,99,213,51,47,43,7,0,104,227,143,147,222,14,7,0,104,227,189,193,23,27,7,0,104,99,229,197,145,114,7,0,105,227,151,159,46,187,7,0,105,227,151,159,110,223,10,0,106,227,56,9,145,114,7,0,107,99,25,186,66,3,7,0,107,99,229,86,13,99,11,0,109,99,68,75,253,38,9,0,109,99,68,75,207,40,9,0,114,99,166,128,126,39,6,0,114,99,166,128,39,61,6,0,115,99,125,67,213,15,9,0,124,227,62,126,138,62,6,0,124,227,34,205,9,86,10,0,124,227,34,205,44,86,10,0,125,227,22,204,24,155,6,0,125,227,221,81,60,152,7,0,125,227,221,81,190,122,8,0,125,227,221,81,83,123,8,0,125,227,221,81,244,123,8,0,125,227,221,81,210,33,10,0,126,227,249,43,42,229,5,0,127,227,227,54,41,73,10,0,127,227,227,54,70,73,10,0,128,99,167,203,209,84,7,0,128,227,81,236,220,119,9,0,128,227,81,236,8,120,9,0,129,99,26,173,132,21,9,0,129,99,26,173,157,23,9,0,129,99,102,111,137,173,11,0,130,99,22,147,41,23,11,0,131,227,251,143,134,19,7,0,132,227,68,188,46,33,6,0,132,227,68,188,120,102,6,0,132,227,118,48,253,197,6,0,134,99,254,235,45,226,8,0,134,99,254,235,130,231,8,0,136,99,171,15,64,70,7,0,137,99,213,233,12,99,7,0,138,99,167,209,213,15,9,0,140,99,189,99,83,126,8,0,141,99,82,85,37,213,5,0,141,99,137,228,180,113,6,0,142,227,93,187,253,166,6,0,142,99,174,233,145,12,8,0,142,99,253,192,98,78,11,0,143,227,1,84,53,238,6,0,143,227,3,252,47,98,9,0,144,99,148,19,197,194,6,0,147,227,220,46,179,148,6,0,151,99,103,17,161,77,7,0,151,99,71,113,194,138,7,0,151,99,207,227,149,166,11,0,152,227,92,121,96,221,6,0,153,227,54,19,174,75,6,0,153,227,54,19,47,13,7,0,154,227,244,138,29,120,7,0,154,227,54,8,204,181,9,0,154,227,54,8,224,182,9,0,157,227,116,85,121,195,6,0,157,99,93,67,72,238,9,0,157,99,93,67,133,238,9,0,157,99,93,67,176,238,9,0,158,99,115,72,105,110,6,0,158,227,45,206,112,215,9,0,158,227,45,206,132,215,9,0,158,227,161,217,123,70,11,0,161,99,72,199,38,242,5,0,161,99,69,198,253,43,6,0,161,227,246,222,29,120,7,0,162,99,98,4,91,41,10,0,162,99,98,4,112,41,10,0,163,99,213,143,23,27,7,0,165,99,172,203,117,51,7,0,169,99,28,189,252,169,7,0,170,99,253,14,194,138,7,0,174,227,243,154,192,235,7,0,174,227,243,154,237,235,7,0,174,227,243,154,30,236,7,0,174,227,10,11,247,247,7,0,175,99,225,170,29,120,7,0,177,99,68,184,167,242,9,0,180,99,158,51,162,238,5,0,180,227,187,100,104,78,6,0,180,227,187,100,137,83,8,0,181,99,253,35,60,152,7,0,181,99,253,35,124,160,7,0,184,227,129,114,16,183,8,0,184,227,129,114,251,191,8,0,184,227,129,114,239,200,8,0,186,99,210,224,4,247,6,0,187,227,55,194,54,43,11,0,187,99,183,191,21,157,11,0,188,99,208,38,143,240,6,0,189,227,194,252,186,26,9,0,189,227,194,252,120,27,9,0,189,227,194,252,48,28,9,0,191,99,226,191,75,148,7,0,192,227,133,203,116,72,7,0,192,227,198,110,139,14,10,0,192,227,198,110,50,15,10,0,197,99,218,148,45,226,8,0,197,99,218,148,130,231,8,0,198,227,129,254,219,0,7,0,200,227,74,196,19,90,7,0,200,99,53,172,12,99,7,0,200,227,141,56,151,129,10,0,202,227,98,221,194,138,7,0,202,99,8,117,6,200,7,0,204,99,158,244,16,183,8,0,204,99,158,244,251,191,8,0,204,99,158,244,239,200,8,0,205,227,218,107,29,64,7,0,212,99,128,143,45,226,8,0,212,99,128,143,130,231,8,0,214,99,115,145,1,230,5,0,220,227,243,82,187,124,11,0,221,99,82,255,102,214,8,0,221,99,82,255,14,218,8,0,222,99,194,160,206,57,11,0,223,99,15,253,10,224,5,0,224,99,173,191,92,9,8,0,226,227,245,72,117,51,7,0,226,227,245,72,111,53,7,0,231,227,106,229,29,120,7,0,231,227,182,25,53,163,10,0,235,99,110,184,134,19,7,0,235,99,16,186,76,138,8,0,241,99,86,211,92,163,6,0,241,227,1,32,0,55,7,0,241,227,1,32,163,57,7,0,241,227,124,61,116,72,7,0,242,99,205,58,100,195,6,0,243,227,191,127,192,187,6,0,243,227,74,245,19,90,7,0,243,227,125,138,209,19,10,0,244,227,191,127,86,12,6,0,244,227,191,127,202,180,6,0,247,99,231,56,87,69,9,0,247,99,231,56,181,69,9,0,248,99,178,63,252,242,8,0,248,99,178,63,240,243,8,0,249,99,112,171,254,62,11,0,250,99,210,216,16,183,8,0,250,99,210,216,251,191,8,0,250,99,210,216,239,200,8,0,251,227,155,76,205,87,7,0,251,227,155,76,102,45,8,0,251,227,121,125,16,183,8,0,251,227,121,125,251,191,8,0,251,227,121,125,239,200,8,0,252,227,246,229,55,108,7,0,252,99,156,106,115,161,9,0,252,99,156,106,104,162,9,0,255,227,142,215,60,152,7,0,3,228,147,98,231,124,6,0,3,100,195,44,21,71,9,0,3,100,195,44,100,72,9,0,3,100,195,44,181,73,9,0,3,100,195,44,11,75,9,0,4,228,36,141,253,38,9,0,4,228,36,141,207,40,9,0,5,100,212,48,173,90,9,0,5,100,212,48,187,90,9,0,8,100,162,51,229,109,7,0,8,100,202,105,45,226,8,0,8,100,202,105,130,231,8,0,8,228,77,230,58,35,9,0,8,228,77,230,31,36,9,0,8,228,230,3,85,209,10,0,9,100,21,21,46,173,11,0,12,100,108,9,184,255,5,0,15,228,79,63,192,72,6,0,15,100,103,110,58,212,8,0,15,100,103,110,201,212,8,0,16,100,121,150,29,81,7,0,16,100,224,234,209,19,10,0,18,228,62,217,201,191,9,0,18,228,62,217,230,191,9,0,19,100,146,132,29,147,6,0,20,228,249,226,55,108,7,0,21,100,86,216,29,120,7,0,21,100,253,98,102,214,8,0,21,100,253,98,14,218,8,0,24,228,213,113,132,21,9,0,24,228,213,113,157,23,9,0,26,100,10,46,131,222,8,0,26,100,10,46,38,223,8,0,26,100,10,46,206,223,8,0,26,100,68,229,132,21,9,0,26,100,68,229,157,23,9,0,30,228,176,235,228,196,10,0,31,228,121,240,117,21,6,0,31,100,154,23,4,52,10,0,33,228,50,48,60,152,7,0,33,228,50,48,79,237,8,0,38,100,245,173,86,244,6,0,41,228,239,214,255,70,7,0,42,228,72,119,153,186,6,0,42,228,72,119,194,138,7,0,44,228,0,187,224,162,6,0,44,228,0,187,97,194,6,0,44,100,15,100,155,237,10,0,45,100,80,108,76,240,10,0,47,100,206,71,218,93,7,0,49,228,119,65,159,110,6,0,52,100,245,172,142,238,6,0,52,100,31,122,94,135,11,0,52,100,31,122,129,135,11,0,55,100,203,178,2,41,7,0,55,100,74,47,58,35,9,0,55,100,74,47,31,36,9,0,56,228,16,191,19,59,11,0,58,228,195,125,16,37,7,0,60,100,58,201,60,152,7,0,60,100,58,201,111,166,7,0,60,100,5,234,140,9,11,0,61,100,24,208,29,14,6,0,61,100,24,208,73,130,7,0,62,100,180,50,230,47,11,0,67,228,46,181,16,183,8,0,67,228,46,181,251,191,8,0,67,228,46,181,239,200,8,0,68,228,27,171,190,8,8,0,69,228,233,76,235,46,6,0,69,228,10,171,52,152,11,0,69,228,10,171,1,158,11,0,69,228,10,171,32,158,11,0,71,228,233,55,190,138,8,0,74,100,44,238,134,19,7,0,74,100,38,23,165,64,11,0,76,100,90,102,238,81,10,0,77,100,157,186,221,173,7,0,79,100,232,81,195,215,5,0,79,100,56,255,253,200,6,0,79,100,56,255,115,2,7,0,79,100,131,60,50,9,8,0,79,100,194,92,93,175,10,0,82,100,89,255,9,133,10,0,83,100,60,168,145,114,7,0,88,100,21,53,93,175,11,0,89,100,196,139,19,91,11,0,96,100,141,104,168,152,9,0,96,100,193,30,161,110,10,0,96,100,193,30,2,112,10,0,97,100,162,179,248,238,10,0,98,228,206,78,16,183,8,0,98,228,206,78,251,191,8,0,98,228,206,78,239,200,8,0,99,100,192,49,111,81,9,0,99,100,192,49,4,82,9,0,100,228,232,115,237,189,7,0,101,100,240,16,8,204,10,0,102,100,61,88,0,55,7,0,102,100,61,88,163,57,7,0,103,100,202,6,221,45,8,0,109,228,113,27,43,38,7,0,109,228,91,222,161,77,7,0,111,100,182,93,45,226,8,0,111,100,182,93,130,231,8,0,114,228,53,30,213,252,5,0,115,100,144,95,83,126,8,0,115,100,144,95,214,127,8,0,115,100,144,95,65,128,8,0,116,228,176,98,29,120,7,0,117,100,157,98,107,10,7,0,117,228,128,170,78,213,7,0,119,228,212,100,160,4,8,0,120,228,249,251,218,93,7,0,120,100,185,2,14,121,11,0,124,100,178,237,87,216,10,0,125,100,165,208,194,138,7,0,126,228,253,187,143,50,6,0,126,228,253,187,0,55,7,0,127,228,14,21,4,52,10,0,127,100,28,129,85,209,10,0,128,100,10,185,60,152,7,0,128,228,48,94,160,79,8,0,128,100,10,185,35,79,10,0,129,228,167,214,177,4,7,0,131,100,10,62,245,13,8,0,132,100,40,24,154,130,10,0,134,100,36,204,176,68,7,0,135,228,0,104,130,107,11,0,137,228,103,14,206,87,6,0,140,228,34,64,125,67,10,0,140,228,34,64,69,68,10,0,142,228,174,125,175,29,9,0,142,228,174,125,88,30,9,0,143,228,221,127,29,64,7,0,146,100,205,190,119,96,7,0,148,100,44,66,217,185,6,0,148,100,44,66,119,231,6,0,148,100,121,141,45,226,8,0,148,100,121,141,130,231,8,0,148,228,122,49,4,52,10,0,148,100,134,52,138,102,11,0,151,100,86,206,19,90,7,0,151,228,59,212,177,105,7,0,152,100,90,170,217,9,7,0,152,100,129,159,132,21,9,0,152,100,129,159,157,23,9,0,154,228,13,81,129,210,5,0,154,100,17,172,135,61,7,0,156,100,101,140,21,99,6,0,160,100,180,94,23,27,7,0,160,100,2,66,119,96,7,0,161,228,5,133,76,48,11,0,163,228,68,26,185,38,6,0,163,100,116,218,134,19,7,0,164,228,158,104,119,96,7,0,167,100,194,51,15,92,9,0,167,100,194,51,90,92,9,0,167,100,194,51,162,92,9,0,169,228,35,160,132,144,11,0,170,228,27,80,13,177,7,0,171,100,26,139,134,19,7,0,172,228,185,148,205,56,6,0,175,228,178,82,77,252,6,0,175,100,81,122,168,43,7,0,175,228,178,82,167,113,9,0,175,228,178,82,7,114,9,0,175,228,178,82,108,114,9,0,175,228,178,82,202,114,9,0,175,228,178,82,49,115,9,0,176,228,73,9,161,232,7,0,176,228,73,9,137,62,11,0,178,100,91,137,13,81,8,0,179,100,125,135,150,128,9,0,179,100,125,135,169,128,9,0,180,228,52,206,102,214,8,0,180,228,52,206,14,218,8,0,181,100,62,173,33,48,7,0,181,100,103,232,58,75,7,0,181,100,103,232,227,23,11,0,182,228,103,27,102,214,8,0,182,228,103,27,14,218,8,0,183,100,170,152,79,150,10,0,184,100,198,6,29,14,6,0,184,100,198,6,73,130,7,0,187,100,200,20,155,128,10,0,188,228,126,140,23,27,7,0,188,228,117,120,143,167,10,0,189,100,135,100,145,114,7,0,193,228,107,88,117,251,6,0,196,228,45,129,247,172,6,0,197,228,151,128,206,214,6,0,197,228,25,110,4,52,10,0,197,100,223,209,4,52,10,0,198,228,108,113,253,49,7,0,199,228,124,81,4,52,10,0,202,100,86,14,65,41,7,0,203,100,213,17,226,151,11,0,204,228,166,142,20,8,9,0,204,228,166,142,247,8,9,0,204,228,166,142,210,9,9,0,205,100,103,223,32,107,7,0,205,100,103,223,130,107,7,0,207,100,161,77,130,47,7,0,207,100,223,195,253,38,9,0,207,100,223,195,207,40,9,0,207,100,230,95,40,195,10,0,209,228,250,249,93,46,7,0,210,100,231,142,76,43,9,0,210,100,231,142,114,43,9,0,211,100,74,97,135,44,7,0,212,100,87,56,111,4,9,0,212,100,87,56,41,6,9,0,212,100,60,150,125,18,9,0,212,100,60,150,34,19,9,0,215,228,174,145,66,3,7,0,215,100,203,6,177,83,8,0,217,228,31,11,246,243,9,0,217,228,31,11,59,245,9,0,217,228,31,11,131,246,9,0,219,100,188,148,12,74,10,0,219,100,188,148,38,74,10,0,220,100,89,1,135,44,7,0,221,228,224,200,201,106,7,0,221,228,211,216,164,16,9,0,221,228,211,216,141,17,9,0,224,100,99,196,29,120,7,0,224,100,133,80,105,216,10,0,226,228,13,138,26,218,5,0,226,228,76,242,13,8,7,0,226,228,7,236,16,37,7,0,226,100,199,17,135,44,7,0,226,228,167,183,145,12,8,0,226,228,85,101,204,16,8,0,227,100,160,136,187,124,11,0,230,228,118,1,45,226,8,0,230,228,118,1,130,231,8,0,232,100,79,200,113,35,7,0,232,100,79,200,49,157,10,0,236,100,129,236,84,89,8,0,236,228,146,34,157,166,9,0,236,228,146,34,185,166,9,0,239,100,153,134,4,52,10,0,241,100,91,70,101,64,7,0,241,100,21,126,77,135,10,0,241,100,200,245,33,240,10,0,247,228,101,93,99,225,5,0,248,100,219,73,101,64,7,0,248,228,101,67,72,102,9,0,248,228,101,67,254,102,9,0,249,100,45,225,25,186,7,0,249,100,70,237,45,45,9,0,249,100,70,237,75,45,9,0,250,228,135,134,45,226,8,0,250,228,135,134,130,231,8,0,251,100,165,55,219,11,8,0,252,228,111,136,90,104,6,0,253,100,39,123,66,3,7,0,255,100,86,67,228,154,6,0,255,100,86,67,90,212,7,0,255,100,86,67,137,212,7,0,255,100,86,67,221,51,8,0,0,229,215,187,202,132,10,0,1,229,89,222,181,166,11,0,2,101,138,70,193,100,10,0,2,101,138,70,89,103,10,0,6,101,236,88,65,20,11,0,7,101,208,72,73,38,7,0,7,101,163,23,14,137,9,0,7,101,163,23,201,137,9,0,9,101,169,49,233,83,7,0,10,229,115,88,220,39,7,0,10,101,205,160,6,72,10,0,10,101,122,166,228,57,11,0,10,101,122,166,1,71,11,0,11,229,63,217,29,120,7,0,11,101,231,242,62,223,9,0,11,101,231,242,64,224,9,0,11,101,231,242,93,225,9,0,11,101,245,150,66,166,10,0,13,101,132,41,102,214,8,0,13,101,132,41,14,218,8,0,13,101,101,9,13,23,11,0,14,229,140,1,252,128,10,0,14,229,151,221,152,65,11,0,15,229,244,144,60,152,7,0,15,229,244,144,128,112,8,0,20,229,88,145,170,91,7,0,21,101,53,167,57,220,10,0,23,101,241,45,78,61,9,0,23,101,241,45,115,61,9,0,23,101,215,199,167,113,9,0,23,101,215,199,7,114,9,0,23,101,215,199,108,114,9,0,23,101,215,199,202,114,9,0,23,101,215,199,49,115,9,0,24,229,207,16,214,42,9,0,24,229,207,16,249,42,9,0,32,101,200,114,219,143,6,0,32,229,26,244,40,14,9,0,32,229,26,244,96,14,9,0,34,229,83,20,147,72,8,0,37,229,70,82,246,42,7,0,37,229,7,12,97,132,8,0,37,229,7,12,212,113,11,0,37,101,255,157,167,155,11,0,38,229,20,235,100,183,7,0,39,101,61,182,22,91,7,0,41,229,76,105,180,155,10,0,44,101,133,111,18,210,8,0,44,101,133,111,113,210,8,0,44,101,133,111,217,210,8,0,44,229,175,13,4,52,10,0,44,229,166,87,177,247,10,0,45,101,146,22,167,242,9,0,47,101,180,173,190,2,11,0,49,229,6,190,18,142,11,0,50,101,156,95,193,100,10,0,50,101,156,95,89,103,10,0,54,229,95,193,12,99,7,0,55,229,74,5,38,65,6,0,57,229,122,22,145,114,7,0,58,229,119,211,91,71,6,0,58,101,85,7,201,182,7,0,59,229,81,128,122,87,9,0,59,229,81,128,212,87,9,0,59,229,81,128,40,88,9,0,60,101,139,207,76,187,6,0,60,229,196,109,253,49,7,0,62,101,68,250,168,152,9,0,64,101,6,26,213,110,7,0,67,101,206,76,86,56,9,0,67,101,206,76,9,57,9,0,70,229,238,25,14,12,8,0,72,101,166,124,241,190,7,0,74,101,233,113,57,10,6,0,74,229,151,84,225,255,7,0,74,229,151,84,27,0,8,0,74,229,151,84,95,0,8,0,74,229,151,84,164,0,8,0,75,229,175,144,72,102,9,0,75,229,175,144,254,102,9,0,75,229,141,191,255,70,10,0,75,229,141,191,87,71,10,0,75,229,141,191,174,71,10,0,79,229,229,19,118,71,6,0,79,101,2,130,23,27,7,0,79,229,137,150,45,226,8,0,79,229,137,150,130,231,8,0,81,229,236,156,41,212,5,0,81,101,125,206,23,27,7,0,83,101,98,84,50,83,7,0,83,229,142,92,199,167,9,0,83,229,142,92,230,167,9,0,83,229,142,92,14,168,9,0,86,229,56,211,54,184,7,0,87,229,109,20,181,154,6,0,87,229,109,20,81,160,6,0,87,101,82,209,118,151,7,0,87,229,24,90,253,38,9,0,87,229,24,90,207,40,9,0,89,229,91,180,16,183,8,0,89,229,91,180,251,191,8,0,89,229,91,180,239,200,8,0,89,229,2,146,102,214,8,0,89,229,2,146,14,218,8,0,89,101,71,64,132,21,9,0,89,101,71,64,157,23,9,0,90,101,223,25,4,52,10,0,96,101,183,187,219,238,8,0,96,101,183,187,39,240,8,0,96,101,183,187,117,241,8,0,98,101,202,54,59,62,6,0,104,101,21,212,192,2,7,0,104,229,191,195,49,38,11,0,110,101,93,207,6,249,9,0,110,101,93,207,105,249,9,0,110,101,93,207,201,249,9,0,113,101,45,57,152,42,8,0,114,101,182,200,16,183,8,0,114,101,182,200,251,191,8,0,114,101,182,200,239,200,8,0,114,101,238,33,93,137,10,0,117,101,225,0,176,68,7,0,117,229,70,82,252,169,11,0,119,101,232,68,49,240,10,0,123,101,147,183,111,81,9,0,123,101,147,183,4,82,9,0,123,101,140,77,7,8,11,0,124,229,222,127,51,3,6,0,124,101,182,147,16,92,6,0,125,229,222,127,158,0,6,0,127,229,59,113,134,19,7,0,128,101,128,76,75,112,7,0,129,101,150,69,32,20,9,0,129,101,150,69,179,20,9,0,129,101,9,231,93,28,10,0,129,101,9,231,116,28,10,0,130,101,211,34,85,29,10,0,134,229,226,155,4,52,10,0,135,229,240,17,30,252,10,0,136,229,40,247,134,19,7,0,137,229,85,140,224,25,9,0,137,229,85,140,243,25,9,0,138,101,39,237,116,72,7,0,139,101,250,251,145,12,8,0,139,229,98,110,252,242,8,0,139,229,98,110,240,243,8,0,140,101,247,6,25,147,10,0,145,101,162,75,163,57,7,0,145,229,27,31,173,158,8,0,147,229,195,65,206,61,9,0,147,229,195,65,234,61,9,0,147,229,195,65,22,62,9,0,148,101,239,212,207,48,7,0,149,229,156,95,134,228,5,0,149,101,4,41,75,112,7,0,149,229,156,95,155,134,7,0,149,101,58,201,27,219,10,0,152,101,164,56,102,214,8,0,152,101,164,56,14,218,8,0,153,229,237,62,177,202,6,0,153,229,192,174,62,223,9,0,153,229,192,174,64,224,9,0,153,229,192,174,93,225,9,0,153,229,50,248,4,52,10,0,153,101,243,42,218,51,11,0,154,101,151,253,0,55,7,0,154,101,151,253,163,57,7,0,155,101,132,42,204,22,6,0,156,101,161,222,139,254,6,0,157,229,158,249,4,52,10,0,157,229,57,59,253,117,10,0,157,229,57,59,53,118,10,0,158,101,78,47,31,6,7,0,160,101,248,171,4,167,9,0,160,101,248,171,32,167,9,0,160,101,206,34,238,35,10,0,160,101,206,34,35,36,10,0,165,101,203,166,65,132,7,0,165,101,203,166,94,132,7,0,167,229,86,108,64,38,8,0,167,229,86,108,100,38,8,0,167,229,86,108,140,38,8,0,169,229,58,227,66,3,7,0,170,101,2,114,255,191,10,0,173,101,151,159,183,205,10,0,174,229,46,135,25,86,7,0,174,229,46,135,74,86,7,0,175,101,166,116,102,164,10,0,176,101,189,174,116,72,7,0,180,101,72,148,2,128,11,0,182,101,163,249,14,137,9,0,182,101,163,249,201,137,9,0,183,229,111,66,16,183,8,0,183,229,111,66,251,191,8,0,183,229,111,66,239,200,8,0,187,101,222,69,129,84,6,0,190,229,24,89,14,137,9,0,190,229,24,89,201,137,9,0,192,101,174,64,240,248,6,0,194,101,182,148,162,128,11,0,196,101,213,232,23,27,7,0,198,229,82,126,77,222,6,0,198,101,135,1,145,114,7,0,198,101,134,175,16,183,8,0,198,101,134,175,251,191,8,0,198,101,134,175,239,200,8,0,202,101,208,109,29,120,7,0,205,101,97,198,11,118,11,0,208,229,216,150,39,95,6,0,208,229,216,150,62,129,6,0,210,229,80,183,145,114,7,0,214,101,50,143,215,242,6,0,214,229,133,252,51,104,7,0,215,229,188,85,217,34,9,0,215,229,188,85,245,34,9,0,216,101,99,150,217,118,6,0,218,229,82,227,135,44,7,0,218,229,233,221,152,252,8,0,223,229,62,24,42,68,9,0,223,229,62,24,103,68,9,0,224,229,99,110,45,8,10,0,224,229,99,110,79,8,10,0,224,229,99,110,123,8,10,0,225,229,107,20,23,253,6,0,225,229,248,252,111,4,9,0,225,229,248,252,41,6,9,0,226,101,10,146,130,47,7,0,229,101,231,247,23,27,7,0,231,229,70,82,102,15,7,0,233,229,168,241,106,1,6,0,233,229,250,239,16,183,8,0,233,229,250,239,251,191,8,0,233,229,250,239,239,200,8,0,233,229,43,50,102,214,8,0,233,229,43,50,14,218,8,0,234,229,215,233,164,16,9,0,234,229,215,233,141,17,9,0,235,229,33,88,102,15,7,0,237,229,155,90,23,156,6,0,237,101,30,103,45,226,8,0,237,101,30,103,130,231,8,0,240,101,167,23,73,38,7,0,240,101,109,249,163,57,7,0,243,101,158,86,78,130,6,0,243,229,128,72,23,27,7,0,246,101,198,183,116,72,7,0,246,229,213,153,102,214,8,0,246,229,213,153,14,218,8,0,247,101,5,109,116,72,7,0,248,229,31,61,65,41,7,0,248,229,31,61,201,42,7,0,251,229,128,186,199,36,7,0,251,229,128,186,161,77,7,0,253,229,219,5,145,114,7,0,0,230,67,189,174,121,6,0,1,102,209,184,175,148,8,0,1,102,209,184,251,148,8,0,1,102,209,184,72,149,8,0,4,102,84,87,228,171,10,0,7,102,209,78,4,52,10,0,8,102,252,49,187,199,9,0,8,102,252,49,216,199,9,0,8,102,252,49,12,200,9,0,9,102,98,222,52,68,6,0,11,102,214,90,134,19,7,0,12,102,185,125,225,65,11,0,14,102,84,230,134,19,7,0,14,102,238,78,220,93,8,0,14,102,144,71,23,1,11,0,15,102,113,107,183,249,6,0,17,230,54,96,11,198,10,0,19,102,211,116,1,88,6,0,21,230,193,174,2,237,6,0,21,230,13,8,204,50,9,0,21,230,13,8,17,51,9,0,21,230,13,8,93,51,9,0,22,230,40,47,165,212,9,0,22,230,40,47,179,212,9,0,22,230,40,47,10,213,9,0,23,230,169,39,245,114,6,0,24,102,2,116,51,104,7,0,26,230,164,139,95,51,6,0,26,230,167,129,102,214,8,0,26,230,167,129,14,218,8,0,29,230,73,31,106,161,6,0,30,102,45,239,110,118,11,0,31,102,60,66,181,111,7,0,31,230,80,83,20,8,9,0,31,230,80,83,247,8,9,0,31,230,80,83,210,9,9,0,32,102,34,129,25,88,8,0,35,230,151,53,184,209,5,0,37,102,166,125,39,47,9,0,37,102,166,125,54,48,9,0,38,102,31,5,12,99,7,0,40,102,67,16,29,120,7,0,44,230,108,73,88,29,11,0,46,230,110,27,135,61,7,0,47,230,25,123,135,44,7,0,51,102,66,162,45,226,8,0,51,102,66,162,130,231,8,0,53,230,120,71,16,183,8,0,53,230,120,71,251,191,8,0,53,230,120,71,239,200,8,0,56,230,247,217,14,126,6,0,56,102,147,51,175,29,9,0,56,102,147,51,88,30,9,0,56,230,247,217,193,100,10,0,56,230,247,217,89,103,10,0,57,230,242,171,173,17,7,0,57,102,59,56,39,35,7,0,63,102,182,119,45,226,8,0,63,102,182,119,130,231,8,0,64,102,129,29,45,226,8,0,64,102,129,29,130,231,8,0,68,102,143,228,16,183,8,0,68,102,143,228,251,191,8,0,68,102,143,228,239,200,8,0,69,230,118,69,152,65,7,0,71,102,72,216,57,235,10,0,72,102,58,163,34,17,6,0,73,230,186,247,133,240,9,0,73,230,186,247,161,240,9,0,73,230,186,247,185,240,9,0,78,230,171,182,161,77,7,0,78,230,18,86,177,105,7,0,80,102,51,220,134,19,7,0,84,230,167,183,151,186,7,0,84,230,167,183,151,186,7,0,86,102,189,216,155,147,8,0,87,102,239,20,175,54,6,0,87,230,46,46,134,19,7,0,88,102,179,193,253,49,7,0,88,102,179,193,150,46,8,0,89,102,116,92,12,99,7,0,89,102,43,24,208,67,11,0,91,230,196,127,96,151,11,0,92,230,180,28,216,140,9,0,92,230,180,28,69,141,9,0,93,230,12,184,117,51,7,0,94,230,100,25,16,183,8,0,94,230,100,25,251,191,8,0,94,230,100,25,239,200,8,0,95,230,1,164,23,27,7,0,97,102,255,20,20,13,9,0,97,102,255,20,45,13,9,0,97,102,255,20,70,13,9,0,97,102,255,20,101,13,9,0,99,102,137,142,211,38,11,0,100,102,192,119,19,167,6,0,101,230,29,211,139,14,10,0,101,230,29,211,50,15,10,0,102,230,58,180,117,51,7,0,102,230,58,180,111,53,7,0,103,102,246,190,4,86,8,0,105,230,255,19,4,52,10,0,109,102,22,60,242,105,10,0,109,102,22,60,6,106,10,0,109,230,94,93,134,107,10,0,109,230,94,93,210,107,10,0,110,102,85,71,117,51,7,0,110,102,85,71,111,53,7,0,110,230,18,142,45,226,8,0,110,230,18,142,130,231,8,0,111,102,60,224,0,55,7,0,111,102,60,224,177,105,7,0,114,230,160,49,102,214,8,0,114,230,160,49,14,218,8,0,121,230,229,158,161,77,7,0,122,102,248,110,186,26,9,0,122,102,248,110,120,27,9,0,122,102,248,110,48,28,9,0,124,102,254,54,23,27,7,0,125,102,230,57,102,214,8,0,125,102,230,57,14,218,8,0,130,102,69,230,89,5,7,0,130,102,154,170,119,96,7,0,132,230,80,76,194,138,7,0,134,102,116,14,24,192,7,0,134,102,247,88,186,26,9,0,134,102,247,88,120,27,9,0,134,102,247,88,48,28,9,0,135,102,139,151,96,8,7,0,135,230,44,158,27,9,7,0,137,102,75,132,181,150,6,0,137,230,183,29,186,158,9,0,137,230,183,29,5,159,9,0,138,230,230,251,84,0,6,0,138,230,230,251,126,100,6,0,140,102,123,6,217,9,7,0,140,102,11,80,12,99,7,0,141,102,183,132,193,100,10,0,141,102,183,132,89,103,10,0,143,230,244,22,118,151,7,0,143,102,6,244,12,3,10,0,143,102,6,244,41,3,10,0,143,102,6,244,65,3,10,0,149,102,69,237,199,44,6,0,152,230,185,26,102,214,8,0,152,230,185,26,14,218,8,0,154,102,238,182,12,139,10,0,155,230,184,33,44,227,5,0,159,102,237,24,234,245,6,0,160,230,9,83,119,96,7,0,161,102,100,95,133,12,7,0,164,230,247,129,194,138,7,0,174,230,189,11,189,199,6,0,176,230,221,156,157,148,10,0,177,102,21,35,104,195,9,0,177,102,21,35,138,195,9,0,177,230,144,247,193,100,10,0,177,230,144,247,89,103,10,0,177,102,219,27,220,13,11,0,180,230,226,235,16,183,8,0,180,230,226,235,251,191,8,0,180,230,226,235,239,200,8,0,181,230,35,231,19,59,11,0,182,230,137,171,64,70,7,0,182,102,202,214,161,77,7,0,183,230,126,216,189,199,6,0,186,102,224,188,56,238,7,0,190,230,156,139,211,65,8,0,192,230,61,131,45,226,8,0,192,230,61,131,130,231,8,0,193,230,58,23,153,32,11,0,195,102,125,118,119,96,7,0,196,230,157,155,202,251,8,0,196,230,157,155,240,251,8,0,197,230,34,202,196,214,5,0,197,230,34,202,168,192,6,0,197,102,184,223,37,92,10,0,197,102,184,223,106,92,10,0,198,102,221,205,152,228,7,0,199,230,58,14,106,231,10,0,204,230,143,131,207,48,7,0,206,230,81,9,132,21,9,0,206,230,81,9,157,23,9,0,210,102,41,135,194,138,7,0,214,102,131,182,245,199,10,0,214,102,131,182,33,200,10,0,216,230,184,21,252,242,8,0,216,230,184,21,240,243,8,0,219,102,9,126,16,37,7,0,221,102,75,137,19,1,7,0,221,102,75,137,90,173,11,0,222,102,6,189,127,28,6,0,222,230,101,187,184,89,7,0,222,230,101,187,19,90,7,0,222,230,243,10,234,121,11,0,223,230,49,221,139,179,9,0,223,230,49,221,177,179,9,0,223,230,49,221,213,179,9,0,223,230,143,71,244,23,11,0,226,102,26,191,208,86,10,0,226,102,26,191,239,86,10,0,227,230,117,130,33,171,7,0,228,230,166,249,209,84,7,0,229,102,158,61,17,199,10,0,231,230,179,139,195,175,7,0,232,230,205,234,38,117,8,0,232,230,157,170,124,165,11,0,236,230,177,21,218,93,7,0,237,230,62,126,91,149,6,0,238,230,177,229,36,146,10,0,239,102,250,88,255,110,7,0,241,230,129,243,45,206,7,0,241,230,93,252,41,212,7,0,241,230,143,224,113,0,9,0,241,230,143,224,160,0,9,0,244,102,196,5,244,241,6,0,244,102,80,161,65,76,7,0,249,230,136,164,244,55,6,0,250,102,237,97,153,96,8,0,2,231,7,105,167,242,9,0,6,231,93,152,51,104,7,0,6,103,199,193,188,150,10,0,7,103,197,206,247,157,8,0,9,103,28,136,20,8,9,0,9,103,28,136,247,8,9,0,9,103,28,136,210,9,9,0,9,103,72,115,72,102,9,0,9,103,72,115,254,102,9,0,11,103,52,193,241,190,7,0,12,103,195,138,4,52,10,0,13,103,126,179,145,114,7,0,14,231,59,159,12,99,7,0,17,103,189,211,145,114,7,0,17,231,154,98,55,95,10,0,17,231,154,98,143,95,10,0,25,103,190,140,75,148,7,0,25,103,190,140,226,164,7,0,25,231,214,144,217,238,9,0,25,231,214,144,174,239,9,0,25,231,38,226,12,52,11,0,27,231,149,164,233,83,7,0,27,103,74,21,151,156,10,0,27,103,74,21,157,172,10,0,27,103,74,21,4,176,10,0,30,103,249,26,194,138,7,0,32,231,158,232,173,17,7,0,33,103,10,207,143,240,6,0,40,231,170,230,58,69,6,0,40,103,115,42,89,5,7,0,41,103,169,83,48,71,6,0,41,103,79,128,99,254,10,0,46,103,131,182,194,138,7,0,48,231,65,186,20,8,9,0,48,231,65,186,247,8,9,0,48,231,65,186,210,9,9,0,49,231,179,222,116,72,7,0,49,231,18,227,21,71,9,0,49,231,18,227,100,72,9,0,49,231,18,227,181,73,9,0,49,231,18,227,11,75,9,0,51,103,11,122,187,224,5,0,52,103,1,126,239,132,6,0,52,103,1,126,252,185,6,0,52,103,1,126,88,201,6,0,52,103,1,126,126,214,6,0,56,231,231,109,11,244,5,0,56,103,152,20,192,2,7,0,59,103,171,252,168,104,8,0,59,103,171,252,168,104,8,0,59,103,171,252,45,105,8,0,59,103,171,252,45,105,8,0,59,103,171,252,167,105,8,0,59,103,171,252,167,105,8,0,59,103,88,10,199,42,11,0,60,231,24,197,193,220,10,0,64,103,37,118,246,42,7,0,66,231,186,158,220,93,8,0,67,103,155,253,135,61,7,0,73,103,30,166,231,253,10,0,74,103,56,62,158,251,5,0,74,103,231,242,207,48,7,0,75,103,129,191,147,151,9,0,75,103,129,191,184,151,9,0,77,103,180,145,194,138,7,0,79,231,233,210,140,180,6,0,79,231,125,81,29,120,7,0,80,103,101,37,196,178,11,0,81,103,249,149,51,65,7,0,82,103,200,131,111,16,8,0,82,103,243,103,125,223,10,0,83,103,81,62,23,101,6,0,83,103,238,219,23,27,7,0,83,103,81,62,60,152,7,0,83,103,96,100,42,228,10,0,84,103,85,170,23,27,7,0,84,103,4,139,81,181,10,0,84,103,217,79,206,184,10,0,84,103,217,79,251,187,10,0,85,103,62,31,60,152,7,0,85,103,34,169,16,183,8,0,85,103,34,169,251,191,8,0,85,103,34,169,239,200,8,0,85,103,62,31,5,4,9,0,85,103,62,31,54,4,9,0,86,103,155,34,63,252,10,0,87,231,242,19,208,12,7,0,88,103,242,127,243,191,6,0,88,231,201,26,164,153,10,0,91,231,1,127,134,19,7,0,92,231,239,51,60,152,7,0,92,231,239,51,190,122,8,0,92,231,239,51,83,123,8,0,92,231,239,51,244,123,8,0,92,231,239,51,210,33,10,0,94,231,76,126,117,51,7,0,94,231,76,126,111,53,7,0,94,231,34,230,4,52,10,0,95,103,206,237,248,69,6,0,95,231,78,181,135,134,11,0,97,103,167,255,205,31,9,0,97,103,167,255,242,31,9,0,98,103,254,166,19,145,10,0,98,103,243,119,253,223,10,0,99,231,12,230,191,86,7,0,99,231,198,155,208,128,10,0,100,103,183,214,0,55,7,0,100,103,183,214,163,57,7,0,101,231,206,78,166,190,7,0,102,231,73,31,195,168,6,0,106,103,161,101,83,211,5,0,107,103,185,176,4,52,10,0,109,231,187,129,205,87,7,0,112,103,113,3,71,227,10,0,114,231,123,81,199,147,7,0,114,231,123,81,226,164,7,0,114,231,123,81,252,173,7,0,114,231,0,202,51,248,8,0,114,231,0,202,162,248,8,0,116,231,255,65,153,84,6,0,116,231,167,209,71,181,8,0,117,103,194,60,15,161,6,0,117,231,236,1,214,42,9,0,117,231,236,1,249,42,9,0,118,231,224,247,91,158,10,0,119,231,47,228,0,55,7,0,119,231,47,228,163,57,7,0,121,103,183,99,135,61,7,0,123,103,145,200,142,113,7,0,128,103,111,236,187,158,10,0,132,231,220,86,27,47,7,0,133,103,188,230,4,52,10,0,134,231,192,34,66,3,7,0,135,103,4,144,4,52,10,0,136,231,98,51,0,55,7,0,136,231,98,51,163,57,7,0,137,103,237,107,45,226,8,0,137,103,237,107,130,231,8,0,138,103,10,202,213,15,9,0,140,231,10,195,233,16,7,0,140,231,17,224,217,238,9,0,140,231,17,224,174,239,9,0,140,103,238,50,4,52,10,0,140,103,111,92,128,151,10,0,141,103,142,182,168,152,9,0,141,103,232,17,193,100,10,0,141,103,232,17,89,103,10,0,142,231,56,207,234,245,6,0,142,231,26,233,175,174,11,0,143,103,191,28,95,59,9,0,143,103,191,28,147,59,9,0,143,231,69,128,167,242,9,0,147,231,127,151,103,83,6,0,147,103,153,198,63,119,6,0,147,231,163,29,89,5,7,0,149,103,157,38,85,90,6,0,149,231,37,119,23,253,6,0,149,103,157,38,134,19,7,0,149,103,209,136,119,96,7,0,149,231,128,185,221,98,9,0,149,231,128,185,47,99,9,0,150,103,67,180,14,137,9,0,150,103,67,180,201,137,9,0,150,103,47,160,10,150,11,0,153,103,24,117,83,126,8,0,153,231,125,237,253,38,9,0,153,231,125,237,207,40,9,0,153,231,19,246,4,52,10,0,156,103,233,175,134,19,7,0,157,231,233,202,51,248,8,0,157,231,233,202,162,248,8,0,158,103,53,171,53,244,5,0,158,231,167,38,217,103,7,0,158,231,92,144,168,152,9,0,159,231,90,231,152,63,7,0,159,231,90,231,60,152,7,0,159,231,90,231,59,166,7,0,159,231,56,127,107,229,7,0,161,231,91,103,134,19,7,0,164,103,95,194,45,33,9,0,164,103,95,194,120,33,9,0,168,103,146,163,139,254,6,0,171,231,243,126,201,19,6,0,172,103,178,253,180,254,7,0,173,231,60,128,222,121,6,0,175,103,165,84,53,192,9,0,175,103,165,84,99,192,9,0,177,103,176,124,163,57,7,0,179,231,51,206,4,52,10,0,180,103,195,241,175,154,11,0,180,103,195,241,57,158,11,0,183,103,97,7,218,61,8,0,183,103,50,233,19,245,8,0,183,103,50,233,76,245,8,0,184,231,159,43,85,94,6,0,186,103,134,236,38,65,6,0,186,103,96,47,167,199,6,0,191,231,252,201,107,10,7,0,192,231,11,246,23,27,7,0,197,231,19,97,16,183,8,0,197,231,19,97,251,191,8,0,197,231,19,97,239,200,8,0,200,231,145,18,103,48,7,0,200,103,122,22,88,195,7,0,201,231,84,124,153,113,10,0,201,231,84,124,27,114,10,0,203,231,168,153,221,254,7,0,204,103,168,26,181,46,11,0,205,103,188,148,116,72,7,0,205,103,168,190,53,46,11,0,207,231,175,152,166,248,6,0,208,103,223,173,205,87,7,0,210,231,255,212,166,248,6,0,210,103,169,177,165,224,8,0,210,103,169,177,86,225,8,0,212,231,250,126,107,10,7,0,212,103,248,47,12,99,7,0,212,103,161,174,145,114,7,0,212,103,248,47,194,138,7,0,217,103,88,110,249,143,6,0,218,103,96,123,163,57,7,0,218,103,213,78,58,35,9,0,218,103,213,78,31,36,9,0,218,103,96,123,91,141,10,0,220,231,169,147,121,53,8,0,220,231,169,147,168,53,8,0,220,231,169,147,217,53,8,0,220,231,169,147,2,54,8,0,220,231,169,147,46,54,8,0,220,231,169,147,86,54,8,0,220,231,169,147,32,167,8,0,220,231,83,118,20,8,9,0,220,231,83,118,247,8,9,0,220,231,83,118,210,9,9,0,220,103,61,43,48,103,11,0,221,103,192,119,4,52,10,0,222,231,93,213,145,12,8,0,222,231,242,226,84,44,11,0,230,103,113,101,136,67,6,0,231,103,236,2,184,76,6,0,231,103,104,112,183,249,6,0,236,103,53,112,85,74,6,0,236,103,53,112,235,139,6,0,236,231,104,228,139,254,6,0,240,231,242,3,117,99,10,0,240,231,242,3,139,99,10,0,241,103,206,229,196,192,7,0,242,231,212,121,229,52,6,0,243,231,255,101,59,72,7,0,245,231,41,134,134,19,7,0,245,103,233,103,23,27,7,0,247,231,106,159,85,36,8,0,252,231,59,193,98,59,11,0,254,231,81,115,128,221,5,0,255,103,105,54,12,99,7,0,255,103,184,248,29,120,7,0,255,103,176,18,45,226,8,0,255,103,176,18,130,231,8,0,255,231,113,204,119,80,11,0,0,232,201,198,132,21,9,0,0,232,201,198,157,23,9,0,0,232,185,6,100,232,9,0,0,232,185,6,126,232,9,0,0,104,28,116,169,51,10,0,0,104,28,116,185,51,10,0,1,104,187,87,203,74,7,0,1,104,147,162,239,224,10,0,3,104,174,55,102,214,8,0,3,104,174,55,14,218,8,0,3,232,113,188,10,147,11,0,5,104,171,182,176,68,7,0,6,104,14,185,207,215,9,0,6,104,14,185,229,215,9,0,6,104,14,185,249,215,9,0,8,232,190,171,166,246,6,0,11,232,46,199,16,183,8,0,11,232,46,199,251,191,8,0,11,232,46,199,239,200,8,0,11,104,47,201,175,29,9,0,11,104,47,201,88,30,9,0,14,104,98,69,186,53,9,0,14,104,98,69,77,54,9,0,14,232,232,215,234,157,10,0,14,232,232,215,132,166,10,0,19,104,126,129,2,175,11,0,20,232,69,82,29,168,11,0,22,104,156,81,255,151,7,0,22,104,39,141,60,152,7,0,22,104,156,81,69,6,8,0,22,104,39,141,128,112,8,0,28,232,78,59,134,19,7,0,28,232,165,117,45,226,8,0,28,232,165,117,130,231,8,0,28,232,17,68,28,144,10,0,29,104,244,153,111,4,9,0,29,104,244,153,41,6,9,0,31,232,41,210,43,89,7,0,31,232,41,210,115,86,9,0,31,232,41,210,181,86,9,0,32,232,83,139,69,151,11,0,33,104,228,232,134,19,7,0,33,104,24,156,77,156,9,0,33,104,24,156,99,156,9,0,33,104,228,232,143,97,11,0,34,104,204,138,87,69,9,0,34,104,204,138,181,69,9,0,35,104,240,186,240,195,7,0,36,232,73,110,220,5,6,0,38,104,85,210,71,65,10,0,38,104,85,210,103,65,10,0,38,104,85,210,130,65,10,0,42,232,19,247,12,99,7,0,46,232,183,250,134,19,7,0,46,232,29,118,12,99,7,0,46,232,183,250,151,186,7,0,46,232,246,67,207,24,10,0,46,232,246,67,22,25,10,0,46,232,246,67,89,25,10,0,46,232,246,67,150,25,10,0,48,232,13,210,209,84,7,0,49,232,216,103,48,179,6,0,49,232,127,203,87,171,10,0,53,232,198,139,160,79,8,0,53,232,69,37,219,46,10,0,55,104,51,168,72,218,9,0,55,104,51,168,99,218,9,0,55,104,51,168,123,218,9,0,56,232,137,185,237,149,10,0,60,232,96,15,115,3,6,0,60,232,217,150,12,99,7,0,61,232,243,86,222,58,9,0,61,232,243,86,248,58,9,0,62,232,117,138,218,93,7,0,62,232,56,8,20,33,11,0,67,104,181,233,160,230,6,0,68,104,138,157,187,159,10,0,69,104,120,179,168,152,9,0,70,232,70,236,252,169,7,0,73,104,206,216,70,255,5,0,73,232,195,158,16,183,8,0,73,232,195,158,251,191,8,0,73,232,195,158,239,200,8,0,74,232,72,110,193,100,10,0,74,232,72,110,89,103,10,0,75,104,171,203,134,19,7,0,87,232,60,57,192,188,6,0,88,232,73,31,127,28,6,0,90,104,7,112,247,95,8,0,90,232,187,201,187,142,8,0,91,104,128,237,70,104,6,0,95,104,240,3,140,100,6,0,100,104,162,47,11,14,7,0,103,232,138,20,2,175,11,0,104,232,47,64,29,120,7,0,106,232,175,64,80,157,6,0,107,232,73,31,12,99,7,0,110,232,38,190,97,103,7,0,110,104,187,202,194,138,7,0,110,232,134,3,209,19,10,0,111,104,131,182,112,246,7,0,112,104,157,38,107,10,7,0,113,104,112,167,133,131,9,0,113,104,112,167,158,131,9,0,113,104,112,167,181,131,9,0,113,104,165,13,79,42,11,0,115,104,219,65,134,158,10,0,120,104,20,48,51,104,7,0,121,104,67,102,151,119,11,0,121,104,246,102,33,126,11,0,122,104,236,202,20,74,8,0,122,104,236,202,66,74,8,0,122,104,236,202,119,74,8,0,123,232,133,173,108,27,6,0,126,104,220,211,161,110,10,0,126,104,220,211,2,112,10,0,128,232,187,2,133,234,5,0,128,232,20,147,53,132,10,0,129,232,164,201,147,110,7,0,129,232,33,207,144,176,10,0,130,104,242,205,166,250,7,0,130,104,172,248,181,117,11,0,130,104,172,248,203,117,11,0,135,104,193,165,12,99,7,0,135,232,166,117,216,140,9,0,135,232,166,117,69,141,9,0,138,104,0,0,198,0,6,0,138,232,163,160,52,200,7,0,139,104,236,154,22,91,7,0,140,232,124,153,149,31,6,0,141,104,144,247,193,50,10,0,141,104,144,247,217,50,10,0,141,104,144,247,241,50,10,0,143,104,69,22,159,167,11,0,144,104,47,241,12,99,7,0,145,232,142,103,172,112,11,0,146,104,151,2,45,226,8,0,146,104,151,2,130,231,8,0,150,232,254,31,134,19,7,0,151,104,169,19,51,248,8,0,151,104,169,19,162,248,8,0,153,104,204,129,13,13,7,0,154,104,244,48,134,19,7,0,155,232,216,1,152,63,7,0,160,232,1,72,190,254,8,0,160,232,1,72,208,254,8,0,161,232,58,149,217,9,7,0,162,104,96,30,0,55,7,0,162,232,43,197,183,82,7,0,162,104,96,30,177,105,7,0,162,232,10,6,60,152,7,0,162,232,10,6,128,112,8,0,165,104,42,254,61,39,7,0,166,104,231,242,135,44,7,0,166,232,52,199,16,183,8,0,166,232,52,199,251,191,8,0,166,232,52,199,239,200,8,0,167,232,4,177,75,44,6,0,167,232,144,37,138,120,6,0,167,232,4,177,2,5,10,0,167,232,4,177,28,5,10,0,168,104,110,163,60,152,7,0,168,104,110,163,37,164,7,0,168,104,110,163,53,164,7,0,168,104,81,0,178,188,9,0,168,104,81,0,229,188,9,0,168,104,87,198,4,52,10,0,171,104,83,154,122,159,9,0,172,104,167,237,96,8,7,0,174,104,44,202,45,226,8,0,174,104,44,202,130,231,8,0,175,104,250,16,27,95,9,0,175,104,250,16,49,95,9,0,177,104,23,182,134,19,7,0,179,232,108,225,29,244,6,0,180,232,98,191,229,109,7,0,180,232,227,216,29,120,7,0,182,104,136,254,3,70,7,0,182,232,61,231,96,160,11,0,183,104,57,172,50,16,10,0,183,104,57,172,85,16,10,0,183,104,57,172,119,16,10,0,184,232,23,71,142,199,6,0,185,104,226,101,22,91,7,0,188,104,140,190,57,169,6,0,189,232,203,210,230,126,6,0,190,104,72,185,252,93,6,0,191,104,97,2,8,112,7,0,194,232,183,182,229,130,9,0,194,232,183,182,0,131,9,0,194,232,79,253,27,143,10,0,197,104,207,103,16,183,8,0,197,104,207,103,251,191,8,0,197,104,207,103,239,200,8,0,197,232,174,44,171,158,11,0,199,232,48,70,135,44,7,0,201,232,252,82,194,138,7,0,201,232,244,180,4,52,10,0,202,104,116,207,100,7,6,0,203,232,71,22,252,32,8,0,204,104,73,59,29,81,7,0,204,232,251,73,102,214,8,0,204,232,251,73,14,218,8,0,207,104,157,38,66,48,6,0,207,104,157,38,193,52,6,0,207,104,157,38,213,99,6,0,207,104,157,38,61,101,6,0,207,104,157,38,206,102,6,0,207,104,157,38,60,152,7,0,207,104,157,38,140,163,7,0,207,104,157,38,5,147,8,0,208,232,244,138,64,179,7,0,209,232,189,149,16,37,7,0,211,104,233,5,69,106,8,0,214,232,113,156,174,85,10,0,214,232,113,156,196,85,10,0,214,104,79,192,153,113,10,0,214,104,79,192,27,114,10,0,215,104,121,69,240,248,6,0,216,104,67,249,4,52,10,0,217,104,231,169,62,223,9,0,217,104,231,169,64,224,9,0,217,104,231,169,93,225,9,0,218,104,57,91,65,76,7,0,218,232,242,251,51,104,7,0,228,104,108,38,29,120,7,0,230,232,73,112,163,57,7,0,230,232,73,112,104,146,11,0,231,104,170,0,139,163,9,0,231,104,170,0,241,163,9,0,232,232,243,175,30,119,11,0,233,104,147,61,40,6,6,0,234,232,67,201,163,57,7,0,236,104,30,116,213,222,9,0,236,104,30,116,239,222,9,0,236,232,171,175,177,209,10,0,236,232,137,121,34,52,11,0,237,232,8,99,223,198,7,0,237,232,8,99,234,87,11,0,238,104,141,190,25,164,11,0,242,232,98,139,111,239,10,0,246,104,129,27,115,161,9,0,246,104,129,27,104,162,9,0,251,104,40,198,70,80,9,0,252,104,230,61,143,240,6,0,253,232,154,204,176,68,7,0,1,233,203,106,212,162,11,0,1,233,203,106,82,168,11,0,3,233,58,215,209,32,8,0,7,233,36,92,186,74,6,0,8,233,236,69,181,53,11,0,10,105,198,168,224,59,6,0,11,233,115,247,132,21,9,0,11,233,115,247,157,23,9,0,18,105,248,126,50,158,8,0,19,105,101,22,16,183,8,0,19,105,101,22,251,191,8,0,19,105,101,22,239,200,8,0,19,105,76,118,167,242,9,0,20,233,123,197,116,72,7,0,21,233,78,94,51,104,7,0,21,233,245,186,188,213,9,0,21,233,245,186,58,214,9,0,21,233,245,186,197,214,9,0,22,105,216,142,16,30,8,0,22,105,13,55,135,49,10,0,22,105,13,55,160,49,10,0,22,105,13,55,184,49,10,0,23,105,137,110,145,114,7,0,24,105,52,117,60,152,7,0,24,105,52,117,79,237,8,0,25,233,185,148,117,51,7,0,25,233,185,148,111,53,7,0,25,105,226,85,200,162,7,0,26,105,12,5,86,248,9,0,26,105,12,5,129,248,9,0,26,105,12,5,171,248,9,0,27,105,123,46,241,190,7,0,29,105,125,27,47,16,7,0,31,105,217,181,38,149,7,0,32,233,180,87,168,152,9,0,32,105,184,237,243,173,10,0,32,105,184,237,107,179,10,0,33,105,18,98,29,120,7,0,33,105,201,54,71,183,10,0,35,105,183,27,163,93,11,0,36,233,233,5,16,183,8,0,36,233,233,5,251,191,8,0,36,233,233,5,239,200,8,0,39,105,74,111,60,152,7,0,39,105,74,111,26,168,7,0,41,233,191,187,16,183,8,0,41,233,191,187,251,191,8,0,41,233,191,187,239,200,8,0,42,105,97,238,135,149,10,0,48,233,193,184,66,3,7,0,48,105,48,2,16,183,8,0,48,105,48,2,251,191,8,0,48,105,48,2,239,200,8,0,48,233,31,114,239,176,9,0,48,233,31,114,13,177,9,0,48,233,31,114,34,177,9,0,49,233,152,205,192,6,7,0,49,105,229,74,100,92,7,0,50,105,246,183,146,76,9,0,50,105,246,183,63,77,9,0,52,105,149,55,82,34,8,0,52,105,149,121,50,253,8,0,53,233,122,231,233,16,7,0,53,105,247,195,102,214,8,0,53,105,247,195,14,218,8,0,56,105,226,168,98,237,6,0,58,105,128,23,135,44,7,0,58,233,146,43,2,169,10,0,61,105,241,150,25,134,9,0,61,105,241,150,147,134,9,0,61,105,241,150,7,135,9,0,61,105,241,150,174,135,9,0,61,105,241,150,71,136,9,0,62,233,186,76,134,19,7,0,64,233,136,220,60,152,7,0,64,233,136,220,79,237,8,0,65,233,68,171,111,4,9,0,65,233,68,171,41,6,9,0,67,233,166,22,111,4,9,0,67,233,166,22,41,6,9,0,71,105,70,124,16,183,8,0,71,105,70,124,251,191,8,0,71,105,70,124,239,200,8,0,72,105,68,83,198,193,9,0,72,105,68,83,221,193,9,0,73,105,143,152,204,50,9,0,73,105,143,152,17,51,9,0,73,105,143,152,93,51,9,0,73,233,37,195,208,18,10,0,73,233,37,195,233,18,10,0,74,105,41,169,26,166,11,0,78,105,130,174,244,23,11,0,80,105,97,128,155,206,6,0,80,233,127,54,135,44,7,0,82,233,245,4,194,138,7,0,83,105,104,72,42,64,6,0,83,233,50,127,113,95,6,0,85,105,202,151,80,83,7,0,85,233,38,209,31,101,11,0,86,233,123,250,13,8,7,0,87,105,111,139,220,52,11,0,89,233,86,175,161,77,7,0,91,105,120,179,81,173,9,0,91,105,120,179,110,173,9,0,93,105,81,242,77,11,7,0,94,233,111,140,218,93,7,0,94,233,110,85,99,70,8,0,94,233,110,85,88,161,10,0,97,105,233,20,64,148,8,0,97,105,233,20,26,83,10,0,97,105,233,20,60,83,10,0,98,105,159,34,235,54,6,0,98,105,194,98,77,172,6,0,98,233,238,164,23,27,7,0,99,105,156,128,97,103,7,0,101,233,157,133,27,255,8,0,101,233,157,133,100,255,8,0,102,105,159,42,47,43,7,0,102,233,20,7,235,183,10,0,103,233,107,15,153,113,10,0,103,233,107,15,27,114,10,0,105,233,18,246,148,249,5,0,106,105,218,215,22,91,7,0,107,105,245,235,229,109,7,0,107,105,89,94,60,152,7,0,107,105,89,94,190,122,8,0,107,105,89,94,83,123,8,0,107,105,89,94,244,123,8,0,107,105,89,94,210,33,10,0,111,233,162,12,194,138,7,0,116,233,131,91,170,70,9,0,116,233,131,91,203,70,9,0,118,233,180,190,107,170,6,0,118,233,203,99,102,214,8,0,118,233,203,99,14,218,8,0,119,233,244,124,168,117,6,0,119,105,203,67,96,122,8,0,121,105,247,88,55,237,6,0,124,233,116,135,67,76,6,0,124,233,112,254,145,114,7,0,124,105,123,140,62,223,9,0,124,105,123,140,64,224,9,0,124,105,123,140,93,225,9,0,129,105,97,204,75,40,7,0,132,233,229,86,90,14,7,0,134,233,242,232,164,238,6,0,134,105,123,21,23,27,7,0,137,105,255,170,112,246,7,0,141,233,108,222,29,120,7,0,142,105,231,215,6,90,11,0,145,105,194,117,26,51,6,0,149,105,163,226,130,83,7,0,151,105,147,153,101,64,7,0,152,105,243,97,168,43,7,0,152,105,243,97,161,77,7,0,153,105,188,218,23,27,7,0,155,233,195,249,97,103,7,0,156,105,0,188,194,138,7,0,156,105,139,205,194,138,7,0,157,105,79,4,193,100,10,0,157,105,79,4,89,103,10,0,161,233,109,231,74,143,10,0,162,233,164,191,240,66,9,0,162,233,164,191,119,67,9,0,163,105,166,252,112,246,7,0,164,233,124,96,220,93,8,0,165,105,6,101,194,228,7,0,166,105,169,11,0,55,7,0,166,105,169,11,163,57,7,0,167,233,114,80,23,27,7,0,171,105,241,144,135,149,7,0,171,105,241,144,95,146,9,0,171,105,241,144,129,146,9,0,171,233,46,215,208,93,11,0,171,233,46,215,249,93,11,0,174,105,164,80,97,103,7,0,174,233,109,231,107,226,9,0,174,233,109,231,251,226,9,0,176,105,175,214,29,120,7,0,176,105,93,119,81,188,9,0,176,105,93,119,103,188,9,0,177,105,144,37,253,49,7,0,177,233,247,75,161,77,7,0,178,233,237,234,145,114,7,0,178,233,237,234,246,243,9,0,178,233,237,234,59,245,9,0,178,233,237,234,131,246,9,0,179,233,205,136,45,226,8,0,179,233,205,136,130,231,8,0,188,105,199,91,102,214,8,0,188,105,199,91,14,218,8,0,188,105,215,230,253,59,10,0,188,105,215,230,144,60,10,0,188,105,215,230,39,61,10,0,189,105,79,209,2,41,7,0,190,105,43,182,107,226,9,0,190,105,43,182,251,226,9,0,192,233,30,144,4,52,10,0,193,105,246,153,131,92,10,0,193,105,246,153,178,92,10,0,196,233,218,104,119,96,7,0,196,105,221,60,225,199,7,0,196,233,105,76,82,19,11,0,197,105,57,91,75,148,7,0,198,105,194,146,55,108,7,0,200,105,47,68,198,146,9,0,200,105,47,68,20,147,9,0,201,105,177,38,104,222,10,0,206,105,144,139,216,51,9,0,206,105,144,139,175,52,9,0,207,105,205,94,162,49,11,0,208,233,36,101,145,114,7,0,209,105,153,208,172,27,11,0,211,233,42,101,27,180,8,0,212,233,172,231,143,167,10,0,213,233,6,152,216,51,9,0,213,233,6,152,175,52,9,0,216,233,180,148,130,83,7,0,218,105,106,253,129,42,6,0,218,233,231,57,119,96,7,0,218,233,3,24,16,183,8,0,218,233,3,24,251,191,8,0,218,233,3,24,239,200,8,0,219,233,177,100,61,39,7,0,219,105,226,101,0,55,7,0,219,105,226,101,163,57,7,0,219,105,239,196,163,57,7,0,219,105,239,196,185,185,10,0,221,105,133,13,194,138,7,0,221,105,107,95,58,35,9,0,221,105,107,95,31,36,9,0,222,105,42,62,187,124,11,0,223,233,193,99,70,80,9,0,224,233,162,133,107,10,7,0,225,233,106,210,238,171,11,0,226,233,2,148,60,152,7,0,226,233,2,148,46,160,7,0,228,105,218,153,96,8,7,0,232,105,200,162,65,41,7,0,234,105,206,235,23,27,7,0,234,233,49,51,81,118,11,0,235,233,246,251,4,52,10,0,239,233,37,209,6,249,9,0,239,233,37,209,105,249,9,0,239,233,37,209,201,249,9,0,242,233,93,205,194,108,11,0,243,233,162,241,134,19,7,0,243,105,246,76,116,72,7,0,244,233,109,127,60,152,7,0,244,233,109,127,128,112,8,0,245,233,179,18,77,252,6,0,245,233,57,122,102,15,7,0,245,233,179,18,167,113,9,0,245,233,179,18,7,114,9,0,245,233,179,18,108,114,9,0,245,233,179,18,202,114,9,0,245,233,179,18,49,115,9,0,249,233,228,108,142,243,6,0,249,105,107,174,0,55,7,0,249,105,107,174,163,57,7,0,250,105,139,155,180,9,7,0,251,233,57,193,207,24,10,0,251,233,57,193,22,25,10,0,251,233,57,193,89,25,10,0,251,233,57,193,150,25,10,0,251,233,57,193,33,58,11,0,251,233,57,193,142,68,11,0,254,233,43,161,145,114,7,0,254,105,238,199,194,138,7,0,255,233,239,248,23,27,7,0,2,106,226,238,16,183,8,0,2,106,226,238,251,191,8,0,2,106,226,238,239,200,8,0,7,106,45,55,52,227,10,0,9,234,227,159,212,128,6,0,9,234,227,159,231,128,6,0,9,234,227,159,3,129,6,0,10,234,9,67,51,104,7,0,12,106,73,31,168,43,7,0,12,234,90,129,51,248,8,0,12,234,90,129,162,248,8,0,13,234,59,19,93,128,6,0,13,106,104,196,63,208,6,0,13,234,59,19,23,253,6,0,13,106,104,196,201,80,7,0,15,234,194,188,179,122,9,0,15,234,43,74,27,233,10,0,15,234,43,74,207,241,10,0,22,106,16,108,122,87,9,0,22,106,16,108,212,87,9,0,22,106,16,108,40,88,9,0,24,106,88,127,23,253,6,0,25,106,157,126,209,19,10,0,26,106,56,248,252,169,7,0,29,106,102,72,117,51,7,0,31,234,253,30,186,219,5,0,32,106,242,216,255,70,7,0,33,106,54,91,151,175,7,0,33,106,203,155,168,152,9,0,35,234,187,88,192,72,6,0,35,106,245,202,218,93,7,0,35,106,153,134,217,238,9,0,35,106,153,134,174,239,9,0,36,234,55,220,29,120,7,0,39,106,55,38,176,68,7,0,39,106,93,33,224,39,11,0,42,106,219,53,194,138,7,0,42,234,52,95,194,138,7,0,43,106,1,127,134,19,7,0,43,106,1,127,23,27,7,0,44,106,118,32,134,63,11,0,45,106,193,165,155,154,8,0,49,106,17,35,141,87,6,0,50,106,78,55,124,7,6,0,50,106,161,55,221,5,7,0,51,106,13,171,0,250,5,0,53,234,12,93,139,254,6,0,53,106,216,10,134,19,7,0,53,234,209,9,0,145,11,0,55,234,98,35,48,245,6,0,55,234,98,35,222,130,11,0,58,106,54,167,240,36,7,0,58,234,147,224,163,88,10,0,58,234,147,224,83,89,10,0,62,106,110,40,99,215,10,0,63,106,195,123,233,157,6,0,63,234,28,176,194,138,7,0,64,106,181,148,210,163,6,0,69,234,188,186,26,70,11,0,70,106,53,89,191,69,6,0,72,234,170,37,23,143,6,0,74,106,208,50,29,120,7,0,75,234,9,145,241,8,6,0,76,234,72,246,4,52,10,0,79,234,217,95,68,1,7,0,82,234,119,137,16,183,8,0,82,234,119,137,251,191,8,0,82,234,119,137,239,200,8,0,84,234,176,42,115,161,9,0,84,234,176,42,104,162,9,0,88,106,186,148,136,25,6,0,88,234,59,78,145,114,7,0,92,106,186,148,161,77,7,0,92,106,4,55,74,215,7,0,92,234,212,3,115,161,9,0,92,234,212,3,104,162,9,0,92,106,123,143,204,151,11,0,93,234,187,52,25,180,11,0,94,234,183,98,224,205,6,0,94,234,76,104,220,39,7,0,95,106,133,228,246,243,9,0,95,106,133,228,59,245,9,0,95,106,133,228,131,246,9,0,95,234,143,246,4,52,10,0,96,106,174,55,175,156,6,0,101,106,205,132,7,70,8,0,106,234,226,51,86,11,11,0,107,234,110,39,60,152,7,0,108,234,65,117,209,84,7,0,108,106,193,87,168,152,9,0,109,234,231,134,81,26,6,0,109,234,98,121,179,148,6,0,109,106,162,220,117,65,7,0,110,106,210,123,187,124,11,0,111,106,81,208,236,151,10,0,111,234,30,10,4,241,10,0,111,234,30,10,154,243,10,0,115,106,57,127,186,105,6,0,117,234,112,231,111,79,9,0,117,234,112,231,167,79,9,0,117,234,112,231,224,79,9,0,118,106,60,181,136,1,7,0,118,106,60,181,10,2,7,0,120,234,164,18,26,160,6,0,120,106,16,84,102,214,8,0,120,106,16,84,14,218,8,0,122,234,92,165,65,41,7,0,123,106,160,7,29,120,7,0,124,234,134,96,118,172,8,0,126,106,128,183,194,21,8,0,126,234,53,126,127,206,9,0,126,234,53,126,151,206,9,0,127,234,16,164,26,172,10,0,128,106,223,100,170,8,11,0,129,106,198,36,42,160,6,0,130,234,205,80,29,120,7,0,131,106,195,182,0,55,7,0,135,234,230,56,83,126,8,0,135,106,45,223,253,38,9,0,135,106,45,223,207,40,9,0,138,106,19,81,134,19,7,0,140,106,194,168,0,55,7,0,142,106,111,182,145,114,7,0,145,234,155,54,50,150,11,0,146,106,46,40,164,248,7,0,146,106,46,40,207,248,7,0,149,234,166,36,218,137,8,0,152,106,211,189,19,90,7,0,152,234,55,105,25,134,9,0,152,234,55,105,147,134,9,0,152,234,55,105,7,135,9,0,152,234,55,105,174,135,9,0,152,234,55,105,71,136,9,0,158,234,245,55,135,44,7,0,160,234,172,105,230,161,10,0,161,234,144,199,252,169,7,0,165,234,66,140,185,108,6,0,168,234,53,10,38,235,10,0,169,234,172,105,179,85,6,0,170,234,237,234,194,169,11,0,181,234,25,92,4,52,10,0,182,106,195,130,134,19,7,0,182,234,178,132,111,4,9,0,182,234,178,132,41,6,9,0,184,234,227,28,30,0,7,0,184,106,78,18,102,214,8,0,184,106,78,18,14,218,8,0,184,234,101,27,27,2,9,0,184,234,101,27,56,2,9,0,187,234,41,95,53,253,10,0,188,234,116,27,32,85,9,0,188,234,116,27,62,85,9,0,190,234,116,21,92,9,8,0,192,106,197,247,219,99,11,0,196,234,237,234,229,162,11,0,198,234,112,6,20,8,9,0,198,234,112,6,247,8,9,0,198,234,112,6,210,9,9,0,198,106,159,11,193,100,10,0,198,106,159,11,89,103,10,0,202,234,3,142,45,172,7,0,203,106,73,31,142,150,6,0,203,234,200,55,177,105,7,0,206,234,234,209,194,138,7,0,207,106,117,225,57,24,8,0,207,106,117,225,220,24,8,0,209,106,124,96,66,3,7,0,212,106,231,102,152,217,6,0,213,106,91,139,18,232,10,0,214,234,114,208,25,84,7,0,214,234,114,208,114,84,7,0,215,106,244,207,23,27,7,0,215,106,32,237,72,41,11,0,216,106,58,62,215,129,10,0,217,234,238,54,86,140,9,0,218,106,174,13,223,48,8,0,218,234,103,27,4,52,10,0,219,106,106,61,123,174,6,0,220,106,239,212,186,26,9,0,220,106,239,212,120,27,9,0,220,106,239,212,48,28,9,0,221,106,145,225,173,14,7,0,221,234,213,151,219,238,8,0,221,234,213,151,39,240,8,0,221,234,213,151,117,241,8,0,223,234,123,228,145,243,5,0,228,234,83,173,153,113,10,0,228,234,83,173,27,114,10,0,230,106,1,55,189,88,11,0,231,106,169,99,134,19,7,0,232,106,59,119,66,100,6,0,232,106,59,119,136,162,6,0,233,234,95,6,89,166,10,0,234,106,7,219,176,68,7,0,234,106,123,134,25,134,9,0,234,106,123,134,147,134,9,0,234,106,123,134,7,135,9,0,234,106,123,134,174,135,9,0,234,106,123,134,71,136,9,0,238,234,221,39,44,87,8,0,239,234,107,189,41,254,6,0,240,106,83,253,161,77,7,0,241,234,98,179,134,19,7,0,241,106,11,148,161,77,7,0,241,234,98,179,149,129,11,0,242,234,116,146,122,56,6,0,246,106,104,72,31,102,6,0,247,106,64,183,16,183,8,0,247,106,64,183,251,191,8,0,247,106,64,183,239,200,8,0,249,234,96,64,31,218,7,0,249,234,96,64,90,218,7,0,249,234,96,64,149,218,7,0,249,234,96,64,204,218,7,0,249,234,96,64,4,219,7,0,251,234,224,236,160,0,7,0,253,106,33,118,23,26,8,0,255,234,154,145,210,140,6,0,0,107,196,241,65,41,7,0,0,235,22,132,185,161,8,0,0,235,22,132,126,63,9,0,0,235,22,132,156,63,9,0,1,107,152,96,194,138,7,0,1,107,188,166,184,208,7,0,1,107,188,166,10,209,7,0,1,107,8,108,65,101,11,0,4,107,59,76,59,135,6,0,6,107,179,13,96,138,10,0,10,107,165,240,98,203,7,0,11,235,37,68,216,51,9,0,11,235,37,68,175,52,9,0,16,235,16,93,8,229,10,0,19,235,11,136,231,172,6,0,23,235,241,250,2,251,6,0,23,235,241,250,76,247,10,0,23,235,241,250,102,247,10,0,25,107,252,32,247,247,6,0,29,107,72,245,45,226,5,0,29,107,72,245,117,51,7,0,29,107,72,245,111,53,7,0,30,235,162,74,119,96,7,0,31,107,81,213,55,88,11,0,32,107,231,242,72,102,9,0,32,107,231,242,72,102,9,0,32,107,231,242,254,102,9,0,32,107,231,242,254,102,9,0,35,235,237,234,246,243,9,0,35,235,237,234,59,245,9,0,35,235,237,234,131,246,9,0,36,235,190,202,0,55,7,0,36,235,190,202,177,105,7,0,40,107,13,29,213,15,9,0,42,235,239,75,29,120,7,0,42,107,216,23,168,104,8,0,42,107,216,23,45,105,8,0,42,107,216,23,167,105,8,0,45,235,25,46,136,1,7,0,45,107,231,242,31,168,10,0,45,235,25,46,53,16,11,0,49,107,10,254,119,96,7,0,51,235,72,58,145,114,7,0,52,235,90,184,166,63,6,0,53,107,48,14,7,210,5,0,53,107,24,34,23,27,7,0,53,235,65,43,164,16,9,0,53,235,65,43,141,17,9,0,54,107,240,33,219,238,8,0,54,107,240,33,39,240,8,0,54,107,240,33,117,241,8,0,55,107,252,100,245,30,11,0,56,235,237,234,246,243,9,0,56,235,237,234,59,245,9,0,56,235,237,234,131,246,9,0,57,107,26,48,70,159,8,0,57,235,95,42,114,49,11,0,58,235,226,227,50,8,11,0,61,235,133,42,194,185,9,0,61,235,133,42,96,186,9,0,62,107,119,172,209,84,7,0,63,107,6,177,153,160,6,0,66,107,121,151,12,99,7,0,66,107,63,139,20,8,9,0,66,107,63,139,247,8,9,0,66,107,63,139,210,9,9,0,67,107,237,44,30,0,7,0,67,235,191,57,163,57,7,0,68,107,154,187,103,245,6,0,68,107,89,209,51,248,8,0,68,107,89,209,162,248,8,0,69,107,251,208,145,114,7,0,71,107,167,126,229,36,8,0,71,107,167,126,15,37,8,0,71,107,167,126,58,37,8,0,72,107,69,171,220,39,7,0,73,107,221,127,193,100,10,0,73,107,221,127,89,103,10,0,74,235,95,227,4,44,7,0,80,107,23,80,249,250,5,0,80,107,23,80,15,251,5,0,81,107,154,44,45,194,6,0,81,107,154,44,66,194,6,0,82,107,65,180,145,114,7,0,83,235,49,250,4,52,10,0,86,235,252,151,114,222,6,0,86,107,68,180,146,76,9,0,86,107,68,180,63,77,9,0,88,235,94,249,3,253,5,0,89,107,183,20,239,213,6,0,91,235,159,6,145,55,6,0,92,107,113,84,128,217,5,0,93,235,14,55,135,61,7,0,93,235,14,55,137,136,7,0,93,235,14,55,176,136,7,0,93,235,14,55,114,137,7,0,94,107,124,81,96,99,11,0,95,235,137,172,143,240,6,0,95,235,137,172,147,140,10,0,96,235,85,59,211,250,6,0,101,235,250,89,194,138,7,0,105,107,218,87,145,183,11,0,107,235,12,173,63,129,10,0,108,235,32,136,177,209,10,0,111,107,142,211,194,138,7,0,111,235,80,190,8,68,11,0,114,235,237,234,26,99,10,0,114,235,237,234,47,99,10,0,117,235,191,85,183,82,7,0,117,107,186,251,91,127,11,0,122,107,30,8,60,39,10,0,122,107,30,8,86,39,10,0,124,107,74,211,152,63,7,0,125,107,24,28,209,19,10,0,127,107,237,147,60,152,7,0,127,107,237,147,104,103,8,0,127,107,237,147,104,103,8,0,127,107,237,147,219,103,8,0,127,107,237,147,219,103,8,0,127,107,237,147,68,104,8,0,127,107,237,147,68,104,8,0,127,107,237,147,59,45,10,0,127,107,237,147,135,45,10,0,127,107,237,147,154,45,10,0,127,107,237,147,172,45,10,0,133,107,57,250,102,214,8,0,133,107,57,250,14,218,8,0,135,235,219,196,99,130,6,0,138,235,26,168,117,251,6,0,138,235,66,22,117,51,7,0,138,235,73,226,111,4,9,0,138,235,73,226,41,6,9,0,139,235,198,31,135,149,7,0,139,235,198,31,193,23,10,0,139,235,198,31,228,23,10,0,141,235,164,18,145,12,8,0,143,235,36,163,55,108,7,0,145,235,88,126,209,19,10,0,145,107,218,236,95,232,10,0,148,235,217,207,235,215,7,0,150,107,243,92,80,191,6,0,150,235,198,221,45,8,8,0,150,235,150,141,229,221,8,0,150,235,150,141,29,222,8,0,150,235,147,190,50,246,10,0,151,235,7,39,112,104,6,0,151,107,77,173,155,27,10,0,151,107,77,173,177,27,10,0,151,107,77,173,198,27,10,0,152,235,229,101,0,44,11,0,154,107,19,124,201,106,7,0,154,107,44,44,42,68,9,0,154,107,44,44,103,68,9,0,155,235,193,203,91,223,7,0,155,107,218,88,4,52,10,0,156,107,115,27,119,96,7,0,161,107,95,64,64,70,7,0,161,107,88,223,191,86,7,0,163,107,3,120,74,86,6,0,165,107,97,128,30,109,6,0,167,107,79,203,177,105,7,0,168,235,219,11,85,67,11,0,171,107,232,30,145,114,7,0,172,107,195,78,90,14,7,0,173,107,183,126,237,219,9,0,173,107,183,126,14,220,9,0,176,235,4,141,56,27,8,0,176,235,4,141,116,27,8,0,176,235,4,141,178,27,8,0,178,107,129,64,163,88,10,0,178,107,129,64,83,89,10,0,179,235,56,205,156,235,10,0,181,235,62,188,16,183,8,0,181,235,62,188,251,191,8,0,181,235,62,188,239,200,8,0,183,235,250,188,145,114,7,0,185,107,157,38,133,12,7,0,185,235,87,211,45,33,9,0,185,235,87,211,120,33,9,0,187,107,43,254,113,97,8,0,187,107,43,254,166,97,8,0,187,107,43,254,205,97,8,0,187,235,95,65,120,154,10,0,188,107,238,90,0,55,7,0,188,107,238,90,177,105,7,0,189,235,249,185,43,72,10,0,189,235,249,185,148,72,10,0,189,235,237,234,117,162,11,0,192,235,130,146,130,157,11,0,193,235,211,247,4,52,10,0,195,235,30,194,205,87,7,0,196,235,160,44,118,68,11,0,198,107,19,49,167,242,9,0,201,235,98,139,85,29,10,0,201,235,178,172,99,15,11,0,203,235,201,87,194,138,7,0,205,107,196,254,204,96,11,0,206,235,21,91,29,120,7,0,207,235,167,56,116,72,7,0,210,107,24,144,103,12,7,0,211,235,248,207,163,92,6,0,211,235,248,207,57,210,6,0,211,235,196,144,29,120,7,0,213,107,101,209,56,238,7,0,214,235,51,51,219,238,8,0,214,235,51,51,39,240,8,0,214,235,51,51,117,241,8,0,215,235,237,234,67,17,7,0,215,235,87,189,116,72,7,0,218,235,119,231,220,180,7,0,219,235,225,7,134,19,7,0,221,235,26,209,119,96,7,0,222,107,78,82,23,27,7,0,225,235,70,211,218,93,7,0,226,107,249,184,102,214,8,0,226,107,249,184,14,218,8,0,227,107,254,214,161,77,7,0,229,235,173,91,189,164,6,0,230,107,16,43,0,55,7,0,230,107,16,43,163,57,7,0,231,107,39,187,43,188,7,0,232,235,158,52,123,124,11,0,232,235,158,52,156,124,11,0,233,107,45,177,92,9,8,0,234,107,120,218,60,28,11,0,234,107,120,218,78,28,11,0,235,235,162,131,38,65,6,0,235,107,12,104,23,27,7,0,235,235,19,209,23,27,7,0,239,235,215,197,47,13,7,0,241,235,158,146,27,29,9,0,241,235,158,146,68,29,9,0,241,235,221,123,152,7,10,0,241,235,221,123,174,7,10,0,245,235,159,49,176,68,7,0,245,235,157,159,119,96,7,0,246,235,0,97,29,120,7,0,251,107,37,123,204,250,7,0,254,235,157,176,134,19,7,0,254,235,131,164,194,138,7,0,254,235,111,26,45,226,8,0,254,235,111,26,130,231,8,0,1,236,66,87,12,99,7,0,1,108,34,112,199,41,11,0,4,236,4,1,10,2,6,0,7,108,123,237,52,209,10,0,9,108,204,226,12,99,7,0,9,108,28,116,44,217,10,0,9,108,28,116,127,225,10,0,10,236,13,160,2,175,11,0,11,108,187,1,186,53,9,0,11,108,187,1,77,54,9,0,12,108,56,252,190,210,6,0,12,236,221,194,193,100,10,0,12,236,221,194,89,103,10,0,13,108,226,83,48,100,6,0,14,108,64,82,145,114,7,0,14,236,30,21,45,226,8,0,14,236,30,21,130,231,8,0,14,108,69,188,193,100,10,0,14,108,69,188,89,103,10,0,15,236,98,108,29,120,7,0,15,108,42,5,96,94,10,0,15,108,42,5,112,94,10,0,15,108,42,5,141,94,10,0,16,236,125,179,16,183,8,0,16,236,125,179,251,191,8,0,16,236,125,179,239,200,8,0,17,108,34,119,163,66,7,0,18,108,236,205,100,169,8,0,19,236,59,60,164,16,9,0,19,236,59,60,141,17,9,0,20,108,127,101,0,55,7,0,20,108,127,101,163,57,7,0,22,108,46,180,247,80,7,0,26,236,96,174,161,77,7,0,28,236,224,160,163,206,7,0,31,236,97,235,38,117,8,0,32,236,203,79,62,223,9,0,32,236,203,79,64,224,9,0,32,236,203,79,93,225,9,0,37,236,90,210,132,64,11,0,38,236,195,125,45,226,8,0,38,236,195,125,130,231,8,0,39,108,12,171,194,138,7,0,39,236,134,92,151,186,7,0,39,108,216,213,45,226,8,0,39,108,216,213,130,231,8,0,40,236,30,177,131,110,6,0,42,108,10,158,16,183,8,0,42,108,10,158,251,191,8,0,42,108,10,158,239,200,8,0,43,236,67,66,163,57,7,0,44,236,3,63,19,24,10,0,44,236,3,63,39,24,10,0,49,108,97,211,134,19,7,0,49,108,87,229,150,189,10,0,52,108,175,161,132,21,9,0,52,108,175,161,157,23,9,0,55,236,8,192,27,172,7,0,55,108,240,89,215,5,11,0,57,108,157,38,149,247,5,0,61,236,104,90,168,152,9,0,65,236,125,193,132,162,11,0,67,236,96,100,132,21,9,0,67,108,255,163,132,21,9,0,67,236,96,100,157,23,9,0,67,108,255,163,157,23,9,0,68,236,2,103,16,183,8,0,68,236,2,103,251,191,8,0,68,236,2,103,239,200,8,0,71,236,12,208,111,4,9,0,71,236,12,208,41,6,9,0,71,236,168,10,107,37,10,0,71,236,168,10,132,37,10,0,71,236,168,10,156,37,10,0,72,108,35,247,96,221,6,0,72,108,35,247,0,132,9,0,78,236,42,255,4,52,10,0,82,236,179,46,117,234,6,0,82,236,107,89,7,115,8,0,82,236,107,89,56,115,8,0,82,236,107,89,117,115,8,0,82,236,107,89,165,115,8,0,82,236,107,89,231,115,8,0,85,236,56,87,227,117,11,0,86,236,220,13,253,49,7,0,86,236,131,141,161,110,10,0,86,236,131,141,2,112,10,0,91,236,169,49,14,137,9,0,91,236,169,49,201,137,9,0,92,108,22,70,231,113,8,0,92,108,72,70,94,204,10,0,95,236,218,172,109,203,9,0,95,236,218,172,132,203,9,0,96,108,248,249,145,114,7,0,97,108,98,97,60,152,7,0,97,108,98,97,226,164,7,0,98,108,127,71,211,154,10,0,98,236,179,137,31,6,11,0,101,236,16,246,112,153,10,0,102,108,4,222,75,148,7,0,107,108,58,99,114,10,11,0,108,236,155,24,60,152,7,0,108,236,155,24,104,103,8,0,108,236,155,24,219,103,8,0,108,236,155,24,68,104,8,0,108,236,155,24,59,45,10,0,110,108,77,39,123,69,8,0,113,108,236,243,16,183,8,0,113,108,236,243,251,191,8,0,113,108,236,243,239,200,8,0,114,236,246,6,192,179,7,0,114,108,106,212,34,213,9,0,114,108,106,212,62,213,9,0,114,108,106,212,102,213,9,0,114,108,106,212,147,213,9,0,114,108,131,182,5,197,10,0,115,236,57,207,4,52,10,0,116,236,255,85,29,120,7,0,122,108,157,119,145,114,7,0,124,236,183,250,104,167,6,0,125,236,200,85,23,27,7,0,125,236,99,235,113,132,9,0,125,236,99,235,167,132,9,0,125,236,99,235,51,133,9,0,128,108,105,27,111,210,9,0,128,108,105,27,155,210,9,0,128,236,56,108,4,52,10,0,129,236,173,75,220,93,8,0,131,108,15,52,194,108,11,0,132,108,189,44,160,79,8,0,133,236,57,84,109,84,6,0,134,236,141,65,6,46,8,0,137,236,163,160,220,47,6,0,137,236,163,160,43,49,6,0,140,108,46,210,15,191,6,0,140,108,46,210,44,191,6,0,140,108,80,234,41,254,6,0,140,108,98,196,194,138,7,0,141,108,80,215,145,12,8,0,142,236,123,140,209,84,7,0,142,236,27,97,194,138,7,0,143,236,113,239,205,87,7,0,143,108,171,216,143,249,7,0,143,108,171,216,213,249,7,0,143,108,171,216,23,250,7,0,144,236,114,182,153,179,6,0,144,236,173,66,149,40,7,0,144,108,121,236,85,174,7,0,144,108,121,236,202,174,7,0,144,108,121,236,147,176,7,0,145,108,44,116,45,226,8,0,145,108,44,116,130,231,8,0,147,108,130,5,85,29,10,0,149,108,207,154,73,82,7,0,149,236,224,135,198,146,9,0,149,236,224,135,20,147,9,0,150,236,145,61,166,248,6,0,151,108,121,27,16,183,8,0,151,108,121,27,251,191,8,0,151,108,121,27,239,200,8,0,151,108,177,249,4,52,10,0,153,108,209,156,182,13,7,0,155,236,171,253,161,182,7,0,155,108,128,186,201,8,10,0,156,236,150,210,16,37,7,0,158,108,116,85,193,100,10,0,158,108,116,85,89,103,10,0,159,108,23,228,253,49,7,0,159,108,23,228,29,81,7,0,163,108,236,201,96,8,7,0,163,108,236,201,134,19,7,0,164,236,47,147,67,17,7,0,164,236,247,149,23,27,7,0,166,108,108,184,194,170,6,0,166,236,118,68,194,138,7,0,167,108,186,187,59,12,8,0,167,108,186,187,104,12,8,0,167,108,122,39,62,223,9,0,167,108,122,39,64,224,9,0,167,108,122,39,93,225,9,0,172,108,99,206,29,120,7,0,175,236,17,151,14,137,9,0,175,236,17,151,201,137,9,0,176,108,80,198,177,105,7,0,177,108,123,169,134,19,7,0,177,236,115,228,102,214,8,0,177,236,115,228,14,218,8,0,179,236,221,13,73,82,7,0,179,108,79,82,238,35,10,0,179,108,79,82,35,36,10,0,179,108,94,238,0,215,10,0,179,236,221,13,30,55,11,0,181,108,146,28,87,143,6,0,183,236,102,112,134,19,7,0,183,236,102,112,133,170,8,0,183,236,102,112,121,204,10,0,184,236,1,72,183,82,7,0,185,236,234,59,14,234,7,0,185,236,234,59,69,140,10,0,186,108,102,197,44,26,11,0,187,108,62,2,66,3,7,0,187,108,119,244,252,248,10,0,187,108,169,16,187,124,11,0,188,108,85,205,194,138,7,0,191,236,246,6,60,152,7,0,191,236,246,6,50,110,10,0,191,236,246,6,112,110,10,0,195,236,255,118,168,123,11,0,197,236,241,89,12,99,7,0,199,108,61,49,252,169,7,0,199,108,86,167,187,124,11,0,201,108,68,146,65,41,7,0,202,108,122,122,31,175,10,0,204,108,179,129,184,218,6,0,210,236,20,40,253,38,9,0,210,236,20,40,207,40,9,0,212,108,231,242,106,66,7,0,212,108,231,242,10,251,7,0,212,108,54,216,1,191,10,0,213,236,249,85,106,55,6,0,213,108,145,81,247,247,6,0,213,108,145,81,0,55,7,0,213,108,145,81,163,57,7,0,218,236,11,196,133,58,6,0,219,236,35,21,163,57,7,0,220,236,141,97,51,65,7,0,224,108,222,151,25,237,10,0,225,108,191,93,241,190,7,0,226,108,68,221,161,77,7,0,229,236,105,223,16,183,8,0,229,236,105,223,251,191,8,0,229,236,105,223,239,200,8,0,230,236,204,199,29,120,7,0,233,108,241,56,153,82,6,0,233,108,241,56,127,179,6,0,235,108,185,124,16,183,8,0,235,108,185,124,251,191,8,0,235,108,185,124,239,200,8,0,238,236,15,207,102,214,8,0,238,236,15,207,14,218,8,0,240,236,201,219,184,89,7,0,240,236,201,219,19,90,7,0,240,108,101,221,102,214,8,0,240,108,101,221,14,218,8,0,245,236,241,57,75,241,6,0,247,108,242,127,205,195,6,0,248,236,174,57,111,4,9,0,248,236,174,57,41,6,9,0,251,236,188,153,167,242,9,0,252,236,245,149,183,82,7,0,253,236,174,129,29,120,7,0,253,236,9,176,4,52,10,0,254,108,35,13,51,248,8,0,254,108,35,13,162,248,8,0,255,108,253,46,218,93,7,0,6,237,251,78,133,148,10,0,6,237,251,78,208,148,10,0,8,109,202,180,201,106,7,0,10,109,143,205,50,164,6,0,11,109,189,186,23,27,7,0,12,109,52,248,218,93,7,0,13,109,8,32,4,52,10,0,16,237,13,95,0,55,7,0,16,237,13,95,163,57,7,0,18,237,224,126,247,190,6,0,18,237,220,30,115,4,7,0,18,109,189,174,62,223,9,0,18,109,189,174,64,224,9,0,18,109,189,174,93,225,9,0,18,109,133,178,167,242,9,0,19,237,119,106,48,53,11,0,22,237,159,60,132,21,9,0,22,237,159,60,157,23,9,0,22,109,111,123,0,38,9,0,22,109,111,123,44,38,9,0,22,109,111,123,65,38,9,0,27,237,194,27,249,173,11,0,28,109,15,190,173,17,7,0,29,109,25,181,16,183,8,0,29,109,25,181,251,191,8,0,29,109,25,181,239,200,8,0,31,237,239,33,4,52,10,0,32,109,100,217,71,250,6,0,32,109,72,102,10,237,7,0,32,109,135,102,94,152,8,0,34,237,98,244,45,226,8,0,34,237,98,244,130,231,8,0,36,237,137,249,120,33,9,0,37,237,98,42,204,181,9,0,37,237,98,42,224,182,9,0,38,237,59,19,82,20,8,0,40,109,122,28,161,140,11,0,40,109,122,28,185,140,11,0,42,237,97,209,64,67,7,0,44,109,233,60,134,19,7,0,44,237,47,71,39,47,9,0,44,237,47,71,54,48,9,0,45,109,80,198,136,174,8,0,45,109,80,198,199,174,8,0,47,237,251,49,100,92,7,0,48,109,112,167,63,113,11,0,50,237,188,118,16,183,8,0,50,237,188,118,251,191,8,0,50,237,188,118,239,200,8,0,52,109,59,77,3,191,9,0,52,109,59,77,78,191,9,0,53,237,103,87,207,14,9,0,53,237,103,87,54,15,9,0,55,109,212,94,163,66,7,0,55,109,36,106,4,52,10,0,55,237,237,234,89,163,11,0,59,237,180,87,100,92,7,0,59,237,98,244,255,163,11,0,60,109,155,200,135,149,7,0,60,109,155,200,60,152,7,0,63,237,68,136,194,138,7,0,63,237,142,73,22,227,10,0,63,237,142,73,185,227,10,0,65,237,158,186,143,249,7,0,65,237,158,186,213,249,7,0,65,237,158,186,23,250,7,0,67,237,214,54,158,132,10,0,67,109,76,47,251,129,11,0,68,109,154,135,16,183,8,0,68,109,154,135,251,191,8,0,68,109,154,135,239,200,8,0,69,109,184,38,0,182,7,0,69,109,184,38,58,182,7,0,70,109,51,151,118,81,7,0,75,237,59,86,80,113,7,0,75,109,52,203,113,132,9,0,75,109,52,203,167,132,9,0,75,109,52,203,51,133,9,0,78,109,13,32,21,71,9,0,78,109,13,32,100,72,9,0,78,109,13,32,181,73,9,0,78,109,13,32,11,75,9,0,79,109,84,157,4,52,10,0,82,109,246,225,71,220,7,0,85,109,70,23,101,92,8,0,85,109,70,23,157,92,8,0,85,109,70,23,210,92,8,0,85,237,132,150,214,236,8,0,85,237,132,150,252,236,8,0,88,237,254,19,23,27,7,0,89,109,215,122,148,213,10,0,90,109,156,152,134,19,7,0,93,109,99,5,60,77,10,0,93,109,99,5,232,77,10,0,94,109,75,55,243,238,6,0,95,109,47,60,48,88,6,0,96,237,112,119,33,66,6,0,98,237,85,138,135,44,7,0,98,237,39,133,235,114,11,0,99,237,120,144,125,45,11,0,102,109,6,100,16,183,8,0,102,109,6,100,251,191,8,0,102,109,6,100,239,200,8,0,104,237,97,36,51,29,6,0,104,109,72,55,62,223,9,0,104,109,72,55,64,224,9,0,104,109,72,55,93,225,9,0,107,109,192,148,43,163,6,0,107,109,192,148,172,196,6,0,107,237,235,214,145,114,7,0,108,109,37,109,38,92,7,0,109,109,72,185,85,29,10,0,110,109,121,49,156,20,11,0,111,237,83,34,163,57,7,0,111,237,63,239,89,197,9,0,111,237,63,239,117,197,9,0,112,237,32,173,203,60,8,0,116,237,205,109,203,158,6,0,119,237,180,226,145,114,7,0,119,237,242,3,76,48,11,0,120,109,107,158,229,103,9,0,120,109,107,158,3,104,9,0,120,109,107,158,29,104,9,0,121,109,123,32,213,222,9,0,121,109,123,32,239,222,9,0,123,237,138,115,13,173,6,0,124,109,181,217,161,77,7,0,124,109,198,59,145,114,7,0,124,109,181,217,60,152,7,0,126,109,180,22,184,94,8,0,130,109,131,59,218,93,7,0,132,109,251,218,4,52,10,0,133,237,55,206,131,110,11,0,134,109,46,129,133,166,6,0,134,237,10,59,39,35,7,0,136,109,155,42,45,226,8,0,136,109,155,42,130,231,8,0,136,237,93,89,72,102,9,0,136,237,93,89,254,102,9,0,137,109,7,106,165,116,11,0,138,237,136,50,207,215,9,0,138,237,136,50,229,215,9,0,138,237,136,50,249,215,9,0,139,109,250,57,23,27,7,0,139,109,9,188,161,77,7,0,142,237,22,215,135,104,9,0,142,237,22,215,169,104,9,0,142,237,67,250,205,209,10,0,144,237,84,54,45,33,9,0,144,237,84,54,120,33,9,0,145,109,32,52,213,110,7,0,148,109,192,143,163,88,10,0,148,109,192,143,83,89,10,0,148,109,112,167,228,112,11,0,150,109,235,114,145,12,8,0,152,109,51,55,143,50,6,0,152,109,51,55,240,95,6,0,153,237,197,64,196,251,5,0,153,237,35,78,23,27,7,0,153,109,151,141,23,27,7,0,154,109,69,160,23,27,7,0,156,109,85,85,29,14,6,0,156,109,85,85,73,130,7,0,156,237,96,116,16,183,8,0,156,237,96,116,251,191,8,0,156,237,96,116,239,200,8,0,157,237,158,8,224,76,8,0,157,237,158,8,16,77,8,0,158,109,194,6,201,106,7,0,162,237,87,176,75,241,6,0,162,109,24,212,29,120,7,0,164,109,227,254,213,188,7,0,164,109,97,239,19,245,8,0,164,109,97,239,76,245,8,0,165,109,32,174,33,42,6,0,165,109,32,174,222,74,8,0,167,237,90,113,186,229,6,0,167,109,215,9,32,7,10,0,167,109,215,9,70,7,10,0,168,109,125,85,45,54,11,0,168,109,125,85,66,54,11,0,169,109,190,106,4,52,10,0,169,237,91,248,4,52,10,0,169,109,137,133,195,163,10,0,174,109,182,5,252,242,8,0,174,109,182,5,240,243,8,0,175,109,35,129,184,89,7,0,175,109,35,129,19,90,7,0,177,109,65,179,0,55,7,0,177,109,65,179,163,57,7,0,177,237,220,105,63,79,10,0,177,237,220,105,138,79,10,0,177,237,220,105,214,79,10,0,178,237,114,66,209,18,7,0,179,109,86,42,164,16,9,0,179,109,86,42,141,17,9,0,180,109,251,77,4,44,7,0,181,109,41,114,19,90,7,0,182,109,49,35,58,35,9,0,182,109,49,35,31,36,9,0,183,109,113,249,102,214,8,0,183,109,113,249,14,218,8,0,183,109,221,118,111,81,9,0,183,109,221,118,4,82,9,0,189,109,39,104,182,225,5,0,191,109,79,180,181,53,11,0,193,109,61,199,118,151,7,0,193,109,61,199,85,159,7,0,195,109,139,53,9,151,6,0,200,237,145,236,60,152,7,0,200,237,145,236,26,168,7,0,201,109,184,16,141,252,6,0,203,109,168,54,12,99,7,0,204,237,103,143,4,155,10,0,204,109,104,247,23,97,11,0,205,109,58,69,16,183,8,0,205,109,58,69,251,191,8,0,205,109,58,69,239,200,8,0,211,109,128,180,160,79,8,0,212,109,239,127,135,149,7,0,212,109,239,127,52,19,10,0,212,109,239,127,81,19,10,0,212,109,239,127,105,19,10,0,212,109,220,19,94,229,10,0,213,237,175,133,205,15,6,0,214,237,154,224,22,91,7,0,214,109,149,37,81,100,11,0,215,109,238,3,51,18,7,0,216,237,122,150,134,19,7,0,217,109,71,82,238,81,10,0,218,109,243,211,9,238,8,0,218,109,243,211,94,238,8,0,222,109,239,122,231,113,8,0,223,109,148,64,168,152,9,0,225,109,196,152,176,147,11,0,227,109,56,127,12,99,7,0,227,109,214,40,145,114,7,0,227,109,56,127,194,138,7,0,230,109,223,114,23,27,7,0,230,109,155,255,191,232,10,0,232,237,177,230,142,38,6,0,232,109,67,129,117,51,7,0,232,109,67,129,111,53,7,0,233,237,89,218,20,8,9,0,233,237,89,218,247,8,9,0,233,237,89,218,210,9,9,0,243,109,38,236,199,36,7,0,252,237,81,97,23,27,7,0,255,237,231,36,118,155,10,0,0,110,170,226,74,240,6,0,0,110,170,226,95,60,9,0,0,110,170,226,133,60,9,0,0,110,198,212,21,71,9,0,0,110,198,212,100,72,9,0,0,110,198,212,181,73,9,0,0,110,198,212,11,75,9,0,2,238,226,188,211,17,7,0,2,238,194,24,167,93,9,0,2,238,194,24,189,93,9,0,3,238,197,69,102,214,8,0,3,238,197,69,14,218,8,0,5,110,15,170,115,2,7,0,7,238,122,42,115,161,9,0,7,238,122,42,104,162,9,0,7,110,242,124,13,99,11,0,12,110,232,242,83,132,10,0,13,238,197,158,20,8,9,0,13,238,197,158,247,8,9,0,13,238,197,158,210,9,9,0,13,238,84,177,194,185,9,0,13,238,84,177,96,186,9,0,14,238,194,251,134,19,7,0,14,238,133,242,145,114,7,0,15,238,235,51,72,13,6,0,16,238,19,76,187,153,8,0,17,238,183,227,194,138,7,0,21,238,42,231,60,51,10,0,21,238,42,231,121,51,10,0,22,238,219,57,134,0,6,0,22,238,219,57,36,139,6,0,22,238,219,57,8,112,7,0,22,110,177,244,4,52,10,0,23,238,67,251,248,242,6,0,23,110,221,126,11,129,9,0,23,110,221,126,36,129,9,0,26,110,99,43,19,90,7,0,27,110,39,35,243,181,6,0,27,110,211,166,19,31,11,0,27,110,211,166,42,31,11,0,27,110,249,16,31,177,11,0,31,110,32,14,145,12,8,0,33,238,16,64,16,37,7,0,33,238,132,249,135,44,7,0,33,110,102,102,108,49,7,0,35,238,105,24,230,41,6,0,35,238,105,24,89,170,6,0,35,238,105,24,219,62,8,0,36,238,238,137,78,9,7,0,36,238,201,6,194,138,7,0,36,238,238,137,46,133,11,0,38,110,43,245,55,108,7,0,40,110,84,204,209,18,7,0,42,238,100,57,169,7,6,0,42,238,117,211,29,14,6,0,42,238,117,211,73,130,7,0,42,238,154,138,128,128,10,0,43,110,26,228,45,226,8,0,43,110,26,228,130,231,8,0,43,110,98,210,74,187,10,0,46,238,248,105,64,231,6,0,46,238,232,108,29,120,7,0,47,110,67,182,16,183,8,0,47,110,67,182,251,191,8,0,47,110,67,182,239,200,8,0,49,110,68,15,60,77,10,0,49,110,68,15,232,77,10,0,49,110,139,62,121,9,11,0,50,110,249,83,145,114,7,0,51,110,198,23,135,1,9,0,51,110,198,23,189,1,9,0,52,110,183,37,16,183,8,0,52,110,183,37,251,191,8,0,52,110,183,37,239,200,8,0,53,238,1,226,44,157,9,0,53,238,1,226,89,157,9,0,56,238,67,138,194,138,7,0,57,238,218,59,252,169,7,0,59,238,194,183,97,103,7,0,64,110,228,195,62,223,9,0,64,110,228,195,64,224,9,0,64,110,228,195,93,225,9,0,65,110,188,164,41,254,6,0,65,238,93,139,208,235,10,0,65,238,93,139,137,236,10,0,65,110,188,164,22,63,11,0,66,238,157,250,184,76,6,0,66,110,14,198,102,214,8,0,66,110,14,198,14,218,8,0,69,238,106,0,194,138,7,0,69,110,220,213,2,175,11,0,71,110,53,136,108,132,11,0,71,238,53,143,77,143,11,0,73,238,43,144,74,239,9,0,75,110,237,112,23,27,7,0,75,238,13,0,119,96,7,0,77,110,42,70,167,194,6,0,78,238,28,210,240,248,6,0,80,238,244,35,220,65,7,0,80,238,196,162,62,223,9,0,80,238,196,162,64,224,9,0,80,238,196,162,93,225,9,0,81,110,130,243,219,238,8,0,81,110,130,243,39,240,8,0,81,110,130,243,117,241,8,0,81,110,29,72,133,228,9,0,81,110,29,72,175,228,9,0,82,238,233,153,145,12,8,0,85,110,251,253,38,65,6,0,85,238,88,111,153,178,6,0,85,238,110,98,29,120,7,0,85,110,85,199,194,138,7,0,85,110,85,199,201,8,10,0,90,110,6,29,16,183,8,0,90,110,6,29,251,191,8,0,90,110,6,29,239,200,8,0,92,238,205,238,74,239,9,0,92,238,205,238,174,239,9,0,93,238,96,221,86,243,6,0,95,110,103,46,72,102,9,0,95,110,103,46,254,102,9,0,98,238,35,210,135,44,7,0,101,110,174,102,218,93,7,0,102,238,238,170,152,194,10,0,104,110,157,65,119,96,7,0,104,110,249,8,12,99,7,0,106,238,194,68,23,27,7,0,110,110,212,186,12,99,7,0,110,110,170,190,135,149,7,0,110,238,127,3,60,152,7,0,110,238,127,3,128,112,8,0,110,110,35,200,102,214,8,0,110,110,35,200,14,218,8,0,112,110,244,14,68,2,8,0,112,110,244,14,121,2,8,0,113,238,156,71,14,228,5,0,113,238,174,38,165,224,8,0,113,238,174,38,86,225,8,0,116,110,91,38,41,254,6,0,120,238,18,254,118,151,7,0,121,110,242,91,91,128,10,0,122,238,108,114,83,126,8,0,124,110,74,112,28,132,10,0,127,110,152,192,132,21,9,0,127,110,152,192,157,23,9,0,127,110,197,182,9,180,11,0,130,110,188,127,102,214,8,0,130,110,188,127,14,218,8,0,130,238,97,80,192,150,9,0,130,238,97,80,216,150,9,0,130,238,97,80,235,150,9,0,132,238,40,118,85,29,10,0,133,238,28,162,161,110,10,0,133,238,28,162,2,112,10,0,134,238,76,204,202,103,6,0,136,110,193,2,131,222,8,0,136,110,193,2,38,223,8,0,136,110,193,2,206,223,8,0,136,110,44,125,45,226,8,0,136,110,44,125,130,231,8,0,138,238,245,220,133,159,6,0,138,238,118,149,216,51,9,0,138,238,118,149,175,52,9,0,139,110,130,68,193,100,10,0,139,110,130,68,89,103,10,0,140,110,34,36,74,240,6,0,140,110,146,251,75,112,7,0,140,110,34,36,95,60,9,0,140,110,34,36,133,60,9,0,144,238,118,88,163,244,10,0,145,110,93,47,101,137,6,0,145,110,93,47,167,174,6,0,147,238,201,210,57,156,6,0,148,110,44,105,194,138,7,0,148,110,157,71,60,77,10,0,148,110,157,71,232,77,10,0,148,110,192,44,158,175,11,0,149,110,166,74,206,115,6,0,151,110,160,127,87,69,9,0,151,110,160,127,181,69,9,0,153,110,51,71,15,4,6,0,153,110,139,195,234,141,9,0,153,110,139,195,12,142,9,0,154,238,38,215,132,21,9,0,154,238,38,215,157,23,9,0,156,110,95,218,103,48,7,0,159,110,70,235,161,77,7,0,161,110,8,25,83,126,8,0,162,110,209,78,4,52,10,0,167,110,71,129,98,158,6,0,167,238,64,232,23,27,7,0,167,238,93,202,216,51,9,0,167,238,93,202,175,52,9,0,168,110,227,57,51,104,7,0,168,238,223,227,167,113,9,0,168,238,223,227,7,114,9,0,168,238,223,227,108,114,9,0,168,238,223,227,202,114,9,0,168,238,223,227,49,115,9,0,170,238,218,39,203,153,6,0,170,238,218,39,129,154,6,0,177,110,100,95,76,43,9,0,177,110,100,95,114,43,9,0,179,238,234,55,194,138,7,0,180,110,191,229,145,12,8,0,184,238,156,168,173,181,8,0,186,238,66,77,194,138,7,0,190,110,125,56,119,96,7,0,192,238,60,166,247,247,6,0,192,238,60,166,25,103,8,0,192,238,60,166,111,79,9,0,192,238,60,166,167,79,9,0,192,238,60,166,224,79,9,0,193,110,116,216,90,14,7,0,193,110,116,216,194,138,7,0,197,238,169,74,72,102,9,0,197,238,169,74,254,102,9,0,200,110,117,127,216,0,6,0,202,238,133,59,115,161,9,0,202,238,133,59,104,162,9,0,204,110,74,201,102,214,8,0,204,110,74,201,14,218,8,0,208,110,238,26,124,89,11,0,209,238,137,173,213,134,7,0,212,238,99,228,107,226,9,0,212,238,99,228,251,226,9,0,215,110,108,110,122,246,6,0,215,110,114,97,83,193,7,0,216,110,65,114,170,213,10,0,219,110,89,236,147,110,7,0,219,110,48,62,62,242,9,0,219,110,48,62,92,242,9,0,220,238,110,238,16,183,8,0,220,238,110,238,251,191,8,0,220,238,110,238,239,200,8,0,222,238,69,169,107,10,7,0,222,110,5,211,240,66,9,0,222,110,5,211,119,67,9,0,226,238,222,189,4,52,10,0,227,110,169,16,244,131,7,0,228,110,12,193,12,99,7,0,228,110,37,226,164,16,9,0,228,110,37,226,141,17,9,0,230,238,40,215,134,173,10,0,236,110,114,143,80,195,6,0,236,238,35,242,206,35,7,0,236,238,35,242,9,36,7,0,236,238,156,40,139,163,9,0,236,238,156,40,241,163,9,0,237,110,167,116,196,99,8,0,239,238,62,97,40,37,6,0,242,238,136,125,85,174,7,0,242,238,136,125,202,174,7,0,242,238,82,212,165,224,8,0,242,238,82,212,86,225,8,0,242,110,84,192,186,26,9,0,242,110,84,192,120,27,9,0,242,110,84,192,48,28,9,0,243,110,109,131,116,72,7,0,244,238,13,49,117,51,7,0,244,238,13,49,111,53,7,0,245,110,196,157,218,93,7,0,246,110,55,51,143,240,6,0,247,238,73,180,32,107,7,0,247,238,73,180,130,107,7,0,254,110,56,130,29,120,7,0,255,238,229,13,194,138,7,0,255,238,50,61,92,9,8,0,0,111,9,117,29,14,6,0,0,239,35,66,5,76,7,0,0,111,9,117,73,130,7,0,2,239,181,78,23,27,7,0,2,111,68,155,168,152,9,0,3,111,145,175,232,7,6,0,3,111,145,175,6,133,8,0,6,111,232,252,4,52,10,0,7,111,71,120,51,104,7,0,7,111,14,239,129,133,11,0,8,239,8,250,16,183,8,0,8,239,8,250,251,191,8,0,8,239,8,250,239,200,8,0,8,239,219,225,81,126,9,0,8,239,219,225,166,126,9,0,8,239,219,225,53,127,9,0,10,111,208,86,119,96,7,0,15,239,62,17,145,114,7,0,15,111,255,182,161,110,10,0,15,111,255,182,2,112,10,0,15,239,25,22,75,111,11,0,16,111,176,215,58,212,8,0,16,111,176,215,201,212,8,0,19,111,236,7,26,42,11,0,21,111,75,121,159,88,7,0,21,111,94,164,140,219,7,0,21,239,55,8,164,142,10,0,23,239,240,185,83,126,8,0,24,111,136,94,23,27,7,0,24,111,62,141,44,188,10,0,29,239,196,173,238,81,10,0,30,111,220,179,23,27,7,0,30,239,87,182,163,57,7,0,35,239,248,187,19,90,7,0,37,239,17,25,145,114,7,0,37,111,175,182,29,120,7,0,38,111,182,108,4,52,10,0,39,111,215,42,66,3,7,0,40,111,53,34,29,120,7,0,41,111,172,30,201,80,7,0,41,111,108,148,219,166,11,0,43,111,209,182,134,19,7,0,44,239,184,110,55,108,7,0,44,239,221,20,102,214,8,0,44,239,221,20,14,218,8,0,44,111,151,91,42,68,9,0,44,111,151,91,103,68,9,0,45,239,74,2,43,140,8,0,46,239,23,195,90,253,8,0,46,239,23,195,126,253,8,0,46,239,23,195,157,253,8,0,50,111,179,110,29,14,6,0,50,239,73,31,145,114,7,0,50,111,179,110,73,130,7,0,51,111,236,237,184,52,11,0,52,239,94,177,148,157,10,0,54,239,123,53,86,56,9,0,54,239,123,53,9,57,9,0,58,111,77,107,161,77,7,0,59,111,162,152,0,55,7,0,59,111,162,152,163,57,7,0,60,239,132,238,16,183,8,0,60,239,132,238,251,191,8,0,60,239,132,238,239,200,8,0,61,239,120,27,4,52,10,0,62,111,35,178,209,18,7,0,62,111,40,7,60,152,7,0,62,239,53,42,16,183,8,0,62,239,53,42,251,191,8,0,62,239,53,42,239,200,8,0,62,111,40,7,79,237,8,0,65,111,142,191,107,10,7,0,67,111,161,248,143,167,10,0,69,111,170,164,7,73,6,0,70,111,69,209,12,132,10,0,71,111,108,7,123,69,8,0,73,239,49,169,135,61,7,0,76,111,112,167,170,91,7,0,77,111,195,45,139,254,6,0,87,239,75,101,16,183,8,0,87,239,75,101,251,191,8,0,87,239,75,101,239,200,8,0,95,111,54,44,135,37,6,0,95,239,117,26,119,96,7,0,95,239,22,155,112,246,7,0,95,239,76,51,76,106,11,0,97,239,217,87,26,169,10,0,99,111,90,237,57,220,10,0,100,111,225,36,65,41,7,0,103,239,172,77,117,51,7,0,103,239,172,77,111,53,7,0,106,239,115,135,218,93,7,0,106,239,110,58,175,29,9,0,106,239,110,58,88,30,9,0,107,111,130,143,15,143,11,0,107,111,130,143,60,146,11,0,110,111,198,123,219,0,7,0,111,111,20,122,174,63,11,0,111,111,20,122,194,63,11,0,113,239,93,51,104,212,5,0,116,239,100,216,132,255,6,0,116,239,100,216,63,96,7,0,117,111,134,93,165,224,8,0,117,111,134,93,86,225,8,0,124,239,107,148,60,152,7,0,124,239,107,148,50,110,10,0,124,239,107,148,112,110,10,0,126,111,14,186,250,87,10,0,127,239,249,1,161,77,7,0,128,239,34,126,152,130,6,0,128,111,161,219,4,52,10,0,129,239,223,187,116,72,7,0,131,111,23,41,85,232,6,0,132,111,148,120,62,223,9,0,132,111,148,120,64,224,9,0,132,111,148,120,93,225,9,0,133,239,207,234,201,201,9,0,133,239,207,234,243,201,9,0,134,111,197,71,214,203,6,0,135,111,185,70,55,108,7,0,136,111,152,113,163,57,7,0,137,239,4,89,67,148,11,0,138,239,198,161,0,55,7,0,138,239,198,161,163,57,7,0,139,239,149,97,67,17,7,0,139,239,190,45,135,44,7,0,141,239,18,222,16,183,8,0,141,239,18,222,251,191,8,0,141,239,18,222,239,200,8,0,142,239,100,94,117,51,7,0,142,239,100,94,111,53,7,0,145,111,1,76,135,43,7,0,148,239,113,98,23,27,7,0,149,239,137,149,105,222,5,0,151,239,69,14,194,185,9,0,151,239,69,14,96,186,9,0,154,239,42,38,51,104,7,0,156,111,239,106,116,72,7,0,158,111,113,8,134,211,8,0,158,111,113,8,165,211,8,0,158,111,113,8,205,211,8,0,159,111,80,142,86,146,6,0,159,111,218,148,23,27,7,0,159,239,69,81,16,183,8,0,159,239,69,81,251,191,8,0,159,239,69,81,239,200,8,0,160,111,99,16,60,200,6,0,161,239,32,100,125,67,10,0,161,239,32,100,69,68,10,0,162,111,221,113,125,67,10,0,162,111,221,113,69,68,10,0,163,239,206,35,11,14,7,0,163,111,12,1,13,99,11,0,164,111,225,58,16,183,8,0,164,111,225,58,251,191,8,0,164,111,225,58,239,200,8,0,165,111,92,73,170,252,5,0,165,111,92,73,101,64,7,0,165,111,198,135,4,52,10,0,169,239,67,82,246,243,9,0,169,239,67,82,59,245,9,0,169,239,67,82,131,246,9,0,173,239,142,232,26,174,10,0,175,111,146,169,226,166,6,0,177,239,179,148,192,2,7,0,177,239,179,148,144,164,9,0,177,239,179,148,169,164,9,0,180,111,253,64,117,51,7,0,180,111,253,64,111,53,7,0,181,239,73,138,212,52,8,0,182,111,173,252,158,251,5,0,184,239,20,99,55,108,7,0,184,111,84,18,92,9,8,0,186,239,195,34,97,103,7,0,187,111,208,210,79,32,9,0,187,111,208,210,121,32,9,0,188,111,98,127,65,226,6,0,189,111,156,149,207,48,7,0,189,111,156,149,21,71,9,0,189,111,156,149,100,72,9,0,189,111,156,149,181,73,9,0,189,111,156,149,11,75,9,0,191,239,138,37,231,141,8,0,191,111,220,82,111,79,9,0,191,111,220,82,167,79,9,0,191,111,220,82,224,79,9,0,192,111,25,166,97,164,6,0,192,111,90,14,135,61,7,0,192,111,230,231,65,76,7,0,193,239,17,168,115,86,9,0,193,239,17,168,181,86,9,0,195,111,224,16,245,152,8,0,196,239,135,206,254,140,11,0,196,239,135,206,45,141,11,0,197,239,209,30,16,37,7,0,199,111,71,45,145,154,11,0,200,111,199,248,84,161,6,0,200,111,57,108,110,40,7,0,200,239,69,81,193,100,10,0,200,239,69,81,89,103,10,0,202,239,195,231,145,114,7,0,203,111,78,64,4,52,10,0,204,239,102,87,102,214,8,0,204,239,102,87,14,218,8,0,207,239,83,57,187,0,7,0,210,239,71,121,244,241,6,0,210,239,71,121,248,238,10,0,211,239,246,133,135,44,7,0,212,239,225,183,166,193,6,0,212,111,152,216,107,226,9,0,212,111,152,216,251,226,9,0,213,111,29,166,45,226,8,0,213,111,29,166,130,231,8,0,214,111,130,135,12,99,7,0,214,111,89,133,4,52,10,0,216,111,127,191,253,38,9,0,216,111,127,191,207,40,9,0,216,111,8,12,128,219,10,0,220,111,240,198,44,182,11,0,221,239,140,93,209,84,7,0,222,239,35,25,23,27,7,0,223,111,175,143,23,27,7,0,224,111,148,214,135,44,7,0,225,111,145,67,134,19,7,0,227,111,165,22,215,34,11,0,228,239,14,197,111,205,6,0,228,239,25,197,128,190,9,0,228,239,25,197,172,190,9,0,233,239,194,68,55,208,7,0,236,239,143,237,92,171,6,0,236,239,143,237,209,84,7,0,238,239,6,132,141,12,6,0,238,239,6,132,230,180,6,0,238,239,6,132,207,24,10,0,238,239,6,132,22,25,10,0,238,239,6,132,89,25,10,0,238,239,6,132,150,25,10,0,239,239,23,147,45,226,8,0,239,239,23,147,130,231,8,0,244,239,254,229,23,27,7,0,245,111,187,126,120,154,10,0,246,239,50,86,82,136,6,0,247,239,197,63,23,27,7,0,247,239,178,11,206,35,7,0,247,239,178,11,9,36,7,0,249,239,198,199,124,247,6,0,252,239,138,210,119,96,7,0,252,239,48,216,29,120,7,0,253,239,43,116,219,0,7,0,0,112,114,145,150,45,9,0,0,112,114,145,18,46,9,0,1,240,119,247,135,149,7,0,1,240,119,247,24,65,10,0,3,240,54,22,158,242,7,0,4,112,175,182,23,27,7,0,4,112,248,82,103,48,7,0,4,240,70,188,193,100,10,0,4,240,70,188,89,103,10,0,6,112,10,33,168,104,8,0,6,112,10,33,45,105,8,0,6,112,10,33,167,105,8,0,8,240,31,228,213,15,9,0,10,112,117,204,8,87,11,0,10,112,117,204,34,87,11,0,11,112,25,86,168,152,9,0,15,112,119,199,26,7,7,0,17,240,147,110,236,164,6,0,21,240,208,165,194,138,7,0,21,240,208,165,241,108,11,0,23,112,206,11,218,93,7,0,25,240,47,194,87,202,10,0,26,240,168,114,226,42,8,0,26,240,168,114,22,43,8,0,26,112,248,245,253,38,9,0,26,112,248,245,207,40,9,0,28,112,66,229,176,68,7,0,29,240,41,100,219,46,10,0,29,240,185,248,250,87,10,0,31,240,223,164,17,50,6,0,32,240,236,10,139,163,9,0,32,240,236,10,241,163,9,0,35,112,42,84,23,27,7,0,35,240,22,79,205,87,7,0,38,112,144,120,109,230,5,0,43,112,62,67,203,255,6,0,44,112,151,14,117,51,7,0,44,112,151,14,111,53,7,0,45,112,120,52,187,124,11,0,46,112,200,10,24,242,6,0,46,112,240,38,238,81,10,0,51,240,194,234,107,10,7,0,51,240,9,9,27,26,11,0,53,112,51,196,130,89,6,0,54,240,224,44,190,192,10,0,55,240,0,83,35,129,10,0,58,240,102,174,2,161,10,0,59,240,139,104,168,84,10,0,59,240,139,104,226,84,10,0,60,112,1,198,17,45,8,0,60,112,1,198,209,59,11,0,62,112,169,112,196,46,7,0,63,240,236,177,141,252,6,0,64,240,201,155,71,70,11,0,66,240,7,45,102,15,7,0,73,112,153,218,133,130,6,0,73,112,191,169,47,98,9,0,75,240,189,132,243,238,6,0,76,112,244,15,164,16,9,0,76,112,244,15,141,17,9,0,77,240,178,73,60,152,7,0,77,240,178,73,128,112,8,0,79,240,238,6,186,53,9,0,79,240,238,6,77,54,9,0,80,240,255,47,59,18,6,0,82,112,136,34,49,107,8,0,83,240,140,124,135,61,7,0,84,240,163,48,81,46,6,0,84,240,131,203,216,140,9,0,84,240,131,203,69,141,9,0,85,240,32,149,118,250,5,0,85,240,35,59,226,216,7,0,86,112,141,238,134,19,7,0,86,112,132,238,55,95,10,0,86,112,132,238,143,95,10,0,86,240,62,253,62,171,10,0,86,240,62,253,179,182,10,0,86,240,62,253,228,182,10,0,89,112,109,130,8,185,9,0,90,112,211,117,183,249,6,0,90,112,142,131,220,93,8,0,91,112,14,84,38,244,7,0,91,112,14,84,98,244,7,0,91,112,14,84,159,244,7,0,91,112,14,84,218,244,7,0,92,112,250,0,134,19,7,0,92,240,131,12,52,210,7,0,94,240,227,132,23,27,7,0,94,240,63,235,216,47,7,0,94,240,63,235,224,248,10,0,96,112,83,80,241,190,7,0,98,112,8,195,58,75,7,0,99,240,196,112,161,77,7,0,100,112,251,36,168,104,8,0,100,112,251,36,45,105,8,0,100,112,251,36,167,105,8,0,102,240,245,244,23,27,7,0,103,112,4,238,129,138,10,0,108,112,254,58,141,80,9,0,108,112,254,58,170,80,9,0,108,112,254,58,201,80,9,0,109,112,231,242,100,150,10,0,112,240,189,132,250,87,10,0,114,112,104,218,194,138,7,0,114,112,104,218,37,173,7,0,114,112,104,218,67,173,7,0,116,112,107,114,190,2,11,0,118,240,163,160,98,4,6,0,118,240,234,187,217,89,6,0,119,240,30,160,58,68,7,0,123,240,80,121,241,190,7,0,124,112,112,167,179,115,11,0,125,112,234,166,42,29,11,0,131,112,125,118,194,138,7,0,134,112,106,99,157,192,7,0,135,240,41,79,185,140,10,0,139,240,112,123,134,19,7,0,142,240,76,8,241,190,7,0,142,240,247,39,81,126,9,0,142,240,247,39,166,126,9,0,142,240,247,39,53,127,9,0,143,112,15,146,29,120,7,0,144,112,27,45,95,111,7,0,151,112,154,183,45,226,8,0,151,112,154,183,130,231,8,0,151,112,3,241,243,134,10,0,152,112,14,248,151,8,6,0,153,240,14,113,145,12,8,0,156,240,18,157,194,243,7,0,156,240,138,246,16,183,8,0,156,240,138,246,251,191,8,0,156,240,138,246,239,200,8,0,156,240,8,130,45,226,8,0,156,240,8,130,130,231,8,0,161,112,104,81,203,254,5,0,164,112,1,182,16,183,8,0,164,112,1,182,251,191,8,0,164,112,1,182,239,200,8,0,165,240,0,223,134,19,7,0,165,112,50,91,228,183,11,0,169,112,116,91,161,77,7,0,169,112,212,110,80,83,7,0,170,240,200,165,4,52,10,0,172,240,108,202,209,84,7,0,173,112,178,243,4,52,10,0,175,112,69,165,117,225,5,0,176,240,171,86,134,19,7,0,179,112,94,80,168,152,9,0,181,240,118,140,246,62,7,0,181,112,150,40,241,190,7,0,181,240,54,132,80,206,7,0,181,112,215,60,129,239,7,0,181,112,16,30,32,20,9,0,181,112,16,30,179,20,9,0,183,240,177,243,244,233,10,0,185,112,56,40,80,83,7,0,186,240,187,81,253,38,9,0,186,240,187,81,207,40,9,0,187,240,113,33,0,78,6,0,190,240,80,196,162,63,8,0,190,240,80,196,208,63,8,0,190,112,6,139,16,183,8,0,190,112,6,139,251,191,8,0,190,112,6,139,239,200,8,0,190,240,239,206,239,253,8,0,190,240,80,196,85,101,11,0,192,240,151,199,173,108,11,0,197,240,111,164,194,138,7,0,198,240,114,207,75,148,7,0,200,240,66,177,60,165,10,0,202,240,47,211,194,138,7,0,202,240,47,211,9,252,7,0,203,112,217,217,94,109,11,0,209,240,187,129,145,114,7,0,210,240,8,126,92,13,6,0,210,240,8,126,221,21,6,0,210,240,8,126,85,96,6,0,213,112,208,162,194,185,9,0,213,112,208,162,96,186,9,0,218,112,70,153,206,214,6,0,220,240,206,11,134,19,7,0,220,112,151,159,81,206,10,0,221,240,34,42,187,124,11,0,223,112,190,226,116,72,7,0,224,112,115,236,182,13,7,0,226,112,210,248,12,99,7,0,226,240,241,130,145,114,7,0,226,112,48,112,29,120,7,0,228,240,254,234,145,114,7,0,229,112,91,93,99,221,5,0,230,240,250,159,163,57,7,0,232,112,170,149,120,63,7,0,233,240,116,24,16,37,7,0,234,240,150,98,29,81,7,0,234,112,202,78,230,229,7,0,235,112,206,124,183,249,6,0,236,112,91,138,29,120,7,0,236,240,75,161,132,21,9,0,236,240,75,161,157,23,9,0,239,112,50,150,161,77,7,0,239,112,192,15,4,52,10,0,242,240,208,38,226,11,7,0,242,240,23,203,194,138,7,0,245,112,34,250,72,102,9,0,245,112,34,250,254,102,9,0,246,112,78,15,16,183,8,0,246,112,78,15,251,191,8,0,246,112,78,15,239,200,8,0,251,112,109,3,86,195,10,0,251,240,136,194,81,60,11,0,254,240,209,159,228,66,7,0,0,241,123,233,149,40,7,0,0,241,123,233,253,49,7,0,0,241,123,233,59,72,7,0,2,241,70,145,224,224,5,0,2,113,213,57,240,66,9,0,2,113,213,57,119,67,9,0,2,241,114,97,152,200,9,0,2,241,114,97,172,200,9,0,3,113,127,226,58,227,7,0,5,113,109,136,186,172,6,0,5,113,117,49,209,84,7,0,8,241,31,202,25,86,7,0,8,241,31,202,74,86,7,0,8,113,89,105,3,50,10,0,8,113,89,105,16,50,10,0,11,113,122,58,168,111,6,0,12,241,34,76,161,77,7,0,13,241,21,131,116,72,7,0,14,241,143,6,29,120,7,0,14,113,18,110,142,186,10,0,15,113,163,4,4,52,10,0,18,241,128,82,119,96,7,0,19,113,213,44,198,146,9,0,19,113,213,44,20,147,9,0,19,241,4,168,234,157,10,0,21,113,64,17,92,9,8,0,26,241,102,188,18,182,11,0,27,113,248,127,55,108,7,0,29,113,18,60,39,47,9,0,29,113,18,60,54,48,9,0,31,241,30,34,67,17,7,0,32,241,81,87,170,91,7,0,32,241,217,55,58,66,8,0,33,241,137,62,96,8,7,0,33,241,41,129,118,77,8,0,36,241,224,62,64,150,6,0,37,113,83,212,87,69,9,0,37,113,83,212,181,69,9,0,38,113,148,118,194,185,9,0,38,113,148,118,96,186,9,0,39,241,90,215,77,11,7,0,39,113,58,166,119,96,7,0,40,241,208,134,4,52,10,0,43,113,132,4,138,74,6,0,44,113,23,22,25,84,7,0,44,113,23,22,114,84,7,0,44,113,9,224,177,3,11,0,45,241,237,41,161,77,7,0,45,241,194,74,92,9,8,0,47,241,110,215,48,179,6,0,48,241,217,144,5,76,7,0,49,241,216,129,202,10,6,0,49,113,44,122,83,126,8,0,52,113,243,228,38,92,7,0,52,113,227,77,202,132,10,0,53,113,251,64,85,29,10,0,54,113,247,96,176,191,7,0,54,113,215,8,253,38,9,0,54,113,215,8,207,40,9,0,54,113,247,96,93,34,10,0,54,113,247,96,146,34,10,0,54,113,247,96,206,34,10,0,55,241,225,195,23,27,7,0,57,113,126,24,29,14,6,0,57,113,231,242,163,57,7,0,57,113,126,24,73,130,7,0,58,113,5,56,60,152,7,0,58,113,5,56,108,163,7,0,59,113,181,148,138,98,6,0,59,113,181,148,213,81,7,0,61,113,73,91,14,137,9,0,61,113,73,91,201,137,9,0,63,113,129,184,181,111,7,0,63,113,205,22,102,214,8,0,63,113,205,22,14,218,8,0,63,113,68,16,39,47,9,0,63,113,68,16,54,48,9,0,66,113,18,175,87,69,9,0,66,113,18,175,181,69,9,0,66,241,183,76,168,152,9,0,66,113,212,12,93,129,10,0,67,113,30,37,134,19,7,0,68,241,119,84,150,45,9,0,68,241,119,84,18,46,9,0,68,241,25,30,68,231,10,0,70,113,62,15,252,242,8,0,70,113,62,15,240,243,8,0,70,241,73,187,4,52,10,0,73,241,146,12,168,152,9,0,74,113,190,37,194,138,7,0,74,113,81,117,60,77,10,0,74,113,81,117,232,77,10,0,75,241,10,80,184,128,10,0,75,241,171,77,110,58,11,0,75,241,171,77,132,58,11,0,76,241,159,219,86,182,11,0,78,241,139,36,12,99,7,0,79,241,228,209,135,242,6,0,79,241,84,187,41,180,11,0,79,241,84,187,226,180,11,0,81,241,39,60,217,9,7,0,82,113,128,151,134,19,7,0,83,113,164,177,145,18,7,0,87,241,166,40,104,67,7,0,89,113,234,223,173,92,11,0,91,241,213,48,4,52,10,0,96,113,17,125,75,112,7,0,97,241,240,12,25,84,7,0,97,241,240,12,114,84,7,0,101,241,202,208,137,87,11,0,104,241,164,112,240,66,9,0,104,241,164,112,119,67,9,0,107,113,225,18,194,138,7,0,111,241,159,28,12,99,7,0,113,241,8,112,150,13,6,0,117,113,59,127,102,214,8,0,117,113,59,127,14,218,8,0,118,113,98,229,102,214,8,0,118,113,98,229,14,218,8,0,119,241,177,94,115,161,9,0,119,241,177,94,104,162,9,0,119,241,80,32,153,113,10,0,119,241,80,32,27,114,10,0,121,241,2,22,45,226,8,0,121,241,2,22,130,231,8,0,122,241,189,246,253,38,9,0,122,241,189,246,207,40,9,0,126,113,10,174,193,100,10,0,126,113,10,174,89,103,10,0,128,241,135,239,139,254,6,0,131,113,230,223,4,52,10,0,133,113,26,174,209,150,11,0,136,113,58,150,26,22,6,0,138,113,157,38,231,66,8,0,139,241,246,24,12,99,7,0,140,113,189,5,12,201,6,0,140,113,242,47,216,51,9,0,140,113,242,47,175,52,9,0,142,241,229,14,4,52,10,0,146,113,199,227,161,77,7,0,147,241,185,13,29,14,6,0,147,241,185,13,73,130,7,0,148,241,77,122,134,19,7,0,149,113,83,197,19,90,7,0,149,241,179,52,194,138,7,0,151,241,204,254,160,79,8,0,151,241,54,66,198,170,11,0,153,113,42,128,196,106,11,0,156,241,107,158,60,152,7,0,158,113,185,178,22,91,7,0,160,113,135,218,71,250,6,0,160,113,14,190,60,152,7,0,160,113,14,190,226,164,7,0,160,241,52,178,213,146,8,0,161,241,0,175,19,90,7,0,162,241,163,172,105,93,8,0,164,241,168,135,119,96,7,0,166,241,121,196,111,79,9,0,166,241,121,196,167,79,9,0,166,241,121,196,224,79,9,0,166,241,189,28,115,161,9,0,166,241,189,28,104,162,9,0,166,241,99,153,71,16,11,0,169,241,192,148,79,190,6,0,169,113,226,223,23,27,7,0,170,113,33,14,161,77,7,0,170,241,0,93,158,109,7,0,173,113,223,247,134,19,7,0,173,113,97,210,45,226,8,0,173,113,97,210,130,231,8,0,173,113,255,4,192,246,10,0,176,113,88,108,126,140,11,0,179,113,56,61,64,48,7,0,181,241,107,50,161,77,7,0,184,113,93,117,161,77,7,0,185,241,113,2,186,150,11,0,186,113,62,145,51,104,7,0,188,241,171,71,68,198,6,0,188,241,96,180,16,183,8,0,188,241,96,180,251,191,8,0,188,241,96,180,239,200,8,0,188,241,96,180,165,224,8,0,188,241,96,180,86,225,8,0,189,113,122,213,8,112,7,0,191,113,132,149,25,134,9,0,191,113,132,149,147,134,9,0,191,113,132,149,7,135,9,0,191,113,132,149,174,135,9,0,191,113,132,149,71,136,9,0,192,241,48,125,12,99,7,0,193,241,116,27,219,238,8,0,193,241,116,27,39,240,8,0,193,241,116,27,117,241,8,0,194,113,72,219,130,47,7,0,195,113,227,101,134,19,7,0,196,113,41,236,155,181,11,0,197,113,243,0,23,27,7,0,197,113,153,95,65,41,7,0,198,113,248,123,16,183,8,0,198,113,248,123,251,191,8,0,198,113,248,123,239,200,8,0,198,241,148,66,175,29,9,0,198,241,148,66,88,30,9,0,198,241,225,80,122,209,10,0,198,241,225,80,65,212,10,0,201,113,103,160,29,120,7,0,202,241,78,197,222,14,7,0,202,241,182,109,56,238,7,0,204,241,165,36,17,71,6,0,204,241,87,117,77,252,6,0,204,241,87,117,167,113,9,0,204,241,87,117,7,114,9,0,204,241,87,117,108,114,9,0,204,241,87,117,202,114,9,0,204,241,87,117,49,115,9,0,206,113,194,32,79,242,5,0,206,113,194,32,117,159,11,0,208,241,147,202,65,41,7,0,210,113,180,148,33,72,6,0,211,113,11,185,206,214,6,0,211,241,106,45,58,35,9,0,211,241,106,45,31,36,9,0,212,113,128,192,253,38,9,0,212,113,128,192,207,40,9,0,213,113,175,212,241,88,6,0,213,241,185,133,12,99,7,0,214,113,230,61,196,46,7,0,216,241,200,120,206,35,7,0,216,241,200,120,9,36,7,0,216,113,127,205,173,92,11,0,217,113,17,150,99,228,5,0,217,113,17,150,165,228,5,0,217,241,63,51,148,120,11,0,219,241,29,232,197,95,6,0,223,113,22,130,76,48,11,0,224,113,236,70,62,223,9,0,224,113,236,70,64,224,9,0,224,113,236,70,93,225,9,0,226,113,167,201,196,46,7,0,228,241,86,82,145,114,7,0,228,241,86,82,168,84,10,0,228,241,86,82,226,84,10,0,228,113,151,41,209,174,11,0,229,113,151,97,145,114,7,0,230,113,224,93,135,149,7,0,230,113,224,93,214,99,10,0,230,113,224,93,22,100,10,0,230,113,224,93,82,100,10,0,234,241,30,194,194,138,7,0,236,113,73,129,96,156,11,0,238,241,210,28,102,214,8,0,238,241,210,28,14,218,8,0,238,241,16,103,246,230,10,0,239,113,5,138,145,114,7,0,241,113,25,102,209,213,5,0,246,113,44,230,209,18,7,0,246,241,70,89,68,89,11,0,247,241,180,41,139,254,6,0,247,113,103,194,188,195,10,0,248,241,64,225,145,114,7,0,249,241,77,251,38,235,5,0,249,241,252,7,31,65,11,0,251,241,126,152,40,214,7,0,254,113,30,86,77,217,5,0,2,242,197,97,63,96,7,0,5,242,60,247,248,115,11,0,5,242,60,247,45,118,11,0,5,242,60,247,7,132,11,0,9,242,149,129,34,122,6,0,9,242,58,206,134,19,7,0,11,114,217,49,161,77,7,0,12,242,141,178,50,158,10,0,13,242,233,13,47,13,7,0,15,242,151,153,43,89,7,0,17,114,236,198,253,38,9,0,17,114,236,198,207,40,9,0,18,242,104,101,163,88,10,0,18,242,104,101,83,89,10,0,18,114,8,123,143,167,10,0,20,114,5,49,209,84,7,0,20,114,5,49,74,239,9,0,20,114,5,49,174,239,9,0,20,114,5,49,174,239,9,0,21,114,147,241,219,0,7,0,23,242,0,4,134,19,7,0,23,242,229,223,16,183,8,0,23,242,229,223,251,191,8,0,23,242,229,223,239,200,8,0,26,114,163,126,213,40,11,0,27,242,91,15,218,93,7,0,28,242,215,241,4,52,10,0,28,242,195,139,159,97,11,0,30,114,156,255,209,18,7,0,31,114,134,101,119,96,7,0,31,114,10,186,39,47,9,0,31,114,10,186,54,48,9,0,34,114,215,58,201,8,10,0,35,114,197,127,71,40,11,0,36,242,43,109,227,97,11,0,39,114,121,225,16,118,6,0,39,114,77,230,111,4,9,0,39,114,77,230,41,6,9,0,40,242,187,186,12,99,7,0,41,114,86,219,247,147,6,0,44,114,133,94,75,164,6,0,45,114,110,211,145,114,7,0,46,242,126,133,135,44,7,0,46,242,147,179,151,186,7,0,47,242,216,96,145,114,7,0,50,114,59,91,101,196,6,0,51,242,167,193,33,69,11,0,55,114,123,143,134,19,7,0,58,242,22,242,119,96,7,0,58,242,6,240,145,114,7,0,59,114,157,38,82,221,5,0,60,114,108,129,45,226,8,0,60,114,108,129,130,231,8,0,62,242,140,194,25,84,7,0,62,242,140,194,114,84,7,0,65,242,136,4,176,68,7,0,71,114,13,50,141,180,9,0,71,114,13,50,190,180,9,0,71,114,13,50,3,181,9,0,73,242,96,111,111,81,9,0,73,242,96,111,4,82,9,0,75,242,147,146,23,27,7,0,75,242,166,108,175,184,7,0,75,242,166,108,85,116,8,0,76,242,180,214,197,56,8,0,79,114,209,43,0,55,7,0,79,114,209,43,163,57,7,0,82,114,81,28,111,4,9,0,82,114,81,28,41,6,9,0,85,114,175,171,135,61,7,0,87,242,143,219,9,133,10,0,88,114,125,150,202,204,6,0,89,242,59,198,16,183,8,0,89,242,59,198,251,191,8,0,89,242,59,198,239,200,8,0,93,242,80,190,112,246,7,0,93,114,149,12,161,110,10,0,93,114,149,12,2,112,10,0,95,242,38,240,55,108,7,0,96,242,155,201,26,162,6,0,97,242,75,43,15,92,9,0,97,242,75,43,90,92,9,0,97,242,75,43,162,92,9,0,100,242,250,3,156,253,6,0,100,242,252,244,145,114,7,0,100,242,102,65,125,67,10,0,100,242,102,65,69,68,10,0,100,114,14,41,152,179,11,0,101,242,44,8,195,163,10,0,107,114,183,22,51,104,7,0,107,114,239,127,165,224,8,0,107,114,239,127,86,225,8,0,109,242,83,120,119,96,7,0,109,242,53,26,4,52,10,0,111,242,56,98,101,64,7,0,113,114,196,148,238,239,6,0,117,242,183,6,156,166,6,0,118,114,166,221,176,68,7,0,120,114,120,55,157,227,5,0,120,242,217,24,176,41,6,0,120,242,250,126,155,114,6,0,120,242,226,135,4,52,10,0,120,242,5,136,61,191,10,0,121,242,249,241,55,108,7,0,122,114,130,213,224,203,7,0,123,114,204,106,235,228,10,0,125,114,61,126,45,226,8,0,125,114,61,126,130,231,8,0,125,114,158,101,115,47,11,0,127,114,123,204,16,37,7,0,127,242,35,227,45,226,8,0,127,242,35,227,130,231,8,0,131,114,207,187,116,72,7,0,131,114,207,187,241,225,10,0,132,114,150,155,12,99,7,0,134,242,181,72,143,240,6,0,140,242,202,114,97,16,7,0,143,242,35,231,0,55,7,0,143,242,35,231,163,57,7,0,143,242,40,76,209,19,10,0,144,114,101,185,60,152,7,0,144,114,101,185,128,112,8,0,144,242,25,101,186,26,9,0,144,242,25,101,120,27,9,0,144,242,25,101,48,28,9,0,150,114,28,231,194,138,7,0,152,242,151,21,208,211,5,0,152,114,213,146,248,223,7,0,153,114,171,55,24,192,7,0,153,242,244,57,4,52,10,0,154,242,122,85,134,19,7,0,154,242,212,155,29,120,7,0,154,114,168,198,4,52,10,0,155,242,114,86,29,14,6,0,155,242,114,86,73,130,7,0,155,242,13,154,163,88,10,0,155,242,13,154,83,89,10,0,156,242,39,117,42,68,9,0,156,242,39,117,103,68,9,0,156,114,77,249,110,154,11,0,157,114,181,17,45,226,8,0,157,114,181,17,130,231,8,0,158,114,60,51,122,129,11,0,159,242,178,118,30,107,6,0,160,242,148,244,216,51,9,0,160,242,148,244,175,52,9,0,161,242,94,59,23,27,7,0,162,242,219,218,210,15,11,0,165,242,146,103,106,149,10,0,166,114,110,61,102,112,11,0,172,114,87,157,180,236,7,0,172,114,230,218,164,16,9,0,172,114,230,218,141,17,9,0,174,114,44,116,85,29,10,0,176,114,225,120,164,16,9,0,176,114,225,120,141,17,9,0,178,114,6,195,145,114,7,0,179,114,222,64,73,196,6,0,179,242,100,141,72,236,6,0,179,114,148,127,194,138,7,0,180,242,148,18,110,179,11,0,182,114,114,147,178,188,9,0,182,114,114,147,229,188,9,0,183,242,161,254,137,227,10,0,185,242,232,56,177,105,7,0,185,242,91,155,252,169,7,0,187,114,119,103,180,66,11,0,188,114,108,74,16,183,8,0,188,114,108,74,251,191,8,0,188,114,108,74,239,200,8,0,191,242,60,144,31,168,10,0,192,242,181,179,176,68,7,0,192,242,26,73,63,96,7,0,192,114,69,99,29,120,7,0,192,242,26,73,60,152,7,0,192,242,26,73,146,168,7,0,192,114,34,115,14,137,9,0,192,114,34,115,201,137,9,0,193,242,198,95,255,70,10,0,193,242,198,95,87,71,10,0,193,242,198,95,174,71,10,0,194,242,173,125,156,145,10,0,195,114,178,111,186,53,9,0,195,114,178,111,77,54,9,0,199,242,2,126,133,12,7,0,199,242,167,140,114,56,11,0,202,242,232,104,189,237,6,0,202,114,123,240,193,238,7,0,202,242,73,97,85,29,10,0,203,114,117,60,161,77,7,0,204,242,103,67,135,44,7,0,207,242,53,222,4,52,10,0,208,114,81,242,194,138,7,0,209,114,72,58,9,21,11,0,210,242,48,157,224,220,6,0,211,242,229,233,16,183,8,0,211,242,229,233,251,191,8,0,211,242,229,233,239,200,8,0,213,242,165,100,141,229,10,0,216,114,54,162,134,19,7,0,218,114,47,193,110,145,6,0,220,114,114,83,132,21,9,0,220,114,114,83,157,23,9,0,223,114,52,27,218,93,7,0,223,242,82,202,200,182,11,0,224,242,176,152,226,178,10,0,226,114,147,145,183,82,7,0,229,242,12,123,66,97,6,0,230,242,127,86,163,255,6,0,230,242,21,142,125,67,11,0,232,114,105,34,110,59,6,0,235,114,69,145,134,19,7,0,235,114,170,101,102,214,8,0,235,114,170,101,14,218,8,0,237,242,165,122,134,19,7,0,238,242,62,220,37,161,6,0,238,114,128,165,29,120,7,0,238,114,11,42,60,152,7,0,238,114,11,42,238,13,9,0,238,114,11,42,11,14,9,0,238,114,128,165,65,49,11,0,240,242,82,121,63,79,10,0,240,242,82,121,138,79,10,0,240,242,82,121,214,79,10,0,245,242,13,234,29,120,7,0,245,114,62,104,21,138,7,0,246,114,157,38,229,207,6,0,249,114,93,138,73,38,7,0,250,114,154,107,163,57,7,0,250,114,54,131,83,126,8,0,250,114,154,107,21,71,9,0,250,114,154,107,21,71,9,0,250,114,154,107,21,71,9,0,250,114,154,107,21,71,9,0,250,114,154,107,100,72,9,0,250,114,154,107,100,72,9,0,250,114,154,107,100,72,9,0,250,114,154,107,100,72,9,0,250,114,154,107,181,73,9,0,250,114,154,107,181,73,9,0,250,114,154,107,181,73,9,0,250,114,154,107,181,73,9,0,250,114,154,107,11,75,9,0,250,114,154,107,11,75,9,0,250,114,154,107,11,75,9,0,250,114,154,107,11,75,9,0,251,242,60,48,100,92,7,0,252,242,195,113,102,214,8,0,252,242,195,113,14,218,8,0,252,114,131,25,76,48,11,0,253,114,218,150,110,194,10,0,254,242,51,54,60,152,7,0,254,114,192,229,4,52,10,0,254,242,51,54,206,114,10,0,254,242,51,54,235,114,10,0,1,115,53,41,197,96,8,0,1,115,53,41,4,97,8,0,1,115,53,41,57,97,8,0,2,115,148,19,51,104,7,0,3,243,5,169,75,241,6,0,3,115,71,105,93,46,7,0,11,243,150,159,156,218,10,0,12,243,198,207,29,120,7,0,13,243,70,136,134,19,7,0,15,243,225,92,58,212,8,0,15,243,225,92,201,212,8,0,16,243,100,66,83,25,6,0,16,243,105,24,194,138,7,0,16,243,233,45,22,46,10,0,16,243,233,45,22,46,10,0,16,243,233,45,98,46,10,0,16,243,233,45,98,46,10,0,20,243,141,149,90,236,10,0,21,115,151,60,39,47,9,0,21,115,151,60,54,48,9,0,22,115,231,54,251,113,6,0,22,115,20,141,90,14,7,0,22,243,73,97,134,19,7,0,22,115,255,250,139,163,9,0,22,115,255,250,241,163,9,0,23,115,11,55,253,49,7,0,26,115,230,207,92,9,8,0,27,243,171,171,16,37,7,0,31,115,181,148,132,35,8,0,31,115,181,148,192,35,8,0,33,115,132,89,92,140,8,0,33,243,202,205,75,58,9,0,33,243,202,205,123,58,9,0,34,243,15,109,29,120,7,0,34,243,113,223,45,226,8,0,34,243,113,223,130,231,8,0,37,115,94,56,219,36,11,0,39,115,9,231,19,67,8,0,41,115,167,172,16,183,8,0,41,115,167,172,251,191,8,0,41,115,167,172,239,200,8,0,42,243,28,221,135,2,9,0,42,243,28,221,47,3,9,0,44,243,81,171,22,46,10,0,44,243,81,171,98,46,10,0,46,115,210,144,193,100,10,0,46,115,210,144,89,103,10,0,47,243,247,115,102,214,8,0,47,243,247,115,14,218,8,0,48,115,15,108,211,119,6,0,49,243,233,247,163,57,7,0,50,243,156,124,210,59,8,0,51,243,184,163,116,72,7,0,51,243,147,124,25,134,9,0,51,243,147,124,147,134,9,0,51,243,147,124,7,135,9,0,51,243,147,124,174,135,9,0,51,243,147,124,71,136,9,0,53,115,203,6,16,183,8,0,53,115,203,6,251,191,8,0,53,115,203,6,239,200,8,0,54,243,7,229,104,67,7,0,54,115,111,168,29,120,7,0,55,115,85,23,177,4,7,0,55,243,15,126,66,134,7,0,56,243,7,229,104,67,7,0,57,243,123,45,47,13,7,0,60,243,48,204,246,62,7,0,60,115,201,224,4,52,10,0,61,115,134,91,240,248,6,0,61,243,106,144,101,16,11,0,63,115,195,148,62,26,9,0,63,115,195,148,116,26,9,0,65,243,187,148,116,219,5,0,65,243,187,148,29,190,6,0,66,243,210,251,134,19,7,0,69,115,216,55,161,77,7,0,70,115,193,87,25,134,9,0,70,115,193,87,147,134,9,0,70,115,193,87,7,135,9,0,70,115,193,87,174,135,9,0,70,115,193,87,71,136,9,0,71,115,197,41,194,138,7,0,74,115,214,99,210,104,11,0,76,115,154,86,121,195,6,0,76,243,158,38,119,96,7,0,77,115,242,89,101,64,7,0,77,115,22,139,194,138,7,0,78,243,80,95,33,38,6,0,78,243,80,95,88,167,8,0,78,243,80,95,143,167,8,0,85,115,28,71,51,248,8,0,85,115,28,71,162,248,8,0,85,115,200,147,150,45,9,0,85,115,200,147,18,46,9,0,86,243,225,84,60,152,7,0,86,243,225,84,226,164,7,0,86,243,121,52,132,21,9,0,86,243,121,52,157,23,9,0,91,115,205,220,104,222,10,0,93,115,243,160,29,120,7,0,94,243,163,234,199,83,7,0,94,243,10,172,16,183,8,0,94,243,10,172,251,191,8,0,94,243,10,172,239,200,8,0,95,115,113,220,15,92,9,0,95,115,113,220,90,92,9,0,95,115,113,220,162,92,9,0,97,243,180,3,29,120,7,0,99,115,97,159,16,183,8,0,99,115,97,159,251,191,8,0,99,115,97,159,239,200,8,0,100,243,111,167,134,19,7,0,104,115,231,242,21,138,7,0,104,115,239,174,253,38,9,0,104,115,239,174,207,40,9,0,105,243,151,229,60,77,10,0,105,243,151,229,232,77,10,0,110,243,66,129,47,13,7,0,110,243,29,149,100,92,7,0,111,243,140,129,237,63,7,0,111,243,140,129,7,64,7,0,112,115,15,219,155,209,10,0,115,115,245,53,29,120,7,0,115,115,30,62,38,117,8,0,119,115,110,221,167,242,9,0,120,243,243,37,134,19,7,0,121,115,136,50,194,138,7,0,121,115,25,129,60,152,7,0,121,115,25,129,128,112,8,0,124,115,226,244,142,224,5,0,125,243,113,89,196,161,6,0,125,243,59,111,220,93,8,0,125,115,130,215,186,26,9,0,125,115,130,215,120,27,9,0,125,115,130,215,48,28,9,0,126,243,127,124,246,34,6,0,126,243,127,124,107,10,7,0,128,115,217,34,150,41,11,0,128,115,161,30,215,179,11,0,129,115,80,203,124,239,5,0,129,115,80,203,228,169,6,0,129,115,80,203,223,218,6,0,129,243,64,135,138,171,7,0,129,115,80,203,154,98,9,0,129,115,80,203,181,98,9,0,130,115,226,212,29,120,7,0,130,115,234,126,131,19,11,0,132,243,192,252,163,57,7,0,132,243,192,252,152,65,7,0,134,243,250,223,9,84,9,0,134,243,250,223,62,84,9,0,134,243,59,51,253,59,10,0,134,243,59,51,144,60,10,0,134,243,59,51,39,61,10,0,137,115,111,149,60,152,7,0,139,115,2,140,227,246,6,0,140,115,145,25,135,213,6,0,142,243,97,250,142,243,6,0,142,243,97,250,156,253,6,0,142,243,149,248,4,52,10,0,146,115,169,44,102,214,8,0,146,115,169,44,14,218,8,0,147,243,76,32,49,207,7,0,149,243,25,97,75,112,7,0,149,115,52,163,16,183,8,0,149,115,52,163,251,191,8,0,149,115,52,163,239,200,8,0,151,243,83,77,23,27,7,0,158,115,168,111,29,120,7,0,159,243,173,189,165,224,8,0,159,243,173,189,86,225,8,0,159,243,234,59,252,242,8,0,159,243,234,59,240,243,8,0,160,115,162,114,95,16,6,0,160,243,5,211,88,187,7,0,161,115,233,26,4,52,10,0,162,243,173,185,177,105,7,0,162,243,18,49,54,104,11,0,163,115,144,144,179,122,9,0,164,243,53,85,141,252,6,0,165,243,217,137,1,111,6,0,166,243,218,122,107,226,9,0,166,243,218,122,251,226,9,0,167,243,144,16,129,134,6,0,167,243,139,170,209,84,7,0,167,243,164,21,187,203,7,0,168,115,81,242,224,222,7,0,168,243,93,243,167,242,9,0,169,115,199,83,134,19,7,0,169,243,206,88,135,149,7,0,172,115,0,128,30,114,7,0,172,115,0,128,66,114,7,0,174,243,39,159,163,57,7,0,174,243,39,159,209,84,7,0,175,243,131,103,186,158,9,0,175,243,131,103,5,159,9,0,175,115,199,213,26,43,11,0,176,115,132,174,72,236,6,0,178,243,133,128,6,213,6,0,180,243,103,205,194,138,7,0,182,243,114,140,202,16,10,0,182,243,114,140,228,16,10,0,184,243,36,230,116,72,7,0,187,243,34,34,115,236,5,0,187,243,9,208,247,138,6,0,187,243,34,34,0,55,7,0,187,243,34,34,163,57,7,0,189,115,183,243,134,19,7,0,191,243,217,88,51,248,8,0,191,243,217,88,162,248,8,0,192,115,48,99,12,99,7,0,196,115,22,126,194,138,7,0,198,115,251,15,135,2,9,0,198,115,251,15,47,3,9,0,200,243,39,142,65,160,6,0,200,243,216,204,58,35,9,0,200,243,216,204,31,36,9,0,200,115,211,91,4,52,10,0,203,243,12,163,190,199,10,0,204,243,94,19,73,38,7,0,204,243,94,19,174,156,10,0,205,115,74,239,121,221,7,0,205,115,68,250,190,208,10,0,206,115,166,17,41,254,6,0,206,115,166,17,145,114,7,0,210,243,236,197,23,27,7,0,211,115,192,191,128,247,7,0,211,243,113,22,62,223,9,0,211,243,113,22,64,224,9,0,211,243,113,22,93,225,9,0,212,243,53,174,220,65,7,0,213,115,15,179,142,246,5,0,213,115,115,50,21,71,9,0,213,115,115,50,100,72,9,0,213,115,115,50,181,73,9,0,213,115,115,50,11,75,9,0,215,115,66,10,16,183,8,0,215,115,66,10,251,191,8,0,215,115,66,10,239,200,8,0,217,115,19,68,237,19,11,0,218,243,229,7,111,81,9,0,218,243,229,7,4,82,9,0,220,243,70,50,144,72,6,0,220,243,70,50,164,72,6,0,221,115,88,83,142,245,10,0,223,115,82,217,72,118,6,0,223,115,82,217,184,120,6,0,223,115,82,217,26,51,8,0,223,115,82,217,60,51,8,0,223,115,82,217,96,51,8,0,225,243,29,248,219,25,6,0,226,243,12,171,218,93,7,0,228,243,95,78,213,160,7,0,232,243,85,170,253,49,7,0,232,115,136,93,145,114,7,0,233,243,134,154,16,183,8,0,233,243,134,154,251,191,8,0,233,243,134,154,239,200,8,0,236,115,213,26,135,44,7,0,237,243,242,55,66,3,7,0,238,243,185,80,246,97,8,0,238,243,22,242,216,51,9,0,238,243,22,242,175,52,9,0,238,243,185,80,59,142,11,0,238,243,185,80,73,142,11,0,240,115,137,42,4,52,10,0,242,243,74,45,135,2,9,0,242,243,74,45,47,3,9,0,242,243,42,68,163,88,10,0,242,243,42,68,83,89,10,0,242,243,242,59,90,157,10,0,243,115,247,242,164,231,5,0,243,115,19,151,198,48,6,0,243,243,192,148,96,1,7,0,245,115,239,199,246,62,7,0,245,243,49,19,58,212,8,0,245,243,49,19,201,212,8,0,245,115,8,31,187,199,9,0,245,115,8,31,216,199,9,0,245,115,8,31,12,200,9,0,246,243,43,204,146,76,9,0,246,243,43,204,63,77,9,0,249,115,152,113,34,197,6,0,249,243,80,60,16,37,7,0,249,115,125,143,68,82,8,0,251,243,143,54,138,111,7,0,252,243,95,78,23,1,11,0,253,243,208,169,194,138,7,0,255,243,204,248,29,120,7,0,0,244,127,162,60,152,7,0,0,244,127,162,128,112,8,0,0,116,119,14,12,37,11,0,0,116,119,14,160,39,11,0,1,116,148,190,60,152,7,0,1,116,148,190,79,237,8,0,1,244,105,167,130,192,10,0,2,244,218,7,193,100,10,0,2,244,218,7,89,103,10,0,3,116,207,110,23,253,6,0,3,244,134,35,74,71,11,0,8,116,234,244,153,110,9,0,8,116,234,244,178,110,9,0,8,244,114,69,71,224,10,0,9,244,46,215,161,77,7,0,10,244,192,1,4,52,10,0,10,116,184,168,27,136,10,0,10,116,120,129,144,222,10,0,13,244,243,54,176,68,7,0,17,244,194,121,16,183,8,0,17,244,194,121,251,191,8,0,17,244,194,121,239,200,8,0,18,116,17,249,72,102,9,0,18,116,17,249,254,102,9,0,20,244,18,197,219,238,8,0,20,244,18,197,39,240,8,0,20,244,18,197,117,241,8,0,21,116,71,102,42,212,10,0,21,244,10,29,120,22,11,0,23,116,125,153,23,27,7,0,24,116,116,178,234,138,10,0,27,116,252,181,167,242,9,0,29,244,47,249,146,17,8,0,30,244,249,111,46,246,5,0,30,244,212,154,237,131,10,0,31,116,128,243,137,91,6,0,31,116,128,243,204,92,6,0,31,116,128,243,172,114,8,0,32,116,101,210,193,100,10,0,32,116,101,210,89,103,10,0,34,116,148,21,96,18,11,0,34,116,148,21,14,29,11,0,37,116,186,148,203,20,6,0,38,244,184,146,145,114,7,0,39,116,205,128,14,137,9,0,39,116,205,128,201,137,9,0,41,116,220,16,153,67,6,0,41,244,228,211,161,77,7,0,41,244,223,224,21,71,9,0,41,244,223,224,100,72,9,0,41,244,223,224,181,73,9,0,41,244,223,224,11,75,9,0,42,116,86,213,145,114,7,0,42,244,203,208,93,20,11,0,43,244,113,27,253,38,9,0,43,244,113,27,207,40,9,0,43,116,196,148,168,123,11,0,45,244,162,23,217,238,9,0,45,244,162,23,174,239,9,0,45,244,138,248,33,120,11,0,50,116,123,50,252,169,7,0,58,116,110,154,145,114,7,0,61,244,1,189,51,65,7,0,61,116,222,40,165,224,8,0,61,116,222,40,86,225,8,0,63,116,223,124,169,61,8,0,65,116,140,129,194,138,7,0,66,244,0,3,206,155,11,0,71,244,97,153,60,152,7,0,71,244,97,153,39,158,7,0,71,244,97,153,56,158,7,0,72,116,149,131,124,121,11,0,78,244,219,130,23,27,7,0,80,244,237,250,12,99,7,0,84,244,56,118,54,61,6,0,85,244,232,190,100,92,7,0,85,116,198,160,20,8,9,0,85,116,198,160,247,8,9,0,85,116,198,160,210,9,9,0,85,116,186,46,4,52,10,0,86,244,49,95,218,93,7,0,86,244,220,221,39,47,9,0,86,244,220,221,54,48,9,0,86,116,142,28,225,208,9,0,86,116,142,28,249,208,9,0,87,116,101,70,31,149,10,0,88,244,27,126,23,27,7,0,88,244,50,204,220,137,10,0,88,244,10,214,69,98,11,0,89,116,67,143,77,135,10,0,91,116,174,133,238,81,10,0,92,116,243,126,162,238,5,0,92,244,4,179,104,160,6,0,93,116,171,145,232,237,10,0,94,244,25,204,135,44,7,0,95,244,193,41,194,138,7,0,95,244,209,208,194,138,7,0,95,244,91,113,141,120,8,0,97,244,130,215,23,27,7,0,97,244,21,99,128,39,7,0,98,116,197,111,77,233,6,0,98,244,145,71,161,77,7,0,99,116,10,31,164,16,9,0,99,116,10,31,141,17,9,0,101,116,210,241,183,82,7,0,102,116,244,52,209,85,6,0,102,244,111,150,217,9,7,0,102,116,239,184,4,52,10,0,102,244,114,75,58,195,10,0,103,116,3,163,194,138,7,0,104,244,79,29,193,100,10,0,104,244,79,29,89,103,10,0,105,116,233,170,193,100,10,0,105,116,233,170,89,103,10,0,107,244,219,128,146,219,5,0,109,244,118,246,247,247,6,0,109,116,244,53,23,27,7,0,111,116,17,2,132,21,9,0,111,116,17,2,157,23,9,0,111,116,183,248,27,233,10,0,111,116,183,248,207,241,10,0,112,244,213,43,168,152,9,0,115,244,19,60,117,51,7,0,115,116,165,15,170,91,7,0,117,244,197,194,215,91,11,0,117,244,197,194,83,104,11,0,119,116,11,251,60,152,7,0,119,116,11,251,190,122,8,0,119,116,11,251,83,123,8,0,119,116,11,251,244,123,8,0,119,116,11,251,210,33,10,0,121,244,239,31,145,114,7,0,122,116,7,216,68,38,11,0,124,244,106,134,161,77,7,0,125,116,108,252,132,75,6,0,125,244,252,249,117,51,7,0,126,116,130,217,113,0,9,0,126,116,130,217,160,0,9,0,127,116,37,33,145,114,7,0,131,244,177,72,96,10,6,0,131,244,177,72,120,10,6,0,131,116,226,89,60,152,7,0,131,116,226,89,79,237,8,0,132,244,33,227,203,237,5,0,132,244,161,76,107,226,9,0,132,244,161,76,251,226,9,0,132,116,40,41,254,94,11,0,132,116,40,41,19,95,11,0,134,244,249,3,16,183,8,0,134,244,249,3,251,191,8,0,134,244,249,3,239,200,8,0,135,116,9,156,23,27,7,0,135,116,71,246,161,77,7,0,135,116,71,246,29,81,7,0,136,244,77,248,194,138,7,0,140,116,216,50,194,138,7,0,140,116,43,36,13,55,8,0,140,244,189,251,193,100,10,0,140,244,189,251,89,103,10,0,143,244,46,101,102,15,7,0,143,116,163,186,29,120,7,0,146,116,34,102,57,220,10,0,147,116,113,204,107,192,10,0,147,116,113,204,177,198,10,0,154,116,80,230,246,243,9,0,154,116,80,230,59,245,9,0,154,116,80,230,131,246,9,0,155,244,142,89,0,218,7,0,156,116,179,9,53,3,8,0,158,116,215,221,206,35,7,0,158,116,215,221,9,36,7,0,163,244,87,128,194,138,7,0,167,116,177,26,96,18,7,0,168,244,233,254,16,183,8,0,168,244,233,254,251,191,8,0,168,244,233,254,239,200,8,0,178,116,139,121,244,227,6,0,178,244,202,71,16,37,7,0,179,116,148,88,144,19,6,0,181,116,140,151,163,57,7,0,181,116,247,142,133,148,10,0,181,116,247,142,208,148,10,0,183,116,85,252,55,108,7,0,184,116,43,215,28,127,6,0,184,244,12,125,117,51,7,0,184,244,12,125,111,53,7,0,191,244,8,181,253,49,7,0,192,244,221,173,247,226,5,0,192,116,13,229,97,16,7,0,192,244,29,246,176,68,7,0,195,116,81,242,59,72,7,0,199,116,57,34,43,163,6,0,199,116,0,60,213,84,8,0,201,116,41,122,42,181,8,0,204,116,210,176,12,99,7,0,205,116,255,137,60,152,7,0,205,116,255,137,123,161,7,0,205,116,214,98,58,212,8,0,205,116,214,98,201,212,8,0,206,244,193,193,76,238,6,0,206,116,45,139,4,52,10,0,212,244,181,127,60,152,7,0,213,116,156,97,168,152,9,0,216,244,158,11,148,244,6,0,216,244,123,181,199,173,7,0,217,244,45,214,175,7,7,0,218,116,25,40,169,251,6,0,218,116,81,242,204,181,9,0,218,116,81,242,224,182,9,0,220,244,186,2,230,113,6,0,221,244,229,50,16,183,8,0,221,244,229,50,251,191,8,0,221,244,229,50,239,200,8,0,225,244,207,86,29,120,7,0,226,116,184,165,255,30,6,0,226,116,143,61,150,189,10,0,228,244,235,118,134,19,7,0,229,116,42,40,104,67,7,0,229,244,192,167,116,72,7,0,229,116,42,40,36,96,10,0,230,116,171,92,32,98,8,0,231,244,173,67,160,79,8,0,232,116,34,176,219,0,7,0,234,116,210,233,255,101,6,0,234,116,210,233,56,118,6,0,237,244,159,30,153,67,6,0,237,244,214,2,135,149,7,0,240,244,209,54,115,161,9,0,240,244,209,54,104,162,9,0,241,244,182,183,65,41,7,0,243,244,111,251,149,53,11,0,244,116,224,85,55,171,6,0,245,116,156,94,25,84,7,0,245,116,156,94,114,84,7,0,246,116,173,150,60,152,7,0,247,244,100,34,22,91,7,0,248,116,113,143,29,120,7,0,248,244,211,252,193,100,10,0,248,244,211,252,89,103,10,0,250,116,102,209,0,64,11,0,250,116,102,209,43,64,11,0,4,117,208,118,32,7,10,0,4,117,208,118,70,7,10,0,6,245,153,65,27,176,10,0,8,245,44,221,151,186,7,0,9,245,34,202,96,39,6,0,9,245,34,202,161,39,6,0,9,117,30,182,24,216,7,0,11,117,78,103,248,5,7,0,11,245,76,172,134,19,7,0,11,117,2,146,246,42,7,0,12,245,83,219,216,67,6,0,13,245,224,224,114,173,10,0,14,245,108,175,20,170,10,0,14,245,108,175,10,173,10,0,15,245,74,210,143,177,7,0,17,117,48,149,22,91,7,0,21,117,124,1,139,1,6,0,21,117,60,207,176,68,7,0,25,245,130,218,54,131,6,0,25,245,7,105,135,2,9,0,25,245,7,105,47,3,9,0,29,245,200,6,58,212,8,0,29,245,200,6,201,212,8,0,30,245,13,208,161,110,10,0,30,245,13,208,2,112,10,0,30,117,31,7,130,23,11,0,31,117,152,210,233,142,10,0,32,245,254,166,195,78,8,0,32,245,254,166,226,78,8,0,33,245,244,205,16,183,8,0,33,245,244,205,251,191,8,0,33,245,244,205,239,200,8,0,33,117,80,18,94,212,10,0,34,117,76,231,11,244,5,0,37,117,251,3,206,214,6,0,37,117,60,56,166,137,10,0,38,117,229,12,134,19,7,0,38,117,158,13,64,47,7,0,41,245,178,180,189,109,7,0,42,117,234,222,15,102,6,0,46,117,53,12,145,12,8,0,48,245,98,51,12,99,7,0,50,245,157,167,23,27,7,0,52,245,73,55,148,24,6,0,52,245,227,57,134,19,7,0,55,117,85,218,244,23,11,0,56,245,182,201,163,57,7,0,56,117,247,33,12,99,7,0,58,245,208,195,16,183,8,0,58,245,208,195,251,191,8,0,58,245,208,195,239,200,8,0,59,117,187,129,2,251,6,0,59,117,204,197,163,57,7,0,59,245,201,148,116,72,7,0,60,117,241,231,34,172,6,0,60,245,207,41,4,52,10,0,62,245,254,32,125,18,9,0,62,245,254,32,34,19,9,0,64,245,146,22,207,14,9,0,64,245,146,22,54,15,9,0,65,117,242,209,103,48,7,0,65,117,104,43,165,224,8,0,65,117,104,43,86,225,8,0,67,245,162,27,161,77,7,0,70,117,144,86,101,64,7,0,72,245,55,127,4,52,10,0,74,117,245,9,122,81,6,0,74,117,245,9,160,79,8,0,74,245,10,131,86,56,9,0,74,245,10,131,9,57,9,0,75,117,59,240,65,41,7,0,77,245,131,68,9,84,9,0,77,245,131,68,62,84,9,0,77,245,52,1,159,56,11,0,79,245,218,107,102,15,7,0,79,117,22,71,75,112,7,0,81,117,99,158,51,3,6,0,85,245,180,214,29,108,9,0,85,245,180,214,52,108,9,0,86,245,245,80,118,99,11,0,86,117,60,51,23,131,11,0,88,245,160,207,179,169,10,0,90,245,178,229,66,3,7,0,90,117,223,47,212,126,11,0,91,245,172,195,245,48,6,0,91,117,213,159,97,103,7,0,92,117,98,0,229,119,8,0,92,245,151,253,167,242,9,0,93,245,88,165,16,183,8,0,93,245,88,165,251,191,8,0,93,245,88,165,239,200,8,0,94,117,177,59,29,123,6,0,94,117,177,59,147,110,7,0,96,245,78,104,206,17,6,0,96,245,78,104,91,131,7,0,97,117,98,171,4,52,10,0,98,117,222,150,131,211,5,0,98,245,142,172,47,43,6,0,98,245,232,127,23,27,7,0,101,245,246,121,113,159,6,0,103,245,175,158,102,214,8,0,103,245,175,158,14,218,8,0,105,117,218,203,194,138,7,0,108,117,21,91,16,183,8,0,108,117,21,91,251,191,8,0,108,117,21,91,239,200,8,0,108,245,42,216,232,254,10,0,110,245,37,215,107,226,9,0,110,245,37,215,251,226,9,0,111,245,118,87,66,3,7,0,112,245,148,30,75,112,7,0,113,245,201,71,135,44,7,0,113,117,146,115,29,120,7,0,113,117,33,90,229,196,9,0,113,117,33,90,252,196,9,0,117,245,13,86,72,236,6,0,121,245,71,109,0,55,7,0,121,245,71,109,163,57,7,0,121,117,171,58,70,12,10,0,121,117,171,58,104,12,10,0,121,117,171,58,135,12,10,0,122,245,5,90,194,138,7,0,123,117,245,37,238,20,11,0,124,245,3,243,6,3,11,0,125,117,188,55,135,61,7,0,128,245,55,176,134,19,7,0,131,117,76,117,107,226,9,0,131,117,76,117,251,226,9,0,133,117,84,151,65,41,7,0,133,117,219,20,161,77,7,0,135,245,245,129,145,114,7,0,136,245,153,79,194,138,7,0,138,245,127,84,0,55,7,0,138,245,127,84,163,57,7,0,140,117,17,126,161,77,7,0,141,117,53,28,225,255,7,0,141,117,53,28,27,0,8,0,141,117,53,28,95,0,8,0,141,117,53,28,164,0,8,0,142,117,246,217,23,27,7,0,142,117,230,32,255,151,7,0,142,117,230,32,15,64,10,0,142,117,230,32,37,64,10,0,144,117,127,12,213,15,9,0,144,117,4,178,116,219,9,0,144,117,4,178,137,219,9,0,144,117,4,178,162,219,9,0,146,245,134,193,240,57,9,0,146,245,134,193,1,58,9,0,150,245,169,151,62,216,6,0,150,245,254,252,63,79,10,0,150,245,254,252,138,79,10,0,150,245,254,252,214,79,10,0,152,245,96,237,12,99,7,0,152,117,118,14,52,87,10,0,152,117,118,14,117,87,10,0,154,117,114,148,191,86,7,0,154,117,158,168,87,69,9,0,154,117,158,168,181,69,9,0,157,117,94,122,139,14,10,0,157,117,94,122,50,15,10,0,158,245,204,85,243,150,6,0,160,245,22,21,76,23,8,0,164,117,222,87,3,191,9,0,164,117,222,87,78,191,9,0,165,117,109,151,247,247,6,0,166,117,100,27,64,70,7,0,166,117,252,105,38,31,9,0,166,117,252,105,66,31,9,0,168,245,247,89,209,19,10,0,172,245,194,159,130,249,6,0,172,245,118,61,193,100,10,0,172,245,118,61,89,103,10,0,173,117,106,219,160,79,8,0,173,117,107,109,40,100,8,0,176,245,184,117,214,50,11,0,181,117,215,227,144,100,8,0,181,117,42,254,63,23,11,0,184,245,39,160,219,238,8,0,184,245,39,160,39,240,8,0,184,245,39,160,117,241,8,0,185,117,226,104,134,19,7,0,185,117,21,85,40,148,10,0,186,117,116,120,16,183,8,0,186,117,116,120,251,191,8,0,186,117,116,120,239,200,8,0,187,245,250,137,254,45,6,0,187,245,250,137,55,108,7,0,189,245,171,11,52,78,6,0,195,117,206,192,87,242,6,0,197,245,159,124,75,247,8,0,197,245,159,124,171,247,8,0,198,117,30,118,193,100,10,0,198,117,30,118,89,103,10,0,199,117,179,55,4,52,10,0,204,117,91,21,110,246,5,0,204,245,174,29,92,9,8,0,207,117,191,191,49,184,10,0,209,117,120,79,96,144,11,0,210,245,22,50,240,237,5,0,210,117,160,219,56,186,7,0,212,245,47,93,176,147,11,0,216,117,46,245,116,72,7,0,217,245,12,98,146,178,7,0,222,117,94,69,134,19,7,0,227,245,6,148,222,14,7,0,229,117,101,20,20,30,10,0,229,117,101,20,115,30,10,0,229,117,101,20,207,30,10,0,230,117,197,39,58,212,8,0,230,117,197,39,201,212,8,0,236,245,25,187,163,66,7,0,236,117,248,199,100,92,7,0,237,245,191,85,16,183,8,0,237,245,191,85,251,191,8,0,237,245,191,85,239,200,8,0,237,245,65,202,21,71,9,0,237,245,65,202,100,72,9,0,237,245,65,202,181,73,9,0,237,245,65,202,11,75,9,0,237,245,118,126,185,62,10,0,237,245,118,126,211,62,10,0,237,245,118,126,236,62,10,0,239,245,31,171,63,240,5,0,239,117,183,131,32,107,7,0,239,117,183,131,130,107,7,0,243,245,78,139,73,38,7,0,243,117,229,114,194,138,7,0,247,245,0,44,201,251,6,0,249,245,182,114,60,152,7,0,250,245,40,129,32,20,9,0,250,245,40,129,179,20,9,0,253,117,250,55,47,13,7,0,1,118,121,134,97,103,7,0,1,246,239,211,145,114,7,0,2,246,140,125,215,124,6,0,2,118,5,199,123,251,10,0,3,118,215,22,95,180,6,0,7,246,175,236,194,138,7,0,8,246,246,33,170,91,7,0,9,246,254,110,207,14,9,0,9,246,254,110,54,15,9,0,9,246,119,101,22,136,11,0,10,246,254,193,12,99,7,0,11,246,18,75,117,251,6,0,13,246,75,203,56,238,7,0,13,118,39,189,132,21,9,0,13,118,39,189,157,23,9,0,13,246,39,189,186,53,9,0,13,246,39,189,77,54,9,0,16,246,116,200,16,183,8,0,16,246,116,200,251,191,8,0,16,246,116,200,239,200,8,0,16,118,186,225,60,189,9,0,16,118,186,225,90,189,9,0,17,246,97,191,163,57,7,0,17,246,97,191,186,26,9,0,17,246,97,191,120,27,9,0,17,246,97,191,48,28,9,0,18,246,203,142,29,120,7,0,18,246,32,150,2,175,11,0,21,246,112,109,72,102,9,0,21,246,112,109,254,102,9,0,26,246,205,184,209,18,7,0,29,246,179,151,140,16,11,0,32,246,128,94,126,161,8,0,33,118,120,75,218,93,7,0,34,246,167,196,132,21,9,0,34,246,167,196,157,23,9,0,37,246,164,112,134,19,7,0,39,118,228,172,116,72,7,0,39,246,24,175,236,101,9,0,39,246,24,175,3,102,9,0,43,118,100,173,23,27,7,0,43,246,116,112,16,183,8,0,43,246,116,112,251,191,8,0,43,246,116,112,239,200,8,0,44,118,169,143,12,99,7,0,44,118,72,48,194,138,7,0,44,118,60,166,16,183,8,0,44,118,60,166,251,191,8,0,44,118,60,166,239,200,8,0,52,118,176,55,101,225,6,0,53,246,95,195,145,114,7,0,55,118,72,235,130,47,7,0,59,246,106,148,90,104,6,0,59,118,255,52,182,239,10,0,60,118,107,137,38,133,6,0,64,118,220,49,107,10,7,0,65,118,197,79,163,57,7,0,65,118,197,79,219,236,7,0,67,246,211,227,247,39,11,0,70,246,226,195,164,142,10,0,71,118,74,136,194,138,7,0,72,118,83,55,75,148,7,0,72,118,83,55,160,161,7,0,73,246,172,6,101,73,8,0,74,246,60,129,98,190,6,0,75,246,242,112,212,243,6,0,75,118,252,162,204,157,10,0,79,246,153,79,218,93,7,0,79,118,243,1,9,86,10,0,79,118,243,1,44,86,10,0,79,118,35,25,161,110,10,0,79,118,35,25,2,112,10,0,81,246,104,188,28,217,6,0,81,118,45,108,207,146,11,0,82,246,174,250,101,137,6,0,83,246,16,47,29,120,7,0,84,118,166,174,5,76,7,0,85,246,22,236,23,27,7,0,86,118,132,59,116,198,6,0,87,246,7,3,4,52,10,0,92,246,47,7,215,79,6,0,92,246,152,157,23,27,7,0,96,118,183,60,60,77,10,0,96,118,183,60,232,77,10,0,97,246,76,157,179,140,6,0,97,246,103,44,80,174,6,0,98,246,226,217,228,135,10,0,100,118,167,195,142,133,9,0,100,118,167,195,182,133,9,0,100,118,167,195,206,133,9,0,102,246,251,60,194,228,7,0,104,118,190,36,134,19,7,0,105,246,92,133,12,99,7,0,107,118,61,173,36,231,10,0,112,246,191,126,145,114,7,0,112,246,165,122,217,9,11,0,112,246,165,122,39,10,11,0,115,246,145,199,161,110,10,0,115,246,145,199,2,112,10,0,116,118,153,38,254,26,6,0,118,118,146,182,156,255,5,0,118,118,151,159,16,183,8,0,118,118,151,159,251,191,8,0,118,118,151,159,239,200,8,0,121,118,120,236,23,27,7,0,121,118,246,117,16,37,7,0,122,118,148,42,167,242,9,0,124,246,235,19,188,0,11,0,126,118,253,225,163,57,7,0,126,118,253,225,177,105,7,0,127,246,29,182,102,15,7,0,127,246,228,228,161,77,7,0,127,118,49,216,29,120,7,0,128,246,189,57,145,12,8,0,128,118,195,239,163,160,11,0,128,118,195,239,194,160,11,0,130,118,32,224,152,63,7,0,132,246,135,219,29,120,7,0,136,246,133,67,20,8,9,0,136,246,133,67,247,8,9,0,136,246,133,67,210,9,9,0,137,246,244,223,97,208,7,0,139,118,247,19,50,12,6,0,142,118,234,2,56,13,6,0,142,118,77,188,64,230,7,0,143,118,198,129,85,29,10,0,144,246,123,123,12,99,7,0,147,246,69,24,96,221,6,0,147,246,69,24,0,132,9,0,148,118,102,6,129,13,11,0,148,118,102,6,201,13,11,0,149,246,37,136,145,114,7,0,151,118,141,21,102,214,8,0,151,118,141,21,14,218,8,0,153,118,207,229,209,18,7,0,155,118,229,42,253,59,10,0,155,118,229,42,144,60,10,0,155,118,229,42,39,61,10,0,157,246,73,72,34,208,10,0,160,246,46,183,163,88,10,0,160,246,46,183,83,89,10,0,162,118,151,122,23,27,7,0,163,118,87,62,23,27,7,0,166,246,130,67,132,190,10,0,167,246,12,97,112,152,11,0,168,246,163,37,77,135,10,0,175,246,127,177,235,9,6,0,175,246,118,136,107,226,9,0,175,246,118,136,251,226,9,0,175,246,3,162,27,141,10,0,175,246,3,162,56,141,10,0,179,118,61,217,39,47,9,0,179,118,61,217,54,48,9,0,180,246,249,43,111,4,9,0,180,246,249,43,41,6,9,0,184,118,22,44,43,38,7,0,185,118,124,240,154,105,6,0,185,118,79,22,12,99,7,0,187,118,99,200,226,11,7,0,191,118,39,98,16,183,8,0,191,118,39,98,251,191,8,0,191,118,39,98,239,200,8,0,192,246,65,203,173,250,8,0,192,246,65,203,205,250,8,0,196,246,0,70,29,120,7,0,197,246,51,173,0,55,7,0,197,246,51,173,163,57,7,0,197,118,79,106,127,97,11,0,202,246,217,95,164,16,9,0,202,246,217,95,141,17,9,0,202,118,252,134,139,171,11,0,203,246,187,158,208,164,8,0,209,118,73,31,145,114,7,0,212,246,70,82,78,164,11,0,213,118,105,202,116,72,7,0,213,246,43,118,16,183,8,0,213,246,43,118,251,191,8,0,213,246,43,118,239,200,8,0,213,118,220,97,216,19,11,0,219,118,228,160,247,247,5,0,220,246,35,6,202,175,10,0,224,118,246,133,16,183,8,0,224,118,246,133,251,191,8,0,224,118,246,133,239,200,8,0,224,246,108,9,45,226,8,0,224,246,108,9,130,231,8,0,224,118,26,238,84,228,10,0,229,118,201,55,55,6,11,0,233,246,100,234,45,226,8,0,233,246,100,234,130,231,8,0,237,246,203,91,45,226,8,0,237,246,203,91,130,231,8,0,237,246,24,192,4,52,10,0,238,118,75,181,23,27,7,0,238,118,152,199,125,67,10,0,238,118,152,199,69,68,10,0,239,118,130,164,24,242,6,0,241,246,212,0,135,44,7,0,243,118,70,172,106,162,11,0,247,246,150,90,67,72,6,0,249,246,43,10,121,149,6,0,252,246,10,201,53,44,6,0,252,118,41,141,56,238,7,0,254,246,185,37,20,178,11,0,1,247,170,150,61,53,6,0,2,119,34,172,83,126,8,0,2,119,34,172,214,127,8,0,2,119,34,172,65,128,8,0,2,119,34,172,4,129,8,0,2,119,34,172,151,129,8,0,2,119,34,172,228,129,8,0,3,119,210,158,123,156,10,0,3,119,210,158,175,181,10,0,4,119,71,230,194,138,7,0,5,119,227,218,87,242,6,0,5,119,80,237,192,2,7,0,11,119,232,149,167,242,9,0,11,119,30,118,205,251,10,0,12,247,150,75,76,187,6,0,14,119,200,33,135,44,7,0,19,119,6,102,159,150,10,0,22,247,50,234,21,138,7,0,22,247,31,71,209,19,10,0,23,247,34,65,45,33,9,0,23,247,34,65,120,33,9,0,28,119,16,181,23,27,7,0,29,247,126,207,16,37,7,0,37,119,49,135,2,175,11,0,39,119,175,15,139,254,6,0,44,247,65,28,117,172,7,0,44,247,101,24,145,12,8,0,45,247,114,156,77,252,6,0,45,119,46,202,77,11,7,0,45,119,171,15,65,76,7,0,45,119,47,10,194,138,7,0,47,119,144,234,116,72,7,0,49,119,17,126,214,216,6,0,49,119,17,126,58,75,7,0,53,119,141,32,6,249,9,0,53,119,141,32,105,249,9,0,53,119,141,32,201,249,9,0,53,119,115,112,34,52,11,0,54,247,53,178,194,138,7,0,58,119,187,148,239,101,6,0,59,119,165,92,155,33,6,0,62,247,121,249,69,151,7,0,62,119,239,124,167,241,7,0,62,119,239,124,219,241,7,0,62,119,239,124,6,242,7,0,62,119,239,124,56,242,7,0,62,119,239,124,92,250,9,0,62,119,239,124,116,250,9,0,65,247,65,155,160,79,8,0,67,247,129,193,163,88,10,0,67,247,129,193,83,89,10,0,70,247,195,144,117,51,7,0,70,247,195,144,111,53,7,0,70,247,200,87,60,152,7,0,70,247,200,87,128,112,8,0,72,119,152,194,251,33,9,0,72,119,152,194,40,34,9,0,74,119,41,101,194,170,8,0,74,119,41,101,243,170,8,0,74,119,41,101,48,171,8,0,76,119,33,36,23,27,7,0,76,247,234,101,194,138,7,0,76,247,157,219,16,183,8,0,76,247,157,219,251,191,8,0,76,247,157,219,239,200,8,0,79,119,167,194,61,39,7,0,79,247,8,143,193,100,10,0,79,247,8,143,89,103,10,0,81,247,13,142,16,183,8,0,81,247,13,142,251,191,8,0,81,247,13,142,239,200,8,0,82,247,1,90,161,95,6,0,82,247,111,147,39,35,7,0,83,119,148,64,130,47,7,0,84,119,200,31,12,99,7,0,84,119,66,13,204,181,9,0,84,119,66,13,224,182,9,0,85,247,143,204,213,15,9,0,85,247,14,68,255,142,10,0,87,119,121,142,41,254,6,0,87,119,145,124,55,108,7,0,87,247,248,113,4,52,10,0,88,119,61,117,92,5,6,0,88,119,65,238,4,52,10,0,89,119,176,102,23,27,7,0,91,247,204,4,60,178,7,0,91,247,204,4,120,185,7,0,91,119,138,170,217,238,9,0,91,119,138,170,174,239,9,0,93,119,222,150,29,120,7,0,94,247,134,75,65,11,9,0,94,247,134,75,92,11,9,0,94,247,134,75,127,11,9,0,95,119,66,108,161,62,6,0,97,119,156,19,65,207,10,0,99,119,66,70,19,165,11,0,100,119,34,170,121,195,6,0,100,247,192,149,20,8,9,0,100,247,192,149,247,8,9,0,100,247,192,149,210,9,9,0,103,247,34,147,6,102,8,0,104,119,230,228,8,185,9,0,104,119,98,30,28,158,10,0,106,119,226,128,209,18,7,0,106,247,106,179,45,226,8,0,106,247,106,179,130,231,8,0,107,119,50,23,64,47,7,0,107,247,95,2,205,117,8,0,107,119,50,23,28,184,10,0,109,247,150,43,23,27,7,0,110,119,166,118,135,44,7,0,110,247,200,209,29,120,7,0,112,247,30,138,134,19,7,0,112,247,120,58,161,140,10,0,113,247,140,206,4,52,10,0,115,247,40,11,73,82,7,0,115,247,84,236,68,167,11,0,116,247,148,189,211,213,7,0,118,247,101,37,134,19,7,0,121,247,192,72,97,213,5,0,121,119,206,108,152,197,6,0,121,247,152,134,232,219,10,0,122,247,96,143,55,239,6,0,124,119,29,160,107,10,7,0,124,247,31,59,166,40,11,0,125,119,173,55,22,24,6,0,125,119,112,34,194,138,7,0,125,247,46,141,90,194,10,0,126,119,239,245,163,57,7,0,126,247,254,219,218,93,7,0,126,119,219,236,119,96,7,0,126,119,36,55,194,138,7,0,126,119,174,74,4,52,10,0,126,119,239,245,156,160,10,0,128,247,47,185,163,57,7,0,128,247,47,185,185,185,10,0,132,119,155,78,159,88,7,0,133,119,32,94,171,211,10,0,135,119,80,77,22,91,7,0,135,247,42,165,193,220,7,0,135,119,0,116,65,64,8,0,137,247,50,209,60,152,7,0,138,247,188,119,245,25,11,0,139,247,245,130,178,89,6,0,139,247,84,129,140,229,6,0,140,119,115,209,82,219,5,0,140,119,115,209,60,175,6,0,140,247,103,153,164,16,9,0,140,247,103,153,141,17,9,0,142,119,191,114,92,9,8,0,144,247,245,88,2,63,8,0,146,247,184,235,0,55,7,0,146,247,184,235,163,57,7,0,149,247,91,229,84,108,11,0,149,247,91,229,115,108,11,0,150,119,131,162,95,111,7,0,152,119,33,166,145,114,7,0,153,119,240,235,149,174,9,0,153,119,240,235,200,174,9,0,154,119,182,162,29,120,7,0,154,247,135,94,217,238,9,0,154,247,135,94,174,239,9,0,155,119,66,123,209,171,6,0,155,119,66,123,226,11,7,0,156,247,227,228,252,242,8,0,156,247,227,228,240,243,8,0,158,119,80,203,117,51,7,0,158,119,80,203,119,96,7,0,158,247,76,158,145,114,7,0,161,119,248,72,64,47,7,0,164,119,30,150,12,139,10,0,166,247,222,121,234,157,10,0,166,247,222,121,114,166,10,0,167,119,7,36,29,120,7,0,169,119,63,216,116,72,7,0,171,119,166,153,207,113,6,0,171,247,230,188,60,152,7,0,171,247,230,188,190,122,8,0,171,247,230,188,83,123,8,0,171,247,230,188,244,123,8,0,171,247,230,188,210,33,10,0,174,119,88,12,148,213,8,0,174,119,88,12,183,213,8,0,180,119,157,168,18,146,11,0,182,247,23,195,51,104,7,0,183,247,218,114,29,120,7,0,188,247,236,160,156,253,6,0,190,119,24,209,22,91,7,0,190,119,19,97,119,96,7,0,191,119,33,58,208,212,6,0,191,119,95,234,216,51,9,0,191,119,95,234,175,52,9,0,195,247,172,44,155,171,10,0,197,247,111,167,22,122,11,0,198,247,220,192,134,19,7,0,203,247,60,19,16,183,8,0,203,247,60,19,251,191,8,0,203,247,60,19,239,200,8,0,206,119,61,129,120,158,6,0,207,119,36,203,23,27,7,0,207,247,250,59,165,224,8,0,207,247,250,59,86,225,8,0,208,247,159,126,194,138,7,0,209,247,240,127,100,168,6,0,210,119,200,107,47,43,7,0,210,247,10,251,70,252,8,0,213,247,141,149,222,14,7,0,214,119,177,179,71,250,6,0,215,119,143,33,186,99,9,0,215,119,143,33,211,99,9,0,215,119,143,33,2,100,9,0,215,119,21,20,26,179,11,0,216,119,88,75,23,27,7,0,217,247,253,16,211,248,5,0,217,247,126,245,255,70,10,0,217,247,126,245,87,71,10,0,217,247,126,245,174,71,10,0,218,247,252,70,97,42,11,0,219,119,185,229,145,12,8,0,220,247,14,100,21,216,6,0,221,119,32,211,127,153,10,0,223,247,136,189,194,138,7,0,223,119,144,234,255,70,10,0,223,119,144,234,87,71,10,0,223,119,144,234,174,71,10,0,224,119,207,172,0,55,7,0,224,119,207,172,163,57,7,0,228,247,8,156,141,252,6,0,228,119,189,25,11,14,7,0,228,247,151,43,139,14,10,0,228,247,151,43,50,15,10,0,229,247,252,60,45,226,8,0,229,247,252,60,130,231,8,0,231,119,150,213,194,138,7,0,233,247,254,202,60,152,7,0,233,247,254,202,128,112,8,0,237,119,195,79,169,84,9,0,237,119,195,79,192,84,9,0,237,119,195,79,213,84,9,0,238,247,30,239,0,55,7,0,240,119,0,67,31,225,10,0,241,119,159,191,47,43,7,0,243,247,189,139,69,220,5,0,243,119,12,154,23,27,7,0,243,247,5,204,135,149,7,0,243,247,5,204,214,99,10,0,243,247,5,204,22,100,10,0,243,247,5,204,82,100,10,0,245,119,218,185,96,8,7,0,245,247,234,13,39,47,9,0,245,247,234,13,54,48,9,0,248,119,229,147,148,254,5,0,249,119,155,10,168,130,11,0,250,119,183,197,23,27,7,0,251,247,81,9,135,61,7,0,253,247,147,190,255,151,7,0,254,119,214,218,219,46,10,0,254,247,183,106,132,65,11,0,0,120,170,196,95,134,7,0,3,248,122,244,246,62,7,0,3,248,236,89,23,26,8,0,5,120,231,242,16,183,8,0,5,120,231,242,251,191,8,0,5,120,231,242,239,200,8,0,7,248,35,151,174,247,6,0,8,120,234,109,96,122,8,0,8,120,35,101,3,191,9,0,8,120,35,101,78,191,9,0,9,120,77,1,163,170,7,0,9,120,231,233,25,134,9,0,9,120,231,233,147,134,9,0,9,120,231,233,7,135,9,0,9,120,231,233,174,135,9,0,9,120,231,233,71,136,9,0,9,248,5,158,115,161,9,0,9,248,5,158,104,162,9,0,11,248,105,91,250,40,10,0,11,248,105,91,16,41,10,0,13,120,140,150,83,126,8,0,15,120,135,52,29,14,6,0,15,120,135,52,73,130,7,0,16,248,171,149,235,126,11,0,17,120,4,126,135,43,7,0,17,120,216,146,252,230,7,0,17,120,216,146,42,231,7,0,17,120,4,126,201,74,10,0,17,120,4,126,222,74,10,0,20,248,154,193,134,19,7,0,20,120,224,213,68,155,8,0,20,120,224,213,168,155,8,0,20,120,224,213,14,156,8,0,20,248,144,26,253,38,9,0,20,248,144,26,207,40,9,0,21,120,53,11,60,152,7,0,21,120,53,11,60,159,7,0,21,120,53,11,226,164,7,0,23,120,176,42,146,140,8,0,24,120,176,70,23,27,7,0,24,120,3,236,80,136,10,0,24,120,3,236,114,136,10,0,25,248,131,78,135,61,7,0,26,120,107,38,134,19,7,0,26,120,140,198,170,91,7,0,26,120,78,68,136,184,10,0,35,120,70,172,134,19,7,0,35,248,205,80,176,68,7,0,35,248,185,25,16,183,8,0,35,248,185,25,251,191,8,0,35,248,185,25,239,200,8,0,36,120,36,5,8,185,9,0,37,248,79,250,240,66,9,0,37,248,79,250,119,67,9,0,38,248,182,192,128,217,5,0,38,120,165,62,19,154,11,0,40,120,41,88,168,152,9,0,41,248,197,20,82,181,6,0,41,248,175,101,134,170,11,0,42,120,109,176,134,19,7,0,42,120,150,88,167,135,11,0,43,248,8,46,21,71,9,0,43,248,8,46,100,72,9,0,43,248,8,46,181,73,9,0,43,248,8,46,11,75,9,0,45,120,164,50,55,168,11,0,46,120,227,206,161,110,10,0,46,120,227,206,2,112,10,0,46,120,252,212,126,199,10,0,48,248,123,193,218,93,7,0,48,248,25,7,134,63,11,0,50,120,110,249,139,177,11,0,51,120,4,165,2,26,6,0,53,120,87,209,4,52,10,0,54,120,78,95,235,200,6,0,56,120,6,126,104,219,6,0,58,120,159,130,168,152,9,0,59,248,119,163,45,10,10,0,59,248,119,163,71,10,10,0,62,120,88,12,210,16,6,0,63,248,36,203,45,226,8,0,63,248,36,203,130,231,8,0,68,248,93,243,248,225,6,0,68,248,93,243,253,49,7,0,70,248,228,7,206,214,6,0,70,120,47,137,4,52,10,0,72,120,196,30,194,138,7,0,75,248,65,100,213,15,9,0,77,248,49,65,138,164,10,0,79,120,3,254,4,52,10,0,80,248,21,56,206,78,6,0,83,120,193,6,213,84,8,0,83,120,177,55,85,88,11,0,86,248,12,161,184,209,5,0,87,120,157,151,156,177,6,0,88,120,0,103,4,44,7,0,88,248,187,5,29,120,7,0,88,120,55,216,60,152,7,0,88,120,55,216,50,110,10,0,88,120,55,216,112,110,10,0,88,120,236,139,120,141,11,0,90,248,177,179,20,81,9,0,90,248,177,179,41,81,9,0,92,120,83,229,245,13,8,0,92,248,195,139,125,67,10,0,92,248,195,139,69,68,10,0,93,120,192,94,60,20,6,0,93,120,141,178,145,18,7,0,93,120,141,178,6,61,11,0,97,120,230,86,17,128,6,0,103,248,109,97,6,121,6,0,103,120,174,107,65,41,7,0,103,120,174,107,201,42,7,0,104,120,244,235,234,138,10,0,105,120,147,56,79,238,5,0,106,248,41,192,163,223,10,0,111,248,56,26,4,52,10,0,113,120,107,55,193,100,10,0,113,120,107,55,89,103,10,0,118,248,243,187,16,183,8,0,118,248,243,187,251,191,8,0,118,248,243,187,239,200,8,0,119,120,40,222,29,120,7,0,119,120,131,182,231,66,8,0,120,248,254,56,229,109,7,0,122,248,100,11,194,138,7,0,123,248,133,217,23,27,7,0,124,120,106,105,194,9,6,0,124,120,106,105,240,141,6,0,125,248,85,63,134,19,7,0,130,120,138,204,29,120,7,0,136,120,130,34,92,9,8,0,140,248,192,93,12,199,7,0,140,248,200,42,212,68,8,0,140,120,233,119,23,205,10,0,140,120,233,119,61,205,10,0,142,120,188,180,86,56,9,0,142,120,188,180,9,57,9,0,145,248,228,209,142,253,5,0,145,120,14,125,116,72,7,0,145,120,31,254,60,152,7,0,146,248,130,55,221,218,9,0,146,248,130,55,249,218,9,0,146,248,130,55,18,219,9,0,146,248,155,147,4,52,10,0,146,120,163,55,172,130,10,0,155,120,216,48,33,157,6,0,155,248,98,199,132,21,9,0,155,248,98,199,157,23,9,0,157,120,95,40,246,62,7,0,157,248,64,75,45,226,8,0,157,248,64,75,130,231,8,0,160,248,62,11,4,52,10,0,162,248,11,4,116,72,7,0,164,248,88,25,107,218,5,0,164,248,71,249,29,120,7,0,165,120,117,226,209,58,8,0,168,120,15,100,45,226,8,0,168,120,15,100,130,231,8,0,169,248,57,189,65,41,7,0,170,120,2,55,134,19,7,0,172,120,15,16,206,214,6,0,173,120,25,83,186,53,9,0,173,120,25,83,77,54,9,0,174,248,27,20,210,60,11,0,175,248,51,228,159,122,11,0,177,120,52,90,240,248,6,0,177,120,23,250,45,113,7,0,177,120,112,53,221,98,9,0,177,120,112,53,47,99,9,0,177,120,226,93,4,52,10,0,182,248,125,174,135,2,9,0,182,248,125,174,47,3,9,0,183,248,47,128,21,138,7,0,183,248,47,128,208,106,8,0,183,120,134,3,163,88,10,0,183,120,134,3,83,89,10,0,184,248,45,44,23,27,7,0,184,248,227,214,29,120,7,0,184,120,66,97,4,52,10,0,186,248,195,252,176,68,7,0,186,120,153,219,58,210,10,0,187,248,163,84,103,48,7,0,188,120,77,34,146,76,9,0,188,120,77,34,63,77,9,0,189,120,63,136,249,214,7,0,189,120,63,136,233,14,11,0,190,248,102,123,144,126,6,0,190,248,102,123,148,179,7,0,191,120,96,138,92,142,11,0,193,120,155,218,73,197,6,0,200,120,196,64,19,23,6,0,200,120,152,236,92,9,8,0,200,248,86,35,58,35,9,0,200,248,86,35,31,36,9,0,200,248,222,8,44,180,9,0,200,248,222,8,66,180,9,0,202,120,23,14,139,254,6,0,202,248,62,1,153,17,11,0,204,248,60,76,116,72,7,0,204,120,180,61,16,42,8,0,206,120,87,20,195,163,10,0,206,120,170,84,190,2,11,0,215,120,184,148,122,48,6,0,215,120,184,148,121,92,6,0,215,120,184,148,242,102,6,0,215,120,184,148,163,86,8,0,216,120,197,154,132,21,9,0,216,120,197,154,157,23,9,0,220,120,240,89,60,152,7,0,220,120,240,89,9,16,10,0,221,120,60,1,145,114,7,0,225,120,97,98,155,209,5,0,226,120,137,166,23,27,7,0,228,120,16,16,138,171,7,0,228,248,197,112,215,187,9,0,228,248,197,112,239,187,9,0,229,248,109,164,184,209,5,0,230,248,34,78,58,210,10,0,232,248,111,81,21,71,9,0,232,248,111,81,100,72,9,0,232,248,111,81,181,73,9,0,232,248,111,81,11,75,9,0,232,248,110,106,246,243,9,0,232,248,110,106,59,245,9,0,232,248,110,106,131,246,9,0,237,120,202,171,81,126,9,0,237,120,202,171,166,126,9,0,243,248,75,45,6,249,9,0,243,248,75,45,105,249,9,0,243,248,75,45,201,249,9,0,245,248,85,74,37,82,7,0,247,248,104,5,209,19,10,0,249,120,214,10,145,114,7,0,249,120,205,20,10,147,10,0,252,120,3,163,193,148,11,0,255,120,139,176,16,183,8,0,255,120,139,176,251,191,8,0,255,120,139,176,239,200,8,0,0,249,162,150,106,149,10,0,1,249,138,111,218,93,7,0,1,249,197,194,252,169,7,0,2,121,211,56,163,88,10,0,2,121,211,56,83,89,10,0,7,249,49,167,145,114,7,0,8,249,249,115,227,246,6,0,8,249,49,80,139,163,9,0,8,249,49,80,241,163,9,0,8,249,204,102,203,123,11,0,10,121,142,46,249,144,6,0,10,121,142,46,27,56,8,0,10,121,142,46,67,56,8,0,10,121,142,46,109,56,8,0,11,121,200,28,134,19,7,0,12,121,78,102,135,44,7,0,12,121,161,19,73,82,7,0,12,249,254,64,144,67,8,0,12,121,111,212,60,0,10,0,12,121,111,212,89,0,10,0,12,121,111,212,111,0,10,0,12,121,111,212,145,0,10,0,14,249,180,44,16,183,8,0,14,249,180,44,251,191,8,0,14,249,180,44,239,200,8,0,16,249,112,45,145,114,7,0,19,121,231,193,28,179,9,0,19,121,231,193,56,179,9,0,26,121,136,71,97,16,7,0,27,121,5,51,100,92,7,0,28,121,98,226,28,86,11,0,29,121,120,67,51,104,7,0,30,249,34,196,12,99,7,0,37,249,14,213,23,27,7,0,39,249,108,102,62,223,9,0,39,249,108,102,64,224,9,0,39,249,108,102,93,225,9,0,41,249,97,124,29,120,7,0,45,249,187,142,135,61,7,0,56,121,6,78,128,190,9,0,56,121,6,78,172,190,9,0,59,121,193,165,6,66,8,0,62,249,75,217,19,90,7,0,63,249,39,55,45,226,5,0,63,121,203,227,72,102,9,0,63,121,203,227,254,102,9,0,64,249,233,214,62,52,6,0,64,249,161,104,86,56,9,0,64,249,161,104,9,57,9,0,65,249,249,216,203,254,5,0,66,249,17,34,32,20,9,0,66,249,17,34,179,20,9,0,67,249,181,148,23,156,6,0,67,249,254,67,16,183,8,0,67,249,254,67,251,191,8,0,67,249,254,67,239,200,8,0,70,249,181,148,161,77,7,0,70,249,181,148,141,162,8,0,78,121,28,0,150,244,5,0,78,121,172,245,206,35,7,0,78,121,172,245,9,36,7,0,80,249,179,148,10,206,6,0,80,121,149,68,218,93,7,0,81,121,9,215,87,171,9,0,81,121,9,215,120,171,9,0,83,121,163,92,38,47,6,0,84,249,8,241,244,224,5,0,86,121,118,186,134,19,7,0,88,249,215,65,0,55,7,0,88,249,215,65,163,57,7,0,89,121,155,209,102,214,8,0,89,121,155,209,14,218,8,0,91,121,82,107,222,158,11,0,94,249,33,176,240,222,6,0,97,121,179,107,47,13,7,0,98,121,48,154,164,16,9,0,98,121,48,154,141,17,9,0,99,249,211,183,134,19,7,0,100,249,149,218,131,222,8,0,100,249,149,218,38,223,8,0,100,249,149,218,206,223,8,0,101,121,40,65,45,226,8,0,101,121,40,65,130,231,8,0,104,121,225,99,132,255,6,0,104,121,225,99,63,96,7,0,105,249,51,232,12,99,7,0,107,121,12,123,0,51,6,0,108,249,209,38,116,72,7,0,108,249,118,62,218,93,7,0,109,121,103,113,29,103,6,0,109,249,58,89,98,237,6,0,110,249,52,242,6,10,11,0,111,249,21,37,4,52,10,0,112,121,128,43,0,178,11,0,114,121,178,205,71,250,6,0,115,121,181,5,176,68,7,0,116,121,223,200,161,103,11,0,117,121,160,148,146,76,9,0,117,121,160,148,63,77,9,0,118,121,68,82,101,166,11,0,119,121,48,22,21,71,9,0,119,121,48,22,100,72,9,0,119,121,48,22,181,73,9,0,119,121,48,22,11,75,9,0,122,121,254,57,80,83,7,0,122,121,65,0,204,140,10,0,130,249,62,242,67,203,6,0,133,121,109,148,176,68,7,0,133,249,126,125,12,99,7,0,133,249,126,125,29,120,7,0,134,249,148,254,0,55,7,0,134,249,148,254,163,57,7,0,137,249,79,100,119,96,7,0,138,121,85,156,134,19,7,0,140,121,2,146,23,27,7,0,140,249,17,79,250,124,10,0,140,249,17,79,34,125,10,0,141,249,157,27,163,57,7,0,141,249,157,27,185,185,10,0,142,121,172,192,22,91,7,0,144,249,10,0,19,1,7,0,144,249,10,0,90,173,11,0,147,121,186,109,40,87,6,0,148,121,122,58,145,114,7,0,148,249,133,23,29,120,7,0,150,121,67,100,117,51,7,0,157,121,11,174,24,192,7,0,161,121,17,48,16,187,7,0,161,249,206,73,63,1,8,0,162,121,112,183,206,214,6,0,162,121,62,165,29,120,7,0,163,121,156,238,194,138,7,0,168,249,144,38,4,52,10,0,172,121,214,80,72,180,6,0,172,121,54,230,178,163,11,0,173,121,45,58,134,19,7,0,174,249,197,194,103,217,5,0,174,121,89,194,219,0,7,0,174,249,253,7,56,91,8,0,175,121,81,190,209,49,11,0,177,249,144,95,100,92,7,0,179,249,203,63,92,9,8,0,182,121,202,3,253,49,7,0,183,121,87,139,4,52,10,0,183,249,107,90,13,244,10,0,184,121,186,148,219,238,8,0,184,121,186,148,39,240,8,0,184,121,186,148,117,241,8,0,185,121,198,76,0,55,7,0,185,121,7,199,161,77,7,0,185,121,198,76,177,105,7,0,186,121,204,204,149,40,7,0,186,249,70,115,105,52,11,0,190,249,23,129,4,52,10,0,191,249,43,206,166,129,10,0,192,249,101,27,89,5,7,0,195,121,248,197,161,110,10,0,195,121,248,197,2,112,10,0,198,121,76,127,101,64,7,0,199,249,26,205,92,9,8,0,199,121,89,180,250,87,10,0,199,249,120,136,193,100,10,0,199,249,120,136,89,103,10,0,199,249,197,172,6,242,10,0,201,121,219,89,248,56,6,0,201,249,99,103,23,27,7,0,203,249,74,210,252,242,8,0,203,249,74,210,240,243,8,0,203,121,81,190,201,56,11,0,206,249,139,156,45,226,8,0,206,249,139,156,130,231,8,0,208,249,206,127,32,107,7,0,208,249,206,127,130,107,7,0,208,121,175,160,194,185,9,0,208,121,175,160,96,186,9,0,209,121,165,70,83,126,8,0,210,121,68,78,153,113,10,0,210,121,68,78,27,114,10,0,212,121,54,98,109,109,6,0,212,249,179,61,135,44,7,0,212,121,56,127,12,99,7,0,212,121,22,79,201,106,7,0,213,121,68,31,183,18,6,0,213,249,73,113,251,24,11,0,213,249,73,113,36,32,11,0,214,249,240,4,60,103,6,0,217,249,183,198,91,69,6,0,217,249,54,66,193,171,11,0,219,249,117,208,166,26,6,0,222,121,57,174,5,76,7,0,223,121,185,39,218,93,7,0,223,121,27,220,252,147,10,0,223,121,27,220,175,148,10,0,224,121,38,141,57,163,8,0,224,121,38,141,119,163,8,0,225,121,50,229,246,243,9,0,225,121,50,229,59,245,9,0,225,121,50,229,131,246,9,0,227,249,70,222,203,132,6,0,228,249,54,62,169,107,6,0,229,249,142,119,20,8,9,0,229,249,142,119,247,8,9,0,230,249,208,34,184,32,11,0,231,121,222,215,160,79,8,0,232,249,246,231,23,27,7,0,233,121,230,230,61,39,7,0,234,121,180,228,199,32,6,0,235,121,204,140,169,239,5,0,235,249,24,45,26,7,7,0,235,249,5,126,60,152,7,0,235,249,5,126,65,169,7,0,236,249,73,84,86,69,11,0,237,249,197,194,117,51,7,0,237,249,197,194,111,53,7,0,242,249,67,121,96,1,7,0,242,249,237,74,161,110,10,0,242,249,237,74,2,112,10,0,245,249,19,172,30,145,8,0,245,249,19,172,20,170,10,0,248,249,171,102,135,86,11,0,251,249,128,159,188,62,6,0,251,121,221,132,168,152,9,0,253,249,197,194,16,183,8,0,253,249,197,194,251,191,8,0,253,249,197,194,239,200,8,0,1,250,184,96,135,2,9,0,1,250,184,96,47,3,9,0,2,122,205,8,120,22,11,0,3,122,106,173,67,6,7,0,5,122,7,83,161,207,10,0,7,250,246,67,89,5,7,0,9,250,69,50,71,175,10,0,9,250,22,82,131,40,11,0,15,250,60,63,194,138,7,0,16,250,216,224,119,96,7,0,16,250,147,190,70,80,9,0,17,250,197,194,145,173,6,0,17,250,197,194,181,173,6,0,18,122,96,218,9,81,6,0,18,122,90,183,194,177,9,0,19,250,71,11,23,27,7,0,19,122,33,240,65,41,7,0,20,250,122,88,201,251,6,0,24,122,182,191,77,169,6,0,26,122,249,3,155,191,10,0,27,122,117,24,3,183,6,0,27,250,23,108,55,108,7,0,30,250,95,226,23,27,7,0,30,122,65,240,127,212,10,0,31,122,158,230,193,100,10,0,31,122,158,230,89,103,10,0,32,250,4,173,173,74,8,0,36,250,138,249,65,41,7,0,38,122,236,30,145,18,7,0,38,250,242,252,60,152,7,0,38,250,242,252,87,211,9,0,41,122,27,208,106,136,11,0,43,122,63,128,230,140,6,0,43,122,198,34,0,55,7,0,43,122,143,157,101,118,10,0,43,122,143,157,178,118,10,0,45,250,165,8,233,67,8,0,45,250,35,4,45,226,8,0,45,250,35,4,130,231,8,0,48,250,101,1,52,219,5,0,48,250,84,231,100,92,7,0,51,122,62,161,80,108,6,0,51,250,15,237,56,238,7,0,51,250,128,242,16,183,8,0,51,250,128,242,251,191,8,0,51,250,128,242,239,200,8,0,51,250,155,211,102,214,8,0,51,250,155,211,14,218,8,0,52,122,171,203,60,152,7,0,52,122,179,23,206,95,8,0,52,122,171,203,87,211,9,0,52,122,154,123,77,229,10,0,53,250,89,161,161,110,10,0,53,250,89,161,2,112,10,0,56,122,125,143,45,226,8,0,56,122,125,143,130,231,8,0,57,250,47,148,165,224,8,0,57,250,47,148,86,225,8,0,59,250,57,146,223,184,7,0,59,122,52,211,16,183,8,0,59,122,52,211,251,191,8,0,59,122,52,211,239,200,8,0,60,122,5,111,0,55,7,0,61,122,88,22,111,4,9,0,61,122,88,22,41,6,9,0,63,122,149,96,45,226,8,0,63,122,149,96,130,231,8,0,65,250,161,133,240,217,5,0,65,250,161,133,60,152,7,0,70,122,7,20,89,5,7,0,70,250,207,239,43,188,7,0,71,122,248,254,137,97,6,0,73,122,128,222,58,35,9,0,73,122,128,222,31,36,9,0,75,122,194,86,116,72,7,0,75,250,129,20,19,90,7,0,76,250,46,16,65,41,7,0,76,122,143,217,135,149,7,0,76,122,160,126,43,138,11,0,83,250,213,89,45,226,8,0,83,250,213,89,130,231,8,0,83,250,248,131,51,204,10,0,85,250,255,146,193,100,10,0,85,250,255,146,89,103,10,0,87,122,119,247,253,38,9,0,87,122,119,247,207,40,9,0,89,122,128,122,178,89,6,0,89,122,31,190,219,238,8,0,89,122,31,190,39,240,8,0,89,122,31,190,117,241,8,0,90,250,95,178,255,74,7,0,91,122,61,129,247,80,7,0,91,122,182,231,246,243,9,0,91,122,182,231,59,245,9,0,91,122,182,231,131,246,9,0,92,122,65,19,130,249,6,0,94,250,41,56,160,0,7,0,95,250,192,93,231,137,6,0,96,250,163,126,31,221,5,0,96,122,209,168,152,63,7,0,96,122,80,195,12,99,7,0,99,250,116,27,4,52,10,0,100,250,225,182,2,237,6,0,102,122,149,145,29,14,6,0,102,122,149,145,73,130,7,0,103,250,116,27,39,133,7,0,103,250,116,27,193,100,10,0,103,250,116,27,89,103,10,0,104,122,239,84,29,120,7,0,104,250,19,57,96,121,9,0,104,250,19,57,118,121,9,0,105,122,55,87,75,40,7,0,105,250,192,88,234,189,10,0,106,122,242,142,77,135,10,0,107,250,183,218,117,51,7,0,107,250,183,218,111,53,7,0,111,250,177,90,194,138,7,0,111,122,107,75,37,145,9,0,111,122,107,75,62,145,9,0,111,122,117,179,31,248,10,0,111,122,208,126,238,40,11,0,113,250,197,194,125,50,6,0,114,250,156,133,117,172,7,0,114,122,138,240,201,161,11,0,115,250,207,114,191,86,7,0,117,122,60,166,213,84,8,0,120,250,103,86,180,236,5,0,120,250,103,86,162,238,5,0,120,250,103,86,169,106,6,0,121,250,208,37,48,245,6,0,122,250,70,66,201,38,10,0,122,250,70,66,237,38,10,0,123,250,121,135,65,41,7,0,123,250,26,107,75,105,11,0,124,250,222,110,156,253,6,0,124,250,46,5,29,120,7,0,124,122,187,1,168,152,9,0,125,250,17,208,74,239,9,0,128,122,40,119,246,243,9,0,128,122,40,119,59,245,9,0,128,122,40,119,131,246,9,0,130,250,194,253,135,44,7,0,132,122,81,190,148,213,8,0,132,122,81,190,183,213,8,0,138,250,17,199,23,27,7,0,138,250,136,179,195,163,10,0,139,250,65,209,118,151,7,0,139,250,65,209,85,159,7,0,140,122,102,244,40,14,9,0,140,122,102,244,96,14,9,0,141,250,197,253,106,231,10,0,145,250,241,40,12,99,7,0,148,250,160,138,194,138,7,0,148,250,160,138,75,247,8,0,148,250,160,138,171,247,8,0,155,250,197,194,149,235,9,0,155,250,197,194,165,235,9,0,155,122,36,206,234,59,11,0,156,250,156,121,161,77,7,0,159,122,152,120,21,71,9,0,159,122,152,120,100,72,9,0,159,122,152,120,181,73,9,0,159,122,152,120,11,75,9,0,159,122,144,226,58,125,10,0,162,250,192,238,19,30,6,0,163,122,189,121,49,36,6,0,163,122,45,113,21,71,9,0,163,122,45,113,100,72,9,0,163,122,45,113,181,73,9,0,163,122,45,113,11,75,9,0,163,122,69,29,59,187,9,0,163,122,69,29,91,187,9,0,164,122,171,29,21,138,7,0,164,122,171,29,69,164,7,0,164,122,171,29,226,164,7,0,165,122,94,128,168,152,9,0,165,250,102,90,175,195,10,0,166,250,248,86,186,53,9,0,166,250,248,86,77,54,9,0,171,250,248,12,104,67,7,0,171,250,240,218,235,73,8,0,171,250,60,166,218,166,10,0,172,122,97,128,127,124,6,0,172,250,88,129,233,176,7,0,172,122,157,160,180,168,10,0,172,250,12,228,225,185,10,0,173,250,247,54,175,88,9,0,173,250,247,54,254,88,9,0,173,250,247,54,92,89,9,0,173,250,247,54,173,89,9,0,175,122,88,225,23,27,7,0,178,250,218,127,182,13,7,0,179,122,216,173,193,246,5,0,180,122,66,62,65,198,10,0,181,122,188,148,222,213,5,0,181,250,124,225,233,4,7,0,187,122,3,163,175,29,9,0,187,122,3,163,88,30,9,0,188,250,54,164,23,27,7,0,189,122,39,94,13,8,7,0,191,250,196,193,91,84,10,0,193,122,228,28,134,19,7,0,194,122,4,126,134,19,7,0,194,250,126,233,23,27,7,0,198,122,244,101,12,223,10,0,200,122,197,121,60,152,7,0,200,122,197,121,244,128,9,0,200,122,243,5,204,181,9,0,200,122,243,5,224,182,9,0,201,250,71,112,145,114,7,0,202,250,62,134,240,66,9,0,202,250,62,134,119,67,9,0,206,250,18,246,116,72,7,0,208,250,160,199,224,167,7,0,208,250,160,199,161,251,10,0,212,250,44,213,188,213,9,0,212,250,44,213,58,214,9,0,212,250,44,213,197,214,9,0,215,122,28,130,219,46,10,0,215,122,28,130,169,48,11,0,216,250,205,87,29,14,6,0,216,250,205,87,73,130,7,0,217,122,192,64,31,6,7,0,217,250,197,194,194,138,7,0,218,122,232,180,176,78,6,0,218,122,232,180,107,10,7,0,221,250,151,62,210,94,6,0,221,122,61,41,136,1,7,0,221,250,155,187,45,226,8,0,221,250,155,187,130,231,8,0,222,122,110,143,176,68,7,0,224,250,71,35,23,27,7,0,229,250,174,55,194,138,7,0,230,122,79,235,16,37,7,0,230,250,59,235,63,79,10,0,230,250,59,235,138,79,10,0,230,250,59,235,214,79,10,0,231,250,208,101,125,67,10,0,231,250,208,101,69,68,10,0,233,122,177,94,58,75,7,0,234,122,4,127,58,242,5,0,236,250,43,207,173,131,7,0,236,250,119,159,135,149,7,0,237,250,56,162,0,55,7,0,237,122,20,139,29,120,7,0,238,250,40,129,240,66,9,0,238,250,40,129,119,67,9,0,238,250,126,22,9,199,9,0,238,250,126,22,49,199,9,0,239,122,198,255,0,55,7,0,239,122,198,255,163,57,7,0,244,122,65,85,16,168,6,0,244,122,211,41,135,61,7,0,244,250,195,219,194,138,7,0,244,122,119,151,225,135,8,0,245,122,239,53,75,148,7,0,246,122,61,84,174,37,6,0,246,122,73,129,32,20,9,0,246,122,73,129,179,20,9,0,249,250,29,128,100,48,6,0,250,122,182,200,184,209,5,0,250,122,78,228,60,152,7,0,250,122,78,228,226,164,7,0,0,251,89,54,252,46,7,0,1,251,193,180,219,0,7,0,6,123,154,104,92,9,8,0,9,123,53,234,2,183,7,0,9,251,218,168,145,12,8,0,9,123,53,234,139,101,8,0,10,251,186,202,220,65,7,0,10,251,62,60,81,126,9,0,10,251,62,60,166,126,9,0,10,251,62,60,53,127,9,0,12,123,228,249,4,1,6,0,12,251,4,106,29,120,7,0,12,251,3,85,102,214,8,0,12,251,3,85,14,218,8,0,12,251,182,29,4,52,10,0,17,251,56,89,240,248,6,0,18,251,100,154,145,114,7,0,20,251,60,78,209,19,10,0,21,123,150,213,76,254,5,0,21,123,27,102,9,101,11,0,22,251,21,65,207,14,9,0,22,251,21,65,54,15,9,0,27,251,205,154,93,46,7,0,28,123,166,91,98,237,6,0,30,251,219,145,194,138,7,0,30,251,188,127,195,163,10,0,32,251,197,194,98,212,6,0,34,123,75,71,16,183,8,0,34,123,75,71,251,191,8,0,34,123,75,71,239,200,8,0,35,123,206,229,193,220,7,0,35,251,197,194,57,108,8,0,35,251,197,194,130,108,8,0,35,251,197,194,203,108,8,0,35,251,197,194,21,109,8,0,35,251,197,194,95,109,8,0,35,251,197,194,166,109,8,0,35,251,197,194,236,109,8,0,37,123,102,240,181,111,7,0,38,251,243,135,102,214,8,0,38,251,243,135,14,218,8,0,39,123,130,67,175,80,7,0,41,251,34,91,178,87,11,0,41,123,194,211,228,110,11,0,42,251,232,207,231,236,5,0,44,123,221,244,22,43,6,0,44,123,7,22,240,66,9,0,44,123,7,22,119,67,9,0,46,251,6,83,252,195,6,0,46,123,34,57,168,152,9,0,52,123,39,56,161,77,7,0,52,123,163,215,194,185,9,0,52,123,163,215,96,186,9,0,53,123,252,188,174,198,7,0,55,123,129,171,187,17,11,0,58,123,115,158,169,234,5,0,58,251,110,237,107,10,7,0,59,251,63,12,111,204,7,0,60,251,184,59,23,27,7,0,61,123,42,225,29,120,7,0,61,123,92,203,152,252,8,0,61,251,255,243,245,56,11,0,64,251,129,143,45,226,8,0,64,251,129,143,130,231,8,0,64,123,118,10,90,176,10,0,66,123,133,93,161,77,7,0,66,123,214,58,19,90,7,0,66,251,173,32,16,183,8,0,66,251,173,32,251,191,8,0,66,251,173,32,239,200,8,0,66,123,137,86,139,14,10,0,66,123,137,86,50,15,10,0,66,123,57,138,215,70,11,0,67,123,83,108,194,138,7,0,68,123,208,197,97,83,8,0,69,251,234,24,139,254,6,0,72,123,190,189,0,55,7,0,72,123,190,189,163,57,7,0,72,123,200,58,12,99,7,0,72,251,253,93,147,189,7,0,73,251,252,47,118,151,7,0,73,251,252,47,85,159,7,0,76,251,171,189,158,99,11,0,77,123,184,215,16,183,8,0,77,123,184,215,251,191,8,0,77,123,184,215,239,200,8,0,79,123,236,20,15,143,11,0,79,123,236,20,60,146,11,0,81,123,127,29,195,163,10,0,82,123,67,168,135,149,7,0,82,123,67,168,8,188,7,0,84,123,224,186,253,59,10,0,84,123,224,186,144,60,10,0,84,123,224,186,39,61,10,0,85,251,249,145,195,125,6,0,86,123,243,249,86,182,11,0,87,123,252,12,135,44,7,0,88,123,190,142,16,183,8,0,88,123,190,142,251,191,8,0,88,123,190,142,239,200,8,0,89,123,32,67,167,93,9,0,89,123,32,67,189,93,9,0,94,251,222,58,4,52,10,0,97,123,62,72,38,177,10,0,98,123,176,29,29,15,11,0,101,123,239,71,7,9,6,0,102,251,38,247,16,183,8,0,102,251,38,247,251,191,8,0,102,251,38,247,239,200,8,0,103,123,93,94,4,52,10,0,104,251,59,27,134,19,7,0,104,123,244,178,134,19,7,0,104,251,246,252,31,192,10,0,105,123,246,163,47,188,6,0,106,251,177,224,158,196,7,0,106,123,67,47,192,240,10,0,107,123,154,233,129,15,6,0,107,123,137,201,253,49,7,0,107,251,126,48,16,183,8,0,107,251,126,48,251,191,8,0,107,251,126,48,239,200,8,0,108,123,255,12,179,212,9,0,108,123,255,12,10,213,9,0,108,123,104,213,217,238,9,0,108,123,104,213,174,239,9,0,109,123,208,240,26,7,7,0,110,251,108,243,95,49,11,0,112,123,225,36,155,159,6,0,112,251,228,234,164,238,6,0,115,251,131,85,180,28,6,0,115,251,74,100,126,167,6,0,116,251,144,86,177,201,6,0,120,251,52,128,234,97,6,0,120,123,177,29,59,12,7,0,121,123,179,239,254,133,6,0,121,123,154,228,34,72,7,0,123,251,110,1,188,71,7,0,123,123,28,200,72,102,9,0,123,123,28,200,254,102,9,0,124,123,243,42,4,52,10,0,130,123,129,137,94,248,6,0,130,123,198,17,213,84,8,0,131,123,114,27,196,153,10,0,132,123,103,51,78,152,6,0,134,123,81,45,2,75,6,0,134,123,234,222,165,235,6,0,134,123,87,67,65,41,7,0,135,123,101,17,173,171,11,0,136,123,65,225,201,42,7,0,139,123,165,32,135,44,7,0,141,251,148,227,4,52,10,0,143,123,69,227,229,221,8,0,143,123,69,227,29,222,8,0,145,123,88,73,102,214,8,0,145,123,88,73,14,218,8,0,145,251,200,103,173,85,11,0,149,251,69,237,136,1,7,0,149,251,69,237,245,1,7,0,149,251,247,71,23,27,7,0,149,251,241,65,48,220,9,0,149,251,241,65,142,220,9,0,149,251,241,65,169,220,9,0,152,251,211,142,231,132,7,0,153,251,178,6,144,197,10,0,156,251,216,153,238,239,6,0,157,251,120,163,174,172,7,0,160,123,12,57,12,99,7,0,160,123,180,252,188,213,9,0,160,123,180,252,58,214,9,0,160,123,180,252,197,214,9,0,161,251,203,59,168,152,9,0,165,251,112,27,203,136,10,0,166,123,70,249,60,152,7,0,166,123,70,249,165,162,7,0,166,123,72,243,60,39,10,0,166,123,72,243,86,39,10,0,168,251,1,59,251,192,7,0,170,251,217,28,30,230,5,0,172,251,66,129,94,36,6,0,172,123,89,69,109,109,6,0,172,251,151,50,143,240,6,0,175,123,248,127,51,18,7,0,175,251,44,33,220,171,9,0,175,251,44,33,247,171,9,0,177,251,82,12,12,139,10,0,178,123,66,62,228,66,7,0,178,251,201,95,84,174,11,0,180,123,99,152,191,232,5,0,180,251,78,197,137,93,6,0,180,251,253,164,73,38,7,0,180,251,253,164,174,156,10,0,182,123,44,35,239,63,9,0,182,123,44,35,7,64,9,0,182,123,44,35,37,64,9,0,185,251,21,246,23,27,7,0,186,251,113,141,253,38,9,0,186,251,113,141,207,40,9,0,188,123,197,146,10,218,5,0,189,123,161,172,131,133,7,0,189,123,215,182,135,149,7,0,189,123,251,104,78,232,7,0,189,123,215,182,214,99,10,0,189,123,215,182,22,100,10,0,189,123,215,182,82,100,10,0,192,123,53,13,216,51,9,0,192,123,53,13,175,52,9,0,192,123,252,22,69,176,11,0,196,251,76,8,60,152,7,0,197,123,107,63,134,19,7,0,200,123,212,51,230,228,5,0,206,251,242,75,253,19,11,0,211,123,164,56,79,252,10,0,213,251,137,35,116,72,7,0,215,251,156,38,103,83,6,0,216,251,247,55,102,214,8,0,216,251,247,55,14,218,8,0,216,123,97,7,193,100,10,0,216,123,97,7,89,103,10,0,218,123,206,200,16,37,7,0,220,251,55,47,90,174,10,0,221,123,193,129,238,35,10,0,221,123,193,129,35,36,10,0,223,123,113,68,218,93,7,0,224,251,143,244,4,247,6,0,224,251,0,234,37,248,7,0,225,251,33,121,132,21,9,0,225,251,33,121,157,23,9,0,225,251,129,71,190,2,11,0,228,123,2,179,183,193,10,0,238,251,244,145,4,52,10,0,238,123,20,176,134,218,10,0,239,251,65,90,116,72,7,0,242,251,205,118,184,82,6,0,242,123,223,185,202,149,10,0,244,123,216,46,47,128,10,0,245,123,142,78,45,226,8,0,245,123,142,78,130,231,8,0,246,123,225,161,45,226,8,0,246,123,225,161,130,231,8,0,248,251,197,194,30,135,6,0,250,251,76,218,29,81,7,0,251,251,31,188,156,253,6,0,251,251,94,208,134,19,7,0,252,251,55,179,23,27,7,0,252,251,55,179,116,72,7,0,254,123,44,93,239,81,8,0,254,123,140,4,204,181,9,0,254,123,140,4,224,182,9,0,0,124,167,246,23,27,7,0,1,124,138,199,4,90,6,0,1,124,126,18,160,49,7,0,3,124,235,128,196,202,10,0,5,124,64,38,189,223,6,0,5,252,199,199,62,223,9,0,5,252,199,199,64,224,9,0,5,252,199,199,93,225,9,0,6,124,244,250,150,149,8,0,8,124,197,159,218,93,7,0,8,124,201,127,60,152,7,0,8,124,201,127,226,164,7,0,9,124,230,61,40,101,8,0,11,252,81,79,29,120,7,0,15,124,118,149,150,45,9,0,15,124,118,149,18,46,9,0,16,124,66,250,160,158,6,0,16,252,211,28,12,99,7,0,16,252,88,77,12,99,7,0,17,252,51,4,104,67,7,0,17,252,51,4,38,149,7,0,17,252,53,244,253,38,9,0,17,252,53,244,207,40,9,0,19,124,171,78,234,232,5,0,19,252,55,132,135,61,7,0,23,252,134,90,10,96,6,0,25,124,189,83,233,16,7,0,25,252,147,190,145,253,7,0,25,252,147,190,192,253,7,0,25,252,147,190,234,253,7,0,27,252,75,131,16,183,8,0,27,252,75,131,251,191,8,0,27,252,75,131,239,200,8,0,28,252,80,7,134,19,7,0,31,124,48,202,135,61,7,0,32,124,101,176,150,146,11,0,35,252,67,250,125,67,10,0,35,252,67,250,69,68,10,0,36,252,26,15,202,149,10,0,38,124,172,140,23,27,7,0,38,124,68,246,175,29,9,0,38,124,68,246,88,30,9,0,39,124,53,68,25,48,6,0,40,124,69,212,236,111,7,0,40,124,253,69,132,21,9,0,40,124,253,69,157,23,9,0,40,124,210,24,4,52,10,0,41,124,162,179,114,24,6,0,41,252,197,194,153,50,8,0,42,252,184,87,168,152,9,0,43,124,35,159,163,4,11,0,44,124,134,172,163,57,7,0,44,124,134,172,165,143,11,0,45,252,55,89,180,51,8,0,48,252,74,215,130,183,10,0,53,252,117,222,148,244,6,0,54,124,58,86,159,32,10,0,54,124,58,86,240,32,10,0,56,124,85,2,12,99,7,0,56,252,149,65,24,192,7,0,57,124,18,160,60,152,7,0,61,124,106,205,16,183,8,0,61,124,106,205,251,191,8,0,61,124,106,205,239,200,8,0,64,252,176,115,16,183,8,0,64,252,176,115,251,191,8,0,64,252,176,115,239,200,8,0,64,124,26,100,189,233,10,0,66,124,61,227,161,26,8,0,66,124,61,227,212,26,8,0,67,252,215,153,72,184,10,0,67,252,215,153,222,186,10,0,68,252,225,57,4,52,10,0,71,124,45,147,45,226,8,0,71,124,45,147,130,231,8,0,73,252,199,95,39,47,9,0,73,252,199,95,54,48,9,0,73,124,24,247,225,101,11,0,76,252,216,74,119,96,7,0,78,252,90,29,235,7,7,0,79,252,69,59,116,72,7,0,81,124,136,33,214,144,6,0,87,252,141,152,86,56,9,0,87,252,141,152,9,57,9,0,88,124,91,255,187,199,9,0,88,124,91,255,216,199,9,0,88,124,91,255,12,200,9,0,91,252,118,5,176,147,11,0,94,252,91,68,4,52,10,0,96,124,61,198,193,100,10,0,96,124,61,198,89,103,10,0,97,252,212,67,16,183,8,0,97,252,212,67,251,191,8,0,97,252,212,67,239,200,8,0,99,252,177,19,101,137,6,0,100,124,124,15,104,67,7,0,102,252,77,197,9,47,6,0,102,252,124,181,62,123,9,0,102,252,124,181,98,123,9,0,102,252,124,181,140,123,9,0,102,252,124,181,182,123,9,0,103,124,175,30,29,120,7,0,103,252,61,191,45,226,8,0,103,252,61,191,130,231,8,0,105,124,93,127,194,138,7,0,105,124,110,38,27,255,8,0,105,124,110,38,100,255,8,0,106,252,123,107,29,120,7,0,106,252,65,10,216,140,9,0,106,252,65,10,69,141,9,0,111,124,202,205,161,110,10,0,111,124,202,205,2,112,10,0,113,124,68,164,86,56,9,0,113,124,68,164,9,57,9,0,114,124,21,46,8,245,6,0,114,252,162,182,253,49,7,0,116,124,246,0,234,157,10,0,120,124,189,0,0,55,7,0,120,124,189,0,177,105,7,0,120,252,54,167,160,79,8,0,121,124,194,47,97,171,8,0,122,124,230,127,43,72,10,0,122,124,230,127,148,72,10,0,123,124,215,6,219,145,6,0,123,252,245,135,29,120,7,0,129,252,176,112,194,138,7,0,130,252,236,59,202,227,5,0,130,124,175,195,217,73,6,0,130,124,73,167,216,51,9,0,130,124,73,167,175,52,9,0,130,124,99,193,139,170,10,0,130,124,38,188,188,96,11,0,131,252,241,253,43,72,10,0,131,252,241,253,148,72,10,0,132,124,71,255,102,15,7,0,134,124,255,152,209,92,11,0,135,124,95,150,150,45,9,0,135,124,95,150,18,46,9,0,135,252,183,188,132,61,11,0,136,124,160,106,188,180,7,0,139,124,169,170,119,224,10,0,140,124,148,93,156,253,6,0,140,124,196,164,1,57,11,0,141,252,76,128,27,153,6,0,141,252,240,29,147,35,7,0,144,124,35,198,29,120,7,0,146,252,252,4,63,142,10,0,152,124,28,131,83,43,8,0,152,124,28,131,133,43,8,0,152,124,28,131,184,43,8,0,152,124,244,166,163,88,10,0,152,124,244,166,83,89,10,0,153,252,22,87,145,114,7,0,155,252,164,205,74,239,9,0,155,252,164,205,174,239,9,0,156,124,194,184,143,240,6,0,160,252,56,132,222,14,7,0,160,124,45,127,160,52,8,0,162,252,62,152,4,52,10,0,166,252,52,51,195,129,11,0,169,252,167,173,194,109,11,0,170,252,197,194,254,3,8,0,172,252,60,51,66,3,7,0,172,252,149,212,45,226,8,0,172,252,149,212,130,231,8,0,172,124,15,217,238,35,10,0,172,124,15,217,35,36,10,0,172,124,181,9,16,32,11,0,176,124,48,144,29,120,7,0,177,252,167,29,158,77,6,0,179,124,89,97,87,69,9,0,179,124,89,97,181,69,9,0,180,252,157,241,99,221,5,0,183,124,142,135,16,183,8,0,183,124,142,135,251,191,8,0,183,124,142,135,239,200,8,0,183,124,163,146,154,131,10,0,186,252,219,219,148,79,6,0,186,252,22,9,214,22,11,0,188,124,211,135,114,84,7,0,189,124,22,112,154,133,7,0,190,252,197,194,164,143,6,0,190,252,197,194,139,254,6,0,190,124,37,80,65,41,7,0,190,124,31,58,55,108,7,0,190,252,197,194,121,173,7,0,190,124,250,18,38,131,10,0,193,124,149,48,59,52,11,0,196,252,94,106,29,120,7,0,201,124,81,128,29,120,7,0,201,124,95,54,4,52,10,0,204,124,49,210,4,52,10,0,212,252,201,8,29,120,7,0,212,252,166,20,167,192,10,0,212,124,184,241,207,164,11,0,217,124,252,54,171,243,6,0,217,252,196,19,65,41,7,0,217,252,196,19,165,148,11,0,219,124,5,162,13,238,6,0,220,124,42,25,175,29,9,0,220,124,42,25,88,30,9,0,221,252,151,147,175,7,7,0,222,124,116,192,218,93,7,0,222,252,31,20,75,112,7,0,222,124,238,251,29,120,7,0,222,124,102,110,194,138,7,0,224,252,88,74,213,84,8,0,224,252,130,17,125,119,10,0,224,252,130,17,155,119,10,0,224,252,130,17,205,119,10,0,224,252,130,17,254,119,10,0,225,252,253,21,176,68,7,0,227,124,222,231,27,9,7,0,227,252,186,128,204,14,8,0,228,252,1,202,255,74,7,0,229,252,162,223,145,114,7,0,230,124,9,195,112,51,11,0,231,124,70,198,194,138,7,0,236,124,212,145,29,120,7,0,238,124,83,154,27,47,7,0,238,124,254,166,179,245,8,0,238,252,175,112,233,38,11,0,240,124,125,206,106,66,7,0,241,252,150,205,207,48,7,0,241,124,220,177,16,183,8,0,241,124,220,177,251,191,8,0,241,124,220,177,239,200,8,0,245,252,55,125,220,39,7,0,245,124,248,21,0,55,7,0,247,124,221,90,150,45,9,0,247,124,221,90,18,46,9,0,248,124,52,182,173,248,5,0,249,252,146,164,238,81,10,0,250,252,170,247,20,30,10,0,250,252,170,247,115,30,10,0,250,252,170,247,207,30,10,0,252,124,226,5,20,8,9,0,252,124,226,5,247,8,9,0,252,124,226,5,210,9,9,0,252,124,56,237,4,52,10,0,254,124,250,70,45,226,8,0,254,124,250,70,130,231,8,0,255,124,119,7,134,19,7,0,255,252,166,155,4,52,10,0,0,253,226,89,17,194,10,0,3,253,198,180,36,52,6,0,4,125,221,104,91,19,7,0,6,125,98,128,209,55,6,0,9,253,109,126,29,120,7,0,9,125,255,106,95,169,10,0,9,253,196,194,137,146,11,0,11,253,148,65,132,21,9,0,11,253,148,65,157,23,9,0,12,253,205,98,45,113,7,0,15,253,197,194,117,51,7,0,15,253,197,194,111,53,7,0,15,253,20,239,161,110,10,0,15,253,20,239,2,112,10,0,23,125,208,111,250,221,10,0,26,253,131,154,39,47,9,0,26,253,131,154,54,48,9,0,29,125,178,200,141,146,6,0,29,253,194,201,116,72,7,0,31,125,155,153,246,163,6,0,33,125,201,52,73,82,7,0,34,253,197,194,117,51,7,0,34,253,197,194,111,53,7,0,34,253,197,194,239,253,8,0,35,253,166,159,166,248,6,0,35,253,197,194,23,27,7,0,35,253,197,194,70,246,8,0,35,253,197,194,90,246,8,0,35,253,197,194,157,246,8,0,41,125,24,239,2,184,10,0,42,125,120,246,23,27,7,0,43,253,158,255,103,133,6,0,43,253,158,255,136,133,6,0,43,253,91,138,23,162,10,0,44,253,197,194,55,30,6,0,44,125,221,99,193,100,10,0,44,125,221,99,89,103,10,0,48,125,55,201,16,183,8,0,48,125,55,201,251,191,8,0,48,125,55,201,239,200,8,0,51,125,36,87,17,28,10,0,51,125,36,87,42,28,10,0,53,125,138,116,48,207,10,0,53,125,138,116,81,208,10,0,54,125,220,133,23,27,7,0,62,253,50,156,143,240,6,0,62,125,40,83,234,138,10,0,63,125,136,21,15,143,11,0,64,125,24,199,107,10,7,0,69,125,195,143,134,115,11,0,70,253,167,87,111,4,9,0,70,253,167,87,41,6,9,0,72,253,57,188,172,124,6,0,72,125,29,120,23,27,7,0,72,125,213,68,14,137,9,0,72,125,213,68,201,137,9,0,73,125,54,242,149,40,7,0,75,125,107,249,58,35,9,0,75,125,107,249,31,36,9,0,76,253,102,53,6,148,8,0,80,125,192,42,4,52,10,0,87,125,112,250,203,49,6,0,89,253,254,148,142,239,6,0,89,125,192,103,65,76,7,0,89,253,132,48,134,77,7,0,90,125,139,122,152,6,11,0,91,125,238,55,15,184,7,0,91,125,39,178,173,85,8,0,94,253,65,143,209,84,7,0,94,253,43,179,159,32,10,0,94,253,43,179,240,32,10,0,95,253,228,93,220,0,10,0,95,253,228,93,247,0,10,0,95,253,228,93,24,1,10,0,96,253,176,205,61,39,7,0,97,253,78,45,8,245,6,0,97,253,111,167,177,105,7,0,99,253,248,141,176,68,7,0,101,253,178,45,4,52,10,0,102,125,42,143,207,14,9,0,102,125,42,143,54,15,9,0,103,125,78,160,217,103,7,0,103,125,186,94,139,14,10,0,103,125,186,94,50,15,10,0,104,253,2,146,194,138,7,0,105,253,125,102,119,96,7,0,108,253,255,79,102,214,8,0,108,253,255,79,14,218,8,0,109,253,8,99,29,120,7,0,109,125,219,198,39,47,9,0,109,125,219,198,54,48,9,0,110,125,254,140,222,14,7,0,111,125,195,150,99,235,6,0,111,125,195,150,100,92,7,0,111,125,195,150,56,125,8,0,118,253,85,143,168,152,9,0,118,125,167,181,187,158,10,0,122,253,91,93,124,22,10,0,122,253,91,93,179,22,10,0,122,253,91,93,235,22,10,0,125,253,213,251,152,156,6,0,126,253,70,4,45,226,8,0,126,253,70,4,130,231,8,0,127,253,54,184,66,3,7,0,127,253,54,184,194,138,7,0,128,253,219,251,23,27,7,0,130,253,96,220,96,112,6,0,132,125,33,183,2,63,8,0,132,253,250,32,167,242,9,0,135,253,221,66,28,47,11,0,137,253,30,22,130,245,5,0,137,253,120,33,6,86,11,0,138,125,147,241,60,152,7,0,138,125,147,241,190,122,8,0,138,125,147,241,83,123,8,0,138,125,147,241,244,123,8,0,138,125,147,241,210,33,10,0,138,253,185,206,4,52,10,0,141,253,185,65,58,35,9,0,141,253,185,65,31,36,9,0,141,125,238,248,62,223,9,0,141,125,238,248,64,224,9,0,141,125,238,248,93,225,9,0,143,253,143,39,65,41,7,0,146,253,187,148,135,179,8,0,148,125,8,197,60,152,7,0,148,125,8,197,79,237,8,0,149,253,171,245,161,110,10,0,149,253,171,245,2,112,10,0,152,253,77,70,248,133,7,0,152,125,233,118,204,181,9,0,152,125,233,118,224,182,9,0,154,125,2,195,134,19,7,0,158,253,193,185,82,61,6,0,158,125,101,32,73,82,7,0,162,253,223,156,218,93,7,0,163,125,138,44,75,247,8,0,163,125,138,44,171,247,8,0,164,125,144,37,235,88,7,0,165,125,54,116,134,19,7,0,165,125,209,88,16,183,8,0,165,125,209,88,251,191,8,0,165,125,209,88,239,200,8,0,167,253,37,108,66,97,6,0,167,125,208,152,29,120,7,0,170,253,243,47,38,65,6,0,172,253,216,97,13,8,7,0,173,125,137,39,65,36,7,0,173,253,207,246,130,86,7,0,174,253,122,78,240,248,6,0,174,253,42,116,238,81,10,0,176,253,156,38,117,51,7,0,176,253,156,38,111,53,7,0,177,125,68,107,135,250,5,0,177,125,68,107,177,105,7,0,180,253,31,187,79,148,10,0,181,253,144,88,82,20,8,0,182,253,236,76,238,239,6,0,185,253,227,28,145,114,7,0,185,253,233,177,25,176,11,0,186,253,28,163,130,249,6,0,186,253,33,235,29,120,7,0,186,253,197,194,39,184,9,0,186,253,197,194,92,184,9,0,186,253,197,194,122,142,11,0,187,253,156,38,60,229,7,0,187,253,63,121,105,129,9,0,187,253,63,121,180,129,9,0,188,253,21,206,140,161,10,0,189,253,197,194,23,27,7,0,191,253,70,33,192,6,7,0,193,125,165,55,71,250,6,0,193,253,82,12,29,120,7,0,195,125,104,65,145,114,7,0,197,125,155,40,48,145,10,0,198,253,202,44,134,19,7,0,198,253,56,211,145,114,7,0,198,253,205,106,85,174,7,0,198,253,205,106,202,174,7,0,199,125,8,163,98,248,10,0,200,125,151,53,60,63,11,0,203,125,82,200,156,253,6,0,203,253,127,119,23,27,7,0,206,253,194,123,225,62,6,0,206,125,167,162,208,234,9,0,206,125,167,162,228,234,9,0,206,253,18,28,161,110,10,0,206,253,18,28,2,112,10,0,208,253,233,174,16,183,8,0,208,253,233,174,251,191,8,0,208,253,233,174,239,200,8,0,211,253,46,127,142,224,5,0,211,125,208,120,134,19,7,0,216,125,67,121,169,189,9,0,216,125,67,121,197,189,9,0,217,253,204,226,4,52,10,0,218,253,131,28,56,238,7,0,219,125,7,64,173,197,6,0,219,125,79,199,0,55,7,0,219,253,175,231,4,52,10,0,222,253,61,217,203,93,6,0,222,253,61,217,12,99,7,0,224,253,70,155,23,27,7,0,225,253,163,160,177,237,5,0,225,253,163,160,186,86,6,0,227,125,215,240,250,183,6,0,227,253,146,99,25,134,9,0,227,253,146,99,147,134,9,0,227,253,146,99,7,135,9,0,227,253,146,99,174,135,9,0,227,253,146,99,71,136,9,0,229,253,110,49,218,93,7,0,230,125,103,51,23,253,6,0,232,125,226,170,120,155,6,0,236,125,231,23,213,148,6,0,237,253,232,232,9,127,6,0,237,253,131,191,253,49,7,0,237,253,132,216,233,155,11,0,239,253,200,123,253,49,7,0,242,253,155,66,170,91,7,0,243,253,139,80,177,105,7,0,243,253,129,181,110,160,10,0,245,253,24,181,67,17,7,0,246,253,197,194,16,219,6,0,246,253,234,9,65,76,7,0,246,125,146,63,58,162,10,0,247,253,121,232,97,103,7,0,248,253,197,194,187,8,7,0,248,253,148,247,133,12,7,0,250,125,27,238,229,175,6,0,250,125,27,238,17,176,6,0,250,125,71,223,103,196,10,0,252,125,197,5,85,29,10,0,254,253,147,190,145,187,7,0,255,253,178,27,109,109,6,0,0,126,37,155,176,78,6,0,0,126,240,48,253,38,9,0,0,126,240,48,207,40,9,0,0,254,112,255,4,52,10,0,1,254,179,64,116,72,7,0,2,254,195,231,136,1,7,0,2,254,195,231,10,2,7,0,2,126,120,122,23,27,7,0,4,254,35,24,193,100,10,0,4,254,35,24,89,103,10,0,6,126,237,241,97,37,6,0,7,254,224,233,29,120,7,0,8,126,120,157,183,126,10,0,9,126,81,190,60,152,7,0,9,126,81,190,62,162,7,0,10,254,252,126,12,99,7,0,10,126,208,125,145,114,7,0,10,126,89,221,200,152,10,0,10,254,116,106,130,100,11,0,10,254,116,106,157,100,11,0,11,254,231,54,249,28,11,0,15,126,241,65,229,190,6,0,16,254,64,31,207,41,8,0,16,254,64,31,220,93,8,0,18,254,232,62,102,214,8,0,18,254,232,62,14,218,8,0,25,126,230,49,193,100,10,0,25,126,230,49,89,103,10,0,26,254,103,227,12,99,7,0,28,254,215,199,60,182,8,0,29,126,234,19,12,99,7,0,30,254,46,175,124,87,8,0,32,254,34,250,139,254,6,0,34,254,83,60,23,27,7,0,36,254,230,115,85,29,10,0,39,126,34,57,60,152,7,0,39,126,34,57,190,122,8,0,39,126,34,57,83,123,8,0,39,126,34,57,244,123,8,0,39,126,34,57,210,33,10,0,43,254,58,203,67,17,7,0,43,254,130,53,77,13,10,0,43,254,130,53,95,13,10,0,44,126,113,22,71,250,6,0,52,126,219,70,138,171,7,0,53,126,165,216,23,27,7,0,55,254,116,10,4,52,10,0,56,254,199,154,143,148,6,0,61,254,156,148,194,241,6,0,63,254,246,139,70,80,9,0,64,254,52,90,23,27,7,0,66,254,179,11,16,37,7,0,70,254,156,38,90,21,6,0,70,254,206,16,101,64,7,0,70,254,156,38,202,174,7,0,70,254,40,107,5,120,11,0,71,254,102,70,42,142,6,0,72,254,210,193,225,232,10,0,73,254,136,41,154,215,5,0,73,126,213,15,26,7,7,0,73,126,237,96,155,40,10,0,73,126,237,96,175,40,10,0,74,254,146,155,16,183,8,0,74,254,146,155,251,191,8,0,74,254,146,155,239,200,8,0,74,254,74,187,70,80,9,0,74,126,105,136,216,131,11,0,75,254,144,247,143,240,6,0,75,254,35,128,253,49,7,0,75,254,200,15,205,87,7,0,75,126,226,134,29,120,7,0,76,254,156,38,197,96,6,0,76,254,156,38,117,51,7,0,76,254,156,38,111,53,7,0,79,254,226,70,216,140,9,0,79,254,226,70,69,141,9,0,80,126,207,188,145,114,7,0,81,126,159,245,16,183,8,0,81,126,159,245,251,191,8,0,81,126,159,245,239,200,8,0,82,254,112,151,251,4,11,0,83,126,12,188,121,180,6,0,87,254,121,69,16,183,8,0,87,254,121,69,251,191,8,0,87,254,121,69,239,200,8,0,90,254,173,140,8,212,5,0,93,126,187,123,176,122,6,0,97,254,38,151,23,27,7,0,97,126,86,31,0,199,10,0,97,254,42,69,55,216,10,0,98,254,230,242,64,70,7,0,98,126,43,113,29,120,7,0,102,126,158,53,134,181,7,0,104,254,11,224,22,65,6,0,105,254,123,10,93,53,6,0,108,126,69,66,104,238,6,0,108,126,69,66,102,214,8,0,108,126,69,66,14,218,8,0,109,254,122,84,20,82,8,0,112,254,50,98,29,14,6,0,112,254,50,98,73,130,7,0,113,254,41,129,75,241,6,0,114,254,29,6,59,95,11,0,115,254,27,34,141,252,6,0,117,254,220,20,29,120,7,0,119,126,53,152,72,173,6,0,119,254,185,67,16,37,7,0,121,126,112,119,50,90,10,0,121,126,112,119,81,90,10,0,122,254,98,218,44,240,6,0,125,254,64,225,38,65,6,0,126,254,57,102,91,84,10,0,128,126,106,223,145,114,7,0,128,254,254,208,29,120,7,0,128,126,109,6,16,183,8,0,128,126,109,6,251,191,8,0,128,126,109,6,239,200,8,0,128,126,106,223,25,22,11,0,130,126,189,3,55,217,5,0,133,126,136,86,217,103,7,0,134,126,63,115,12,99,7,0,134,254,249,226,121,157,10,0,139,126,103,92,37,223,10,0,140,254,36,132,46,13,11,0,143,254,73,231,244,163,8,0,144,254,253,10,138,62,6,0,144,126,121,243,23,27,7,0,154,254,205,99,130,240,5,0,154,254,215,84,29,120,7,0,154,254,129,131,102,214,8,0,154,254,129,131,14,218,8,0,154,254,205,99,60,94,11,0,155,126,208,54,4,44,7,0,158,126,157,201,75,247,8,0,158,126,157,201,171,247,8,0,159,254,220,215,168,152,9,0,160,254,207,158,135,44,7,0,160,254,172,36,194,138,7,0,164,254,143,253,194,138,7,0,164,126,133,143,150,143,8,0,164,254,99,102,45,226,8,0,164,254,99,102,130,231,8,0,166,254,51,90,4,52,10,0,166,254,156,210,8,62,11,0,170,254,167,230,145,114,7,0,171,254,0,190,135,149,7,0,171,254,0,190,0,168,7,0,180,126,247,31,125,18,9,0,180,126,247,31,34,19,9,0,183,126,161,67,251,154,9,0,184,126,158,117,204,181,9,0,184,126,158,117,224,182,9,0,185,254,110,69,39,230,6,0,185,254,245,2,19,7,8,0,185,254,153,114,4,52,10,0,186,254,232,240,29,120,7,0,191,254,5,225,0,55,7,0,191,254,186,145,163,57,7,0,191,254,5,225,163,57,7,0,196,126,194,66,0,55,7,0,196,126,194,66,163,57,7,0,198,126,144,248,19,90,7,0,198,254,176,236,45,226,8,0,198,254,176,236,130,231,8,0,200,126,39,195,75,112,7,0,201,126,61,209,76,90,11,0,202,254,165,222,247,33,6,0,202,254,165,222,10,60,6,0,202,254,102,32,16,183,8,0,202,254,102,32,251,191,8,0,202,254,102,32,239,200,8,0,202,126,135,102,21,71,9,0,202,126,135,102,100,72,9,0,202,126,135,102,181,73,9,0,202,126,135,102,11,75,9,0,202,126,167,168,204,181,9,0,202,126,167,168,224,182,9,0,205,254,135,91,29,81,7,0,205,254,47,208,148,213,8,0,205,254,47,208,183,213,8,0,206,126,243,23,58,35,9,0,206,126,243,23,31,36,9,0,209,254,80,23,99,121,11,0,210,126,37,42,29,120,7,0,210,126,235,201,152,252,8,0,210,254,228,209,83,120,11,0,213,254,194,230,23,27,7,0,213,126,157,14,245,148,10,0,214,254,156,38,125,67,10,0,214,254,156,38,69,68,10,0,216,254,236,181,245,13,8,0,217,254,173,67,149,174,9,0,217,254,173,67,200,174,9,0,219,254,174,246,111,4,9,0,219,254,174,246,41,6,9,0,221,254,185,158,33,98,6,0,221,254,88,248,117,251,6,0,228,254,3,9,210,116,9,0,228,254,3,9,246,116,9,0,228,126,190,7,112,29,11,0,229,254,198,213,163,57,7,0,229,254,198,213,75,148,7,0,229,254,198,213,54,163,7,0,230,254,72,194,188,217,5,0,233,126,183,52,217,9,7,0,233,254,198,64,51,104,7,0,234,126,211,28,249,153,6,0,235,254,174,91,213,15,9,0,236,126,234,170,111,4,9,0,236,126,234,170,41,6,9,0,238,254,237,150,116,72,7,0,239,126,228,131,216,156,6,0,240,254,243,219,21,71,9,0,240,254,243,219,100,72,9,0,240,254,243,219,181,73,9,0,240,254,243,219,11,75,9,0,242,126,217,217,132,21,9,0,242,126,217,217,157,23,9,0,242,126,224,16,36,204,10,0,243,126,159,57,35,9,6,0,244,126,121,121,209,84,7,0,246,254,28,251,102,214,8,0,246,254,28,251,14,218,8,0,247,254,119,2,16,183,8,0,247,254,119,2,251,191,8,0,247,254,119,2,239,200,8,0,249,254,172,242,123,33,6,0,5,255,15,183,175,120,8,0,8,255,65,45,216,51,9,0,8,255,65,45,175,52,9,0,9,255,114,117,71,250,6,0,12,255,68,69,140,165,11,0,14,127,102,53,161,110,10,0,14,127,102,53,2,112,10,0,15,255,208,249,130,249,6,0,15,255,41,117,126,140,11,0,17,255,130,67,225,68,11,0,18,255,172,133,240,78,6,0,18,127,57,231,209,18,7,0,18,255,215,197,60,152,7,0,18,255,215,197,50,110,10,0,18,255,215,197,112,110,10,0,22,127,64,185,217,103,7,0,22,127,205,34,11,140,10,0,24,127,222,229,207,41,8,0,24,127,222,229,220,93,8,0,25,255,151,199,139,179,9,0,25,255,151,199,177,179,9,0,25,255,151,199,213,179,9,0,34,127,6,16,60,152,7,0,34,127,6,16,210,12,10,0,36,127,5,204,150,218,6,0,36,127,36,195,4,52,10,0,37,127,16,144,134,19,7,0,37,255,7,253,170,2,8,0,37,255,7,253,215,2,8,0,37,255,7,253,6,3,8,0,39,127,50,99,145,114,7,0,40,255,57,228,233,65,9,0,40,255,57,228,2,66,9,0,40,127,199,172,175,142,11,0,43,127,81,190,96,81,11,0,45,255,170,145,58,68,7,0,46,255,22,102,86,244,6,0,47,255,146,139,119,7,7,0,47,255,112,187,152,230,10,0,48,127,155,237,60,77,10,0,48,127,155,237,232,77,10,0,49,255,72,94,253,49,7,0,49,255,39,11,39,47,9,0,49,255,39,11,54,48,9,0,50,255,236,240,163,88,10,0,50,255,236,240,83,89,10,0,54,127,213,202,207,4,7,0,55,127,156,248,145,114,7,0,58,127,144,47,253,49,7,0,60,127,122,196,193,100,10,0,60,127,122,196,89,103,10,0,61,127,236,238,143,240,6,0,62,255,32,31,4,52,10,0,65,127,102,68,134,19,7,0,67,127,138,81,23,27,7,0,67,127,150,119,217,238,9,0,67,127,150,119,174,239,9,0,69,255,37,224,117,51,7,0,69,255,37,224,111,53,7,0,70,255,230,242,117,167,10,0,72,127,227,113,83,126,8,0,73,127,204,207,241,17,7,0,73,255,102,121,45,226,8,0,73,255,102,121,130,231,8,0,76,127,29,234,70,214,5,0,77,255,213,243,145,114,7,0,78,255,36,58,13,8,7,0,78,127,145,16,52,218,10,0,80,127,64,245,245,48,11,0,81,255,62,99,12,99,7,0,81,127,73,113,255,70,10,0,81,127,73,113,87,71,10,0,81,127,73,113,174,71,10,0,82,127,230,201,145,18,7,0,82,255,166,207,85,29,10,0,83,127,173,241,191,215,10,0,86,127,178,7,14,137,9,0,86,127,178,7,201,137,9,0,87,127,201,210,241,17,7,0,87,127,94,89,145,114,7,0,90,255,147,212,194,138,7,0,90,127,169,206,87,69,9,0,90,127,169,206,181,69,9,0,91,127,86,6,16,183,8,0,91,127,86,6,251,191,8,0,91,127,86,6,239,200,8,0,93,255,162,147,156,5,11,0,94,127,82,90,213,120,9,0,94,127,82,90,233,120,9,0,95,255,63,0,83,126,8,0,98,255,177,36,43,72,10,0,98,255,177,36,148,72,10,0,101,127,73,130,218,93,7,0,102,255,83,24,139,16,6,0,102,255,83,24,226,254,9,0,102,255,83,24,13,255,9,0,102,127,88,47,250,87,10,0,103,127,209,134,169,189,9,0,103,127,209,134,197,189,9,0,108,255,244,95,36,175,6,0,109,255,115,106,30,130,7,0,109,255,47,126,193,100,10,0,109,255,47,126,89,103,10,0,110,127,61,238,136,46,6,0,112,127,5,102,13,117,11,0,113,255,13,174,209,18,7,0,113,127,188,129,134,19,7,0,113,127,221,26,12,99,7,0,113,255,45,127,241,56,8,0,113,127,239,58,49,122,11,0,114,127,128,111,119,96,7,0,115,255,206,80,135,61,7,0,115,255,241,193,29,120,7,0,115,127,98,176,58,60,11,0,118,127,150,171,51,104,7,0,119,255,155,51,43,162,8,0,120,255,166,98,161,77,7,0,121,255,163,160,43,31,6,0,121,255,163,160,242,91,6,0,121,255,156,9,145,114,7,0,123,127,151,250,135,44,7,0,127,127,82,19,92,234,6,0,127,255,91,167,194,138,7,0,129,127,243,253,96,221,6,0,130,255,249,44,50,255,7,0,132,127,46,139,186,158,9,0,132,127,46,139,5,159,9,0,134,127,69,213,12,99,7,0,135,127,16,246,111,4,9,0,135,127,16,246,41,6,9,0,137,255,89,196,219,238,8,0,137,255,89,196,39,240,8,0,137,255,89,196,117,241,8,0,138,127,155,121,205,87,7,0,138,255,219,126,102,214,8,0,138,255,219,126,14,218,8,0,142,127,238,181,4,52,10,0,144,127,94,182,106,231,10,0,145,127,226,141,225,65,11,0,147,255,46,57,212,87,8,0,147,255,46,57,240,87,8,0,147,127,183,27,168,152,9,0,149,255,189,184,193,5,6,0,151,255,12,122,11,132,6,0,153,127,139,253,166,121,8,0,153,255,163,87,0,214,10,0,153,127,139,253,159,249,10,0,163,255,88,116,139,14,10,0,163,255,88,116,50,15,10,0,165,127,116,29,110,40,7,0,165,127,116,40,216,85,8,0,165,127,116,29,60,182,8,0,166,255,149,205,23,27,7,0,167,127,109,196,160,79,8,0,168,127,246,63,16,183,8,0,168,127,246,63,251,191,8,0,168,127,246,63,239,200,8,0,168,127,233,181,188,8,11,0,170,255,48,53,30,199,6,0,171,255,188,79,199,238,5,0,172,127,253,27,131,222,8,0,172,127,253,27,38,223,8,0,172,127,253,27,206,223,8,0,174,255,237,63,145,114,7,0,176,127,65,237,115,232,6,0,176,255,55,200,219,238,8,0,176,255,55,200,39,240,8,0,176,255,55,200,117,241,8,0,179,255,163,165,13,8,7,0,180,255,77,221,235,205,10,0,183,255,138,40,161,110,10,0,183,255,138,40,2,112,10,0,184,255,86,112,218,93,7,0,185,127,206,133,47,43,7,0,185,127,125,34,150,233,10,0,185,127,125,34,169,233,10,0,185,127,125,34,41,244,10,0,189,127,222,199,144,237,5,0,189,127,35,96,130,47,7,0,189,255,162,113,88,40,11,0,191,255,201,148,96,114,7,0,193,127,45,127,228,66,7,0,195,255,205,81,11,14,7,0,196,127,92,115,139,145,8,0,200,255,15,233,115,44,11,0,202,127,234,254,19,79,6,0,202,127,255,164,116,72,7,0,205,255,22,228,67,17,7,0,207,255,188,167,219,238,8,0,207,255,188,167,39,240,8,0,207,255,188,167,117,241,8,0,209,127,125,120,165,170,10,0,210,127,148,209,187,149,11,0,210,127,148,209,25,152,11,0,210,127,148,209,106,157,11,0,211,255,156,38,165,236,6,0,211,255,156,38,199,236,6,0,213,255,191,200,168,104,8,0,213,255,191,200,45,105,8,0,213,255,191,200,167,105,8,0,213,255,184,44,32,20,9,0,213,255,184,44,179,20,9,0,214,127,248,233,72,166,6,0,214,255,200,52,76,187,6,0,214,255,99,154,22,46,10,0,214,255,99,154,98,46,10,0,217,127,35,118,55,128,11,0,218,255,206,34,12,99,7,0,219,127,230,121,246,62,7,0,219,255,43,173,194,138,7,0,221,255,188,185,136,1,7,0,221,127,60,92,218,159,9,0,221,127,60,92,240,159,9,0,222,127,160,177,187,156,11,0,224,255,13,24,16,37,7,0,225,255,192,190,4,52,10,0,229,127,12,36,29,14,6,0,229,127,12,36,73,130,7,0,231,255,16,145,135,61,7,0,233,127,66,227,96,221,6,0,234,255,55,208,29,120,7,0,235,127,245,28,169,214,5,0,235,255,201,148,12,99,7,0,236,255,93,97,246,243,9,0,236,255,93,97,59,245,9,0,236,255,93,97,131,246,9,0,238,255,10,159,21,71,9,0,238,255,10,159,100,72,9,0,238,255,10,159,181,73,9,0,238,255,10,159,11,75,9,0,240,255,203,80,112,246,7,0,242,127,215,18,29,120,7,0,244,255,32,120,141,252,6,0,245,127,51,98,58,35,9,0,245,127,51,98,31,36,9,0,249,255,248,131,251,204,10,0,250,127,22,126,161,77,7,0,253,127,213,246,163,57,7,0,253,255,31,27,145,12,8,0,255,127,81,190,145,114,7,0,16,1,19,35,65,67,67,108,97,121,101,114,66,97,99,107,103,114,111,117,110,100,2,1,50,209,63,94,16,1,20,35,65,68,79,67,80,85,66,95,99,111,111,107,105,101,95,98,111,120,120,2,1,117,214,219,47,16,1,10,35,65,99,116,105,111,110,66,97,114,2,1,20,232,174,167,16,1,54,35,65,117,116,111,107,101,116,105,110,103,45,83,112,117,95,95,99,111,111,107,105,101,66,97,110,110,101,114,45,109,111,100,117,108,101,95,95,119,114,97,112,67,111,111,107,105,101,66,97,110,110,101,114,2,1,238,156,201,104,16,1,7,35,67,67,95,66,97,114,2,1,39,162,182,218,16,1,20,35,67,79,69,75,73,78,70,79,95,99,111,111,107,105,101,95,98,111,120,2,1,98,97,120,225,16,1,3,35,67,81,2,14,1,164,160,34,19,174,60,227,29,190,66,143,47,103,220,172,48,144,93,123,53,151,230,35,153,203,49,32,157,228,87,78,158,238,77,55,161,12,248,86,164,109,248,229,189,248,183,52,200,182,122,250,218,152,220,142,16,1,6,35,67,111,67,111,110,2,1,189,206,227,40,16,1,39,35,67,111,110,116,101,110,116,112,108,97,99,101,104,111,108,100,101,114,49,95,84,65,69,66,51,56,49,53,65,48,53,49,95,67,111,108,48,48,2,1,14,48,107,53,16,1,43,35,67,111,111,107,105,101,65,99,99,101,112,116,83,117,98,76,97,121,111,117,116,49,95,99,111,111,107,105,101,115,109,101,115,115,97,103,101,115,104,111,119,110,2,1,125,94,75,30,16,1,13,35,67,111,111,107,105,101,66,97,110,110,101,114,2,1,163,103,3,219,16,1,14,35,67,111,111,107,105,101,67,111,110,116,114,111,108,2,1,81,13,228,154,16,1,16,35,67,111,111,107,105,101,82,101,113,117,101,115,116,101,114,2,1,137,115,70,203,16,1,16,35,67,111,111,107,105,101,115,45,119,114,97,112,112,101,114,2,1,61,230,204,243,16,1,15,35,67,111,111,107,105,101,115,67,111,110,115,101,110,116,2,1,144,168,138,80,16,1,28,35,67,121,98,111,116,67,111,111,107,105,101,98,111,116,68,105,97,108,111,103,87,114,97,112,112,101,114,2,1,156,13,193,72,16,1,19,35,69,68,79,67,80,85,66,95,99,111,111,107,105,101,95,98,111,120,2,1,117,214,219,43,16,1,20,35,69,80,68,70,84,73,80,83,95,99,111,111,107,105,101,95,98,111,120,2,1,64,68,167,56,16,1,10,35,69,85,87,97,114,110,105,110,103,2,1,245,126,215,132,16,1,15,35,69,99,117,102,105,108,101,115,67,111,111,107,105,101,2,1,101,161,103,106,16,1,7,35,70,73,83,76,67,67,2,3,34,127,133,203,53,157,81,129,94,9,161,220,16,1,11,35,71,66,95,111,118,101,114,108,97,121,2,1,150,222,117,98,16,1,19,35,71,84,77,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,56,244,137,251,16,1,20,35,73,68,79,67,84,73,80,83,95,99,111,111,107,105,101,95,98,111,120,2,1,64,67,90,122,16,1,18,35,76,101,103,97,108,67,111,111,107,105,101,78,111,116,105,99,101,2,1,21,151,242,152,16,1,20,35,77,79,65,77,73,78,70,79,95,99,111,111,107,105,101,95,98,111,120,2,1,98,93,94,53,16,1,24,35,80,68,70,67,79,70,70,69,69,67,79,77,95,99,111,111,107,105,101,95,98,111,120,2,1,140,173,254,90,16,1,12,35,80,79,80,85,80,83,95,82,79,79,84,2,3,66,100,36,225,96,206,140,137,156,236,229,81,16,1,3,35,80,80,2,1,105,31,39,15,16,1,13,35,80,111,108,105,99,121,78,111,116,105,99,101,2,1,127,15,4,95,16,1,13,35,80,111,112,117,112,77,101,115,115,97,103,101,2,3,51,93,239,113,108,171,144,126,148,137,6,150,16,1,13,35,80,114,105,118,97,99,121,65,108,101,114,116,2,1,242,84,138,13,16,1,14,35,80,114,105,118,97,99,121,78,111,116,105,99,101,2,1,46,195,191,57,16,1,9,35,82,101,103,67,84,66,87,70,2,1,53,122,222,224,16,1,8,35,83,67,65,104,108,100,114,2,1,131,154,75,13,16,1,4,35,83,67,75,2,1,170,207,12,202,16,1,13,35,83,116,105,99,107,121,70,111,111,116,101,114,2,1,232,137,10,91,16,1,10,35,84,79,85,77,115,103,67,111,110,2,1,42,205,196,40,16,1,16,35,84,119,71,105,48,112,79,110,88,98,45,112,97,103,101,2,1,183,243,133,70,16,1,19,35,87,66,45,102,108,111,97,116,105,110,103,45,110,111,116,105,99,101,2,1,85,82,99,141,16,1,23,35,87,87,70,67,111,111,107,105,101,80,114,105,118,97,99,121,78,111,116,105,99,101,2,1,63,138,212,249,0,1,8,35,92,53,102,32,105,67,68,2,1,72,192,247,121,16,1,31,35,95,95,77,82,67,85,84,79,85,84,95,65,78,65,76,89,84,73,67,83,95,65,71,82,69,69,77,69,78,84,2,1,136,26,181,207,16,1,10,35,95,95,99,111,110,115,101,110,116,2,2,103,149,177,27,105,71,190,19,16,1,23,35,95,95,116,101,97,108,105,117,109,73,109,112,108,105,99,105,116,109,111,100,97,108,2,1,38,157,169,194,16,1,4,35,95,112,99,2,1,102,25,113,241,16,1,10,35,95,116,104,45,116,114,117,115,116,2,1,148,188,122,181,16,1,17,35,97,98,114,95,99,111,111,107,105,101,95,109,111,100,97,108,2,1,252,121,77,224,16,1,11,35,97,99,45,119,114,97,112,112,101,114,2,1,25,40,56,47,16,1,12,35,97,99,98,45,119,114,97,112,112,101,114,2,1,54,162,35,95,16,1,9,35,97,99,98,77,111,100,97,108,2,1,127,80,60,78,16,1,11,35,97,99,99,45,98,111,116,116,111,109,2,1,234,29,127,76,16,1,27,35,97,99,99,101,112,116,45,115,105,112,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,143,80,200,104,16,1,11,35,97,99,99,101,112,116,97,110,99,101,2,2,56,223,186,145,61,242,164,132,16,1,10,35,97,99,99,101,112,116,98,97,114,2,1,24,138,209,15,16,1,18,35,97,99,102,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,28,245,127,235,16,1,16,35,97,99,104,116,117,110,103,45,111,118,101,114,108,97,121,2,1,202,34,230,197,16,1,34,35,97,99,107,110,111,119,108,101,100,103,101,67,111,111,107,105,101,115,65,110,100,80,114,105,118,97,99,121,77,111,100,97,108,2,1,117,229,194,45,16,1,43,35,97,100,101,118,105,110,116,97,95,99,111,110,115,101,110,116,115,95,99,111,111,107,105,101,115,95,117,110,105,118,101,114,115,97,108,95,119,105,100,103,101,116,2,1,211,97,186,19,16,1,23,35,97,100,110,115,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,2,1,242,69,129,163,16,1,17,35,97,100,117,108,116,119,97,114,110,105,110,103,109,97,115,107,2,1,78,189,204,242,16,1,27,35,97,101,99,111,109,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,2,1,126,57,45,209,16,1,7,35,97,103,114,101,101,67,2,1,41,136,254,73,16,1,16,35,97,103,114,101,101,109,101,110,116,45,97,108,101,114,116,2,1,10,132,94,95,16,1,17,35,97,103,114,101,101,109,101,110,116,77,101,115,115,97,103,101,2,2,81,232,100,79,187,4,197,194,16,1,14,35,97,103,114,101,101,109,101,110,116,80,97,110,101,2,1,13,244,189,207,16,1,24,35,97,105,114,95,99,111,111,107,105,101,108,97,119,95,99,111,110,116,97,105,110,101,114,2,1,209,244,179,145,16,1,19,35,97,106,45,112,114,105,118,97,99,121,45,109,101,115,115,97,103,101,2,1,155,8,220,168,16,1,6,35,97,108,101,114,116,2,1,189,171,22,69,16,1,13,35,97,108,101,114,116,45,98,97,110,110,101,114,2,1,250,131,183,75,16,1,61,35,97,108,101,114,116,45,98,97,110,110,101,114,32,62,32,46,121,116,100,45,98,114,111,119,115,101,32,62,32,46,121,116,45,97,108,101,114,116,45,119,105,116,104,45,97,99,116,105,111,110,115,45,114,101,110,100,101,114,101,114,2,1,172,236,226,157,16,1,16,35,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,2,1,31,118,138,19,16,1,11,35,97,108,101,114,116,45,110,108,112,100,2,1,110,93,164,241,16,1,14,35,97,108,101,114,116,95,109,101,115,115,97,103,101,2,1,77,75,139,37,16,1,12,35,97,108,101,114,116,95,109,111,100,97,108,2,1,2,234,2,105,16,1,16,35,97,108,101,114,116,109,101,115,115,97,103,101,119,114,112,2,1,98,154,30,221,16,1,12,35,97,109,45,98,114,97,110,100,105,110,103,2,5,33,198,201,89,170,26,75,196,198,244,32,76,202,187,42,228,233,205,181,84,16,1,13,35,97,110,97,108,121,116,105,99,115,45,105,100,2,1,3,189,126,130,16,1,17,35,97,110,97,108,121,116,105,99,115,45,112,114,111,109,112,116,2,1,86,30,113,254,16,1,16,35,97,111,77,101,115,115,97,103,101,72,111,108,100,101,114,2,1,194,197,249,174,16,1,17,35,97,111,115,45,67,111,111,107,105,101,45,77,111,100,97,108,2,2,84,113,107,92,192,182,248,38,16,1,17,35,97,111,115,45,67,111,111,107,105,101,80,111,108,105,99,121,2,2,59,156,56,191,60,198,95,104,16,1,23,35,97,114,121,111,115,121,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,194,72,254,230,16,1,11,35,97,115,107,112,114,105,118,97,99,121,2,1,171,154,144,255,16,1,17,35,98,97,99,107,45,116,111,45,111,108,100,45,115,105,116,101,2,1,133,161,250,65,16,1,7,35,98,97,110,110,101,114,2,1,146,197,123,188,16,1,24,35,98,97,110,110,101,114,45,111,118,101,114,108,97,121,45,116,111,112,45,112,97,103,101,2,1,138,13,228,226,16,1,16,35,98,97,110,110,101,114,45,112,111,108,105,99,105,101,115,2,1,230,192,189,22,16,1,14,35,98,97,110,110,101,114,45,115,112,97,99,101,114,2,1,127,218,217,138,16,1,14,35,98,97,110,110,101,114,79,118,101,114,108,97,121,2,1,25,88,248,164,16,1,8,35,98,97,110,110,101,114,115,2,1,168,114,58,215,16,1,30,35,98,97,110,110,105,101,114,101,45,99,111,110,115,101,110,116,101,109,101,110,116,45,116,101,109,111,105,110,115,2,1,223,21,12,90,16,1,12,35,98,99,109,112,95,102,111,111,116,101,114,2,1,32,9,211,54,16,1,9,35,98,108,97,99,107,111,117,116,2,2,63,118,139,155,229,161,84,51,16,1,14,35,98,108,111,99,107,45,98,108,111,99,107,45,54,2,1,11,127,183,29,16,1,19,35,98,108,111,99,107,45,99,111,111,107,105,101,110,111,116,105,99,101,2,1,13,142,160,208,16,1,19,35,98,108,111,99,107,45,99,111,111,107,105,101,112,111,108,105,99,121,2,1,160,164,24,183,16,1,21,35,98,108,111,99,107,45,108,111,110,100,111,110,45,99,111,111,107,105,101,115,2,1,1,101,250,48,16,1,21,35,98,108,111,99,107,45,115,101,99,117,114,105,116,121,45,98,108,111,99,107,2,2,86,30,176,168,209,115,119,140,16,1,21,35,98,108,111,99,107,45,116,101,114,109,115,111,102,115,101,114,118,105,99,101,2,1,148,187,243,65,16,1,10,35,98,108,111,99,107,83,99,114,110,2,1,128,219,244,107,16,1,12,35,98,108,111,99,107,115,112,108,97,115,104,2,1,150,21,71,114,16,1,12,35,98,108,111,113,117,97,114,95,119,101,98,2,1,30,253,234,31,16,1,11,35,98,108,115,95,99,111,111,107,105,101,2,1,73,24,5,44,16,1,5,35,98,108,117,114,2,1,106,211,148,149,16,1,7,35,98,111,116,110,111,116,2,1,49,112,195,198,16,1,12,35,98,111,116,111,110,102,111,111,116,101,114,2,1,131,204,56,65,16,1,11,35,98,111,116,116,111,109,45,98,97,114,2,1,220,56,84,2,16,1,18,35,98,111,116,116,111,109,45,108,101,102,116,45,109,111,100,97,108,2,1,191,189,199,71,16,1,12,35,98,111,116,116,111,109,65,108,101,114,116,2,1,139,189,247,243,16,1,14,35,98,111,116,116,111,109,95,110,111,116,105,99,101,2,1,23,223,13,35,16,1,10,35,98,111,116,116,111,109,98,97,114,2,1,110,220,177,46,16,1,11,35,98,111,120,45,115,104,97,100,111,119,2,1,123,119,193,19,16,1,19,35,98,115,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,2,2,12,234,225,47,77,189,208,219,16,1,21,35,98,115,103,45,119,105,100,103,101,116,45,99,111,110,116,97,105,110,101,114,2,1,137,76,137,205,16,1,21,35,98,116,110,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,2,1,55,0,136,2,16,1,21,35,98,119,45,99,111,111,107,105,101,45,115,121,115,45,97,99,116,105,118,101,2,1,26,94,197,218,16,1,4,35,99,45,50,2,1,38,207,211,75,16,1,12,35,99,45,104,111,109,101,45,116,105,112,115,2,1,126,163,250,96,16,1,7,35,99,67,73,110,102,111,2,1,127,248,203,116,16,1,5,35,99,78,97,103,2,1,208,214,206,196,16,1,8,35,99,78,111,116,105,99,101,2,1,38,157,114,59,16,1,16,35,99,97,45,99,111,110,115,101,110,116,45,114,111,111,116,2,2,93,91,112,229,241,157,252,180,16,1,10,35,99,97,95,98,97,110,110,101,114,2,2,48,153,148,38,115,81,231,254,16,1,23,35,99,97,109,112,102,105,114,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,114,214,199,55,16,1,3,35,99,98,2,2,12,222,128,28,96,119,54,201,16,1,11,35,99,98,45,119,114,97,112,112,101,114,2,3,2,134,9,200,39,62,195,221,60,113,49,243,16,1,8,35,99,98,97,110,110,101,114,2,1,181,118,99,65,16,1,12,35,99,98,111,120,67,111,110,116,101,110,116,2,1,38,157,171,200,16,1,9,35,99,99,45,97,108,101,114,116,2,1,93,235,16,202,16,1,7,35,99,99,45,98,97,114,2,2,111,185,176,162,229,234,8,39,16,1,8,35,99,99,45,99,97,114,100,2,1,45,184,168,38,16,1,8,35,99,99,45,99,111,110,116,2,1,32,153,219,87,16,1,11,35,99,99,45,111,118,101,114,108,97,121,2,2,78,59,2,64,205,233,15,77,16,1,10,35,99,99,45,119,105,110,100,111,119,2,1,149,137,239,149,16,1,5,35,99,99,95,98,2,1,50,108,49,231,16,1,17,35,99,99,95,99,111,111,107,105,101,95,98,97,110,110,101,114,2,1,159,195,149,255,16,1,10,35,99,99,95,100,105,97,108,111,103,2,1,41,219,151,188,16,1,4,35,99,99,99,2,1,166,215,159,96,16,1,12,35,99,99,110,115,116,95,95,109,97,105,110,2,1,5,188,89,235,16,1,17,35,99,99,111,110,115,101,110,116,45,115,101,99,116,105,111,110,2,1,132,11,47,46,16,1,5,35,99,99,112,97,2,1,176,191,195,120,16,1,6,35,99,99,112,111,112,2,1,81,46,64,47,16,1,3,35,99,100,2,6,22,142,205,249,33,95,128,52,153,29,153,158,174,234,3,19,192,43,139,104,202,106,5,51,16,1,24,35,99,104,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,110,15,3,85,16,1,34,35,99,104,97,107,114,97,45,116,111,97,115,116,45,109,97,110,97,103,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,2,1,242,115,12,112,16,1,30,35,99,105,103,105,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,19,125,24,212,16,1,5,35,99,105,112,97,2,1,135,125,68,112,16,1,28,35,99,105,115,105,111,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,2,1,16,33,135,56,16,1,11,35,99,107,45,99,111,110,115,101,110,116,2,1,79,205,181,184,16,1,8,35,99,107,45,110,111,116,101,2,1,102,70,23,41,16,1,6,35,99,107,87,114,112,2,1,153,160,151,140,16,1,6,35,99,107,103,114,101,2,1,253,15,99,223,16,1,7,35,99,107,110,100,105,118,2,2,48,177,33,34,146,185,24,103,16,1,7,35,99,108,98,95,119,114,2,1,24,168,58,207,16,1,22,35,99,109,101,80,101,114,109,105,115,115,105,111,110,81,117,101,115,116,105,111,110,2,1,165,193,167,148,16,1,4,35,99,110,98,2,2,55,164,147,32,226,233,98,22,16,1,9,35,99,110,98,99,103,100,112,114,2,1,148,192,36,76,16,1,6,35,99,110,101,116,99,2,1,130,42,26,103,16,1,13,35,99,111,45,99,111,110,116,97,105,110,101,114,2,2,127,46,253,211,244,226,115,124,16,1,10,35,99,111,67,111,110,115,101,110,116,2,1,203,80,71,44,16,1,12,35,99,111,99,99,45,98,97,110,110,101,114,2,1,122,11,103,51,16,1,7,35,99,111,107,105,54,49,2,1,2,105,177,70,16,1,11,35,99,111,109,105,110,103,115,111,111,110,2,1,145,70,241,2,16,1,14,35,99,111,109,112,45,106,104,115,112,119,109,57,102,2,1,241,8,249,84,16,1,11,35,99,111,109,112,108,105,97,110,99,101,2,1,210,100,169,235,16,1,18,35,99,111,109,112,108,105,97,110,99,101,45,110,111,116,105,99,101,2,1,148,198,3,208,16,1,18,35,99,111,110,100,105,116,105,111,110,97,108,98,97,110,110,101,114,2,1,38,157,28,48,16,1,5,35,99,111,110,115,2,1,139,239,166,234,16,1,9,35,99,111,110,115,45,112,111,112,2,1,93,101,228,247,16,1,20,35,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,109,97,105,110,2,2,165,69,112,175,167,24,184,132,16,1,15,35,99,111,110,115,101,110,116,45,100,105,97,108,111,103,2,3,14,130,55,15,42,163,62,219,90,49,176,187,16,1,13,35,99,111,110,115,101,110,116,45,102,111,114,109,2,1,104,39,109,189,16,1,29,35,99,111,110,115,101,110,116,45,112,108,97,99,101,104,111,108,100,101,114,45,111,110,101,116,114,117,115,116,2,1,177,135,128,20,16,1,16,35,99,111,110,115,101,110,116,45,114,101,113,117,101,115,116,2,1,245,61,83,246,16,1,25,35,99,111,110,115,101,110,116,45,119,105,100,103,101,116,45,99,111,110,116,97,105,110,101,114,2,1,205,174,84,199,16,1,13,35,99,111,110,115,101,110,116,66,108,111,99,107,2,2,55,39,249,63,245,72,107,29,16,1,16,35,99,111,110,115,101,110,116,84,114,97,99,107,105,110,103,2,1,67,178,16,9,16,1,13,35,99,111,110,115,101,110,116,95,99,111,110,116,2,1,122,171,129,246,16,1,15,35,99,111,110,115,101,110,116,95,110,111,116,105,99,101,2,1,55,165,130,176,16,1,11,35,99,111,110,115,101,110,116,100,105,118,2,2,94,127,25,92,127,255,85,218,16,1,15,35,99,111,110,115,101,110,116,109,97,110,97,103,101,114,2,1,78,157,177,140,16,1,23,35,99,111,110,116,97,105,110,101,114,32,62,32,35,116,111,111,108,115,46,95,104,52,2,1,94,99,83,91,16,1,16,35,99,111,110,116,97,105,110,101,114,32,62,32,46,100,100,2,1,126,2,196,170,16,1,44,35,99,111,110,116,101,110,116,32,62,32,115,112,97,110,32,62,32,46,65,112,112,32,62,32,100,105,118,91,99,108,97,115,115,42,61,34,83,116,97,114,116,34,93,2,1,173,221,244,192,16,1,15,35,99,111,110,116,101,110,116,45,112,111,108,105,99,121,2,1,33,184,230,155,16,1,25,35,99,111,110,118,101,114,116,114,105,45,115,99,114,105,112,116,45,99,111,110,115,101,110,116,2,1,181,52,61,20,16,1,4,35,99,111,111,2,1,211,21,165,40,16,1,5,35,99,111,111,107,2,4,23,156,25,136,58,210,55,68,91,68,170,158,129,251,64,148,16,1,7,35,99,111,111,107,79,75,2,1,91,21,158,200,16,1,13,35,99,111,111,107,105,99,101,45,116,101,120,116,2,1,55,120,114,120,16,1,14,35,99,111,111,107,105,101,45,45,77,111,100,97,108,2,1,46,93,62,114,16,1,19,35,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,99,101,2,2,59,236,252,130,254,52,84,54,16,1,27,35,99,111,111,107,105,101,45,97,112,112,108,105,97,110,99,101,45,112,111,112,117,112,45,98,111,120,2,1,63,118,139,155,16,1,11,35,99,111,111,107,105,101,45,98,97,114,2,3,21,235,211,108,71,156,238,113,108,29,175,60,16,1,20,35,99,111,111,107,105,101,45,98,97,114,45,116,101,109,112,108,97,116,101,2,1,149,164,211,248,16,1,19,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,112,112,2,1,143,111,185,16,16,1,26,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,99,107,103,114,111,117,110,100,2,1,150,17,113,217,16,1,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,95,156,229,149,16,1,26,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,102,111,114,101,103,114,111,117,110,100,2,1,150,17,113,217,16,1,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,40,26,48,107,16,1,28,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,51,212,123,200,16,1,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,109,111,100,97,108,2,1,32,74,48,162,16,1,13,35,99,111,111,107,105,101,45,99,111,118,101,114,2,1,43,249,227,126,16,1,22,35,99,111,111,107,105,101,45,108,97,119,45,98,97,114,45,104,111,108,100,101,114,2,1,107,210,58,234,16,1,24,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,115,108,105,100,101,45,105,110,2,1,219,141,156,155,16,1,20,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,109,111,100,97,108,2,1,207,68,67,54,16,1,25,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,109,97,115,107,2,1,158,18,157,187,16,1,26,35,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,115,45,102,111,111,116,101,114,2,1,62,219,177,176,16,1,22,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,105,110,102,111,45,98,103,2,1,148,201,158,40,16,1,16,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,2,2,122,24,52,241,145,115,99,214,16,1,26,35,99,111,111,107,105,101,45,115,110,97,99,107,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,28,217,251,170,16,1,14,35,99,111,111,107,105,101,45,115,116,97,116,117,115,2,1,160,8,133,124,16,1,12,35,99,111,111,107,105,101,45,119,97,108,108,2,1,60,14,153,161,16,1,19,35,99,111,111,107,105,101,66,97,110,110,101,114,72,111,108,100,101,114,2,1,120,144,112,38,16,1,22,35,99,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,117,101,2,1,19,83,211,173,16,1,17,35,99,111,111,107,105,101,67,111,110,115,101,110,116,100,105,118,2,1,136,244,57,177,16,1,16,35,99,111,111,107,105,101,70,111,111,116,101,114,77,115,103,2,1,222,59,97,14,16,1,11,35,99,111,111,107,105,101,70,111,114,109,2,1,121,193,75,19,16,1,18,35,99,111,111,107,105,101,77,111,100,117,108,101,77,111,100,97,108,2,1,236,99,179,245,16,1,17,35,99,111,111,107,105,101,78,111,116,105,99,101,83,111,119,119,2,1,16,236,165,249,16,1,17,35,99,111,111,107,105,101,80,111,108,105,99,121,87,114,97,112,2,1,239,105,128,197,16,1,13,35,99,111,111,107,105,101,82,105,98,98,111,110,2,1,194,252,206,215,16,1,15,35,99,111,111,107,105,101,95,98,97,114,95,110,101,119,2,1,237,28,4,52,16,1,22,35,99,111,111,107,105,101,95,99,111,109,112,111,110,101,110,116,95,101,109,101,97,2,1,173,155,92,165,16,1,16,35,99,111,111,107,105,101,95,100,105,115,97,98,108,101,100,2,1,93,153,179,137,16,1,15,35,99,111,111,107,105,101,95,109,97,110,97,103,101,114,2,2,126,207,145,15,242,247,115,243,16,1,16,35,99,111,111,107,105,101,98,97,110,110,101,114,95,98,103,2,1,115,193,197,196,0,1,20,35,99,111,111,107,105,101,99,111,110,115,101,110,116,92,58,100,101,115,99,2,1,173,144,171,103,16,1,30,35,99,111,111,107,105,101,99,111,110,115,101,110,116,119,97,114,110,105,110,103,99,111,110,116,97,105,110,101,114,2,1,160,149,51,222,16,1,20,35,99,111,111,107,105,101,110,111,116,105,99,101,95,110,111,116,105,99,101,2,1,57,148,178,149,16,1,12,35,99,111,111,107,105,101,112,108,97,116,101,2,2,105,32,49,16,220,19,205,202,16,1,18,35,99,111,111,107,105,101,115,45,99,111,109,112,111,110,101,110,116,2,1,223,168,181,7,16,1,12,35,99,111,111,107,105,101,115,45,108,97,119,2,1,132,106,159,47,16,1,22,35,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,98,97,110,110,101,114,2,1,129,35,171,103,16,1,20,35,99,111,111,107,105,101,115,45,115,116,97,114,116,45,109,111,100,97,108,2,1,50,118,15,199,16,1,11,35,99,111,111,107,105,101,115,65,100,118,2,1,152,99,123,180,16,1,14,35,99,111,111,107,105,101,115,66,97,110,110,101,114,2,1,94,229,32,183,16,1,21,35,99,111,111,107,105,101,115,70,111,114,109,67,111,110,116,97,105,110,101,114,2,1,78,171,124,19,16,1,21,35,99,111,111,107,105,101,115,79,112,116,105,111,110,115,50,48,50,50,49,50,2,1,11,121,174,162,16,1,21,35,99,111,111,107,105,101,115,79,118,101,114,108,97,121,50,48,50,50,49,50,2,1,11,121,174,162,16,1,15,35,99,111,111,107,105,101,115,95,111,112,116,95,105,110,2,1,243,151,66,222,16,1,20,35,99,111,111,107,105,101,115,95,118,50,95,98,97,99,107,100,114,111,112,2,1,131,201,92,218,16,1,13,35,99,111,111,107,105,101,115,108,97,121,101,114,2,1,61,156,8,226,16,1,17,35,99,111,111,107,105,101,119,97,108,108,45,109,111,100,97,108,2,1,128,157,205,149,16,1,12,35,99,111,112,121,114,105,103,104,116,45,50,2,2,103,21,142,168,149,53,42,243,16,1,3,35,99,112,2,4,38,157,32,234,52,202,22,91,127,226,171,129,190,15,141,127,16,1,5,35,99,112,111,112,2,1,79,135,205,112,16,1,20,35,99,112,115,45,115,104,97,109,97,110,45,110,111,116,105,102,105,101,114,2,1,73,8,226,49,16,1,9,35,99,115,45,112,111,112,117,112,2,1,54,39,65,172,16,1,37,35,99,116,108,48,48,95,112,114,105,118,97,99,121,98,97,110,110,101,114,95,112,110,108,80,114,105,118,97,99,121,80,111,108,105,99,121,2,1,216,4,34,117,16,1,23,35,99,117,115,116,111,109,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,2,1,121,177,66,217,16,1,23,35,99,117,115,116,111,109,105,122,101,100,45,99,111,110,115,101,110,116,45,115,100,107,2,1,98,29,69,66,16,1,3,35,99,119,2,7,2,174,5,31,2,187,232,128,30,42,179,197,32,231,31,223,51,118,71,220,158,195,91,207,221,1,46,114,16,1,6,35,99,119,97,114,110,2,1,158,115,123,58,16,1,14,35,99,119,97,114,110,105,110,103,112,111,112,117,112,2,1,170,15,203,178,16,1,16,35,99,120,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,38,157,45,86,16,1,14,35,99,120,45,116,99,45,119,114,97,112,112,101,114,2,1,38,157,45,86,16,1,5,35,99,120,99,120,2,1,229,83,0,123,16,1,16,35,100,97,45,102,108,111,97,116,45,99,111,111,107,105,101,2,1,159,209,187,106,16,1,9,35,100,97,114,107,66,97,99,107,2,1,251,77,241,249,16,1,14,35,100,97,116,97,95,112,114,105,118,95,98,97,114,2,1,167,52,161,168,16,1,14,35,100,98,100,109,45,45,109,101,115,115,97,103,101,2,1,38,157,30,10,16,1,6,35,100,100,100,104,104,2,1,102,125,66,89,16,1,13,35,100,101,109,111,45,111,118,101,114,108,97,121,2,1,181,118,4,28,16,1,16,35,100,101,115,105,103,110,45,115,119,105,116,99,104,101,114,2,1,57,233,33,131,16,1,20,35,100,105,97,108,111,103,95,110,111,116,105,102,105,99,97,116,105,111,110,2,1,124,186,98,127,16,1,23,35,100,105,97,108,111,103,98,111,120,95,99,111,111,107,105,101,112,111,108,105,99,121,2,1,68,223,10,44,16,1,18,35,100,105,115,97,98,108,101,66,97,99,107,103,114,111,117,110,100,2,1,18,204,188,73,16,1,8,35,100,105,115,99,45,98,103,2,1,5,45,46,184,16,1,15,35,100,105,115,99,108,97,105,109,101,114,45,98,97,114,2,1,127,189,43,15,16,1,21,35,100,105,115,99,108,97,105,109,101,114,45,99,111,110,116,97,105,110,101,114,2,1,11,95,77,153,16,1,11,35,100,105,115,110,101,121,45,116,111,117,2,1,128,243,190,140,16,1,19,35,100,105,118,45,97,108,101,114,116,115,45,119,114,97,112,112,101,114,2,1,1,213,73,44,16,1,21,35,100,105,118,66,111,116,116,111,109,83,116,105,99,107,121,76,97,121,101,114,2,1,34,34,243,187,16,1,6,35,100,105,118,67,77,2,1,173,212,164,84,16,1,11,35,100,105,118,77,101,115,115,97,103,101,2,1,80,146,38,161,16,1,10,35,100,105,118,78,82,77,97,105,110,2,1,86,103,250,120,16,1,23,35,100,105,118,78,111,116,105,102,105,99,97,116,105,111,110,83,101,99,116,105,111,110,2,1,67,202,8,222,16,1,9,35,100,105,118,80,111,112,117,112,2,1,207,232,251,42,16,1,8,35,100,109,80,111,112,117,112,2,1,43,83,160,26,16,1,12,35,100,109,80,111,112,117,112,77,97,115,107,2,1,43,83,160,26,16,1,22,35,100,111,98,98,105,101,115,95,99,111,111,107,105,101,95,119,105,100,103,101,116,2,1,203,187,185,96,16,1,25,35,100,114,117,112,97,108,111,114,103,45,99,114,111,115,115,115,105,116,101,45,103,100,112,114,2,1,230,60,188,49,16,1,13,35,101,97,112,112,115,45,99,111,111,107,105,101,2,1,232,87,14,154,16,1,17,35,101,97,115,121,78,111,116,105,102,105,99,97,116,105,111,110,2,1,167,80,3,197,16,1,10,35,101,99,108,95,111,117,116,101,114,2,1,199,222,127,189,16,1,5,35,101,99,109,114,2,1,131,161,133,143,16,1,17,35,101,105,98,45,112,111,112,117,112,45,112,111,108,105,99,121,2,1,160,163,253,225,16,1,28,35,101,108,101,109,101,110,116,111,114,45,112,111,112,117,112,45,109,111,100,97,108,45,49,54,55,56,49,2,1,227,33,244,132,16,1,16,35,101,109,67,111,111,107,105,101,87,114,97,112,112,101,114,2,1,50,22,245,210,16,1,17,35,101,110,106,111,121,83,111,109,101,67,111,111,107,105,101,115,2,1,173,211,6,128,16,1,35,35,101,110,108,105,118,121,45,107,105,116,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,2,1,126,155,10,2,16,1,15,35,101,110,116,101,114,83,105,116,101,77,111,100,97,108,2,1,56,147,120,105,16,1,28,35,101,110,116,114,121,45,99,111,110,116,101,110,116,95,95,102,111,111,116,101,114,45,112,111,112,117,112,2,1,38,157,176,41,16,1,13,35,101,112,45,99,111,110,116,97,105,110,101,114,2,1,233,79,221,243,16,1,4,35,101,112,98,2,7,51,158,99,180,86,103,250,120,87,193,19,12,126,243,116,92,134,169,69,163,148,186,130,170,148,193,134,49,16,1,7,35,101,116,114,112,111,112,2,1,79,188,255,171,16,1,23,35,101,117,95,99,111,111,107,105,101,95,105,110,115,116,114,117,99,116,105,111,110,115,2,1,10,115,9,78,16,1,20,35,101,117,114,111,112,101,95,99,111,111,107,105,101,115,95,115,105,104,116,2,1,62,42,140,141,16,1,23,35,101,120,112,97,110,100,101,114,45,104,101,97,100,101,114,45,116,101,97,115,101,114,2,1,57,1,75,85,16,1,5,35,102,97,100,101,2,1,148,193,181,139,16,1,13,35,102,101,101,100,98,97,99,107,45,98,97,114,2,1,245,48,53,200,16,1,23,35,102,105,100,101,115,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,2,36,226,56,191,146,136,208,33,16,1,14,35,102,105,100,101,115,45,111,118,101,114,108,97,121,2,1,203,80,115,129,16,1,13,35,102,105,120,101,100,45,102,111,111,116,101,114,2,1,230,175,199,189,16,1,12,35,102,105,120,101,100,70,111,111,116,101,114,2,1,140,204,121,235,16,1,21,35,102,108,111,97,116,45,118,101,114,116,105,99,97,108,45,112,97,110,101,108,2,1,108,74,161,145,16,1,13,35,102,111,111,116,77,115,103,89,111,100,105,122,2,1,128,135,57,229,16,1,7,35,102,111,111,116,101,114,2,3,4,198,57,255,28,135,0,154,159,39,33,197,16,1,21,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,117,250,81,66,16,1,14,35,102,111,111,116,101,114,45,109,97,105,108,101,114,2,1,170,81,57,134,16,1,15,35,102,111,111,116,101,114,45,109,101,115,115,97,103,101,2,1,171,31,245,239,16,1,15,35,102,111,111,116,101,114,45,111,118,101,114,108,97,121,2,1,79,154,223,70,16,1,10,35,102,111,111,116,101,114,68,79,77,2,1,130,241,84,9,16,1,14,35,102,111,111,116,101,114,87,105,100,103,101,116,115,2,1,99,205,254,154,16,1,15,35,102,111,111,116,101,114,95,103,111,111,100,95,105,100,2,1,84,247,43,51,16,1,15,35,102,111,111,116,101,114,95,111,118,101,114,108,97,121,2,1,126,4,172,230,16,1,8,35,102,111,111,116,101,114,114,2,1,13,104,27,59,16,1,12,35,102,111,114,109,45,112,111,112,117,112,115,2,1,148,176,192,250,16,1,17,35,102,114,101,95,99,111,111,107,105,101,95,109,111,100,97,108,2,1,141,126,153,33,16,1,12,35,102,114,111,115,109,111,80,111,112,117,112,2,1,54,19,76,206,16,1,3,35,102,116,2,1,190,210,148,161,16,1,30,35,102,117,108,108,95,115,99,114,101,101,110,95,100,105,118,95,99,111,111,107,105,101,115,95,108,97,121,101,114,2,1,137,228,27,156,16,1,19,35,102,117,108,108,115,99,114,101,101,110,45,111,118,101,114,108,97,121,2,1,247,55,42,202,16,1,36,35,103,98,32,62,32,100,105,118,91,115,116,121,108,101,42,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,34,93,2,1,207,20,153,51,16,1,25,35,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,126,83,1,32,16,1,15,35,103,100,112,114,66,97,110,110,101,114,82,111,111,116,2,1,156,203,199,85,16,1,22,35,103,100,112,114,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,2,1,60,67,201,224,16,1,22,35,103,100,112,114,95,99,111,111,107,105,101,45,109,97,105,110,87,114,97,112,112,2,1,16,95,181,31,16,1,11,35,103,100,112,114,95,110,111,116,101,115,2,1,23,109,57,230,16,1,7,35,103,100,112,114,98,120,2,2,20,194,156,179,199,72,99,161,16,1,12,35,103,108,111,98,97,108,101,114,114,111,114,2,1,127,4,122,234,16,1,19,35,103,108,111,98,97,108,110,111,116,105,102,105,99,97,116,105,111,110,2,1,32,194,113,206,16,1,8,35,103,114,101,121,111,117,116,2,1,100,122,5,83,16,1,10,35,103,114,111,119,108,115,45,98,114,2,1,133,161,172,123,16,1,8,35,103,117,97,99,66,103,50,2,1,105,36,157,117,16,1,18,35,103,117,105,95,99,111,111,107,105,101,95,112,111,108,105,99,121,2,1,103,107,8,13,16,1,18,35,104,101,97,100,101,114,45,112,111,112,117,112,45,105,110,102,111,2,1,153,63,27,126,16,1,17,35,104,101,97,100,101,114,49,95,111,118,101,114,108,97,121,50,2,1,3,186,16,189,16,1,14,35,104,101,97,100,101,114,95,104,105,103,104,101,114,2,1,61,75,212,43,16,1,15,35,104,101,97,100,101,114,95,109,101,115,115,97,103,101,2,1,65,225,206,194,16,1,18,35,104,101,97,100,101,114,98,97,114,95,112,114,105,118,97,99,121,2,1,126,57,87,81,16,1,9,35,104,101,108,108,111,98,97,114,2,1,69,148,225,240,16,1,20,35,104,101,114,111,101,115,112,114,111,102,105,108,101,45,97,108,101,114,116,2,1,194,228,81,253,16,1,7,35,104,105,100,101,109,101,2,1,94,99,144,163,16,1,15,35,104,111,109,101,86,105,115,105,116,80,111,112,117,112,2,1,244,41,207,226,16,1,26,35,104,115,45,101,117,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,2,1,228,123,234,223,16,1,16,35,104,119,45,99,111,111,107,105,101,45,97,108,101,114,116,2,1,193,58,148,108,16,1,5,35,105,98,111,120,2,1,158,32,155,87,16,1,3,35,105,99,2,1,72,131,61,83,16,1,27,35,105,99,101,103,114,97,109,95,109,101,115,115,97,103,101,115,95,99,111,110,116,97,105,110,101,114,2,1,106,23,55,191,16,1,17,35,105,109,112,111,114,116,97,110,116,45,110,111,116,105,99,101,2,5,0,113,152,109,92,192,45,133,109,231,231,56,231,76,117,34,246,162,37,91,16,1,9,35,105,110,102,111,45,98,97,114,2,1,171,53,103,158,16,1,11,35,105,110,102,111,45,109,111,100,97,108,2,1,2,108,177,28,16,1,8,35,105,110,102,111,66,97,114,2,1,209,6,0,230,16,1,16,35,105,110,102,111,95,49,54,53,54,55,49,56,54,50,54,2,1,207,144,193,206,16,1,8,35,105,110,102,111,98,97,114,2,1,33,6,151,119,16,1,23,35,105,110,106,101,99,116,101,100,95,99,111,111,107,105,101,95,110,111,116,105,99,101,2,1,0,28,121,78,16,1,6,35,105,110,110,101,114,2,1,145,159,144,250,16,1,18,35,105,117,98,101,110,100,97,45,99,115,45,98,97,110,110,101,114,2,1,151,116,10,166,16,1,27,35,106,98,45,110,111,116,105,102,105,99,97,116,105,111,110,115,45,99,111,110,116,97,105,110,101,114,2,1,229,6,212,131,16,1,28,35,106,109,115,95,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,115,99,114,101,101,110,2,1,38,157,61,109,16,1,25,35,106,115,45,83,73,69,87,83,49,108,105,98,45,104,101,97,100,101,114,45,66,97,115,101,2,1,51,18,194,210,16,1,18,35,106,115,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,254,125,73,131,16,1,19,35,106,115,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,2,1,171,22,32,193,16,1,11,35,106,115,45,99,111,111,107,105,101,115,2,1,22,30,253,137,16,1,10,35,106,115,45,102,111,111,116,101,114,2,1,127,13,188,221,16,1,25,35,106,115,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,110,110,101,114,2,1,208,96,223,68,16,1,14,35,106,115,45,115,116,105,99,107,121,104,101,97,100,2,1,229,196,177,91,16,1,7,35,106,115,71,68,82,80,2,1,70,199,201,161,16,1,23,35,106,115,95,100,97,116,97,78,110,111,116,105,99,101,66,97,99,107,100,114,111,112,2,1,56,58,42,232,16,1,19,35,106,115,95,100,97,116,97,78,110,111,116,105,99,101,66,116,110,115,2,1,56,58,42,232,16,1,20,35,106,117,110,111,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,2,111,249,244,30,133,167,177,255,16,1,22,35,107,101,116,99,104,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,2,1,171,135,82,131,16,1,23,35,107,116,45,108,97,121,111,117,116,45,105,100,95,101,51,99,52,56,101,45,101,52,2,1,21,91,117,204,16,1,13,35,108,97,110,121,97,114,100,95,114,111,111,116,2,1,179,15,115,213,16,1,20,35,108,98,103,97,110,97,108,121,116,105,99,115,67,111,111,107,105,101,115,2,1,30,174,40,32,16,1,13,35,108,101,103,97,108,45,110,111,116,105,99,101,2,1,173,216,122,179,16,1,19,35,108,101,103,97,108,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,151,213,11,76,16,1,16,35,108,101,103,97,108,76,105,103,104,116,66,108,111,99,107,2,1,20,218,141,182,16,1,9,35,108,101,103,97,108,98,97,114,2,1,38,157,140,187,16,1,14,35,108,101,103,97,108,99,111,110,99,101,114,110,115,2,1,202,38,48,167,16,1,13,35,108,105,115,116,45,98,117,105,108,100,101,114,2,1,17,65,79,74,16,1,14,35,108,105,120,88,79,45,99,111,111,107,105,101,115,2,1,146,115,187,40,16,1,8,35,108,111,97,100,105,110,103,2,1,35,188,171,184,16,1,10,35,108,111,103,103,101,100,98,97,114,2,1,172,134,138,217,16,1,6,35,108,121,99,111,107,2,1,80,240,183,92,16,1,19,35,109,97,115,116,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,38,157,108,57,16,1,11,35,109,98,99,45,112,111,108,105,99,121,2,1,247,76,201,190,16,1,11,35,109,99,95,116,111,112,95,98,97,114,2,1,55,207,204,195,16,1,9,35,109,99,98,45,119,114,97,112,2,4,19,26,73,70,125,165,86,94,136,239,22,8,174,237,188,148,16,1,16,35,109,100,45,99,111,111,107,105,101,110,111,116,105,99,101,2,1,160,228,118,219,16,1,13,35,109,101,101,114,107,97,116,45,119,114,97,112,2,1,60,196,60,17,16,1,8,35,109,101,115,115,97,103,101,2,5,38,157,170,60,91,24,202,123,92,44,154,175,104,221,178,234,245,29,55,226,16,1,11,35,109,101,115,115,97,103,101,66,97,114,2,1,81,246,76,217,16,1,9,35,109,101,115,115,97,103,101,115,2,1,237,13,40,206,16,1,14,35,109,101,115,115,97,103,101,115,45,99,111,110,116,2,1,94,179,70,99,16,1,10,35,109,103,119,99,115,67,110,116,114,2,1,66,56,153,165,16,1,13,35,109,105,45,99,111,110,116,97,105,110,101,114,2,1,226,191,16,157,16,1,29,35,109,105,115,115,107,101,121,45,103,97,45,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,97,114,2,1,182,52,124,248,16,1,20,35,109,109,95,99,99,95,109,111,100,97,108,95,111,118,101,114,108,97,121,2,1,16,253,247,217,16,1,19,35,109,111,100,97,108,45,51,118,117,102,104,101,49,56,122,48,107,100,2,1,127,64,129,76,16,1,16,35,109,111,100,97,108,45,97,103,114,101,101,109,101,110,116,2,1,127,55,89,226,16,1,17,35,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,2,1,20,202,172,247,16,1,21,35,109,111,100,97,108,45,99,97,99,104,101,95,95,111,118,101,114,108,97,121,2,1,109,1,223,223,16,1,21,35,109,111,100,97,108,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,87,122,166,180,16,1,16,35,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,104,204,196,226,16,1,11,35,109,111,100,97,108,45,109,97,115,107,2,1,246,18,233,105,16,1,14,35,109,111,100,97,108,45,111,118,101,114,108,97,121,2,2,20,202,172,247,64,164,194,251,16,1,11,35,109,111,100,97,108,45,114,111,111,116,2,1,57,187,45,152,16,1,13,35,109,111,100,97,108,67,111,110,115,101,110,116,2,1,203,127,182,97,16,1,10,35,109,111,100,97,108,77,97,105,110,2,1,64,164,194,251,16,1,16,35,109,111,100,97,108,95,99,111,110,116,97,105,110,101,114,2,1,171,13,106,51,16,1,13,35,109,115,103,66,111,120,95,101,114,114,111,114,2,1,220,205,54,105,16,1,6,35,109,115,103,98,103,2,1,45,220,181,157,16,1,11,35,109,115,103,119,114,97,112,112,101,114,2,1,93,132,27,114,16,1,19,35,109,121,45,119,101,108,99,111,109,101,45,109,101,115,115,97,103,101,2,3,23,81,226,91,116,137,184,246,198,82,168,245,16,1,8,35,109,121,65,108,101,114,116,2,1,149,32,240,85,16,1,8,35,109,121,77,111,100,97,108,2,4,107,68,125,177,127,70,21,97,154,29,69,184,160,164,11,110,16,1,7,35,110,97,118,98,97,114,2,1,182,35,187,171,16,1,3,35,110,98,2,1,171,73,174,159,16,1,8,35,110,98,97,95,116,111,115,2,1,38,157,76,97,16,1,5,35,110,101,119,115,2,1,166,85,132,10,16,1,17,35,110,101,120,116,99,114,101,66,111,116,68,105,97,108,111,103,2,1,16,182,33,185,16,1,9,35,110,102,97,77,111,100,97,108,2,2,54,219,196,194,80,23,107,80,16,1,9,35,110,102,97,80,111,112,117,112,2,2,54,219,196,194,80,23,107,80,16,1,7,35,110,111,109,110,111,109,2,1,251,217,156,112,16,1,12,35,110,111,116,105,99,101,77,111,100,97,108,2,1,252,246,69,222,16,1,12,35,110,111,116,105,99,101,80,97,110,101,108,2,1,181,51,42,25,16,1,14,35,110,111,116,105,99,101,95,98,97,110,110,101,114,2,1,38,157,25,55,16,1,14,35,110,111,116,105,99,101,100,105,118,119,114,97,112,2,1,231,103,10,228,16,1,8,35,110,111,116,105,99,101,115,2,1,167,98,208,215,16,1,13,35,110,111,116,105,102,105,99,97,116,105,111,110,2,5,34,88,75,25,62,56,103,74,93,193,224,166,191,76,88,61,252,173,111,182,16,1,18,35,110,111,116,105,102,105,99,97,116,105,111,110,45,97,114,101,97,2,1,64,197,237,153,16,1,17,35,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,2,1,1,133,168,177,16,1,18,35,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,2,1,228,160,130,25,16,1,20,35,110,111,116,105,102,105,99,97,116,105,111,110,45,102,111,111,116,101,114,2,1,172,236,226,157,16,1,19,35,110,111,116,105,102,105,99,97,116,105,111,110,45,108,101,103,97,108,2,1,38,157,25,55,16,1,27,35,110,111,116,105,102,105,99,97,116,105,111,110,45,109,115,103,45,99,111,110,116,97,105,110,101,114,2,1,216,234,166,224,16,1,21,35,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,2,1,123,172,179,48,16,1,18,35,110,111,116,105,102,105,99,97,116,105,111,110,80,111,112,117,112,2,1,171,215,41,225,16,1,14,35,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,73,92,111,165,16,1,7,35,110,111,116,105,102,121,2,2,24,81,162,123,35,25,18,146,16,1,17,35,110,111,116,105,102,121,45,99,111,110,116,97,105,110,101,114,2,6,30,53,228,114,59,173,209,98,87,16,195,149,144,207,25,56,229,255,51,187,243,130,160,192,16,1,29,35,110,111,116,121,95,98,111,116,116,111,109,95,108,97,121,111,117,116,95,99,111,110,116,97,105,110,101,114,2,1,249,94,235,88,16,1,26,35,110,111,116,121,95,108,97,121,111,117,116,95,95,98,111,116,116,111,109,67,101,110,116,101,114,2,1,110,82,91,41,16,1,25,35,110,111,116,121,95,108,97,121,111,117,116,95,95,98,111,116,116,111,109,82,105,103,104,116,2,1,134,231,142,80,16,1,23,35,110,111,118,97,112,100,102,95,97,99,99,101,112,116,95,99,111,111,107,105,101,115,2,1,76,72,30,32,16,1,18,35,110,115,99,109,115,98,111,120,98,111,120,115,105,109,112,108,101,2,1,209,228,248,145,16,1,13,35,110,116,95,99,111,110,116,97,105,110,101,114,2,1,171,32,164,45,16,1,12,35,110,118,117,45,99,111,110,115,101,110,116,2,1,202,34,137,250,16,1,24,35,110,119,104,95,102,111,111,116,101,114,95,98,97,110,110,101,114,95,108,101,103,97,108,2,1,207,165,27,176,16,1,15,35,111,98,108,105,103,97,116,105,111,110,45,98,97,114,2,1,237,79,8,129,16,1,24,35,111,102,102,99,97,110,118,97,115,67,111,111,107,105,101,115,67,111,110,115,101,110,116,2,1,99,34,92,56,16,1,3,35,111,108,2,1,152,33,98,95,16,1,9,35,111,112,116,45,102,111,114,109,2,1,128,44,222,159,16,1,7,35,111,112,116,45,105,110,2,1,213,150,123,21,16,1,25,35,111,112,116,97,110,111,110,45,109,105,110,105,109,105,122,101,45,119,114,97,112,112,101,114,2,1,78,5,40,48,16,1,13,35,111,112,116,105,110,45,111,112,116,111,117,116,2,1,186,186,86,65,16,1,8,35,111,114,101,106,105,109,101,2,1,147,229,119,248,16,1,21,35,111,115,97,110,111,67,117,115,116,111,109,68,105,97,108,111,103,68,105,118,2,3,59,150,158,23,222,180,72,193,226,226,8,107,16,1,11,35,111,116,45,115,100,107,45,98,116,110,2,3,81,104,112,161,128,104,78,33,216,249,249,65,16,1,14,35,111,117,116,101,114,45,99,111,110,115,101,110,116,2,2,144,85,68,136,153,194,11,144,16,1,5,35,111,118,101,114,2,1,144,189,64,91,16,1,19,35,111,118,101,114,97,108,121,95,100,121,95,109,101,115,115,97,103,101,2,1,135,125,156,136,16,1,17,35,111,118,101,114,98,111,120,45,112,111,108,105,116,105,99,97,2,1,90,71,143,93,16,1,9,35,111,118,101,114,98,111,120,51,2,2,16,105,217,24,216,206,104,73,16,1,11,35,111,118,101,114,108,97,121,45,98,103,2,1,139,19,75,34,16,1,12,35,111,118,101,114,108,97,121,77,97,115,107,2,1,23,127,184,248,16,1,14,35,111,119,110,105,100,45,99,111,110,115,101,110,116,2,1,126,250,201,239,16,1,19,35,112,97,103,101,45,45,97,114,101,97,95,95,98,111,116,116,111,109,2,1,182,146,118,118,16,1,13,35,112,97,103,101,45,100,105,115,97,98,108,101,2,1,9,108,100,12,16,1,11,35,112,97,103,101,98,97,110,110,101,114,2,1,58,15,156,243,16,1,25,35,112,98,45,110,97,118,98,97,114,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,2,1,124,222,184,25,16,1,9,35,112,100,102,101,95,99,109,112,2,1,159,124,143,95,16,1,21,35,112,104,111,98,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,120,60,40,116,16,1,23,35,112,105,95,116,114,97,99,107,105,110,103,95,111,112,116,95,105,110,95,100,105,118,2,1,12,54,40,11,16,1,23,35,112,105,101,110,115,97,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,2,1,251,230,230,138,16,1,9,35,112,105,120,101,108,112,111,112,2,1,40,13,45,232,16,1,15,35,112,108,100,110,45,100,101,101,112,45,108,105,110,107,2,1,57,219,238,22,16,1,15,35,112,108,117,103,105,110,45,99,111,110,115,101,110,116,2,1,127,222,229,125,16,1,7,35,112,111,108,103,112,114,2,1,248,152,214,14,16,1,9,35,112,111,108,105,99,105,101,115,2,1,0,0,104,138,16,1,7,35,112,111,108,105,99,121,2,3,112,75,87,60,127,117,110,200,208,55,205,100,16,1,11,35,112,111,108,105,99,121,45,98,97,114,2,1,148,181,80,105,16,1,12,35,112,111,108,105,99,121,45,105,110,102,111,2,2,194,246,56,226,249,228,123,12,16,1,15,35,112,111,108,105,99,121,45,109,101,115,115,97,103,101,2,1,129,82,11,196,16,1,20,35,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,65,237,17,214,16,1,15,35,112,111,108,105,99,121,95,119,114,97,112,112,101,114,2,1,38,157,76,97,16,1,16,35,112,111,108,105,99,121,99,111,110,116,97,105,110,101,114,2,3,15,113,30,5,192,131,161,2,241,168,229,233,16,1,9,35,112,111,108,105,116,105,99,97,2,1,1,124,117,21,16,1,7,35,112,111,112,45,117,112,2,1,253,103,195,179,16,1,14,35,112,111,112,45,117,112,45,102,111,111,116,101,114,2,1,239,111,190,164,16,1,11,35,112,111,112,95,119,104,111,108,101,115,2,1,93,39,185,155,16,1,14,35,112,111,112,95,119,104,111,108,101,115,95,98,103,2,1,93,39,185,155,16,1,18,35,112,111,112,105,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,31,89,158,216,16,1,10,35,112,111,112,105,65,108,101,114,116,2,1,1,4,236,4,16,1,15,35,112,111,112,109,97,107,101,45,51,55,56,49,52,57,2,1,97,155,181,104,16,1,16,35,112,111,112,117,112,45,98,111,120,45,116,101,114,109,115,2,1,17,65,79,74,16,1,7,35,112,111,112,117,112,49,2,1,82,39,15,77,16,1,12,35,112,111,112,117,112,98,97,110,110,101,114,2,1,234,232,200,255,16,1,10,35,112,112,45,102,111,111,116,101,114,2,1,153,39,63,252,16,1,8,35,112,112,45,105,110,102,111,2,2,55,178,0,195,148,196,54,167,16,1,5,35,112,112,95,98,2,2,7,79,41,89,18,200,164,154,16,1,8,35,112,112,95,105,110,102,111,2,2,127,141,217,77,128,97,98,252,16,1,11,35,112,112,95,111,118,101,114,108,97,121,2,2,127,141,217,77,128,97,98,252,16,1,13,35,112,112,116,111,117,45,115,116,105,99,107,121,2,1,61,40,203,254,16,1,12,35,112,114,97,106,105,116,117,114,101,108,101,2,1,46,171,36,206,16,1,10,35,112,114,101,108,111,97,100,101,114,2,1,44,223,90,149,16,1,18,35,112,114,101,115,116,105,116,105,97,108,45,104,97,110,100,108,101,2,1,242,197,89,199,16,1,8,35,112,114,105,118,97,99,121,2,6,127,222,229,124,158,99,117,81,177,135,51,28,195,241,53,30,198,8,159,186,210,221,70,218,16,1,18,35,112,114,105,118,97,99,121,45,97,103,114,101,101,109,101,110,116,2,1,91,81,130,167,16,1,16,35,112,114,105,118,97,99,121,45,99,104,111,105,99,101,115,2,1,15,96,232,60,16,1,23,35,112,114,105,118,97,99,121,45,99,104,111,105,99,101,115,45,98,97,110,110,101,114,2,1,59,241,98,89,16,1,20,35,112,114,105,118,97,99,121,45,100,97,116,97,45,110,111,116,105,99,101,2,1,32,202,47,124,16,1,12,35,112,114,105,118,97,99,121,45,100,105,118,2,1,226,15,65,51,16,1,15,35,112,114,105,118,97,99,121,45,104,101,97,100,101,114,2,1,51,18,194,210,16,1,16,35,112,114,105,118,97,99,121,45,109,97,110,97,103,101,114,2,1,41,208,31,171,16,1,22,35,112,114,105,118,97,99,121,45,109,97,110,97,103,101,114,45,112,111,112,105,110,2,1,71,51,110,153,16,1,16,35,112,114,105,118,97,99,121,45,109,101,115,115,97,103,101,2,1,14,107,203,107,16,1,14,35,112,114,105,118,97,99,121,45,109,111,100,97,108,2,2,17,107,167,89,91,213,167,92,16,1,15,35,112,114,105,118,97,99,121,45,110,111,116,105,99,101,2,3,111,229,82,7,120,48,152,127,160,163,240,118,16,1,21,35,112,114,105,118,97,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,103,187,161,19,16,1,15,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,2,3,24,31,8,88,176,103,203,117,187,194,29,112,16,1,25,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,2,1,171,127,201,19,16,1,22,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,114,111,109,112,116,2,1,191,119,218,75,16,1,22,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,115,116,105,99,107,121,2,1,81,161,61,81,16,1,18,35,112,114,105,118,97,99,121,45,112,111,112,117,112,45,109,115,103,2,1,198,205,141,184,16,1,24,35,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,45,112,114,111,109,112,116,2,1,28,208,131,57,16,1,16,35,112,114,105,118,97,99,121,45,119,97,114,110,105,110,103,2,1,117,61,119,88,16,1,11,35,112,114,105,118,97,99,121,68,105,118,2,1,55,5,7,88,16,1,14,35,112,114,105,118,97,99,121,78,111,116,105,99,101,2,1,209,140,191,91,16,1,24,35,112,114,105,118,97,99,121,80,111,108,105,99,121,65,99,99,101,112,116,70,111,114,109,2,1,143,101,160,90,16,1,14,35,112,114,105,118,97,99,121,85,112,100,97,116,101,2,2,184,189,255,149,215,13,157,81,16,1,16,35,112,114,105,118,97,99,121,95,99,111,110,116,101,110,116,2,1,110,73,232,36,16,1,12,35,112,114,105,118,97,99,121,95,109,115,103,2,1,120,23,38,163,16,1,21,35,112,114,105,118,97,99,121,95,110,111,116,105,102,105,99,97,116,105,111,110,2,1,33,21,39,109,16,1,13,35,112,114,105,118,97,99,121,99,104,101,99,107,2,1,61,147,104,233,16,1,14,35,112,114,105,118,97,99,121,109,111,100,117,108,101,2,1,148,176,187,163,16,1,15,35,112,114,105,118,97,99,121,111,118,101,114,108,97,121,2,1,209,189,174,171,16,1,15,35,112,114,105,118,97,99,121,119,97,114,110,105,110,103,2,1,54,202,95,154,16,1,12,35,112,114,105,118,109,101,115,115,97,103,101,2,1,91,24,202,123,16,1,11,35,112,114,111,45,98,97,110,110,101,114,2,1,2,205,43,55,16,1,4,35,112,114,118,2,1,106,164,61,198,16,1,9,35,112,114,118,99,121,112,111,112,2,1,224,37,227,49,16,1,11,35,112,114,118,99,121,112,111,112,95,52,2,1,151,188,174,26,16,1,16,35,114,98,95,99,111,111,107,105,101,95,112,111,112,117,112,2,1,19,39,213,112,16,1,9,35,114,99,68,114,97,119,101,114,2,1,255,132,211,43,16,1,21,35,114,101,97,99,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,49,158,14,154,16,1,20,35,114,101,97,100,101,100,95,99,111,110,116,114,97,99,116,95,114,111,119,2,1,178,216,27,86,16,1,20,35,114,103,45,117,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,101,203,34,228,16,1,15,35,114,103,112,100,45,97,115,107,45,112,111,112,105,110,2,1,207,116,104,202,16,1,7,35,114,105,98,98,111,110,2,1,55,78,106,50,16,1,20,35,114,105,99,111,99,104,101,116,45,99,111,111,107,105,101,45,98,97,114,2,1,254,89,136,233,16,1,40,35,114,111,111,116,32,62,32,100,105,118,58,102,105,114,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,2,1,57,100,238,42,16,1,5,35,114,112,99,109,2,1,184,47,145,61,16,1,17,35,114,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,175,145,111,3,16,1,4,35,114,115,112,2,1,31,188,189,102,16,1,16,35,115,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,0,75,179,109,16,1,8,35,115,45,109,111,100,97,108,2,1,2,155,72,19,16,1,19,35,115,97,110,105,116,97,115,67,111,111,107,105,101,65,108,101,114,116,2,1,188,202,130,147,16,1,17,35,115,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,228,160,63,18,16,1,31,35,115,101,99,116,105,111,110,115,45,102,111,111,116,101,114,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,176,84,42,21,16,1,21,35,115,101,101,71,100,112,114,67,111,111,107,105,101,67,111,110,115,101,110,116,2,1,248,14,112,152,16,1,8,35,115,102,119,45,109,115,103,2,1,93,164,40,52,16,1,14,35,115,103,99,98,111,120,87,114,97,112,112,101,114,2,1,94,250,55,151,16,1,11,35,115,103,99,111,108,111,114,98,111,120,2,1,184,0,26,114,16,1,13,35,115,104,101,110,103,109,105,110,103,84,105,112,2,1,145,9,234,75,16,1,19,35,115,104,111,112,105,102,121,45,112,99,95,95,98,97,110,110,101,114,2,1,71,239,123,101,16,1,30,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,3,57,159,126,243,152,123,24,125,160,66,50,86,16,1,27,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,45,98,97,114,2,1,181,209,140,48,16,1,29,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,45,109,111,100,97,108,2,1,85,131,202,131,16,1,29,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,69,177,159,197,16,1,32,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,2,1,105,106,120,124,16,1,30,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,102,105,120,101,100,45,109,101,115,115,97,103,101,2,3,58,94,84,204,64,15,4,145,177,127,246,175,16,1,22,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,112,111,112,117,112,2,1,191,170,200,194,16,1,30,35,115,104,111,112,117,105,45,99,111,111,107,105,101,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,113,233,101,74,16,1,15,35,115,104,111,119,70,84,67,77,101,115,115,97,103,101,2,1,72,177,244,131,16,1,20,35,115,104,111,119,70,84,67,77,101,115,115,97,103,101,45,98,97,99,107,2,1,72,177,244,131,16,1,14,35,115,105,100,45,99,111,110,116,97,105,110,101,114,2,1,194,198,23,153,16,1,21,35,115,105,100,101,78,111,116,105,102,105,99,97,116,105,111,110,90,111,110,101,2,1,167,19,78,75,16,1,27,35,115,105,109,112,108,101,45,110,111,116,105,99,101,45,119,114,97,112,45,99,111,110,116,101,110,116,2,1,129,216,241,49,16,1,20,35,115,105,109,112,108,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,1,157,136,188,16,1,22,35,115,105,109,112,108,101,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,160,164,24,188,16,1,20,35,115,105,109,112,108,101,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,154,34,216,46,16,1,13,35,115,105,116,101,45,111,118,101,114,108,97,121,2,1,5,62,93,45,16,1,24,35,115,105,116,101,45,119,105,100,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,39,241,159,55,16,1,23,35,115,105,116,101,45,119,105,100,101,45,108,101,103,97,108,45,110,111,116,105,99,101,2,1,101,120,136,187,16,1,17,35,115,105,116,101,77,115,103,83,108,105,100,101,85,112,66,71,2,1,89,100,133,7,16,1,15,35,115,106,98,45,117,101,45,99,111,111,107,105,101,115,2,1,33,148,203,159,16,1,23,35,115,107,99,109,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,2,1,174,164,136,177,16,1,19,35,115,108,105,100,101,45,117,112,45,99,111,110,116,97,105,110,101,114,2,1,127,117,85,132,16,1,7,35,115,108,105,100,101,114,2,1,50,198,224,7,16,1,9,35,115,110,97,99,107,98,97,114,2,2,55,171,73,131,69,174,148,214,16,1,19,35,115,110,97,99,107,98,97,114,45,99,111,110,116,97,105,110,101,114,2,3,19,247,118,139,98,58,14,118,136,166,202,122,16,1,20,35,115,110,99,45,100,97,116,97,45,100,105,115,99,108,111,115,117,114,101,2,1,127,191,227,244,16,1,17,35,115,110,112,112,111,112,117,112,45,119,101,108,99,111,109,101,2,1,3,236,171,91,16,1,18,35,115,111,102,116,77,101,115,115,97,103,101,115,45,108,105,115,116,2,1,132,6,239,238,16,1,18,35,115,111,114,116,105,110,103,80,114,101,102,101,114,101,110,99,101,2,1,113,100,97,249,16,1,13,35,115,112,108,97,115,104,115,99,114,101,101,110,2,1,208,247,174,62,16,1,11,35,115,112,111,112,117,112,67,111,110,116,2,2,161,24,187,219,251,242,168,134,16,1,7,35,115,115,111,98,97,114,2,1,209,122,151,47,16,1,18,35,115,116,97,116,105,99,45,99,111,111,107,105,101,45,98,97,114,2,1,37,119,151,134,16,1,19,35,115,116,105,99,107,45,102,111,111,116,101,114,45,112,97,110,101,108,2,1,254,40,99,17,16,1,7,35,115,116,105,99,107,121,2,1,2,234,118,142,16,1,11,35,115,116,105,99,107,121,45,98,97,114,2,1,51,235,238,15,16,1,19,35,115,116,105,99,107,121,45,98,97,114,45,119,114,97,112,112,101,114,2,1,126,8,240,210,16,1,13,35,115,116,105,99,107,121,45,112,111,112,117,112,2,3,37,167,84,255,73,3,67,167,98,0,97,96,16,1,15,35,115,116,111,114,97,103,101,45,110,111,116,105,99,101,2,1,112,8,241,113,16,1,19,35,115,116,114,97,118,97,67,111,111,107,105,101,66,97,110,110,101,114,2,1,99,68,223,159,16,1,15,35,115,116,114,101,97,109,105,102,121,45,103,100,112,114,2,1,19,238,8,45,16,1,18,35,116,97,114,116,101,97,117,99,105,116,114,111,110,82,111,111,116,2,1,133,173,45,129,16,1,23,35,116,97,116,115,117,45,104,101,97,100,101,114,45,99,111,110,116,97,105,110,101,114,2,1,224,250,67,190,16,1,23,35,116,97,119,32,62,32,100,105,118,32,62,32,91,100,97,116,97,45,118,101,100,93,2,64,3,72,216,139,6,166,164,156,6,198,100,184,12,18,58,115,13,185,241,147,15,171,145,27,15,250,36,121,24,126,113,57,26,95,191,185,28,19,19,53,29,60,165,77,31,95,52,221,36,12,127,229,36,229,81,100,46,242,180,11,52,135,120,15,55,211,183,17,56,60,70,171,59,93,198,144,62,103,215,201,63,34,96,149,63,81,71,251,64,206,183,187,72,103,87,85,84,198,170,46,85,85,109,156,86,18,88,41,86,114,242,155,86,244,66,182,87,205,250,216,94,185,148,62,98,50,254,112,100,16,26,123,102,27,154,48,107,236,201,47,110,179,111,50,117,9,111,0,122,47,93,232,130,50,141,218,133,224,147,65,145,149,122,102,152,1,26,100,152,13,220,66,158,82,140,165,160,212,16,58,172,36,156,208,174,147,36,59,183,73,70,89,191,14,137,67,192,222,35,204,193,25,57,108,204,19,128,230,208,24,100,61,208,231,38,163,209,44,200,27,210,38,56,28,210,228,80,31,210,244,62,121,211,117,238,42,214,129,87,123,229,74,154,114,232,223,192,206,241,161,12,171,251,156,20,221,16,1,6,35,116,101,114,109,115,2,2,55,231,224,195,190,25,1,254,16,1,21,35,116,101,114,109,115,45,97,110,100,45,99,111,110,100,105,116,105,111,110,115,2,1,94,234,8,127,16,1,10,35,116,101,114,109,115,45,98,97,114,2,2,152,77,67,247,237,185,163,71,16,1,21,35,116,101,114,109,115,45,109,101,115,115,97,103,101,45,114,101,103,105,111,110,2,6,54,30,143,140,125,13,135,40,210,89,175,234,210,104,36,128,233,154,123,107,245,49,23,196,16,1,17,35,116,101,114,109,115,45,119,114,97,112,112,101,114,45,105,100,2,1,137,171,177,235,16,1,16,35,116,101,114,109,115,95,99,111,110,116,97,105,110,101,114,2,1,133,175,237,213,16,1,14,35,116,101,114,109,115,97,110,100,99,111,110,100,115,2,1,83,193,96,32,16,1,11,35,116,101,115,116,95,97,108,101,114,116,2,1,105,144,152,255,16,1,8,35,116,101,120,116,66,111,120,2,1,95,149,45,219,16,1,6,35,116,102,97,100,101,2,1,215,149,81,96,16,1,17,35,116,105,108,101,45,103,100,112,114,45,98,97,110,110,101,114,2,2,28,244,136,208,209,226,89,13,16,1,7,35,116,108,105,103,104,116,2,1,215,149,81,96,16,1,12,35,116,109,112,95,99,111,111,107,105,101,115,2,1,114,162,115,160,16,1,14,35,116,109,112,95,108,111,99,97,108,95,98,97,114,2,1,225,251,19,185,16,1,6,35,116,111,97,115,116,2,2,24,83,255,102,233,75,73,45,16,1,8,35,116,111,111,108,98,97,114,2,2,48,53,224,74,88,232,166,199,16,1,22,35,116,111,112,45,98,97,110,110,101,114,45,105,110,45,99,111,110,116,101,110,116,2,1,176,34,200,42,16,1,11,35,116,111,112,45,110,111,116,105,99,101,2,1,12,88,120,62,16,1,11,35,116,111,112,95,110,111,116,105,99,101,2,1,40,238,47,250,16,1,7,35,116,111,112,98,97,114,2,1,223,207,193,4,16,1,11,35,116,111,115,45,98,97,110,110,101,114,2,2,115,58,172,241,129,14,24,43,16,1,8,35,116,111,115,45,98,97,114,2,1,163,58,102,72,16,1,16,35,116,111,115,95,117,112,100,97,116,101,95,98,97,110,100,2,1,96,86,27,107,16,1,10,35,116,112,45,99,111,111,107,105,101,2,1,137,253,140,149,16,1,15,35,116,114,97,99,107,105,110,103,45,109,111,100,97,108,2,1,91,143,20,184,16,1,15,35,116,114,97,99,107,105,110,103,45,112,111,112,117,112,2,1,23,99,205,253,16,1,16,35,116,114,97,99,107,105,110,103,109,101,115,115,97,103,101,2,1,193,210,27,31,16,1,17,35,117,99,110,45,103,100,112,114,45,111,118,101,114,108,97,121,2,1,155,131,153,174,16,1,3,35,117,101,2,1,74,98,19,103,16,1,21,35,117,109,97,32,62,32,100,105,118,32,62,32,46,109,101,115,115,97,103,101,2,1,104,78,245,96,16,1,14,35,117,115,97,103,101,45,109,101,116,114,105,99,115,2,2,10,102,12,240,189,119,95,202,16,1,21,35,117,115,97,103,101,45,109,101,116,114,105,99,115,45,110,111,116,105,99,101,2,1,189,119,95,202,16,1,13,35,117,115,97,103,101,95,110,111,116,105,99,101,2,1,101,143,207,84,16,1,46,35,117,115,101,114,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,45,98,105,110,97,114,121,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,2,4,18,99,14,104,47,255,240,80,50,178,81,13,91,70,163,124,16,1,48,35,117,115,101,114,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,45,103,114,97,110,117,108,97,114,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,2,1,148,193,35,81,16,1,16,35,117,115,101,114,95,100,105,115,99,108,97,105,109,101,114,2,1,31,68,121,213,16,1,11,35,117,115,101,114,95,112,111,112,117,112,2,1,126,239,65,55,16,1,11,35,117,115,101,114,112,114,111,109,112,116,2,1,247,87,182,143,16,1,14,35,117,115,105,110,103,45,99,111,111,107,105,101,115,2,1,40,244,33,173,16,1,17,35,118,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,116,54,163,0,16,1,15,35,118,99,118,45,116,111,112,45,98,97,110,110,101,114,2,1,240,231,165,33,16,1,26,35,118,101,114,115,105,111,110,105,122,101,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,235,140,155,23,16,1,7,35,118,102,45,112,111,112,2,1,204,147,223,79,16,1,19,35,118,105,118,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,148,186,130,176,16,1,27,35,118,117,101,45,97,112,112,32,62,32,46,118,95,98,103,92,58,112,101,97,99,104,45,51,48,48,2,1,88,148,116,179,16,1,12,35,119,97,114,110,105,110,103,45,98,97,114,2,1,90,198,29,165,16,1,14,35,119,97,114,110,105,110,103,45,112,111,112,117,112,2,1,126,243,231,171,16,1,17,35,119,98,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,25,206,78,69,16,1,20,35,119,101,98,115,105,116,101,95,99,111,111,107,105,101,115,95,98,97,114,2,1,83,121,94,154,16,1,8,35,119,101,108,99,111,109,101,2,1,248,160,184,243,16,1,11,35,119,101,108,99,111,109,101,77,115,103,2,1,244,203,207,246,16,1,16,35,119,112,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,94,192,120,93,16,1,9,35,119,112,99,103,45,98,111,120,2,1,70,139,64,170,16,1,14,35,119,112,116,98,104,101,97,100,108,105,110,101,49,2,1,101,103,85,181,16,1,21,35,119,112,120,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,2,1,247,76,161,189,16,1,8,35,119,114,97,112,112,101,114,2,1,148,186,151,254,16,1,21,35,119,114,97,112,112,101,114,95,99,111,111,107,105,101,98,97,110,110,101,114,2,1,115,193,197,196,16,1,19,35,119,121,122,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,148,186,116,37,16,1,16,35,120,114,105,95,71,111,111,103,67,111,110,115,101,110,116,2,1,187,65,83,183,16,1,22,35,122,100,112,114,105,118,97,99,121,45,99,111,110,116,101,110,116,45,110,101,119,2,1,199,252,67,142,8,1,21,46,45,97,108,101,114,116,46,45,102,105,120,101,100,46,110,111,116,105,99,101,2,1,16,43,14,59,8,1,16,46,45,102,111,111,116,101,114,95,95,110,111,116,105,99,101,2,2,76,122,93,67,210,120,97,242,8,1,18,46,45,108,101,102,116,46,110,104,108,45,99,45,116,111,97,115,116,2,1,38,156,254,70,8,1,38,46,65,103,114,101,101,67,111,111,107,105,101,80,111,108,105,99,121,95,99,111,111,107,105,101,80,111,108,105,99,121,95,95,79,85,98,101,85,2,1,240,121,228,31,8,1,6,46,65,108,101,114,116,2,1,26,223,64,66,8,1,7,46,66,97,110,110,101,114,2,1,154,21,177,7,8,1,17,46,66,97,110,110,101,114,45,115,99,45,105,111,112,111,106,114,2,1,127,216,76,199,8,1,52,46,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,95,95,67,111,110,116,97,105,110,101,114,45,109,102,101,45,104,101,97,100,101,114,95,95,115,99,45,49,97,119,52,51,121,119,45,48,2,1,126,8,240,210,8,1,14,46,66,97,110,110,101,114,77,97,110,97,103,101,114,2,1,150,58,113,136,8,1,29,46,66,97,110,110,101,114,95,95,95,83,116,121,108,101,100,70,108,101,120,45,115,102,57,103,51,100,45,48,2,1,127,55,15,72,8,1,21,46,66,97,110,110,101,114,95,98,97,110,110,101,114,95,95,68,54,88,90,57,2,1,126,250,167,136,8,1,40,46,66,97,110,110,101,114,95,99,111,111,107,105,101,115,66,97,110,110,101,114,77,111,100,97,108,79,118,101,114,108,97,121,95,95,121,52,117,67,56,2,1,109,232,16,35,8,1,7,46,66,109,117,50,54,122,2,1,254,187,34,179,8,1,13,46,66,111,116,116,111,109,66,97,110,110,101,114,2,1,154,21,177,7,8,1,28,46,66,111,116,116,111,109,70,105,120,101,100,66,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,42,132,101,155,8,1,11,46,67,66,51,57,51,95,111,112,116,115,2,1,132,101,55,141,8,1,5,46,67,67,80,65,2,1,240,188,5,253,8,1,5,46,67,100,105,118,2,1,64,196,120,200,8,1,9,46,67,111,90,57,78,117,56,90,2,2,38,157,134,124,246,197,98,136,8,1,35,46,67,111,110,115,101,110,116,66,97,110,110,101,114,95,99,111,110,115,101,110,116,66,97,110,110,101,114,95,95,98,76,101,120,86,2,1,89,215,7,32,8,1,25,46,67,111,110,115,101,110,116,87,105,100,103,101,116,95,95,99,111,110,116,97,105,110,101,114,2,2,54,249,180,102,81,0,75,130,8,1,15,46,67,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,224,101,54,240,8,1,33,46,67,111,111,107,105,101,65,103,114,101,101,86,105,101,119,95,99,111,110,116,97,105,110,101,114,95,95,113,89,97,75,51,2,1,240,133,39,246,8,1,33,46,67,111,111,107,105,101,66,97,110,110,101,114,45,109,111,100,117,108,101,95,95,119,114,97,112,45,45,49,81,75,57,116,2,1,141,64,220,155,8,1,24,46,67,111,111,107,105,101,66,111,120,95,115,97,102,101,116,121,95,95,112,116,53,65,72,2,1,146,230,143,166,8,1,45,46,67,111,111,107,105,101,67,111,109,112,111,110,101,110,116,95,95,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,45,115,99,45,116,104,102,53,108,114,45,48,2,1,55,173,119,125,8,1,29,46,67,111,111,107,105,101,67,111,110,115,101,110,116,32,62,32,46,111,45,99,111,110,116,97,105,110,101,114,2,1,38,157,49,38,8,1,25,46,67,111,111,107,105,101,67,111,110,115,101,110,116,95,95,99,111,110,116,97,105,110,101,114,2,1,179,162,124,41,8,1,36,46,67,111,111,107,105,101,67,111,110,115,101,110,116,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,110,117,76,117,73,2,1,55,73,245,52,8,1,14,46,67,111,111,107,105,101,67,111,110,116,114,111,108,2,1,253,82,0,202,8,1,32,46,67,111,111,107,105,101,77,111,100,97,108,95,109,111,100,97,108,79,118,101,114,108,97,121,95,95,85,111,98,103,79,2,1,6,15,195,45,8,1,25,46,67,111,111,107,105,101,77,111,100,97,108,95,109,111,100,97,108,95,95,107,104,88,69,121,2,1,6,15,195,45,8,1,39,46,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,95,110,111,116,105,102,105,99,97,116,105,111,110,95,95,48,78,107,114,107,2,1,148,186,3,102,8,1,16,46,67,111,111,107,105,101,80,108,97,99,101,109,101,110,116,2,1,66,100,243,16,8,1,19,46,67,111,111,107,105,101,80,111,108,105,99,121,66,97,110,110,101,114,2,1,231,57,27,36,8,1,31,46,67,111,111,107,105,101,80,111,112,85,112,95,99,111,111,107,105,101,80,111,112,85,112,95,95,50,109,66,56,81,2,1,148,186,106,88,8,1,34,46,67,111,111,107,105,101,87,105,110,100,111,119,95,95,87,114,97,112,112,101,114,45,115,99,45,117,104,100,108,112,107,45,48,2,1,190,37,224,35,8,1,30,46,67,111,111,107,105,101,115,45,109,111,100,117,108,101,45,45,99,111,111,107,105,101,45,45,50,121,100,82,51,2,1,248,29,243,225,8,1,33,46,67,111,111,107,105,101,115,65,108,101,114,116,95,99,111,111,107,105,101,115,65,108,101,114,116,95,95,51,113,83,108,49,2,1,165,4,120,51,8,1,28,46,67,111,111,107,105,101,115,65,108,101,114,116,95,119,114,97,112,112,101,114,95,95,65,108,48,104,50,2,1,151,15,168,131,8,1,27,46,67,111,111,107,105,101,115,71,68,80,82,95,105,110,105,116,105,97,108,95,95,50,101,80,78,70,2,1,134,231,234,109,8,1,36,46,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,66,116,109,79,118,101,114,108,97,121,83,116,105,99,107,121,2,2,75,78,159,71,110,57,44,120,8,1,37,46,67,111,111,107,105,101,115,80,111,108,105,99,121,45,109,111,100,117,108,101,45,45,119,114,97,112,112,101,114,45,45,56,112,72,99,97,2,1,208,117,249,219,8,1,33,46,67,111,111,107,105,101,115,80,111,112,85,112,95,67,111,111,107,105,101,115,80,111,112,85,112,95,95,122,55,98,72,118,2,1,10,181,9,48,8,1,25,46,67,111,111,107,105,101,115,80,111,112,117,112,95,114,111,111,116,95,95,104,95,109,52,106,2,1,38,153,118,116,8,1,10,46,67,121,98,111,116,69,100,103,101,2,2,52,233,141,87,194,170,224,8,8,1,25,46,68,105,115,99,108,111,115,117,114,101,80,111,112,117,112,67,111,110,116,97,105,110,101,114,2,2,67,199,87,18,188,26,9,131,8,1,6,46,69,81,82,108,106,2,1,125,95,99,54,8,1,21,46,69,106,85,85,79,76,89,111,51,116,67,114,99,54,106,55,77,97,112,118,2,1,173,133,232,123,8,1,23,46,70,101,97,116,117,114,101,66,97,114,95,114,111,111,116,95,95,95,73,78,85,56,2,1,35,222,163,98,8,1,59,46,70,101,97,116,117,114,101,66,97,114,95,114,111,111,116,95,95,103,89,113,105,49,46,116,114,97,110,115,102,111,114,109,46,116,114,97,110,115,108,97,116,101,45,121,45,48,46,111,112,97,99,105,116,121,45,49,48,48,2,1,129,61,52,147,8,1,29,46,70,108,111,97,116,105,110,103,66,111,120,101,115,67,111,110,116,97,105,110,101,114,66,111,116,116,111,109,2,1,56,99,141,55,8,1,30,46,70,111,111,116,101,114,45,109,111,100,117,108,101,45,45,99,111,110,115,101,110,116,45,45,97,53,48,101,50,2,1,13,155,217,248,8,1,13,46,70,111,111,116,101,114,78,111,116,105,99,101,2,1,36,18,38,19,8,1,22,46,70,111,111,116,101,114,95,99,111,111,107,105,101,115,95,95,51,95,103,69,104,2,1,32,25,141,251,8,1,6,46,70,113,86,101,65,2,1,14,48,174,175,8,1,5,46,71,68,80,82,2,3,31,73,232,88,189,6,102,222,209,171,189,83,8,1,22,46,71,68,80,82,80,97,110,101,108,95,114,111,111,116,95,95,77,104,99,106,66,2,1,17,58,36,144,8,1,31,46,71,68,80,82,80,111,112,117,112,45,109,111,100,117,108,101,45,45,112,111,112,117,112,45,45,51,99,104,106,109,2,1,85,131,251,115,8,1,17,46,71,68,80,82,95,109,97,105,110,95,95,102,120,109,70,102,2,1,194,125,50,175,8,1,22,46,71,100,112,114,79,102,102,101,114,95,98,108,111,99,107,95,73,114,52,107,74,2,1,90,40,220,146,8,1,21,46,71,100,112,114,79,102,102,101,114,95,114,111,111,116,95,112,67,117,79,79,2,1,90,40,220,146,8,1,36,46,71,100,112,114,95,95,71,100,112,114,80,97,114,101,110,116,87,114,97,112,112,101,114,45,115,99,45,122,51,48,109,99,108,45,48,2,1,36,97,237,104,8,1,34,46,72,65,83,72,95,67,79,79,75,73,69,95,65,76,69,82,84,95,71,82,73,68,95,73,84,69,77,95,70,73,88,69,68,2,1,126,171,187,56,8,1,30,46,72,101,97,100,101,114,77,101,110,117,95,67,111,111,107,105,101,65,108,101,114,116,95,95,105,112,69,102,75,2,1,96,249,72,167,8,1,23,46,72,111,109,101,112,97,103,101,95,98,97,110,110,101,114,95,95,66,111,50,81,73,2,1,139,159,14,124,8,1,6,46,72,122,80,104,78,2,1,111,120,157,197,8,1,41,46,73,110,115,116,97,108,108,80,114,111,109,111,116,105,111,110,95,99,111,111,107,105,101,45,112,114,111,109,111,116,105,111,110,95,95,108,82,105,50,53,2,1,86,42,90,62,0,1,27,46,74,55,53,82,105,86,74,84,120,103,66,106,71,119,120,103,69,49,122,45,76,103,92,61,92,61,2,1,238,192,250,162,8,1,9,46,75,87,66,97,110,110,101,114,2,1,194,197,253,44,8,1,28,46,76,97,121,111,117,116,95,109,97,105,110,67,111,111,107,105,101,68,105,118,95,95,110,102,54,80,84,2,1,76,133,130,27,8,1,35,46,76,101,103,97,99,121,66,97,110,110,101,114,95,99,45,99,111,111,107,105,101,87,97,114,110,105,110,103,95,51,83,109,108,78,2,1,26,168,0,93,8,1,38,46,76,111,97,100,105,110,103,68,111,116,115,95,95,95,83,116,121,108,101,100,70,108,101,120,45,115,99,45,49,114,55,119,121,119,104,45,49,2,1,127,55,15,72,8,1,30,46,77,111,100,97,108,83,117,98,77,111,100,117,108,101,95,111,118,101,114,108,97,121,95,95,51,80,109,87,81,2,1,55,121,58,219,8,1,6,46,77,113,115,80,119,2,1,7,31,179,41,8,1,10,46,77,114,107,117,49,49,53,48,50,2,1,165,184,116,226,8,1,16,46,77,117,105,68,114,97,119,101,114,45,109,111,100,97,108,2,1,224,23,53,51,8,1,15,46,77,117,105,68,114,97,119,101,114,45,114,111,111,116,2,1,160,163,255,121,8,1,30,46,77,117,105,71,114,105,100,45,97,108,105,103,110,45,105,116,101,109,115,45,120,115,45,99,101,110,116,101,114,2,1,66,252,62,160,8,1,34,46,77,117,105,80,97,112,101,114,45,101,108,101,118,97,116,105,111,110,54,91,114,111,108,101,61,34,97,108,101,114,116,34,93,2,1,77,105,149,179,8,1,20,46,77,117,105,80,97,112,101,114,45,101,108,101,118,97,116,105,111,110,55,2,1,153,124,232,140,8,1,100,46,77,117,105,80,97,112,101,114,45,114,111,111,116,91,115,116,121,108,101,61,34,116,114,97,110,115,102,111,114,109,58,32,110,111,110,101,59,32,116,114,97,110,115,105,116,105,111,110,58,32,116,114,97,110,115,102,111,114,109,32,50,50,53,109,115,32,99,117,98,105,99,45,98,101,122,105,101,114,40,48,44,32,48,44,32,48,46,50,44,32,49,41,32,48,109,115,59,34,93,2,1,224,23,53,51,8,1,38,46,77,117,105,83,110,97,99,107,98,97,114,67,111,110,116,101,110,116,45,114,111,111,116,91,114,111,108,101,61,34,97,108,101,114,116,34,93,2,1,105,139,135,66,8,1,16,46,77,121,67,111,110,115,101,110,116,95,79,117,116,101,114,2,1,148,192,2,229,8,1,7,46,78,111,116,105,99,101,2,1,223,237,67,170,8,1,8,46,78,111,116,105,99,101,115,2,2,15,94,47,188,136,94,147,12,8,1,11,46,78,111,116,105,99,101,115,66,111,120,2,1,148,184,44,216,8,1,30,46,78,111,116,105,102,105,99,97,116,105,111,110,66,97,110,110,101,114,95,115,104,111,119,66,97,110,110,101,114,2,1,58,200,187,200,8,1,16,46,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,2,2,170,229,95,35,228,180,121,234,8,1,17,46,78,111,116,105,102,105,99,97,116,105,111,110,76,105,110,101,2,1,196,154,166,194,8,1,24,46,80,97,103,101,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,2,1,181,253,178,205,8,1,6,46,80,110,121,71,111,2,1,148,201,134,173,8,1,24,46,80,111,112,67,111,111,107,105,101,95,97,99,116,105,118,101,95,95,85,87,105,55,69,2,1,188,68,227,132,8,1,35,46,80,111,112,105,66,97,110,110,101,114,95,95,80,111,112,105,67,111,110,116,97,105,110,101,114,45,105,103,104,97,114,109,45,49,2,1,30,119,143,31,8,1,23,46,80,111,112,111,118,101,114,95,119,114,97,112,112,101,114,95,95,102,101,67,120,116,2,1,242,172,254,249,8,1,13,46,80,111,112,117,112,79,118,101,114,97,108,108,2,2,92,165,119,59,118,231,4,75,8,1,8,46,80,114,105,118,97,99,121,2,1,126,200,93,170,8,1,40,46,80,114,105,118,97,99,121,70,101,101,100,67,97,114,100,45,45,80,114,105,118,97,99,121,70,101,101,100,67,97,114,100,45,45,51,95,70,107,53,2,1,32,202,47,124,8,1,14,46,80,114,105,118,97,99,121,78,111,116,105,99,101,2,4,95,227,71,178,101,232,206,242,222,165,254,202,253,122,210,210,8,1,19,46,80,114,111,109,111,116,105,111,110,97,108,45,99,111,114,110,101,114,2,2,69,19,150,118,86,247,148,202,8,1,33,46,81,49,77,78,107,46,114,69,53,115,45,46,95,57,99,117,82,114,46,95,49,97,67,115,76,46,95,51,68,81,88,73,2,1,195,181,83,235,8,1,7,46,82,48,53,99,85,111,2,1,127,45,159,201,8,1,17,46,82,101,97,99,116,77,111,100,97,108,80,111,114,116,97,108,2,1,42,242,44,29,8,1,32,46,82,101,97,99,116,77,111,100,97,108,95,95,79,118,101,114,108,97,121,45,45,97,102,116,101,114,45,111,112,101,110,2,2,193,113,84,75,234,236,26,162,8,1,11,46,82,101,97,100,80,111,108,105,99,121,2,1,78,105,197,223,8,1,30,46,82,103,112,100,68,114,97,119,101,114,95,114,103,112,100,95,100,114,97,119,101,114,95,95,50,86,67,85,48,2,1,142,28,140,138,8,1,49,46,82,105,111,116,87,114,97,112,112,101,114,45,118,105,115,111,114,45,97,108,101,114,116,45,82,105,111,116,87,114,97,112,112,101,114,45,118,105,115,111,114,45,97,108,101,114,116,53,2,1,124,127,243,126,8,1,14,46,83,45,71,68,80,82,45,66,97,110,110,101,114,2,1,241,201,11,182,8,1,18,46,83,72,79,87,73,84,45,109,115,103,95,115,104,111,119,101,100,2,1,127,17,31,22,8,1,19,46,83,104,101,108,108,45,99,111,111,107,105,101,78,111,116,105,99,101,2,1,254,127,129,168,8,1,13,46,83,105,116,101,45,99,111,111,107,105,101,115,2,1,50,83,138,170,8,1,25,46,83,117,112,112,111,114,116,83,105,116,101,45,67,111,111,107,105,101,66,97,110,110,101,114,2,1,65,6,64,56,8,1,26,46,84,101,114,109,115,79,102,83,101,114,118,105,99,101,95,95,99,111,109,112,111,110,101,110,116,2,1,38,157,25,55,8,1,11,46,84,104,101,67,111,110,115,101,110,116,2,1,86,181,50,48,8,1,6,46,84,111,97,115,116,2,1,23,81,226,91,8,1,26,46,84,111,97,115,116,71,100,112,114,95,95,119,114,97,112,112,101,114,95,95,55,108,112,98,80,2,1,11,193,187,33,8,1,9,46,84,111,97,115,116,105,102,121,2,1,72,188,56,7,8,1,8,46,84,111,111,108,116,105,112,2,8,121,189,122,163,121,239,215,0,122,45,0,18,122,242,77,68,137,121,14,191,148,151,221,79,148,192,37,74,149,69,191,8,8,1,32,46,85,115,101,67,111,111,107,105,101,95,117,115,101,67,111,111,107,105,101,77,111,100,108,101,95,95,54,100,52,107,122,2,1,129,66,251,172,8,1,17,46,86,67,83,67,111,111,107,105,101,67,111,110,116,114,111,108,2,1,52,56,5,30,8,1,6,46,88,108,111,118,113,2,1,173,61,80,177,0,1,27,46,92,33,98,111,116,116,111,109,45,48,46,108,103,92,58,111,112,97,99,105,116,121,45,49,48,48,2,1,126,162,20,115,8,1,7,46,95,49,65,115,72,107,2,1,173,2,211,246,8,1,7,46,95,49,67,73,98,67,2,1,139,228,184,163,8,1,7,46,95,49,72,111,67,100,2,1,38,157,53,121,8,1,10,46,95,49,85,100,66,85,119,110,105,2,1,148,195,154,93,8,1,8,46,95,49,98,104,77,81,83,2,1,21,92,66,118,8,1,9,46,95,49,104,121,119,101,116,102,2,1,97,62,238,239,8,1,10,46,95,49,106,106,119,52,55,104,51,2,1,247,241,92,89,8,1,7,46,95,49,112,111,66,90,2,2,3,110,19,21,135,136,19,183,8,1,10,46,95,49,117,55,65,107,84,106,121,2,1,241,237,126,6,8,1,10,46,95,49,119,122,48,121,106,112,48,2,1,194,178,66,155,8,1,14,46,95,50,49,98,57,57,49,51,49,56,52,52,52,2,1,44,54,111,95,8,1,7,46,95,50,51,76,107,77,2,1,7,31,179,41,8,1,24,46,95,50,57,103,81,102,85,122,45,98,122,95,78,121,87,104,80,82,112,106,79,83,101,2,1,84,61,122,246,8,1,7,46,95,50,57,118,45,116,2,1,196,122,77,117,8,1,24,46,95,50,73,73,105,101,120,45,67,115,120,116,117,87,55,81,71,90,95,111,79,53,122,2,1,230,171,184,234,8,1,24,46,95,50,80,102,66,73,54,75,55,74,119,109,87,80,105,112,68,85,113,48,57,120,53,2,1,32,233,155,142,8,1,9,46,95,50,86,75,54,87,80,72,2,1,95,80,243,78,8,1,10,46,95,50,100,45,56,118,113,45,87,2,1,148,195,154,93,8,1,10,46,95,50,100,99,55,100,48,50,48,2,1,38,157,25,55,8,1,7,46,95,50,104,71,74,108,2,1,171,52,55,134,8,1,24,46,95,50,120,106,85,81,111,54,52,110,89,57,72,113,104,97,69,111,66,90,122,81,121,2,2,88,105,219,216,114,20,214,109,8,1,34,46,95,51,56,55,54,50,51,100,56,56,101,54,56,97,101,102,98,48,101,101,98,100,53,97,102,53,50,50,97,101,48,54,50,2,1,230,177,237,232,8,1,24,46,95,51,70,77,106,90,87,114,107,116,102,110,117,99,90,118,77,77,71,84,111,79,120,2,1,26,68,228,163,8,1,7,46,95,51,86,50,114,71,2,1,218,99,214,226,8,1,7,46,95,51,102,99,72,71,2,1,127,142,192,91,8,1,7,46,95,51,106,111,87,116,2,1,241,203,177,29,8,1,10,46,95,51,106,120,54,120,117,50,57,2,1,148,195,154,93,8,1,24,46,95,51,113,45,88,83,74,50,118,111,107,68,81,114,118,100,71,54,109,82,95,95,107,2,1,142,14,98,194,8,1,7,46,95,52,104,119,99,49,2,1,139,228,184,163,8,1,9,46,95,54,114,110,98,107,112,48,2,1,241,52,143,232,8,1,21,46,95,67,111,111,107,105,101,66,97,110,110,101,114,95,49,107,54,97,119,57,2,1,202,34,245,9,8,1,6,46,95,68,101,51,106,2,1,128,166,99,114,8,1,11,46,95,95,67,67,95,112,111,112,117,112,2,1,95,150,22,109,8,1,23,46,95,95,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,50,97,56,49,98,2,1,202,34,245,9,8,1,13,46,95,95,99,115,115,45,99,70,113,119,115,80,2,1,3,74,139,121,8,1,17,46,95,95,103,100,112,114,45,99,111,110,116,97,105,110,101,114,2,1,164,166,153,75,8,1,6,46,95,97,95,121,98,2,1,71,27,185,12,8,1,5,46,95,97,106,117,2,1,185,68,176,236,8,1,17,46,95,99,111,110,116,97,105,110,95,49,98,50,109,107,95,49,2,1,220,184,157,147,8,1,24,46,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,116,112,99,55,50,95,49,2,1,77,196,170,59,8,1,22,46,95,99,111,111,107,105,101,80,111,112,117,112,95,104,115,104,101,49,95,49,49,2,1,229,203,215,117,8,1,25,46,95,99,111,111,107,105,101,80,114,101,115,101,110,116,101,114,95,105,115,106,107,108,95,49,2,1,60,14,153,161,8,1,20,46,95,103,100,112,114,45,110,111,116,105,102,121,45,104,101,97,100,101,114,2,1,120,203,45,164,8,1,28,46,95,103,100,112,114,45,110,111,116,105,102,121,45,104,101,97,100,101,114,95,114,101,112,108,97,99,101,2,1,88,58,138,184,8,1,7,46,95,104,101,52,48,50,2,1,26,186,75,244,8,1,22,46,95,110,111,116,105,102,105,99,97,116,105,111,110,95,113,112,98,49,122,95,49,2,1,3,38,21,207,8,1,10,46,95,112,95,112,111,108,105,99,121,2,1,235,145,78,137,8,1,12,46,95,118,103,83,108,48,99,120,52,97,111,2,1,177,214,185,93,8,1,9,46,95,119,113,110,118,120,104,107,2,1,85,87,94,43,8,1,18,46,95,119,114,97,112,112,101,114,95,49,117,52,51,98,95,49,55,2,1,191,205,20,61,8,1,10,46,97,45,119,97,114,110,105,110,103,2,1,148,187,188,114,8,1,18,46,97,56,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,53,175,75,40,8,1,41,46,97,95,99,111,111,107,105,101,45,97,110,100,45,99,111,110,118,101,114,115,105,111,110,45,98,97,110,110,101,114,95,99,111,109,112,111,110,101,110,116,2,1,187,68,218,49,8,1,45,46,97,98,111,118,101,45,112,97,103,101,115,45,99,111,110,116,97,105,110,101,114,32,62,32,46,97,110,105,109,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,2,1,24,217,242,120,8,1,3,46,97,99,2,1,24,105,238,35,8,1,12,46,97,99,98,66,97,99,107,100,114,111,112,2,1,127,80,60,78,8,1,13,46,97,99,99,101,112,116,45,97,108,101,114,116,2,2,142,164,61,231,197,18,15,59,8,1,24,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,115,110,97,99,107,98,97,114,2,1,174,32,109,165,8,1,17,46,97,99,99,101,112,116,97,110,99,101,45,112,111,112,117,112,2,1,118,188,9,154,8,1,28,46,97,99,99,101,112,116,99,111,111,107,105,101,95,99,111,110,116,97,105,110,95,95,74,86,118,99,85,2,1,147,134,182,0,8,1,28,46,97,99,113,117,105,115,105,116,105,111,110,45,102,111,111,116,101,114,45,114,111,119,45,119,114,97,112,2,1,253,106,105,218,8,1,12,46,97,99,116,105,118,101,46,109,97,115,107,2,1,53,131,190,195,8,1,7,46,97,100,118,98,111,120,2,1,174,57,44,124,8,1,6,46,97,103,114,101,101,2,1,95,80,28,136,8,1,12,46,97,103,114,101,101,45,112,111,112,117,112,2,1,98,199,181,125,8,1,12,46,97,103,114,101,101,45,116,101,114,109,115,2,1,107,154,211,99,8,1,9,46,97,103,114,101,101,100,80,80,2,1,6,232,63,131,8,1,16,46,97,103,114,101,101,109,101,110,116,45,112,111,112,117,112,2,1,244,221,123,44,8,1,23,46,97,103,114,101,101,109,101,110,116,45,116,111,45,108,97,115,116,45,116,101,114,109,2,1,172,142,245,98,8,1,9,46,97,103,114,101,101,116,111,112,2,1,7,55,85,153,8,1,14,46,97,108,101,114,116,45,45,97,99,116,105,118,101,2,1,54,78,164,86,8,1,13,46,97,108,101,114,116,45,45,102,105,120,101,100,2,1,148,181,46,176,8,1,20,46,97,108,101,114,116,45,45,115,116,114,105,112,101,46,97,108,101,114,116,2,1,176,121,192,214,8,1,13,46,97,108,101,114,116,45,98,97,110,110,101,114,2,2,17,125,133,161,240,49,41,209,8,1,21,46,97,108,101,114,116,45,98,97,110,110,101,114,95,95,99,111,111,107,105,101,2,1,160,163,155,118,8,1,17,46,97,108,101,114,116,45,98,97,114,45,102,111,111,116,101,114,2,1,69,48,183,208,8,1,10,46,97,108,101,114,116,45,98,111,120,2,4,11,208,55,121,27,11,152,216,175,158,96,88,198,69,99,161,8,1,16,46,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,2,1,245,39,203,88,8,1,13,46,97,108,101,114,116,45,99,111,111,107,105,101,2,1,201,10,246,252,8,1,13,46,97,108,101,114,116,45,100,97,110,103,101,114,2,1,177,4,232,167,8,1,18,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,2,2,196,115,205,135,244,60,44,128,8,1,38,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,58,110,111,116,40,46,97,108,101,114,116,45,115,117,99,99,101,115,115,41,2,1,117,226,216,149,8,1,11,46,97,108,101,114,116,45,105,110,102,111,2,2,12,45,28,195,129,46,52,144,8,1,10,46,97,108,101,114,116,45,112,97,100,2,1,237,69,102,149,8,1,12,46,97,108,101,114,116,45,112,111,112,117,112,2,1,45,183,140,79,8,1,14,46,97,108,101,114,116,45,115,101,99,116,105,111,110,2,1,42,73,29,240,8,1,13,46,97,108,101,114,116,45,115,101,114,118,101,114,2,1,50,89,171,169,8,1,14,46,97,108,101,114,116,45,119,114,97,112,112,101,114,2,1,136,187,40,249,8,1,13,46,97,108,101,114,116,46,104,115,116,97,99,107,2,1,217,212,52,133,8,1,19,46,97,108,101,114,116,70,111,111,116,101,114,67,111,110,116,101,110,116,2,1,27,98,130,110,8,1,10,46,97,108,101,114,116,95,98,111,120,2,1,156,198,14,225,8,1,9,46,97,108,101,114,116,98,97,114,2,1,177,184,146,246,8,1,11,46,97,108,101,114,116,115,45,116,111,112,2,1,98,238,192,241,8,1,18,46,97,108,105,101,120,112,114,101,115,115,45,110,111,116,105,99,101,2,1,14,37,91,102,8,1,15,46,97,108,116,45,111,112,116,45,115,101,99,117,114,101,2,1,125,239,148,105,8,1,11,46,97,108,116,99,109,45,122,45,53,48,2,1,22,118,143,78,8,1,16,46,97,108,116,101,114,110,105,115,45,99,111,111,107,105,101,2,1,170,235,169,19,8,1,17,46,97,110,97,108,121,116,105,99,115,45,98,97,110,110,101,114,2,1,137,250,245,187,8,1,24,46,97,110,97,108,121,116,105,99,115,45,99,111,110,115,101,110,116,45,112,111,112,117,112,2,1,119,122,198,173,8,1,15,46,97,110,97,108,121,116,105,99,115,45,105,110,102,111,2,1,101,210,193,43,8,1,17,46,97,110,99,104,111,114,98,111,116,116,111,109,76,101,102,116,2,1,48,163,240,84,8,1,16,46,97,110,99,114,45,112,111,115,45,98,111,116,116,111,109,2,2,72,204,29,172,158,130,2,216,8,1,23,46,97,110,105,109,45,98,97,110,110,101,114,45,101,110,116,101,114,45,100,111,110,101,2,1,238,61,127,110,8,1,21,46,97,110,105,109,95,95,99,111,111,107,105,101,95,95,98,111,120,45,98,103,2,1,7,16,88,159,8,1,28,46,97,110,105,109,97,116,101,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,115,104,111,119,2,1,117,160,69,29,8,1,13,46,97,110,110,111,117,110,99,101,109,101,110,116,2,3,35,221,175,187,76,233,228,69,94,93,49,104,8,1,20,46,97,110,110,111,117,110,99,101,109,101,110,116,45,98,97,110,110,101,114,2,1,197,77,252,102,8,1,14,46,97,110,110,111,117,110,99,101,109,101,110,116,115,2,2,92,163,121,83,136,147,135,170,8,1,16,46,97,110,116,45,98,111,116,116,111,109,45,108,101,102,116,2,1,148,166,17,117,8,1,15,46,97,110,116,45,109,111,100,97,108,45,114,111,111,116,2,1,7,233,195,49,8,1,17,46,97,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,2,3,167,152,52,150,184,33,215,54,197,139,7,144,8,1,15,46,97,110,116,45,114,111,119,45,99,101,110,116,101,114,2,1,86,211,61,144,8,1,5,46,97,112,102,49,2,1,143,245,23,54,8,1,25,46,97,112,112,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,228,216,7,237,8,1,19,46,97,112,112,45,102,111,111,116,101,114,45,99,111,110,116,101,110,116,2,1,160,163,236,137,8,1,24,46,97,112,112,45,108,101,118,101,108,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,137,59,27,126,8,1,32,46,97,112,112,45,108,105,103,104,116,32,62,32,100,105,118,91,115,116,121,108,101,42,61,34,102,105,120,101,100,34,93,2,1,68,53,124,39,8,1,25,46,97,112,112,95,95,100,111,109,101,115,116,105,99,45,100,105,115,99,108,97,105,109,101,114,2,1,38,157,104,207,8,1,13,46,97,112,112,95,95,109,101,115,115,97,103,101,2,1,128,29,250,249,8,1,28,46,97,112,112,101,97,114,45,101,110,116,101,114,45,100,111,110,101,46,101,49,121,118,110,122,53,99,48,2,1,148,184,120,215,8,1,15,46,97,112,112,105,102,121,95,114,99,99,95,114,111,119,2,1,66,120,202,57,8,1,6,46,97,114,45,99,112,2,1,65,198,21,40,8,1,15,46,97,114,45,110,101,119,115,45,102,111,111,116,101,114,2,1,151,19,115,243,8,1,14,46,97,114,103,97,97,109,45,112,111,108,105,99,121,2,1,61,104,66,133,8,1,15,46,97,114,103,101,110,116,95,99,111,110,115,101,110,116,2,1,195,172,245,91,8,1,21,46,97,114,116,100,101,99,111,45,103,108,111,98,97,108,45,97,108,101,114,116,2,1,153,46,38,42,8,1,7,46,97,115,45,111,105,108,2,1,160,163,236,137,8,1,22,46,97,115,85,104,120,72,86,71,82,106,77,57,81,78,87,77,76,101,108,79,53,2,1,208,10,10,51,8,1,24,46,97,115,115,101,116,115,95,99,111,110,116,97,105,110,101,114,95,95,51,69,69,112,51,2,1,94,199,137,206,8,1,20,46,97,116,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,138,20,77,106,8,1,19,46,97,116,112,95,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,236,71,38,145,8,1,14,46,97,116,116,101,110,116,105,111,110,45,109,115,103,2,1,243,180,143,66,8,1,14,46,97,120,101,112,116,105,111,95,109,111,117,110,116,2,1,250,112,125,87,8,1,17,46,98,45,104,101,97,100,101,114,45,109,101,115,115,97,103,101,2,1,179,239,135,145,8,1,8,46,98,45,109,111,100,97,108,2,2,99,78,37,55,223,172,190,52,8,1,9,46,98,45,118,115,114,82,56,87,2,1,164,223,240,31,8,1,6,46,98,75,95,109,86,2,1,154,225,170,25,8,1,6,46,98,81,95,107,98,2,1,81,151,209,154,8,1,7,46,98,85,87,83,108,90,2,1,221,116,140,110,8,1,7,46,98,89,84,100,105,65,2,1,104,76,5,0,8,1,6,46,98,90,114,66,122,2,1,209,181,190,215,8,1,4,46,98,95,103,2,1,81,151,216,124,8,1,9,46,98,97,99,107,68,114,111,112,2,1,194,197,250,113,8,1,11,46,98,97,99,107,103,114,111,117,110,100,2,2,55,51,109,152,187,253,228,126,8,1,7,46,98,97,110,110,101,114,2,1,254,187,150,95,8,1,15,46,98,97,110,110,101,114,45,45,98,111,116,116,111,109,2,1,148,202,79,68,8,1,11,46,98,97,110,110,101,114,45,50,49,55,2,1,215,3,193,29,8,1,20,46,98,97,110,110,101,114,45,98,108,111,99,107,45,115,99,114,101,101,110,2,1,246,237,76,72,8,1,17,46,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,123,12,121,107,8,1,13,46,98,97,110,110,101,114,45,104,105,110,116,115,2,1,117,194,105,145,8,1,15,46,98,97,110,110,101,114,45,109,101,115,115,97,103,101,2,1,235,120,156,16,8,1,14,46,98,97,110,110,101,114,45,110,111,116,105,99,101,2,1,11,178,130,222,8,1,15,46,98,97,110,110,101,114,45,111,118,101,114,108,97,121,2,2,94,136,201,89,139,164,230,26,8,1,12,46,98,97,110,110,101,114,45,119,114,97,112,2,2,84,115,167,80,116,175,211,94,8,1,15,46,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,1,221,128,84,119,8,1,16,46,98,97,110,110,101,114,67,111,110,116,97,105,110,101,114,2,2,41,141,19,113,93,71,48,142,8,1,18,46,98,97,110,110,101,114,95,95,99,111,110,116,97,105,110,101,114,2,1,185,191,66,209,8,1,13,46,98,97,110,110,101,114,95,95,114,111,111,116,2,1,125,66,145,45,8,1,13,46,98,97,110,110,101,114,95,97,108,101,114,116,2,1,80,117,161,255,8,1,11,46,98,97,110,110,101,114,95,98,111,120,2,1,119,142,145,161,8,1,17,46,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,2,1,180,198,253,3,8,1,11,46,98,97,115,101,45,109,111,100,97,108,2,1,214,233,249,64,8,1,18,46,98,97,115,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,107,93,142,236,8,1,14,46,98,97,115,105,99,76,105,103,104,116,98,111,120,2,1,121,38,165,233,8,1,23,46,98,97,116,99,104,103,101,111,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,199,245,24,61,8,1,20,46,98,98,45,98,111,111,116,115,116,114,97,112,45,97,108,101,114,116,115,2,1,170,79,88,234,8,1,11,46,98,98,99,45,98,109,120,109,50,98,2,1,38,157,104,207,8,1,7,46,98,100,56,48,97,99,2,1,170,51,175,248,8,1,19,46,98,101,111,110,111,45,102,108,97,115,104,109,101,115,115,97,103,101,2,1,121,212,231,242,8,1,13,46,98,101,115,116,45,99,111,111,107,105,101,115,2,1,145,244,140,18,8,1,11,46,98,102,45,116,111,97,115,116,101,114,2,1,38,195,77,225,8,1,9,46,98,103,45,97,108,101,114,116,2,1,178,154,178,172,8,1,23,46,98,103,45,97,114,110,111,116,116,115,45,99,111,110,115,101,110,116,45,114,101,100,2,1,150,170,247,1,8,1,20,46,98,103,45,98,97,99,107,103,114,111,117,110,100,83,116,114,111,110,103,2,1,10,123,254,105,8,1,9,46,98,103,45,98,108,97,99,107,2,2,211,233,26,38,223,107,159,7,8,1,25,46,98,103,45,98,108,97,99,107,45,100,101,101,112,46,114,111,117,110,100,101,100,45,109,100,2,1,59,27,43,13,8,1,11,46,98,103,45,98,108,117,101,45,114,49,2,1,251,185,11,145,8,1,41,46,98,103,45,99,111,108,111,114,45,98,97,99,107,103,114,111,117,110,100,45,99,111,110,116,97,105,110,101,114,45,116,105,110,116,46,116,111,112,45,50,2,1,153,46,38,42,8,1,12,46,98,103,45,100,97,114,107,71,114,97,121,2,1,223,2,214,56,8,1,15,46,98,103,45,100,97,114,107,101,114,45,103,114,97,121,2,2,123,247,212,159,237,11,21,194,8,1,9,46,98,103,45,103,114,101,101,110,2,1,19,113,190,195,8,1,13,46,98,103,45,103,114,101,101,110,45,50,48,48,2,1,21,81,80,173,8,1,9,46,98,103,45,109,111,100,97,108,2,1,86,165,157,33,8,1,14,46,98,103,45,111,112,97,99,105,116,121,45,55,53,2,1,159,5,29,112,8,1,14,46,98,103,45,112,105,110,107,45,98,114,97,110,100,2,1,150,29,146,126,8,1,21,46,98,103,45,116,114,97,110,115,45,102,117,108,108,45,99,111,111,107,105,101,2,1,137,13,85,249,8,1,22,46,98,103,45,119,104,105,116,101,46,119,45,102,117,108,108,46,102,105,120,101,100,2,1,20,239,102,87,8,1,20,46,98,104,45,109,111,100,97,108,73,110,102,111,67,111,111,107,105,101,115,2,1,86,165,157,33,8,1,13,46,98,105,99,97,45,99,111,110,116,101,110,116,2,1,34,159,105,98,8,1,18,46,98,105,103,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,135,211,133,97,8,1,24,46,98,105,103,109,97,107,101,114,45,99,103,45,99,111,111,107,105,101,115,45,98,111,120,2,1,118,93,67,124,8,1,36,46,98,105,108,108,98,111,97,114,100,95,95,66,105,108,108,98,111,97,114,100,83,116,121,108,101,100,45,112,120,115,100,49,98,45,48,2,1,162,106,176,202,8,1,6,46,98,107,51,111,113,2,1,85,249,236,213,8,1,15,46,98,108,107,45,68,105,115,99,108,97,105,109,101,114,2,1,240,111,146,240,8,1,30,46,98,108,111,99,107,45,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,98,108,111,99,107,2,1,6,159,235,91,8,1,16,46,98,108,111,99,107,45,102,115,45,99,111,111,107,105,101,2,1,234,191,172,131,8,1,26,46,98,108,111,99,107,45,110,111,116,105,102,105,99,97,116,105,111,110,115,45,98,108,111,99,107,2,1,128,98,125,6,8,1,18,46,98,108,111,99,107,95,97,118,103,95,112,114,105,118,97,99,121,2,1,164,136,230,249,8,1,16,46,98,108,111,99,107,105,110,103,79,118,101,114,108,97,121,2,2,104,250,61,158,127,134,60,119,8,1,17,46,98,108,111,99,107,114,111,108,108,105,110,103,116,101,120,116,2,1,254,16,68,87,8,1,26,46,98,108,116,101,45,97,108,101,114,116,98,97,110,110,101,114,95,95,119,114,97,112,112,101,114,2,1,215,214,147,128,8,1,8,46,98,108,117,114,45,98,103,2,1,101,244,14,127,8,1,18,46,98,108,117,114,114,121,45,98,97,99,107,103,114,111,117,110,100,2,1,146,116,234,242,8,1,7,46,98,109,87,86,80,98,2,1,137,242,202,87,8,1,10,46,98,109,95,100,105,97,108,111,103,2,1,200,199,157,254,8,1,12,46,98,109,95,100,105,97,108,111,103,66,103,2,1,200,199,157,254,8,1,7,46,98,110,106,82,109,86,2,1,148,185,228,172,8,1,18,46,98,110,112,95,99,111,111,107,105,101,95,98,97,110,110,101,114,2,1,148,80,69,176,8,1,37,46,98,111,114,100,101,114,45,100,97,114,107,45,49,48,46,98,111,114,100,101,114,46,114,111,117,110,100,101,100,46,115,104,97,100,111,119,2,1,89,219,121,201,8,1,46,46,98,111,114,100,101,114,45,112,114,105,109,97,114,121,45,108,105,103,104,116,80,49,46,98,111,114,100,101,114,45,116,46,102,108,101,120,45,99,111,108,46,102,108,101,120,2,1,156,171,194,163,8,1,13,46,98,111,116,45,48,46,108,101,102,116,45,48,2,1,33,165,45,189,8,1,14,46,98,111,116,45,97,108,101,114,116,45,98,111,120,2,1,32,119,192,107,8,1,17,46,98,111,116,116,111,109,45,48,46,111,118,101,114,108,97,121,2,1,190,147,222,182,8,1,39,46,98,111,116,116,111,109,45,48,46,112,104,51,45,104,100,107,112,46,110,97,118,45,99,108,105,99,107,97,98,108,101,45,112,97,100,100,101,100,2,1,69,163,160,211,8,1,13,46,98,111,116,116,111,109,45,97,108,101,114,116,2,2,107,209,6,120,145,42,139,40,8,1,14,46,98,111,116,116,111,109,45,98,97,110,110,101,114,2,1,200,43,92,42,8,1,23,46,98,111,116,116,111,109,45,102,105,120,101,100,45,99,111,110,116,97,105,110,101,114,2,1,128,104,25,20,8,1,19,46,98,111,116,116,111,109,45,102,114,101,101,122,101,100,45,98,97,114,2,1,12,69,176,86,8,1,14,46,98,111,116,116,111,109,45,110,97,118,98,97,114,2,1,202,173,165,148,8,1,14,46,98,111,116,116,111,109,45,110,111,116,105,99,101,2,1,9,229,189,2,8,1,13,46,98,111,116,116,111,109,45,114,105,103,104,116,2,1,178,154,196,70,8,1,16,46,98,111,116,116,111,109,45,115,109,46,102,105,120,101,100,2,1,196,11,236,218,8,1,12,46,98,111,116,116,111,109,45,122,111,110,101,2,1,79,42,36,239,8,1,18,46,98,111,116,116,111,109,76,101,102,116,95,95,79,48,72,77,116,2,1,91,192,81,252,8,1,15,46,98,111,116,116,111,109,77,101,115,115,97,103,101,115,2,1,215,47,61,243,8,1,19,46,98,111,116,116,111,109,82,105,103,104,116,95,95,87,69,74,79,89,2,1,194,235,2,219,8,1,45,46,98,111,116,116,111,109,83,101,99,116,105,111,110,68,105,115,112,108,97,121,95,95,67,111,110,116,97,105,110,101,114,45,115,99,45,49,107,120,109,57,104,109,45,48,2,1,242,122,96,56,8,1,22,46,98,111,116,116,111,109,84,105,112,66,97,114,67,111,110,116,97,105,110,101,114,2,1,148,203,8,180,8,1,14,46,98,111,116,116,111,109,95,80,111,108,105,99,121,2,1,139,135,145,77,8,1,14,46,98,111,116,116,111,109,95,95,79,118,112,89,65,2,2,34,105,114,232,150,239,156,211,8,1,15,46,98,111,116,116,111,109,95,109,101,115,115,97,103,101,2,1,152,197,90,108,8,1,12,46,98,111,116,116,111,109,95,116,101,120,116,2,1,127,135,60,236,8,1,14,46,98,111,116,116,111,109,99,111,110,116,101,110,116,2,1,96,22,198,191,8,1,10,46,98,111,116,116,111,109,100,105,118,2,1,110,160,216,71,8,1,12,46,98,111,116,116,111,109,102,108,111,97,116,2,1,168,198,105,10,8,1,12,46,98,111,116,116,111,109,109,111,100,97,108,2,1,65,69,226,28,8,1,12,46,98,111,116,116,111,109,112,111,112,117,112,2,7,42,24,208,210,95,61,51,56,101,232,206,242,157,217,38,193,188,97,205,108,214,186,164,161,222,165,254,202,8,1,13,46,98,111,117,110,99,101,73,110,76,101,102,116,2,1,93,153,179,137,8,1,18,46,98,111,120,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,117,223,18,114,8,1,98,46,98,111,120,91,115,116,121,108,101,61,34,119,105,100,116,104,58,32,50,52,51,112,120,59,32,104,101,105,103,104,116,58,32,51,48,112,120,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,40,51,57,44,32,51,57,44,32,51,57,41,59,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,48,48,112,120,59,34,93,2,1,101,231,79,129,8,1,15,46,98,111,120,95,98,97,99,107,103,114,111,117,110,100,2,1,3,186,16,189,8,1,13,46,98,111,120,95,99,111,110,116,101,110,116,115,2,1,3,186,16,189,8,1,17,46,98,111,120,95,114,105,103,104,116,95,98,111,116,116,111,109,2,1,150,174,66,7,8,1,3,46,98,112,2,1,150,127,209,180,8,1,6,46,98,112,69,86,106,2,1,128,166,99,114,8,1,19,46,98,114,101,97,107,105,110,103,45,99,111,110,116,97,105,110,101,114,2,1,118,56,244,84,8,1,21,46,98,114,111,119,115,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,185,193,253,158,8,1,17,46,98,116,45,99,111,111,107,105,101,45,102,108,121,111,117,116,2,1,29,200,152,60,8,1,7,46,98,116,110,99,110,50,2,1,206,9,220,104,8,1,6,46,98,117,103,109,101,2,1,149,33,41,14,8,1,30,46,98,120,45,109,97,105,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,105,100,101,98,97,114,2,1,16,126,0,90,8,1,7,46,98,120,85,71,88,83,2,2,36,202,164,161,167,242,142,47,8,1,7,46,98,122,71,73,72,118,2,1,239,178,208,18,8,1,16,46,99,45,45,103,100,112,114,45,109,101,115,115,97,103,101,2,1,102,100,37,164,8,1,16,46,99,45,67,111,111,107,105,101,67,111,110,115,101,110,116,2,2,75,165,194,48,101,60,176,126,8,1,8,46,99,45,97,103,114,101,101,2,1,82,94,0,187,8,1,8,46,99,45,97,108,101,114,116,2,2,54,202,101,98,235,27,98,52,8,1,11,46,99,45,98,97,99,107,100,114,111,112,2,1,222,243,221,249,8,1,16,46,99,45,98,97,110,110,101,114,45,115,104,97,100,111,119,2,1,81,224,34,150,8,1,4,46,99,45,99,2,1,89,149,86,159,8,1,10,46,99,45,99,97,108,108,111,117,116,2,2,10,253,254,144,126,62,227,124,8,1,18,46,99,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,2,1,108,66,119,95,8,1,28,46,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,99,107,103,114,111,117,110,100,2,1,159,128,249,251,8,1,10,46,99,45,99,111,111,107,105,101,115,2,1,123,194,253,206,8,1,16,46,99,45,100,105,97,108,111,103,45,99,111,111,107,105,101,2,1,212,97,79,167,8,1,9,46,99,45,103,106,72,118,90,65,2,1,164,231,54,15,8,1,9,46,99,45,104,85,75,82,89,81,2,1,130,64,50,161,8,1,23,46,99,45,105,110,102,111,45,112,97,110,101,95,95,99,111,110,116,97,105,110,101,114,2,1,205,94,87,191,8,1,15,46,99,45,109,111,100,97,108,45,99,111,111,107,105,101,2,1,227,218,132,131,8,1,19,46,99,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,2,1,148,180,40,163,8,1,24,46,99,45,110,111,116,105,102,105,99,97,116,105,111,110,115,45,119,114,97,112,112,101,114,2,1,91,56,193,84,8,1,6,46,99,45,111,45,45,2,2,137,205,7,153,184,90,235,52,8,1,28,46,99,45,114,105,109,112,111,112,105,110,45,119,114,97,112,112,101,114,45,45,112,114,105,118,97,99,121,2,1,99,78,37,55,8,1,14,46,99,45,115,105,116,101,45,97,108,101,114,116,115,2,1,111,146,187,146,8,1,18,46,99,45,115,105,116,101,84,101,114,109,115,66,97,110,110,101,114,2,2,128,104,78,33,148,196,140,120,8,1,13,46,99,45,116,111,112,45,98,97,110,110,101,114,2,1,199,182,68,173,8,1,19,46,99,45,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,2,2,72,104,105,83,99,28,207,83,8,1,7,46,99,48,49,49,57,52,2,1,201,126,136,13,8,1,6,46,99,48,50,49,49,2,1,77,152,50,181,8,1,19,46,99,49,119,110,104,113,51,56,46,99,111,110,116,97,105,110,101,114,2,1,219,112,21,128,8,1,5,46,99,50,48,54,2,1,129,35,168,107,8,1,12,46,99,50,54,57,54,51,55,50,56,50,55,2,1,32,131,149,52,8,1,21,46,99,65,110,110,111,117,110,99,101,109,101,110,116,80,97,103,101,84,111,112,2,1,104,88,43,156,8,1,7,46,99,67,72,72,98,122,2,1,60,97,18,253,8,1,7,46,99,68,76,84,107,106,2,1,38,157,76,56,8,1,7,46,99,77,102,117,65,74,2,1,150,54,5,132,8,1,7,46,99,80,111,70,119,85,2,1,97,51,79,29,8,1,7,46,99,82,88,66,102,108,2,1,22,2,12,96,8,1,7,46,99,87,101,73,98,72,2,1,224,11,254,104,8,1,6,46,99,95,49,50,56,2,17,4,112,168,215,5,74,229,55,29,218,73,28,34,216,18,56,47,12,226,79,47,243,253,170,70,58,64,14,76,8,216,170,87,233,190,152,112,126,200,244,131,162,235,235,182,38,165,107,225,64,254,125,227,187,64,212,236,134,103,186,250,56,166,3,253,251,110,85,8,1,8,46,99,95,95,99,97,107,101,2,1,171,200,226,19,8,1,11,46,99,95,105,110,110,101,114,98,111,120,2,1,201,254,174,154,8,1,11,46,99,97,99,104,101,80,111,112,117,112,2,1,114,135,199,177,8,1,19,46,99,97,114,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,81,81,11,130,8,1,11,46,99,97,115,45,99,111,111,107,105,101,2,1,239,174,4,210,8,1,36,46,99,97,122,111,111,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,95,95,115,99,45,49,108,121,52,113,55,120,45,48,2,1,81,60,14,245,8,1,13,46,99,98,45,99,111,110,116,97,105,110,101,114,2,1,151,213,71,239,8,1,9,46,99,98,95,109,111,100,97,108,2,1,119,112,237,96,8,1,6,46,99,98,97,110,110,2,1,133,240,172,39,8,1,28,46,99,98,97,110,110,101,114,45,103,111,118,117,107,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,187,253,82,57,8,1,15,46,99,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,239,60,186,32,8,1,9,46,99,99,45,97,108,101,114,116,2,1,9,138,42,251,8,1,10,46,99,99,45,98,97,110,110,101,114,2,1,195,150,212,226,8,1,10,46,99,99,45,98,111,116,116,111,109,2,1,211,70,72,106,8,1,10,46,99,99,45,100,105,97,108,111,103,2,1,100,45,185,144,8,1,18,46,99,99,45,100,105,115,109,105,115,115,46,99,99,45,98,116,110,2,1,173,144,171,103,8,1,9,46,99,99,45,109,111,100,97,108,2,1,40,247,18,154,8,1,7,46,99,99,45,112,111,112,2,1,70,208,222,121,8,1,10,46,99,99,45,115,105,109,112,108,101,2,1,156,95,161,239,8,1,9,46,99,99,95,109,111,100,97,108,2,1,39,145,134,228,8,1,11,46,99,99,99,45,119,105,100,103,101,116,2,1,17,85,142,108,8,1,15,46,99,99,100,95,99,111,111,107,105,101,95,98,97,114,2,1,228,198,90,233,8,1,18,46,99,99,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,239,118,132,158,8,1,12,46,99,99,110,45,99,111,110,115,101,110,116,2,1,38,157,26,110,8,1,8,46,99,99,112,45,112,111,112,2,1,101,113,103,230,8,1,5,46,99,99,112,97,2,3,16,220,116,41,30,159,244,237,35,253,161,58,8,1,10,46,99,99,112,97,45,99,111,110,116,2,1,202,129,13,15,8,1,13,46,99,100,45,99,111,110,116,97,105,110,101,114,2,1,169,215,160,60,8,1,14,46,99,100,99,45,99,111,110,116,97,105,110,101,114,2,1,219,83,245,12,8,1,44,46,99,100,107,45,111,118,101,114,108,97,121,45,112,97,110,101,32,62,32,46,109,97,116,45,115,110,97,99,107,45,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,231,40,71,14,8,1,7,46,99,100,117,97,112,78,2,1,92,38,98,117,8,1,10,46,99,101,45,98,97,110,110,101,114,2,3,69,254,84,209,193,50,197,154,222,98,102,9,8,1,22,46,99,102,45,98,97,99,107,103,114,111,117,110,100,45,111,118,101,114,108,97,121,2,1,184,103,136,150,8,1,14,46,99,102,46,104,101,97,100,101,114,45,98,97,114,2,1,8,36,184,92,8,1,14,46,99,103,117,45,99,111,110,116,97,105,110,101,114,2,1,6,208,134,146,8,1,6,46,99,104,95,106,90,2,1,154,225,170,25,8,1,16,46,99,104,97,107,114,97,45,99,111,108,108,97,112,115,101,2,2,70,80,89,93,131,205,128,10,8,1,12,46,99,104,97,107,114,97,45,102,97,100,101,2,1,236,48,208,69,8,1,32,46,99,104,97,107,114,97,45,109,111,100,97,108,95,95,99,111,110,116,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,117,16,84,134,8,1,22,46,99,104,97,107,114,97,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,2,1,117,16,84,134,8,1,12,46,99,104,114,111,109,101,95,112,105,99,107,2,1,81,61,141,32,8,1,8,46,99,105,97,115,116,107,111,2,1,230,170,231,40,8,1,7,46,99,106,66,119,75,118,2,1,171,143,93,202,8,1,13,46,99,107,45,99,111,110,116,97,105,110,101,114,2,1,198,183,249,217,8,1,7,46,99,107,87,114,97,112,2,1,148,140,163,251,8,1,12,46,99,107,101,45,111,118,101,114,108,97,121,2,1,158,123,51,99,8,1,10,46,99,107,101,50,48,50,50,102,114,2,1,231,67,88,37,8,1,13,46,99,107,105,110,102,111,45,112,97,110,101,108,2,1,86,127,60,221,8,1,21,46,99,108,105,110,101,118,97,45,99,111,111,107,105,101,115,45,105,110,102,111,2,1,89,53,106,70,8,1,18,46,99,108,115,80,111,112,117,112,67,111,110,116,97,105,110,101,114,2,1,235,158,22,145,8,1,3,46,99,109,2,3,38,157,53,243,237,206,103,95,255,183,67,248,8,1,26,46,99,109,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,2,1,98,57,44,233,8,1,11,46,99,109,45,111,118,101,114,108,97,121,2,1,148,182,19,52,8,1,7,46,99,109,45,122,45,52,2,1,199,198,33,11,8,1,24,46,99,109,111,110,45,112,114,105,118,97,99,121,45,100,105,115,99,108,97,105,109,101,114,2,1,163,128,132,114,8,1,23,46,99,109,112,45,101,120,112,101,114,105,101,110,99,101,102,114,97,103,109,101,110,116,2,1,178,145,153,75,8,1,30,46,99,109,112,45,110,111,116,105,102,105,99,97,116,105,111,110,45,97,99,116,105,111,110,45,112,97,110,101,108,2,1,38,157,76,169,8,1,14,46,99,109,112,45,110,116,102,98,97,110,110,101,114,2,1,109,44,172,125,8,1,7,46,99,109,112,98,111,120,2,1,176,203,19,156,8,1,14,46,99,110,99,45,99,111,110,116,97,105,110,101,114,2,1,166,248,164,254,8,1,15,46,99,110,110,45,116,111,97,115,116,45,45,116,111,115,2,1,38,157,25,55,8,1,22,46,99,110,115,45,99,103,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,2,1,36,165,241,204,8,1,7,46,99,110,116,50,50,51,2,1,83,169,103,41,8,1,18,46,99,111,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,165,245,24,62,8,1,18,46,99,111,100,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,211,119,229,58,8,1,26,46,99,111,101,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,112,111,112,117,112,2,1,19,229,229,79,8,1,35,46,99,111,104,45,99,101,45,99,112,116,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,45,100,48,48,52,49,50,52,101,2,1,216,92,58,137,8,1,7,46,99,111,107,105,101,115,2,1,33,157,190,245,8,1,14,46,99,111,107,107,105,101,45,98,97,110,110,101,114,2,1,42,75,153,161,8,1,12,46,99,111,109,109,97,110,100,45,98,97,114,2,1,234,184,137,165,8,1,23,46,99,111,109,109,101,110,116,45,112,111,108,105,99,121,45,114,101,102,114,101,115,104,2,1,170,50,143,41,8,1,25,46,99,111,109,109,111,110,95,112,114,111,109,112,116,45,112,114,105,118,97,99,121,45,98,103,2,1,148,180,113,210,8,1,26,46,99,111,109,112,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,112,111,112,117,112,2,1,90,150,246,247,8,1,33,46,99,111,109,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,95,99,111,111,107,105,101,95,95,83,110,115,110,90,2,1,80,156,41,39,8,1,11,46,99,111,109,112,97,114,101,45,98,103,2,1,50,70,243,220,8,1,19,46,99,111,109,112,97,114,101,80,114,111,77,105,110,105,86,105,101,119,2,1,50,70,243,220,8,1,11,46,99,111,109,112,108,105,97,110,99,101,2,6,20,205,207,54,63,79,228,15,88,187,234,35,103,86,26,51,169,227,191,199,187,240,144,151,8,1,18,46,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,2,2,109,180,56,227,190,78,182,14,8,1,18,46,99,111,109,112,108,105,97,110,99,101,46,98,97,110,110,101,114,2,1,164,170,111,69,8,1,24,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,201,216,27,211,8,1,25,46,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,91,126,128,42,8,1,23,46,99,111,109,112,111,110,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,134,189,46,227,8,1,24,46,99,111,109,112,111,110,101,110,116,45,115,116,105,99,107,121,45,100,105,97,108,111,103,2,1,148,100,69,0,8,1,21,46,99,111,110,100,117,99,116,111,114,45,99,115,45,99,111,110,116,101,110,116,2,1,61,179,197,41,8,1,8,46,99,111,110,102,105,114,109,2,2,95,233,222,71,181,149,141,182,8,1,14,46,99,111,110,115,101,110,116,45,98,108,111,99,107,2,1,195,175,124,130,8,1,13,46,99,111,110,115,101,110,116,45,99,116,110,114,2,1,148,201,222,204,8,1,12,46,99,111,110,115,101,110,116,45,100,105,118,2,2,47,55,65,177,126,105,181,221,8,1,20,46,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,109,97,105,110,2,1,111,230,225,167,8,1,16,46,99,111,110,115,101,110,116,45,109,101,115,115,97,103,101,2,1,129,231,18,148,8,1,14,46,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,112,53,103,236,8,1,21,46,99,111,110,115,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,187,125,80,201,8,1,15,46,99,111,110,115,101,110,116,45,112,111,112,45,117,112,2,1,4,132,113,43,8,1,15,46,99,111,110,115,101,110,116,45,115,119,105,116,99,104,2,1,21,123,57,57,8,1,12,46,99,111,110,115,101,110,116,67,97,114,100,2,1,92,36,233,7,8,1,15,46,99,111,110,115,101,110,116,95,95,112,111,112,117,112,2,1,79,11,85,196,8,1,18,46,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,2,1,185,91,96,40,8,1,25,46,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,95,95,89,85,69,109,49,2,1,45,81,123,134,8,1,16,46,99,111,110,115,101,110,116,95,119,114,97,112,112,101,114,2,1,148,185,40,188,8,1,21,46,99,111,110,115,101,110,116,109,97,105,110,99,111,110,116,97,105,110,101,114,2,1,133,163,33,179,8,1,13,46,99,111,110,116,45,45,99,111,111,107,105,101,2,1,251,209,97,72,8,1,10,46,99,111,110,116,97,105,110,101,114,2,1,120,182,162,75,8,1,33,46,99,111,110,116,97,105,110,101,114,45,102,108,111,97,116,105,110,103,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,252,108,116,125,8,1,24,46,99,111,110,116,97,105,110,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,2,19,54,227,153,254,181,210,227,8,1,18,46,99,111,110,116,97,105,110,101,114,45,111,118,101,114,108,97,121,2,1,156,187,88,133,8,1,20,46,99,111,110,116,97,105,110,101,114,46,112,98,45,52,46,112,116,45,52,2,1,206,118,214,127,8,1,22,46,99,111,110,116,97,105,110,101,114,68,101,102,97,117,108,116,67,108,97,115,115,2,1,80,63,181,35,8,1,16,46,99,111,110,116,97,105,110,101,114,95,104,80,54,105,72,2,1,110,93,169,117,8,1,30,46,99,111,110,116,97,105,110,101,114,118,50,45,45,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,2,1,135,116,233,124,8,1,16,46,99,111,111,99,107,105,101,95,119,97,114,110,105,110,103,2,2,54,97,97,235,123,160,180,63,8,1,10,46,99,111,111,107,83,101,116,116,115,2,1,27,42,162,160,8,1,21,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,97,114,45,118,50,2,1,131,201,92,218,8,1,13,46,99,111,111,107,105,101,45,97,108,101,114,116,2,2,2,236,103,231,250,157,238,66,8,1,20,46,99,111,111,107,105,101,45,97,108,101,114,116,45,98,97,110,110,101,114,2,1,144,189,176,21,8,1,17,46,99,111,111,107,105,101,45,97,117,116,104,111,114,105,116,121,2,1,212,95,147,174,8,1,19,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,2,1,125,137,148,87,8,1,22,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,100,105,109,109,101,114,2,1,211,200,198,61,8,1,24,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,99,111,109,112,111,110,101,110,116,2,1,120,147,47,192,8,1,26,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,114,111,111,116,95,95,118,101,74,98,86,2,1,147,244,3,14,8,1,13,46,99,111,111,107,105,101,45,98,97,114,45,109,2,1,148,121,70,229,8,1,28,46,99,111,111,107,105,101,45,98,97,114,95,99,111,111,107,105,101,66,97,114,95,95,72,50,53,104,52,2,1,29,167,252,177,8,1,26,46,99,111,111,107,105,101,45,98,97,114,95,111,118,101,114,108,97,121,95,95,48,121,52,57,88,2,1,207,4,136,143,8,1,17,46,99,111,111,107,105,101,45,98,111,120,45,112,111,112,117,112,2,1,149,81,204,215,8,1,12,46,99,111,111,107,105,101,45,99,97,114,100,2,1,33,113,240,187,8,1,22,46,99,111,111,107,105,101,45,99,97,114,100,95,99,111,110,116,97,105,110,101,114,2,1,161,198,16,214,8,1,11,46,99,111,111,107,105,101,45,99,111,110,2,1,11,171,245,189,8,1,23,46,99,111,111,107,105,101,45,99,111,110,99,101,114,110,45,119,114,97,112,112,101,114,2,1,154,189,82,87,8,1,33,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,45,99,111,110,116,97,105,110,101,114,2,1,100,187,227,180,8,1,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,105,110,110,101,114,2,1,195,184,180,235,8,1,17,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,2,155,37,126,0,180,232,122,218,8,1,25,46,99,111,111,107,105,101,45,100,105,97,108,111,103,95,95,99,111,110,116,97,105,110,101,114,2,1,56,21,248,80,8,1,18,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,2,3,133,172,255,18,151,210,129,205,158,211,197,165,8,1,11,46,99,111,111,107,105,101,45,101,120,112,2,1,254,234,127,202,8,1,24,46,99,111,111,107,105,101,45,102,105,110,111,109,95,95,99,111,110,116,97,105,110,101,114,2,1,109,119,134,94,8,1,13,46,99,111,111,107,105,101,45,102,111,99,117,115,2,1,144,150,132,208,8,1,12,46,99,111,111,107,105,101,45,109,97,105,110,2,1,158,245,53,0,8,1,24,46,99,111,111,107,105,101,45,109,97,110,97,103,101,109,101,110,116,45,105,110,116,114,111,2,1,100,92,42,189,8,1,15,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,2,2,114,96,156,228,219,219,252,186,8,1,30,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,109,97,105,110,45,99,111,110,116,97,105,110,101,114,2,1,248,55,215,249,8,1,20,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,112,97,103,101,2,1,7,47,246,92,8,1,13,46,99,111,111,107,105,101,45,110,111,110,101,117,2,1,56,121,187,16,8,1,20,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,111,117,116,101,114,2,1,55,2,43,143,8,1,17,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,118,50,2,1,18,147,7,67,8,1,22,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,118,105,115,105,98,108,101,2,1,91,188,201,127,8,1,48,46,99,111,111,107,105,101,45,110,111,116,105,99,101,95,95,67,111,111,107,105,101,78,111,116,105,99,101,87,114,97,112,112,101,114,45,115,99,45,49,56,54,112,55,53,53,45,48,2,1,166,85,132,10,8,1,31,46,99,111,111,107,105,101,45,110,111,116,105,99,101,95,99,111,110,116,97,105,110,101,114,95,95,100,74,85,65,65,2,1,113,161,180,231,8,1,28,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,109,105,110,105,109,97,108,2,1,138,42,64,30,8,1,26,46,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,45,99,111,110,116,97,105,110,101,114,2,1,20,98,169,248,8,1,45,46,99,111,111,107,105,101,45,111,118,101,114,108,97,121,95,99,111,111,107,105,101,79,118,101,114,108,97,121,67,111,110,116,97,105,110,101,114,95,95,86,55,71,108,122,2,1,218,96,122,18,8,1,20,46,99,111,111,107,105,101,45,112,97,103,101,45,111,118,101,114,108,97,121,2,1,56,5,147,186,8,1,21,46,99,111,111,107,105,101,45,112,97,110,101,108,45,119,114,97,112,112,101,114,2,1,38,157,130,111,8,1,26,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,111,118,101,114,108,97,121,2,1,9,245,117,74,8,1,24,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,112,111,112,117,112,2,1,67,58,57,58,8,1,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,45,117,112,2,1,203,34,166,114,8,1,20,46,99,111,111,107,105,101,45,112,111,112,117,112,45,100,105,97,108,111,103,2,1,214,162,90,219,8,1,23,46,99,111,111,107,105,101,45,112,111,112,117,112,95,99,111,109,112,111,110,101,110,116,2,2,218,7,97,183,228,47,221,74,8,1,25,46,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,45,97,108,101,114,116,2,1,56,38,199,113,8,1,29,46,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,45,99,111,110,116,97,105,110,101,114,2,1,35,168,161,23,8,1,21,46,99,111,111,107,105,101,45,112,114,101,102,115,45,119,114,97,112,112,101,114,2,1,185,160,87,43,8,1,13,46,99,111,111,107,105,101,45,112,114,111,109,116,2,1,210,85,73,96,8,1,22,46,99,111,111,107,105,101,45,114,101,109,105,110,100,45,119,97,114,112,112,101,114,2,1,56,241,108,233,8,1,16,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,2,1,118,205,251,242,8,1,20,46,99,111,111,107,105,101,45,117,115,97,103,101,45,98,97,110,110,101,114,2,1,31,113,166,233,8,1,12,46,99,111,111,107,105,101,45,119,97,108,108,2,1,83,98,9,102,8,1,16,46,99,111,111,107,105,101,65,99,99,101,112,116,66,97,114,2,1,251,30,67,71,8,1,16,46,99,111,111,107,105,101,65,99,101,112,116,97,110,99,101,2,1,157,65,66,253,8,1,10,46,99,111,111,107,105,101,66,97,114,2,1,142,18,144,237,8,1,18,46,99,111,111,107,105,101,66,111,120,95,95,95,50,79,65,83,115,2,2,42,128,156,229,171,0,148,138,8,1,14,46,99,111,111,107,105,101,67,111,110,102,105,114,109,2,10,4,44,57,113,5,24,44,216,7,32,34,200,38,156,251,215,129,67,25,172,151,127,231,147,157,84,1,230,188,70,212,223,192,14,132,25,245,72,147,240,8,1,21,46,99,111,111,107,105,101,67,111,110,102,105,114,109,80,97,100,100,105,110,103,2,1,155,51,169,136,8,1,23,46,99,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,2,1,12,247,49,105,8,1,18,46,99,111,111,107,105,101,67,111,110,115,101,110,116,82,111,111,116,2,1,225,2,43,59,8,1,27,46,99,111,111,107,105,101,80,111,112,117,112,95,101,110,116,101,114,101,100,95,95,50,114,115,54,55,2,1,134,76,0,210,8,1,20,46,99,111,111,107,105,101,83,99,114,101,101,110,79,118,101,114,108,97,121,2,1,147,133,11,35,8,1,40,46,99,111,111,107,105,101,83,101,116,116,105,110,103,115,95,95,99,111,110,116,101,110,116,67,111,110,116,97,105,110,101,114,95,95,105,90,88,77,71,2,1,157,228,31,101,8,1,11,46,99,111,111,107,105,101,83,104,105,116,2,1,84,57,236,133,8,1,15,46,99,111,111,107,105,101,84,101,120,116,65,114,101,97,2,1,69,222,101,187,8,1,11,46,99,111,111,107,105,101,84,105,112,115,2,1,65,255,231,116,8,1,20,46,99,111,111,107,105,101,87,97,108,108,67,111,110,116,97,105,110,101,114,2,1,45,224,69,174,8,1,13,46,99,111,111,107,105,101,95,76,82,98,53,65,2,1,119,46,23,242,8,1,13,46,99,111,111,107,105,101,95,95,102,111,114,109,2,1,138,34,191,16,8,1,32,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,95,95,120,102,56,84,52,2,1,20,75,67,253,8,1,17,46,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,2,1,208,247,174,62,8,1,24,46,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,95,95,119,54,81,104,49,2,1,218,51,64,126,8,1,25,46,99,111,111,107,105,101,95,100,105,115,109,105,115,115,95,99,111,110,116,97,105,110,101,114,2,1,247,76,131,69,8,1,21,46,99,111,111,107,105,101,95,115,101,116,116,105,110,103,95,112,111,112,117,112,2,1,43,89,85,5,8,1,16,46,99,111,111,107,105,101,97,103,114,101,101,109,101,110,116,2,1,253,191,159,244,8,1,13,46,99,111,111,107,105,101,98,97,110,110,101,114,2,3,36,199,75,216,105,172,234,169,177,235,56,207,8,1,18,46,99,111,111,107,105,101,98,97,114,45,111,118,101,114,108,97,121,2,1,52,244,116,102,8,1,10,46,99,111,111,107,105,101,98,116,110,2,1,51,75,68,19,8,1,11,46,99,111,111,107,105,101,105,110,102,111,2,1,196,171,188,33,8,1,9,46,99,111,111,107,105,101,108,121,2,1,151,114,217,194,8,1,28,46,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,106,100,45,173,8,1,12,46,99,111,111,107,105,101,115,45,97,115,107,2,1,120,3,107,163,8,1,15,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,20,29,81,13,8,1,13,46,99,111,111,107,105,101,115,45,98,111,100,121,2,1,188,229,198,13,8,1,36,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,101,100,105,116,45,108,105,110,107,45,99,111,110,116,97,105,110,101,114,2,1,143,135,34,250,8,1,21,46,99,111,111,107,105,101,115,45,104,111,109,101,95,111,118,101,114,108,97,121,2,1,160,163,253,225,8,1,25,46,99,111,111,107,105,101,115,45,109,111,100,97,108,45,102,111,111,116,101,114,45,99,109,112,2,1,239,114,69,81,8,1,37,46,99,111,111,107,105,101,115,45,109,111,100,97,108,45,109,111,100,117,108,101,45,45,119,114,97,112,112,101,114,45,45,49,55,87,74,82,2,1,11,63,97,115,8,1,15,46,99,111,111,107,105,101,115,45,109,111,100,97,108,115,2,1,109,186,121,147,8,1,44,46,99,111,111,107,105,101,115,45,110,111,116,105,99,101,95,95,83,116,121,108,101,100,67,111,111,107,105,101,78,111,116,105,99,101,45,117,98,51,105,102,122,45,48,2,1,120,94,95,254,8,1,15,46,99,111,111,107,105,101,115,45,111,118,101,114,108,121,2,1,77,122,187,42,8,1,22,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,104,111,108,100,101,114,2,1,35,17,106,49,8,1,25,46,99,111,111,107,105,101,115,45,112,111,108,105,116,105,99,95,95,115,101,99,116,105,111,110,2,1,211,10,33,118,8,1,14,46,99,111,111,107,105,101,115,45,112,111,112,117,112,2,1,14,103,228,137,8,1,19,46,99,111,111,107,105,101,115,45,114,101,103,117,108,97,116,105,111,110,2,1,178,52,164,123,8,1,13,46,99,111,111,107,105,101,115,45,115,104,111,119,2,1,116,211,102,19,8,1,16,46,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,2,1,123,109,75,180,8,1,24,46,99,111,111,107,105,101,115,67,111,110,115,101,110,116,95,95,119,114,97,112,112,101,114,2,1,60,47,109,95,8,1,19,46,99,111,111,107,105,101,115,79,112,116,73,110,66,97,110,110,101,114,2,1,158,214,37,50,8,1,33,46,99,111,111,107,105,101,115,80,111,108,105,99,121,95,99,111,111,107,105,101,95,119,97,114,112,95,95,55,54,86,119,79,2,1,108,78,39,162,8,1,16,46,99,111,111,107,105,101,115,95,95,98,97,110,110,101,114,2,1,148,179,75,216,8,1,15,46,99,111,111,107,105,101,115,95,95,99,111,118,101,114,2,1,142,49,74,57,8,1,32,46,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,67,108,97,115,115,101,115,95,95,85,88,110,119,77,2,1,190,17,170,72,8,1,12,46,99,111,111,107,105,101,115,95,110,116,102,2,1,212,175,113,213,8,1,19,46,99,111,111,107,105,101,115,95,112,114,111,99,101,115,115,105,110,103,2,1,24,40,227,2,8,1,16,46,99,111,111,107,105,101,115,95,115,101,99,116,105,111,110,2,1,100,168,24,143,8,1,23,46,99,111,111,107,105,101,115,95,119,114,97,112,112,101,114,95,95,95,122,73,101,67,2,1,224,45,27,80,8,1,11,46,99,111,111,107,105,101,115,104,111,119,2,1,200,74,81,174,8,1,10,46,99,111,111,107,105,101,116,105,112,2,1,5,45,96,106,8,1,7,46,99,111,111,107,105,115,2,1,196,51,112,53,8,1,23,46,99,111,111,112,115,115,110,45,99,45,99,111,111,107,105,101,110,111,116,105,99,101,2,1,133,160,72,78,8,1,4,46,99,111,112,2,3,122,128,122,89,125,26,41,211,130,245,247,139,8,1,9,46,99,111,112,95,100,109,99,97,2,1,128,253,135,95,8,1,19,46,99,111,112,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,187,234,240,118,8,1,6,46,99,111,112,114,111,2,1,75,147,19,148,8,1,17,46,99,111,112,121,114,105,103,104,116,45,98,97,110,110,101,114,2,1,199,138,124,1,8,1,13,46,99,111,114,112,45,98,97,110,110,101,114,115,2,1,121,93,220,18,8,1,24,46,99,111,114,112,111,114,97,116,101,45,110,111,116,105,99,101,45,98,97,110,110,101,114,2,1,81,224,34,150,8,1,14,46,99,111,117,110,116,114,121,45,112,111,112,117,112,2,1,38,157,103,149,8,1,22,46,99,111,117,114,105,101,114,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,2,0,251,73,234,99,20,188,198,8,1,17,46,99,111,117,115,116,111,109,99,111,111,107,105,101,112,111,112,2,1,183,48,163,86,8,1,10,46,99,111,118,101,114,83,104,111,119,2,1,137,169,156,141,8,1,17,46,99,112,45,97,108,101,114,116,45,109,101,115,115,97,103,101,2,1,154,95,43,217,8,1,19,46,99,112,45,99,111,111,107,105,101,45,116,105,112,45,101,117,114,111,2,1,148,180,153,152,8,1,22,46,99,112,45,105,110,102,111,45,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,218,100,46,12,8,1,19,46,99,112,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,143,105,209,240,8,1,10,46,99,112,95,100,105,97,108,111,103,2,1,38,157,157,7,8,1,10,46,99,112,99,45,102,108,111,97,116,2,1,130,31,86,73,8,1,14,46,99,114,117,109,98,115,45,98,97,110,110,101,114,2,1,58,128,207,154,8,1,3,46,99,115,2,1,63,87,186,121,8,1,10,46,99,115,95,98,97,110,110,101,114,2,1,192,160,196,151,8,1,12,46,99,115,115,45,49,49,108,57,102,101,122,2,1,243,128,116,31,8,1,12,46,99,115,115,45,49,51,120,119,106,109,111,2,1,221,183,135,77,8,1,12,46,99,115,115,45,49,52,103,50,101,110,56,2,1,208,128,224,164,8,1,12,46,99,115,115,45,49,54,113,118,112,50,55,2,1,220,222,147,178,8,1,12,46,99,115,115,45,49,103,120,55,111,50,106,2,1,108,51,89,112,8,1,21,46,99,115,115,45,49,107,122,115,118,99,104,46,101,53,117,107,113,49,49,48,2,1,160,163,255,121,8,1,12,46,99,115,115,45,49,108,104,102,54,51,103,2,1,147,182,101,124,8,1,12,46,99,115,115,45,49,108,120,122,110,109,112,2,1,40,233,188,172,8,1,12,46,99,115,115,45,49,109,55,118,101,53,115,2,1,190,253,15,117,8,1,12,46,99,115,115,45,49,112,49,54,53,50,105,2,1,90,91,207,37,8,1,12,46,99,115,115,45,49,116,103,49,116,108,100,2,1,133,151,49,197,8,1,12,46,99,115,115,45,49,117,115,110,108,121,102,2,1,148,184,120,215,8,1,12,46,99,115,115,45,49,119,48,121,50,101,115,2,1,214,54,204,16,8,1,12,46,99,115,115,45,49,119,56,56,49,101,109,2,1,207,248,235,211,8,1,11,46,99,115,115,45,52,54,98,115,115,53,2,1,37,144,203,247,8,1,11,46,99,115,115,45,52,120,121,116,48,117,2,1,243,128,116,31,8,1,30,46,99,115,115,45,98,117,56,119,104,120,45,68,105,118,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,2,1,66,46,160,42,8,1,11,46,99,115,115,45,100,106,105,55,114,119,2,1,88,148,43,173,8,1,11,46,99,115,115,45,104,53,50,114,99,56,2,3,75,153,88,69,144,234,151,210,182,35,210,222,8,1,33,46,99,115,115,45,109,117,120,122,110,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,80,97,110,101,108,2,1,19,122,206,118,8,1,11,46,99,115,115,45,118,108,111,117,108,102,2,1,125,116,28,30,8,1,11,46,99,115,115,45,119,122,118,105,113,110,2,1,36,202,186,252,8,1,12,46,99,115,115,95,95,111,105,97,115,115,102,2,1,197,78,251,180,8,1,20,46,99,117,95,107,95,109,111,100,97,108,95,109,97,105,110,95,98,111,120,2,1,242,175,86,111,8,1,7,46,99,117,112,106,109,97,2,1,30,132,59,185,8,1,8,46,99,117,114,116,97,105,110,2,1,217,61,253,222,8,1,23,46,99,117,115,116,111,109,45,111,110,101,116,114,117,115,116,45,98,97,110,110,101,114,2,1,170,16,86,2,8,1,24,46,99,117,115,116,111,109,99,111,111,107,105,101,45,45,98,97,110,101,114,109,97,105,110,2,1,185,72,104,190,8,1,26,46,99,117,115,116,111,109,101,114,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,28,79,149,44,8,1,12,46,99,118,50,45,119,114,97,112,112,101,114,2,1,122,136,136,135,8,1,25,46,99,119,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,98,97,110,110,101,114,2,1,43,159,231,184,8,1,7,46,99,119,74,87,109,101,2,1,171,143,93,202,8,1,16,46,99,121,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,99,41,44,185,8,1,7,46,99,122,97,98,114,98,2,1,76,125,65,108,8,1,25,46,99,122,116,45,99,111,111,107,105,101,45,98,97,114,95,95,98,97,99,107,100,114,111,112,2,1,242,155,140,80,8,1,8,46,99,122,117,102,112,121,106,2,1,62,151,250,221,8,1,8,46,100,45,98,108,111,99,107,2,1,40,247,18,154,8,1,12,46,100,45,99,99,45,45,109,111,100,97,108,2,1,121,82,58,243,8,1,21,46,100,45,99,99,45,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,121,82,58,243,8,1,17,46,100,65,80,110,101,77,46,115,99,45,102,70,71,106,72,73,2,1,150,216,229,208,8,1,7,46,100,69,73,109,74,89,2,1,122,171,70,9,8,1,7,46,100,76,67,108,119,76,2,1,128,97,184,44,8,1,7,46,100,80,121,76,107,90,2,1,63,14,35,193,8,1,7,46,100,83,68,72,112,121,2,1,127,50,233,83,8,1,7,46,100,83,69,114,79,72,2,1,250,8,73,166,8,1,7,46,100,83,109,71,78,70,2,1,201,214,207,247,8,1,7,46,100,88,68,88,100,66,2,1,90,1,247,82,8,1,11,46,100,97,114,107,83,99,114,101,101,110,2,1,142,239,69,208,8,1,7,46,100,97,114,107,101,110,2,1,232,29,241,219,8,1,18,46,100,97,116,97,45,99,111,110,115,101,110,116,45,101,100,103,101,2,1,244,29,197,226,8,1,17,46,100,97,116,97,67,111,110,115,101,110,116,77,111,100,97,108,2,1,55,51,109,152,8,1,16,46,100,98,45,67,111,111,107,105,101,66,97,110,110,101,114,2,1,90,134,252,23,8,1,25,46,100,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,1,121,92,45,103,8,1,7,46,100,100,89,72,81,86,2,1,21,143,134,25,8,1,39,46,100,100,115,119,101,98,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,99,111,110,116,97,105,110,101,114,2,1,126,8,240,210,8,1,23,46,100,101,118,115,105,116,101,45,102,111,111,116,101,114,45,117,116,105,108,105,116,121,2,1,46,100,15,64,8,1,23,46,100,101,118,115,105,116,101,45,115,110,97,99,107,98,97,114,45,105,110,110,101,114,2,1,236,221,92,170,8,1,8,46,100,104,108,45,99,103,107,2,1,38,156,254,76,8,1,7,46,100,105,97,108,111,103,2,1,198,56,132,24,8,1,30,46,100,105,97,108,111,103,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,114,111,109,112,116,2,1,157,190,95,1,8,1,20,46,100,105,97,108,111,103,45,97,112,112,95,95,98,108,111,99,107,101,114,2,1,255,8,198,135,8,1,15,46,100,105,97,108,111,103,45,109,97,110,97,103,101,114,2,1,137,146,68,74,8,1,15,46,100,105,97,108,111,103,45,109,101,115,115,97,103,101,2,3,108,37,253,167,123,12,242,229,199,121,29,168,8,1,22,46,100,105,97,108,111,103,45,119,105,100,103,101,116,45,99,111,110,116,101,110,116,2,3,45,75,211,146,127,139,222,26,220,66,179,223,8,1,11,46,100,105,97,108,111,103,66,111,100,121,2,1,254,248,122,71,8,1,16,46,100,105,97,108,111,103,67,111,110,116,97,105,110,101,114,2,1,170,132,98,79,8,1,7,46,100,105,101,72,86,78,2,1,2,102,199,252,8,1,27,46,100,105,103,45,83,110,97,99,107,98,97,114,91,114,111,108,101,61,34,97,108,101,114,116,34,93,2,1,85,56,195,114,8,1,12,46,100,105,115,95,109,101,115,115,97,103,101,2,2,91,57,96,115,128,52,251,120,8,1,21,46,100,105,115,99,108,97,105,109,101,114,45,99,111,110,116,97,105,110,101,114,2,1,128,183,146,4,8,1,16,46,100,105,115,99,108,97,105,109,101,114,45,110,111,116,101,2,1,158,185,254,221,8,1,18,46,100,105,115,99,108,97,105,109,101,114,45,110,111,116,105,99,101,2,1,199,171,156,181,8,1,19,46,100,105,115,99,108,97,105,109,101,114,45,111,118,101,114,108,97,121,2,1,194,70,152,214,8,1,16,46,100,105,115,99,108,97,105,109,101,114,45,116,101,120,116,2,1,52,174,75,193,8,1,19,46,100,105,115,99,108,97,105,109,101,114,95,95,95,122,50,68,76,74,2,1,148,181,113,59,8,1,15,46,100,105,115,99,108,97,105,109,101,114,95,119,101,98,2,1,62,128,134,247,8,1,22,46,100,105,115,99,108,97,105,109,101,114,115,45,99,111,110,116,97,105,110,101,114,2,1,217,212,52,133,8,1,16,46,100,105,115,99,108,111,115,117,114,101,45,99,97,114,100,2,1,239,253,139,202,8,1,22,46,100,105,115,99,108,111,115,117,114,101,45,102,105,120,101,100,45,115,108,97,98,2,1,129,34,132,108,8,1,21,46,100,105,115,99,108,111,115,117,114,101,45,109,111,100,97,108,45,100,105,118,2,1,140,101,100,156,8,1,15,46,100,105,115,99,114,101,101,116,45,97,108,101,114,116,2,1,80,204,66,91,8,1,19,46,100,105,115,109,105,115,115,105,98,108,101,45,98,97,110,110,101,114,2,1,129,189,191,56,8,1,14,46,100,105,118,45,98,108,111,99,107,45,50,49,55,2,1,159,107,40,104,8,1,11,46,100,105,118,95,115,116,105,99,107,121,2,1,19,196,82,125,8,1,31,46,100,109,98,45,110,111,116,105,102,105,99,97,116,105,111,110,115,45,97,106,97,120,45,119,114,97,112,112,101,114,2,1,196,155,3,102,8,1,18,46,100,109,119,115,45,102,45,112,111,112,117,112,45,119,114,97,112,2,1,148,235,3,69,8,1,24,46,100,111,109,101,115,116,105,99,45,104,101,97,100,101,114,45,119,114,97,112,112,101,114,2,1,38,157,104,207,8,1,14,46,100,111,110,97,116,101,45,98,97,110,110,101,114,2,1,160,164,24,11,8,1,26,46,100,111,116,118,118,109,45,99,111,110,116,114,105,98,45,99,111,111,107,105,101,45,98,97,114,2,1,63,150,172,222,8,1,9,46,100,111,119,110,45,110,97,118,2,1,83,226,108,13,8,1,11,46,100,111,119,110,102,111,111,116,101,114,2,1,119,59,106,232,8,1,7,46,100,113,103,111,89,110,2,1,35,160,174,152,8,1,15,46,100,114,97,119,101,114,45,119,114,97,112,112,101,114,2,1,86,42,90,62,8,1,5,46,100,114,111,112,2,1,251,230,230,138,8,1,26,46,100,115,103,118,111,119,112,112,108,117,103,105,110,45,103,108,111,98,97,108,111,112,116,105,110,2,1,3,240,104,95,8,1,11,46,100,117,109,109,121,45,116,101,120,116,2,1,93,35,57,86,8,1,28,46,100,119,99,45,45,83,105,97,67,111,111,107,105,101,95,95,80,111,112,117,112,67,111,111,107,105,101,2,1,62,157,6,152,8,1,38,46,100,121,95,102,117,108,108,95,119,105,100,116,104,95,110,111,116,105,102,105,99,97,116,105,111,110,115,95,99,111,110,116,97,105,110,101,114,2,1,127,197,65,33,8,1,10,46,101,49,51,113,53,57,48,110,49,2,1,62,81,103,83,8,1,10,46,101,49,106,111,54,48,99,101,48,2,1,122,128,95,220,8,1,10,46,101,49,110,98,115,105,57,108,48,2,1,38,157,104,207,8,1,10,46,101,49,116,98,120,111,106,107,48,2,1,121,197,173,1,8,1,9,46,101,49,118,101,54,51,114,50,2,1,125,140,87,147,8,1,10,46,101,49,119,98,100,119,53,122,48,2,1,46,241,11,249,8,1,10,46,101,49,121,110,104,113,98,105,49,2,1,66,46,160,42,8,1,21,46,101,52,51,100,51,98,57,57,100,51,52,102,102,102,55,56,48,99,56,57,2,1,52,157,78,208,8,1,9,46,101,52,98,113,52,52,111,50,2,1,127,194,198,107,8,1,9,46,101,52,120,98,108,116,51,48,2,1,17,49,93,154,8,1,9,46,101,56,112,120,119,57,105,48,2,1,251,70,156,131,8,1,7,46,101,67,113,65,106,73,2,1,148,187,119,58,8,1,7,46,101,72,80,84,118,70,2,1,233,210,116,234,8,1,7,46,101,74,87,80,90,79,2,1,222,234,117,42,8,1,7,46,101,80,84,100,77,89,2,1,72,104,106,246,8,1,7,46,101,83,74,81,111,78,2,1,231,192,128,36,8,1,17,46,101,83,105,118,104,98,46,115,99,45,107,65,100,88,101,68,2,1,13,135,150,165,8,1,5,46,101,98,45,49,2,1,72,172,55,154,8,1,8,46,101,98,45,115,104,100,49,2,1,82,25,81,189,8,1,8,46,101,101,97,45,112,111,112,2,1,188,68,227,132,8,1,9,46,101,101,115,48,118,56,105,49,2,1,238,172,58,107,8,1,21,46,101,102,105,108,108,105,45,108,97,121,111,117,116,45,108,101,103,97,99,121,2,1,146,8,151,235,8,1,12,46,101,103,121,109,45,112,114,111,109,112,116,2,1,148,181,198,242,8,1,9,46,101,104,51,104,115,48,97,53,2,1,38,157,104,207,8,1,9,46,101,107,101,114,103,110,116,51,2,1,147,217,73,37,8,1,9,46,101,108,51,56,102,50,98,48,2,1,148,184,120,215,8,1,16,46,101,108,67,111,111,107,105,101,67,111,110,115,101,110,116,2,1,38,103,89,216,8,1,22,46,101,108,97,115,116,105,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,113,103,121,109,8,1,27,46,101,108,101,109,101,110,116,111,114,45,101,108,101,109,101,110,116,45,49,48,102,102,51,100,99,55,2,1,4,240,249,214,8,1,26,46,101,108,101,109,101,110,116,111,114,45,101,108,101,109,101,110,116,45,51,102,48,54,52,48,49,2,1,98,60,171,143,8,1,27,46,101,108,101,109,101,110,116,111,114,45,101,108,101,109,101,110,116,45,55,98,102,54,102,99,97,98,2,1,114,4,49,43,8,1,26,46,101,108,101,109,101,110,116,111,114,45,108,111,99,97,116,105,111,110,45,102,111,111,116,101,114,2,1,86,53,36,85,8,1,12,46,101,108,101,118,97,116,105,111,110,45,56,2,2,121,28,153,180,204,76,238,134,8,1,9,46,101,110,55,121,109,102,101,48,2,1,227,197,132,73,8,1,22,46,101,110,103,97,103,101,98,97,121,45,103,100,112,114,45,100,105,97,108,111,103,2,1,210,104,207,29,8,1,8,46,101,110,113,50,101,108,48,2,1,90,170,26,101,8,1,9,46,101,116,116,111,102,54,104,52,2,1,173,38,199,95,8,1,6,46,101,117,45,100,112,2,1,197,220,194,19,8,1,11,46,101,117,45,109,101,115,115,97,103,101,2,1,237,128,104,91,8,1,9,46,101,117,45,112,111,112,117,112,2,2,136,111,228,252,148,106,246,59,8,1,11,46,101,117,45,112,114,105,118,97,99,121,2,1,39,7,235,151,8,1,7,46,101,117,112,111,117,89,2,1,56,16,10,4,8,1,24,46,101,118,116,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,111,116,116,111,109,2,1,54,168,89,164,8,1,9,46,101,119,55,55,54,54,57,54,2,1,72,171,22,135,8,1,32,46,101,120,105,100,101,45,103,116,109,45,115,99,114,105,112,116,115,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,104,148,206,246,8,1,18,46,101,120,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,204,175,50,74,8,1,31,46,101,120,112,108,105,99,105,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,1,252,31,207,162,8,1,19,46,101,120,112,108,111,114,101,114,45,110,45,112,114,105,118,97,99,121,2,1,137,252,94,216,8,1,21,46,102,45,99,109,112,45,102,108,121,111,117,116,45,119,114,97,112,112,101,114,2,1,121,209,41,231,8,1,19,46,102,45,99,111,111,107,105,101,46,99,111,110,116,97,105,110,101,114,2,1,124,167,211,71,8,1,8,46,102,52,108,112,118,119,100,2,1,185,85,61,62,8,1,7,46,102,67,116,66,105,69,2,1,240,124,118,185,8,1,7,46,102,68,117,70,69,118,2,1,209,181,190,215,8,1,38,46,102,70,79,105,76,81,46,69,107,108,50,70,65,46,82,78,70,78,73,65,46,95,57,121,45,66,89,81,46,95,49,67,122,121,71,104,98,2,1,127,57,106,115,8,1,7,46,102,86,73,109,83,76,2,1,190,28,192,237,8,1,7,46,102,90,105,80,65,71,2,1,127,55,184,147,8,1,14,46,102,97,99,45,99,111,111,107,105,101,98,111,116,2,1,137,78,166,95,8,1,8,46,102,97,100,101,45,105,110,2,1,121,220,149,233,8,1,7,46,102,97,100,101,77,101,2,1,251,49,179,107,8,1,16,46,102,97,110,99,121,98,111,120,45,111,112,101,110,101,100,2,1,148,186,173,126,8,1,17,46,102,97,110,99,121,98,111,120,45,111,118,101,114,108,97,121,2,3,138,90,201,158,148,186,173,126,171,138,36,219,8,1,14,46,102,97,110,99,121,98,111,120,45,119,114,97,112,2,1,138,90,201,158,8,1,13,46,102,101,97,116,104,101,114,108,105,103,104,116,2,1,48,96,64,36,8,1,17,46,102,101,101,100,98,97,99,107,45,118,105,115,105,98,108,101,2,1,86,103,250,120,8,1,6,46,102,103,95,110,51,2,1,123,172,179,48,8,1,13,46,102,105,103,109,97,45,98,57,55,48,107,120,2,1,127,50,15,0,8,1,19,46,102,105,114,115,116,45,116,105,109,101,45,118,105,115,105,116,111,114,2,2,14,146,225,213,101,242,23,25,8,1,13,46,102,105,114,115,116,84,105,109,101,84,105,112,2,1,78,56,23,239,8,1,7,46,102,105,120,66,97,114,2,1,118,178,242,159,8,1,6,46,102,105,120,101,100,2,1,126,180,174,53,8,1,14,46,102,105,120,101,100,45,111,118,101,114,108,97,121,2,1,101,160,213,80,8,1,14,46,102,105,120,101,100,45,119,97,114,110,105,110,103,2,1,15,98,95,133,8,1,22,46,102,105,120,101,100,46,98,103,45,103,112,45,103,114,101,101,110,45,49,48,48,2,1,215,38,29,103,8,1,22,46,102,105,120,101,100,46,98,103,45,103,114,101,121,45,100,97,114,107,101,115,116,2,1,54,249,180,102,8,1,16,46,102,105,120,101,100,46,98,111,116,116,111,109,45,50,52,2,1,62,54,249,228,8,1,26,46,102,105,120,101,100,46,114,111,117,110,100,101,100,45,108,103,46,98,111,116,116,111,109,45,48,2,1,22,58,220,56,8,1,15,46,102,105,120,101,100,80,111,108,105,99,121,66,111,120,2,1,85,88,144,18,8,1,12,46,102,105,120,101,100,82,101,103,105,111,110,2,1,190,156,16,216,8,1,13,46,102,105,120,101,100,95,98,116,109,95,98,103,2,1,226,164,135,82,8,1,9,46,102,105,120,101,100,98,97,114,2,1,213,5,153,113,8,1,9,46,102,105,120,101,100,98,111,116,2,2,86,157,77,161,126,1,148,179,8,1,10,46,102,108,45,97,99,99,101,112,116,2,1,161,62,122,51,8,1,13,46,102,108,97,115,104,45,98,111,116,116,111,109,2,1,198,87,42,124,8,1,19,46,102,108,97,115,104,45,102,105,120,101,100,45,98,111,116,116,111,109,2,1,100,63,155,166,8,1,27,46,102,108,97,115,104,45,109,101,115,115,97,103,101,45,97,110,110,111,117,110,99,101,109,101,110,116,2,1,2,255,184,13,8,1,23,46,102,108,97,115,104,45,109,101,115,115,97,103,101,95,95,119,114,97,112,112,101,114,2,2,38,157,169,184,140,66,234,165,8,1,15,46,102,108,101,120,45,99,111,110,116,97,105,110,101,114,2,1,173,216,165,185,8,1,17,46,102,108,101,120,46,99,111,111,107,105,101,95,119,114,97,112,2,1,12,101,2,201,8,1,6,46,102,108,111,97,116,2,1,74,86,154,246,8,1,10,46,102,108,111,97,116,45,98,97,114,2,3,65,250,164,60,113,193,149,166,128,97,107,165,8,1,13,46,102,108,111,97,116,45,98,111,116,116,111,109,2,1,127,252,20,62,8,1,21,46,102,108,111,97,116,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,181,62,13,69,8,1,20,46,102,108,111,97,116,45,109,101,115,115,97,103,101,95,95,119,114,97,112,2,8,27,178,253,255,69,89,123,172,78,125,29,5,83,224,71,204,98,54,121,212,161,136,36,107,215,22,193,193,227,185,178,190,8,1,21,46,102,108,111,97,116,45,118,101,114,116,105,99,97,108,45,112,97,110,101,108,2,1,148,148,218,185,8,1,12,46,102,108,111,97,116,70,111,111,116,101,114,2,2,26,191,0,194,40,54,196,117,8,1,11,46,102,108,111,97,116,80,111,112,117,112,2,1,35,89,37,252,8,1,13,46,102,108,111,97,116,105,110,103,45,98,97,114,2,2,72,83,96,51,166,191,47,41,8,1,44,46,102,108,111,97,116,105,110,103,45,103,114,111,117,112,46,70,108,111,97,116,105,110,103,71,114,111,117,112,46,98,117,98,98,108,101,45,101,108,101,109,101,110,116,2,1,95,227,82,153,8,1,24,46,102,108,111,119,97,112,112,122,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,3,22,48,173,193,154,7,215,167,243,162,21,62,8,1,17,46,102,111,111,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,72,115,99,158,8,1,7,46,102,111,111,116,101,114,2,4,26,214,131,85,67,148,9,225,126,249,152,223,177,30,236,40,8,1,20,46,102,111,111,116,101,114,45,97,110,110,111,117,110,99,101,109,101,110,116,2,1,65,119,228,49,8,1,11,46,102,111,111,116,101,114,45,98,97,114,2,1,125,116,162,243,8,1,17,46,102,111,111,116,101,114,45,102,105,120,101,100,45,98,97,114,2,1,236,20,40,66,8,1,14,46,102,111,111,116,101,114,45,110,111,116,105,99,101,2,1,244,196,99,91,8,1,26,46,102,111,111,116,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,45,112,111,112,117,112,2,1,137,217,243,165,8,1,14,46,102,111,111,116,101,114,45,112,111,108,105,99,121,2,3,23,246,146,210,49,203,178,64,58,14,180,93,8,1,13,46,102,111,111,116,101,114,45,112,111,112,117,112,2,2,83,132,221,222,209,237,147,131,8,1,18,46,102,111,111,116,101,114,45,115,116,97,116,101,109,101,110,116,115,2,1,159,182,170,127,8,1,15,46,102,111,111,116,101,114,45,119,114,97,112,112,101,114,2,1,165,24,151,229,8,1,15,46,102,111,111,116,101,114,95,95,98,97,110,110,101,114,2,1,202,34,178,97,8,1,15,46,102,111,111,116,101,114,95,95,110,111,116,105,99,101,2,3,58,122,113,11,103,224,165,147,152,67,168,93,8,1,22,46,102,111,111,116,101,114,95,112,114,105,118,97,99,121,95,112,111,108,105,99,121,2,1,228,102,144,203,8,1,10,46,102,111,111,116,101,114,109,115,103,2,1,133,231,99,98,8,1,9,46,102,111,116,45,102,105,120,100,2,1,111,235,29,162,8,1,6,46,102,112,67,100,109,2,1,38,157,28,48,8,1,24,46,102,114,97,109,101,114,45,49,122,97,110,50,55,45,99,111,110,116,97,105,110,101,114,2,1,148,187,40,181,8,1,7,46,102,114,117,98,71,88,2,1,172,196,6,134,8,1,11,46,102,115,45,99,111,110,115,101,110,116,2,1,28,43,1,72,8,1,17,46,102,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,2,82,179,0,34,220,96,253,130,8,1,23,46,102,115,95,99,99,45,98,97,110,110,101,114,95,99,111,109,112,111,110,101,110,116,2,1,248,217,28,117,8,1,19,46,102,115,105,45,108,97,121,111,117,116,45,110,111,116,105,99,101,115,2,1,30,163,203,37,8,1,18,46,102,115,110,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,133,202,4,78,8,1,13,46,102,117,108,108,45,111,118,101,114,108,97,121,2,1,252,104,85,13,8,1,29,46,102,120,103,45,97,108,101,114,116,95,95,102,100,120,95,99,111,111,107,105,101,95,110,111,116,105,99,101,2,1,127,239,71,198,8,1,11,46,102,120,115,95,102,111,111,116,101,114,2,1,242,197,89,199,8,1,9,46,103,45,100,105,97,108,111,103,2,1,148,181,65,54,8,1,7,46,103,69,81,119,118,79,2,2,57,117,165,140,184,2,94,177,8,1,7,46,103,81,73,68,99,79,2,1,35,160,174,152,8,1,6,46,103,97,111,111,112,2,1,10,139,39,242,8,1,15,46,103,97,115,45,99,111,111,107,105,101,45,98,97,114,2,1,29,205,193,34,8,1,17,46,103,97,116,101,119,97,121,67,111,110,116,97,105,110,101,114,2,1,1,140,167,163,8,1,15,46,103,98,95,99,111,111,107,105,101,95,105,110,102,111,2,1,73,106,178,141,8,1,18,46,103,98,99,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,228,137,99,141,8,1,10,46,103,99,98,95,51,53,53,53,54,2,2,153,166,119,171,214,205,172,244,8,1,12,46,103,100,112,114,45,45,109,111,100,97,108,2,1,2,186,244,220,8,1,11,46,103,100,112,114,45,99,104,101,99,107,2,1,54,231,115,22,8,1,28,46,103,100,112,114,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,119,114,97,112,112,101,114,2,1,14,95,94,146,8,1,20,46,103,100,112,114,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,183,10,82,39,8,1,11,46,103,100,112,114,45,105,110,110,101,114,2,1,129,202,217,29,8,1,11,46,103,100,112,114,45,109,111,100,97,108,2,1,208,35,9,75,8,1,25,46,103,100,112,114,45,109,111,100,117,108,101,45,45,103,100,112,114,45,45,57,48,56,98,49,2,1,126,82,200,75,8,1,12,46,103,100,112,114,45,119,105,110,100,111,119,2,2,126,250,242,120,150,63,28,110,8,1,10,46,103,100,112,114,84,104,101,109,101,2,2,10,152,58,145,207,215,150,36,8,1,13,46,103,100,112,114,95,95,104,111,108,100,101,114,2,1,9,24,86,96,8,1,11,46,103,100,112,114,95,98,108,111,99,107,2,1,127,196,144,190,8,1,12,46,103,100,112,114,95,104,111,108,100,101,114,2,1,39,169,230,23,8,1,23,46,103,101,110,101,115,105,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,72,29,187,103,8,1,21,46,103,102,117,45,102,108,111,97,116,105,110,103,45,109,101,115,115,97,103,101,2,1,76,34,87,32,8,1,14,46,103,103,45,99,115,115,45,55,55,105,117,57,111,2,1,65,15,80,7,8,1,14,46,103,105,110,103,101,114,95,98,97,110,110,101,114,2,1,68,150,133,79,8,1,7,46,103,107,72,103,99,80,2,2,0,104,199,129,190,190,188,63,8,1,7,46,103,107,90,99,103,122,2,1,159,39,167,115,8,1,6,46,103,108,45,99,109,2,1,215,130,154,202,8,1,6,46,103,108,65,102,105,2,1,40,214,170,184,8,1,13,46,103,108,111,98,97,108,45,97,108,101,114,116,2,1,153,46,38,42,8,1,16,46,103,108,111,98,97,108,45,109,101,115,115,97,103,101,115,2,1,74,166,110,149,8,1,14,46,103,108,111,98,97,108,45,110,111,116,105,99,101,2,1,73,147,206,123,8,1,13,46,103,108,111,98,97,108,45,110,111,116,105,102,2,1,128,137,133,173,8,1,30,46,103,108,111,98,97,108,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,2,1,167,159,83,149,8,1,26,46,103,108,111,98,97,108,45,111,118,101,114,108,97,121,45,98,97,99,107,103,114,111,117,110,100,2,1,64,134,219,59,8,1,27,46,103,108,111,98,97,108,45,116,111,97,115,116,45,45,99,111,111,107,105,101,45,116,111,97,115,116,2,1,244,240,146,75,8,1,19,46,103,108,111,98,97,108,65,110,110,111,117,110,99,101,109,101,110,116,2,2,104,250,61,158,127,134,60,119,8,1,12,46,103,108,111,98,97,108,79,112,116,73,110,2,1,160,167,180,215,8,1,12,46,103,108,111,119,45,98,97,110,110,101,114,2,2,100,206,142,8,133,156,167,7,8,1,29,46,103,108,117,101,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,2,4,11,57,5,131,68,186,161,48,147,105,209,121,236,221,92,170,8,1,7,46,103,109,69,119,87,97,2,1,61,206,139,129,8,1,17,46,103,109,116,95,98,108,111,99,107,95,115,99,114,101,101,110,2,1,167,18,146,105,8,1,13,46,103,111,50,48,55,50,52,48,56,53,53,49,2,1,204,217,76,70,8,1,25,46,103,111,111,103,108,101,45,97,110,97,108,121,116,105,99,115,45,109,101,115,115,97,103,101,2,1,190,15,141,161,8,1,21,46,103,111,111,117,116,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,120,138,168,116,8,1,25,46,103,114,97,110,105,102,121,45,119,105,100,103,101,116,45,99,111,110,116,97,105,110,101,114,2,2,184,196,224,209,195,204,61,57,8,1,8,46,103,114,101,121,45,98,103,2,1,124,244,233,119,8,1,15,46,103,115,45,99,111,111,107,105,101,45,119,97,108,108,2,1,74,221,45,51,8,1,19,46,103,115,99,45,99,111,111,107,105,101,45,115,101,99,116,105,111,110,2,1,228,158,19,226,8,1,7,46,103,117,84,105,108,121,2,1,233,43,224,94,8,1,10,46,103,117,101,115,116,119,97,114,110,2,1,77,9,93,255,8,1,15,46,103,117,103,103,101,110,45,99,111,110,115,101,110,116,2,1,225,121,114,39,8,1,7,46,103,121,104,79,112,107,2,1,38,157,76,56,8,1,7,46,104,65,80,76,79,65,2,1,233,210,116,234,8,1,7,46,104,67,84,79,69,109,2,1,217,82,115,223,8,1,17,46,104,97,115,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,192,211,222,230,8,1,7,46,104,99,71,77,85,117,2,1,163,61,150,209,8,1,10,46,104,101,97,100,80,111,112,117,112,2,1,87,193,19,12,8,1,35,46,104,101,97,100,101,114,45,99,111,109,112,111,110,101,110,116,95,95,109,101,115,115,97,103,101,115,45,111,118,101,114,108,97,121,2,1,126,51,13,166,8,1,15,46,104,101,97,100,101,114,45,109,101,115,115,97,103,101,2,1,179,59,204,50,8,1,12,46,104,101,97,100,101,114,45,112,101,114,109,2,1,150,99,101,216,8,1,13,46,104,101,97,100,101,114,45,115,104,101,101,116,2,1,229,179,8,23,8,1,23,46,104,101,97,100,101,114,45,115,116,97,99,107,101,100,45,109,101,115,115,97,103,101,2,1,2,35,152,25,8,1,18,46,104,101,97,100,101,114,45,116,111,112,45,98,97,110,110,101,114,2,1,203,69,78,234,8,1,9,46,104,101,97,100,110,111,116,101,2,1,198,153,103,147,8,1,10,46,104,101,108,108,111,45,98,97,114,2,1,37,123,38,137,8,1,20,46,104,105,108,108,97,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,20,69,73,142,8,1,46,46,104,109,97,114,116,117,115,45,115,116,111,114,101,45,116,104,101,109,101,45,49,45,120,45,99,111,111,107,105,101,115,77,111,100,97,108,95,95,119,114,97,112,112,101,114,2,1,128,92,3,18,8,1,18,46,104,111,109,101,45,97,110,110,111,117,110,99,101,109,101,110,116,2,1,218,7,97,183,8,1,24,46,104,116,45,110,111,116,105,102,105,99,97,116,105,111,110,45,115,101,99,116,105,111,110,2,1,108,15,115,48,8,1,11,46,104,117,45,119,114,97,112,112,101,114,2,1,123,138,157,62,8,1,21,46,104,117,97,119,101,105,45,98,111,111,116,111,109,45,99,111,111,107,105,101,2,1,78,105,197,223,8,1,25,46,104,117,97,119,101,105,45,99,111,110,118,101,114,103,101,110,116,45,99,111,111,107,105,101,2,1,12,94,157,231,8,1,4,46,104,117,100,2,1,143,203,9,152,8,1,13,46,104,117,115,116,108,101,45,112,111,112,117,112,2,1,22,96,163,183,8,1,22,46,104,119,105,100,45,98,97,110,110,101,114,66,111,120,45,112,111,114,116,97,108,2,1,35,182,75,132,8,1,16,46,104,121,45,109,117,115,107,45,119,114,97,112,112,101,114,2,1,37,144,232,167,8,1,12,46,105,65,103,114,101,101,80,111,112,117,112,2,1,74,100,17,88,8,1,7,46,105,85,83,118,73,121,2,1,217,82,115,223,8,1,7,46,105,90,79,79,79,75,2,1,41,223,59,65,8,1,21,46,105,97,97,119,103,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,126,175,212,157,8,1,7,46,105,98,99,68,67,115,2,1,55,186,16,186,8,1,17,46,105,98,99,68,67,115,46,115,99,45,100,104,75,100,99,66,2,1,97,109,248,103,8,1,9,46,105,98,109,45,115,104,111,119,2,1,38,157,30,10,8,1,18,46,105,99,110,45,115,116,105,99,107,121,45,102,111,111,116,101,114,2,1,254,98,34,83,8,1,17,46,105,99,111,110,95,114,111,108,108,105,110,103,116,101,120,116,2,1,254,16,68,87,8,1,7,46,105,100,69,84,97,78,2,1,127,55,15,72,8,1,7,46,105,102,115,66,66,68,2,1,221,116,140,110,8,1,14,46,105,103,95,97,99,116,105,111,110,95,98,97,114,2,1,133,170,171,214,8,1,7,46,105,108,100,105,69,114,2,1,38,237,174,154,8,1,25,46,105,109,112,111,114,116,97,110,116,45,109,101,115,115,97,103,101,45,98,97,110,110,101,114,2,1,189,67,230,0,8,1,5,46,105,110,102,111,2,1,65,174,140,193,8,1,9,46,105,110,102,111,45,98,97,114,2,1,128,60,231,173,8,1,19,46,105,110,102,111,45,98,111,116,116,111,109,45,119,105,110,100,111,119,2,1,137,218,212,131,8,1,13,46,105,110,102,111,45,109,101,115,115,97,103,101,2,1,35,63,169,89,8,1,9,46,105,110,102,111,45,109,115,103,2,3,129,149,242,9,193,141,0,214,225,119,203,131,8,1,12,46,105,110,102,111,95,98,97,110,110,101,114,2,1,60,149,60,117,8,1,9,46,105,110,102,111,95,98,111,120,2,1,31,205,139,135,8,1,8,46,105,110,102,111,98,97,114,2,1,193,141,0,214,8,1,16,46,105,110,102,111,98,97,114,45,109,101,115,115,97,103,101,2,1,98,58,189,172,8,1,26,46,105,110,102,111,98,97,114,45,116,111,97,115,116,101,114,45,99,111,110,116,97,105,110,101,114,2,1,142,14,98,194,8,1,14,46,105,110,102,111,98,111,120,72,111,108,100,101,114,2,1,123,187,126,93,8,1,13,46,105,110,105,116,95,109,101,115,115,97,103,101,2,1,93,148,169,148,8,1,7,46,105,110,105,116,97,108,2,1,251,49,179,107,8,1,18,46,105,110,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,105,55,149,110,8,1,12,46,105,110,115,45,110,111,116,105,99,101,115,2,1,45,56,73,125,8,1,17,46,105,110,115,101,116,45,48,46,97,98,115,111,108,117,116,101,2,1,59,177,117,94,8,1,15,46,105,110,116,101,114,105,109,45,98,97,110,110,101,114,2,1,108,80,50,187,8,1,12,46,105,112,117,98,45,99,111,111,107,105,101,2,1,93,82,129,57,8,1,7,46,105,113,121,115,120,115,2,1,118,131,35,170,8,1,31,46,105,114,111,110,117,115,97,45,99,111,111,107,105,101,45,109,111,100,97,108,45,48,45,120,45,109,111,100,97,108,2,1,96,221,43,49,8,1,7,46,105,114,121,112,120,71,2,1,93,95,192,74,8,1,11,46,105,115,45,99,111,110,115,101,110,116,2,1,106,73,2,92,8,1,23,46,105,115,45,102,105,120,101,100,45,98,111,116,116,111,109,46,110,97,118,98,97,114,2,1,66,229,182,42,8,1,9,46,105,115,45,109,111,100,97,108,2,1,252,3,162,87,8,1,8,46,105,115,45,111,112,101,110,2,1,237,161,190,122,8,1,7,46,105,116,99,45,99,99,2,1,41,166,0,115,8,1,25,46,105,116,101,109,115,45,115,116,97,114,116,46,102,108,101,120,46,114,111,117,110,100,101,100,2,1,85,254,19,157,8,1,23,46,105,116,118,45,103,108,111,98,45,102,111,111,116,95,95,99,111,111,107,105,101,115,2,1,38,157,157,7,8,1,7,46,105,119,73,89,67,71,2,1,170,238,39,245,8,1,17,46,105,122,105,84,111,97,115,116,45,119,114,97,112,112,101,114,2,1,253,208,10,83,8,1,20,46,106,45,116,111,115,45,117,112,100,97,116,101,45,98,97,110,110,101,114,2,1,128,97,122,172,8,1,7,46,106,79,83,87,90,97,2,1,140,156,223,60,8,1,7,46,106,97,69,103,102,120,2,1,188,57,253,72,8,1,18,46,106,98,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,102,118,94,216,8,1,7,46,106,100,98,101,76,84,2,1,125,140,246,2,8,1,22,46,106,101,118,101,110,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,98,147,228,3,8,1,18,46,106,102,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,65,88,61,28,8,1,7,46,106,105,73,69,103,116,2,1,160,119,218,156,8,1,19,46,106,105,109,117,45,119,105,100,103,101,116,45,115,112,108,97,115,104,2,1,35,34,171,242,8,1,14,46,106,109,45,99,111,111,107,105,101,45,98,97,114,2,1,129,136,4,120,8,1,6,46,106,110,111,116,101,2,1,8,243,64,142,8,1,25,46,106,111,117,114,110,97,108,45,104,101,97,100,101,114,45,110,111,116,105,99,101,45,55,51,2,1,64,245,84,116,8,1,14,46,106,112,105,119,105,107,71,114,111,119,108,101,114,2,1,190,73,179,50,8,1,14,46,106,112,105,119,105,107,79,118,101,114,108,97,121,2,1,190,73,179,50,8,1,16,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,2,1,145,249,251,85,8,1,18,46,106,113,117,101,114,121,45,110,111,116,105,102,121,45,98,97,114,2,1,156,154,161,239,8,1,14,46,106,115,45,97,99,116,105,111,110,45,98,97,114,2,1,21,123,174,99,8,1,20,46,106,115,45,97,108,101,114,116,115,45,99,111,110,116,97,105,110,101,114,2,1,217,247,230,56,8,1,13,46,106,115,45,99,98,45,112,111,108,105,99,121,2,1,214,201,132,236,8,1,11,46,106,115,45,99,111,110,102,105,114,109,2,1,181,149,141,182,8,1,15,46,106,115,45,99,111,110,115,101,110,116,45,98,111,120,2,2,188,54,47,103,233,109,18,221,8,1,22,46,106,115,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,2,1,40,71,190,127,8,1,28,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,95,95,98,103,2,1,123,102,248,190,8,1,13,46,106,115,45,99,111,111,107,105,101,98,111,116,2,1,33,20,98,135,8,1,18,46,106,115,45,100,105,97,108,111,103,45,45,99,111,111,107,105,101,2,1,174,222,214,246,8,1,22,46,106,115,45,102,105,114,115,116,45,118,105,115,105,116,45,98,97,110,110,101,114,2,2,174,60,151,157,210,203,232,189,8,1,10,46,106,115,45,110,111,116,105,99,101,2,1,232,232,253,237,8,1,11,46,106,115,45,110,111,116,105,99,101,115,2,1,215,43,116,184,8,1,16,46,106,115,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,125,50,13,139,8,1,14,46,106,115,45,115,105,116,101,45,97,108,101,114,116,2,1,38,157,157,7,8,1,22,46,106,115,45,115,105,116,101,45,97,108,101,114,116,45,99,111,110,116,101,110,116,2,1,38,157,157,7,8,1,16,46,106,115,45,116,111,111,108,115,45,100,105,97,108,111,103,2,1,148,181,65,54,8,1,18,46,106,115,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,73,185,43,61,8,1,8,46,106,115,115,49,48,57,55,2,1,135,250,36,142,8,1,7,46,106,115,115,49,52,52,2,1,192,62,69,167,8,1,7,46,106,115,115,51,48,50,2,1,27,83,181,24,8,1,5,46,106,115,115,52,2,1,173,21,213,225,8,1,6,46,106,115,115,52,54,2,1,148,193,171,46,8,1,7,46,106,115,115,52,54,56,2,1,190,50,90,112,8,1,6,46,106,115,115,54,51,2,1,86,230,120,97,8,1,6,46,106,115,115,54,55,2,1,129,52,202,152,8,1,14,46,106,115,120,45,51,53,50,49,57,55,51,50,52,2,1,63,37,157,88,8,1,14,46,106,115,120,45,53,51,57,56,48,57,48,56,48,2,1,49,151,128,92,8,1,7,46,106,116,71,110,109,120,2,1,19,59,234,13,8,1,16,46,106,116,112,45,115,107,105,110,110,121,45,103,100,112,114,2,2,122,159,60,110,178,41,193,183,8,1,21,46,106,116,112,115,100,107,45,98,111,100,121,45,98,108,97,99,107,111,117,116,2,1,178,41,193,183,8,1,19,46,106,116,112,115,100,107,45,112,111,112,117,112,45,109,111,100,97,108,2,1,178,41,193,183,8,1,7,46,106,117,95,67,111,110,2,1,188,115,210,235,8,1,10,46,106,119,45,112,111,112,117,112,115,2,1,159,227,234,9,8,1,19,46,106,119,45,112,111,112,117,112,115,45,98,97,99,107,100,114,111,112,2,1,159,227,234,9,8,1,20,46,106,119,45,112,111,112,117,112,115,45,99,111,110,116,97,105,110,101,114,2,1,159,227,234,9,8,1,5,46,107,52,119,54,2,1,203,33,19,204,8,1,7,46,107,67,115,73,78,77,2,1,93,95,192,74,8,1,17,46,107,71,108,118,78,65,46,115,99,45,103,120,89,74,101,76,2,1,150,216,229,208,8,1,7,46,107,85,120,73,115,66,2,1,228,147,162,126,8,1,7,46,107,86,84,101,107,119,2,1,113,92,60,46,8,1,16,46,107,95,95,99,111,111,107,105,101,45,112,111,112,117,112,2,2,82,226,14,14,135,188,208,42,8,1,7,46,107,97,78,83,81,68,2,1,115,52,36,150,8,1,13,46,107,98,45,99,111,110,116,97,105,110,101,114,2,1,86,135,159,13,8,1,7,46,107,99,84,119,65,103,2,1,162,106,176,202,8,1,7,46,107,99,109,72,71,100,2,1,56,25,25,113,8,1,7,46,107,100,78,67,78,101,2,1,57,185,206,127,8,1,11,46,107,100,107,45,99,111,111,107,105,101,2,1,126,34,47,233,8,1,6,46,107,104,90,73,105,2,1,126,51,4,147,8,1,7,46,107,105,110,76,86,89,2,1,159,203,198,198,8,1,7,46,107,106,118,73,113,104,2,1,120,203,45,164,8,1,7,46,107,107,115,105,75,117,2,1,234,220,12,72,8,1,7,46,107,108,73,118,69,117,2,1,128,157,1,50,8,1,12,46,107,111,101,107,106,101,115,98,97,108,107,2,1,86,158,101,243,8,1,9,46,107,111,108,97,99,105,99,105,2,1,196,219,235,135,8,1,7,46,107,114,72,71,119,85,2,1,6,215,173,85,8,1,10,46,107,116,104,45,116,111,97,115,116,2,1,218,153,112,73,8,1,17,46,108,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,2,1,126,34,239,128,8,1,13,46,108,45,100,105,115,99,108,97,105,109,101,114,2,2,24,84,49,30,80,218,207,50,8,1,18,46,108,45,100,105,115,109,105,115,115,105,98,108,101,45,109,115,103,2,1,139,104,77,111,8,1,16,46,108,45,102,105,120,101,100,45,45,98,111,116,116,111,109,2,1,217,226,178,239,8,1,15,46,108,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,127,224,76,10,8,1,6,46,108,68,99,120,117,2,1,114,214,199,55,8,1,6,46,108,79,80,67,56,2,1,26,186,75,244,8,1,25,46,108,97,110,100,105,110,103,95,112,114,111,109,111,95,98,97,110,110,101,114,95,116,111,112,2,1,218,130,245,25,8,1,18,46,108,97,110,103,117,97,103,101,45,115,119,105,116,99,104,101,114,2,1,38,157,170,100,8,1,22,46,108,97,119,50,53,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,242,44,32,134,8,1,19,46,108,97,121,101,114,45,109,111,100,97,108,45,102,111,111,116,101,114,2,1,148,188,20,10,8,1,16,46,108,97,121,111,117,116,45,109,101,115,115,97,103,101,115,2,1,54,199,222,123,8,1,11,46,108,97,121,111,117,116,45,114,111,119,2,1,49,255,20,90,8,1,39,46,108,97,121,111,117,116,72,101,97,100,101,114,45,105,110,102,111,114,109,97,116,105,111,110,77,101,115,115,97,103,101,87,114,97,112,112,101,114,2,1,5,188,209,247,8,1,11,46,108,98,95,111,118,101,114,108,97,121,2,1,122,12,255,151,8,1,13,46,108,99,99,45,98,97,99,107,100,114,111,112,2,1,56,107,179,217,8,1,10,46,108,99,99,45,109,111,100,97,108,2,1,56,107,179,217,8,1,22,46,108,101,97,100,101,114,98,111,97,114,100,95,99,111,110,116,97,105,110,101,114,2,1,79,228,150,80,8,1,7,46,108,101,102,116,45,51,2,1,60,150,163,159,8,1,12,46,108,101,102,116,46,100,105,97,108,111,103,2,1,243,22,48,190,8,1,7,46,108,101,103,97,99,121,2,1,165,61,159,207,8,1,16,46,108,101,103,97,108,45,97,103,114,101,101,109,101,110,116,2,1,171,81,186,2,8,1,13,46,108,101,103,97,108,45,98,97,110,110,101,114,2,1,128,158,78,207,8,1,23,46,108,101,103,97,108,45,98,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,2,2,130,202,66,51,222,70,249,227,8,1,13,46,108,101,103,97,108,45,102,111,111,116,101,114,2,1,126,1,103,52,8,1,24,46,108,101,103,97,108,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,2,1,7,48,173,208,8,1,13,46,108,101,103,97,108,45,110,111,116,105,99,101,2,2,120,14,98,16,137,107,118,60,8,1,14,46,108,101,103,97,108,45,119,97,114,110,105,110,103,2,1,101,112,132,24,8,1,7,46,108,101,105,75,79,76,2,1,201,144,167,21,8,1,24,46,108,101,112,111,112,117,112,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,255,158,253,43,8,1,22,46,108,101,112,111,112,117,112,45,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,255,158,253,43,8,1,12,46,108,103,45,98,97,99,107,100,114,111,112,2,1,42,183,209,121,8,1,5,46,108,103,112,100,2,1,208,152,226,185,8,1,25,46,108,105,103,104,116,45,98,108,117,101,45,98,111,114,100,101,114,101,100,45,99,97,114,100,2,1,161,47,170,116,8,1,9,46,108,105,103,104,116,98,111,120,2,1,158,20,226,239,8,1,26,46,108,105,110,107,102,108,121,45,99,116,120,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,239,179,123,121,8,1,19,46,108,105,110,107,115,45,97,114,101,45,114,101,118,101,114,115,101,100,2,1,170,47,171,96,8,1,10,46,108,108,95,98,97,110,110,101,114,2,1,199,154,158,207,8,1,18,46,108,110,99,45,102,105,114,115,116,82,117,110,80,111,112,117,112,2,1,225,191,60,22,8,1,13,46,108,111,99,107,45,99,111,111,107,105,101,115,2,1,4,38,98,192,8,1,18,46,108,111,103,105,110,45,99,111,111,107,105,101,45,116,105,112,115,2,1,16,144,243,167,8,1,14,46,108,111,103,105,110,45,119,114,97,112,112,101,114,2,1,108,213,84,26,8,1,8,46,109,45,97,108,101,114,116,2,1,87,193,19,12,8,1,13,46,109,45,98,111,120,45,112,111,108,105,99,121,2,1,18,80,60,79,8,1,12,46,109,45,110,111,116,105,99,101,66,97,114,2,1,245,11,223,1,8,1,18,46,109,45,112,114,105,118,97,99,121,45,111,112,116,105,111,110,115,2,1,10,56,224,117,8,1,11,46,109,45,115,116,114,101,97,109,101,114,2,1,248,178,28,174,8,1,16,46,109,45,119,97,114,110,105,110,103,45,97,108,101,114,116,2,2,194,197,251,248,248,6,145,229,8,1,19,46,109,49,45,102,111,111,116,101,114,45,109,101,115,115,97,103,101,115,2,4,76,59,107,4,153,96,148,250,192,215,193,192,216,39,88,144,8,1,24,46,109,97,103,105,99,112,108,97,110,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,36,235,141,150,8,1,24,46,109,97,105,108,112,111,101,116,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,2,1,109,56,55,188,8,1,17,46,109,97,105,110,45,99,111,111,107,105,101,115,45,49,77,45,2,1,33,143,51,166,8,1,16,46,109,97,105,110,45,115,105,116,101,45,110,111,116,101,115,2,1,163,242,188,97,8,1,18,46,109,97,105,110,116,101,110,97,110,99,101,45,112,111,112,117,112,2,2,160,164,24,186,243,77,12,55,8,1,15,46,109,97,110,116,105,110,101,45,55,55,50,54,121,115,2,1,55,180,3,166,8,1,20,46,109,97,110,116,105,110,101,45,68,105,97,108,111,103,45,114,111,111,116,2,2,44,186,94,132,51,176,62,92,8,1,25,46,109,97,114,107,101,116,105,110,103,45,111,112,116,45,105,110,45,101,110,97,98,108,101,100,2,1,106,5,218,221,8,1,5,46,109,97,115,107,2,3,86,50,239,246,120,182,162,75,126,34,47,233,8,1,21,46,109,97,120,45,119,45,115,99,114,101,101,110,45,109,100,46,122,45,52,48,2,1,57,211,29,142,8,1,25,46,109,98,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,138,33,70,159,8,1,11,46,109,98,99,45,112,111,108,105,99,121,2,1,247,76,201,190,8,1,17,46,109,99,101,82,111,119,45,45,114,101,108,97,116,105,118,101,2,1,123,103,52,199,8,1,12,46,109,99,104,112,45,99,111,111,107,105,101,2,1,196,44,80,48,8,1,14,46,109,100,45,109,111,100,97,108,45,119,114,97,112,2,1,229,36,44,237,8,1,19,46,109,100,108,45,106,115,45,98,105,103,115,110,97,99,107,98,97,114,2,1,158,169,217,58,8,1,12,46,109,100,108,45,111,118,101,114,108,97,121,2,1,148,188,25,84,8,1,13,46,109,100,108,45,115,110,97,99,107,98,97,114,2,1,134,13,150,126,8,1,19,46,109,101,114,99,117,115,121,115,45,99,111,111,107,105,101,45,101,117,2,1,228,60,93,33,8,1,8,46,109,101,115,115,97,103,101,2,7,19,177,252,99,47,93,110,145,48,10,20,80,80,122,175,119,126,232,182,81,174,103,78,213,250,174,246,82,8,1,25,46,109,101,115,115,97,103,101,45,97,99,99,101,112,116,45,99,111,110,116,97,105,110,101,114,2,1,190,12,43,227,8,1,14,46,109,101,115,115,97,103,101,45,97,108,101,114,116,2,2,25,144,227,85,223,183,8,52,8,1,19,46,109,101,115,115,97,103,101,95,95,99,111,110,116,97,105,110,101,114,2,1,57,101,164,119,8,1,9,46,109,101,115,115,97,103,101,115,2,2,93,192,250,95,124,25,213,37,8,1,28,46,109,101,115,115,97,103,101,115,45,45,99,111,110,116,97,105,110,101,114,45,45,98,111,116,116,111,109,2,1,97,146,81,82,8,1,11,46,109,101,116,45,99,111,111,107,105,101,2,1,38,157,135,60,8,1,23,46,109,101,116,114,111,45,99,111,111,107,105,101,98,97,114,95,95,98,108,111,99,107,2,1,248,163,163,125,8,1,7,46,109,102,112,45,98,103,2,1,110,57,44,120,8,1,9,46,109,102,112,45,119,114,97,112,2,1,110,57,44,120,8,1,11,46,109,103,115,45,99,111,111,107,105,101,2,2,135,114,87,64,208,194,86,97,8,1,15,46,109,104,45,109,101,115,115,97,103,101,45,98,97,114,2,1,227,62,88,242,8,1,17,46,109,105,45,99,111,110,115,101,110,116,45,108,97,121,101,114,2,1,228,170,7,38,8,1,20,46,109,105,99,114,111,45,99,111,111,107,105,101,45,100,105,97,108,111,103,2,1,143,9,208,117,8,1,15,46,109,105,116,101,108,101,45,99,111,110,115,101,110,116,2,1,86,243,89,11,8,1,11,46,109,107,45,99,45,109,111,100,97,108,2,1,208,9,243,187,8,1,16,46,109,108,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,73,107,71,72,8,1,6,46,109,111,45,119,112,2,1,57,219,238,22,8,1,19,46,109,111,98,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,214,44,195,18,8,1,27,46,109,111,98,105,108,101,45,52,52,56,56,102,46,119,114,97,112,112,101,114,45,52,52,56,56,102,2,1,152,197,90,108,8,1,18,46,109,111,98,105,108,101,45,97,112,112,45,104,105,100,100,101,110,2,1,148,186,9,72,8,1,27,46,109,111,100,95,99,111,111,107,105,101,98,97,114,95,111,112,116,105,110,95,109,101,100,105,117,109,2,1,146,9,30,27,8,1,15,46,109,111,100,97,108,45,45,99,111,111,107,105,101,115,2,1,6,1,66,159,8,1,24,46,109,111,100,97,108,45,45,99,111,111,107,105,101,115,45,98,97,99,107,100,114,111,112,2,1,6,1,66,159,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,112,53,103,236,8,1,16,46,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,127,144,45,78,8,1,14,46,109,111,100,97,108,45,99,111,110,116,101,110,116,2,2,58,128,216,14,127,144,45,78,8,1,22,46,109,111,100,97,108,45,99,111,110,116,101,110,116,45,111,118,101,114,108,97,121,2,1,127,144,45,78,8,1,15,46,109,111,100,97,108,45,99,111,111,99,107,105,101,115,2,1,146,9,72,88,8,1,17,46,109,111,100,97,108,45,101,110,116,101,114,45,100,111,110,101,2,1,77,20,25,179,8,1,13,46,109,111,100,97,108,45,102,111,111,116,101,114,2,1,225,191,61,123,8,1,12,46,109,111,100,97,108,45,105,110,110,101,114,2,1,63,44,97,10,8,1,14,46,109,111,100,97,108,45,111,118,101,114,108,97,121,2,3,108,6,19,161,157,76,246,97,204,88,34,17,8,1,11,46,109,111,100,97,108,45,112,101,99,114,2,1,145,154,234,255,8,1,13,46,109,111,100,97,108,45,119,105,110,100,111,119,2,1,128,63,122,43,8,1,16,46,109,111,100,97,108,66,97,99,107,103,114,111,117,110,100,2,1,216,4,34,117,8,1,15,46,109,111,100,97,108,95,95,111,118,101,114,108,97,121,2,1,55,183,69,77,8,1,14,46,109,111,100,97,108,95,95,112,111,108,105,99,121,2,1,149,26,7,95,8,1,12,46,109,111,100,97,108,95,116,101,114,109,115,2,1,126,235,174,246,8,1,15,46,109,111,100,97,108,115,45,119,114,97,112,112,101,114,2,1,232,212,212,125,8,1,16,46,109,111,100,117,108,101,45,97,98,111,118,101,98,111,120,2,1,180,30,25,190,8,1,29,46,109,111,100,117,108,101,95,103,108,111,98,97,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,170,149,191,47,8,1,20,46,109,111,108,101,99,117,108,101,45,99,111,111,107,105,101,45,98,111,120,2,1,228,222,75,180,8,1,26,46,109,111,116,104,101,114,108,101,115,115,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,227,190,134,248,8,1,6,46,109,111,117,110,116,2,1,105,106,120,124,8,1,34,46,109,112,112,45,99,111,110,116,97,105,110,101,114,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,45,98,97,114,2,1,72,179,159,41,8,1,16,46,109,114,99,95,103,100,112,114,95,98,97,110,110,101,114,2,1,70,102,254,71,8,1,19,46,109,115,45,102,111,111,116,101,114,45,109,101,115,115,97,103,101,115,2,2,159,39,33,197,241,189,204,243,8,1,19,46,109,115,45,104,101,97,100,101,114,45,109,101,115,115,97,103,101,115,2,1,159,39,33,197,8,1,4,46,109,115,103,2,4,31,181,58,177,123,179,154,250,127,235,204,135,205,187,183,226,8,1,20,46,109,115,103,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,89,80,144,203,8,1,13,46,109,115,103,45,45,112,111,112,111,118,101,114,2,1,207,130,145,218,8,1,7,46,109,115,103,66,111,120,2,1,196,31,210,138,8,1,22,46,109,116,118,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,2,1,244,217,32,149,8,1,20,46,109,117,114,97,45,99,116,97,95,95,99,111,110,116,97,105,110,101,114,2,1,11,104,94,42,8,1,27,46,109,119,45,99,111,111,107,105,101,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,2,2,37,170,234,72,226,180,189,186,8,1,15,46,109,120,45,48,46,119,45,49,48,48,46,114,111,119,2,1,63,230,72,205,8,1,17,46,109,120,95,77,97,116,114,105,120,84,111,111,108,98,97,114,2,1,28,146,108,181,8,1,17,46,109,121,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,62,40,22,61,8,1,16,46,109,121,103,111,118,105,100,45,111,118,101,114,108,97,121,2,1,100,82,65,246,8,1,17,46,110,45,109,101,115,115,97,103,105,110,103,45,115,108,111,116,2,1,194,197,252,190,8,1,20,46,110,97,118,98,97,114,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,238,218,211,255,8,1,13,46,110,97,118,98,97,114,45,113,97,114,100,115,2,3,112,183,219,204,114,200,101,32,251,139,22,41,8,1,22,46,110,97,118,105,45,116,101,114,109,115,45,111,102,45,115,101,114,118,105,99,101,2,1,110,88,103,217,8,1,24,46,110,98,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,123,105,152,140,8,1,10,46,110,98,45,112,97,114,101,110,116,2,1,76,52,48,18,8,1,10,46,110,99,109,45,114,101,97,100,121,2,1,148,225,227,91,8,1,13,46,110,99,112,49,45,109,101,115,115,97,103,101,2,1,140,89,219,211,8,1,11,46,110,99,116,111,118,101,114,108,97,121,2,1,49,217,34,211,8,1,11,46,110,101,101,100,115,99,108,105,99,107,2,1,8,172,175,221,8,1,20,46,110,101,108,105,111,45,112,111,112,117,112,45,119,114,97,112,112,101,114,2,1,98,252,49,250,8,1,19,46,110,101,119,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,242,188,227,0,8,1,26,46,110,101,119,45,99,111,110,115,101,110,116,45,112,111,112,117,112,45,119,114,97,112,112,101,114,2,1,33,136,124,81,8,1,15,46,110,101,119,99,111,111,107,105,101,108,97,121,101,114,2,1,46,142,121,10,8,1,15,46,110,103,45,99,111,110,102,105,114,109,45,98,111,120,2,1,240,63,146,192,8,1,25,46,110,103,45,99,111,110,102,105,114,109,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,240,63,146,192,8,1,26,46,110,103,45,115,99,111,112,101,46,95,102,108,111,97,116,105,110,103,45,98,97,110,110,101,114,2,1,38,157,55,159,8,1,17,46,110,103,45,116,111,97,115,116,45,45,98,111,116,116,111,109,2,1,193,47,114,218,8,1,22,46,110,103,45,116,114,105,103,103,101,114,46,97,99,116,105,111,110,45,98,97,114,2,1,224,23,53,51,8,1,24,46,110,103,45,116,114,105,103,103,101,114,46,110,103,45,116,110,115,45,99,51,53,45,48,2,1,97,78,171,149,8,1,10,46,110,105,110,101,45,103,100,112,114,2,1,148,202,78,174,8,1,17,46,110,106,45,104,101,97,100,101,114,45,112,114,111,109,112,116,2,1,6,215,124,123,8,1,7,46,110,108,45,99,112,98,2,2,219,21,143,175,254,175,71,6,8,1,10,46,110,111,45,99,111,111,107,105,101,2,1,148,97,208,2,8,1,14,46,110,111,67,111,111,107,105,101,77,111,100,97,108,2,1,65,235,72,160,8,1,5,46,110,111,116,101,2,1,213,38,167,248,8,1,12,46,110,111,116,101,45,112,111,108,105,99,121,2,1,89,127,91,172,8,1,13,46,110,111,116,105,99,101,45,98,111,97,114,100,2,1,142,80,111,159,8,1,20,46,110,111,116,105,99,101,45,105,116,101,109,45,115,117,99,99,101,115,115,2,2,89,198,222,23,215,240,190,231,8,1,13,46,110,111,116,105,99,101,45,109,111,100,97,108,2,1,200,178,125,29,8,1,22,46,110,111,116,105,99,101,45,109,111,100,97,108,45,45,99,111,111,107,105,101,115,2,1,168,244,148,114,8,1,31,46,110,111,116,105,99,101,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,45,45,99,111,111,107,105,101,115,2,1,168,244,148,114,8,1,15,46,110,111,116,105,99,101,45,115,101,99,116,105,111,110,2,1,106,210,181,244,8,1,14,46,110,111,116,105,99,101,45,119,105,110,100,111,119,2,2,80,144,36,119,202,196,219,32,8,1,12,46,110,111,116,105,99,101,45,119,114,97,112,2,1,132,146,100,19,8,1,10,46,110,111,116,105,99,101,95,45,49,2,1,66,250,205,92,8,1,21,46,110,111,116,105,99,101,95,78,111,116,105,99,101,115,95,50,57,116,82,81,2,1,169,4,28,26,8,1,15,46,110,111,116,105,99,101,95,95,98,97,110,110,101,114,2,1,28,115,33,197,8,1,8,46,110,111,116,105,99,101,115,2,1,193,107,202,200,8,1,22,46,110,111,116,105,102,105,99,97,116,105,111,110,45,45,99,111,110,116,101,110,116,2,1,69,107,167,101,8,1,27,46,110,111,116,105,102,105,99,97,116,105,111,110,45,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,186,186,86,65,8,1,19,46,110,111,116,105,102,105,99,97,116,105,111,110,45,97,108,101,114,116,2,4,32,85,31,16,47,207,62,162,56,219,49,163,247,101,92,33,8,1,20,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,2,2,191,198,136,49,219,86,114,41,8,1,17,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,111,120,2,1,144,1,66,69,8,1,23,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,2,2,125,198,30,83,182,158,52,255,8,1,21,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,115,2,1,40,197,75,14,8,1,18,46,110,111,116,105,102,105,99,97,116,105,111,110,45,108,105,115,116,2,1,128,145,43,92,8,1,27,46,110,111,116,105,102,105,99,97,116,105,111,110,45,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,154,199,254,56,8,1,21,46,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,2,2,46,220,227,147,121,98,234,109,8,1,20,46,110,111,116,105,102,105,99,97,116,105,111,110,46,111,114,97,110,103,101,2,1,23,231,125,236,8,1,35,46,110,111,116,105,102,105,99,97,116,105,111,110,66,97,110,110,101,114,95,95,98,97,110,110,101,114,95,95,95,51,56,103,120,56,2,1,72,91,185,93,8,1,16,46,110,111,116,105,102,105,99,97,116,105,111,110,66,97,114,2,1,199,100,184,178,8,1,27,46,110,111,116,105,102,105,99,97,116,105,111,110,87,114,97,112,112,101,114,45,45,50,108,121,86,87,2,1,245,30,160,131,8,1,21,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,98,97,110,110,101,114,2,1,126,62,230,237,8,1,21,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,99,111,111,107,105,101,2,1,10,43,246,249,8,1,20,46,110,111,116,105,102,105,99,97,116,105,111,110,95,98,97,110,110,101,114,2,1,157,58,49,77,8,1,19,46,110,111,116,105,102,105,99,97,116,105,111,110,95,115,116,114,105,112,2,1,242,153,224,143,8,1,16,46,110,111,116,105,102,105,99,97,116,105,111,110,98,97,114,2,1,9,147,35,108,8,1,14,46,110,111,116,105,102,105,99,97,116,105,111,110,115,2,2,60,131,181,14,193,115,147,191,8,1,20,46,110,111,116,105,102,105,99,97,116,105,111,110,115,45,111,117,116,101,114,2,1,46,254,134,99,8,1,22,46,110,111,116,105,102,105,99,97,116,105,111,110,115,45,119,114,97,112,112,101,114,2,1,67,243,87,177,8,1,17,46,110,111,116,105,102,105,101,114,45,109,101,115,115,97,103,101,2,1,62,224,241,36,8,1,17,46,110,111,116,105,102,105,101,114,45,119,114,97,112,112,101,114,2,1,240,221,20,192,8,1,17,46,110,111,116,105,102,105,101,114,95,100,109,99,97,95,106,115,2,1,39,103,216,1,8,1,7,46,110,111,116,105,102,121,2,1,31,73,106,203,8,1,14,46,110,111,116,105,102,121,45,101,110,115,117,114,101,2,1,90,233,162,213,8,1,14,46,110,111,116,105,102,121,67,111,111,107,105,101,115,2,1,132,75,102,137,8,1,10,46,110,111,116,105,102,121,98,97,114,2,1,9,134,54,186,8,1,11,46,110,111,116,105,112,111,112,95,98,103,2,1,243,78,24,56,8,1,13,46,110,111,116,105,122,87,114,97,112,112,101,114,2,1,85,204,245,158,8,1,7,46,110,115,45,98,111,120,2,2,53,139,109,195,125,79,169,89,8,1,12,46,110,115,45,105,110,102,111,45,98,97,114,2,1,120,34,77,1,8,1,9,46,110,116,102,99,45,98,97,114,2,1,116,39,81,189,8,1,16,46,110,117,97,45,103,100,112,114,45,98,97,110,110,101,114,2,1,42,176,153,191,8,1,23,46,110,118,45,110,111,116,105,102,105,99,97,116,105,111,110,45,104,101,97,100,101,114,2,1,126,251,94,144,8,1,11,46,110,120,45,49,101,53,99,54,55,99,2,1,47,154,205,227,8,1,20,46,110,121,112,45,115,105,116,101,119,105,100,101,45,110,111,116,105,99,101,2,3,33,27,32,136,104,168,162,49,141,54,47,27,8,1,7,46,111,45,100,97,116,97,2,1,231,42,79,228,8,1,8,46,111,45,109,111,100,97,108,2,1,227,218,132,131,8,1,17,46,111,45,112,111,112,117,112,45,45,99,111,111,107,105,101,115,2,1,217,41,97,254,8,1,5,46,111,55,101,53,2,1,77,29,43,237,8,1,7,46,111,90,109,119,50,101,2,1,102,41,154,253,8,1,24,46,111,98,45,99,111,111,107,105,101,115,111,118,101,114,108,97,121,45,109,111,100,97,108,2,1,149,79,144,169,8,1,21,46,111,99,99,114,112,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,11,94,177,74,8,1,18,46,111,109,119,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,51,103,123,132,8,1,19,46,111,110,45,115,99,114,101,101,110,45,109,101,115,115,97,103,101,115,2,1,179,151,191,181,8,1,31,46,111,110,101,45,112,105,120,101,108,45,109,97,114,103,105,110,45,98,111,116,116,111,109,46,115,103,45,66,111,120,2,1,13,55,42,72,8,1,27,46,111,110,101,70,111,111,116,101,114,45,68,83,45,69,110,116,114,121,80,111,105,110,116,49,45,49,2,1,38,157,28,48,8,1,9,46,111,110,101,116,114,117,115,116,2,1,183,153,49,236,8,1,12,46,111,112,97,99,105,116,121,45,49,48,48,2,1,243,27,131,253,8,1,26,46,111,112,97,99,105,116,121,45,49,48,48,46,116,114,97,110,115,108,97,116,101,45,121,45,48,2,1,143,201,176,142,8,1,13,46,111,112,116,45,105,110,45,109,111,100,97,108,2,3,42,3,188,223,69,58,98,116,128,76,252,141,8,1,15,46,111,112,116,105,110,45,115,100,107,45,114,111,111,116,2,2,42,254,181,132,221,147,144,60,8,1,18,46,111,114,105,103,105,110,45,115,105,116,101,115,116,114,105,112,101,2,1,58,17,27,252,8,1,11,46,111,116,45,99,111,111,107,105,101,115,2,1,120,186,62,94,8,1,11,46,111,116,45,102,97,100,101,45,105,110,2,1,135,125,62,117,8,1,25,46,111,118,95,98,111,116,116,111,109,95,102,108,111,97,116,105,110,103,95,112,97,110,101,108,2,1,186,19,188,239,8,1,8,46,111,118,101,114,108,97,121,2,1,35,34,171,242,8,1,37,46,111,118,101,114,108,97,121,45,45,99,111,111,107,105,101,95,98,97,110,110,101,114,95,119,105,116,104,111,117,116,95,105,99,111,110,115,2,1,39,218,238,170,8,1,17,46,111,118,101,114,108,97,121,45,98,97,99,107,100,114,111,112,2,6,13,57,60,173,28,211,126,234,70,214,169,234,148,192,187,124,148,193,224,244,155,100,20,142,8,1,15,46,111,118,101,114,108,97,121,45,98,97,110,110,101,114,2,1,37,117,198,205,8,1,18,46,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,2,1,149,109,173,38,8,1,30,46,111,118,101,114,108,97,121,45,109,111,98,105,108,101,45,115,116,121,108,101,115,45,101,110,97,98,108,101,100,2,1,240,102,52,177,8,1,23,46,111,118,101,114,108,97,121,45,109,111,100,97,108,115,45,119,114,97,112,112,101,114,2,1,39,218,238,170,8,1,11,46,111,118,101,114,108,97,121,80,111,112,2,1,148,188,98,156,8,1,20,46,111,118,101,114,108,97,121,95,102,117,108,108,95,115,99,114,101,101,110,2,1,20,109,229,87,8,1,9,46,111,118,101,114,108,97,121,115,2,1,111,178,42,94,8,1,7,46,111,119,114,97,45,100,2,1,67,86,100,255,8,1,27,46,112,45,48,46,111,118,101,114,102,108,111,119,45,97,117,116,111,46,102,108,101,120,45,99,111,108,2,1,68,67,17,3,8,1,20,46,112,45,100,105,97,108,111,103,45,101,110,116,101,114,45,100,111,110,101,2,1,204,22,227,125,8,1,4,46,112,49,53,2,1,246,63,76,54,8,1,17,46,112,95,100,114,97,119,101,114,95,119,114,97,112,112,101,114,2,1,196,237,204,245,8,1,19,46,112,97,103,101,45,98,103,32,62,32,46,119,114,97,112,112,101,114,2,1,223,20,48,48,8,1,24,46,112,97,103,101,45,98,111,116,116,111,109,45,109,101,115,115,97,103,101,45,98,111,120,2,1,170,226,125,232,8,1,16,46,112,97,103,101,45,99,111,111,107,105,101,45,98,97,114,2,1,126,35,37,87,8,1,20,46,112,97,103,101,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,126,157,92,147,8,1,14,46,112,97,103,101,45,104,105,110,116,45,98,111,120,2,1,134,199,163,234,8,1,18,46,112,97,103,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,12,243,12,217,8,1,13,46,112,97,103,101,45,111,118,101,114,108,97,121,2,1,3,97,197,234,8,1,21,46,112,97,103,101,45,111,118,101,114,108,97,121,95,119,114,97,112,112,101,114,2,2,90,155,229,237,148,181,249,67,8,1,17,46,112,97,103,101,78,111,116,105,102,105,99,97,116,105,111,110,2,1,210,201,238,147,8,1,12,46,112,97,103,101,79,118,101,114,108,97,121,2,1,163,128,97,119,8,1,17,46,112,97,103,101,95,95,108,101,103,97,108,45,108,105,110,107,2,1,107,154,211,99,8,1,13,46,112,97,103,101,95,119,97,114,110,105,110,103,2,1,77,9,154,242,8,1,14,46,112,97,110,101,108,95,99,111,111,107,105,101,115,2,1,251,213,253,125,8,1,7,46,112,97,115,116,114,121,2,1,55,174,106,96,8,1,16,46,112,98,45,115,109,46,99,111,110,116,97,105,110,101,114,2,1,88,31,148,48,8,1,4,46,112,99,98,2,2,45,212,46,28,131,228,126,239,8,1,12,46,112,99,98,95,95,98,97,110,110,101,114,2,2,219,138,129,254,249,106,160,176,8,1,22,46,112,99,104,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,114,2,1,166,58,60,28,8,1,11,46,112,100,112,97,45,112,111,112,117,112,2,1,48,216,120,155,8,1,18,46,112,101,114,115,105,115,116,101,110,116,77,101,115,115,97,103,101,2,1,70,14,141,84,8,1,14,46,112,101,114,115,111,110,97,108,45,100,97,116,97,2,1,64,175,232,106,8,1,26,46,112,102,45,104,101,97,100,101,114,45,99,111,111,107,105,101,115,116,97,116,101,109,101,110,116,2,1,20,229,178,85,8,1,25,46,112,102,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,110,111,116,105,99,101,2,1,255,161,201,246,8,1,18,46,112,103,45,109,111,100,97,108,45,98,108,97,99,107,111,117,116,2,1,39,53,198,73,8,1,4,46,112,103,112,2,1,231,156,214,67,8,1,12,46,112,105,110,45,98,46,102,105,120,101,100,2,1,160,164,12,198,8,1,18,46,112,105,110,45,98,46,112,105,110,45,108,46,102,105,120,101,100,2,1,123,195,106,63,8,1,18,46,112,105,110,45,114,46,112,105,110,45,98,46,102,105,120,101,100,2,1,120,160,15,99,8,1,11,46,112,105,120,45,99,111,111,107,105,101,2,1,54,166,225,196,8,1,22,46,112,105,120,112,97,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,2,1,127,56,97,56,8,1,7,46,112,111,108,105,99,101,2,1,97,164,91,12,8,1,9,46,112,111,108,105,99,105,101,115,2,2,23,72,201,214,129,71,110,167,8,1,7,46,112,111,108,105,99,121,2,7,28,222,16,212,95,75,28,44,129,61,119,206,161,24,177,136,162,67,202,28,203,31,73,12,237,250,200,117,8,1,11,46,112,111,108,105,99,121,45,98,97,114,2,1,250,66,124,16,8,1,14,46,112,111,108,105,99,121,45,100,105,97,108,111,103,2,1,148,181,65,54,8,1,12,46,112,111,108,105,99,121,45,105,110,102,111,2,2,89,214,208,182,109,205,237,116,8,1,13,46,112,111,108,105,99,121,45,108,97,98,101,108,2,1,61,98,195,228,8,1,20,46,112,111,108,105,99,121,45,109,97,105,110,45,119,114,114,97,112,101,114,2,1,36,26,219,227,8,1,14,46,112,111,108,105,99,121,45,110,111,116,105,99,101,2,1,97,198,12,234,8,1,13,46,112,111,108,105,99,121,45,112,97,110,101,108,2,1,206,92,190,52,8,1,14,46,112,111,108,105,99,121,45,112,111,112,45,117,112,2,1,129,67,5,120,8,1,13,46,112,111,108,105,99,121,45,112,111,112,117,112,2,1,70,196,187,83,8,1,11,46,112,111,108,105,99,121,78,111,116,101,2,1,121,246,245,101,8,1,13,46,112,111,108,105,99,121,95,95,97,114,101,97,2,1,220,245,238,138,8,1,13,46,112,111,108,105,99,121,95,112,111,112,117,112,2,2,36,225,123,112,203,160,43,81,8,1,13,46,112,111,108,105,99,121,98,97,110,110,101,114,2,1,2,208,38,221,8,1,16,46,112,111,108,105,116,105,99,97,82,101,119,97,114,100,115,2,2,82,60,130,205,124,153,156,166,8,1,7,46,112,111,111,107,105,101,2,1,37,112,42,25,8,1,4,46,112,111,112,2,1,181,85,193,99,8,1,12,46,112,111,112,45,99,111,110,116,101,110,116,2,1,101,46,158,147,8,1,7,46,112,111,112,45,117,112,2,1,18,164,234,120,8,1,14,46,112,111,112,45,117,112,45,98,97,110,110,101,114,2,1,36,198,106,129,8,1,7,46,112,111,112,98,111,120,2,1,142,39,243,200,8,1,14,46,112,111,112,105,110,95,99,111,110,115,101,110,116,2,1,20,109,229,87,8,1,8,46,112,111,112,109,97,107,101,2,1,179,4,244,92,8,1,15,46,112,111,112,117,112,45,45,99,111,111,107,105,101,115,2,3,84,156,69,130,88,74,183,227,126,236,154,249,8,1,13,46,112,111,112,117,112,45,97,99,99,101,115,115,2,1,177,6,107,63,8,1,23,46,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,45,98,111,116,116,111,109,2,1,156,91,175,21,8,1,32,46,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,45,99,111,110,102,105,100,101,110,116,105,97,108,105,116,121,2,1,189,53,11,170,8,1,14,46,112,111,112,117,112,45,99,111,110,116,101,110,116,2,1,134,153,93,38,8,1,13,46,112,111,112,117,112,45,100,105,97,108,111,103,2,1,60,194,103,117,8,1,12,46,112,111,112,117,112,45,105,110,110,101,114,2,1,220,62,242,238,8,1,17,46,112,111,112,117,112,45,111,118,101,114,108,97,121,80,111,112,2,1,243,55,71,107,8,1,13,46,112,111,112,117,112,45,119,105,110,100,111,119,2,1,248,199,111,200,8,1,14,46,112,111,112,117,112,45,119,114,97,112,112,101,114,2,1,31,73,230,29,8,1,14,46,112,111,112,117,112,80,111,108,105,99,105,101,115,2,1,57,240,217,48,8,1,12,46,112,111,112,117,112,95,98,108,111,99,107,2,1,148,193,181,139,8,1,14,46,112,111,112,117,112,95,100,101,115,107,116,111,112,2,1,101,244,14,127,8,1,14,46,112,111,112,117,112,95,112,114,105,118,97,99,121,2,1,89,113,243,125,8,1,17,46,112,111,112,117,112,95,116,111,115,69,100,105,116,105,111,110,2,1,38,157,25,55,8,1,9,46,112,111,112,117,112,98,111,120,2,1,185,102,34,104,8,1,10,46,112,111,112,117,112,104,111,109,101,2,1,168,97,156,130,8,1,3,46,112,112,2,1,201,155,242,96,8,1,10,46,112,112,45,102,111,111,116,101,114,2,2,25,75,5,224,170,137,194,219,8,1,5,46,112,112,45,112,2,1,18,200,164,154,8,1,23,46,112,112,103,45,99,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,38,157,53,243,8,1,20,46,112,112,114,101,108,111,97,100,101,100,95,108,105,103,104,116,98,111,120,2,1,112,172,6,241,8,1,6,46,112,112,114,101,109,2,1,119,59,106,232,8,1,10,46,112,112,115,45,112,111,112,117,112,2,1,223,172,190,52,8,1,23,46,112,114,45,99,111,111,107,105,101,45,109,111,100,97,108,45,98,111,116,116,111,109,2,2,157,35,169,114,174,26,226,2,8,1,9,46,112,114,100,45,119,114,97,112,2,1,73,61,197,34,8,1,16,46,112,114,101,102,101,114,101,110,99,101,115,45,98,97,114,2,1,187,0,228,44,8,1,22,46,112,114,101,118,105,101,119,45,99,111,111,107,105,101,115,45,97,108,101,114,116,2,1,11,114,181,74,8,1,10,46,112,114,105,118,45,116,105,112,115,2,1,22,7,182,138,8,1,8,46,112,114,105,118,97,99,121,2,9,2,234,2,105,27,241,10,29,34,57,116,199,55,197,14,56,123,15,185,5,139,52,58,128,148,192,109,107,197,5,135,126,237,252,193,106,8,1,18,46,112,114,105,118,97,99,121,45,97,103,114,101,101,109,101,110,116,2,1,211,86,99,241,8,1,12,46,112,114,105,118,97,99,121,45,98,97,114,2,1,107,201,167,11,8,1,12,46,112,114,105,118,97,99,121,45,98,111,120,2,1,177,214,185,93,8,1,15,46,112,114,105,118,97,99,121,45,98,117,116,116,111,110,2,1,211,221,156,70,8,1,16,46,112,114,105,118,97,99,121,45,99,97,108,108,111,117,116,2,1,238,168,80,43,8,1,27,46,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,45,101,110,116,101,114,45,100,111,110,101,2,1,148,181,106,64,8,1,18,46,112,114,105,118,97,99,121,45,99,111,110,116,97,105,110,101,114,2,2,123,217,131,72,153,155,125,31,8,1,16,46,112,114,105,118,97,99,121,45,99,111,110,116,101,110,116,2,2,38,157,26,200,126,191,53,140,8,1,16,46,112,114,105,118,97,99,121,45,99,111,110,116,114,111,108,2,1,205,143,109,10,8,1,13,46,112,114,105,118,97,99,121,45,100,97,116,97,2,1,94,133,114,44,8,1,15,46,112,114,105,118,97,99,121,45,100,105,97,108,111,103,2,1,166,25,111,192,8,1,15,46,112,114,105,118,97,99,121,45,104,111,108,100,101,114,2,1,213,96,203,200,8,1,13,46,112,114,105,118,97,99,121,45,108,105,110,107,2,1,181,88,46,124,8,1,13,46,112,114,105,118,97,99,121,45,109,101,110,117,2,1,202,233,23,139,8,1,15,46,112,114,105,118,97,99,121,45,110,111,116,105,99,101,2,1,91,173,235,229,8,1,14,46,112,114,105,118,97,99,121,45,112,97,110,101,108,2,1,98,255,156,44,8,1,20,46,112,114,105,118,97,99,121,45,112,111,108,105,99,116,121,45,98,97,114,2,1,110,147,240,17,8,1,25,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,2,1,76,128,42,98,8,1,23,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,100,101,115,107,116,111,112,2,1,17,239,87,253,8,1,61,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,95,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,45,109,111,100,97,108,95,95,119,97,115,121,79,2,1,93,101,176,210,8,1,19,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,111,112,2,1,48,39,170,156,8,1,23,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,115,108,105,100,101,117,112,2,1,20,100,75,218,8,1,16,46,112,114,105,118,97,99,121,45,112,111,112,111,118,101,114,2,1,96,25,214,41,8,1,15,46,112,114,105,118,97,99,121,45,114,105,103,104,116,115,2,1,9,73,24,105,8,1,16,46,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,2,1,202,233,23,139,8,1,15,46,112,114,105,118,97,99,121,45,119,105,100,103,101,116,2,1,62,135,83,33,8,1,16,46,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,2,1,137,248,12,93,8,1,12,46,112,114,105,118,97,99,121,65,114,101,97,2,1,233,248,127,214,8,1,11,46,112,114,105,118,97,99,121,66,111,120,2,1,111,138,198,134,8,1,11,46,112,114,105,118,97,99,121,76,97,119,2,1,255,36,1,231,8,1,14,46,112,114,105,118,97,99,121,80,114,111,109,112,116,2,1,129,46,109,134,8,1,12,46,112,114,105,118,97,99,121,95,98,111,120,2,1,6,183,242,117,8,1,14,46,112,114,105,118,97,99,121,95,99,104,101,99,107,2,1,20,227,18,30,8,1,17,46,112,114,105,118,97,99,121,95,112,111,108,105,99,105,101,115,2,1,19,224,33,148,8,1,18,46,112,114,105,118,97,99,121,95,115,116,97,116,101,109,101,110,116,2,1,169,146,111,175,8,1,13,46,112,114,105,118,97,99,121,95,116,105,112,115,2,1,187,93,227,142,8,1,22,46,112,114,105,118,97,99,121,111,112,116,105,111,110,95,111,118,101,114,108,97,121,2,1,119,192,102,100,8,1,24,46,112,114,105,118,97,99,121,115,101,116,116,105,110,103,115,95,95,98,97,110,110,101,114,2,1,38,157,171,200,8,1,12,46,112,114,105,118,97,99,121,119,114,97,112,2,1,251,60,187,121,8,1,13,46,112,114,105,118,97,114,121,67,108,97,115,115,2,1,250,183,236,124,8,1,18,46,112,114,111,106,101,99,116,115,45,116,97,107,101,111,118,101,114,2,1,100,74,251,115,8,1,10,46,112,114,111,109,105,110,101,110,116,2,1,205,78,199,204,8,1,23,46,112,114,111,109,111,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,148,181,46,176,8,1,10,46,112,114,111,109,111,116,105,111,110,2,1,122,175,180,14,8,1,24,46,112,114,111,109,111,116,105,111,110,45,115,116,114,105,112,45,119,114,97,112,112,101,114,2,1,98,192,184,172,8,1,7,46,112,114,111,109,112,116,2,1,69,200,87,232,8,1,11,46,112,114,111,109,112,116,45,98,111,120,2,1,85,65,122,244,8,1,18,46,112,114,111,118,105,110,99,101,45,115,101,108,101,99,116,111,114,2,1,52,97,161,198,8,1,6,46,112,114,121,99,107,2,1,92,4,226,33,8,1,13,46,112,115,45,99,111,111,107,105,101,98,97,114,2,1,10,132,89,78,8,1,6,46,112,116,45,49,48,2,1,127,240,247,209,8,1,8,46,112,117,98,45,116,105,112,2,2,127,98,183,242,191,250,221,235,8,1,14,46,112,117,98,108,105,99,45,99,111,111,107,105,101,2,1,116,49,225,66,8,1,27,46,112,117,98,108,105,99,45,115,101,114,118,105,99,101,45,97,110,111,117,110,99,101,109,101,110,116,2,1,103,195,40,99,8,1,13,46,112,117,108,115,101,45,98,97,110,110,101,114,2,1,31,73,231,102,8,1,14,46,112,117,109,45,99,111,110,116,97,105,110,101,114,2,2,61,114,55,87,197,230,160,90,8,1,20,46,112,117,115,104,45,98,97,110,110,101,114,45,99,111,110,115,101,110,116,2,1,107,130,33,238,8,1,14,46,112,117,115,104,45,100,111,119,110,45,99,116,97,2,1,9,63,139,200,8,1,8,46,112,117,115,104,45,109,101,2,1,231,77,54,229,8,1,11,46,112,119,97,45,112,114,111,109,112,116,2,1,190,140,104,188,8,1,11,46,112,120,45,49,50,46,112,121,45,51,2,1,191,182,122,24,8,1,29,46,112,120,95,45,104,45,97,117,116,111,46,112,120,95,45,122,45,105,110,100,101,120,45,49,48,48,48,48,2,1,45,81,185,119,8,1,29,46,112,121,45,49,54,46,104,45,102,117,108,108,46,119,45,102,117,108,108,46,109,97,120,45,119,45,115,109,2,1,149,123,79,28,8,1,16,46,112,121,45,51,46,109,97,120,45,119,45,102,117,108,108,2,1,253,133,56,172,8,1,21,46,112,121,107,71,110,86,88,81,73,100,55,82,48,95,105,83,56,89,48,82,2,1,141,124,41,202,8,1,19,46,112,122,45,104,105,100,101,45,110,101,119,115,114,101,97,100,101,114,2,1,203,80,115,129,8,1,16,46,113,45,99,97,114,100,95,95,115,101,99,116,105,111,110,2,1,83,49,93,0,8,1,16,46,113,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,85,168,181,227,8,1,30,46,113,45,110,111,116,105,102,105,99,97,116,105,111,110,115,95,95,108,105,115,116,45,45,98,111,116,116,111,109,2,1,92,105,94,164,8,1,9,46,113,107,46,113,106,46,113,105,2,1,24,105,238,35,8,1,19,46,114,45,49,52,53,100,98,108,109,46,114,45,110,99,52,97,51,48,2,1,190,180,233,118,8,1,10,46,114,45,49,112,48,100,116,97,105,2,1,197,83,26,10,8,1,9,46,114,45,108,49,51,100,112,121,2,2,138,121,193,40,218,33,206,134,8,1,9,46,114,45,109,118,99,102,101,106,2,1,180,199,91,226,8,1,40,46,114,45,117,56,115,49,100,46,114,45,49,114,55,52,104,57,52,46,114,45,49,110,108,119,48,105,109,46,99,115,115,45,49,100,98,106,99,52,110,2,1,184,108,108,166,8,1,12,46,114,97,121,65,108,101,114,116,66,111,120,2,1,151,176,224,28,8,1,4,46,114,99,99,2,1,109,252,62,114,8,1,25,46,114,100,109,45,100,97,97,99,45,110,111,116,105,99,101,45,116,101,109,112,108,97,116,101,2,1,255,180,42,229,8,1,24,46,114,101,97,99,116,45,99,111,111,107,105,101,110,111,116,105,99,101,45,114,111,111,116,2,2,85,224,116,244,157,235,95,150,8,1,31,46,114,101,99,111,109,109,101,110,100,97,116,105,111,110,45,109,111,100,97,108,95,95,98,97,99,107,100,114,111,112,2,1,237,143,239,236,8,1,22,46,114,101,103,105,111,110,45,109,97,115,116,104,101,97,100,45,105,110,110,101,114,2,1,161,56,150,168,8,1,19,46,114,101,109,97,114,107,101,116,105,110,103,45,98,97,110,110,101,114,2,1,129,68,98,51,8,1,9,46,114,101,109,105,110,100,101,114,2,1,40,167,30,182,8,1,13,46,114,101,118,101,97,108,45,109,111,100,97,108,2,1,123,66,119,155,8,1,22,46,114,101,118,101,97,108,45,109,111,100,97,108,45,98,103,45,119,104,105,116,101,2,1,125,239,148,105,8,1,15,46,114,101,118,101,97,108,45,111,118,101,114,108,97,121,2,2,17,107,167,89,53,93,39,172,8,1,11,46,114,104,99,45,98,97,110,110,101,114,2,3,89,49,82,57,102,135,212,26,231,241,117,60,8,1,6,46,114,104,118,81,97,2,1,139,43,181,67,8,1,19,46,114,105,99,111,108,97,45,99,111,111,107,105,101,45,105,110,102,111,2,1,98,194,105,98,8,1,13,46,114,109,113,45,100,54,48,98,56,52,100,54,2,1,81,147,75,25,8,1,10,46,114,111,97,114,45,98,111,100,121,2,1,171,88,33,72,8,1,11,46,114,111,111,116,45,56,97,98,98,52,2,1,13,149,168,116,8,1,11,46,114,111,111,116,45,98,99,97,48,57,2,1,13,149,168,116,8,1,11,46,114,112,108,109,45,97,108,101,114,116,2,1,136,109,113,5,8,1,16,46,114,115,45,109,101,115,115,97,103,101,45,105,110,102,111,2,1,22,35,9,118,8,1,7,46,114,115,116,98,111,120,2,1,136,11,235,19,8,1,9,46,114,115,116,98,111,120,101,115,2,2,128,148,153,0,129,45,228,196,8,1,26,46,114,119,100,45,104,101,97,100,101,114,45,99,111,111,107,105,101,45,115,101,99,116,105,111,110,2,1,115,138,237,123,8,1,15,46,115,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,27,98,210,27,8,1,24,46,115,95,95,121,50,103,106,78,105,73,83,48,111,49,82,65,95,53,69,98,110,107,119,2,1,152,53,126,119,8,1,31,46,115,97,110,105,116,97,115,45,99,111,111,107,105,101,45,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,2,1,188,202,130,147,8,1,19,46,115,99,45,49,103,110,109,115,50,48,45,48,46,86,112,99,103,122,2,3,187,237,92,49,194,197,250,17,205,14,140,94,8,1,20,46,115,99,45,49,108,100,103,109,117,103,45,48,46,99,75,112,108,73,83,2,3,187,237,92,49,194,197,250,17,205,14,140,94,8,1,13,46,115,99,45,49,113,118,102,52,104,98,45,48,2,1,134,21,212,107,8,1,21,46,115,99,45,51,102,51,55,50,52,52,99,45,48,46,106,77,75,114,74,119,2,1,49,58,5,113,8,1,9,46,115,99,45,69,72,79,106,101,2,1,131,45,226,100,8,1,14,46,115,99,45,99,111,111,107,105,101,45,112,111,112,2,1,148,121,148,124,8,1,16,46,115,99,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,183,189,136,228,8,1,10,46,115,99,45,101,100,76,79,104,109,2,1,44,103,246,97,8,1,15,46,115,99,45,110,111,116,105,45,98,97,110,110,101,114,2,1,121,94,11,239,8,1,17,46,115,99,45,117,45,112,97,100,100,105,110,103,45,121,45,109,2,1,61,106,106,219,8,1,9,46,115,99,45,121,119,70,122,65,2,1,198,22,40,136,8,1,7,46,115,99,114,101,101,110,2,1,47,93,110,145,8,1,19,46,115,99,114,101,101,110,66,108,111,99,107,79,118,101,114,108,97,121,2,1,95,146,32,61,8,1,18,46,115,100,115,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,89,212,205,78,8,1,15,46,115,101,45,100,115,45,99,45,101,78,77,90,83,101,2,1,133,151,49,197,8,1,21,46,115,101,99,116,105,111,110,45,45,97,108,101,114,116,45,112,97,110,101,108,2,1,36,171,61,63,8,1,15,46,115,101,99,116,105,111,110,45,112,114,111,109,112,116,2,1,95,244,255,108,8,1,16,46,115,101,99,117,114,105,116,121,45,112,111,108,105,99,121,2,1,209,115,119,140,8,1,21,46,115,101,108,101,99,116,45,115,99,104,111,111,108,45,102,111,111,116,101,114,2,1,27,147,159,88,8,1,17,46,115,101,112,45,99,111,111,107,105,101,115,45,98,111,120,115,2,1,83,5,198,70,8,1,20,46,115,101,115,115,105,111,110,110,111,116,105,102,105,99,97,116,105,111,110,2,1,124,38,52,31,8,1,11,46,115,101,116,112,114,105,118,97,99,121,2,1,43,254,37,195,8,1,13,46,115,102,45,102,105,120,101,100,45,98,97,114,2,1,164,186,56,187,8,1,8,46,115,103,45,103,100,112,114,2,1,199,84,18,49,8,1,35,46,115,103,112,98,45,112,111,112,117,112,45,100,105,97,108,111,103,45,109,97,105,110,45,100,105,118,45,119,114,97,112,112,101,114,2,1,238,27,125,250,8,1,19,46,115,103,112,98,45,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,238,27,125,250,8,1,15,46,115,104,45,112,97,103,101,45,110,111,116,105,99,101,2,1,57,122,162,29,8,1,11,46,115,104,97,100,111,119,45,51,120,108,2,1,168,93,29,49,8,1,21,46,115,104,97,100,111,119,45,99,111,111,107,105,101,115,98,97,110,110,101,114,2,1,48,22,6,164,8,1,19,46,115,104,97,100,111,119,45,115,109,46,98,103,45,119,104,105,116,101,2,1,42,50,213,7,8,1,35,46,115,104,97,100,111,119,46,116,101,120,116,45,119,104,105,116,101,46,98,103,45,103,114,97,121,45,100,97,114,107,45,109,105,100,2,1,249,33,135,142,8,1,24,46,115,104,97,114,101,100,95,99,111,110,116,97,105,110,101,114,95,95,79,90,110,102,95,2,1,54,20,31,218,8,1,13,46,115,104,101,108,108,67,111,111,107,105,101,115,2,1,142,140,33,97,8,1,5,46,115,104,111,119,2,1,60,66,3,30,8,1,16,46,115,104,111,119,45,99,111,111,107,105,101,45,100,105,118,2,1,226,224,172,210,8,1,11,46,115,104,111,119,66,97,110,110,101,114,2,5,75,165,69,166,108,123,49,255,132,60,134,190,155,237,184,128,252,237,6,220,8,1,14,46,115,104,111,119,95,115,49,111,121,57,99,120,101,2,1,78,94,135,235,8,1,17,46,115,104,111,119,99,111,111,107,105,101,100,105,97,108,111,103,2,1,63,94,57,250,8,1,6,46,115,104,111,119,110,2,1,128,97,159,160,8,1,18,46,115,105,103,110,117,112,45,99,116,97,95,95,102,105,120,101,100,2,1,30,73,63,247,8,1,18,46,115,105,109,45,99,111,111,107,105,101,115,45,112,111,112,117,112,2,1,151,157,120,87,8,1,21,46,115,105,109,112,108,101,45,99,111,111,107,105,101,45,119,105,100,103,101,116,2,2,8,110,93,144,58,217,96,221,8,1,21,46,115,105,109,112,108,101,45,100,105,115,109,105,115,115,45,97,108,101,114,116,2,1,65,251,56,146,8,1,13,46,115,105,109,112,108,101,45,109,111,100,97,108,2,1,24,94,203,68,8,1,21,46,115,105,109,112,108,101,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,24,94,203,68,8,1,22,46,115,105,109,112,108,101,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,233,223,28,54,8,1,20,46,115,105,109,112,108,101,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,233,223,28,54,8,1,12,46,115,105,116,101,45,98,97,110,110,101,114,2,1,57,61,154,5,8,1,20,46,115,105,116,101,45,98,108,117,114,45,99,111,110,116,97,105,110,101,114,2,1,35,168,161,23,8,1,12,46,115,105,116,101,45,102,111,111,116,101,114,2,2,54,49,50,74,111,88,238,85,8,1,13,46,115,105,116,101,45,109,101,115,115,97,103,101,2,1,59,46,153,212,8,1,28,46,115,105,116,101,45,109,101,115,115,97,103,101,45,98,97,110,110,101,114,45,119,97,114,110,105,110,103,2,1,199,32,200,189,8,1,22,46,115,105,116,101,45,109,111,100,97,108,115,45,99,111,110,116,97,105,110,101,114,2,1,16,216,185,81,8,1,27,46,115,105,116,101,45,109,111,100,97,108,115,95,95,109,111,100,97,108,45,45,99,111,111,107,105,101,2,1,148,197,92,247,8,1,18,46,115,105,116,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,2,103,216,232,49,215,110,241,47,8,1,13,46,115,105,116,101,45,111,118,101,114,108,97,121,2,1,16,216,185,81,8,1,13,46,115,105,116,101,45,119,97,114,110,105,110,103,2,2,166,143,132,102,194,128,153,7,8,1,17,46,115,105,116,101,65,108,101,114,116,77,101,115,115,97,103,101,2,1,56,241,108,233,8,1,19,46,115,105,116,101,95,99,111,111,107,105,101,95,110,111,116,105,99,101,2,1,182,114,236,144,8,1,10,46,115,105,116,101,97,108,101,114,116,2,1,35,95,182,222,8,1,17,46,115,105,116,101,99,111,111,107,105,101,112,111,108,105,99,121,2,1,38,157,53,122,8,1,16,46,115,105,116,101,119,105,100,101,45,110,111,116,105,99,101,2,3,33,27,32,136,104,168,162,49,141,54,47,27,8,1,12,46,115,107,105,110,45,111,112,116,105,111,110,2,1,114,129,22,51,8,1,21,46,115,108,105,100,101,45,105,110,45,102,114,111,109,45,98,111,116,116,111,109,2,1,214,210,87,180,8,1,9,46,115,108,105,100,101,45,117,112,2,1,100,104,214,128,8,1,14,46,115,108,105,100,105,110,103,45,112,111,112,117,112,2,1,80,214,121,172,8,1,17,46,115,109,67,111,110,116,97,105,110,101,114,73,110,110,101,114,2,1,22,215,118,3,8,1,10,46,115,109,99,111,111,107,105,101,115,2,1,188,12,126,83,8,1,6,46,115,110,97,99,107,2,1,210,233,231,79,8,1,9,46,115,110,97,99,107,98,97,114,2,1,84,42,218,235,8,1,20,46,115,110,97,99,107,98,97,114,45,101,110,116,101,114,45,100,111,110,101,2,1,173,209,21,159,8,1,19,46,115,110,99,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,127,191,227,244,8,1,18,46,115,111,102,116,77,101,115,115,97,103,101,115,45,105,116,101,109,2,1,132,6,239,238,8,1,20,46,115,111,110,111,115,99,111,110,116,101,110,116,45,98,97,110,110,101,114,2,1,129,41,166,162,8,1,23,46,115,112,97,99,101,45,121,45,52,46,105,116,101,109,115,45,99,101,110,116,101,114,2,1,218,245,178,176,8,1,11,46,115,112,101,99,105,97,108,77,115,103,2,1,209,194,168,62,8,1,29,46,115,112,105,99,101,103,101,109,115,95,103,100,112,114,95,98,111,116,116,111,109,95,98,97,110,110,101,114,2,1,20,197,248,41,8,1,19,46,115,112,105,110,45,97,105,45,103,116,109,45,98,97,110,110,101,114,2,1,144,227,180,22,8,1,13,46,115,112,114,100,45,99,111,110,115,101,110,116,2,1,165,252,175,181,8,1,15,46,115,112,117,45,98,111,116,116,111,109,45,98,97,114,2,1,5,66,8,182,8,1,7,46,115,112,120,99,105,98,2,1,148,193,132,48,8,1,24,46,115,113,115,45,115,108,105,100,101,45,108,97,121,101,114,45,99,111,110,116,101,110,116,2,1,171,148,67,216,8,1,18,46,115,113,115,45,115,108,105,100,101,45,119,114,97,112,112,101,114,2,1,35,39,110,27,8,1,57,46,115,114,99,45,99,111,109,112,111,110,101,110,116,115,45,99,111,110,110,101,99,116,101,100,45,100,105,97,108,111,103,45,100,105,97,108,111,103,95,95,114,111,111,116,95,111,112,101,110,45,45,49,74,122,114,78,2,1,86,250,211,89,8,1,59,46,115,114,99,45,99,111,109,112,111,110,101,110,116,115,45,117,116,105,108,115,45,95,95,95,77,111,100,97,108,79,118,101,114,108,97,121,95,95,122,105,103,122,97,103,45,109,111,100,97,108,95,95,95,50,112,79,88,109,2,1,230,170,49,20,8,1,34,46,115,114,99,45,117,105,45,67,111,111,107,105,101,45,67,111,111,107,105,101,95,95,114,111,111,116,45,45,51,76,109,108,52,2,1,143,125,48,215,8,1,19,46,115,116,105,99,107,45,102,111,111,116,101,114,45,112,97,110,101,108,2,1,183,251,152,179,8,1,31,46,115,116,105,99,107,121,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,2,1,52,97,161,198,8,1,14,46,115,116,105,99,107,121,45,102,111,111,116,101,114,2,3,24,117,122,27,63,22,31,80,85,99,85,97,8,1,19,46,115,116,105,99,107,121,45,110,111,116,105,99,101,45,119,114,97,112,2,1,25,237,81,46,8,1,19,46,115,116,105,99,107,121,95,98,111,116,116,111,109,95,119,114,97,112,2,1,56,97,192,197,8,1,20,46,115,116,114,97,112,108,105,110,101,45,99,111,110,116,97,105,110,101,114,2,1,49,210,96,234,8,1,10,46,115,116,119,45,97,108,101,114,116,2,1,191,76,96,7,8,1,20,46,115,116,121,108,101,95,99,111,111,107,105,101,95,95,50,74,121,55,114,2,1,129,35,227,1,8,1,41,46,115,116,121,108,101,115,95,95,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,45,115,99,45,49,99,109,115,51,56,118,45,57,2,1,46,10,7,192,8,1,24,46,115,116,121,108,101,115,95,99,111,110,116,97,105,110,101,114,95,95,95,103,97,50,75,2,1,126,167,208,63,8,1,28,46,115,116,121,108,101,115,95,99,111,111,107,105,101,115,66,97,110,110,101,114,95,95,50,83,52,69,49,2,1,240,215,125,227,8,1,27,46,115,116,121,108,101,115,95,119,101,85,115,101,67,111,111,107,105,101,115,95,95,90,103,95,121,98,2,1,82,115,145,185,8,1,15,46,115,117,99,99,101,115,115,77,101,115,115,97,103,101,2,1,219,20,36,56,8,1,27,46,115,117,105,45,115,105,116,101,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,2,1,199,252,67,142,8,1,21,46,115,118,45,99,111,111,107,105,101,45,109,97,110,97,103,101,109,101,110,116,2,1,50,167,78,243,8,1,15,46,115,118,101,108,116,101,45,49,55,108,56,105,108,110,2,1,91,197,220,238,8,1,20,46,115,118,101,108,116,101,45,49,120,104,105,52,54,99,46,119,114,97,112,2,1,125,155,7,221,8,1,14,46,115,118,101,108,116,101,45,100,120,48,108,51,105,2,1,219,112,21,128,8,1,14,46,115,118,101,108,116,101,45,102,110,118,97,117,50,2,1,48,9,58,0,8,1,11,46,115,119,97,108,50,45,115,104,111,119,2,1,53,170,58,213,8,1,21,46,115,119,105,112,101,114,45,115,108,105,100,101,45,105,109,103,45,116,120,116,2,1,129,61,81,3,8,1,14,46,115,119,105,116,99,104,45,112,114,111,109,112,116,2,1,135,171,144,6,8,1,30,46,115,121,115,116,101,109,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,2,2,100,99,92,39,229,5,146,102,8,1,16,46,116,45,99,111,110,115,101,110,116,80,114,111,109,112,116,2,1,10,158,195,148,8,1,14,46,116,97,110,100,99,45,119,114,97,112,112,101,114,2,1,209,233,175,20,8,1,12,46,116,98,108,114,45,98,111,116,116,111,109,2,1,121,5,153,55,8,1,23,46,116,99,95,95,99,111,111,107,105,101,45,119,114,97,112,45,45,111,117,116,101,114,2,1,42,178,25,99,8,1,6,46,116,99,101,108,108,2,1,66,44,100,148,8,1,11,46,116,100,114,45,114,105,98,98,111,110,2,1,24,130,38,49,8,1,19,46,116,100,118,50,45,97,112,112,108,101,116,45,110,97,103,98,97,114,2,1,126,1,103,52,8,1,9,46,116,101,97,45,110,101,119,115,2,1,90,96,188,254,8,1,18,46,116,101,114,109,115,45,97,108,101,114,116,45,102,105,120,101,100,2,1,231,77,54,229,8,1,29,46,116,101,114,109,115,45,97,110,100,45,99,111,110,100,105,116,105,111,110,115,45,119,114,97,112,112,101,114,2,1,166,144,213,18,8,1,11,46,116,101,114,109,115,45,99,111,110,100,2,1,122,172,63,148,8,1,17,46,116,101,114,109,115,45,111,102,45,115,101,114,118,105,99,101,2,1,38,157,25,55,8,1,13,46,116,101,114,109,115,45,111,102,45,117,115,101,2,1,119,72,228,42,8,1,20,46,116,101,114,109,115,45,111,102,45,117,115,101,45,104,101,97,100,101,114,2,1,120,203,45,164,8,1,14,46,116,101,114,109,115,45,112,114,105,118,97,99,121,2,1,149,234,72,41,8,1,28,46,116,101,114,109,115,102,101,101,100,45,112,99,49,45,110,111,116,105,99,101,45,98,97,110,110,101,114,2,1,44,223,90,149,8,1,23,46,116,101,115,116,45,110,111,116,105,102,105,99,97,116,105,111,110,80,111,112,117,112,2,1,115,89,26,129,8,1,27,46,116,102,45,102,117,108,108,45,115,99,114,101,101,110,45,115,101,97,114,99,104,45,119,114,97,112,2,1,253,227,155,55,8,1,22,46,116,103,99,45,102,111,111,116,101,114,95,100,105,115,99,108,97,105,109,101,114,2,11,29,148,0,39,52,200,255,214,75,150,247,12,125,63,49,41,182,135,172,224,184,19,14,155,200,241,223,150,201,68,38,65,207,139,101,60,210,253,193,242,219,71,147,47,8,1,7,46,116,104,45,99,99,98,2,1,238,11,54,217,8,1,20,46,116,105,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,148,214,72,101,8,1,18,46,116,105,45,112,97,115,116,114,121,45,45,98,97,110,110,101,114,2,1,127,191,227,243,8,1,25,46,116,105,107,116,111,107,45,115,100,107,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,66,46,160,42,8,1,10,46,116,107,45,70,111,111,116,101,114,2,1,135,245,47,185,8,1,22,46,116,109,45,99,111,111,107,105,101,45,100,105,97,108,111,103,45,114,111,111,116,2,1,60,81,27,156,8,1,13,46,116,110,105,45,116,114,97,99,107,101,114,115,2,1,163,246,123,105,8,1,18,46,116,111,97,115,116,45,98,111,116,116,111,109,45,108,101,102,116,2,1,61,25,203,182,8,1,16,46,116,111,97,115,116,45,99,111,110,116,97,105,110,101,114,2,1,148,188,9,210,8,1,11,46,116,111,97,115,116,45,105,110,102,111,2,1,47,182,22,189,8,1,19,46,116,111,97,115,116,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,86,225,15,142,8,1,14,46,116,111,97,115,116,45,119,114,97,112,112,101,114,2,1,103,200,188,61,8,1,16,46,116,111,97,115,116,105,102,121,45,98,111,116,116,111,109,2,2,57,60,232,87,159,30,62,251,8,1,13,46,116,111,112,45,48,46,115,116,105,99,107,121,2,1,150,112,193,106,8,1,11,46,116,111,112,45,98,97,110,110,101,114,2,1,127,53,170,246,8,1,8,46,116,111,112,45,98,97,114,2,2,8,198,224,199,107,201,167,11,8,1,27,46,116,111,112,45,98,97,114,45,99,111,110,116,97,105,110,101,114,45,45,45,110,111,116,105,99,101,2,1,237,145,82,218,8,1,27,46,116,111,112,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,2,1,61,230,156,42,8,1,10,46,116,111,112,45,112,114,111,109,111,2,1,123,124,147,21,8,1,16,46,116,111,112,45,119,114,97,112,112,101,114,45,98,111,120,2,1,189,229,36,113,8,1,12,46,116,111,112,95,101,112,95,119,114,97,112,2,1,14,43,146,157,8,1,11,46,116,111,112,95,110,111,116,105,99,101,2,1,77,37,17,121,8,1,13,46,116,111,112,95,116,105,112,95,119,114,97,112,2,1,151,54,74,43,8,1,10,46,116,111,112,98,97,114,66,111,120,2,1,69,172,79,138,8,1,7,46,116,111,112,100,105,118,2,1,222,147,92,197,8,1,14,46,116,111,115,45,97,103,114,101,101,109,101,110,116,2,1,85,197,54,224,8,1,11,46,116,111,115,45,98,97,110,110,101,114,2,1,89,176,168,234,8,1,14,46,116,111,115,45,99,111,110,116,97,105,110,101,114,2,1,148,187,243,65,8,1,18,46,116,111,115,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,151,192,34,195,8,1,10,46,116,111,115,45,112,111,112,117,112,2,1,148,192,241,169,8,1,13,46,116,111,115,45,114,97,122,101,114,45,106,115,2,1,129,60,246,74,8,1,17,46,116,111,118,97,116,116,45,103,100,112,114,112,111,112,117,112,2,1,141,32,45,8,8,1,17,46,116,112,45,112,111,112,105,110,45,99,111,111,107,105,101,115,2,1,82,55,14,104,8,1,18,46,116,112,104,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,184,246,74,67,8,1,21,46,116,114,45,68,105,115,109,105,115,115,105,98,108,101,66,97,110,110,101,114,2,1,96,100,91,118,8,1,9,46,116,114,97,99,107,105,110,103,2,1,65,241,126,15,8,1,15,46,116,114,97,99,107,105,110,103,45,97,108,101,114,116,2,1,126,224,237,18,8,1,20,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,118,50,2,1,210,46,108,140,8,1,27,46,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,118,50,95,95,109,111,100,97,108,2,1,210,46,108,140,8,1,16,46,116,114,97,99,107,105,110,103,45,110,111,116,105,99,101,2,1,92,243,107,150,8,1,41,46,116,114,97,99,107,105,110,103,95,98,97,110,110,101,114,45,45,45,116,114,97,99,107,105,110,103,66,97,110,110,101,114,45,45,45,51,103,107,95,83,2,1,1,23,219,193,8,1,10,46,116,114,97,110,115,98,111,120,49,2,1,54,216,61,147,8,1,31,46,116,114,97,110,115,105,116,105,111,110,45,97,108,108,46,114,111,117,110,100,101,100,45,116,46,102,105,120,101,100,2,1,132,226,93,113,8,1,20,46,116,114,97,110,115,112,97,114,101,110,116,45,111,118,101,114,108,97,121,2,1,137,146,68,74,8,1,15,46,116,114,111,97,120,45,109,101,115,115,97,103,101,115,2,1,127,242,103,88,8,1,19,46,116,114,111,112,116,101,114,45,99,111,111,107,105,101,115,98,97,114,2,1,31,208,87,178,8,1,18,46,116,114,117,101,110,100,111,95,99,111,110,116,97,105,110,101,114,2,1,2,123,148,171,8,1,18,46,116,115,45,104,101,97,100,101,114,45,109,101,115,115,97,103,101,2,1,211,240,62,173,8,1,7,46,116,115,45,109,115,103,2,1,248,27,186,83,8,1,21,46,116,116,95,112,111,112,111,118,101,114,95,99,111,110,116,97,105,110,101,114,2,1,126,3,62,107,8,1,20,46,116,118,101,45,108,101,97,100,115,45,116,114,105,103,103,101,114,101,100,2,1,3,102,180,79,8,1,76,46,116,119,45,98,111,114,100,101,114,45,50,46,116,119,45,114,111,117,110,100,101,100,46,116,119,45,98,111,114,100,101,114,45,112,114,105,109,97,114,121,46,116,119,45,112,45,52,46,116,119,45,98,103,45,116,104,101,109,101,45,49,46,116,119,45,116,101,120,116,45,116,104,101,109,101,2,1,202,34,230,197,8,1,9,46,116,119,45,102,105,120,101,100,2,1,132,207,146,224,8,1,14,46,116,120,95,97,109,102,99,111,111,107,105,101,115,2,1,189,201,168,10,8,1,27,46,117,45,98,97,99,107,103,114,111,117,110,100,45,45,100,101,102,97,117,108,116,45,100,97,114,107,2,1,66,1,148,159,8,1,10,46,117,45,98,103,45,112,97,100,100,2,1,251,67,186,116,8,1,33,46,117,49,50,45,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,110,111,116,105,99,101,95,95,105,116,101,109,2,1,61,247,22,20,8,1,4,46,117,99,98,2,1,167,84,49,7,8,1,9,46,117,105,45,97,108,101,114,116,2,1,17,239,13,190,8,1,19,46,117,105,45,110,111,116,105,102,105,99,97,116,105,111,110,98,97,114,2,1,183,225,239,212,8,1,11,46,117,105,45,112,114,105,118,97,99,121,2,1,247,93,148,140,8,1,13,46,117,105,45,114,101,115,105,122,97,98,108,101,2,1,148,186,188,93,8,1,7,46,117,105,108,111,99,107,2,1,202,61,43,129,8,1,9,46,117,107,45,97,108,101,114,116,2,2,38,239,13,35,169,129,48,126,8,1,18,46,117,107,45,112,111,115,105,116,105,111,110,45,102,105,120,101,100,2,1,13,37,89,48,8,1,12,46,117,108,112,45,111,118,101,114,108,97,121,2,1,44,154,107,81,8,1,22,46,117,108,112,45,119,105,110,100,111,119,45,116,111,112,45,99,101,110,116,101,114,2,1,44,154,107,81,8,1,15,46,117,109,45,99,111,110,115,101,110,116,45,98,97,114,2,1,187,0,228,44,8,1,25,46,117,110,105,118,101,114,115,97,108,45,102,111,111,116,101,114,95,95,114,105,98,98,111,110,2,1,38,157,30,74,8,1,3,46,117,112,2,1,227,102,83,128,8,1,21,46,117,112,99,99,45,102,108,111,97,116,105,110,103,45,110,111,116,105,99,101,2,1,70,42,110,77,8,1,11,46,117,114,103,101,110,116,45,109,115,103,2,1,19,148,99,144,8,1,17,46,117,114,108,115,108,97,98,45,115,107,105,112,45,97,108,108,2,1,86,238,180,31,8,1,9,46,117,115,101,114,45,109,115,103,2,2,38,157,25,55,122,13,201,82,8,1,16,46,117,115,101,114,45,112,101,114,109,105,115,115,105,111,110,2,1,69,206,83,62,8,1,16,46,117,115,101,114,45,116,101,114,109,115,45,104,105,110,116,2,1,3,234,52,225,8,1,12,46,117,115,101,114,77,101,115,115,97,103,101,2,1,131,46,28,247,8,1,11,46,117,115,101,114,78,111,116,105,99,101,2,1,143,114,110,236,8,1,12,46,117,115,101,114,95,110,111,116,105,99,101,2,1,58,205,99,242,8,1,15,46,117,115,101,114,110,111,116,105,99,101,95,112,111,112,2,7,85,116,227,157,86,154,115,76,92,216,58,174,169,129,170,165,170,34,119,100,177,5,226,31,250,187,217,34,8,1,27,46,117,116,105,108,105,116,105,101,115,95,103,114,97,110,116,95,112,97,110,101,108,95,115,104,111,119,2,1,34,4,76,163,8,1,18,46,117,116,105,108,105,116,121,45,99,111,110,116,97,105,110,101,114,2,1,127,242,108,247,8,1,11,46,117,116,105,108,105,116,121,66,97,114,2,1,0,145,132,92,8,1,18,46,117,120,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,83,6,251,46,8,1,17,46,118,45,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,121,255,34,116,8,1,15,46,118,45,98,111,116,116,111,109,45,115,104,101,101,116,2,1,201,193,190,25,8,1,19,46,118,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,64,222,114,179,8,1,17,46,118,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,91,59,114,50,8,1,9,46,118,45,100,105,97,108,111,103,2,1,106,197,71,204,8,1,18,46,118,45,100,105,97,108,111,103,95,95,99,111,110,116,101,110,116,2,1,227,143,64,119,8,1,9,46,118,45,102,111,111,116,101,114,2,1,148,192,109,107,8,1,13,46,118,45,109,100,117,45,110,111,116,105,99,101,2,1,188,166,40,185,8,1,16,46,118,45,115,110,97,99,107,45,45,98,111,116,116,111,109,2,1,219,182,2,214,8,1,17,46,118,45,115,110,97,99,107,95,95,99,111,110,116,101,110,116,2,1,151,192,34,195,8,1,18,46,118,50,45,99,108,97,115,115,45,45,45,98,97,110,110,101,114,2,1,78,156,34,208,8,1,30,46,118,55,45,117,115,45,112,114,105,118,97,99,121,45,101,120,112,108,105,99,105,116,45,110,111,116,105,99,101,2,1,113,152,115,249,8,1,3,46,118,99,2,1,218,155,120,193,8,1,15,46,118,99,45,103,100,112,114,45,98,97,110,110,101,114,2,1,127,58,28,249,8,1,11,46,118,101,114,105,65,108,116,66,97,114,2,1,117,188,223,20,8,1,14,46,118,105,115,105,116,111,114,110,111,116,105,99,101,2,1,9,152,14,186,8,1,12,46,118,105,115,109,101,99,111,111,107,105,101,2,1,108,206,119,121,8,1,18,46,118,110,111,116,105,102,121,45,99,111,110,116,97,105,110,101,114,2,1,64,7,125,219,8,1,14,46,118,112,120,45,103,100,112,114,77,111,100,97,108,2,1,125,166,164,252,8,1,21,46,118,117,101,45,100,105,115,99,108,97,105,109,101,114,45,112,111,112,117,112,2,1,211,10,33,118,8,1,6,46,119,45,49,48,48,2,2,48,118,227,132,136,248,31,213,8,1,9,46,119,45,115,99,114,101,101,110,2,1,243,160,225,53,8,1,6,46,119,53,121,71,112,2,1,148,196,49,170,8,1,10,46,119,97,114,110,45,119,114,97,112,2,1,207,24,225,91,8,1,14,46,119,97,114,110,105,110,103,45,109,111,100,97,108,2,1,71,171,241,188,8,1,16,46,119,98,108,55,50,101,45,48,45,102,111,111,116,101,114,2,1,38,157,76,56,8,1,15,46,119,101,108,99,111,109,101,45,98,97,110,110,101,114,2,1,59,132,118,86,8,1,11,46,119,105,115,112,45,109,111,100,97,108,2,1,36,79,47,104,8,1,19,46,119,105,122,97,114,100,67,111,111,107,105,101,66,97,110,110,101,114,2,1,226,171,152,4,8,1,18,46,119,107,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,66,133,211,102,8,1,11,46,119,111,45,99,111,110,115,101,110,116,2,1,129,21,173,66,8,1,17,46,119,111,110,100,101,114,112,108,117,103,105,110,45,98,111,120,2,1,116,208,28,216,8,1,16,46,119,111,111,107,105,101,101,45,119,114,97,112,112,101,114,2,1,166,61,83,65,8,1,15,46,119,112,112,111,112,117,112,115,45,119,104,111,108,101,2,1,53,48,255,170,8,1,10,46,119,112,116,45,109,111,100,97,108,2,1,46,30,201,54,8,1,13,46,119,114,97,112,112,101,114,32,62,32,46,119,2,1,196,179,98,57,8,1,14,46,119,114,97,112,112,101,114,45,56,56,54,97,98,2,1,152,197,90,108,8,1,15,46,119,114,97,112,112,101,114,45,110,111,116,105,102,121,2,1,244,48,211,30,8,1,16,46,119,114,97,112,112,101,114,45,119,114,97,112,112,101,114,2,1,71,23,232,184,8,1,13,46,119,114,97,112,112,101,114,46,115,104,111,119,2,1,47,96,103,186,8,1,11,46,119,114,97,112,112,101,114,98,116,109,2,18,6,212,204,118,11,189,230,174,47,195,42,131,52,40,92,50,89,209,7,189,127,219,55,24,137,86,89,117,138,197,10,75,166,63,147,166,169,134,7,13,181,115,89,165,185,57,175,199,191,110,187,141,193,178,136,51,194,102,86,112,197,124,141,151,216,126,230,183,225,36,61,79,8,1,6,46,119,116,45,99,98,2,1,151,123,90,12,8,1,15,46,119,119,110,45,103,100,112,114,45,109,111,100,97,108,2,1,191,182,50,252,8,1,16,46,120,45,103,108,111,98,97,108,45,100,105,97,108,111,103,2,1,16,99,111,160,8,1,10,46,120,45,109,101,115,115,97,103,101,2,1,183,21,59,170,8,1,7,46,120,73,80,104,117,79,2,1,127,45,159,201,8,1,30,46,120,116,120,78,97,118,105,103,97,116,105,111,110,79,102,102,67,97,110,118,97,115,79,118,101,114,108,97,121,2,1,220,8,165,81,8,1,36,46,120,116,120,78,97,118,105,103,97,116,105,111,110,79,102,102,67,97,110,118,97,115,79,118,101,114,108,97,121,67,111,111,107,105,101,2,1,220,8,165,81,8,1,6,46,121,67,112,102,84,2,1,31,155,145,230,8,1,7,46,121,101,108,108,111,119,2,1,92,102,131,68,8,1,9,46,121,101,112,115,45,98,97,114,2,1,95,78,120,54,8,1,6,46,121,104,109,112,78,2,1,255,56,100,79,8,1,21,46,121,111,117,116,117,98,101,45,116,101,114,109,115,45,98,97,110,110,101,114,2,1,5,189,113,140,8,1,11,46,121,116,45,99,111,110,115,101,110,116,2,1,172,236,226,157,8,1,17,46,121,117,46,121,116,46,121,115,46,103,105,46,117,46,111,100,2,1,160,2,171,133,8,1,14,46,121,117,99,115,45,101,112,114,105,118,97,99,121,2,1,126,1,103,52,8,1,12,46,121,118,114,45,99,111,111,107,105,101,115,2,1,2,234,99,54,8,1,20,46,122,45,49,46,98,103,45,103,114,101,121,45,108,105,103,104,116,101,114,2,1,28,90,36,127,8,1,7,46,122,45,49,48,48,48,2,1,229,249,67,153,8,1,5,46,122,45,51,48,2,1,86,144,251,116,8,1,6,46,122,45,54,48,48,2,1,82,11,225,124,8,1,14,46,122,45,99,111,111,107,105,101,80,111,112,117,112,2,1,243,87,30,32,8,1,21,46,122,89,115,76,69,74,120,122,109,102,66,65,50,74,98,102,103,118,56,86,2,1,141,124,41,202,8,1,32,46,122,97,52,51,98,98,49,50,98,56,54,52,97,51,102,56,100,95,112,114,105,118,97,99,121,66,97,110,110,101,114,2,1,38,157,72,76,8,1,31,46,122,98,111,116,116,111,109,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,45,111,117,116,101,114,2,1,148,180,19,134,0,1,12,83,65,78,84,65,45,78,79,84,73,67,69,2,1,78,14,197,230,0,1,15,85,83,69,82,45,84,89,80,69,45,80,79,80,85,80,2,1,28,225,134,107,0,1,39,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,98,97,110,110,101,114,45,100,101,115,99,114,105,112,116,105,111,110,34,93,2,1,197,59,37,153,0,1,47,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,101,115,99,114,105,112,116,105,111,110,34,93,2,1,62,237,229,153,0,1,43,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,109,111,98,105,108,101,77,111,98,105,108,101,84,79,85,77,101,115,115,97,103,101,34,93,2,1,230,42,26,48,0,1,29,91,97,114,105,97,45,108,97,98,101,108,61,34,67,111,111,107,105,101,32,67,111,110,115,101,110,116,34,93,2,1,142,90,214,178,0,1,22,91,97,114,105,97,45,108,97,98,101,108,61,34,67,111,111,107,105,101,115,34,93,2,1,242,62,249,130,0,1,33,91,97,114,105,97,45,108,97,98,101,108,61,34,80,114,105,118,97,99,121,32,68,105,115,99,108,111,115,117,114,101,34,93,2,1,47,169,49,123,0,1,28,91,97,114,105,97,45,108,97,98,101,108,61,34,99,111,111,107,105,101,32,98,97,110,110,101,114,34,93,2,1,239,178,208,18,0,1,28,91,97,114,105,97,45,108,97,98,101,108,61,34,99,111,111,107,105,101,99,111,110,115,101,110,116,34,93,2,1,224,114,135,77,0,1,39,91,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,45,116,105,116,108,101,34,93,2,1,71,197,111,134,0,1,38,91,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,110,111,116,105,102,105,99,97,116,105,111,110,95,108,97,98,101,108,34,93,2,1,254,154,173,12,0,1,28,91,99,108,97,115,115,42,61,34,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,95,34,93,2,1,105,251,190,37,0,1,24,91,99,108,97,115,115,42,61,34,67,111,111,107,105,101,115,65,99,99,101,112,116,34,93,2,1,89,108,28,91,0,1,38,91,99,108,97,115,115,42,61,34,83,110,97,99,107,98,97,114,77,101,115,115,97,103,101,115,95,95,115,110,97,99,107,98,97,114,95,34,93,2,1,88,236,182,118,0,1,23,91,99,108,97,115,115,42,61,34,99,111,111,107,105,101,115,80,111,112,85,112,34,93,2,1,39,248,97,90,0,1,45,91,99,108,97,115,115,42,61,34,109,111,100,97,108,115,116,121,108,101,115,95,95,83,116,121,108,101,100,77,111,100,97,108,67,111,110,116,97,105,110,101,114,45,34,93,2,1,150,125,114,88,0,1,35,91,99,108,97,115,115,42,61,34,115,116,121,108,101,115,95,95,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,45,34,93,2,1,254,154,173,12,0,1,24,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,67,111,110,116,114,111,108,34,93,2,1,19,18,157,113,0,1,25,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,77,97,110,97,103,101,114,34,93,2,1,167,237,61,197,0,1,28,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,34,93,2,1,197,14,239,228,0,1,23,91,99,108,97,115,115,94,61,34,71,68,80,82,45,109,111,100,117,108,101,95,34,93,2,1,138,130,174,214,0,1,35,91,99,108,97,115,115,94,61,34,79,118,101,114,108,97,121,95,95,79,118,101,114,108,97,121,66,97,115,101,45,115,99,45,34,93,2,1,75,18,183,100,0,1,33,91,99,108,97,115,115,94,61,34,82,111,99,107,115,116,97,114,67,111,111,107,105,101,115,66,97,110,110,101,114,95,34,93,2,1,98,183,234,94,0,1,25,91,99,108,97,115,115,94,61,34,97,112,112,45,99,111,110,116,97,105,110,101,114,45,34,93,2,1,148,179,249,80,0,1,25,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,45,34,93,2,1,200,71,154,101,0,1,35,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,109,112,111,110,101,110,116,95,34,93,2,1,189,112,29,151,0,1,24,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,95,110,111,116,105,99,101,34,93,2,1,224,38,172,42,0,1,21,91,99,108,97,115,115,94,61,34,115,116,121,108,101,95,103,100,112,114,34,93,2,1,128,97,105,80,0,1,27,91,99,108,97,115,115,94,61,34,116,114,117,115,116,97,114,99,95,99,111,110,115,101,110,116,34,93,2,1,70,84,196,114,0,1,27,91,100,97,116,97,45,97,106,97,120,45,108,111,97,100,105,110,103,61,34,102,97,108,115,101,34,93,2,1,53,185,155,239,0,1,34,91,100,97,116,97,45,97,117,116,111,109,97,116,105,111,110,45,105,100,61,34,108,101,103,97,108,78,111,116,105,99,101,34,93,2,1,42,43,171,17,0,1,32,91,100,97,116,97,45,97,117,116,111,109,97,116,105,111,110,61,34,108,97,117,110,99,104,66,97,110,110,101,114,34,93,2,1,187,94,79,77,0,1,39,91,100,97,116,97,45,97,117,116,111,109,97,116,105,111,110,61,34,112,114,105,118,97,99,121,80,111,108,105,99,121,66,97,110,110,101,114,34,93,2,2,71,7,132,20,247,34,155,4,0,1,24,91,100,97,116,97,45,98,97,115,101,119,101,98,61,34,116,111,97,115,116,101,114,34,93,2,1,148,202,79,68,0,1,25,91,100,97,116,97,45,98,100,100,61,34,116,101,114,109,115,45,111,102,45,117,115,101,34,93,2,1,230,42,26,48,0,1,16,91,100,97,116,97,45,99,99,45,98,97,110,110,101,114,93,2,1,100,153,214,60,0,1,41,91,100,97,116,97,45,99,111,109,112,45,116,121,112,101,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,45,114,111,111,116,45,119,105,120,34,93,2,1,38,157,114,246,0,1,31,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,61,34,67,111,111,107,105,101,66,97,110,110,101,114,34,93,2,1,181,159,156,8,0,1,31,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,61,34,99,111,111,107,105,101,66,97,110,110,101,114,34,93,2,1,196,104,106,13,0,1,35,91,100,97,116,97,45,99,111,109,112,111,110,101,110,116,61,34,110,51,45,99,111,111,107,105,101,45,110,111,116,105,99,101,34,93,2,1,190,221,19,219,0,1,26,91,100,97,116,97,45,99,121,61,34,99,111,111,107,105,101,45,99,111,110,115,101,110,116,34,93,2,1,101,231,79,129,0,1,20,91,100,97,116,97,45,100,105,97,108,111,103,61,34,116,114,117,101,34,93,2,1,23,81,196,34,0,1,36,91,100,97,116,97,45,102,101,116,99,104,45,107,101,121,61,34,84,104,101,67,111,111,107,105,101,80,114,111,109,112,116,58,48,34,93,2,1,226,171,152,4,0,1,47,91,100,97,116,97,45,103,110,97,118,45,114,101,103,105,111,110,61,34,71,108,111,98,97,108,80,114,105,118,97,99,121,67,111,110,116,114,111,108,66,97,110,110,101,114,34,93,2,1,91,52,44,223,0,1,39,91,100,97,116,97,45,114,101,97,99,116,45,99,108,97,115,115,61,34,73,110,102,111,114,109,67,111,111,107,105,101,115,80,111,112,117,112,34,93,2,1,211,244,164,16,0,1,30,91,100,97,116,97,45,116,101,115,116,45,105,100,61,34,99,111,111,107,105,101,45,110,111,116,105,99,101,34,93,2,1,248,95,163,111,0,1,35,91,100,97,116,97,45,116,101,115,116,45,110,97,109,101,61,34,95,116,101,114,109,115,79,102,83,101,114,118,105,99,101,115,34,93,2,1,4,42,1,94,0,1,42,91,100,97,116,97,45,116,101,115,116,45,115,101,108,101,99,116,111,114,61,34,100,114,97,119,101,114,95,67,111,111,107,105,101,80,111,108,105,99,121,34,93,2,1,101,24,8,62,0,1,20,91,100,97,116,97,45,116,101,115,116,61,34,98,97,110,110,101,114,34,93,2,1,144,159,197,195,0,1,37,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,34,93,2,1,55,4,69,9,0,1,29,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,115,78,111,116,105,99,101,34,93,2,1,207,248,235,211,0,1,29,91,100,97,116,97,45,116,111,103,103,108,101,45,112,114,111,112,101,114,116,121,61,34,103,100,112,114,34,93,2,1,53,241,42,178,0,1,17,91,100,97,116,97,45,118,45,53,102,54,55,53,102,99,56,93,2,1,234,103,20,63,0,1,22,91,114,101,100,100,105,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,93,2,1,142,14,98,194,0,1,20,91,114,111,108,101,61,34,97,108,101,114,116,100,105,97,108,111,103,34,93,2,1,252,56,108,12,0,1,22,91,114,111,108,101,61,34,99,111,109,112,108,101,109,101,110,116,97,114,121,34,93,2,1,189,36,203,194,0,1,48,91,115,116,121,108,101,42,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,32,116,111,112,58,32,48,112,120,59,34,93,2,1,80,41,202,77,0,1,38,91,115,116,121,108,101,61,34,112,97,100,100,105,110,103,45,108,101,102,116,58,48,112,120,32,33,105,109,112,111,114,116,97,110,116,59,34,93,2,1,141,64,220,155,0,1,45,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,40,50,52,44,32,50,56,44,32,51,49,41,59,34,93,2,1,234,38,18,219,0,1,48,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,51,37,59,32,114,105,103,104,116,58,32,51,37,59,34,93,2,1,186,143,185,141,0,1,54,91,115,116,121,108,101,94,61,34,119,105,100,116,104,58,32,49,48,48,37,59,32,104,101,105,103,104,116,58,32,49,48,48,37,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,34,93,2,1,161,64,7,160,0,1,45,91,115,116,121,108,101,94,61,34,122,45,105,110,100,101,120,58,57,48,48,48,48,48,48,48,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,34,93,2,1,246,17,160,192,0,1,19,97,99,114,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,69,16,41,13,0,1,17,97,100,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,194,197,251,32,0,1,7,97,103,98,45,98,97,114,2,1,54,216,162,166,0,1,13,97,112,112,45,97,103,114,101,101,109,101,110,116,2,1,97,165,136,124,0,1,11,97,112,112,45,98,97,110,110,101,114,115,2,1,13,211,21,132,0,1,17,97,112,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,130,16,220,63,0,1,17,97,112,112,45,99,111,111,107,105,101,45,115,116,97,116,117,115,2,1,58,33,119,191,0,1,19,97,112,112,45,99,111,111,107,105,101,115,45,109,97,110,97,103,101,114,2,1,146,9,150,180,0,1,14,97,112,112,45,116,105,110,121,45,97,108,101,114,116,2,1,128,133,243,178,0,1,14,98,97,110,110,101,114,45,99,111,110,116,101,110,116,2,1,48,139,147,243,0,1,19,98,108,105,109,45,104,101,97,100,101,114,45,109,101,115,115,97,103,101,2,1,148,181,139,82,0,1,19,98,111,100,121,32,62,32,46,109,101,110,117,45,104,101,97,100,101,114,2,1,84,119,165,188,0,1,18,98,111,100,121,32,62,32,100,105,118,32,62,32,46,99,97,114,100,2,1,161,64,7,160,0,1,74,98,111,100,121,58,110,111,116,40,91,115,116,121,108,101,94,61,34,109,97,114,103,105,110,45,98,111,116,116,111,109,34,93,41,32,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,34,93,2,1,25,145,115,140,0,1,12,99,45,100,99,120,45,99,111,111,107,105,101,2,1,233,36,175,98,0,1,20,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,20,183,107,89,0,1,13,99,111,110,115,101,110,116,45,116,111,97,115,116,2,1,84,7,72,229,0,1,18,99,111,114,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,132,21,68,69,0,1,26,100,105,118,32,62,32,46,98,114,97,110,99,104,45,106,111,117,114,110,101,121,115,45,116,111,112,2,1,63,37,190,213,0,1,21,100,105,118,32,62,32,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,2,1,246,101,61,67,0,1,71,100,105,118,46,106,115,45,97,112,112,108,101,116,45,118,105,101,119,45,99,111,110,116,97,105,110,101,114,45,109,97,105,110,32,62,32,100,105,118,46,102,105,120,101,100,45,119,105,110,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,58,34,93,2,1,126,1,103,52,0,1,25,100,105,118,46,114,45,49,120,99,97,106,97,109,46,99,115,115,45,49,55,53,111,105,50,114,2,17,3,251,117,37,7,228,248,70,16,15,120,172,61,206,210,50,80,11,63,152,128,151,228,197,153,70,112,218,160,183,46,20,175,49,28,252,183,112,121,162,185,11,113,211,222,125,142,193,234,86,195,178,235,217,23,187,239,66,44,125,242,126,154,53,244,59,22,44,0,1,32,100,105,118,91,97,114,105,97,45,108,97,98,101,108,61,34,67,111,111,107,105,101,32,67,111,110,115,101,110,116,34,93,2,1,127,50,15,0,0,1,49,100,105,118,91,97,114,105,97,45,108,97,98,101,108,61,34,67,111,111,107,105,101,115,32,117,115,97,103,101,32,100,105,115,99,108,97,105,109,101,114,32,98,97,110,110,101,114,34,93,2,1,234,220,158,159,0,1,44,100,105,118,91,99,108,97,115,115,42,61,34,67,111,110,102,105,114,109,77,101,115,115,97,103,101,45,109,111,100,117,108,101,95,95,99,111,111,107,105,101,45,34,93,2,1,222,200,80,198,0,1,25,100,105,118,91,99,108,97,115,115,42,61,34,67,111,111,107,105,101,115,66,97,114,95,34,93,2,1,45,176,0,113,0,1,34,100,105,118,91,99,108,97,115,115,42,61,34,115,116,121,108,101,115,95,99,111,110,115,101,110,116,67,97,114,100,95,95,34,93,2,1,146,203,177,86,0,1,32,100,105,118,91,99,108,97,115,115,61,34,97,108,101,114,116,67,111,110,116,97,105,110,101,114,95,99,56,48,101,34,93,2,1,100,14,247,220,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,65,108,101,114,116,68,95,99,111,110,116,97,105,110,101,114,34,93,2,2,54,184,87,214,151,169,245,150,0,1,25,100,105,118,91,99,108,97,115,115,94,61,34,66,97,110,110,101,114,71,68,80,82,95,34,93,2,1,152,139,130,66,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,66,97,110,110,101,114,95,98,97,110,110,101,114,95,34,93,2,1,242,114,223,217,0,1,29,100,105,118,91,99,108,97,115,115,94,61,34,66,105,115,113,117,105,116,115,66,97,110,110,101,114,95,34,93,2,1,121,100,186,242,0,1,26,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,65,108,101,114,116,45,34,93,2,1,126,17,119,49,0,1,26,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,117,109,112,101,114,34,93,2,1,89,217,44,129,0,1,34,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,95,34,93,2,1,188,104,246,81,0,1,29,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,68,105,114,101,99,116,105,118,101,34,93,2,1,57,123,98,118,0,1,34,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,77,101,115,115,97,103,101,115,116,121,108,101,100,95,34,93,2,1,115,155,49,137,0,1,41,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,95,119,114,97,112,112,101,114,95,34,93,2,1,102,231,106,212,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,65,103,114,101,101,109,101,110,116,34,93,2,1,245,111,172,30,0,1,26,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,73,110,102,111,95,34,93,2,1,170,174,2,96,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,76,97,98,101,108,95,34,93,2,1,90,75,139,154,0,1,38,100,105,118,91,99,108,97,115,115,94,61,34,70,111,111,116,101,114,95,99,111,111,107,105,101,115,66,103,70,97,108,108,98,97,99,107,34,93,2,1,199,7,138,110,0,1,38,100,105,118,91,99,108,97,115,115,94,61,34,71,100,112,114,65,99,99,101,112,116,97,110,99,101,95,99,111,110,116,97,105,110,101,114,34,93,2,1,122,171,86,27,0,1,25,100,105,118,91,99,108,97,115,115,94,61,34,71,100,112,114,66,97,110,110,101,114,95,34,93,2,1,204,5,127,36,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,76,101,103,97,108,68,105,115,99,108,97,105,109,101,114,95,34,93,2,1,129,179,108,204,0,1,40,100,105,118,91,99,108,97,115,115,94,61,34,77,88,95,67,79,77,80,76,89,95,71,68,80,82,95,67,79,77,80,76,73,65,78,67,69,95,34,93,2,1,203,80,115,129,0,1,35,100,105,118,91,99,108,97,115,115,94,61,34,77,101,115,115,97,103,101,66,97,110,110,101,114,87,114,97,112,112,101,114,45,34,93,2,12,0,9,3,132,37,208,98,149,45,94,2,134,53,108,59,10,67,251,45,20,77,85,155,219,126,242,152,210,127,1,174,185,129,65,47,58,148,185,211,204,182,250,56,149,194,197,253,246,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,80,114,105,118,97,99,121,78,111,116,105,99,101,34,93,2,1,126,6,120,56,0,1,34,100,105,118,91,99,108,97,115,115,94,61,34,80,114,105,118,97,99,121,78,111,116,105,102,105,99,97,116,105,111,110,95,34,93,2,1,71,63,18,241,0,1,25,100,105,118,91,99,108,97,115,115,94,61,34,83,109,97,108,108,67,111,111,107,105,101,34,93,2,1,53,254,140,168,0,1,36,100,105,118,91,99,108,97,115,115,94,61,34,83,116,121,108,101,100,76,101,103,97,108,68,105,115,99,108,97,105,109,101,114,45,34,93,2,1,108,72,131,138,0,1,36,100,105,118,91,99,108,97,115,115,94,61,34,84,111,97,115,116,45,109,111,100,117,108,101,45,45,119,114,97,112,112,101,114,45,34,93,2,1,214,169,142,47,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,2,4,44,46,139,14,60,111,99,13,125,250,184,31,126,22,4,12,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,45,34,93,2,1,128,213,81,72,0,1,42,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,111,100,117,108,101,95,119,114,97,112,112,101,114,34,93,2,1,36,118,75,90,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,95,34,93,2,1,141,115,67,226,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,99,111,110,115,101,110,116,34,93,2,4,31,206,171,133,157,48,242,210,188,85,29,195,238,48,16,85,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,115,116,97,116,101,109,101,110,116,34,93,2,1,20,229,178,85,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,66,97,110,110,101,114,95,34,93,2,2,220,199,61,63,250,155,210,223,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,115,65,110,110,111,117,110,99,101,45,34,93,2,27,15,72,59,192,24,69,246,147,25,176,91,37,31,104,75,126,43,64,54,249,47,89,75,7,59,23,70,56,69,45,163,70,83,236,88,183,91,70,70,60,111,130,85,104,121,92,227,152,125,241,191,235,126,196,73,228,142,27,80,12,148,169,144,147,152,197,90,108,157,151,146,238,183,142,85,2,184,73,207,229,225,194,218,190,227,66,127,233,240,14,79,190,246,158,98,247,247,35,108,72,251,44,214,127,253,243,127,129,0,1,41,100,105,118,91,99,108,97,115,115,94,61,34,105,110,100,101,120,45,109,111,100,117,108,101,45,45,99,111,111,107,105,101,98,97,110,110,101,114,45,34,93,2,1,148,199,178,222,0,1,35,100,105,118,91,99,108,97,115,115,94,61,34,105,110,100,101,120,45,109,111,100,117,108,101,45,45,111,118,101,114,108,97,121,34,93,2,1,125,105,52,14,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,105,110,100,101,120,95,99,111,111,107,105,101,115,45,34,93,2,1,126,82,229,198,0,1,33,100,105,118,91,99,108,97,115,115,94,61,34,110,111,116,105,102,105,99,97,116,105,111,110,70,111,111,116,101,114,95,34,93,2,1,151,252,235,86,0,1,38,100,105,118,91,99,108,97,115,115,94,61,34,111,114,100,101,114,45,34,93,91,99,108,97,115,115,42,61,34,112,111,108,105,99,121,45,34,93,2,1,148,184,91,187,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,112,111,112,117,112,95,111,118,101,114,108,97,121,95,34,93,2,1,115,140,180,87,0,1,43,100,105,118,91,99,108,97,115,115,94,61,34,115,116,121,108,101,95,95,83,116,105,99,107,121,65,108,101,114,116,87,114,97,112,112,101,114,45,115,99,45,34,93,2,1,176,33,249,94,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,115,116,121,108,101,115,95,98,97,110,110,101,114,95,34,93,2,1,131,141,7,41,0,1,35,100,105,118,91,99,108,97,115,115,94,61,34,115,116,121,108,101,115,95,99,111,111,107,105,101,115,66,97,110,110,101,114,95,34,93,2,1,2,32,210,174,0,1,25,100,105,118,91,99,108,97,115,115,94,61,34,121,116,100,45,99,111,110,115,101,110,116,34,93,2,1,172,236,226,157,0,1,29,100,105,118,91,100,97,116,97,45,97,110,97,108,121,116,105,99,115,42,61,34,99,111,111,107,105,101,34,93,2,1,91,197,220,238,0,1,39,100,105,118,91,100,97,116,97,45,99,111,110,116,114,111,108,108,101,114,42,61,34,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,34,93,2,1,38,64,124,5,0,1,36,100,105,118,91,100,97,116,97,45,104,111,111,107,61,34,99,99,115,117,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,34,93,2,1,124,112,21,205,0,1,44,100,105,118,91,100,97,116,97,45,106,115,45,105,100,61,34,67,111,111,107,105,101,83,101,116,116,105,110,103,115,78,111,116,105,102,105,99,97,116,105,111,110,34,93,2,1,89,57,60,45,0,1,30,100,105,118,91,100,97,116,97,45,110,97,109,101,61,34,67,111,111,107,105,101,67,111,110,115,101,110,116,34,93,2,3,143,163,68,236,146,43,189,186,148,149,139,75,0,1,46,100,105,118,91,100,97,116,97,45,114,110,119,114,55,48,48,45,49,109,111,104,50,51,116,45,101,49,107,50,105,110,45,116,99,101,105,116,122,61,34,116,114,117,101,34,93,2,1,192,241,163,74,0,1,27,100,105,118,91,100,97,116,97,45,115,101,99,116,105,111,110,61,34,99,111,111,107,105,101,115,34,93,2,1,38,6,191,53,0,1,41,100,105,118,91,100,97,116,97,45,115,116,111,114,97,103,101,45,105,116,101,109,94,61,34,116,56,56,55,99,111,111,107,105,101,110,97,109,101,95,34,93,2,1,84,217,159,132,0,1,33,100,105,118,91,100,97,116,97,45,116,97,103,61,34,99,111,111,107,105,101,45,100,105,115,99,108,111,115,117,114,101,34,93,2,1,96,53,173,135,0,1,39,100,105,118,91,100,97,116,97,45,116,101,115,116,45,105,100,61,34,67,111,111,107,105,101,45,80,111,108,105,99,121,66,97,110,110,101,114,34,93,2,1,89,172,217,162,0,1,32,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,2,5,23,10,210,133,55,176,118,52,133,21,215,113,145,223,198,69,194,178,66,155,0,1,34,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,100,108,45,99,111,111,107,105,101,66,97,110,110,101,114,34,93,2,1,125,144,199,24,0,1,38,100,105,118,91,115,116,121,108,101,42,61,34,45,45,84,111,97,115,116,101,114,45,105,110,100,105,99,97,116,111,114,67,111,108,111,114,34,93,2,1,142,14,98,194,0,1,64,100,105,118,91,115,116,121,108,101,42,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,32,116,111,112,58,32,48,112,120,59,32,119,105,100,116,104,58,32,49,48,48,37,59,34,93,2,1,243,93,248,68,0,1,50,100,105,118,91,115,116,121,108,101,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,40,50,52,48,44,32,50,52,48,44,32,50,52,48,41,59,34,93,2,7,18,109,163,165,26,204,193,127,56,90,164,108,57,35,137,105,98,188,168,19,127,98,111,188,166,213,37,209,0,1,97,100,105,118,91,115,116,121,108,101,61,34,98,97,99,107,103,114,111,117,110,100,58,35,101,101,100,59,112,97,100,100,105,110,103,58,49,48,112,120,59,109,97,114,103,105,110,58,48,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,52,52,54,34,93,2,1,43,123,146,215,0,1,128,0,0,0,233,100,105,118,91,115,116,121,108,101,61,34,105,110,115,101,116,58,32,48,112,120,59,32,119,105,100,116,104,58,32,49,48,48,37,59,32,104,101,105,103,104,116,58,32,49,48,48,37,59,32,98,111,120,45,115,105,122,105,110,103,58,32,98,111,114,100,101,114,45,98,111,120,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,116,111,117,99,104,45,97,99,116,105,111,110,58,32,110,111,110,101,59,32,112,97,100,100,105,110,103,58,32,50,48,112,120,59,32,122,45,105,110,100,101,120,58,32,49,48,59,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,32,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,32,114,111,119,59,32,103,97,112,58,32,50,48,112,120,59,32,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,32,99,101,110,116,101,114,59,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,97,108,108,59,34,93,2,1,86,161,182,218,0,1,128,0,0,0,181,100,105,118,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,32,119,105,100,116,104,58,32,49,48,48,37,59,32,112,97,100,100,105,110,103,58,32,50,48,112,120,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,56,41,59,32,99,111,108,111,114,58,32,114,103,98,40,50,53,53,44,32,50,53,53,44,32,50,53,53,41,59,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,32,122,45,105,110,100,101,120,58,32,57,57,57,57,59,34,93,2,1,121,139,116,178,0,1,64,100,105,118,91,115,116,121,108,101,94,61,34,97,108,105,103,110,45,105,116,101,109,115,58,32,98,97,115,101,108,105,110,101,59,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,40,53,51,44,32,53,51,44,32,53,51,41,34,93,2,1,148,199,190,101,0,1,38,100,105,118,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,70,70,57,53,57,53,34,93,2,1,55,109,79,10,0,1,35,100,105,118,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,58,32,35,52,50,52,50,52,50,59,32,34,93,2,1,141,197,204,15,0,1,41,100,105,118,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,58,32,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,34,93,2,1,57,78,202,190,0,1,37,100,105,118,91,115,116,121,108,101,94,61,34,98,111,114,100,101,114,58,32,50,112,120,32,115,111,108,105,100,32,98,108,117,101,59,34,93,2,1,129,84,247,139,0,1,40,100,105,118,91,115,116,121,108,101,94,61,34,99,111,108,111,114,58,32,114,103,98,40,50,51,56,44,32,50,51,56,44,32,50,51,56,41,59,34,93,2,1,113,90,237,167,0,1,51,100,105,118,91,115,116,121,108,101,94,61,34,104,101,105,103,104,116,58,50,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,70,65,70,70,68,67,59,34,93,2,1,55,109,79,10,0,1,37,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,34,93,2,4,69,110,254,185,119,146,191,236,145,21,151,162,145,171,18,112,0,1,54,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,32,98,111,116,116,111,109,58,32,48,112,120,59,34,93,2,1,20,15,89,250,0,1,51,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,32,116,111,112,58,32,48,112,120,59,34,93,2,4,129,251,31,131,141,168,183,131,191,206,55,87,233,181,104,67,0,1,79,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,32,98,111,116,116,111,109,58,32,48,112,120,59,32,112,97,100,100,105,110,103,58,32,49,54,112,120,32,51,50,112,120,59,34,93,2,1,185,89,191,118,0,1,46,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,122,45,105,110,100,101,120,58,32,49,48,48,48,48,59,34,93,2,1,105,248,238,46,0,1,30,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,34,93,2,1,66,44,100,148,0,1,43,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,34,93,2,1,32,227,13,157,0,1,41,100,105,118,91,115,116,121,108,101,94,61,34,119,105,100,116,104,58,32,49,48,48,37,59,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,34,93,2,1,101,164,167,255,0,1,37,100,105,118,91,115,116,121,108,101,94,61,34,119,105,100,116,104,58,32,51,56,48,112,120,59,109,97,120,45,119,105,100,116,104,58,34,93,2,1,209,110,30,239,0,1,26,100,105,118,91,115,116,121,108,101,94,61,34,122,45,105,110,100,101,120,58,32,57,57,57,34,93,2,1,127,3,67,255,0,1,21,100,111,99,107,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,2,1,41,23,111,131,0,1,17,100,111,99,115,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,237,65,127,176,0,1,17,102,105,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,107,172,203,120,0,1,6,102,111,111,116,101,114,2,1,191,53,9,16,0,1,128,0,0,0,138,102,111,111,116,101,114,32,43,32,100,105,118,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,32,116,111,112,58,32,48,112,120,59,32,119,105,100,116,104,58,32,49,48,48,37,59,32,104,101,105,103,104,116,58,32,49,48,48,37,59,32,122,45,105,110,100,101,120,58,32,57,57,57,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,51,41,59,34,93,2,1,95,66,221,184,0,1,16,103,99,45,97,99,99,101,112,116,45,99,111,111,107,105,101,2,1,111,197,116,98,0,1,19,103,99,111,114,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,126,247,184,36,0,1,22,103,99,111,114,101,45,99,111,111,107,105,101,115,45,115,101,116,116,105,110,103,115,2,1,126,247,184,36,0,1,17,103,115,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,171,113,55,96,0,1,14,104,101,97,100,101,114,32,62,32,46,103,100,112,114,2,1,193,113,84,60,0,1,15,105,110,103,119,98,45,99,111,111,107,105,101,98,97,114,2,1,127,27,206,45,0,1,18,108,101,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,2,1,213,58,190,119,0,1,18,109,102,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,2,1,53,189,98,62,0,1,17,109,105,111,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,26,233,216,108,0,1,25,109,112,45,115,110,97,99,107,98,97,114,45,105,110,102,111,45,109,101,115,115,97,103,101,115,2,1,14,143,66,253,0,1,16,109,118,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,19,82,127,127,0,1,17,110,107,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,46,179,236,82,0,1,18,110,111,116,105,102,105,99,97,116,105,111,110,45,98,108,111,99,107,2,1,107,227,30,38,0,1,19,110,111,116,105,102,105,99,97,116,105,111,110,45,102,111,111,116,101,114,2,1,242,122,96,56,0,1,21,112,97,120,100,101,105,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,127,60,55,189,0,1,56,115,104,114,101,100,100,105,116,45,97,115,121,110,99,45,108,111,97,100,101,114,91,98,117,110,100,108,101,110,97,109,101,61,34,114,101,100,100,105,116,95,99,111,111,107,105,101,95,98,97,110,110,101,114,34,93,2,2,34,213,210,243,142,14,98,194,0,1,22,115,104,114,101,100,100,105,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,142,14,98,194,0,1,18,115,109,112,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,155,137,19,239,0,1,26,115,112,97,110,32,62,32,46,109,97,120,45,119,45,109,100,46,115,104,97,100,111,119,45,108,103,2,1,150,195,125,111,0,1,18,119,99,115,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,2,19,110,79,10,38,130,205,250,0,1,12,119,101,98,45,115,110,97,99,107,98,97,114,2,1,222,234,123,134,0,1,32,100,105,118,91,100,97,116,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,93,2,3,14,134,7,126,33,152,17,36,33,234,135,136,0,1,40,100,105,118,91,100,97,116,97,45,113,97,61,34,103,114,97,110,117,108,97,114,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,34,93,2,1,157,26,51,3,0,1,35,100,105,118,91,100,97,116,97,45,113,97,61,34,106,101,116,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,34,93,2,1,234,58,17,4,0,1,31,100,105,118,91,100,97,116,97,45,113,97,61,34,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,34,93,2,7,6,155,129,254,36,120,89,249,86,13,245,117,141,100,242,179,161,57,203,135,172,10,12,165,174,132,115,176,8,1,20,46,112,111,112,117,112,45,45,110,111,116,105,102,105,99,97,116,105,111,110,1,1,21,186,58,108,8,1,21,46,111,118,101,114,108,97,121,45,103,100,112,114,45,99,111,110,115,101,110,116,2,2,38,156,255,211,168,80,91,114,8,1,16,46,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,2,2,38,156,255,211,168,80,91,114,8,1,13,46,70,111,111,116,101,114,80,111,112,117,112,115,2,3,83,33,11,166,154,89,152,134,156,25,156,155,16,1,16,35,119,114,97,112,112,101,114,45,100,120,45,99,111,107,105,2,8,38,44,36,68,103,238,58,249,148,104,92,154,174,193,230,21,182,121,193,41,182,225,250,100,191,221,10,29,204,25,152,235,0,1,22,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,95,95,34,93,2,4,40,217,150,142,88,247,105,121,105,110,46,163,238,186,44,45,8,1,12,46,97,100,110,45,109,101,115,115,97,103,101,2,11,31,43,76,135,51,205,221,219,83,111,0,229,89,58,249,109,91,166,123,28,112,244,157,192,136,89,173,104,142,75,167,68,165,39,55,235,168,226,105,56,202,188,92,43,16,1,21,35,95,95,116,101,97,108,105,117,109,71,68,80,82,99,112,80,114,101,102,115,2,1,168,88,13,198,16,1,14,35,99,111,111,107,105,101,45,112,111,108,105,99,121,2,4,104,232,242,202,118,143,25,133,139,19,75,34,154,250,51,38,8,1,28,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,99,111,110,116,97,105,110,101,114,2,3,110,131,204,219,242,231,20,251,246,53,211,16,8,1,15,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,5,2,84,19,107,80,204,34,80,121,45,165,12,162,5,124,219,162,221,193,166,8,1,14,46,99,111,111,107,105,101,45,97,99,99,101,112,116,2,1,84,1,227,143,16,1,15,35,99,111,110,115,101,110,116,77,97,110,97,103,101,114,2,2,193,193,244,206,247,84,198,23,16,1,13,35,99,111,111,107,105,101,45,109,111,100,97,108,2,5,9,19,50,11,23,42,34,178,66,69,126,108,118,24,215,4,201,118,0,69,16,1,5,35,99,107,110,116,2,3,20,240,92,18,41,93,80,99,172,245,100,52,8,1,25,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,2,3,197,193,18,75,232,242,233,134,234,228,251,112,8,1,12,46,119,112,99,98,45,98,97,110,110,101,114,2,5,61,0,55,25,78,17,87,33,122,61,216,211,135,59,133,24,216,238,24,144,8,1,15,46,119,112,99,98,45,99,111,110,116,97,105,110,101,114,2,12,55,75,109,94,64,16,36,205,72,97,200,54,96,166,47,168,125,236,86,123,132,189,240,75,142,143,40,236,162,47,97,66,173,225,224,253,186,38,216,55,229,209,185,254,241,143,32,44,8,1,15,46,111,114,101,106,105,109,101,45,78,111,116,105,99,101,2,6,4,161,223,116,140,94,169,104,143,96,247,122,153,67,142,254,227,116,151,87,242,81,97,77,8,1,18,46,99,99,45,119,105,110,100,111,119,45,119,114,97,112,112,101,114,2,5,13,77,51,23,46,41,180,145,46,218,156,51,132,54,192,25,170,110,185,241,8,1,12,46,99,115,45,105,110,102,111,45,98,97,114,2,2,80,126,68,54,148,254,253,89,16,1,9,35,103,100,112,114,77,97,115,107,2,6,48,217,183,89,110,21,196,182,117,45,98,107,158,248,80,33,191,31,182,47,219,197,157,190,8,1,16,46,115,119,97,108,50,45,99,111,110,116,97,105,110,101,114,2,3,74,58,224,186,203,65,28,200,236,153,76,70,8,1,13,46,99,99,45,99,111,110,116,97,105,110,101,114,2,11,28,72,5,177,44,200,73,141,76,236,253,182,114,73,98,139,136,172,60,55,139,33,14,172,142,11,84,23,148,196,114,113,153,216,251,156,197,167,133,234,206,207,207,164,16,1,13,35,99,99,45,99,111,110,116,97,105,110,101,114,2,3,9,168,4,16,17,179,36,86,218,98,254,122,8,1,14,46,109,111,100,97,108,45,119,114,97,112,112,101,114,2,6,36,34,110,140,45,224,129,40,71,43,27,64,131,11,140,21,187,66,7,24,226,170,110,0,8,1,5,46,105,110,102,111,2,4,5,62,93,45,16,67,10,151,69,166,52,92,71,90,46,110,16,1,11,35,99,111,111,107,105,101,78,111,116,101,2,43,3,204,68,108,8,173,90,48,16,196,37,184,21,117,25,45,24,84,141,203,32,171,79,124,36,31,9,223,38,4,205,96,38,208,99,188,42,238,16,110,43,108,212,0,48,117,134,30,50,151,251,172,51,55,110,246,61,230,104,252,67,187,216,224,72,181,242,134,73,118,62,192,83,2,6,169,86,44,62,123,90,106,200,195,121,25,198,84,123,239,40,118,125,167,31,121,133,177,213,1,144,204,164,154,156,50,253,62,159,218,187,72,170,71,34,138,172,137,235,95,176,10,184,171,184,194,124,156,186,196,54,13,197,250,137,106,207,10,103,33,212,184,58,156,214,154,155,225,217,113,219,159,224,139,11,227,238,49,31,160,238,236,127,61,247,144,254,75,248,150,23,179,8,1,20,46,97,99,116,105,118,101,98,97,114,45,99,111,110,116,97,105,110,101,114,2,13,22,53,195,64,26,116,174,172,57,241,236,245,69,150,134,22,116,112,38,8,129,41,254,113,157,105,83,193,169,5,243,3,176,87,237,162,202,88,166,123,237,82,26,144,237,165,226,207,250,229,69,237,8,1,21,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,97,108,101,114,116,2,4,30,101,87,140,133,135,142,164,188,122,23,26,253,67,94,34,16,1,13,35,99,111,111,107,105,101,80,111,108,105,99,121,2,8,27,139,72,174,61,75,212,43,76,3,225,165,110,4,1,125,148,156,254,61,177,197,55,217,204,5,81,4,211,181,10,240,8,1,15,46,99,117,115,116,111,109,45,99,111,110,115,101,110,116,2,4,5,196,102,244,67,74,18,235,121,71,239,210,146,207,226,233,0,1,26,99,111,110,115,101,110,116,45,115,108,105,100,101,45,105,110,45,99,111,109,112,111,110,101,110,116,2,8,10,200,112,46,36,103,210,226,58,137,65,166,79,73,97,96,95,150,153,112,164,130,118,239,237,246,204,214,239,244,132,208,8,1,35,46,67,111,111,107,105,101,115,66,97,110,110,101,114,95,80,111,115,116,105,111,110,66,97,110,110,101,114,95,95,89,104,95,68,109,2,2,192,206,117,195,218,227,119,5,8,1,17,46,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,2,5,85,78,170,146,85,166,79,218,209,102,82,185,209,228,241,79,236,188,4,49,16,1,13,35,98,105,115,99,117,105,116,77,111,100,97,108,2,5,28,106,222,26,142,225,92,63,152,47,71,199,218,137,134,86,225,70,72,218,8,1,12,46,100,105,115,95,109,101,115,115,97,103,101,2,4,39,218,74,246,141,100,71,132,143,50,101,214,214,145,226,233,16,1,9,35,104,101,97,100,98,97,110,100,2,3,193,176,133,42,241,211,9,42,251,67,238,23,0,1,25,91,99,108,97,115,115,94,61,34,80,114,105,118,97,99,121,66,97,110,110,101,114,95,34,93,2,2,81,60,83,123,162,68,62,199,16,1,17,35,112,97,110,100,101,99,116,101,115,45,98,97,110,110,101,114,2,2,142,25,131,155,240,32,40,253,16,1,19,35,99,111,111,107,105,101,115,95,97,99,99,101,112,116,97,110,99,101,2,8,6,230,146,243,7,170,1,187,78,181,192,212,111,239,221,75,122,134,17,41,151,127,214,123,204,206,32,114,221,96,238,93,8,1,12,46,99,111,110,115,101,110,116,45,98,111,120,2,3,108,228,233,249,157,117,182,177,250,97,243,142,0,1,28,91,99,108,97,115,115,94,61,34,115,116,121,108,101,95,99,111,110,116,97,105,110,101,114,95,95,34,93,2,2,54,252,124,217,109,167,225,27,8,1,17,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,2,7,14,87,214,189,36,92,59,174,51,172,9,65,54,153,208,157,112,242,246,75,116,150,30,57,139,237,47,84,8,1,10,46,99,111,111,107,105,101,102,111,120,2,2,39,204,83,167,113,45,50,42,8,1,12,46,118,119,111,45,111,118,101,114,108,97,121,2,10,5,209,161,237,38,157,71,211,76,238,30,115,130,199,53,13,159,83,84,1,161,155,35,180,225,108,232,179,244,50,44,106,245,78,224,178,248,18,6,117,8,1,17,46,117,115,110,45,110,111,116,105,102,105,99,97,116,105,111,110,2,10,0,231,210,116,5,201,85,229,19,222,60,75,67,11,196,202,102,22,255,46,108,157,189,197,160,19,68,230,166,80,94,56,173,245,100,38,246,19,132,153,16,1,6,35,109,111,100,97,108,2,5,11,158,244,216,99,91,3,170,170,132,132,78,195,109,25,50,222,117,252,53,0,1,26,91,99,108,97,115,115,94,61,34,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,34,93,2,3,16,250,211,118,190,146,226,135,250,185,41,202,8,1,17,46,118,45,115,110,97,99,107,95,95,119,114,97,112,112,101,114,2,5,35,51,31,89,58,145,83,202,80,187,82,197,86,225,59,163,229,106,172,252,8,1,23,46,70,101,97,116,117,114,101,66,97,114,95,114,111,111,116,95,95,95,73,78,85,56,2,3,45,78,253,97,46,21,124,114,138,220,24,53,8,1,10,46,118,45,111,118,101,114,108,97,121,2,10,10,216,9,153,35,98,234,55,37,208,250,121,51,231,178,180,95,199,82,125,106,197,71,204,201,193,190,25,225,17,159,206,227,143,64,119,231,246,76,113,8,1,22,46,99,107,121,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,2,5,5,72,83,205,31,121,36,114,80,209,200,20,187,154,107,68,234,205,137,145,0,1,18,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,95,34,93,2,2,148,134,24,141,175,8,224,165,8,1,16,46,99,111,111,107,105,101,49,50,51,45,112,111,112,117,112,2,8,24,221,220,247,36,202,206,31,47,219,140,113,52,38,77,162,76,127,192,29,81,180,72,70,204,3,191,139,254,228,94,41,8,1,27,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,45,99,111,110,116,97,105,110,101,114,2,2,24,237,102,159,207,56,231,142,16,1,10,35,112,111,112,117,112,68,105,118,67,2,4,8,132,31,8,166,254,172,110,173,170,142,40,181,188,193,97,8,1,15,46,112,111,112,117,112,45,45,99,111,111,107,105,101,115,2,2,58,99,205,45,115,245,94,227,8,1,8,46,119,114,97,112,112,101,114,2,8,2,108,227,75,20,233,95,13,57,221,16,226,69,51,217,147,82,222,63,78,88,106,188,208,146,27,192,97,209,16,178,75,16,1,7,35,110,111,116,105,99,101,2,8,15,98,97,22,48,170,197,178,110,108,110,215,119,214,213,52,173,137,140,236,202,66,200,136,202,207,169,3,241,170,80,97,8,1,14,46,112,97,110,101,108,45,45,99,111,111,107,105,101,2,1,171,190,232,8,16,1,9,35,112,111,112,117,112,68,105,118,2,6,16,32,221,251,24,194,7,191,157,59,79,63,175,36,92,223,185,125,46,162,230,175,75,34,16,1,4,35,101,112,100,2,6,88,107,90,97,92,171,210,132,115,249,249,8,140,2,115,139,154,237,173,53,177,66,75,62,16,1,5,35,99,98,97,114,2,9,8,113,205,150,20,232,163,71,141,60,62,254,164,1,172,251,184,91,190,51,220,180,56,148,224,210,99,186,241,162,47,162,244,143,251,224,0,1,23,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,98,97,114,34,93,2,2,214,179,141,95,229,188,4,179,8,1,29,46,109,115,116,45,103,100,112,114,95,95,99,111,111,107,105,101,45,98,97,114,45,111,118,101,114,108,97,121,2,1,13,151,78,60,0,1,25,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,115,45,98,97,110,110,101,114,34,93,2,5,97,227,164,57,111,217,30,137,172,20,41,250,199,198,239,249,244,157,48,11,8,1,20,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,2,5,135,125,45,250,151,35,248,7,191,175,178,2,200,67,59,136,212,126,225,55,16,1,15,35,99,111,111,107,105,101,83,101,116,116,105,110,103,115,2,2,176,255,70,46,198,222,213,239,16,1,16,35,99,111,111,107,105,101,109,97,110,45,109,111,100,97,108,2,12,12,244,95,217,27,103,134,49,32,252,107,25,81,145,108,213,151,109,117,165,166,60,238,192,204,98,39,29,214,198,39,122,220,239,177,84,231,106,154,193,242,231,138,80,246,118,244,109,8,1,13,46,67,111,111,107,105,101,68,105,97,108,111,103,2,4,115,39,144,119,131,161,215,189,155,24,33,20,190,148,10,25,16,1,22,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,100,105,97,108,111,103,2,2,105,198,22,135,137,129,123,130,16,1,20,35,112,114,105,118,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,2,3,18,12,73,141,115,178,22,27,247,131,215,173,8,1,21,46,109,101,115,115,97,103,101,45,102,111,111,116,101,114,45,112,97,110,101,108,2,12,32,78,69,61,46,242,191,230,61,145,236,150,74,52,22,34,87,133,91,131,110,44,155,44,152,175,231,207,159,166,253,35,212,255,231,210,220,151,165,234,230,180,199,213,253,24,132,122,8,1,13,46,102,105,120,101,100,45,98,111,116,116,111,109,2,32,3,26,94,17,13,16,199,213,34,207,183,15,38,157,62,30,56,53,88,169,64,174,101,192,69,10,57,95,69,121,104,215,78,122,253,174,89,56,251,17,90,8,194,182,90,52,120,177,91,134,115,61,93,255,31,232,98,103,206,166,108,91,47,165,109,123,171,194,115,189,12,104,125,54,189,169,125,195,7,193,127,46,50,83,129,124,47,186,141,145,184,230,149,73,208,87,157,93,159,254,174,199,50,155,180,140,197,131,195,211,21,218,210,28,238,78,213,15,78,104,224,121,210,67,230,221,60,97,8,1,20,46,110,97,118,98,97,114,45,102,105,120,101,100,45,98,111,116,116,111,109,2,7,5,13,222,225,19,65,122,92,116,87,179,127,159,194,245,172,163,28,253,186,189,249,174,58,249,208,255,15,8,1,7,46,98,97,110,110,101,114,2,33,4,188,171,232,11,224,65,169,16,10,222,151,19,135,128,67,43,106,38,97,49,214,95,181,54,120,194,226,62,31,171,218,64,51,16,63,72,91,185,93,74,197,133,105,74,254,173,207,82,68,143,172,102,132,9,0,107,113,102,15,112,104,103,231,113,74,18,94,117,211,112,90,121,127,224,191,122,221,94,16,124,206,112,235,135,37,223,89,151,228,7,239,154,105,64,21,159,74,65,14,180,186,171,182,198,123,128,164,201,40,177,238,222,215,91,87,223,205,157,14,224,83,67,55,245,127,81,202,246,52,11,154,8,1,7,46,110,111,116,105,99,101,2,32,12,209,145,157,16,89,12,43,22,113,126,44,35,234,34,69,37,7,210,52,38,152,47,150,42,69,9,48,55,165,125,193,103,100,48,168,117,114,255,9,125,254,149,211,126,247,162,201,137,238,46,160,144,187,38,143,146,233,79,238,147,37,163,44,148,180,17,147,151,66,192,38,154,45,37,118,163,142,97,91,170,94,208,15,172,116,198,120,179,177,119,214,199,147,189,40,205,178,121,114,206,131,54,197,217,100,109,32,218,135,113,160,238,162,195,241,243,168,91,161,251,109,34,16,252,32,47,53,0,1,22,91,99,108,97,115,115,94,61,34,71,68,80,82,67,111,110,115,101,110,116,34,93,2,5,37,108,190,19,59,85,235,96,116,176,55,219,199,211,96,150,205,174,84,199,8,1,14,46,109,111,100,97,108,45,111,118,101,114,108,97,121,2,11,16,45,37,234,43,207,196,35,46,238,187,49,51,178,83,250,92,171,129,255,129,187,117,59,133,230,178,153,158,237,221,164,202,44,217,138,210,20,91,104,250,241,235,23,8,1,15,46,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,64,154,179,20,8,1,3,46,99,99,2,5,26,99,85,127,27,119,9,8,114,242,218,127,190,245,94,221,242,231,143,37,16,1,7,35,99,99,95,100,105,118,2,10,13,149,53,1,61,201,88,84,75,18,246,11,88,107,228,193,141,217,202,105,147,195,153,241,168,26,235,138,200,164,79,162,205,17,67,231,248,88,254,221,8,1,7,46,99,99,95,100,105,118,2,5,7,97,12,219,40,25,116,218,40,117,185,35,55,31,210,155,208,79,83,207,8,1,14,46,117,45,98,111,116,116,111,109,70,105,120,101,114,2,13,44,0,245,247,56,213,157,76,66,149,187,171,77,148,5,61,88,122,250,20,91,42,56,37,128,111,206,95,135,107,145,58,167,48,186,226,168,178,32,177,178,60,221,4,212,163,218,57,251,119,155,226,8,1,19,46,106,115,45,98,111,116,116,111,109,70,105,120,84,97,114,103,101,116,2,1,206,220,191,169,0,1,20,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,111,120,34,93,2,2,163,86,225,189,229,28,167,217,8,1,15,46,109,111,100,97,108,45,99,111,110,115,101,110,116,115,2,11,11,36,193,8,17,208,32,157,18,179,233,245,45,74,45,177,82,178,228,175,83,143,98,173,117,87,241,204,156,114,247,45,195,59,149,180,213,213,21,137,247,19,184,162,8,1,15,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,2,24,7,20,17,67,9,210,152,55,16,184,109,201,26,84,75,233,34,27,254,115,41,90,10,140,60,174,174,9,60,222,168,61,65,242,173,92,85,53,243,164,98,126,69,224,113,132,131,72,120,32,255,244,156,8,247,228,166,205,82,92,177,236,240,63,182,214,221,220,202,200,15,118,218,4,36,138,223,153,164,82,226,173,59,14,231,113,55,216,246,255,165,60,250,203,221,78,8,1,9,46,99,110,45,108,97,121,101,114,2,2,60,148,209,24,99,251,166,157,8,1,8,46,99,111,110,115,101,110,116,2,30,19,59,234,13,20,107,229,225,27,103,136,217,31,60,18,241,38,244,191,147,47,104,163,20,47,151,171,226,51,103,125,230,77,0,160,135,100,49,34,16,101,81,2,29,105,30,59,238,110,207,116,3,119,37,231,149,121,193,75,19,127,88,106,24,128,91,78,0,128,192,164,209,136,101,79,212,142,199,222,180,162,98,52,53,175,159,193,117,177,79,5,194,196,113,130,167,202,187,67,151,205,245,28,49,211,170,39,143,213,50,189,174,242,47,161,208,247,76,201,190,8,1,16,46,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,2,30,3,250,242,100,7,254,4,35,16,100,174,148,28,112,9,223,52,192,42,230,55,132,18,231,60,125,63,152,82,97,20,86,93,148,124,140,103,224,76,201,110,222,250,124,114,30,8,105,121,152,87,72,121,192,21,175,123,139,212,140,128,180,17,174,145,227,9,15,160,236,247,188,162,153,70,20,167,35,25,106,177,38,206,241,188,31,251,251,194,99,130,191,200,82,125,203,202,187,67,151,219,166,204,5,226,211,194,173,248,146,22,187,250,97,243,142,251,128,184,247,8,1,9,46,99,111,110,115,101,110,116,115,2,21,17,166,115,206,38,91,110,116,47,227,199,155,57,112,6,4,70,41,58,116,77,9,132,166,82,200,51,145,142,121,119,87,145,73,7,190,152,188,44,8,164,188,110,65,167,108,168,177,171,219,66,106,189,107,234,239,193,18,36,28,209,165,67,218,221,181,68,21,233,144,80,236,234,80,108,140,244,59,160,111,244,238,74,194,16,1,8,35,99,111,110,115,101,110,116,2,49,3,183,199,143,3,188,133,153,6,222,161,65,8,238,204,232,10,155,43,83,14,23,120,202,15,175,119,39,24,234,251,69,25,160,176,155,41,180,241,247,45,195,111,77,47,44,15,162,54,155,161,183,63,207,54,206,66,106,54,29,77,233,3,196,93,12,234,53,115,193,66,38,121,32,57,100,126,199,49,163,128,202,200,53,129,73,183,242,131,212,215,226,132,58,57,58,139,105,226,243,140,182,161,118,144,84,155,115,151,66,54,86,161,15,40,233,161,68,79,143,163,146,103,168,164,149,38,254,166,203,165,243,194,197,252,190,199,211,172,32,200,49,150,152,200,134,34,27,202,177,53,110,209,103,153,54,220,75,92,206,221,255,79,2,222,161,101,156,227,135,75,197,228,104,231,236,229,62,221,48,230,1,204,10,239,135,241,128,239,170,16,54,250,34,254,32,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,115,66,97,110,110,101,114,34,93,2,2,64,28,48,186,96,237,191,101,8,1,14,46,99,108,105,45,98,97,114,45,112,111,112,117,112,2,3,99,225,121,104,131,241,175,64,216,100,239,116,8,1,19,46,99,107,121,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,4,86,127,242,230,112,23,133,175,127,55,175,129,185,55,222,121,0,1,23,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,77,111,100,97,108,34,93,2,3,67,62,112,43,102,141,140,254,176,53,71,215,16,1,22,35,99,111,111,107,105,101,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,2,4,29,133,39,70,48,118,4,232,135,45,173,119,198,169,7,87,8,1,5,46,108,116,99,110,2,11,17,232,14,233,19,132,167,28,28,227,234,184,44,237,107,67,59,13,188,215,61,137,201,166,68,65,75,121,95,140,181,227,118,40,166,17,227,226,81,215,237,39,212,52,16,1,8,35,67,111,110,115,101,110,116,2,3,6,178,146,140,47,235,172,15,221,3,152,132,16,1,11,35,99,99,45,119,114,97,112,112,101,114,2,2,125,214,166,66,174,116,44,233,8,1,10,46,99,99,95,100,105,97,108,111,103,2,3,52,89,196,199,79,225,91,18,185,174,147,209,8,1,10,46,99,99,45,103,114,111,119,101,114,2,3,31,170,153,35,56,41,250,94,236,224,234,251,8,1,3,46,99,98,2,6,7,175,18,112,27,15,27,34,48,139,77,42,57,83,239,207,168,120,201,223,170,40,196,255,8,1,3,46,67,65,2,12,6,149,9,80,30,215,13,4,116,43,239,253,123,198,111,110,154,23,131,163,176,34,116,232,180,193,251,1,194,89,121,174,201,62,219,103,207,9,75,106,241,147,114,21,254,129,227,198,8,1,12,46,99,111,111,107,105,101,45,116,101,120,116,2,8,0,10,249,144,3,189,69,89,53,171,12,254,87,210,226,48,137,75,102,221,140,171,80,217,197,39,59,107,255,180,139,107,8,1,11,46,99,98,45,111,118,101,114,108,97,121,2,3,75,116,222,201,95,217,234,79,212,229,25,109,8,1,15,46,106,115,70,105,120,101,100,77,101,115,115,97,103,101,2,5,59,206,214,184,121,67,249,242,148,192,243,243,165,89,74,78,192,241,17,36,16,1,12,35,99,98,111,120,79,118,101,114,108,97,121,2,23,20,225,169,195,38,157,171,200,41,61,122,221,44,97,55,227,46,25,235,45,64,186,148,104,85,173,28,250,92,252,1,181,96,252,211,147,98,111,31,189,126,23,191,49,128,70,215,128,136,20,49,237,166,169,2,60,175,158,96,88,181,60,106,118,185,188,255,221,190,49,132,35,208,203,45,112,218,243,154,69,231,195,254,2,232,138,78,169,237,69,251,149,16,1,12,35,99,98,111,120,87,114,97,112,112,101,114,2,1,237,69,251,149,16,1,9,35,99,111,108,111,114,98,111,120,2,15,20,225,169,195,64,186,148,104,85,173,28,250,98,111,31,189,111,215,10,68,126,23,191,49,128,70,215,128,136,20,49,237,166,169,2,60,175,158,96,88,181,60,106,118,190,49,132,35,218,243,154,69,231,195,254,2,232,138,78,169,8,1,18,46,99,111,111,107,105,101,115,45,99,111,109,112,111,110,101,110,116,2,2,90,223,189,223,118,127,94,182,16,1,8,35,99,99,45,109,97,105,110,2,16,5,142,150,75,56,115,147,77,78,196,137,218,84,102,86,139,105,8,96,111,109,59,32,6,122,58,44,173,125,26,7,62,126,219,156,118,170,15,110,5,223,216,15,140,234,100,219,149,240,118,17,212,240,245,162,151,244,99,21,19,255,56,100,79,16,1,9,35,99,99,45,45,109,97,105,110,2,29,10,183,32,174,13,149,53,1,16,212,38,214,20,152,103,56,27,10,180,6,36,52,2,76,38,157,150,108,41,158,61,49,45,205,45,75,74,192,173,133,82,67,90,51,117,250,195,8,129,231,66,126,133,86,97,179,138,124,17,186,139,61,132,237,144,185,201,213,148,179,239,177,148,184,164,151,158,182,174,57,163,109,88,182,180,130,2,23,182,161,61,68,212,21,101,104,212,223,85,60,219,1,48,158,235,214,36,185,237,80,119,5,242,21,21,142,8,1,8,46,99,45,45,97,110,105,109,2,73,0,213,81,29,2,62,108,187,5,142,150,75,15,111,181,180,20,18,27,35,21,101,65,187,34,192,231,134,36,90,52,145,38,165,78,176,38,181,53,134,40,105,3,216,42,101,128,213,42,215,111,39,45,194,218,20,51,60,252,172,55,242,243,237,59,28,219,212,61,219,34,47,71,205,10,103,72,113,80,50,74,156,32,118,82,160,84,130,87,70,77,58,87,118,245,111,91,69,92,138,96,124,106,209,101,177,12,254,103,182,9,32,107,175,149,50,107,209,91,150,113,232,152,185,114,65,205,151,120,221,44,39,122,4,78,75,123,39,100,253,126,82,132,23,130,205,74,1,136,253,129,1,142,220,26,99,144,40,72,177,144,190,5,58,145,174,228,215,147,183,217,93,152,5,5,64,159,71,200,105,160,164,11,236,167,217,4,5,178,78,217,77,183,11,221,186,184,54,253,127,184,193,233,48,185,89,33,38,186,25,99,107,186,241,63,240,189,161,91,145,189,214,190,85,195,89,156,190,200,38,79,99,205,155,20,207,209,42,31,9,210,89,69,10,217,207,185,180,220,222,147,178,227,58,229,169,229,178,245,90,229,205,144,181,235,7,205,20,241,11,143,154,241,237,156,98,244,154,61,65,248,134,46,48,251,219,36,240,252,181,75,1,16,1,5,35,119,114,45,99,2,13,0,213,131,14,6,166,10,222,30,220,237,18,35,189,167,95,49,113,31,206,80,41,3,79,97,44,133,133,124,3,206,245,126,100,189,7,158,48,11,20,200,139,61,123,200,201,130,200,238,113,49,27,8,1,5,46,103,100,112,114,2,5,23,85,115,55,35,122,2,35,214,167,228,129,217,29,77,150,231,45,219,204,8,1,13,46,103,100,112,114,45,119,114,97,112,112,101,114,2,2,128,135,132,250,202,213,127,54,16,1,5,35,71,68,80,82,2,7,25,236,135,104,35,180,221,40,37,20,37,125,115,67,162,247,116,81,58,70,135,247,175,198,225,124,250,181,8,1,6,46,122,45,57,57,57,2,1,29,195,25,127,8,1,6,46,122,45,49,48,48,2,4,133,168,55,156,184,9,174,201,216,244,45,198,230,99,178,240,8,1,11,46,99,111,111,107,105,101,45,98,97,114,2,4,17,137,129,218,29,237,31,145,52,105,183,133,173,218,86,249,16,1,23,35,119,115,95,101,117,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,26,1,160,59,13,17,225,79,81,20,7,122,70,27,101,249,192,29,163,231,147,40,130,133,111,42,115,103,40,67,246,250,7,106,55,143,27,109,180,90,165,116,66,198,61,120,224,175,33,121,116,45,33,124,34,147,143,124,208,66,136,127,92,87,75,159,250,177,56,166,132,77,31,179,25,201,204,209,91,179,175,212,144,97,253,212,175,180,151,220,106,1,95,225,180,85,52,230,69,102,130,240,93,141,202,16,1,10,35,98,97,110,101,114,82,111,111,116,2,3,55,161,106,50,66,118,32,44,70,89,144,220,8,1,14,46,108,101,103,97,108,45,99,111,110,115,101,110,116,2,5,85,62,174,188,103,78,117,11,116,33,0,108,158,93,1,172,197,50,192,157,16,1,15,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,4,29,131,69,137,47,78,101,158,64,192,122,217,193,250,134,170,8,1,18,46,95,118,45,113,115,54,89,53,104,84,88,77,109,70,116,56,55,2,17,21,11,198,4,27,125,67,3,33,6,53,135,44,56,70,45,45,152,135,12,45,174,182,219,94,92,37,19,116,100,168,119,127,100,178,135,147,186,160,99,152,50,174,101,173,106,122,3,180,161,181,155,186,112,20,111,190,189,215,119,205,54,76,136,211,234,89,241,8,1,13,46,98,103,45,103,114,101,101,110,45,50,48,48,2,4,64,234,33,24,81,151,74,140,87,122,134,155,88,190,164,35,8,1,7,46,101,67,115,118,100,98,2,5,16,131,225,137,33,70,253,191,79,145,219,42,205,152,233,49,231,122,87,192,16,1,21,35,98,108,97,99,107,45,98,97,110,100,45,99,111,110,116,97,105,110,101,114,2,8,17,172,197,11,65,60,189,243,72,65,1,125,103,111,195,55,112,75,192,116,162,49,222,46,168,244,164,72,181,8,8,119,16,1,16,35,97,100,100,105,116,105,111,110,97,108,73,110,102,111,101,2,18,15,213,126,73,45,24,249,235,50,52,55,92,62,172,12,166,66,64,78,8,90,29,181,120,134,16,172,40,139,196,128,246,169,72,10,126,170,15,0,97,180,101,152,162,190,124,217,239,199,119,112,15,215,241,137,42,230,99,138,190,240,208,123,109,248,69,173,129,254,36,46,144,0,1,27,91,99,108,97,115,115,42,61,34,67,111,111,107,105,101,66,97,110,110,101,114,80,114,111,95,34,93,2,6,8,148,176,152,112,188,197,38,128,66,223,6,139,146,255,47,187,69,210,76,214,3,150,174,0,1,23,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,97,114,34,93,2,8,52,136,203,215,57,243,139,63,81,225,169,149,100,200,208,36,147,151,252,221,190,137,73,163,205,12,66,208,214,45,244,217,8,1,13,46,99,111,111,107,105,101,45,99,104,101,99,107,2,4,29,90,252,78,91,179,32,117,91,179,83,156,148,182,34,205,8,1,10,46,99,99,45,119,105,110,100,111,119,2,17,3,97,197,234,4,30,137,33,16,62,50,211,58,36,255,78,65,41,25,79,66,1,170,71,78,211,68,138,94,39,122,189,97,216,253,172,110,57,44,120,118,35,176,173,122,46,213,115,165,163,255,179,230,213,217,162,242,76,228,226,250,123,233,86,252,223,37,224,8,1,6,46,112,111,112,117,112,2,20,2,16,46,53,53,131,190,195,62,137,241,33,78,52,73,43,91,74,45,171,103,152,1,24,126,245,158,71,131,168,35,159,134,153,93,38,151,139,102,135,153,218,105,228,159,124,171,99,185,218,119,245,193,89,212,109,201,236,108,163,202,224,206,196,220,166,218,58,227,148,144,98,237,167,104,172,238,41,128,12,8,1,16,46,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,8,33,240,142,65,143,38,91,14,169,69,162,72,179,143,214,242,194,197,253,248,202,37,36,199,208,65,171,124,250,27,16,208,8,1,14,46,112,111,112,117,112,45,119,114,97,112,112,101,114,2,6,14,189,90,148,23,37,77,197,93,196,146,15,141,76,84,12,144,101,152,153,193,246,84,38,8,1,14,46,112,111,112,117,112,45,111,118,101,114,108,97,121,2,8,39,134,177,197,61,57,173,154,92,213,56,255,108,5,219,58,152,219,210,49,158,44,230,135,204,255,57,143,231,222,124,227,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,80,114,105,118,97,99,121,80,111,108,105,99,121,34,93,2,8,47,200,135,230,51,82,25,105,53,10,16,63,105,214,221,164,137,238,238,36,154,145,62,214,240,244,29,40,242,210,74,133,8,1,13,46,109,111,100,97,108,45,100,105,97,108,111,103,2,5,1,255,153,137,28,214,43,244,153,6,214,1,252,19,8,146,255,58,130,73,8,1,24,46,110,111,116,105,102,105,99,97,116,105,111,110,66,97,114,115,87,114,97,112,112,101,114,2,2,45,157,219,95,155,139,105,250,8,1,17,46,110,111,116,105,102,105,99,97,116,105,111,110,66,97,114,115,2,31,6,122,150,226,6,123,102,140,20,156,148,197,24,137,71,43,25,69,65,148,52,183,126,233,58,66,36,183,60,39,241,81,68,182,156,142,87,233,210,14,90,177,195,186,93,236,180,182,99,169,9,193,116,84,143,170,124,166,79,192,149,58,232,161,150,111,244,102,155,236,63,231,159,53,212,136,160,67,136,97,166,127,39,211,169,207,213,238,170,90,100,152,174,224,81,198,182,37,204,103,188,78,50,36,192,62,145,17,196,173,199,111,228,156,226,13,237,32,135,150,243,34,132,59,8,1,13,46,110,111,116,105,102,105,99,97,116,105,111,110,2,52,9,4,200,70,16,31,77,141,17,155,42,170,19,228,76,35,20,26,20,164,22,16,196,137,29,39,191,80,31,73,163,141,37,41,167,100,38,157,104,112,49,220,118,64,50,188,202,222,67,2,158,129,77,94,28,50,82,76,179,66,85,113,214,118,98,157,100,117,102,91,156,175,103,100,48,168,105,0,202,121,116,239,188,119,123,247,212,159,124,91,25,81,124,127,243,126,126,83,6,48,126,250,231,212,128,28,65,40,133,162,233,224,143,7,66,216,144,168,22,123,145,2,182,40,148,188,67,31,160,29,119,124,169,69,238,222,172,62,17,71,176,190,32,234,177,68,95,180,180,232,122,218,183,100,155,110,191,142,111,65,198,27,48,150,199,24,125,64,201,252,231,191,202,181,130,179,203,69,81,146,217,9,79,21,219,251,145,141,232,123,70,250,234,194,240,51,237,110,251,58,246,20,158,95,252,35,33,104,16,1,8,35,111,118,101,114,108,97,121,2,26,18,81,214,197,36,32,197,225,38,157,134,223,40,227,88,151,52,186,227,72,57,233,16,182,66,184,28,26,80,128,181,230,82,11,225,124,92,194,54,80,145,130,203,208,147,94,68,77,154,231,18,233,163,237,161,218,173,218,18,55,180,13,58,237,191,173,39,209,202,46,119,45,211,116,9,149,215,90,241,39,215,156,214,123,215,188,146,220,235,26,224,130,239,88,47,129,242,81,105,93,242,231,162,20,8,1,11,46,115,112,45,111,118,101,114,108,97,121,2,4,18,254,199,21,135,125,30,116,182,82,198,132,216,88,62,192,8,1,16,46,114,101,118,101,97,108,45,109,111,100,97,108,45,98,103,2,17,31,105,16,166,38,70,156,240,38,208,240,242,52,244,83,226,74,248,52,189,97,201,65,138,102,149,212,145,123,1,3,200,123,66,119,155,132,106,186,22,148,228,128,181,175,50,67,248,180,36,218,220,191,178,21,158,193,9,217,64,200,99,118,187,219,161,80,128,16,1,15,35,108,103,112,100,45,99,111,110,116,97,105,110,101,114,2,6,27,15,205,152,29,177,123,120,30,183,85,147,165,187,162,160,226,32,155,255,240,77,132,38,8,1,13,46,99,111,111,107,105,101,95,109,111,100,97,108,2,3,38,22,217,243,140,89,172,108,144,24,107,210,0,1,26,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,80,111,108,105,99,121,34,93,2,11,38,157,73,36,38,157,107,185,53,254,140,168,58,251,209,148,79,80,82,199,95,100,102,161,106,157,22,111,126,2,242,199,175,190,72,13,239,168,4,217,247,148,253,248,0,1,24,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,78,111,116,105,34,93,2,8,19,242,231,87,20,108,71,245,56,237,171,61,65,153,215,98,173,215,176,12,180,217,45,159,243,19,17,171,247,154,63,82,0,1,25,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,78,111,116,105,34,93,2,1,129,204,104,153,8,1,14,46,99,111,111,107,105,101,45,110,111,116,105,99,101,2,29,1,78,130,19,13,233,242,13,18,125,216,61,19,54,227,153,22,86,176,137,45,123,243,57,51,60,192,152,55,250,117,253,57,65,30,190,62,74,83,184,87,173,199,3,97,27,4,159,102,106,62,176,102,151,214,64,107,179,121,97,125,208,171,117,129,66,243,110,139,116,187,232,154,213,206,247,172,2,67,166,177,184,128,151,188,72,182,156,194,224,91,63,197,215,235,239,209,48,4,87,237,161,190,122,240,129,4,148,243,195,2,209,250,125,134,67,16,1,16,35,116,111,97,115,116,45,99,111,110,116,97,105,110,101,114,2,16,9,149,28,99,26,142,95,40,58,10,51,13,58,204,189,121,120,215,130,77,126,4,224,64,127,218,250,178,156,209,108,153,159,21,22,139,165,140,206,91,188,1,9,225,191,122,175,60,207,63,15,100,231,98,56,53,236,115,112,224,248,222,82,192,8,1,6,46,116,111,97,115,116,2,17,11,231,45,43,21,252,150,142,24,249,190,51,25,189,119,228,28,225,96,77,35,206,239,163,38,157,171,201,41,201,76,220,47,162,104,100,75,244,153,209,81,83,35,37,81,205,255,195,93,92,155,192,117,115,156,126,142,223,158,145,166,96,31,16,242,231,181,237,8,1,10,46,103,100,112,114,77,111,100,97,108,2,17,33,204,216,184,39,167,202,62,71,157,95,25,74,55,225,87,78,195,107,172,86,229,233,132,89,82,191,83,99,52,10,133,128,118,152,42,141,20,115,22,151,246,160,91,154,231,18,233,172,37,26,140,188,152,164,230,188,207,92,29,208,52,1,223,216,116,110,193,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,67,111,110,115,101,110,116,34,93,2,4,148,149,139,75,173,219,208,185,179,213,196,54,225,145,106,221,0,1,27,100,105,118,91,99,108,97,115,115,42,61,34,67,111,111,107,105,101,67,111,110,115,101,110,116,34,93,2,20,0,18,8,254,2,234,2,20,5,140,23,52,53,254,140,168,55,121,58,219,65,153,201,222,89,2,11,197,102,47,1,101,117,190,197,148,122,153,133,176,132,56,252,160,140,254,125,110,146,80,204,103,147,143,227,104,148,6,245,227,149,141,247,213,180,212,63,92,197,78,241,202,219,160,197,135,227,215,204,80,8,1,15,46,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,239,253,139,202,8,1,24,46,100,105,97,108,111,103,45,108,105,103,104,116,98,111,120,45,109,101,115,115,97,103,101,2,43,5,60,83,155,9,177,24,161,15,26,128,92,24,244,10,206,26,237,212,174,38,33,50,187,40,2,76,216,43,91,21,203,45,7,240,66,45,34,41,162,45,134,161,13,50,127,35,81,56,117,194,100,60,154,73,57,82,70,229,231,86,220,85,103,88,33,229,235,99,76,61,111,101,46,244,143,107,218,245,79,109,220,7,26,111,248,158,61,122,57,233,245,126,164,33,255,127,17,188,30,138,211,91,97,149,184,198,6,157,13,169,94,166,143,133,32,182,29,246,127,182,236,183,81,183,29,200,1,185,235,98,217,187,7,217,236,192,150,133,185,200,211,57,116,207,136,224,244,218,170,219,227,243,135,226,86,244,99,2,199,247,186,9,114,254,141,93,111,255,71,124,132,8,1,29,46,97,109,103,100,112,114,99,111,111,107,105,101,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,4,27,125,105,29,98,69,59,211,109,154,2,254,192,99,150,90,8,1,23,46,100,105,97,108,111,103,45,108,105,103,104,116,98,111,120,45,119,105,100,103,101,116,2,27,3,192,210,124,38,153,137,99,38,163,62,117,45,115,54,163,53,108,8,105,60,138,91,199,63,87,29,226,71,136,121,26,79,92,136,160,79,153,227,43,103,36,141,13,114,202,242,140,134,204,189,233,140,41,178,31,154,20,168,31,157,107,193,64,193,43,49,30,199,121,29,168,205,125,128,150,214,28,80,178,229,13,116,192,240,50,168,10,241,182,52,81,243,9,133,111,244,8,191,214,252,7,202,164,252,66,60,216,8,1,5,46,116,54,53,55,2,20,23,225,1,81,24,8,9,105,26,217,149,117,52,218,140,13,75,127,197,148,83,189,124,25,102,29,42,197,102,115,9,187,103,77,157,13,112,212,185,221,113,59,163,46,117,92,130,82,124,109,25,155,135,33,7,64,156,204,204,216,170,39,5,171,195,10,231,140,231,122,233,53,247,38,57,199,253,29,13,89,8,1,5,46,116,56,56,54,2,24,2,6,142,160,18,39,63,55,34,30,241,31,57,17,51,79,86,203,182,78,90,255,78,36,97,149,239,139,104,82,129,18,143,230,44,50,147,47,236,164,148,193,71,36,163,240,83,109,168,71,29,36,181,24,253,245,199,139,69,195,203,58,254,43,218,240,162,88,228,22,255,205,234,237,235,215,244,42,79,226,244,184,142,243,248,92,4,98,249,15,163,165,251,15,77,124,8,1,5,46,116,56,56,55,2,7,63,160,12,165,67,179,170,194,112,195,95,15,119,157,60,160,171,242,230,57,190,15,109,28,232,158,231,32,8,1,5,46,116,57,55,50,2,5,18,186,141,12,22,224,46,248,65,234,35,92,129,192,214,157,188,226,238,2,16,1,13,35,103,100,112,114,45,99,111,110,115,101,110,116,2,12,3,62,4,220,28,178,97,95,33,205,14,235,68,134,10,125,77,17,188,211,130,246,91,101,150,137,155,76,200,52,76,203,204,90,188,241,207,204,127,73,210,201,127,87,247,155,176,78,16,1,12,35,100,105,100,111,109,105,45,104,111,115,116,2,7,3,238,109,215,10,239,0,117,13,190,13,38,101,203,34,228,122,7,88,43,127,248,123,175,242,81,136,76,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,99,111,110,115,101,110,116,34,93,2,4,26,177,116,167,132,94,73,6,135,86,1,16,247,87,66,97,0,1,19,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,115,95,34,93,2,10,30,236,122,38,35,89,54,109,38,6,191,53,90,137,27,246,139,226,182,70,177,164,113,83,178,141,120,93,192,110,84,190,201,230,127,82,212,112,66,58,8,1,17,46,99,111,111,107,105,101,115,95,95,119,114,97,112,112,101,114,2,29,7,188,2,194,26,46,138,184,36,246,86,224,44,14,144,57,48,195,148,88,57,181,215,157,66,114,237,178,83,155,133,149,84,171,92,20,87,120,15,118,105,192,69,156,128,226,119,106,147,145,209,237,162,13,82,184,174,13,255,113,174,109,74,87,178,35,111,62,184,205,246,26,190,187,6,97,194,212,179,165,196,246,74,224,198,9,12,137,204,84,110,40,207,92,211,51,229,207,118,153,230,44,113,246,231,57,127,18,239,211,33,31,255,156,114,30,16,1,18,35,99,111,111,107,105,101,98,97,110,110,101,114,77,111,100,97,108,2,5,3,137,226,115,84,150,88,28,104,221,125,4,115,28,163,74,143,122,132,87,8,1,8,46,99,111,111,107,105,101,115,2,128,0,0,1,224,0,250,112,92,1,64,149,117,1,148,49,101,1,240,1,240,2,77,169,234,2,192,133,80,4,0,242,23,4,43,133,23,4,248,25,52,5,218,49,15,6,225,47,96,7,12,94,23,7,80,252,28,7,119,124,255,7,142,72,171,7,225,235,219,8,140,131,165,9,151,211,254,10,146,29,133,10,216,106,53,11,101,144,239,11,206,240,220,12,92,78,252,12,127,136,202,12,158,88,14,12,202,224,37,12,229,117,38,13,11,29,110,13,65,81,33,13,71,186,246,13,119,58,150,14,49,11,29,14,166,64,22,14,191,155,71,15,203,199,104,16,1,216,47,16,166,172,151,16,218,84,93,17,112,179,101,18,3,137,70,18,23,192,253,18,133,141,68,18,168,26,201,18,169,71,185,19,68,49,95,19,245,180,132,20,104,90,103,21,9,86,119,21,123,162,132,21,153,94,188,22,40,80,63,22,110,171,65,22,241,166,185,22,249,14,63,23,14,200,224,23,61,12,106,24,185,166,243,25,66,60,8,25,176,128,229,27,7,90,83,27,42,162,160,27,59,251,104,27,105,214,169,27,185,177,27,27,234,215,202,28,200,121,11,28,208,184,92,28,222,169,213,28,228,122,193,29,191,57,169,30,66,35,213,31,3,51,208,31,246,23,197,31,254,232,150,32,134,80,197,32,205,147,26,32,224,217,0,33,48,141,203,33,71,97,49,33,93,197,185,33,95,6,49,33,96,173,190,33,126,167,145,34,53,162,25,34,83,128,81,34,191,209,113,35,11,63,181,35,13,41,137,35,243,29,116,36,190,118,104,37,30,113,67,37,73,28,225,37,101,247,118,37,134,181,149,37,243,243,120,38,107,120,26,38,157,103,149,38,157,156,3,38,157,169,58,38,206,72,136,38,208,150,127,40,120,9,217,41,4,220,122,42,54,98,59,43,31,86,31,43,212,7,150,44,10,164,178,44,202,253,198,46,46,230,87,46,122,63,12,48,18,73,38,48,244,104,154,51,142,10,180,51,188,22,214,52,6,0,45,53,23,142,196,53,196,142,67,54,2,208,192,54,126,80,203,54,178,42,28,54,184,132,223,54,243,201,118,55,2,120,170,55,14,190,179,55,144,189,142,55,176,157,20,56,60,87,227,56,200,61,223,56,213,32,245,57,206,220,150,57,227,245,52,58,26,177,131,58,45,121,173,59,78,232,28,60,180,20,229,60,233,109,44,61,30,76,119,61,138,62,184,61,232,28,62,62,172,176,85,63,85,248,125,63,107,123,197,63,179,180,126,63,231,174,159,63,233,29,58,65,8,75,198,65,85,138,90,67,145,111,225,68,102,127,65,68,179,36,118,69,94,117,222,70,6,176,65,70,60,95,19,71,88,21,46,71,123,29,168,72,36,143,210,72,211,53,1,75,42,79,132,76,14,6,188,76,153,224,19,76,175,225,249,76,186,233,62,79,75,95,38,79,158,91,12,79,218,96,235,80,193,151,196,80,200,177,184,81,19,106,138,81,115,219,238,82,2,149,155,83,199,115,169,83,223,160,101,84,105,192,136,85,113,26,228,85,122,242,154,86,171,240,176,86,219,70,45,87,135,203,254,90,214,102,11,91,111,136,85,91,255,91,226,93,236,59,33,94,201,141,222,96,97,66,128,97,12,28,71,97,73,243,22,98,73,214,146,98,97,209,208,98,143,211,205,98,253,72,71,99,132,215,175,99,165,85,199,99,169,106,231,100,33,39,230,101,227,113,195,102,61,92,36,102,120,161,242,102,174,212,75,103,91,231,161,103,166,181,165,103,184,192,154,103,213,47,44,104,58,83,23,104,170,178,195,104,226,117,185,107,84,131,67,108,96,2,150,108,117,30,22,108,192,20,47,109,21,215,30,109,62,145,200,110,29,11,251,110,47,179,201,110,84,53,235,110,203,13,221,110,227,168,233,111,58,189,252,111,138,169,162,111,160,137,227,112,102,236,183,112,164,246,37,113,40,23,198,113,59,229,127,114,2,134,83,115,53,204,155,116,54,125,165,116,145,11,145,117,34,68,223,117,153,9,50,117,166,39,62,118,235,244,228,119,162,144,220,120,208,125,211,121,103,155,179,121,177,96,159,122,38,220,241,122,77,241,148,122,165,242,237,122,204,12,86,122,222,76,252,123,112,240,139,125,26,5,38,125,255,78,9,126,3,72,240,126,4,122,194,126,191,59,102,127,1,106,43,127,1,231,91,127,22,184,27,129,159,194,32,129,188,127,113,130,58,47,148,130,89,176,38,130,151,13,63,130,195,106,182,130,233,25,224,131,33,8,217,134,41,231,245,134,140,219,25,134,153,30,55,134,221,22,124,136,70,243,13,136,116,131,145,138,30,247,112,138,51,192,252,139,26,100,171,139,132,226,196,140,75,214,106,140,85,176,251,140,110,74,86,142,25,227,80,142,207,159,175,143,105,198,73,143,123,114,55,143,251,227,131,144,16,127,37,144,20,224,172,144,37,166,127,144,217,47,2,145,69,114,235,145,112,71,19,145,252,31,151,146,141,138,127,147,56,14,76,148,24,96,149,148,74,86,105,148,188,2,115,149,216,58,247,150,122,237,216,150,131,170,72,150,151,141,90,151,14,85,153,151,128,113,82,152,156,109,90,153,63,2,203,153,110,165,148,153,216,141,61,154,33,208,189,154,79,65,29,154,131,172,227,154,133,89,181,154,207,96,205,154,252,67,147,156,85,121,138,157,0,5,229,157,93,207,13,158,134,222,0,158,244,135,90,159,124,171,99,160,41,141,122,161,122,133,221,161,154,188,87,161,187,200,205,162,54,114,216,162,64,43,243,162,76,131,216,164,40,5,94,165,84,149,78,166,63,167,96,166,178,195,14,167,87,88,183,167,111,243,100,167,212,56,161,169,123,108,177,170,2,35,20,170,132,132,78,171,84,3,123,171,112,51,174,171,216,50,252,172,70,120,35,172,76,245,11,173,72,56,49,173,86,192,30,174,191,178,255,175,104,135,159,175,233,103,156,176,55,245,128,176,107,172,255,176,109,120,42,176,157,235,254,177,25,16,142,177,158,165,159,178,244,123,104,179,98,234,241,180,134,204,252,180,182,180,130,180,240,65,24,181,221,96,196,182,23,104,177,182,137,224,196,182,151,48,178,182,175,27,117,182,209,111,43,183,0,61,55,183,211,249,99,184,110,99,235,186,118,121,86,186,129,168,116,186,214,55,27,187,197,207,0,187,244,16,42,188,34,165,227,188,63,32,125,188,124,173,131,189,146,55,112,190,71,74,65,190,81,141,22,192,63,203,81,192,83,169,60,192,179,78,49,192,203,82,25,192,220,247,198,193,154,248,20,193,187,212,163,193,195,68,96,193,230,189,193,194,246,62,224,195,2,125,154,195,102,36,60,195,165,142,35,196,68,92,1,196,221,63,78,198,94,0,86,199,237,153,57,199,245,56,19,200,249,135,208,201,4,83,34,201,168,13,180,201,171,92,106,201,217,195,220,201,236,108,163,202,229,76,66,203,171,104,75,204,0,215,43,204,221,57,5,206,58,242,9,207,145,51,55,208,94,251,251,208,112,77,89,208,169,187,129,208,232,168,46,210,117,191,255,210,185,17,212,211,97,108,49,212,160,15,167,213,221,218,10,214,157,44,203,214,180,91,246,218,82,132,253,218,116,100,163,219,94,132,237,220,26,187,208,220,51,102,80,220,234,38,119,223,0,240,165,223,183,17,140,224,133,168,98,224,246,214,210,226,147,160,20,226,171,152,4,226,175,150,213,229,129,152,17,230,25,81,150,230,55,41,9,230,84,102,14,230,116,210,97,230,243,223,40,231,64,221,37,231,89,79,71,231,168,61,96,231,211,85,76,231,228,222,200,231,254,94,241,232,120,139,184,232,146,13,15,232,196,199,150,232,228,104,33,234,26,185,30,234,129,85,213,234,147,225,117,234,205,160,168,235,144,47,89,236,67,193,139,237,230,219,23,237,240,200,150,238,44,100,74,238,141,112,86,241,162,233,243,241,209,13,207,242,61,215,148,242,81,185,84,243,144,202,177,243,183,115,189,244,99,22,130,244,99,26,115,244,245,178,253,247,25,0,92,247,40,229,136,247,76,206,95,247,165,199,154,247,223,113,173,248,132,72,181,248,196,13,241,249,16,189,92,249,121,69,197,249,225,132,114,250,183,232,46,251,114,178,173,251,138,88,14,251,159,75,80,251,194,238,14,251,197,85,41,251,210,243,66,252,45,89,228,253,40,72,37,253,232,17,88,254,171,46,185,254,172,90,58,254,214,220,166,255,121,156,240,8,1,7,46,99,111,111,107,105,101,2,128,0,0,2,0,0,27,29,29,0,243,113,197,2,233,32,32,2,235,51,60,3,71,162,60,3,96,8,35,3,196,193,112,3,232,2,153,4,41,2,119,4,74,186,205,4,217,157,221,5,62,72,88,5,246,73,125,7,16,145,42,7,47,215,128,7,78,225,140,7,222,182,5,8,33,91,229,8,122,90,112,10,136,134,133,11,71,250,19,11,94,177,74,11,121,209,215,12,53,76,225,12,66,48,219,12,115,184,250,12,204,193,9,12,247,51,195,13,247,142,76,14,100,47,224,14,253,30,132,15,78,78,178,15,94,35,235,16,7,0,226,16,97,27,38,19,254,237,88,20,52,163,249,20,66,66,123,20,239,74,232,21,8,63,164,21,123,105,134,22,127,43,145,23,45,78,223,23,96,42,93,24,46,52,162,24,46,200,160,24,88,85,38,25,33,16,141,25,35,239,222,25,242,131,198,26,203,178,94,27,183,5,34,28,82,70,168,28,204,207,96,28,210,215,40,29,34,171,155,29,38,191,35,30,113,77,38,31,73,150,87,31,73,163,134,32,51,83,63,32,189,135,162,33,73,159,191,34,24,107,53,34,41,57,63,34,162,133,225,35,34,158,108,35,71,250,224,35,99,200,95,36,33,119,76,36,67,17,54,36,84,133,248,36,224,23,92,36,226,219,138,36,241,41,252,37,14,91,1,37,118,16,54,37,177,131,144,37,241,202,6,38,157,71,245,38,163,20,9,38,181,188,251,38,187,223,172,39,67,150,32,39,163,94,129,40,40,9,197,40,247,224,81,41,239,48,31,42,95,170,244,43,150,247,109,44,45,248,184,44,170,94,54,44,181,147,28,44,237,186,241,45,38,191,82,45,71,89,172,46,147,178,147,47,38,179,3,47,182,185,146,47,198,9,27,47,252,55,229,48,103,50,56,49,217,178,4,51,51,171,214,51,53,203,110,51,56,25,240,51,73,188,139,53,9,198,40,53,244,116,109,54,189,82,82,54,254,102,124,55,13,181,72,55,29,173,36,56,58,42,232,57,20,87,114,57,133,198,169,57,250,109,139,59,94,242,161,59,184,251,60,59,245,204,87,60,83,254,34,61,158,203,43,62,43,72,234,62,55,145,219,62,87,118,163,63,197,239,247,64,10,34,105,64,196,147,190,65,10,218,123,65,196,128,250,66,151,95,47,67,79,206,168,67,203,147,245,68,118,143,75,68,194,238,106,69,97,178,212,69,114,19,185,69,245,8,167,70,176,120,24,70,206,49,241,71,212,84,93,71,247,251,149,72,74,39,187,72,101,27,1,72,128,229,243,74,67,18,71,75,41,66,207,75,88,119,216,76,146,65,49,77,12,25,222,77,83,243,151,77,115,149,225,77,233,84,199,78,35,237,153,78,181,239,2,79,1,135,22,79,7,146,104,79,215,29,228,80,114,233,167,81,138,127,67,82,78,107,222,82,179,88,117,82,248,67,173,83,79,148,13,84,42,112,35,84,244,21,117,85,200,236,125,85,221,88,0,86,160,92,71,86,192,90,50,86,218,67,47,86,219,14,243,87,123,162,252,88,99,20,222,90,52,254,64,90,107,40,188,90,138,14,59,90,233,150,129,92,22,36,105,93,59,133,135,94,136,111,24,94,180,100,160,94,183,89,5,94,188,178,19,95,54,191,5,95,71,78,1,95,147,134,184,95,170,97,95,96,124,195,34,96,171,66,217,96,237,86,173,96,237,168,66,96,241,144,129,97,66,197,170,97,81,237,252,97,103,133,186,98,113,239,148,100,171,11,164,101,1,74,108,101,226,41,90,102,37,55,86,102,176,119,89,102,213,191,231,103,44,190,41,103,99,249,201,103,136,45,14,103,217,53,106,103,233,103,245,103,254,80,70,104,12,107,235,104,57,132,202,105,135,140,217,105,203,145,8,107,138,134,20,107,218,36,65,109,97,188,128,109,239,13,92,110,233,61,146,111,146,42,221,112,237,110,75,113,40,79,81,114,75,187,64,114,75,191,246,114,223,109,230,115,92,89,65,117,228,70,79,118,251,156,22,119,33,129,237,119,106,68,72,119,127,253,203,120,29,125,72,120,152,96,60,121,60,206,228,121,180,51,222,122,120,126,2,122,135,67,224,122,151,118,162,124,1,11,239,125,191,70,13,126,27,244,88,126,189,155,118,126,243,148,221,127,1,106,43,127,64,91,225,127,120,152,215,127,232,245,98,128,2,197,250,128,101,218,130,129,48,97,119,130,2,101,79,130,139,53,5,130,219,244,78,131,36,183,132,131,114,98,158,131,232,75,18,132,54,60,152,132,227,240,94,132,248,46,150,133,37,89,97,133,164,170,108,133,220,125,54,134,163,5,154,136,93,152,164,136,191,162,251,137,139,64,97,137,157,98,132,138,103,44,64,138,180,27,162,139,19,80,250,139,99,161,111,139,163,13,111,140,17,34,173,140,126,228,188,140,172,124,38,140,203,143,153,141,60,156,226,141,76,173,82,141,151,109,153,141,183,30,67,142,17,220,31,142,42,73,33,142,55,68,221,143,175,111,223,143,213,99,163,143,230,63,141,144,127,210,50,146,2,121,140,146,147,242,75,148,126,21,184,148,186,151,254,148,218,111,159,148,222,194,213,149,247,236,164,151,38,254,97,152,106,81,207,153,125,116,23,153,136,189,27,154,12,119,243,154,130,91,8,154,252,91,108,155,70,253,224,155,96,154,193,156,9,116,135,156,92,164,46,157,152,246,92,158,232,135,17,159,0,181,211,159,88,97,142,159,151,173,32,160,69,109,154,161,43,150,210,163,30,222,10,163,49,80,190,163,185,55,1,164,1,230,95,164,54,250,188,164,238,233,98,166,36,54,100,166,137,120,226,167,112,72,5,167,113,203,128,167,157,245,50,167,241,19,214,169,232,183,28,170,0,47,122,170,33,144,106,170,85,103,84,170,105,19,252,170,226,217,82,171,137,89,246,173,100,118,43,173,113,154,160,173,131,11,245,174,146,66,46,174,239,68,139,175,50,152,201,175,160,198,158,175,214,17,90,176,73,186,225,176,168,10,37,177,25,56,24,177,51,217,201,178,1,199,135,178,107,86,212,178,255,94,103,179,55,251,252,179,59,85,56,179,66,95,252,179,159,25,69,179,204,201,63,179,220,111,30,180,29,42,67,180,138,89,121,180,170,87,212,180,251,60,215,181,16,119,28,181,75,118,238,182,20,226,126,182,131,79,219,182,175,73,243,182,175,112,4,184,117,84,10,185,52,201,77,186,41,158,184,186,156,153,182,186,189,109,11,187,23,34,97,187,236,40,156,188,239,7,12,189,78,141,245,189,126,77,11,189,234,4,242,190,81,41,184,190,81,51,144,190,107,87,88,190,147,198,216,190,148,62,20,191,147,34,86,191,187,13,16,192,45,173,251,193,174,22,170,193,189,227,104,194,197,253,35,194,197,253,189,195,83,188,47,195,128,206,0,195,225,241,55,196,33,62,52,196,236,4,238,197,161,163,91,197,183,119,250,197,236,243,210,198,54,56,93,199,17,250,138,199,71,143,91,199,162,5,247,200,20,1,58,200,48,138,144,200,86,175,245,200,140,72,83,202,37,36,199,202,210,90,90,203,36,119,207,205,51,57,245,205,97,87,121,205,149,255,166,206,125,101,81,206,148,162,241,207,54,219,34,207,244,106,215,208,214,9,74,209,19,235,235,209,93,38,14,209,138,137,195,209,242,176,79,210,20,91,104,210,163,218,200,210,168,22,244,211,38,227,28,212,127,185,135,213,14,249,37,213,222,128,125,214,164,51,175,215,130,244,97,215,245,65,160,216,138,212,56,216,165,126,53,217,24,172,67,217,133,248,123,217,151,197,134,217,246,117,142,218,73,91,205,218,87,184,172,218,188,105,153,219,63,52,103,219,178,44,170,219,238,103,83,220,78,134,93,220,247,40,137,221,15,13,187,221,75,167,96,221,242,52,120,222,28,152,245,222,35,27,91,223,214,128,102,223,226,113,169,224,58,219,43,224,115,62,149,225,88,122,175,225,191,177,182,225,192,34,52,226,95,250,30,227,119,12,198,227,253,98,51,229,254,239,244,230,70,96,84,230,134,34,254,230,194,254,213,231,167,163,200,231,246,249,232,231,255,30,213,232,64,238,167,232,184,4,23,232,213,101,196,232,217,133,58,233,126,250,194,234,213,142,69,235,37,68,21,235,92,66,250,235,206,105,234,236,22,246,85,236,120,118,121,237,168,20,151,238,73,147,243,238,244,203,184,240,15,46,158,240,142,89,29,240,147,183,122,240,253,193,149,241,21,89,35,241,203,67,240,242,66,191,173,242,81,135,199,242,170,0,71,242,231,97,36,243,9,165,156,243,121,126,144,244,15,145,48,244,47,90,154,244,245,240,102,246,11,231,192,246,19,3,77,246,21,251,185,246,59,17,252,246,90,138,24,246,120,125,42,246,167,124,0,247,137,27,169,247,155,136,225,247,231,101,229,248,32,193,126,248,39,90,79,248,108,143,237,248,239,233,255,250,150,156,74,251,187,74,167,251,219,253,128,252,213,129,178,252,239,43,160,253,127,80,154,255,155,16,108,255,198,24,58,8,1,5,46,118,101,105,108,2,16,7,94,19,39,20,222,28,206,38,157,62,132,56,59,102,57,59,10,237,134,117,176,151,15,129,61,95,201,137,110,27,52,147,111,247,82,150,64,73,249,171,26,82,178,191,213,71,182,224,122,18,147,239,64,42,56,249,146,36,6,253,3,158,82,8,1,9,46,98,97,99,107,100,114,111,112,2,5,3,30,58,174,200,79,100,232,218,113,200,160,226,171,23,146,245,80,177,65,8,1,18,46,108,105,103,104,116,98,111,120,45,98,97,99,107,100,114,111,112,2,9,10,210,67,126,24,71,62,223,29,240,252,141,55,253,183,30,57,94,180,163,58,50,206,48,65,58,143,31,161,149,6,140,227,223,152,239,16,1,18,35,99,111,111,107,105,101,98,97,110,110,101,114,77,111,100,97,108,2,9,11,178,239,247,36,0,225,67,37,112,129,226,43,227,179,70,72,215,199,218,120,200,241,216,221,215,116,158,242,35,238,236,245,172,121,78,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,9,11,178,239,247,36,0,225,67,37,112,129,226,43,227,179,70,72,215,199,218,120,200,241,216,221,215,116,158,242,35,238,236,245,172,121,78,16,1,21,35,99,111,111,107,105,101,115,67,111,110,115,101,110,116,68,105,97,108,111,103,2,2,39,137,125,173,90,247,9,251,8,1,14,46,105,110,115,101,116,45,48,46,102,105,120,101,100,2,9,4,165,34,39,33,228,12,88,48,22,6,164,55,47,69,8,94,158,214,121,108,13,194,197,150,133,194,149,181,231,167,134,184,91,75,183,0,1,32,100,105,118,91,105,100,94,61,34,115,112,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,95,34,93,2,2,148,192,144,210,208,117,205,224,8,1,12,46,116,119,45,98,111,116,116,111,109,45,48,2,6,126,28,53,53,129,41,166,184,186,128,229,251,220,9,196,124,236,38,109,243,238,218,211,255,8,1,15,46,99,111,111,107,105,101,115,67,111,110,115,101,110,116,2,3,9,184,226,50,136,125,208,120,167,54,106,58,16,1,26,35,100,109,45,99,111,111,107,105,101,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,63,2,166,204,132,9,212,215,230,11,179,254,66,12,4,132,151,19,129,70,56,22,95,89,212,24,13,255,224,24,116,240,233,30,209,239,197,31,53,190,196,33,75,47,15,60,80,243,249,64,16,238,33,67,185,254,119,69,25,214,218,71,202,244,178,74,209,168,131,89,121,184,147,93,24,17,210,93,131,179,80,95,77,68,209,99,161,158,147,100,207,145,87,115,32,217,88,116,32,65,201,116,43,215,82,116,95,164,103,117,56,20,169,117,246,118,121,124,78,28,225,125,195,228,58,125,250,36,74,126,9,102,219,126,98,57,62,127,233,227,17,133,224,216,8,134,218,66,75,137,65,79,129,145,46,164,196,149,189,232,209,152,6,69,160,156,5,157,25,160,197,195,96,171,3,205,101,171,171,243,27,187,63,177,115,189,167,74,206,200,206,123,218,204,123,114,127,205,33,94,40,207,126,247,29,207,187,195,208,210,150,236,156,211,144,187,0,217,25,171,247,217,156,161,216,224,195,93,174,230,2,171,7,235,79,122,230,236,7,228,226,243,58,201,172,250,105,172,246,251,111,75,145,16,1,17,35,99,45,99,111,111,107,105,101,115,95,95,109,111,100,97,108,2,2,27,113,228,109,44,22,118,184,8,1,8,46,111,118,101,114,108,97,121,2,53,1,239,49,189,12,133,163,241,19,94,243,204,21,196,28,102,23,167,101,240,23,217,156,25,27,11,129,140,33,234,200,125,41,177,217,13,47,216,1,130,52,102,165,177,55,215,67,249,56,145,50,97,61,140,186,226,72,208,101,7,75,122,87,84,90,138,14,59,95,54,191,5,98,17,21,78,103,244,210,56,105,65,196,232,105,167,205,123,105,168,9,156,110,225,66,27,113,74,18,94,114,171,215,70,124,128,55,105,131,13,11,168,138,93,114,249,139,78,245,243,140,153,5,178,146,41,223,203,148,126,21,184,162,255,188,42,164,253,251,180,175,188,207,0,178,64,58,168,187,3,157,214,190,147,202,79,199,171,206,137,201,68,142,20,203,242,222,5,205,32,98,32,208,33,7,119,210,93,205,231,213,49,155,217,214,196,63,214,221,255,79,2,246,38,177,179,247,68,202,76,249,60,221,202,251,110,154,175,254,126,171,177,8,1,10,46,98,111,116,116,111,109,45,49,48,2,1,254,126,171,177,16,1,6,35,109,115,103,98,103,2,14,59,223,11,200,86,152,62,221,98,50,208,44,98,109,143,46,100,177,233,219,102,35,183,195,167,232,63,225,194,167,119,79,199,169,158,240,205,176,253,96,215,38,177,206,220,179,168,15,230,230,121,233,254,42,104,165,0,1,39,100,105,118,91,115,116,121,108,101,61,34,111,112,97,99,105,116,121,58,32,49,59,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,34,93,2,12,13,69,185,190,23,150,9,203,28,79,56,78,37,136,131,128,40,133,82,211,58,25,87,174,76,188,150,97,80,151,213,38,99,21,244,97,118,14,170,120,220,91,69,109,239,227,11,197,8,1,18,46,108,105,103,104,116,98,111,120,45,98,97,99,107,100,114,111,112,2,22,11,112,167,64,40,208,223,226,74,26,86,119,83,218,69,211,84,46,175,186,88,115,229,10,90,180,89,243,90,212,45,176,104,76,234,94,115,78,208,235,119,220,33,238,125,55,252,245,143,13,54,99,147,13,180,161,171,69,107,72,182,151,179,2,189,86,188,16,199,71,164,117,214,0,192,67,239,30,98,162,239,153,130,138,247,87,221,12,16,1,22,35,115,108,105,100,105,110,103,45,112,111,112,117,112,45,99,111,111,107,105,101,115,2,2,87,55,122,105,204,97,105,129,8,1,18,46,113,99,45,99,109,112,50,45,99,111,110,116,97,105,110,101,114,2,4,29,116,127,165,108,57,111,200,148,250,224,42,233,64,129,191,8,1,15,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,15,3,82,150,21,40,207,41,173,66,173,236,144,88,198,163,24,92,118,55,175,93,152,40,161,147,244,199,200,191,243,194,235,204,62,141,96,204,204,121,186,219,82,225,1,233,123,241,0,242,54,125,73,242,63,224,206,251,254,35,128,16,1,20,35,99,111,111,107,105,101,115,67,111,110,115,101,110,116,77,111,100,97,108,2,1,46,199,47,6,16,1,14,35,109,121,45,99,116,99,45,119,105,100,103,101,116,2,11,28,122,95,115,69,214,160,205,97,104,84,231,99,129,164,73,148,148,21,166,160,79,198,141,178,203,100,55,209,79,105,189,218,248,174,229,228,101,8,41,248,160,10,15,8,1,7,46,115,112,117,45,98,103,2,95,2,204,209,14,5,66,8,182,8,119,226,86,10,231,46,49,13,85,64,83,14,86,100,202,15,58,199,27,16,46,250,76,18,7,78,196,19,196,252,217,23,94,93,139,25,149,4,249,31,56,128,193,36,225,111,100,39,143,253,143,41,25,129,166,43,46,220,193,50,9,163,59,52,43,3,180,52,175,38,97,53,17,185,86,55,174,183,251,56,80,179,251,58,58,136,248,59,233,71,246,61,31,229,248,63,212,225,232,66,95,46,28,67,87,123,134,76,65,3,188,79,126,97,110,80,37,124,190,80,80,46,3,80,183,225,234,81,117,72,52,89,154,20,214,95,153,113,197,102,82,132,218,107,174,120,103,108,231,58,227,113,4,33,213,115,33,50,30,117,40,167,0,117,213,161,139,119,88,50,116,120,48,136,239,126,4,150,63,129,187,78,50,129,193,189,135,129,195,188,181,129,203,182,173,130,185,154,220,135,11,141,119,135,121,250,123,137,221,206,153,146,68,108,201,150,112,136,94,150,146,208,188,151,84,117,133,152,171,139,141,156,108,29,174,156,181,212,157,156,205,150,214,162,200,105,232,165,92,234,122,166,80,35,217,182,67,145,118,182,72,93,175,183,182,244,241,189,57,248,169,189,240,19,90,193,9,86,106,196,186,177,122,202,147,241,208,207,23,227,21,210,91,65,181,211,112,9,12,222,100,161,250,227,231,74,1,228,230,21,176,230,100,212,211,231,126,26,110,233,24,23,129,235,165,50,6,235,192,215,48,239,144,183,45,240,33,122,19,240,59,117,75,241,196,107,0,244,202,72,244,246,120,220,40,246,133,143,240,249,138,250,36,251,3,82,110,253,62,140,53,8,1,8,46,115,112,117,45,98,111,120,2,8,13,85,64,83,41,25,129,166,58,237,166,205,61,31,229,248,107,174,120,103,189,240,19,90,225,65,123,136,253,62,140,53,8,1,11,46,99,115,115,45,112,117,109,57,108,57,2,3,82,70,229,37,118,37,103,64,146,2,117,11,16,1,12,35,114,101,113,117,105,114,101,100,45,99,99,2,3,89,234,38,110,97,73,216,206,226,157,223,226,0,1,27,100,105,118,91,99,108,97,115,115,42,61,34,99,111,111,107,105,101,66,97,110,110,101,114,95,34,93,2,14,14,110,155,159,27,224,69,4,33,200,47,151,42,159,105,102,51,213,99,100,55,106,11,183,99,151,153,143,107,200,119,210,109,143,139,123,133,206,127,185,141,98,160,3,150,49,99,41,191,159,119,241,203,239,37,137,8,1,12,46,116,111,112,45,48,46,102,105,120,101,100,2,4,76,1,111,145,109,229,27,8,126,4,120,17,138,1,99,30,8,1,14,46,99,111,111,107,105,101,45,112,111,108,105,99,121,2,11,11,156,160,29,31,73,106,12,35,57,147,150,55,165,89,255,90,65,41,194,97,243,105,152,108,201,130,20,122,81,100,175,158,96,206,212,179,100,179,95,189,56,2,248,8,1,20,46,109,111,100,97,108,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,21,46,62,23,16,1,14,35,115,108,105,100,105,110,103,45,112,111,112,117,112,2,28,15,107,150,20,31,73,207,99,31,73,211,185,50,113,98,236,54,208,126,155,55,229,183,105,66,9,96,88,74,153,190,118,77,251,109,180,78,46,33,50,82,81,130,200,87,188,31,31,103,0,120,88,104,32,161,173,114,245,149,167,148,186,52,181,148,201,201,208,149,248,58,140,153,11,192,77,167,110,220,205,175,13,28,11,178,244,221,187,195,55,134,148,221,208,200,189,225,191,62,227,227,95,235,74,230,210,145,252,245,111,129,189,8,1,21,46,115,108,105,100,105,110,103,45,112,111,112,117,112,45,98,111,116,116,111,109,2,111,0,212,246,241,1,89,100,220,1,216,10,45,4,1,176,134,5,139,28,0,5,157,19,16,6,86,67,88,8,32,25,226,12,252,123,87,17,199,100,226,19,230,218,232,20,53,13,232,20,79,95,103,20,239,59,154,21,123,140,160,22,168,136,108,23,128,105,58,23,236,30,79,25,161,215,121,26,20,82,33,26,213,115,236,28,61,35,41,28,77,161,44,32,165,123,139,33,200,119,14,34,233,155,33,34,247,25,251,38,157,31,177,39,53,216,0,43,164,83,51,45,190,239,139,47,169,11,225,47,200,69,114,47,216,154,145,50,76,8,158,53,111,88,57,54,64,163,41,54,127,233,80,55,186,90,237,55,245,234,158,61,179,249,212,65,164,191,186,67,17,128,136,67,103,242,204,69,105,185,150,70,48,232,199,70,175,212,91,71,168,184,37,71,201,245,113,73,19,7,247,87,250,204,148,89,223,58,230,90,63,30,195,95,201,146,211,96,248,73,182,97,46,181,63,97,74,100,211,98,103,145,59,102,78,121,12,104,223,169,114,104,223,227,34,106,24,61,91,107,214,134,214,116,47,205,71,116,53,98,189,118,166,119,110,123,25,230,47,125,134,171,246,125,137,67,180,128,237,151,48,133,126,242,46,133,246,239,211,136,120,40,85,136,218,174,249,137,5,15,131,138,85,237,98,153,11,192,77,156,220,197,181,158,207,254,160,160,164,15,62,163,3,99,29,163,226,49,52,166,6,8,188,169,21,39,54,172,170,156,190,173,214,71,51,175,10,145,208,179,205,80,222,204,25,244,94,204,133,48,152,205,226,16,255,210,35,238,98,214,148,111,224,216,119,76,143,227,82,229,218,229,238,213,244,231,74,156,157,232,101,79,255,234,28,11,217,234,125,47,165,238,42,55,233,242,103,37,169,242,231,7,178,242,231,104,166,246,133,11,63,246,223,135,37,249,132,238,33,250,151,127,123,253,194,250,130,254,158,158,215,255,138,11,107,8,1,18,46,99,111,111,107,105,101,115,112,108,117,115,45,109,111,100,97,108,2,20,8,241,40,169,21,178,217,214,34,164,152,6,36,77,21,153,52,20,144,58,65,3,218,225,65,113,165,138,68,162,144,164,93,205,168,26,103,193,180,138,105,71,115,3,152,141,218,219,154,205,251,27,160,75,220,5,180,209,203,170,217,204,203,182,218,10,212,202,224,99,42,42,228,137,74,78,249,250,228,209,8,1,11,46,99,111,111,107,105,101,119,97,108,108,2,10,23,73,94,41,38,48,178,234,61,230,113,214,102,140,222,249,112,169,112,62,162,125,212,99,191,63,135,245,192,4,170,97,201,167,113,226,220,87,79,158,8,1,14,46,109,111,100,97,108,45,45,99,111,111,107,105,101,2,3,54,89,251,0,161,136,8,202,214,62,137,87,0,1,24,100,105,118,91,105,100,42,61,34,95,109,111,100,97,108,95,111,117,116,101,114,95,34,93,2,2,86,220,231,132,154,83,124,238,16,1,5,35,114,103,112,100,2,14,13,86,209,201,13,158,117,38,23,50,119,107,26,123,57,175,72,248,119,161,124,11,194,187,138,2,10,101,144,20,225,61,149,215,15,108,166,136,181,126,182,131,41,246,182,132,168,27,238,58,0,103,241,52,210,128,8,1,5,46,114,103,112,100,2,19,31,216,173,128,39,159,218,197,54,47,14,96,64,148,119,83,77,161,100,207,77,184,15,84,85,0,44,10,96,35,127,189,120,155,12,206,132,194,75,121,136,120,148,242,140,116,14,90,140,120,138,61,146,10,101,226,147,85,37,18,195,72,202,185,219,72,113,194,235,72,118,55,242,108,162,137,8,1,19,46,118,100,45,109,101,115,115,97,103,101,45,119,114,97,112,112,101,114,2,4,180,83,37,178,235,63,240,94,236,128,19,207,237,175,139,104,16,1,16,35,97,120,101,112,116,105,111,95,111,118,101,114,108,97,121,2,3,6,66,54,7,72,92,47,59,123,63,56,121,8,1,14,46,99,111,111,107,105,101,95,104,111,108,100,101,114,2,3,38,228,95,28,170,78,20,176,173,62,100,181,8,1,14,46,99,111,111,107,105,101,95,102,111,111,116,101,114,2,5,61,56,113,179,75,34,38,158,78,50,86,155,151,218,169,93,169,202,170,139,16,1,11,35,99,111,111,107,105,101,119,97,108,108,2,22,18,145,231,200,27,6,179,112,36,230,128,70,81,199,164,175,82,213,94,40,82,248,112,4,84,163,248,187,113,53,135,66,139,101,78,101,157,197,42,131,158,52,138,70,164,236,57,235,166,165,72,49,179,196,143,140,193,210,147,159,194,6,179,219,194,144,49,115,209,242,117,65,210,170,187,127,218,95,110,156,229,192,74,39,231,32,50,235,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,22,8,61,161,73,10,184,29,33,23,212,70,172,25,81,223,150,32,237,197,245,57,93,93,77,77,213,153,80,123,140,90,202,131,143,230,204,141,252,88,48,148,214,30,115,149,156,111,189,150,27,47,245,162,213,33,194,170,40,180,84,175,179,217,248,179,137,153,207,205,150,252,241,212,239,101,148,231,115,82,23,242,231,103,74,245,248,16,240,8,1,16,46,98,97,99,107,100,114,111,112,45,99,111,111,107,105,101,2,1,120,237,165,119,16,1,14,35,99,111,111,107,105,101,115,45,98,108,111,99,107,2,2,106,45,148,112,201,169,224,90,8,1,12,46,99,111,111,107,105,101,45,119,97,108,108,2,4,102,102,110,33,212,157,214,72,242,121,3,55,254,105,205,226,8,1,10,46,103,100,112,114,45,98,111,100,121,2,1,170,202,135,86,0,1,16,91,99,108,97,115,115,94,61,34,103,100,112,114,95,34,93,2,2,18,126,124,1,117,100,17,28,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,34,93,2,1,190,220,39,223,8,1,8,46,111,118,101,114,76,97,121,2,3,60,249,5,185,129,113,205,169,242,87,204,87,8,1,14,46,67,111,111,107,105,101,67,111,110,115,101,110,116,2,71,3,202,121,182,13,203,17,94,13,220,236,86,20,186,77,42,22,230,50,142,33,97,98,5,37,111,173,197,37,144,105,177,39,83,51,80,47,144,127,58,47,218,151,1,55,11,115,23,55,181,90,37,55,213,63,156,65,100,46,54,70,204,191,249,72,202,25,68,78,14,44,234,78,94,144,211,80,19,11,163,80,41,202,77,80,131,73,155,81,88,186,92,86,39,4,179,89,232,152,129,92,106,44,16,94,72,255,49,95,116,21,187,106,34,13,109,106,251,165,44,109,4,185,91,109,196,229,60,109,224,98,19,110,52,206,142,113,108,228,198,118,79,197,149,118,231,77,165,119,207,14,89,121,7,84,23,123,200,253,239,125,243,225,113,127,39,131,20,127,237,208,76,127,240,52,61,128,35,254,75,139,92,216,48,150,235,204,44,156,216,17,166,157,201,203,24,160,144,137,79,161,143,176,122,170,85,243,232,180,62,173,1,181,8,244,191,182,132,11,61,182,162,252,114,188,32,79,115,191,131,253,237,193,179,102,88,201,137,123,107,202,50,46,123,204,209,5,247,209,240,27,92,228,23,108,159,233,123,241,0,235,125,148,172,243,93,248,68,245,27,70,218,246,13,217,48,250,197,193,210,254,46,3,176,8,1,21,46,109,45,115,109,97,114,116,98,97,114,45,99,111,110,116,97,105,110,101,114,2,3,103,106,226,202,126,158,181,96,204,60,16,74,16,1,14,35,112,111,108,105,99,121,45,114,105,98,98,111,110,2,4,57,7,214,194,218,131,5,69,239,195,212,59,245,66,72,156,16,1,21,35,111,110,101,116,114,117,115,116,45,99,111,110,115,101,110,116,45,115,100,107,2,120,3,158,31,168,4,41,174,20,5,75,47,209,7,48,134,127,14,151,112,44,15,140,132,187,17,37,14,101,17,121,30,224,22,66,235,138,26,201,190,39,26,201,193,25,37,208,98,149,38,156,253,176,38,156,254,76,38,157,25,55,38,157,28,48,38,157,76,97,38,157,170,98,38,157,171,222,38,244,159,189,44,204,26,97,49,13,238,244,49,201,169,236,56,98,226,5,60,19,244,115,64,253,111,180,65,255,187,251,66,127,87,151,70,178,137,89,71,85,102,110,72,102,106,29,72,245,227,226,73,8,226,49,74,41,218,104,77,172,239,103,78,27,28,108,78,105,197,223,82,5,29,176,86,19,41,21,86,35,200,87,91,17,129,193,91,18,92,161,91,52,44,223,94,100,239,142,94,135,89,93,95,140,136,155,98,206,145,147,100,67,121,150,102,69,191,87,102,109,12,59,106,200,204,131,108,122,162,124,109,254,10,30,110,253,209,117,111,93,22,148,122,249,68,184,123,18,30,187,123,138,218,104,125,12,244,184,125,134,67,200,126,9,214,225,126,76,231,94,126,232,182,81,126,241,220,179,127,1,174,185,127,174,27,255,128,104,78,33,129,67,109,232,129,189,191,56,136,147,135,170,144,195,247,70,148,185,233,25,148,187,41,71,148,188,9,210,148,188,25,84,148,192,208,239,154,84,226,2,156,172,32,174,160,164,8,195,162,86,76,24,169,183,71,74,170,93,69,209,171,137,76,163,172,132,41,90,175,84,158,54,176,219,62,84,177,41,194,176,177,147,32,170,177,246,198,148,177,255,9,102,180,58,230,102,182,131,6,250,184,12,230,93,187,115,160,68,188,123,73,78,194,104,65,144,194,197,249,237,194,197,253,15,194,197,253,34,197,156,210,37,197,215,202,131,199,184,214,65,203,80,119,158,203,172,99,165,205,108,43,59,205,143,21,30,206,252,7,234,208,121,149,103,208,210,15,28,218,183,250,107,218,225,138,167,224,32,167,108,224,37,255,69,225,197,85,78,227,62,88,242,234,172,203,27,239,83,149,118,245,72,107,29,249,252,244,125,253,242,131,140,8,1,24,46,111,110,101,116,114,117,115,116,45,112,99,45,100,97,114,107,45,102,105,108,116,101,114,2,93,3,158,31,168,4,41,174,20,14,151,112,44,15,140,132,187,17,37,14,101,17,121,30,224,26,201,190,39,26,201,193,25,37,208,98,149,38,156,253,176,38,156,254,76,38,157,25,55,38,157,28,48,38,157,76,97,38,157,171,222,44,204,26,97,49,13,238,244,49,201,169,236,64,253,111,180,65,255,187,251,66,127,87,151,71,85,102,110,72,245,227,226,73,8,226,49,74,41,218,104,77,172,239,103,78,27,28,108,78,105,197,223,82,5,29,176,86,19,41,21,91,17,129,193,91,18,92,161,91,52,44,223,94,100,239,142,94,135,89,93,98,206,145,147,102,69,191,87,102,109,12,59,106,200,204,131,108,122,162,124,109,254,10,30,111,93,22,148,122,249,68,184,123,18,30,187,123,138,218,104,125,12,244,184,126,9,214,225,126,76,231,94,126,232,182,81,126,241,220,179,127,1,174,185,127,174,27,255,128,104,78,33,129,67,109,232,129,189,191,56,136,147,135,170,144,195,247,70,148,185,233,25,148,187,41,71,148,188,9,210,148,188,25,84,156,172,32,174,162,86,76,24,169,183,71,74,170,93,69,209,171,137,76,163,172,132,41,90,176,219,62,84,177,41,194,176,177,147,32,170,177,246,198,148,177,255,9,102,180,58,230,102,187,115,160,68,188,123,73,78,194,104,65,144,194,197,249,237,194,197,253,15,194,197,253,34,197,156,210,37,197,215,202,131,199,184,214,65,205,108,43,59,206,252,7,234,208,121,149,103,208,210,15,28,218,183,250,107,218,225,138,167,224,37,255,69,227,62,88,242,234,172,203,27,245,72,107,29,253,242,131,140,8,1,6,46,109,111,100,97,108,2,128,0,0,0,165,0,189,124,120,0,192,211,79,1,229,135,67,3,159,60,142,4,233,97,237,4,242,24,197,5,72,204,170,6,164,208,233,8,25,212,72,9,104,15,90,11,169,105,166,14,66,51,93,14,129,2,225,15,173,137,167,17,107,90,41,17,130,222,201,20,26,200,158,20,32,33,89,21,248,124,245,22,145,136,160,24,175,31,98,26,56,30,59,28,221,2,18,29,188,7,30,30,14,22,250,30,96,104,162,32,1,227,241,33,80,146,145,34,34,243,187,34,79,214,93,34,131,63,120,34,198,122,43,35,127,86,145,35,184,177,44,42,140,90,167,43,16,107,230,43,209,114,79,44,52,3,17,45,14,205,208,46,180,161,105,46,238,187,49,49,217,34,211,51,98,231,136,54,180,72,27,57,225,64,90,61,81,190,179,61,248,217,235,64,164,194,251,65,215,249,88,66,194,126,196,67,3,213,18,68,41,79,192,73,226,79,157,75,253,74,87,76,198,121,185,80,72,12,70,81,145,108,213,82,33,51,198,83,214,192,6,84,8,203,174,84,127,245,138,87,88,226,38,88,61,100,102,90,205,36,145,90,238,107,188,92,42,210,27,95,13,237,16,97,117,99,27,101,87,65,28,101,127,108,20,101,132,63,87,101,210,93,36,101,226,105,219,102,49,176,161,103,2,87,118,104,39,95,50,105,2,131,193,106,115,81,41,107,41,223,235,108,83,159,74,108,116,132,139,109,71,245,121,109,140,214,118,111,5,122,60,111,228,85,16,115,59,182,17,126,93,133,198,132,101,195,223,141,211,69,119,144,69,82,94,145,248,86,173,147,182,207,224,149,159,209,231,152,162,111,59,156,162,204,175,158,149,29,96,161,198,239,138,162,56,250,237,162,249,54,85,166,60,186,99,166,60,222,159,166,164,177,167,167,227,79,248,168,194,106,140,172,97,217,65,172,207,119,224,173,51,246,197,173,71,52,58,174,107,105,249,174,210,13,111,178,112,18,40,179,65,109,177,182,117,18,103,182,195,106,131,183,45,84,249,186,107,17,254,187,25,69,145,187,38,81,205,187,226,83,131,187,253,228,126,189,190,123,72,194,147,38,144,194,205,173,229,195,7,81,205,195,69,152,69,195,82,141,152,196,218,32,200,199,79,125,219,202,190,235,36,204,157,50,244,206,86,137,190,207,131,161,11,210,198,60,10,212,86,151,141,213,180,132,234,214,183,103,100,218,181,166,167,219,76,15,222,221,129,219,10,222,250,175,32,223,119,96,155,224,60,102,111,225,5,254,191,225,13,48,34,225,191,170,137,228,47,231,119,228,58,67,63,231,35,242,143,231,43,220,56,232,237,141,50,233,17,6,6,235,184,247,146,239,30,247,238,240,121,83,138,242,231,181,177,247,160,64,74,251,79,199,244,251,139,35,30,252,133,56,20,252,138,20,17,253,95,63,170,253,151,101,154,254,134,142,70,254,148,249,134,255,198,122,239,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,128,0,0,0,243,0,192,211,79,1,229,135,67,3,159,60,142,4,233,97,237,4,242,24,197,5,72,204,170,6,164,208,233,8,25,212,72,9,104,15,90,11,169,105,166,14,66,51,93,15,33,191,248,15,53,53,218,17,107,90,41,17,130,222,201,20,32,33,89,21,35,236,219,24,175,31,98,27,157,249,141,29,188,7,30,32,1,227,241,33,80,146,145,34,34,243,187,34,79,214,93,34,83,237,111,34,206,177,60,35,92,169,147,35,127,86,145,35,184,177,44,36,103,225,56,42,140,90,167,43,16,107,230,43,209,114,79,44,52,3,17,45,14,205,208,45,55,82,103,45,144,167,87,48,36,173,173,49,217,34,211,51,98,231,136,51,204,96,24,51,253,84,211,54,180,72,27,55,117,221,16,56,78,165,21,56,195,179,253,57,191,235,67,58,152,173,105,58,212,140,215,61,81,190,179,64,164,194,251,65,215,249,88,66,67,236,43,66,194,126,196,66,198,134,223,73,226,79,157,74,142,133,39,75,162,101,145,75,222,199,67,78,207,96,131,79,197,118,65,79,221,60,136,80,72,12,70,81,145,108,213,82,33,51,198,83,214,192,6,84,127,245,138,86,67,80,189,87,88,226,38,88,43,165,51,88,61,100,102,89,227,215,8,90,205,36,145,91,177,146,105,93,47,27,182,94,174,39,139,95,13,237,16,95,41,152,184,97,117,99,27,97,246,26,174,99,9,92,77,101,87,65,28,101,127,108,20,101,186,90,29,101,210,93,36,101,226,105,219,102,49,176,161,103,2,87,118,103,49,1,21,104,41,54,154,106,115,81,41,107,41,223,235,107,87,195,141,107,154,114,250,107,188,188,57,108,83,159,74,108,116,132,139,109,71,245,121,109,140,214,118,110,15,3,85,110,104,63,253,111,228,85,16,112,73,232,230,113,152,111,136,114,56,28,78,115,59,182,17,117,165,179,145,118,216,214,46,121,144,180,32,123,96,103,218,124,176,103,177,126,93,133,198,126,191,91,224,130,241,184,66,132,101,195,223,134,23,158,149,134,75,56,60,134,153,48,64,136,75,22,141,136,215,171,20,138,1,44,147,143,26,226,16,144,69,82,94,144,209,206,99,145,186,254,191,145,248,86,173,146,58,53,116,147,182,207,224,147,212,203,187,150,227,144,214,151,140,116,181,152,162,111,59,158,149,29,96,159,39,243,174,159,250,240,230,161,198,239,138,162,101,167,14,162,249,54,85,165,81,215,6,166,60,186,99,166,60,222,159,166,164,177,167,167,15,183,49,167,227,79,248,170,6,17,40,171,134,83,120,172,134,124,44,172,207,119,224,173,51,246,197,173,71,52,58,174,107,105,249,174,210,13,111,175,230,129,230,176,193,147,239,177,148,162,3,178,112,18,40,179,65,109,177,182,87,239,30,182,117,18,103,183,45,84,249,185,47,247,128,186,223,36,101,187,38,81,205,187,226,83,131,188,183,170,162,189,190,123,72,190,148,85,52,190,166,218,36,191,97,246,17,194,147,38,144,194,245,20,189,195,7,81,205,195,82,141,152,196,218,32,200,196,239,105,219,197,204,117,59,201,56,212,102,201,58,135,246,201,67,232,234,201,182,245,56,202,72,46,125,203,127,182,97,204,88,34,17,204,157,50,244,206,86,137,190,210,198,60,10,212,229,33,114,213,198,254,229,214,118,186,140,214,183,103,100,217,151,132,155,217,223,44,6,218,181,166,167,219,76,15,222,220,10,49,194,221,2,97,73,223,119,96,155,225,5,254,191,225,253,118,126,226,153,148,220,228,47,231,119,228,58,67,63,229,29,86,27,231,35,242,143,231,43,220,56,232,237,141,50,233,17,6,6,234,206,175,77,234,231,178,189,235,49,15,164,235,184,247,146,236,163,130,84,236,212,170,195,237,173,190,158,237,189,153,66,238,82,59,7,239,64,42,56,240,121,83,138,242,231,113,57,242,231,181,177,243,47,48,223,244,101,202,76,245,239,119,126,246,213,127,253,247,160,64,74,247,185,12,184,247,233,243,49,248,10,212,234,248,128,208,117,249,109,101,240,251,79,199,244,251,139,35,30,251,154,19,182,252,3,162,87,252,19,8,146,252,138,20,17,252,192,243,132,253,63,11,30,253,151,101,154,254,134,142,70,254,148,249,134,255,102,226,120,255,198,122,239,8,1,14,46,99,111,111,107,105,101,45,98,97,110,110,101,114,2,87,0,88,51,52,4,186,134,213,9,59,146,55,9,81,247,251,14,26,82,84,14,90,111,192,27,7,19,185,27,110,230,46,28,20,37,149,30,37,167,134,38,162,156,1,41,211,122,244,43,100,155,112,55,14,235,93,55,188,117,125,57,204,207,112,64,74,14,140,64,223,46,245,66,46,160,42,66,152,181,189,69,92,176,198,73,38,201,123,78,131,248,25,80,206,255,115,80,218,72,154,83,129,208,4,90,165,58,92,93,145,71,205,99,157,209,234,99,183,103,121,101,33,75,83,103,173,66,78,111,152,74,57,114,85,30,15,116,40,51,195,117,32,87,102,120,185,12,195,120,207,55,185,124,140,240,83,127,242,77,183,127,251,193,173,129,141,204,3,132,55,252,19,133,213,141,122,136,36,181,135,137,190,34,138,139,109,21,198,142,187,249,45,145,16,255,231,149,24,177,95,154,209,149,52,156,85,171,145,156,106,8,248,156,200,189,185,158,140,67,1,161,133,11,46,165,153,207,196,169,49,239,73,171,134,149,125,171,175,114,85,172,17,100,154,172,158,40,65,173,207,166,9,179,21,157,5,180,77,38,184,184,67,188,40,186,2,9,226,186,136,79,0,202,48,124,31,204,43,204,95,206,94,74,71,211,234,197,212,215,102,1,102,215,218,91,161,218,39,161,115,224,231,207,183,226,216,197,151,228,244,158,219,229,252,62,60,230,80,33,172,243,189,78,22,244,24,40,28,246,170,202,185,248,2,166,155,251,162,75,18,252,16,63,56,253,155,103,67,16,1,21,35,67,121,98,111,116,67,111,111,107,105,101,98,111,116,68,105,97,108,111,103,2,26,8,178,136,16,12,207,215,243,19,155,89,114,40,95,120,157,48,201,94,220,111,128,75,49,121,230,127,219,125,136,221,1,125,149,154,250,140,118,240,181,149,240,201,58,165,203,190,3,169,56,43,225,189,42,168,76,199,239,115,245,204,48,243,60,210,85,140,119,214,151,208,156,217,237,95,228,219,29,87,135,222,151,29,176,232,142,189,121,239,219,42,5,242,231,162,98,244,122,248,3,251,143,88,37,8,1,15,46,99,45,99,111,111,107,105,101,45,112,111,112,117,112,2,3,1,132,149,52,111,7,154,136,149,170,112,232,16,1,13,35,109,111,100,97,108,45,99,111,111,107,105,101,2,11,1,216,232,155,148,186,155,92,168,209,122,96,176,193,147,239,190,190,181,101,211,74,107,124,219,183,97,84,222,127,7,14,224,32,118,130,231,90,231,159,248,128,208,117,16,1,14,35,99,111,111,107,105,101,95,95,109,111,100,97,108,2,1,141,29,222,7,16,1,9,35,98,108,117,101,109,97,115,107,2,3,129,140,243,111,184,197,138,252,242,114,14,38,8,1,5,46,116,98,111,120,2,3,129,140,243,111,184,197,138,252,242,114,14,38,8,1,21,46,100,105,115,99,108,97,105,109,101,114,45,99,111,110,116,97,105,110,101,114,2,5,107,218,227,205,127,221,228,143,188,103,75,78,200,248,202,214,221,40,221,125,8,1,9,46,99,99,45,108,97,121,101,114,2,3,45,103,54,159,86,154,82,100,137,113,71,58,16,1,5,35,103,100,112,114,2,29,16,206,254,70,36,19,133,139,43,105,152,128,53,35,11,122,57,14,152,8,70,91,100,241,73,92,111,165,73,219,100,248,75,241,152,108,86,144,117,70,89,242,115,77,91,55,133,7,95,243,48,48,98,56,242,111,98,238,166,229,101,107,92,228,102,181,184,8,127,76,121,198,129,202,217,29,153,147,105,151,160,58,79,176,187,213,170,59,205,67,55,47,210,229,181,168,215,32,53,13,224,93,5,30,229,161,84,51,241,219,132,50,251,190,48,26,16,1,12,35,103,100,112,114,79,118,101,114,108,97,121,2,1,45,118,41,177,0,1,21,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,34,93,2,3,5,200,159,26,59,188,135,24,81,151,209,154,16,1,12,35,103,100,112,114,111,118,101,114,108,97,121,2,1,23,177,96,24,16,1,5,35,95,105,67,68,2,14,20,17,196,178,43,30,137,213,97,141,236,220,103,24,207,26,148,106,131,137,149,249,103,81,152,23,199,198,160,116,95,62,188,38,92,40,189,1,244,61,206,58,183,134,206,58,217,52,206,133,23,58,206,140,52,21,8,1,6,46,109,111,100,97,108,2,6,23,82,34,117,78,71,181,183,81,151,5,73,92,7,133,253,187,188,162,21,220,162,106,109,16,1,11,35,103,100,112,114,45,109,111,100,97,108,2,13,10,225,42,242,52,95,136,206,69,118,230,69,80,126,156,12,109,109,132,136,117,60,36,217,137,40,210,15,163,207,55,63,173,141,23,156,186,68,150,66,199,152,128,141,206,129,195,203,252,192,243,132,8,1,11,46,103,100,112,114,45,109,111,100,97,108,2,13,10,148,220,170,13,128,150,186,32,184,184,149,35,244,238,80,64,21,80,11,69,140,89,16,86,141,189,171,128,98,65,155,167,49,18,25,174,53,243,212,202,186,251,10,202,187,84,156,233,205,179,196,8,1,15,46,103,100,112,114,45,99,111,110,116,97,105,110,101,114,2,6,55,3,67,147,55,15,136,29,55,174,78,15,57,225,211,73,115,158,37,187,149,115,26,33,8,1,13,46,99,111,110,115,101,110,116,109,111,100,97,108,2,3,22,183,168,51,74,92,135,118,192,246,196,3,16,1,8,35,112,114,105,118,97,99,121,2,11,11,80,164,50,25,38,45,154,30,196,169,164,101,240,55,121,135,13,51,238,178,12,167,66,190,81,40,72,206,125,124,240,237,6,148,129,242,231,108,212,254,47,72,15,8,1,8,46,112,114,105,118,97,99,121,2,13,1,18,3,105,1,18,51,62,29,166,164,182,42,222,76,254,65,106,140,21,94,212,109,55,117,161,71,112,119,34,108,17,162,115,26,155,174,158,178,195,187,25,245,236,202,88,32,203,206,211,10,114,8,1,15,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,2,18,28,11,82,86,39,169,183,86,62,66,123,178,82,252,0,234,83,210,214,123,91,62,86,212,91,207,224,57,104,224,150,250,127,45,127,193,159,209,240,254,168,100,138,245,173,138,11,135,188,60,168,128,203,73,2,158,216,97,4,118,232,74,46,68,244,227,182,152,255,64,21,219,16,1,15,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,2,5,1,17,21,232,62,148,81,140,198,119,186,96,209,97,237,42,255,161,201,246,8,1,22,46,99,100,107,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,2,39,4,51,252,17,10,29,43,130,12,248,250,171,15,124,124,100,27,191,48,196,40,42,116,229,40,166,241,87,79,140,45,126,80,13,91,211,81,18,195,183,90,38,139,243,92,71,73,205,93,132,27,114,94,76,5,45,97,141,83,35,97,249,62,187,106,12,23,248,107,214,187,13,108,75,171,80,116,47,14,11,124,102,74,254,130,155,96,228,148,81,53,25,149,237,58,107,156,189,55,122,166,130,220,204,166,130,221,229,166,130,224,115,168,36,71,230,177,209,25,91,190,168,88,117,202,41,137,48,209,233,85,77,217,156,139,141,219,225,95,116,229,7,243,54,229,7,243,56,230,80,179,206,242,231,22,224,16,1,14,35,99,100,107,45,111,118,101,114,108,97,121,45,48,2,2,145,118,143,205,231,40,71,14,8,1,16,46,116,114,97,99,107,105,110,103,109,97,110,97,103,101,114,2,6,58,62,224,78,104,244,182,218,145,170,255,45,160,30,240,119,183,86,158,250,230,133,50,12,16,1,14,35,112,100,99,99,45,109,111,100,97,108,45,98,103,2,3,38,216,35,206,109,146,225,50,138,4,198,245,8,1,21,46,115,113,115,45,97,110,110,111,117,110,99,101,109,101,110,116,45,98,97,114,2,4,36,105,172,222,131,190,51,199,191,210,163,244,212,151,40,254,16,1,6,35,107,108,97,114,111,2,82,0,225,101,117,1,144,198,40,1,160,67,91,1,164,133,85,3,73,45,42,4,136,242,65,5,91,83,194,5,181,121,115,7,47,152,29,7,223,192,38,12,148,89,198,12,172,23,168,21,253,252,225,34,176,9,31,35,49,138,79,36,190,43,56,37,134,172,54,38,55,106,39,42,218,59,31,46,33,176,158,49,159,235,245,54,243,244,13,59,90,193,173,61,145,208,229,69,210,193,106,70,52,153,67,70,153,72,126,71,86,201,119,76,108,53,158,80,205,248,35,86,161,173,60,92,81,18,11,94,61,151,109,98,33,177,168,98,195,66,105,105,14,1,126,130,96,9,189,135,14,67,170,141,116,56,218,141,248,253,99,143,64,212,228,143,110,122,222,148,109,121,133,149,230,134,51,152,28,28,70,157,111,182,72,158,205,157,95,158,253,132,152,160,163,196,249,161,240,30,111,163,128,97,119,168,220,153,33,169,81,203,219,172,91,24,173,178,72,170,150,179,0,78,131,179,181,242,192,182,171,104,5,187,188,62,153,191,123,188,245,192,207,52,169,195,82,90,178,201,203,64,167,203,98,150,195,203,158,49,176,204,36,100,134,204,154,232,253,206,251,71,30,207,60,117,21,212,143,174,0,217,103,39,13,219,7,106,234,219,185,35,205,221,166,114,118,226,40,192,21,227,3,226,88,229,66,112,28,231,170,29,200,240,13,63,170,246,29,244,192,252,195,248,186,253,58,169,247,8,1,6,46,107,108,97,114,111,2,7,36,18,226,202,98,208,87,127,145,1,158,93,151,219,168,137,223,105,98,59,242,117,33,77,254,136,104,182,8,1,13,46,107,108,97,114,111,45,98,117,116,116,111,110,2,1,158,152,14,105,16,1,3,35,99,99,2,18,7,190,25,114,15,171,99,136,27,100,117,166,62,202,206,102,64,95,107,161,73,6,129,190,84,114,154,104,113,151,46,15,115,42,220,80,137,135,211,182,154,27,147,191,165,1,222,139,171,137,230,182,207,185,74,200,216,34,162,145,242,230,254,98,242,231,160,253,251,36,12,55,8,1,11,46,98,103,45,111,118,101,114,108,97,121,2,4,21,252,22,100,58,238,95,184,76,202,202,146,173,32,226,62,8,1,10,46,99,99,45,119,105,110,100,111,119,2,4,21,252,22,100,58,238,95,184,76,202,202,146,173,32,226,62,8,1,19,46,99,111,111,107,105,101,115,95,95,99,111,110,116,97,105,110,101,114,2,6,9,239,1,88,50,33,138,55,52,10,77,161,132,159,184,4,201,159,226,148,224,92,157,162,16,1,6,35,112,111,112,117,112,2,15,7,223,184,199,45,18,83,127,56,98,173,250,73,244,35,27,94,130,59,198,102,173,225,128,123,34,33,205,149,159,88,149,163,200,64,146,201,146,53,14,211,231,48,6,214,239,228,41,216,242,106,32,235,132,185,242,236,31,204,202,8,1,26,46,112,111,115,102,46,114,101,97,99,116,45,111,110,99,108,105,99,107,111,117,116,115,105,100,101,2,4,17,250,161,128,24,56,205,49,82,252,142,34,255,184,39,225,0,1,22,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,80,111,112,117,112,34,93,2,11,31,121,142,195,75,68,4,172,103,253,15,105,121,201,133,98,139,73,2,136,184,10,0,138,185,13,128,148,186,44,176,5,189,107,57,148,203,188,208,163,239,67,136,13,8,1,12,46,99,111,111,107,105,101,45,104,105,110,116,2,11,1,110,251,123,27,121,134,94,50,227,169,45,75,161,9,1,78,241,72,165,112,245,79,218,125,181,65,96,146,23,191,188,199,156,197,248,246,21,60,37,249,247,171,27,0,1,24,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,66,97,110,110,101,114,34,93,2,3,10,111,77,21,172,205,217,84,223,93,203,1,8,1,8,46,98,108,111,99,107,101,114,2,3,16,211,132,6,162,183,214,241,228,154,123,121,0,1,24,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,67,111,110,115,101,110,116,34,93,2,7,52,151,132,111,101,255,231,243,208,10,10,51,214,154,11,183,220,89,74,96,233,123,241,0,242,81,116,195,8,1,6,46,97,108,101,114,116,2,128,0,0,0,146,4,11,248,162,11,118,94,9,14,156,223,9,15,81,151,168,18,99,45,127,25,161,189,41,27,89,202,169,28,125,177,0,29,218,133,122,31,254,61,243,33,71,224,84,33,160,130,225,34,214,56,179,35,137,251,213,36,170,57,5,36,227,21,113,37,62,137,144,38,209,249,108,40,111,129,201,41,198,221,243,51,50,195,9,52,0,139,153,52,207,213,60,54,19,83,220,54,104,46,53,54,218,56,236,56,167,235,207,56,199,139,71,58,141,2,112,59,69,252,79,61,41,30,26,61,124,227,241,61,183,87,44,63,37,158,162,64,179,254,1,64,252,15,207,66,157,82,89,69,79,71,110,71,85,38,185,73,30,148,141,73,83,152,207,75,114,139,7,76,60,248,204,76,246,105,243,78,221,149,212,79,87,216,245,83,201,78,213,86,54,65,23,86,194,122,75,89,136,222,8,89,146,218,70,89,199,221,73,90,65,251,239,91,230,135,26,95,194,55,141,97,130,145,247,106,108,78,164,106,239,111,156,107,165,198,38,109,5,101,247,115,222,55,250,117,97,216,186,123,207,16,212,125,14,120,145,126,9,57,104,127,58,62,93,128,180,20,20,129,38,78,50,131,21,241,13,131,109,110,243,137,110,48,243,139,108,206,144,141,124,157,137,142,239,90,235,143,205,167,200,144,52,69,149,148,9,13,99,148,188,103,205,148,201,245,59,150,237,254,238,154,37,221,35,156,122,18,7,157,130,42,1,159,252,52,56,161,65,70,94,162,158,16,163,163,136,182,171,163,184,243,51,164,184,204,125,164,255,127,202,167,192,244,229,170,172,148,28,172,72,175,249,172,131,84,250,172,228,118,39,174,189,101,176,177,83,181,243,179,55,251,252,179,86,47,138,179,206,219,80,180,55,159,29,181,250,178,116,183,198,101,246,184,87,13,57,187,207,114,131,187,223,239,129,188,247,33,140,189,87,235,215,193,67,149,160,193,178,159,18,197,117,159,167,197,123,233,20,200,146,16,97,201,194,253,29,202,105,118,213,202,210,169,178,203,68,75,80,203,133,227,192,206,10,13,41,207,129,192,75,211,79,59,19,212,229,21,192,213,182,33,94,216,63,119,169,216,132,6,198,221,171,224,169,222,179,231,49,225,23,202,242,226,190,112,223,230,36,243,184,233,2,19,40,234,144,119,47,237,39,101,138,238,10,5,216,238,160,15,140,238,209,25,44,239,178,44,162,239,219,212,129,243,14,17,227,244,99,0,119,245,46,117,216,246,18,250,206,246,225,8,159,250,42,142,238,250,175,33,185,254,178,155,186,0,1,23,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,66,97,110,110,101,114,34,93,2,6,68,195,50,244,87,187,104,1,101,237,129,170,102,2,26,163,129,23,154,99,147,180,3,142,0,1,22,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,95,34,93,2,8,55,2,35,168,126,200,54,78,178,95,250,90,202,1,252,228,223,111,226,208,239,51,143,214,240,203,67,7,250,228,183,94,0,1,26,100,105,118,91,99,108,97,115,115,42,61,34,67,111,111,107,105,101,66,97,110,110,101,114,34,93,2,43,4,30,174,79,6,91,166,13,11,228,72,136,32,131,209,198,36,202,164,161,40,29,209,55,46,186,135,32,55,4,143,162,63,111,161,24,72,199,218,252,81,1,25,60,93,152,211,245,94,177,122,233,94,234,8,127,95,88,207,232,96,59,215,123,99,68,223,159,100,202,210,99,103,214,46,46,111,61,205,74,124,68,80,207,126,17,119,49,128,56,80,214,129,77,138,206,129,141,10,224,129,187,159,177,133,163,92,6,133,174,64,248,147,193,224,161,148,186,26,182,162,106,176,202,168,114,58,215,173,17,34,98,181,159,156,8,188,72,192,103,195,8,112,98,197,139,7,144,227,100,164,193,228,150,40,215,232,103,100,181,242,150,171,180,247,9,147,210,254,128,40,223,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,97,110,110,101,114,95,34,93,2,7,39,17,29,79,51,57,161,25,66,35,239,0,144,217,241,48,162,180,150,226,174,57,121,222,174,166,118,84,0,1,32,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,97,110,110,101,114,115,116,121,108,101,95,34,93,2,26,0,192,183,141,9,234,253,246,15,171,119,45,22,220,15,249,30,50,136,213,44,127,69,238,67,79,198,149,71,32,93,157,89,236,163,107,91,57,104,218,96,47,204,158,98,127,57,123,99,214,89,168,103,192,125,89,135,169,196,152,142,148,45,72,161,80,102,244,167,201,74,147,174,80,0,241,190,41,160,148,204,136,62,117,212,157,47,232,214,73,140,219,216,208,151,250,230,232,189,196,231,230,111,192,8,1,14,46,97,99,116,105,118,101,46,108,101,103,97,99,121,2,4,35,113,77,225,57,1,88,40,165,106,14,116,198,234,192,63,8,1,28,46,97,109,103,100,112,114,99,111,111,107,105,101,45,109,111,100,97,108,45,116,101,109,112,108,97,116,101,2,1,153,161,75,7,8,1,24,46,98,111,116,116,111,109,45,48,46,112,111,115,105,116,105,111,110,45,102,105,120,101,100,2,7,0,189,226,107,32,142,75,212,65,237,76,156,113,32,42,139,159,25,53,132,173,214,70,160,189,184,206,143,8,1,16,46,98,111,116,116,111,109,45,48,46,108,101,102,116,45,48,2,1,166,130,23,96,8,1,17,46,98,111,116,116,111,109,45,48,46,114,105,103,104,116,45,48,2,2,39,200,65,115,51,50,195,9,8,1,18,46,98,111,116,116,111,109,45,48,46,114,101,108,97,116,105,118,101,2,1,48,132,253,89,8,1,15,46,98,111,116,116,111,109,45,48,46,102,105,120,101,100,2,128,0,0,0,178,0,104,30,59,0,228,176,124,1,249,239,127,2,211,12,158,3,195,40,130,4,30,14,52,5,36,148,200,8,153,70,125,9,29,54,25,9,124,9,6,11,201,49,121,13,40,189,66,13,88,154,61,13,192,53,153,14,33,113,170,17,103,99,151,18,149,215,133,20,219,117,133,21,25,36,168,27,162,245,67,29,120,146,223,29,223,182,82,29,226,179,212,33,155,222,234,37,105,48,205,38,145,161,84,39,65,31,111,41,237,241,45,45,133,199,70,47,154,205,227,48,91,214,148,49,217,114,11,50,107,241,181,52,91,51,207,53,64,158,254,54,195,220,17,55,216,115,69,56,39,123,52,58,85,66,230,59,190,4,35,60,117,114,203,61,11,92,120,63,213,196,169,65,47,44,100,65,193,86,37,68,75,10,161,71,145,244,98,75,247,233,177,76,34,241,12,77,38,15,102,79,175,66,119,80,64,160,98,82,254,134,211,87,135,203,254,88,28,55,249,88,240,67,55,89,175,43,152,89,205,171,169,91,116,112,169,93,133,123,66,94,158,214,121,97,187,82,48,97,243,105,152,98,166,255,120,99,102,59,141,100,106,11,2,104,122,194,128,105,252,98,225,107,77,111,58,107,249,146,99,110,150,76,177,112,196,240,99,113,242,135,96,115,229,50,148,116,9,68,211,117,93,113,184,119,123,93,13,121,123,181,5,121,156,250,156,121,205,58,222,126,17,117,140,126,22,127,250,126,166,212,42,126,171,186,214,129,141,10,224,130,77,153,241,133,72,214,216,134,106,244,124,137,252,37,46,141,156,56,143,142,90,214,178,142,250,77,247,144,157,55,89,146,197,168,247,148,11,106,241,148,180,44,231,148,181,249,70,148,186,106,92,148,188,38,157,148,192,2,231,148,192,49,136,148,193,134,168,149,40,141,252,150,50,112,239,153,71,9,219,153,81,210,247,153,93,219,127,158,91,188,176,158,94,197,61,158,96,206,212,158,229,230,121,161,31,42,93,161,172,206,248,167,4,97,203,167,172,30,53,169,5,85,94,170,39,33,38,172,46,15,251,174,96,236,26,175,86,233,89,176,74,149,227,178,149,206,22,180,67,28,94,182,171,230,78,182,175,155,193,183,174,97,251,186,128,229,251,187,22,12,234,188,9,109,139,190,46,1,117,190,147,226,187,192,68,212,71,192,79,91,46,194,85,149,191,194,253,34,79,199,7,121,185,199,134,35,85,202,75,166,161,203,77,8,239,205,67,183,140,207,83,2,76,209,9,31,91,209,59,55,29,211,228,244,41,212,117,51,110,212,135,204,164,214,181,180,53,214,202,102,182,214,254,107,227,215,46,244,9,216,96,18,168,217,146,39,136,217,181,109,124,220,158,3,91,221,19,139,32,221,68,108,226,222,91,228,109,222,166,98,73,224,139,67,59,227,199,113,146,228,228,246,127,230,98,175,235,230,134,34,254,230,176,199,170,232,196,197,191,235,70,110,159,235,163,11,77,237,62,144,58,241,4,48,132,241,139,203,175,243,157,184,40,244,28,15,123,246,71,116,135,248,31,73,150,248,84,5,162,248,125,9,182,252,21,30,233,253,83,106,240,8,1,9,46,98,111,116,116,111,109,45,50,2,8,55,13,149,91,56,66,210,111,69,55,10,218,86,41,39,88,115,174,163,53,132,163,159,127,177,26,129,46,248,36,19,75,8,1,9,46,98,111,116,116,111,109,45,54,2,3,67,130,123,39,111,173,136,183,112,49,211,139,8,1,9,46,98,111,116,116,111,109,45,53,2,8,26,181,37,17,30,172,111,41,38,138,95,6,55,221,15,134,93,191,12,69,112,43,197,179,196,104,106,13,243,109,146,13,8,1,9,46,98,111,116,116,111,109,45,56,2,6,43,203,12,243,129,61,122,91,138,140,166,80,179,202,38,241,180,46,108,22,185,46,208,76,8,1,9,46,98,111,116,116,111,109,45,52,2,14,18,158,40,192,59,73,104,204,79,128,184,55,91,135,254,205,98,150,240,234,107,232,154,225,126,38,166,35,132,11,133,129,150,121,100,16,172,31,192,24,174,161,13,18,218,76,251,250,228,23,108,159,246,71,116,135,8,1,10,46,98,111,116,116,111,109,45,52,48,2,1,194,125,220,87,8,1,9,46,98,111,116,116,111,109,45,51,2,3,22,15,1,249,133,158,206,229,151,51,109,70,8,1,10,46,98,111,116,116,111,109,45,49,50,2,2,42,142,83,59,206,76,1,161,8,1,10,46,98,111,116,116,111,109,45,49,52,2,1,2,170,157,160,8,1,10,46,98,111,116,116,111,109,45,49,54,2,3,151,203,138,227,193,212,69,158,243,75,197,104,8,1,7,46,98,111,116,116,111,109,2,4,29,141,65,76,51,50,195,9,138,230,147,30,148,181,113,59,8,1,10,46,112,121,45,50,46,112,120,45,50,2,1,22,58,220,56,8,1,16,46,99,111,111,107,105,101,115,95,50,48,50,50,95,98,103,2,3,164,168,90,52,201,85,194,250,217,229,159,17,8,1,7,46,106,71,114,111,119,108,2,6,37,182,21,175,74,85,248,245,122,194,14,141,160,125,59,252,180,226,13,204,246,212,165,251,8,1,13,46,109,111,100,97,108,45,99,111,111,107,105,101,2,23,11,40,247,115,13,221,236,179,17,85,91,0,19,161,121,12,32,101,125,158,47,127,80,201,52,201,125,33,62,249,225,61,65,175,83,174,77,124,41,254,95,15,77,14,102,131,91,211,111,172,28,113,137,163,58,150,154,207,108,149,155,90,54,229,175,74,143,118,182,68,56,79,184,45,136,120,192,13,21,104,202,26,34,93,209,141,27,2,227,65,142,158,8,1,14,46,109,111,100,97,108,45,99,111,111,107,105,101,115,2,26,10,124,17,23,21,93,1,124,30,65,80,35,58,60,165,205,72,1,236,184,78,59,132,34,82,113,186,114,85,191,235,117,98,244,95,169,107,63,194,236,118,53,31,198,124,70,47,203,138,143,170,154,139,82,99,54,145,147,114,226,149,245,236,252,153,97,59,211,165,91,153,57,167,181,178,207,176,244,46,97,194,211,50,50,197,43,232,162,218,135,164,131,226,72,135,131,237,1,61,246,241,210,116,101,8,1,13,46,109,111,100,97,108,99,111,111,107,105,101,115,2,3,84,98,101,83,231,100,173,244,248,81,2,1,16,1,17,35,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,7,8,202,86,97,40,56,112,185,57,254,121,122,80,99,69,153,110,212,112,169,151,202,105,85,157,170,47,29,16,1,12,35,99,111,111,107,105,101,77,111,100,97,108,2,13,14,215,201,232,27,203,68,200,45,55,82,103,47,204,63,128,52,111,39,152,70,10,38,2,88,43,165,51,148,180,233,216,151,193,189,204,181,39,62,49,196,77,29,5,226,163,105,149,226,209,161,183,8,1,13,46,109,111,100,97,108,67,111,111,107,105,101,115,2,4,53,125,29,57,71,155,167,64,178,83,83,113,234,163,243,94,8,1,15,46,110,115,45,116,121,112,101,45,110,111,116,105,99,101,2,7,0,100,161,67,49,169,101,9,86,254,215,87,164,149,231,27,203,183,27,160,250,216,179,213,254,17,202,30,8,1,20,46,99,111,111,107,105,101,87,105,110,100,111,119,87,114,97,112,112,101,114,2,16,12,240,241,97,22,23,113,44,23,51,140,212,37,55,161,104,38,28,60,154,52,29,51,22,66,139,197,87,69,247,225,70,74,143,196,54,86,157,75,68,94,156,116,245,194,140,242,62,195,83,188,43,208,114,234,214,210,85,140,196,219,132,143,119,8,1,10,46,107,45,111,118,101,114,108,97,121,2,20,12,240,241,97,22,23,113,44,23,51,140,212,37,55,161,104,38,28,60,154,43,203,54,233,52,29,51,22,66,139,197,87,69,247,225,70,74,143,196,54,86,157,75,68,94,156,116,245,135,211,124,188,155,209,86,41,194,140,242,62,195,83,188,43,201,69,221,138,208,114,234,214,210,85,140,196,219,132,143,119,16,1,13,35,99,111,111,107,105,101,115,77,111,100,97,108,2,68,6,56,37,175,20,173,137,17,22,53,68,233,24,145,81,147,26,39,168,133,27,88,158,140,31,246,135,113,41,153,45,13,42,109,162,46,47,129,180,185,49,5,114,20,49,117,113,5,51,24,98,234,54,118,28,179,59,89,75,100,64,90,149,96,77,154,30,155,81,138,220,236,86,159,151,68,87,111,26,1,88,137,73,193,93,140,239,221,96,248,24,9,97,132,15,251,99,0,55,232,112,157,167,231,114,156,163,192,116,28,80,152,116,28,139,75,116,32,204,54,117,65,234,108,121,121,126,244,129,71,64,165,131,14,77,176,134,155,128,203,136,75,22,141,138,199,217,27,138,223,45,12,139,107,95,173,140,123,236,142,141,4,130,37,143,65,253,94,147,112,188,194,159,39,243,174,163,201,134,45,166,9,24,5,166,70,39,232,170,139,243,167,171,186,10,162,172,119,107,62,186,232,44,27,194,252,49,157,197,150,49,139,199,5,31,222,201,46,9,244,201,58,135,246,202,108,240,172,203,167,99,128,204,230,223,53,210,13,232,48,218,184,91,32,230,245,188,7,231,234,25,173,231,255,224,46,236,128,24,78,237,143,239,236,242,42,43,35,249,166,230,228,16,1,13,35,109,111,100,97,108,67,111,111,107,105,101,115,2,5,8,121,24,235,12,187,55,121,182,69,15,75,182,244,216,160,229,242,164,69,16,1,12,35,99,111,111,107,105,101,115,50,48,50,48,2,8,0,131,179,179,31,118,53,207,61,94,8,156,135,46,229,174,150,106,207,157,202,31,241,8,243,129,11,69,253,50,58,132,16,1,19,35,99,111,111,107,105,101,115,50,48,50,48,111,118,101,114,108,97,121,2,8,0,131,179,179,31,118,53,207,61,94,8,156,135,46,229,174,150,106,207,157,202,31,241,8,243,129,11,69,253,50,58,132,0,1,23,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,78,111,116,34,93,2,3,50,0,214,157,244,241,151,24,246,207,253,173,16,1,12,35,99,111,111,107,105,101,109,111,100,97,108,2,1,9,15,144,16,8,1,14,46,111,116,80,108,97,99,101,104,111,108,100,101,114,2,43,8,47,150,88,9,225,200,236,14,215,204,34,16,148,40,71,19,202,30,94,20,20,132,15,52,194,7,49,55,44,186,238,66,214,200,27,69,248,0,40,79,97,160,72,79,102,154,50,81,184,42,85,89,158,36,181,105,40,36,96,106,204,212,55,107,238,162,55,111,32,22,65,114,207,250,115,115,132,17,157,127,127,143,173,128,105,169,217,138,144,15,163,139,102,200,35,148,114,117,154,163,60,181,222,168,25,89,224,176,220,89,128,200,235,215,71,205,52,65,107,208,115,95,46,211,209,31,16,213,204,156,242,220,139,70,0,223,88,107,161,226,151,161,254,227,213,155,198,230,12,231,99,235,175,48,195,236,129,14,186,238,37,65,13,249,10,86,76,249,75,41,209,8,1,9,46,99,112,45,112,111,112,117,112,2,1,203,56,30,136,8,1,19,46,99,112,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,203,56,30,136,8,1,16,46,106,115,45,99,111,111,107,105,101,45,112,111,112,117,112,2,3,58,20,20,1,166,48,86,224,187,14,60,74,8,1,13,46,99,111,111,107,105,101,45,109,111,100,97,108,2,48,6,152,141,11,7,249,178,54,12,48,204,54,14,53,29,33,15,200,254,75,15,252,212,51,24,44,98,236,34,95,40,177,47,146,4,82,50,139,2,178,51,51,167,44,57,156,177,163,57,185,206,127,59,172,0,97,60,150,29,115,61,186,5,152,63,172,78,159,69,58,174,222,73,33,159,28,76,155,227,251,79,22,240,35,93,47,27,182,98,208,87,127,103,83,36,8,106,212,49,86,116,25,187,28,121,155,127,138,125,22,59,63,129,187,231,109,131,185,202,161,148,201,201,204,153,46,155,4,162,86,4,218,162,174,75,245,171,192,9,31,173,223,103,208,180,128,11,206,194,30,235,195,197,3,47,183,203,215,71,25,210,148,41,207,213,220,12,215,214,201,26,135,218,120,57,243,221,252,98,61,225,180,90,175,231,168,190,251,239,113,236,143,0,1,26,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,45,109,111,100,97,108,34,93,2,3,78,155,119,132,121,75,111,21,133,42,80,255,8,1,24,46,77,117,105,67,111,110,116,97,105,110,101,114,45,109,97,120,87,105,100,116,104,77,100,2,1,145,10,196,227,8,1,35,46,77,117,105,83,110,97,99,107,98,97,114,45,97,110,99,104,111,114,79,114,105,103,105,110,66,111,116,116,111,109,76,101,102,116,2,6,37,144,125,164,68,175,49,219,72,127,41,107,109,34,65,170,109,168,141,171,143,221,30,198,8,1,37,46,77,117,105,83,110,97,99,107,98,97,114,45,97,110,99,104,111,114,79,114,105,103,105,110,66,111,116,116,111,109,67,101,110,116,101,114,2,12,0,175,81,104,16,56,150,171,58,26,55,192,63,60,225,198,67,185,131,220,69,24,1,223,98,217,91,211,102,253,58,71,105,231,167,123,107,226,215,247,153,151,242,15,210,41,232,31,8,1,34,46,77,117,105,68,114,97,119,101,114,45,112,97,112,101,114,65,110,99,104,111,114,68,111,99,107,101,100,66,111,116,116,111,109,2,3,45,26,194,244,52,185,46,1,245,64,8,48,8,1,10,46,117,105,45,100,105,97,108,111,103,2,19,18,54,28,142,35,0,144,92,36,159,166,48,38,161,12,222,74,150,50,166,106,172,44,8,107,166,92,192,109,109,34,144,113,104,210,123,126,231,14,19,129,35,109,175,150,111,47,115,155,58,57,14,164,124,44,19,187,101,230,222,200,7,134,153,219,201,236,240,221,201,40,137,230,98,69,141,8,1,18,46,117,105,45,119,105,100,103,101,116,45,111,118,101,114,108,97,121,2,59,17,101,14,209,18,54,28,142,19,146,11,155,20,129,250,75,36,159,166,48,38,161,12,222,41,13,70,207,43,84,179,205,43,99,110,26,58,214,123,66,74,150,50,166,80,195,197,20,93,162,50,226,93,212,58,165,106,172,44,8,107,166,92,192,109,109,34,144,114,41,109,181,119,105,93,231,120,193,28,90,122,44,226,47,124,33,189,59,126,172,202,224,126,231,14,19,129,35,109,175,133,196,43,118,135,205,48,131,139,102,167,68,144,1,215,188,148,184,83,225,150,111,47,115,151,14,85,153,151,170,62,68,164,124,44,19,167,194,43,30,174,51,218,119,175,0,241,161,184,51,6,144,187,101,230,222,187,248,239,35,189,211,106,152,196,74,227,200,197,83,113,149,200,7,134,153,206,86,100,151,213,77,166,150,214,209,43,164,217,75,249,62,219,52,14,179,219,201,236,240,230,98,69,141,231,6,9,42,236,99,49,135,237,133,221,72,243,83,155,77,245,74,227,243,248,144,126,198,250,174,129,168,253,212,143,84,8,1,11,46,100,105,115,99,108,97,105,109,101,114,2,33,2,30,222,178,5,62,93,45,14,40,164,143,34,100,244,247,45,212,10,76,52,97,8,82,52,174,75,193,61,140,186,226,67,97,220,164,74,15,197,52,74,87,136,60,77,80,119,135,79,21,190,154,92,76,183,123,101,226,104,185,105,65,196,232,125,37,94,158,130,137,63,231,149,48,117,17,151,249,215,8,154,236,104,139,159,55,18,56,162,152,181,10,178,185,113,158,182,61,101,39,183,245,178,176,191,195,95,1,192,172,121,142,193,9,22,232,209,24,119,190,215,218,105,106,224,154,237,214,253,83,184,111,16,1,11,35,100,105,115,99,108,97,105,109,101,114,2,18,11,82,183,93,15,165,116,115,33,246,246,8,66,155,253,242,87,81,241,32,109,213,152,43,145,88,229,20,160,163,180,78,162,9,25,118,167,112,111,76,180,56,166,154,188,94,199,229,189,66,189,191,198,140,120,26,229,19,40,231,241,174,196,64,244,49,183,253,248,173,201,254,8,1,15,46,77,117,105,68,105,97,108,111,103,45,114,111,111,116,2,4,27,83,181,24,69,24,1,223,129,124,47,186,239,211,88,19,8,1,17,46,77,117,105,83,110,97,99,107,98,97,114,45,114,111,111,116,2,10,4,159,205,93,19,13,155,105,46,25,9,73,109,37,109,108,142,9,81,21,171,199,211,130,182,207,52,180,196,197,90,17,228,243,113,52,255,102,47,201,8,1,9,46,98,111,116,116,111,109,45,48,2,79,3,138,7,94,11,114,93,174,16,61,160,7,18,36,17,151,23,83,67,163,25,40,81,89,27,247,38,25,28,167,197,219,30,121,19,136,38,157,53,247,48,60,242,251,49,251,237,47,50,146,139,68,51,5,121,27,52,186,213,48,54,82,33,77,54,109,33,197,54,245,64,171,57,201,89,42,60,120,200,177,60,144,21,55,63,214,221,50,74,229,105,49,76,25,135,77,78,15,79,233,79,71,153,101,79,94,156,93,80,200,191,84,82,10,156,69,87,180,237,59,91,51,145,81,95,144,249,177,97,236,147,214,102,236,38,164,110,203,34,46,111,54,157,152,111,129,217,223,123,155,198,248,126,47,144,95,126,83,19,195,128,98,55,135,131,24,15,247,131,197,37,35,138,168,12,201,138,190,211,68,146,11,2,40,146,59,63,254,148,203,37,182,149,29,243,110,150,195,125,111,161,192,60,36,162,8,37,175,164,0,30,39,175,109,52,9,184,217,2,17,185,24,193,238,190,232,244,85,199,208,130,255,199,248,117,236,200,55,86,66,200,118,39,29,200,213,30,95,200,253,213,231,201,121,3,157,212,219,156,219,215,82,49,230,215,118,169,231,216,174,157,171,218,181,4,174,220,89,200,93,223,247,76,253,225,115,192,43,225,119,65,89,229,166,171,189,231,84,250,48,235,31,1,20,246,42,55,5,250,66,224,189,254,219,27,243,8,1,31,46,109,121,115,116,105,99,107,121,45,119,101,108,99,111,109,101,98,97,114,45,102,105,120,101,100,45,119,114,97,112,2,2,47,31,137,17,234,210,222,69,8,1,20,46,109,111,100,95,99,109,115,95,97,99,99,101,112,116,95,116,97,103,115,2,128,0,0,0,146,6,252,24,104,9,148,163,211,9,162,1,5,11,7,6,204,11,206,112,23,15,91,242,27,16,76,62,91,17,7,38,161,21,114,18,31,21,177,230,236,25,28,95,160,26,190,42,121,27,52,114,223,27,103,82,91,28,53,195,89,29,65,129,154,31,208,151,63,32,20,68,48,33,46,87,39,34,150,46,84,39,185,121,223,45,27,22,204,46,91,29,202,46,253,108,255,49,110,253,229,51,118,74,12,55,115,226,75,56,248,183,125,57,105,168,240,59,59,137,105,59,131,109,130,60,236,81,95,62,118,249,108,64,74,201,136,64,95,13,38,64,100,77,201,65,87,224,166,66,94,218,44,68,113,123,223,68,149,121,80,68,160,86,69,68,187,203,221,68,252,195,246,71,206,100,47,75,120,118,33,75,221,226,190,77,24,9,66,79,153,246,79,88,73,190,239,93,204,96,83,94,146,8,13,94,232,22,174,95,49,244,86,102,174,110,101,104,196,58,73,105,141,23,180,106,236,143,94,109,248,39,211,111,138,249,1,112,15,56,198,112,86,255,184,113,219,161,177,114,171,22,215,114,249,72,63,115,28,192,14,116,165,202,78,117,47,55,90,118,63,45,68,119,106,83,133,119,195,82,216,122,117,63,170,122,214,167,100,123,68,189,93,123,189,76,52,126,80,10,12,127,86,197,70,130,73,127,101,133,230,51,174,134,189,179,73,135,16,24,238,135,115,239,106,136,96,23,172,136,116,55,183,138,117,232,62,140,111,233,94,140,154,209,111,143,34,170,7,147,177,193,206,152,104,193,255,156,165,211,127,156,223,253,162,157,18,209,204,157,196,110,245,159,197,124,8,161,44,24,116,164,12,58,48,165,3,182,244,168,253,35,162,171,12,243,226,175,5,210,251,176,98,224,59,180,144,40,44,184,34,20,24,187,1,142,173,188,233,170,120,192,116,124,222,193,123,248,48,193,200,5,83,193,208,72,60,195,109,172,253,197,76,88,253,202,105,60,146,202,192,221,35,202,245,106,35,204,139,221,214,205,75,90,102,206,46,5,172,207,63,14,39,208,15,137,164,209,138,21,166,211,70,235,225,212,33,139,26,219,254,247,126,224,249,83,63,225,179,21,170,230,152,220,247,232,131,4,169,232,228,216,181,233,16,48,48,235,155,6,89,237,35,201,43,238,144,153,9,240,17,182,138,240,118,155,102,243,199,202,31,244,156,89,215,245,207,12,218,246,173,56,216,247,157,3,177,247,219,180,67,248,52,109,12,248,92,194,236,248,137,183,0,248,143,222,81,248,211,196,209,251,249,228,120,8,1,19,46,99,108,105,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,8,73,26,242,192,97,36,225,173,97,197,242,2,99,225,121,104,131,241,175,64,141,7,171,30,180,190,209,195,216,100,239,116,16,1,20,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,2,128,0,0,0,158,0,13,238,75,0,49,211,234,2,32,4,220,3,79,208,88,4,1,49,80,4,98,16,156,4,182,174,230,6,101,51,141,7,182,170,74,10,54,135,41,10,142,13,22,10,233,154,168,11,114,88,238,13,131,8,63,14,245,98,9,18,38,9,74,18,49,198,59,18,247,221,208,20,171,211,255,22,175,128,2,25,148,7,196,26,117,239,95,27,115,107,156,30,224,26,136,31,28,80,231,36,92,208,184,38,158,243,76,39,98,58,156,43,252,226,194,45,174,16,62,53,89,130,63,56,125,110,190,57,108,31,108,57,231,233,218,57,236,209,143,59,246,163,207,61,1,213,209,61,105,143,120,61,145,221,255,65,157,110,104,66,2,100,160,68,105,146,97,71,148,40,200,72,208,156,190,74,162,235,30,74,216,252,76,76,108,208,105,76,164,35,120,80,46,182,44,82,128,241,18,83,9,230,160,83,184,194,132,83,230,10,199,84,3,87,148,84,116,92,59,84,252,221,106,85,197,215,123,86,208,111,10,88,228,181,117,91,165,167,13,93,39,172,21,94,253,186,169,97,19,119,190,97,36,225,173,98,253,167,7,100,79,249,137,101,134,114,31,102,119,214,144,102,125,253,105,104,158,228,164,104,218,233,196,111,128,127,114,112,64,16,221,112,118,30,33,114,130,43,86,118,125,102,195,120,83,242,109,122,115,7,143,126,193,213,11,126,213,19,83,126,251,156,232,127,17,31,95,127,69,204,13,130,136,204,185,131,151,26,122,134,3,39,86,134,32,168,72,135,115,194,210,135,168,241,164,136,209,103,149,141,7,171,30,141,141,76,195,144,251,60,237,148,185,18,232,148,192,223,127,148,201,152,113,149,55,98,216,152,3,38,52,152,198,196,31,155,146,141,150,156,170,18,189,158,155,217,139,159,157,235,245,161,116,53,122,165,193,87,2,166,58,113,39,167,234,138,55,168,159,84,219,170,154,102,130,170,195,18,148,172,109,133,35,178,86,139,196,180,37,167,255,180,190,209,195,182,175,75,65,183,120,148,209,187,5,153,133,188,205,43,79,189,183,223,219,190,205,100,146,197,221,196,96,200,158,41,232,202,162,58,207,202,220,19,54,203,80,119,158,207,232,139,144,208,137,84,161,209,26,235,221,210,101,58,173,210,138,239,252,213,62,10,147,215,119,6,10,220,204,202,40,221,160,214,247,222,72,168,85,222,83,179,97,223,126,183,195,223,210,207,133,224,216,250,16,227,25,37,223,227,198,177,228,229,190,94,189,231,247,201,228,233,134,138,186,236,219,119,126,237,7,2,103,242,22,242,58,243,89,13,224,246,35,13,123,247,94,213,157,247,108,202,152,247,234,175,106,250,194,214,6,250,204,219,4,253,78,175,146,254,10,107,49,254,157,180,53,255,102,170,138,8,1,28,46,119,116,45,99,108,105,45,99,111,111,107,105,101,45,98,97,114,45,99,111,110,116,97,105,110,101,114,2,128,0,0,1,2,0,202,24,184,2,85,124,56,3,245,188,106,4,83,61,58,4,171,133,189,4,179,61,196,4,181,97,170,4,185,193,28,5,31,102,38,5,213,171,228,8,49,87,70,8,73,133,120,8,130,178,192,8,221,5,102,8,249,110,104,9,13,156,22,13,246,49,189,16,207,27,56,19,43,26,207,19,96,45,115,19,99,187,229,19,128,175,16,19,234,126,29,21,21,145,226,22,79,118,185,23,152,142,210,23,233,142,166,24,246,241,139,25,156,214,163,25,158,213,28,26,221,127,113,28,5,207,136,28,159,241,111,28,211,252,16,29,8,88,220,29,211,11,227,31,73,232,107,31,200,119,84,31,235,135,176,33,247,117,56,34,165,96,228,34,206,255,218,34,209,135,193,36,120,48,62,36,139,241,78,36,143,207,61,36,236,140,34,36,247,69,145,37,154,2,130,38,157,132,60,39,237,39,89,40,241,250,145,42,87,150,77,44,54,225,139,45,213,29,218,47,248,103,212,49,80,153,101,51,19,200,60,51,98,245,48,54,105,103,255,54,107,19,156,54,134,201,46,54,168,109,203,55,65,193,93,55,80,180,19,55,209,83,70,56,6,94,4,57,12,123,160,57,115,165,198,58,46,32,236,58,200,123,72,60,211,225,69,61,113,150,32,61,147,176,58,62,64,185,219,64,237,52,143,67,195,215,2,67,229,208,225,68,84,191,79,69,109,141,233,70,59,180,130,75,14,224,60,76,30,171,20,77,88,252,16,80,11,102,140,85,52,128,127,85,149,196,249,86,7,157,21,86,75,27,149,86,129,31,244,87,66,236,1,89,163,188,25,89,183,81,165,89,241,236,197,90,161,77,124,90,253,148,189,92,116,102,89,93,170,205,194,94,128,23,31,96,239,192,23,96,242,62,242,99,48,115,192,99,58,178,30,99,62,255,81,101,23,129,38,103,132,80,56,103,198,202,28,104,116,181,147,105,7,222,179,106,216,128,139,107,224,213,121,108,45,134,160,108,106,89,241,109,166,73,46,109,202,222,80,113,237,156,165,114,173,161,83,115,63,126,134,116,65,28,115,116,244,153,196,118,29,232,46,120,248,216,186,122,169,159,97,122,208,188,208,122,235,213,47,123,123,246,144,124,238,61,216,125,48,241,192,125,126,249,133,125,134,162,48,125,137,166,67,125,234,54,254,126,27,31,37,126,163,45,203,126,252,254,10,127,44,138,180,127,56,109,227,127,56,121,212,127,58,89,47,128,1,15,45,129,29,30,219,130,145,134,205,132,109,26,211,133,92,246,105,133,173,139,164,133,185,241,213,135,130,111,214,136,218,37,185,136,247,137,12,138,87,54,131,139,114,179,165,140,235,65,207,141,229,141,26,141,233,137,66,142,103,70,58,143,116,7,64,143,169,118,44,144,59,22,189,148,201,255,235,149,160,55,117,150,75,214,222,150,133,85,3,150,217,232,60,151,16,167,88,151,121,107,66,152,55,38,229,154,6,164,42,155,150,114,132,156,100,187,248,157,66,172,156,157,158,85,140,159,59,231,14,160,64,171,198,161,247,74,7,162,163,30,254,163,83,15,209,164,93,204,71,165,193,104,135,166,100,81,240,170,196,146,177,170,197,169,184,171,89,14,236,172,53,99,200,174,84,35,232,174,189,128,65,176,210,116,204,179,24,168,156,182,128,72,235,183,2,85,181,186,187,242,40,186,212,110,110,187,196,158,182,190,43,220,29,190,223,186,40,191,40,11,84,191,51,189,30,192,244,171,217,193,12,110,228,193,95,229,54,193,223,15,182,193,254,246,10,195,80,122,96,195,109,25,203,196,34,249,30,196,129,178,18,198,209,13,149,199,21,216,121,199,47,34,97,200,100,150,113,200,240,66,205,202,187,31,20,203,215,74,126,203,215,97,101,204,176,51,138,205,130,164,115,206,95,38,130,206,215,37,180,209,201,166,18,213,69,127,134,213,167,161,247,216,240,44,105,217,61,253,222,223,126,184,5,225,166,53,147,226,36,152,51,226,197,192,51,226,204,108,9,227,19,214,141,227,103,254,26,227,181,37,248,227,202,200,138,228,199,24,66,230,54,220,58,230,181,73,31,230,227,148,64,231,217,81,141,232,51,249,105,233,213,99,76,233,213,99,137,234,108,153,234,237,96,245,152,239,243,11,208,241,47,104,144,241,153,189,20,243,130,143,47,243,158,31,50,244,53,176,33,244,114,131,17,246,95,222,249,247,19,232,42,247,122,51,196,248,135,199,146,248,210,112,226,249,103,208,42,249,114,216,128,250,237,244,80,252,100,158,105,253,5,32,163,16,1,19,35,101,120,97,109,112,108,101,77,111,100,97,108,67,101,110,116,101,114,2,4,27,121,28,103,37,130,151,193,55,249,217,140,214,13,46,248,8,1,11,46,99,99,45,111,118,101,114,108,97,121,2,26,3,16,18,119,27,219,204,123,33,29,197,168,34,195,239,186,36,30,19,49,77,119,206,232,77,146,221,215,80,62,10,144,80,164,105,174,128,156,105,99,134,121,118,1,146,47,22,76,146,207,53,52,159,213,117,91,181,107,73,153,183,194,238,59,190,38,232,110,205,18,25,126,219,62,95,137,230,174,30,21,232,121,253,247,242,231,17,150,247,116,17,117,247,164,160,61,249,195,233,155,250,146,211,167,8,1,21,46,97,118,97,100,97,45,102,111,111,116,101,114,45,115,99,114,105,112,116,115,2,16,13,218,69,67,18,81,50,205,27,113,215,66,27,178,149,170,38,167,231,158,38,195,147,4,40,65,143,248,78,171,196,228,86,136,126,133,149,220,34,83,160,78,125,103,177,30,207,37,183,2,202,45,185,64,127,22,231,198,185,139,238,76,139,163,8,1,21,46,109,111,100,97,108,45,99,97,99,115,112,45,112,111,115,105,116,105,111,110,2,89,4,74,136,166,5,197,85,105,9,239,163,43,10,187,193,59,10,242,173,243,13,137,12,150,19,148,115,2,22,183,114,107,25,226,73,63,26,99,49,23,30,248,80,28,34,135,31,194,38,42,239,154,44,36,82,93,48,20,104,120,48,135,222,234,50,139,183,188,54,23,58,207,57,227,110,168,64,198,254,233,65,29,155,114,67,9,234,10,67,120,121,29,67,250,156,34,68,73,97,208,75,175,200,115,78,162,36,230,78,202,163,59,82,67,38,138,84,201,98,35,86,95,91,64,86,143,12,120,88,148,140,27,94,20,139,210,94,78,233,21,96,78,146,76,99,122,96,232,100,253,177,66,103,95,88,232,103,145,50,180,106,79,35,241,112,105,67,155,112,229,65,135,114,76,72,186,115,126,197,225,116,2,102,24,116,36,7,215,120,71,111,7,134,153,76,84,135,67,8,18,136,181,138,75,138,208,2,185,141,156,36,136,143,129,53,38,145,62,113,186,146,44,194,252,146,219,197,84,152,93,231,6,153,67,183,217,153,154,98,4,159,132,142,190,163,21,179,137,167,189,30,99,171,150,127,118,172,102,213,67,176,251,185,27,186,52,69,205,186,78,76,254,187,147,67,197,193,63,2,62,193,70,160,87,193,119,221,140,195,23,247,182,196,141,47,35,200,145,185,3,212,107,27,16,215,187,12,81,226,119,200,125,227,135,37,212,227,197,145,241,232,18,142,40,238,232,41,211,239,33,172,47,241,80,185,51,247,168,28,27,251,119,32,231,251,242,232,218,252,133,229,214,254,187,199,205,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,65,0,189,124,120,3,241,143,47,9,13,147,142,12,19,150,223,14,49,57,16,14,215,201,232,18,183,134,89,30,96,104,162,31,12,210,166,31,73,205,186,33,145,16,49,37,82,196,135,37,128,33,249,38,157,59,187,40,226,1,64,55,200,234,203,56,232,242,185,57,225,64,90,61,248,217,235,63,210,15,202,76,198,121,185,79,45,39,186,80,139,253,243,83,193,96,32,84,8,203,174,86,18,230,78,86,172,161,149,87,79,217,181,89,238,41,2,89,239,32,199,90,238,107,188,94,177,49,161,107,68,125,177,116,171,48,193,131,36,196,133,132,207,138,142,134,155,128,203,142,29,144,159,148,184,21,36,150,199,43,37,151,193,189,204,165,108,98,110,167,111,253,97,167,227,79,248,172,149,164,123,182,131,25,238,185,77,25,174,185,173,243,162,187,44,68,24,190,147,196,112,198,80,108,176,202,190,235,36,203,79,107,167,212,59,228,151,213,191,133,109,213,227,227,13,223,221,88,240,224,60,102,111,225,13,48,34,225,253,118,126,229,22,24,217,242,81,75,1,244,98,178,80,248,150,76,206,251,10,177,113,8,1,14,46,98,111,116,116,111,109,95,110,111,116,105,99,101,2,17,6,194,109,158,10,233,199,183,61,102,96,241,70,29,48,20,73,99,21,250,79,22,121,212,79,254,72,72,123,62,217,77,124,19,107,154,131,33,164,98,134,60,56,135,154,124,160,169,180,202,109,8,200,224,228,221,203,231,52,201,226,240,163,62,230,80,48,172,16,1,17,35,102,97,110,99,121,98,111,120,45,111,118,101,114,108,97,121,2,19,10,247,160,240,15,142,152,52,22,253,36,211,29,119,219,118,81,46,44,191,125,105,163,120,127,206,249,208,131,183,117,239,154,118,159,160,177,88,139,147,177,166,87,73,180,73,238,247,188,175,158,125,223,103,100,205,234,185,181,99,237,189,196,92,238,133,60,205,248,109,41,18,251,20,145,66,16,1,14,35,102,97,110,99,121,98,111,120,45,119,114,97,112,2,19,10,247,160,240,15,142,152,52,22,253,36,211,29,119,219,118,81,46,44,191,125,105,163,120,127,206,249,208,131,183,117,239,154,118,159,160,177,88,139,147,177,166,87,73,180,73,238,247,188,175,158,125,223,103,100,205,234,185,181,99,237,189,196,92,238,133,60,205,248,109,41,18,251,20,145,66,8,1,25,46,101,108,101,109,101,110,116,111,114,45,108,111,99,97,116,105,111,110,45,112,111,112,117,112,2,5,87,10,151,84,94,93,41,239,109,108,155,31,126,109,79,214,160,88,158,61,8,1,27,46,101,108,101,109,101,110,116,111,114,45,101,108,101,109,101,110,116,45,51,49,101,49,56,48,48,49,2,1,167,99,221,45,8,1,22,46,101,108,101,109,101,110,116,111,114,45,112,111,112,117,112,45,109,111,100,97,108,2,83,2,210,185,29,3,192,210,124,3,195,58,126,5,126,17,190,7,14,146,245,7,235,149,118,12,20,201,24,12,158,154,63,18,33,167,186,18,91,131,159,18,239,32,67,21,106,216,26,31,221,27,242,37,57,218,211,46,217,49,166,48,139,63,3,49,133,172,119,58,31,124,190,61,195,148,22,63,163,36,8,67,183,95,101,69,233,170,2,70,185,111,135,73,54,146,20,73,107,145,199,79,79,75,106,83,120,158,241,85,116,10,77,86,5,26,208,90,238,5,32,90,251,97,97,98,216,163,161,98,228,8,32,99,20,239,184,105,233,162,148,105,236,159,204,108,23,250,27,108,139,136,134,110,155,66,61,110,184,239,44,111,89,43,134,111,146,21,212,117,52,212,152,124,143,151,242,124,145,119,87,125,27,99,33,127,248,113,27,129,41,137,135,137,250,245,187,142,48,181,90,143,46,38,196,146,137,227,18,146,194,105,198,149,199,80,220,163,36,235,143,164,118,139,24,170,91,194,84,175,140,76,82,175,205,189,154,177,147,220,156,179,235,139,215,181,253,10,111,193,16,74,172,193,162,29,6,195,160,216,110,201,187,179,179,205,179,132,176,208,1,156,139,212,226,91,183,214,87,26,64,220,66,179,223,226,249,228,20,229,246,227,252,234,109,204,111,238,130,61,48,240,38,242,95,241,249,242,121,242,93,45,126,244,113,199,53,245,43,110,38,247,168,2,166,252,85,116,183,254,141,160,2,8,1,18,46,117,107,45,110,111,116,105,102,121,45,109,101,115,115,97,103,101,2,2,23,119,187,238,93,0,241,170,8,1,7,46,103,85,98,88,69,75,2,7,91,62,56,100,117,188,173,199,120,106,202,49,125,13,134,75,146,213,208,87,180,178,245,41,199,37,33,196,16,1,12,35,108,105,103,104,116,45,98,111,120,45,49,2,18,5,140,166,92,6,118,53,253,16,168,0,83,33,29,47,189,39,76,35,210,51,162,100,8,56,254,248,120,80,22,210,232,96,157,132,60,165,248,3,52,186,240,10,202,191,98,232,180,199,143,55,177,215,229,207,251,230,226,63,178,235,245,105,107,246,188,44,117,252,24,219,229,8,1,19,46,108,98,45,101,117,99,108,46,108,98,66,103,83,99,114,101,101,110,2,5,26,29,143,49,95,173,199,53,99,96,220,213,183,215,84,92,201,17,160,16,8,1,16,46,108,98,45,101,117,99,108,46,108,98,70,103,66,111,120,2,5,26,29,143,49,95,173,199,53,99,96,220,213,183,215,84,92,201,17,160,16,8,1,5,46,122,45,53,48,2,14,5,139,24,138,29,120,146,223,36,36,197,223,59,177,117,94,88,27,55,189,150,207,146,244,151,92,157,85,171,88,60,179,179,48,76,231,198,157,46,172,201,164,232,129,227,180,154,47,236,89,110,219,242,115,12,112,8,1,13,46,97,108,101,114,116,45,115,116,105,99,107,121,2,6,26,6,101,64,52,32,109,145,84,0,34,57,142,187,53,231,152,37,57,107,154,193,76,168,16,1,10,35,115,112,111,116,108,105,103,104,116,2,8,40,88,202,249,45,110,216,184,77,0,142,83,85,29,132,145,88,250,102,239,93,252,136,200,217,223,195,165,226,158,86,150,8,1,36,46,105,110,100,101,120,45,109,111,100,117,108,101,45,45,67,111,111,107,105,101,65,117,116,104,83,104,111,119,45,45,105,111,54,70,55,2,2,40,115,38,77,40,157,17,161,16,1,14,35,98,97,110,110,101,114,79,118,101,114,108,97,121,2,6,5,106,145,165,45,27,112,144,61,2,14,217,162,131,119,150,166,35,212,109,221,182,175,29,16,1,22,35,100,105,118,68,105,115,97,98,108,101,100,66,97,99,107,103,114,111,117,110,100,2,4,54,143,243,251,105,234,0,186,155,158,68,231,184,71,212,195,16,1,14,35,112,111,112,117,112,95,119,114,97,112,112,101,114,2,9,40,16,208,8,66,60,102,31,85,38,57,216,131,218,93,182,168,43,53,110,184,129,113,63,240,102,123,37,248,91,77,0,249,69,221,135,16,1,11,35,115,105,116,101,45,116,101,114,109,115,2,3,59,16,195,203,212,69,124,40,231,121,60,31,16,1,6,35,115,112,45,99,99,2,14,2,97,104,191,5,12,89,153,11,60,154,154,22,1,201,180,40,192,222,106,57,219,238,22,70,77,207,17,112,248,156,249,139,38,187,167,171,5,171,144,178,150,51,75,186,18,182,219,213,122,113,189,232,69,31,194,16,1,15,35,118,105,110,101,103,97,114,45,98,111,116,116,108,101,2,37,20,31,252,222,30,148,245,112,39,6,9,49,41,4,101,149,53,212,210,97,67,133,23,38,69,207,33,1,71,22,117,79,76,128,101,128,76,192,146,206,80,15,82,5,83,159,219,183,90,233,24,161,97,25,243,149,100,222,1,81,104,71,223,213,107,208,66,210,110,149,163,130,124,48,90,131,125,17,113,96,131,95,177,223,131,119,155,200,140,44,222,239,141,236,25,94,154,39,0,73,156,187,189,4,195,39,126,200,201,189,226,116,210,94,204,70,230,221,69,138,234,193,32,132,243,27,210,195,247,212,152,41,249,151,89,12,249,230,177,61,251,137,72,113,251,146,110,140,8,1,19,46,97,108,101,114,116,70,111,111,116,101,114,67,111,110,116,101,110,116,2,2,38,157,76,169,178,145,153,75,8,1,9,46,98,97,99,107,100,114,111,112,2,3,38,156,73,42,203,216,155,168,244,100,141,81,8,1,18,46,98,97,114,46,106,115,120,45,51,52,49,50,50,51,48,56,53,2,3,98,205,253,12,149,36,3,172,250,23,120,177,8,1,7,46,98,112,71,111,117,71,2,3,7,109,76,69,86,59,237,75,101,63,11,237,8,1,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,3,38,156,73,42,203,216,155,168,244,100,141,81,8,1,10,46,101,49,116,114,99,112,50,49,48,2,9,47,35,212,103,84,136,31,211,92,224,67,188,98,141,49,37,128,167,176,214,166,164,208,108,181,11,9,189,200,145,103,123,244,57,62,103,8,1,9,46,101,51,118,52,119,108,105,48,2,4,6,127,138,25,175,10,138,152,197,101,89,118,202,33,188,54,16,1,8,35,112,111,112,105,110,71,65,2,3,104,40,227,48,104,133,174,86,222,156,32,156,8,1,17,46,99,100,107,45,111,118,101,114,108,97,121,45,112,97,110,101,2,4,166,130,220,204,166,130,221,229,166,130,224,115,166,130,224,210,8,1,15,46,100,105,115,99,108,97,105,109,101,114,95,98,111,120,2,4,18,214,223,202,128,0,115,172,145,87,212,221,253,120,80,116,8,1,9,46,116,114,97,110,115,98,111,120,2,4,18,214,223,202,128,0,115,172,145,87,212,221,253,120,80,116,8,1,20,46,82,101,97,99,116,77,111,100,97,108,95,95,79,118,101,114,108,97,121,2,6,55,186,145,93,125,203,167,45,127,219,176,110,148,201,255,191,149,79,144,169,158,112,73,186,16,1,7,35,99,111,111,107,105,101,2,128,0,0,1,95,0,153,15,216,1,60,120,221,1,135,101,198,3,172,138,63,5,219,229,253,6,186,163,249,8,76,51,64,8,199,211,189,9,56,227,106,9,117,214,165,9,156,255,121,10,214,120,249,11,204,91,126,12,45,74,250,12,57,181,138,13,107,218,19,14,145,222,115,15,241,180,218,16,158,144,53,16,239,153,51,17,62,239,15,17,166,115,206,18,73,148,95,18,182,198,113,18,219,220,10,19,113,22,176,20,100,93,223,20,249,67,35,21,165,131,3,22,70,210,254,22,91,27,103,22,122,229,57,22,175,87,71,22,254,135,147,23,59,21,149,23,194,73,88,25,17,239,37,25,41,91,148,25,247,225,49,26,102,54,1,28,103,146,217,28,208,206,142,28,227,253,185,29,120,92,242,29,169,1,188,29,186,193,14,30,15,67,102,30,146,47,218,30,232,107,171,31,40,43,86,31,73,118,209,31,73,239,50,31,214,143,242,31,239,244,121,32,102,213,31,33,35,9,59,33,37,116,127,33,42,138,87,33,59,223,14,34,39,154,159,34,42,204,10,34,93,16,158,35,97,128,26,35,150,61,53,37,86,98,1,38,157,25,24,40,214,109,227,40,221,158,171,42,89,192,240,42,110,204,204,42,137,202,14,42,146,176,72,44,10,219,32,44,173,65,240,45,112,249,16,46,238,27,198,47,86,24,29,48,95,193,205,48,177,43,155,50,112,90,155,53,86,4,196,54,64,163,41,54,197,17,133,54,199,64,30,54,222,61,18,58,72,235,51,58,122,121,148,59,2,82,101,59,172,168,118,59,198,109,124,61,184,219,184,62,67,207,51,63,237,255,174,64,154,31,141,64,220,225,95,65,104,125,195,68,27,44,161,69,118,35,99,70,43,40,36,71,85,189,194,71,133,148,59,71,233,211,53,73,225,139,145,76,127,207,36,77,22,157,25,77,96,153,207,78,59,234,88,78,157,89,151,78,221,149,212,79,0,85,244,80,82,87,29,81,178,5,113,82,64,108,14,82,86,241,228,82,128,88,12,82,160,208,58,82,163,77,71,83,175,78,98,83,248,58,13,83,249,110,50,84,26,200,0,87,22,252,153,88,227,29,76,88,251,169,20,89,94,127,87,89,107,208,54,90,122,75,228,90,207,221,156,93,136,115,232,93,235,223,234,95,69,149,211,95,81,135,182,96,216,242,47,97,151,113,229,99,13,128,250,99,50,127,39,99,107,134,15,99,109,143,247,100,135,100,189,101,36,233,208,103,50,32,221,103,75,90,109,106,84,44,83,106,132,140,39,106,162,131,161,106,176,213,194,107,193,9,38,107,199,154,138,108,221,151,29,109,154,130,115,110,29,214,175,110,137,105,23,111,52,195,37,111,103,135,129,112,71,250,201,113,84,82,60,113,91,190,174,115,113,219,2,115,227,28,226,116,36,183,17,116,61,141,111,116,101,152,96,119,157,108,122,120,62,93,175,120,66,132,22,122,138,223,95,125,208,126,10,125,232,227,15,125,251,87,163,126,27,55,36,126,100,163,20,126,191,246,112,127,50,185,160,127,97,174,239,127,98,197,164,128,38,201,143,129,187,240,209,129,245,245,135,130,25,178,10,130,241,240,226,131,179,76,198,133,175,175,168,134,129,65,23,134,192,15,224,135,79,63,174,135,156,26,106,136,37,246,149,137,153,10,68,137,170,177,7,138,5,113,239,140,11,133,75,142,133,164,207,143,187,133,7,144,61,87,196,144,187,132,85,145,244,43,127,146,184,244,38,148,158,92,70,148,225,197,18,148,252,223,16,149,63,205,30,149,114,158,172,149,177,39,206,149,242,82,138,150,57,94,147,152,171,132,104,154,100,251,18,154,110,116,58,154,247,95,141,155,29,169,92,155,197,89,206,156,62,98,34,157,29,186,74,157,69,222,117,157,133,28,89,157,166,4,207,157,246,2,109,158,76,247,158,158,85,188,173,158,87,170,39,159,160,217,231,160,164,12,146,160,210,17,112,161,43,233,254,161,191,202,150,161,205,155,29,164,44,212,52,165,23,68,46,165,62,15,105,166,33,119,152,166,182,35,111,167,49,249,7,168,60,100,83,170,85,161,106,172,197,15,252,173,57,143,135,174,161,103,212,174,239,41,85,176,134,204,200,177,146,21,5,179,126,103,13,179,209,8,36,180,65,107,82,180,200,14,83,182,111,106,142,182,225,74,193,183,3,97,209,183,80,229,210,185,55,69,160,186,66,60,208,186,86,186,220,186,239,58,222,188,207,126,80,188,250,235,183,189,74,71,68,190,13,38,244,190,81,53,243,190,81,127,255,190,81,162,217,190,148,39,154,190,198,46,123,190,225,175,54,192,14,87,140,192,148,58,122,193,62,167,217,194,235,147,118,195,6,114,178,195,95,246,53,196,32,13,219,196,205,87,27,197,160,2,202,197,181,10,161,197,229,99,104,197,246,86,108,199,111,155,120,199,163,165,26,200,208,176,138,200,217,128,52,201,22,178,95,202,44,186,85,204,54,43,18,204,236,18,216,206,155,33,102,207,66,206,35,207,180,45,224,208,251,107,69,209,102,199,234,211,56,253,198,211,110,114,45,211,126,148,88,211,182,17,223,211,183,193,107,211,189,103,17,211,239,246,1,212,217,85,168,213,86,116,42,214,235,237,107,217,1,40,94,217,224,44,217,217,235,57,11,221,22,215,146,222,187,81,220,223,106,126,128,223,127,2,185,223,162,252,229,224,62,192,251,225,64,241,248,226,106,74,44,226,117,203,27,226,165,90,224,226,180,237,119,227,135,144,172,227,172,41,37,228,126,92,15,229,107,9,21,230,167,254,170,230,212,55,201,231,171,95,80,231,195,239,202,233,194,146,99,234,14,215,0,234,237,233,178,234,254,240,228,235,26,155,38,235,57,50,81,235,131,49,200,238,61,93,83,239,130,87,193,240,6,242,58,241,149,215,249,242,133,238,14,242,231,2,96,243,213,255,77,244,252,242,100,245,160,208,251,247,43,189,73,248,69,70,189,248,156,127,55,249,84,200,235,249,112,68,173,249,214,16,64,249,248,108,96,250,114,193,36,251,76,50,11,251,220,71,225,251,230,135,22,251,240,30,59,253,224,7,1,254,71,44,115,254,112,233,124,255,168,87,11,16,1,8,35,99,111,111,107,105,101,115,2,128,0,0,1,189,0,176,61,125,0,187,53,33,1,54,207,73,1,128,190,183,1,187,67,99,3,15,15,9,3,180,243,97,4,49,15,234,5,46,250,124,5,107,17,83,5,112,128,144,5,187,248,88,5,237,34,15,6,90,45,252,6,143,241,14,6,206,51,157,7,6,7,8,7,68,147,20,7,160,106,123,7,246,71,77,8,201,252,212,9,154,36,117,11,115,57,56,12,82,253,193,13,36,193,198,13,133,62,208,13,169,68,129,13,188,175,230,13,203,3,234,14,21,85,48,15,33,195,129,16,4,137,76,16,67,102,40,17,16,36,68,18,215,127,242,20,220,254,117,20,243,175,252,20,244,66,15,22,82,30,138,22,193,197,44,23,107,216,128,23,133,249,148,23,158,34,237,26,96,15,26,27,71,138,176,27,93,221,10,27,98,195,61,27,209,30,21,28,172,72,252,29,44,86,191,30,105,91,223,30,175,124,103,31,73,224,220,31,119,151,15,31,237,31,121,32,128,93,6,32,229,203,10,33,39,33,6,33,181,146,78,34,53,111,40,34,154,179,182,36,7,119,167,36,64,61,162,37,203,77,232,38,99,2,86,38,108,104,228,41,16,135,126,41,44,97,175,42,37,126,210,42,117,133,166,43,50,223,104,47,16,246,83,47,57,78,18,48,27,52,230,49,146,84,0,50,169,5,110,50,208,106,74,51,237,148,159,52,7,6,123,53,245,115,115,54,212,177,10,55,165,196,223,56,24,222,173,56,48,49,138,56,97,135,186,57,185,64,112,59,28,141,207,60,9,0,9,60,239,149,93,63,106,12,15,64,10,159,235,64,47,232,104,64,164,222,42,65,223,193,192,65,227,152,60,66,64,198,176,67,84,184,16,68,160,199,185,70,0,246,196,70,68,15,235,70,132,23,221,71,98,157,215,71,223,186,108,72,172,175,10,73,25,30,22,73,29,191,99,73,139,164,58,73,179,152,47,73,187,202,243,75,239,235,42,76,209,160,71,77,164,186,214,77,194,65,65,77,240,175,103,78,99,15,254,78,117,31,154,78,196,137,218,78,212,154,7,79,81,252,11,79,158,218,180,80,205,234,130,81,125,231,79,82,37,183,20,82,115,227,23,82,119,171,32,84,0,149,202,84,130,163,31,84,215,254,154,84,239,122,104,84,239,146,240,85,255,236,116,86,156,147,118,86,207,244,225,87,68,222,235,90,42,173,195,91,21,235,206,91,196,172,226,92,3,133,60,93,78,96,212,94,122,21,31,94,141,45,171,95,3,173,91,96,91,208,175,97,0,235,246,98,18,105,33,98,56,218,112,98,110,238,85,98,176,228,116,99,8,253,109,99,69,114,192,99,201,152,8,101,145,43,27,104,64,42,162,104,221,201,118,106,4,251,12,106,94,252,196,106,162,37,94,106,193,183,104,106,218,212,185,107,13,200,179,107,88,184,118,107,123,252,106,107,239,67,233,107,248,199,139,108,16,43,239,108,98,236,15,108,232,238,46,109,15,243,34,109,25,24,156,109,72,160,95,109,184,221,239,109,208,101,202,110,190,217,71,111,11,217,79,111,151,199,240,111,168,115,158,111,198,54,10,112,37,145,192,112,48,112,226,113,6,32,71,113,43,126,98,114,102,128,163,114,153,64,228,114,192,56,212,114,218,247,183,115,123,191,60,115,146,117,113,116,54,79,51,117,103,161,89,118,183,209,34,118,189,67,13,119,204,94,185,120,148,135,97,120,180,4,111,123,125,193,174,124,75,163,29,124,97,249,41,124,253,51,49,125,126,249,133,125,214,173,91,126,109,253,9,126,146,160,158,126,160,6,162,126,170,8,144,126,183,61,223,126,211,28,117,126,217,167,57,126,224,36,140,127,3,31,177,128,33,66,78,128,81,124,201,129,52,16,228,129,75,158,112,129,174,236,253,129,178,163,29,129,188,177,104,129,201,159,168,130,56,110,254,130,195,30,84,132,70,155,58,132,76,188,159,132,124,130,236,133,227,207,249,134,160,22,150,134,226,126,75,135,199,223,133,135,245,252,123,137,225,27,87,137,225,39,250,138,57,51,181,138,91,112,236,138,244,227,154,139,20,122,237,139,63,72,44,140,125,170,244,140,155,190,119,140,219,76,122,142,7,218,69,142,17,217,211,142,169,47,2,142,203,246,18,142,233,215,98,143,113,116,248,143,116,54,101,143,190,190,232,144,48,124,176,144,103,206,11,144,196,235,211,145,19,158,36,145,47,138,46,145,164,220,160,145,212,124,236,145,238,133,35,146,15,112,143,147,124,200,159,148,185,18,173,149,255,163,17,150,26,167,10,150,36,44,118,150,83,156,48,150,162,214,59,150,169,198,104,150,222,119,93,151,92,93,186,152,208,125,167,153,147,184,190,154,15,135,197,154,224,180,2,155,128,173,225,155,212,242,154,158,215,35,202,159,30,85,188,160,103,113,201,160,164,6,67,160,221,44,117,160,243,115,93,161,101,218,47,161,105,226,18,162,182,119,154,163,26,85,98,163,55,62,226,164,106,208,149,164,112,224,180,165,62,121,162,165,128,114,238,166,209,13,221,167,254,10,250,168,111,115,54,168,253,169,176,169,80,38,19,170,85,133,246,170,225,99,175,173,42,161,140,173,133,6,77,173,238,93,10,173,239,83,188,174,16,16,19,174,22,135,128,174,48,76,177,174,241,88,133,175,48,24,36,175,218,213,116,175,218,222,253,175,218,223,58,176,66,147,152,178,219,154,14,179,194,4,178,179,237,226,61,180,73,31,199,182,29,226,9,182,49,217,99,182,175,23,206,182,175,111,37,184,49,45,159,185,7,4,97,185,44,38,44,186,163,116,143,186,163,142,2,187,127,97,43,187,203,221,106,188,180,48,35,189,254,219,109,190,49,132,35,190,66,207,126,190,67,25,21,190,79,216,167,190,81,53,243,190,201,135,140,191,9,188,178,191,30,132,9,193,64,6,241,193,82,79,14,193,166,52,152,193,219,79,145,193,241,255,115,194,14,226,86,196,99,100,224,196,124,55,13,196,179,17,198,196,216,163,184,197,22,38,57,198,24,219,68,198,35,124,144,198,120,26,85,199,65,171,159,199,94,7,173,199,204,236,230,200,75,8,180,200,121,147,108,201,10,143,102,201,136,0,165,203,20,214,115,203,40,13,202,203,100,213,159,203,217,143,73,203,233,163,183,204,50,68,161,204,138,120,130,204,164,211,63,205,8,194,179,205,250,209,228,206,99,108,172,207,11,159,145,207,36,171,97,207,198,243,12,208,55,255,234,208,254,254,128,209,95,11,154,209,200,247,110,210,215,197,26,211,104,144,84,212,24,109,162,212,133,4,19,212,226,115,130,214,175,105,176,214,194,159,145,214,227,248,184,215,152,12,121,216,48,239,252,216,49,118,127,216,86,100,21,216,117,7,93,216,220,43,5,216,227,232,180,216,247,202,26,217,63,229,11,219,123,184,73,219,135,246,132,219,151,186,211,220,25,201,108,220,55,234,36,220,90,133,80,221,14,95,60,222,40,120,119,222,108,233,141,222,246,227,161,225,4,173,42,225,42,123,61,225,163,27,225,225,166,178,197,226,116,96,103,227,66,211,127,227,89,195,223,227,135,183,59,227,135,185,158,227,183,45,79,229,106,227,231,229,250,93,228,231,159,6,139,232,232,50,24,233,224,254,7,234,13,242,245,234,227,169,137,235,33,253,186,237,66,129,173,238,201,9,61,240,74,164,169,240,91,5,15,240,232,254,186,241,187,223,82,242,170,8,156,242,237,73,240,243,230,188,0,245,29,55,226,245,113,92,141,246,86,153,214,246,133,83,107,247,175,63,17,248,141,70,235,248,184,103,255,248,204,243,255,248,208,31,136,249,22,21,149,249,71,248,164,249,250,61,215,250,103,155,146,251,72,185,30,251,139,156,108,251,205,86,246,251,238,124,222,252,183,35,39,253,141,178,240,254,76,33,168,254,98,152,118,254,125,73,131,16,1,36,35,114,101,97,99,116,45,114,111,111,116,32,62,32,100,105,118,32,62,32,100,105,118,32,62,32,46,114,110,45,103,118,112,110,111,104,2,1,233,150,165,244,0,1,47,91,100,97,116,97,45,114,101,97,99,116,114,111,111,116,93,32,62,32,91,99,108,97,115,115,93,32,43,32,91,99,108,97,115,115,93,58,108,97,115,116,45,99,104,105,108,100,2,1,233,150,165,244,8,1,120,46,99,115,115,45,49,100,98,106,99,52,110,46,114,45,49,50,118,102,102,107,118,32,62,32,46,114,45,49,50,118,102,102,107,118,32,62,32,46,99,115,115,45,49,100,98,106,99,52,110,91,100,97,116,97,45,116,101,115,116,105,100,61,34,66,111,116,116,111,109,66,97,114,34,93,32,62,32,46,99,115,115,45,49,100,98,106,99,52,110,46,114,45,49,97,119,111,122,119,121,46,114,45,49,115,119,51,48,103,106,46,114,45,49,53,99,101,52,118,101,2,1,233,150,165,244,8,1,91,46,114,45,49,51,113,122,49,117,117,46,114,45,49,102,49,115,106,103,117,46,114,45,121,109,116,116,119,53,46,114,45,49,100,55,102,118,100,106,46,114,45,49,56,117,51,55,105,122,46,114,45,49,53,99,101,52,118,101,46,114,45,49,115,119,51,48,103,106,46,114,45,49,97,119,111,122,119,121,46,99,115,115,45,49,100,98,106,99,52,110,2,1,233,150,165,244,8,1,90,46,114,45,49,51,113,122,49,117,117,46,114,45,49,102,49,115,106,103,117,46,114,45,121,109,116,116,119,53,46,114,45,49,100,55,102,118,100,106,46,114,45,49,56,117,51,55,105,122,46,114,45,57,104,118,114,57,51,46,114,45,49,109,51,106,120,104,106,46,114,45,49,97,119,111,122,119,121,46,99,115,115,45,49,100,98,106,99,52,110,2,1,233,150,165,244,8,1,90,46,114,45,49,51,113,122,49,117,117,46,114,45,116,118,118,48,56,56,46,114,45,100,57,102,100,102,54,46,114,45,49,100,55,102,118,100,106,46,114,45,49,56,117,51,55,105,122,46,114,45,49,117,112,118,114,110,48,46,114,45,49,109,51,106,120,104,106,46,114,45,49,97,119,111,122,119,121,46,99,115,115,45,49,100,98,106,99,52,110,2,1,233,150,165,244,8,1,89,46,114,45,49,51,113,122,49,117,117,46,114,45,116,118,118,48,56,56,46,114,45,100,57,102,100,102,54,46,114,45,49,100,55,102,118,100,106,46,114,45,49,56,117,51,55,105,122,46,114,45,113,111,48,50,119,56,46,114,45,49,109,51,106,120,104,106,46,114,45,49,97,119,111,122,119,121,46,99,115,115,45,49,100,98,106,99,52,110,2,1,233,150,165,244,8,1,50,46,114,45,53,107,107,106,56,100,46,114,45,49,53,51,119,52,110,118,46,114,45,49,101,52,109,97,56,57,46,114,45,113,113,52,99,121,99,46,99,115,115,45,49,55,53,111,105,50,114,2,1,233,150,165,244,8,1,31,46,114,110,45,103,118,112,110,111,104,46,114,110,45,101,112,115,54,110,113,46,114,110,45,49,51,113,122,49,117,117,2,1,233,150,165,244,16,1,13,35,97,108,101,114,116,95,99,111,111,107,105,101,2,2,61,147,207,155,122,172,214,171,16,1,4,35,99,99,99,2,1,38,157,49,63,16,1,10,35,99,109,112,66,97,110,110,101,114,2,1,106,115,255,109,16,1,15,35,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,54,177,79,0,16,1,13,35,99,111,110,115,101,110,116,45,98,117,109,112,2,64,3,72,216,139,6,166,164,156,6,198,100,184,12,18,58,115,13,185,241,147,15,171,145,27,15,250,36,121,24,126,113,57,26,95,191,185,28,19,19,53,29,60,165,77,31,95,52,221,36,12,127,229,36,229,81,100,46,242,180,11,52,135,120,15,55,211,183,17,56,60,70,171,59,93,198,144,62,103,215,201,63,34,96,149,63,81,71,251,64,206,183,187,72,103,87,85,84,198,170,46,85,85,109,156,86,18,88,41,86,114,242,155,86,244,66,182,87,205,250,216,94,185,148,62,98,50,254,112,100,16,26,123,102,27,154,48,107,236,201,47,110,179,111,50,117,9,111,0,122,47,93,232,130,50,141,218,133,224,147,65,145,149,122,102,152,1,26,100,152,13,220,66,158,82,140,165,160,212,16,58,172,36,156,208,174,147,36,59,183,73,70,89,191,14,137,67,192,222,35,204,193,25,57,108,204,19,128,230,208,24,100,61,208,231,38,163,209,44,200,27,210,38,56,28,210,228,80,31,210,244,62,121,211,117,238,42,214,129,87,123,229,74,154,114,232,223,192,206,241,161,12,171,251,156,20,221,16,1,18,35,99,111,111,107,105,101,45,100,105,115,99,108,111,115,117,114,101,2,1,104,78,245,96,16,1,21,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,2,1,173,38,68,160,16,1,12,35,99,111,111,107,105,101,65,108,101,114,116,2,2,111,113,177,53,254,102,217,189,16,1,26,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,67,111,110,116,97,105,110,101,114,2,1,207,43,250,236,16,1,27,35,99,111,111,107,105,101,95,100,105,114,101,99,116,105,118,101,95,99,111,110,116,97,105,110,101,114,2,1,149,154,95,1,16,1,13,35,99,111,111,107,105,101,95,112,111,112,117,112,2,3,16,169,110,227,106,135,223,17,130,213,158,160,16,1,10,35,99,111,111,107,105,101,98,97,114,2,1,214,194,44,29,16,1,19,35,99,111,111,107,105,101,115,95,102,111,111,116,101,114,95,115,101,99,2,1,54,26,207,222,16,1,12,35,101,110,115,66,97,110,110,101,114,66,71,2,3,82,179,88,117,166,203,101,165,173,103,146,29,16,1,16,35,101,110,115,78,111,116,105,102,121,66,97,110,110,101,114,2,3,82,179,88,117,166,203,101,165,173,103,146,29,16,1,17,35,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,142,14,98,194,16,1,22,35,101,117,95,99,111,111,107,105,101,115,95,100,105,115,99,108,97,105,109,101,114,2,1,156,232,148,85,16,1,19,35,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,49,48,49,21,16,1,10,35,103,100,112,114,45,119,97,108,108,2,1,114,106,73,0,16,1,10,35,103,100,112,114,112,111,112,117,112,2,1,142,211,251,152,16,1,19,35,116,99,45,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,2,1,182,132,160,154,16,1,8,35,117,100,116,68,97,114,107,2,1,124,175,131,47,8,1,7,46,97,115,45,111,105,108,2,2,27,103,62,6,27,116,250,103,8,1,23,46,98,117,105,108,100,101,114,105,117,115,67,111,111,107,105,101,78,111,116,105,99,101,2,1,38,43,205,53,8,1,14,46,99,45,115,105,116,101,45,97,108,101,114,116,115,2,1,111,146,187,146,8,1,8,46,99,97,95,119,114,97,112,2,1,38,157,179,147,8,1,10,46,99,99,95,98,97,110,110,101,114,2,2,152,67,148,253,172,161,123,189,8,1,14,46,99,111,110,115,101,110,116,45,112,111,112,117,112,2,1,112,22,124,189,8,1,12,46,99,111,111,107,105,101,45,105,110,102,111,2,1,125,134,67,200,8,1,11,46,99,111,111,107,105,101,45,108,97,119,2,1,38,201,222,92,8,1,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,2,1,141,253,6,70,8,1,18,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,111,120,2,1,70,77,253,152,8,1,16,46,99,111,111,107,105,101,65,99,99,101,112,116,66,111,120,2,1,241,228,210,40,8,1,13,46,99,111,111,107,105,101,66,97,110,110,101,114,2,1,38,157,28,48,8,1,20,46,99,111,111,107,105,101,80,111,108,105,99,121,66,66,111,116,116,111,109,2,1,126,15,243,55,8,1,21,46,99,111,111,107,105,101,115,45,98,97,110,100,45,111,118,101,114,108,97,121,2,1,196,170,120,0,8,1,13,46,103,100,112,114,45,109,101,115,115,97,103,101,2,3,38,157,45,86,184,140,202,83,219,20,36,56,8,1,17,46,104,120,95,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,95,156,229,149,8,1,23,46,108,101,103,97,108,45,98,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,2,1,124,141,0,80,8,1,14,46,108,111,119,101,115,116,45,116,101,97,115,101,114,2,1,173,137,238,209,8,1,12,46,109,45,97,103,114,101,101,109,101,110,116,2,1,148,199,178,32,8,1,16,46,110,108,45,99,111,111,107,105,101,112,111,108,105,99,121,2,1,126,159,132,157,8,1,22,46,112,97,114,107,45,115,110,97,99,107,98,97,114,45,99,111,111,107,105,101,115,2,1,68,43,189,44,8,1,16,46,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,2,1,3,39,9,106,8,1,27,46,117,49,50,45,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,110,111,116,105,99,101,2,1,233,150,165,244,8,1,16,46,122,101,112,104,114,45,99,111,109,112,111,110,101,110,116,2,1,104,168,162,49,0,1,16,97,112,112,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,162,243,67,88,0,1,21,100,105,118,35,99,109,112,45,97,112,112,45,99,111,110,116,97,105,110,101,114,2,1,175,60,74,16,0,1,20,116,105,107,116,111,107,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,66,46,160,42,8,1,17,46,103,98,110,101,119,45,99,111,111,107,105,101,45,98,97,114,2,2,76,204,201,79,167,151,9,45,16,5,4,35,97,112,112,2,2,27,95,86,155,216,116,37,43,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,5,21,35,111,110,101,116,114,117,115,116,45,99,111,110,115,101,110,116,45,115,100,107,2,1,73,191,207,62,13,100,105,115,112,108,97,121,58,32,110,111,110,101,16,5,8,35,119,114,97,112,112,101,114,2,2,33,223,13,193,224,160,44,249,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,26,46,99,111,111,107,105,101,45,100,105,97,108,111,103,46,109,101,103,97,45,100,105,97,108,111,103,2,2,55,14,235,93,103,195,40,99,8,1,18,46,102,109,45,100,105,97,108,111,103,45,111,118,101,114,108,97,121,2,2,55,14,235,93,103,195,40,99,8,5,12,46,102,117,108,108,46,98,108,117,114,101,100,2,1,91,17,129,193,24,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,0,5,4,98,111,100,121,2,1,118,27,7,221,27,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,8,5,11,46,109,111,100,97,108,45,111,112,101,110,2,1,79,14,186,81,55,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,97,100,100,105,110,103,45,114,105,103,104,116,58,32,48,32,33,105,109,112,111,114,116,97,110,116,59,8,5,36,46,111,118,101,114,108,97,121,101,100,32,46,98,111,116,116,111,109,45,112,97,103,101,46,115,99,114,111,108,108,45,98,108,111,99,107,2,2,55,14,235,93,103,195,40,99,56,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,32,45,119,101,98,107,105,116,45,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,8,5,15,46,119,114,97,112,112,101,114,46,98,108,117,114,101,100,2,3,3,158,31,168,6,253,13,56,74,41,218,104,24,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,27,12,69,206,21,24,15,30,116,29,171,122,164,33,26,151,228,43,129,86,39,44,148,137,164,46,3,65,69,59,91,47,186,104,62,114,245,123,117,211,38,123,117,211,38,126,61,4,129,128,47,248,183,137,232,35,216,144,14,34,87,148,159,167,59,158,100,4,187,177,9,21,40,180,57,145,106,182,132,160,154,190,1,13,143,201,18,214,144,201,126,135,157,234,50,247,22,237,101,181,24,242,231,20,106,242,231,115,104,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,9,98,111,100,121,44,104,116,109,108,2,128,0,0,2,33,0,106,238,69,1,11,43,133,1,31,94,79,1,228,194,164,2,32,4,220,2,99,68,170,2,180,184,185,3,221,144,204,3,225,33,202,4,245,233,82,5,19,152,115,5,195,142,180,5,197,48,119,5,197,128,115,6,51,68,43,6,201,238,36,6,231,82,200,7,27,82,234,7,162,61,159,8,5,21,210,8,112,200,90,8,249,18,245,9,166,155,248,9,188,99,18,10,47,119,45,10,239,0,117,11,100,248,122,12,162,233,111,13,133,105,221,13,229,238,255,14,253,99,170,15,101,177,138,16,80,223,208,18,100,213,80,18,225,113,107,19,146,191,189,19,155,89,114,19,242,67,232,20,160,40,179,22,83,84,209,23,214,144,227,24,105,243,16,24,220,39,8,25,24,18,143,26,249,103,30,27,105,173,217,27,105,176,211,27,121,128,12,27,143,85,196,29,7,186,167,29,48,86,73,29,131,69,137,30,196,120,72,30,245,179,140,31,24,58,156,31,205,139,61,32,20,76,84,32,121,49,135,32,166,173,95,33,114,87,104,34,99,51,177,34,112,119,125,35,114,222,46,36,74,62,128,36,111,67,223,36,172,254,160,37,0,214,128,37,190,113,74,38,88,51,179,40,5,180,134,40,209,59,191,40,233,190,112,41,193,244,95,41,197,115,71,43,188,37,115,43,220,2,28,43,234,32,59,44,44,50,184,44,98,66,146,45,79,208,114,45,80,97,220,45,123,41,147,45,250,21,95,46,96,57,22,46,121,43,12,46,255,150,126,47,105,88,193,47,117,163,85,47,140,212,54,47,164,11,78,47,180,211,55,47,248,103,212,48,72,118,44,48,81,214,135,48,254,8,250,49,17,166,18,49,30,76,101,49,81,7,155,49,184,185,149,50,136,115,121,50,187,213,224,50,216,116,140,52,179,241,149,53,219,106,42,54,162,60,139,55,36,119,126,55,152,150,107,55,174,250,229,55,220,145,37,55,234,238,179,56,187,206,18,57,23,37,123,57,225,64,90,58,53,26,171,62,237,49,68,63,33,221,45,63,54,208,56,63,60,250,15,63,119,206,60,63,164,38,62,64,72,21,132,65,36,162,50,65,99,84,19,66,143,94,11,68,52,173,83,68,118,236,166,72,139,195,89,73,185,43,61,73,210,79,67,74,87,141,170,75,79,197,104,75,214,65,32,76,80,230,132,76,195,181,165,77,21,178,74,77,66,238,186,77,108,72,175,77,125,177,44,79,22,3,236,79,28,129,175,79,124,141,146,79,153,245,136,81,74,82,189,82,41,186,53,82,84,226,218,82,252,232,201,83,174,29,18,84,231,215,111,85,9,33,57,85,195,143,71,86,72,169,202,87,151,63,153,87,201,235,203,88,136,162,166,89,240,143,125,89,250,235,101,90,5,245,122,90,177,250,111,90,205,36,145,90,222,62,101,91,6,61,207,91,38,201,177,91,64,3,6,92,167,97,60,92,202,7,145,94,133,172,30,94,168,182,149,95,30,189,95,95,51,65,181,95,52,234,42,96,152,107,1,96,228,222,49,96,242,224,18,96,249,137,194,97,27,236,142,97,94,216,16,97,154,89,197,97,169,97,253,97,215,207,210,98,5,138,13,98,140,180,22,98,203,191,236,99,127,49,174,99,129,28,60,100,5,164,33,100,220,37,233,100,248,193,125,101,13,208,183,101,23,129,38,101,149,154,90,101,227,144,63,101,234,247,76,102,67,82,89,103,19,92,82,103,49,1,21,104,247,212,242,105,44,110,148,105,231,8,238,106,22,201,115,106,204,145,155,107,46,202,135,107,63,43,50,108,83,123,67,109,119,134,94,109,230,219,22,109,239,66,250,109,255,58,35,110,102,124,222,110,132,56,7,112,34,89,251,112,176,252,129,112,243,226,1,113,71,99,151,113,231,212,96,114,229,117,243,115,0,208,108,115,76,9,168,115,140,180,87,115,188,80,93,116,33,62,32,117,65,169,250,117,165,179,145,118,5,129,76,118,125,112,131,118,152,30,104,118,227,144,153,119,72,228,42,119,158,64,101,120,76,3,238,120,142,148,106,121,42,184,112,122,241,164,172,123,14,188,138,123,76,39,185,123,156,214,228,123,245,210,151,124,172,135,144,126,22,115,196,126,159,247,208,126,243,151,235,127,56,109,227,127,93,124,105,127,148,114,179,128,87,244,163,128,175,17,223,129,35,167,165,129,86,152,59,129,140,116,65,129,206,220,23,129,247,230,164,130,16,89,136,130,85,33,172,130,128,5,163,131,49,12,34,131,205,199,210,132,59,87,240,133,168,28,177,134,168,219,230,135,41,102,210,135,86,131,12,135,179,19,203,136,68,237,63,136,74,118,71,136,239,79,31,138,15,55,72,138,54,31,3,138,67,238,56,138,160,250,148,139,22,115,77,139,74,4,44,139,93,23,132,139,99,161,111,142,37,204,216,142,37,215,194,142,119,34,204,143,117,224,155,143,247,46,188,144,114,209,196,145,94,149,129,145,180,103,77,145,219,251,30,146,2,253,104,146,7,7,46,146,9,224,214,146,97,201,138,147,241,190,65,148,180,2,87,148,186,151,254,148,201,198,110,149,61,224,166,149,117,53,72,150,86,74,99,150,119,75,132,150,215,66,40,151,193,189,204,152,106,152,37,152,197,90,108,154,57,129,198,155,176,210,102,156,62,8,32,156,242,160,60,157,20,65,107,157,49,204,221,158,93,215,44,159,109,226,17,159,177,176,174,159,214,176,53,160,163,225,9,161,182,73,124,162,45,36,120,163,3,116,103,163,200,215,195,163,224,55,5,164,7,154,215,164,111,240,197,164,131,235,254,165,21,143,180,165,84,149,78,165,197,46,151,165,208,240,21,166,53,41,6,166,60,196,183,166,135,88,206,167,91,255,127,167,221,164,49,168,36,71,230,168,81,220,230,168,130,91,20,168,130,91,89,168,146,211,205,168,179,141,22,169,92,171,187,169,208,243,253,170,90,44,90,170,158,94,119,170,186,57,47,170,189,162,33,170,223,136,142,171,12,108,39,171,61,145,217,171,191,165,169,173,43,255,219,174,34,26,168,174,67,204,156,174,87,210,77,174,236,193,74,175,47,41,180,176,28,234,63,176,38,69,179,176,168,16,229,176,214,32,91,177,78,54,71,177,82,23,173,177,84,195,135,178,53,247,54,178,242,57,61,179,54,98,251,179,246,70,248,179,252,1,196,180,20,20,128,180,42,128,209,181,92,93,121,181,103,133,17,181,192,2,209,182,118,76,194,182,131,103,46,183,19,47,126,183,234,128,238,184,54,253,127,185,143,10,187,186,17,0,118,186,171,68,163,187,163,2,68,188,0,105,156,188,90,90,104,189,123,157,26,189,136,247,223,189,220,209,138,189,246,46,204,190,81,6,164,190,166,218,36,192,98,74,80,192,150,133,185,192,160,196,151,192,211,138,241,193,20,199,155,193,30,27,169,194,30,241,234,194,197,250,217,195,233,130,182,196,98,108,140,197,185,76,77,197,246,170,113,198,16,206,85,198,70,124,231,199,21,198,3,199,85,110,85,199,192,4,52,199,238,105,254,201,8,173,250,201,55,92,33,201,132,145,170,201,171,1,21,202,20,192,118,202,71,166,237,202,90,80,30,202,123,79,97,202,187,104,110,202,197,92,97,203,23,240,242,203,72,4,52,203,218,117,105,205,85,108,188,205,103,243,180,205,139,105,156,206,73,128,129,206,131,21,107,208,19,207,93,208,165,100,125,208,209,244,95,209,90,90,225,209,104,148,22,209,234,234,206,210,85,214,148,211,47,240,202,211,142,107,111,211,229,179,172,212,0,133,15,212,88,206,32,212,143,13,204,212,147,255,90,212,166,187,95,212,167,82,53,212,252,75,230,212,254,196,217,213,21,222,173,213,57,36,87,213,78,130,247,213,150,119,231,213,180,187,136,215,152,24,124,215,152,89,224,215,254,223,253,216,116,110,193,217,89,86,255,217,138,217,255,218,69,185,178,218,104,112,114,219,20,36,56,219,195,250,244,219,247,98,37,220,74,155,110,221,50,177,185,221,98,227,202,221,132,49,91,222,185,79,167,223,21,35,186,223,77,136,235,223,79,166,12,223,179,156,238,224,25,143,141,224,80,66,167,224,217,11,30,225,149,21,50,226,214,22,66,227,21,32,196,227,183,238,17,228,106,169,19,228,142,13,239,228,145,154,151,229,50,211,241,229,125,178,249,229,137,84,105,229,243,46,119,230,58,218,156,230,71,119,4,230,82,201,5,230,99,178,240,231,28,114,150,231,169,20,32,231,198,185,139,231,246,76,113,232,102,57,148,232,139,12,123,233,95,91,1,233,116,94,191,233,168,143,158,234,97,192,126,234,133,81,255,234,162,5,2,234,205,190,59,235,198,217,146,236,156,183,226,236,175,246,7,236,255,61,13,237,5,172,200,238,40,98,202,238,85,209,138,238,139,88,175,238,156,121,163,238,254,75,84,239,79,128,25,239,110,160,188,239,181,97,194,240,222,163,61,241,45,91,162,241,100,52,107,241,147,80,46,241,242,69,91,242,81,114,208,242,112,38,63,242,121,41,147,242,231,23,96,242,231,149,26,242,231,162,172,243,130,144,134,244,99,23,123,245,134,194,212,245,220,43,96,246,151,134,93,247,202,203,178,247,207,85,99,248,35,161,109,248,77,244,136,248,145,69,50,248,162,153,145,248,199,98,18,249,25,185,62,249,36,43,13,249,139,19,220,249,142,131,80,250,12,8,186,250,29,71,141,250,141,135,15,251,97,129,212,251,155,133,9,251,164,162,15,251,224,145,55,252,165,59,17,252,243,135,192,253,23,159,122,253,143,254,164,254,141,69,159,254,145,212,146,255,222,12,168,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,20,98,111,100,121,46,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,2,1,41,152,61,78,24,111,118,101,114,102,108,111,119,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,15,98,111,100,121,46,109,111,100,97,108,45,111,112,101,110,2,2,81,123,231,114,127,22,176,209,24,111,118,101,114,102,108,111,119,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,26,100,105,118,91,99,108,97,115,115,61,34,97,112,112,45,99,111,110,116,97,105,110,101,114,34,93,2,1,86,95,75,101,43,102,105,108,116,101,114,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,0,5,4,104,116,109,108,2,46,0,200,68,89,21,172,189,110,27,102,130,230,28,234,3,136,43,132,77,112,46,10,37,63,53,239,122,245,55,83,118,72,61,143,88,155,65,215,162,25,89,216,64,140,91,57,105,197,97,3,148,116,104,56,212,180,121,145,191,65,125,22,59,63,129,187,226,174,133,93,2,27,135,54,174,3,138,224,198,215,139,56,140,205,140,190,103,25,151,230,57,26,158,198,180,50,162,193,165,63,170,46,199,87,175,74,143,118,180,214,39,56,189,228,31,115,191,226,99,191,198,236,35,253,203,93,52,106,206,67,191,83,207,114,240,198,213,198,254,229,218,42,20,132,219,43,227,24,221,181,58,112,222,4,108,102,224,33,80,177,224,35,169,64,225,148,20,206,229,244,167,59,232,237,143,111,233,65,219,112,255,156,155,225,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,4,104,116,109,108,2,2,4,51,252,17,181,217,105,31,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,5,1,42,2,104,2,214,244,237,3,28,179,34,3,86,133,11,6,114,136,187,7,248,34,209,8,129,165,37,8,220,31,26,11,207,159,118,12,239,86,114,13,150,82,180,14,101,187,105,14,108,84,199,16,130,178,238,18,48,69,33,19,131,81,165,21,178,25,59,27,95,86,155,29,131,69,137,30,164,191,17,30,173,82,78,30,248,7,116,31,198,235,139,36,80,170,114,39,209,196,53,44,13,168,173,46,244,202,176,51,47,176,201,51,118,176,188,54,21,35,237,56,143,157,91,60,220,225,5,63,25,15,246,66,223,145,120,66,243,23,99,70,244,190,141,77,44,1,200,79,130,191,241,81,213,211,234,82,42,174,143,84,32,95,63,88,206,243,169,90,238,91,43,92,188,66,171,93,224,113,230,95,80,217,233,101,172,180,79,106,211,223,79,114,171,68,104,120,33,139,141,126,167,161,129,127,239,109,212,129,99,147,89,136,32,82,248,140,138,97,54,144,114,209,196,144,241,105,171,149,138,69,197,149,143,61,160,151,164,170,10,154,166,145,127,157,8,41,79,159,119,250,236,159,124,171,99,161,253,1,67,163,233,152,134,167,37,150,248,167,112,61,173,168,67,123,82,169,172,222,70,172,30,142,69,172,99,190,42,174,222,214,246,176,34,83,109,176,67,142,12,180,75,221,215,181,62,165,162,182,5,129,132,182,215,123,189,186,20,91,46,190,0,254,171,190,170,110,110,192,114,143,95,200,155,109,60,201,171,1,21,203,252,59,125,204,5,247,243,206,124,178,18,206,131,54,197,207,216,139,196,208,238,179,108,216,116,37,43,217,143,122,76,217,163,201,165,220,8,51,157,227,87,141,23,228,57,53,87,229,128,174,152,231,134,6,117,242,48,32,37,242,81,140,25,245,40,89,243,247,119,240,1,249,22,190,60,253,36,70,102,23,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,0,5,1,42,2,5,11,207,159,118,102,98,8,133,192,114,143,95,198,16,206,85,249,121,247,62,22,111,112,97,99,105,116,121,58,32,49,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,24,4,33,87,11,15,200,50,173,18,48,33,240,22,102,191,59,22,244,230,143,24,15,30,116,38,157,169,184,47,252,251,73,54,17,4,250,57,213,190,162,94,161,0,212,95,194,174,230,97,111,131,58,126,26,136,131,131,215,166,5,152,186,58,153,191,191,162,49,198,218,75,81,199,61,109,193,209,65,250,139,209,82,101,87,213,180,187,136,234,157,37,42,254,18,238,120,26,112,111,115,105,116,105,111,110,58,32,117,110,115,101,116,32,33,105,109,112,111,114,116,97,110,116,0,5,4,98,111,100,121,2,6,32,230,117,142,81,156,104,22,155,36,22,25,190,147,247,253,197,215,202,131,224,166,30,95,27,111,118,101,114,102,108,111,119,58,32,115,99,114,111,108,108,32,33,105,109,112,111,114,116,97,110,116,0,5,4,98,111,100,121,2,128,0,0,1,88,0,0,172,144,0,240,149,40,1,189,186,229,3,127,238,110,4,74,93,149,4,191,184,28,4,211,70,19,5,140,23,52,6,10,232,162,6,246,236,191,7,40,111,62,7,236,55,34,8,76,251,196,8,86,212,82,8,220,31,26,9,75,42,243,9,109,46,222,9,167,165,244,10,78,145,86,10,229,226,23,11,31,170,22,11,53,120,21,13,135,226,149,13,214,47,138,15,235,67,169,16,6,127,34,16,68,96,128,16,219,6,163,17,149,186,203,17,171,205,212,19,172,79,15,20,210,155,179,20,233,23,212,21,127,55,96,22,225,138,73,23,39,63,60,23,96,42,93,23,124,98,162,24,97,194,251,24,105,135,61,24,155,236,108,26,173,135,161,27,105,83,31,29,248,224,186,31,62,103,85,31,226,137,61,33,145,79,97,33,147,227,9,34,92,159,74,34,102,98,156,34,125,18,10,34,164,217,85,35,253,99,181,36,44,150,204,36,80,190,85,38,80,33,63,38,157,52,85,38,157,104,207,38,197,13,248,39,110,234,107,40,13,189,81,40,160,57,139,42,11,114,238,44,44,148,35,45,94,94,128,46,0,223,103,46,117,89,18,48,50,228,33,49,214,49,117,50,193,3,80,51,47,176,201,51,118,176,188,51,239,231,92,52,22,9,246,52,39,42,100,52,112,49,133,52,244,83,226,53,223,166,223,54,51,242,254,55,86,205,100,56,5,113,58,57,34,126,39,58,201,54,18,59,6,15,106,62,81,103,83,62,98,35,162,62,207,13,234,64,180,75,113,64,241,146,254,65,148,168,225,66,97,143,7,66,213,91,158,66,223,145,120,67,167,33,167,69,223,1,193,70,236,194,129,70,244,190,141,73,26,242,192,73,178,240,77,75,143,213,69,76,242,194,162,77,65,140,87,80,178,160,96,81,221,227,125,82,155,209,55,83,74,51,11,83,146,197,207,83,215,70,176,83,254,0,96,84,225,243,86,85,192,146,115,86,68,82,72,87,200,247,70,88,206,193,214,89,134,88,127,89,215,159,96,89,226,116,131,89,240,120,220,89,240,146,167,90,160,61,165,90,222,192,102,91,80,194,97,91,148,181,182,92,145,212,209,92,184,154,91,93,123,67,174,94,89,105,107,95,213,49,37,96,248,24,9,97,66,197,170,97,98,108,97,99,175,215,42,100,71,215,91,101,34,217,68,101,63,62,102,106,44,19,122,106,211,223,79,109,49,62,114,111,74,105,39,111,195,203,161,112,0,40,162,112,120,144,181,114,171,68,104,114,182,245,249,115,58,41,212,117,16,84,134,117,52,105,24,118,33,25,1,120,9,172,67,121,61,154,225,121,195,1,229,121,197,122,200,121,213,17,6,122,171,1,91,124,61,220,196,124,226,226,31,125,40,205,2,126,5,249,235,126,23,191,35,127,46,223,14,127,109,233,244,127,181,244,212,127,198,177,82,127,201,124,8,127,219,176,110,129,25,115,121,129,35,168,175,130,25,28,205,130,65,130,92,131,134,9,125,131,181,205,125,132,79,51,32,133,161,250,65,134,153,93,38,135,133,64,22,135,220,174,196,136,32,52,38,136,132,131,48,137,65,7,137,137,255,116,205,139,13,88,129,139,94,71,105,139,95,45,132,140,17,225,5,140,138,97,54,140,228,184,155,141,39,104,22,143,157,226,151,144,159,197,195,144,244,229,15,145,102,180,1,146,88,80,23,146,149,79,23,147,237,107,127,147,244,199,200,148,2,233,226,148,107,239,124,148,220,136,194,149,111,115,137,150,133,192,136,150,173,116,246,150,191,17,246,152,59,11,173,152,202,49,87,153,97,244,71,154,197,97,224,155,47,91,52,155,143,90,73,156,18,39,182,156,219,214,38,157,97,23,76,158,34,82,4,158,107,241,156,159,124,171,99,159,154,195,195,160,18,124,57,161,188,5,65,162,127,244,0,163,110,104,168,164,150,9,185,165,179,224,92,167,237,61,197,168,98,136,192,168,115,57,93,168,207,90,191,168,223,3,118,170,0,42,89,170,33,178,69,170,207,221,200,171,26,82,178,171,27,192,149,171,164,43,52,173,40,170,137,173,128,224,136,173,189,154,44,173,206,31,175,174,21,21,111,174,94,177,182,176,34,83,109,176,67,142,12,180,255,3,88,181,39,62,49,184,116,197,190,185,10,100,128,185,56,19,25,185,101,114,144,186,21,88,153,187,18,226,198,188,230,247,171,189,13,198,197,190,14,113,160,190,81,78,81,190,81,126,9,190,148,39,154,190,148,87,98,190,148,116,1,190,190,181,101,193,165,183,148,195,255,151,31,196,141,197,203,197,8,125,148,197,137,136,240,197,215,255,18,198,151,82,152,198,209,13,149,199,154,133,188,199,201,96,156,200,117,95,197,200,155,109,60,201,4,218,84,201,58,100,60,201,251,87,207,202,76,187,112,202,187,84,56,202,254,247,233,203,171,122,52,204,160,32,94,206,17,82,203,209,50,247,137,209,71,7,226,209,189,210,65,210,1,62,179,211,32,26,173,213,140,152,2,213,213,21,137,214,47,197,181,215,142,227,255,215,180,61,79,216,55,120,88,216,103,60,171,217,181,109,124,218,73,211,30,219,33,1,161,219,43,142,23,219,181,173,4,219,234,26,122,220,136,233,64,220,161,29,64,220,244,135,81,221,65,143,14,222,169,20,255,222,223,19,181,225,109,60,0,225,135,157,214,226,106,183,120,227,122,131,102,227,175,14,130,228,78,122,250,229,128,174,152,229,163,198,99,229,206,64,192,231,90,231,159,231,134,6,117,233,26,40,213,233,57,31,65,233,233,143,130,234,36,93,207,235,114,219,202,236,44,189,59,236,145,237,200,236,164,82,235,240,219,179,226,241,147,125,138,242,13,90,212,242,48,32,37,242,81,140,25,242,231,70,49,244,52,4,127,244,98,185,169,245,40,89,243,245,239,199,68,245,251,61,145,246,229,57,98,247,201,11,11,247,231,49,126,248,56,28,41,249,70,123,166,249,93,78,0,250,251,160,174,251,11,116,119,252,122,25,34,252,212,4,88,252,242,250,38,254,31,120,145,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,11,35,71,68,80,82,45,109,111,100,97,108,2,1,190,81,78,81,16,1,47,35,95,95,116,101,97,108,105,117,109,71,68,80,82,101,99,77,111,100,97,108,32,62,32,35,112,114,105,118,97,99,121,45,108,97,121,101,114,95,95,119,114,97,112,112,101,114,2,2,47,105,88,193,229,243,46,119,16,1,6,35,99,111,76,97,98,2,2,138,54,31,3,224,25,143,141,16,1,8,35,99,111,110,115,101,110,116,2,1,153,97,244,71,16,1,17,35,99,111,110,115,101,110,116,95,95,111,118,101,114,108,97,121,2,1,153,97,244,71,16,1,31,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,108,105,103,104,116,98,111,120,45,111,118,101,114,108,97,121,2,1,165,179,224,92,16,1,18,35,99,111,111,107,105,101,66,97,110,110,101,114,77,111,100,97,108,2,1,44,44,148,35,16,1,16,35,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,2,1,249,93,78,0,16,1,8,35,99,111,111,107,105,101,115,2,1,55,86,205,100,16,1,12,35,99,111,111,107,105,101,115,45,100,108,103,2,6,104,56,212,180,133,93,2,27,158,198,180,50,170,46,199,87,218,42,20,132,219,43,227,24,16,1,26,35,99,111,114,110,101,108,115,101,110,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,2,1,121,145,191,65,16,1,12,35,100,105,97,108,111,103,45,114,111,100,111,2,1,36,80,190,85,8,1,19,46,122,45,53,48,46,98,103,45,111,112,97,99,105,116,121,45,53,48,2,1,90,238,91,43,16,1,16,35,100,105,115,99,108,97,105,109,101,114,77,111,100,97,108,2,1,11,53,120,21,16,1,15,35,111,118,101,114,108,97,121,45,45,109,111,100,97,108,2,8,47,252,251,73,54,17,4,250,131,215,166,5,152,186,58,153,198,218,75,81,199,61,109,193,209,65,250,139,234,157,37,42,16,1,5,35,114,111,100,111,2,1,252,212,4,88,16,1,15,35,115,116,97,116,105,99,66,97,99,107,100,114,111,112,2,1,219,33,1,161,16,1,31,35,115,116,97,116,105,99,66,97,99,107,100,114,111,112,67,111,111,107,105,101,98,111,116,76,111,97,100,105,110,103,2,1,219,33,1,161,0,1,25,98,111,100,121,32,62,32,100,105,118,32,62,32,46,99,115,115,45,49,100,98,106,99,52,110,2,1,112,120,144,181,16,1,11,35,116,101,114,109,115,80,111,112,117,112,2,1,40,13,189,81,16,1,12,35,117,99,109,45,119,114,97,112,112,101,114,2,1,192,160,196,151,16,1,3,35,120,107,2,1,88,206,193,214,8,1,15,46,67,111,111,107,105,101,66,97,114,79,117,116,101,114,2,2,148,2,233,226,174,21,21,111,8,1,12,46,67,111,111,107,105,101,77,111,100,97,108,2,1,22,225,138,73,8,1,20,46,72,67,111,111,107,105,101,66,97,114,45,72,111,118,101,114,108,97,121,2,1,23,96,42,93,8,1,15,46,77,117,105,68,105,97,108,111,103,45,114,111,111,116,2,1,35,253,99,181,8,1,6,46,80,111,112,117,112,2,1,85,192,146,115,0,1,41,100,105,118,91,99,108,97,115,115,42,61,34,82,101,97,99,116,77,111,100,97,108,95,95,79,118,101,114,108,97,121,45,45,99,111,111,107,105,101,34,93,2,1,127,219,176,110,8,1,17,46,97,103,95,99,111,111,107,105,101,95,98,97,110,110,101,114,2,1,78,95,243,228,8,1,17,46,97,103,114,101,101,109,101,110,116,77,101,115,115,97,103,101,2,1,162,193,165,63,8,1,17,46,97,103,114,101,101,109,101,110,116,79,118,101,114,108,97,121,2,1,162,193,165,63,8,1,19,46,97,110,119,98,114,45,99,111,111,107,105,101,45,108,97,121,101,114,2,1,190,148,87,98,8,1,8,46,98,45,109,111,100,97,108,2,1,52,244,83,226,8,1,16,46,98,45,109,111,100,97,108,95,111,118,101,114,108,97,121,2,1,52,244,83,226,8,1,9,46,98,97,99,107,100,114,111,112,2,1,235,114,219,202,8,1,8,46,98,108,111,99,107,101,114,2,1,137,255,116,205,8,1,11,46,98,108,117,114,45,109,111,100,97,108,2,1,117,16,84,134,8,1,13,46,98,111,100,121,45,111,118,101,114,108,97,121,2,1,55,83,118,72,8,1,19,46,99,45,109,111,100,97,108,95,95,99,111,110,116,97,105,110,101,114,2,1,236,164,82,235,8,1,17,46,99,45,115,103,45,45,100,105,115,99,108,97,105,109,101,114,2,1,129,35,168,175,8,1,15,46,99,45,115,105,116,101,45,111,118,101,114,108,97,121,2,1,129,35,168,175,8,1,22,46,99,99,45,102,108,111,97,116,105,110,103,46,99,99,45,119,105,110,100,111,119,2,1,110,155,36,8,8,1,18,46,99,99,45,119,105,110,100,111,119,45,98,108,111,99,107,101,114,2,1,110,155,36,8,8,1,14,46,99,108,98,45,99,111,110,116,97,105,110,101,114,2,1,190,81,126,9,8,1,19,46,99,111,110,115,101,110,116,45,98,111,120,45,104,111,108,100,101,114,2,1,86,95,75,101,8,1,19,46,99,111,110,115,101,110,116,45,109,111,100,97,108,45,109,97,105,110,2,1,202,187,84,56,8,1,15,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,18,48,33,240,8,1,26,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,109,111,100,97,108,45,108,97,121,101,114,2,1,249,70,123,166,8,1,26,46,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,95,99,111,110,116,97,105,110,101,114,2,2,85,226,105,25,157,98,186,107,8,1,22,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,119,114,97,112,112,101,114,2,1,204,160,32,94,8,1,15,46,100,105,97,108,111,103,45,111,118,101,114,108,97,121,2,1,92,184,154,91,8,1,7,46,107,101,122,81,98,89,2,1,34,102,98,156,8,1,19,46,100,110,98,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,2,1,213,198,254,229,8,1,17,46,102,97,110,99,121,98,111,120,45,105,115,45,111,112,101,110,2,1,33,147,227,9,8,1,23,46,102,97,110,99,121,98,111,120,45,111,118,101,114,108,97,121,45,102,105,120,101,100,2,1,56,5,113,58,8,1,16,46,102,99,45,99,111,110,115,101,110,116,45,114,111,111,116,2,1,38,157,104,207,8,1,20,46,103,108,105,103,104,116,98,111,120,45,99,111,110,116,97,105,110,101,114,2,1,27,102,130,230,8,1,7,46,106,79,83,87,90,97,2,1,142,51,144,174,8,1,23,46,106,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,32,62,32,100,105,118,2,1,34,92,159,74,8,1,18,46,106,115,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,7,7,142,190,184,106,200,204,131,156,172,32,174,177,255,9,102,187,115,160,68,197,156,210,37,208,210,15,28,8,1,7,46,106,115,115,49,53,49,2,1,163,110,104,168,8,1,7,46,106,115,115,49,53,54,2,1,163,110,104,168,8,1,16,46,106,115,95,109,111,100,97,108,95,99,111,111,107,105,101,2,1,29,171,122,164,8,1,13,46,109,101,110,117,45,119,114,97,112,112,101,114,2,2,176,34,83,109,176,67,142,12,8,1,10,46,109,102,112,45,114,101,97,100,121,2,4,138,224,198,215,144,14,34,87,189,228,31,115,221,181,58,112,8,1,6,46,109,111,100,97,108,2,4,45,94,94,128,117,16,84,134,180,255,3,88,193,165,183,148,8,1,15,46,109,111,100,97,108,45,45,99,111,110,115,101,110,116,2,1,11,31,170,22,8,1,11,46,109,111,100,97,108,45,98,97,99,107,2,2,62,98,35,162,95,213,49,37,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,58,0,200,68,89,9,104,15,90,11,31,170,22,11,53,120,21,16,219,6,163,20,233,23,212,21,172,189,110,22,225,138,73,28,234,3,136,29,171,122,164,31,226,137,61,36,80,190,85,44,44,148,35,45,94,94,128,69,223,1,193,81,123,231,114,84,225,243,86,96,248,24,9,97,66,197,170,97,98,108,97,111,195,203,161,120,9,172,67,121,195,1,229,127,22,176,209,127,201,124,8,129,187,226,174,135,133,64,22,139,56,140,205,140,190,103,25,146,88,80,23,146,149,79,23,155,143,90,73,163,200,215,195,170,33,178,69,171,61,145,217,175,74,143,118,180,255,3,88,181,39,62,49,186,21,88,153,190,14,113,160,190,81,78,81,190,190,181,101,193,165,183,148,199,201,96,156,200,117,95,197,204,160,32,94,209,71,7,226,219,33,1,161,220,161,29,64,228,78,122,250,228,83,70,6,233,65,219,112,236,233,156,2,240,219,179,226,247,201,11,11,248,56,28,41,249,93,78,0,252,212,4,88,8,1,36,46,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,1,167,237,61,197,8,1,17,46,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,2,1,224,33,80,177,8,1,13,46,109,111,100,97,108,45,100,105,97,108,111,103,2,1,171,61,145,217,8,1,14,46,109,111,100,97,108,45,111,118,101,114,108,97,121,2,2,231,90,231,159,242,13,90,212,8,1,16,46,111,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,170,0,42,89,8,1,25,46,111,97,120,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,111,100,97,108,2,2,155,47,91,52,201,58,100,60,8,1,5,46,111,98,99,99,2,1,203,93,52,106,8,1,10,46,112,111,112,95,117,112,95,98,103,2,1,67,167,33,167,8,1,26,46,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,45,45,98,97,99,107,100,114,111,112,2,2,4,74,93,149,245,239,199,68,8,1,23,46,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,45,45,109,111,100,97,108,2,2,4,74,93,149,245,239,199,68,8,1,18,46,113,99,45,99,109,112,50,45,99,111,110,116,97,105,110,101,114,2,1,94,94,39,148,8,1,16,46,114,101,118,101,97,108,45,109,111,100,97,108,45,98,103,2,1,222,169,20,255,8,1,15,46,114,101,118,101,97,108,45,111,118,101,114,108,97,121,2,2,177,82,23,173,248,145,69,50,8,1,19,46,115,104,111,119,46,109,111,100,97,108,45,99,111,111,107,105,101,115,2,1,155,143,90,73,8,1,19,46,115,116,121,108,101,115,95,115,104,111,119,95,95,49,78,113,100,90,2,1,109,49,62,114,8,1,19,46,116,114,117,115,116,101,95,98,111,120,95,111,118,101,114,108,97,121,2,1,100,197,92,0,8,1,15,46,116,114,117,115,116,101,95,111,118,101,114,108,97,121,2,1,100,197,92,0,8,1,18,46,117,105,45,119,105,100,103,101,116,45,111,118,101,114,108,97,121,2,3,33,223,13,193,126,61,4,129,232,237,143,111,8,1,23,46,118,107,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,199,160,250,208,8,1,13,46,119,114,97,112,95,95,99,111,111,107,105,101,2,2,182,5,129,132,190,0,254,171,8,1,19,46,119,114,97,112,95,99,111,111,107,105,101,115,95,112,111,112,117,112,2,2,111,74,105,39,236,145,237,200,8,1,18,46,119,116,45,99,108,105,45,99,111,111,107,105,101,45,98,97,114,2,1,234,51,41,10,0,1,23,91,99,108,97,115,115,61,34,109,111,100,97,108,45,99,111,111,99,107,105,101,34,93,2,1,118,27,7,221,0,1,20,91,105,100,61,34,99,111,111,99,107,105,101,45,109,111,100,97,108,34,93,2,1,118,27,7,221,0,1,26,91,105,100,61,34,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,34,93,2,1,73,26,242,192,0,1,58,100,105,118,91,99,108,97,115,115,42,61,34,72,97,108,117,97,109,109,101,80,97,108,118,101,108,108,97,83,105,110,117,97,80,97,114,101,109,109,105,110,95,95,67,111,110,115,101,110,116,68,105,97,108,111,103,34,93,2,1,99,175,215,42,0,1,23,100,105,118,91,99,108,97,115,115,94,61,34,111,118,101,114,108,97,121,45,45,34,93,2,1,126,23,191,35,0,1,32,100,105,118,91,105,100,94,61,34,103,101,110,101,114,97,108,45,99,111,111,107,105,101,115,45,109,111,100,97,108,34,93,2,1,224,166,30,95,0,1,12,116,104,111,114,45,99,111,111,107,105,101,115,2,1,126,5,249,235,2,1,48,97,101,108,100,44,32,68,79,77,67,111,110,116,101,110,116,76,111,97,100,101,100,44,32,106,115,45,114,101,118,111,107,101,45,99,111,111,107,105,101,45,109,97,110,97,103,101,114,2,1,137,49,223,53,2,1,25,97,101,108,100,44,32,108,111,97,100,44,32,99,111,110,115,101,110,116,68,105,97,108,111,103,2,1,19,230,179,52,0,1,66,100,105,118,32,62,32,100,105,118,91,97,114,105,97,45,108,105,118,101,61,34,112,111,108,105,116,101,34,93,58,110,111,116,40,91,100,97,116,97,45,116,101,115,116,105,100,61,34,116,111,112,45,114,101,115,117,108,116,45,99,97,114,100,34,93,41,2,1,227,62,88,242,2,1,30,97,111,112,114,44,32,95,95,99,109,112,71,100,112,114,65,112,112,108,105,101,115,71,108,111,98,97,108,108,121,2,33,30,67,223,94,37,97,173,151,38,157,26,110,49,61,108,199,50,123,116,50,59,218,238,57,66,30,181,76,112,17,57,88,126,244,226,255,128,159,5,116,130,219,24,149,135,38,58,92,146,149,79,23,155,91,242,185,158,44,66,120,159,31,188,33,165,3,3,116,170,8,46,191,189,28,99,169,193,188,215,25,194,197,249,1,198,7,153,105,199,144,234,161,212,37,95,71,215,107,140,12,227,247,27,102,231,225,197,55,236,70,232,70,239,168,34,3,239,225,194,153,248,56,106,26,248,134,13,179,249,134,71,105,2,1,25,97,111,112,114,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,46,80,111,112,117,112,2,1,1,77,120,9,2,1,15,97,111,112,114,44,32,99,111,111,107,105,101,109,97,110,2,1,236,233,156,2,2,1,59,97,101,108,100,44,32,108,111,97,100,44,32,102,117,110,99,116,105,111,110,40,41,123,105,102,40,115,46,114,101,97,100,121,83,116,97,116,101,61,61,88,77,76,72,116,116,112,82,101,113,117,101,115,116,46,68,79,78,69,2,1,203,215,58,9,2,1,36,115,101,116,44,32,99,105,99,99,46,99,111,111,107,105,101,95,99,97,116,95,115,116,97,116,105,115,116,105,99,44,32,116,114,117,101,2,4,8,133,149,37,40,97,160,198,130,117,230,227,231,18,32,223,2,1,39,115,101,116,44,32,99,111,110,102,105,103,46,114,101,113,117,105,114,101,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,201,104,184,156,2,1,43,115,101,116,44,32,119,105,110,100,111,119,46,99,111,110,115,101,110,116,77,97,110,97,103,101,109,101,110,116,69,110,97,98,108,101,100,44,32,102,97,108,115,101,2,17,1,43,18,68,16,16,120,228,21,223,86,168,44,162,167,255,67,171,87,252,70,219,126,52,89,112,48,183,98,82,12,42,135,64,243,129,161,120,190,85,166,200,62,18,174,11,34,112,204,227,206,220,212,220,214,241,213,86,167,138,231,111,155,185,240,194,24,232,16,1,20,35,99,97,116,97,112,117,108,116,45,99,111,111,107,105,101,45,98,97,114,2,1,59,221,128,81,8,1,9,46,98,111,120,45,114,111,100,111,2,1,192,8,236,55,8,1,17,46,103,100,112,114,45,112,114,105,118,97,99,121,45,98,97,114,2,1,142,3,234,202,8,1,14,46,112,111,112,117,112,45,100,105,115,112,108,97,121,2,1,146,14,147,93,16,1,14,35,98,97,110,110,101,114,45,99,111,111,107,105,101,2,1,38,156,51,231,16,1,12,35,103,100,112,114,45,98,97,110,110,101,114,2,10,6,209,168,227,27,104,84,115,28,65,247,44,34,191,192,107,97,1,39,158,129,178,163,70,133,156,250,114,139,117,210,208,143,109,219,248,148,192,203,215,16,1,17,35,99,111,111,107,105,101,115,100,105,114,101,99,116,105,118,101,2,1,163,120,251,157,16,1,19,35,99,111,111,107,105,101,80,111,108,105,99,121,45,108,97,121,101,114,2,1,97,202,195,213,16,1,13,35,99,111,111,107,105,101,112,111,108,105,99,121,2,1,203,217,65,204,8,1,14,46,99,111,111,107,105,101,67,111,110,116,114,111,108,2,1,248,4,193,235,8,1,11,46,99,111,111,107,105,101,115,108,97,119,2,1,51,238,191,225,8,1,21,46,111,118,101,114,108,97,121,99,111,111,107,105,101,99,111,110,115,101,110,116,2,1,218,104,112,114,16,1,21,35,95,95,116,101,97,108,105,117,109,71,68,80,82,101,99,77,111,100,97,108,2,1,218,104,112,114,8,1,15,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,124,92,186,137,8,1,17,46,111,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,194,197,252,190,8,1,19,46,98,45,99,111,111,107,105,101,115,45,105,110,102,111,114,109,101,114,2,1,250,115,198,222,16,1,11,35,99,111,111,107,105,101,45,98,97,114,2,2,8,197,51,105,112,143,26,82,16,1,13,35,99,99,111,110,115,101,110,116,45,98,97,114,2,1,181,123,244,216,16,1,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,186,157,100,77,16,1,31,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,46,109,111,100,97,108,2,1,81,123,231,114,16,1,20,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,2,6,27,115,44,183,60,46,36,25,77,94,139,125,78,135,186,102,202,49,177,1,248,163,163,223,16,1,20,35,111,110,101,116,114,117,115,116,45,98,97,110,110,101,114,45,115,100,107,2,23,3,131,191,81,3,221,144,204,10,39,208,120,30,8,65,190,30,252,193,249,38,157,25,55,46,125,136,231,55,51,184,46,58,215,76,247,59,188,44,87,63,84,191,49,98,246,214,107,102,178,157,41,106,205,253,198,108,84,170,0,118,38,40,116,125,136,238,242,148,188,24,235,162,242,224,168,166,108,78,5,180,123,25,38,236,121,108,144,246,79,43,52,16,1,21,35,111,110,101,116,114,117,115,116,45,99,111,110,115,101,110,116,45,115,100,107,2,24,3,131,191,81,3,221,144,204,10,39,208,120,30,8,65,190,30,252,193,249,38,156,254,70,38,157,25,55,46,125,136,231,55,51,184,46,58,215,76,247,59,188,44,87,63,84,191,49,98,246,214,107,102,178,157,41,106,205,253,198,108,84,170,0,118,38,40,116,125,136,238,242,148,188,24,235,162,242,224,168,166,108,78,5,180,123,25,38,236,121,108,144,246,79,43,52,16,1,14,35,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,201,4,218,84,16,1,22,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,111,118,101,114,108,97,121,2,1,201,4,218,84,16,1,20,35,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,2,1,3,45,91,14,16,1,11,35,99,111,111,107,105,101,45,112,111,112,2,7,38,156,51,231,40,72,181,123,47,189,172,246,60,113,60,225,91,54,106,33,122,175,35,218,143,249,46,115,8,1,14,46,99,111,111,107,105,101,99,111,110,115,101,110,116,2,1,139,179,230,231,16,1,15,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,2,1,190,29,96,229,16,1,13,35,99,111,111,107,105,101,66,97,110,110,101,114,2,1,182,60,166,240,16,1,14,35,99,111,111,107,105,101,115,95,109,111,100,97,108,2,1,127,22,176,209,16,1,14,35,101,117,45,99,111,111,107,105,101,45,108,97,119,2,1,87,206,56,155,8,1,8,46,99,111,110,115,101,110,116,2,1,41,152,61,78,8,1,14,46,99,111,111,107,105,101,77,101,115,115,97,103,101,2,1,227,239,160,232,8,1,21,46,99,111,111,107,105,101,45,114,101,118,111,107,101,45,104,105,100,100,101,110,2,1,32,51,62,83,8,1,14,46,99,111,111,107,105,101,87,97,114,110,105,110,103,2,1,203,99,211,129,8,1,16,46,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,2,1,236,121,108,144,8,1,16,46,99,111,111,107,105,101,115,79,118,101,114,108,97,121,50,2,1,74,41,218,104,8,1,19,46,99,111,111,107,105,101,115,79,118,101,114,108,97,121,50,66,111,120,2,3,3,158,31,168,6,253,13,56,91,17,129,193,8,1,15,46,110,111,116,105,99,101,45,45,99,111,111,107,105,101,2,4,41,73,147,229,129,88,250,172,191,93,59,107,198,82,9,104,8,1,17,46,112,101,97,95,99,111,111,107,95,119,114,97,112,112,101,114,2,1,80,27,228,170,8,1,20,46,112,101,110,99,105,45,119,114,97,112,45,103,112,114,100,45,108,97,119,2,1,211,34,134,255,8,1,28,46,119,105,100,103,101,116,95,101,117,95,99,111,111,107,105,101,95,108,97,119,95,119,105,100,103,101,116,2,1,62,169,172,34,8,1,29,46,112,117,109,91,100,97,116,97,45,112,111,112,109,97,107,101,42,61,34,99,111,111,107,105,101,115,34,93,2,1,255,156,155,225,8,1,22,46,115,105,116,101,45,109,101,115,115,97,103,101,45,45,99,111,111,107,105,101,115,2,1,210,74,245,15,0,1,23,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,97,110,110,101,114,34,93,2,1,137,40,28,26,0,1,24,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,77,101,115,115,97,103,101,34,93,2,1,176,219,62,84,0,1,24,91,99,108,97,115,115,94,61,34,103,112,100,114,45,98,97,110,110,101,114,95,95,34,93,2,1,128,104,10,85,0,1,35,91,99,108,97,115,115,94,61,34,119,105,116,104,71,68,80,82,66,97,110,110,101,114,95,95,87,114,97,112,112,101,114,45,34,93,2,1,168,207,90,191,8,1,34,46,108,97,121,111,117,116,32,62,32,46,114,101,97,99,116,45,99,111,111,107,105,101,45,108,97,119,45,100,105,97,108,111,103,2,1,4,204,247,91,2,1,34,114,97,44,32,105,110,101,114,116,44,32,35,109,97,105,110,67,111,110,116,101,110,116,66,108,111,99,107,44,32,115,116,97,121,2,1,253,23,159,122,2,1,37,114,99,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,6,8,166,89,105,41,55,173,186,92,72,28,191,92,190,194,173,98,12,245,217,116,61,95,31,2,1,37,114,99,44,32,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,6,34,200,35,30,119,83,25,30,176,82,22,166,207,150,190,215,211,254,200,178,241,125,153,222,2,1,33,114,99,44,32,99,111,111,107,105,101,98,97,110,110,101,114,45,98,111,100,121,44,32,98,111,100,121,44,32,115,116,97,121,2,1,168,77,10,40,2,1,36,114,99,44,32,99,111,111,107,105,101,45,110,111,116,105,99,101,45,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,1,138,244,232,208,2,1,30,114,99,44,32,99,111,111,107,105,101,45,111,118,101,114,108,97,121,44,32,98,111,100,121,44,32,115,116,97,121,2,1,188,226,178,199,2,1,35,114,99,44,32,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,44,32,44,32,115,116,97,121,2,1,123,102,248,190,2,1,31,114,99,44,32,105,118,97,115,115,45,110,111,45,99,111,111,107,105,101,44,32,98,111,100,121,44,32,115,116,97,121,2,1,6,246,236,114,2,1,36,114,99,44,32,99,111,111,107,105,101,45,112,111,112,117,112,45,118,105,115,105,98,108,101,44,32,98,111,100,121,44,32,115,116,97,121,2,3,98,7,16,24,132,148,56,61,181,15,224,210,2,1,36,114,99,44,32,105,100,103,99,112,95,95,108,97,121,101,114,45,45,97,99,116,105,118,101,44,32,104,116,109,108,44,32,115,116,97,121,2,1,244,98,182,189,2,1,37,114,99,44,32,99,99,45,115,99,114,111,108,108,105,110,103,45,100,105,115,97,98,108,101,100,44,32,98,111,100,121,44,32,115,116,97,121,2,1,10,93,188,81,2,1,26,114,99,44,32,109,111,100,97,108,45,111,112,101,110,44,32,98,111,100,121,44,32,115,116,97,121,2,1,35,79,185,247,2,1,24,114,99,44,32,104,97,115,80,111,112,117,112,44,32,98,111,100,121,44,32,115,116,97,121,2,1,104,240,165,97,2,1,23,114,99,44,32,32,100,97,114,107,101,114,44,32,98,111,100,121,44,32,115,116,97,121,2,1,106,160,124,136,2,1,38,114,99,44,32,115,99,111,109,109,101,114,99,101,45,103,100,112,114,45,100,105,115,97,98,108,101,100,44,32,100,105,118,44,32,115,116,97,121,2,10,28,157,210,17,38,7,225,217,59,243,218,163,72,29,137,128,91,136,192,158,103,89,83,131,104,47,87,86,160,167,221,198,173,53,216,127,231,119,235,218,2,1,25,114,99,44,32,110,111,45,115,99,114,111,108,108,44,32,104,116,109,108,44,32,115,116,97,121,2,2,127,46,26,245,144,126,140,227,2,1,40,114,99,44,32,99,111,109,112,101,110,115,97,116,101,45,102,111,114,45,115,99,114,111,108,108,98,97,114,44,32,98,111,100,121,44,32,115,116,97,121,2,1,40,195,183,68,2,1,26,114,99,44,32,103,100,112,114,45,115,104,111,119,110,44,32,98,111,100,121,44,32,115,116,97,121,2,1,53,158,126,102,2,1,38,114,99,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,119,114,97,112,112,101,114,44,32,100,105,118,44,32,115,116,97,121,2,1,127,55,72,245,2,1,31,114,99,44,32,99,111,111,107,105,101,115,45,114,101,113,117,101,115,116,44,32,98,111,100,121,44,32,115,116,97,121,2,1,9,45,185,123,2,1,29,114,99,44,32,99,120,45,109,111,100,97,108,45,111,112,101,110,44,32,104,116,109,108,44,32,115,116,97,121,2,6,4,77,65,11,17,235,217,116,24,68,206,155,38,184,109,69,80,208,138,143,245,252,146,34,2,1,28,114,99,44,32,99,120,45,110,111,45,115,99,114,111,108,108,44,32,104,116,109,108,44,32,115,116,97,121,2,6,4,77,65,11,17,235,217,116,24,68,206,155,38,184,109,69,80,208,138,143,245,252,146,34,2,1,33,114,99,44,32,101,45,99,111,111,107,105,101,45,98,97,114,45,111,112,101,110,44,32,98,111,100,121,44,32,115,116,97,121,2,2,127,46,26,245,144,126,140,227,2,1,31,114,99,44,32,99,111,111,107,105,101,115,45,110,111,116,45,115,101,116,44,32,98,111,100,121,44,32,115,116,97,121,2,1,253,171,236,155,2,1,36,114,101,109,111,118,101,45,99,108,97,115,115,44,32,110,111,45,99,111,110,115,101,110,116,44,32,104,116,109,108,44,32,115,116,97,121,2,4,7,85,101,58,54,107,46,228,241,99,75,203,241,225,79,83,2,1,36,114,99,44,32,105,115,45,98,108,117,114,114,101,100,45,99,111,111,107,105,101,98,111,120,44,32,104,116,109,108,44,32,115,116,97,121,2,1,234,53,123,9,2,1,44,114,99,44,32,99,99,112,97,67,111,111,107,105,101,66,97,110,110,101,114,45,97,99,99,101,112,116,101,100,65,108,108,44,32,98,111,100,121,44,32,115,116,97,121,2,1,197,19,55,149,2,1,37,114,99,44,32,99,111,111,107,105,101,115,45,115,104,111,119,44,32,46,99,111,111,107,105,101,115,45,115,104,111,119,44,32,115,116,97,121,2,1,235,20,229,38,2,1,34,114,99,44,32,100,105,115,97,98,108,101,45,98,97,99,107,103,114,111,117,110,100,44,32,98,111,100,121,44,32,115,116,97,121,2,1,38,157,26,145,2,1,31,114,99,44,32,99,111,111,107,105,101,45,45,110,111,116,45,115,101,116,44,32,98,111,100,121,44,32,115,116,97,121,2,2,59,239,88,179,138,203,72,117,2,1,29,114,99,44,32,95,99,111,111,107,105,101,98,97,110,110,101,114,44,32,98,111,100,121,44,32,115,116,97,121,2,1,70,236,194,129,2,1,26,114,99,44,32,97,115,121,110,99,45,104,105,100,101,44,32,104,116,109,108,44,32,115,116,97,121,2,2,55,238,125,91,226,127,216,15,2,1,34,114,99,44,32,110,116,100,45,103,100,112,114,45,110,111,45,115,99,114,111,108,108,44,32,98,111,100,121,44,32,115,116,97,121,2,1,211,56,229,86,2,1,31,114,99,44,32,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,44,32,100,105,118,44,32,115,116,97,121,2,1,165,162,39,73,2,1,29,114,99,44,32,112,101,102,45,110,111,45,99,111,111,107,105,101,44,32,98,111,100,121,44,32,115,116,97,121,2,1,28,3,84,35,2,1,35,114,99,44,32,99,111,111,107,105,101,45,110,111,116,45,97,99,99,101,112,116,101,100,44,32,98,111,100,121,44,32,115,116,97,121,2,2,108,166,242,75,127,183,49,40,2,1,37,114,99,44,32,99,45,98,111,100,121,45,45,108,111,99,107,101,100,45,97,108,119,97,121,115,44,32,98,111,100,121,44,32,115,116,97,121,2,2,54,142,180,243,146,57,250,59,2,1,28,114,99,44,32,103,108,111,98,97,108,45,99,111,111,107,105,101,44,32,100,105,118,44,32,115,116,97,121,2,1,50,167,16,164,2,1,26,114,99,44,32,100,105,115,97,98,108,101,45,115,99,114,111,108,108,44,32,44,32,115,116,97,121,2,1,50,167,16,164,2,1,22,114,99,44,32,98,103,45,103,114,97,121,44,32,100,105,118,44,32,115,116,97,121,2,1,182,175,155,202,2,1,29,114,99,44,32,99,111,111,107,105,101,45,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,1,4,204,247,91,2,1,28,114,99,44,32,32,99,99,109,45,98,108,111,99,107,101,100,44,32,104,116,109,108,44,32,115,116,97,121,2,1,58,158,226,187,2,1,28,114,99,44,32,32,99,99,109,45,98,108,111,99,107,101,100,44,32,98,111,100,121,44,32,115,116,97,121,2,1,58,158,226,187,2,1,40,114,99,44,32,105,115,45,109,111,100,97,108,45,99,111,111,107,105,101,115,45,118,105,115,105,98,108,101,44,32,98,111,100,121,44,32,115,116,97,121,2,1,112,181,79,56,2,1,22,114,99,44,32,108,97,121,101,114,65,99,116,105,118,101,44,32,44,115,116,97,121,2,1,225,45,100,249,2,1,30,114,99,44,32,99,111,111,107,105,101,98,97,114,45,111,112,101,110,44,32,98,111,100,121,44,32,115,116,97,121,2,1,219,160,117,210,2,1,20,114,99,44,32,98,108,117,114,44,32,98,111,100,121,44,32,115,116,97,121,2,1,206,58,183,214,2,1,18,114,99,44,32,99,111,111,107,105,101,44,32,44,32,115,116,97,121,2,1,127,62,3,184,2,1,36,114,99,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,45,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,20,8,9,80,33,28,59,130,21,28,188,191,49,41,86,181,223,91,33,88,28,92,134,236,39,97,245,158,55,104,75,86,155,116,39,5,131,124,31,40,210,124,84,209,179,178,70,187,108,179,147,242,46,183,167,230,84,183,167,230,84,203,169,40,66,220,187,14,232,221,44,245,8,250,183,232,46,250,204,10,212,2,1,21,114,99,44,32,99,111,111,107,105,101,77,115,103,44,32,44,32,115,116,97,121,2,1,48,17,121,161,2,1,33,114,99,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,95,97,108,101,114,116,44,32,44,32,115,116,97,121,2,1,159,151,227,105,2,1,44,114,99,44,32,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,101,110,116,101,114,45,108,111,97,100,101,100,44,32,44,32,115,116,97,121,2,2,191,224,193,39,211,5,243,160,2,1,26,114,99,44,32,104,97,115,45,111,112,101,110,45,99,111,111,107,105,101,44,32,44,115,116,97,121,2,1,190,147,253,254,2,1,28,114,99,44,32,111,109,95,99,111,111,107,105,101,95,97,99,116,105,118,101,44,32,44,32,115,116,97,121,2,2,27,79,18,37,242,231,152,149,2,1,34,114,99,44,32,116,118,112,45,99,111,111,107,105,101,45,115,99,114,111,108,108,45,108,111,99,107,44,32,44,32,115,116,97,121,2,1,190,81,52,51,2,1,26,114,99,44,32,99,111,111,107,105,101,45,111,118,101,114,108,97,121,44,32,44,32,115,116,97,121,2,1,168,67,123,82,2,1,22,114,99,44,32,100,105,115,97,98,108,101,44,32,100,105,118,44,32,115,116,97,121,2,13,20,199,37,231,28,240,135,192,36,102,1,206,60,163,25,33,104,192,0,157,132,227,226,90,165,5,41,247,187,39,107,231,210,242,63,238,216,125,198,130,233,201,154,143,239,207,250,70,255,44,24,239,2,1,26,114,99,44,32,112,114,101,118,101,110,116,45,115,99,114,111,108,108,44,32,44,32,115,116,97,121,2,1,129,201,159,168,2,1,15,114,99,44,32,102,111,103,44,32,44,32,115,116,97,121,2,1,255,61,83,73,2,1,23,114,99,44,32,99,111,111,107,105,101,45,104,105,110,116,44,32,44,32,115,116,97,121,2,1,147,56,188,58,2,1,34,114,99,44,32,100,112,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,98,111,100,121,44,32,115,116,97,121,2,15,19,94,184,191,27,114,208,165,32,197,219,132,111,96,41,203,113,191,202,83,127,30,141,49,127,227,95,54,190,81,80,51,209,72,213,166,219,114,226,112,236,171,72,242,237,58,220,208,248,132,94,197,251,53,95,72,254,227,109,164,2,1,35,114,99,44,32,98,111,100,121,45,111,118,101,114,108,97,121,45,115,99,114,111,108,108,97,98,108,101,44,32,44,32,115,116,97,121,2,3,6,194,172,97,177,197,55,217,207,233,167,40,2,1,22,114,99,44,32,109,111,100,97,108,45,111,112,101,110,44,32,44,32,115,116,97,121,2,3,6,194,172,97,177,197,55,217,207,233,167,40,2,1,25,114,99,44,32,110,111,45,115,99,114,111,108,108,44,32,98,111,100,121,44,32,115,116,97,121,2,5,93,253,251,72,202,187,22,244,203,215,79,170,210,85,176,98,244,99,2,139,2,1,31,114,99,44,32,115,104,111,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,44,32,115,116,97,121,2,1,248,112,19,151,2,1,31,114,99,44,32,105,115,45,97,99,116,105,118,101,45,99,111,111,107,105,101,98,97,114,44,32,44,32,115,116,97,121,2,4,40,126,169,205,115,232,228,100,116,94,84,130,255,33,205,135,2,1,47,114,101,109,111,118,101,45,99,108,97,115,115,44,32,104,97,115,45,98,97,110,110,101,114,44,32,98,111,100,121,46,104,97,115,45,98,97,110,110,101,114,44,32,115,116,97,121,2,1,31,56,204,42,2,1,25,114,99,44,32,112,111,105,110,116,101,114,101,118,101,110,116,115,44,32,44,32,115,116,97,121,2,1,59,91,47,186,2,1,34,114,99,44,32,99,111,111,107,105,101,45,97,99,99,101,112,116,45,114,101,113,117,105,114,101,100,44,32,44,32,115,116,97,121,2,1,234,83,77,11,2,1,23,114,99,44,32,99,111,111,107,105,101,45,111,112,101,110,44,32,44,32,115,116,97,121,2,2,78,206,231,101,127,44,138,79,2,1,30,114,99,44,32,99,111,111,107,105,101,80,111,112,117,112,86,105,115,105,98,108,101,44,32,44,32,115,116,97,121,2,1,121,77,49,115,2,1,30,114,99,44,32,117,110,114,101,97,100,97,98,108,101,45,100,105,115,112,108,97,121,44,32,44,32,115,116,97,121,2,39,7,57,23,230,8,76,240,142,8,203,197,76,10,171,141,7,24,167,65,236,25,12,23,239,25,233,14,211,27,90,46,244,29,162,81,112,40,150,112,181,45,87,87,104,46,123,105,27,63,191,59,167,66,48,80,144,70,49,54,44,78,143,35,94,80,83,112,96,93,191,108,225,94,146,221,230,106,73,207,238,121,80,240,123,124,166,101,72,124,242,51,250,129,162,38,132,140,205,182,184,154,209,2,189,161,38,68,52,162,13,34,157,172,250,210,76,175,115,74,62,189,42,209,136,191,156,79,129,193,52,103,11,196,156,49,164,197,90,83,166,232,208,164,165,236,187,141,147,237,204,181,245,254,145,131,252,2,1,34,114,99,44,32,109,97,110,100,97,116,111,114,121,95,99,111,111,107,105,101,95,109,111,100,97,108,44,32,44,32,115,116,97,121,2,7,6,201,87,11,27,120,181,59,34,207,194,227,96,247,113,54,143,122,160,160,158,96,189,127,168,206,198,91,2,1,28,114,99,44,32,119,119,122,111,118,101,114,108,97,121,45,45,111,112,101,110,44,32,44,32,115,116,97,121,2,1,229,206,64,192,2,1,32,114,99,44,32,103,100,112,114,45,105,110,102,111,98,97,114,45,118,105,115,105,98,108,101,44,32,44,32,115,116,97,121,2,5,14,116,102,134,55,171,114,153,65,149,252,56,174,11,121,157,197,73,156,182,2,1,26,114,99,44,32,99,111,111,107,105,101,45,101,110,97,98,108,101,100,44,32,44,32,115,116,97,121,2,1,215,20,215,174,2,1,32,114,99,44,32,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,45,111,112,101,110,44,32,44,32,115,116,97,121,2,1,1,153,191,79,2,1,30,114,99,44,32,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,112,101,110,44,32,44,32,115,116,97,121,2,1,99,106,112,134,2,1,46,114,101,109,111,118,101,45,99,108,97,115,115,44,32,99,111,111,107,105,101,45,98,97,110,110,101,114,45,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,1,229,206,103,241,2,1,31,114,99,44,32,111,118,101,114,108,97,121,45,99,111,110,116,101,110,116,44,32,98,111,100,121,44,32,115,116,97,121,2,2,59,1,251,168,237,42,28,225,2,1,35,114,99,44,32,105,115,45,97,99,116,105,118,101,45,99,111,111,107,105,101,98,97,114,44,32,98,111,100,121,44,32,115,116,97,121,2,1,89,8,162,172,2,1,27,114,99,44,32,100,105,100,111,109,105,45,112,111,112,117,112,45,111,112,101,110,44,32,98,111,100,121,2,1,97,114,110,215,2,1,42,114,99,44,32,105,100,120,114,99,111,111,107,105,101,115,45,98,108,111,99,107,45,117,115,101,114,45,110,97,118,44,32,98,111,100,121,44,32,115,116,97,121,2,2,95,93,207,30,120,174,59,18,2,1,23,114,99,44,32,99,99,112,97,45,98,97,110,110,101,114,44,32,44,32,115,116,97,121,2,1,127,195,165,15,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,95,95,116,111,112,112,121,95,99,111,110,115,101,110,116,44,32,49,2,1,216,84,192,104,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,95,117,49,50,51,95,99,99,44,32,121,101,115,2,1,29,131,69,137,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,103,97,45,100,105,115,97,98,108,101,44,32,116,114,117,101,2,1,29,131,69,137,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,103,97,95,99,111,110,115,101,110,116,101,109,101,110,116,44,32,48,2,1,252,99,171,219,2,1,19,115,101,116,45,99,111,111,107,105,101,44,32,71,68,80,82,44,32,57,2,1,43,137,184,148,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,100,97,100,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,251,0,168,71,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,97,103,114,101,101,100,84,111,67,111,111,107,105,101,115,97,110,111,110,44,32,49,2,1,232,182,185,40,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,112,117,109,45,57,51,55,44,32,116,114,117,101,2,1,40,108,188,20,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,101,115,115,101,110,116,105,97,108,95,99,111,111,107,105,101,115,95,101,110,97,98,108,101,100,44,32,116,114,117,101,2,1,168,183,221,66,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,103,111,111,103,108,101,95,99,111,111,107,105,101,115,95,101,110,97,98,108,101,100,44,32,102,97,108,115,101,2,1,168,183,221,66,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,112,111,108,105,99,121,105,110,102,111,95,110,101,119,50,44,32,116,114,117,101,2,1,22,122,103,200,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,108,105,118,101,100,111,111,114,45,98,108,111,103,45,103,100,112,114,45,97,103,114,101,101,100,44,32,49,2,1,58,67,38,48,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,99,97,109,114,97,95,101,120,112,101,114,105,101,110,99,101,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,2,1,235,188,53,139,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,118,97,108,67,111,111,107,105,101,49,44,32,49,2,1,186,240,104,35,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,116,104,105,114,100,45,112,97,114,116,121,44,32,114,101,113,117,105,114,101,100,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,31,8,207,99,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,67,79,79,75,73,69,83,95,65,67,67,69,80,84,69,68,44,32,116,114,117,101,2,1,189,17,5,149,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,44,32,49,2,1,213,132,53,70,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,95,99,111,111,107,105,101,99,111,110,115,101,110,116,118,50,44,32,49,2,1,224,177,251,106,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,99,99,111,110,115,101,110,116,44,32,49,2,1,127,45,159,201,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,105,110,102,111,44,32,116,114,117,101,2,1,72,8,97,187,2,1,54,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,97,110,100,95,99,111,110,116,101,110,116,95,115,101,99,117,114,105,116,121,95,112,111,108,105,99,121,44,32,102,97,108,115,101,2,1,18,78,184,140,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,95,100,105,115,99,108,97,105,109,101,114,44,32,102,97,108,115,101,2,1,128,97,184,44,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,105,110,116,114,97,109,117,114,111,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,78,114,210,161,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,105,110,116,114,97,109,117,114,111,115,45,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,78,114,210,161,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,119,101,98,115,105,116,101,95,99,111,111,107,105,101,115,95,98,97,114,44,32,116,114,117,101,2,1,96,79,178,201,2,1,54,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,97,110,100,95,99,111,110,116,101,110,116,95,115,101,99,117,114,105,116,121,95,112,111,108,105,99,121,44,32,102,97,108,115,101,2,1,18,78,184,140,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,67,70,95,71,68,80,82,95,67,79,79,75,73,69,95,67,79,78,83,69,78,84,95,86,73,69,87,69,68,44,32,49,2,1,6,170,135,35,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,99,111,110,102,105,114,109,44,32,49,2,1,20,233,155,115,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,114,101,102,101,114,101,110,99,101,115,95,115,101,116,44,32,116,114,117,101,2,1,188,252,123,53,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,83,95,67,79,79,75,73,69,83,95,65,67,67,69,80,84,69,68,44,32,116,114,117,101,2,1,99,8,232,237,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,105,115,67,111,111,107,105,101,76,101,103,97,108,66,97,110,110,101,114,83,101,108,101,99,116,101,100,44,32,116,114,117,101,2,3,17,93,39,39,85,29,190,54,93,192,248,140,2,1,17,115,101,116,45,99,111,111,107,105,101,44,32,99,99,44,32,49,2,1,226,124,67,139,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,100,111,83,111,109,101,116,104,105,110,103,79,110,108,121,79,110,99,101,44,32,116,114,117,101,2,1,226,4,183,26,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,116,111,115,95,99,111,110,115,101,110,116,44,32,97,108,108,111,119,2,1,68,160,180,221,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,102,110,95,99,111,111,107,105,101,95,98,97,110,110,101,114,44,32,49,2,1,29,4,133,251,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,97,100,117,108,116,95,99,111,110,102,105,114,109,44,32,49,2,1,60,221,105,196,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,97,116,108,45,103,100,112,114,45,99,111,110,115,101,110,116,44,32,48,48,49,48,48,48,48,2,1,117,8,99,202,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,97,108,108,111,119,97,110,99,101,44,32,116,114,117,101,2,1,160,163,232,138,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,95,97,99,99,101,112,116,115,69,115,115,101,110,116,105,97,108,44,32,116,114,117,101,2,1,76,141,53,226,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,105,110,102,111,114,109,101,100,67,111,110,115,101,110,116,44,32,49,2,1,124,167,211,71,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,69,110,97,98,108,101,65,66,84,101,115,116,44,32,102,97,108,115,101,1,1,91,57,97,132,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,69,110,97,98,108,101,70,97,99,101,98,111,111,107,44,32,102,97,108,115,101,1,1,91,57,97,132,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,69,110,97,98,108,101,71,65,44,32,102,97,108,115,101,1,1,91,57,97,132,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,14,224,134,161,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,45,115,116,97,116,101,44,32,116,114,117,101,2,2,121,62,0,50,223,88,36,163,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,119,97,115,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,110,111,2,1,6,20,82,8,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,121,116,112,114,101,102,115,95,103,100,112,114,95,99,111,110,115,101,110,116,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,164,92,35,195,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,99,111,110,115,101,110,116,44,32,49,48,48,48,2,1,230,89,34,99,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,67,79,78,83,69,78,84,44,32,49,53,2,1,191,108,85,99,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,110,67,111,111,107,105,101,86,105,115,105,98,108,101,44,32,50,2,1,70,164,90,219,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,151,36,7,116,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,110,101,99,101,115,115,97,114,121,2,1,42,128,156,229,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,115,117,122,117,107,105,45,97,99,99,101,112,116,45,99,111,111,107,105,101,44,32,116,114,117,101,2,1,112,132,72,242,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,72,105,100,100,101,110,44,32,116,114,117,101,2,1,122,170,141,139,2,1,59,115,101,116,45,99,111,111,107,105,101,44,32,116,101,114,109,115,95,97,103,114,101,101,109,101,110,116,95,112,111,112,117,112,95,97,103,114,101,101,100,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,86,192,63,145,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,112,97,110,101,108,44,32,49,2,1,148,179,172,200,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,97,108,108,111,119,101,100,95,115,97,118,101,95,99,111,111,107,105,101,44,32,116,114,117,101,2,1,240,165,107,10,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,65,99,99,101,112,116,67,111,111,107,105,101,44,32,121,101,115,2,1,148,176,145,111,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,48,2,1,21,164,243,167,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,114,101,106,101,99,116,101,100,2,1,213,130,114,122,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,115,109,105,108,101,95,97,108,108,111,119,95,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,244,193,163,173,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,67,70,95,71,68,80,82,95,67,79,79,75,73,69,95,67,79,78,83,69,78,84,95,86,73,69,87,69,68,44,32,49,2,1,91,59,77,154,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,108,101,114,116,44,32,116,114,117,101,2,1,12,63,251,59,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,98,45,101,110,97,98,108,101,100,44,32,97,99,99,101,112,116,101,100,2,1,247,77,207,194,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,65,103,114,101,101,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,166,110,18,244,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,65,114,101,67,111,111,107,105,101,115,83,101,116,44,32,116,114,117,101,2,1,166,110,18,244,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,104,99,67,111,111,107,105,101,72,105,110,116,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,177,214,207,78,2,1,54,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,45,115,101,108,101,99,116,101,100,45,99,111,111,107,105,101,115,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,99,14,129,235,2,1,34,115,101,116,45,99,111,111,107,105,101,44,99,111,111,107,105,101,80,114,101,102,101,114,101,110,99,101,115,44,32,116,114,117,101,2,1,99,14,129,235,2,1,26,115,101,116,45,99,111,111,107,105,101,44,110,101,99,101,115,115,97,114,121,44,32,116,114,117,101,2,1,99,14,129,235,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,95,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,122,67,59,133,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,115,95,118,105,101,119,101,100,95,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,121,101,115,2,1,222,50,24,65,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,243,129,230,241,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,97,99,99,101,112,116,101,100,44,32,48,2,1,132,54,240,181,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,105,110,102,111,114,109,101,100,44,32,116,114,117,101,2,1,148,188,83,207,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,45,115,101,101,110,45,99,111,111,107,105,101,45,110,111,116,105,99,101,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,160,224,236,28,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,97,103,114,101,101,100,44,32,49,1,1,96,215,74,180,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,97,110,97,108,121,116,105,99,97,108,44,32,48,1,1,96,215,74,180,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,103,108,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,44,32,97,99,99,101,112,116,101,100,2,1,32,76,243,147,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,99,111,110,102,105,103,117,114,101,100,44,32,49,2,1,125,21,140,74,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,7,140,85,234,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,108,111,99,97,108,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,81,118,150,177,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,112,117,109,45,49,51,55,53,49,44,32,116,114,117,101,2,1,179,167,43,131,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,67,79,78,83,69,78,84,44,32,49,2,1,222,147,92,197,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,99,109,95,108,101,118,101,108,44,32,48,2,1,60,18,215,253,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,115,116,45,99,111,111,107,105,101,45,116,111,107,101,110,44,32,116,114,117,101,2,1,68,194,239,233,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,102,117,110,99,116,105,111,110,97,108,67,111,111,107,105,101,44,32,116,114,117,101,2,1,223,244,246,137,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,97,103,114,101,101,100,95,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,49,2,1,127,83,131,92,2,1,73,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,77,97,100,101,67,111,110,115,101,110,116,83,101,108,101,99,116,105,111,110,44,32,116,114,117,101,44,32,44,32,44,32,100,111,109,97,105,110,44,32,46,109,111,116,111,114,115,112,111,114,116,114,101,103,46,99,111,109,2,1,166,188,107,1,2,1,76,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,77,97,100,101,67,111,110,115,101,110,116,83,101,108,101,99,116,105,111,110,71,80,67,44,32,116,114,117,101,44,32,44,32,44,32,100,111,109,97,105,110,44,32,46,109,111,116,111,114,115,112,111,114,116,114,101,103,46,99,111,109,2,1,166,188,107,1,2,1,79,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,77,97,100,101,67,111,110,115,101,110,116,83,101,108,101,99,116,105,111,110,44,32,116,114,117,101,44,32,44,32,44,32,100,111,109,97,105,110,44,32,46,105,109,111,108,97,46,109,111,116,111,114,115,112,111,114,116,114,101,103,46,99,111,109,2,1,14,229,89,141,2,1,82,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,77,97,100,101,67,111,110,115,101,110,116,83,101,108,101,99,116,105,111,110,71,80,67,44,32,116,114,117,101,44,32,44,32,44,32,100,111,109,97,105,110,44,32,46,105,109,111,108,97,46,109,111,116,111,114,115,112,111,114,116,114,101,103,46,99,111,109,2,1,14,229,89,141,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,80,71,65,44,32,116,114,117,101,2,1,38,157,76,14,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,120,110,95,99,111,111,107,105,101,99,111,110,115,101,110,116,44,32,102,97,108,115,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,12,131,240,92,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,116,97,117,110,116,111,110,95,117,115,101,114,95,99,111,110,115,101,110,116,95,115,117,98,109,105,116,116,101,100,44,32,116,114,117,101,2,2,72,103,151,6,74,162,75,157,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,116,97,117,110,116,111,110,95,117,115,101,114,95,99,111,110,115,101,110,116,95,97,100,118,101,114,116,105,115,105,110,103,44,32,102,97,108,115,101,2,2,72,103,151,6,74,162,75,157,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,116,97,117,110,116,111,110,95,117,115,101,114,95,99,111,110,115,101,110,116,95,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,2,72,103,151,6,74,162,75,157,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,99,108,111,115,101,100,44,32,49,2,1,248,144,190,39,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,95,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,115,234,145,163,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,100,115,103,118,111,45,115,116,97,116,44,32,121,101,115,2,1,1,212,25,171,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,100,115,103,118,111,45,109,97,114,107,44,32,110,111,2,1,1,212,25,171,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,83,101,116,116,105,110,103,115,44,32,49,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,207,77,161,230,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,103,111,111,103,108,101,45,116,97,103,109,97,110,97,103,101,114,44,32,102,97,108,115,101,2,1,61,96,170,208,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,100,101,99,108,105,110,101,44,32,116,114,117,101,44,32,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,252,93,230,241,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,84,101,114,109,115,68,105,115,109,105,115,115,101,100,44,32,116,114,117,101,2,1,67,86,100,255,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,68,105,115,109,105,115,115,101,100,44,32,116,114,117,101,2,1,67,86,100,255,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,44,32,49,2,1,42,213,67,66,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,107,114,97,102,116,119,101,114,107,67,111,111,107,105,101,80,111,108,105,99,121,83,116,97,116,101,44,32,49,2,1,255,148,129,123,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,80,111,108,105,99,121,65,99,99,101,112,116,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,66,96,32,120,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,110,101,99,101,115,115,97,114,121,2,1,170,128,228,117,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,83,116,97,116,117,115,44,32,102,97,108,115,101,2,1,233,200,156,44,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,115,111,99,105,97,108,77,101,100,105,97,83,116,97,116,117,115,44,32,102,97,108,115,101,2,1,233,200,156,44,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,44,32,114,101,108,111,97,100,44,32,49,2,2,132,26,67,85,189,148,247,116,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,114,101,113,117,105,114,101,100,44,32,49,2,1,159,162,50,176,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,112,109,83,116,111,114,97,103,101,44,32,49,2,1,152,126,241,251,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,99,111,111,107,105,101,95,112,114,101,102,115,44,32,49,2,3,83,33,11,166,154,89,152,134,156,25,156,155,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,95,99,111,111,95,115,101,101,110,44,32,49,2,1,139,6,208,88,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,97,105,114,84,82,70,88,95,99,111,111,107,105,101,115,44,32,97,99,99,101,112,116,101,100,2,1,185,39,226,224,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,97,99,99,101,112,116,44,32,116,114,117,101,2,1,38,157,129,18,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,97,103,114,101,101,44,32,116,114,117,101,2,1,136,63,120,189,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,118,119,95,109,109,115,95,104,105,100,101,95,99,111,111,107,105,101,95,100,105,97,108,111,103,44,32,49,2,1,243,99,164,161,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,115,111,108,111,95,111,112,116,95,105,110,44,32,102,97,108,115,101,2,1,55,4,106,92,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,80,79,77,69,76,79,95,67,79,79,75,73,69,83,44,32,49,2,1,38,151,223,132,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,65,99,99,101,112,116,85,115,101,67,111,111,107,105,101,44,32,65,99,99,101,112,116,2,1,147,134,182,0,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,115,98,114,102,46,112,101,114,115,95,110,111,116,105,99,101,44,32,49,2,1,216,112,91,204,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,108,111,115,101,100,67,111,111,107,105,101,66,97,110,110,101,114,44,32,116,114,117,101,2,1,207,217,235,148,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,121,111,121,111,99,111,111,107,105,101,99,111,110,115,101,110,116,95,118,105,101,119,101,100,44,32,116,114,117,101,2,1,182,30,117,9,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,97,103,114,101,101,109,101,110,116,44,32,54,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,120,203,45,164,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,107,105,110,101,109,97,115,116,101,114,45,99,111,111,107,105,101,99,111,110,115,116,101,110,116,44,32,49,2,1,230,101,213,109,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,97,110,99,101,44,32,49,2,1,10,167,131,231,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,106,97,122,122,102,109,45,112,114,105,118,97,99,121,44,32,116,114,117,101,2,1,59,35,240,85,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,115,104,111,119,95,109,115,103,95,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,176,177,226,230,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,129,173,185,189,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,70,117,110,99,116,105,111,110,97,108,67,111,111,107,105,101,44,32,116,114,117,101,2,1,129,173,185,189,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,65,110,97,108,121,116,105,99,97,108,67,111,111,107,105,101,44,32,102,97,108,115,101,2,1,129,173,185,189,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,46,89,111,117,114,65,112,112,46,67,111,110,115,101,110,116,67,111,111,107,105,101,44,32,121,101,115,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,92,189,140,245,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,44,32,100,101,110,121,2,1,89,142,244,155,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,86,65,65,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,66,65,78,78,69,82,95,86,73,69,87,69,68,44,32,49,2,1,64,96,234,249,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,86,65,65,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,66,65,78,78,69,82,95,76,79,65,68,69,68,44,32,49,2,1,64,96,234,249,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,86,65,65,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,77,97,114,107,101,116,105,110,103,44,32,48,2,1,64,96,234,249,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,86,65,65,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,70,117,110,99,116,105,111,110,97,108,44,32,48,2,1,64,96,234,249,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,86,65,65,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,65,110,97,108,121,116,105,99,115,44,32,48,2,1,64,96,234,249,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,97,103,114,101,101,115,87,105,116,104,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,131,191,66,203,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,103,97,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,149,4,69,118,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,65,112,112,114,111,118,101,100,50,48,50,51,49,44,32,116,114,117,101,2,1,164,94,111,21,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,114,109,45,102,105,114,115,116,45,116,105,109,101,45,109,111,100,97,108,45,119,101,108,99,111,109,101,44,32,49,2,1,142,222,53,95,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,45,50,48,50,51,45,48,51,44,32,102,97,108,115,101,2,1,207,230,128,120,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,44,32,49,2,1,252,246,177,246,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,116,119,116,114,95,112,105,120,101,108,95,111,112,116,95,105,110,44,32,78,2,1,225,246,109,82,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,82,66,67,111,111,107,105,101,45,65,108,101,114,116,44,32,49,2,1,158,103,214,141,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,86,52,44,32,102,97,108,115,101,2,1,242,121,3,55,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,117,115,44,32,97,108,108,111,119,2,7,84,222,80,138,102,123,9,18,105,175,21,2,111,192,29,135,165,42,247,135,219,169,20,152,229,206,123,35,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,117,115,44,32,100,105,115,109,105,115,115,2,1,1,244,59,178,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,97,110,97,108,121,116,105,99,115,95,101,110,97,98,108,101,100,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,226,239,88,211,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,120,102,95,110,111,116,105,99,101,95,100,105,115,109,105,115,115,44,32,49,2,1,239,74,115,205,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,114,99,108,95,99,111,110,115,101,110,116,95,103,105,118,101,110,44,32,116,114,117,101,2,1,103,47,29,185,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,114,99,108,95,112,114,101,102,101,114,101,110,99,101,115,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,103,47,29,185,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,114,99,108,95,109,97,114,107,101,116,105,110,103,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,103,47,29,185,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,102,105,114,109,101,100,45,99,111,111,107,105,101,115,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,44,104,21,55,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,98,95,118,97,108,105,100,67,111,111,107,105,101,115,44,32,49,2,1,38,78,38,29,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,98,95,97,99,99,101,112,116,101,100,44,32,49,2,1,38,78,38,29,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,119,115,45,99,111,111,107,105,101,45,84,101,99,104,110,105,113,117,101,115,44,32,116,114,117,101,2,1,142,198,128,169,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,97,103,114,101,101,100,44,32,50,2,1,242,81,115,168,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,121,101,115,2,1,194,148,192,221,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,111,112,116,105,111,110,115,44,32,51,2,1,194,148,192,221,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,73,115,83,101,116,66,121,85,115,101,114,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,203,193,235,155,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,105,115,83,105,116,101,67,111,111,107,105,101,82,101,118,105,101,119,101,100,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,71,119,183,157,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,112,104,112,98,98,51,95,52,122,110,54,106,95,99,97,44,32,116,114,117,101,2,1,88,245,145,246,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,66,97,114,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,146,213,114,152,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,117,115,101,114,95,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,155,146,92,24,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,95,95,103,105,116,98,111,111,107,95,99,111,111,107,105,101,95,103,114,97,110,116,101,100,44,32,110,111,2,8,51,55,144,36,81,1,213,227,85,121,86,130,124,185,174,202,140,142,7,18,145,252,158,183,164,6,0,57,180,233,93,103,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,87,66,95,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,44,32,49,2,1,242,122,96,56,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,102,105,114,109,97,116,105,111,110,44,32,116,114,117,101,2,1,35,97,30,21,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,50,95,114,101,113,117,105,114,101,100,44,32,116,114,117,101,2,1,15,63,53,49,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,50,44,32,116,114,117,101,2,1,15,63,53,49,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,68,109,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,155,232,213,165,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,68,109,67,111,111,107,105,101,115,65,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,155,232,213,165,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,68,109,67,111,111,107,105,101,115,77,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,155,232,213,165,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,101,100,44,32,49,2,1,152,214,161,96,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,255,88,144,35,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,109,97,114,107,101,116,105,110,103,44,32,78,2,1,16,4,179,210,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,103,97,116,115,98,121,45,103,100,112,114,45,103,111,111,103,108,101,45,116,97,103,109,97,110,97,103,101,114,44,32,102,97,108,115,101,2,2,2,251,155,30,126,222,173,4,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,117,117,65,112,112,67,111,111,107,105,101,115,65,103,114,101,101,109,101,110,116,44,32,116,114,117,101,2,1,137,188,32,243,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,95,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,44,32,121,101,115,2,1,117,188,194,222,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,82,67,73,95,65,80,80,95,76,69,71,65,76,95,68,73,83,67,76,65,73,77,69,82,95,67,79,79,75,73,69,44,32,102,97,108,115,101,2,1,134,21,212,107,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,104,115,95,99,111,111,107,105,101,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,226,127,113,3,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,114,103,112,100,106,110,122,44,32,49,2,1,143,190,190,232,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,95,95,114,97,100,105,99,97,108,77,111,116,111,114,115,112,111,114,116,46,97,99,44,32,116,114,117,101,2,1,212,164,174,85,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,95,98,97,114,95,104,105,100,100,101,110,44,32,116,114,117,101,2,1,41,197,20,87,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,115,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,119,106,65,202,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,95,99,111,111,107,105,101,115,44,32,97,99,99,101,112,116,101,100,2,2,51,6,148,5,162,136,213,6,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,115,101,101,110,44,32,49,2,1,228,96,186,202,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,95,103,100,112,114,95,112,108,97,121,98,97,108,97,116,114,111,44,32,49,2,1,66,229,9,171,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,65,108,108,44,32,48,2,3,70,177,197,152,136,51,217,8,205,221,102,198,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,119,97,114,110,105,110,103,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,8,60,251,246,102,85,187,73,155,100,205,51,157,101,6,105,165,198,200,218,174,231,112,151,191,249,172,39,61,255,121,98,67,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,66,97,114,83,101,101,110,44,32,116,114,117,101,2,2,132,199,143,241,133,168,161,111,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,103,105,118,101,110,44,32,116,114,117,101,2,1,38,156,253,187,2,1,54,115,101,116,45,99,111,111,107,105,101,44,32,99,117,118,118,97,46,97,112,112,46,119,101,98,115,105,116,101,46,99,111,111,107,105,101,45,112,111,108,105,99,121,46,99,111,110,115,101,110,116,44,32,49,2,1,127,56,231,159,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,99,117,115,116,111,109,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,176,197,199,113,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,65,110,97,108,121,116,105,99,115,65,99,99,101,112,116,97,110,99,101,80,111,112,79,118,101,114,44,32,102,97,108,115,101,2,1,78,202,112,234,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,111,107,105,101,44,32,49,2,1,230,105,89,104,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,100,105,115,99,108,97,105,109,101,114,45,111,118,101,114,108,97,121,44,32,116,114,117,101,2,1,188,77,118,142,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,109,112,108,105,97,110,99,101,67,111,111,107,105,101,44,32,116,114,117,101,2,1,201,201,142,143,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,75,101,101,98,83,117,112,112,108,121,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,193,86,9,3,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,111,108,105,99,121,95,97,103,114,101,101,109,101,110,116,44,32,116,114,117,101,2,1,243,238,181,185,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,107,116,95,116,99,111,111,107,105,101,44,32,49,2,4,2,182,179,40,146,216,120,17,202,91,135,184,238,49,98,231,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,115,112,108,97,115,104,95,80,97,103,101,95,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,4,2,182,179,40,146,216,120,17,202,91,135,184,238,49,98,231,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,45,97,110,97,108,121,116,105,99,115,45,101,110,97,98,108,101,100,44,32,102,97,108,115,101,2,1,69,86,130,56,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,95,115,116,97,116,117,115,44,32,49,2,1,114,56,28,78,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,95,115,101,116,116,105,110,103,115,44,32,49,2,1,216,252,53,213,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,102,105,103,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,21,181,199,210,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,104,105,100,101,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,250,122,129,82,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,44,32,49,2,1,104,251,123,189,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,95,97,99,99,101,112,116,101,100,95,103,100,112,114,44,32,49,2,1,158,140,49,99,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,97,112,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,115,44,32,49,2,1,9,73,228,176,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,105,116,105,99,115,95,99,111,111,107,105,101,115,44,32,48,2,1,216,252,53,213,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,95,99,111,111,107,105,101,115,44,32,97,99,99,101,112,116,101,100,2,1,166,170,139,228,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,116,97,99,104,121,111,110,45,97,99,99,101,112,116,101,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,44,32,116,114,117,101,2,1,98,224,136,97,2,1,60,115,101,116,45,99,111,111,107,105,101,44,32,100,101,102,114,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,100,105,115,109,105,115,115,101,100,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,40,183,92,24,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,109,121,65,119,101,115,111,109,101,67,111,111,107,105,101,78,97,109,101,51,44,32,116,114,117,101,2,1,1,227,35,198,2,1,54,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,44,32,65,67,67,69,80,84,69,68,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,85,173,28,250,2,1,21,115,101,116,45,99,111,111,107,105,101,44,32,108,111,97,100,101,114,44,32,49,2,1,59,234,236,185,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,101,110,97,98,108,101,65,110,97,108,121,116,105,99,115,67,111,111,107,105,101,115,44,32,100,101,110,105,101,100,2,1,2,102,199,252,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,97,99,107,110,111,119,108,101,100,103,101,67,111,111,107,105,101,66,97,110,110,101,114,44,32,116,114,117,101,2,1,2,102,199,252,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,101,110,97,98,108,101,84,97,114,103,101,116,105,110,103,65,100,118,101,114,116,105,115,105,110,103,67,111,111,107,105,101,115,44,32,100,101,110,105,101,100,2,1,2,102,199,252,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,111,108,105,99,121,44,32,49,2,1,109,240,25,229,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,97,103,114,101,101,100,44,32,48,2,4,23,101,6,253,126,222,173,4,144,245,99,54,171,28,19,21,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,99,114,116,109,99,111,111,107,105,101,115,80,114,111,116,68,97,116,111,115,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,143,121,148,231,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,78,65,68,101,118,71,68,80,82,67,111,111,107,105,101,67,111,110,115,101,110,116,95,112,111,114,116,97,108,95,50,44,32,49,2,1,40,206,44,158,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,104,97,110,100,108,101,100,67,111,111,107,105,101,77,101,115,115,97,103,101,44,32,49,2,1,9,19,50,11,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,116,97,114,103,101,116,105,110,103,44,32,102,97,108,115,101,2,3,138,175,39,188,154,243,227,174,250,154,49,108,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,102,117,110,99,116,105,111,110,97,108,105,116,121,44,32,102,97,108,115,101,2,3,138,175,39,188,154,243,227,174,250,154,49,108,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,102,111,114,109,97,110,99,101,44,32,102,97,108,115,101,2,3,138,175,39,188,154,243,227,174,250,154,49,108,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,105,110,102,111,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,146,19,215,188,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,98,97,110,110,101,114,68,105,115,115,109,105,115,115,97,108,44,32,116,114,117,101,44,32,44,114,101,108,111,97,100,44,32,49,2,1,123,155,132,106,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,157,87,114,172,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,67,79,79,75,73,69,45,80,79,76,73,67,89,45,65,67,67,69,80,84,44,32,116,114,117,101,2,1,79,197,118,65,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,44,32,97,99,99,101,112,116,2,1,102,72,109,32,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,101,115,115,101,110,116,105,97,108,67,111,111,107,105,101,44,32,89,2,1,28,145,44,60,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,104,101,99,107,67,111,111,107,105,101,44,32,89,2,1,28,145,44,60,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,67,111,111,107,105,101,44,32,78,2,1,28,145,44,60,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,109,97,114,107,101,116,105,110,103,67,111,111,107,105,101,44,32,78,2,1,28,145,44,60,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,116,104,105,114,100,67,111,111,107,105,101,44,32,78,2,1,28,145,44,60,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,112,97,121,100,105,114,101,107,116,67,111,111,107,105,101,65,108,108,111,119,101,100,44,32,102,97,108,115,101,2,1,23,214,138,5,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,104,100,99,97,98,44,32,116,114,117,101,2,1,200,103,45,81,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,115,121,110,97,112,115,101,45,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,45,115,101,116,44,32,116,114,117,101,2,21,4,255,62,48,20,94,55,160,23,44,181,89,28,131,253,218,68,164,199,52,82,117,27,60,109,182,241,202,115,84,212,205,141,41,118,252,141,203,0,221,167,243,87,100,174,95,214,83,188,224,102,186,202,20,168,48,203,75,246,13,207,96,92,99,209,101,107,213,220,181,191,111,222,63,176,139,237,15,250,51,241,76,17,225,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,102,105,114,109,95,99,111,111,107,105,101,115,44,32,49,2,2,55,181,65,101,240,123,114,202,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,101,110,100,103,97,109,101,45,97,99,99,101,112,116,45,112,111,108,105,99,121,44,32,116,114,117,101,2,1,130,241,84,9,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,115,99,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,44,32,116,114,117,101,2,1,15,188,153,2,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,95,99,111,111,107,105,101,115,50,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,8,208,53,180,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,102,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,60,215,112,181,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,67,111,111,107,105,101,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,45,242,184,183,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,104,111,105,99,101,44,32,48,2,1,39,126,44,70,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,108,103,112,100,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,111,33,92,181,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,115,104,97,114,101,108,111,102,116,95,99,111,111,107,105,101,95,100,101,99,105,115,105,111,110,44,32,49,2,1,104,195,0,200,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,95,109,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,111,33,92,181,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,95,99,111,109,111,100,105,100,97,100,101,44,32,102,97,108,115,101,2,1,111,33,92,181,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,65,110,97,108,121,116,105,99,115,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,2,35,10,92,101,182,158,170,111,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,70,117,110,99,116,105,111,110,97,108,67,111,111,107,105,101,115,44,32,116,114,117,101,2,2,35,10,92,101,182,158,170,111,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,111,108,105,99,121,67,111,110,102,105,114,109,101,100,44,32,116,114,117,101,44,32,44,114,101,108,111,97,100,44,32,49,2,2,35,10,92,101,182,158,170,111,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,80,111,115,116,65,110,97,108,121,116,105,99,115,44,32,48,2,1,174,110,158,195,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,103,97,116,115,98,121,45,103,100,112,114,44,32,102,97,108,115,101,2,1,107,6,208,53,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,102,117,110,99,116,105,111,110,97,108,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,124,239,119,62,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,110,101,99,101,115,115,97,114,121,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,124,239,119,62,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,109,102,111,114,116,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,124,239,119,62,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,115,116,97,116,105,115,116,105,99,115,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,124,239,119,62,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,45,103,111,111,103,108,101,45,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,84,165,185,110,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,116,114,117,101,2,1,22,54,240,3,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,77,111,100,97,108,65,99,99,101,112,116,44,32,110,111,2,1,124,184,42,176,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,65,99,99,101,112,116,70,117,110,99,116,105,111,110,97,108,67,111,111,107,105,101,115,44,32,116,114,117,101,2,2,115,158,160,107,249,104,138,205,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,65,99,99,101,112,116,65,110,97,108,121,116,105,99,115,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,2,115,158,160,107,249,104,138,205,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,65,99,99,101,112,116,78,111,110,70,117,110,99,116,105,111,110,97,108,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,2,115,158,160,107,249,104,138,205,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,102,111,114,99,101,100,45,99,111,111,107,105,101,115,45,109,111,100,97,108,44,32,50,2,1,231,181,78,39,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,98,97,114,44,32,49,2,6,87,198,142,191,128,140,152,1,157,18,240,156,166,48,86,224,195,135,81,38,229,214,167,71,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,117,115,44,32,116,114,117,101,2,1,229,28,143,111,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,108,111,110,103,105,110,101,115,45,99,111,111,107,105,101,115,115,116,97,116,117,115,45,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,84,14,112,91,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,108,111,110,103,105,110,101,115,45,99,111,111,107,105,101,115,115,116,97,116,117,115,45,102,117,110,99,116,105,111,110,97,108,44,32,102,97,108,115,101,2,1,84,14,112,91,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,108,111,110,103,105,110,101,115,45,99,111,111,107,105,101,115,115,116,97,116,117,115,45,110,101,99,101,115,115,97,114,121,44,32,116,114,117,101,2,1,84,14,112,91,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,108,111,110,103,105,110,101,115,45,99,111,111,107,105,101,115,115,116,97,116,117,115,45,115,111,99,105,97,108,44,32,102,97,108,115,101,2,1,84,14,112,91,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,112,122,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,248,175,137,184,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,95,99,98,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,227,228,92,227,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,103,97,116,115,98,121,45,103,100,112,114,45,103,111,111,103,108,101,45,116,97,103,109,97,110,97,103,101,114,44,32,102,97,108,115,101,2,1,16,162,159,93,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,45,115,116,97,116,117,115,44,32,49,2,1,21,46,10,247,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,72,65,78,65,45,82,71,80,68,44,32,97,99,99,101,112,116,101,100,2,1,115,105,129,207,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,111,112,116,105,110,44,32,116,114,117,101,2,1,27,113,153,181,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,109,115,103,95,99,111,111,107,105,101,95,67,69,88,44,32,116,114,117,101,2,2,33,61,167,255,188,74,46,23,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,79,112,116,97,110,111,110,65,108,101,114,116,66,111,120,67,108,111,115,101,100,44,32,111,107,2,1,243,130,164,110,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,79,112,116,97,110,111,110,65,108,101,114,116,66,111,120,67,108,111,115,101,100,44,32,116,114,117,101,2,21,8,189,179,61,22,81,66,219,36,70,61,103,68,45,86,177,80,203,255,240,86,55,181,93,86,96,34,91,94,2,186,176,97,0,34,11,98,82,184,148,126,222,140,139,128,92,3,9,136,183,54,188,139,100,84,193,155,22,239,95,170,255,105,137,182,131,104,111,190,80,242,93,210,19,66,40,228,34,18,68,252,166,105,163,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,66,97,110,110,101,114,72,105,100,100,101,110,44,32,116,114,117,101,2,1,87,122,196,33,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,105,115,82,101,97,100,67,111,111,107,105,101,80,111,108,105,99,121,68,78,84,44,32,116,114,117,101,2,1,148,201,158,40,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,105,115,82,101,97,100,67,111,111,107,105,101,80,111,108,105,99,121,68,78,84,65,97,44,32,102,97,108,115,101,2,1,148,201,158,40,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,111,107,105,101,97,99,99,101,112,116,44,32,111,107,2,1,191,192,115,211,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,84,114,97,99,107,105,110,103,86,101,114,105,102,105,101,100,44,32,116,114,117,101,2,1,133,237,150,30,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,44,32,48,2,1,84,42,204,205,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,71,101,116,80,114,105,118,97,99,121,73,110,102,111,44,32,116,114,117,101,2,1,11,10,227,174,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,98,97,110,110,101,114,44,32,48,2,3,27,115,137,132,234,0,251,224,248,113,197,242,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,95,116,118,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,121,2,1,0,237,12,60,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,95,116,118,95,99,111,111,107,105,101,95,99,104,111,105,99,101,44,32,49,2,1,0,237,12,60,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,101,105,107,97,95,99,111,110,115,101,110,116,95,115,101,116,44,32,116,114,117,101,2,1,40,46,106,146,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,101,105,107,97,95,99,111,110,115,101,110,116,95,109,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,40,46,106,146,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,101,119,95,99,111,111,107,105,101,99,111,110,115,101,110,116,44,32,49,2,1,95,51,65,181,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,101,119,95,99,111,111,107,105,101,99,111,110,115,101,110,116,95,111,112,116,105,110,95,98,44,32,116,114,117,101,2,1,95,51,65,181,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,101,119,95,99,111,111,107,105,101,99,111,110,115,101,110,116,95,111,112,116,105,110,95,97,44,32,116,114,117,101,2,1,95,51,65,181,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,45,97,103,114,101,101,45,99,111,111,107,105,101,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,5,58,41,165,40,109,24,68,31,163,64,203,70,186,158,237,65,216,171,108,143,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,45,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,108,101,118,101,108,51,44,32,49,2,5,58,41,165,40,109,24,68,31,163,64,203,70,186,158,237,65,216,171,108,143,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,45,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,108,101,118,101,108,50,44,32,49,2,5,58,41,165,40,109,24,68,31,163,64,203,70,186,158,237,65,216,171,108,143,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,107,45,99,112,44,32,97,99,99,101,112,116,101,100,2,1,138,215,95,53,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,49,2,2,146,126,74,56,244,98,178,68,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,45,99,111,111,107,105,101,44,32,49,2,1,205,242,104,130,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,115,104,111,119,95,103,100,112,114,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,51,56,56,56,48,49,50,51,52,95,99,122,44,32,110,111,2,1,123,37,107,251,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,103,115,98,98,97,110,110,101,114,44,32,48,2,4,27,114,137,84,27,115,166,119,242,231,45,163,242,231,108,212,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,95,95,97,100,98,108,111,99,107,101,114,44,32,102,97,108,115,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,32,202,47,124,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,109,97,114,107,101,116,105,110,103,95,111,107,44,32,102,97,108,115,101,2,1,52,155,95,204,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,111,107,44,32,116,114,117,101,2,1,52,155,95,204,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,67,111,111,107,105,101,115,44,32,48,2,1,20,145,21,40,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,67,111,111,107,105,101,44,32,49,2,1,8,109,73,195,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,109,97,114,107,101,116,105,110,103,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,211,47,240,202,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,76,97,119,95,115,116,97,116,105,115,116,105,107,32,48,2,1,19,31,35,146,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,76,97,119,95,107,111,109,102,111,114,116,44,32,48,2,1,19,31,35,146,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,76,97,119,95,112,101,114,115,111,110,97,108,105,115,105,101,114,117,110,103,44,32,32,48,2,1,19,31,35,146,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,76,97,119,44,32,111,110,2,1,19,31,35,146,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,119,116,114,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,2,1,107,162,169,97,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,119,116,114,95,99,111,111,107,105,101,115,95,97,100,118,101,114,116,105,115,105,110,103,44,32,48,2,1,107,162,169,97,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,119,116,114,95,99,111,111,107,105,101,115,95,102,117,110,99,116,105,111,110,97,108,44,32,48,2,1,107,162,169,97,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,119,116,114,95,99,111,111,107,105,101,115,95,97,110,97,108,121,116,105,99,115,44,32,48,2,1,107,162,169,97,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,84,114,97,99,107,105,110,103,67,111,111,107,105,101,115,75,118,75,44,32,48,2,1,190,147,252,25,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,76,101,118,101,108,67,111,100,101,75,86,75,44,32,49,2,1,190,147,252,25,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,65,110,97,108,121,116,105,99,115,67,111,111,107,105,101,115,75,118,75,44,32,48,2,1,190,147,252,25,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,109,97,99,102,97,114,108,97,110,101,115,45,110,101,99,101,115,115,97,114,121,45,99,111,111,107,105,101,115,44,32,97,99,99,101,112,116,101,100,2,1,166,89,201,15,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,84,67,95,80,82,73,86,65,67,89,95,67,69,78,84,69,82,44,32,48,2,1,134,56,77,224,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,65,108,108,111,119,67,111,111,107,105,101,115,44,32,102,97,108,115,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,105,75,129,105,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,101,100,44,32,102,97,108,115,101,2,2,75,83,66,160,253,178,103,172,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,116,111,117,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,153,168,231,203,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,98,108,117,107,105,116,95,110,111,118,111,44,32,116,114,117,101,2,1,141,165,152,255,2,1,20,115,101,116,45,99,111,111,107,105,101,44,32,99,114,44,32,116,114,117,101,2,1,44,249,255,130,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,99,104,101,99,107,95,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,82,172,33,47,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,45,99,111,111,107,105,101,115,44,32,97,99,99,101,112,116,101,100,2,1,38,157,157,7,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,100,118,97,103,95,99,111,111,107,105,101,115,50,48,50,51,44,32,49,2,1,27,115,45,120,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,99,111,111,107,105,101,44,32,49,2,6,28,53,117,141,84,151,229,74,104,133,92,213,179,17,190,98,180,121,22,97,253,236,35,154,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,109,105,115,115,105,111,110,69,120,112,101,114,105,101,110,99,101,44,32,102,97,108,115,101,2,6,28,53,117,141,84,151,229,74,104,133,92,213,179,17,190,98,180,121,22,97,253,236,35,154,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,109,105,115,115,105,111,110,80,101,114,102,111,114,109,97,110,99,101,44,32,102,97,108,115,101,2,6,28,53,117,141,84,151,229,74,104,133,92,213,179,17,190,98,180,121,22,97,253,236,35,154,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,109,105,115,115,105,111,110,77,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,6,28,53,117,141,84,151,229,74,104,133,92,213,179,17,190,98,180,121,22,97,253,236,35,154,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,143,191,135,148,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,114,101,99,101,105,118,101,100,44,32,116,114,117,101,2,1,143,191,135,148,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,77,111,100,97,108,44,32,102,97,108,115,101,2,3,50,139,2,178,73,206,249,161,88,210,184,91,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,45,97,99,99,101,112,116,101,100,45,65,69,80,68,45,99,111,111,107,105,101,115,44,32,49,2,1,205,71,219,197,2,1,59,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,115,111,110,97,108,105,122,97,116,105,111,110,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,205,71,219,197,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,105,116,105,99,115,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,44,32,48,2,1,205,71,219,197,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,115,115,99,109,95,99,111,110,115,101,110,116,95,119,105,100,103,101,116,44,32,49,2,2,31,66,21,70,96,241,70,96,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,116,101,120,116,104,101,108,112,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,105,110,95,101,117,44,32,48,2,1,14,244,110,112,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,116,101,120,116,104,101,108,112,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,121,101,115,2,1,14,244,110,112,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,110,99,95,99,111,111,107,105,101,115,44,32,97,99,99,101,112,116,101,100,2,2,51,253,196,219,253,7,255,37,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,110,99,95,97,110,97,108,121,116,105,99,115,44,32,114,101,106,101,99,116,101,100,2,2,51,253,196,219,253,7,255,37,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,110,99,95,109,97,114,107,101,116,105,110,103,44,32,114,101,106,101,99,116,101,100,2,2,51,253,196,219,253,7,255,37,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,46,65,115,112,78,101,116,46,67,111,110,115,101,110,116,44,32,121,101,115,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,9,179,116,156,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,46,65,115,112,78,101,116,46,67,111,110,115,101,110,116,44,32,110,111,44,32,44,32,114,101,108,111,97,100,44,32,49,2,3,22,168,32,151,88,3,17,16,241,204,130,68,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,103,97,118,101,95,99,111,110,115,101,110,116,44,32,49,2,1,61,124,215,45,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,103,97,118,101,95,99,111,110,115,101,110,116,95,110,101,119,44,32,49,2,1,61,124,215,45,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,114,116,45,99,98,45,97,112,112,114,111,118,101,44,32,116,114,117,101,2,1,194,197,252,170,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,76,97,121,101,114,68,105,115,109,105,115,115,101,100,44,32,116,114,117,101,2,1,247,172,181,75,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,82,79,68,79,99,108,111,115,101,100,44,32,116,114,117,101,2,1,147,212,128,96,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,68,101,99,108,105,110,101,100,44,32,49,2,1,82,252,183,181,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,77,111,100,97,108,44,32,116,114,117,101,2,1,100,212,228,119,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,111,112,104,45,109,97,110,100,97,116,111,114,121,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,29,158,154,20,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,97,99,99,101,112,116,44,32,49,2,1,193,212,69,158,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,100,119,95,105,115,95,110,101,119,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,14,48,174,175,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,95,112,111,108,105,116,105,99,97,108,44,32,49,2,1,23,108,189,227,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,107,111,110,105,99,97,109,105,110,111,108,116,97,46,117,115,44,32,49,2,2,20,72,0,78,20,76,80,202,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,65,110,97,108,121,116,105,99,115,65,112,112,114,111,118,101,100,44,32,48,2,3,57,168,48,141,140,151,96,14,155,36,22,25,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,67,111,110,102,105,103,117,114,101,100,67,111,111,107,105,101,115,44,32,49,2,3,57,168,48,141,140,151,96,14,155,36,22,25,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,80,117,98,108,105,65,112,112,114,111,118,101,100,44,32,48,2,3,57,168,48,141,140,151,96,14,155,36,22,25,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,65,117,116,104,44,32,49,2,1,81,156,104,22,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,107,115,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,64,241,146,254,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,111,108,105,99,121,44,32,116,114,117,101,2,1,160,164,11,157,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,117,115,101,45,97,99,99,101,112,116,44,32,102,97,108,115,101,2,1,189,35,171,41,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,103,97,45,100,105,115,97,98,108,101,45,85,65,45,120,120,120,120,120,120,120,120,45,120,44,32,116,114,117,101,2,1,161,188,5,65,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,44,32,49,2,6,2,245,254,185,39,245,80,171,83,50,163,235,93,170,186,220,94,213,147,148,206,96,219,158,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,67,111,111,107,105,101,115,44,32,49,2,1,152,113,98,159,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,98,97,114,44,32,110,111,2,1,189,14,48,215,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,110,111,2,1,190,148,20,171,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,101,115,115,101,110,116,105,97,108,44,32,116,114,117,101,2,1,228,198,212,113,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,102,105,114,109,44,32,116,114,117,101,2,1,0,200,68,89,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,116,114,97,99,107,105,110,103,67,111,110,102,105,114,109,44,32,102,97,108,115,101,2,1,0,200,68,89,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,3,133,168,55,156,184,102,211,151,221,198,235,150,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,2,46,99,168,179,78,193,174,14,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,103,116,109,45,100,105,115,97,98,108,101,45,71,84,77,45,78,76,86,82,88,88,56,44,32,116,114,117,101,2,1,78,193,174,14,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,117,99,101,45,99,111,111,107,105,101,44,32,78,2,1,171,27,228,68,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,116,97,114,116,101,97,117,99,105,116,114,111,110,44,32,102,97,108,115,101,2,1,58,254,36,158,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,111,108,105,99,105,101,115,44,32,116,114,117,101,2,1,213,179,47,238,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,111,112,116,105,110,95,113,44,32,102,97,108,115,101,2,1,60,131,100,79,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,99,101,45,99,111,111,107,105,101,44,32,78,2,67,17,64,113,21,17,229,136,97,18,84,111,184,21,116,234,190,22,57,150,21,22,177,41,212,29,174,245,204,31,230,24,87,34,130,120,136,34,167,81,92,37,21,156,173,42,166,22,150,46,2,200,34,54,208,49,87,61,50,238,255,62,133,143,184,63,203,249,179,65,162,50,46,66,126,184,146,74,119,225,156,74,194,241,45,77,231,218,200,77,239,6,14,87,133,86,157,87,181,53,12,92,144,187,170,94,218,9,203,95,76,157,119,95,243,31,117,103,81,33,19,104,29,131,110,104,154,123,6,105,50,1,50,111,33,145,164,112,27,180,191,114,191,119,142,118,197,38,144,126,192,131,199,132,198,35,139,144,158,29,86,151,224,219,150,153,68,134,134,159,228,199,205,163,215,15,159,174,97,200,134,177,45,107,233,177,108,7,74,186,89,152,141,186,152,86,160,186,186,86,65,190,87,28,134,191,93,157,244,191,173,99,224,193,31,140,57,197,16,188,59,202,18,54,141,205,26,249,199,207,230,115,26,215,122,195,81,225,65,220,227,226,43,171,10,226,72,184,65,228,0,16,121,236,152,120,200,251,40,55,146,255,3,38,178,255,126,36,196,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,78,84,67,111,111,107,105,101,115,44,32,48,2,1,253,79,11,254,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,70,84,44,32,49,2,1,182,128,167,241,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,97,108,101,114,116,67,111,111,107,105,101,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,102,195,221,184,2,1,19,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,44,32,49,2,1,76,59,3,142,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,104,105,100,101,67,111,111,107,105,101,66,97,110,110,101,114,44,32,116,114,117,101,2,1,14,146,200,133,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,111,98,108,105,103,97,116,111,114,121,44,32,116,114,117,101,2,1,206,138,177,189,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,109,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,206,138,177,189,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,206,138,177,189,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,116,114,111,108,44,32,116,114,117,101,2,1,184,36,83,59,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,112,108,111,115,67,111,111,107,105,101,67,111,110,115,101,110,116,83,116,97,116,117,115,44,32,102,97,108,115,101,2,1,55,165,100,251,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,115,44,32,49,2,1,25,238,229,70,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,65,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,187,186,108,167,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,187,186,108,167,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,104,105,100,101,45,103,100,112,114,45,98,97,114,44,32,116,114,117,101,2,80,3,176,200,251,4,109,11,61,6,156,132,248,12,51,137,189,12,53,117,46,14,32,110,31,16,112,169,206,18,164,235,141,18,175,214,76,19,214,225,225,24,101,247,44,25,117,141,192,27,31,255,253,29,145,44,237,40,40,185,74,42,150,168,205,48,225,15,210,50,177,53,151,51,173,198,222,55,178,145,102,57,189,246,128,61,236,58,225,64,76,225,3,74,70,221,58,81,91,33,72,95,50,146,108,101,0,145,134,101,49,87,251,103,34,47,34,107,209,55,201,108,221,92,25,113,14,240,153,113,91,207,236,114,235,109,150,117,241,209,2,130,50,194,243,132,151,206,122,132,216,9,14,141,142,58,255,144,68,172,120,144,113,183,237,153,113,132,149,153,233,238,82,165,68,182,147,168,103,70,187,168,218,251,9,170,113,74,43,176,103,209,241,180,186,74,49,181,200,84,162,183,167,228,226,185,224,186,100,188,56,200,215,188,105,192,52,194,12,3,17,195,160,160,218,197,130,65,39,198,124,87,16,198,149,195,115,200,217,9,221,203,71,154,29,213,93,231,222,215,80,108,141,222,234,214,14,224,92,56,31,227,46,141,188,228,146,151,30,229,185,119,219,229,191,110,180,230,174,138,92,232,191,20,54,233,143,16,29,233,174,99,142,235,62,9,18,241,175,173,83,247,38,77,218,247,60,66,209,250,154,18,123,251,127,206,205,251,250,101,139,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,112,114,111,109,112,116,67,111,111,107,105,101,115,44,32,49,2,12,2,200,98,197,32,143,149,85,33,109,93,47,62,10,100,131,97,1,35,38,132,32,87,178,136,27,131,22,181,236,254,216,208,150,142,125,224,11,78,61,229,83,120,92,231,161,175,130,2,1,20,115,101,116,45,99,111,111,107,105,101,44,32,95,99,68,97,66,44,32,49,2,1,138,217,137,49,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,95,97,67,97,110,95,97,110,97,108,121,116,105,99,97,108,44,32,48,2,1,138,217,137,49,2,1,20,115,101,116,45,99,111,111,107,105,101,44,32,95,97,71,97,66,44,32,49,2,1,138,217,137,49,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,115,117,114,98,109,97,45,103,112,103,97,44,32,110,111,2,1,7,172,155,28,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,101,108,114,111,119,67,111,111,107,105,101,80,111,108,105,99,121,44,32,121,101,115,2,1,128,186,252,227,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,111,119,110,105,116,95,99,111,111,107,105,101,95,100,97,116,97,95,112,101,114,109,105,115,115,105,111,110,115,44,32,49,2,1,229,198,156,124,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,115,95,80,114,101,102,101,114,101,110,99,101,115,44,32,97,99,99,101,112,116,101,100,2,1,175,46,9,163,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,115,95,80,114,101,102,101,114,101,110,99,101,115,95,65,110,97,108,121,116,105,99,115,44,32,100,101,99,108,105,110,101,100,2,1,175,46,9,163,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,80,111,108,105,99,121,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,148,84,1,146,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,115,45,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,83,174,29,18,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,99,45,97,99,99,101,112,116,101,100,44,32,50,2,1,73,10,13,15,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,99,45,105,116,101,109,45,103,111,111,103,108,101,44,32,102,97,108,115,101,2,1,203,192,135,144,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,95,99,111,111,107,105,101,115,44,32,97,99,99,101,112,116,101,100,2,1,129,61,52,147,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,102,101,97,116,117,114,101,67,111,110,115,101,110,116,44,32,102,97,108,115,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,131,200,103,82,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,45,99,111,111,107,105,101,44,32,110,111,2,1,126,241,141,152,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,3,101,85,228,226,209,196,74,45,241,254,197,31,2,1,61,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,114,105,118,97,99,121,80,114,101,102,101,114,101,110,99,101,66,97,110,110,101,114,80,114,111,100,117,99,116,105,111,110,44,32,97,99,99,101,112,116,101,100,2,1,55,214,195,174,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,131,46,12,130,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,50,120,49,99,111,111,107,105,101,115,44,32,49,2,1,223,41,26,68,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,102,105,114,115,116,80,97,114,116,121,68,97,116,97,80,114,101,102,83,101,116,44,32,116,114,117,101,2,1,249,47,244,29,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,114,101,113,117,105,114,101,100,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,255,3,80,198,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,107,104,95,99,111,111,107,105,101,95,108,101,118,101,108,52,44,32,102,97,108,115,101,2,1,232,237,143,111,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,107,104,95,99,111,111,107,105,101,95,108,101,118,101,108,51,44,32,102,97,108,115,101,2,1,232,237,143,111,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,107,104,95,99,111,111,107,105,101,95,108,101,118,101,108,49,44,32,116,114,117,101,2,1,232,237,143,111,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,103,114,101,101,109,101,110,116,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,126,6,15,181,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,77,83,67,95,67,111,111,107,105,101,98,97,110,110,101,114,44,32,102,97,108,115,101,2,1,223,133,75,15,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,95,109,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,89,250,181,43,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,70,105,116,110,101,115,115,105,110,103,50,49,45,49,53,45,57,44,32,48,2,1,32,171,194,82,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,112,111,112,117,112,44,32,121,101,115,2,1,88,29,62,152,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,95,114,101,113,117,105,114,101,100,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,89,250,181,43,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,115,97,95,101,110,97,98,108,101,44,32,111,102,102,2,1,224,23,53,51,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,99,111,111,107,105,101,116,101,114,109,67,111,111,107,105,101,66,97,110,110,101,114,44,32,116,114,117,101,2,1,119,112,149,6,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,115,116,97,116,117,115,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,196,75,134,243,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,70,84,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,44,32,49,2,1,4,170,49,252,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,98,97,114,44,32,48,2,12,19,59,237,38,88,144,253,181,93,252,9,99,116,158,59,116,130,196,9,143,133,24,162,8,165,197,152,69,176,212,79,197,193,67,166,249,201,55,92,33,201,57,45,69,232,206,21,204,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,111,112,117,112,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,232,169,148,91,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,85,66,73,95,80,82,73,86,65,67,89,95,80,79,76,73,67,89,95,86,73,69,87,69,68,44,32,116,114,117,101,2,1,169,123,212,248,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,85,66,73,95,80,82,73,86,65,67,89,95,65,68,83,95,79,80,84,79,85,84,44,32,116,114,117,101,2,1,169,123,212,248,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,85,66,73,95,80,82,73,86,65,67,89,95,80,79,76,73,67,89,95,65,67,67,69,80,84,69,68,44,32,102,97,108,115,101,2,1,169,123,212,248,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,85,66,73,95,80,82,73,86,65,67,89,95,86,73,68,69,79,95,79,80,84,79,85,84,44,32,102,97,108,115,101,2,1,169,123,212,248,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,106,111,99,111,111,107,105,101,44,32,102,97,108,115,101,2,1,118,148,17,90,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,46,115,104,111,119,110,44,32,49,2,1,183,128,106,126,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,108,111,99,97,108,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,242,157,19,159,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,111,97,105,45,97,108,108,111,119,45,110,101,44,32,102,97,108,115,101,2,1,78,29,10,172,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,44,32,114,101,106,101,99,116,101,100,2,1,78,29,10,172,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,45,99,111,111,107,105,101,44,32,49,2,3,4,191,184,28,13,135,226,149,92,145,212,209,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,102,117,110,99,116,105,111,110,97,108,44,32,49,2,3,4,191,184,28,13,135,226,149,92,145,212,209,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,104,117,108,107,67,111,111,107,105,101,66,97,114,67,108,105,99,107,44,32,49,2,1,118,33,25,1,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,49,2,3,6,212,29,147,8,137,227,69,175,227,176,23,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,122,111,111,109,109,101,114,45,99,111,111,107,105,101,95,97,103,114,101,101,100,44,32,116,114,117,101,2,1,35,220,156,202,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,116,114,117,101,2,1,21,22,245,160,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,99,111,111,107,105,101,95,116,111,107,101,110,44,32,49,2,1,83,175,191,155,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,95,99,111,110,115,101,110,116,95,112,101,114,115,111,110,97,108,105,122,97,116,105,111,110,44,32,100,101,110,105,101,100,2,1,83,175,191,155,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,95,99,111,110,115,101,110,116,95,97,110,97,108,121,116,105,99,115,44,32,100,101,110,105,101,100,2,1,83,175,191,155,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,95,99,111,110,115,101,110,116,95,109,97,114,107,101,116,105,110,103,44,32,100,101,110,105,101,100,2,1,83,175,191,155,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,87,97,108,108,44,32,49,2,3,98,157,84,68,225,117,106,207,254,51,21,212,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,110,111,95,99,111,111,107,105,101,115,44,32,49,2,1,60,86,141,104,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,104,105,100,101,99,111,111,107,105,101,115,98,97,110,110,101,114,44,32,49,2,1,60,86,141,104,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,110,97,116,111,114,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,226,241,153,231,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,87,97,108,108,79,112,116,73,110,44,32,48,2,3,98,157,84,68,225,117,106,207,254,51,21,212,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,70,78,2,251,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,99,102,52,50,49,50,95,99,110,44,32,49,2,1,66,208,20,96,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,109,101,100,105,97,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,70,78,2,251,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,109,97,110,100,97,116,111,114,121,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,70,78,2,251,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,103,116,97,103,44,32,116,114,117,101,2,1,138,169,131,181,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,66,111,107,97,100,105,114,101,107,116,67,111,111,107,105,101,80,114,101,102,101,114,101,110,99,101,115,77,80,44,32,49,2,1,254,171,46,185,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,65,99,107,110,111,119,108,101,100,103,101,100,44,32,116,114,117,101,2,12,27,117,68,99,29,45,39,34,34,214,62,251,77,23,153,59,82,72,89,208,89,236,248,3,96,239,142,94,102,87,3,213,118,33,106,253,129,199,91,102,139,95,211,48,196,72,98,254,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,100,97,116,97,45,112,114,105,118,97,99,121,45,115,116,97,116,101,109,101,110,116,44,32,116,114,117,101,2,1,62,4,221,81,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,108,101,118,101,108,44,32,114,101,113,117,105,114,101,100,2,1,227,61,124,66,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,115,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,227,61,124,66,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,77,65,84,79,77,79,95,67,79,78,83,69,78,84,95,71,73,86,69,78,44,32,48,2,1,247,227,0,84,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,66,65,66,89,95,77,65,82,75,69,84,73,78,71,95,67,79,79,75,73,69,83,95,67,79,78,83,69,78,84,69,68,44,32,102,97,108,115,101,2,1,141,4,235,176,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,66,65,66,89,95,80,69,82,70,79,82,77,65,78,67,69,95,67,79,79,75,73,69,83,95,67,79,78,83,69,78,84,69,68,44,32,102,97,108,115,101,2,1,141,4,235,176,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,66,65,66,89,95,78,69,67,69,83,83,65,82,89,95,67,79,79,75,73,69,83,95,67,79,78,83,69,78,84,69,68,44,32,116,114,117,101,2,1,141,4,235,176,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,101,115,115,101,110,116,105,97,108,44,32,97,108,108,111,119,2,1,208,95,128,3,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,104,111,119,110,44,32,49,2,1,112,154,225,45,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,119,97,114,110,44,32,116,114,117,101,2,1,20,15,89,250,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,111,112,116,105,110,67,111,111,107,105,101,83,101,116,116,105,110,103,44,32,49,2,6,5,109,35,236,105,172,143,186,165,157,91,178,217,196,38,156,230,36,154,245,253,63,11,27,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,45,115,104,111,119,110,44,32,116,114,117,101,2,1,78,201,19,42,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,115,108,105,109,115,116,97,116,95,111,112,116,111,117,116,95,116,114,97,99,107,105,110,103,44,32,116,114,117,101,2,1,78,201,19,42,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,110,112,112,95,97,110,97,108,121,116,105,99,97,108,44,32,48,2,1,38,157,20,144,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,105,110,115,104,111,112,67,111,111,107,105,101,115,83,101,116,44,32,116,114,117,101,2,1,74,247,206,49,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,97,100,115,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,74,247,206,49,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,102,111,114,109,97,110,99,101,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,74,247,206,49,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,115,97,95,100,101,109,111,44,32,102,97,108,115,101,2,1,246,239,37,28,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,97,110,105,109,97,116,101,100,95,100,114,97,119,105,110,103,115,44,32,116,114,117,101,2,1,223,219,208,13,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,83,116,97,116,117,115,44,32,116,114,117,101,2,1,99,204,186,88,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,115,119,103,67,111,111,107,105,101,44,32,102,97,108,115,101,2,1,142,216,105,22,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,80,114,101,102,101,114,101,110,99,101,115,71,114,97,110,116,101,100,44,32,49,2,1,82,207,22,19,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,77,97,114,107,101,116,105,110,103,71,114,97,110,116,101,100,44,32,48,2,1,82,207,22,19,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,71,114,97,110,116,101,100,44,32,49,2,2,82,72,137,175,82,207,22,19,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,114,101,106,101,99,116,101,100,44,32,116,114,117,101,2,1,126,2,180,7,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,78,76,95,67,79,79,75,73,69,95,75,79,77,70,79,82,84,44,32,102,97,108,115,101,2,1,246,238,150,208,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,78,76,95,67,79,79,75,73,69,95,77,69,77,79,82,89,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,246,238,150,208,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,78,76,95,67,79,79,75,73,69,95,83,84,65,84,83,44,32,102,97,108,115,101,2,1,246,238,150,208,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,112,119,115,95,103,100,114,112,95,97,99,99,101,112,116,44,32,49,2,1,229,19,190,76,2,1,21,115,101,116,45,99,111,111,107,105,101,44,32,104,97,118,101,49,56,44,32,49,2,1,126,227,193,76,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,112,101,108,109,95,99,115,116,97,116,101,44,32,49,2,1,157,137,34,187,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,112,101,108,109,95,99,111,110,115,101,110,116,44,32,49,2,1,157,137,34,187,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,45,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,89,230,142,143,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,45,97,110,97,108,121,116,105,99,97,108,45,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,89,230,142,143,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,45,109,97,114,107,101,116,105,110,103,45,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,89,230,142,143,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,108,101,118,101,108,45,118,52,44,32,48,2,1,168,254,43,56,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,95,99,111,110,115,101,110,116,44,32,121,101,115,2,1,215,58,233,3,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,115,101,105,45,99,99,112,97,45,98,97,110,110,101,114,44,32,116,114,117,101,2,1,22,71,232,203,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,97,119,120,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,253,150,3,185,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,119,97,114,110,105,110,103,44,32,49,2,1,50,64,204,109,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,67,111,111,107,105,101,115,44,32,48,2,1,171,27,192,149,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,111,108,105,99,121,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,148,186,156,47,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,99,111,100,101,99,97,109,112,115,46,99,111,111,107,105,101,115,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,130,35,224,89,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,106,250,226,172,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,117,112,100,97,116,101,100,44,32,116,114,117,101,2,1,104,254,151,164,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,110,97,116,111,114,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,55,149,105,52,2,1,19,115,101,116,45,99,111,111,107,105,101,44,32,97,99,115,114,44,32,49,2,1,242,33,51,235,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,95,95,104,115,95,103,112,99,95,98,97,110,110,101,114,95,100,105,115,109,105,115,115,44,32,116,114,117,101,2,1,137,242,202,87,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,121,101,115,45,110,101,99,101,115,115,97,114,121,44,32,121,101,115,2,2,63,205,169,91,78,117,166,39,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,121,101,115,45,111,116,104,101,114,44,32,110,111,2,2,63,205,169,91,78,117,166,39,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,107,121,45,97,99,116,105,111,110,44,32,121,101,115,2,2,63,205,169,91,78,117,166,39,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,121,101,115,45,102,117,110,99,116,105,111,110,97,108,44,32,110,111,2,2,63,205,169,91,78,117,166,39,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,45,100,101,99,108,105,110,101,100,45,99,111,111,107,105,101,115,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,148,181,115,31,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,45,97,103,114,101,101,100,45,116,111,45,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,148,181,115,31,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,101,115,115,101,110,116,105,97,108,44,32,89,2,1,111,124,156,64,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,44,32,78,2,1,111,124,156,64,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,102,117,110,99,116,105,111,110,97,108,44,32,78,2,1,111,124,156,64,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,103,114,97,100,101,112,114,111,111,102,95,115,104,111,119,110,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,44,32,116,114,117,101,2,1,159,106,231,247,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,115,98,101,114,46,112,101,114,115,95,110,111,116,105,99,101,95,101,110,44,32,49,2,1,216,112,91,204,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,101,100,44,32,121,101,115,2,1,140,10,139,68,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,126,167,107,71,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,126,167,107,71,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,45,111,112,116,45,105,110,44,32,102,97,108,115,101,2,1,126,167,107,71,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,44,32,49,2,1,192,148,217,178,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,67,66,51,57,51,95,68,79,78,79,84,82,69,79,80,69,78,44,32,116,114,117,101,2,1,132,101,55,141,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,65,89,84,79,95,67,79,82,85,78,65,95,67,79,79,75,73,69,83,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,41,107,177,14,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,73,54,73,73,83,67,79,79,75,73,69,67,79,78,83,69,78,84,48,44,32,110,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,143,191,40,47,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,104,116,103,95,99,111,110,115,101,110,116,44,32,48,2,1,35,61,16,46,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,111,108,100,97,108,44,32,49,2,1,108,86,229,167,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,109,97,114,107,101,116,105,110,103,44,32,48,2,1,108,86,229,167,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,106,111,103,44,32,49,2,1,108,86,229,167,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,99,112,95,99,99,95,97,100,115,44,32,48,2,1,41,208,31,171,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,112,95,99,99,95,115,116,97,116,115,44,32,48,2,1,41,208,31,171,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,112,95,99,99,95,114,101,113,117,105,114,101,100,44,32,49,2,1,41,208,31,171,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,97,101,45,99,111,111,107,105,101,98,97,110,110,101,114,44,32,116,114,117,101,2,1,160,58,194,33,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,97,101,45,101,115,101,110,116,105,97,108,44,32,116,114,117,101,2,1,160,58,194,33,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,97,101,45,115,116,97,116,105,115,116,105,99,115,44,32,102,97,108,115,101,2,1,160,58,194,33,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,99,115,45,115,117,112,112,108,105,101,114,99,111,110,110,101,99,116,44,32,65,67,67,69,80,84,69,68,2,1,213,131,142,34,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,115,44,32,121,101,115,2,1,184,205,177,226,2,1,19,115,101,116,45,99,111,111,107,105,101,44,32,110,111,116,101,44,32,49,2,1,161,39,136,130,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,114,101,113,117,105,114,101,100,2,1,114,144,137,186,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,97,99,99,101,112,116,101,100,2,2,89,1,193,11,89,107,59,54,2,1,20,115,101,116,45,99,111,111,107,105,101,44,32,112,100,95,99,99,44,32,49,2,1,206,227,29,65,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,111,107,44,32,110,101,99,101,115,115,97,114,121,2,1,62,38,138,106,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,84,114,97,99,107,105,110,103,44,32,102,97,108,115,101,2,3,148,100,37,133,167,60,197,179,217,38,148,227,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,109,97,114,107,101,116,105,110,103,44,32,78,2,1,183,125,212,215,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,118,97,114,109,97,102,105,95,109,97,110,100,97,116,111,114,121,44,32,116,114,117,101,2,1,19,235,180,151,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,86,121,111,115,67,111,111,107,105,101,115,44,32,65,99,99,101,112,116,101,100,2,1,55,2,35,168,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,204,88,34,17,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,97,100,115,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,204,88,34,17,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,116,101,95,99,111,111,107,105,101,95,111,107,44,32,49,2,1,101,231,79,129,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,97,109,99,111,111,107,105,101,95,112,111,108,105,99,121,95,114,101,115,116,114,105,99,116,105,111,110,44,32,97,108,108,111,119,101,100,2,3,31,64,254,16,102,109,134,80,229,222,127,24,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,97,108,108,111,119,101,100,2,1,61,180,120,204,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,100,119,95,99,111,111,107,105,101,115,95,97,99,99,101,112,116,101,100,44,32,49,2,1,111,116,220,209,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,67,111,110,118,101,114,115,101,67,111,111,107,105,101,80,111,108,105,99,121,44,32,48,2,1,111,116,220,209,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,45,98,97,110,110,101,114,44,32,49,2,1,57,45,101,113,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,83,101,116,116,105,110,103,115,44,32,49,2,1,158,123,51,99,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,97,114,101,95,101,115,115,101,110,116,105,97,108,95,99,111,110,115,101,110,116,115,95,103,105,118,101,110,44,32,49,2,1,114,168,240,26,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,105,115,95,112,101,114,115,111,110,97,108,105,122,101,100,95,99,111,110,116,101,110,116,95,99,111,110,115,101,110,116,95,103,105,118,101,110,44,32,49,2,1,114,168,240,26,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,97,99,101,112,116,97,95,99,111,111,107,105,101,115,95,102,117,110,99,105,111,110,97,108,101,115,44,32,49,2,1,131,28,124,152,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,97,99,101,112,116,97,95,99,111,111,107,105,101,115,95,111,98,108,105,103,97,116,111,114,105,97,115,44,32,49,2,1,131,28,124,152,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,97,99,101,112,116,97,95,99,111,111,107,105,101,115,95,112,101,114,115,111,110,97,108,105,122,97,99,105,111,110,44,32,49,2,1,131,28,124,152,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,112,111,108,105,99,121,105,110,102,111,95,110,101,119,44,32,116,114,117,101,2,1,116,51,206,221,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,67,111,111,107,105,101,44,32,116,114,117,101,2,3,115,86,199,152,157,49,204,221,190,189,89,212,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,114,101,113,117,105,114,101,100,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,100,11,17,27,2,1,20,115,101,116,45,99,111,111,107,105,101,44,32,101,101,45,104,106,44,32,110,2,1,66,178,99,67,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,101,101,45,99,97,44,32,121,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,66,178,99,67,2,1,20,115,101,116,45,99,111,111,107,105,101,44,32,101,101,45,121,116,44,32,121,2,1,66,178,99,67,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,116,51,206,221,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,49,2,2,198,1,112,60,228,89,172,131,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,101,116,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,184,229,185,114,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,66,97,115,105,99,44,32,116,114,117,101,2,1,76,155,227,251,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,77,111,108,100,44,32,116,114,117,101,2,1,186,43,179,248,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,121,116,112,114,101,102,115,95,103,100,112,114,95,99,111,110,115,101,110,116,44,32,49,2,1,42,76,66,217,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,101,102,105,108,101,45,99,111,111,107,105,101,110,97,109,101,45,44,32,49,2,1,6,202,100,103,2,1,63,115,101,116,45,99,111,111,107,105,101,44,32,112,108,103,95,115,121,115,116,101,109,95,100,106,99,111,111,107,105,101,109,111,110,115,116,101,114,95,105,110,102,111,114,109,101,100,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,65,141,236,134,2,1,21,115,101,116,45,99,111,111,107,105,101,44,32,99,118,99,44,32,116,114,117,101,2,1,126,80,48,198,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,117,112,100,97,116,101,100,44,32,116,114,117,101,2,1,151,145,181,211,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,51,44,32,116,114,117,101,2,1,193,179,102,88,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,97,99,114,105,115,95,99,111,111,107,105,101,95,97,99,99,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,2,130,162,61,75,241,120,197,253,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,116,101,114,109,115,102,101,101,100,95,112,99,49,95,110,111,116,105,99,101,95,98,97,110,110,101,114,95,104,105,100,100,101,110,44,32,116,114,117,101,2,1,144,37,2,100,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,109,112,108,122,95,109,97,114,107,101,116,105,110,103,44,32,97,108,108,111,119,101,100,2,1,186,163,153,20,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,109,112,108,122,95,109,97,114,107,101,116,105,110,103,44,32,97,108,108,111,119,2,1,105,175,67,169,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,99,107,110,111,119,108,101,100,103,101,100,44,32,116,114,117,101,2,1,164,133,215,219,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,99,112,97,97,99,99,101,112,116,44,32,116,114,117,101,2,1,40,85,144,166,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,115,104,105,101,108,100,95,110,111,116,105,99,101,95,100,105,115,109,105,115,115,101,100,44,32,121,101,115,2,1,35,23,37,158,2,1,70,115,101,116,45,99,111,111,107,105,101,44,32,108,117,99,105,95,103,97,67,111,110,115,101,110,116,95,57,53,57,55,51,102,55,98,45,54,100,98,99,45,52,100,97,99,45,97,57,49,54,45,97,98,50,99,102,51,98,52,97,102,49,49,44,32,102,97,108,115,101,2,1,27,219,204,123,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,108,117,99,105,95,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,27,219,204,123,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,110,103,45,99,99,45,110,101,99,101,115,115,97,114,121,44,32,49,2,1,240,215,10,205,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,110,103,45,99,99,45,97,99,99,101,112,116,101,100,44,32,97,99,99,101,112,116,101,100,2,1,240,215,10,205,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,80,114,105,118,97,99,121,80,111,108,105,99,121,79,112,116,79,117,116,44,32,121,101,115,2,1,13,174,106,218,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,65,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,2,159,136,32,189,177,219,181,152,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,65,100,118,101,114,116,105,115,105,110,103,44,32,102,97,108,115,101,2,2,159,136,32,189,177,219,181,152,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,80,101,114,115,111,110,97,108,105,122,97,116,105,111,110,44,32,102,97,108,115,101,2,2,159,136,32,189,177,219,181,152,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,69,120,112,105,114,97,116,105,111,110,44,32,49,2,2,159,136,32,189,177,219,181,152,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,83,101,116,116,105,110,103,115,44,32,49,2,2,159,136,32,189,177,219,181,152,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,117,115,44,32,100,101,110,121,2,1,37,49,30,126,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,108,114,95,99,111,111,107,105,101,115,95,116,101,99,110,105,99,97,115,44,32,97,99,99,101,112,116,101,100,2,1,34,150,182,206,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,115,117,114,101,115,116,97,111,44,32,97,99,99,101,112,116,101,100,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,34,150,182,206,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,104,105,100,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,44,32,49,2,1,194,197,252,41,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,102,106,97,108,108,114,97,118,101,110,67,111,111,107,105,101,44,32,49,2,1,220,1,40,182,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,95,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,116,114,117,101,2,1,222,57,176,196,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,95,109,97,114,107,101,116,105,110,103,44,32,48,2,1,217,82,115,223,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,95,112,101,114,102,111,114,109,97,110,99,101,44,32,48,2,1,217,82,115,223,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,82,103,112,100,66,97,110,110,101,114,44,32,49,2,1,217,82,115,223,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,115,101,101,110,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,44,32,97,99,99,101,112,116,101,100,2,1,169,46,16,114,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,109,112,108,105,97,110,99,101,67,111,111,107,105,101,44,32,111,110,2,1,89,55,252,45,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,84,101,114,109,115,68,105,115,109,105,115,115,101,100,44,32,116,114,117,101,2,1,67,86,100,255,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,41,223,59,65,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,48,2,1,39,200,225,112,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,101,99,111,108,111,103,105,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,50,48,50,50,48,50,50,52,44,32,102,97,108,115,101,2,1,106,175,62,0,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,97,112,112,66,97,110,110,101,114,80,111,112,85,112,82,117,108,101,115,67,111,111,107,105,101,44,32,116,114,117,101,2,1,127,45,124,160,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,101,117,114,97,99,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,138,73,239,181,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,97,107,97,115,97,97,105,114,67,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,2,1,37,243,174,83,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,114,105,116,116,97,108,67,67,44,32,49,2,1,36,118,55,78,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,97,103,114,101,101,100,44,32,50,2,2,226,171,152,4,237,56,29,7,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,107,105,101,115,95,102,97,99,101,98,111,111,107,95,112,105,120,101,108,44,32,100,101,110,121,2,1,147,169,231,220,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,107,105,101,115,95,103,111,111,103,108,101,95,97,110,97,108,121,116,105,99,115,44,32,100,101,110,121,2,1,147,169,231,220,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,107,105,101,115,95,121,111,117,116,117,98,101,44,32,97,108,108,111,119,2,1,147,169,231,220,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,107,105,101,115,95,99,108,111,117,100,102,108,97,114,101,44,32,97,108,108,111,119,2,1,147,169,231,220,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,107,105,101,115,95,112,97,121,112,97,108,44,32,97,108,108,111,119,2,1,147,169,231,220,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,107,105,101,115,95,119,101,98,95,115,116,111,114,101,95,115,116,97,116,101,44,32,97,108,108,111,119,2,1,147,169,231,220,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,80,111,108,105,99,121,44,32,89,2,1,46,147,207,193,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,109,111,100,97,108,80,111,108,105,99,121,67,111,111,107,105,101,78,111,116,65,99,99,101,112,116,101,100,44,32,110,111,116,97,99,99,101,112,116,101,100,2,1,126,46,1,215,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,77,65,78,65,95,67,79,78,83,69,78,84,44,32,116,114,117,101,2,1,94,255,168,248,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,95,117,108,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,97,108,108,111,119,2,1,36,43,116,140,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,114,101,102,65,110,97,108,121,116,105,99,115,44,32,48,2,1,224,102,169,245,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,114,101,102,77,97,114,107,101,116,105,110,103,44,32,48,2,1,224,102,169,245,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,114,101,102,84,104,105,114,100,80,97,114,116,121,65,112,112,108,105,99,97,116,105,111,110,115,44,32,48,2,1,224,102,169,245,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,116,114,97,99,107,105,110,103,67,111,111,107,105,101,115,44,32,111,102,102,2,1,160,198,144,230,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,109,112,108,105,97,110,99,101,67,111,111,107,105,101,44,32,111,110,2,1,160,198,144,230,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,97,110,97,108,121,116,105,99,115,44,32,110,111,2,1,46,142,121,10,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,97,100,118,101,114,116,105,115,105,110,103,44,32,110,111,2,1,46,142,121,10,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,102,117,110,99,116,105,111,110,97,108,44,32,121,101,115,2,1,46,142,121,10,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,49,56,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,214,1,10,253,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,104,105,100,101,45,103,100,112,114,45,98,97,114,44,32,116,114,117,101,2,2,170,7,161,142,214,180,242,76,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,65,84,65,46,103,100,112,114,46,112,111,112,117,112,44,32,116,114,117,101,2,1,127,45,255,113,2,1,56,115,101,116,45,99,111,111,107,105,101,44,32,65,73,82,69,85,82,79,80,65,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,66,65,78,78,69,82,95,86,73,69,87,69,68,44,32,49,2,1,213,9,216,122,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,78,111,116,105,99,101,69,120,112,105,114,101,68,97,116,101,44,32,49,2,1,100,106,135,78,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,78,111,116,105,99,101,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,100,106,135,78,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,112,111,108,105,99,121,95,97,99,99,101,112,116,101,100,44,32,49,2,1,179,20,67,178,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,115,116,97,109,112,101,110,45,99,111,111,107,105,101,115,45,104,105,100,101,45,105,110,102,111,114,109,97,116,105,111,110,44,32,121,101,115,2,1,228,34,18,191,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,100,111,109,105,110,111,115,95,99,111,111,107,105,101,115,95,97,99,99,101,112,116,101,100,44,32,49,2,1,254,191,178,0,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,100,101,118,97,95,97,99,99,101,112,116,101,100,44,32,121,101,115,2,1,47,194,160,164,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,95,115,101,116,116,105,110,103,115,44,32,49,2,3,103,123,209,119,203,33,57,68,253,34,198,130,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,44,32,49,2,3,93,170,186,220,206,96,219,158,228,246,217,16,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,109,111,100,97,108,44,32,116,114,117,101,2,1,226,117,120,165,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,110,111,116,105,99,101,44,32,49,2,1,8,199,171,147,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,111,108,105,99,121,95,97,103,114,101,101,109,101,110,116,44,32,116,114,117,101,2,1,75,175,60,217,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,80,111,112,117,112,44,32,49,2,1,77,209,17,42,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,100,105,103,105,98,101,115,116,67,111,111,107,105,101,73,110,102,111,44,32,116,114,117,101,2,1,6,220,40,130,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,101,116,116,105,110,103,115,95,115,116,97,116,117,115,44,32,97,108,108,111,119,2,1,25,95,98,6,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,95,100,117,101,116,95,103,100,112,114,95,97,99,107,110,111,119,108,101,100,103,101,100,44,32,49,2,1,124,156,243,50,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,100,97,105,109,97,110,116,95,99,111,108,108,101,99,116,105,118,101,44,32,97,99,99,101,112,116,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,211,129,194,191,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,110,111,116,105,99,101,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,90,250,144,187,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,98,97,110,110,101,114,44,32,50,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,107,21,31,26,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,50,48,50,51,44,32,97,99,99,101,112,116,2,1,247,55,42,202,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,173,32,237,112,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,80,111,108,105,99,121,44,32,52,2,4,15,232,223,116,52,240,148,207,89,208,23,177,171,195,192,103,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,115,116,97,110,100,97,114,100,95,103,100,112,114,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,242,129,217,10,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,44,32,116,114,117,101,2,1,142,49,74,57,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,66,97,110,110,101,114,44,32,116,114,117,101,2,1,233,169,94,203,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,116,110,99,111,111,107,105,101,105,110,102,111,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,124,223,116,63,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,97,103,114,101,101,95,119,105,116,104,95,99,111,111,107,105,101,115,44,32,49,2,1,7,97,103,183,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,115,99,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,44,32,116,114,117,101,2,1,156,79,50,19,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,39,198,32,131,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,97,99,99,101,112,116,101,100,44,32,121,101,115,2,1,84,10,42,61,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,65,108,108,44,32,49,2,3,44,203,186,114,68,222,165,20,208,23,68,66,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,104,105,100,101,95,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,44,32,49,2,1,38,41,151,216,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,110,105,99,101,113,117,101,115,116,95,111,112,116,73,110,44,32,49,2,1,24,105,238,35,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,115,104,98,45,99,111,110,115,101,110,116,45,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,6,75,176,81,97,88,245,247,144,135,48,10,203,183,33,125,132,205,146,72,74,250,95,14,162,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,229,129,61,155,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,112,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,75,5,178,120,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,77,101,115,115,97,103,101,68,105,115,109,105,115,115,101,100,44,32,49,2,1,196,80,240,190,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,76,71,95,67,79,79,75,73,69,95,67,79,78,83,69,78,84,44,32,48,2,1,196,80,240,190,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,9,11,180,188,142,16,108,58,7,18,237,66,82,19,18,157,113,105,127,183,146,135,250,36,142,142,91,50,22,166,154,88,69,232,50,136,93,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,2,116,0,119,135,171,120,12,104,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,103,97,116,115,98,121,45,112,108,117,103,105,110,45,103,111,111,103,108,101,45,116,97,103,109,97,110,97,103,101,114,44,32,102,97,108,115,101,2,2,16,108,58,7,18,237,66,82,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,119,116,114,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,2,1,197,137,136,240,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,119,116,114,95,99,111,111,107,105,101,115,95,102,117,110,99,116,105,111,110,97,108,44,32,49,2,1,197,137,136,240,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,109,45,112,101,114,115,111,110,97,108,105,122,97,116,105,111,110,44,32,48,2,1,227,22,214,240,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,109,45,109,97,114,107,101,116,105,110,103,44,32,48,2,1,227,22,214,240,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,109,45,97,110,97,108,121,116,105,99,115,44,32,48,2,1,227,22,214,240,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,90,75,139,154,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,116,99,95,114,101,106,101,99,116,101,100,44,32,49,2,2,148,193,37,43,209,220,192,158,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,95,99,111,111,107,105,101,115,95,118,50,44,32,49,2,5,34,86,174,0,61,5,3,94,101,150,144,158,139,156,230,190,234,173,6,192,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,65,99,99,101,112,116,101,100,67,111,111,107,105,101,67,97,116,101,103,111,114,105,101,115,44,32,49,2,2,165,193,121,59,244,98,200,95,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,111,108,105,99,121,95,97,99,107,110,111,119,108,101,100,103,101,109,101,110,116,44,32,116,114,117,101,2,1,55,217,241,32,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,67,111,111,107,105,101,115,44,32,121,101,115,2,1,25,190,38,134,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,44,32,116,114,117,101,2,1,161,55,12,172,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,44,32,116,114,117,101,2,1,133,169,153,127,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,101,117,99,111,110,115,101,110,116,45,98,121,112,97,115,115,44,32,49,2,2,38,157,113,138,182,131,120,119,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,117,115,97,103,101,44,32,121,101,115,2,1,231,9,115,39,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,100,105,115,109,105,115,115,67,111,111,107,105,101,66,97,110,110,101,114,44,32,116,114,117,101,2,2,8,100,191,43,253,116,130,68,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,115,119,105,116,99,104,67,111,111,107,105,101,115,44,32,49,2,1,253,116,130,68,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,98,67,104,101,99,107,101,100,44,32,116,114,117,101,2,4,31,156,8,109,37,70,6,208,64,254,249,12,196,192,198,119,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,105,110,102,111,67,111,111,107,105,101,85,115,101,115,44,32,116,114,117,101,2,1,48,149,154,145,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,45,100,97,116,97,45,118,50,44,32,48,2,1,8,165,250,45,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,65,67,67,69,80,84,69,68,95,67,79,79,75,73,69,83,44,32,116,114,117,101,2,1,86,18,149,139,2,1,56,115,101,116,45,99,111,111,107,105,101,44,32,69,77,82,45,67,111,111,107,105,101,67,111,110,115,101,110,116,45,65,110,97,108,121,116,105,99,97,108,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,229,206,34,56,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,103,101,109,95,99,111,111,107,105,101,115,95,117,115,97,103,101,95,112,114,111,100,117,99,116,105,111,110,44,32,49,2,1,243,19,219,172,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,108,101,118,101,108,44,32,50,2,1,114,153,21,82,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,116,111,117,116,118,95,99,111,111,107,105,101,115,95,117,115,97,103,101,95,112,114,111,100,117,99,116,105,111,110,44,32,49,2,1,42,200,248,140,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,95,101,118,105,100,111,110,95,115,117,112,112,114,101,115,115,95,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,111,107,105,101,44,32,49,2,1,66,98,194,249,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,69,77,82,45,67,111,111,107,105,101,67,111,110,115,101,110,116,45,65,100,118,101,114,116,105,115,105,110,103,44,32,48,2,1,229,206,34,56,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,67,111,111,107,105,101,115,44,32,116,114,117,101,2,3,7,108,111,71,39,77,108,110,173,61,80,177,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,98,114,45,108,103,112,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,97,103,114,101,101,109,101,110,116,45,118,49,44,32,49,2,1,1,10,201,249,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,95,109,118,44,32,49,2,1,58,29,221,177,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,67,79,79,75,73,69,83,95,78,69,87,65,67,67,69,80,84,69,68,44,32,49,2,1,132,205,106,101,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,101,115,95,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,95,99,108,111,115,101,100,44,32,49,2,1,74,80,70,246,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,98,97,110,110,101,114,45,97,99,99,101,112,116,97,110,99,101,45,115,116,97,116,101,44,32,116,114,117,101,2,1,85,110,233,94,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,115,101,101,110,44,32,49,2,1,244,175,145,246,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,167,112,55,188,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,97,108,108,111,119,101,100,44,32,121,101,115,2,1,4,159,158,6,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,116,114,97,99,107,105,110,103,44,32,48,2,1,68,231,67,180,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,118,97,108,97,109,105,115,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,167,168,215,29,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,118,97,108,97,109,105,115,95,99,111,111,107,105,101,95,109,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,167,168,215,29,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,118,97,108,97,109,105,115,95,99,111,111,107,105,101,95,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,167,168,215,29,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,97,112,112,114,111,118,101,100,99,111,111,107,105,101,115,44,32,110,111,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,150,113,42,126,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,112,115,100,45,103,111,111,103,108,101,45,97,100,115,45,101,110,97,98,108,101,100,44,32,48,2,1,222,166,225,215,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,112,115,100,45,103,116,109,45,97,99,116,105,118,97,116,101,100,44,32,49,2,1,222,166,225,215,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,119,105,115,104,108,105,115,116,45,101,110,97,98,108,101,100,44,32,49,2,1,222,166,225,215,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,73,110,116,101,114,97,99,116,44,32,116,114,117,101,2,1,20,83,229,34,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,98,121,116,101,45,99,111,110,115,101,110,116,45,101,115,115,101,110,116,105,97,108,115,44,32,116,114,117,101,2,1,124,228,57,233,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,98,121,116,101,45,99,111,110,115,101,110,116,45,115,104,111,119,101,100,44,32,116,114,117,101,2,1,124,228,57,233,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,98,121,116,101,45,99,111,110,115,101,110,116,45,115,116,97,116,105,115,116,105,99,115,44,32,102,97,108,115,101,2,1,124,228,57,233,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,98,109,95,97,99,107,110,111,119,108,101,100,103,101,44,32,121,101,115,2,1,6,172,246,73,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,103,101,110,111,118,97,80,114,105,118,97,99,121,79,112,116,105,111,110,115,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,247,76,164,201,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,111,107,44,32,116,114,117,101,2,1,229,161,84,51,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,107,97,108,105,45,99,99,45,97,103,114,101,101,100,44,32,116,114,117,101,2,1,218,240,250,171,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,2,27,125,0,91,202,236,104,122,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,77,97,114,107,101,116,105,110,103,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,2,27,125,0,91,202,236,104,122,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,65,110,97,108,121,116,105,99,97,108,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,2,27,125,0,91,202,236,104,122,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,76,101,118,101,108,44,32,50,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,173,4,250,32,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,65,99,99,101,112,116,101,100,67,111,111,107,105,101,115,44,32,49,2,2,148,186,150,73,174,32,109,165,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,103,99,112,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,246,211,223,25,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,34,155,61,175,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,83,101,101,110,67,111,111,107,105,101,80,111,112,85,112,44,32,121,101,115,2,1,89,155,62,102,2,1,61,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,76,101,118,101,108,44,32,102,108,97,103,109,97,106,111,98,95,97,100,115,95,115,104,111,119,110,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,70,234,21,34,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,18,197,145,223,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,97,99,99,101,112,116,101,100,44,32,49,2,1,49,138,97,98,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,112,114,101,99,109,112,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,190,222,221,40,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,73,115,67,111,111,107,105,101,65,99,99,101,112,116,101,100,44,32,121,101,115,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,45,68,163,213,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,103,97,116,115,98,121,45,103,100,112,114,45,103,111,111,103,108,101,45,116,97,103,109,97,110,97,103,101,114,44,32,116,114,117,101,2,1,189,134,214,185,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,108,101,103,97,108,79,107,44,32,116,114,117,101,2,1,126,233,140,221,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,112,95,99,99,95,115,116,97,116,115,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,8,158,237,157,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,99,112,95,99,99,95,97,100,115,44,32,49,2,1,8,158,237,157,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,44,32,49,2,1,93,95,192,74,2,1,19,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,44,32,49,2,1,83,239,89,104,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,45,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,129,41,241,33,2,1,24,115,101,116,45,99,111,111,107,105,101,44,32,115,116,97,116,105,115,116,105,107,44,32,48,2,1,243,145,59,113,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,105,110,102,111,114,109,101,114,45,99,108,111,115,101,44,32,116,114,117,101,2,1,122,44,161,71,2,1,19,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,44,32,48,2,2,38,136,204,5,147,82,66,155,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,114,101,113,117,105,114,101,100,44,32,49,2,1,243,145,59,113,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,114,111,100,111,45,114,101,109,105,110,100,101,114,45,100,105,115,112,108,97,121,101,100,44,32,49,2,2,145,173,167,228,254,128,171,65,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,103,105,118,101,110,44,32,116,114,117,101,2,1,173,137,184,131,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,114,111,100,111,45,109,111,100,97,108,45,100,105,115,112,108,97,121,101,100,44,32,49,2,2,145,173,167,228,254,128,171,65,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,73,78,71,95,71,80,84,44,32,48,2,1,166,254,245,32,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,73,78,71,95,71,80,80,44,32,48,2,1,166,254,245,32,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,112,114,101,102,44,32,49,2,1,190,147,202,79,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,115,104,98,45,99,111,110,115,101,110,116,45,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,135,48,10,203,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,116,101,114,109,111,115,45,97,99,101,105,116,111,115,44,32,111,107,2,1,114,12,14,208,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,117,105,45,116,110,99,45,97,103,114,101,101,100,44,32,116,114,117,101,2,1,149,143,61,160,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,44,32,49,2,73,1,152,70,190,1,164,77,171,4,76,154,187,6,255,22,80,7,213,15,166,9,245,117,74,11,46,180,26,14,5,163,64,22,123,198,164,24,17,175,249,24,250,132,108,27,19,56,203,27,121,172,191,29,20,181,37,32,14,68,180,36,224,64,191,44,189,108,132,46,220,46,237,54,202,7,132,57,239,54,45,63,0,179,114,63,244,62,37,67,173,244,231,73,138,185,227,87,36,202,171,93,9,6,45,94,48,228,128,117,10,54,242,130,16,217,253,134,212,2,243,135,62,192,43,136,85,31,17,139,198,232,53,144,75,60,245,146,40,18,85,147,233,13,217,148,184,62,23,148,184,62,23,148,195,22,181,149,81,224,119,155,65,247,65,159,157,202,24,162,223,147,244,165,45,180,176,167,54,252,120,167,115,179,185,168,235,46,159,169,155,217,135,170,17,48,140,170,127,196,215,176,17,129,17,178,66,61,219,179,69,33,213,180,128,109,211,185,206,182,120,189,105,11,217,196,109,127,167,202,171,67,251,206,58,192,196,207,21,211,22,209,11,54,203,215,222,121,231,215,228,135,89,219,106,117,173,220,77,184,103,220,166,218,58,222,166,225,215,232,82,204,55,234,215,51,217,241,16,155,184,253,168,192,118,254,1,178,64,254,204,241,151,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,98,118,107,99,111,111,107,105,101,44,32,116,114,117,101,2,1,118,199,67,250,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,2,137,91,100,178,228,177,163,230,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,45,118,51,44,32,49,2,1,157,32,130,118,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,44,32,116,114,117,101,2,2,7,239,177,238,186,166,62,102,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,97,99,99,101,112,116,101,100,44,32,121,101,115,2,1,255,161,88,82,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,97,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,85,50,53,54,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,67,77,95,66,65,78,78,69,82,44,32,102,97,108,115,101,2,1,93,44,123,254,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,65,99,99,101,115,115,44,32,49,2,1,84,122,254,109,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,104,105,102,101,95,101,117,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,2,1,143,125,115,249,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,97,99,99,101,112,116,101,100,2,1,142,200,96,59,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,109,105,115,115,105,111,110,95,109,97,114,107,101,116,105,110,103,95,99,111,111,107,105,101,115,44,32,48,2,1,206,58,219,188,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,109,105,115,115,105,111,110,95,115,116,97,116,105,115,116,105,99,95,99,111,111,107,105,101,115,44,32,48,2,1,206,58,219,188,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,109,105,115,115,105,111,110,95,102,117,110,107,116,105,111,110,97,108,95,99,111,111,107,105,101,115,44,32,49,2,1,206,58,219,188,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,44,32,49,2,1,206,58,219,188,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,197,208,123,68,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,44,32,100,101,110,121,2,1,100,187,227,180,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,101,112,111,108,101,95,99,111,111,107,105,101,115,95,115,101,116,116,105,110,103,115,44,32,116,114,117,101,2,1,6,203,100,215,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,100,111,112,116,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,148,196,25,199,2,1,57,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,45,115,116,97,116,101,109,101,110,116,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,217,145,9,58,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,108,111,99,97,108,101,115,44,32,116,114,117,101,2,1,200,175,57,100,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,111,111,101,95,99,111,111,107,105,101,95,112,111,108,105,99,121,95,97,99,99,101,112,116,101,100,44,32,110,111,2,1,36,219,99,49,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,95,99,111,111,107,105,101,44,32,49,2,3,62,22,92,71,86,191,224,103,153,22,37,234,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,117,115,95,110,101,119,44,32,49,2,11,6,193,120,83,17,198,123,130,43,117,162,13,60,0,116,199,74,88,252,224,85,78,24,17,85,170,58,205,145,38,175,123,166,60,122,117,171,43,67,30,255,178,75,200,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,95,97,99,99,101,112,116,67,111,111,107,105,101,115,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,192,8,209,14,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,95,114,101,105,102,102,45,99,111,110,115,101,110,116,45,99,111,111,107,105,101,44,32,121,101,115,2,1,234,227,170,249,2,1,21,115,101,116,45,99,111,111,107,105,101,44,32,115,110,99,45,99,112,44,32,49,2,1,125,82,98,52,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,178,39,125,91,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,40,116,127,165,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,114,101,113,117,105,114,101,100,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,190,246,102,103,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,105,115,82,101,97,100,67,111,111,107,105,101,80,111,108,105,99,121,68,78,84,65,97,44,32,116,114,117,101,2,2,185,59,18,131,228,125,216,129,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,67,111,111,107,105,101,115,44,32,116,114,117,101,2,4,1,209,59,140,98,208,150,221,101,24,8,62,244,128,28,77,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,109,117,98,105,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,97,108,108,111,119,2,1,148,184,120,215,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,105,115,82,101,97,100,67,111,111,107,105,101,80,111,108,105,99,121,68,78,84,44,32,89,101,115,2,2,185,59,18,131,228,125,216,129,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,101,100,44,32,49,2,1,25,100,151,84,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,101,100,44,32,102,97,108,115,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,7,2,135,69,246,30,47,20,160,39,221,234,238,113,59,198,21,167,236,182,246,186,11,82,193,234,35,208,83,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,85,115,101,114,67,111,111,107,105,101,76,101,118,101,108,44,32,49,2,4,15,120,72,239,137,78,187,228,175,46,254,30,215,218,170,248,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,115,97,116,95,116,114,97,99,107,44,32,102,97,108,115,101,2,1,37,175,73,98,2,1,19,115,101,116,45,99,111,111,107,105,101,44,32,82,111,100,111,44,32,49,2,1,57,46,255,147,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,111,110,44,32,49,2,1,57,46,255,147,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,95,99,111,111,107,105,101,44,32,102,97,108,115,101,2,1,129,34,102,32,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,51,76,77,45,67,111,111,107,105,101,44,32,102,97,108,115,101,2,1,28,241,11,152,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,105,95,115,99,95,97,44,32,102,97,108,115,101,2,1,130,215,55,202,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,105,95,99,109,95,97,44,32,102,97,108,115,101,2,1,130,215,55,202,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,105,95,99,95,97,44,32,116,114,117,101,2,1,130,215,55,202,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,109,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,162,67,88,73,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,102,117,110,99,116,105,111,110,97,108,44,32,116,114,117,101,2,1,162,67,88,73,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,45,112,114,101,102,101,114,101,110,99,101,115,44,32,102,97,108,115,101,2,1,162,67,88,73,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,95,95,99,102,95,103,100,112,114,95,97,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,236,129,100,236,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,51,116,45,99,111,111,107,105,101,115,45,101,115,115,101,110,116,105,97,108,44,32,49,2,1,67,215,11,55,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,51,116,45,99,111,111,107,105,101,115,45,102,117,110,99,116,105,111,110,97,108,44,32,49,2,1,67,215,11,55,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,51,116,45,99,111,111,107,105,101,115,45,112,101,114,102,111,114,109,97,110,99,101,44,32,48,2,1,67,215,11,55,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,51,116,45,99,111,111,107,105,101,115,45,115,111,99,105,97,108,44,32,48,2,1,67,215,11,55,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,95,99,111,111,107,105,101,115,95,109,97,114,107,101,116,105,110,103,44,32,48,2,1,121,61,154,225,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,95,99,111,111,107,105,101,115,95,116,114,97,99,107,105,110,103,44,32,48,2,1,121,61,154,225,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,114,111,109,112,116,95,100,105,115,109,105,115,115,101,100,44,32,49,2,1,121,61,154,225,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,101,110,97,98,108,101,100,44,32,49,2,1,121,61,154,225,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,65,170,86,74,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,97,110,97,108,121,116,105,99,115,44,32,48,2,1,65,170,86,74,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,99,45,115,101,116,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,7,253,249,174,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,67,111,111,107,105,101,115,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,44,37,196,127,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,114,103,112,45,103,100,112,114,45,112,111,108,105,99,121,44,32,49,2,1,255,242,15,158,2,1,55,115,101,116,45,99,111,111,107,105,101,44,32,106,116,45,106,111,98,115,101,101,107,101,114,45,103,100,112,114,45,98,97,110,110,101,114,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,198,123,130,116,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,45,97,110,97,108,121,116,105,99,115,44,32,110,111,2,1,24,231,223,95,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,45,109,97,114,107,101,116,105,110,103,44,32,110,111,2,1,24,231,223,95,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,119,105,116,104,105,110,103,115,95,99,111,111,107,105,101,99,111,110,115,101,110,116,95,100,105,115,109,105,115,115,101,100,44,32,49,2,1,23,70,109,85,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,97,100,118,101,114,116,105,115,105,110,103,44,32,102,97,108,115,101,2,1,23,70,109,85,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,105,115,116,105,99,115,44,32,102,97,108,115,101,2,1,23,70,109,85,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,105,115,116,105,99,115,44,32,32,110,111,2,1,197,140,186,73,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,101,115,115,101,110,116,105,97,108,44,32,121,101,115,2,1,197,140,186,73,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,114,101,102,101,114,101,110,99,101,44,32,49,2,1,172,163,241,162,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,67,80,95,69,83,83,69,78,84,73,65,76,44,32,49,2,1,5,205,206,190,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,67,80,95,80,82,69,70,69,82,69,78,67,69,83,44,32,49,2,1,5,205,206,190,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,97,109,99,111,111,107,105,101,95,97,108,108,111,119,101,100,44,32,49,2,10,4,98,167,39,31,64,254,16,59,89,86,239,75,173,236,129,78,238,102,14,96,124,233,164,111,59,243,125,131,142,112,90,158,186,231,66,229,222,127,24,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,112,99,95,97,110,97,108,105,116,105,99,97,95,98,105,122,107,97,105,97,44,32,102,97,108,115,101,2,1,122,89,161,241,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,112,99,95,112,114,101,102,101,114,101,110,99,105,97,115,95,98,105,122,107,97,105,97,44,32,116,114,117,101,2,1,122,89,161,241,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,112,99,95,116,101,99,110,105,99,97,115,95,98,105,122,107,97,105,97,44,32,116,114,117,101,2,1,122,89,161,241,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,103,100,114,112,95,112,111,112,117,112,95,115,104,111,119,101,100,44,32,49,2,1,22,180,109,126,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,45,116,101,99,104,110,105,99,97,108,44,32,121,101,115,2,1,24,231,223,95,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,116,114,97,99,107,105,110,103,95,99,111,111,107,105,101,44,32,49,2,1,36,214,194,159,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,44,32,49,2,1,232,209,219,157,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,103,114,111,117,112,95,116,101,99,104,110,105,99,97,108,44,32,49,2,1,232,209,219,157,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,95,114,101,110,101,119,49,48,44,32,49,2,1,232,209,219,157,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,112,99,50,51,52,57,55,56,49,50,50,51,50,49,50,51,52,44,32,49,2,1,23,179,122,52,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,99,107,95,112,114,101,102,95,97,108,108,44,32,49,2,1,112,7,104,90,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,79,78,67,79,83,85,82,67,79,79,75,44,32,50,2,1,35,68,223,98,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,193,131,199,180,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,104,97,115,83,101,101,110,67,111,111,107,105,101,68,105,115,99,108,111,115,117,114,101,44,32,116,114,117,101,2,1,48,201,164,193,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,82,89,95,67,79,79,75,73,69,95,67,79,78,83,69,78,84,44,32,116,114,117,101,2,1,97,237,102,250,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,67,79,79,75,73,69,95,67,79,78,83,69,78,84,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,4,4,240,99,92,41,53,115,1,65,206,136,151,69,64,139,144,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,67,79,79,75,73,69,95,83,84,65,84,73,67,44,32,102,97,108,115,101,2,4,4,240,99,92,41,53,115,1,65,206,136,151,69,64,139,144,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,67,79,79,75,73,69,95,77,65,82,75,69,84,73,78,71,44,32,102,97,108,115,101,2,4,4,240,99,92,41,53,115,1,65,206,136,151,69,64,139,144,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,254,43,107,187,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,118,105,100,101,111,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,254,43,107,187,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,109,102,111,114,116,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,254,43,107,187,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,2,2,80,185,243,238,94,78,62,84,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,44,32,48,2,1,92,171,116,230,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,102,102,95,99,111,111,107,105,101,95,110,111,116,105,99,101,44,32,49,2,1,116,34,213,75,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,114,105,115,45,99,111,111,107,105,101,45,109,115,103,44,32,49,2,1,19,216,35,77,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,95,103,111,111,103,108,101,95,95,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,128,157,1,50,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,95,102,97,99,101,98,111,111,107,95,95,115,111,99,105,97,108,44,32,102,97,108,115,101,2,1,128,157,1,50,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,95,100,101,112,111,112,95,95,102,117,110,99,116,105,111,110,97,108,44,32,116,114,117,101,2,1,128,157,1,50,2,1,42,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,31,155,145,230,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,66,97,110,110,101,114,65,99,99,101,112,116,101,100,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,122,15,54,177,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,77,115,103,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,100,2,207,108,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,116,114,117,101,2,5,88,245,150,88,116,167,110,237,158,30,28,171,219,55,84,191,229,65,42,76,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,100,101,110,105,101,100,2,1,170,170,52,13,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,67,79,79,75,73,69,67,79,78,83,69,78,84,44,32,102,97,108,115,101,2,1,109,107,117,173,2,1,54,115,101,116,45,99,111,111,107,105,101,44,32,116,105,98,98,101,114,95,99,99,95,101,115,115,101,110,116,105,97,108,44,32,97,112,112,114,111,118,101,100,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,173,226,35,218,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,108,111,99,97,108,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,227,215,117,181,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,114,101,113,117,105,114,101,100,44,32,49,2,1,14,105,173,185,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,98,122,95,115,101,111,95,99,104,111,111,115,101,110,44,32,49,2,1,111,199,195,231,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,149,53,170,250,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,107,44,32,49,44,32,32,44,32,114,101,108,111,97,100,44,32,49,2,1,61,230,124,9,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,65,82,69,95,68,83,71,86,79,95,80,82,69,70,69,82,69,78,67,69,83,95,83,85,66,77,73,84,84,69,68,44,32,116,114,117,101,2,1,220,11,135,142,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,100,115,103,118,111,95,99,111,110,115,101,110,116,44,32,49,2,1,234,53,123,9,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,101,102,105,108,101,45,99,111,111,107,105,101,110,97,109,101,45,50,56,44,32,49,2,1,150,209,199,125,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,101,102,105,108,101,45,99,111,111,107,105,101,110,97,109,101,45,55,52,44,32,49,2,1,200,229,74,99,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,111,108,105,99,121,95,99,108,111,115,101,100,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,147,34,247,103,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,103,118,67,111,111,107,105,101,67,111,110,115,101,110,116,65,99,99,101,112,116,44,32,49,44,32,114,101,108,111,97,100,44,32,44,49,2,1,154,207,171,125,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,69,115,115,101,110,116,105,97,108,44,32,49,2,1,55,41,210,2,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,98,97,121,112,111,108,95,98,97,110,110,101,114,44,32,116,114,117,101,2,1,191,184,223,189,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,110,97,103,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,146,103,190,240,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,98,97,121,112,111,108,95,102,117,110,99,116,105,111,110,97,108,44,32,116,114,117,101,2,1,191,184,223,189,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,79,75,2,1,166,60,238,192,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,67,111,111,107,105,101,67,111,110,115,101,110,116,86,50,44,32,89,69,83,2,1,187,218,225,21,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,66,77,95,65,100,118,101,114,116,105,115,105,110,103,44,32,102,97,108,115,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,16,10,78,145,86,15,235,67,169,19,172,79,15,24,155,236,108,26,173,135,161,46,117,89,18,91,148,181,182,112,0,40,162,125,40,205,2,132,81,214,36,135,220,174,196,144,159,197,195,147,237,107,127,147,237,107,127,152,202,49,87,195,255,151,31,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,66,77,95,85,115,101,114,95,69,120,112,101,114,105,101,110,99,101,44,32,116,114,117,101,2,16,10,78,145,86,15,235,67,169,19,172,79,15,24,155,236,108,26,173,135,161,46,117,89,18,91,148,181,182,112,0,40,162,125,40,205,2,132,81,214,36,135,220,174,196,144,159,197,195,147,237,107,127,147,237,107,127,152,202,49,87,195,255,151,31,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,66,77,95,65,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,16,10,78,145,86,15,235,67,169,19,172,79,15,24,155,236,108,26,173,135,161,46,117,89,18,91,148,181,182,112,0,40,162,125,40,205,2,132,81,214,36,135,220,174,196,144,159,197,195,147,237,107,127,147,237,107,127,152,202,49,87,195,255,151,31,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,68,109,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,20,1,160,37,146,7,164,170,145,23,216,107,42,25,192,165,216,33,10,112,6,36,251,112,100,40,255,211,106,51,58,96,67,51,193,187,34,59,66,145,48,78,170,72,182,93,24,17,210,95,177,160,47,102,13,140,70,152,41,39,12,185,245,43,208,200,191,255,213,237,31,183,188,252,171,103,59,252,171,103,59,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,68,109,67,111,111,107,105,101,115,77,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,20,1,160,37,146,7,164,170,145,23,216,107,42,25,192,165,216,33,10,112,6,36,251,112,100,40,255,211,106,51,58,96,67,51,193,187,34,59,66,145,48,78,170,72,182,93,24,17,210,95,177,160,47,102,13,140,70,152,41,39,12,185,245,43,208,200,191,255,213,237,31,183,188,252,171,103,59,252,171,103,59,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,68,109,67,111,111,107,105,101,115,65,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,20,1,160,37,146,7,164,170,145,23,216,107,42,25,192,165,216,33,10,112,6,36,251,112,100,40,255,211,106,51,58,96,67,51,193,187,34,59,66,145,48,78,170,72,182,93,24,17,210,95,177,160,47,102,13,140,70,152,41,39,12,185,245,43,208,200,191,255,213,237,31,183,188,252,171,103,59,252,171,103,59,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,116,121,112,101,115,44,32,79,75,2,1,92,81,18,11,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,95,115,101,116,116,105,110,103,44,32,79,75,44,32,44,32,114,101,108,111,97,100,44,32,49,2,2,5,233,104,211,51,123,194,146,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,97,99,99,101,112,116,115,95,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,178,215,136,169,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,97,103,114,101,101,100,44,32,52,2,1,169,183,70,201,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,114,97,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,49,49,45,48,53,45,50,48,50,50,44,32,116,114,117,101,2,1,128,47,248,183,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,77,97,116,111,109,111,44,32,116,114,117,101,2,1,172,87,11,231,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,117,115,101,114,95,97,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,34,136,112,82,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,85,66,73,95,80,82,73,86,65,67,89,95,80,79,76,73,67,89,95,65,67,67,69,80,84,69,68,44,32,116,114,117,101,2,1,92,54,93,177,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,85,66,73,95,80,82,73,86,65,67,89,95,80,79,76,73,67,89,95,86,73,69,87,69,68,44,32,116,114,117,101,2,1,92,54,93,177,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,85,66,73,95,80,82,73,86,65,67,89,95,86,73,68,95,79,80,84,79,85,84,44,32,102,97,108,115,101,2,1,92,54,93,177,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,85,66,73,95,80,82,73,86,65,67,89,95,86,73,68,69,79,95,79,80,84,79,85,84,44,32,102,97,108,115,101,2,1,92,54,93,177,2,1,60,115,101,116,45,99,111,111,107,105,101,44,32,66,82,73,84,73,83,72,65,73,82,87,65,89,83,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,77,79,68,65,76,95,86,73,69,87,69,68,44,32,49,2,2,105,177,75,109,194,197,251,35,2,1,60,115,101,116,45,99,111,111,107,105,101,44,32,66,82,73,84,73,83,72,65,73,82,87,65,89,83,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,77,79,68,65,76,95,76,79,65,68,69,68,44,32,49,2,2,105,177,75,109,194,197,251,35,2,1,61,115,101,116,45,99,111,111,107,105,101,44,32,66,82,73,84,73,83,72,65,73,82,87,65,89,83,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,66,65,78,78,69,82,95,76,79,65,68,69,68,44,32,49,2,2,105,177,75,109,194,197,251,35,2,1,61,115,101,116,45,99,111,111,107,105,101,44,32,66,82,73,84,73,83,72,65,73,82,87,65,89,83,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,66,65,78,78,69,82,95,86,73,69,87,69,68,44,32,49,2,2,105,177,75,109,194,197,251,35,2,1,58,115,101,116,45,99,111,111,107,105,101,44,32,66,82,73,84,73,83,72,65,73,82,87,65,89,83,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,70,117,110,99,116,105,111,110,97,108,44,32,49,2,2,105,177,75,109,194,197,251,35,2,1,57,115,101,116,45,99,111,111,107,105,101,44,32,66,82,73,84,73,83,72,65,73,82,87,65,89,83,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,77,97,114,107,101,116,105,110,103,44,32,48,2,2,105,177,75,109,194,197,251,35,2,1,57,115,101,116,45,99,111,111,107,105,101,44,32,66,82,73,84,73,83,72,65,73,82,87,65,89,83,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,65,110,97,108,121,116,105,99,115,44,32,48,2,2,105,177,75,109,194,197,251,35,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,65,82,69,95,70,85,78,67,84,73,79,78,65,76,95,67,79,79,75,73,69,83,95,65,67,67,69,80,84,69,68,44,32,116,114,117,101,2,2,26,234,14,247,45,28,152,110,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,65,82,69,95,77,65,82,75,69,84,73,78,71,95,67,79,79,75,73,69,83,95,65,67,67,69,80,84,69,68,44,32,116,114,117,101,2,2,26,234,14,247,45,28,152,110,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,65,82,69,95,82,69,81,85,73,82,69,68,95,67,79,79,75,73,69,83,95,65,67,67,69,80,84,69,68,44,32,116,114,117,101,2,2,26,234,14,247,45,28,152,110,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,72,65,83,95,67,79,79,75,73,69,83,95,70,79,82,77,95,83,72,79,87,69,68,44,32,116,114,117,101,2,1,26,234,14,247,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,95,102,117,110,99,116,105,111,110,97,108,44,32,121,101,115,2,1,58,92,30,33,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,95,109,97,114,107,101,116,105,110,103,44,32,110,111,2,1,58,92,30,33,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,95,116,104,101,95,99,111,111,107,105,101,44,32,121,101,115,2,1,58,92,30,33,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,118,105,115,105,116,101,100,44,32,116,114,117,101,2,1,58,92,30,33,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,100,114,99,111,111,107,105,101,44,32,116,114,117,101,2,1,58,92,30,33,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,119,101,100,95,99,111,111,107,105,101,95,105,110,102,111,44,32,49,2,1,111,21,168,199,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,111,30,145,69,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,77,101,115,115,97,103,101,72,105,100,101,44,32,116,114,117,101,2,1,126,203,225,204,2,1,17,115,101,116,45,99,111,111,107,105,101,44,32,115,113,44,32,48,2,1,148,186,25,221,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,110,111,116,105,99,101,95,112,114,101,102,101,114,101,110,99,101,115,44,32,50,2,36,0,0,172,144,3,127,238,110,6,10,232,162,7,236,55,34,16,68,96,128,20,210,155,179,21,127,55,96,29,248,224,186,34,164,217,85,38,80,33,63,73,178,240,77,83,254,0,96,87,200,247,70,101,34,217,68,127,109,233,244,129,25,115,121,141,39,104,22,143,157,226,151,144,244,229,15,150,133,192,136,152,59,11,173,154,197,97,224,156,18,39,182,159,154,195,195,162,127,244,0,168,98,136,192,171,26,82,178,173,40,170,137,173,206,31,175,184,116,197,190,185,101,114,144,196,141,197,203,202,76,187,112,202,254,247,233,229,163,198,99,250,251,160,174,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,97,108,108,44,32,49,2,1,56,36,131,109,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,101,98,95,99,111,111,107,105,101,95,97,103,114,101,101,95,48,49,50,52,44,32,49,2,1,209,104,148,22,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,80,111,108,105,99,121,50,48,50,49,49,49,48,49,44,32,49,2,1,239,224,130,166,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,115,99,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,148,198,46,216,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,111,108,105,99,121,95,97,103,114,101,101,109,101,110,116,44,32,116,114,117,101,2,3,70,22,108,92,106,186,75,59,122,239,109,222,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,109,97,114,107,101,116,105,110,103,95,99,111,111,107,105,101,95,97,107,107,111,111,114,100,44,32,48,2,1,130,16,89,136,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,115,105,116,101,95,99,111,111,107,105,101,95,97,107,107,111,111,114,100,44,32,49,2,1,130,16,89,136,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,99,99,112,97,45,110,111,116,105,99,101,45,118,105,101,119,101,100,45,48,50,44,32,116,114,117,101,2,1,72,3,129,234,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,121,101,115,2,1,243,128,116,31,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,4,75,60,185,220,103,6,15,161,107,252,187,28,253,246,48,195,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,95,99,111,111,107,105,101,115,44,32,48,2,3,3,222,30,178,89,107,236,82,104,151,163,7,2,1,44,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,95,97,99,99,101,112,116,101,100,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,3,3,222,30,178,89,107,236,82,104,151,163,7,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,116,114,97,99,107,105,110,103,95,99,111,111,107,105,101,115,44,32,48,2,3,3,222,30,178,89,107,236,82,104,151,163,7,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,97,100,118,101,114,116,105,115,101,109,101,110,116,45,97,103,101,45,115,104,111,119,45,97,108,99,111,104,111,108,44,32,102,97,108,115,101,2,3,3,222,30,178,89,107,236,82,104,151,163,7,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,97,100,118,101,114,116,105,115,101,109,101,110,116,45,97,103,101,45,115,104,111,119,45,103,97,109,98,108,101,44,32,102,97,108,115,101,2,3,3,222,30,178,89,107,236,82,104,151,163,7,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,105,98,101,46,97,99,99,101,112,116,101,100,67,111,111,107,105,101,44,32,116,114,117,101,2,1,222,132,201,144,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,80,111,108,105,99,121,44,32,116,114,117,101,2,1,108,166,242,75,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,158,30,28,171,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,67,108,111,115,101,100,44,32,116,114,117,101,2,1,222,175,3,107,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,80,114,105,118,97,99,121,44,32,102,97,108,115,101,2,1,26,208,215,68,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,95,116,118,115,80,114,105,118,97,99,121,44,32,116,114,117,101,2,1,46,75,201,234,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,101,112,67,111,111,107,105,101,67,111,110,115,101,110,116,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,19,0,32,150,84,13,140,145,130,33,147,195,54,46,27,39,204,57,113,138,205,62,30,115,115,94,142,11,23,105,37,27,134,107,23,3,108,155,97,30,170,178,233,194,131,195,18,65,21,212,207,66,193,234,205,230,232,234,241,160,145,235,97,236,31,236,37,128,191,240,237,90,77,253,97,77,202,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,114,111,121,97,108,111,97,107,84,101,114,109,115,67,111,111,107,105,101,44,32,49,2,1,31,7,18,162,2,1,63,115,101,116,45,99,111,111,107,105,101,44,32,105,115,95,97,108,108,111,119,101,100,95,99,108,105,101,110,116,95,116,114,97,107,105,110,103,95,110,105,101,122,98,101,100,110,101,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,2,95,247,107,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,105,110,116,114,111,44,32,116,114,117,101,2,1,158,97,184,166,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,83,101,101,110,67,111,111,107,105,101,66,97,114,44,32,116,114,117,101,2,1,148,201,137,108,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,107,101,118,105,110,45,117,115,101,114,45,104,97,115,45,97,99,99,101,112,116,101,100,45,97,100,45,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,28,15,2,182,2,1,60,115,101,116,45,99,111,111,107,105,101,44,32,107,101,118,105,110,45,117,115,101,114,45,104,97,115,45,97,99,99,101,112,116,101,100,45,97,110,97,108,121,116,105,99,115,45,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,28,15,2,182,2,1,56,115,101,116,45,99,111,111,107,105,101,44,32,107,101,118,105,110,45,117,115,101,114,45,104,97,115,45,105,110,116,101,114,97,99,116,101,100,45,119,105,116,104,45,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,28,15,2,182,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,99,112,97,99,99,112,116,101,100,44,32,116,114,117,101,2,1,75,5,178,120,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,65,108,108,111,119,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,148,201,137,108,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,51,2,1,50,57,69,248,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,111,112,116,79,117,116,115,84,111,117,99,104,101,100,44,32,116,114,117,101,2,1,14,221,41,82,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,111,112,116,79,117,116,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,14,221,41,82,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,0,98,117,92,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,100,105,115,109,105,115,115,97,108,44,32,116,114,117,101,2,1,253,242,131,140,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,67,111,111,107,105,101,65,99,99,101,112,116,101,100,44,32,48,2,1,167,16,219,24,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,65,99,99,101,112,116,101,100,44,32,48,2,1,167,16,219,24,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,117,101,118,50,46,103,103,44,32,116,114,117,101,2,1,113,91,244,95,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,99,108,111,115,101,78,111,116,105,102,105,99,97,116,105,111,110,65,98,111,117,116,67,111,111,107,105,101,44,32,116,114,117,101,2,1,183,15,255,5,2,1,25,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,95,99,111,111,107,105,101,44,32,49,2,2,9,247,9,189,148,180,167,208,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,45,112,111,108,105,99,121,44,32,116,114,117,101,2,1,7,31,179,41,2,1,41,115,101,116,45,99,111,111,107,105,101,44,32,102,105,103,115,104,97,114,101,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,93,0,209,9,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,98,105,116,115,111,95,99,99,44,32,49,2,1,126,23,50,87,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,101,103,95,97,115,107,101,100,44,32,49,2,1,229,59,80,214,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,65,99,99,101,112,116,75,101,107,115,105,116,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,2,128,39,131,236,253,139,127,153,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,112,114,101,102,44,32,116,114,117,101,2,1,70,34,52,148,2,1,47,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,110,97,108,121,116,99,115,44,32,102,97,108,115,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,58,207,9,133,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,44,32,116,114,117,101,2,1,58,207,9,133,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,100,104,108,45,119,101,98,97,112,112,45,116,114,97,99,107,44,32,97,108,108,111,119,101,100,2,2,67,203,105,119,109,234,120,8,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,117,115,44,32,49,2,1,74,31,220,129,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,80,86,72,95,67,79,79,75,73,69,83,95,71,68,80,82,44,32,65,99,99,101,112,116,2,27,4,211,70,19,23,39,63,60,36,44,150,204,40,160,57,139,49,214,49,117,51,239,231,92,52,22,9,246,57,34,126,39,76,242,194,162,77,65,140,87,81,221,227,125,94,89,105,107,101,63,62,102,130,25,28,205,136,32,52,38,156,219,214,38,158,34,82,4,188,230,247,171,189,13,198,197,199,154,133,188,211,32,26,173,213,140,152,2,219,234,26,122,220,244,135,81,236,44,189,59,241,147,125,138,251,11,116,119,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,80,86,72,95,67,79,79,75,73,69,83,95,71,68,80,82,95,83,79,67,73,65,76,77,69,68,73,65,44,32,82,101,106,101,99,116,2,27,4,211,70,19,23,39,63,60,36,44,150,204,40,160,57,139,49,214,49,117,51,239,231,92,52,22,9,246,57,34,126,39,76,242,194,162,77,65,140,87,81,221,227,125,94,89,105,107,101,63,62,102,130,25,28,205,136,32,52,38,156,219,214,38,158,34,82,4,188,230,247,171,189,13,198,197,199,154,133,188,211,32,26,173,213,140,152,2,219,234,26,122,220,244,135,81,236,44,189,59,241,147,125,138,251,11,116,119,2,1,46,115,101,116,45,99,111,111,107,105,101,44,32,80,86,72,95,67,79,79,75,73,69,83,95,71,68,80,82,95,65,78,65,76,89,84,73,67,83,44,32,82,101,106,101,99,116,2,27,4,211,70,19,23,39,63,60,36,44,150,204,40,160,57,139,49,214,49,117,51,239,231,92,52,22,9,246,57,34,126,39,76,242,194,162,77,65,140,87,81,221,227,125,94,89,105,107,101,63,62,102,130,25,28,205,136,32,52,38,156,219,214,38,158,34,82,4,188,230,247,171,189,13,198,197,199,154,133,188,211,32,26,173,213,140,152,2,219,234,26,122,220,244,135,81,236,44,189,59,241,147,125,138,251,11,116,119,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,2,1,150,243,155,240,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,111,102,100,98,95,119,101,114,98,117,110,103,44,32,89,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,27,114,24,95,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,2,1,169,123,186,237,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,83,84,65,103,114,101,101,109,101,110,116,44,32,49,2,1,73,159,198,35,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,116,99,58,100,105,115,109,105,115,115,101,120,105,116,105,110,116,101,110,116,112,111,112,117,112,44,32,116,114,117,101,2,1,150,195,125,111,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,102,117,110,99,116,105,111,110,97,108,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,150,227,143,134,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,116,101,110,116,80,101,114,115,111,110,97,108,105,115,97,116,105,111,110,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,150,227,143,134,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,109,97,114,107,101,116,105,110,103,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,150,227,143,134,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,115,116,97,116,105,115,116,105,99,97,108,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,150,227,143,134,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,115,44,32,101,115,115,101,110,116,105,97,108,2,1,166,200,62,18,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,118,105,101,119,101,100,95,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,121,101,115,44,32,44,32,114,101,108,111,97,100,44,32,49,2,83,0,46,200,168,0,63,255,95,0,192,4,165,1,162,170,250,15,126,94,46,15,222,186,92,16,34,215,172,17,115,97,220,25,8,110,161,26,250,204,198,30,92,83,250,32,253,76,236,45,188,160,248,48,151,169,194,50,9,217,17,56,84,18,172,56,230,234,135,57,7,145,215,61,84,76,208,70,165,121,209,77,41,136,15,77,104,62,87,83,34,73,92,89,227,194,92,91,224,136,101,93,68,151,71,94,69,35,238,95,144,100,115,98,148,10,200,99,189,99,140,101,149,178,206,102,103,140,131,113,227,127,72,114,108,238,122,117,24,103,153,117,238,225,194,122,44,113,49,122,160,33,170,122,252,80,217,124,108,218,228,127,44,218,157,131,54,114,250,133,14,84,11,133,98,78,43,133,164,171,61,135,11,68,42,136,205,163,11,141,174,139,13,141,207,204,85,143,237,23,210,147,208,219,158,150,140,120,13,151,190,29,220,152,198,196,31,153,177,59,195,157,36,206,194,157,87,80,13,160,39,209,234,165,41,3,105,166,143,177,193,169,116,171,99,171,11,45,125,172,34,119,2,175,75,84,73,177,222,182,113,185,240,239,23,186,89,60,187,186,140,97,66,193,195,61,66,195,217,59,188,196,76,0,243,198,209,13,149,223,160,209,54,226,79,21,68,227,3,160,20,229,139,185,151,229,236,182,236,233,15,99,69,235,188,53,139,243,100,95,79,252,39,40,124,254,69,220,108,255,55,30,198,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,102,117,110,99,116,105,111,110,97,108,44,32,121,101,115,2,13,0,46,200,168,48,151,169,194,89,227,194,92,93,68,151,71,95,144,100,115,98,148,10,200,117,238,225,194,133,98,78,43,153,177,59,195,157,36,206,194,172,34,119,2,193,195,61,66,233,15,99,69,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,110,101,99,101,115,115,97,114,121,44,32,121,101,115,2,19,0,46,200,168,48,151,169,194,61,84,76,208,83,34,73,92,89,227,194,92,93,68,151,71,95,144,100,115,98,148,10,200,117,238,225,194,133,98,78,43,135,11,68,42,153,177,59,195,157,36,206,194,157,36,206,194,171,11,45,125,172,34,119,2,177,222,182,113,193,195,61,66,233,15,99,69,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,110,111,110,45,110,101,99,101,115,115,97,114,121,44,32,110,111,2,2,135,11,68,42,171,11,45,125,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,97,100,118,101,114,116,105,115,101,109,101,110,116,44,32,110,111,2,7,83,34,73,92,98,148,10,200,153,177,59,195,157,36,206,194,172,34,119,2,177,222,182,113,195,217,59,188,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,97,100,118,101,114,116,105,115,101,109,101,110,116,44,32,121,101,115,2,1,233,15,99,69,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,97,110,97,108,121,116,105,99,115,44,32,110,111,2,6,98,148,10,200,153,177,59,195,157,36,206,194,172,34,119,2,177,222,182,113,233,15,99,69,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,112,101,114,102,111,114,109,97,110,99,101,44,32,110,111,2,6,98,148,10,200,153,177,59,195,157,36,206,194,172,34,119,2,177,222,182,113,233,15,99,69,2,1,51,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,109,97,114,107,107,105,110,111,105,110,116,105,44,32,110,111,2,1,61,84,76,208,2,1,50,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,116,105,108,97,115,116,111,105,110,116,105,44,32,110,111,2,1,61,84,76,208,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,115,104,58,99,111,111,107,105,101,115,45,111,116,104,101,114,44,32,102,97,108,115,101,2,1,250,185,41,202,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,115,104,58,99,111,111,107,105,101,115,45,115,101,101,110,44,32,116,114,117,101,2,1,250,185,41,202,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,115,104,58,99,111,111,107,105,101,115,45,115,111,99,105,97,108,44,32,116,114,117,101,2,1,250,185,41,202,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,110,111,2,1,198,157,46,172,2,1,57,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,97,99,99,101,112,116,97,110,99,101,44,32,100,101,110,105,101,100,2,1,163,52,14,29,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,116,101,114,109,115,79,102,85,115,101,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,17,114,147,181,2,1,41,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,103,114,101,101,67,111,111,107,105,101,44,32,116,114,117,101,2,1,236,30,194,45,2,1,37,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,108,103,112,100,45,97,103,114,101,101,44,32,49,2,1,106,229,166,66,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,73,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,12,7,229,37,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,65,108,108,111,119,101,100,44,32,102,97,108,115,101,2,1,58,103,70,90,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,117,115,97,103,101,95,97,99,99,101,112,116,101,100,44,32,49,2,1,164,131,25,103,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,66,97,110,110,101,114,83,104,111,119,110,44,32,116,114,117,101,2,2,44,150,40,215,175,145,111,3,2,1,41,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,67,111,110,115,101,110,116,44,32,49,2,1,126,10,155,118,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,97,110,99,101,44,32,116,114,117,101,2,1,247,167,87,96,2,1,58,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,110,97,108,121,116,105,99,115,95,99,111,111,107,105,101,115,95,97,99,99,101,112,116,97,110,99,101,44,32,116,114,117,101,2,1,247,167,87,96,2,1,37,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,110,115,95,99,111,111,107,105,101,115,44,32,49,2,1,173,52,83,224,2,1,34,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,103,100,112,114,44,32,100,101,110,121,2,1,94,5,31,6,2,1,32,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,44,32,102,97,108,115,101,2,1,135,170,173,217,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,45,112,114,101,102,101,114,101,110,99,101,44,32,49,2,2,55,170,42,147,146,200,130,217,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,65,99,107,110,111,119,108,101,100,103,101,100,44,32,49,2,1,24,103,94,22,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,67,111,110,115,101,110,116,101,100,80,72,44,32,110,111,2,1,21,122,163,3,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,97,99,99,101,112,116,101,100,2,1,235,165,141,179,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,110,111,2,1,96,59,18,46,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,103,116,97,103,46,99,111,110,115,101,110,116,46,111,112,116,105,111,110,44,32,49,2,1,144,1,67,31,2,1,32,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,112,115,50,48,44,32,49,2,1,144,1,67,31,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,104,111,119,67,111,111,107,105,101,85,115,101,44,32,102,97,108,115,101,2,1,151,119,122,244,2,1,39,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,116,101,114,109,115,44,32,97,99,99,101,112,116,101,100,2,1,129,175,23,197,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,122,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,90,227,186,100,2,1,58,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,83,116,111,114,97,103,101,77,97,114,116,67,111,111,107,105,101,115,80,111,108,105,99,121,83,101,101,110,44,32,116,114,117,101,2,1,44,228,224,88,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,114,101,102,101,114,101,110,99,101,115,44,32,49,48,2,1,34,81,7,108,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,117,110,105,110,97,118,73,115,65,103,114,101,101,67,111,111,107,105,101,44,32,116,114,117,101,2,1,102,106,25,91,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,115,116,97,116,117,115,44,32,97,108,108,111,119,2,1,34,81,7,108,2,1,70,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,98,117,110,113,58,67,111,111,107,105,101,67,111,110,115,101,110,116,83,116,111,114,101,58,105,115,66,97,110,110,101,114,86,105,115,105,98,108,101,44,32,102,97,108,115,101,2,1,2,63,189,46,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,101,100,45,99,111,111,107,105,101,115,44,32,91,93,2,1,30,48,72,205,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,110,103,120,45,119,101,98,115,116,111,114,97,103,101,124,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,36,166,234,149,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,112,112,95,103,100,112,114,95,99,111,110,115,101,110,116,44,32,49,2,1,95,203,85,150,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,108,114,101,97,100,121,65,99,99,101,112,116,67,111,111,107,105,101,44,32,116,114,117,101,2,1,186,16,99,235,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,105,115,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,242,88,19,184,2,1,34,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,99,111,111,107,105,101,115,44,32,110,111,2,1,55,233,228,71,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,29,7,62,141,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,112,114,111,109,112,116,95,116,105,109,101,115,44,32,49,2,1,148,195,154,93,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,108,97,115,116,95,112,114,111,109,112,116,95,116,105,109,101,44,32,49,2,1,148,195,154,93,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,117,112,95,103,100,112,114,95,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,2,1,116,137,198,61,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,103,100,112,114,95,99,111,111,107,105,101,44,32,97,99,99,101,112,116,101,100,2,1,116,137,198,61,2,1,32,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,110,44,32,116,114,117,101,2,1,174,222,214,246,2,1,40,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,115,101,110,116,95,112,111,112,117,112,44,32,49,2,1,2,74,239,45,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,67,79,79,75,73,69,95,67,79,78,83,69,78,84,44,32,102,97,108,115,101,2,1,89,132,115,33,2,1,58,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,101,99,108,105,110,101,100,45,118,101,114,115,105,111,110,44,32,49,2,1,42,176,120,23,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,68,111,45,110,111,116,45,115,104,97,114,101,44,32,116,114,117,101,2,1,231,203,142,14,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,108,108,111,119,45,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,231,203,142,14,2,1,90,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,95,95,112,104,95,111,112,116,95,105,110,95,111,117,116,95,112,104,99,95,57,97,83,68,98,74,67,97,68,85,77,100,90,100,72,120,120,77,80,84,118,99,106,55,65,57,102,115,108,51,109,67,103,77,49,82,66,80,109,80,115,108,55,44,32,48,2,1,248,127,218,26,2,1,62,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,104,111,117,108,100,95,100,105,115,112,108,97,121,95,99,111,111,107,105,101,95,98,97,110,110,101,114,95,118,50,44,32,102,97,108,115,101,2,1,128,155,14,235,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,122,111,114,97,45,100,105,115,99,111,118,101,114,45,49,52,45,48,51,45,50,51,44,32,102,97,108,115,101,2,1,37,138,239,191,2,1,58,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,110,101,99,116,45,119,97,108,108,101,116,45,108,101,103,97,108,45,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,128,155,14,235,2,1,37,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,77,105,110,44,32,49,2,1,129,213,136,239,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,44,32,49,2,1,51,227,31,197,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,98,45,97,99,99,101,112,116,45,99,111,111,107,105,101,44,32,116,114,117,101,2,1,201,187,232,90,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,44,32,102,97,108,115,101,2,2,14,40,59,12,130,125,32,164,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,2,155,25,90,31,251,223,9,70,2,1,37,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,78,89,23,120,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,82,79,67,85,77,69,78,84,83,46,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,143,133,126,164,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,115,104,58,99,111,111,107,105,101,115,45,111,116,104,101,114,44,32,102,97,108,115,101,2,1,244,76,165,237,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,115,104,58,99,111,111,107,105,101,115,45,115,101,101,110,44,32,116,114,117,101,2,1,244,76,165,237,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,115,104,58,99,111,111,107,105,101,115,45,115,111,99,105,97,108,44,32,116,114,117,101,2,1,244,76,165,237,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,98,99,67,111,111,107,105,101,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,222,132,201,144,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,67,77,80,58,112,101,114,115,111,110,97,108,105,115,97,116,105,111,110,44,32,49,2,1,33,18,79,145,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,67,111,110,115,101,110,116,101,100,80,72,44,32,110,111,2,1,127,34,192,188,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,99,67,108,111,115,101,100,79,110,99,101,44,32,116,114,117,101,2,1,172,19,249,245,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,116,101,120,116,115,104,117,116,116,108,101,95,99,111,111,107,105,101,44,32,102,97,108,115,101,2,1,187,52,149,122,2,1,68,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,109,101,115,115,97,103,101,45,105,115,45,104,105,100,100,101,110,44,32,116,114,117,101,2,1,115,92,127,196,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,66,97,110,110,101,114,44,32,102,97,108,115,101,2,1,210,133,197,144,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,66,97,110,110,101,114,44,32,116,114,117,101,2,1,8,54,137,252,2,1,36,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,98,97,110,110,101,114,44,32,116,114,117,101,2,1,255,140,158,45,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,88,203,173,154,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,105,115,65,108,108,111,119,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,128,83,39,138,2,1,39,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,103,116,97,103,95,101,110,97,98,108,101,100,44,32,49,2,1,178,52,241,160,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,118,99,67,111,110,115,101,110,116,71,105,118,101,110,44,32,116,114,117,101,2,1,38,157,104,207,2,1,35,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,116,101,114,109,115,44,32,116,114,117,101,2,1,123,155,132,106,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,44,32,116,114,117,101,2,1,108,121,134,53,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,80,101,99,104,105,110,99,104,111,117,58,67,111,111,107,105,101,115,77,111,100,97,108,44,32,116,114,117,101,2,1,216,189,102,86,2,1,36,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,117,98,45,99,112,44,32,116,114,117,101,2,1,171,40,97,61,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,80,111,108,105,99,121,65,99,99,101,112,116,101,100,44,32,121,101,115,2,1,53,102,253,76,2,1,57,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,117,115,97,103,101,95,97,99,107,110,111,119,108,101,100,103,101,100,95,50,44,32,116,114,117,101,2,1,20,233,105,97,2,1,36,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,44,32,116,114,117,101,2,1,96,240,17,247,2,1,55,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,95,110,101,99,101,115,115,97,114,121,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,4,7,161,128,150,57,69,139,54,184,209,102,1,251,189,93,216,2,1,56,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,95,109,97,114,107,101,116,105,110,103,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,4,7,161,128,150,57,69,139,54,184,209,102,1,251,189,93,216,2,1,57,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,95,115,116,97,116,105,115,116,105,99,115,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,4,7,161,128,150,57,69,139,54,184,209,102,1,251,189,93,216,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,119,117,46,99,99,112,97,45,116,111,97,115,116,45,118,105,101,119,101,100,44,32,116,114,117,101,2,1,250,244,124,6,2,1,36,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,108,111,115,101,100,44,32,116,114,117,101,2,1,148,73,99,59,2,1,30,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,100,110,116,44,32,49,2,1,30,107,94,105,2,1,32,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,100,110,116,95,97,44,32,49,2,1,30,107,94,105,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,109,97,107,101,114,122,95,97,108,108,111,119,95,99,111,110,115,101,110,116,109,103,114,44,32,48,2,1,90,144,40,127,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,83,72,79,87,95,67,79,79,75,73,69,95,66,65,78,78,69,82,44,32,110,111,2,1,230,83,187,33,2,1,41,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,67,111,111,107,105,101,115,67,111,110,115,101,110,116,44,32,49,2,3,84,137,158,170,123,181,152,9,225,73,142,122,2,1,51,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,65,110,97,108,121,116,105,99,97,108,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,148,202,84,229,2,1,57,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,83,116,114,105,99,116,108,121,78,101,99,101,115,115,97,114,121,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,148,202,84,229,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,109,67,111,111,107,105,101,66,97,114,70,105,114,115,116,83,104,111,119,44,32,49,2,1,182,23,5,237,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,101,100,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,2,63,37,157,88,203,32,189,42,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,118,105,101,119,101,100,67,111,111,107,105,101,66,97,110,110,101,114,44,32,116,114,117,101,2,1,203,32,189,42,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,95,97,108,108,95,99,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,11,27,79,160,2,1,36,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,105,115,67,111,111,107,105,101,115,44,32,49,2,1,102,135,109,32,2,1,37,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,105,115,67,111,111,107,105,101,44,32,89,101,115,2,1,208,241,162,62,2,1,51,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,99,111,110,115,101,110,116,95,115,116,97,116,117,115,44,32,102,97,108,115,101,2,1,195,24,197,130,2,1,38,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,117,115,101,114,95,99,111,111,107,105,101,44,32,49,2,1,16,224,111,195,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,107,97,58,52,58,108,101,103,97,108,45,117,112,100,97,116,101,115,44,32,116,114,117,101,2,1,243,149,194,121,2,1,33,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,107,44,32,116,114,117,101,2,1,90,126,76,236,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,77,101,115,115,97,103,101,44,32,116,114,117,101,2,1,25,221,10,221,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,111,67,111,111,107,105,101,115,80,111,108,105,99,121,44,32,49,2,1,76,19,238,16,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,71,68,80,82,58,82,66,73,58,97,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,183,44,196,41,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,52,64,221,1,2,1,55,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,116,97,111,45,112,114,105,118,97,99,121,45,99,101,110,116,101,114,46,104,105,100,100,101,110,44,32,49,2,1,138,87,150,200,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,2,165,193,106,45,250,242,59,248,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,65,103,114,101,101,44,32,116,114,117,101,2,1,56,206,64,151,2,1,51,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,121,116,115,99,95,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,132,158,12,50,2,1,91,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,97,102,101,45,115,116,111,114,97,103,101,47,118,49,47,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,47,116,114,97,99,107,105,110,103,67,111,110,115,101,110,116,77,97,114,107,101,116,105,110,103,75,101,121,44,32,102,97,108,115,101,2,1,213,224,120,20,2,1,93,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,97,102,101,45,115,116,111,114,97,103,101,47,118,49,47,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,47,116,114,97,99,107,105,110,103,67,111,110,115,101,110,116,65,100,118,101,114,116,105,115,105,110,103,75,101,121,44,32,102,97,108,115,101,2,1,213,224,120,20,2,1,91,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,97,102,101,45,115,116,111,114,97,103,101,47,118,49,47,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,47,116,114,97,99,107,105,110,103,67,111,110,115,101,110,116,65,110,97,108,121,116,105,99,115,75,101,121,44,32,102,97,108,115,101,2,1,213,224,120,20,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,103,114,101,101,84,111,67,111,111,107,105,101,44,32,102,97,108,115,101,2,1,53,166,53,88,2,1,77,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,65,73,32,65,108,108,105,97,110,99,101,95,82,101,97,99,116,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,95,104,97,115,83,101,116,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,42,201,135,21,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,112,114,111,109,112,116,95,116,105,109,101,115,44,32,49,2,1,148,195,154,93,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,45,97,99,107,45,50,44,32,116,114,117,101,2,1,138,133,75,119,2,1,41,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,102,105,114,115,116,86,105,115,105,116,44,32,102,97,108,115,101,2,1,111,191,26,32,2,1,37,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,50,48,50,48,45,48,52,45,48,53,44,32,49,2,1,171,4,130,170,2,1,39,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,100,105,115,109,105,115,115,101,100,44,32,116,114,117,101,2,1,194,200,167,104,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,83,69,84,95,67,79,79,75,73,69,83,95,65,80,80,82,79,86,69,68,44,32,116,114,117,101,2,1,206,197,103,7,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,65,99,99,101,112,116,101,100,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,126,248,105,18,2,1,57,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,105,115,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,72,105,100,100,101,110,44,32,116,114,117,101,2,1,40,1,33,175,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,103,114,101,101,100,45,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,31,27,229,145,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,115,101,110,116,67,111,111,107,105,101,44,32,116,114,117,101,2,1,221,250,181,225,2,1,39,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,83,87,67,79,79,75,73,69,83,65,67,67,44,32,49,2,1,38,236,6,216,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,65,99,99,101,112,116,101,100,67,111,111,107,105,101,78,111,116,105,99,101,44,32,116,114,117,101,2,1,48,26,107,57,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,102,98,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,114,241,210,55,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,105,115,95,97,99,99,101,112,116,95,99,111,111,107,105,101,44,32,116,114,117,101,2,2,42,128,156,229,171,0,148,138,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,45,106,111,118,101,45,99,111,111,107,105,101,44,32,49,2,1,148,186,129,130,2,1,54,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,114,95,118,97,108,117,101,44,32,116,114,117,101,2,1,91,16,80,113,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,120,100,110,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,1,137,105,190,11,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,107,97,115,104,97,95,95,99,111,111,107,105,101,80,111,108,105,99,121,44,32,116,114,117,101,2,1,243,214,160,218,2,1,38,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,81,77,79,112,116,73,110,44,32,102,97,108,115,101,2,1,101,159,68,98,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,105,115,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,190,35,206,24,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,97,102,101,46,103,108,111,98,97,108,44,32,102,97,108,115,101,2,1,175,159,193,239,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,98,97,110,110,101,114,58,104,105,100,100,101,110,44,32,116,114,117,101,2,1,94,128,246,32,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,132,22,235,0,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,95,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,116,114,117,101,2,1,14,226,90,111,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,50,48,49,56,48,53,45,112,111,108,105,99,121,124,97,99,99,101,112,116,101,100,44,32,49,2,11,51,155,255,119,53,211,171,117,63,37,190,213,92,59,36,6,153,97,157,14,160,2,171,133,170,110,176,175,188,115,91,36,222,248,226,71,233,109,75,243,243,220,56,146,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,107,105,99,107,95,99,111,111,107,105,101,95,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,148,181,249,70,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,45,115,101,108,101,99,116,101,100,44,32,116,114,117,101,2,1,7,115,169,154,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,2,15,150,155,106,102,62,39,238,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,45,110,111,116,105,99,101,45,100,105,115,109,105,115,115,101,100,44,32,116,114,117,101,2,1,141,38,121,224,2,1,51,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,44,32,116,114,117,101,2,1,141,38,121,224,2,1,56,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,100,105,115,109,105,115,115,101,100,80,114,105,118,97,99,121,67,111,111,107,105,101,77,101,115,115,97,103,101,44,32,49,2,1,67,165,145,86,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,231,73,254,143,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,80,111,108,105,99,121,44,32,116,114,117,101,2,2,24,97,194,251,88,236,182,118,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,108,108,111,119,67,111,111,107,105,101,115,44,32,97,108,108,111,119,101,100,2,1,167,152,52,150,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,116,114,117,101,2,2,38,254,7,249,184,109,81,208,2,1,51,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,115,116,97,116,117,115,44,32,116,114,117,101,2,1,158,187,246,203,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,197,244,4,60,2,1,39,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,83,87,67,79,79,75,73,69,83,65,67,67,44,32,49,2,1,110,83,69,150,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,108,108,111,119,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,139,208,50,47,2,1,41,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,49,2,1,98,146,36,46,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,101,100,45,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,249,102,61,37,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,44,32,48,2,1,254,108,185,143,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,66,97,110,110,101,114,82,101,97,100,44,32,32,116,114,117,101,2,1,38,157,70,189,2,1,39,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,67,111,111,107,105,101,44,32,48,2,1,54,139,187,163,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,66,97,110,110,101,114,82,101,97,100,68,97,116,101,44,32,49,2,1,38,157,70,189,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,205,178,219,147,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,45,115,101,108,101,99,116,101,100,44,32,32,116,114,117,101,2,1,147,169,231,220,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,95,80,243,78,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,44,32,116,114,117,101,2,1,95,80,243,78,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,44,32,116,114,117,101,2,3,114,220,75,58,159,250,164,191,228,224,212,209,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,115,101,110,116,77,97,110,97,103,101,114,95,115,104,111,119,110,44,32,116,114,117,101,2,2,253,254,11,193,255,22,48,66,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,115,101,110,116,95,110,101,99,101,115,115,97,114,121,44,32,116,114,117,101,2,2,253,254,11,193,255,22,48,66,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,115,101,110,116,95,112,101,114,102,111,114,109,97,110,99,101,44,32,102,97,108,115,101,2,2,253,254,11,193,255,22,48,66,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,45,99,108,111,115,101,100,44,32,116,114,117,101,2,1,213,37,133,184,2,1,52,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,102,114,97,109,101,114,67,111,111,107,105,101,115,68,105,115,109,105,115,115,101,100,44,32,116,114,117,101,2,1,34,213,51,208,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,45,97,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,1,213,37,133,184,2,1,40,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,49,2,2,205,236,108,18,254,170,25,53,2,1,49,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,101,110,97,98,108,101,67,111,111,107,105,101,66,97,110,110,101,114,44,32,102,97,108,115,101,2,1,69,163,160,211,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,108,101,118,101,108,44,32,49,2,1,195,166,88,253,2,1,56,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,98,121,70,111,111,100,67,111,111,107,105,101,80,111,108,105,99,121,82,101,113,117,105,114,101,44,32,102,97,108,115,101,2,1,90,91,207,37,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,115,99,111,111,107,105,101,45,45,100,101,99,105,115,105,111,110,44,32,116,114,117,101,2,1,59,239,35,246,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,105,115,65,99,99,101,112,116,67,111,111,107,105,101,115,78,101,119,44,32,116,114,117,101,2,2,112,102,236,183,163,239,135,186,2,1,40,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,109,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,101,41,119,74,2,1,52,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,116,101,99,104,110,105,99,97,108,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,101,41,119,74,2,1,40,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,101,41,119,74,2,1,55,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,116,97,111,45,112,114,105,118,97,99,121,45,99,101,110,116,101,114,46,104,105,100,100,101,110,44,32,49,2,1,47,194,124,121,2,1,41,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,111,116,104,101,114,67,111,111,107,105,101,44,32,116,114,117,101,2,1,37,73,28,225,2,1,40,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,97,118,101,67,111,111,107,105,101,44,32,116,114,117,101,2,1,37,73,28,225,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,117,115,101,114,65,99,99,101,112,116,115,67,111,111,107,105,101,115,44,32,49,2,1,71,163,133,219,2,1,51,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,103,114,110,107,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,241,126,2,84,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,116,114,117,101,2,1,96,134,234,124,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,67,111,110,115,101,110,116,44,32,102,97,108,115,101,2,2,85,201,34,77,136,250,59,173,2,1,41,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,67,111,111,107,105,101,115,44,32,110,111,2,1,37,115,139,249,2,1,43,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,58,227,214,103,2,1,40,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,45,100,105,115,109,105,115,115,101,100,44,32,49,2,1,128,145,131,232,2,1,45,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,65,99,99,101,112,116,101,100,71,100,112,114,44,32,116,114,117,101,2,1,79,75,218,215,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,108,119,45,97,99,99,101,112,116,115,45,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,50,38,94,32,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,121,98,142,233,2,1,44,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,115,45,97,99,99,101,112,116,44,32,116,114,117,101,2,1,153,62,159,75,2,1,42,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,108,111,97,100,45,115,99,114,105,112,116,115,45,118,50,44,32,50,2,1,190,14,6,59,2,1,54,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,115,65,110,97,108,121,116,105,99,115,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,198,80,109,45,2,1,53,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,115,78,101,99,101,115,115,97,114,121,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,198,80,109,45,2,1,51,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,100,105,115,112,108,97,121,95,99,111,111,107,105,101,95,109,111,100,97,108,44,32,102,97,108,115,101,2,1,131,170,5,110,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,112,103,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,44,32,116,114,117,101,2,1,184,135,181,184,2,1,71,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,95,95,69,79,66,85,87,73,69,95,95,99,111,110,115,101,110,116,115,95,97,99,99,101,112,116,101,100,44,32,116,114,117,101,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,3,175,39,97,2,1,40,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,48,9,58,0,2,1,52,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,97,110,97,100,97,45,99,111,111,107,105,101,45,97,99,107,110,111,119,108,101,100,103,101,44,32,49,2,1,179,12,30,208,2,1,55,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,110,116,97,111,45,112,114,105,118,97,99,121,45,99,101,110,116,101,114,46,104,105,100,100,101,110,44,32,49,2,1,41,65,53,80,2,1,48,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,70,80,95,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,182,113,42,62,2,1,39,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,86,73,83,73,84,69,68,95,48,44,32,116,114,117,101,2,1,169,121,139,60,2,1,57,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,79,80,84,73,79,78,65,76,95,67,79,79,75,73,69,83,95,65,67,67,69,80,84,69,68,95,48,44,32,116,114,117,101,2,1,169,121,139,60,2,1,47,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,116,111,114,97,103,101,80,101,114,109,105,115,115,105,111,110,44,32,116,114,117,101,2,1,239,210,150,82,2,1,46,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,101,116,95,99,111,111,107,105,101,95,115,116,97,116,44,32,102,97,108,115,101,2,6,11,151,31,33,37,170,130,216,138,52,138,143,156,134,225,22,213,169,169,35,253,6,0,167,2,1,50,115,101,116,45,108,111,99,97,108,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,115,101,116,95,99,111,111,107,105,101,95,116,114,97,99,107,105,110,103,44,32,102,97,108,115,101,2,6,11,151,31,33,37,170,130,216,138,52,138,143,156,134,225,22,213,169,169,35,253,6,0,167,2,1,41,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,77,111,100,97,108,50,44,32,49,2,1,173,227,15,78,2,1,53,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,77,101,115,115,97,103,101,68,105,115,97,103,114,101,101,44,32,116,114,117,101,2,1,148,180,34,67,2,1,45,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,100,105,115,99,108,97,105,109,101,114,79,112,101,110,101,100,44,32,49,2,1,115,100,48,19,2,1,57,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,116,101,114,109,115,45,97,110,100,45,112,111,108,105,99,121,45,97,99,99,101,112,116,101,100,44,32,116,114,117,101,2,1,140,166,186,213,2,1,55,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,100,105,115,109,105,115,115,101,100,84,114,97,99,107,105,110,103,66,97,110,110,101,114,44,32,116,114,117,101,2,1,76,125,65,108,2,1,44,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,67,111,111,107,105,101,84,101,114,109,49,56,44,32,116,114,117,101,2,1,70,211,214,41,2,1,45,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,95,114,101,106,101,99,116,44,32,116,114,117,101,2,1,45,202,154,27,2,1,47,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,99,111,111,107,105,101,67,111,110,102,105,114,109,101,100,44,32,116,114,117,101,2,1,148,187,253,146,2,1,39,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,67,111,110,115,101,110,116,44,32,49,2,1,210,92,137,208,2,1,35,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,104,97,115,68,115,103,44,32,49,2,1,210,92,137,208,2,1,50,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,103,114,105,102,102,105,110,67,111,110,115,101,110,116,73,103,110,111,114,101,100,44,32,49,2,1,101,42,233,211,2,1,43,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,65,67,67,69,80,84,95,76,71,80,68,44,32,116,114,117,101,2,1,131,23,8,125,2,1,46,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,97,99,99,101,112,116,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,1,126,80,164,176,2,1,23,97,99,105,115,44,32,36,44,32,35,109,111,100,97,108,45,99,111,110,115,101,110,116,2,2,66,210,214,242,156,103,212,135,2,1,34,97,99,105,115,44,32,115,112,97,110,76,105,110,107,67,108,105,99,107,44,32,35,99,111,111,107,105,101,98,97,110,110,101,114,2,1,97,254,172,184,2,1,17,97,99,105,115,44,32,97,108,101,114,116,67,111,111,107,105,101,2,1,24,247,182,28,2,1,12,97,99,105,115,44,32,100,111,79,110,99,101,2,3,20,218,63,198,122,41,116,201,123,252,202,197,2,1,13,97,99,105,115,44,32,36,44,32,35,107,117,107,2,1,209,167,231,116,2,1,21,97,99,105,115,44,32,36,44,32,35,99,111,110,116,101,110,116,119,114,97,112,2,1,149,148,25,82,2,1,41,97,99,105,115,44,32,106,81,117,101,114,121,44,32,115,121,110,99,104,114,111,110,105,122,101,67,111,111,107,105,101,78,111,116,101,67,111,111,107,105,101,2,1,143,52,66,67,2,1,51,97,99,105,115,44,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,44,32,99,111,110,115,101,110,116,46,99,111,111,107,105,101,98,111,116,46,99,111,109,2,2,168,156,238,184,175,75,52,186,2,1,42,97,99,105,115,44,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,44,32,100,101,108,105,118,101,114,121,47,99,109,112,2,1,30,54,132,206,2,1,19,97,99,105,115,44,32,36,106,44,32,97,99,99,101,112,116,84,79,83,2,1,120,189,131,194,2,1,37,97,99,105,115,44,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,44,32,97,100,109,105,114,97,108,2,19,1,67,132,82,27,230,3,216,29,116,127,165,30,67,223,94,38,157,176,165,57,228,7,139,99,226,187,91,102,173,20,232,122,215,83,29,128,162,149,132,145,151,63,251,155,105,52,184,165,185,187,17,174,248,157,209,199,215,254,28,214,185,33,51,214,242,134,176,228,1,8,203,231,244,217,146,0,5,1,42,2,1,197,246,170,113,24,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,11,35,99,109,112,45,105,102,114,97,109,101,2,1,24,87,61,150,0,5,4,98,111,100,121,2,1,24,87,61,150,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,6,46,109,111,100,97,108,2,128,0,0,2,55,0,135,155,97,0,201,182,185,0,223,147,227,1,23,11,255,2,18,73,197,2,37,74,164,2,48,105,48,2,86,19,98,2,119,254,247,2,250,174,245,3,16,137,66,3,242,6,253,3,249,244,134,4,150,12,158,4,173,201,83,4,233,174,89,5,3,90,62,5,12,169,203,5,113,42,130,5,195,227,76,5,197,73,248,5,233,233,36,6,86,127,91,6,90,179,150,6,109,126,128,6,189,18,207,6,200,156,46,6,203,115,53,7,87,217,6,8,126,27,186,8,148,22,85,10,28,223,87,10,66,115,215,10,108,195,194,11,0,139,153,11,240,3,194,12,14,72,92,13,217,62,240,14,66,51,93,14,86,65,81,14,236,172,41,14,245,24,124,15,78,112,246,15,174,91,252,17,130,222,201,19,60,247,203,19,239,185,244,20,72,180,131,21,191,163,59,22,101,105,19,24,3,233,218,24,194,22,219,24,251,84,207,25,100,230,94,25,185,248,35,26,155,19,233,26,182,27,211,27,121,108,151,28,199,12,36,28,221,160,113,28,228,197,239,29,6,110,90,29,54,180,49,29,161,39,225,29,246,0,5,30,182,45,152,30,225,128,150,31,168,20,16,31,180,182,52,32,102,254,202,32,173,251,66,33,80,146,145,33,105,6,102,33,110,72,36,34,143,210,37,34,168,35,159,35,74,73,184,35,174,211,57,36,16,1,242,36,79,179,112,36,125,190,40,37,183,110,52,37,205,8,120,38,61,20,231,38,153,9,250,38,157,45,201,39,32,218,107,39,176,135,104,40,57,180,153,40,115,18,70,40,129,64,251,40,227,69,241,40,244,207,220,41,147,29,51,42,22,194,126,42,53,239,62,42,113,78,172,42,236,183,165,44,180,249,14,44,253,179,139,45,200,179,54,45,246,191,105,46,47,48,224,46,58,145,91,46,113,130,140,46,116,13,122,46,168,132,200,47,67,130,124,47,176,148,245,48,107,9,12,48,126,251,107,48,158,43,103,48,203,163,141,49,46,132,143,49,225,94,37,50,229,244,221,50,237,50,148,51,99,14,96,51,134,221,81,53,25,68,93,53,65,42,96,55,113,207,86,55,165,182,93,55,222,74,56,56,53,88,169,57,137,211,16,58,133,149,119,58,225,111,164,59,224,203,233,61,108,42,44,63,169,134,229,63,246,127,168,63,252,212,75,64,190,128,193,64,232,203,88,65,50,184,236,65,52,212,203,66,111,229,183,66,243,23,99,67,44,176,127,67,212,252,97,67,254,249,67,68,7,197,68,68,60,201,163,68,202,79,164,68,233,82,132,68,238,176,158,68,238,194,95,68,254,189,71,69,58,109,205,69,121,254,87,70,103,219,169,70,136,75,87,70,204,192,235,71,40,201,19,71,75,123,34,71,90,154,33,71,120,230,53,71,193,179,100,72,223,87,39,73,127,185,68,73,164,93,236,74,97,225,89,74,100,219,207,74,108,114,188,74,114,92,218,74,240,17,214,77,5,25,119,77,22,12,116,78,41,47,104,78,44,86,162,78,116,73,202,78,168,171,224,78,206,228,98,79,0,1,24,79,132,29,100,81,69,239,159,83,6,194,247,83,29,4,86,84,74,93,181,84,123,151,34,84,135,177,114,85,46,220,196,85,160,220,40,85,191,245,237,86,134,63,83,86,196,140,22,87,53,32,2,87,87,34,62,87,98,131,38,87,243,176,21,88,72,18,201,88,209,125,165,90,42,31,72,90,50,199,226,90,84,52,93,90,158,226,238,91,6,51,249,91,21,117,108,91,97,222,36,91,105,187,36,91,215,34,80,92,32,63,118,92,57,81,91,92,76,162,106,92,111,9,129,92,182,54,104,93,85,11,197,94,92,27,92,94,121,206,41,94,255,168,248,95,39,140,239,96,167,218,53,97,0,180,47,97,19,231,197,97,66,174,26,97,168,37,149,97,183,143,207,98,39,118,191,99,193,170,182,99,222,218,82,99,252,73,99,100,6,109,102,100,16,98,140,100,130,226,226,100,231,137,62,101,75,239,87,101,132,63,87,102,34,195,152,102,99,156,154,103,2,236,68,103,7,218,243,103,207,104,197,104,193,50,67,105,131,128,150,105,153,69,88,105,175,190,108,106,32,173,75,107,99,17,239,107,196,172,166,107,233,173,37,107,254,183,63,109,67,209,33,110,212,13,56,111,7,194,74,111,133,134,107,111,252,58,118,112,63,203,131,112,116,246,43,112,117,168,209,114,54,75,247,114,129,227,184,115,25,187,110,115,176,252,64,116,28,138,59,116,34,78,237,116,96,237,156,116,195,128,29,116,225,149,190,117,237,65,186,118,43,246,213,118,188,237,50,119,48,95,42,120,57,161,4,120,116,117,186,121,194,244,17,122,134,218,191,122,172,24,15,123,135,75,26,123,248,113,198,124,70,105,71,124,119,192,120,124,185,108,235,125,121,227,251,125,203,169,179,125,228,16,161,126,2,202,220,126,7,216,187,126,26,136,14,126,169,28,20,126,171,73,184,126,200,179,32,126,208,137,20,126,226,30,18,126,236,80,188,127,42,149,241,127,109,156,253,127,244,49,88,128,148,167,237,128,157,150,225,130,201,84,54,130,239,21,225,130,252,195,35,131,39,7,143,131,75,252,27,132,70,202,179,132,183,42,199,133,81,51,7,133,246,118,224,134,73,26,97,134,153,75,164,135,142,124,183,135,154,109,68,135,171,144,6,135,207,180,95,136,90,213,252,137,119,234,82,137,226,15,12,138,159,152,41,138,213,30,241,139,6,112,190,139,99,18,149,140,158,85,74,140,229,24,68,141,39,71,110,141,54,212,131,141,241,90,90,142,13,247,81,142,67,136,174,142,184,221,117,142,190,123,88,143,21,28,161,143,99,54,186,143,127,9,118,144,70,76,9,146,189,0,35,147,52,135,100,147,134,202,53,147,147,87,145,147,170,59,207,148,63,53,167,148,181,71,163,148,188,92,212,150,148,135,112,150,225,183,52,151,224,74,221,152,69,138,255,153,102,93,173,153,108,86,20,153,243,85,44,154,8,90,205,154,45,39,10,154,134,243,233,155,54,37,129,155,66,64,24,155,116,75,226,155,146,254,74,156,104,141,12,157,189,79,173,157,215,128,79,158,10,108,42,158,195,232,73,159,97,115,99,159,148,144,62,159,151,118,118,159,164,164,224,160,158,186,200,161,125,64,105,163,52,115,149,163,208,148,59,164,15,223,167,164,61,6,152,164,142,171,217,165,69,76,14,165,81,215,6,165,88,245,93,165,165,195,22,166,60,118,44,166,60,166,54,166,60,207,255,166,185,42,196,166,230,136,104,167,112,61,173,168,174,28,136,169,34,103,85,169,190,14,187,169,255,179,204,171,27,167,208,171,199,182,93,171,228,66,234,172,0,163,211,172,10,243,94,172,30,142,69,172,59,143,53,172,167,115,41,174,114,17,170,174,233,253,208,174,254,78,99,175,73,132,81,175,94,13,102,175,134,101,198,176,74,9,207,176,78,145,193,176,139,120,255,176,193,185,185,177,156,96,95,177,220,124,241,178,115,178,207,179,125,236,16,180,91,229,89,180,96,241,188,181,25,109,29,181,46,228,67,182,1,112,164,182,24,159,237,182,67,110,47,183,64,106,247,183,192,75,42,184,164,57,99,186,74,82,188,187,191,233,41,187,243,248,118,188,42,18,108,188,62,205,30,188,62,235,181,188,76,15,2,188,193,35,203,189,52,137,212,189,71,153,57,189,131,224,22,189,192,186,170,189,222,59,156,190,148,10,106,190,228,32,122,192,52,86,158,192,128,94,56,193,19,49,72,193,100,93,17,193,237,145,128,194,52,85,77,194,65,159,102,194,136,21,43,194,179,198,122,194,197,249,253,194,252,209,88,195,180,176,78,195,208,245,58,197,79,178,110,198,59,242,89,198,251,152,213,199,46,232,11,199,52,232,166,199,154,200,179,200,116,246,16,200,182,101,114,200,184,66,106,201,55,125,48,201,95,88,189,201,169,140,245,202,125,33,144,202,205,207,43,203,104,198,126,204,3,137,240,205,96,201,234,205,97,5,232,205,106,124,61,205,244,245,33,206,152,49,179,207,89,44,106,207,184,169,115,208,40,73,162,208,141,227,0,208,202,24,86,208,249,86,85,210,151,222,9,211,43,12,199,211,52,122,59,211,157,24,12,211,163,178,161,213,96,62,39,213,165,35,125,213,215,131,181,213,240,218,132,215,35,95,156,215,184,123,77,215,237,26,124,215,246,44,41,216,142,90,78,216,177,88,57,216,210,99,250,217,122,60,136,219,138,91,137,219,157,247,76,220,5,196,82,220,16,53,61,221,129,219,10,221,160,69,119,222,18,239,141,222,42,165,223,222,180,215,133,223,105,236,229,223,114,129,82,223,229,242,23,223,236,152,100,224,27,215,39,224,82,213,92,225,53,89,150,225,162,63,97,227,102,42,161,227,135,182,132,227,186,47,194,227,215,204,80,228,89,95,217,228,143,102,68,229,215,202,141,230,110,41,246,230,110,58,21,230,209,35,86,231,127,4,207,233,32,164,246,233,229,242,211,233,235,184,129,234,53,0,169,235,102,65,36,235,140,211,193,235,226,230,180,236,69,194,137,236,160,129,160,236,212,87,92,237,107,158,252,237,110,37,83,237,149,34,157,237,252,211,64,238,110,238,220,238,132,239,60,238,226,106,2,238,248,169,231,239,3,56,152,239,250,229,233,240,66,212,109,240,193,35,57,241,3,201,123,241,20,81,145,241,76,189,168,242,81,71,73,242,128,250,51,242,231,70,111,242,231,120,5,242,231,161,55,243,1,188,66,243,191,211,186,243,234,61,235,243,236,108,113,244,100,211,212,244,158,99,204,245,141,202,146,245,154,58,146,245,159,126,81,245,186,81,64,246,75,93,240,246,75,93,240,246,138,240,156,247,38,251,102,247,142,25,100,248,152,36,58,248,231,165,46,249,142,215,189,250,8,239,8,250,25,23,143,250,59,204,130,250,87,139,228,250,134,14,111,252,242,201,168,253,9,210,146,253,36,70,102,254,233,244,168,255,38,24,240,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,128,0,0,2,55,0,135,155,97,0,201,182,185,0,223,147,227,1,23,11,255,2,18,73,197,2,37,74,164,2,48,105,48,2,86,19,98,2,119,254,247,2,250,174,245,3,16,137,66,3,242,6,253,3,249,244,134,4,150,12,158,4,173,201,83,4,233,174,89,5,3,90,62,5,12,169,203,5,113,42,130,5,195,227,76,5,197,73,248,5,233,233,36,6,86,127,91,6,90,179,150,6,109,126,128,6,189,18,207,6,200,156,46,6,203,115,53,7,87,217,6,8,126,27,186,8,148,22,85,10,28,223,87,10,66,115,215,10,108,195,194,11,0,139,153,11,240,3,194,12,14,72,92,13,217,62,240,14,66,51,93,14,86,65,81,14,236,172,41,14,245,24,124,15,78,112,246,15,174,91,252,17,130,222,201,19,60,247,203,19,239,185,244,20,72,180,131,21,191,163,59,22,101,105,19,24,3,233,218,24,194,22,219,24,251,84,207,25,100,230,94,25,185,248,35,26,155,19,233,26,182,27,211,27,121,108,151,28,199,12,36,28,221,160,113,28,228,197,239,29,6,110,90,29,54,180,49,29,161,39,225,29,246,0,5,30,182,45,152,30,225,128,150,31,168,20,16,31,180,182,52,32,102,254,202,32,173,251,66,33,80,146,145,33,105,6,102,33,110,72,36,34,143,210,37,34,168,35,159,35,74,73,184,35,174,211,57,36,16,1,242,36,79,179,112,36,125,190,40,37,183,110,52,37,205,8,120,38,61,20,231,38,153,9,250,38,157,45,201,39,32,218,107,39,176,135,104,40,57,180,153,40,115,18,70,40,129,64,251,40,227,69,241,40,244,207,220,41,147,29,51,42,22,194,126,42,53,239,62,42,113,78,172,42,236,183,165,44,180,249,14,44,253,179,139,45,200,179,54,45,246,191,105,46,47,48,224,46,58,145,91,46,113,130,140,46,116,13,122,46,168,132,200,47,67,130,124,47,176,148,245,48,107,9,12,48,126,251,107,48,158,43,103,48,203,163,141,49,46,132,143,49,225,94,37,50,229,244,221,50,237,50,148,51,99,14,96,51,134,221,81,53,25,68,93,53,65,42,96,55,113,207,86,55,165,182,93,55,222,74,56,56,53,88,169,57,137,211,16,58,133,149,119,58,225,111,164,59,224,203,233,61,108,42,44,63,169,134,229,63,246,127,168,63,252,212,75,64,190,128,193,64,232,203,88,65,50,184,236,65,52,212,203,66,111,229,183,66,243,23,99,67,44,176,127,67,212,252,97,67,254,249,67,68,7,197,68,68,60,201,163,68,202,79,164,68,233,82,132,68,238,176,158,68,238,194,95,68,254,189,71,69,58,109,205,69,121,254,87,70,103,219,169,70,136,75,87,70,204,192,235,71,40,201,19,71,75,123,34,71,90,154,33,71,120,230,53,71,193,179,100,72,223,87,39,73,127,185,68,73,164,93,236,74,97,225,89,74,100,219,207,74,108,114,188,74,114,92,218,74,240,17,214,77,5,25,119,77,22,12,116,78,41,47,104,78,44,86,162,78,116,73,202,78,168,171,224,78,206,228,98,79,0,1,24,79,132,29,100,81,69,239,159,83,6,194,247,83,29,4,86,84,74,93,181,84,123,151,34,84,135,177,114,85,46,220,196,85,160,220,40,85,191,245,237,86,134,63,83,86,196,140,22,87,53,32,2,87,87,34,62,87,98,131,38,87,243,176,21,88,72,18,201,88,209,125,165,90,42,31,72,90,50,199,226,90,84,52,93,90,158,226,238,91,6,51,249,91,21,117,108,91,97,222,36,91,105,187,36,91,215,34,80,92,32,63,118,92,57,81,91,92,76,162,106,92,111,9,129,92,182,54,104,93,85,11,197,94,92,27,92,94,121,206,41,94,255,168,248,95,39,140,239,96,167,218,53,97,0,180,47,97,19,231,197,97,66,174,26,97,168,37,149,97,183,143,207,98,39,118,191,99,193,170,182,99,222,218,82,99,252,73,99,100,6,109,102,100,16,98,140,100,130,226,226,100,231,137,62,101,75,239,87,101,132,63,87,102,34,195,152,102,99,156,154,103,2,236,68,103,7,218,243,103,207,104,197,104,193,50,67,105,131,128,150,105,153,69,88,105,175,190,108,106,32,173,75,107,99,17,239,107,196,172,166,107,233,173,37,107,254,183,63,109,67,209,33,110,212,13,56,111,7,194,74,111,133,134,107,111,252,58,118,112,63,203,131,112,116,246,43,112,117,168,209,114,54,75,247,114,129,227,184,115,25,187,110,115,176,252,64,116,28,138,59,116,34,78,237,116,96,237,156,116,195,128,29,116,225,149,190,117,237,65,186,118,43,246,213,118,188,237,50,119,48,95,42,120,57,161,4,120,116,117,186,121,194,244,17,122,134,218,191,122,172,24,15,123,135,75,26,123,248,113,198,124,70,105,71,124,119,192,120,124,185,108,235,125,121,227,251,125,203,169,179,125,228,16,161,126,2,202,220,126,7,216,187,126,26,136,14,126,169,28,20,126,171,73,184,126,200,179,32,126,208,137,20,126,226,30,18,126,236,80,188,127,42,149,241,127,109,156,253,127,244,49,88,128,148,167,237,128,157,150,225,130,201,84,54,130,239,21,225,130,252,195,35,131,39,7,143,131,75,252,27,132,70,202,179,132,183,42,199,133,81,51,7,133,246,118,224,134,73,26,97,134,153,75,164,135,142,124,183,135,154,109,68,135,171,144,6,135,207,180,95,136,90,213,252,137,119,234,82,137,226,15,12,138,159,152,41,138,213,30,241,139,6,112,190,139,99,18,149,140,158,85,74,140,229,24,68,141,39,71,110,141,54,212,131,141,241,90,90,142,13,247,81,142,67,136,174,142,184,221,117,142,190,123,88,143,21,28,161,143,99,54,186,143,127,9,118,144,70,76,9,146,189,0,35,147,52,135,100,147,134,202,53,147,147,87,145,147,170,59,207,148,63,53,167,148,181,71,163,148,188,92,212,150,148,135,112,150,225,183,52,151,224,74,221,152,69,138,255,153,102,93,173,153,108,86,20,153,243,85,44,154,8,90,205,154,45,39,10,154,134,243,233,155,54,37,129,155,66,64,24,155,116,75,226,155,146,254,74,156,104,141,12,157,189,79,173,157,215,128,79,158,10,108,42,158,195,232,73,159,97,115,99,159,148,144,62,159,151,118,118,159,164,164,224,160,158,186,200,161,125,64,105,163,52,115,149,163,208,148,59,164,15,223,167,164,61,6,152,164,142,171,217,165,69,76,14,165,81,215,6,165,88,245,93,165,165,195,22,166,60,118,44,166,60,166,54,166,60,207,255,166,185,42,196,166,230,136,104,167,112,61,173,168,174,28,136,169,34,103,85,169,190,14,187,169,255,179,204,171,27,167,208,171,199,182,93,171,228,66,234,172,0,163,211,172,10,243,94,172,30,142,69,172,59,143,53,172,167,115,41,174,114,17,170,174,233,253,208,174,254,78,99,175,73,132,81,175,94,13,102,175,134,101,198,176,74,9,207,176,78,145,193,176,139,120,255,176,193,185,185,177,156,96,95,177,220,124,241,178,115,178,207,179,125,236,16,180,91,229,89,180,96,241,188,181,25,109,29,181,46,228,67,182,1,112,164,182,24,159,237,182,67,110,47,183,64,106,247,183,192,75,42,184,164,57,99,186,74,82,188,187,191,233,41,187,243,248,118,188,42,18,108,188,62,205,30,188,62,235,181,188,76,15,2,188,193,35,203,189,52,137,212,189,71,153,57,189,131,224,22,189,192,186,170,189,222,59,156,190,148,10,106,190,228,32,122,192,52,86,158,192,128,94,56,193,19,49,72,193,100,93,17,193,237,145,128,194,52,85,77,194,65,159,102,194,136,21,43,194,179,198,122,194,197,249,253,194,252,209,88,195,180,176,78,195,208,245,58,197,79,178,110,198,59,242,89,198,251,152,213,199,46,232,11,199,52,232,166,199,154,200,179,200,116,246,16,200,182,101,114,200,184,66,106,201,55,125,48,201,95,88,189,201,169,140,245,202,125,33,144,202,205,207,43,203,104,198,126,204,3,137,240,205,96,201,234,205,97,5,232,205,106,124,61,205,244,245,33,206,152,49,179,207,89,44,106,207,184,169,115,208,40,73,162,208,141,227,0,208,202,24,86,208,249,86,85,210,151,222,9,211,43,12,199,211,52,122,59,211,157,24,12,211,163,178,161,213,96,62,39,213,165,35,125,213,215,131,181,213,240,218,132,215,35,95,156,215,184,123,77,215,237,26,124,215,246,44,41,216,142,90,78,216,177,88,57,216,210,99,250,217,122,60,136,219,138,91,137,219,157,247,76,220,5,196,82,220,16,53,61,221,129,219,10,221,160,69,119,222,18,239,141,222,42,165,223,222,180,215,133,223,105,236,229,223,114,129,82,223,229,242,23,223,236,152,100,224,27,215,39,224,82,213,92,225,53,89,150,225,162,63,97,227,102,42,161,227,135,182,132,227,186,47,194,227,215,204,80,228,89,95,217,228,143,102,68,229,215,202,141,230,110,41,246,230,110,58,21,230,209,35,86,231,127,4,207,233,32,164,246,233,229,242,211,233,235,184,129,234,53,0,169,235,102,65,36,235,140,211,193,235,226,230,180,236,69,194,137,236,160,129,160,236,212,87,92,237,107,158,252,237,110,37,83,237,149,34,157,237,252,211,64,238,110,238,220,238,132,239,60,238,226,106,2,238,248,169,231,239,3,56,152,239,250,229,233,240,66,212,109,240,193,35,57,241,3,201,123,241,20,81,145,241,76,189,168,242,81,71,73,242,128,250,51,242,231,70,111,242,231,120,5,242,231,161,55,243,1,188,66,243,191,211,186,243,234,61,235,243,236,108,113,244,100,211,212,244,158,99,204,245,141,202,146,245,154,58,146,245,159,126,81,245,186,81,64,246,75,93,240,246,75,93,240,246,138,240,156,247,38,251,102,247,142,25,100,248,152,36,58,248,231,165,46,249,142,215,189,250,8,239,8,250,25,23,143,250,59,204,130,250,87,139,228,250,134,14,111,252,242,201,168,253,9,210,146,253,36,70,102,254,233,244,168,255,38,24,240,0,5,9,98,111,100,121,44,104,116,109,108,2,128,0,0,2,54,0,135,155,97,0,201,182,185,0,223,147,227,1,23,11,255,2,18,73,197,2,37,74,164,2,48,105,48,2,86,19,98,2,119,254,247,2,250,174,245,3,16,137,66,3,242,6,253,3,249,244,134,4,150,12,158,4,173,201,83,4,233,174,89,5,3,90,62,5,12,169,203,5,113,42,130,5,195,227,76,5,197,73,248,5,233,233,36,6,86,127,91,6,90,179,150,6,109,126,128,6,189,18,207,6,200,156,46,6,203,115,53,7,87,217,6,8,126,27,186,8,148,22,85,10,28,223,87,10,66,115,215,10,108,195,194,11,0,139,153,11,240,3,194,12,14,72,92,13,217,62,240,14,66,51,93,14,86,65,81,14,236,172,41,14,245,24,124,15,78,112,246,15,174,91,252,17,130,222,201,19,60,247,203,19,239,185,244,20,72,180,131,21,191,163,59,22,101,105,19,24,3,233,218,24,194,22,219,24,251,84,207,25,100,230,94,25,185,248,35,26,155,19,233,26,182,27,211,27,121,108,151,28,199,12,36,28,221,160,113,28,228,197,239,29,6,110,90,29,54,180,49,29,161,39,225,29,246,0,5,30,182,45,152,30,225,128,150,31,168,20,16,31,180,182,52,32,102,254,202,32,173,251,66,33,80,146,145,33,105,6,102,33,110,72,36,34,143,210,37,34,168,35,159,35,74,73,184,35,174,211,57,36,16,1,242,36,79,179,112,36,125,190,40,37,183,110,52,37,205,8,120,38,61,20,231,38,153,9,250,38,157,45,201,39,32,218,107,39,176,135,104,40,57,180,153,40,115,18,70,40,129,64,251,40,227,69,241,41,147,29,51,42,22,194,126,42,53,239,62,42,113,78,172,42,236,183,165,44,180,249,14,44,253,179,139,45,200,179,54,45,246,191,105,46,47,48,224,46,58,145,91,46,113,130,140,46,116,13,122,46,168,132,200,47,67,130,124,47,176,148,245,48,107,9,12,48,126,251,107,48,158,43,103,48,203,163,141,49,46,132,143,49,225,94,37,50,229,244,221,50,237,50,148,51,99,14,96,51,134,221,81,53,25,68,93,53,65,42,96,55,113,207,86,55,165,182,93,55,222,74,56,56,53,88,169,57,137,211,16,58,133,149,119,58,225,111,164,59,224,203,233,61,108,42,44,63,169,134,229,63,246,127,168,63,252,212,75,64,190,128,193,64,232,203,88,65,50,184,236,65,52,212,203,66,111,229,183,66,243,23,99,67,44,176,127,67,212,252,97,67,254,249,67,68,7,197,68,68,60,201,163,68,202,79,164,68,233,82,132,68,238,176,158,68,238,194,95,68,254,189,71,69,58,109,205,69,121,254,87,70,103,219,169,70,136,75,87,70,204,192,235,71,40,201,19,71,75,123,34,71,90,154,33,71,120,230,53,71,193,179,100,72,223,87,39,73,127,185,68,73,164,93,236,74,97,225,89,74,100,219,207,74,108,114,188,74,114,92,218,74,240,17,214,77,5,25,119,77,22,12,116,78,41,47,104,78,44,86,162,78,116,73,202,78,168,171,224,78,206,228,98,79,0,1,24,79,132,29,100,81,69,239,159,83,6,194,247,83,29,4,86,84,74,93,181,84,123,151,34,84,135,177,114,85,46,220,196,85,160,220,40,85,191,245,237,86,134,63,83,86,196,140,22,87,53,32,2,87,87,34,62,87,98,131,38,87,243,176,21,88,72,18,201,88,209,125,165,90,42,31,72,90,50,199,226,90,84,52,93,90,158,226,238,91,6,51,249,91,21,117,108,91,97,222,36,91,105,187,36,91,215,34,80,92,32,63,118,92,57,81,91,92,76,162,106,92,111,9,129,92,182,54,104,93,85,11,197,94,92,27,92,94,121,206,41,95,39,140,239,96,167,218,53,97,0,180,47,97,19,231,197,97,66,174,26,97,168,37,149,97,183,143,207,98,39,118,191,99,193,170,182,99,222,218,82,99,252,73,99,100,6,109,102,100,16,98,140,100,130,226,226,100,231,137,62,101,75,239,87,101,132,63,87,102,34,195,152,102,99,156,154,103,2,236,68,103,7,218,243,103,207,104,197,104,193,50,67,105,131,128,150,105,153,69,88,105,175,190,108,106,32,173,75,107,99,17,239,107,196,172,166,107,233,173,37,107,254,183,63,109,67,209,33,110,212,13,56,111,7,194,74,111,133,134,107,111,252,58,118,112,63,203,131,112,116,246,43,112,117,168,209,114,54,75,247,114,129,227,184,115,25,187,110,115,176,252,64,116,28,138,59,116,34,78,237,116,96,237,156,116,195,128,29,116,225,149,190,117,237,65,186,118,43,246,213,118,188,237,50,119,48,95,42,120,57,161,4,120,116,117,186,121,194,244,17,122,134,218,191,122,172,24,15,123,135,75,26,123,248,113,198,124,70,105,71,124,119,192,120,124,185,108,235,125,121,227,251,125,203,169,179,125,228,16,161,126,2,202,220,126,7,216,187,126,26,136,14,126,169,28,20,126,171,73,184,126,200,179,32,126,208,137,20,126,226,30,18,126,236,80,188,127,42,149,241,127,109,156,253,127,244,49,88,128,148,167,237,128,157,150,225,130,201,84,54,130,239,21,225,130,252,195,35,131,39,7,143,131,75,252,27,132,70,202,179,132,183,42,199,133,81,51,7,133,246,118,224,134,73,26,97,134,153,75,164,135,142,124,183,135,154,109,68,135,171,144,6,135,207,180,95,136,90,213,252,137,119,234,82,137,226,15,12,138,159,152,41,138,213,30,241,139,6,112,190,139,99,18,149,140,158,85,74,140,229,24,68,141,39,71,110,141,54,212,131,141,241,90,90,142,13,247,81,142,67,136,174,142,184,221,117,142,190,123,88,143,21,28,161,143,99,54,186,143,127,9,118,144,70,76,9,146,189,0,35,147,52,135,100,147,134,202,53,147,147,87,145,147,170,59,207,148,63,53,167,148,181,71,163,148,188,92,212,150,148,135,112,150,225,183,52,151,224,74,221,152,69,138,255,153,102,93,173,153,108,86,20,153,243,85,44,154,8,90,205,154,45,39,10,154,134,243,233,155,54,37,129,155,66,64,24,155,116,75,226,155,146,254,74,156,104,141,12,157,189,79,173,157,215,128,79,158,10,108,42,158,195,232,73,159,97,115,99,159,148,144,62,159,151,118,118,159,164,164,224,160,158,186,200,161,125,64,105,163,52,115,149,163,208,148,59,164,15,223,167,164,61,6,152,164,142,171,217,165,69,76,14,165,81,215,6,165,88,245,93,165,165,195,22,166,60,118,44,166,60,166,54,166,60,207,255,166,185,42,196,166,230,136,104,167,112,61,173,168,174,28,136,169,34,103,85,169,190,14,187,169,255,179,204,171,27,167,208,171,199,182,93,171,228,66,234,172,0,163,211,172,10,243,94,172,30,142,69,172,59,143,53,172,167,115,41,174,114,17,170,174,233,253,208,174,254,78,99,175,73,132,81,175,94,13,102,175,134,101,198,176,74,9,207,176,78,145,193,176,139,120,255,176,193,185,185,177,156,96,95,177,220,124,241,178,115,178,207,179,125,236,16,180,91,229,89,180,96,241,188,181,25,109,29,181,46,228,67,182,1,112,164,182,24,159,237,182,67,110,47,183,64,106,247,183,192,75,42,184,164,57,99,185,20,131,94,186,74,82,188,187,191,233,41,187,243,248,118,188,42,18,108,188,62,205,30,188,62,235,181,188,76,15,2,188,193,35,203,189,52,137,212,189,71,153,57,189,131,224,22,189,192,186,170,189,222,59,156,190,148,10,106,190,228,32,122,192,52,86,158,192,128,94,56,193,19,49,72,193,100,93,17,193,237,145,128,194,52,85,77,194,65,159,102,194,136,21,43,194,179,198,122,194,197,249,253,194,252,209,88,195,180,176,78,195,208,245,58,197,79,178,110,198,59,242,89,198,251,152,213,199,46,232,11,199,52,232,166,199,154,200,179,200,116,246,16,200,182,101,114,200,184,66,106,201,55,125,48,201,95,88,189,201,169,140,245,202,125,33,144,202,205,207,43,203,104,198,126,204,3,137,240,205,96,201,234,205,97,5,232,205,106,124,61,205,244,245,33,206,152,49,179,207,89,44,106,207,184,169,115,208,40,73,162,208,141,227,0,208,202,24,86,208,249,86,85,210,151,222,9,211,43,12,199,211,52,122,59,211,157,24,12,211,163,178,161,213,96,62,39,213,165,35,125,213,215,131,181,213,240,218,132,215,35,95,156,215,184,123,77,215,237,26,124,215,246,44,41,216,142,90,78,216,177,88,57,216,210,99,250,217,122,60,136,219,138,91,137,219,157,247,76,220,5,196,82,220,16,53,61,221,129,219,10,221,160,69,119,222,18,239,141,222,42,165,223,222,180,215,133,223,105,236,229,223,114,129,82,223,229,242,23,223,236,152,100,224,27,215,39,224,82,213,92,225,53,89,150,225,162,63,97,227,102,42,161,227,135,182,132,227,186,47,194,227,215,204,80,228,89,95,217,228,143,102,68,229,215,202,141,230,110,41,246,230,110,58,21,230,209,35,86,231,127,4,207,233,32,164,246,233,229,242,211,233,235,184,129,234,53,0,169,235,102,65,36,235,140,211,193,235,226,230,180,236,69,194,137,236,160,129,160,236,212,87,92,237,107,158,252,237,110,37,83,237,149,34,157,237,252,211,64,238,110,238,220,238,132,239,60,238,226,106,2,238,248,169,231,239,3,56,152,239,250,229,233,240,66,212,109,240,193,35,57,241,3,201,123,241,20,81,145,241,76,189,168,242,81,71,73,242,128,250,51,242,231,70,111,242,231,120,5,242,231,161,55,243,1,188,66,243,191,211,186,243,234,61,235,243,236,108,113,244,100,211,212,244,158,99,204,245,141,202,146,245,154,58,146,245,159,126,81,245,186,81,64,246,75,93,240,246,75,93,240,246,138,240,156,247,38,251,102,247,142,25,100,248,152,36,58,248,231,165,46,249,142,215,189,250,8,239,8,250,25,23,143,250,59,204,130,250,87,139,228,250,134,14,111,252,242,201,168,253,9,210,146,253,36,70,102,254,233,244,168,255,38,24,240,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,21,2,87,151,144,33,126,154,181,34,97,78,22,40,223,98,110,79,164,68,165,79,218,182,104,88,155,43,106,94,176,29,132,111,133,101,44,146,39,194,29,157,105,189,193,186,49,97,39,198,212,128,144,204,96,75,176,225,204,217,55,237,18,130,77,237,231,176,157,240,255,187,224,247,123,128,40,248,140,84,234,254,138,215,1,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,21,2,87,151,144,33,126,154,181,34,97,78,22,40,223,98,110,79,164,68,165,79,218,182,104,88,155,43,106,94,176,29,132,111,133,101,44,146,39,194,29,157,105,189,193,186,49,97,39,198,212,128,144,204,96,75,176,225,204,217,55,237,18,130,77,237,231,176,157,240,255,187,224,247,123,128,40,248,140,84,234,254,138,215,1,0,5,4,98,111,100,121,2,21,2,87,151,144,33,126,154,181,34,97,78,22,40,223,98,110,79,164,68,165,79,218,182,104,88,155,43,106,94,176,29,132,111,133,101,44,146,39,194,29,157,105,189,193,186,49,97,39,198,212,128,144,204,96,75,176,225,204,217,55,237,18,130,77,237,231,176,157,240,255,187,224,247,123,128,40,248,140,84,234,254,138,215,1,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,5,8,113,111,158,116,33,206,112,117,160,165,4,194,81,156,227,205,104,76,185,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,5,8,113,111,158,116,33,206,112,117,160,165,4,194,81,156,227,205,104,76,185,0,5,4,104,116,109,108,2,5,8,113,111,158,116,33,206,112,117,160,165,4,194,81,156,227,205,104,76,185,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,33,6,200,245,29,14,39,176,221,19,49,243,245,21,75,95,121,33,147,60,203,38,170,170,218,39,197,117,230,51,134,174,19,54,159,190,77,56,155,134,1,68,93,93,226,92,225,243,15,98,214,116,205,100,150,76,121,110,103,100,15,120,61,41,242,123,56,73,87,124,129,90,222,129,58,49,45,149,30,93,192,155,135,193,233,160,227,0,138,169,32,197,10,170,236,215,86,182,140,75,202,190,147,216,103,215,176,111,16,221,203,190,61,224,196,1,4,238,199,78,107,239,31,83,147,254,13,48,186,254,53,172,90,0,5,9,98,111,100,121,44,104,116,109,108,2,33,6,200,245,29,14,39,176,221,19,49,243,245,21,75,95,121,33,147,60,203,38,170,170,218,39,197,117,230,51,134,174,19,54,159,190,77,56,155,134,1,68,93,93,226,92,225,243,15,98,214,116,205,100,150,76,121,110,103,100,15,120,61,41,242,123,56,73,87,124,129,90,222,129,58,49,45,149,30,93,192,155,135,193,233,160,227,0,138,169,32,197,10,170,236,215,86,182,140,75,202,190,147,216,103,215,176,111,16,221,203,190,61,224,196,1,4,238,199,78,107,239,31,83,147,254,13,48,186,254,53,172,90,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,6,12,88,119,174,30,218,81,233,146,84,3,47,148,192,24,83,190,81,122,132,208,47,254,205,0,5,4,98,111,100,121,2,6,12,88,119,174,30,218,81,233,146,84,3,47,148,192,24,83,190,81,122,132,208,47,254,205,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,1,167,200,8,68,0,5,4,104,116,109,108,2,1,167,200,8,68,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,128,0,0,0,228,3,167,45,22,6,76,30,159,7,8,75,106,7,165,158,183,11,23,164,213,11,126,188,198,11,188,201,174,11,220,86,75,18,78,106,184,19,105,12,243,20,221,239,44,21,141,118,151,22,61,72,55,22,138,208,230,22,205,113,63,26,185,230,152,26,212,60,216,27,103,228,182,27,113,50,76,27,114,45,173,27,114,161,152,27,121,11,55,28,210,241,238,29,27,85,177,29,114,10,203,30,139,143,102,31,218,156,76,32,25,92,101,33,53,152,199,33,73,189,165,33,130,40,131,33,243,198,120,34,39,69,223,34,128,3,81,37,85,139,147,38,52,91,10,40,112,199,128,40,206,44,158,41,130,190,43,41,132,101,13,41,188,40,133,42,149,21,120,43,66,137,207,43,66,152,69,43,149,12,30,44,169,115,146,46,131,177,88,46,222,134,155,48,135,199,127,49,160,230,114,50,43,229,233,52,148,98,7,54,30,164,103,54,204,189,40,54,242,138,28,55,34,47,104,55,174,104,3,55,247,251,216,56,164,101,152,56,188,44,150,57,230,102,125,60,105,217,183,60,210,28,191,60,230,178,139,61,28,15,79,61,87,219,65,62,34,72,155,62,232,254,18,63,133,138,7,65,80,224,4,65,237,76,156,66,69,126,108,69,172,31,59,69,197,238,3,71,71,149,8,72,29,174,126,72,187,139,219,73,88,123,145,73,140,174,208,73,251,232,204,76,156,205,203,76,158,10,105,76,169,29,39,76,189,0,200,78,50,209,136,78,235,193,132,79,255,253,108,81,196,73,32,83,150,130,122,84,16,106,120,85,3,251,12,87,102,239,204,89,227,3,123,89,229,67,60,90,104,204,182,91,89,200,216,91,199,105,188,91,226,203,228,92,157,132,162,92,178,201,101,92,235,193,56,96,251,216,101,97,146,11,141,98,194,47,193,98,253,100,21,99,203,233,118,100,38,48,206,100,127,160,175,101,170,114,235,102,52,33,38,103,34,217,27,103,37,136,248,103,164,76,36,106,35,84,57,112,22,206,68,112,152,141,167,113,195,242,252,114,64,15,190,115,247,243,47,116,182,154,5,121,75,208,180,121,207,143,59,124,30,153,248,124,211,174,157,126,77,48,200,126,144,41,74,126,219,255,138,127,28,39,146,127,46,227,81,127,59,113,117,127,188,110,130,128,88,158,140,128,140,150,60,129,167,230,26,130,19,141,250,130,148,0,128,131,129,254,154,132,194,55,7,135,243,251,38,137,8,130,79,137,225,128,229,138,53,20,105,139,95,45,143,139,102,65,180,141,112,87,223,143,32,181,112,146,2,229,89,148,148,153,209,148,183,201,202,148,183,201,212,149,164,210,215,151,14,85,153,151,235,132,25,153,102,73,133,153,145,82,165,153,213,229,246,157,36,43,127,158,10,135,29,158,90,208,159,158,175,245,103,159,77,1,92,160,142,178,106,167,27,129,162,167,241,49,47,170,152,86,95,171,93,227,10,173,15,201,253,173,153,224,22,175,160,5,151,178,32,38,207,179,78,199,226,181,190,175,164,182,203,26,59,184,249,107,226,185,35,16,108,192,16,82,121,192,120,85,207,195,88,176,17,195,247,105,53,196,186,165,82,198,14,110,66,199,143,196,118,200,35,110,110,200,210,71,165,201,74,110,204,204,145,52,33,205,239,175,106,206,52,228,180,207,15,236,238,209,155,121,89,210,23,18,240,210,251,3,14,211,155,250,51,213,134,46,122,213,134,46,122,216,66,87,119,217,7,86,67,219,12,58,142,220,156,147,104,221,101,108,240,226,157,128,154,226,211,190,245,227,135,52,32,228,115,236,177,228,152,140,252,228,234,62,28,229,77,192,83,229,98,113,118,232,47,35,55,234,67,9,202,234,227,64,206,241,19,192,48,242,178,141,171,242,231,71,208,242,231,144,116,244,25,198,25,245,70,46,141,247,108,94,81,247,115,97,81,247,137,176,196,247,251,70,195,249,107,63,148,249,113,109,183,249,149,10,35,250,57,107,133,251,28,254,246,251,42,81,214,255,82,99,221,0,5,9,98,111,100,121,44,104,116,109,108,2,128,0,0,0,227,3,167,45,22,6,76,30,159,7,8,75,106,7,165,158,183,11,23,164,213,11,126,188,198,11,188,201,174,11,220,86,75,18,78,106,184,19,105,12,243,20,221,239,44,21,141,118,151,22,61,72,55,22,138,208,230,22,205,113,63,26,185,230,152,26,212,60,216,27,103,228,182,27,113,50,76,27,114,45,173,27,114,161,152,27,121,11,55,28,210,241,238,29,27,85,177,29,114,10,203,30,139,143,102,31,218,156,76,32,25,92,101,33,53,152,199,33,73,189,165,33,130,40,131,33,243,198,120,34,39,69,223,34,128,3,81,37,85,139,147,38,52,91,10,40,112,199,128,40,206,44,158,41,130,190,43,41,132,101,13,41,188,40,133,42,149,21,120,43,66,137,207,43,66,152,69,43,149,12,30,44,169,115,146,46,131,177,88,46,222,134,155,48,135,199,127,49,160,230,114,50,43,229,233,52,148,98,7,54,30,164,103,54,204,189,40,54,242,138,28,55,34,47,104,55,174,104,3,55,247,251,216,56,164,101,152,57,230,102,125,60,105,217,183,60,210,28,191,60,230,178,139,61,28,15,79,61,87,219,65,62,34,72,155,62,232,254,18,63,133,138,7,65,80,224,4,65,237,76,156,66,69,126,108,69,172,31,59,69,197,238,3,71,71,149,8,72,29,174,126,72,187,139,219,73,88,123,145,73,140,174,208,73,251,232,204,76,156,205,203,76,158,10,105,76,169,29,39,76,189,0,200,78,50,209,136,78,235,193,132,79,255,253,108,81,196,73,32,83,150,130,122,84,16,106,120,85,3,251,12,87,102,239,204,89,227,3,123,89,229,67,60,90,104,204,182,91,89,200,216,91,199,105,188,91,226,203,228,92,157,132,162,92,178,201,101,92,235,193,56,96,251,216,101,97,146,11,141,98,194,47,193,98,253,100,21,99,203,233,118,100,38,48,206,100,127,160,175,101,170,114,235,102,52,33,38,103,34,217,27,103,37,136,248,103,164,76,36,106,35,84,57,112,22,206,68,112,152,141,167,113,195,242,252,114,64,15,190,115,247,243,47,116,182,154,5,121,75,208,180,121,207,143,59,124,30,153,248,124,211,174,157,126,77,48,200,126,144,41,74,126,219,255,138,127,28,39,146,127,46,227,81,127,59,113,117,127,188,110,130,128,88,158,140,128,140,150,60,129,167,230,26,130,19,141,250,130,148,0,128,131,129,254,154,132,194,55,7,135,243,251,38,137,8,130,79,137,225,128,229,138,53,20,105,139,95,45,143,139,102,65,180,141,112,87,223,143,32,181,112,146,2,229,89,148,148,153,209,148,183,201,202,148,183,201,212,149,164,210,215,151,14,85,153,151,235,132,25,153,102,73,133,153,145,82,165,153,213,229,246,157,36,43,127,158,10,135,29,158,90,208,159,158,175,245,103,159,77,1,92,160,142,178,106,167,27,129,162,167,241,49,47,170,152,86,95,171,93,227,10,173,15,201,253,173,153,224,22,175,160,5,151,178,32,38,207,179,78,199,226,181,190,175,164,182,203,26,59,184,249,107,226,185,35,16,108,192,16,82,121,192,120,85,207,195,88,176,17,195,247,105,53,196,186,165,82,198,14,110,66,199,143,196,118,200,35,110,110,200,210,71,165,201,74,110,204,204,145,52,33,205,239,175,106,206,52,228,180,207,15,236,238,209,155,121,89,210,23,18,240,210,251,3,14,211,155,250,51,213,134,46,122,213,134,46,122,216,66,87,119,217,7,86,67,219,12,58,142,220,156,147,104,221,101,108,240,226,157,128,154,226,211,190,245,227,135,52,32,228,115,236,177,228,152,140,252,228,234,62,28,229,77,192,83,229,98,113,118,232,47,35,55,234,67,9,202,234,227,64,206,241,19,192,48,242,178,141,171,242,231,71,208,242,231,144,116,244,25,198,25,245,70,46,141,247,108,94,81,247,115,97,81,247,137,176,196,247,251,70,195,249,107,63,148,249,113,109,183,249,149,10,35,250,57,107,133,251,28,254,246,251,42,81,214,255,82,99,221,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,9,3,98,206,168,31,242,44,126,60,86,206,245,86,68,195,212,126,232,52,1,127,120,14,204,141,150,235,150,221,77,163,218,227,69,123,143,0,5,4,98,111,100,121,2,9,3,98,206,168,31,242,44,126,60,86,206,245,86,68,195,212,126,232,52,1,127,120,14,204,141,150,235,150,221,77,163,218,227,69,123,143,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,99,108,105,45,98,97,114,45,112,111,112,117,112,2,36,2,193,110,136,20,223,60,26,24,217,80,179,27,253,127,172,28,207,173,144,46,10,100,26,52,8,58,104,71,253,58,213,81,96,75,157,92,202,34,199,95,63,145,105,95,109,221,154,97,172,129,171,101,220,46,99,103,61,129,110,103,232,199,68,111,172,40,45,111,172,40,45,122,226,95,81,124,194,19,107,127,46,213,3,127,184,205,190,133,252,145,241,151,207,82,183,162,67,98,46,163,1,218,93,166,77,225,5,176,53,135,228,177,74,158,188,185,198,174,6,198,249,145,213,217,124,62,119,218,149,249,100,220,104,69,231,234,51,41,10,245,185,156,95,8,1,19,46,99,108,105,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,36,2,193,110,136,20,223,60,26,24,217,80,179,27,253,127,172,28,207,173,144,46,10,100,26,52,8,58,104,71,253,58,213,81,96,75,157,92,202,34,199,95,63,145,105,95,109,221,154,97,172,129,171,101,220,46,99,103,61,129,110,103,232,199,68,111,172,40,45,111,172,40,45,122,226,95,81,124,194,19,107,127,46,213,3,127,184,205,190,133,252,145,241,151,207,82,183,162,67,98,46,163,1,218,93,166,77,225,5,176,53,135,228,177,74,158,188,185,198,174,6,198,249,145,213,217,124,62,119,218,149,249,100,220,104,69,231,234,51,41,10,245,185,156,95,0,5,9,98,111,100,121,44,104,116,109,108,2,36,2,193,110,136,20,223,60,26,24,217,80,179,27,253,127,172,28,207,173,144,46,10,100,26,52,8,58,104,71,253,58,213,81,96,75,157,92,202,34,199,95,63,145,105,95,109,221,154,97,172,129,171,101,220,46,99,103,61,129,110,103,232,199,68,111,172,40,45,111,172,40,45,122,226,95,81,124,194,19,107,127,46,213,3,127,184,205,190,133,252,145,241,151,207,82,183,162,67,98,46,163,1,218,93,166,77,225,5,176,53,135,228,177,74,158,188,185,198,174,6,198,249,145,213,217,124,62,119,218,149,249,100,220,104,69,231,234,51,41,10,245,185,156,95,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,28,46,119,116,45,99,108,105,45,99,111,111,107,105,101,45,98,97,114,45,99,111,110,116,97,105,110,101,114,2,36,24,115,7,162,26,218,88,74,38,174,238,113,40,222,116,61,43,104,117,65,59,250,247,207,67,12,28,31,74,45,49,210,77,115,139,11,79,222,215,228,83,83,147,34,88,122,94,174,93,134,111,117,98,8,66,31,100,117,35,95,120,26,136,243,127,239,114,107,129,234,159,217,148,47,250,57,163,208,45,30,166,224,170,145,170,86,44,25,174,116,2,84,177,169,103,210,180,96,241,188,189,173,243,159,197,152,5,95,201,245,150,50,210,46,11,226,212,82,238,242,213,48,75,228,223,127,1,43,224,246,176,127,225,77,10,234,239,161,52,88,247,62,63,34,0,5,9,98,111,100,121,44,104,116,109,108,2,36,24,115,7,162,26,218,88,74,38,174,238,113,40,222,116,61,43,104,117,65,59,250,247,207,67,12,28,31,74,45,49,210,77,115,139,11,79,222,215,228,83,83,147,34,88,122,94,174,93,134,111,117,98,8,66,31,100,117,35,95,120,26,136,243,127,239,114,107,129,234,159,217,148,47,250,57,163,208,45,30,166,224,170,145,170,86,44,25,174,116,2,84,177,169,103,210,180,96,241,188,189,173,243,159,197,152,5,95,201,245,150,50,210,46,11,226,212,82,238,242,213,48,75,228,223,127,1,43,224,246,176,127,225,77,10,234,239,161,52,88,247,62,63,34,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,28,114,99,44,32,109,111,100,97,108,45,99,97,99,115,112,45,111,112,101,110,44,32,44,32,115,116,97,121,2,128,0,0,1,76,0,87,220,153,1,10,88,193,1,118,228,230,2,151,104,146,2,202,6,0,3,121,138,4,3,253,152,100,4,35,250,45,4,47,193,224,4,70,253,126,5,13,65,175,5,139,146,180,5,220,205,241,6,63,146,149,7,148,17,163,8,243,202,186,9,108,246,224,9,156,41,198,11,126,135,182,12,56,129,223,13,31,70,195,17,77,49,165,17,180,18,251,17,181,114,157,18,73,148,107,18,176,103,255,19,231,95,60,20,24,205,219,21,30,236,14,21,239,81,57,22,2,241,121,22,72,67,237,22,156,206,26,23,175,138,206,24,161,41,184,26,111,235,254,26,215,178,193,27,16,40,190,27,75,14,10,29,129,102,64,29,161,149,69,29,173,222,142,30,30,76,245,31,132,224,189,32,32,171,71,32,62,3,162,32,194,55,154,33,116,186,199,33,240,149,90,34,31,76,120,34,135,31,194,37,110,44,54,37,231,160,134,38,112,56,14,39,84,48,173,39,254,146,180,40,227,138,139,42,115,177,202,42,121,130,75,42,155,109,136,43,2,72,69,43,155,130,14,46,60,88,44,47,67,33,12,47,132,50,14,49,77,55,250,49,132,29,170,49,158,216,52,50,226,21,22,51,46,30,44,52,113,146,79,52,150,208,15,55,175,195,152,56,8,67,47,58,219,18,204,59,126,45,243,60,136,93,5,60,223,137,42,60,252,247,229,61,104,137,70,63,31,161,142,63,160,198,73,63,166,216,57,64,47,43,244,64,143,165,40,64,162,222,78,65,40,121,101,66,34,133,131,66,185,217,93,67,196,182,242,68,172,177,84,68,179,9,194,68,217,142,62,70,38,193,2,70,70,186,252,70,250,124,254,71,87,70,194,72,76,19,128,73,152,96,219,73,182,88,61,73,208,32,23,74,99,13,156,75,64,248,157,75,215,211,200,77,146,198,41,78,105,31,182,78,142,123,245,78,213,18,81,79,162,156,251,80,198,77,222,81,247,144,196,82,67,213,116,82,71,185,181,82,73,76,153,85,196,74,199,86,95,91,64,89,213,250,83,90,12,73,196,90,73,43,147,91,203,246,237,91,206,149,220,91,251,44,115,92,25,96,128,92,86,219,185,93,182,100,111,93,209,26,56,94,23,97,223,95,66,95,223,95,237,158,247,96,149,122,63,97,90,2,150,98,50,219,220,99,12,40,94,100,15,120,168,100,84,205,4,101,120,38,177,102,1,87,10,102,95,190,125,102,99,254,164,103,30,101,237,103,37,175,106,103,153,217,91,104,205,53,124,105,202,100,8,107,237,103,137,108,116,181,224,108,200,58,194,109,212,27,231,110,30,31,202,110,74,62,82,110,82,38,219,110,99,22,180,110,210,191,228,110,244,22,134,111,124,19,130,112,18,69,249,113,125,136,178,114,83,144,186,115,47,15,124,116,44,108,145,117,19,217,24,117,48,148,83,117,165,232,28,118,83,181,121,119,7,21,93,119,182,102,63,120,29,223,182,121,102,255,73,121,218,85,149,123,92,204,38,124,34,157,108,125,44,110,136,125,169,9,7,125,195,236,38,126,3,137,233,126,57,58,152,126,61,114,125,126,193,90,196,126,214,56,198,128,81,6,21,128,133,187,218,128,185,218,80,129,108,114,60,130,8,240,156,131,61,230,192,131,168,16,12,131,204,56,65,133,16,147,14,133,177,31,195,133,224,37,59,134,135,228,250,136,37,57,213,136,205,233,179,137,227,69,159,138,13,160,33,140,127,154,86,141,76,68,212,141,121,100,148,142,3,145,137,142,18,230,110,143,125,89,127,143,125,122,56,143,128,5,56,143,128,99,212,143,129,251,64,144,3,209,128,144,88,21,188,144,216,149,55,145,127,202,86,147,23,239,239,147,45,124,71,147,73,172,71,147,224,217,90,148,208,9,225,148,218,99,197,149,216,56,136,150,46,145,117,150,137,229,79,151,27,92,103,152,66,158,77,154,17,177,213,154,136,135,189,154,143,217,151,156,139,249,206,156,194,218,224,158,174,76,168,160,231,21,144,161,171,189,109,161,225,123,246,162,55,37,165,162,66,102,51,163,4,137,235,164,172,180,250,165,135,3,148,166,29,111,213,166,118,145,138,166,202,213,124,167,55,130,196,167,62,71,45,167,91,97,107,171,103,70,100,172,22,21,163,175,171,46,11,176,227,181,192,177,27,45,134,178,111,40,25,179,37,211,105,179,106,247,106,181,131,75,186,182,59,58,227,182,63,201,169,183,154,112,151,183,186,129,16,183,244,16,121,187,155,250,221,187,247,150,151,189,155,25,225,189,174,39,11,191,61,252,103,191,163,159,173,193,14,207,7,193,62,27,223,196,168,189,243,197,31,212,51,197,39,76,32,197,46,145,59,197,79,198,212,198,51,36,154,198,70,128,132,198,78,18,152,198,161,198,201,199,45,163,39,199,144,26,75,200,167,5,217,200,201,139,135,202,44,104,174,202,190,91,206,203,36,248,63,203,175,90,134,204,201,84,89,206,153,167,76,207,227,204,63,210,97,113,173,211,190,20,253,212,149,252,172,213,216,108,39,215,87,211,101,217,245,199,159,218,45,177,39,218,102,70,82,219,80,76,147,220,55,130,150,220,143,61,126,222,130,208,132,222,198,99,60,223,113,243,34,226,149,47,248,227,35,242,127,227,87,72,182,228,26,110,43,228,91,208,140,230,85,216,192,231,124,147,59,231,209,2,189,234,100,246,233,235,122,219,42,235,187,53,16,235,254,99,134,236,176,254,198,236,252,152,212,237,53,139,89,237,118,144,120,238,143,5,247,239,17,224,114,240,21,133,125,240,197,219,27,241,134,23,25,241,154,208,250,242,215,134,248,242,236,173,245,243,59,139,194,243,141,22,68,244,98,237,34,244,99,31,11,246,14,28,147,248,73,15,141,249,197,165,151,251,136,16,61,253,139,18,25,253,231,84,141,254,133,158,182,255,111,60,91,2,1,27,114,99,44,32,109,111,100,97,108,45,99,97,99,115,112,45,98,111,120,44,32,44,32,115,116,97,121,2,128,0,0,1,76,0,87,220,153,1,10,88,193,1,118,228,230,2,151,104,146,2,202,6,0,3,121,138,4,3,253,152,100,4,35,250,45,4,47,193,224,4,70,253,126,5,13,65,175,5,139,146,180,5,220,205,241,6,63,146,149,7,148,17,163,8,243,202,186,9,108,246,224,9,156,41,198,11,126,135,182,12,56,129,223,13,31,70,195,17,77,49,165,17,180,18,251,17,181,114,157,18,73,148,107,18,176,103,255,19,231,95,60,20,24,205,219,21,30,236,14,21,239,81,57,22,2,241,121,22,72,67,237,22,156,206,26,23,175,138,206,24,161,41,184,26,111,235,254,26,215,178,193,27,16,40,190,27,75,14,10,29,129,102,64,29,161,149,69,29,173,222,142,30,30,76,245,31,132,224,189,32,32,171,71,32,62,3,162,32,194,55,154,33,116,186,199,33,240,149,90,34,31,76,120,34,135,31,194,37,110,44,54,37,231,160,134,38,112,56,14,39,84,48,173,39,254,146,180,40,227,138,139,42,115,177,202,42,121,130,75,42,155,109,136,43,2,72,69,43,155,130,14,46,60,88,44,47,67,33,12,47,132,50,14,49,77,55,250,49,132,29,170,49,158,216,52,50,226,21,22,51,46,30,44,52,113,146,79,52,150,208,15,55,175,195,152,56,8,67,47,58,219,18,204,59,126,45,243,60,136,93,5,60,223,137,42,60,252,247,229,61,104,137,70,63,31,161,142,63,160,198,73,63,166,216,57,64,47,43,244,64,143,165,40,64,162,222,78,65,40,121,101,66,34,133,131,66,185,217,93,67,196,182,242,68,172,177,84,68,179,9,194,68,217,142,62,70,38,193,2,70,70,186,252,70,250,124,254,71,87,70,194,72,76,19,128,73,152,96,219,73,182,88,61,73,208,32,23,74,99,13,156,75,64,248,157,75,215,211,200,77,146,198,41,78,105,31,182,78,142,123,245,78,213,18,81,79,162,156,251,80,198,77,222,81,247,144,196,82,67,213,116,82,71,185,181,82,73,76,153,85,196,74,199,86,95,91,64,89,213,250,83,90,12,73,196,90,73,43,147,91,203,246,237,91,206,149,220,91,251,44,115,92,25,96,128,92,86,219,185,93,182,100,111,93,209,26,56,94,23,97,223,95,66,95,223,95,237,158,247,96,149,122,63,97,90,2,150,98,50,219,220,99,12,40,94,100,15,120,168,100,84,205,4,101,120,38,177,102,1,87,10,102,95,190,125,102,99,254,164,103,30,101,237,103,37,175,106,103,153,217,91,104,205,53,124,105,202,100,8,107,237,103,137,108,116,181,224,108,200,58,194,109,212,27,231,110,30,31,202,110,74,62,82,110,82,38,219,110,99,22,180,110,210,191,228,110,244,22,134,111,124,19,130,112,18,69,249,113,125,136,178,114,83,144,186,115,47,15,124,116,44,108,145,117,19,217,24,117,48,148,83,117,165,232,28,118,83,181,121,119,7,21,93,119,182,102,63,120,29,223,182,121,102,255,73,121,218,85,149,123,92,204,38,124,34,157,108,125,44,110,136,125,169,9,7,125,195,236,38,126,3,137,233,126,57,58,152,126,61,114,125,126,193,90,196,126,214,56,198,128,81,6,21,128,133,187,218,128,185,218,80,129,108,114,60,130,8,240,156,131,61,230,192,131,168,16,12,131,204,56,65,133,16,147,14,133,177,31,195,133,224,37,59,134,135,228,250,136,37,57,213,136,205,233,179,137,227,69,159,138,13,160,33,140,127,154,86,141,76,68,212,141,121,100,148,142,3,145,137,142,18,230,110,143,125,89,127,143,125,122,56,143,128,5,56,143,128,99,212,143,129,251,64,144,3,209,128,144,88,21,188,144,216,149,55,145,127,202,86,147,23,239,239,147,45,124,71,147,73,172,71,147,224,217,90,148,208,9,225,148,218,99,197,149,216,56,136,150,46,145,117,150,137,229,79,151,27,92,103,152,66,158,77,154,17,177,213,154,136,135,189,154,143,217,151,156,139,249,206,156,194,218,224,158,174,76,168,160,231,21,144,161,171,189,109,161,225,123,246,162,55,37,165,162,66,102,51,163,4,137,235,164,172,180,250,165,135,3,148,166,29,111,213,166,118,145,138,166,202,213,124,167,55,130,196,167,62,71,45,167,91,97,107,171,103,70,100,172,22,21,163,175,171,46,11,176,227,181,192,177,27,45,134,178,111,40,25,179,37,211,105,179,106,247,106,181,131,75,186,182,59,58,227,182,63,201,169,183,154,112,151,183,186,129,16,183,244,16,121,187,155,250,221,187,247,150,151,189,155,25,225,189,174,39,11,191,61,252,103,191,163,159,173,193,14,207,7,193,62,27,223,196,168,189,243,197,31,212,51,197,39,76,32,197,46,145,59,197,79,198,212,198,51,36,154,198,70,128,132,198,78,18,152,198,161,198,201,199,45,163,39,199,144,26,75,200,167,5,217,200,201,139,135,202,44,104,174,202,190,91,206,203,36,248,63,203,175,90,134,204,201,84,89,206,153,167,76,207,227,204,63,210,97,113,173,211,190,20,253,212,149,252,172,213,216,108,39,215,87,211,101,217,245,199,159,218,45,177,39,218,102,70,82,219,80,76,147,220,55,130,150,220,143,61,126,222,130,208,132,222,198,99,60,223,113,243,34,226,149,47,248,227,35,242,127,227,87,72,182,228,26,110,43,228,91,208,140,230,85,216,192,231,124,147,59,231,209,2,189,234,100,246,233,235,122,219,42,235,187,53,16,235,254,99,134,236,176,254,198,236,252,152,212,237,53,139,89,237,118,144,120,238,143,5,247,239,17,224,114,240,21,133,125,240,197,219,27,241,134,23,25,241,154,208,250,242,215,134,248,242,236,173,245,243,59,139,194,243,141,22,68,244,98,237,34,244,99,31,11,246,14,28,147,248,73,15,141,249,197,165,151,251,136,16,61,253,139,18,25,253,231,84,141,254,133,158,182,255,111,60,91,8,1,21,46,97,118,97,100,97,45,102,111,111,116,101,114,45,115,99,114,105,112,116,115,2,3,150,132,237,85,161,110,12,52,247,168,11,198,0,5,9,98,111,100,121,44,104,116,109,108,2,3,150,132,237,85,161,110,12,52,247,168,11,198,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,109,111,100,97,108,2,40,7,40,111,62,8,86,212,82,9,75,42,243,10,229,226,23,23,124,98,162,48,50,228,33,53,223,166,223,58,201,54,18,62,207,13,234,82,155,209,55,89,215,159,96,89,226,116,131,90,160,61,165,93,123,67,174,117,52,105,24,124,226,226,31,131,181,205,125,136,132,131,48,140,228,184,155,148,220,136,194,164,150,9,185,170,207,221,200,173,128,224,136,174,94,177,182,190,148,116,1,197,8,125,148,197,30,80,180,210,1,62,179,218,73,211,30,219,43,142,23,219,181,173,4,220,136,233,64,221,65,143,14,222,223,19,181,225,109,60,0,233,26,40,213,234,36,93,207,246,229,57,98,247,231,49,126,252,122,25,34,8,1,20,46,82,101,97,99,116,77,111,100,97,108,95,95,79,118,101,114,108,97,121,2,15,88,112,54,40,104,133,145,99,104,223,38,60,126,6,8,105,136,225,39,221,139,169,155,36,178,89,29,64,183,176,38,200,203,215,13,17,211,243,109,218,218,93,176,107,220,217,224,195,232,235,63,23,237,21,70,213,254,171,46,185,0,5,9,98,111,100,121,44,104,116,109,108,2,15,88,112,54,40,104,133,145,99,104,223,38,60,126,6,8,105,136,225,39,221,139,169,155,36,178,89,29,64,183,176,38,200,203,215,13,17,211,243,109,218,218,93,176,107,220,217,224,195,232,235,63,23,237,21,70,213,254,171,46,185,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,7,46,109,102,112,45,98,103,2,80,0,195,0,65,3,56,150,59,9,74,196,39,10,208,219,14,17,210,140,65,19,128,44,157,23,226,177,252,24,225,43,129,27,116,241,193,27,121,172,2,28,96,22,103,29,197,129,88,33,240,107,54,38,164,20,135,43,249,52,185,49,120,196,222,51,51,235,214,62,166,157,77,62,166,157,77,63,25,177,19,67,114,204,197,74,112,19,98,76,14,190,147,79,57,25,198,88,125,43,186,88,174,81,90,90,235,92,156,91,42,36,211,94,186,205,214,95,34,189,170,96,14,92,244,98,115,37,96,101,142,22,138,110,188,35,218,116,44,82,9,117,68,136,191,126,146,83,20,126,190,36,16,129,107,136,116,130,57,178,103,135,171,0,153,139,198,29,131,141,231,160,134,145,209,227,21,148,186,121,184,149,170,16,207,150,22,4,135,150,243,26,79,151,213,234,221,157,61,68,182,160,39,245,184,162,92,82,22,163,74,208,59,166,66,45,106,166,254,170,134,167,188,255,207,168,204,60,32,179,145,19,98,181,51,144,205,183,73,208,242,187,183,101,96,187,226,192,134,189,7,11,230,190,31,122,89,196,89,255,137,197,18,244,20,197,228,31,55,200,55,255,176,203,182,199,209,207,12,88,122,230,166,40,145,235,155,129,177,237,75,195,56,242,133,136,71,243,24,88,171,243,128,54,166,243,130,110,81,244,50,152,72,248,127,174,150,252,52,196,153,8,1,9,46,109,102,112,45,119,114,97,112,2,80,0,195,0,65,3,56,150,59,9,74,196,39,10,208,219,14,17,210,140,65,19,128,44,157,23,226,177,252,24,225,43,129,27,116,241,193,27,121,172,2,28,96,22,103,29,197,129,88,33,240,107,54,38,164,20,135,43,249,52,185,49,120,196,222,51,51,235,214,62,166,157,77,62,166,157,77,63,25,177,19,67,114,204,197,74,112,19,98,76,14,190,147,79,57,25,198,88,125,43,186,88,174,81,90,90,235,92,156,91,42,36,211,94,186,205,214,95,34,189,170,96,14,92,244,98,115,37,96,101,142,22,138,110,188,35,218,116,44,82,9,117,68,136,191,126,146,83,20,126,190,36,16,129,107,136,116,130,57,178,103,135,171,0,153,139,198,29,131,141,231,160,134,145,209,227,21,148,186,121,184,149,170,16,207,150,22,4,135,150,243,26,79,151,213,234,221,157,61,68,182,160,39,245,184,162,92,82,22,163,74,208,59,166,66,45,106,166,254,170,134,167,188,255,207,168,204,60,32,179,145,19,98,181,51,144,205,183,73,208,242,187,183,101,96,187,226,192,134,189,7,11,230,190,31,122,89,196,89,255,137,197,18,244,20,197,228,31,55,200,55,255,176,203,182,199,209,207,12,88,122,230,166,40,145,235,155,129,177,237,75,195,56,242,133,136,71,243,24,88,171,243,128,54,166,243,130,110,81,244,50,152,72,248,127,174,150,252,52,196,153,0,5,9,98,111,100,121,44,104,116,109,108,2,80,0,195,0,65,3,56,150,59,9,74,196,39,10,208,219,14,17,210,140,65,19,128,44,157,23,226,177,252,24,225,43,129,27,116,241,193,27,121,172,2,28,96,22,103,29,197,129,88,33,240,107,54,38,164,20,135,43,249,52,185,49,120,196,222,51,51,235,214,62,166,157,77,62,166,157,77,63,25,177,19,67,114,204,197,74,112,19,98,76,14,190,147,79,57,25,198,88,125,43,186,88,174,81,90,90,235,92,156,91,42,36,211,94,186,205,214,95,34,189,170,96,14,92,244,98,115,37,96,101,142,22,138,110,188,35,218,116,44,82,9,117,68,136,191,126,146,83,20,126,190,36,16,129,107,136,116,130,57,178,103,135,171,0,153,139,198,29,131,141,231,160,134,145,209,227,21,148,186,121,184,149,170,16,207,150,22,4,135,150,243,26,79,151,213,234,221,157,61,68,182,160,39,245,184,162,92,82,22,163,74,208,59,166,66,45,106,166,254,170,134,167,188,255,207,168,204,60,32,179,145,19,98,181,51,144,205,183,73,208,242,187,183,101,96,187,226,192,134,189,7,11,230,190,31,122,89,196,89,255,137,197,18,244,20,197,228,31,55,200,55,255,176,203,182,199,209,207,12,88,122,230,166,40,145,235,155,129,177,237,75,195,56,242,133,136,71,243,24,88,171,243,128,54,166,243,130,110,81,244,50,152,72,248,127,174,150,252,52,196,153,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,102,97,110,99,121,98,111,120,45,99,111,110,116,97,105,110,101,114,2,55,0,99,47,153,4,219,32,70,5,182,109,174,5,192,7,26,6,250,76,136,7,153,25,36,11,213,178,139,15,62,113,70,21,184,230,216,24,247,62,93,34,8,140,130,39,24,143,222,43,52,225,38,44,89,133,34,51,16,39,167,59,234,243,159,63,178,99,248,73,88,219,254,82,105,45,14,82,134,177,244,99,150,16,97,100,185,135,255,103,59,25,21,109,153,55,92,110,98,229,139,114,160,169,34,116,144,78,56,121,3,13,180,128,118,152,42,129,187,196,9,129,195,142,62,138,123,195,188,139,136,152,175,141,7,55,54,141,30,182,28,154,124,26,18,154,226,1,244,156,25,152,97,174,169,214,188,181,160,98,194,181,172,157,106,182,113,21,201,187,107,183,143,191,154,69,166,196,160,167,166,204,117,4,206,204,165,5,20,210,74,249,203,216,203,211,117,221,31,91,122,221,133,32,133,225,254,24,138,228,227,247,156,240,14,223,56,251,57,81,140,0,5,9,98,111,100,121,44,104,116,109,108,2,55,0,99,47,153,4,219,32,70,5,182,109,174,5,192,7,26,6,250,76,136,7,153,25,36,11,213,178,139,15,62,113,70,21,184,230,216,24,247,62,93,34,8,140,130,39,24,143,222,43,52,225,38,44,89,133,34,51,16,39,167,59,234,243,159,63,178,99,248,73,88,219,254,82,105,45,14,82,134,177,244,99,150,16,97,100,185,135,255,103,59,25,21,109,153,55,92,110,98,229,139,114,160,169,34,116,144,78,56,121,3,13,180,128,118,152,42,129,187,196,9,129,195,142,62,138,123,195,188,139,136,152,175,141,7,55,54,141,30,182,28,154,124,26,18,154,226,1,244,156,25,152,97,174,169,214,188,181,160,98,194,181,172,157,106,182,113,21,201,187,107,183,143,191,154,69,166,196,160,167,166,204,117,4,206,204,165,5,20,210,74,249,203,216,203,211,117,221,31,91,122,221,133,32,133,225,254,24,138,228,227,247,156,240,14,223,56,251,57,81,140,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,109,111,100,95,99,109,115,95,97,99,99,101,112,116,95,116,97,103,115,2,8,70,3,40,196,91,229,193,158,125,248,158,157,145,138,79,93,154,121,213,22,233,50,103,183,239,97,109,164,249,17,2,22,0,5,9,98,111,100,121,44,104,116,109,108,2,8,70,3,40,196,91,229,193,158,125,248,158,157,145,138,79,93,154,121,213,22,233,50,103,183,239,97,109,164,249,17,2,22,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,166,254,124,238,16,1,20,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,111,100,97,108,2,1,35,136,149,138,8,1,15,46,109,111,100,97,108,115,45,111,118,101,114,108,97,121,2,1,35,136,149,138,0,5,4,98,111,100,121,2,1,35,136,149,138,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,11,35,99,109,112,119,114,97,112,112,101,114,2,1,194,197,253,35,0,5,31,98,111,100,121,91,115,116,121,108,101,61,34,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,34,93,2,1,194,197,253,35,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,2,1,42,115,101,116,44,32,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,67,111,110,115,101,110,116,44,32,116,114,117,101,70,117,110,99,2,1,194,197,253,35,8,1,12,46,67,111,111,107,105,101,77,111,100,97,108,2,1,152,27,41,35,8,1,23,46,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,79,118,101,114,108,97,121,2,1,152,27,41,35,0,5,4,98,111,100,121,2,1,152,27,41,35,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,115,45,111,118,101,114,108,97,121,2,19,3,5,51,109,3,82,224,220,8,180,38,64,16,252,172,138,30,21,95,178,44,138,125,163,72,187,224,112,124,159,245,197,134,14,41,205,138,160,250,148,141,171,62,131,154,183,180,234,163,221,214,143,201,157,126,158,207,19,174,68,228,5,146,124,233,88,1,85,237,27,226,97,254,66,53,38,0,5,4,104,116,109,108,2,19,3,5,51,109,3,82,224,220,8,180,38,64,16,252,172,138,30,21,95,178,44,138,125,163,72,187,224,112,124,159,245,197,134,14,41,205,138,160,250,148,141,171,62,131,154,183,180,234,163,221,214,143,201,157,126,158,207,19,174,68,228,5,146,124,233,88,1,85,237,27,226,97,254,66,53,38,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,14,46,98,97,115,105,99,76,105,103,104,116,98,111,120,2,23,0,40,148,240,5,109,73,168,8,65,218,150,9,9,47,11,10,175,94,122,13,35,108,254,19,169,104,151,24,172,161,156,30,44,193,8,71,28,115,85,88,217,243,191,89,108,38,254,94,170,222,81,109,17,178,33,129,90,234,12,144,110,92,191,158,253,70,73,187,95,199,87,201,9,13,122,202,0,231,114,202,233,231,157,209,89,107,68,215,126,170,111,0,5,9,98,111,100,121,44,104,116,109,108,2,23,0,40,148,240,5,109,73,168,8,65,218,150,9,9,47,11,10,175,94,122,13,35,108,254,19,169,104,151,24,172,161,156,30,44,193,8,71,28,115,85,88,217,243,191,89,108,38,254,94,170,222,81,109,17,178,33,129,90,234,12,144,110,92,191,158,253,70,73,187,95,199,87,201,9,13,122,202,0,231,114,202,233,231,157,209,89,107,68,215,126,170,111,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,104,105,100,101,95,99,111,111,107,105,101,111,118,101,114,108,97,121,95,118,50,44,32,49,44,32,44,32,114,101,108,111,97,100,44,32,49,2,1,148,188,51,117,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,115,111,99,105,97,108,109,101,100,105,97,45,99,111,111,107,105,101,115,95,97,108,108,111,119,101,100,95,118,50,44,32,48,2,1,148,188,51,117,2,1,45,115,101,116,45,99,111,111,107,105,101,44,32,112,101,114,102,111,114,109,97,110,99,101,45,99,111,111,107,105,101,115,95,97,108,108,111,119,101,100,95,118,50,44,32,48,2,1,148,188,51,117,8,1,10,46,99,99,45,103,114,111,119,101,114,2,3,79,19,130,5,109,87,166,41,132,82,220,181,0,5,9,98,111,100,121,44,104,116,109,108,2,3,79,19,130,5,109,87,166,41,132,82,220,181,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,4,35,99,99,99,2,2,30,12,3,214,195,37,140,153,0,5,9,98,111,100,121,44,104,116,109,108,2,2,30,12,3,214,195,37,140,153,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,3,35,99,99,2,6,4,58,3,251,96,123,52,254,96,165,147,69,192,250,223,114,203,65,246,192,220,72,155,213,0,5,9,98,111,100,121,44,104,116,109,108,2,6,4,58,3,251,96,123,52,254,96,165,147,69,192,250,223,114,203,65,246,192,220,72,155,213,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,3,46,99,99,2,1,134,153,11,248,0,5,9,98,111,100,121,44,104,116,109,108,2,1,134,153,11,248,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,22,46,99,111,111,107,105,101,115,95,112,111,112,117,112,95,111,118,101,114,108,97,121,2,1,32,8,175,226,2,1,43,114,99,44,32,98,114,100,95,99,111,111,107,105,101,115,95,98,97,114,95,112,111,112,117,112,95,115,104,111,119,110,44,32,104,116,109,108,44,32,115,116,97,121,2,1,32,8,175,226,8,1,29,46,67,111,111,107,105,101,67,111,110,115,101,110,116,95,119,114,97,112,112,101,114,95,95,108,115,98,66,105,2,1,155,157,230,196,0,5,1,42,2,1,155,157,230,196,75,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,1,42,2,5,24,105,135,61,30,155,165,97,147,38,92,48,203,72,4,52,251,10,247,210,55,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,0,5,1,42,2,18,0,107,65,175,19,221,45,212,59,218,88,199,68,54,63,95,71,132,58,155,72,134,49,97,101,193,80,250,115,175,52,192,143,129,157,142,189,58,154,3,198,13,179,174,201,235,126,210,203,92,123,61,210,170,183,197,221,233,229,218,232,86,145,118,232,190,16,186,239,138,7,96,75,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,4,98,111,100,121,2,1,121,149,105,52,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,108,98,79,117,116,101,114,87,114,97,112,112,101,114,2,4,86,111,17,179,102,98,193,224,175,77,17,140,195,23,239,46,8,1,10,46,108,98,79,118,101,114,108,97,121,2,4,86,111,17,179,102,98,193,224,175,77,17,140,195,23,239,46,0,5,4,98,111,100,121,2,4,86,111,17,179,102,98,193,224,175,77,17,140,195,23,239,46,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,6,86,35,200,87,86,150,59,209,115,158,80,10,194,197,253,34,206,239,240,190,231,57,27,36,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,103,100,112,114,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,2,119,248,54,163,176,57,3,149,0,5,9,98,111,100,121,44,104,116,109,108,2,2,119,248,54,163,176,57,3,149,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,9,46,114,122,45,109,111,100,97,108,2,1,72,1,232,160,0,5,9,98,111,100,121,44,104,116,109,108,2,1,72,1,232,160,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,99,117,114,114,101,110,116,2,15,6,202,15,244,27,103,78,196,38,110,124,105,55,27,54,137,116,12,43,27,121,121,226,66,133,157,233,101,144,157,139,140,148,196,97,248,161,66,57,157,166,55,97,84,172,167,95,54,175,211,68,68,176,232,21,110,254,208,96,82,0,5,9,98,111,100,121,44,104,116,109,108,2,15,6,202,15,244,27,103,78,196,38,110,124,105,55,27,54,137,116,12,43,27,121,121,226,66,133,157,233,101,144,157,139,140,148,196,97,248,161,66,57,157,166,55,97,84,172,167,95,54,175,211,68,68,176,232,21,110,254,208,96,82,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,242,48,32,37,8,1,14,46,115,45,99,111,111,107,105,101,45,105,110,102,111,2,3,27,105,149,134,96,252,174,59,148,198,197,170,0,5,9,98,111,100,121,44,104,116,109,108,2,3,27,105,149,134,96,252,174,59,148,198,197,170,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,117,115,101,114,99,101,110,116,114,105,99,115,45,114,111,111,116,2,6,28,233,26,221,57,124,197,8,118,42,29,179,124,165,128,36,217,130,116,126,224,143,230,241,0,5,9,98,111,100,121,44,104,116,109,108,2,6,28,233,26,221,57,124,197,8,118,42,29,179,124,165,128,36,217,130,116,126,224,143,230,241,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,10,46,103,100,112,114,77,111,100,97,108,2,7,8,139,35,73,33,45,215,139,37,185,193,91,102,174,54,152,103,233,220,118,186,136,168,73,232,137,41,73,0,5,9,98,111,100,121,44,104,116,109,108,2,7,8,139,35,73,33,45,215,139,37,185,193,91,102,174,54,152,103,233,220,118,186,136,168,73,232,137,41,73,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,100,115,118,103,112,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,2,7,23,198,110,51,150,79,33,214,150,79,137,166,185,126,167,14,190,24,14,112,227,30,142,149,230,64,20,147,0,5,4,104,116,109,108,2,7,23,198,110,51,150,79,33,214,150,79,137,166,185,126,167,14,190,24,14,112,227,30,142,149,230,64,20,147,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,114,101,118,101,97,108,95,95,111,118,101,114,108,97,121,2,2,12,89,10,45,27,101,234,184,0,5,9,98,111,100,121,44,104,116,109,108,2,2,12,89,10,45,27,101,234,184,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,115,45,119,114,97,112,112,101,114,2,37,4,173,86,72,14,241,49,47,15,251,115,198,19,214,172,222,24,149,175,85,42,85,218,234,45,74,243,242,47,125,210,136,56,202,180,136,57,64,45,107,59,193,221,106,76,76,95,47,89,182,65,105,93,102,95,135,96,184,250,1,98,16,169,178,105,7,245,25,113,60,93,85,132,39,147,59,135,160,23,198,141,58,39,134,150,58,10,203,157,9,153,255,157,41,129,229,174,125,248,182,176,42,64,113,202,19,17,15,208,240,203,127,214,142,169,215,215,43,183,112,215,126,178,152,220,197,146,42,221,28,243,42,231,144,188,64,238,0,154,58,239,195,98,183,254,166,96,98,0,5,4,98,111,100,121,2,37,4,173,86,72,14,241,49,47,15,251,115,198,19,214,172,222,24,149,175,85,42,85,218,234,45,74,243,242,47,125,210,136,56,202,180,136,57,64,45,107,59,193,221,106,76,76,95,47,89,182,65,105,93,102,95,135,96,184,250,1,98,16,169,178,105,7,245,25,113,60,93,85,132,39,147,59,135,160,23,198,141,58,39,134,150,58,10,203,157,9,153,255,157,41,129,229,174,125,248,182,176,42,64,113,202,19,17,15,208,240,203,127,214,142,169,215,215,43,183,112,215,126,178,152,220,197,146,42,221,28,243,42,231,144,188,64,238,0,154,58,239,195,98,183,254,166,96,98,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,112,114,105,118,97,99,121,95,104,101,97,100,115,117,112,2,7,9,109,46,222,13,214,47,138,31,62,103,85,34,125,18,10,86,68,82,72,106,44,19,122,227,175,14,130,8,1,24,46,112,114,105,118,97,99,121,95,104,101,97,100,115,117,112,95,111,118,101,114,108,97,121,2,7,9,109,46,222,13,214,47,138,31,62,103,85,34,125,18,10,86,68,82,72,106,44,19,122,227,175,14,130,8,1,17,46,102,97,110,99,121,98,111,120,45,111,118,101,114,108,97,121,2,105,1,3,35,51,2,96,25,5,4,164,212,229,6,22,93,196,6,247,41,24,7,23,33,14,7,245,144,162,22,88,122,61,22,166,233,67,26,75,133,77,28,81,114,82,31,171,2,242,31,171,2,242,43,249,246,180,45,194,168,137,46,118,132,124,52,165,181,134,52,240,96,239,53,43,207,82,55,69,214,222,56,87,100,212,57,44,54,82,57,128,165,134,57,174,236,248,62,114,20,115,63,127,202,113,64,145,80,117,66,66,78,55,70,21,216,84,75,50,67,17,75,115,195,75,75,215,90,245,77,60,196,38,82,222,93,102,87,167,253,70,95,27,148,172,96,23,34,21,96,249,168,108,99,143,150,163,101,89,177,165,103,193,180,138,109,17,157,130,115,56,89,107,119,206,66,212,124,9,71,24,125,244,34,24,132,161,63,239,132,178,234,182,133,179,174,248,134,152,76,120,139,184,60,216,143,122,83,109,143,128,88,81,147,244,48,239,152,219,136,4,153,160,206,172,153,244,104,29,159,113,138,32,162,168,29,52,163,182,129,157,167,0,171,171,170,234,126,236,171,68,188,51,171,68,233,65,179,36,204,3,179,150,147,194,179,190,45,180,180,177,182,90,181,113,58,15,182,222,78,71,187,102,60,111,188,60,47,150,189,143,32,218,191,209,136,93,194,161,225,70,196,65,48,52,196,249,19,155,197,27,143,74,199,87,94,201,199,135,156,121,201,241,223,78,203,148,143,118,205,102,130,153,206,0,140,207,208,12,236,71,211,204,90,191,212,54,143,159,213,76,28,66,216,243,43,14,217,124,52,128,217,176,180,20,217,180,210,127,219,210,15,91,226,73,235,138,228,137,74,78,230,77,114,39,230,178,138,247,233,121,94,49,242,165,50,85,243,84,68,151,246,16,127,135,246,16,132,128,246,174,254,219,252,248,229,225,255,123,139,50,0,5,9,98,111,100,121,44,104,116,109,108,2,105,1,3,35,51,2,96,25,5,4,164,212,229,6,22,93,196,6,247,41,24,7,23,33,14,7,245,144,162,22,88,122,61,22,166,233,67,26,75,133,77,28,81,114,82,31,171,2,242,31,171,2,242,43,249,246,180,45,194,168,137,46,118,132,124,52,165,181,134,52,240,96,239,53,43,207,82,55,69,214,222,56,87,100,212,57,44,54,82,57,128,165,134,57,174,236,248,62,114,20,115,63,127,202,113,64,145,80,117,66,66,78,55,70,21,216,84,75,50,67,17,75,115,195,75,75,215,90,245,77,60,196,38,82,222,93,102,87,167,253,70,95,27,148,172,96,23,34,21,96,249,168,108,99,143,150,163,101,89,177,165,103,193,180,138,109,17,157,130,115,56,89,107,119,206,66,212,124,9,71,24,125,244,34,24,132,161,63,239,132,178,234,182,133,179,174,248,134,152,76,120,139,184,60,216,143,122,83,109,143,128,88,81,147,244,48,239,152,219,136,4,153,160,206,172,153,244,104,29,159,113,138,32,162,168,29,52,163,182,129,157,167,0,171,171,170,234,126,236,171,68,188,51,171,68,233,65,179,36,204,3,179,150,147,194,179,190,45,180,180,177,182,90,181,113,58,15,182,222,78,71,187,102,60,111,188,60,47,150,189,143,32,218,191,209,136,93,194,161,225,70,196,65,48,52,196,249,19,155,197,27,143,74,199,87,94,201,199,135,156,121,201,241,223,78,203,148,143,118,205,102,130,153,206,0,140,207,208,12,236,71,211,204,90,191,212,54,143,159,213,76,28,66,216,243,43,14,217,124,52,128,217,176,180,20,217,180,210,127,219,210,15,91,226,73,235,138,228,137,74,78,230,77,114,39,230,178,138,247,233,121,94,49,242,165,50,85,243,84,68,151,246,16,127,135,246,16,132,128,246,174,254,219,252,248,229,225,255,123,139,50,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,117,105,45,119,105,100,103,101,116,45,111,118,101,114,108,97,121,2,51,1,182,215,226,3,236,24,166,5,226,124,252,6,72,73,64,6,112,234,198,11,142,131,248,19,46,80,172,26,99,77,31,33,105,83,13,41,108,69,41,44,36,15,78,55,176,20,135,57,205,80,102,59,202,40,206,67,133,246,136,69,94,52,38,83,80,230,31,86,19,192,236,106,153,224,14,115,46,87,72,118,83,231,220,119,142,249,229,136,28,103,9,139,63,107,66,142,166,228,204,145,113,207,72,147,18,98,89,147,79,21,60,149,192,247,100,150,173,17,211,158,197,238,13,160,198,116,85,164,6,93,88,178,185,81,148,186,65,231,48,187,57,209,255,188,12,178,94,202,195,168,209,202,252,197,222,204,148,33,138,211,205,191,42,214,107,92,185,216,52,131,133,216,120,217,239,218,89,237,233,223,190,45,166,223,193,9,56,228,129,156,84,233,21,18,252,233,120,177,19,242,127,134,224,8,1,10,46,117,105,45,100,105,97,108,111,103,2,51,1,182,215,226,3,236,24,166,5,226,124,252,6,72,73,64,6,112,234,198,11,142,131,248,19,46,80,172,26,99,77,31,33,105,83,13,41,108,69,41,44,36,15,78,55,176,20,135,57,205,80,102,59,202,40,206,67,133,246,136,69,94,52,38,83,80,230,31,86,19,192,236,106,153,224,14,115,46,87,72,118,83,231,220,119,142,249,229,136,28,103,9,139,63,107,66,142,166,228,204,145,113,207,72,147,18,98,89,147,79,21,60,149,192,247,100,150,173,17,211,158,197,238,13,160,198,116,85,164,6,93,88,178,185,81,148,186,65,231,48,187,57,209,255,188,12,178,94,202,195,168,209,202,252,197,222,204,148,33,138,211,205,191,42,214,107,92,185,216,52,131,133,216,120,217,239,218,89,237,233,223,190,45,166,223,193,9,56,228,129,156,84,233,21,18,252,233,120,177,19,242,127,134,224,0,5,9,98,111,100,121,44,104,116,109,108,2,48,1,182,215,226,3,236,24,166,5,226,124,252,6,72,73,64,6,112,234,198,11,142,131,248,19,46,80,172,26,99,77,31,33,105,83,13,41,108,69,41,44,36,15,78,55,176,20,135,57,205,80,102,59,202,40,206,67,133,246,136,69,94,52,38,83,80,230,31,86,19,192,236,106,153,224,14,115,46,87,72,118,83,231,220,136,28,103,9,139,63,107,66,142,166,228,204,145,113,207,72,147,18,98,89,147,79,21,60,149,192,247,100,150,173,17,211,158,197,238,13,160,198,116,85,164,6,93,88,186,65,231,48,187,57,209,255,188,12,178,94,202,195,168,209,202,252,197,222,204,148,33,138,211,205,191,42,214,107,92,185,216,52,131,133,216,120,217,239,218,89,237,233,223,190,45,166,228,129,156,84,233,21,18,252,233,120,177,19,242,127,134,224,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,25,91,100,97,116,97,45,112,111,112,109,97,107,101,42,61,34,99,111,111,107,105,101,95,34,93,2,1,186,179,43,71,0,5,4,104,116,109,108,2,1,186,179,43,71,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,4,24,211,225,221,75,134,247,94,136,86,145,204,239,34,2,195,8,1,14,46,109,111,100,97,108,45,111,118,101,114,108,97,121,2,4,24,211,225,221,75,134,247,94,136,86,145,204,239,34,2,195,0,5,4,104,116,109,108,2,4,24,211,225,221,75,134,247,94,136,86,145,204,239,34,2,195,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,2,1,30,114,99,44,32,106,115,45,109,111,100,97,108,85,110,99,108,111,115,97,98,108,101,44,32,44,32,115,116,97,121,2,1,57,221,211,224,2,1,65,114,101,109,111,118,101,45,99,108,97,115,115,44,32,106,115,45,99,111,111,107,105,101,115,77,111,100,97,108,124,105,115,45,111,112,101,110,44,32,46,106,115,45,99,111,111,107,105,101,115,77,111,100,97,108,92,44,46,105,115,45,111,112,101,110,2,1,57,221,211,224,0,5,4,98,111,100,121,2,1,57,221,211,224,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,106,115,45,112,111,112,117,112,45,109,111,100,97,108,2,1,101,186,90,29,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,101,186,90,29,0,5,9,98,111,100,121,44,104,116,109,108,2,1,101,186,90,29,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,16,46,114,101,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,20,255,102,97,8,1,16,46,114,101,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,20,255,102,97,2,1,22,114,99,44,32,114,101,109,111,100,97,108,45,98,103,44,32,44,32,115,116,97,121,2,1,20,255,102,97,0,5,9,98,111,100,121,44,104,116,109,108,2,1,20,255,102,97,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,120,49,51,101,117,99,111,111,107,105,101,115,2,1,93,237,31,131,0,5,4,98,111,100,121,2,1,93,237,31,131,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,114,101,109,111,100,97,108,45,111,118,101,114,108,97,121,2,2,42,11,114,238,50,193,3,80,8,1,16,46,114,101,109,111,100,97,108,45,119,114,97,112,112,101,114,2,2,42,11,114,238,50,193,3,80,8,1,11,46,109,111,100,97,108,45,114,111,111,116,2,10,51,144,78,107,53,127,195,122,153,34,4,215,213,228,96,239,215,68,205,233,226,91,199,179,228,129,22,208,244,26,229,32,244,102,122,140,254,59,20,217,0,5,9,98,111,100,121,44,104,116,109,108,2,10,51,144,78,107,53,127,195,122,153,34,4,215,213,228,96,239,215,68,205,233,226,91,199,179,228,129,22,208,244,26,229,32,244,102,122,140,254,59,20,217,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,10,46,99,111,104,45,109,111,100,97,108,2,22,6,178,54,39,20,172,146,229,22,146,245,64,26,133,202,127,39,66,32,197,65,21,251,22,73,12,38,222,87,103,237,53,94,11,131,61,110,254,246,9,133,172,6,25,142,138,175,54,143,42,125,102,160,17,42,18,171,11,136,84,171,94,145,223,171,119,84,191,172,197,80,97,186,250,19,237,196,91,63,11,237,17,29,122,254,146,53,157,0,5,9,98,111,100,121,44,104,116,109,108,2,22,6,178,54,39,20,172,146,229,22,146,245,64,26,133,202,127,39,66,32,197,65,21,251,22,73,12,38,222,87,103,237,53,94,11,131,61,110,254,246,9,133,172,6,25,142,138,175,54,143,42,125,102,160,17,42,18,171,11,136,84,171,94,145,223,171,119,84,191,172,197,80,97,186,250,19,237,196,91,63,11,237,17,29,122,254,146,53,157,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,34,4,221,171,233,12,80,184,84,12,127,117,144,24,118,153,146,29,13,107,40,40,86,93,209,47,220,65,190,49,72,70,1,67,125,99,115,75,57,75,157,80,178,189,114,88,17,33,63,91,174,254,235,93,201,203,242,94,175,207,188,100,65,248,75,102,178,148,216,106,185,206,243,119,122,99,79,120,254,94,106,132,82,220,181,149,155,206,64,168,240,32,62,174,101,24,248,178,196,72,248,202,10,103,138,204,143,247,85,207,29,166,241,208,0,88,229,209,167,99,138,222,81,69,92,227,80,84,194,228,31,240,8,246,221,13,112,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,99,111,111,107,105,101,87,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,2,51,8,180,40,226,15,244,112,76,20,24,91,80,23,145,188,19,24,76,28,255,29,91,22,63,31,10,116,99,42,86,109,179,43,65,235,53,44,47,132,128,44,60,213,116,51,113,163,122,54,219,212,29,55,203,2,150,56,60,80,7,58,203,80,172,60,59,236,19,61,117,47,179,70,62,162,91,76,217,206,53,79,117,9,235,85,200,0,199,95,217,246,202,99,249,221,131,110,132,176,72,116,160,134,209,120,8,177,154,120,225,114,176,134,109,1,77,142,135,169,235,153,103,247,140,154,48,121,98,154,49,10,249,162,5,52,12,177,236,8,92,179,57,67,181,187,73,19,77,197,230,41,169,204,238,31,17,210,46,27,143,216,211,228,221,218,230,114,172,221,26,95,120,222,72,46,69,226,37,110,228,233,215,229,234,235,80,194,18,244,190,160,215,247,10,39,105,250,86,86,163,253,203,73,129,2,1,31,114,99,44,32,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,111,112,101,110,44,32,44,32,115,116,97,121,2,51,8,180,40,226,15,244,112,76,20,24,91,80,23,145,188,19,24,76,28,255,29,91,22,63,31,10,116,99,42,86,109,179,43,65,235,53,44,47,132,128,44,60,213,116,51,113,163,122,54,219,212,29,55,203,2,150,56,60,80,7,58,203,80,172,60,59,236,19,61,117,47,179,70,62,162,91,76,217,206,53,79,117,9,235,85,200,0,199,95,217,246,202,99,249,221,131,110,132,176,72,116,160,134,209,120,8,177,154,120,225,114,176,134,109,1,77,142,135,169,235,153,103,247,140,154,48,121,98,154,49,10,249,162,5,52,12,177,236,8,92,179,57,67,181,187,73,19,77,197,230,41,169,204,238,31,17,210,46,27,143,216,211,228,221,218,230,114,172,221,26,95,120,222,72,46,69,226,37,110,228,233,215,229,234,235,80,194,18,244,190,160,215,247,10,39,105,250,86,86,163,253,203,73,129,8,1,8,46,111,118,101,114,108,97,121,2,38,4,89,171,153,24,245,151,100,31,247,126,180,32,160,162,59,32,254,245,62,41,13,80,231,41,239,46,191,49,105,190,50,78,167,60,58,81,223,56,39,113,240,90,251,117,117,134,23,120,15,183,53,122,198,212,173,124,53,10,234,124,74,4,11,130,61,52,125,135,217,51,96,143,85,148,141,146,54,203,107,148,201,137,108,150,60,100,212,155,152,223,168,171,99,13,3,175,92,195,245,177,215,71,62,184,87,215,174,190,194,86,204,197,249,169,93,203,237,36,216,210,98,195,230,235,100,183,164,235,198,179,91,235,231,21,125,239,205,23,235,245,107,148,227,246,34,218,215,250,231,142,231,0,5,9,98,111,100,121,44,104,116,109,108,2,38,4,89,171,153,24,245,151,100,31,247,126,180,32,160,162,59,32,254,245,62,41,13,80,231,41,239,46,191,49,105,190,50,78,167,60,58,81,223,56,39,113,240,90,251,117,117,134,23,120,15,183,53,122,198,212,173,124,53,10,234,124,74,4,11,130,61,52,125,135,217,51,96,143,85,148,141,146,54,203,107,148,201,137,108,150,60,100,212,155,152,223,168,171,99,13,3,175,92,195,245,177,215,71,62,184,87,215,174,190,194,86,204,197,249,169,93,203,237,36,216,210,98,195,230,235,100,183,164,235,198,179,91,235,231,21,125,239,205,23,235,245,107,148,227,246,34,218,215,250,231,142,231,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,22,46,99,100,107,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,2,1,148,166,17,117,8,1,22,46,99,100,107,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,2,30,7,6,227,22,12,64,208,70,19,249,57,16,21,120,69,227,27,81,88,251,30,16,112,181,34,17,249,66,44,184,255,213,46,84,90,130,48,54,213,203,55,5,227,37,69,150,101,129,73,132,143,9,88,154,222,218,92,96,223,12,128,46,130,156,129,32,213,225,129,40,245,250,129,73,122,246,134,146,72,5,178,207,177,160,182,84,31,11,189,143,90,163,192,39,202,207,200,206,152,42,201,253,225,119,220,63,184,196,235,57,183,96,243,218,68,84,245,244,78,254,0,5,4,104,116,109,108,2,30,7,6,227,22,12,64,208,70,19,249,57,16,21,120,69,227,27,81,88,251,30,16,112,181,34,17,249,66,44,184,255,213,46,84,90,130,48,54,213,203,55,5,227,37,69,150,101,129,73,132,143,9,88,154,222,218,92,96,223,12,128,46,130,156,129,32,213,225,129,40,245,250,129,73,122,246,134,146,72,5,178,207,177,160,182,84,31,11,189,143,90,163,192,39,202,207,200,206,152,42,201,253,225,119,220,63,184,196,235,57,183,96,243,218,68,84,245,244,78,254,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,99,111,111,107,105,101,109,101,115,115,97,103,101,98,97,99,107,103,114,111,117,110,100,2,127,2,17,116,111,2,100,71,29,3,80,128,197,5,47,5,0,5,182,59,138,6,138,83,93,9,81,230,206,9,168,12,86,11,165,195,77,15,43,198,121,22,12,149,166,23,55,60,236,27,74,51,170,28,121,129,143,30,71,88,98,31,166,156,26,33,169,200,203,34,41,63,35,34,87,13,0,35,65,47,34,44,200,153,114,46,91,93,4,49,36,205,193,49,106,205,67,52,121,243,86,53,187,193,39,53,234,67,83,54,152,195,13,54,232,2,188,59,75,179,27,60,159,237,22,60,185,198,213,63,164,142,137,64,64,171,35,64,71,101,89,65,148,253,11,66,193,133,59,69,253,124,40,70,235,192,62,80,5,40,111,81,182,218,27,81,204,12,205,83,114,114,220,87,43,42,111,93,131,89,237,93,182,153,143,100,96,236,67,103,238,2,222,105,125,79,206,106,70,177,152,106,72,86,11,108,4,162,61,110,161,77,169,112,83,56,123,113,142,223,48,113,213,228,24,114,118,220,60,115,158,82,3,117,115,205,184,120,95,8,119,121,33,251,225,124,100,176,129,126,103,1,193,130,232,18,233,134,104,209,103,136,107,69,165,137,175,151,98,140,43,131,131,141,159,218,139,143,154,166,137,145,53,0,138,145,92,50,36,145,206,210,12,148,48,86,22,148,189,88,126,153,202,195,223,154,197,120,216,157,14,9,80,159,129,100,152,161,75,240,236,161,175,108,52,163,255,108,67,166,97,8,157,173,26,99,129,182,132,134,194,183,174,153,75,184,244,14,97,189,39,118,13,192,152,110,127,194,27,79,96,195,67,5,131,196,155,51,125,196,167,246,34,197,54,129,72,198,201,232,0,199,98,248,155,201,111,24,3,202,26,39,199,202,162,45,163,202,164,88,127,207,235,185,58,211,60,73,43,215,38,238,154,216,60,130,240,216,167,131,112,217,148,10,3,217,192,89,192,217,217,126,242,218,86,69,2,224,182,79,158,225,180,76,140,226,248,145,132,229,68,100,26,229,125,60,138,233,88,98,216,236,21,12,62,237,231,48,83,240,31,92,35,241,104,55,207,241,229,166,228,242,231,145,189,243,10,166,244,243,21,38,99,247,115,233,11,247,200,180,228,252,48,79,5,252,222,195,124,0,5,9,98,111,100,121,44,104,116,109,108,2,127,2,17,116,111,2,100,71,29,3,80,128,197,5,47,5,0,5,182,59,138,6,138,83,93,9,81,230,206,9,168,12,86,11,165,195,77,15,43,198,121,22,12,149,166,23,55,60,236,27,74,51,170,28,121,129,143,30,71,88,98,31,166,156,26,33,169,200,203,34,41,63,35,34,87,13,0,35,65,47,34,44,200,153,114,46,91,93,4,49,36,205,193,49,106,205,67,52,121,243,86,53,187,193,39,53,234,67,83,54,152,195,13,54,232,2,188,59,75,179,27,60,159,237,22,60,185,198,213,63,164,142,137,64,64,171,35,64,71,101,89,65,148,253,11,66,193,133,59,69,253,124,40,70,235,192,62,80,5,40,111,81,182,218,27,81,204,12,205,83,114,114,220,87,43,42,111,93,131,89,237,93,182,153,143,100,96,236,67,103,238,2,222,105,125,79,206,106,70,177,152,106,72,86,11,108,4,162,61,110,161,77,169,112,83,56,123,113,142,223,48,113,213,228,24,114,118,220,60,115,158,82,3,117,115,205,184,120,95,8,119,121,33,251,225,124,100,176,129,126,103,1,193,130,232,18,233,134,104,209,103,136,107,69,165,137,175,151,98,140,43,131,131,141,159,218,139,143,154,166,137,145,53,0,138,145,92,50,36,145,206,210,12,148,48,86,22,148,189,88,126,153,202,195,223,154,197,120,216,157,14,9,80,159,129,100,152,161,75,240,236,161,175,108,52,163,255,108,67,166,97,8,157,173,26,99,129,182,132,134,194,183,174,153,75,184,244,14,97,189,39,118,13,192,152,110,127,194,27,79,96,195,67,5,131,196,155,51,125,196,167,246,34,197,54,129,72,198,201,232,0,199,98,248,155,201,111,24,3,202,26,39,199,202,162,45,163,202,164,88,127,207,235,185,58,211,60,73,43,215,38,238,154,216,60,130,240,216,167,131,112,217,148,10,3,217,192,89,192,217,217,126,242,218,86,69,2,224,182,79,158,225,180,76,140,226,248,145,132,229,68,100,26,229,125,60,138,233,88,98,216,236,21,12,62,237,231,48,83,240,31,92,35,241,104,55,207,241,229,166,228,242,231,145,189,243,10,166,244,243,21,38,99,247,115,233,11,247,200,180,228,252,48,79,5,252,222,195,124,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,10,35,119,100,107,67,111,111,107,105,101,2,1,140,85,229,137,0,5,9,98,111,100,121,44,104,116,109,108,2,1,140,85,229,137,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,102,101,97,116,104,101,114,108,105,103,104,116,2,9,24,140,67,44,45,234,60,154,65,76,136,143,148,195,115,63,170,0,19,182,230,105,202,238,236,183,146,235,240,170,191,147,252,211,211,18,2,1,29,114,99,44,32,119,105,116,104,45,102,101,97,116,104,101,114,108,105,103,104,116,44,32,44,32,115,116,97,121,2,9,24,140,67,44,45,234,60,154,65,76,136,143,148,195,115,63,170,0,19,182,230,105,202,238,236,183,146,235,240,170,191,147,252,211,211,18,8,1,21,46,97,99,114,105,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,41,1,44,49,28,3,27,173,127,11,93,58,172,13,3,84,30,19,244,146,153,42,253,38,255,63,189,77,86,64,3,180,199,66,255,84,77,80,33,207,202,86,35,47,106,88,247,102,134,96,129,34,252,100,250,142,147,101,25,242,144,110,248,102,122,121,77,137,235,123,80,99,3,126,226,16,23,147,195,161,112,148,195,202,45,152,174,133,199,168,21,13,183,181,8,209,65,183,56,173,206,190,119,97,157,191,97,246,17,192,84,110,242,198,85,15,143,199,125,67,80,200,247,49,36,207,100,59,96,212,239,106,220,214,225,194,169,215,130,115,125,218,56,86,90,224,16,52,117,236,91,215,75,240,135,152,112,247,173,166,235,252,194,227,189,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,41,1,44,49,28,3,27,173,127,11,93,58,172,13,3,84,30,19,244,146,153,42,253,38,255,63,189,77,86,64,3,180,199,66,255,84,77,80,33,207,202,86,35,47,106,88,247,102,134,96,129,34,252,100,250,142,147,101,25,242,144,110,248,102,122,121,77,137,235,123,80,99,3,126,226,16,23,147,195,161,112,148,195,202,45,152,174,133,199,168,21,13,183,181,8,209,65,183,56,173,206,190,119,97,157,191,97,246,17,192,84,110,242,198,85,15,143,199,125,67,80,200,247,49,36,207,100,59,96,212,239,106,220,214,225,194,169,215,130,115,125,218,56,86,90,224,16,52,117,236,91,215,75,240,135,152,112,247,173,166,235,252,194,227,189,0,5,9,98,111,100,121,44,104,116,109,108,2,41,1,44,49,28,3,27,173,127,11,93,58,172,13,3,84,30,19,244,146,153,42,253,38,255,63,189,77,86,64,3,180,199,66,255,84,77,80,33,207,202,86,35,47,106,88,247,102,134,96,129,34,252,100,250,142,147,101,25,242,144,110,248,102,122,121,77,137,235,123,80,99,3,126,226,16,23,147,195,161,112,148,195,202,45,152,174,133,199,168,21,13,183,181,8,209,65,183,56,173,206,190,119,97,157,191,97,246,17,192,84,110,242,198,85,15,143,199,125,67,80,200,247,49,36,207,100,59,96,212,239,106,220,214,225,194,169,215,130,115,125,218,56,86,90,224,16,52,117,236,91,215,75,240,135,152,112,247,173,166,235,252,194,227,189,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,102,105,108,116,101,114,45,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,2,3,18,252,197,184,146,158,235,241,167,73,25,225,0,5,9,98,111,100,121,44,104,116,109,108,2,3,18,252,197,184,146,158,235,241,167,73,25,225,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,99,111,111,107,105,101,115,45,101,117,45,98,111,120,2,1,75,143,213,69,8,1,24,46,99,111,111,107,105,101,115,45,98,108,111,99,107,45,105,116,115,45,108,105,103,104,116,2,35,6,5,20,241,16,154,80,182,25,42,124,220,48,19,66,181,48,148,83,201,48,148,83,201,51,147,102,56,53,151,177,187,56,120,67,220,58,110,239,106,66,148,241,198,68,159,45,232,85,174,171,102,86,122,73,191,90,151,59,178,95,152,195,75,106,220,170,49,114,246,59,186,125,174,228,142,134,163,216,255,138,77,83,222,143,252,162,204,158,101,71,59,163,3,122,187,185,231,75,145,186,135,7,57,192,26,208,161,194,161,5,12,201,47,104,11,212,167,139,115,220,4,147,54,222,230,153,68,226,194,226,187,232,32,133,201,246,68,124,38,0,5,4,98,111,100,121,2,35,6,5,20,241,16,154,80,182,25,42,124,220,48,19,66,181,48,148,83,201,48,148,83,201,51,147,102,56,53,151,177,187,56,120,67,220,58,110,239,106,66,148,241,198,68,159,45,232,85,174,171,102,86,122,73,191,90,151,59,178,95,152,195,75,106,220,170,49,114,246,59,186,125,174,228,142,134,163,216,255,138,77,83,222,143,252,162,204,158,101,71,59,163,3,122,187,185,231,75,145,186,135,7,57,192,26,208,161,194,161,5,12,201,47,104,11,212,167,139,115,220,4,147,54,222,230,153,68,226,194,226,187,232,32,133,201,246,68,124,38,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,102,111,114,109,2,1,105,252,117,166,2,1,29,114,99,44,32,99,111,111,107,105,101,115,45,115,104,111,119,110,44,32,98,111,100,121,44,32,115,116,97,121,2,1,105,252,117,166,8,1,17,46,99,111,111,107,105,101,45,104,116,109,108,45,119,114,97,112,2,1,160,164,6,85,0,5,9,98,111,100,121,44,104,116,109,108,2,1,160,164,6,85,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,28,46,109,101,108,105,110,100,114,101,115,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,2,1,255,167,103,97,0,5,4,98,111,100,121,2,1,255,167,103,97,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,33,35,100,101,98,117,103,103,101,100,45,99,111,111,107,105,101,111,112,116,105,111,110,115,45,99,111,110,116,97,105,110,101,114,2,1,210,208,111,187,0,5,9,98,111,100,121,44,104,116,109,108,2,1,210,208,111,187,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,21,114,99,44,32,110,111,45,99,111,111,107,105,101,44,32,44,32,115,116,97,121,2,1,10,70,88,66,0,5,9,98,111,100,121,44,104,116,109,108,2,1,10,70,88,66,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,105,110,115,101,116,45,48,46,102,105,120,101,100,2,14,54,84,237,144,55,46,215,170,65,34,247,23,79,94,156,93,93,1,20,57,134,67,186,182,147,78,221,85,156,12,168,245,186,209,201,22,194,95,103,164,211,87,235,185,231,5,23,8,235,27,82,203,246,42,55,5,0,5,9,98,111,100,121,44,104,116,109,108,2,15,54,84,237,144,55,46,215,170,65,34,247,23,79,94,156,93,93,1,20,57,134,67,186,182,147,78,221,85,156,12,168,245,186,209,201,22,194,95,103,164,211,87,235,185,231,5,23,8,235,27,82,203,246,42,55,5,249,137,237,36,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,36,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,116,101,109,112,108,97,116,101,45,119,114,97,112,112,101,114,2,1,194,152,119,72,0,5,9,98,111,100,121,44,104,116,109,108,2,1,194,152,119,72,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,111,111,107,105,101,45,116,111,97,115,116,45,119,114,97,112,2,1,78,102,141,145,0,5,9,98,111,100,121,44,104,116,109,108,2,1,78,102,141,145,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,99,111,111,107,105,101,45,115,104,101,101,116,45,115,109,97,108,108,2,1,85,188,229,215,0,5,9,98,111,100,121,44,104,116,109,108,2,1,85,188,229,215,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,8,46,119,122,45,114,103,112,100,2,54,5,170,70,242,12,176,190,240,16,139,16,126,23,243,126,206,31,207,85,213,32,169,204,40,35,49,109,182,35,86,248,200,38,34,78,177,42,192,0,146,45,106,241,211,47,74,100,55,49,110,197,203,51,63,9,230,54,96,159,71,54,152,206,130,59,67,200,2,63,138,73,108,64,250,170,95,65,185,253,141,69,108,21,203,78,213,103,218,79,224,69,119,79,224,69,119,82,24,84,179,95,107,105,221,98,51,127,245,98,77,38,68,98,85,65,193,110,162,162,21,117,202,169,241,119,237,20,188,135,80,71,89,144,254,180,80,145,131,69,3,148,125,3,86,151,198,158,108,167,41,23,116,181,80,31,231,182,131,20,162,191,33,52,175,199,95,159,110,204,216,243,200,216,133,136,37,219,107,29,180,222,128,122,73,227,142,132,61,228,38,67,18,230,77,228,8,235,152,40,123,249,107,125,75,252,71,25,97,254,0,188,122,254,191,134,127,0,5,4,98,111,100,121,2,54,5,170,70,242,12,176,190,240,16,139,16,126,23,243,126,206,31,207,85,213,32,169,204,40,35,49,109,182,35,86,248,200,38,34,78,177,42,192,0,146,45,106,241,211,47,74,100,55,49,110,197,203,51,63,9,230,54,96,159,71,54,152,206,130,59,67,200,2,63,138,73,108,64,250,170,95,65,185,253,141,69,108,21,203,78,213,103,218,79,224,69,119,79,224,69,119,82,24,84,179,95,107,105,221,98,51,127,245,98,77,38,68,98,85,65,193,110,162,162,21,117,202,169,241,119,237,20,188,135,80,71,89,144,254,180,80,145,131,69,3,148,125,3,86,151,198,158,108,167,41,23,116,181,80,31,231,182,131,20,162,191,33,52,175,199,95,159,110,204,216,243,200,216,133,136,37,219,107,29,180,222,128,122,73,227,142,132,61,228,38,67,18,230,77,228,8,235,152,40,123,249,107,125,75,252,71,25,97,254,0,188,122,254,191,134,127,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,17,35,99,111,111,107,105,101,45,115,105,116,101,45,108,111,99,107,2,1,32,39,23,18,0,5,9,98,111,100,121,44,104,116,109,108,2,1,32,39,23,18,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,102,117,110,100,111,45,97,118,105,115,111,45,99,111,111,107,105,101,115,2,1,181,206,47,221,0,5,9,98,111,100,121,44,104,116,109,108,2,1,181,206,47,221,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,31,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,97,110,97,103,101,114,95,119,114,97,112,112,101,114,2,2,123,111,109,22,189,128,66,86,8,1,8,46,100,105,109,109,101,114,50,2,2,123,111,109,22,189,128,66,86,2,1,28,114,99,44,32,100,105,109,109,101,114,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,2,123,111,109,22,189,128,66,86,8,1,24,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,27,114,45,185,8,1,30,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,45,98,108,111,99,107,101,114,2,1,27,114,45,185,0,5,9,98,111,100,121,44,104,116,109,108,2,1,27,114,45,185,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,105,102,54,95,101,112,114,105,118,97,99,121,2,112,1,82,41,123,3,27,36,141,5,219,216,71,8,215,113,54,11,220,138,68,16,250,181,34,18,248,59,236,26,144,248,20,26,241,2,151,27,113,244,43,27,114,184,10,27,121,68,6,27,122,130,42,29,13,217,193,33,114,179,149,33,144,34,217,38,157,23,69,40,20,236,210,42,176,160,143,43,57,97,182,48,240,126,0,50,203,221,207,51,90,188,155,55,185,90,146,55,192,206,14,58,90,4,206,58,150,200,94,59,226,190,235,65,25,224,123,67,255,201,104,70,151,33,102,75,68,99,109,78,43,28,93,80,107,167,32,81,187,240,186,82,133,4,229,84,5,142,130,90,24,229,87,105,77,137,204,108,144,30,234,110,248,5,10,112,18,81,203,114,233,1,182,116,66,32,109,119,177,89,109,120,87,158,24,132,207,93,121,133,185,128,26,136,151,204,1,141,36,228,4,141,113,251,186,142,166,200,75,146,73,176,224,147,130,77,219,147,218,184,204,149,35,34,202,155,202,82,81,156,30,33,160,159,192,81,30,160,10,213,216,169,186,63,182,170,166,144,165,172,177,145,161,173,117,29,250,174,131,63,87,174,239,115,104,176,92,52,169,178,45,3,2,188,216,58,167,189,143,212,108,190,40,66,58,190,138,22,2,191,127,111,216,192,128,113,212,192,244,153,25,195,36,77,67,195,223,100,207,196,11,177,160,198,236,114,17,199,252,83,114,211,13,216,84,214,241,186,195,215,220,19,146,217,83,6,152,223,45,106,135,224,246,203,17,225,234,62,91,226,200,2,195,228,165,76,93,236,58,216,161,236,208,74,121,237,125,231,153,240,92,46,49,241,60,47,243,242,214,155,107,242,231,32,44,244,53,252,17,244,86,215,19,245,91,205,76,245,248,112,26,246,189,241,122,247,119,122,87,247,130,179,49,247,130,179,55,247,130,179,132,247,130,180,191,247,240,139,152,248,93,96,194,249,111,28,241,250,192,4,73,251,131,34,161,255,63,65,94,0,5,9,98,111,100,121,44,104,116,109,108,2,112,1,82,41,123,3,27,36,141,5,219,216,71,8,215,113,54,11,220,138,68,16,250,181,34,18,248,59,236,26,144,248,20,26,241,2,151,27,113,244,43,27,114,184,10,27,121,68,6,27,122,130,42,29,13,217,193,33,114,179,149,33,144,34,217,38,157,23,69,40,20,236,210,42,176,160,143,43,57,97,182,48,240,126,0,50,203,221,207,51,90,188,155,55,185,90,146,55,192,206,14,58,90,4,206,58,150,200,94,59,226,190,235,65,25,224,123,67,255,201,104,70,151,33,102,75,68,99,109,78,43,28,93,80,107,167,32,81,187,240,186,82,133,4,229,84,5,142,130,90,24,229,87,105,77,137,204,108,144,30,234,110,248,5,10,112,18,81,203,114,233,1,182,116,66,32,109,119,177,89,109,120,87,158,24,132,207,93,121,133,185,128,26,136,151,204,1,141,36,228,4,141,113,251,186,142,166,200,75,146,73,176,224,147,130,77,219,147,218,184,204,149,35,34,202,155,202,82,81,156,30,33,160,159,192,81,30,160,10,213,216,169,186,63,182,170,166,144,165,172,177,145,161,173,117,29,250,174,131,63,87,174,239,115,104,176,92,52,169,178,45,3,2,188,216,58,167,189,143,212,108,190,40,66,58,190,138,22,2,191,127,111,216,192,128,113,212,192,244,153,25,195,36,77,67,195,223,100,207,196,11,177,160,198,236,114,17,199,252,83,114,211,13,216,84,214,241,186,195,215,220,19,146,217,83,6,152,223,45,106,135,224,246,203,17,225,234,62,91,226,200,2,195,228,165,76,93,236,58,216,161,236,208,74,121,237,125,231,153,240,92,46,49,241,60,47,243,242,214,155,107,242,231,32,44,244,53,252,17,244,86,215,19,245,91,205,76,245,248,112,26,246,189,241,122,247,119,122,87,247,130,179,49,247,130,179,55,247,130,179,132,247,130,180,191,247,240,139,152,248,93,96,194,249,111,28,241,250,192,4,73,251,131,34,161,255,63,65,94,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,100,119,97,45,99,109,115,45,117,105,45,99,111,111,107,105,101,2,3,1,236,231,117,16,207,229,24,210,189,201,44,0,5,9,98,111,100,121,44,104,116,109,108,2,3,1,236,231,117,16,207,229,24,210,189,201,44,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,5,35,114,103,112,100,2,7,24,118,23,123,95,100,110,177,114,119,73,5,134,70,77,7,142,231,100,210,182,131,79,208,212,166,60,98,0,5,9,98,111,100,121,44,104,116,109,108,2,7,24,118,23,123,95,100,110,177,114,119,73,5,134,70,77,7,142,231,100,210,182,131,79,208,212,166,60,98,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,16,35,97,120,101,112,116,105,111,95,111,118,101,114,108,97,121,2,1,175,255,55,220,8,1,39,46,97,120,101,112,116,105,111,95,119,105,100,103,101,116,91,100,97,116,97,45,115,101,114,118,105,99,101,61,34,99,111,111,107,105,101,115,34,93,2,1,175,255,55,220,0,5,9,98,111,100,121,44,104,116,109,108,2,1,175,255,55,220,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,114,111,100,111,83,99,114,101,101,110,66,103,2,2,91,80,194,97,201,251,87,207,16,1,22,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,2,4,8,220,31,26,51,118,176,188,114,171,68,104,242,81,140,25,8,1,25,46,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,45,102,111,114,109,115,2,1,5,42,78,133,0,5,4,98,111,100,121,2,1,5,42,78,133,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,99,45,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,2,1,237,70,100,249,0,5,9,98,111,100,121,44,104,116,109,108,2,1,237,70,100,249,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,99,111,111,107,105,101,45,105,110,113,117,105,114,121,45,119,114,97,112,112,101,114,2,24,13,106,177,142,19,227,211,41,29,69,63,27,30,46,181,135,65,140,137,34,84,119,241,68,85,56,39,62,90,221,124,247,94,40,161,29,96,197,92,91,116,146,203,12,140,63,38,230,145,114,112,0,146,17,203,245,147,200,115,85,149,77,223,223,149,118,124,15,150,95,124,135,168,106,93,71,184,13,171,105,190,228,15,124,212,106,195,1,242,208,151,191,253,246,48,195,0,5,9,98,111,100,121,44,104,116,109,108,2,24,13,106,177,142,19,227,211,41,29,69,63,27,30,46,181,135,65,140,137,34,84,119,241,68,85,56,39,62,90,221,124,247,94,40,161,29,96,197,92,91,116,146,203,12,140,63,38,230,145,114,112,0,146,17,203,245,147,200,115,85,149,77,223,223,149,118,124,15,150,95,124,135,168,106,93,71,184,13,171,105,190,228,15,124,212,106,195,1,242,208,151,191,253,246,48,195,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,2,2,79,252,136,87,161,99,183,115,0,5,4,98,111,100,121,2,2,79,252,136,87,161,99,183,115,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,22,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,61,11,39,255,49,12,192,190,70,13,234,247,245,16,68,113,63,18,116,67,118,22,99,62,197,23,243,73,104,24,239,33,33,27,209,164,197,32,183,165,232,38,47,171,242,44,223,151,227,58,47,220,187,60,8,166,112,60,18,113,29,60,151,115,21,60,233,54,203,67,239,56,30,70,193,69,103,71,47,237,44,71,236,201,85,75,74,16,130,77,84,214,135,77,196,61,43,79,66,212,167,86,110,194,108,92,146,147,230,95,199,252,73,100,56,166,212,101,129,164,30,103,0,172,61,104,65,78,149,104,120,43,231,108,240,74,126,121,207,97,196,125,166,102,37,131,248,184,224,134,106,194,165,135,164,18,132,139,96,44,66,144,56,37,205,149,49,200,215,154,131,253,26,156,225,14,228,162,142,14,64,163,26,92,85,163,60,199,97,165,105,89,131,169,168,196,56,171,139,38,215,184,122,49,213,185,38,82,91,186,10,114,31,187,129,193,117,189,210,155,235,198,219,125,109,217,61,118,179,219,213,93,252,221,220,244,86,237,69,69,161,248,224,130,50,0,5,9,98,111,100,121,44,104,116,109,108,2,61,11,39,255,49,12,192,190,70,13,234,247,245,16,68,113,63,18,116,67,118,22,99,62,197,23,243,73,104,24,239,33,33,27,209,164,197,32,183,165,232,38,47,171,242,44,223,151,227,58,47,220,187,60,8,166,112,60,18,113,29,60,151,115,21,60,233,54,203,67,239,56,30,70,193,69,103,71,47,237,44,71,236,201,85,75,74,16,130,77,84,214,135,77,196,61,43,79,66,212,167,86,110,194,108,92,146,147,230,95,199,252,73,100,56,166,212,101,129,164,30,103,0,172,61,104,65,78,149,104,120,43,231,108,240,74,126,121,207,97,196,125,166,102,37,131,248,184,224,134,106,194,165,135,164,18,132,139,96,44,66,144,56,37,205,149,49,200,215,154,131,253,26,156,225,14,228,162,142,14,64,163,26,92,85,163,60,199,97,165,105,89,131,169,168,196,56,171,139,38,215,184,122,49,213,185,38,82,91,186,10,114,31,187,129,193,117,189,210,155,235,198,219,125,109,217,61,118,179,219,213,93,252,221,220,244,86,237,69,69,161,248,224,130,50,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,22,46,97,114,99,116,105,99,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,135,132,167,38,8,1,20,46,97,114,99,116,105,99,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,135,132,167,38,0,5,9,98,111,100,121,44,104,116,109,108,2,1,135,132,167,38,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,109,111,100,97,108,45,99,111,111,107,105,101,115,2,3,10,137,70,225,125,179,145,30,231,211,85,76,0,5,9,98,111,100,121,44,104,116,109,108,2,3,10,137,70,225,125,179,145,30,231,211,85,76,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,14,35,111,98,99,111,111,107,105,101,115,95,98,111,120,2,1,38,215,1,196,0,5,9,98,111,100,121,44,104,116,109,108,2,1,38,215,1,196,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,12,35,99,111,111,107,105,101,115,50,48,50,48,2,13,1,0,57,6,8,13,230,21,10,124,19,176,20,24,188,231,24,102,205,15,62,170,46,60,137,216,188,183,151,58,45,192,152,143,105,73,196,117,70,177,239,203,27,114,241,167,6,204,250,54,46,111,16,1,19,35,99,111,111,107,105,101,115,50,48,50,48,111,118,101,114,108,97,121,2,13,1,0,57,6,8,13,230,21,10,124,19,176,20,24,188,231,24,102,205,15,62,170,46,60,137,216,188,183,151,58,45,192,152,143,105,73,196,117,70,177,239,203,27,114,241,167,6,204,250,54,46,111,0,5,9,98,111,100,121,44,104,116,109,108,2,13,1,0,57,6,8,13,230,21,10,124,19,176,20,24,188,231,24,102,205,15,62,170,46,60,137,216,188,183,151,58,45,192,152,143,105,73,196,117,70,177,239,203,27,114,241,167,6,204,250,54,46,111,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,14,35,112,100,99,99,45,109,111,100,97,108,45,98,103,2,49,2,108,52,104,3,43,89,84,4,12,193,45,10,10,210,7,12,33,92,194,13,53,123,192,13,251,54,170,14,214,4,60,22,60,211,236,26,162,171,145,28,235,178,164,39,138,70,171,45,65,255,8,47,242,113,140,49,78,149,254,65,235,159,214,68,37,235,11,77,173,0,169,87,130,15,137,112,23,162,26,112,225,45,132,116,169,70,220,124,86,154,124,139,144,105,206,142,63,39,233,144,123,219,41,149,118,238,138,150,132,153,80,152,6,233,213,157,118,15,202,159,132,2,65,165,125,166,55,167,73,124,130,174,203,184,149,183,155,209,199,187,145,38,152,187,156,133,181,188,2,176,239,188,67,145,44,189,43,94,21,190,188,162,128,202,93,238,167,209,190,153,123,219,28,128,114,233,218,223,130,234,95,119,191,239,33,178,141,242,22,243,238,244,148,242,160,0,5,9,98,111,100,121,44,104,116,109,108,2,49,2,108,52,104,3,43,89,84,4,12,193,45,10,10,210,7,12,33,92,194,13,53,123,192,13,251,54,170,14,214,4,60,22,60,211,236,26,162,171,145,28,235,178,164,39,138,70,171,45,65,255,8,47,242,113,140,49,78,149,254,65,235,159,214,68,37,235,11,77,173,0,169,87,130,15,137,112,23,162,26,112,225,45,132,116,169,70,220,124,86,154,124,139,144,105,206,142,63,39,233,144,123,219,41,149,118,238,138,150,132,153,80,152,6,233,213,157,118,15,202,159,132,2,65,165,125,166,55,167,73,124,130,174,203,184,149,183,155,209,199,187,145,38,152,187,156,133,181,188,2,176,239,188,67,145,44,189,43,94,21,190,188,162,128,202,93,238,167,209,190,153,123,219,28,128,114,233,218,223,130,234,95,119,191,239,33,178,141,242,22,243,238,244,148,242,160,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,14,35,118,116,45,99,111,111,107,105,101,45,98,111,120,2,32,1,45,169,174,1,187,108,11,6,238,240,79,19,107,135,248,58,81,62,211,69,98,104,14,83,25,120,173,86,248,250,166,88,241,47,2,97,227,43,71,99,52,188,5,99,207,37,25,100,3,51,174,100,121,203,54,111,122,140,60,111,178,114,195,112,18,226,53,118,90,145,58,132,254,82,10,136,73,23,255,142,147,175,41,160,69,224,188,167,225,173,169,189,39,246,13,189,63,137,63,194,48,29,146,198,61,200,245,209,136,53,215,211,17,217,254,216,114,85,31,225,60,7,150,240,1,87,163,0,5,9,98,111,100,121,44,104,116,109,108,2,32,1,45,169,174,1,187,108,11,6,238,240,79,19,107,135,248,58,81,62,211,69,98,104,14,83,25,120,173,86,248,250,166,88,241,47,2,97,227,43,71,99,52,188,5,99,207,37,25,100,3,51,174,100,121,203,54,111,122,140,60,111,178,114,195,112,18,226,53,118,90,145,58,132,254,82,10,136,73,23,255,142,147,175,41,160,69,224,188,167,225,173,169,189,39,246,13,189,63,137,63,194,48,29,146,198,61,200,245,209,136,53,215,211,17,217,254,216,114,85,31,225,60,7,150,240,1,87,163,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,97,110,116,45,109,111,100,97,108,45,114,111,111,116,2,1,59,138,86,169,0,5,9,98,111,100,121,44,104,116,109,108,2,1,59,138,86,169,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,109,114,109,95,103,100,112,114,44,32,49,2,2,98,236,90,94,242,231,141,90,2,1,39,115,101,116,45,99,111,111,107,105,101,44,32,110,101,99,101,115,115,97,114,121,95,99,111,110,115,101,110,116,44,32,97,99,99,101,112,116,101,100,2,2,98,236,90,94,242,231,141,90,16,1,23,35,99,111,111,107,105,101,115,45,102,108,111,119,45,99,111,110,116,97,105,110,101,114,2,6,48,81,93,225,154,28,85,15,178,164,98,157,196,84,214,84,229,22,97,244,247,29,20,126,0,5,9,98,111,100,121,44,104,116,109,108,2,6,48,81,93,225,154,28,85,15,178,164,98,157,196,84,214,84,229,22,97,244,247,29,20,126,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,14,35,99,111,111,107,105,101,45,115,111,102,116,101,114,2,40,13,189,216,145,15,127,176,29,27,120,55,145,32,207,85,213,43,220,2,28,45,62,163,76,47,76,185,27,53,123,239,54,63,54,208,56,63,173,58,244,65,217,43,126,67,233,73,220,68,143,144,101,68,238,188,245,76,206,101,67,84,49,85,194,86,37,218,167,92,180,70,54,94,174,93,105,104,161,249,64,115,244,163,79,117,199,28,134,122,17,18,127,126,175,97,2,131,10,245,74,138,204,22,210,141,73,133,249,150,87,64,85,152,141,252,87,154,58,28,169,161,226,185,209,163,1,186,196,164,68,124,113,180,188,120,142,186,183,209,61,189,49,99,66,190,39,51,85,205,26,207,151,233,68,91,125,233,95,91,1,0,5,9,98,111,100,121,44,104,116,109,108,2,40,13,189,216,145,15,127,176,29,27,120,55,145,32,207,85,213,43,220,2,28,45,62,163,76,47,76,185,27,53,123,239,54,63,54,208,56,63,173,58,244,65,217,43,126,67,233,73,220,68,143,144,101,68,238,188,245,76,206,101,67,84,49,85,194,86,37,218,167,92,180,70,54,94,174,93,105,104,161,249,64,115,244,163,79,117,199,28,134,122,17,18,127,126,175,97,2,131,10,245,74,138,204,22,210,141,73,133,249,150,87,64,85,152,141,252,87,154,58,28,169,161,226,185,209,163,1,186,196,164,68,124,113,180,188,120,142,186,183,209,61,189,49,99,66,190,39,51,85,205,26,207,151,233,68,91,125,233,95,91,1,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,4,46,99,104,50,2,2,126,86,163,9,193,134,245,146,0,5,4,98,111,100,121,2,2,126,86,163,9,193,134,245,146,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,115,99,114,101,101,110,45,98,108,111,99,107,101,114,2,7,73,85,226,132,78,154,212,75,98,149,75,45,125,34,162,173,130,26,191,37,205,202,243,33,221,114,29,21,0,5,9,98,111,100,121,44,104,116,109,108,2,7,73,85,226,132,78,154,212,75,98,149,75,45,125,34,162,173,130,26,191,37,205,202,243,33,221,114,29,21,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,5,46,114,111,100,111,2,4,86,243,232,61,96,233,91,133,134,252,68,85,161,183,198,226,0,5,9,98,111,100,121,44,104,116,109,108,2,4,86,243,232,61,96,233,91,133,134,252,68,85,161,183,198,226,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,7,46,114,101,118,101,97,108,2,1,135,71,84,220,8,1,15,46,114,101,118,101,97,108,45,111,118,101,114,108,97,121,2,8,5,196,192,47,28,191,103,143,48,28,57,224,91,38,181,6,102,149,212,145,135,71,84,220,179,44,222,205,202,52,183,244,0,5,9,98,111,100,121,44,104,116,109,108,2,8,5,196,192,47,28,191,103,143,48,28,57,224,91,38,181,6,102,149,212,145,135,71,84,220,179,44,222,205,202,52,183,244,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,17,35,99,111,111,107,105,101,110,111,116,105,99,101,95,98,111,120,2,1,150,163,11,82,0,5,9,98,111,100,121,44,104,116,109,108,2,1,150,163,11,82,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,9,35,98,97,99,107,100,114,111,112,2,6,36,34,110,140,45,224,129,40,71,43,27,64,131,11,140,21,166,200,17,177,226,170,110,0,0,5,9,98,111,100,121,44,104,116,109,108,2,6,36,34,110,140,45,224,129,40,71,43,27,64,131,11,140,21,166,200,17,177,226,170,110,0,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,22,46,97,109,103,100,112,114,106,115,45,98,97,114,45,116,101,109,112,108,97,116,101,2,1,148,182,65,244,0,5,9,98,111,100,121,44,104,116,109,108,2,1,148,182,65,244,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,12,35,99,111,111,107,105,101,77,111,100,97,108,2,5,15,68,35,37,45,241,101,23,65,237,76,156,74,142,133,39,107,188,188,57,0,5,9,98,111,100,121,44,104,116,109,108,2,5,15,68,35,37,45,241,101,23,65,237,76,156,74,142,133,39,107,188,188,57,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,115,103,112,98,45,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,65,195,229,147,8,1,35,46,115,103,112,98,45,112,111,112,117,112,45,100,105,97,108,111,103,45,109,97,105,110,45,100,105,118,45,119,114,97,112,112,101,114,2,1,65,195,229,147,0,5,9,98,111,100,121,44,104,116,109,108,2,1,65,195,229,147,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,103,100,112,114,79,118,101,114,108,97,121,2,3,84,32,95,63,186,20,91,46,206,124,178,18,8,1,14,46,99,111,111,107,105,101,115,83,112,108,97,115,104,2,3,84,32,95,63,186,20,91,46,206,124,178,18,8,1,7,46,99,111,111,107,105,101,2,2,162,89,222,196,255,241,28,9,0,5,4,98,111,100,121,2,2,162,89,222,196,255,241,28,9,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,99,111,111,107,105,101,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,86,207,192,102,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,86,207,192,102,0,5,9,98,111,100,121,44,104,116,109,108,2,1,86,207,192,102,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,111,107,105,101,45,109,111,100,97,108,2,3,33,53,164,31,84,162,152,218,132,22,235,0,0,5,9,98,111,100,121,44,104,116,109,108,2,3,33,53,164,31,84,162,152,218,132,22,235,0,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,15,35,98,97,110,110,101,114,45,112,114,105,118,97,99,121,2,1,35,44,123,182,8,1,21,46,97,98,102,45,110,111,45,99,111,111,107,105,101,58,58,97,102,116,101,114,2,1,35,44,123,182,0,5,9,98,111,100,121,44,104,116,109,108,2,1,35,44,123,182,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,111,107,105,101,45,109,111,100,97,108,2,1,139,97,60,187,8,1,8,46,111,118,101,114,108,97,121,2,1,139,97,60,187,0,5,9,98,111,100,121,44,104,116,109,108,2,1,139,97,60,187,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,80,114,105,118,97,99,121,67,97,116,101,103,111,114,121,65,108,101,114,116,2,3,115,161,156,176,115,189,155,54,162,20,6,229,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,3,115,161,156,176,115,189,155,54,162,20,6,229,0,5,9,98,111,100,121,44,104,116,109,108,2,3,115,161,156,176,115,189,155,54,162,20,6,229,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,23,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,97,110,34,93,2,2,121,213,33,250,148,184,166,236,0,5,4,98,111,100,121,2,2,121,213,33,250,148,184,166,236,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,8,35,111,118,101,114,108,97,121,2,3,48,90,34,75,228,57,255,40,245,208,210,181,0,5,9,98,111,100,121,44,104,116,109,108,2,3,48,90,34,75,228,57,255,40,245,208,210,181,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,11,35,99,111,111,107,105,101,78,111,116,101,2,4,68,205,38,72,162,11,86,207,221,221,154,68,225,236,198,206,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,4,68,205,38,72,162,11,86,207,221,221,154,68,225,236,198,206,0,5,9,98,111,100,121,44,104,116,109,108,2,4,68,205,38,72,162,11,86,207,221,221,154,68,225,236,198,206,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,22,46,99,111,111,107,105,101,115,45,119,105,100,103,101,116,45,45,108,105,103,104,116,2,27,19,37,150,158,22,7,123,44,22,68,149,9,23,75,189,25,57,39,89,116,57,213,113,2,85,217,31,241,90,215,2,85,110,1,139,15,112,164,241,104,129,40,250,238,134,62,250,202,143,252,162,204,160,180,62,122,175,70,139,243,191,164,233,162,194,132,93,79,209,104,165,188,211,5,110,222,211,172,150,198,215,55,76,199,215,55,76,199,219,175,147,180,221,126,218,241,233,27,167,19,244,140,26,218,250,79,248,37,0,5,9,98,111,100,121,44,104,116,109,108,2,27,19,37,150,158,22,7,123,44,22,68,149,9,23,75,189,25,57,39,89,116,57,213,113,2,85,217,31,241,90,215,2,85,110,1,139,15,112,164,241,104,129,40,250,238,134,62,250,202,143,252,162,204,160,180,62,122,175,70,139,243,191,164,233,162,194,132,93,79,209,104,165,188,211,5,110,222,211,172,150,198,215,55,76,199,215,55,76,199,219,175,147,180,221,126,218,241,233,27,167,19,244,140,26,218,250,79,248,37,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,24,100,105,118,91,105,100,42,61,34,95,109,111,100,97,108,95,111,117,116,101,114,95,34,93,2,8,24,62,229,223,44,44,107,154,91,151,111,44,116,101,163,25,117,39,242,156,143,228,202,36,182,118,148,224,216,248,161,23,0,5,9,98,111,100,121,44,104,116,109,108,2,8,24,62,229,223,44,44,107,154,91,151,111,44,116,101,163,25,117,39,242,156,143,228,202,36,182,118,148,224,216,248,161,23,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,103,100,112,114,67,111,111,107,105,101,66,97,114,79,118,101,114,108,97,121,2,5,10,64,66,88,83,49,28,209,84,128,212,251,103,148,160,109,134,197,35,186,0,5,9,98,111,100,121,44,104,116,109,108,2,5,10,64,66,88,83,49,28,209,84,128,212,251,103,148,160,109,134,197,35,186,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,25,35,119,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,105,100,103,101,116,2,16,10,230,170,136,50,5,162,245,56,231,99,247,66,237,181,17,71,151,204,212,74,217,46,165,93,193,14,166,97,89,124,179,127,160,110,151,138,204,104,34,143,39,210,128,143,43,86,129,168,158,117,154,175,18,113,66,206,169,127,90,212,83,113,37,0,5,4,98,111,100,121,2,16,10,230,170,136,50,5,162,245,56,231,99,247,66,237,181,17,71,151,204,212,74,217,46,165,93,193,14,166,97,89,124,179,127,160,110,151,138,204,104,34,143,39,210,128,143,43,86,129,168,158,117,154,175,18,113,66,206,169,127,90,212,83,113,37,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,111,100,97,108,2,3,38,85,218,87,152,76,8,77,233,168,213,124,0,5,4,98,111,100,121,2,3,38,85,218,87,152,76,8,77,233,168,213,124,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,20,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,111,100,97,108,2,2,91,131,233,116,175,4,47,243,0,5,4,98,111,100,121,2,2,91,131,233,116,175,4,47,243,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,10,46,106,115,45,45,109,111,100,97,108,2,80,2,18,6,1,2,163,177,62,3,124,52,177,3,168,225,186,6,202,96,121,7,3,5,161,8,156,163,141,9,134,25,158,21,63,196,28,21,215,74,174,22,48,121,119,25,81,223,150,29,200,36,38,32,13,109,78,34,98,5,82,36,251,185,206,39,61,58,49,41,6,94,97,44,195,100,3,46,8,248,43,47,121,161,99,50,115,115,213,52,52,24,45,52,119,226,184,52,136,196,76,57,93,93,77,62,36,158,243,68,140,90,93,68,212,171,48,70,191,74,172,77,213,153,80,81,111,248,232,96,116,192,169,101,89,184,6,102,135,126,202,107,154,114,250,107,154,114,250,107,154,114,250,107,154,114,250,110,104,63,253,113,45,122,163,120,152,122,159,120,181,194,68,121,91,203,200,127,169,56,52,128,205,11,69,131,176,201,95,135,137,20,208,136,28,165,22,139,221,137,141,141,252,88,48,143,147,43,95,149,156,111,189,155,22,187,158,159,10,255,238,165,98,158,29,168,110,56,217,169,146,75,6,171,212,67,188,175,36,28,11,175,179,217,248,176,39,210,149,179,137,153,207,180,164,63,200,181,214,199,107,185,6,30,99,194,245,20,189,199,115,160,169,201,190,16,244,202,65,245,237,204,50,199,138,212,198,110,0,218,72,34,112,219,243,254,240,224,223,244,41,226,175,28,109,227,18,231,49,235,49,15,164,245,248,16,240,247,220,0,238,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,80,2,18,6,1,2,163,177,62,3,124,52,177,3,168,225,186,6,202,96,121,7,3,5,161,8,156,163,141,9,134,25,158,21,63,196,28,21,215,74,174,22,48,121,119,25,81,223,150,29,200,36,38,32,13,109,78,34,98,5,82,36,251,185,206,39,61,58,49,41,6,94,97,44,195,100,3,46,8,248,43,47,121,161,99,50,115,115,213,52,52,24,45,52,119,226,184,52,136,196,76,57,93,93,77,62,36,158,243,68,140,90,93,68,212,171,48,70,191,74,172,77,213,153,80,81,111,248,232,96,116,192,169,101,89,184,6,102,135,126,202,107,154,114,250,107,154,114,250,107,154,114,250,107,154,114,250,110,104,63,253,113,45,122,163,120,152,122,159,120,181,194,68,121,91,203,200,127,169,56,52,128,205,11,69,131,176,201,95,135,137,20,208,136,28,165,22,139,221,137,141,141,252,88,48,143,147,43,95,149,156,111,189,155,22,187,158,159,10,255,238,165,98,158,29,168,110,56,217,169,146,75,6,171,212,67,188,175,36,28,11,175,179,217,248,176,39,210,149,179,137,153,207,180,164,63,200,181,214,199,107,185,6,30,99,194,245,20,189,199,115,160,169,201,190,16,244,202,65,245,237,204,50,199,138,212,198,110,0,218,72,34,112,219,243,254,240,224,223,244,41,226,175,28,109,227,18,231,49,235,49,15,164,245,248,16,240,247,220,0,238,8,1,17,46,109,110,100,45,99,111,111,107,105,101,45,109,111,100,97,108,2,80,2,18,6,1,2,163,177,62,3,124,52,177,3,168,225,186,6,202,96,121,7,3,5,161,8,156,163,141,9,134,25,158,21,63,196,28,21,215,74,174,22,48,121,119,25,81,223,150,29,200,36,38,32,13,109,78,34,98,5,82,36,251,185,206,39,61,58,49,41,6,94,97,44,195,100,3,46,8,248,43,47,121,161,99,50,115,115,213,52,52,24,45,52,119,226,184,52,136,196,76,57,93,93,77,62,36,158,243,68,140,90,93,68,212,171,48,70,191,74,172,77,213,153,80,81,111,248,232,96,116,192,169,101,89,184,6,102,135,126,202,107,154,114,250,107,154,114,250,107,154,114,250,107,154,114,250,110,104,63,253,113,45,122,163,120,152,122,159,120,181,194,68,121,91,203,200,127,169,56,52,128,205,11,69,131,176,201,95,135,137,20,208,136,28,165,22,139,221,137,141,141,252,88,48,143,147,43,95,149,156,111,189,155,22,187,158,159,10,255,238,165,98,158,29,168,110,56,217,169,146,75,6,171,212,67,188,175,36,28,11,175,179,217,248,176,39,210,149,179,137,153,207,180,164,63,200,181,214,199,107,185,6,30,99,194,245,20,189,199,115,160,169,201,190,16,244,202,65,245,237,204,50,199,138,212,198,110,0,218,72,34,112,219,243,254,240,224,223,244,41,226,175,28,109,227,18,231,49,235,49,15,164,245,248,16,240,247,220,0,238,0,5,9,98,111,100,121,44,104,116,109,108,2,80,2,18,6,1,2,163,177,62,3,124,52,177,3,168,225,186,6,202,96,121,7,3,5,161,8,156,163,141,9,134,25,158,21,63,196,28,21,215,74,174,22,48,121,119,25,81,223,150,29,200,36,38,32,13,109,78,34,98,5,82,36,251,185,206,39,61,58,49,41,6,94,97,44,195,100,3,46,8,248,43,47,121,161,99,50,115,115,213,52,52,24,45,52,119,226,184,52,136,196,76,57,93,93,77,62,36,158,243,68,140,90,93,68,212,171,48,70,191,74,172,77,213,153,80,81,111,248,232,96,116,192,169,101,89,184,6,102,135,126,202,107,154,114,250,107,154,114,250,107,154,114,250,107,154,114,250,110,104,63,253,113,45,122,163,120,152,122,159,120,181,194,68,121,91,203,200,127,169,56,52,128,205,11,69,131,176,201,95,135,137,20,208,136,28,165,22,139,221,137,141,141,252,88,48,143,147,43,95,149,156,111,189,155,22,187,158,159,10,255,238,165,98,158,29,168,110,56,217,169,146,75,6,171,212,67,188,175,36,28,11,175,179,217,248,176,39,210,149,179,137,153,207,180,164,63,200,181,214,199,107,185,6,30,99,194,245,20,189,199,115,160,169,201,190,16,244,202,65,245,237,204,145,52,33,212,198,110,0,218,72,34,112,219,243,254,240,224,223,244,41,226,175,28,109,227,18,231,49,235,49,15,164,245,248,16,240,247,220,0,238,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,28,35,99,111,111,107,105,101,45,98,97,110,110,101,114,46,99,111,111,107,105,101,45,98,97,110,110,101,114,2,35,1,173,95,59,9,205,216,89,31,162,97,198,34,77,120,188,36,57,50,65,36,76,36,150,50,149,135,136,58,140,94,217,68,208,65,98,83,87,45,26,94,231,27,82,96,128,68,163,99,77,76,116,123,194,221,212,132,25,5,193,145,3,47,128,148,160,121,117,177,238,57,215,178,148,173,226,180,68,107,86,183,246,105,50,192,38,162,77,200,83,31,19,204,43,243,246,210,175,158,152,217,25,224,109,223,132,35,32,224,80,165,162,233,150,216,237,239,31,207,249,243,248,134,70,245,19,10,7,245,96,144,255,245,170,87,17,253,17,5,151,0,5,9,98,111,100,121,44,104,116,109,108,2,35,1,173,95,59,9,205,216,89,31,162,97,198,34,77,120,188,36,57,50,65,36,76,36,150,50,149,135,136,58,140,94,217,68,208,65,98,83,87,45,26,94,231,27,82,96,128,68,163,99,77,76,116,123,194,221,212,132,25,5,193,145,3,47,128,148,160,121,117,177,238,57,215,178,148,173,226,180,68,107,86,183,246,105,50,192,38,162,77,200,83,31,19,204,43,243,246,210,175,158,152,217,25,224,109,223,132,35,32,224,80,165,162,233,150,216,237,239,31,207,249,243,248,134,70,245,19,10,7,245,96,144,255,245,170,87,17,253,17,5,151,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,109,111,100,97,108,45,99,97,99,115,112,45,112,111,115,105,116,105,111,110,2,1,179,160,169,189,8,1,21,46,109,111,100,97,108,45,99,97,99,115,112,45,98,97,99,107,100,114,111,112,2,1,179,160,169,189,0,5,4,104,116,109,108,2,1,179,160,169,189,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,25,46,99,111,111,107,105,101,45,119,114,97,112,112,101,114,45,99,111,110,116,97,105,110,101,114,2,1,71,76,29,1,0,5,9,98,111,100,121,44,104,116,109,108,2,1,71,76,29,1,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,116,97,114,116,101,97,117,99,105,116,114,111,110,82,111,111,116,2,2,39,209,196,53,154,166,145,127,0,5,9,98,111,100,121,44,104,116,109,108,2,2,39,209,196,53,154,166,145,127,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,9,27,122,30,105,52,239,58,65,76,58,14,223,82,220,111,191,166,60,238,192,196,121,241,166,197,6,87,245,231,112,234,117,242,231,129,145,16,1,16,35,99,111,111,107,105,101,109,97,110,45,109,111,100,97,108,2,9,27,122,30,105,52,239,58,65,76,58,14,223,82,220,111,191,166,60,238,192,196,121,241,166,197,6,87,245,231,112,234,117,242,231,129,145,0,5,4,98,111,100,121,2,9,27,122,30,105,52,239,58,65,76,58,14,223,82,220,111,191,166,60,238,192,196,121,241,166,197,6,87,245,231,112,234,117,242,231,129,145,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,15,7,8,15,228,30,164,191,17,30,248,7,116,88,87,43,38,99,193,233,223,139,246,254,63,150,52,1,76,179,20,4,226,186,229,168,25,187,74,254,74,190,147,250,16,198,40,104,251,223,28,198,235,235,107,12,61,237,168,21,29,16,1,20,35,103,100,112,114,95,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,58,254,112,108,16,1,22,35,103,100,112,114,95,99,111,111,107,105,101,45,109,97,105,110,87,114,97,112,112,2,1,58,254,112,108,0,5,9,98,111,100,121,44,104,116,109,108,2,1,58,254,112,108,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,12,35,106,115,45,99,99,45,109,111,100,97,108,2,1,179,177,248,90,0,5,4,98,111,100,121,2,1,179,177,248,90,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,106,115,45,111,45,112,97,103,101,95,95,103,100,112,114,45,111,118,101,114,108,97,121,2,30,4,82,133,126,7,229,243,218,13,245,207,122,44,35,154,13,46,38,152,223,49,191,48,68,49,192,100,99,52,94,58,128,54,214,136,245,84,1,135,70,90,86,183,117,100,24,47,22,107,32,220,108,111,96,242,73,118,221,109,183,138,134,171,224,143,211,47,7,144,148,214,115,148,247,155,239,151,252,172,31,161,140,64,241,173,37,214,227,183,147,101,123,186,229,3,224,196,140,53,254,216,104,177,124,217,46,82,76,219,84,3,167,229,246,25,144,235,52,88,73,0,5,4,98,111,100,121,2,30,4,82,133,126,7,229,243,218,13,245,207,122,44,35,154,13,46,38,152,223,49,191,48,68,49,192,100,99,52,94,58,128,54,214,136,245,84,1,135,70,90,86,183,117,100,24,47,22,107,32,220,108,111,96,242,73,118,221,109,183,138,134,171,224,143,211,47,7,144,148,214,115,148,247,155,239,151,252,172,31,161,140,64,241,173,37,214,227,183,147,101,123,186,229,3,224,196,140,53,254,216,104,177,124,217,46,82,76,219,84,3,167,229,246,25,144,235,52,88,73,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,122,107,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,2,107,170,87,134,164,96,9,228,0,5,9,98,111,100,121,44,104,116,109,108,2,2,107,170,87,134,164,96,9,228,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,31,35,106,115,45,109,111,100,101,114,110,45,99,111,111,107,105,101,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,27,96,158,31,0,5,9,98,111,100,121,44,104,116,109,108,2,1,27,96,158,31,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,112,117,109,45,111,118,101,114,108,97,121,2,2,147,175,19,128,247,38,65,144,0,5,9,98,111,100,121,44,104,116,109,108,2,2,147,175,19,128,247,38,65,144,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,9,7,3,5,161,14,211,138,243,49,188,57,48,68,131,245,77,94,197,19,250,98,100,139,82,152,106,168,241,202,201,155,73,223,250,243,134,0,5,9,98,111,100,121,44,104,116,109,108,2,9,7,3,5,161,14,211,138,243,49,188,57,48,68,131,245,77,94,197,19,250,98,100,139,82,152,106,168,241,202,201,155,73,223,250,243,134,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,109,111,100,97,108,45,45,99,111,111,107,105,101,2,1,79,195,119,237,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,1,79,195,119,237,0,5,9,98,111,100,121,44,104,116,109,108,2,1,79,195,119,237,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,9,46,115,110,111,111,112,45,99,99,2,4,27,116,234,188,66,249,189,62,166,80,179,59,184,76,213,17,2,1,32,114,99,44,32,115,110,111,111,112,45,109,111,100,97,108,45,111,112,101,110,44,32,98,111,100,121,44,32,115,116,97,121,2,4,27,116,234,188,66,249,189,62,166,80,179,59,184,76,213,17,8,1,10,46,106,115,45,45,109,111,100,97,108,2,5,2,12,87,97,6,45,185,93,134,31,215,31,188,105,9,161,242,231,28,120,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,5,2,12,87,97,6,45,185,93,134,31,215,31,188,105,9,161,242,231,28,120,0,5,9,98,111,100,121,44,104,116,109,108,2,5,2,12,87,97,6,45,185,93,134,31,215,31,188,105,9,161,242,231,28,120,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,77,117,105,65,108,101,114,116,45,114,111,111,116,2,1,11,187,171,193,0,5,4,104,116,109,108,2,1,11,187,171,193,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,29,46,77,117,105,68,105,97,108,111,103,45,114,111,111,116,46,77,117,105,77,111,100,97,108,45,114,111,111,116,2,8,16,56,150,171,41,64,174,80,46,247,77,62,83,157,71,152,101,214,4,222,145,18,68,144,168,17,239,193,210,41,232,31,0,5,4,104,116,109,108,2,8,16,56,150,171,41,64,174,80,46,247,77,62,83,157,71,152,101,214,4,222,145,18,68,144,168,17,239,193,210,41,232,31,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,106,115,45,99,111,111,107,105,101,45,119,97,108,108,2,1,14,108,84,199,0,5,9,98,111,100,121,44,104,116,109,108,2,1,14,108,84,199,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,99,111,111,107,105,101,115,67,111,110,115,101,110,116,68,105,97,108,111,103,2,16,7,110,50,48,19,94,26,192,20,86,157,97,34,49,200,161,68,143,65,222,92,87,155,84,108,16,106,22,122,180,217,252,128,81,229,59,134,120,30,4,148,253,49,121,153,102,140,26,154,117,89,105,175,51,204,61,176,16,164,232,212,229,203,7,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,16,7,110,50,48,19,94,26,192,20,86,157,97,34,49,200,161,68,143,65,222,92,87,155,84,108,16,106,22,122,180,217,252,128,81,229,59,134,120,30,4,148,253,49,121,153,102,140,26,154,117,89,105,175,51,204,61,176,16,164,232,212,229,203,7,0,5,9,98,111,100,121,44,104,116,109,108,2,16,7,110,50,48,19,94,26,192,20,86,157,97,34,49,200,161,68,143,65,222,92,87,155,84,108,16,106,22,122,180,217,252,128,81,229,59,134,120,30,4,148,253,49,121,153,102,140,26,154,117,89,105,175,51,204,61,176,16,164,232,212,229,203,7,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,108,97,121,101,114,2,17,0,56,17,3,15,173,68,122,38,185,94,71,54,247,250,173,77,73,160,171,86,214,61,194,100,15,47,11,114,99,149,166,120,172,184,18,126,133,32,134,129,180,186,179,130,134,128,141,152,45,38,189,169,149,178,23,187,22,34,60,222,166,145,53,253,118,198,42,8,1,21,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,105,100,103,101,116,2,17,0,56,17,3,15,173,68,122,38,185,94,71,54,247,250,173,77,73,160,171,86,214,61,194,100,15,47,11,114,99,149,166,120,172,184,18,126,133,32,134,129,180,186,179,130,134,128,141,152,45,38,189,169,149,178,23,187,22,34,60,222,166,145,53,253,118,198,42,16,1,8,35,111,118,101,114,108,97,121,2,17,0,56,17,3,15,173,68,122,38,185,94,71,54,247,250,173,77,73,160,171,86,214,61,194,100,15,47,11,114,99,149,166,120,172,184,18,126,133,32,134,129,180,186,179,130,134,128,141,152,45,38,189,169,149,178,23,187,22,34,60,222,166,145,53,253,118,198,42,0,5,9,98,111,100,121,44,104,116,109,108,2,17,0,56,17,3,15,173,68,122,38,185,94,71,54,247,250,173,77,73,160,171,86,214,61,194,100,15,47,11,114,99,149,166,120,172,184,18,126,133,32,134,129,180,186,179,130,134,128,141,152,45,38,189,169,149,178,23,187,22,34,60,222,166,145,53,253,118,198,42,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,103,100,112,114,45,99,111,109,112,111,110,101,110,116,2,1,160,110,94,109,0,5,4,98,111,100,121,2,1,160,110,94,109,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,5,46,118,101,105,108,2,1,48,212,100,5,0,5,4,98,111,100,121,2,1,48,212,100,5,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,99,111,111,107,105,101,45,110,111,116,105,102,121,95,95,119,114,97,112,2,1,31,238,151,43,0,5,4,98,111,100,121,2,1,31,238,151,43,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,1,22,100,105,118,46,116,118,112,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,4,2,155,167,176,44,44,189,181,190,81,52,51,192,64,29,227,0,5,4,104,116,109,108,2,4,2,155,167,176,44,44,189,181,190,81,52,51,192,64,29,227,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,118,50,2,13,21,68,152,244,43,75,242,97,46,24,37,180,51,194,100,167,86,225,51,122,93,66,176,82,131,63,36,204,132,80,35,201,152,75,82,8,205,193,203,5,220,113,115,95,254,26,46,71,254,151,145,105,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,13,21,68,152,244,43,75,242,97,46,24,37,180,51,194,100,167,86,225,51,122,93,66,176,82,131,63,36,204,132,80,35,201,152,75,82,8,205,193,203,5,220,113,115,95,254,26,46,71,254,151,145,105,0,5,4,98,111,100,121,2,13,21,68,152,244,43,75,242,97,46,24,37,180,51,194,100,167,86,225,51,122,93,66,176,82,131,63,36,204,132,80,35,201,152,75,82,8,205,193,203,5,220,113,115,95,254,26,46,71,254,151,145,105,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,95,95,98,110,97,45,99,109,112,45,100,105,115,112,108,97,121,2,1,158,144,57,176,0,5,4,98,111,100,121,2,1,158,144,57,176,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,1,9,99,107,112,108,45,119,101,98,99,2,2,24,194,238,2,67,32,123,89,0,5,9,98,111,100,121,44,104,116,109,108,2,2,24,194,238,2,67,32,123,89,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,111,111,107,105,101,115,102,117,108,108,83,99,114,101,101,110,2,1,162,16,129,26,0,5,4,98,111,100,121,2,1,162,16,129,26,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,102,99,95,117,110,100,101,114,108,97,121,2,1,27,105,94,103,8,1,10,46,102,99,95,100,105,97,108,111,103,2,1,27,105,94,103,0,5,9,98,111,100,121,44,104,116,109,108,2,1,27,105,94,103,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,5,18,46,99,111,111,107,105,101,67,111,110,115,101,110,116,82,111,111,116,2,1,144,118,8,194,31,116,114,97,110,115,102,111,114,109,58,32,115,99,97,108,101,40,48,41,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,106,115,45,99,111,111,107,105,101,98,111,120,2,1,16,250,104,175,2,1,32,114,99,44,32,105,115,45,98,108,117,114,114,101,100,45,99,111,111,107,105,101,98,111,120,44,32,44,32,115,116,97,121,2,1,16,250,104,175,8,1,9,46,100,97,116,97,104,105,110,116,2,1,144,157,209,45,8,1,24,46,106,115,45,111,45,112,97,103,101,95,95,103,100,112,114,45,111,118,101,114,108,97,121,2,1,5,221,85,194,0,5,9,98,111,100,121,44,104,116,109,108,2,1,5,221,85,194,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,30,91,99,108,97,115,115,42,61,34,77,111,100,97,108,95,95,83,109,111,107,101,83,99,114,101,101,110,45,34,93,2,1,152,53,204,197,0,5,9,98,111,100,121,44,104,116,109,108,2,1,152,53,204,197,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,27,46,99,99,45,116,104,101,109,101,45,99,108,97,115,115,105,99,46,99,99,45,119,105,110,100,111,119,2,1,130,26,65,11,16,1,17,35,112,97,110,100,101,99,116,101,115,45,98,97,110,110,101,114,2,1,130,26,65,11,0,5,9,98,111,100,121,44,104,116,109,108,2,1,130,26,65,11,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,99,45,119,105,110,100,111,119,45,98,108,111,99,107,101,114,2,1,222,37,222,30,0,5,9,98,111,100,121,44,104,116,109,108,2,1,222,37,222,30,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,17,35,99,111,110,115,101,110,116,45,116,114,97,99,107,105,110,103,2,1,222,173,36,74,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,222,173,36,74,8,1,5,46,118,101,105,108,2,1,222,173,36,74,0,5,9,98,111,100,121,44,104,116,109,108,2,1,222,173,36,74,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,105,110,104,111,117,115,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,227,16,141,17,0,5,9,98,111,100,121,44,104,116,109,108,2,1,227,16,141,17,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,9,42,152,81,28,76,231,164,35,77,5,73,20,169,191,112,73,170,89,153,47,178,83,49,126,223,102,183,7,248,120,153,241,252,3,227,143,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,99,111,109,112,108,105,97,110,99,101,79,118,101,114,108,97,121,2,1,203,80,115,129,0,5,4,98,111,100,121,2,1,203,80,115,129,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,9,46,106,115,45,111,116,115,100,107,2,17,53,112,120,177,58,154,133,213,66,86,225,164,67,254,42,73,96,237,135,13,133,57,54,247,139,70,176,148,140,68,5,87,150,39,218,20,157,163,18,74,163,170,54,241,165,76,152,60,177,164,15,217,185,128,231,149,199,226,50,176,224,208,166,178,234,246,57,82,0,5,9,98,111,100,121,44,104,116,109,108,2,17,53,112,120,177,58,154,133,213,66,86,225,164,67,254,42,73,96,237,135,13,133,57,54,247,139,70,176,148,140,68,5,87,150,39,218,20,157,163,18,74,163,170,54,241,165,76,152,60,177,164,15,217,185,128,231,149,199,226,50,176,224,208,166,178,234,246,57,82,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,16,35,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,2,1,33,143,119,215,2,1,38,114,99,44,32,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,45,112,111,112,117,112,44,32,98,111,100,121,44,32,115,116,97,121,2,1,33,143,119,215,2,1,36,114,99,44,32,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,111,112,101,110,44,32,98,111,100,121,44,32,115,116,97,121,2,1,33,143,119,215,8,1,6,46,109,111,100,97,108,2,1,3,28,179,34,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,3,28,179,34,0,5,9,98,111,100,121,44,104,116,109,108,2,1,3,28,179,34,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,112,111,112,105,110,45,111,118,101,114,108,97,121,2,1,204,146,28,220,0,5,9,98,111,100,121,44,104,116,109,108,2,1,204,146,28,220,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,17,35,99,98,45,99,111,111,107,105,101,111,118,101,114,108,97,121,2,1,214,154,181,5,0,5,9,98,111,100,121,44,104,116,109,108,2,1,214,154,181,5,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,99,111,111,107,105,101,106,115,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,1,243,130,87,95,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,243,130,87,95,0,5,9,98,111,100,121,44,104,116,109,108,2,1,243,130,87,95,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,14,35,99,111,111,107,105,101,115,45,97,108,101,114,116,2,1,175,24,246,39,0,5,9,98,111,100,121,44,104,116,109,108,2,1,175,24,246,39,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,17,35,99,111,111,107,105,101,110,111,116,105,99,101,95,98,111,120,2,40,1,82,80,4,3,16,138,211,6,127,202,253,13,142,181,177,15,67,226,154,16,179,192,72,27,124,54,219,46,103,110,95,46,224,70,253,48,97,209,232,67,20,134,197,67,101,228,248,69,254,73,6,74,169,238,197,80,205,166,108,89,93,237,136,109,112,246,21,109,184,30,114,115,72,103,9,138,26,216,54,138,176,42,71,144,175,229,75,155,193,42,30,163,59,15,205,181,238,176,165,190,247,139,215,191,23,154,53,200,28,123,123,211,214,192,126,212,242,153,190,214,4,16,139,220,226,40,61,226,214,22,66,227,203,121,63,228,79,175,249,237,27,61,118,242,231,107,32,242,231,107,32,249,17,116,18,250,34,112,245,0,5,9,98,111,100,121,44,104,116,109,108,2,40,1,82,80,4,3,16,138,211,6,127,202,253,13,142,181,177,15,67,226,154,16,179,192,72,27,124,54,219,46,103,110,95,46,224,70,253,48,97,209,232,67,20,134,197,67,101,228,248,69,254,73,6,74,169,238,197,80,205,166,108,89,93,237,136,109,112,246,21,109,184,30,114,115,72,103,9,138,26,216,54,138,176,42,71,144,175,229,75,155,193,42,30,163,59,15,205,181,238,176,165,190,247,139,215,191,23,154,53,200,28,123,123,211,214,192,126,212,242,153,190,214,4,16,139,220,226,40,61,226,214,22,66,227,203,121,63,228,79,175,249,237,27,61,118,242,231,107,32,242,231,107,32,249,17,116,18,250,34,112,245,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,111,107,105,101,45,109,111,100,97,108,2,3,65,195,9,55,158,107,109,120,241,176,218,254,8,1,9,46,98,103,45,109,111,100,97,108,2,3,65,195,9,55,158,107,109,120,241,176,218,254,0,5,9,104,116,109,108,44,98,111,100,121,2,3,65,195,9,55,158,107,109,120,241,176,218,254,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,25,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,102,117,108,108,115,99,114,101,101,110,2,1,215,22,237,142,0,5,9,104,116,109,108,44,98,111,100,121,2,1,215,22,237,142,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,2,1,32,114,99,44,32,122,112,45,103,116,109,45,115,99,114,105,112,116,115,45,45,98,108,117,114,44,32,44,32,115,116,97,121,2,1,84,112,72,53,8,1,29,46,122,112,45,103,116,109,45,115,99,114,105,112,116,115,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,84,112,72,53,16,1,13,35,114,111,100,111,45,109,101,115,115,97,103,101,2,2,38,189,162,206,55,67,199,7,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,2,38,189,162,206,55,67,199,7,0,5,9,98,111,100,121,44,104,116,109,108,2,2,38,189,162,206,55,67,199,7,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,98,97,115,101,45,109,111,100,97,108,45,100,105,97,108,111,103,2,1,42,195,149,251,0,5,9,98,111,100,121,44,104,116,109,108,2,1,42,195,149,251,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,99,99,45,119,114,97,112,112,101,114,2,1,126,23,141,159,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,23,141,159,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,15,35,112,114,105,118,97,99,121,45,119,105,110,100,111,119,2,1,144,84,182,119,0,5,9,98,111,100,121,44,104,116,109,108,2,1,144,84,182,119,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,28,46,100,45,103,116,109,45,115,99,114,105,112,116,115,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,2,3,86,133,11,36,80,170,114,8,1,11,46,99,99,45,111,118,101,114,108,97,121,2,1,220,8,51,157,16,1,13,35,107,111,101,107,106,101,87,105,100,103,101,116,2,1,244,181,82,109,2,1,16,114,99,44,32,100,111,116,115,44,32,44,32,115,116,97,121,2,1,244,181,82,109,8,1,19,46,108,116,97,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,246,19,7,90,2,1,30,114,99,44,32,99,111,111,107,105,101,115,45,109,111,100,97,108,45,111,112,101,110,44,32,44,32,115,116,97,121,2,1,246,19,7,90,8,1,19,46,77,111,100,97,108,95,109,111,100,97,108,95,95,106,90,82,66,102,2,1,0,153,223,227,0,5,9,98,111,100,121,44,104,116,109,108,2,1,0,153,223,227,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,99,111,111,107,105,101,115,45,109,111,100,97,108,2,1,214,180,245,85,0,5,9,98,111,100,121,44,104,116,109,108,2,1,214,180,245,85,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,5,35,103,112,100,114,2,1,214,214,28,112,0,5,9,98,111,100,121,44,104,116,109,108,2,1,214,214,28,112,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,44,185,42,47,0,5,9,98,111,100,121,44,104,116,109,108,2,1,44,185,42,47,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,107,108,103,48,103,114,51,2,1,161,43,10,53,8,1,8,46,107,108,103,48,103,114,54,2,1,161,43,10,53,0,5,4,98,111,100,121,2,1,161,43,10,53,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,1,42,2,1,161,43,10,53,75,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,11,46,109,111,100,97,108,45,114,103,112,100,2,1,145,165,79,170,2,1,23,114,99,44,32,111,118,101,114,108,97,121,44,32,98,111,100,121,44,32,115,116,97,121,2,1,145,165,79,170,16,1,24,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,101,120,116,101,110,100,101,100,2,1,5,112,30,41,0,5,9,98,111,100,121,44,104,116,109,108,2,1,5,112,30,41,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,65,80,95,109,111,100,45,98,109,45,108,97,121,101,114,2,1,244,234,116,8,0,5,9,98,111,100,121,44,104,116,109,108,2,1,244,234,116,8,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,20,35,105,110,116,101,114,79,112,97,99,105,100,97,100,67,111,111,107,105,101,2,1,148,18,138,105,8,1,17,46,100,109,95,99,111,111,107,105,101,115,95,99,111,110,116,50,2,1,148,18,138,105,0,5,9,98,111,100,121,44,104,116,109,108,2,1,148,18,138,105,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,29,35,104,101,97,100,108,101,115,115,117,105,45,100,105,97,108,111,103,45,111,118,101,114,108,97,121,45,49,57,2,1,99,138,62,39,16,1,21,35,104,101,97,100,108,101,115,115,117,105,45,100,105,97,108,111,103,45,49,55,2,1,99,138,62,39,0,5,9,98,111,100,121,44,104,116,109,108,2,1,99,138,62,39,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,108,97,110,107,101,116,2,1,130,108,79,107,0,5,9,98,111,100,121,44,104,116,109,108,2,1,130,108,79,107,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,23,103,108,45,109,97,110,97,103,101,45,99,111,111,107,105,101,115,45,109,111,100,97,108,2,1,229,14,188,94,0,5,9,104,116,109,108,44,98,111,100,121,2,1,229,14,188,94,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,115,116,121,108,101,115,95,95,79,118,101,114,108,97,121,45,34,93,2,1,24,34,91,32,0,5,9,98,111,100,121,44,104,116,109,108,2,1,24,34,91,32,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,108,111,103,111,98,97,114,2,1,126,183,54,85,0,5,4,98,111,100,121,2,1,126,183,54,85,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,45,99,111,110,115,101,110,116,115,2,19,3,175,39,97,5,67,90,3,11,36,193,8,18,179,233,245,41,3,1,159,56,237,175,40,82,178,228,175,83,143,98,173,91,74,45,171,117,87,241,204,126,22,69,154,128,225,153,135,158,147,196,162,195,59,149,180,199,215,101,23,213,213,21,137,227,223,238,168,230,56,156,39,247,19,184,162,8,1,24,46,119,105,116,104,45,98,108,117,114,114,101,100,45,98,97,99,107,103,114,111,117,110,100,2,18,3,175,39,97,5,67,90,3,11,36,193,8,18,179,233,245,41,3,1,159,56,237,175,40,82,178,228,175,83,143,98,173,91,74,45,171,117,87,241,204,126,22,69,154,128,225,153,135,195,59,149,180,199,215,101,23,213,213,21,137,227,223,238,168,230,56,156,39,247,19,184,162,8,1,17,46,101,45,115,99,114,101,101,110,45,111,118,101,114,108,97,121,2,18,3,175,39,97,5,67,90,3,11,36,193,8,18,179,233,245,41,3,1,159,56,237,175,40,82,178,228,175,83,143,98,173,91,74,45,171,117,87,241,204,126,22,69,154,128,225,153,135,195,59,149,180,199,215,101,23,213,213,21,137,227,223,238,168,230,56,156,39,247,19,184,162,8,1,26,46,101,45,99,111,110,115,101,110,116,115,45,97,108,101,114,116,95,95,119,114,97,112,112,101,114,2,18,3,175,39,97,5,67,90,3,11,36,193,8,18,179,233,245,41,3,1,159,56,237,175,40,82,178,228,175,83,143,98,173,91,74,45,171,117,87,241,204,126,22,69,154,128,225,153,135,195,59,149,180,199,215,101,23,213,213,21,137,227,223,238,168,230,56,156,39,247,19,184,162,0,5,9,98,111,100,121,44,104,116,109,108,2,18,3,175,39,97,5,67,90,3,11,36,193,8,18,179,233,245,41,3,1,159,56,237,175,40,82,178,228,175,83,143,98,173,91,74,45,171,117,87,241,204,126,22,69,154,128,225,153,135,195,59,149,180,199,215,101,23,213,213,21,137,227,223,238,168,230,56,156,39,247,19,184,162,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,245,105,84,29,0,5,9,98,111,100,121,44,104,116,109,108,2,1,245,105,84,29,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,138,42,64,30,8,5,16,46,119,114,97,112,112,101,114,45,45,108,111,99,107,101,100,2,1,138,42,64,30,30,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,99,115,115,45,49,50,54,120,106,48,102,2,1,71,234,181,56,0,5,4,98,111,100,121,2,1,71,234,181,56,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,27,46,99,50,52,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,2,1,9,3,254,228,0,5,4,98,111,100,121,2,1,9,3,254,228,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,101,97,45,99,111,111,107,105,101,115,45,112,111,112,105,110,2,1,113,245,37,251,0,5,9,98,111,100,121,44,104,116,109,108,2,1,113,245,37,251,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,16,35,67,111,110,116,97,105,110,101,114,67,111,111,107,105,101,2,1,11,80,169,243,16,1,23,35,67,111,110,116,97,105,110,101,114,79,112,97,99,105,116,121,67,111,111,107,105,101,2,1,11,80,169,243,0,5,4,98,111,100,121,2,1,11,80,169,243,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,99,104,105,109,112,105,102,121,45,111,118,101,114,108,97,121,2,1,231,245,190,4,8,1,17,46,99,104,45,112,111,112,117,112,45,99,111,111,107,105,101,115,2,1,231,245,190,4,0,5,9,98,111,100,121,44,104,116,109,108,2,1,231,245,190,4,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,1,152,11,43,253,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,152,11,43,253,2,1,22,114,99,44,32,109,111,100,97,108,45,111,112,101,110,44,32,44,32,115,116,97,121,2,1,152,11,43,253,8,1,11,46,115,106,45,111,118,101,114,108,97,121,2,1,235,153,56,165,0,5,4,98,111,100,121,2,1,235,153,56,165,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,11,35,99,111,111,107,105,101,45,106,97,114,2,1,73,250,54,129,2,1,21,114,99,44,32,119,105,116,104,45,100,97,114,107,44,32,44,32,115,116,97,121,2,1,73,250,54,129,16,1,17,35,99,111,111,107,105,101,45,98,97,114,45,109,111,100,97,108,2,1,210,60,95,98,0,5,4,98,111,100,121,2,1,210,60,95,98,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,99,111,111,107,105,101,115,45,109,97,110,97,103,101,109,101,110,116,2,5,2,53,164,88,56,44,159,14,115,146,138,252,221,242,51,87,236,81,227,128,0,5,9,98,111,100,121,44,104,116,109,108,2,5,2,53,164,88,56,44,159,14,115,146,138,252,221,242,51,87,236,81,227,128,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,5,46,122,45,53,48,2,1,142,38,149,186,8,1,16,46,115,104,97,100,111,119,45,108,103,46,102,105,120,101,100,2,1,142,38,149,186,0,5,9,104,116,109,108,44,98,111,100,121,2,1,142,38,149,186,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,109,111,100,97,108,45,109,97,115,107,2,1,90,82,127,94,0,5,9,98,111,100,121,44,104,116,109,108,2,1,90,82,127,94,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,95,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,221,235,65,75,8,1,13,46,99,111,111,107,105,101,98,97,110,110,101,114,2,1,57,19,250,104,0,5,9,98,111,100,121,44,104,116,109,108,2,1,57,19,250,104,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,17,46,98,115,103,45,99,111,111,107,105,101,45,108,97,121,101,114,2,1,226,183,220,159,0,5,9,98,111,100,121,44,104,116,109,108,2,1,226,183,220,159,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,24,35,115,107,97,103,101,110,45,99,111,110,115,101,110,116,45,97,112,112,45,112,97,103,101,2,1,7,176,44,32,0,5,9,98,111,100,121,44,104,116,109,108,2,1,7,176,44,32,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,1,66,213,91,158,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,66,213,91,158,0,5,9,98,111,100,121,44,104,116,109,108,2,17,11,34,147,173,13,128,48,166,20,175,191,66,42,83,5,37,65,234,185,142,72,138,207,246,87,192,96,16,90,112,140,13,100,171,204,192,144,144,115,163,159,35,211,111,165,152,150,248,188,194,234,15,213,25,216,208,233,228,86,27,239,151,217,130,255,91,78,6,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,106,111,117,114,95,99,111,111,107,105,101,115,44,32,49,2,1,181,124,252,102,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,106,111,117,114,95,102,117,110,99,116,105,111,110,97,108,44,32,116,114,117,101,2,1,181,124,252,102,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,106,111,117,114,95,97,110,97,108,121,116,105,99,115,44,32,102,97,108,115,101,2,1,181,124,252,102,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,106,111,117,114,95,109,97,114,107,101,116,105,110,103,44,32,102,97,108,115,101,2,1,181,124,252,102,0,1,24,100,105,118,35,111,110,101,116,114,117,115,116,45,99,111,110,115,101,110,116,45,115,100,107,2,8,61,19,178,127,84,201,183,192,109,13,167,110,120,175,41,134,121,207,85,136,139,120,0,29,152,183,140,72,156,23,130,211,2,1,43,115,101,116,44,32,66,114,111,99,107,109,97,110,65,108,108,111,119,101,100,67,111,111,107,105,101,115,46,116,97,114,103,101,116,105,110,103,44,32,116,114,117,101,2,8,61,19,178,127,84,201,183,192,109,13,167,110,120,175,41,134,121,207,85,136,139,120,0,29,152,183,140,72,156,23,130,211,2,1,44,115,101,116,44,32,66,114,111,99,107,109,97,110,65,108,108,111,119,101,100,67,111,111,107,105,101,115,46,102,117,110,99,116,105,111,110,97,108,44,32,116,114,117,101,2,8,61,19,178,127,84,201,183,192,109,13,167,110,120,175,41,134,121,207,85,136,139,120,0,29,152,183,140,72,156,23,130,211,0,1,24,100,105,118,35,111,110,101,116,114,117,115,116,45,99,111,110,115,101,110,116,45,115,100,107,2,1,101,44,44,128,2,1,26,115,101,116,45,99,111,111,107,105,101,44,32,103,100,112,114,95,111,112,116,95,105,110,44,32,49,2,1,101,44,44,128,0,5,9,98,111,100,121,44,104,116,109,108,2,1,159,124,171,99,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,24,35,98,108,111,99,45,98,109,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,2,1,174,128,69,130,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,174,128,69,130,0,5,9,98,111,100,121,44,104,116,109,108,2,1,174,128,69,130,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,30,115,101,116,45,99,111,111,107,105,101,44,32,97,100,95,115,116,111,114,97,103,101,44,32,100,101,110,105,101,100,2,1,37,66,189,200,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,115,116,105,99,107,121,67,111,111,107,105,101,115,83,101,116,44,32,116,114,117,101,2,1,37,66,189,200,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,97,110,97,108,121,116,105,99,115,95,115,116,111,114,97,103,101,44,32,100,101,110,105,101,100,2,1,37,66,189,200,8,1,8,46,99,45,45,97,110,105,109,2,18,39,247,240,142,57,238,139,181,60,62,251,10,107,95,168,252,107,95,168,252,113,46,7,98,116,33,77,96,137,13,47,194,139,125,28,99,171,202,120,237,178,231,1,149,189,128,26,79,190,81,130,32,201,90,225,85,218,225,33,129,221,37,94,194,225,219,239,8,249,71,160,198,0,5,9,98,111,100,121,44,104,116,109,108,2,18,39,247,240,142,57,238,139,181,60,62,251,10,107,95,168,252,107,95,168,252,113,46,7,98,116,33,77,96,137,13,47,194,139,125,28,99,171,202,120,237,178,231,1,149,189,128,26,79,190,81,130,32,201,90,225,85,218,225,33,129,221,37,94,194,225,219,239,8,249,71,160,198,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,29,114,99,44,32,115,104,111,119,45,45,99,111,110,115,101,110,116,44,32,98,111,100,121,44,32,115,116,97,121,2,17,39,247,240,142,57,238,139,181,60,62,251,10,107,95,168,252,107,95,168,252,113,46,7,98,116,33,77,96,137,13,47,194,139,125,28,99,178,231,1,149,189,128,26,79,190,81,130,32,201,90,225,85,218,225,33,129,221,37,94,194,225,219,239,8,249,71,160,198,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,117,115,101,114,95,101,120,112,101,114,105,101,110,99,101,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,179,153,162,171,2,1,43,115,101,116,45,99,111,111,107,105,101,44,32,109,97,114,107,101,116,105,110,103,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,44,32,102,97,108,115,101,2,1,179,153,162,171,2,1,40,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,110,111,116,105,99,101,95,100,105,115,109,105,115,115,101,100,44,32,121,101,115,2,1,54,81,192,89,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,110,97,108,121,116,105,99,115,95,97,108,108,111,119,44,32,110,111,2,1,54,81,192,89,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,109,101,114,95,99,99,95,100,105,109,95,114,101,109,95,97,108,108,111,119,44,32,110,111,2,1,54,81,192,89,16,1,10,35,99,111,67,111,110,115,101,110,116,2,1,135,125,100,179,0,5,9,98,111,100,121,44,104,116,109,108,2,1,135,125,100,179,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,107,108,97,114,111,2,3,106,211,223,79,121,197,122,200,227,122,131,102,8,1,16,46,108,111,97,100,105,110,103,45,111,118,101,114,108,97,121,2,1,126,221,110,23,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,221,110,23,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,6,35,107,108,97,114,111,2,16,13,242,34,23,14,229,149,37,26,135,53,29,62,163,63,129,87,26,141,168,99,161,165,150,99,243,8,126,119,34,4,189,121,63,253,187,144,196,53,73,191,159,155,170,193,4,60,0,197,233,159,85,198,74,193,244,233,78,74,244,252,133,138,112,0,5,9,98,111,100,121,44,104,116,109,108,2,16,13,242,34,23,14,229,149,37,26,135,53,29,62,163,63,129,87,26,141,168,99,161,165,150,99,243,8,126,119,34,4,189,121,63,253,187,144,196,53,73,191,159,155,170,193,4,60,0,197,233,159,85,198,74,193,244,233,78,74,244,252,133,138,112,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,4,98,111,100,121,2,1,247,207,198,90,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,100,105,97,108,111,103,95,108,97,121,101,114,2,2,154,13,173,149,242,231,20,231,0,5,4,98,111,100,121,2,2,154,13,173,149,242,231,20,231,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,99,111,111,107,105,101,98,97,110,110,101,114,77,111,100,97,108,2,1,182,183,232,194,2,1,27,114,99,44,32,109,101,115,115,97,103,101,115,45,97,99,116,105,118,101,44,32,44,32,115,116,97,121,2,1,182,183,232,194,8,1,13,46,109,111,100,97,108,45,100,105,97,108,111,103,2,1,17,144,148,104,0,5,9,98,111,100,121,44,104,116,109,108,2,1,17,144,148,104,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,99,111,110,115,101,110,116,95,95,110,111,116,105,99,101,2,1,167,112,104,113,8,1,14,46,98,111,100,121,45,98,108,97,99,107,111,117,116,2,1,167,112,104,113,0,5,9,98,111,100,121,44,104,116,109,108,2,1,167,112,104,113,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,28,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,44,32,49,2,20,15,72,59,192,24,69,246,147,31,104,75,126,43,64,54,249,47,89,75,7,59,23,70,56,83,236,88,183,91,70,70,60,111,130,85,104,125,241,191,235,142,27,80,12,148,169,144,147,152,197,90,108,157,151,146,238,183,142,85,2,225,194,218,190,240,14,79,190,246,158,98,247,247,35,108,72,251,44,214,127,16,1,21,35,67,121,98,111,116,67,111,111,107,105,101,98,111,116,68,105,97,108,111,103,2,7,126,114,76,196,146,45,146,227,157,11,166,188,203,52,109,75,235,99,236,125,235,235,168,98,250,118,29,11,16,1,33,35,67,121,98,111,116,67,111,111,107,105,101,98,111,116,68,105,97,108,111,103,66,111,100,121,85,110,100,101,114,108,97,121,2,7,126,114,76,196,146,45,146,227,157,11,166,188,203,52,109,75,235,99,236,125,235,235,168,98,250,118,29,11,0,5,4,98,111,100,121,2,2,235,235,168,98,250,118,29,11,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,5,126,114,76,196,146,45,146,227,157,11,166,188,203,52,109,75,235,99,236,125,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,31,35,99,111,111,107,105,101,45,116,114,97,110,115,112,97,114,101,110,99,121,45,109,111,100,97,108,45,109,97,105,110,2,1,195,167,118,100,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,195,167,118,100,0,5,9,98,111,100,121,44,104,116,109,108,2,1,195,167,118,100,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,111,100,97,108,2,24,19,97,45,40,41,134,164,18,55,201,164,180,75,174,49,43,84,40,128,244,87,193,115,70,92,212,218,176,99,87,14,67,99,146,253,227,105,55,234,152,112,155,21,18,112,205,13,15,124,147,243,51,128,3,10,24,132,187,37,39,134,123,106,234,149,132,113,191,150,241,105,61,177,180,26,229,184,226,21,255,185,58,5,12,226,210,145,199,233,231,120,9,240,161,224,7,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,24,19,97,45,40,41,134,164,18,55,201,164,180,75,174,49,43,84,40,128,244,87,193,115,70,92,212,218,176,99,87,14,67,99,146,253,227,105,55,234,152,112,155,21,18,112,205,13,15,124,147,243,51,128,3,10,24,132,187,37,39,134,123,106,234,149,132,113,191,150,241,105,61,177,180,26,229,184,226,21,255,185,58,5,12,226,210,145,199,233,231,120,9,240,161,224,7,0,5,9,98,111,100,121,44,104,116,109,108,2,24,19,97,45,40,41,134,164,18,55,201,164,180,75,174,49,43,84,40,128,244,87,193,115,70,92,212,218,176,99,87,14,67,99,146,253,227,105,55,234,152,112,155,21,18,112,205,13,15,124,147,243,51,128,3,10,24,132,187,37,39,134,123,106,234,149,132,113,191,150,241,105,61,177,180,26,229,184,226,21,255,185,58,5,12,226,210,145,199,233,231,120,9,240,161,224,7,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,110,117,109,95,116,105,109,101,115,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,95,115,104,111,119,110,44,32,49,2,24,19,97,45,40,41,134,164,18,55,201,164,180,75,174,49,43,84,40,128,244,87,193,115,70,92,212,218,176,99,87,14,67,99,146,253,227,105,55,234,152,112,155,21,18,112,205,13,15,124,147,243,51,128,3,10,24,132,187,37,39,134,123,106,234,149,132,113,191,150,241,105,61,177,180,26,229,184,226,21,255,185,58,5,12,226,210,145,199,233,231,120,9,240,161,224,7,2,1,52,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,95,115,104,111,119,110,95,108,97,115,116,95,116,105,109,101,44,32,49,2,24,19,97,45,40,41,134,164,18,55,201,164,180,75,174,49,43,84,40,128,244,87,193,115,70,92,212,218,176,99,87,14,67,99,146,253,227,105,55,234,152,112,155,21,18,112,205,13,15,124,147,243,51,128,3,10,24,132,187,37,39,134,123,106,234,149,132,113,191,150,241,105,61,177,180,26,229,184,226,21,255,185,58,5,12,226,210,145,199,233,231,120,9,240,161,224,7,8,1,18,46,118,45,100,105,97,108,111,103,95,95,99,111,110,116,101,110,116,2,1,168,115,57,93,8,1,10,46,118,45,111,118,101,114,108,97,121,2,1,168,115,57,93,16,1,18,35,102,114,97,109,101,119,111,114,107,45,99,111,111,107,105,101,115,2,41,3,178,96,32,4,67,90,142,7,178,127,86,9,16,208,205,23,163,101,7,28,184,213,114,29,224,191,114,34,77,86,163,45,57,90,84,49,169,236,91,51,31,37,232,60,233,137,43,68,213,125,72,70,50,207,121,74,29,54,54,89,24,229,190,90,106,151,163,90,107,136,139,91,73,113,61,95,143,197,118,99,124,212,154,103,1,171,221,115,34,114,192,115,45,145,222,119,208,77,17,128,205,116,39,134,13,188,250,139,37,132,141,139,106,135,127,151,17,236,175,154,91,172,65,180,67,103,150,190,148,6,208,198,124,166,152,201,6,196,227,207,179,149,251,231,138,69,227,238,116,26,29,239,184,88,221,249,153,129,123,249,163,101,182,0,5,9,98,111,100,121,44,104,116,109,108,2,41,3,178,96,32,4,67,90,142,7,178,127,86,9,16,208,205,23,163,101,7,28,184,213,114,29,224,191,114,34,77,86,163,45,57,90,84,49,169,236,91,51,31,37,232,60,233,137,43,68,213,125,72,70,50,207,121,74,29,54,54,89,24,229,190,90,106,151,163,90,107,136,139,91,73,113,61,95,143,197,118,99,124,212,154,103,1,171,221,115,34,114,192,115,45,145,222,119,208,77,17,128,205,116,39,134,13,188,250,139,37,132,141,139,106,135,127,151,17,236,175,154,91,172,65,180,67,103,150,190,148,6,208,198,124,166,152,201,6,196,227,207,179,149,251,231,138,69,227,238,116,26,29,239,184,88,221,249,153,129,123,249,163,101,182,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,28,46,99,109,109,115,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,97,110,97,103,101,114,2,1,180,24,169,34,0,5,9,98,111,100,121,44,104,116,109,108,2,1,180,24,169,34,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,112,114,105,118,97,99,121,95,104,105,110,116,44,32,49,2,1,180,24,169,34,8,1,13,46,99,104,97,107,114,97,45,115,108,105,100,101,2,1,9,95,141,52,8,1,32,46,99,104,97,107,114,97,45,109,111,100,97,108,95,95,99,111,110,116,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,9,95,141,52,8,1,22,46,99,104,97,107,114,97,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,2,1,9,95,141,52,0,5,9,98,111,100,121,44,104,116,109,108,2,1,9,95,141,52,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,112,114,105,118,97,99,121,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,2,1,220,251,40,247,0,5,9,98,111,100,121,44,104,116,109,108,2,1,220,251,40,247,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,14,97,111,112,119,44,32,111,110,115,99,114,111,108,108,2,1,54,238,234,217,8,1,15,46,119,105,110,100,111,119,45,111,118,101,114,108,97,121,2,2,189,253,134,230,219,183,36,176,0,5,9,98,111,100,121,44,104,116,109,108,2,2,189,253,134,230,219,183,36,176,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,67,111,110,99,105,101,114,103,101,80,111,112,117,112,34,93,2,19,5,52,36,129,5,215,25,225,10,65,252,106,27,106,207,18,28,180,230,92,53,4,57,210,70,226,254,79,72,94,193,220,80,10,165,83,107,57,174,159,117,166,232,135,150,227,138,31,181,129,219,106,184,100,205,10,195,107,158,179,203,131,240,84,221,144,16,142,238,251,180,12,250,88,33,239,0,5,4,104,116,109,108,2,19,5,52,36,129,5,215,25,225,10,65,252,106,27,106,207,18,28,180,230,92,53,4,57,210,70,226,254,79,72,94,193,220,80,10,165,83,107,57,174,159,117,166,232,135,150,227,138,31,181,129,219,106,184,100,205,10,195,107,158,179,203,131,240,84,221,144,16,142,238,251,180,12,250,88,33,239,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,1,25,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,80,111,112,117,112,34,93,2,1,195,139,110,153,0,5,4,104,116,109,108,2,1,195,139,110,153,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,27,46,67,111,110,115,101,110,116,95,99,111,111,107,105,101,77,111,100,97,108,95,95,73,99,78,65,102,2,1,170,238,39,245,0,5,9,98,111,100,121,44,104,116,109,108,2,1,170,238,39,245,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,4,98,111,100,121,2,1,2,123,128,47,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,112,114,116,108,116,109,109,99,45,112,111,112,117,112,2,1,108,3,23,79,0,5,4,98,111,100,121,2,1,108,3,23,79,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,104,97,115,45,100,105,109,109,101,100,45,98,103,2,1,148,185,23,28,0,5,9,98,111,100,121,44,104,116,109,108,2,1,148,185,23,28,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,115,105,109,121,111,45,99,111,111,107,105,101,115,2,1,187,249,169,254,0,5,9,98,111,100,121,44,104,116,109,108,2,1,187,249,169,254,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,34,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,99,111,111,107,105,101,66,97,110,110,101,114,95,95,112,70,85,77,122,2,1,113,43,2,18,0,5,9,98,111,100,121,44,104,116,109,108,2,1,113,43,2,18,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,16,35,106,115,45,99,111,111,107,105,101,45,109,111,100,97,108,2,1,48,63,159,196,0,5,9,98,111,100,121,44,104,116,109,108,2,1,48,63,159,196,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,10,35,114,111,100,111,80,111,112,117,112,2,1,193,69,64,18,2,1,13,97,111,112,119,44,32,70,114,111,100,111,80,86,2,1,193,69,64,18,16,1,16,35,99,111,110,115,101,110,116,95,109,97,110,97,103,101,114,2,1,75,107,122,111,0,5,9,98,111,100,121,44,104,116,109,108,2,1,75,107,122,111,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,22,46,99,100,107,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,2,1,248,120,97,102,2,1,33,114,99,44,32,99,100,107,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,44,32,44,32,115,116,97,121,2,1,248,120,97,102,8,1,27,46,99,100,107,45,103,108,111,98,97,108,45,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,2,1,248,120,97,102,8,1,21,46,99,100,107,45,111,118,101,114,108,97,121,45,98,97,99,107,100,114,111,112,2,1,248,120,97,102,0,5,9,98,111,100,121,44,104,116,109,108,2,1,248,120,97,102,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,25,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,105,116,104,45,105,109,97,103,101,2,1,144,241,105,171,0,5,9,98,111,100,121,44,104,116,109,108,2,1,144,241,105,171,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,21,35,99,111,110,115,101,110,116,115,80,111,108,105,99,121,68,105,97,108,111,103,2,13,1,189,193,160,22,85,166,132,32,124,201,13,44,213,113,19,68,47,105,200,71,86,29,16,88,207,24,219,135,224,236,149,142,149,186,165,162,23,208,105,190,241,47,9,204,200,226,254,240,119,191,196,0,5,9,98,111,100,121,44,104,116,109,108,2,13,1,189,193,160,22,85,166,132,32,124,201,13,44,213,113,19,68,47,105,200,71,86,29,16,88,207,24,219,135,224,236,149,142,149,186,165,162,23,208,105,190,241,47,9,204,200,226,254,240,119,191,196,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,24,46,111,110,98,111,97,114,100,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,2,148,30,202,122,190,46,10,31,8,1,19,46,111,110,98,111,97,114,100,45,98,97,99,107,103,114,111,117,110,100,2,2,148,30,202,122,190,46,10,31,0,5,9,98,111,100,121,44,104,116,109,108,2,2,148,30,202,122,190,46,10,31,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,24,46,99,111,111,107,105,101,115,95,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,80,124,19,117,0,5,9,98,111,100,121,44,104,116,109,108,2,1,80,124,19,117,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,8,35,111,114,101,106,105,109,101,2,2,27,103,71,157,56,215,159,233,0,5,9,98,111,100,121,44,104,116,109,108,2,2,27,103,71,157,56,215,159,233,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,22,35,107,101,107,115,71,101,110,101,104,109,105,103,117,110,103,115,77,111,100,97,108,2,1,255,124,214,224,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,255,124,214,224,0,5,9,98,111,100,121,44,104,116,109,108,2,1,255,124,214,224,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,36,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,116,101,109,112,108,97,116,101,45,119,114,97,112,112,101,114,2,1,231,18,32,223,0,5,4,98,111,100,121,2,1,231,18,32,223,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,14,35,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,239,0,39,228,0,5,9,98,111,100,121,44,104,116,109,108,2,1,239,0,39,228,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,109,111,100,97,108,45,111,118,101,114,108,97,121,2,5,45,200,138,246,139,99,14,202,148,188,41,85,187,80,1,190,251,161,160,59,0,5,9,98,111,100,121,44,104,116,109,108,2,5,45,200,138,246,139,99,14,202,148,188,41,85,187,80,1,190,251,161,160,59,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,115,45,119,114,97,112,112,101,114,2,1,80,97,238,130,8,1,10,46,98,108,117,114,45,109,111,100,101,2,1,80,97,238,130,0,5,4,98,111,100,121,2,1,80,97,238,130,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,112,114,105,118,97,99,121,45,108,97,121,101,114,2,1,237,176,216,63,0,5,9,98,111,100,121,44,104,116,109,108,2,1,237,176,216,63,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,103,100,112,114,45,111,118,101,114,108,97,121,45,98,97,99,107,103,114,111,117,110,100,2,2,47,138,149,246,191,129,103,75,0,5,9,98,111,100,121,44,104,116,109,108,2,2,47,138,149,246,191,129,103,75,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,29,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,67,111,110,115,101,110,116,44,32,49,2,1,222,40,50,199,2,1,32,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,83,116,97,116,105,115,116,105,99,115,44,32,48,2,1,222,40,50,199,2,1,33,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,115,80,114,101,102,101,114,101,110,99,101,115,44,32,48,2,1,222,40,50,199,2,1,27,115,101,116,44,32,115,101,116,116,105,110,103,115,46,99,111,110,115,101,110,116,44,32,116,114,117,101,2,2,0,21,217,203,251,202,2,162,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,97,108,108,111,119,71,101,116,80,114,105,118,97,99,121,73,110,102,111,44,32,116,114,117,101,2,116,0,181,99,93,1,187,122,124,2,43,80,167,7,43,15,174,12,146,241,73,14,128,188,13,15,161,151,75,16,254,144,5,20,178,29,214,21,251,197,196,27,183,127,147,29,87,153,96,29,133,48,18,30,179,78,181,39,154,140,146,43,210,199,120,43,213,244,112,43,217,18,39,43,226,161,167,48,35,182,72,52,197,21,213,57,34,123,46,57,67,74,254,57,225,139,109,58,166,171,89,58,243,21,209,59,203,251,161,60,112,68,31,64,148,109,223,65,169,75,219,72,129,157,238,73,2,31,148,76,183,241,66,79,87,149,245,80,67,37,124,80,94,112,179,85,86,225,167,85,146,213,132,86,25,112,11,86,201,134,224,87,163,190,148,87,180,233,32,87,184,252,42,87,193,106,108,87,194,78,221,88,41,120,40,88,214,186,26,90,104,236,61,93,182,20,228,97,156,116,213,98,63,24,251,99,250,219,224,103,155,195,181,104,141,100,96,105,76,213,123,107,160,146,189,110,30,225,222,112,116,5,232,113,186,97,80,118,1,91,215,128,94,122,165,128,180,18,103,130,159,120,58,132,221,121,251,133,200,211,151,138,163,69,150,138,182,188,149,138,184,22,180,138,220,204,175,143,85,253,118,143,91,42,152,144,92,231,158,145,119,87,227,146,28,221,245,151,246,39,203,155,68,111,2,155,203,106,33,164,105,88,19,169,156,139,120,173,143,208,218,174,153,196,160,176,239,9,34,177,152,58,185,178,2,191,135,179,120,104,69,182,14,72,157,182,142,103,141,190,215,83,12,193,93,86,30,197,2,7,85,198,154,193,71,199,48,150,177,202,221,44,243,203,204,214,143,205,109,19,78,206,242,34,225,207,71,201,199,209,101,178,91,214,162,57,122,215,220,254,159,221,172,207,57,226,190,16,211,232,205,32,64,238,204,211,107,240,175,152,67,241,214,46,207,242,221,80,191,243,39,85,140,245,17,99,52,246,99,88,30,247,154,136,49,249,122,189,172,250,68,17,106,250,68,52,89,250,68,101,62,251,157,4,44,2,1,37,115,101,116,44,32,72,66,46,67,111,111,107,105,101,83,101,116,116,105,110,103,115,46,105,110,105,116,44,32,110,111,111,112,70,117,110,99,2,1,140,223,181,203,2,1,34,115,101,116,44,32,87,72,84,46,83,104,111,119,67,111,110,115,101,110,116,70,111,114,109,44,32,116,114,117,101,70,117,110,99,2,1,77,220,192,90,2,1,19,115,101,116,44,32,117,115,101,71,68,80,82,44,32,102,97,108,115,101,2,1,67,161,126,183,2,1,47,115,101,116,44,32,120,118,46,100,105,115,99,108,97,105,109,101,114,46,100,105,115,112,108,97,121,67,111,111,107,105,101,80,111,112,117,112,44,32,110,111,111,112,70,117,110,99,2,1,183,21,59,170,8,1,11,46,105,115,45,98,108,111,99,107,101,100,2,1,77,49,17,112,2,1,20,114,99,44,32,98,45,100,105,97,108,111,103,44,32,44,32,115,116,97,121,2,1,77,49,17,112,0,5,4,104,116,109,108,2,1,77,49,17,112,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,1,32,100,105,118,91,105,100,94,61,34,115,112,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,95,34,93,2,1,244,98,208,142,2,1,19,110,111,115,116,105,102,44,32,97,112,112,101,110,100,67,104,105,108,100,2,1,244,98,208,142,8,1,13,46,112,111,112,105,110,45,99,111,111,107,105,101,2,1,57,56,225,147,0,5,9,98,111,100,121,44,104,116,109,108,2,1,57,56,225,147,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,111,107,105,101,115,45,109,97,115,107,2,1,156,24,104,33,0,5,9,98,111,100,121,44,104,116,109,108,2,1,156,24,104,33,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,34,35,116,101,109,112,108,97,116,101,45,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,2,17,60,39,120,250,122,92,50,0,5,9,98,111,100,121,44,104,116,109,108,2,2,17,60,39,120,250,122,92,50,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,99,111,111,107,105,101,115,2,8,71,155,81,41,112,154,57,50,149,231,41,220,194,218,82,220,205,235,63,4,226,1,238,53,233,62,223,66,241,235,30,66,0,5,9,98,111,100,121,44,104,116,109,108,2,8,71,155,81,41,112,154,57,50,149,231,41,220,194,218,82,220,205,235,63,4,226,1,238,53,233,62,223,66,241,235,30,66,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,20,115,101,116,45,99,111,111,107,105,101,44,32,103,112,99,95,118,44,32,49,2,1,217,1,40,94,2,1,21,115,101,116,45,99,111,111,107,105,101,44,32,103,112,99,95,97,100,44,32,48,2,1,217,1,40,94,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,103,112,99,95,97,110,97,108,121,116,105,99,44,32,48,2,1,217,1,40,94,2,1,27,115,101,116,45,99,111,111,107,105,101,44,32,103,112,99,95,97,117,100,105,101,110,99,101,44,32,48,2,1,217,1,40,94,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,103,112,99,95,102,117,110,99,44,32,48,2,1,217,1,40,94,8,1,9,46,112,108,117,115,103,97,116,101,2,1,222,111,36,35,0,5,9,98,111,100,121,44,104,116,109,108,2,1,222,111,36,35,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,18,46,117,105,45,119,105,100,103,101,116,45,111,118,101,114,108,97,121,2,13,21,185,16,6,29,183,230,137,33,215,10,62,75,188,210,65,97,0,164,89,103,131,243,175,118,21,164,26,122,5,74,117,139,46,127,132,143,129,199,124,146,100,2,171,236,194,30,181,246,57,207,5,0,5,9,98,111,100,121,44,104,116,109,108,2,13,21,185,16,6,29,183,230,137,33,215,10,62,75,188,210,65,97,0,164,89,103,131,243,175,118,21,164,26,122,5,74,117,139,46,127,132,143,129,199,124,146,100,2,171,236,194,30,181,246,57,207,5,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,5,12,35,104,101,97,100,101,114,95,104,101,97,100,2,1,154,83,104,171,17,116,111,112,58,32,48,32,33,105,109,112,111,114,116,97,110,116,8,1,15,46,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,22,7,153,58,2,1,24,114,99,44,32,100,105,115,97,98,108,101,100,44,32,98,111,100,121,44,32,115,116,97,121,2,1,22,7,153,58,8,1,13,46,67,111,111,107,105,101,115,80,111,112,117,112,2,1,92,60,127,221,0,5,9,104,116,109,108,44,98,111,100,121,2,1,92,60,127,221,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,205,64,225,243,2,1,23,114,99,44,32,108,111,99,107,45,115,99,114,111,108,108,44,32,44,32,115,116,97,121,2,1,205,64,225,243,2,1,26,114,99,44,32,100,105,115,97,98,108,101,100,44,32,104,101,97,100,101,114,44,32,115,116,97,121,2,1,205,64,225,243,8,1,12,46,109,97,115,107,45,115,99,114,101,101,110,2,1,102,13,164,60,0,5,9,98,111,100,121,44,104,116,109,108,2,1,102,13,164,60,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,39,114,99,44,32,99,111,111,107,105,101,45,110,111,116,45,97,99,99,101,112,116,101,100,45,111,118,101,114,108,97,121,44,32,44,32,115,116,97,121,2,1,56,246,182,222,0,5,9,98,111,100,121,44,104,116,109,108,2,1,56,246,182,222,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,20,35,105,116,115,45,45,99,111,110,116,97,105,110,101,114,95,99,111,111,107,2,55,2,148,183,112,3,212,234,92,25,245,149,143,27,129,104,246,28,106,33,103,28,189,241,166,30,230,161,1,33,200,90,42,34,187,39,130,37,157,74,116,42,122,238,7,42,176,234,84,46,157,149,207,47,180,38,210,54,209,244,240,55,51,206,56,59,133,238,202,63,71,222,179,69,122,48,195,74,143,27,184,81,7,1,88,82,162,86,110,84,141,170,118,89,35,146,16,94,177,241,119,101,1,55,48,104,69,34,125,106,156,99,252,107,175,81,64,109,104,43,55,111,214,21,19,120,85,186,65,124,35,0,96,133,240,172,95,143,240,198,60,145,5,28,140,158,5,248,9,167,229,72,159,178,31,166,218,189,247,222,185,196,83,22,239,203,45,58,183,214,132,202,175,227,197,69,109,228,143,204,223,228,204,213,115,229,107,219,228,231,108,221,234,236,153,13,41,244,115,20,58,247,50,51,89,248,31,93,139,251,29,62,63,252,36,155,193,255,220,169,226,0,5,9,98,111,100,121,44,104,116,109,108,2,55,2,148,183,112,3,212,234,92,25,245,149,143,27,129,104,246,28,106,33,103,28,189,241,166,30,230,161,1,33,200,90,42,34,187,39,130,37,157,74,116,42,122,238,7,42,176,234,84,46,157,149,207,47,180,38,210,54,209,244,240,55,51,206,56,59,133,238,202,63,71,222,179,69,122,48,195,74,143,27,184,81,7,1,88,82,162,86,110,84,141,170,118,89,35,146,16,94,177,241,119,101,1,55,48,104,69,34,125,106,156,99,252,107,175,81,64,109,104,43,55,111,214,21,19,120,85,186,65,124,35,0,96,133,240,172,95,143,240,198,60,145,5,28,140,158,5,248,9,167,229,72,159,178,31,166,218,189,247,222,185,196,83,22,239,203,45,58,183,214,132,202,175,227,197,69,109,228,143,204,223,228,204,213,115,229,107,219,228,231,108,221,234,236,153,13,41,244,115,20,58,247,50,51,89,248,31,93,139,251,29,62,63,252,36,155,193,255,220,169,226,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,9,35,99,99,45,45,109,97,105,110,2,22,0,170,104,231,10,236,240,32,40,156,238,236,52,164,76,26,79,179,188,98,80,49,249,8,88,67,212,194,110,249,54,128,115,172,213,90,126,225,192,4,135,181,10,194,149,157,80,254,177,36,42,35,179,162,142,240,192,87,212,52,199,137,9,216,212,161,1,105,215,163,169,109,221,215,26,191,227,8,144,240,229,20,79,192,250,255,115,22,0,5,9,98,111,100,121,44,104,116,109,108,2,22,0,170,104,231,10,236,240,32,40,156,238,236,52,164,76,26,79,179,188,98,80,49,249,8,88,67,212,194,110,249,54,128,115,172,213,90,126,225,192,4,135,181,10,194,149,157,80,254,177,36,42,35,179,162,142,240,192,87,212,52,199,137,9,216,212,161,1,105,215,163,169,109,221,215,26,191,227,8,144,240,229,20,79,192,250,255,115,22,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,8,35,99,99,45,109,97,105,110,2,3,70,226,50,173,109,194,169,12,148,179,239,177,0,5,9,98,111,100,121,44,104,116,109,108,2,3,70,226,50,173,109,194,169,12,148,179,239,177,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,99,111,111,107,105,101,45,119,97,108,108,2,1,88,193,216,78,0,5,9,98,111,100,121,44,104,116,109,108,2,1,88,193,216,78,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,112,98,214,70,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,112,98,214,70,0,5,9,98,111,100,121,44,104,116,109,108,2,1,112,98,214,70,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,99,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,2,1,200,119,73,181,0,5,9,98,111,100,121,44,104,116,109,108,2,1,200,119,73,181,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,10,46,99,111,111,107,105,101,65,67,75,2,1,92,157,225,241,0,5,9,98,111,100,121,44,104,116,109,108,2,1,92,157,225,241,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,19,35,110,115,95,99,111,111,107,105,101,95,97,99,99,101,112,116,101,100,2,1,34,146,228,236,0,5,9,98,111,100,121,44,104,116,109,108,2,1,34,146,228,236,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,19,35,103,111,111,103,108,101,67,111,110,115,101,110,116,80,111,112,117,112,2,1,171,248,101,160,0,5,9,98,111,100,121,44,104,116,109,108,2,1,171,248,101,160,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,112,97,103,101,45,111,118,101,114,108,97,121,2,1,148,161,155,66,0,5,4,98,111,100,121,2,1,148,161,155,66,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,99,45,119,105,110,100,111,119,45,119,114,97,112,112,101,114,2,2,92,142,229,83,140,154,190,170,16,1,27,35,103,100,112,114,45,98,108,111,99,107,105,110,103,45,112,97,103,101,45,111,118,101,114,108,97,121,2,2,92,142,229,83,140,154,190,170,0,5,4,98,111,100,121,2,2,92,142,229,83,140,154,190,170,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,27,35,103,100,112,114,45,98,108,111,99,107,105,110,103,45,112,97,103,101,45,111,118,101,114,108,97,121,2,1,248,204,52,227,0,5,4,98,111,100,121,2,1,248,204,52,227,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,103,100,112,114,45,99,111,110,115,101,110,116,45,116,97,98,115,2,1,233,195,77,111,0,5,9,98,111,100,121,44,104,116,109,108,2,1,233,195,77,111,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,108,97,121,101,114,45,111,118,101,114,108,97,121,2,1,173,170,87,21,8,1,10,46,103,101,110,45,108,97,121,101,114,2,1,173,170,87,21,0,5,4,98,111,100,121,2,1,173,170,87,21,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,29,46,99,107,45,117,115,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,17,171,205,212,8,1,25,46,115,122,110,45,99,109,112,45,100,105,97,108,111,103,45,99,111,110,116,97,105,110,101,114,2,1,200,28,50,117,0,5,9,104,116,109,108,44,98,111,100,121,2,1,200,28,50,117,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,99,45,99,111,111,107,105,101,45,109,111,100,97,108,2,1,6,203,171,60,8,1,23,46,99,45,99,111,111,107,105,101,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,6,203,171,60,0,5,9,98,111,100,121,44,104,116,109,108,2,1,6,203,171,60,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,22,35,115,108,105,100,105,110,103,45,112,111,112,117,112,45,99,111,111,107,105,101,115,2,1,14,16,131,200,0,5,9,98,111,100,121,44,104,116,109,108,2,1,14,16,131,200,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,95,95,83,83,82,95,67,79,78,83,69,78,84,95,77,65,78,65,71,69,82,95,95,2,1,215,9,121,81,0,5,4,104,116,109,108,2,1,215,9,121,81,27,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,8,1,18,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,98,103,2,1,129,188,158,116,2,1,23,114,99,44,32,98,108,117,114,114,101,100,45,112,97,103,101,44,32,44,115,116,97,121,2,1,129,188,158,116,16,1,14,35,105,110,115,104,111,112,67,111,111,107,105,101,115,2,2,33,44,251,175,63,14,176,99,0,5,9,98,111,100,121,44,104,116,109,108,2,2,33,44,251,175,63,14,176,99,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,112,120,45,98,97,110,110,101,114,45,99,111,111,107,105,101,115,2,1,77,0,221,34,0,5,9,98,111,100,121,44,104,116,109,108,2,1,77,0,221,34,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,22,115,101,116,45,99,111,111,107,105,101,44,32,99,111,110,115,101,110,116,44,32,49,2,1,163,95,35,126,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,79,112,116,97,110,111,110,65,108,101,114,116,66,111,120,67,108,111,115,101,100,44,32,49,2,1,163,95,35,126,16,1,5,35,108,103,112,100,2,1,109,181,19,162,0,5,9,98,111,100,121,44,104,116,109,108,2,1,109,181,19,162,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,117,104,98,45,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,179,120,105,91,0,5,9,98,111,100,121,44,104,116,109,108,2,1,179,120,105,91,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,10,46,79,118,101,114,108,97,121,101,114,2,1,41,208,31,171,0,5,9,104,116,109,108,44,98,111,100,121,2,1,41,208,31,171,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,99,111,111,107,105,101,45,98,97,114,45,111,118,101,114,108,97,121,2,1,144,151,0,232,0,5,9,98,111,100,121,44,104,116,109,108,2,1,144,151,0,232,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,10,26,22,57,153,67,173,254,217,72,113,159,105,79,58,190,114,150,17,181,120,150,205,147,28,195,242,168,1,222,199,181,37,235,240,119,153,255,5,148,5,0,5,9,98,111,100,121,44,104,116,109,108,2,10,26,22,57,153,67,173,254,217,72,113,159,105,79,58,190,114,150,17,181,120,150,205,147,28,195,242,168,1,222,199,181,37,235,240,119,153,255,5,148,5,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,12,46,116,120,45,108,105,110,45,103,100,112,114,2,1,105,76,20,181,2,1,35,114,99,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,112,114,101,115,101,110,116,44,32,44,32,115,116,97,121,2,1,105,76,20,181,8,1,18,46,67,111,110,116,97,105,110,101,114,95,99,53,100,113,106,52,109,2,1,106,212,133,115,0,5,4,98,111,100,121,2,1,106,212,133,115,31,111,118,101,114,102,108,111,119,45,121,58,32,118,105,115,105,98,108,101,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,95,49,101,82,115,51,119,2,1,157,26,51,3,0,5,9,98,111,100,121,44,104,116,109,108,2,1,157,26,51,3,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,14,101,187,105,8,1,6,46,109,111,100,97,108,2,1,14,101,187,105,0,5,4,98,111,100,121,2,1,14,101,187,105,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,177,222,191,48,8,1,6,46,109,111,100,97,108,2,1,177,222,191,48,0,5,9,98,111,100,121,44,104,116,109,108,2,1,177,222,191,48,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,99,111,111,107,105,101,95,112,111,112,117,112,95,111,118,101,114,108,97,121,2,1,114,31,233,48,8,1,12,46,99,111,111,107,105,101,45,108,105,110,101,2,1,114,31,233,48,0,5,4,104,116,109,108,2,1,114,31,233,48,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,11,35,112,97,103,101,95,104,105,100,101,114,2,1,95,211,29,184,0,5,4,98,111,100,121,2,1,95,211,29,184,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,118,107,105,99,111,111,107,105,101,99,111,110,115,101,110,116,44,32,48,2,2,166,60,155,136,183,90,122,18,8,1,12,46,108,103,45,98,97,99,107,100,114,111,112,2,2,8,221,13,195,68,100,130,213,0,5,4,98,111,100,121,2,2,8,221,13,195,68,100,130,213,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,26,46,102,95,95,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,109,97,110,97,103,101,114,2,1,64,57,220,12,0,5,9,98,111,100,121,44,104,116,109,108,2,1,64,57,220,12,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,9,46,99,99,45,111,117,116,101,114,2,1,89,26,220,255,0,5,9,98,111,100,121,44,104,116,109,108,2,1,89,26,220,255,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,99,111,111,107,105,101,119,97,108,108,2,3,111,122,187,116,121,6,208,101,193,231,121,19,0,5,9,98,111,100,121,44,104,116,109,108,2,3,111,122,187,116,121,6,208,101,193,231,121,19,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,17,35,99,111,111,107,105,101,119,97,108,108,45,109,111,100,97,108,2,4,3,249,53,152,199,151,255,25,217,211,43,125,221,49,230,223,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,4,3,249,53,152,199,151,255,25,217,211,43,125,221,49,230,223,0,5,9,98,111,100,121,44,104,116,109,108,2,4,3,249,53,152,199,151,255,25,217,211,43,125,221,49,230,223,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,110,115,101,110,116,109,111,100,97,108,2,1,8,222,248,200,0,5,9,98,111,100,121,44,104,116,109,108,2,1,8,222,248,200,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,104,101,97,100,101,114,45,99,111,111,107,105,101,115,45,103,100,112,114,2,6,23,180,66,136,50,13,114,71,50,196,182,130,157,189,13,240,172,111,26,245,240,226,80,229,2,1,40,114,99,44,32,104,101,97,100,101,114,45,103,100,114,112,45,99,111,111,107,105,101,115,45,118,105,115,105,98,108,101,32,44,32,44,32,115,116,97,121,2,6,23,180,66,136,50,13,114,71,50,196,182,130,157,189,13,240,172,111,26,245,240,226,80,229,0,5,4,98,111,100,121,2,6,23,180,66,136,50,13,114,71,50,196,182,130,157,189,13,240,172,111,26,245,240,226,80,229,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,112,98,45,104,101,97,100,101,114,95,95,111,118,101,114,108,97,121,2,2,215,218,175,145,242,231,45,181,0,5,9,98,111,100,121,44,104,116,109,108,2,2,215,218,175,145,242,231,45,181,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,99,45,99,111,111,107,105,101,45,112,111,112,117,112,2,64,0,140,207,211,1,132,149,52,4,140,123,254,5,195,27,158,5,196,14,42,5,243,122,200,8,54,227,154,13,66,119,84,23,244,226,181,24,117,15,171,26,217,175,6,31,200,167,252,32,224,146,232,35,123,193,53,39,63,48,211,42,98,237,37,44,129,66,72,54,82,140,233,61,170,209,196,63,77,95,52,67,136,39,143,71,16,151,181,77,86,169,189,78,104,149,107,81,223,134,201,84,111,151,149,85,148,37,111,86,235,176,179,87,213,73,174,92,115,29,193,103,67,202,187,104,224,207,216,105,212,48,194,107,136,29,71,114,12,184,185,114,128,214,77,117,158,126,184,118,233,125,152,124,115,159,36,126,87,77,223,139,131,67,57,149,134,31,215,156,143,200,72,158,141,66,57,160,0,60,30,168,167,126,202,168,172,193,93,196,181,198,246,202,57,71,214,208,42,139,100,210,85,163,208,213,45,68,13,213,59,65,2,213,110,209,202,213,180,195,214,214,104,9,72,227,199,185,38,227,219,152,22,232,32,217,112,237,193,225,131,237,232,91,33,241,164,182,253,242,81,116,218,248,32,162,210,0,5,9,98,111,100,121,44,104,116,109,108,2,64,0,140,207,211,1,132,149,52,4,140,123,254,5,195,27,158,5,196,14,42,5,243,122,200,8,54,227,154,13,66,119,84,23,244,226,181,24,117,15,171,26,217,175,6,31,200,167,252,32,224,146,232,35,123,193,53,39,63,48,211,42,98,237,37,44,129,66,72,54,82,140,233,61,170,209,196,63,77,95,52,67,136,39,143,71,16,151,181,77,86,169,189,78,104,149,107,81,223,134,201,84,111,151,149,85,148,37,111,86,235,176,179,87,213,73,174,92,115,29,193,103,67,202,187,104,224,207,216,105,212,48,194,107,136,29,71,114,12,184,185,114,128,214,77,117,158,126,184,118,233,125,152,124,115,159,36,126,87,77,223,139,131,67,57,149,134,31,215,156,143,200,72,158,141,66,57,160,0,60,30,168,167,126,202,168,172,193,93,196,181,198,246,202,57,71,214,208,42,139,100,210,85,163,208,213,45,68,13,213,59,65,2,213,110,209,202,213,180,195,214,214,104,9,72,227,199,185,38,227,219,152,22,232,32,217,112,237,193,225,131,237,232,91,33,241,164,182,253,242,81,116,218,248,32,162,210,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,12,35,100,105,100,111,109,105,45,104,111,115,116,2,9,4,41,32,244,62,8,23,86,86,243,89,11,89,156,87,105,128,20,82,245,156,200,86,132,194,197,253,186,235,255,149,168,248,217,1,155,0,5,9,98,111,100,121,44,104,116,109,108,2,9,4,41,32,244,62,8,23,86,86,243,89,11,89,156,87,105,128,20,82,245,156,200,86,132,194,197,253,186,235,255,149,168,248,217,1,155,121,111,118,101,114,102,108,111,119,58,32,118,105,115,105,98,108,101,32,33,105,109,112,111,114,116,97,110,116,59,32,112,97,100,100,105,110,103,45,114,105,103,104,116,58,32,48,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,45,121,58,32,118,105,115,105,98,108,101,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,45,120,58,32,118,105,115,105,98,108,101,32,33,105,109,112,111,114,116,97,110,116,2,1,21,115,101,116,44,32,68,105,100,111,109,105,44,32,110,111,111,112,70,117,110,99,2,7,5,36,120,36,12,45,184,210,33,112,162,237,43,211,43,217,130,109,112,89,228,230,119,104,234,205,190,59,2,1,20,114,109,110,116,44,32,115,99,114,105,112,116,44,32,68,105,100,111,109,105,2,1,22,78,180,66,16,1,19,35,103,100,112,114,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,170,85,212,92,0,5,9,98,111,100,121,44,104,116,109,108,2,1,170,85,212,92,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,5,46,114,103,112,100,2,37,12,166,20,149,13,235,181,30,14,69,239,151,35,82,209,85,40,42,171,96,42,133,235,61,62,49,88,186,67,168,159,230,78,9,94,120,88,201,54,7,105,217,20,48,107,170,189,226,110,201,166,95,118,148,113,38,118,187,86,212,127,230,140,113,128,189,139,61,129,55,5,153,140,214,181,113,143,37,196,91,154,166,58,205,160,175,121,208,162,208,112,213,167,17,99,31,167,121,37,123,170,179,179,128,171,209,91,163,175,19,211,232,177,84,238,13,183,145,62,94,198,213,182,241,210,11,12,125,215,163,123,52,221,63,205,45,238,141,202,24,242,103,23,177,254,147,11,5,0,5,9,98,111,100,121,44,104,116,109,108,2,37,12,166,20,149,13,235,181,30,14,69,239,151,35,82,209,85,40,42,171,96,42,133,235,61,62,49,88,186,67,168,159,230,78,9,94,120,88,201,54,7,105,217,20,48,107,170,189,226,110,201,166,95,118,148,113,38,118,187,86,212,127,230,140,113,128,189,139,61,129,55,5,153,140,214,181,113,143,37,196,91,154,166,58,205,160,175,121,208,162,208,112,213,167,17,99,31,167,121,37,123,170,179,179,128,171,209,91,163,175,19,211,232,177,84,238,13,183,145,62,94,198,213,182,241,210,11,12,125,215,163,123,52,221,63,205,45,238,141,202,24,242,103,23,177,254,147,11,5,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,11,35,109,111,100,97,108,45,104,111,115,116,2,4,29,69,122,163,44,169,74,10,70,160,61,143,251,54,78,234,0,5,4,98,111,100,121,2,4,29,69,122,163,44,169,74,10,70,160,61,143,251,54,78,234,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,7,46,98,97,110,110,101,114,2,1,128,163,161,118,2,1,17,114,99,44,32,102,105,120,101,100,44,32,44,32,115,116,97,121,2,1,128,163,161,118,8,1,15,46,101,118,100,45,98,97,99,107,103,114,111,117,110,100,2,1,112,197,248,228,0,5,9,104,116,109,108,44,98,111,100,121,2,1,112,197,248,228,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,98,111,100,121,45,111,118,101,114,108,97,121,2,1,119,93,105,176,0,5,9,98,111,100,121,44,104,116,109,108,2,1,119,93,105,176,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,30,46,102,114,111,110,116,101,110,100,80,114,105,118,97,99,121,95,95,109,111,100,97,108,87,114,97,112,112,101,114,2,4,0,81,104,168,32,65,175,142,147,114,114,182,157,243,37,62,0,5,9,98,111,100,121,44,104,116,109,108,2,4,0,81,104,168,32,65,175,142,147,114,114,182,157,243,37,62,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,103,45,99,111,110,115,101,110,116,109,97,110,97,103,101,114,2,2,225,186,118,16,234,227,170,115,0,5,9,98,111,100,121,44,104,116,109,108,2,2,225,186,118,16,234,227,170,115,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,7,46,100,105,109,109,101,114,2,4,0,88,51,52,57,203,85,149,121,67,125,216,134,209,127,103,0,5,9,98,111,100,121,44,104,116,109,108,2,4,0,88,51,52,57,203,85,149,121,67,125,216,134,209,127,103,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,16,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,50,2,1,113,249,183,95,0,5,9,98,111,100,121,44,104,116,109,108,2,1,113,249,183,95,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,67,111,111,107,105,101,80,111,112,117,112,45,68,105,118,87,114,97,112,112,101,114,2,4,48,59,218,73,78,6,121,56,94,223,131,187,197,25,239,228,0,5,9,98,111,100,121,44,104,116,109,108,2,4,48,59,218,73,78,6,121,56,94,223,131,187,197,25,239,228,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,112,111,112,117,112,77,111,100,97,108,79,118,101,114,108,97,121,2,13,17,230,199,131,51,111,129,107,73,196,155,66,77,59,109,52,77,250,225,132,87,222,117,164,92,137,76,219,101,35,120,8,117,150,191,138,157,45,44,114,159,114,31,6,174,80,48,133,183,193,61,44,0,5,9,98,111,100,121,44,104,116,109,108,2,13,17,230,199,131,51,111,129,107,73,196,155,66,77,59,109,52,77,250,225,132,87,222,117,164,92,137,76,219,101,35,120,8,117,150,191,138,157,45,44,114,159,114,31,6,174,80,48,133,183,193,61,44,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,98,97,99,107,100,114,111,112,45,99,111,111,107,105,101,2,2,123,159,15,235,217,62,228,18,0,5,9,98,111,100,121,44,104,116,109,108,2,2,123,159,15,235,217,62,228,18,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,115,108,105,100,105,110,103,45,112,111,112,117,112,45,98,111,116,116,111,109,2,5,4,38,90,2,43,249,52,185,84,165,103,175,168,177,131,118,230,16,134,149,0,5,9,98,111,100,121,44,104,116,109,108,2,5,4,38,90,2,43,249,52,185,84,165,103,175,168,177,131,118,230,16,134,149,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,28,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,4,10,74,141,47,86,134,137,244,165,35,220,40,215,224,180,171,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,4,10,74,141,47,86,134,137,244,165,35,220,40,215,224,180,171,0,5,4,104,116,109,108,2,4,10,74,141,47,86,134,137,244,165,35,220,40,215,224,180,171,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,111,111,107,115,105,101,115,108,97,119,45,98,108,111,99,107,2,1,190,223,149,46,0,5,4,98,111,100,121,2,1,190,223,149,46,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,115,99,114,101,101,110,45,100,97,114,107,101,110,2,1,83,68,105,72,0,5,4,98,111,100,121,2,1,83,68,105,72,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,111,120,121,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,2,166,216,35,232,168,207,90,164,0,5,4,98,111,100,121,2,2,166,216,35,232,168,207,90,164,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,118,109,45,45,99,111,110,116,97,105,110,101,114,2,1,197,31,224,125,0,5,4,104,116,109,108,2,1,197,31,224,125,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,19,35,109,97,99,97,114,111,110,95,99,111,111,107,105,101,95,98,111,120,2,1,103,244,149,13,0,5,9,98,111,100,121,44,104,116,109,108,2,1,103,244,149,13,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,25,46,109,97,105,110,95,115,101,108,102,95,111,118,101,114,108,97,121,95,99,111,111,107,105,101,2,1,35,21,102,177,0,5,9,98,111,100,121,44,104,116,109,108,2,1,35,21,102,177,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,17,35,106,116,45,99,111,111,107,105,101,115,45,109,111,100,97,108,2,1,216,134,168,56,0,5,9,98,111,100,121,44,104,116,109,108,2,1,216,134,168,56,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,106,115,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,2,1,184,154,201,242,2,1,20,114,99,44,32,110,111,83,99,114,111,108,108,44,32,44,32,115,116,97,121,2,1,184,154,201,242,2,1,31,114,99,44,32,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,44,32,44,32,115,116,97,121,2,1,68,65,21,249,8,1,7,46,109,111,98,105,108,101,2,1,68,65,21,249,2,1,47,115,101,116,44,32,120,118,46,100,105,115,99,108,97,105,109,101,114,46,100,105,115,112,108,97,121,67,111,111,107,105,101,80,111,112,117,112,44,32,110,111,111,112,70,117,110,99,2,1,128,68,68,176,8,1,14,46,112,111,112,105,110,45,111,118,101,114,108,97,121,2,1,90,33,117,113,0,5,9,98,111,100,121,44,104,116,109,108,2,1,90,33,117,113,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,9,46,99,99,109,45,114,111,111,116,2,1,58,158,226,187,8,1,19,46,99,111,111,107,105,101,45,110,111,116,101,45,111,112,116,45,105,110,2,1,239,63,237,111,0,5,9,98,111,100,121,44,104,116,109,108,2,1,239,63,237,111,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,119,111,119,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,126,83,17,161,0,5,4,104,116,109,108,2,1,126,83,17,161,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,28,46,105,110,100,101,120,45,109,111,100,117,108,101,95,111,118,101,114,108,97,121,95,95,100,81,99,109,53,2,1,63,187,146,82,0,5,9,98,111,100,121,44,104,116,109,108,2,1,63,187,146,82,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,17,35,99,111,111,107,105,101,45,109,111,100,97,108,45,98,111,120,2,1,238,41,177,163,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,238,41,177,163,0,5,4,98,111,100,121,2,1,238,41,177,163,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,100,105,97,108,111,103,45,108,105,103,104,116,98,111,120,45,119,105,100,103,101,116,2,3,22,126,250,238,30,151,80,166,119,187,66,157,0,5,9,98,111,100,121,44,104,116,109,108,2,3,22,126,250,238,30,151,80,166,119,187,66,157,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,14,35,108,97,121,101,114,45,119,114,97,112,112,101,114,2,1,27,116,78,27,2,1,23,114,99,44,32,108,97,121,101,114,65,99,116,105,118,101,44,32,44,32,115,116,97,121,2,1,27,116,78,27,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,3,31,8,115,245,49,252,102,8,255,91,124,88,16,1,35,35,115,104,112,114,45,99,111,111,107,105,101,45,102,97,118,111,117,114,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,2,3,31,8,115,245,49,252,102,8,255,91,124,88,0,5,9,98,111,100,121,44,104,116,109,108,2,3,31,8,115,245,49,252,102,8,255,91,124,88,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,10,46,97,108,108,45,116,101,114,109,115,2,1,37,183,38,93,2,1,29,114,99,44,32,32,98,108,111,99,107,101,100,45,98,111,100,121,44,32,98,111,100,121,44,32,115,116,97,121,2,1,37,183,38,93,16,1,11,35,99,99,45,109,99,45,114,103,112,100,2,1,97,114,241,2,2,1,26,114,99,44,32,32,110,111,45,115,99,114,111,108,108,44,32,98,111,100,121,44,32,115,116,97,121,2,1,97,114,241,2,16,1,14,35,99,99,98,45,99,111,110,116,97,105,110,101,114,2,1,147,15,215,46,8,1,21,46,100,105,97,108,111,103,45,116,121,112,101,45,108,105,103,104,116,98,111,120,2,1,147,15,215,46,0,5,4,98,111,100,121,2,1,147,15,215,46,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,109,111,100,97,108,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,47,43,220,93,0,5,9,104,116,109,108,44,98,111,100,121,2,1,47,43,220,93,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,1,29,101,117,105,45,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,109,97,110,97,103,101,114,2,2,203,33,149,194,234,207,239,133,0,5,9,98,111,100,121,44,104,116,109,108,2,2,203,33,149,194,234,207,239,133,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,25,91,99,108,97,115,115,42,61,34,67,111,111,107,105,101,67,111,110,115,101,110,116,95,34,93,2,1,94,182,212,178,0,5,4,104,116,109,108,2,1,94,182,212,178,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,1,27,100,105,118,91,99,108,97,115,115,42,61,34,67,111,111,107,105,101,67,111,110,115,101,110,116,34,93,2,1,125,8,170,24,0,5,9,98,111,100,121,44,104,116,109,108,2,1,125,8,170,24,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,31,35,67,111,111,107,105,101,67,111,110,115,101,110,116,70,117,108,108,115,99,114,101,101,110,87,114,97,112,112,101,114,2,1,241,174,15,121,0,5,9,98,111,100,121,44,104,116,109,108,2,1,241,174,15,121,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,111,118,101,114,108,97,121,45,50,53,72,111,111,2,1,172,218,236,95,0,5,4,104,116,109,108,2,1,172,218,236,95,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,6,35,99,111,118,101,114,2,6,18,167,17,168,50,130,190,148,51,248,137,138,64,24,168,31,120,24,171,67,204,234,82,225,16,1,18,35,100,105,118,95,112,111,112,117,112,95,99,111,111,107,105,101,115,2,6,18,167,17,168,50,130,190,148,51,248,137,138,64,24,168,31,120,24,171,67,204,234,82,225,0,5,4,98,111,100,121,2,6,18,167,17,168,50,130,190,148,51,248,137,138,64,24,168,31,120,24,171,67,204,234,82,225,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,114,111,109,112,116,2,1,219,194,85,75,0,5,4,98,111,100,121,2,1,219,194,85,75,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,110,102,45,112,114,111,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,152,69,0,11,0,5,9,98,111,100,121,44,104,116,109,108,2,1,152,69,0,11,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,45,100,105,115,99,108,97,105,109,101,114,2,1,78,250,170,5,2,1,25,114,99,44,32,104,97,115,45,110,111,45,115,99,114,111,108,108,44,32,44,32,115,116,97,121,2,1,78,250,170,5,8,1,26,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,111,120,45,111,118,101,114,108,97,121,2,1,126,4,161,118,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,4,161,118,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,112,118,67,111,111,107,105,101,79,112,116,73,110,2,1,229,45,136,170,0,5,9,98,111,100,121,44,104,116,109,108,2,1,229,45,136,170,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,1,151,4,14,62,2,1,27,114,99,44,32,109,101,115,115,97,103,101,115,45,97,99,116,105,118,101,44,32,44,32,115,116,97,121,2,1,151,4,14,62,8,1,15,46,105,110,99,109,115,45,100,112,98,97,110,110,101,114,2,1,126,53,234,126,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,53,234,126,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,25,46,122,45,53,48,46,108,101,102,116,45,48,46,119,45,102,117,108,108,46,102,105,120,101,100,2,1,203,134,38,200,8,1,48,46,100,117,114,97,116,105,111,110,45,55,48,48,46,116,114,97,110,115,105,116,105,111,110,45,97,108,108,46,102,108,101,120,46,98,111,116,116,111,109,45,48,46,102,105,120,101,100,2,1,203,134,38,200,8,1,15,46,98,111,116,116,111,109,45,48,46,102,105,120,101,100,2,1,142,38,149,186,0,5,9,98,111,100,121,44,104,116,109,108,2,2,142,38,149,186,203,134,38,200,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,9,46,76,105,103,104,116,98,111,120,2,1,249,27,89,45,0,5,9,98,111,100,121,44,104,116,109,108,2,1,249,27,89,45,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,108,97,121,111,117,116,45,109,97,115,107,45,100,97,114,107,2,1,76,96,9,225,8,1,15,46,99,111,110,115,101,110,116,45,119,105,110,100,111,119,2,1,76,96,9,225,0,5,9,98,111,100,121,44,104,116,109,108,2,1,76,96,9,225,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,15,35,98,109,76,97,121,101,114,67,111,111,107,105,101,115,2,1,241,19,201,43,0,5,9,98,111,100,121,44,104,116,109,108,2,1,241,19,201,43,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,45,100,114,111,112,100,111,119,110,2,1,28,142,116,86,0,5,9,98,111,100,121,44,104,116,109,108,2,1,28,142,116,86,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,76,116,67,111,111,107,105,101,115,77,111,100,97,108,2,1,45,163,7,82,0,5,9,98,111,100,121,44,104,116,109,108,2,1,45,163,7,82,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,29,46,99,111,111,107,105,101,45,112,97,110,101,108,45,99,111,110,116,97,105,110,101,114,45,50,68,109,68,109,2,1,42,47,178,183,0,5,4,98,111,100,121,2,1,42,47,178,183,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,99,45,109,111,100,97,108,2,1,224,11,78,81,0,5,9,98,111,100,121,44,104,116,109,108,2,1,224,11,78,81,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,99,111,110,115,101,110,116,45,98,97,99,107,103,114,111,117,110,100,2,5,6,204,198,16,27,105,108,128,54,210,215,206,143,113,183,91,148,193,166,124,0,5,9,98,111,100,121,44,104,116,109,108,2,5,6,204,198,16,27,105,108,128,54,210,215,206,143,113,183,91,148,193,166,124,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,116,105,110,103,108,101,45,109,111,100,97,108,2,1,249,124,195,158,0,5,9,98,111,100,121,44,104,116,109,108,2,1,249,124,195,158,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,26,35,111,112,98,111,120,45,103,100,112,114,45,99,111,110,115,101,110,116,115,45,109,111,100,97,108,2,3,203,171,122,52,206,17,82,203,252,242,250,38,16,1,15,35,115,105,119,97,45,99,111,111,107,105,101,98,97,114,2,1,127,57,162,224,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,127,57,162,224,0,5,9,98,111,100,121,44,104,116,109,108,2,1,127,57,162,224,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,25,46,77,105,110,105,80,97,110,101,108,95,111,118,101,114,108,97,121,95,95,71,57,89,50,99,2,1,174,243,212,154,8,1,32,46,67,111,111,107,105,101,78,111,116,105,99,101,85,83,95,109,105,110,105,80,97,110,101,108,95,95,50,77,104,53,80,2,1,174,243,212,154,0,5,9,98,111,100,121,44,104,116,109,108,2,1,174,243,212,154,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,5,46,89,83,85,69,2,2,93,51,81,159,176,11,45,132,16,1,5,35,72,79,95,80,2,1,47,40,230,22,0,5,9,98,111,100,121,44,104,116,109,108,2,4,12,255,123,108,47,40,230,22,93,51,81,159,176,11,45,132,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,82,57,45,79,118,101,114,108,97,121,2,2,12,255,123,108,47,40,230,22,2,1,19,114,99,44,32,95,51,49,101,44,32,100,105,118,44,32,115,116,97,121,2,1,212,106,108,114,2,1,31,114,99,44,32,104,97,115,67,111,111,107,105,101,66,97,110,110,101,114,44,32,98,111,100,121,44,32,115,116,97,121,2,1,212,106,108,114,0,1,36,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,105,97,108,111,103,34,93,2,1,212,106,108,114,0,5,4,98,111,100,121,2,1,212,106,108,114,27,111,118,101,114,102,108,111,119,58,32,115,99,114,111,108,108,32,33,105,109,112,111,114,116,97,110,116,8,1,21,46,109,111,100,97,108,45,45,116,104,101,109,101,45,100,101,102,97,117,108,116,2,25,2,145,170,81,13,113,213,176,16,3,195,226,18,69,135,123,18,208,165,141,18,208,165,141,29,123,80,14,57,245,181,248,76,15,31,221,76,193,95,213,102,81,173,145,105,44,144,6,108,216,67,78,115,82,34,166,135,104,32,227,160,146,75,67,168,221,171,183,171,9,181,65,178,255,3,62,186,245,233,21,213,44,250,212,213,172,22,229,232,151,46,158,246,96,226,252,252,180,123,160,8,1,34,46,99,111,111,107,105,101,119,97,114,110,105,110,103,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,25,2,145,170,81,13,113,213,176,16,3,195,226,18,69,135,123,18,208,165,141,18,208,165,141,29,123,80,14,57,245,181,248,76,15,31,221,76,193,95,213,102,81,173,145,105,44,144,6,108,216,67,78,115,82,34,166,135,104,32,227,160,146,75,67,168,221,171,183,171,9,181,65,178,255,3,62,186,245,233,21,213,44,250,212,213,172,22,229,232,151,46,158,246,96,226,252,252,180,123,160,0,5,9,98,111,100,121,44,104,116,109,108,2,25,2,145,170,81,13,113,213,176,16,3,195,226,18,69,135,123,18,208,165,141,18,208,165,141,29,123,80,14,57,245,181,248,76,15,31,221,76,193,95,213,102,81,173,145,105,44,144,6,108,216,67,78,115,82,34,166,135,104,32,227,160,146,75,67,168,221,171,183,171,9,181,65,178,255,3,62,186,245,233,21,213,44,250,212,213,172,22,229,232,151,46,158,246,96,226,252,252,180,123,160,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,82,57,45,79,118,101,114,108,97,121,2,1,206,45,227,158,0,5,9,98,111,100,121,44,104,116,109,108,2,1,206,45,227,158,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,9,46,99,109,112,98,111,120,66,71,2,2,50,136,237,138,185,14,104,6,8,1,7,46,99,109,112,98,111,120,2,2,50,136,237,138,185,14,104,6,0,5,9,98,111,100,121,44,104,116,109,108,2,2,50,136,237,138,185,14,104,6,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,5,35,115,117,112,105,2,2,6,203,181,248,250,191,193,128,0,5,9,98,111,100,121,44,104,116,109,108,2,2,6,203,181,248,250,191,193,128,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,28,46,109,100,108,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,108,97,121,101,114,2,1,60,207,90,107,8,1,6,46,110,116,45,99,99,2,1,60,207,90,107,0,5,4,104,116,109,108,2,1,60,207,90,107,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,109,111,100,97,108,45,99,111,111,107,105,101,2,1,112,13,217,201,0,5,9,98,111,100,121,44,104,116,109,108,2,1,112,13,217,201,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,99,111,111,107,105,101,45,109,111,100,97,108,45,100,105,97,108,111,103,2,1,20,40,90,140,0,5,9,98,111,100,121,44,104,116,109,108,2,1,20,40,90,140,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,112,111,112,85,112,67,111,111,107,105,101,115,77,111,100,97,108,2,1,168,51,104,55,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,168,51,104,55,0,5,9,98,111,100,121,44,104,116,109,108,2,1,168,51,104,55,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,19,35,109,111,100,97,108,45,99,111,111,107,105,101,45,109,111,100,97,108,2,1,55,130,248,146,8,1,16,46,98,97,99,107,100,114,111,112,45,102,105,108,116,101,114,2,1,55,130,248,146,0,5,9,104,116,109,108,44,98,111,100,121,2,1,55,130,248,146,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,1,178,4,117,144,8,1,16,46,115,105,122,105,110,103,45,45,99,111,110,116,101,110,116,2,1,178,4,117,144,0,5,9,98,111,100,121,44,104,116,109,108,2,1,178,4,117,144,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,24,35,110,113,95,99,110,105,108,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,2,1,126,183,107,173,2,1,25,114,99,44,32,110,111,45,115,99,114,111,108,108,44,32,98,111,100,121,44,32,115,116,97,121,2,1,126,183,107,173,8,5,9,46,110,103,45,115,99,111,112,101,2,1,65,241,251,149,75,102,105,108,116,101,114,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,2,1,18,114,99,44,32,98,108,117,114,101,100,44,32,44,32,115,116,97,121,2,1,65,241,251,149,8,1,9,46,112,115,45,111,117,116,101,114,2,1,65,241,251,149,8,1,17,46,99,111,110,115,101,110,116,95,95,119,114,97,112,112,101,114,2,6,0,62,60,87,11,183,158,228,42,241,188,204,48,74,191,207,91,5,151,68,144,33,9,194,2,1,24,114,99,44,32,110,111,115,99,114,111,108,108,44,32,98,111,100,121,44,32,115,116,97,121,2,2,0,62,60,87,11,183,158,228,0,5,9,98,111,100,121,44,104,116,109,108,2,4,42,241,188,204,48,74,191,207,91,5,151,68,144,33,9,194,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,23,114,99,44,32,104,97,115,45,111,118,101,114,108,97,121,44,32,44,32,115,116,97,121,2,1,95,147,58,113,0,5,4,98,111,100,121,2,1,95,147,58,113,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,102,108,101,120,95,99,111,111,107,105,101,95,112,111,112,117,112,2,1,20,76,29,98,0,5,9,98,111,100,121,44,104,116,109,108,2,1,20,76,29,98,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,64,46,109,111,100,97,108,45,98,111,120,45,45,109,101,100,105,117,109,46,109,111,100,97,108,45,98,111,120,91,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,109,111,100,97,108,45,98,111,120,45,104,101,97,100,101,114,34,93,2,3,62,187,220,106,89,83,179,97,172,202,66,143,0,5,9,98,111,100,121,44,104,116,109,108,2,3,62,187,220,106,89,83,179,97,172,202,66,143,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,111,107,105,101,67,111,110,102,105,103,2,2,32,123,109,121,116,30,104,236,0,5,9,98,111,100,121,44,104,116,109,108,2,2,32,123,109,121,116,30,104,236,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,100,97,114,107,101,110,45,108,97,121,101,114,2,60,9,43,182,179,12,9,217,226,20,73,67,254,21,238,147,86,22,113,243,211,27,20,137,186,35,53,14,90,39,122,108,167,42,136,68,216,50,57,178,72,50,207,4,77,55,72,109,104,56,110,157,111,66,233,166,26,70,13,180,44,70,236,113,224,79,203,236,32,82,109,166,163,85,253,150,38,86,126,80,242,102,108,249,39,107,150,27,154,120,148,111,132,120,199,61,247,123,1,130,148,127,94,9,128,127,202,203,49,139,159,84,193,140,123,105,124,142,22,0,196,148,156,18,103,151,143,182,189,152,214,27,234,161,154,221,148,162,196,238,80,169,231,104,217,169,239,205,8,174,189,109,18,174,192,229,153,178,16,208,132,184,221,183,215,191,196,81,97,192,217,35,208,195,228,110,64,199,199,252,5,203,184,195,1,212,201,146,147,214,193,14,183,215,220,18,100,215,228,155,255,216,178,50,172,222,192,207,241,230,202,176,172,232,75,34,157,234,122,1,148,242,231,101,11,245,241,14,221,247,105,211,145,248,238,125,141,255,5,10,145,2,1,40,114,99,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,105,115,45,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,60,9,43,182,179,12,9,217,226,20,73,67,254,21,238,147,86,22,113,243,211,27,20,137,186,35,53,14,90,39,122,108,167,42,136,68,216,50,57,178,72,50,207,4,77,55,72,109,104,56,110,157,111,66,233,166,26,70,13,180,44,70,236,113,224,79,203,236,32,82,109,166,163,85,253,150,38,86,126,80,242,102,108,249,39,107,150,27,154,120,148,111,132,120,199,61,247,123,1,130,148,127,94,9,128,127,202,203,49,139,159,84,193,140,123,105,124,142,22,0,196,148,156,18,103,151,143,182,189,152,214,27,234,161,154,221,148,162,196,238,80,169,231,104,217,169,239,205,8,174,189,109,18,174,192,229,153,178,16,208,132,184,221,183,215,191,196,81,97,192,217,35,208,195,228,110,64,199,199,252,5,203,184,195,1,212,201,146,147,214,193,14,183,215,220,18,100,215,228,155,255,216,178,50,172,222,192,207,241,230,202,176,172,232,75,34,157,234,122,1,148,242,231,101,11,245,241,14,221,247,105,211,145,248,238,125,141,255,5,10,145,2,1,25,114,99,44,32,110,111,45,115,99,114,111,108,108,44,32,98,111,100,121,44,32,115,116,97,121,2,60,9,43,182,179,12,9,217,226,20,73,67,254,21,238,147,86,22,113,243,211,27,20,137,186,35,53,14,90,39,122,108,167,42,136,68,216,50,57,178,72,50,207,4,77,55,72,109,104,56,110,157,111,66,233,166,26,70,13,180,44,70,236,113,224,79,203,236,32,82,109,166,163,85,253,150,38,86,126,80,242,102,108,249,39,107,150,27,154,120,148,111,132,120,199,61,247,123,1,130,148,127,94,9,128,127,202,203,49,139,159,84,193,140,123,105,124,142,22,0,196,148,156,18,103,151,143,182,189,152,214,27,234,161,154,221,148,162,196,238,80,169,231,104,217,169,239,205,8,174,189,109,18,174,192,229,153,178,16,208,132,184,221,183,215,191,196,81,97,192,217,35,208,195,228,110,64,199,199,252,5,203,184,195,1,212,201,146,147,214,193,14,183,215,220,18,100,215,228,155,255,216,178,50,172,222,192,207,241,230,202,176,172,232,75,34,157,234,122,1,148,242,231,101,11,245,241,14,221,247,105,211,145,248,238,125,141,255,5,10,145,8,1,15,46,84,114,97,109,105,110,111,67,111,110,115,101,110,116,2,31,1,184,207,24,27,192,163,216,28,108,79,49,76,161,244,132,94,42,40,240,98,197,62,241,103,7,12,46,117,76,117,131,122,218,243,166,135,184,23,4,136,118,246,175,157,10,152,118,172,8,136,206,182,43,105,190,187,140,43,75,190,86,169,113,193,15,91,132,194,208,23,24,197,197,83,58,198,70,169,19,201,72,16,97,201,144,202,249,211,43,11,108,214,76,186,101,215,37,245,110,216,152,111,212,221,78,159,215,228,99,238,212,230,236,65,6,231,109,233,174,243,209,225,119,0,5,9,98,111,100,121,44,104,116,109,108,2,31,1,184,207,24,27,192,163,216,28,108,79,49,76,161,244,132,94,42,40,240,98,197,62,241,103,7,12,46,117,76,117,131,122,218,243,166,135,184,23,4,136,118,246,175,157,10,152,118,172,8,136,206,182,43,105,190,187,140,43,75,190,86,169,113,193,15,91,132,194,208,23,24,197,197,83,58,198,70,169,19,201,72,16,97,201,144,202,249,211,43,11,108,214,76,186,101,215,37,245,110,216,152,111,212,221,78,159,215,228,99,238,212,230,236,65,6,231,109,233,174,243,209,225,119,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,4,5,24,96,196,31,112,6,71,101,69,7,241,232,72,63,111,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,111,118,101,114,108,97,121,2,1,140,185,4,154,8,1,11,46,99,99,45,45,98,97,110,110,101,114,2,1,140,185,4,154,0,5,9,98,111,100,121,44,104,116,109,108,2,1,140,185,4,154,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,109,121,77,111,100,97,108,67,111,111,107,105,101,67,111,110,115,101,110,116,2,4,72,29,110,81,159,86,18,29,170,36,189,219,204,15,11,210,0,5,4,98,111,100,121,2,4,72,29,110,81,159,86,18,29,170,36,189,219,204,15,11,210,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,118,45,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,2,170,23,197,172,221,203,68,242,0,5,9,98,111,100,121,44,104,116,109,108,2,2,170,23,197,172,221,203,68,242,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,26,46,118,45,45,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,45,99,108,105,99,107,2,1,44,143,175,247,8,1,17,46,118,45,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,44,143,175,247,0,5,9,98,111,100,121,44,104,116,109,108,2,1,44,143,175,247,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,5,35,76,71,80,68,2,1,42,74,147,137,0,5,9,98,111,100,121,44,104,116,109,108,2,1,42,74,147,137,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,1,21,178,25,59,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,21,178,25,59,8,1,15,46,119,112,114,45,112,111,112,117,112,45,111,112,101,110,2,1,83,215,70,176,8,1,28,46,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,2,1,229,117,160,10,8,1,33,46,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,45,105,110,102,111,2,1,229,117,160,10,0,5,9,98,111,100,121,44,104,116,109,108,2,1,229,117,160,10,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,99,111,111,107,105,101,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,54,159,164,123,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,54,159,164,123,0,5,9,98,111,100,121,44,104,116,109,108,2,1,54,159,164,123,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,116,120,45,112,112,119,45,99,111,111,107,105,101,2,1,27,115,44,223,0,5,9,98,111,100,121,44,104,116,109,108,2,1,27,115,44,223,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,5,46,102,97,100,101,2,1,223,214,169,182,0,5,9,98,111,100,121,44,104,116,109,108,2,1,223,214,169,182,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,111,107,105,101,45,97,108,101,114,116,2,2,6,185,232,0,166,25,43,207,0,5,9,98,111,100,121,44,104,116,109,108,2,2,6,185,232,0,166,25,43,207,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,104,111,108,100,101,114,2,1,134,237,197,108,0,5,4,98,111,100,121,2,1,134,237,197,108,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,3,46,99,98,2,2,38,157,65,240,232,51,172,237,0,5,9,98,111,100,121,44,104,116,109,108,2,2,38,157,65,240,232,51,172,237,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,22,35,99,109,112,116,95,99,117,115,116,111,109,101,114,45,45,99,111,111,107,105,101,2,5,2,78,192,56,65,34,185,182,176,187,37,108,184,52,218,216,243,190,144,245,0,5,9,98,111,100,121,44,104,116,109,108,2,5,2,78,192,56,65,34,185,182,176,187,37,108,184,52,218,216,243,190,144,245,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,99,45,97,112,112,45,111,118,101,114,108,97,121,2,1,192,224,97,139,0,5,9,98,111,100,121,44,104,116,109,108,2,1,192,224,97,139,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,29,46,116,113,99,45,109,111,100,97,108,95,95,99,111,110,116,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,153,186,68,252,8,1,9,46,116,113,99,45,102,97,100,101,2,1,153,186,68,252,0,5,4,98,111,100,121,2,1,153,186,68,252,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,11,35,104,117,115,115,45,109,111,100,97,108,2,1,162,167,125,206,0,5,9,98,111,100,121,44,104,116,109,108,2,1,162,167,125,206,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,24,46,109,101,115,115,97,103,101,45,111,118,101,114,108,97,121,45,45,99,111,111,107,105,101,2,1,161,237,156,95,0,5,9,98,111,100,121,44,104,116,109,108,2,1,161,237,156,95,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,7,46,100,105,109,109,101,100,2,1,194,197,250,155,0,5,4,98,111,100,121,2,1,194,197,250,155,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,102,111,99,117,115,45,99,111,111,107,105,101,98,97,114,97,2,3,34,64,203,213,71,185,14,234,234,20,11,212,0,5,4,98,111,100,121,2,3,34,64,203,213,71,185,14,234,234,20,11,212,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,109,111,100,97,108,87,114,97,112,112,101,114,2,1,27,125,40,215,8,1,11,46,99,115,115,45,56,110,100,111,119,108,2,1,27,125,40,215,0,5,4,104,116,109,108,2,1,27,125,40,215,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,22,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,103,101,110,101,114,97,108,2,1,224,67,76,67,8,1,10,46,100,105,97,108,111,103,45,98,103,2,1,224,67,76,67,0,5,9,98,111,100,121,44,104,116,109,108,2,1,224,67,76,67,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,10,35,100,97,114,107,45,102,97,100,101,2,1,126,77,220,111,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,77,220,111,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,1,18,104,121,108,111,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,17,235,148,167,8,1,21,46,98,97,99,107,100,114,111,112,45,110,111,45,116,97,112,112,97,98,108,101,2,1,17,235,148,167,8,1,27,46,104,121,108,111,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,103,101,110,101,114,97,108,2,1,17,235,148,167,0,5,9,98,111,100,121,44,104,116,109,108,2,1,17,235,148,167,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,32,114,99,44,32,99,111,111,107,105,101,115,103,100,112,114,95,95,115,99,114,111,108,108,44,32,32,44,32,115,116,97,121,2,6,5,197,165,85,34,211,62,43,67,93,99,157,96,237,180,222,143,128,9,200,196,70,174,126,2,1,14,110,111,115,105,105,102,44,32,115,99,114,111,108,108,2,6,5,197,165,85,34,211,62,43,67,93,99,157,96,237,180,222,143,128,9,200,196,70,174,126,8,1,12,46,99,111,111,107,105,101,115,103,100,112,114,2,6,5,197,165,85,34,211,62,43,67,93,99,157,96,237,180,222,143,128,9,200,196,70,174,126,8,1,16,46,98,108,111,99,107,101,114,45,99,111,111,107,105,101,115,2,23,7,116,72,62,23,162,244,45,28,15,54,129,48,214,222,78,53,180,19,206,59,71,225,90,78,25,67,164,94,135,247,154,119,150,127,67,134,153,55,20,134,153,106,35,144,214,231,25,158,54,131,214,170,138,119,91,192,13,193,19,200,224,51,58,201,139,42,63,204,148,33,68,213,104,123,108,221,15,211,147,224,17,231,140,236,132,156,19,254,6,81,64,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,20,3,243,10,17,25,28,97,8,46,95,71,197,49,5,114,20,53,23,17,196,54,24,25,145,75,253,74,87,85,247,191,117,99,60,18,96,105,224,154,29,116,32,204,54,129,112,92,185,144,43,238,73,163,201,134,45,201,5,199,237,205,164,252,155,208,17,250,125,223,119,96,155,226,153,148,220,238,205,238,92,0,5,9,98,111,100,121,44,104,116,109,108,2,36,3,243,10,17,7,116,72,62,23,162,244,45,25,28,97,8,28,15,54,129,46,95,71,197,48,214,222,78,49,5,114,20,49,5,114,20,53,23,17,196,59,71,225,90,75,253,74,87,78,25,67,164,94,135,247,154,99,60,18,96,116,32,204,54,119,150,127,67,134,153,55,20,134,153,106,35,144,214,231,25,163,201,134,45,170,138,119,91,192,13,193,19,200,224,51,58,201,5,199,237,201,139,42,63,204,148,33,68,205,164,252,155,213,104,123,108,221,15,211,147,223,119,96,155,224,17,231,140,226,153,148,220,236,132,156,19,238,205,238,92,254,6,81,64,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,19,35,99,111,111,107,105,101,45,109,111,100,97,108,45,49,50,51,52,53,2,1,247,186,230,73,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,247,186,230,73,0,5,9,98,111,100,121,44,104,116,109,108,2,1,247,186,230,73,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,4,104,116,109,108,2,1,53,180,19,206,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,4,104,116,109,108,2,2,3,16,85,190,182,205,134,68,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,113,99,45,99,109,112,50,45,99,111,110,116,97,105,110,101,114,2,1,243,130,165,217,0,5,9,98,111,100,121,44,104,116,109,108,2,1,243,130,165,217,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,100,105,115,99,108,97,105,109,101,114,45,98,97,114,2,1,125,165,39,198,0,5,9,98,111,100,121,44,104,116,109,108,2,1,125,165,39,198,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,21,46,99,111,110,115,101,110,116,45,98,111,120,95,95,119,114,97,112,112,101,114,2,1,62,48,110,219,0,5,9,98,111,100,121,44,104,116,109,108,2,1,62,48,110,219,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,66,4,219,34,74,9,92,171,247,19,60,160,247,22,146,101,45,32,250,253,132,35,106,159,233,36,90,214,151,36,108,13,140,39,51,134,60,42,148,118,122,49,19,107,198,73,56,55,127,74,179,66,252,75,136,180,73,77,134,61,12,79,175,75,15,92,134,75,249,100,33,98,65,100,33,98,65,100,80,135,123,105,7,231,2,118,76,105,19,126,151,162,70,128,69,231,143,130,87,76,74,130,87,76,113,130,87,76,151,133,112,134,57,133,151,137,170,134,92,55,106,142,220,63,237,146,126,26,192,149,91,163,205,149,232,119,11,153,188,236,251,167,115,65,35,170,128,6,26,171,50,194,9,171,72,194,69,177,153,87,101,177,162,215,4,178,40,191,3,178,133,109,18,178,183,89,102,179,112,130,121,179,112,130,121,181,252,116,27,184,68,99,177,184,91,81,38,185,216,34,112,187,35,157,197,191,162,158,6,195,144,48,87,196,93,194,245,198,239,50,63,204,229,221,161,213,28,73,59,214,158,9,215,220,226,201,6,221,110,115,119,222,207,166,167,236,231,202,238,243,93,243,168,250,230,99,53,252,75,23,64,253,151,245,92,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,115,118,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,74,3,46,166,137,5,62,216,102,8,120,182,131,8,210,194,135,9,90,203,12,11,31,228,217,19,91,82,183,27,243,13,186,29,255,153,67,30,184,0,206,31,29,38,148,33,126,132,148,35,43,210,1,35,231,188,159,38,117,150,110,41,250,186,253,44,121,13,244,46,10,213,252,48,131,144,57,57,115,54,5,58,82,140,26,61,152,137,83,69,135,44,237,72,48,132,103,75,71,162,234,82,67,239,169,82,68,9,143,82,70,48,7,82,77,31,169,82,82,84,16,97,93,255,236,97,193,68,170,106,110,248,232,107,197,57,17,119,40,94,248,119,40,122,128,123,138,184,67,139,217,148,61,140,20,187,43,141,226,16,78,142,142,91,150,156,41,27,57,159,83,223,130,159,209,142,218,161,13,136,133,161,19,84,13,167,234,190,48,173,106,168,4,173,133,180,103,178,115,46,15,181,195,28,21,188,122,202,6,203,117,49,138,207,20,219,216,210,158,133,166,211,89,42,82,220,141,40,156,224,163,148,49,228,57,156,81,228,122,80,148,228,133,106,95,229,37,199,60,229,50,121,225,229,210,93,144,230,80,116,154,231,182,122,91,234,237,233,178,234,237,235,35,234,237,235,56,237,8,174,234,244,17,43,134,244,98,173,191,248,189,147,154,254,157,23,86,8,1,27,46,101,110,118,45,109,111,100,97,108,45,100,105,97,108,111,103,95,95,98,97,99,107,100,114,111,112,2,74,3,46,166,137,5,62,216,102,8,120,182,131,8,210,194,135,9,90,203,12,11,31,228,217,19,91,82,183,27,243,13,186,29,255,153,67,30,184,0,206,31,29,38,148,33,126,132,148,35,43,210,1,35,231,188,159,38,117,150,110,41,250,186,253,44,121,13,244,46,10,213,252,48,131,144,57,57,115,54,5,58,82,140,26,61,152,137,83,69,135,44,237,72,48,132,103,75,71,162,234,82,67,239,169,82,68,9,143,82,70,48,7,82,77,31,169,82,82,84,16,97,93,255,236,97,193,68,170,106,110,248,232,107,197,57,17,119,40,94,248,119,40,122,128,123,138,184,67,139,217,148,61,140,20,187,43,141,226,16,78,142,142,91,150,156,41,27,57,159,83,223,130,159,209,142,218,161,13,136,133,161,19,84,13,167,234,190,48,173,106,168,4,173,133,180,103,178,115,46,15,181,195,28,21,188,122,202,6,203,117,49,138,207,20,219,216,210,158,133,166,211,89,42,82,220,141,40,156,224,163,148,49,228,57,156,81,228,122,80,148,228,133,106,95,229,37,199,60,229,50,121,225,229,210,93,144,230,80,116,154,231,182,122,91,234,237,233,178,234,237,235,35,234,237,235,56,237,8,174,234,244,17,43,134,244,98,173,191,248,189,147,154,254,157,23,86,0,5,9,98,111,100,121,44,104,116,109,108,2,73,3,46,166,137,5,62,216,102,8,120,182,131,8,210,194,135,9,90,203,12,11,31,228,217,19,91,82,183,27,243,13,186,29,255,153,67,30,184,0,206,31,29,38,148,33,126,132,148,35,43,210,1,35,231,188,159,38,117,150,110,41,250,186,253,44,121,13,244,46,10,213,252,48,131,144,57,57,115,54,5,58,82,140,26,61,152,137,83,69,135,44,237,72,48,132,103,75,71,162,234,82,67,239,169,82,68,9,143,82,70,48,7,82,77,31,169,82,82,84,16,97,93,255,236,97,193,68,170,106,110,248,232,107,197,57,17,119,40,94,248,119,40,122,128,123,138,184,67,139,217,148,61,140,20,187,43,141,226,16,78,142,142,91,150,156,41,27,57,159,83,223,130,159,209,142,218,161,13,136,133,161,19,84,13,167,234,190,48,173,106,168,4,173,133,180,103,181,195,28,21,188,122,202,6,203,117,49,138,207,20,219,216,210,158,133,166,211,89,42,82,220,141,40,156,224,163,148,49,228,57,156,81,228,122,80,148,228,133,106,95,229,37,199,60,229,50,121,225,229,210,93,144,230,80,116,154,231,182,122,91,234,237,233,178,234,237,235,35,234,237,235,56,237,8,174,234,244,17,43,134,244,98,173,191,248,189,147,154,254,157,23,86,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,102,97,110,99,121,98,111,120,95,95,99,111,110,116,97,105,110,101,114,2,1,114,31,132,134,0,5,9,98,111,100,121,44,104,116,109,108,2,1,114,31,132,134,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,111,111,107,105,101,115,112,108,117,115,45,109,111,100,97,108,2,5,5,12,105,26,94,99,64,10,104,92,150,248,225,77,46,82,234,193,95,115,8,1,17,46,102,97,110,99,121,98,111,120,45,111,118,101,114,108,97,121,2,5,5,12,105,26,94,99,64,10,104,92,150,248,225,77,46,82,234,193,95,115,0,5,9,98,111,100,121,44,104,116,109,108,2,5,5,12,105,26,94,99,64,10,104,92,150,248,225,77,46,82,234,193,95,115,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,111,111,107,105,101,115,112,108,117,115,45,109,111,100,97,108,2,19,0,227,196,52,6,23,203,189,6,198,4,47,19,37,36,44,32,141,119,53,45,75,248,243,47,130,221,244,61,178,65,53,62,202,168,35,75,118,223,156,80,15,137,94,142,141,159,208,151,153,52,79,165,200,178,124,204,174,183,58,207,93,101,110,209,37,233,239,216,120,203,149,246,157,178,128,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,19,0,227,196,52,6,23,203,189,6,198,4,47,19,37,36,44,32,141,119,53,45,75,248,243,47,130,221,244,61,178,65,53,62,202,168,35,75,118,223,156,80,15,137,94,142,141,159,208,151,153,52,79,165,200,178,124,204,174,183,58,207,93,101,110,209,37,233,239,216,120,203,149,246,157,178,128,0,5,9,98,111,100,121,44,104,116,109,108,2,19,0,227,196,52,6,23,203,189,6,198,4,47,19,37,36,44,32,141,119,53,45,75,248,243,47,130,221,244,61,178,65,53,62,202,168,35,75,118,223,156,80,15,137,94,142,141,159,208,151,153,52,79,165,200,178,124,204,174,183,58,207,93,101,110,209,37,233,239,216,120,203,149,246,157,178,128,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,103,100,112,114,45,109,111,100,97,108,2,2,124,239,119,62,127,95,44,35,0,5,9,98,111,100,121,44,104,116,109,108,2,2,124,239,119,62,127,95,44,35,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,105,117,98,101,110,100,97,45,99,115,45,118,105,115,105,98,108,101,2,3,11,245,67,166,48,195,88,102,199,189,88,119,0,5,9,98,111,100,121,44,104,116,109,108,2,3,11,245,67,166,48,195,88,102,199,189,88,119,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,118,102,109,45,45,105,110,115,101,116,2,2,19,235,180,151,148,232,94,122,0,5,9,98,111,100,121,44,104,116,109,108,2,2,19,235,180,151,148,232,94,122,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,1,136,32,82,248,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,136,32,82,248,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,55,19,172,164,16,1,12,35,99,111,111,107,105,101,77,111,100,97,108,2,1,55,19,172,164,0,5,9,98,111,100,121,44,104,116,109,108,2,1,55,19,172,164,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,97,112,112,45,99,109,112,2,1,208,45,12,39,0,5,4,98,111,100,121,2,1,208,45,12,39,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,1,167,37,150,248,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,25,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,115,45,119,114,97,112,112,101,114,2,1,10,131,177,35,8,1,17,46,102,97,110,99,121,98,111,120,45,111,118,101,114,108,97,121,2,1,10,131,177,35,0,5,9,98,111,100,121,44,104,116,109,108,2,1,10,131,177,35,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,25,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,13,136,186,217,8,1,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,118,101,114,2,1,13,136,186,217,0,5,9,98,111,100,121,44,104,116,109,108,2,1,13,136,186,217,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,25,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,196,69,0,253,0,5,9,98,111,100,121,44,104,116,109,108,2,1,196,69,0,253,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,233,108,69,137,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,233,108,69,137,0,5,9,98,111,100,121,44,104,116,109,108,2,1,233,108,69,137,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,34,46,106,115,45,102,111,111,116,101,114,45,97,100,118,97,110,99,101,100,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,2,1,24,83,255,102,0,5,4,98,111,100,121,2,1,24,83,255,102,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,1,37,100,105,118,91,105,100,94,61,34,67,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,45,114,101,97,99,116,45,34,93,2,1,122,171,1,91,16,1,27,35,110,101,117,115,116,97,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,109,111,100,97,108,2,3,7,248,34,209,8,129,165,37,19,131,81,165,16,1,8,35,111,118,101,114,108,97,121,2,3,7,248,34,209,8,129,165,37,19,131,81,165,8,1,11,46,114,99,98,45,98,97,110,110,101,114,2,1,69,68,208,138,0,5,9,98,111,100,121,44,104,116,109,108,2,1,69,68,208,138,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,111,97,120,95,109,111,100,97,108,95,99,111,110,116,97,105,110,101,114,2,1,212,111,121,12,8,1,13,46,111,97,120,95,109,111,100,97,108,95,98,103,2,1,212,111,121,12,8,1,25,46,111,97,120,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,111,100,97,108,2,1,212,111,121,12,0,5,9,98,111,100,121,44,104,116,109,108,2,1,212,111,121,12,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,98,115,45,100,105,97,108,111,103,45,111,118,101,114,108,97,121,2,1,93,228,253,95,8,1,24,46,67,111,111,107,105,101,115,67,111,110,102,105,114,109,97,116,105,111,110,86,105,101,119,2,1,93,228,253,95,0,5,9,98,111,100,121,44,104,116,109,108,2,1,93,228,253,95,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,112,114,45,99,111,111,107,105,101,109,111,100,97,108,2,1,126,159,210,220,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,159,210,220,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,114,103,112,100,45,111,118,101,114,108,97,121,2,1,25,217,149,225,16,1,11,35,114,103,112,100,45,112,111,112,105,110,2,1,25,217,149,225,0,5,9,98,111,100,121,44,104,116,109,108,2,1,25,217,149,225,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,27,98,97,104,102,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,100,112,108,51,2,1,226,106,183,120,0,1,22,98,97,104,102,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,2,1,226,106,183,120,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,226,106,183,120,16,1,10,35,109,111,100,97,108,45,99,109,112,2,1,6,223,73,191,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,6,223,73,191,0,5,9,98,111,100,121,44,104,116,109,108,2,1,6,223,73,191,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,20,35,99,111,110,116,97,105,110,101,114,45,114,103,112,100,45,102,111,110,100,2,1,244,6,102,143,16,1,15,35,99,111,110,116,97,105,110,101,114,45,114,103,112,100,2,1,244,6,102,143,0,5,9,98,111,100,121,44,104,116,109,108,2,1,244,6,102,143,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,14,35,122,97,95,114,103,112,100,95,109,111,100,97,108,2,1,68,61,181,45,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,68,61,181,45,0,5,9,98,111,100,121,44,104,116,109,108,2,1,68,61,181,45,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,114,103,112,100,45,111,118,101,114,108,97,121,2,1,120,105,183,156,16,1,11,35,114,103,112,100,45,112,111,112,105,110,2,1,120,105,183,156,0,5,9,98,111,100,121,44,104,116,109,108,2,1,120,105,183,156,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,99,111,110,102,105,114,109,45,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,2,1,149,173,189,124,0,5,9,98,111,100,121,44,104,116,109,108,2,1,149,173,189,124,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,111,118,101,114,108,97,121,45,98,108,111,99,107,2,2,33,145,79,97,130,65,130,92,16,1,17,35,109,111,100,97,108,68,97,116,97,67,111,110,115,101,110,116,2,1,177,4,232,167,0,5,9,98,111,100,121,44,104,116,109,108,2,1,177,4,232,167,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,4,98,111,100,121,2,1,146,58,53,116,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,4,98,111,100,121,2,1,74,45,49,210,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,44,46,118,116,101,120,45,109,111,100,97,108,45,108,97,121,111,117,116,45,48,45,120,45,109,111,100,97,108,45,45,99,111,111,107,105,101,115,45,108,97,121,111,117,116,2,1,247,109,5,126,0,5,9,98,111,100,121,44,104,116,109,108,2,1,247,109,5,126,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,110,101,108,105,111,45,99,111,111,107,105,101,45,109,111,100,97,108,2,1,98,252,49,250,0,5,9,98,111,100,121,44,104,116,109,108,2,1,98,252,49,250,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,4,98,111,100,121,2,1,76,201,162,75,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,99,119,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,4,9,215,109,167,97,210,216,151,118,208,117,4,201,158,199,26,0,5,4,98,111,100,121,2,4,9,215,109,167,97,210,216,151,118,208,117,4,201,158,199,26,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,98,45,100,105,115,99,108,97,105,109,101,114,2,1,123,221,235,241,0,5,9,98,111,100,121,44,104,116,109,108,2,1,123,221,235,241,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,109,111,100,97,108,45,112,111,112,117,112,2,1,227,21,94,174,2,1,22,114,99,44,32,109,111,100,97,108,45,115,104,111,119,44,32,44,32,115,116,97,121,2,1,227,21,94,174,8,1,17,46,101,110,118,45,109,111,100,97,108,45,100,105,97,108,111,103,2,3,4,245,219,175,17,164,5,76,110,99,229,224,8,1,27,46,101,110,118,45,109,111,100,97,108,45,100,105,97,108,111,103,95,95,98,97,99,107,100,114,111,112,2,3,4,245,219,175,17,164,5,76,110,99,229,224,0,5,4,98,111,100,121,2,3,4,245,219,175,17,164,5,76,110,99,229,224,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,9,58,215,114,34,139,185,19,6,162,170,132,128,163,66,73,242,178,75,10,176,186,128,108,155,199,85,110,85,217,225,75,86,236,47,25,110,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,16,35,100,105,115,99,108,97,105,109,101,114,77,111,100,97,108,2,1,236,226,84,237,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,236,226,84,237,0,5,4,98,111,100,121,2,1,236,226,84,237,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,111,118,101,114,108,97,121,2,1,227,133,140,31,8,1,6,46,109,111,100,97,108,2,1,227,133,140,31,0,5,9,104,116,109,108,44,98,111,100,121,2,1,227,133,140,31,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,2,1,163,119,248,59,0,5,4,98,111,100,121,2,1,163,119,248,59,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,97,102,98,45,67,111,111,107,105,101,115,68,97,114,107,2,1,153,50,30,110,0,5,4,98,111,100,121,2,1,153,50,30,110,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,117,105,45,119,105,100,103,101,116,45,111,118,101,114,108,97,121,2,1,238,107,183,201,16,1,7,35,106,117,119,67,77,80,2,1,44,158,59,4,0,5,9,98,111,100,121,44,104,116,109,108,2,1,44,158,59,4,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,14,46,103,99,45,77,111,100,97,108,45,98,111,100,121,2,1,154,3,177,202,8,1,17,46,103,99,45,77,111,100,97,108,45,111,118,101,114,108,97,121,2,1,154,3,177,202,0,5,9,98,111,100,121,44,104,116,109,108,2,1,154,3,177,202,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,19,46,99,99,45,119,105,110,100,111,119,45,98,97,99,107,100,114,111,112,2,1,251,16,209,158,8,1,10,46,99,99,45,119,105,110,100,111,119,2,1,251,16,209,158,0,5,9,98,111,100,121,44,104,116,109,108,2,1,251,16,209,158,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,1,25,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,58,171,117,121,16,1,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,58,171,117,121,0,5,9,98,111,100,121,44,104,116,109,108,2,1,58,171,117,121,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,8,35,99,111,110,115,101,110,116,2,3,16,6,127,34,83,74,51,11,209,189,210,65,16,1,19,35,100,105,118,67,111,111,107,105,101,77,97,115,107,76,97,121,101,114,2,1,114,236,17,98,0,5,4,98,111,100,121,2,1,114,236,17,98,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,9,35,99,99,100,45,114,111,111,116,2,1,53,130,254,43,0,5,9,98,111,100,121,44,104,116,109,108,2,1,53,130,254,43,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,9,46,117,112,45,109,111,100,97,108,2,1,102,222,223,31,0,5,9,98,111,100,121,44,104,116,109,108,2,1,102,222,223,31,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,2,1,229,206,130,127,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,229,206,130,127,0,5,9,98,111,100,121,44,104,116,109,108,2,1,229,206,130,127,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,18,117,118,101,120,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,36,21,77,217,234,38,60,49,122,43,151,247,228,47,37,151,167,54,211,199,196,67,83,51,157,67,225,57,167,81,92,83,203,86,137,123,66,89,145,204,148,90,36,177,92,91,219,145,108,94,186,125,103,94,225,190,74,110,198,227,192,116,88,255,163,122,94,117,157,140,52,208,87,143,12,197,182,146,138,95,27,146,219,66,112,149,39,129,61,155,205,97,142,176,119,186,47,191,240,82,13,200,35,196,45,200,183,97,73,206,174,22,91,209,142,26,235,211,29,230,101,230,117,22,169,231,140,74,31,231,146,165,244,240,11,96,186,243,33,15,38,247,33,14,241,0,5,9,98,111,100,121,44,104,116,109,108,2,36,21,77,217,234,38,60,49,122,43,151,247,228,47,37,151,167,48,142,61,153,54,211,199,196,67,83,51,157,67,225,57,167,81,92,83,203,86,137,123,66,89,145,204,148,90,36,177,92,91,219,145,108,94,186,125,103,94,225,190,74,110,198,227,192,116,88,255,163,122,94,117,157,140,52,208,87,143,12,197,182,146,138,95,27,146,219,66,112,149,39,129,61,155,205,97,142,176,119,186,47,191,240,82,13,200,35,196,45,200,183,97,73,206,174,22,91,209,142,26,235,211,29,230,101,230,117,22,169,231,140,74,31,231,146,165,244,240,11,96,186,243,33,15,38,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,24,35,99,111,111,107,105,101,45,98,108,97,99,107,111,117,116,45,99,117,114,116,97,105,110,2,3,65,148,168,225,89,240,120,220,157,97,23,76,8,1,18,46,99,99,45,119,105,110,100,111,119,45,119,114,97,112,112,101,114,2,3,169,14,175,7,172,57,104,183,209,162,210,199,16,1,17,35,112,97,110,100,101,99,116,101,115,45,98,97,110,110,101,114,2,3,169,14,175,7,172,57,104,183,209,162,210,199,0,5,9,98,111,100,121,44,104,116,109,108,2,3,169,14,175,7,172,57,104,183,209,162,210,199,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,17,35,112,97,110,100,101,99,116,101,115,45,98,97,110,110,101,114,2,1,140,114,243,182,0,5,9,98,111,100,121,44,104,116,109,108,2,1,140,114,243,182,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,23,35,109,105,109,101,67,111,110,115,101,110,116,67,111,111,107,105,101,77,111,100,97,108,2,2,59,191,218,127,175,106,220,14,0,5,9,98,111,100,121,44,104,116,109,108,2,2,59,191,218,127,175,106,220,14,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,11,35,71,68,80,82,45,109,111,100,97,108,2,1,123,234,85,60,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,123,234,85,60,0,5,9,98,111,100,121,44,104,116,109,108,2,1,123,234,85,60,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,22,35,99,111,111,107,105,101,104,105,110,119,101,105,115,95,111,118,101,114,108,97,121,2,1,77,44,1,200,8,1,19,46,103,108,111,98,97,108,45,115,105,116,101,45,110,111,116,105,99,101,2,1,27,158,76,222,0,5,1,42,2,1,27,158,76,222,51,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,1,42,2,1,96,248,23,125,51,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,16,46,115,119,97,108,50,45,99,111,110,116,97,105,110,101,114,2,1,195,37,233,73,0,5,9,98,111,100,121,44,104,116,109,108,2,1,195,37,233,73,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,20,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,111,100,97,108,2,1,127,239,109,212,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,127,239,109,212,0,5,9,98,111,100,121,44,104,116,109,108,2,1,127,239,109,212,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,16,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,2,2,95,80,217,233,126,167,161,129,2,1,16,114,99,44,32,103,100,112,114,44,32,44,32,115,116,97,121,2,45,3,134,232,110,5,104,248,247,10,82,211,171,13,248,31,224,28,24,107,125,28,168,218,77,29,65,129,21,39,148,181,200,47,98,182,240,60,5,173,126,64,190,217,253,71,31,247,22,76,40,242,143,78,60,251,20,89,247,245,168,94,114,168,94,94,238,221,231,96,106,214,37,99,15,35,106,109,9,61,215,119,170,171,203,126,88,235,145,126,135,6,8,126,157,106,25,127,41,209,254,131,112,227,99,138,125,227,243,144,28,97,52,145,220,1,228,149,137,133,250,178,49,141,41,184,83,28,246,192,1,195,228,197,216,88,217,200,165,204,249,202,77,52,219,207,23,134,110,215,64,87,52,224,136,137,0,227,119,199,42,231,134,150,7,234,224,100,16,239,22,19,36,241,120,206,157,242,234,222,124,8,1,27,46,99,111,111,107,105,101,77,111,100,97,108,67,111,109,112,111,110,101,110,116,45,109,111,100,97,108,2,1,243,24,0,242,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,243,24,0,242,0,5,9,98,111,100,121,44,104,116,109,108,2,1,243,24,0,242,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,112,104,103,95,99,111,111,107,105,101,115,95,109,111,100,97,108,2,1,6,28,163,121,8,1,15,46,114,101,118,101,97,108,45,111,118,101,114,108,97,121,2,1,6,28,163,121,0,5,9,98,111,100,121,44,104,116,109,108,2,1,6,28,163,121,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,56,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,116,101,114,109,115,45,97,110,100,45,112,111,108,105,99,121,45,97,99,99,101,112,116,101,100,44,32,121,101,115,2,1,75,151,54,38,2,1,48,115,101,116,45,115,101,115,115,105,111,110,45,115,116,111,114,97,103,101,45,105,116,101,109,44,32,67,111,111,107,105,101,66,97,110,110,101,114,83,104,111,119,110,44,32,121,101,115,2,1,75,151,54,38,16,1,15,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,204,218,76,242,0,5,9,98,111,100,121,44,104,116,109,108,2,1,204,218,76,242,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,109,111,100,97,97,108,45,105,110,108,105,110,101,2,9,8,251,219,65,16,137,210,144,36,139,31,140,93,91,253,122,93,248,163,150,190,49,70,178,190,187,56,127,226,111,180,178,231,139,27,49,8,1,15,46,109,111,100,97,97,108,45,111,118,101,114,108,97,121,2,9,8,251,219,65,16,137,210,144,36,139,31,140,93,91,253,122,93,248,163,150,190,49,70,178,190,187,56,127,226,111,180,178,231,139,27,49,0,5,9,98,111,100,121,44,104,116,109,108,2,9,8,251,219,65,16,137,210,144,36,139,31,140,93,91,253,122,93,248,163,150,190,49,70,178,190,187,56,127,226,111,180,178,231,139,27,49,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,7,46,105,86,121,104,122,80,2,1,99,93,163,157,8,1,7,46,107,101,122,81,98,89,2,1,99,93,163,157,0,5,9,98,111,100,121,44,104,116,109,108,2,1,99,93,163,157,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,26,46,112,116,99,104,114,45,103,100,112,114,99,111,111,107,105,101,99,111,110,116,97,105,110,101,114,2,1,31,198,235,139,2,1,38,114,101,109,111,118,101,45,99,108,97,115,115,44,32,99,111,111,107,105,101,111,112,101,110,101,100,44,32,98,111,100,121,44,32,115,116,97,121,2,1,31,198,235,139,16,1,11,35,99,111,111,107,105,101,119,97,108,108,2,1,63,3,236,44,0,5,9,98,111,100,121,44,104,116,109,108,2,1,63,3,236,44,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,15,35,98,108,117,114,66,97,99,107,103,114,111,117,110,100,2,1,148,186,37,30,0,5,9,98,111,100,121,44,104,116,109,108,2,1,148,186,37,30,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,2,1,38,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,112,111,108,105,99,121,95,97,103,114,101,101,109,101,110,116,44,32,51,2,7,7,134,217,198,67,246,232,46,132,6,239,238,134,173,166,127,193,57,233,251,196,104,10,100,218,52,180,90,8,1,34,46,112,111,112,111,118,101,114,45,45,108,97,121,111,117,116,45,102,105,120,101,100,45,98,111,116,116,111,109,83,104,101,101,116,2,7,7,134,217,198,67,246,232,46,132,6,239,238,134,173,166,127,193,57,233,251,196,104,10,100,218,52,180,90,8,1,28,46,122,73,110,100,101,120,45,45,109,111,100,97,108,46,112,111,112,111,118,101,114,45,99,111,118,101,114,2,7,7,134,217,198,67,246,232,46,132,6,239,238,134,173,166,127,193,57,233,251,196,104,10,100,218,52,180,90,0,5,4,98,111,100,121,2,7,7,134,217,198,67,246,232,46,132,6,239,238,134,173,166,127,193,57,233,251,196,104,10,100,218,52,180,90,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,16,1,31,35,105,110,102,111,95,99,105,110,101,99,97,95,109,111,100,97,108,95,99,111,111,107,105,101,95,112,111,112,117,112,2,1,54,72,173,45,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,54,72,173,45,0,5,4,104,116,109,108,2,1,54,72,173,45,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,25,46,109,101,116,114,111,45,110,101,119,115,108,101,116,116,101,114,45,111,118,101,114,108,97,121,2,1,81,54,39,160,0,5,9,98,111,100,121,44,104,116,109,108,2,1,81,54,39,160,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,43,114,101,109,111,118,101,45,99,108,97,115,115,44,32,99,111,111,107,105,101,119,97,108,108,45,97,99,116,105,118,101,44,32,98,111,100,121,44,32,115,116,97,121,2,1,36,224,72,195,0,5,9,98,111,100,121,44,104,116,109,108,2,1,36,224,72,195,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,3,139,108,214,106,195,11,152,123,243,90,45,80,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,98,97,114,45,111,118,101,114,108,97,121,2,1,173,77,107,151,8,1,12,46,99,98,97,114,45,109,111,100,97,108,49,2,1,173,77,107,151,0,5,9,98,111,100,121,44,104,116,109,108,2,1,173,77,107,151,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,87,36,125,51,2,1,42,114,101,109,111,118,101,45,99,108,97,115,115,44,32,105,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,44,32,98,111,100,121,44,32,115,116,97,121,2,1,87,36,125,51,8,1,14,46,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,231,9,101,129,0,5,9,98,111,100,121,44,104,116,109,108,2,1,231,9,101,129,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,99,111,110,115,101,110,116,99,111,110,116,97,105,110,101,114,2,1,102,98,8,133,16,1,16,35,99,111,111,107,105,101,119,97,108,108,109,111,100,97,108,2,1,190,147,221,145,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,190,147,221,145,0,5,9,98,111,100,121,44,104,116,109,108,2,1,190,147,221,145,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,30,3,223,39,160,5,130,108,147,5,197,125,252,34,211,101,130,51,53,69,28,56,101,98,89,64,251,113,53,71,67,171,76,77,20,155,194,77,92,223,185,80,236,223,85,97,73,242,202,100,198,22,63,115,230,254,36,116,44,114,174,118,40,238,132,129,198,118,143,139,98,235,201,148,188,68,126,158,104,79,238,178,81,79,44,179,194,134,220,184,101,222,83,185,72,109,109,186,25,165,193,199,81,49,183,200,64,203,154,207,11,49,148,207,166,255,82,222,164,162,95,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,2,18,3,136,41,41,20,101,117,229,46,2,69,128,54,44,90,83,61,159,28,166,66,215,88,154,81,251,183,187,116,5,130,243,122,173,94,175,145,61,44,118,157,85,154,77,163,81,214,171,165,17,197,19,181,217,137,189,212,9,13,6,214,199,155,24,224,237,82,184,247,170,252,250,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,18,3,136,41,41,20,101,117,229,46,2,69,128,54,44,90,83,61,159,28,166,66,215,88,154,81,251,183,187,116,5,130,243,122,173,94,175,145,61,44,118,157,85,154,77,163,81,214,171,165,17,197,19,181,217,137,189,212,9,13,6,214,199,155,24,224,237,82,184,247,170,252,250,0,5,9,98,111,100,121,44,104,116,109,108,2,18,3,136,41,41,20,101,117,229,46,2,69,128,54,44,90,83,61,159,28,166,66,215,88,154,81,251,183,187,116,5,130,243,122,173,94,175,145,61,44,118,157,85,154,77,163,81,214,171,165,17,197,19,181,217,137,189,212,9,13,6,214,199,155,24,224,237,82,184,247,170,252,250,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,18,35,99,111,111,107,105,101,77,111,100,117,108,101,77,111,100,97,108,2,1,62,195,92,146,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,62,195,92,146,0,5,9,98,111,100,121,44,104,116,109,108,2,1,62,195,92,146,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,98,115,116,45,108,105,103,104,116,98,111,120,2,1,164,101,81,113,0,5,9,98,111,100,121,44,104,116,109,108,2,1,164,101,81,113,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,14,35,99,111,111,107,105,101,115,45,98,108,111,99,107,2,1,82,141,163,104,0,5,9,98,111,100,121,44,104,116,109,108,2,1,82,141,163,104,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,28,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,109,111,100,97,108,2,12,13,117,19,252,17,112,45,24,60,52,226,224,77,225,170,5,78,221,19,24,86,58,124,54,171,203,158,7,179,43,253,94,195,137,80,53,199,145,74,55,204,211,55,234,234,151,56,50,2,1,42,114,99,44,32,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,111,112,101,110,44,32,104,116,109,108,44,32,115,116,97,121,2,12,13,117,19,252,17,112,45,24,60,52,226,224,77,225,170,5,78,221,19,24,86,58,124,54,171,203,158,7,179,43,253,94,195,137,80,53,199,145,74,55,204,211,55,234,234,151,56,50,8,1,18,46,103,103,45,99,111,111,107,105,101,45,98,108,111,99,107,101,114,2,1,34,126,91,12,0,5,4,104,116,109,108,2,1,34,126,91,12,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,25,114,99,44,32,109,111,100,97,108,45,111,118,101,114,108,97,121,44,32,44,32,115,116,97,121,2,1,34,126,91,12,8,1,26,46,99,107,45,109,111,100,97,108,45,45,99,111,111,107,105,101,77,111,100,97,108,77,97,105,110,2,27,4,211,70,19,23,39,63,60,36,44,150,204,40,160,57,139,49,214,49,117,51,239,231,92,52,22,9,246,57,34,126,39,76,242,194,162,77,65,140,87,81,221,227,125,94,89,105,107,101,63,62,102,130,25,28,205,136,32,52,38,156,219,214,38,158,34,82,4,188,230,247,171,189,13,198,197,199,154,133,188,211,32,26,173,213,140,152,2,219,234,26,122,220,244,135,81,236,44,189,59,241,147,125,138,251,11,116,119,8,1,20,46,102,108,121,111,117,116,46,99,111,111,107,105,101,45,108,97,121,101,114,2,7,6,201,87,11,27,120,181,59,34,207,194,227,96,247,113,54,143,122,160,160,158,96,189,127,168,206,198,91,8,1,27,46,100,101,104,110,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,2,7,6,201,87,11,27,120,181,59,34,207,194,227,96,247,113,54,143,122,160,160,158,96,189,127,168,206,198,91,0,5,9,98,111,100,121,44,104,116,109,108,2,7,6,201,87,11,27,120,181,59,34,207,194,227,96,247,113,54,143,122,160,160,158,96,189,127,168,206,198,91,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,19,35,104,97,112,112,121,45,112,108,97,116,101,115,45,109,111,100,97,108,2,1,58,118,1,231,0,5,4,98,111,100,121,2,1,58,118,1,231,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,7,46,100,97,114,107,101,110,2,1,71,209,151,52,0,5,9,98,111,100,121,44,104,116,109,108,2,1,71,209,151,52,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,12,35,99,111,111,107,105,101,45,119,97,108,108,2,9,34,206,101,160,82,79,108,179,103,81,204,43,116,34,92,164,129,193,123,221,133,165,182,33,158,99,183,228,197,49,17,229,217,15,124,172,0,5,9,98,111,100,121,44,104,116,109,108,2,9,34,206,101,160,82,79,108,179,103,81,204,43,116,34,92,164,129,193,123,221,133,165,182,33,158,99,183,228,197,49,17,229,217,15,124,172,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,99,111,111,107,105,101,45,119,97,108,108,2,1,140,78,184,86,8,1,17,46,99,119,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,140,78,184,86,0,5,9,98,111,100,121,44,104,116,109,108,2,1,140,78,184,86,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,15,97,112,112,45,99,111,111,107,105,101,45,119,97,108,108,2,1,126,9,6,77,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,9,6,77,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,16,35,97,109,100,67,111,111,107,105,101,66,97,110,110,101,114,2,1,10,168,236,71,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,10,168,236,71,0,5,9,98,111,100,121,44,104,116,109,108,2,1,10,168,236,71,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,24,46,115,99,111,109,109,101,114,99,101,45,103,100,112,114,45,98,97,99,107,100,114,111,112,2,2,105,115,211,97,235,231,73,199,0,5,9,98,111,100,121,44,104,116,109,108,2,2,105,115,211,97,235,231,73,199,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,32,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,45,99,111,110,116,97,105,110,101,114,2,1,76,72,57,178,0,5,9,98,111,100,121,44,104,116,109,108,2,1,76,72,57,178,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,23,46,108,111,111,107,95,99,111,111,107,105,101,77,101,110,117,79,118,101,114,108,97,121,2,2,66,70,250,122,118,41,17,230,0,5,9,98,111,100,121,44,104,116,109,108,2,2,66,70,250,122,118,41,17,230,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,111,107,105,101,45,112,101,114,115,111,2,2,8,30,107,122,243,72,123,166,0,5,9,98,111,100,121,44,104,116,109,108,2,2,8,30,107,122,243,72,123,166,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,24,35,99,111,111,107,105,101,95,109,97,110,97,103,101,109,101,110,116,95,109,111,100,97,108,2,2,45,213,188,11,86,75,166,71,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,2,45,213,188,11,86,75,166,71,0,5,9,98,111,100,121,44,104,116,109,108,2,2,45,213,188,11,86,75,166,71,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,1,18,117,118,101,120,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,159,216,155,222,0,5,9,98,111,100,121,44,104,116,109,108,2,1,159,216,155,222,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,11,35,102,111,111,116,101,114,95,102,105,120,2,1,96,237,126,73,0,5,9,98,111,100,121,44,104,116,109,108,2,1,96,237,126,73,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,99,111,111,107,105,101,115,45,112,97,110,101,2,1,91,105,248,11,0,5,9,98,111,100,121,44,104,116,109,108,2,1,91,105,248,11,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,114,103,112,100,87,97,114,110,105,110,103,2,1,4,98,99,162,0,5,9,98,111,100,121,44,104,116,109,108,2,1,4,98,99,162,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,111,110,76,111,97,100,77,111,100,97,108,2,1,249,32,142,252,0,5,9,98,111,100,121,44,104,116,109,108,2,1,249,32,142,252,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,80,114,105,118,97,99,121,77,111,100,97,108,2,1,193,172,142,249,8,1,5,46,115,104,111,119,2,1,193,172,142,249,0,5,4,98,111,100,121,2,1,193,172,142,249,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,6,46,109,111,100,97,108,2,1,85,84,216,28,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,85,84,216,28,0,5,4,104,116,109,108,2,1,85,84,216,28,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,10,35,112,111,112,117,112,105,102,98,107,2,1,96,242,74,175,16,1,8,35,112,111,112,117,112,105,102,2,1,96,242,74,175,0,5,9,98,111,100,121,44,104,116,109,108,2,1,96,242,74,175,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,8,46,73,97,87,82,97,49,104,2,1,129,193,225,51,8,1,8,46,66,65,72,80,112,49,121,2,1,129,193,225,51,0,5,9,98,111,100,121,44,104,116,109,108,2,1,129,193,225,51,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,44,46,77,111,100,97,108,67,111,110,116,97,105,110,101,114,45,109,111,100,117,108,101,95,109,111,100,97,108,67,111,110,116,97,105,110,101,114,95,95,51,56,115,86,118,2,1,207,169,210,155,0,5,4,98,111,100,121,2,1,207,169,210,155,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,5,13,46,112,97,103,101,45,119,114,97,112,112,101,114,2,1,202,12,16,235,51,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,12,46,99,111,111,107,105,101,115,45,98,97,114,2,1,227,195,21,10,0,5,4,98,111,100,121,2,1,227,195,21,10,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,99,119,45,99,111,111,107,105,101,115,45,98,97,114,2,1,11,30,36,175,0,5,9,98,111,100,121,44,104,116,109,108,2,1,11,30,36,175,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,11,46,102,105,120,101,100,46,122,45,53,48,2,15,10,78,145,86,15,235,67,169,19,172,79,15,24,155,236,108,26,173,135,161,46,117,89,18,52,112,49,133,91,148,181,182,112,0,40,162,125,40,205,2,135,220,174,196,144,159,197,195,147,237,107,127,152,202,49,87,195,255,151,31,8,1,10,46,95,51,78,65,117,115,114,114,114,2,1,147,237,107,127,8,1,9,46,98,111,116,116,111,109,45,48,2,1,147,237,107,127,0,1,21,100,105,118,46,118,117,101,45,112,111,114,116,97,108,45,116,97,114,103,101,116,2,1,147,237,107,127,0,1,26,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,111,118,101,114,108,97,121,34,93,2,1,15,235,67,169,8,1,32,46,98,103,45,119,104,105,116,101,91,99,108,97,115,115,36,61,34,109,100,58,119,45,91,54,52,48,112,120,93,34,93,2,1,15,235,67,169,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,14,13,207,83,233,28,179,88,158,45,233,243,16,45,233,243,16,54,245,132,18,55,91,163,223,81,141,157,168,110,193,184,155,154,99,255,214,171,81,243,44,181,220,92,238,207,97,86,135,217,35,142,50,229,215,202,141,0,5,9,98,111,100,121,44,104,116,109,108,2,14,13,207,83,233,28,179,88,158,45,233,243,16,45,233,243,16,54,245,132,18,55,91,163,223,81,141,157,168,110,193,184,155,154,99,255,214,171,81,243,44,181,220,92,238,207,97,86,135,217,35,142,50,229,215,202,141,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,9,98,111,100,121,44,104,116,109,108,2,15,28,91,213,149,37,69,232,53,51,212,158,8,58,50,96,211,78,135,152,78,100,41,240,29,101,68,29,251,107,205,69,39,122,31,204,230,130,28,122,215,172,201,44,154,206,241,38,168,218,214,119,254,231,64,150,62,232,189,27,48,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,27,35,100,105,97,108,111,103,45,114,111,111,116,32,62,32,35,103,100,112,114,45,110,111,116,105,99,101,2,1,38,156,61,126,0,5,9,98,111,100,121,44,104,116,109,108,2,1,38,156,61,126,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,99,115,115,45,97,109,50,55,109,101,2,1,24,97,194,251,8,1,45,46,108,105,103,104,116,98,111,120,101,115,95,66,97,115,105,99,76,105,103,104,116,98,111,120,95,98,97,115,105,99,76,105,103,104,116,98,111,120,95,49,84,104,120,108,2,1,148,184,77,44,0,5,9,98,111,100,121,44,104,116,109,108,2,1,148,184,77,44,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,99,111,111,107,105,101,100,101,110,121,111,118,101,114,108,97,121,2,1,7,208,225,53,2,1,16,114,99,44,32,98,108,117,114,44,32,44,32,115,116,97,121,2,1,7,208,225,53,8,1,7,46,99,111,111,107,105,101,2,1,132,56,43,133,8,1,14,46,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,132,56,43,133,0,5,9,98,111,100,121,44,104,116,109,108,2,1,132,56,43,133,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,19,35,97,118,101,110,105,115,80,114,105,118,97,99,121,84,111,111,108,115,2,1,18,120,173,104,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,18,120,173,104,0,5,9,98,111,100,121,44,104,116,109,108,2,1,18,120,173,104,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,16,35,100,105,115,99,108,97,105,109,101,114,77,111,100,97,108,2,1,55,13,105,22,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,55,13,105,22,0,5,9,98,111,100,121,44,104,116,109,108,2,1,55,13,105,22,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,4,35,101,117,99,2,1,105,89,113,8,0,5,9,98,111,100,121,44,104,116,109,108,2,1,105,89,113,8,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,98,115,45,100,105,97,108,111,103,45,111,118,101,114,108,97,121,2,1,202,86,28,152,0,5,9,98,111,100,121,44,104,116,109,108,2,1,202,86,28,152,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,15,35,119,115,67,111,110,115,101,110,116,76,97,121,101,114,2,1,247,144,104,141,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,247,144,104,141,0,5,9,98,111,100,121,44,104,116,109,108,2,1,247,144,104,141,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,36,115,101,116,45,99,111,111,107,105,101,44,32,67,65,95,68,84,95,86,50,44,32,48,44,32,44,32,114,101,108,111,97,100,44,32,49,2,5,29,55,18,106,129,217,157,48,131,209,150,152,171,26,158,167,231,42,238,21,2,1,23,115,101,116,45,99,111,111,107,105,101,44,32,67,65,95,68,84,95,86,51,44,32,48,2,5,29,55,18,106,129,217,157,48,131,209,150,152,171,26,158,167,231,42,238,21,16,1,7,35,99,116,117,45,99,109,2,1,116,28,104,0,0,5,9,98,111,100,121,44,104,116,109,108,2,1,116,28,104,0,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,32,115,101,116,44,32,114,101,97,108,67,111,111,107,105,101,66,97,110,110,101,114,44,32,117,110,100,101,102,105,110,101,100,2,128,0,0,1,244,0,110,128,155,0,110,141,50,1,29,205,25,1,192,244,10,2,27,23,155,3,7,246,87,3,18,164,3,3,25,74,33,3,149,131,175,4,141,194,253,4,163,113,15,4,218,128,33,5,89,28,133,5,198,91,13,6,206,131,57,7,49,216,118,7,57,46,37,7,247,224,140,8,210,226,237,9,74,151,146,9,101,82,76,9,203,84,237,10,104,208,77,10,116,254,55,10,171,211,237,10,213,172,61,11,62,248,160,13,41,40,168,13,175,229,44,13,213,64,74,14,2,205,57,14,2,205,57,14,45,27,11,14,77,69,248,14,139,157,162,14,229,241,142,15,161,4,4,15,178,58,156,15,192,112,239,17,163,226,126,17,170,69,213,17,230,86,107,17,238,227,88,18,102,197,213,18,123,64,188,18,174,173,69,18,220,151,253,18,242,12,71,19,79,89,19,19,255,230,105,21,14,228,127,22,200,17,48,22,233,75,219,23,153,25,163,23,154,100,31,23,187,24,185,23,212,169,70,24,210,124,40,25,151,215,25,25,204,140,76,25,223,101,90,26,34,214,62,26,53,242,109,26,56,248,111,26,233,115,161,27,0,165,59,27,100,55,97,27,101,219,104,27,103,161,211,27,103,234,218,27,113,34,98,27,115,182,218,27,116,250,99,27,117,5,184,27,120,239,61,27,121,132,27,27,149,140,31,27,173,212,140,29,31,7,193,29,182,251,12,29,211,161,166,31,32,255,62,32,8,109,13,32,55,187,160,32,129,29,209,32,175,81,194,33,211,148,24,33,239,237,31,34,0,202,184,34,113,194,28,34,165,96,228,35,85,214,221,35,156,162,227,35,220,89,155,37,21,249,111,37,138,17,202,38,66,20,238,38,144,249,168,39,127,161,246,40,79,96,95,41,26,59,129,41,82,58,136,41,147,88,44,41,207,245,60,42,81,208,133,42,137,115,240,42,192,125,80,42,243,123,124,44,19,64,51,44,134,95,7,45,138,76,125,45,178,253,101,46,129,217,151,46,186,116,85,47,45,38,96,48,213,241,91,49,122,228,148,49,196,196,102,50,4,86,206,50,65,190,247,50,118,143,247,50,149,144,231,50,238,103,140,51,33,57,49,52,54,41,237,52,152,208,50,54,95,124,201,54,214,217,178,55,8,33,25,55,143,43,255,55,179,117,199,56,108,161,137,57,74,132,217,57,113,32,157,57,153,145,156,57,225,252,68,57,244,242,153,58,222,251,94,59,239,88,179,62,155,218,84,63,30,194,240,64,78,111,203,64,128,87,16,66,143,180,96,66,152,8,135,67,146,59,92,67,195,178,21,67,232,59,11,68,17,219,98,68,59,33,28,68,62,186,101,68,91,252,94,69,209,155,29,69,229,13,216,71,16,226,199,71,43,225,55,72,224,71,145,73,34,149,56,74,174,119,126,74,200,194,157,76,128,40,45,77,59,1,41,78,59,201,196,78,209,102,7,78,209,110,162,80,46,2,90,80,88,72,223,81,31,55,76,81,124,228,199,81,160,219,37,82,20,91,87,82,61,138,168,82,181,139,132,82,211,7,221,83,23,67,172,83,174,30,179,83,188,65,162,83,227,224,124,84,75,93,211,84,232,10,133,85,229,28,98,86,228,151,120,87,5,80,27,87,188,13,110,88,9,31,215,88,218,107,155,89,8,23,208,89,23,136,235,89,216,47,23,89,220,12,205,89,240,130,21,90,51,254,166,91,211,115,200,92,25,234,181,92,100,62,56,93,51,6,30,93,147,66,127,93,226,120,177,94,93,123,103,95,156,98,167,96,30,143,197,96,183,136,107,96,249,67,158,97,17,57,193,97,66,120,184,98,154,152,223,98,162,60,236,99,38,28,178,99,85,11,54,99,150,176,141,99,156,128,110,100,255,175,7,101,205,45,142,104,193,166,58,105,72,190,145,106,36,109,55,106,51,10,90,106,190,109,169,107,47,172,167,108,56,236,128,108,182,111,38,108,226,56,52,109,33,203,5,109,139,222,245,110,25,228,197,111,127,63,75,111,219,52,205,112,246,24,14,113,248,247,87,114,10,154,83,114,153,254,185,116,79,180,231,116,209,193,133,117,68,206,56,117,243,37,151,119,192,103,221,120,100,42,232,120,118,204,210,121,28,153,180,122,86,142,251,124,112,161,91,125,6,184,160,126,228,157,191,126,245,137,97,127,55,245,72,127,122,86,171,127,163,182,115,129,23,249,190,129,173,207,154,129,190,90,65,130,104,205,213,131,38,58,140,131,86,5,253,131,228,141,77,132,66,0,85,132,82,12,166,132,123,9,137,132,232,45,255,133,89,111,214,133,129,196,50,134,64,225,33,134,153,100,239,134,196,135,242,134,208,241,40,134,240,187,35,135,85,87,140,135,198,111,165,135,226,242,120,136,32,167,22,136,77,22,22,136,174,135,60,137,47,120,70,138,195,103,12,138,235,62,120,139,45,116,206,139,46,14,128,139,87,121,183,139,133,181,64,140,156,12,172,140,170,83,240,140,176,175,170,140,243,164,33,141,158,163,73,142,178,42,151,142,187,32,8,144,4,103,135,144,30,233,192,145,244,251,238,147,13,137,200,147,155,248,146,148,180,182,72,149,47,68,9,149,52,64,70,149,131,10,0,149,224,36,180,149,226,7,165,150,0,143,16,150,17,140,165,150,200,147,72,152,62,252,162,153,119,26,203,153,197,155,161,153,243,6,142,154,113,146,96,155,148,167,101,155,166,252,255,155,226,229,134,156,125,140,104,157,84,109,79,158,53,190,233,158,242,95,144,159,6,73,60,159,43,149,153,162,52,226,247,163,75,4,2,163,234,221,26,163,244,77,4,164,45,83,94,165,200,240,170,166,119,133,63,168,106,8,22,169,14,217,187,169,125,9,220,169,173,148,67,169,178,146,77,170,119,18,153,171,39,176,234,171,60,25,135,171,98,117,97,171,132,141,1,171,181,138,44,172,36,0,55,172,140,129,222,172,192,179,175,175,42,36,200,175,50,177,210,176,9,236,253,176,185,103,107,179,9,222,214,180,149,7,13,180,244,232,201,181,190,141,222,181,238,127,142,182,19,8,245,182,121,136,178,183,35,92,143,184,239,116,102,187,73,241,70,187,78,216,249,187,108,169,153,187,162,169,3,188,42,30,121,189,192,181,159,189,222,238,226,190,27,68,132,190,192,255,225,190,221,33,198,192,24,246,237,192,140,9,59,192,207,12,214,192,251,0,98,193,5,89,101,193,132,148,130,194,146,58,37,195,36,127,36,195,51,216,190,195,148,69,154,196,164,208,43,196,201,179,191,196,252,28,183,197,199,97,155,198,87,104,168,198,87,131,114,198,136,49,226,198,168,114,154,198,191,62,131,198,191,62,131,200,22,138,131,200,34,173,130,200,85,140,42,201,58,30,138,203,9,81,148,204,50,47,17,204,124,73,86,205,245,206,68,205,248,154,66,206,51,231,179,206,56,215,135,206,140,247,113,206,185,253,138,207,57,236,115,209,51,67,161,209,62,97,40,209,87,120,53,209,223,100,197,210,49,124,204,211,11,75,251,211,116,36,229,211,192,197,181,212,120,154,3,212,215,175,245,213,41,166,225,215,43,70,23,216,172,68,75,217,32,129,110,217,102,210,71,218,178,27,201,218,251,109,132,219,4,144,238,219,161,111,128,220,40,65,171,220,124,198,117,220,138,144,250,222,4,57,200,222,53,242,207,222,122,89,103,222,143,25,142,222,153,64,43,222,192,139,252,223,128,179,55,223,216,56,180,223,230,113,131,224,28,186,114,224,201,115,60,225,249,225,39,226,204,253,217,227,148,251,141,228,172,146,125,229,135,224,53,229,192,114,254,230,34,231,94,230,188,103,133,231,175,253,219,232,85,11,241,233,207,39,215,234,16,195,218,234,112,201,196,234,227,170,255,235,95,58,137,236,44,87,199,236,71,60,39,237,29,42,180,237,33,71,183,237,56,124,252,238,65,119,88,238,153,210,102,239,154,181,158,239,227,82,129,240,106,65,233,241,204,172,219,241,215,242,28,241,239,152,194,241,251,27,94,242,147,17,25,242,157,10,83,242,223,69,163,242,231,152,65,243,42,98,217,243,178,112,173,244,177,110,22,244,187,37,103,245,145,50,71,246,19,231,153,246,72,234,76,246,73,92,181,246,143,234,95,247,94,56,53,247,151,155,230,247,211,235,193,247,220,221,243,247,223,87,81,248,50,229,153,248,87,141,144,248,91,237,169,248,149,243,142,248,185,88,197,249,67,104,216,249,158,229,157,249,177,108,151,249,211,54,51,249,233,140,224,250,49,235,83,251,232,181,82,251,240,204,202,251,246,233,235,252,29,151,210,252,94,2,174,252,226,4,228,252,232,111,6,253,32,55,88,253,83,18,30,253,99,187,120,253,203,145,53,253,232,156,24,254,3,120,79,254,120,23,91,254,232,226,202,255,42,236,78,255,85,210,12,255,112,254,0,2,1,38,115,101,116,44,32,97,109,119,46,105,115,67,111,111,107,105,101,67,111,110,115,101,110,116,65,99,99,101,112,116,101,100,44,32,116,114,117,101,2,26,5,42,74,154,5,182,85,139,17,15,54,13,33,35,45,75,40,7,42,220,42,229,118,155,51,59,243,134,79,176,135,102,84,184,20,225,93,26,188,215,96,64,130,122,112,174,218,177,125,243,200,42,144,141,52,57,186,224,123,84,190,31,131,95,190,209,211,114,199,177,157,159,205,145,143,53,215,34,177,224,216,99,171,85,230,215,105,188,236,92,4,37,240,227,157,68,246,19,189,3,254,38,181,227,2,1,42,115,101,116,44,32,97,109,119,46,105,115,77,97,114,107,101,116,105,110,103,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,26,5,42,74,154,5,182,85,139,17,15,54,13,33,35,45,75,40,7,42,220,42,229,118,155,51,59,243,134,79,176,135,102,84,184,20,225,93,26,188,215,96,64,130,122,112,174,218,177,125,243,200,42,144,141,52,57,186,224,123,84,190,31,131,95,190,209,211,114,199,177,157,159,205,145,143,53,215,34,177,224,216,99,171,85,230,215,105,188,236,92,4,37,240,227,157,68,246,19,189,3,254,38,181,227,2,1,42,115,101,116,44,32,97,109,119,46,105,115,65,110,97,108,121,116,105,99,115,67,111,111,107,105,101,115,65,99,99,101,112,116,101,100,44,32,102,97,108,115,101,2,26,5,42,74,154,5,182,85,139,17,15,54,13,33,35,45,75,40,7,42,220,42,229,118,155,51,59,243,134,79,176,135,102,84,184,20,225,93,26,188,215,96,64,130,122,112,174,218,177,125,243,200,42,144,141,52,57,186,224,123,84,190,31,131,95,190,209,211,114,199,177,157,159,205,145,143,53,215,34,177,224,216,99,171,85,230,215,105,188,236,92,4,37,240,227,157,68,246,19,189,3,254,38,181,227,8,1,14,46,112,111,112,117,112,95,119,114,97,112,112,101,114,2,1,149,108,155,114,16,1,32,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,112,111,112,117,112,95,98,97,99,107,103,114,111,117,110,100,2,1,149,108,155,114,0,5,9,98,111,100,121,44,104,116,109,108,2,1,149,108,155,114,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,28,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,98,111,116,116,111,109,95,114,105,103,104,116,2,1,2,67,167,63,0,5,9,98,111,100,121,44,104,116,109,108,2,1,2,67,167,63,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,112,111,112,117,112,45,100,105,115,99,108,97,105,109,101,114,2,1,126,118,245,237,8,1,16,46,99,111,111,107,105,101,115,45,116,111,111,108,116,105,112,2,1,126,118,245,237,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,118,245,237,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,99,111,111,107,105,101,109,111,100,97,108,95,97,116,116,50,48,50,49,2,2,102,34,67,235,115,243,158,226,0,5,9,98,111,100,121,44,104,116,109,108,2,2,102,34,67,235,115,243,158,226,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,5,5,46,98,108,117,114,2,1,40,195,5,184,51,111,112,97,99,105,116,121,58,49,32,33,105,109,112,111,114,116,97,110,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,4,104,116,109,108,2,1,40,195,5,184,24,111,118,101,114,102,108,111,119,58,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,13,46,97,98,115,111,108,95,99,111,111,107,105,101,2,1,32,230,117,142,16,1,9,35,102,117,108,108,95,119,105,110,2,1,32,230,117,142,0,1,21,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,111,120,45,34,93,2,1,175,18,141,49,0,5,9,98,111,100,121,44,104,116,109,108,2,1,175,18,141,49,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,12,35,108,101,103,97,108,45,109,111,100,97,108,2,1,221,95,141,182,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,221,95,141,182,0,5,9,98,111,100,121,44,104,116,109,108,2,1,221,95,141,182,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,4,104,116,109,108,2,3,12,239,86,114,169,172,222,70,247,119,240,1,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,15,46,108,98,79,117,116,101,114,87,114,97,112,112,101,114,2,3,44,95,1,5,210,85,104,38,217,66,189,144,8,1,10,46,108,98,79,118,101,114,108,97,121,2,3,44,95,1,5,210,85,104,38,217,66,189,144,0,5,9,98,111,100,121,44,104,116,109,108,2,3,44,95,1,5,210,85,104,38,217,66,189,144,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,12,35,67,111,111,107,105,101,77,111,100,97,108,2,1,209,128,171,3,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,209,128,171,3,0,5,9,98,111,100,121,44,104,116,109,108,2,1,209,128,171,3,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,14,35,98,111,120,99,117,115,116,111,109,111,118,101,114,2,1,148,170,193,110,0,5,9,98,111,100,121,44,104,116,109,108,2,1,148,170,193,110,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,112,111,108,105,99,121,45,109,111,100,97,108,2,1,81,225,167,249,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,81,225,167,249,0,5,9,98,111,100,121,44,104,116,109,108,2,1,81,225,167,249,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,108,97,110,121,97,114,100,95,114,111,111,116,2,1,96,53,173,135,0,5,9,98,111,100,121,44,104,116,109,108,2,1,96,53,173,135,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,23,46,101,110,115,78,111,116,105,102,121,66,97,110,110,101,114,87,114,97,112,112,101,114,2,43,2,234,72,73,11,199,22,124,23,81,195,182,31,73,153,119,38,156,254,214,40,31,93,120,51,46,149,121,64,34,228,140,65,102,242,100,81,61,218,96,98,191,54,12,100,32,239,161,101,208,250,231,113,221,111,162,118,44,178,188,118,102,85,146,134,67,218,251,134,153,27,166,135,25,130,79,137,110,74,252,139,195,248,92,146,185,4,236,147,241,135,170,163,3,69,53,164,112,196,139,166,254,187,130,167,112,24,60,167,121,153,127,170,196,158,34,173,191,9,205,178,145,75,116,182,131,68,171,190,81,95,51,190,148,3,237,191,240,213,208,199,152,118,238,203,215,72,132,212,229,178,59,229,206,134,236,242,81,139,220,242,231,155,42,244,70,15,254,250,67,252,35,0,5,9,98,111,100,121,44,104,116,109,108,2,43,2,234,72,73,11,199,22,124,23,81,195,182,31,73,153,119,38,156,254,214,40,31,93,120,51,46,149,121,64,34,228,140,65,102,242,100,81,61,218,96,98,191,54,12,100,32,239,161,101,208,250,231,113,221,111,162,118,44,178,188,118,102,85,146,134,67,218,251,134,153,27,166,135,25,130,79,137,110,74,252,139,195,248,92,146,185,4,236,147,241,135,170,163,3,69,53,164,112,196,139,166,254,187,130,167,112,24,60,167,121,153,127,170,196,158,34,173,191,9,205,178,145,75,116,182,131,68,171,190,81,95,51,190,148,3,237,191,240,213,208,199,152,118,238,203,215,72,132,212,229,178,59,229,206,134,236,242,81,139,220,242,231,155,42,244,70,15,254,250,67,252,35,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,17,35,115,116,97,110,100,97,114,100,95,111,118,101,114,108,97,121,2,1,85,104,206,166,0,5,9,98,111,100,121,44,104,116,109,108,2,1,85,104,206,166,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,99,99,45,49,114,115,103,109,121,50,2,1,153,73,168,39,16,5,9,35,65,107,84,111,112,78,97,118,2,1,153,73,168,39,16,116,111,112,58,48,32,33,105,109,112,111,114,116,97,110,116,8,1,29,46,110,103,45,116,114,105,103,103,101,114,45,112,114,101,115,101,110,99,101,65,110,105,109,97,116,105,111,110,2,1,92,84,41,253,0,5,9,98,111,100,121,44,104,116,109,108,2,1,92,84,41,253,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,14,46,98,97,115,105,99,76,105,103,104,116,98,111,120,2,1,186,111,76,17,0,5,9,98,111,100,121,44,104,116,109,108,2,1,186,111,76,17,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,8,35,99,111,111,107,105,101,115,2,2,59,22,77,182,141,116,203,17,0,5,9,98,111,100,121,44,104,116,109,108,2,2,59,22,77,182,141,116,203,17,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,109,97,114,107,101,116,105,110,103,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,12,27,89,194,104,95,198,242,193,103,4,79,212,105,188,144,194,113,73,127,81,139,107,185,127,154,202,97,82,191,141,229,75,200,140,27,4,234,144,119,223,240,156,17,47,245,126,247,217,2,1,34,115,101,116,45,99,111,111,107,105,101,44,32,105,110,116,101,114,110,97,108,67,111,111,107,105,101,115,44,32,102,97,108,115,101,2,12,27,89,194,104,95,198,242,193,103,4,79,212,105,188,144,194,113,73,127,81,139,107,185,127,154,202,97,82,191,141,229,75,200,140,27,4,234,144,119,223,240,156,17,47,245,126,247,217,2,1,35,115,101,116,45,99,111,111,107,105,101,44,32,101,115,115,101,110,116,105,97,108,115,67,111,111,107,105,101,115,44,32,116,114,117,101,2,12,27,89,194,104,95,198,242,193,103,4,79,212,105,188,144,194,113,73,127,81,139,107,185,127,154,202,97,82,191,141,229,75,200,140,27,4,234,144,119,223,240,156,17,47,245,126,247,217,8,1,12,46,103,108,111,119,45,98,97,110,110,101,114,2,5,22,39,70,243,29,37,9,127,160,205,101,10,197,156,98,78,237,109,188,184,8,1,16,46,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,2,21,4,177,69,93,17,101,14,209,18,80,55,59,36,177,255,98,59,69,28,73,78,189,84,165,96,25,140,40,127,230,124,122,129,38,205,137,134,55,150,125,137,91,226,248,176,185,7,72,178,254,62,20,183,190,41,211,185,249,235,189,223,218,198,236,229,238,56,163,247,160,86,181,252,53,184,196,252,156,74,130,253,241,252,131,0,5,9,98,111,100,121,44,104,116,109,108,2,21,4,177,69,93,17,101,14,209,18,80,55,59,36,177,255,98,59,69,28,73,78,189,84,165,96,25,140,40,127,230,124,122,129,38,205,137,134,55,150,125,137,91,226,248,176,185,7,72,178,254,62,20,183,190,41,211,185,249,235,189,223,218,198,236,229,238,56,163,247,160,86,181,252,53,184,196,252,156,74,130,253,241,252,131,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,16,46,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,2,2,54,227,227,127,148,184,83,225,0,5,9,98,111,100,121,44,104,116,109,108,2,2,54,227,227,127,148,184,83,225,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,97,45,98,97,99,107,100,114,111,112,2,1,208,88,204,150,8,1,15,46,109,45,99,111,111,107,105,101,45,108,97,121,101,114,2,1,208,88,204,150,0,5,9,98,111,100,121,44,104,116,109,108,2,1,208,88,204,150,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,99,111,111,107,105,101,95,95,115,101,116,116,105,110,103,115,2,1,148,188,100,219,0,5,9,98,111,100,121,44,104,116,109,108,2,1,148,188,100,219,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,10,35,114,111,100,111,80,111,112,117,112,2,1,190,81,130,61,0,5,9,98,111,100,121,44,104,116,109,108,2,1,190,81,130,61,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,12,46,116,121,45,115,101,116,116,105,110,103,115,2,1,126,4,120,17,0,5,9,98,111,100,121,44,104,116,109,108,2,1,126,4,120,17,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,16,46,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,36,133,131,216,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,36,133,131,216,0,5,9,98,111,100,121,44,104,116,109,108,2,1,36,133,131,216,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,1,13,99,111,111,107,105,101,45,119,105,100,103,101,116,2,1,19,155,134,166,0,5,9,98,111,100,121,44,104,116,109,108,2,1,19,155,134,166,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,108,98,79,117,116,101,114,87,114,97,112,112,101,114,2,1,35,217,182,173,8,1,10,46,108,98,79,118,101,114,108,97,121,2,1,35,217,182,173,0,5,9,98,111,100,121,44,104,116,109,108,2,1,35,217,182,173,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,13,35,100,114,99,99,45,111,118,101,114,108,97,121,2,1,234,2,81,0,0,5,9,98,111,100,121,44,104,116,109,108,2,1,234,2,81,0,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,17,35,99,111,111,107,105,101,65,108,101,114,116,77,111,100,97,108,2,1,39,146,5,12,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,39,146,5,12,0,5,9,98,111,100,121,44,104,116,109,108,2,1,39,146,5,12,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,38,5,99,109,93,10,115,36,95,15,68,110,49,30,56,130,88,33,126,3,194,47,86,28,26,52,103,46,207,52,218,145,88,53,216,157,63,60,183,118,96,61,158,188,73,64,91,204,243,67,249,64,84,71,157,110,148,87,67,206,250,88,197,21,130,93,111,151,67,96,29,198,174,104,219,146,180,105,204,43,150,106,57,192,20,108,115,84,32,116,7,132,112,117,81,113,74,117,114,188,189,126,250,93,198,144,45,147,217,145,73,13,51,146,23,23,53,151,37,147,146,184,146,196,62,189,93,49,238,198,122,167,11,206,87,17,84,213,213,31,13,229,151,243,105,234,112,210,164,237,155,127,48,0,5,9,98,111,100,121,44,104,116,109,108,2,38,5,99,109,93,10,115,36,95,15,68,110,49,30,56,130,88,33,126,3,194,47,86,28,26,52,103,46,207,52,218,145,88,53,216,157,63,60,183,118,96,61,158,188,73,64,91,204,243,67,249,64,84,71,157,110,148,87,67,206,250,88,197,21,130,93,111,151,67,96,29,198,174,104,219,146,180,105,204,43,150,106,57,192,20,108,115,84,32,116,7,132,112,117,81,113,74,117,114,188,189,126,250,93,198,144,45,147,217,145,73,13,51,146,23,23,53,151,37,147,146,184,146,196,62,189,93,49,238,198,122,167,11,206,87,17,84,213,213,31,13,229,151,243,105,234,112,210,164,237,155,127,48,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,12,46,103,100,112,114,45,109,111,100,117,108,101,2,2,134,58,73,128,160,44,225,144,0,5,9,98,111,100,121,44,104,116,109,108,2,2,134,58,73,128,160,44,225,144,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,19,46,119,114,97,112,95,99,111,111,107,105,101,115,95,112,111,112,117,112,2,1,185,10,100,128,8,1,14,46,109,111,100,97,108,45,119,114,97,112,112,101,114,2,14,36,50,80,17,37,61,222,11,90,42,31,72,105,220,237,177,121,82,242,240,141,94,24,152,150,81,40,70,181,129,164,132,182,34,192,149,226,23,225,198,233,239,50,128,235,59,250,230,252,254,245,150,255,167,148,183,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,14,36,50,80,17,37,61,222,11,90,42,31,72,105,220,237,177,121,82,242,240,141,94,24,152,150,81,40,70,181,129,164,132,182,34,192,149,226,23,225,198,233,239,50,128,235,59,250,230,252,254,245,150,255,167,148,183,0,5,9,98,111,100,121,44,104,116,109,108,2,14,36,50,80,17,37,61,222,11,90,42,31,72,105,220,237,177,121,82,242,240,141,94,24,152,150,81,40,70,181,129,164,132,182,34,192,149,226,23,225,198,233,239,50,128,235,59,250,230,252,254,245,150,255,167,148,183,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,6,35,99,99,98,111,120,2,1,144,114,209,196,8,1,7,46,105,81,97,84,69,109,2,1,11,191,206,67,0,5,9,98,111,100,121,44,104,116,109,108,2,1,11,191,206,67,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,19,46,109,111,100,97,108,45,112,114,105,118,97,99,121,45,116,111,111,108,2,1,170,150,86,82,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,170,150,86,82,0,5,9,98,111,100,121,44,104,116,109,108,2,1,170,150,86,82,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,20,46,115,117,98,109,101,110,117,108,97,121,101,114,45,109,111,98,105,108,101,2,1,243,194,175,229,0,5,9,98,111,100,121,44,104,116,109,108,2,1,243,194,175,229,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,12,46,97,115,103,45,111,118,101,114,108,97,121,2,1,200,245,21,201,0,5,9,98,111,100,121,44,104,116,109,108,2,1,200,245,21,201,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,29,5,194,129,172,6,188,161,242,17,74,26,235,27,113,83,130,28,207,198,74,34,214,97,26,38,240,112,46,43,212,171,231,49,226,130,187,50,165,88,68,54,216,3,220,77,88,219,233,82,71,109,217,89,238,97,34,96,236,41,79,102,90,100,76,107,210,91,21,116,42,253,174,117,246,168,73,120,193,210,77,129,201,81,87,133,174,116,91,139,95,12,57,143,129,60,9,143,129,154,65,148,192,40,126,164,146,252,249,173,196,239,29,207,7,53,4,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,95,95,116,101,97,108,105,117,109,71,68,80,82,101,99,77,111,100,97,108,2,2,83,22,140,186,133,163,174,210,0,5,9,98,111,100,121,44,104,116,109,108,2,2,83,22,140,186,133,163,174,210,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,100,105,97,108,111,103,45,45,111,112,101,110,2,4,20,233,105,97,91,101,159,222,120,133,11,177,226,24,142,219,0,5,9,98,111,100,121,44,104,116,109,108,2,4,20,233,105,97,91,101,159,222,120,133,11,177,226,24,142,219,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,11,46,99,111,111,107,105,101,45,98,111,120,2,1,124,61,220,196,8,1,7,46,104,102,84,77,118,65,2,1,124,61,220,196,8,1,17,46,99,111,111,107,105,101,45,98,111,120,45,109,111,100,97,108,2,1,236,201,138,185,0,5,9,98,111,100,121,44,104,116,109,108,2,1,236,201,138,185,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,9,98,111,100,121,44,104,116,109,108,2,1,203,107,224,180,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,9,98,111,100,121,44,104,116,109,108,2,3,102,57,254,126,177,169,155,6,193,196,250,191,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,17,35,99,111,111,107,105,101,115,45,100,117,108,108,45,111,117,116,2,9,17,114,5,56,59,64,13,123,82,86,241,228,92,148,156,157,104,139,240,59,152,31,23,64,210,67,175,151,227,21,205,165,243,148,73,195,0,5,9,98,111,100,121,44,104,116,109,108,2,9,17,114,5,56,59,64,13,123,82,86,241,228,92,148,156,157,104,139,240,59,152,31,23,64,210,67,175,151,227,21,205,165,243,148,73,195,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,99,111,110,100,105,116,105,111,110,115,45,108,2,1,162,225,163,37,0,5,9,98,111,100,121,44,104,116,109,108,2,1,162,225,163,37,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,99,111,111,107,105,101,80,111,108,105,99,121,2,1,156,113,232,214,0,5,9,98,111,100,121,44,104,116,109,108,2,1,156,113,232,214,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,22,46,99,45,99,111,111,107,105,101,98,97,110,110,101,114,95,95,109,111,100,97,108,2,2,1,243,118,79,205,34,227,124,0,5,4,98,111,100,121,2,2,1,243,118,79,205,34,227,124,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,12,35,101,67,111,111,107,105,101,82,103,112,100,2,1,0,74,39,193,0,5,9,98,111,100,121,44,104,116,109,108,2,1,0,74,39,193,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,22,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,2,1,191,26,102,226,0,5,9,98,111,100,121,44,104,116,109,108,2,1,191,26,102,226,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,12,46,112,108,111,45,111,118,101,114,108,97,121,2,12,14,118,117,152,22,165,181,115,47,90,216,134,64,7,129,131,76,251,63,83,147,104,15,21,149,107,83,56,168,196,76,76,170,245,50,241,190,243,84,221,242,64,37,141,251,1,3,94,0,5,9,98,111,100,121,44,104,116,109,108,2,12,14,118,117,152,22,165,181,115,47,90,216,134,64,7,129,131,76,251,63,83,147,104,15,21,149,107,83,56,168,196,76,76,170,245,50,241,190,243,84,221,242,64,37,141,251,1,3,94,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,7,46,100,85,102,100,108,78,2,2,127,233,17,76,167,59,187,130,0,5,9,98,111,100,121,44,104,116,109,108,2,26,47,88,127,102,50,58,139,13,66,112,164,162,80,165,216,78,81,130,138,124,98,58,190,155,100,211,180,132,100,211,180,132,101,123,170,46,107,201,156,250,123,237,173,219,127,233,17,76,132,189,240,112,139,221,184,66,164,104,32,89,167,59,187,130,171,86,215,156,180,89,121,199,186,14,111,126,201,70,222,214,208,253,179,41,214,211,216,139,214,216,149,183,244,234,160,253,246,60,15,62,248,185,240,29,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,19,35,99,107,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,38,3,134,120,183,16,82,216,187,27,227,18,34,31,76,61,243,39,179,166,129,56,211,121,2,63,236,91,154,64,129,107,178,68,42,243,242,70,66,62,21,72,254,99,88,78,154,37,86,83,25,32,97,101,104,242,18,101,198,199,240,102,199,69,114,104,230,57,40,104,230,57,40,104,230,57,40,112,106,141,102,113,245,61,195,124,207,92,45,126,38,2,188,143,192,109,148,154,13,242,155,166,244,124,152,179,79,32,198,183,46,246,160,193,129,247,67,201,141,195,10,204,86,88,162,206,33,161,12,221,120,39,7,223,185,23,207,224,147,234,58,224,168,186,8,230,178,190,212,240,236,255,50,0,5,9,98,111,100,121,44,104,116,109,108,2,38,3,134,120,183,16,82,216,187,27,227,18,34,31,76,61,243,39,179,166,129,56,211,121,2,63,236,91,154,64,129,107,178,68,42,243,242,70,66,62,21,72,254,99,88,78,154,37,86,83,25,32,97,101,104,242,18,101,198,199,240,102,199,69,114,104,230,57,40,104,230,57,40,104,230,57,40,112,106,141,102,113,245,61,195,124,207,92,45,126,38,2,188,143,192,109,148,154,13,242,155,166,244,124,152,179,79,32,198,183,46,246,160,193,129,247,67,201,141,195,10,204,86,88,162,206,33,161,12,221,120,39,7,223,185,23,207,224,147,234,58,224,168,186,8,230,178,190,212,240,236,255,50,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,18,46,102,97,110,99,121,98,111,120,45,105,115,45,109,111,100,97,108,2,2,119,112,126,121,149,102,145,144,0,5,9,98,111,100,121,44,104,116,109,108,2,2,119,112,126,121,149,102,145,144,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,23,35,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,2,1,5,208,7,83,0,5,9,98,111,100,121,44,104,116,109,108,2,1,5,208,7,83,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,17,35,108,105,103,104,116,98,111,120,45,99,111,111,107,105,101,115,2,1,194,211,50,50,0,5,9,98,111,100,121,44,104,116,109,108,2,1,194,211,50,50,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,22,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,111,118,101,114,108,97,121,2,1,68,144,131,213,0,5,9,98,111,100,121,44,104,116,109,108,2,1,68,144,131,213,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,21,46,102,117,108,108,115,99,114,101,101,110,45,99,111,110,116,97,105,110,101,114,2,1,216,35,39,254,0,5,9,98,111,100,121,44,104,116,109,108,2,1,216,35,39,254,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,5,9,98,111,100,121,44,104,116,109,108,2,1,223,184,102,197,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,16,35,100,105,118,105,100,101,80,111,112,117,112,87,114,97,112,2,1,223,184,102,197,8,1,10,46,109,102,112,45,114,101,97,100,121,2,8,54,115,77,91,106,197,84,202,118,51,164,33,141,240,38,90,153,246,105,193,208,3,223,49,218,173,69,63,248,120,188,226,0,5,4,104,116,109,108,2,8,54,115,77,91,106,197,84,202,118,51,164,33,141,240,38,90,153,246,105,193,208,3,223,49,218,173,69,63,248,120,188,226,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,12,35,100,105,100,111,109,105,45,104,111,115,116,2,4,2,201,94,140,10,26,222,219,104,49,190,137,149,59,40,143,0,1,35,100,105,118,91,99,108,97,115,115,94,61,34,100,105,100,111,109,105,45,99,111,110,115,101,110,116,45,112,111,112,117,112,95,34,93,2,4,2,201,94,140,10,26,222,219,104,49,190,137,149,59,40,143,8,1,21,46,100,105,100,111,109,105,45,115,99,114,101,101,110,45,120,108,97,114,103,101,2,6,2,201,94,140,10,26,222,219,104,49,190,137,149,59,40,143,198,252,194,85,229,129,149,239,0,5,9,98,111,100,121,44,104,116,109,108,2,4,2,201,94,140,10,26,222,219,198,252,194,85,229,129,149,239,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,16,1,20,35,99,111,111,107,105,101,99,111,110,116,114,111,108,45,102,105,114,115,116,2,1,107,191,33,44,8,1,11,46,98,103,45,98,108,97,99,107,56,55,2,1,107,191,33,44,0,5,9,98,111,100,121,44,104,116,109,108,2,1,107,191,33,44,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,7,46,98,75,101,116,107,67,2,1,5,42,108,15,8,1,20,46,98,70,104,86,82,87,46,115,99,45,49,103,57,97,119,49,107,45,49,2,1,5,42,108,15,0,5,9,98,111,100,121,44,104,116,109,108,2,1,5,42,108,15,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,0,1,23,91,105,100,94,61,34,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,34,93,2,1,245,216,30,66,0,5,9,98,111,100,121,44,104,116,109,108,2,1,245,216,30,66,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,15,46,109,111,100,97,108,45,99,111,110,115,101,110,116,115,2,17,13,205,149,82,20,98,50,22,66,79,143,58,72,212,67,162,92,247,52,165,98,154,231,17,100,206,45,119,126,13,84,89,134,4,157,71,144,76,169,23,176,22,27,46,177,126,138,86,232,217,72,175,233,84,226,123,238,132,112,86,246,88,154,83,255,168,178,178,0,5,9,98,111,100,121,44,104,116,109,108,2,17,13,205,149,82,20,98,50,22,66,79,143,58,72,212,67,162,92,247,52,165,98,154,231,17,100,206,45,119,126,13,84,89,134,4,157,71,144,76,169,23,176,22,27,46,177,126,138,86,232,217,72,175,233,84,226,123,238,132,112,86,246,88,154,83,255,168,178,178,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,7,46,107,69,68,122,100,86,2,1,166,130,222,180,0,5,9,98,111,100,121,44,104,116,109,108,2,2,40,42,116,229,166,130,222,180,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,49,46,109,105,116,105,100,45,115,104,97,114,101,100,45,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,112,111,112,117,112,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,202,131,143,203,8,1,43,46,109,105,116,105,100,45,115,104,97,114,101,100,45,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,202,131,143,203,0,5,9,98,111,100,121,44,104,116,109,108,2,1,202,131,143,203,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,18,46,103,100,112,114,45,108,109,100,45,115,116,97,110,100,97,114,100,2,1,168,224,207,101,8,1,14,46,103,100,112,114,45,108,109,100,45,119,97,108,108,2,1,168,224,207,101,0,5,9,98,111,100,121,44,104,116,109,108,2,1,168,224,207,101,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,8,46,109,45,108,97,121,101,114,2,3,14,54,50,121,109,243,152,200,186,224,174,88,2,1,37,114,99,44,32,99,111,111,107,105,101,108,97,119,45,98,108,117,114,45,98,97,99,107,103,114,111,117,110,100,44,32,44,32,115,116,97,121,2,3,14,54,50,121,109,243,152,200,186,224,174,88,0,5,9,98,111,100,121,44,104,116,109,108,2,3,14,54,50,121,109,243,152,200,186,224,174,88,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,0,5,9,98,111,100,121,44,104,116,109,108,2,1,236,212,170,195,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,115,104,111,119,67,111,110,115,101,110,116,2,1,236,212,170,195,8,1,11,46,114,111,100,111,45,112,111,112,117,112,2,2,6,114,136,187,203,252,59,125,8,1,13,46,114,111,100,111,45,111,118,101,114,108,97,121,2,2,6,114,136,187,203,252,59,125,0,5,9,98,111,100,121,44,104,116,109,108,2,2,6,114,136,187,203,252,59,125,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,12,46,99,115,115,45,49,121,117,111,97,48,117,2,1,234,237,235,114,0,5,4,98,111,100,121,2,1,234,237,235,114,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,13,46,109,111,100,97,108,45,99,111,111,107,105,101,2,1,3,242,231,240,0,5,9,98,111,100,121,44,104,116,109,108,2,1,3,242,231,240,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,109,111,100,97,108,45,99,111,111,107,105,101,46,109,111,100,97,108,2,10,30,173,82,78,56,143,157,91,82,42,174,143,92,188,66,171,93,224,113,230,161,253,1,67,163,233,152,134,172,99,190,42,182,215,123,189,204,5,247,243,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,10,30,173,82,78,56,143,157,91,82,42,174,143,92,188,66,171,93,224,113,230,161,253,1,67,163,233,152,134,172,99,190,42,182,215,123,189,204,5,247,243,0,5,9,98,111,100,121,44,104,116,109,108,2,10,30,173,82,78,56,143,157,91,82,42,174,143,92,188,66,171,93,224,113,230,161,253,1,67,163,233,152,134,172,99,190,42,182,215,123,189,204,5,247,243,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,2,1,31,114,99,44,32,115,112,45,109,101,115,115,97,103,101,45,111,112,101,110,44,32,104,116,109,108,44,32,115,116,97,121,2,128,0,0,0,156,0,227,173,237,0,242,14,50,0,242,14,50,3,2,170,139,4,79,105,157,6,6,166,37,7,97,123,216,7,218,244,2,9,7,173,113,10,229,133,233,11,159,106,198,11,176,74,122,14,226,54,163,17,232,103,141,24,35,254,4,27,101,149,85,27,109,22,65,27,116,250,103,29,79,244,104,30,88,142,119,31,191,175,202,32,166,173,95,33,27,90,106,34,9,196,16,34,209,49,124,38,157,20,157,38,157,133,110,45,161,41,249,46,90,207,50,49,230,126,25,54,180,23,254,55,107,120,113,57,200,31,54,57,224,147,58,61,65,157,92,61,118,245,172,61,186,88,131,61,195,207,169,65,57,71,189,68,130,110,139,68,154,219,32,68,215,185,138,70,138,101,2,81,69,239,200,81,224,34,150,82,79,37,214,83,47,54,31,84,144,8,35,85,116,108,158,86,25,48,221,86,255,146,175,88,85,165,209,91,31,76,222,92,157,183,149,94,93,89,253,95,156,101,50,96,106,178,224,96,247,172,92,99,221,125,44,100,102,39,165,100,102,227,50,100,143,200,14,103,30,183,245,103,88,20,114,108,88,191,96,110,72,232,74,110,74,57,84,111,233,180,48,111,239,33,27,114,193,95,192,116,180,202,241,118,30,117,198,120,23,223,204,122,226,39,45,124,150,88,166,126,47,255,109,127,50,155,111,127,221,107,73,128,99,177,183,128,221,38,148,129,125,134,163,132,183,102,141,134,184,68,92,136,88,12,52,136,120,249,199,137,116,31,60,138,159,12,154,140,174,93,107,143,8,247,79,143,105,87,151,144,210,115,46,146,185,14,115,146,255,250,85,148,186,52,61,148,254,20,237,149,87,7,75,153,235,226,47,161,248,222,127,164,0,56,66,165,236,209,119,166,75,88,36,166,181,70,176,167,153,1,100,170,12,194,125,170,233,116,105,174,10,113,126,176,213,25,141,177,154,16,164,178,60,221,4,180,99,168,141,183,10,82,39,184,144,188,224,186,140,155,70,187,234,80,71,188,69,108,14,188,70,240,4,189,55,133,98,193,53,176,92,193,209,74,219,194,221,236,12,194,225,17,133,195,11,152,123,196,122,127,60,198,54,85,13,198,61,124,96,201,210,214,110,204,141,32,108,205,177,204,195,208,74,24,70,209,236,200,62,210,101,116,32,211,208,203,220,213,114,90,55,215,90,81,5,217,247,230,56,221,92,132,193,223,64,146,184,227,13,92,118,227,13,92,118,230,158,122,31,230,204,223,154,236,79,90,171,239,129,218,11,242,231,40,213,242,231,130,180,242,231,149,8,242,231,182,209,245,84,22,114,245,223,11,170,245,246,180,57,247,144,230,177,247,220,0,100,248,96,195,54,249,28,142,172,251,189,244,140,252,211,244,248,0,1,32,100,105,118,91,105,100,94,61,34,115,112,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,95,34,93,2,128,0,0,0,156,0,227,173,237,0,242,14,50,0,242,14,50,3,2,170,139,4,79,105,157,6,6,166,37,7,97,123,216,7,218,244,2,9,7,173,113,10,229,133,233,11,159,106,198,11,176,74,122,14,226,54,163,17,232,103,141,24,35,254,4,27,101,149,85,27,109,22,65,27,116,250,103,29,79,244,104,30,88,142,119,31,191,175,202,32,166,173,95,33,27,90,106,34,9,196,16,34,209,49,124,38,157,20,157,38,157,133,110,45,161,41,249,46,90,207,50,49,230,126,25,54,180,23,254,55,107,120,113,57,200,31,54,57,224,147,58,61,65,157,92,61,118,245,172,61,186,88,131,61,195,207,169,65,57,71,189,68,130,110,139,68,154,219,32,68,215,185,138,70,138,101,2,81,69,239,200,81,224,34,150,82,79,37,214,83,47,54,31,84,144,8,35,85,116,108,158,86,25,48,221,86,255,146,175,88,85,165,209,91,31,76,222,92,157,183,149,94,93,89,253,95,156,101,50,96,106,178,224,96,247,172,92,99,221,125,44,100,102,39,165,100,102,227,50,100,143,200,14,103,30,183,245,103,88,20,114,108,88,191,96,110,72,232,74,110,74,57,84,111,233,180,48,111,239,33,27,114,193,95,192,116,180,202,241,118,30,117,198,120,23,223,204,122,226,39,45,124,150,88,166,126,47,255,109,127,50,155,111,127,221,107,73,128,99,177,183,128,221,38,148,129,125,134,163,132,183,102,141,134,184,68,92,136,88,12,52,136,120,249,199,137,116,31,60,138,159,12,154,140,174,93,107,143,8,247,79,143,105,87,151,144,210,115,46,146,185,14,115,146,255,250,85,148,186,52,61,148,254,20,237,149,87,7,75,153,235,226,47,161,248,222,127,164,0,56,66,165,236,209,119,166,75,88,36,166,181,70,176,167,153,1,100,170,12,194,125,170,233,116,105,174,10,113,126,176,213,25,141,177,154,16,164,178,60,221,4,180,99,168,141,183,10,82,39,184,144,188,224,186,140,155,70,187,234,80,71,188,69,108,14,188,70,240,4,189,55,133,98,193,53,176,92,193,209,74,219,194,221,236,12,194,225,17,133,195,11,152,123,196,122,127,60,198,54,85,13,198,61,124,96,201,210,214,110,204,141,32,108,205,177,204,195,208,74,24,70,209,236,200,62,210,101,116,32,211,208,203,220,213,114,90,55,215,90,81,5,217,247,230,56,221,92,132,193,223,64,146,184,227,13,92,118,227,13,92,118,230,158,122,31,230,204,223,154,236,79,90,171,239,129,218,11,242,231,40,213,242,231,130,180,242,231,149,8,242,231,182,209,245,84,22,114,245,223,11,170,245,246,180,57,247,144,230,177,247,220,0,100,248,96,195,54,249,28,142,172,251,189,244,140,252,211,244,248,8,1,11,46,116,112,108,45,99,111,111,107,105,101,2,1,60,22,102,109,0,5,9,98,111,100,121,44,104,116,109,108,2,1,60,22,102,109,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,16,46,98,97,99,107,100,114,111,112,45,98,108,117,114,45,49,2,1,134,40,224,211,0,5,9,98,111,100,121,44,104,116,109,108,2,1,134,40,224,211,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,10,46,110,97,115,45,109,111,100,97,108,2,1,54,218,56,236,0,5,9,98,111,100,121,44,104,116,109,108,2,1,54,218,56,236,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,13,35,119,105,67,111,111,107,105,101,66,97,114,49,2,1,145,146,91,239,0,5,4,104,116,109,108,2,1,145,146,91,239,79,112,111,115,105,116,105,111,110,58,32,115,116,97,116,105,99,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,99,111,110,115,101,110,116,45,100,105,115,99,108,97,105,109,101,114,2,13,3,232,83,4,37,9,217,81,93,94,230,109,94,182,132,137,128,44,14,84,149,89,73,103,191,163,61,81,193,33,198,167,196,54,181,22,201,53,75,114,227,225,171,81,249,16,190,117,251,10,84,197,0,5,9,98,111,100,121,44,104,116,109,108,2,13,3,232,83,4,37,9,217,81,93,94,230,109,94,182,132,137,128,44,14,84,149,89,73,103,191,163,61,81,193,33,198,167,196,54,181,22,201,53,75,114,227,225,171,81,249,16,190,117,251,10,84,197,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,2,1,55,115,101,116,45,99,111,110,115,116,97,110,116,44,32,119,105,110,100,111,119,46,99,109,112,109,110,103,114,46,115,101,116,67,111,110,115,101,110,116,86,105,97,66,116,110,44,32,110,111,111,112,70,117,110,99,2,1,169,218,175,214,16,1,12,35,100,105,100,111,109,105,45,104,111,115,116,2,1,94,58,193,219,16,1,23,35,110,104,102,112,95,100,105,100,111,109,105,95,98,108,111,99,107,95,112,97,103,101,2,1,94,58,193,219,0,5,9,98,111,100,121,44,104,116,109,108,2,1,94,58,193,219,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,82,101,97,99,116,77,111,100,97,108,95,95,79,118,101,114,108,97,121,2,1,246,19,129,99,8,1,17,46,82,101,97,99,116,77,111,100,97,108,80,111,114,116,97,108,2,1,246,19,129,99,0,5,9,98,111,100,121,44,104,116,109,108,2,1,246,19,129,99,50,104,101,105,103,104,116,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,12,46,112,117,45,106,108,105,113,104,116,108,117,2,1,162,194,181,190,0,5,4,98,111,100,121,2,1,162,194,181,190,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,102,97,110,99,121,98,111,120,45,99,111,110,116,97,105,110,101,114,2,1,171,164,43,52,8,1,6,46,112,111,112,117,112,2,1,171,164,43,52,8,1,8,46,111,118,101,114,108,97,121,2,1,140,17,225,5,8,1,15,46,112,111,112,117,112,45,45,99,111,111,107,105,101,115,2,1,140,17,225,5,8,1,25,46,97,107,107,117,45,99,111,111,107,105,101,45,116,111,111,108,115,45,100,101,115,105,103,110,2,8,6,246,236,191,59,6,15,106,132,79,51,32,148,107,239,124,150,191,17,246,197,215,255,18,198,151,82,152,216,55,120,88,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,8,6,246,236,191,59,6,15,106,132,79,51,32,148,107,239,124,150,191,17,246,197,215,255,18,198,151,82,152,216,55,120,88,0,1,12,91,105,100,94,61,34,103,100,112,114,34,93,2,84,12,149,114,93,12,218,212,131,14,188,211,167,15,26,90,203,16,173,180,65,20,239,188,139,22,34,90,235,24,210,62,201,25,35,118,79,28,18,253,206,30,193,100,96,31,231,147,62,36,104,134,19,40,138,255,183,43,203,51,14,53,102,127,14,55,209,161,126,67,177,97,21,70,178,222,120,74,237,249,242,77,209,217,210,92,169,43,136,95,126,134,90,96,165,201,45,97,35,47,16,100,39,190,107,100,50,94,75,102,252,25,232,105,109,219,180,110,193,186,202,112,128,182,164,120,202,183,128,136,11,4,60,139,85,59,67,141,131,236,86,143,154,24,168,144,40,193,84,144,132,76,145,146,112,57,1,146,123,0,178,149,213,190,5,151,233,173,101,152,157,63,6,154,78,6,95,161,89,250,53,161,121,207,142,162,28,238,133,164,101,207,88,171,226,157,97,173,217,130,229,176,172,31,170,179,173,208,230,181,142,48,33,182,255,111,15,183,115,63,52,189,157,172,81,191,115,220,226,197,248,121,195,198,7,38,132,199,145,246,115,202,76,0,252,202,144,142,178,205,109,136,87,205,202,124,111,206,18,223,158,206,227,120,46,208,13,245,30,208,188,0,224,209,189,137,51,211,220,104,126,213,94,163,102,219,140,173,27,220,14,79,21,222,166,187,254,222,168,214,140,223,190,198,251,226,3,27,170,226,120,38,172,230,162,162,134,231,62,32,144,239,20,253,15,242,179,140,61,245,98,20,130,245,171,253,149,0,5,9,98,111,100,121,44,104,116,109,108,2,84,12,149,114,93,12,218,212,131,14,188,211,167,15,26,90,203,16,173,180,65,20,239,188,139,22,34,90,235,24,210,62,201,25,35,118,79,28,18,253,206,30,193,100,96,31,231,147,62,36,104,134,19,40,138,255,183,43,203,51,14,53,102,127,14,55,209,161,126,67,177,97,21,70,178,222,120,74,237,249,242,77,209,217,210,92,169,43,136,95,126,134,90,96,165,201,45,97,35,47,16,100,39,190,107,100,50,94,75,102,252,25,232,105,109,219,180,110,193,186,202,112,128,182,164,120,202,183,128,136,11,4,60,139,85,59,67,141,131,236,86,143,154,24,168,144,40,193,84,144,132,76,145,146,112,57,1,146,123,0,178,149,213,190,5,151,233,173,101,152,157,63,6,154,78,6,95,161,89,250,53,161,121,207,142,162,28,238,133,164,101,207,88,171,226,157,97,173,217,130,229,176,172,31,170,179,173,208,230,181,142,48,33,182,255,111,15,183,115,63,52,189,157,172,81,191,115,220,226,197,248,121,195,198,7,38,132,199,145,246,115,202,76,0,252,202,144,142,178,205,109,136,87,205,202,124,111,206,18,223,158,206,227,120,46,208,13,245,30,208,188,0,224,209,189,137,51,211,220,104,126,213,94,163,102,219,140,173,27,220,14,79,21,222,166,187,254,222,168,214,140,223,190,198,251,226,3,27,170,226,120,38,172,230,162,162,134,231,62,32,144,239,20,253,15,242,179,140,61,245,98,20,130,245,171,253,149,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,99,111,111,107,105,101,115,45,98,97,99,107,100,114,111,112,2,27,7,254,146,115,15,107,233,103,15,127,5,156,24,196,28,219,27,134,210,197,28,106,151,167,32,80,241,119,40,176,14,12,41,105,207,195,78,68,121,210,89,49,195,52,123,180,15,178,124,84,231,201,137,106,74,40,142,225,220,162,147,138,17,102,152,100,21,45,158,245,25,44,173,83,234,228,179,25,180,191,183,154,97,146,190,244,190,70,192,79,104,214,209,79,1,123,218,137,162,147,225,70,39,103,238,54,34,106,0,5,9,98,111,100,121,44,104,116,109,108,2,27,7,254,146,115,15,107,233,103,15,127,5,156,24,196,28,219,27,134,210,197,28,106,151,167,32,80,241,119,40,176,14,12,41,105,207,195,78,68,121,210,89,49,195,52,123,180,15,178,124,84,231,201,137,106,74,40,142,225,220,162,147,138,17,102,152,100,21,45,158,245,25,44,173,83,234,228,179,25,180,191,183,154,97,146,190,244,190,70,192,79,104,214,209,79,1,123,218,137,162,147,225,70,39,103,238,54,34,106,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,20,46,104,101,97,100,101,114,45,99,111,111,107,105,101,115,45,103,100,112,114,2,1,54,51,242,254,0,1,45,104,116,109,108,91,99,108,97,115,115,42,61,34,99,111,111,107,105,101,115,45,118,105,115,105,98,108,101,34,93,32,62,32,98,111,100,121,58,58,98,101,102,111,114,101,2,1,54,51,242,254,2,1,27,114,99,44,32,109,111,100,97,108,79,112,101,110,95,95,95,103,90,121,107,118,44,32,98,111,100,121,2,1,197,137,136,240,8,1,14,46,98,111,100,121,45,98,108,97,99,107,111,117,116,2,1,197,137,136,240,8,1,21,46,99,108,111,115,101,79,110,67,108,105,99,107,95,95,95,50,103,50,83,51,2,1,197,137,136,240,8,1,13,46,99,109,112,99,111,110,116,97,105,110,101,114,2,2,100,71,215,91,244,52,4,127,2,1,22,114,99,44,32,99,111,111,107,105,101,45,98,97,114,44,32,44,32,115,116,97,121,2,5,47,164,30,189,140,156,223,60,142,51,144,174,208,87,226,91,241,250,36,78,16,1,21,35,67,121,98,111,116,67,111,111,107,105,101,98,111,116,68,105,97,108,111,103,2,5,47,164,30,189,140,156,223,60,142,51,144,174,208,87,226,91,241,250,36,78,0,1,34,100,105,118,91,99,108,97,115,115,94,61,34,78,97,118,105,103,97,116,105,111,110,95,95,79,118,101,114,108,97,121,45,34,93,2,5,47,164,30,189,140,156,223,60,142,51,144,174,208,87,226,91,241,250,36,78,0,5,4,98,111,100,121,2,5,47,164,30,189,140,156,223,60,142,51,144,174,208,87,226,91,241,250,36,78,25,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,8,1,5,46,98,119,105,110,2,1,248,159,28,116,8,1,5,46,98,119,114,103,2,1,248,159,28,116,0,5,9,98,111,100,121,44,104,116,109,108,2,1,248,159,28,116,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,21,35,99,109,115,45,119,101,98,45,99,111,110,115,101,110,116,45,114,111,111,116,2,1,137,252,79,9,8,5,15,46,99,119,115,45,109,111,100,97,108,45,111,112,101,110,2,1,137,252,79,9,59,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,1,32,100,105,118,91,105,100,94,61,34,115,112,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,95,34,93,2,1,19,234,152,113,0,5,60,104,116,109,108,46,115,112,45,109,101,115,115,97,103,101,45,111,112,101,110,32,62,32,98,111,100,121,58,110,111,116,40,91,115,116,121,108,101,61,34,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,34,93,41,2,1,19,234,152,113,82,112,111,115,105,116,105,111,110,58,32,117,110,115,101,116,32,33,105,109,112,111,114,116,97,110,116,59,32,109,97,114,103,105,110,45,116,111,112,58,32,48,32,33,105,109,112,111,114,116,97,110,116,59,32,111,118,101,114,102,108,111,119,58,32,118,105,115,105,98,108,101,32,33,105,109,112,111,114,116,97,110,116,0,1,39,91,100,97,116,97,45,116,101,115,116,105,100,61,34,119,97,95,99,111,111,107,105,101,115,95,98,97,110,110,101,114,95,109,111,100,97,108,34,93,2,3,59,57,229,157,59,58,17,188,143,85,6,148,2,1,31,114,99,44,32,104,97,115,67,111,111,107,105,101,66,97,110,110,101,114,44,32,98,111,100,121,44,32,115,116,97,121,2,3,59,57,229,157,59,58,17,188,143,85,6,148,16,1,24,35,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,46,99,109,95,117,105,2,12,40,205,196,212,46,6,181,169,77,142,207,129,79,186,38,179,89,207,8,34,150,207,151,89,157,143,122,43,192,23,184,212,203,215,59,95,203,215,72,41,205,78,74,127,226,107,89,71,2,1,25,97,101,108,100,44,32,115,99,114,111,108,108,44,32,105,110,110,101,114,72,101,105,103,104,116,2,12,40,205,196,212,46,6,181,169,77,142,207,129,79,186,38,179,89,207,8,34,150,207,151,89,157,143,122,43,192,23,184,212,203,215,59,95,203,215,72,41,205,78,74,127,226,107,89,71,2,1,29,115,101,116,44,32,116,99,102,65,108,108,111,119,85,115,101,67,111,111,107,105,101,115,44,32,116,114,117,101,2,1,118,40,212,98,8,1,3,46,99,109,2,1,148,180,4,155,0,5,9,98,111,100,121,44,104,116,109,108,2,1,148,180,4,155,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,17,46,116,111,112,115,99,114,111,108,108,45,98,97,110,110,101,114,2,2,7,163,95,6,17,130,252,224,2,1,37,115,101,116,44,32,99,105,99,99,46,99,111,111,107,105,101,95,99,97,116,95,102,117,110,99,116,105,111,110,97,108,44,32,116,114,117,101,2,2,7,163,95,6,17,130,252,224,2,1,36,115,101,116,44,32,99,105,99,99,46,99,111,111,107,105,101,95,99,97,116,95,115,116,97,116,105,115,116,105,99,44,32,116,114,117,101,2,2,7,163,95,6,17,130,252,224,2,1,36,115,101,116,44,32,99,105,99,99,46,99,111,111,107,105,101,95,99,97,116,95,109,97,114,107,101,116,105,110,103,44,32,116,114,117,101,2,2,7,163,95,6,17,130,252,224,2,1,64,115,101,116,44,32,116,119,101,97,107,101,114,115,67,111,110,102,105,103,46,117,115,101,114,67,111,110,102,105,103,117,114,101,100,67,111,110,115,101,110,116,46,121,111,117,116,117,98,101,46,97,112,112,114,111,118,101,100,44,32,116,114,117,101,2,1,172,81,43,10,2,1,61,115,101,116,44,32,116,119,101,97,107,101,114,115,67,111,110,102,105,103,46,117,115,101,114,67,111,110,102,105,103,117,114,101,100,67,111,110,115,101,110,116,46,111,109,110,121,46,97,112,112,114,111,118,101,100,44,32,116,114,117,101,2,1,172,81,43,10,2,1,68,115,101,116,44,32,116,119,101,97,107,101,114,115,67,111,110,102,105,103,46,117,115,101,114,67,111,110,102,105,103,117,114,101,100,67,111,110,115,101,110,116,46,112,99,110,108,116,101,108,101,99,111,109,46,97,112,112,114,111,118,101,100,44,32,116,114,117,101,2,1,172,81,43,10,2,1,67,115,101,116,44,32,116,119,101,97,107,101,114,115,67,111,110,102,105,103,46,117,115,101,114,67,111,110,102,105,103,117,114,101,100,67,111,110,115,101,110,116,46,103,111,111,103,108,101,109,97,112,115,46,97,112,112,114,111,118,101,100,44,32,116,114,117,101,2,1,172,81,43,10,2,1,67,115,101,116,44,32,116,119,101,97,107,101,114,115,67,111,110,102,105,103,46,117,115,101,114,67,111,110,102,105,103,117,114,101,100,67,111,110,115,101,110,116,46,115,116,114,101,97,109,97,98,108,101,46,97,112,112,114,111,118,101,100,44,32,116,114,117,101,2,1,172,81,43,10,2,1,67,115,101,116,44,32,116,119,101,97,107,101,114,115,67,111,110,102,105,103,46,117,115,101,114,67,111,110,102,105,103,117,114,101,100,67,111,110,115,101,110,116,46,115,111,117,110,100,99,108,111,117,100,46,97,112,112,114,111,118,101,100,44,32,116,114,117,101,2,1,172,81,43,10,2,1,66,115,101,116,44,32,116,119,101,97,107,101,114,115,67,111,110,102,105,103,46,117,115,101,114,67,111,110,102,105,103,117,114,101,100,67,111,110,115,101,110,116,46,107,110,105,103,104,116,108,97,98,46,97,112,112,114,111,118,101,100,44,32,116,114,117,101,2,1,172,81,43,10,2,1,54,115,101,116,45,99,111,111,107,105,101,44,32,84,69,83,67,79,66,65,78,75,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,65,100,118,101,114,116,105,115,105,110,103,44,32,48,2,1,100,15,164,135,2,1,56,115,101,116,45,99,111,111,107,105,101,44,32,84,69,83,67,79,66,65,78,75,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,66,65,78,78,69,82,95,76,79,65,68,69,68,44,32,49,2,1,100,15,164,135,2,1,56,115,101,116,45,99,111,111,107,105,101,44,32,84,69,83,67,79,66,65,78,75,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,66,65,78,78,69,82,95,86,73,69,87,69,68,44,32,49,2,1,100,15,164,135,2,1,53,115,101,116,45,99,111,111,107,105,101,44,32,84,69,83,67,79,66,65,78,75,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,69,120,112,101,114,105,101,110,99,101,44,32,48,2,1,100,15,164,135,2,1,55,115,101,116,45,99,111,111,107,105,101,44,32,84,69,83,67,79,66,65,78,75,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,77,79,68,65,76,95,76,79,65,68,69,68,44,32,49,2,1,100,15,164,135,2,1,55,115,101,116,45,99,111,111,107,105,101,44,32,84,69,83,67,79,66,65,78,75,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,77,79,68,65,76,95,86,73,69,87,69,68,44,32,49,2,1,100,15,164,135,2,1,54,115,101,116,45,99,111,111,107,105,101,44,32,84,69,83,67,79,66,65,78,75,95,69,78,83,73,71,72,84,69,78,95,80,82,73,86,65,67,89,95,77,101,97,115,117,114,101,109,101,110,116,44,32,48,2,1,100,15,164,135,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,118,105,101,119,101,100,95,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,121,101,115,2,1,100,15,164,135,2,1,59,115,101,116,44,32,121,108,101,67,111,110,115,101,110,116,83,100,107,46,95,99,111,110,115,101,110,116,83,100,107,46,95,101,109,98,101,100,100,101,100,95,115,111,99,105,97,108,95,109,101,100,105,97,44,32,116,114,117,101,2,1,203,215,131,14,2,1,33,115,101,116,44,32,121,108,101,67,111,110,115,101,110,116,83,100,107,46,115,104,111,119,44,32,110,111,111,112,70,117,110,99,2,1,203,215,131,14,2,1,38,115,101,116,44,32,99,111,99,107,105,101,67,111,110,115,101,110,116,77,97,110,97,103,101,109,101,110,116,44,32,110,111,111,112,70,117,110,99,2,1,31,87,61,214,8,1,7,46,99,111,111,107,105,101,2,1,53,254,140,168,2,1,30,115,101,116,44,32,119,105,110,100,111,119,46,115,99,114,111,108,108,84,111,44,32,110,111,111,112,70,117,110,99,2,1,53,254,140,168,0,5,4,98,111,100,121,2,1,79,17,249,140,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,79,17,249,140,8,5,11,46,109,111,100,97,108,45,111,112,101,110,2,1,226,144,122,159,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,8,5,25,46,99,111,109,112,101,110,115,97,116,101,45,102,111,114,45,115,99,114,111,108,108,98,97,114,2,1,146,235,35,6,26,109,97,114,103,105,110,45,114,105,103,104,116,58,32,48,32,33,105,109,112,111,114,116,97,110,116,2,1,49,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,110,101,99,101,115,115,97,114,121,44,32,121,101,115,2,1,129,165,207,221,2,1,63,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,116,111,105,109,105,110,110,97,108,108,105,115,101,116,45,101,118,97,115,116,101,101,116,44,32,121,101,115,2,1,129,165,207,221,2,1,48,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,108,97,119,105,110,102,111,45,99,104,101,99,107,98,111,120,45,97,110,97,108,121,116,105,99,115,44,32,110,111,2,1,129,165,207,221,2,1,37,115,101,116,45,99,111,111,107,105,101,44,32,118,105,101,119,101,100,95,99,111,111,107,105,101,95,112,111,108,105,99,121,44,32,121,101,115,2,1,129,165,207,221,2,1,31,115,101,116,45,99,111,111,107,105,101,44,32,99,111,111,107,105,101,95,97,99,99,101,112,116,44,32,116,114,117,101,2,1,29,250,172,160,2,1,21,115,101,116,45,99,111,111,107,105,101,44,32,97,109,45,115,117,98,44,32,49,2,1,157,120,126,8,8,5,16,46,111,118,101,114,102,108,111,119,45,104,105,100,100,101,110,2,1,190,148,85,52,26,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,0,1,18,100,105,118,46,99,111,111,107,105,101,115,45,112,111,112,45,117,112,2,1,190,148,85,52,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,136,187,29,164,16,1,22,35,117,114,109,111,100,97,108,45,49,55,50,52,50,56,51,51,50,48,55,48,55,2,1,136,187,29,164,0,5,9,98,111,100,121,44,104,116,109,108,2,1,136,187,29,164,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,8,1,19,46,99,115,45,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,2,1,125,241,95,230,0,5,4,98,111,100,121,2,1,125,241,95,230,56,111,118,101,114,102,108,111,119,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,105,110,105,116,105,97,108,32,33,105,109,112,111,114,116,97,110,116,59,16,1,11,35,67,111,110,115,101,110,116,77,115,103,2,1,27,105,208,63,16,1,10,35,67,111,111,68,105,97,108,111,103,2,1,250,65,33,48,16,1,14,35,67,111,111,107,105,101,45,112,111,112,45,117,112,2,1,46,216,123,244,16,1,12,35,67,111,111,107,105,101,77,111,100,97,108,2,1,244,58,201,242,16,1,15,35,67,111,111,107,105,101,95,99,111,110,116,101,110,116,2,1,91,242,110,121,16,1,4,35,68,83,69,2,1,242,231,160,57,16,1,18,35,68,97,116,101,110,115,99,104,117,116,122,70,111,111,116,101,114,2,1,138,154,238,42,16,1,20,35,78,111,116,105,102,105,99,97,116,105,111,110,87,114,97,112,112,101,114,2,1,20,200,100,187,16,1,15,35,80,114,105,118,97,99,121,77,97,110,97,103,101,114,2,1,80,10,241,75,16,1,17,35,83,105,116,101,79,118,101,114,108,97,121,80,97,110,101,108,2,1,155,198,231,99,16,1,9,35,97,45,98,97,110,110,101,114,2,1,136,76,24,87,16,1,11,35,97,99,99,45,98,111,116,116,111,109,2,1,1,140,229,14,16,1,10,35,97,100,67,111,110,115,101,110,116,2,1,247,229,29,225,16,1,7,35,97,103,101,118,101,114,2,4,83,0,240,55,115,196,33,11,168,8,217,220,198,162,145,97,16,1,21,35,97,105,116,101,99,45,112,114,105,118,97,99,121,45,110,111,116,105,99,101,2,1,173,12,235,107,16,1,14,35,97,109,45,99,111,111,107,105,101,45,98,97,114,2,2,2,155,33,234,12,212,113,66,16,1,22,35,97,109,112,115,97,110,100,67,111,110,115,101,110,116,69,108,101,109,101,110,116,2,1,110,62,47,190,16,1,6,35,97,114,101,97,50,2,1,56,141,227,200,16,1,15,35,97,115,50,52,45,99,109,112,45,112,111,112,117,112,2,2,58,104,152,35,206,43,249,191,16,1,12,35,98,50,99,45,99,111,110,115,101,110,116,2,1,237,236,219,43,16,1,19,35,98,97,110,110,121,45,98,97,110,110,101,114,45,111,117,116,101,114,2,1,62,58,106,216,16,1,15,35,98,103,45,100,97,116,101,110,115,99,104,117,116,122,2,2,0,147,30,92,83,133,136,65,16,1,20,35,98,108,111,99,107,45,99,111,110,115,101,110,116,45,98,108,111,99,107,2,1,87,167,77,65,16,1,19,35,98,108,111,99,107,45,99,111,111,107,105,101,115,98,108,111,99,107,2,1,249,107,142,72,16,1,10,35,98,111,120,72,111,108,100,101,114,2,1,126,250,148,254,16,1,4,35,99,45,99,2,1,86,136,83,116,16,1,10,35,99,45,111,118,101,114,108,97,121,2,1,255,254,212,184,16,1,3,35,99,67,2,1,77,207,173,254,16,1,10,35,99,67,111,118,101,114,108,97,121,2,1,77,207,173,254,16,1,9,35,99,97,45,108,97,121,101,114,2,1,24,40,100,132,16,1,3,35,99,98,2,2,55,163,120,146,242,231,153,84,16,1,12,35,99,98,56,50,97,45,109,111,100,97,108,2,1,70,106,89,174,16,1,18,35,99,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,2,1,142,75,202,242,16,1,16,35,99,98,97,110,110,101,114,95,111,118,101,114,108,97,121,2,1,142,75,202,242,16,1,7,35,99,99,45,98,111,120,2,1,122,183,60,152,16,1,8,35,99,99,45,99,97,114,100,2,1,141,20,166,106,16,1,9,35,99,99,68,105,97,108,111,103,2,1,18,250,124,190,16,1,8,35,99,99,77,111,100,97,108,2,1,75,222,199,67,16,1,4,35,99,99,109,2,1,89,114,158,199,16,1,8,35,99,99,109,82,111,111,116,2,1,168,112,70,238,16,1,18,35,99,99,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,61,100,40,167,16,1,15,35,99,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,48,247,208,72,16,1,17,35,99,104,101,99,107,67,111,111,107,105,101,79,107,66,111,120,2,1,146,163,124,183,16,1,11,35,99,107,45,111,118,101,114,108,97,121,2,1,53,199,155,212,16,1,11,35,99,107,99,116,114,108,95,98,111,120,2,1,248,63,161,213,16,1,8,35,99,108,97,105,109,101,114,2,1,251,246,218,239,16,1,14,35,99,108,111,115,101,111,110,97,99,116,105,111,110,2,3,46,59,27,140,91,73,193,130,154,212,244,30,16,1,3,35,99,109,2,2,78,101,146,199,209,69,111,70,16,1,8,35,99,109,109,111,100,97,108,2,3,8,31,84,21,112,74,110,124,150,211,209,1,16,1,4,35,99,109,112,2,1,147,20,232,128,16,1,8,35,99,110,111,116,105,99,101,2,1,127,200,217,114,16,1,13,35,99,111,80,111,108,105,99,121,77,97,105,110,2,3,87,113,4,221,118,40,12,1,242,232,110,12,16,1,11,35,99,111,108,111,103,105,110,100,105,118,2,1,210,248,14,129,16,1,16,35,99,111,110,102,105,114,109,95,99,111,111,107,105,101,115,2,1,16,230,62,151,16,1,8,35,99,111,110,115,101,110,116,2,1,54,214,237,67,16,1,18,35,99,111,110,115,101,110,116,45,102,111,114,109,45,114,111,111,116,2,1,81,11,94,245,16,1,16,35,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,2,2,77,227,113,52,187,215,229,0,16,1,13,35,99,111,110,115,101,110,116,45,116,111,111,108,2,4,111,47,199,5,154,98,42,206,172,117,132,96,185,143,9,232,16,1,13,35,99,111,110,115,101,110,116,76,97,121,101,114,2,2,219,143,242,87,255,89,100,82,16,1,15,35,99,111,110,115,101,110,116,109,97,110,97,103,101,114,2,3,3,105,69,163,47,137,152,225,249,32,18,122,16,1,13,35,99,111,110,115,101,110,116,109,111,100,97,108,2,2,59,128,70,242,93,108,159,94,16,1,17,35,99,111,110,116,97,105,110,101,114,45,98,97,110,110,101,114,2,1,79,127,209,121,16,1,22,35,99,111,110,116,97,105,110,101,114,45,98,97,110,110,101,114,45,111,118,101,114,2,1,50,10,29,167,16,1,46,35,99,111,110,116,101,110,116,45,100,101,45,104,105,110,119,101,105,115,45,99,111,111,107,105,101,45,114,105,99,104,116,108,105,110,105,101,45,98,108,111,99,107,105,110,103,2,1,42,93,24,21,16,1,7,35,99,111,111,107,105,101,2,1,189,66,218,98,16,1,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,244,28,15,123,16,1,32,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,98,158,181,9,16,1,24,35,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,109,111,100,97,108,2,1,244,101,202,76,16,1,16,35,99,111,111,107,105,101,68,97,115,104,98,111,97,114,100,2,1,242,81,77,184,16,1,14,35,99,111,111,107,105,101,77,97,110,97,103,101,114,2,1,219,192,178,164,16,1,13,35,99,111,111,107,105,101,77,97,110,103,101,114,2,2,141,39,135,4,170,33,224,191,16,1,14,35,99,111,111,107,105,101,78,111,116,101,65,71,66,2,1,8,236,46,212,16,1,20,35,99,111,111,107,105,101,83,101,108,101,99,116,79,118,101,114,108,97,121,2,1,208,113,190,204,16,1,13,35,99,111,111,107,105,101,95,77,111,100,97,108,2,1,241,147,194,129,16,1,16,35,99,111,111,107,105,101,95,95,99,111,110,115,101,110,116,2,1,242,172,73,36,16,1,14,35,99,111,111,107,105,101,95,112,111,112,117,112,49,2,1,241,3,112,151,16,1,11,35,99,111,111,107,105,101,97,117,116,104,2,1,253,157,13,67,16,1,20,35,99,111,111,107,105,101,98,97,110,110,101,114,87,114,97,112,112,101,114,2,1,97,153,167,187,16,1,9,35,99,111,111,107,105,101,100,115,2,1,193,89,212,109,16,1,14,35,99,111,111,107,105,101,104,105,110,119,101,105,115,2,33,4,245,11,144,4,249,95,100,17,68,196,2,28,11,184,18,30,160,146,54,37,163,246,168,48,86,34,91,81,1,58,193,86,232,47,57,89,203,159,54,96,25,193,208,122,165,72,6,124,180,225,173,126,21,100,241,128,178,36,241,137,237,58,40,142,242,122,106,143,67,116,89,151,66,131,245,161,149,158,32,179,194,172,176,185,154,219,199,187,138,194,242,189,181,52,253,192,242,148,3,194,63,145,6,205,245,187,209,213,128,199,49,232,165,79,211,236,228,195,209,239,180,154,179,249,15,166,213,249,202,33,12,16,1,23,35,99,111,111,107,105,101,104,105,110,119,101,105,115,99,111,110,116,97,105,110,101,114,2,1,217,226,246,98,16,1,14,35,99,111,111,107,105,101,109,97,110,97,103,101,114,2,1,248,120,44,38,16,1,11,35,99,111,111,107,105,101,109,103,109,116,2,2,1,194,80,41,168,184,116,10,16,1,20,35,99,111,111,107,105,101,110,111,116,101,45,98,103,45,108,97,121,101,114,2,1,248,211,8,17,16,1,25,35,99,111,111,107,105,101,115,66,97,110,110,101,114,95,98,97,99,107,103,114,111,117,110,100,2,1,236,3,120,24,16,1,22,35,99,111,111,107,105,101,115,66,97,110,110,101,114,95,119,114,97,112,112,101,114,2,1,236,3,120,24,16,1,30,35,99,111,111,107,105,101,115,99,114,105,112,116,95,105,110,106,101,99,116,101,100,95,119,114,97,112,112,101,114,2,1,210,159,66,242,16,1,10,35,99,111,118,101,114,45,100,105,118,2,1,0,77,146,76,16,1,3,35,99,112,2,1,27,112,251,165,16,1,11,35,99,115,100,105,97,108,111,103,98,100,2,1,154,154,135,139,16,1,12,35,99,115,100,105,97,108,111,103,109,100,50,2,1,154,154,135,139,16,1,6,35,100,97,98,97,114,2,1,34,202,49,178,16,1,5,35,100,97,114,107,2,1,93,21,14,81,16,1,13,35,100,97,114,107,45,112,114,105,118,97,99,121,2,1,179,248,215,25,16,1,5,35,100,97,115,117,2,1,7,177,212,138,16,1,19,35,100,97,116,97,95,112,114,105,118,97,99,121,95,112,111,112,117,112,2,1,218,230,38,54,16,1,20,35,100,97,116,101,110,115,99,104,117,116,122,66,97,108,103,101,78,101,119,2,1,33,238,101,114,16,1,7,35,100,101,99,107,101,114,2,1,101,179,191,120,16,1,15,35,100,105,118,77,111,100,97,108,83,99,114,101,101,110,2,2,29,193,5,75,224,201,59,2,16,1,16,35,100,105,118,99,111,111,107,105,101,112,111,108,105,99,121,2,1,56,60,117,37,16,1,20,35,100,115,99,111,111,107,105,101,98,97,114,95,99,111,110,115,101,110,116,2,1,233,46,195,186,16,1,6,35,100,115,103,118,111,2,5,60,13,128,150,138,192,212,39,187,137,22,139,204,50,244,88,230,196,220,82,16,1,12,35,100,115,103,118,111,45,97,108,101,114,116,2,1,38,9,24,20,16,1,14,35,100,115,103,118,111,95,98,103,108,97,121,101,114,2,1,60,13,128,150,16,1,11,35,101,108,79,68,49,81,66,48,48,79,2,1,84,137,61,213,16,1,14,35,101,112,114,105,118,97,99,121,77,111,100,97,108,2,1,217,151,132,155,16,1,5,35,102,97,100,101,2,1,213,243,20,127,16,1,11,35,102,98,109,95,103,97,95,100,108,103,2,1,13,179,107,6,16,1,4,35,102,111,103,2,1,186,87,57,242,16,1,7,35,102,111,111,116,101,114,2,1,238,4,112,103,16,1,13,35,103,108,45,116,111,112,98,97,114,45,98,103,2,1,79,68,204,253,16,1,21,35,103,111,111,103,108,101,45,115,112,108,97,115,104,45,115,99,114,101,101,110,2,1,74,118,142,137,16,1,8,35,103,114,97,121,111,117,116,2,2,87,181,10,242,236,203,209,7,16,1,7,35,103,114,111,119,108,115,2,1,21,72,68,241,16,1,9,35,104,105,110,119,101,105,115,101,2,5,83,40,125,62,178,116,116,24,226,48,52,152,233,137,175,121,235,244,120,104,16,1,4,35,104,109,99,2,8,12,82,251,177,93,186,35,108,126,58,58,197,150,30,119,164,182,238,102,154,216,24,223,245,218,36,79,242,222,72,176,69,16,1,18,35,105,109,112,111,114,116,97,110,116,77,101,115,115,97,103,101,115,2,1,28,252,4,216,16,1,36,35,105,110,99,114,101,100,105,98,108,101,45,99,111,111,107,105,101,45,102,117,114,110,97,99,101,45,103,101,110,101,114,97,116,111,114,2,1,208,19,190,5,16,1,8,35,105,110,102,111,66,97,114,2,1,245,213,35,49,16,1,13,35,105,110,102,111,95,99,111,111,107,105,101,115,2,1,117,77,24,0,16,1,8,35,105,110,102,111,98,97,114,2,2,10,190,143,207,69,96,211,54,16,1,13,35,106,107,106,97,122,122,87,105,100,103,101,116,2,1,5,166,97,73,16,1,8,35,106,109,45,104,101,97,100,2,1,118,136,56,231,16,1,12,35,107,97,114,109,97,83,112,108,97,115,104,2,1,194,161,199,146,16,1,13,35,107,98,45,99,111,110,116,97,105,110,101,114,2,1,62,249,159,254,16,1,5,35,107,101,107,115,2,1,34,205,127,22,16,1,13,35,107,101,107,116,45,111,118,101,114,108,97,121,2,1,160,169,220,221,16,1,13,35,108,105,103,104,116,45,98,111,120,45,98,103,2,1,71,91,216,127,16,1,11,35,108,111,97,100,101,114,45,110,101,119,2,1,59,234,236,185,16,1,5,35,108,111,99,107,2,1,42,1,20,206,16,1,10,35,108,111,103,103,101,100,98,97,114,2,1,13,84,147,70,16,1,16,35,108,116,117,114,80,97,103,101,79,118,101,114,108,97,121,2,1,148,202,14,75,16,1,5,35,109,97,115,107,2,1,172,137,235,95,16,1,15,35,109,97,116,111,109,111,45,119,114,97,112,112,101,114,2,1,58,120,247,112,16,1,10,35,109,98,50,52,107,108,97,114,111,2,1,79,41,240,135,16,1,38,35,109,101,100,105,97,109,101,101,116,115,70,97,99,101,98,111,111,107,80,105,120,101,108,45,45,110,111,116,105,102,105,99,97,116,105,111,110,2,2,0,65,121,122,175,111,196,198,16,1,19,35,109,101,115,115,97,103,101,115,45,99,111,110,116,97,105,110,101,114,2,1,114,167,91,59,16,1,16,35,109,111,100,97,108,66,97,99,107,103,114,111,117,110,100,2,2,162,3,246,175,182,22,180,184,16,1,22,35,109,111,100,97,108,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,2,2,162,3,246,175,182,22,180,184,16,1,15,35,109,111,100,97,108,99,111,110,116,97,105,110,101,114,2,1,123,96,103,218,16,1,7,35,109,117,102,102,105,110,2,1,65,123,58,148,16,1,18,35,109,121,95,112,114,105,118,97,99,121,95,112,111,108,105,99,121,2,1,58,11,57,238,16,1,15,35,110,97,99,99,45,99,111,110,116,97,105,110,101,114,2,1,132,201,12,145,16,1,13,35,110,97,99,99,45,111,118,101,114,108,97,121,2,1,132,201,12,145,16,1,5,35,110,111,116,101,2,2,2,85,69,73,98,136,88,242,16,1,16,35,110,111,116,105,102,105,99,97,116,105,111,110,66,97,114,2,2,21,247,150,154,123,215,49,201,16,1,22,35,110,111,116,105,102,105,99,97,116,105,111,110,66,97,114,95,109,111,100,97,108,2,2,21,247,150,154,123,215,49,201,16,1,7,35,110,111,116,105,102,121,2,1,12,5,70,20,16,1,8,35,111,112,116,73,110,73,100,2,1,127,32,51,113,16,1,5,35,112,97,103,101,2,1,4,252,252,146,16,1,15,35,112,97,103,101,95,101,118,99,111,110,115,101,110,116,2,1,181,80,36,56,16,1,12,35,112,97,114,107,116,101,97,109,99,107,115,2,1,110,91,42,226,16,1,5,35,112,99,100,99,2,1,40,146,38,173,16,1,7,35,112,111,108,105,99,121,2,1,74,177,138,190,16,1,3,35,112,112,2,1,207,245,225,254,16,1,18,35,112,114,105,118,97,99,121,45,99,111,110,116,97,105,110,101,114,2,5,8,55,239,21,75,213,20,183,164,110,47,126,192,180,94,217,195,226,246,70,16,1,17,35,112,114,105,118,97,99,121,45,100,105,115,108,97,109,101,114,2,1,238,120,130,252,16,1,13,35,112,114,105,118,97,99,121,45,105,110,102,111,2,1,210,152,117,31,16,1,19,35,112,114,105,118,97,99,121,45,112,114,111,116,101,99,116,105,111,110,2,1,68,14,247,85,16,1,17,35,112,114,105,118,97,99,121,67,111,110,116,97,105,110,101,114,2,1,253,79,232,194,16,1,12,35,112,114,105,118,97,99,121,67,116,114,108,2,1,205,243,204,225,16,1,23,35,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,119,114,97,112,112,101,114,2,1,231,109,233,161,16,1,41,35,114,97,104,109,101,110,95,117,101,98,101,114,95,100,105,101,95,103,97,110,122,101,95,115,101,105,116,101,95,102,117,101,114,95,99,111,111,107,105,101,2,2,130,128,140,121,198,240,35,48,16,1,56,35,114,97,104,109,101,110,95,117,101,98,101,114,95,100,105,101,95,103,97,110,122,101,95,115,101,105,116,101,95,114,97,104,109,101,110,95,102,117,101,114,95,99,111,111,107,105,101,95,97,98,102,114,97,103,101,2,2,130,128,140,121,198,240,35,48,16,1,5,35,114,99,112,109,2,1,157,60,60,206,16,1,15,35,114,103,112,100,45,97,115,107,45,112,111,112,105,110,2,1,189,37,151,194,16,1,8,35,114,119,116,104,45,99,98,2,1,158,99,176,124,16,1,13,35,115,98,45,99,111,110,116,97,105,110,101,114,2,1,68,17,232,28,16,1,8,35,115,107,45,105,110,102,111,2,1,171,158,173,232,16,1,14,35,115,111,99,105,97,108,45,111,112,116,45,105,110,2,1,241,132,156,16,16,1,18,35,115,111,102,116,77,101,115,115,97,103,101,115,45,108,105,115,116,2,2,134,173,166,127,218,52,180,90,16,1,7,35,115,111,108,98,111,120,2,1,239,33,50,118,16,1,15,35,115,112,108,97,115,104,45,99,111,110,115,101,110,116,2,1,188,109,188,147,16,1,13,35,115,116,105,99,107,121,70,111,111,116,101,114,2,1,251,139,79,172,16,1,15,35,115,116,111,114,97,103,101,45,110,111,116,105,99,101,2,1,45,194,71,109,16,1,19,35,116,102,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,43,18,158,18,16,1,31,35,116,102,109,95,100,115,103,118,111,95,100,105,115,99,108,97,105,109,101,114,95,99,111,110,116,97,105,110,101,114,2,1,242,120,153,169,16,1,20,35,116,105,110,99,120,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,166,254,103,98,16,1,20,35,116,111,111,108,115,95,99,111,110,115,101,110,116,95,112,97,110,101,108,2,1,40,155,125,197,16,1,47,35,116,111,112,45,110,111,116,105,102,105,99,97,116,105,111,110,95,97,99,99,101,112,116,45,109,97,99,104,109,105,99,104,119,101,103,45,103,117,105,100,101,108,105,110,101,115,2,1,82,23,199,141,16,1,14,35,116,111,115,95,112,112,95,117,112,100,97,116,101,2,1,182,69,212,21,16,1,14,35,116,114,97,99,107,105,110,103,45,105,110,102,111,2,1,125,173,242,194,16,1,17,35,116,114,97,99,107,105,110,103,45,109,101,115,115,97,103,101,2,1,21,36,47,36,16,1,16,35,116,114,97,99,107,105,110,103,67,111,110,115,101,110,116,2,1,0,128,172,255,16,1,7,35,116,117,105,45,99,99,2,1,165,193,87,239,16,1,9,35,117,99,97,45,105,110,102,111,2,1,185,163,5,0,16,1,15,35,118,105,110,101,103,97,114,45,98,111,116,116,108,101,2,2,117,252,147,120,154,141,13,69,16,1,19,35,119,100,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,229,177,230,238,16,1,5,35,119,104,99,109,2,1,201,91,59,243,16,1,19,35,119,114,50,52,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,175,69,41,163,16,1,14,35,119,119,119,115,99,104,117,116,122,95,100,105,118,2,1,58,87,155,62,16,1,6,35,121,99,119,66,103,2,1,54,233,71,81,16,1,6,35,121,99,119,77,111,2,1,54,233,71,81,8,1,8,46,65,108,105,103,110,101,114,2,1,48,104,143,137,8,1,14,46,66,97,110,110,101,114,87,114,97,112,112,101,114,2,1,213,71,167,220,8,1,37,46,67,111,110,115,101,110,116,66,97,110,110,101,114,95,108,111,99,97,116,105,111,110,70,105,120,116,117,114,101,95,95,118,80,95,97,52,2,1,146,165,216,217,8,1,12,46,67,111,110,115,101,110,116,72,105,110,116,2,1,16,28,88,191,8,1,6,46,68,83,71,86,79,2,1,20,205,120,249,8,1,6,46,68,83,98,111,120,2,10,0,14,14,250,0,154,221,218,6,247,101,140,10,93,89,240,84,22,179,3,114,232,27,239,134,241,130,122,154,196,43,253,179,101,50,78,227,234,226,118,8,1,4,46,72,95,115,2,1,230,165,91,55,8,1,26,46,72,114,83,121,115,45,71,105,112,115,45,105,66,111,120,68,105,118,79,118,101,114,108,97,121,2,1,209,168,0,197,8,1,6,46,77,111,100,97,108,2,2,90,177,195,186,196,173,199,111,8,1,16,46,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,2,1,9,61,12,127,8,1,20,46,80,108,117,103,105,110,95,87,101,85,115,101,67,111,111,107,105,101,115,2,1,45,86,27,41,8,1,17,46,80,111,112,117,112,79,110,84,111,112,83,99,114,101,101,110,2,1,243,55,38,102,8,1,20,46,82,101,97,99,116,77,111,100,97,108,95,95,79,118,101,114,108,97,121,2,1,157,224,211,217,8,1,35,46,83,101,103,109,101,110,116,77,97,110,97,103,101,114,66,97,110,110,101,114,95,98,97,110,110,101,114,95,95,100,101,70,117,87,2,1,220,27,121,223,8,1,16,46,84,114,97,99,107,105,110,103,67,111,110,102,105,114,109,2,1,85,21,117,185,8,1,5,46,87,57,113,67,2,1,127,63,147,4,8,1,17,46,95,49,49,86,83,56,32,62,32,46,95,50,111,98,121,89,2,8,20,139,148,117,76,16,167,120,187,31,253,180,210,167,50,207,215,138,182,77,218,122,200,127,233,222,152,84,246,23,192,236,8,1,7,46,95,49,50,100,57,55,2,3,76,16,167,120,78,251,237,6,142,247,116,181,8,1,9,46,95,49,55,114,116,108,116,119,2,1,156,221,230,176,8,1,24,46,95,49,73,66,80,70,54,75,54,109,85,67,73,79,95,114,45,109,56,48,115,51,82,2,1,220,27,121,223,8,1,7,46,95,50,109,109,121,98,2,2,78,251,237,6,142,247,116,181,8,1,8,46,95,95,98,97,56,52,51,2,1,223,226,156,240,8,1,14,46,95,115,109,95,99,111,110,116,97,105,110,101,114,2,1,14,157,126,213,8,1,10,46,97,45,111,118,101,114,108,97,121,2,1,147,80,65,77,8,1,23,46,97,99,99,101,112,116,95,99,111,111,107,105,101,115,95,119,114,97,112,112,101,114,2,1,70,101,116,87,8,1,7,46,97,99,116,105,118,101,2,1,38,214,82,239,8,1,18,46,97,102,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,163,45,55,14,8,1,12,46,97,108,101,114,116,98,97,110,110,101,114,2,3,103,146,242,165,150,162,249,0,228,136,95,66,8,1,27,46,97,108,109,45,45,105,115,45,109,117,101,104,108,98,97,99,104,101,114,45,99,111,111,107,105,101,2,1,238,97,105,42,8,1,22,46,97,109,103,100,112,114,106,115,45,98,97,114,45,116,101,109,112,108,97,116,101,2,1,242,231,25,163,8,1,14,46,97,110,105,109,97,116,101,95,95,110,111,110,101,2,4,15,26,252,36,36,11,132,185,118,187,0,133,185,223,123,242,8,1,13,46,97,110,110,111,117,110,99,101,109,101,110,116,2,1,185,137,232,56,8,1,29,46,97,112,112,45,109,101,115,115,97,103,101,45,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,2,1,7,242,93,166,8,1,12,46,97,117,116,111,112,114,105,118,97,99,121,2,1,136,3,47,42,8,1,8,46,97,118,103,45,98,97,114,2,1,81,160,165,66,8,1,8,46,98,45,109,111,100,97,108,2,2,152,170,100,183,166,60,144,224,8,1,25,46,98,97,98,45,109,111,100,117,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,242,231,112,109,8,1,16,46,98,97,99,107,100,114,111,112,45,102,105,108,116,101,114,2,1,251,56,144,2,8,1,16,46,98,97,99,107,103,114,111,117,110,100,45,102,97,100,101,2,2,41,34,39,200,102,6,119,19,8,1,8,46,98,97,110,100,101,97,117,2,1,193,199,103,6,8,1,15,46,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,1,183,221,57,69,8,1,11,46,98,97,110,110,101,114,95,97,99,107,2,1,126,21,87,226,8,1,14,46,98,103,45,111,112,97,99,105,116,121,45,53,48,2,2,105,177,42,108,147,78,221,85,8,1,12,46,98,103,45,119,103,45,109,111,100,97,108,2,2,129,52,16,112,212,65,161,237,8,1,6,46,98,103,68,105,109,2,1,196,84,172,152,8,1,10,46,98,108,97,99,107,66,111,100,121,2,2,108,35,55,33,172,102,23,222,8,1,15,46,98,108,111,99,107,45,109,101,115,115,97,103,101,115,2,1,217,226,214,248,8,1,8,46,98,108,117,101,45,98,103,2,2,27,102,182,59,142,8,48,238,8,1,23,46,98,108,117,101,108,105,110,101,45,99,111,110,116,101,110,116,45,112,111,112,117,112,2,1,92,111,103,140,8,1,19,46,98,108,117,114,45,101,102,102,101,107,116,45,99,111,111,107,105,101,2,1,235,144,173,89,8,1,7,46,98,110,67,113,103,80,2,2,86,47,74,241,170,30,225,129,8,1,19,46,98,115,103,45,104,101,97,100,101,114,45,119,97,114,110,105,110,103,2,1,226,183,220,159,8,1,23,46,98,117,108,116,104,97,117,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,208,81,106,111,8,1,7,46,98,118,107,110,86,108,2,1,138,143,131,24,8,1,7,46,98,120,105,118,71,69,2,1,60,54,186,229,8,1,7,46,98,122,84,121,72,90,2,1,170,30,225,129,8,1,8,46,99,45,97,108,101,114,116,2,1,235,48,135,97,8,1,22,46,99,45,100,105,115,99,108,97,105,109,101,114,45,45,100,101,102,97,117,108,116,2,1,252,254,203,180,8,1,9,46,99,45,119,105,110,100,111,119,2,1,214,173,72,197,8,1,9,46,99,97,66,97,110,110,101,114,2,1,237,27,5,213,8,1,3,46,99,98,2,1,15,186,187,199,8,1,10,46,99,99,45,98,97,110,110,101,114,2,1,13,174,128,78,8,1,16,46,99,99,45,105,110,102,111,45,45,99,108,111,115,101,100,2,1,26,167,43,149,8,1,18,46,99,99,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,221,89,126,10,8,1,10,46,99,99,45,115,99,114,101,101,110,2,1,6,83,5,145,8,1,11,46,99,99,95,111,118,101,114,108,97,121,2,1,46,83,51,188,8,1,9,46,99,99,109,45,114,111,111,116,2,3,231,109,8,88,246,218,161,114,248,126,169,199,8,1,17,46,99,101,45,99,111,111,107,105,101,99,111,110,115,101,110,116,2,1,96,149,184,184,8,1,24,46,99,101,95,114,115,99,101,95,111,110,101,111,95,102,105,120,101,100,95,110,111,116,101,2,1,39,121,212,106,8,1,8,46,99,107,79,117,116,101,114,2,1,149,157,209,202,8,1,6,46,99,107,109,115,103,2,1,246,16,236,101,8,1,3,46,99,109,2,1,211,32,119,221,8,1,16,46,99,109,45,119,112,45,99,111,110,116,97,105,110,101,114,2,1,127,123,65,25,8,1,7,46,99,109,79,122,71,78,2,1,26,201,231,88,8,1,7,46,99,109,110,115,116,114,2,1,111,177,222,212,8,1,13,46,99,109,110,115,116,114,45,111,117,116,101,114,2,1,27,114,123,131,8,1,14,46,99,109,112,45,99,111,110,116,97,105,110,101,114,2,1,99,9,63,237,8,1,14,46,99,109,112,95,99,111,110,116,97,105,110,101,114,2,1,228,154,11,168,8,1,32,46,99,111,108,45,49,50,32,62,32,100,105,118,32,62,32,100,105,118,32,62,32,46,99,111,110,116,97,105,110,101,114,2,1,227,211,42,178,8,1,34,46,99,111,109,112,111,110,101,110,116,45,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,99,111,110,115,101,110,116,2,1,27,105,93,111,8,1,19,46,99,111,110,115,101,110,116,45,99,111,111,107,105,101,45,98,111,120,2,1,4,222,41,16,8,1,13,46,99,111,110,115,101,110,116,45,119,114,97,112,2,3,19,129,84,162,65,95,235,187,126,187,111,245,8,1,23,46,99,111,110,115,101,110,116,70,111,114,109,95,95,99,111,110,116,97,105,110,101,114,2,3,0,61,97,178,163,14,144,63,165,109,64,111,8,1,12,46,99,111,110,115,101,110,116,95,98,97,114,2,1,217,174,62,117,8,1,20,46,99,111,110,115,101,110,116,95,98,111,120,95,119,114,97,112,112,101,114,2,1,71,127,108,98,8,1,11,46,99,111,110,115,101,110,116,98,97,114,2,1,148,188,57,9,8,1,24,46,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,99,111,110,115,101,110,116,2,1,143,103,237,204,8,1,23,46,99,111,110,116,97,105,110,101,114,45,102,105,120,101,100,45,99,111,111,107,105,101,2,1,220,244,84,42,8,1,4,46,99,111,111,2,1,254,121,15,117,8,1,8,46,99,111,111,45,99,111,110,2,1,130,235,183,1,8,1,10,46,99,111,111,66,117,98,98,108,101,2,1,27,32,90,49,8,1,14,46,99,111,111,99,107,105,101,95,112,111,108,105,121,2,1,36,231,237,255,8,1,30,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,111,118,101,114,108,97,121,95,95,83,73,88,77,77,2,1,136,150,38,175,8,1,17,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,105,76,229,41,8,1,13,46,99,111,111,107,105,101,45,102,105,110,111,109,2,1,109,119,134,94,8,1,12,46,99,111,111,107,105,101,45,105,110,102,111,2,1,27,119,199,13,8,1,23,46,99,111,111,107,105,101,45,105,110,113,117,105,114,121,45,119,114,97,112,112,101,114,2,2,76,72,70,129,247,94,56,134,8,1,24,46,99,111,111,107,105,101,45,109,97,110,97,103,101,114,95,95,111,118,101,114,108,97,121,2,1,242,231,45,42,8,1,29,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,98,97,99,107,103,114,111,117,110,100,2,1,54,44,80,83,8,1,14,46,99,111,111,107,105,101,45,115,104,97,100,111,119,2,1,181,22,217,135,8,1,19,46,99,111,111,107,105,101,66,97,110,110,101,114,95,115,116,97,114,116,2,1,158,210,119,3,8,1,14,46,99,111,111,107,105,101,67,111,110,116,101,110,116,2,1,21,74,103,27,8,1,23,46,99,111,111,107,105,101,95,111,112,116,95,105,110,45,45,119,114,97,112,112,101,114,2,3,19,94,243,204,162,255,188,42,164,253,251,180,8,1,17,46,99,111,111,107,105,101,102,105,114,115,116,45,114,111,111,116,2,1,215,169,91,35,8,1,19,46,99,111,111,107,105,101,115,45,99,111,110,102,105,114,109,45,98,103,2,1,81,122,159,253,8,1,28,46,99,111,111,107,105,101,115,45,99,111,110,102,105,114,109,45,98,103,45,98,97,99,107,100,114,111,112,2,1,81,122,159,253,8,1,11,46,99,111,114,101,45,109,111,100,97,108,2,1,200,79,100,232,8,1,12,46,99,115,109,95,119,114,97,112,112,101,114,2,1,4,214,13,135,8,1,22,46,99,115,115,45,49,105,101,110,111,121,56,46,101,49,103,105,50,97,97,108,50,2,1,59,242,243,242,8,1,18,46,99,115,115,45,49,116,98,118,104,114,110,46,106,115,115,56,54,2,1,226,249,254,134,8,1,11,46,99,115,115,45,106,121,97,114,55,121,2,1,177,94,239,52,8,1,6,46,99,119,95,111,118,2,2,9,81,194,163,31,244,213,3,8,1,8,46,100,45,98,108,111,99,107,2,1,144,20,131,189,8,1,7,46,100,83,87,113,102,107,2,1,162,252,118,75,8,1,5,46,100,97,114,107,2,1,5,166,97,73,8,1,13,46,100,97,114,107,101,110,45,108,97,121,101,114,2,8,0,246,124,116,35,65,149,31,121,222,247,166,142,22,0,196,168,4,241,19,203,251,141,251,215,232,232,14,241,19,191,102,8,1,13,46,100,97,116,97,45,99,111,110,115,101,110,116,2,1,30,98,119,104,8,1,32,46,100,97,116,97,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,45,99,111,110,116,97,105,110,101,114,2,1,178,141,242,12,8,1,16,46,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,2,1,247,224,231,118,8,1,9,46,100,97,116,97,112,114,105,118,2,1,164,160,209,48,8,1,15,46,100,97,116,97,112,114,111,116,101,99,116,105,111,110,2,3,65,219,104,115,69,246,5,205,130,98,6,164,8,1,12,46,100,97,116,101,110,115,99,104,117,116,122,2,1,214,223,95,100,8,1,9,46,100,98,98,45,103,100,112,114,2,4,15,80,169,222,181,167,125,118,236,111,103,128,242,231,156,15,8,1,13,46,100,100,45,99,108,45,119,105,110,100,111,119,2,1,92,84,157,206,8,1,11,46,100,102,109,95,99,111,111,107,105,101,2,1,127,240,2,146,8,1,17,46,100,105,97,108,111,103,45,99,111,110,116,97,105,110,101,114,2,1,11,241,34,165,8,1,16,46,100,105,97,108,111,103,45,110,111,45,99,108,111,115,101,2,1,253,212,143,84,8,1,7,46,100,105,109,109,101,114,2,1,246,12,176,107,8,1,28,46,100,105,115,97,98,108,101,95,112,97,103,101,95,98,97,99,107,103,114,111,117,110,100,95,100,105,118,2,1,218,230,38,54,8,1,21,46,100,105,115,99,108,97,105,109,101,114,45,99,111,109,112,111,110,101,110,116,2,1,146,63,218,104,8,1,5,46,100,105,118,98,2,1,31,113,222,243,8,1,12,46,100,114,97,119,101,114,45,99,111,111,107,2,1,44,117,81,36,8,1,6,46,100,115,103,118,111,2,1,69,241,206,198,8,1,10,46,100,118,99,111,111,107,105,101,115,2,1,157,138,104,68,8,1,16,46,100,119,108,105,103,104,116,98,111,120,45,119,114,97,112,2,4,110,25,31,198,170,71,3,124,171,88,93,21,217,172,50,223,8,1,9,46,101,51,118,52,119,108,105,48,2,1,137,108,61,205,8,1,20,46,101,97,115,121,78,111,116,105,102,105,99,97,116,105,111,110,66,99,107,2,1,196,84,172,152,8,1,9,46,101,99,101,55,103,109,119,50,2,1,245,80,177,65,8,1,10,46,101,112,112,45,109,111,100,97,108,2,1,64,73,31,205,8,1,9,46,101,117,99,48,114,113,50,52,2,1,165,105,92,52,8,1,12,46,101,117,102,95,111,118,101,114,108,97,121,2,1,104,196,58,73,8,1,5,46,102,51,99,99,2,1,181,129,253,243,8,1,7,46,102,65,97,108,72,81,2,1,146,213,208,87,8,1,7,46,102,84,119,103,106,115,2,1,237,89,133,183,8,1,11,46,102,97,100,101,46,109,111,100,97,108,2,1,245,239,119,126,8,1,10,46,102,99,95,98,97,110,110,101,114,2,1,146,195,49,204,8,1,17,46,102,99,99,45,99,111,111,107,105,101,45,109,111,100,97,108,2,1,99,138,218,126,8,1,10,46,102,105,114,115,116,108,105,110,101,2,1,149,195,203,122,8,1,9,46,102,108,111,97,116,105,110,103,2,1,237,184,209,83,8,1,13,46,102,111,111,116,101,114,45,108,101,103,97,108,2,1,174,102,240,58,8,1,11,46,102,111,114,109,45,100,115,103,118,111,2,1,28,85,156,60,8,1,13,46,102,114,45,99,45,109,101,115,115,97,103,101,2,1,198,219,25,113,8,1,13,46,102,114,115,95,95,111,118,101,114,108,97,121,2,1,75,161,9,1,8,1,7,46,103,65,114,122,85,104,2,1,85,110,233,94,8,1,7,46,103,73,82,102,66,78,2,2,86,47,74,241,170,30,225,129,8,1,7,46,103,84,72,121,121,82,2,1,93,171,88,41,8,1,7,46,103,90,84,76,117,74,2,1,206,21,253,188,8,1,11,46,103,97,116,101,119,97,121,66,97,114,2,1,177,169,171,100,8,1,17,46,103,97,116,101,119,97,121,67,111,110,116,97,105,110,101,114,2,1,0,87,0,241,8,1,19,46,103,97,116,101,119,97,121,87,105,110,100,111,119,83,104,97,100,101,2,1,0,87,0,241,8,1,14,46,103,101,100,101,112,105,97,114,45,105,110,102,111,2,2,105,172,234,160,147,50,148,44,8,1,13,46,103,101,119,101,114,98,101,45,105,110,102,111,2,1,32,32,11,95,8,1,7,46,103,104,111,118,105,72,2,1,138,91,253,43,8,1,10,46,103,108,97,115,115,112,97,110,101,2,1,25,182,69,65,8,1,18,46,103,108,111,98,97,108,45,98,97,99,107,103,114,111,117,110,100,2,1,63,146,125,246,8,1,27,46,103,111,111,100,104,111,111,100,45,99,111,109,112,111,110,101,110,116,115,95,95,110,65,78,66,85,2,1,127,55,92,201,8,1,20,46,103,111,118,103,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,94,8,192,166,8,1,8,46,103,122,108,68,65,45,68,2,1,170,30,225,129,8,1,10,46,104,99,45,110,111,116,105,99,101,2,2,115,119,142,150,255,232,39,42,8,1,14,46,104,101,97,100,101,114,111,118,101,114,108,97,121,2,1,184,70,26,212,8,1,8,46,104,105,110,119,101,105,115,2,1,122,242,74,113,8,1,27,46,104,121,108,111,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,103,101,110,101,114,97,108,2,1,173,133,86,68,8,1,7,46,105,85,89,122,99,115,2,1,60,54,186,229,8,1,18,46,105,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,7,242,93,166,8,1,20,46,105,110,50,45,109,111,100,97,108,95,95,98,108,97,99,107,98,111,120,2,10,7,219,48,4,25,182,227,231,27,102,92,40,81,69,210,191,105,205,59,206,116,124,164,32,182,121,167,160,239,151,4,168,242,231,151,64,252,194,21,166,8,1,30,46,105,110,100,101,120,45,109,111,100,117,108,101,45,45,98,97,99,107,100,114,111,112,45,45,51,68,88,53,118,2,1,234,20,12,47,8,1,29,46,105,110,100,101,120,45,109,111,100,117,108,101,45,45,119,114,97,112,112,101,114,45,45,53,80,104,113,70,2,1,234,20,12,47,8,1,16,46,105,110,102,111,98,97,114,45,119,114,97,112,112,101,114,2,20,3,69,159,204,8,44,242,101,14,91,175,66,20,87,120,206,27,171,80,197,29,127,123,81,70,112,132,132,86,48,61,117,115,90,50,245,127,167,200,196,127,188,251,30,133,137,109,169,163,151,226,180,179,136,250,138,199,216,58,200,220,46,17,107,222,94,148,92,234,97,97,105,237,60,211,15,240,89,60,48,8,1,32,46,105,110,115,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,99,111,110,116,97,105,110,101,114,2,1,255,61,81,105,8,1,12,46,105,110,115,45,110,111,116,105,99,101,115,2,1,228,58,76,75,8,1,10,46,105,115,45,97,99,116,105,118,101,2,1,116,166,101,175,8,1,8,46,105,119,45,99,99,45,119,2,1,115,25,186,167,8,1,7,46,105,119,87,101,85,80,2,1,65,49,248,77,8,1,27,46,105,122,105,84,111,97,115,116,45,119,114,97,112,112,101,114,45,116,111,112,67,101,110,116,101,114,2,1,73,204,217,116,8,1,7,46,106,89,99,99,88,99,2,1,135,64,70,150,8,1,34,46,106,109,103,45,103,111,111,103,108,101,109,97,112,115,45,100,115,103,118,111,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,24,236,83,151,8,1,10,46,106,115,45,45,109,111,100,97,108,2,1,10,184,29,33,8,1,12,46,106,115,45,45,111,118,101,114,108,97,121,2,1,204,145,52,33,8,1,18,46,106,115,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,2,1,40,115,70,126,8,1,28,46,106,115,45,102,108,97,115,104,45,109,101,115,115,97,103,101,115,45,99,111,110,116,97,105,110,101,114,2,1,177,66,240,200,8,1,27,46,106,115,45,102,108,97,115,104,95,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,2,1,27,117,35,240,8,1,11,46,106,115,45,112,100,45,109,97,105,110,2,1,116,156,68,234,8,1,7,46,106,115,115,49,55,56,2,1,103,64,81,188,8,1,36,46,106,116,99,45,99,111,109,112,111,110,101,110,116,45,106,116,99,45,99,111,111,107,105,101,45,109,97,110,97,103,101,109,101,110,116,2,1,178,125,83,31,8,1,17,46,107,105,99,107,45,107,99,109,45,111,118,101,114,108,97,121,2,1,247,108,210,198,8,1,18,46,107,105,99,107,45,107,99,109,45,115,101,116,116,105,110,103,115,2,1,247,108,210,198,8,1,19,46,107,105,116,45,115,116,105,99,107,121,45,112,114,105,118,97,99,121,2,1,58,151,201,146,8,1,18,46,107,115,100,45,103,100,112,114,45,115,101,116,116,105,110,103,115,2,1,149,191,154,22,8,1,14,46,108,45,110,101,119,115,45,104,101,97,100,101,114,2,1,150,245,101,11,8,1,12,46,108,101,103,97,108,65,100,118,105,99,101,2,2,6,95,234,233,28,44,194,96,8,1,9,46,108,105,103,104,116,98,111,120,2,1,121,222,247,166,8,1,25,46,108,105,103,104,116,98,111,120,45,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,3,35,65,149,31,215,232,232,14,241,19,191,102,8,1,19,46,108,105,109,122,95,99,111,111,107,105,101,67,111,110,115,101,110,116,2,1,226,86,70,97,8,1,7,46,108,108,101,77,65,100,2,1,145,3,31,241,8,1,7,46,108,111,97,100,101,114,2,1,166,60,250,171,8,1,11,46,108,115,97,45,100,105,97,108,111,103,2,1,115,111,191,38,8,1,17,46,109,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,28,14,170,227,8,1,12,46,109,45,99,111,111,107,105,101,98,97,114,2,1,147,80,65,77,8,1,15,46,109,97,105,110,45,109,111,100,97,108,45,100,105,118,2,1,124,126,220,7,8,1,10,46,109,97,105,110,115,116,105,99,107,2,1,138,53,20,105,8,1,20,46,109,99,100,45,100,105,97,108,111,103,45,98,97,99,107,100,114,111,112,2,1,23,57,92,189,8,1,17,46,109,99,101,82,111,119,45,45,114,101,108,97,116,105,118,101,2,1,242,230,255,70,8,1,14,46,109,100,107,45,99,111,111,107,105,101,98,97,114,2,14,45,101,39,240,115,189,138,58,120,117,228,188,123,8,114,18,124,50,192,242,144,26,143,87,158,213,73,207,204,126,150,59,231,172,233,212,236,112,153,73,241,225,218,211,245,181,9,219,248,76,202,56,248,161,111,67,8,1,8,46,109,101,108,100,117,110,103,2,1,105,135,200,53,8,1,24,46,109,101,115,115,97,103,101,98,111,97,114,100,95,95,99,111,110,116,97,105,110,101,114,2,1,251,12,16,107,8,1,10,46,109,102,112,45,114,101,97,100,121,2,1,136,201,13,3,8,1,15,46,109,109,99,109,45,99,111,110,116,97,105,110,101,114,2,2,144,60,242,191,242,231,107,45,8,1,17,46,109,110,100,45,99,111,111,107,105,101,45,109,111,100,97,108,2,2,14,211,138,243,202,201,155,73,8,1,7,46,109,111,100,45,99,114,2,1,251,228,156,133,8,1,18,46,109,111,100,97,108,45,45,98,97,99,107,103,114,111,117,110,100,2,1,20,166,213,66,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,249,107,142,72,8,1,11,46,109,111,100,97,108,45,109,97,115,107,2,2,187,93,197,20,207,57,210,231,8,1,14,46,109,111,100,97,108,45,119,114,97,112,112,101,114,2,2,117,171,165,202,160,157,122,172,8,1,15,46,109,111,100,97,108,95,95,111,118,101,114,108,97,121,2,2,171,106,162,91,248,180,45,55,8,1,14,46,109,111,100,97,108,99,111,109,112,108,101,116,101,2,1,69,62,152,238,8,1,15,46,109,111,100,97,108,115,45,111,118,101,114,108,97,121,2,1,43,146,233,58,8,1,15,46,109,111,100,97,108,115,45,119,114,97,112,112,101,114,2,1,87,217,239,97,8,1,13,46,109,111,100,97,108,119,114,97,112,112,101,114,2,1,19,156,35,41,8,1,14,46,109,112,112,45,99,111,110,116,97,105,110,101,114,2,1,216,237,42,249,8,1,34,46,109,112,112,45,99,111,110,116,97,105,110,101,114,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,45,98,97,114,2,1,106,255,125,9,8,1,12,46,109,112,112,45,105,115,45,111,112,101,110,2,1,225,163,160,255,8,1,11,46,109,115,103,45,98,97,110,110,101,114,2,1,71,68,184,152,8,1,11,46,110,97,118,45,99,111,111,107,105,101,2,1,207,160,245,88,8,1,16,46,110,103,99,111,111,107,105,101,119,97,114,110,105,110,103,2,1,42,77,133,247,8,1,5,46,110,111,116,101,2,3,162,109,34,71,235,234,60,230,245,242,35,71,8,1,21,46,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,2,1,7,47,142,131,8,1,17,46,110,111,116,105,102,105,99,97,116,105,111,110,65,114,101,97,2,2,172,19,249,245,175,108,245,14,8,1,22,46,110,111,116,105,102,105,99,97,116,105,111,110,115,45,109,97,110,97,103,101,114,2,1,61,127,134,148,8,1,49,46,110,111,116,105,102,105,99,97,116,105,111,110,115,45,109,111,100,117,108,101,95,110,111,116,105,102,105,99,97,116,105,111,110,67,111,110,116,97,105,110,101,114,95,51,122,67,84,78,2,1,127,224,35,68,8,1,13,46,110,112,99,111,95,111,118,101,114,108,97,121,2,2,193,99,124,130,246,31,23,102,8,1,8,46,110,112,116,98,99,99,109,2,1,120,125,127,209,8,1,14,46,110,119,95,99,111,111,107,105,101,45,98,97,114,2,1,198,34,77,187,8,1,10,46,111,102,102,99,97,110,118,97,115,2,2,153,102,93,173,190,166,218,36,8,1,30,46,111,111,66,45,98,108,97,99,107,45,111,118,101,114,108,97,121,45,109,97,99,104,109,105,99,104,119,101,103,2,1,82,23,199,141,8,1,15,46,111,112,116,73,110,67,111,110,116,97,105,110,101,114,2,1,65,234,191,71,8,1,18,46,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,2,1,71,15,68,217,8,1,16,46,111,118,101,114,108,97,121,45,99,111,110,116,101,110,116,2,1,253,62,240,86,8,1,17,46,111,118,101,114,108,97,121,95,95,119,114,97,112,112,101,114,2,1,203,127,232,49,8,1,14,46,111,118,101,114,108,97,121,95,98,117,100,100,121,2,1,145,61,210,16,8,1,10,46,112,97,103,101,45,108,111,99,107,2,1,108,29,175,60,8,1,13,46,112,97,103,101,45,111,118,101,114,108,97,121,2,2,25,254,156,1,44,172,247,195,8,1,12,46,112,97,103,101,79,118,101,114,108,97,121,2,1,164,138,79,233,8,1,17,46,112,97,103,101,108,111,97,100,105,110,103,45,109,97,115,107,2,1,0,192,211,79,8,1,4,46,112,99,98,2,3,87,84,102,4,138,86,62,5,225,126,67,167,8,1,24,46,112,101,114,115,111,110,97,108,105,122,97,116,105,111,110,45,114,101,113,117,101,115,116,2,1,33,226,175,126,8,1,22,46,112,105,120,101,108,109,97,116,101,45,98,105,103,45,119,114,97,112,112,101,114,2,1,164,16,234,127,8,1,19,46,112,111,112,111,118,101,114,45,98,97,99,107,103,114,111,117,110,100,2,1,66,110,146,247,8,1,13,46,112,111,112,117,112,45,98,97,110,110,101,114,2,1,54,215,155,57,8,1,19,46,112,111,112,117,112,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,156,87,224,66,8,1,13,46,112,111,112,117,112,45,119,105,110,100,111,119,2,1,117,253,144,68,8,1,13,46,112,111,112,117,112,79,118,101,114,108,97,121,2,1,21,74,103,27,8,1,26,46,112,111,115,102,46,114,101,97,99,116,45,111,110,99,108,105,99,107,111,117,116,115,105,100,101,2,1,209,251,201,148,8,1,18,46,112,114,105,118,97,99,121,45,99,111,110,116,97,105,110,101,114,2,1,242,231,163,158,8,1,16,46,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,2,1,205,104,54,36,8,1,20,46,112,114,105,118,97,99,121,67,111,110,116,114,111,108,66,97,100,103,101,2,1,175,108,245,14,8,1,15,46,112,114,105,118,97,99,121,99,111,111,107,105,101,65,2,1,179,248,215,25,8,1,15,46,112,114,105,118,97,99,121,111,118,101,114,108,97,121,2,1,248,108,64,166,8,1,18,46,112,120,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,2,1,147,11,147,170,8,1,7,46,113,52,117,95,99,99,2,2,174,236,193,74,224,224,245,13,8,1,21,46,114,101,103,105,111,110,45,97,110,110,111,117,110,99,101,109,101,110,116,115,2,1,215,40,238,230,8,1,13,46,114,101,118,101,97,108,45,109,111,100,97,108,2,2,97,201,65,138,205,41,19,190,8,1,16,46,114,101,118,101,97,108,45,109,111,100,97,108,45,98,103,2,1,205,41,19,190,8,1,15,46,114,101,118,101,97,108,45,111,118,101,114,108,97,121,2,2,3,98,206,168,78,156,94,223,8,1,30,46,114,111,117,110,100,101,100,45,120,108,46,115,104,97,100,111,119,45,108,103,46,98,103,45,119,104,105,116,101,2,1,237,184,105,32,8,1,9,46,114,115,116,98,111,120,101,115,2,1,232,142,239,173,8,1,12,46,114,117,108,101,95,97,115,115,101,112,116,2,1,199,98,180,71,8,1,16,46,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,13,6,9,98,8,1,25,46,115,98,107,45,99,111,111,107,105,101,104,105,110,116,45,99,111,110,116,97,105,110,101,114,2,1,47,55,251,220,8,1,71,46,115,101,116,45,97,108,108,45,99,111,109,112,111,110,101,110,116,115,45,116,111,45,100,105,115,112,108,97,121,45,110,111,110,101,45,97,110,100,45,117,115,101,45,116,104,105,115,45,100,105,118,45,116,111,45,99,114,101,97,116,101,45,97,45,115,121,109,98,111,108,2,1,149,72,181,203,8,1,10,46,115,101,116,99,111,111,107,105,101,2,1,198,52,49,77,8,1,9,46,115,102,45,109,111,100,97,108,2,1,186,11,82,193,8,1,16,46,115,103,45,99,107,115,45,98,97,99,107,100,114,111,112,2,1,156,83,3,244,8,1,12,46,115,103,45,99,107,115,45,105,110,102,111,2,1,156,83,3,244,8,1,31,46,115,103,45,99,111,111,107,105,101,45,111,112,116,105,110,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,1,122,122,108,202,8,1,13,46,115,105,116,101,45,98,108,111,99,107,101,114,2,1,50,69,250,9,8,1,20,46,115,105,116,101,45,104,101,97,100,101,114,45,111,118,101,114,108,97,121,2,2,92,194,100,79,238,157,3,208,8,1,8,46,115,112,105,110,110,101,114,2,1,217,207,185,180,8,1,19,46,115,115,116,115,95,108,105,103,104,116,98,111,120,95,100,97,114,107,2,1,114,63,36,175,8,1,22,46,115,115,116,115,95,108,105,103,104,116,98,111,120,95,119,114,97,112,112,101,114,2,1,114,63,36,175,8,1,26,46,115,117,112,101,114,45,103,116,97,103,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,6,35,246,220,8,1,14,46,115,118,101,108,116,101,45,115,97,99,57,101,51,2,1,210,202,21,215,8,1,14,46,115,118,101,108,116,101,45,117,111,55,111,108,120,2,1,21,74,103,27,8,1,16,46,115,119,105,110,103,101,114,45,99,111,110,115,101,110,116,2,2,27,117,88,0,65,153,245,6,8,1,25,46,115,121,103,110,97,108,50,52,45,103,100,112,114,45,109,111,100,97,108,45,119,114,97,112,2,1,105,37,33,208,8,1,18,46,116,104,101,109,101,45,99,111,111,107,105,101,45,104,105,110,116,2,1,10,118,123,64,8,1,18,46,116,115,45,104,101,97,100,101,114,45,109,101,115,115,97,103,101,2,1,8,160,73,234,8,1,13,46,116,120,45,98,119,115,99,111,111,107,105,101,2,1,207,33,232,129,8,1,16,46,117,45,102,108,97,115,104,45,109,101,115,115,97,103,101,2,1,135,86,1,16,8,1,16,46,117,105,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,225,133,161,182,8,1,11,46,117,105,45,112,110,111,116,105,102,121,2,4,2,39,30,245,39,175,154,165,124,33,13,179,144,69,48,119,8,1,25,46,117,105,45,112,110,111,116,105,102,121,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,4,2,39,30,245,39,175,154,165,124,33,13,179,144,69,48,119,8,1,18,46,117,105,45,119,105,100,103,101,116,45,111,118,101,114,108,97,121,2,1,72,62,123,97,8,1,11,46,117,112,97,95,99,111,111,107,105,101,2,1,81,31,82,234,8,1,24,46,117,115,101,114,45,110,111,116,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,2,2,245,237,43,97,247,221,192,157,8,1,16,46,117,115,101,114,99,101,110,116,114,105,99,115,45,98,103,2,1,99,9,63,237,8,1,15,46,117,115,101,114,110,111,116,105,99,101,95,112,111,112,2,1,90,187,39,105,8,1,17,46,117,118,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,218,31,207,144,8,1,15,46,118,45,98,111,116,116,111,109,45,115,104,101,101,116,2,1,177,80,53,53,8,1,18,46,118,45,100,105,97,108,111,103,95,95,99,111,110,116,101,110,116,2,1,225,17,159,206,8,1,14,46,118,99,77,111,100,97,108,84,97,114,103,101,116,2,1,200,40,21,51,8,1,14,46,118,109,45,45,99,111,110,116,97,105,110,101,114,2,1,166,62,34,58,8,1,6,46,119,66,102,102,77,2,1,1,223,4,72,8,1,5,46,119,97,108,108,2,2,15,253,92,157,127,207,198,109,8,1,14,46,119,97,114,110,105,110,103,45,112,111,112,117,112,2,1,9,239,173,172,8,1,21,46,119,97,116,115,111,110,45,99,111,111,107,105,101,45,102,111,111,116,101,114,2,1,92,147,212,238,8,1,18,46,119,105,100,103,101,116,45,69,121,101,67,97,116,99,104,101,114,2,1,7,185,166,190,8,1,43,46,119,105,100,103,101,116,45,69,121,101,67,97,116,99,104,101,114,45,45,100,114,111,112,122,111,110,101,45,45,45,112,114,101,115,101,116,45,102,105,120,101,100,2,1,215,57,195,174,8,1,14,46,119,112,116,45,99,99,45,98,97,110,110,101,114,2,1,63,13,160,109,8,1,6,46,119,116,45,99,98,2,1,152,176,242,224,8,1,11,46,119,119,116,51,45,109,111,100,97,108,2,1,109,131,225,196,8,1,6,46,122,45,49,48,48,2,1,34,57,40,192,8,1,21,46,122,45,49,48,48,46,106,117,115,116,105,102,121,45,99,101,110,116,101,114,2,2,95,101,95,68,140,26,180,155,8,1,11,46,122,45,49,48,48,46,112,121,45,54,2,1,95,81,16,119,8,1,24,46,122,45,49,48,48,46,112,121,45,54,46,109,97,120,45,104,45,115,99,114,101,101,110,2,1,209,213,80,40,0,1,17,46,122,45,92,91,49,48,48,48,92,93,46,102,105,120,101,100,2,1,237,184,105,32,0,1,18,91,99,108,97,115,115,42,61,34,45,98,97,110,110,101,114,34,93,2,1,242,231,23,85,0,1,18,91,100,97,116,97,45,115,115,114,45,99,111,110,115,101,110,116,93,2,1,196,36,29,89,0,1,32,91,100,97,116,97,45,116,101,115,116,105,100,61,34,117,99,45,97,112,112,45,99,111,110,116,97,105,110,101,114,34,93,2,1,79,23,56,24,0,1,15,91,114,111,108,101,61,34,100,105,97,108,111,103,34,93,2,1,199,128,174,111,0,1,13,99,111,110,115,101,110,116,45,108,97,121,101,114,2,1,248,143,22,192,0,1,74,100,105,97,108,111,103,91,115,116,121,108,101,61,34,98,111,114,100,101,114,45,99,111,108,111,114,58,108,105,103,104,116,103,114,97,121,59,98,111,114,100,101,114,45,119,105,100,116,104,58,50,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,54,112,120,59,34,93,2,1,218,217,11,91,0,1,28,100,105,118,46,109,100,92,58,116,119,45,112,114,111,115,101,45,120,108,46,116,119,45,112,114,111,115,101,2,1,173,133,86,68,0,1,32,100,105,118,46,116,119,45,112,114,111,115,101,32,62,32,46,104,121,100,114,97,116,101,100,32,62,32,97,115,105,100,101,2,1,173,133,86,68,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,80,111,112,117,112,67,111,111,107,105,101,115,45,34,93,2,2,5,216,176,112,145,250,67,147,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,66,97,110,110,101,114,95,34,93,2,1,3,164,161,171,0,1,40,100,105,118,91,100,97,116,97,45,109,111,100,117,108,101,61,34,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,100,105,97,108,111,103,34,93,2,1,4,214,13,135,0,1,24,100,105,118,91,105,100,42,61,34,95,109,111,100,97,108,95,111,117,116,101,114,95,34,93,2,1,191,184,223,189,0,1,33,100,105,118,91,105,100,94,61,34,112,112,109,115,95,99,109,95,99,111,110,115,101,110,116,95,112,111,112,117,112,95,34,93,2,1,139,4,103,84,0,1,43,100,105,118,91,115,116,121,108,101,42,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,112,97,100,100,105,110,103,45,116,111,112,58,34,93,2,1,30,60,20,65,0,1,128,0,0,0,150,100,105,118,91,115,116,121,108,101,42,61,34,116,111,112,58,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,32,104,101,105,103,104,116,58,32,49,48,48,37,59,32,119,105,100,116,104,58,49,48,48,37,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,54,41,59,32,122,45,105,110,100,101,120,58,32,49,48,48,48,59,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,34,93,2,1,158,210,119,3,0,1,88,100,105,118,91,115,116,121,108,101,42,61,34,119,105,100,116,104,58,32,49,48,48,37,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,52,55,52,55,52,55,59,32,112,97,100,100,105,110,103,45,116,111,112,58,32,48,112,120,59,32,109,97,114,103,105,110,45,116,111,112,58,32,48,112,120,59,34,93,2,1,108,70,187,116,0,1,21,102,97,110,112,97,103,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,253,62,240,86,0,1,10,102,111,114,109,32,62,32,100,105,118,2,1,190,19,47,24,0,1,14,112,108,97,121,101,114,45,111,118,101,114,108,97,121,2,1,253,62,240,86,0,1,16,115,110,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,89,34,192,29,0,1,17,115,112,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,246,202,206,85,0,1,16,115,119,45,99,111,111,107,105,101,109,101,115,115,97,103,101,2,1,207,116,146,58,0,1,17,115,119,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,4,35,14,156,23,40,129,193,18,54,201,105,33,57,181,74,40,16,1,4,35,67,107,67,2,3,182,131,79,206,212,172,142,61,254,127,172,202,16,1,19,35,67,111,111,107,105,101,67,111,110,115,101,110,116,80,111,112,117,112,2,1,215,74,252,48,16,1,11,35,67,111,111,107,105,101,115,108,97,119,2,1,4,167,69,161,16,1,23,35,77,111,100,97,108,67,111,107,107,105,101,80,114,105,118,97,99,121,72,111,109,101,2,1,89,227,215,8,0,1,16,35,92,35,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,68,59,190,169,16,1,14,35,97,108,101,114,116,45,109,101,110,116,105,111,110,2,1,7,20,233,102,16,1,17,35,97,108,101,114,116,45,115,108,105,100,101,45,100,111,119,110,2,1,239,24,125,41,16,1,12,35,97,108,101,114,116,99,111,111,107,105,101,2,1,23,50,119,107,16,1,14,35,97,109,45,99,111,111,107,105,101,45,98,97,114,2,1,191,191,117,207,16,1,27,35,97,114,114,105,101,114,101,45,112,108,97,110,45,100,101,45,108,97,45,102,101,110,101,116,114,101,2,1,153,215,252,67,16,1,19,35,98,97,99,107,103,114,111,117,110,100,45,115,101,99,116,105,111,110,2,1,228,219,188,202,16,1,7,35,98,97,103,100,112,114,2,1,68,78,120,26,16,1,20,35,98,97,110,100,101,97,117,67,111,110,115,101,110,116,101,109,101,110,116,2,1,40,191,222,221,16,1,16,35,98,97,110,100,101,97,117,95,99,111,110,115,101,110,116,2,1,30,166,7,235,16,1,8,35,98,111,120,95,99,111,111,2,1,79,217,103,84,16,1,8,35,99,97,116,102,105,115,104,2,1,4,164,223,76,16,1,7,35,99,99,45,98,97,114,2,1,113,212,43,253,16,1,11,35,99,100,95,119,114,97,112,112,101,114,2,1,238,93,184,95,16,1,13,35,99,104,101,99,107,66,114,111,119,115,101,114,2,2,37,86,98,1,140,11,133,75,16,1,20,35,99,105,114,105,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,22,51,143,160,16,1,13,35,99,109,112,67,111,110,116,97,105,110,101,114,2,1,22,207,95,236,16,1,26,35,99,111,110,115,101,110,116,77,97,110,97,103,101,109,101,110,116,80,108,97,116,102,111,114,109,2,1,48,36,173,173,16,1,15,35,99,111,111,107,105,101,45,109,101,110,116,105,111,110,2,1,242,4,24,170,16,1,20,35,99,111,111,107,105,101,66,97,114,45,99,111,110,116,97,105,110,101,114,2,1,5,36,86,175,16,1,19,35,99,111,111,107,105,101,67,111,110,99,101,114,110,80,97,110,101,108,2,4,27,157,249,141,185,47,247,128,196,239,105,219,237,173,190,158,16,1,19,35,99,111,111,107,105,101,77,97,110,97,103,101,77,101,82,111,111,116,2,1,228,12,250,172,16,1,15,35,99,111,111,116,114,97,45,111,118,101,114,108,97,121,2,3,7,160,160,143,111,232,150,199,141,64,77,60,16,1,13,35,99,111,111,116,114,97,45,112,111,112,117,112,2,3,7,160,160,143,111,232,150,199,141,64,77,60,16,1,14,35,100,97,115,116,114,97,45,119,105,100,103,101,116,2,1,202,151,150,62,16,1,14,35,100,105,115,99,108,97,105,109,101,114,67,116,110,2,1,118,124,149,113,16,1,9,35,100,105,115,99,114,101,116,111,2,1,96,239,195,121,16,1,10,35,100,105,118,95,99,99,95,99,99,2,1,144,85,199,17,16,1,27,35,100,105,118,95,116,104,95,99,111,111,107,105,101,115,95,105,110,102,111,114,109,97,116,105,118,97,2,1,110,18,113,14,16,1,21,35,100,111,114,105,97,95,98,97,110,110,101,114,95,99,111,110,116,101,110,116,2,1,205,13,170,88,16,1,5,35,101,122,99,99,2,1,89,237,172,14,16,1,8,35,102,101,110,101,116,114,101,2,1,153,215,252,67,16,1,6,35,102,101,118,97,100,2,1,165,174,151,128,16,1,12,35,103,100,112,114,99,111,110,116,101,110,116,2,1,216,44,172,18,16,1,29,35,105,100,80,111,112,117,112,87,65,82,101,99,117,101,105,108,67,111,110,115,101,110,116,101,109,101,110,116,2,1,162,44,83,36,16,1,8,35,105,100,95,97,99,99,111,2,1,7,184,4,75,16,1,11,35,105,110,116,114,111,45,114,103,112,100,2,1,210,98,110,43,16,1,16,35,105,115,109,45,99,111,110,115,101,110,116,45,98,111,120,2,1,25,224,30,124,16,1,7,35,106,71,114,111,119,108,2,1,239,177,204,138,16,1,13,35,108,101,103,97,108,67,111,111,107,105,101,115,2,1,10,85,176,167,16,1,12,35,108,101,103,97,108,110,111,116,105,99,101,2,1,158,177,80,21,16,1,30,35,109,97,110,99,101,114,97,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,2,1,226,168,75,221,16,1,25,35,109,97,110,103,101,114,45,100,101,115,45,109,105,110,105,115,45,103,97,116,101,97,117,120,2,1,112,165,138,184,16,1,7,35,109,97,115,113,117,101,2,1,79,217,103,84,16,1,8,35,109,100,108,45,97,100,115,2,1,203,94,158,147,16,1,7,35,109,102,99,111,107,49,2,1,74,155,134,166,16,1,13,35,109,105,45,99,111,110,116,97,105,110,101,114,2,6,51,171,132,142,58,10,40,38,63,113,70,176,129,34,226,93,141,62,111,24,223,214,55,222,16,1,9,35,109,105,97,109,95,100,105,118,2,1,82,191,88,61,16,1,17,35,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,2,1,57,115,65,136,16,1,14,35,109,111,100,97,108,45,99,111,110,115,101,110,116,2,1,60,200,49,122,16,1,22,35,109,111,100,97,108,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,2,1,181,129,164,132,16,1,14,35,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,57,115,65,136,16,1,6,35,110,103,45,99,99,2,1,61,85,184,67,16,1,10,35,110,111,114,109,97,116,105,118,97,2,1,57,201,86,164,16,1,13,35,110,111,116,105,102,105,99,97,116,105,111,110,2,1,28,189,184,77,16,1,14,35,111,99,119,95,99,111,110,116,101,110,101,117,114,2,1,194,130,11,239,16,1,17,35,112,97,103,101,67,111,110,115,101,110,116,101,109,101,110,116,2,1,40,191,222,221,16,1,16,35,112,97,110,101,108,45,117,115,101,114,45,105,110,102,111,2,1,167,54,158,105,16,1,20,35,112,104,97,114,109,97,98,105,115,99,117,105,116,45,112,111,112,105,110,2,1,127,63,13,65,16,1,11,35,112,109,45,111,118,101,114,108,97,121,2,1,96,236,144,91,16,1,11,35,112,111,112,105,110,108,97,121,101,114,2,1,8,194,8,147,16,1,16,35,112,114,105,118,97,99,121,45,109,97,110,97,103,101,114,2,8,21,1,139,237,21,51,70,18,29,5,48,4,61,143,116,226,96,236,144,91,175,140,173,194,219,239,65,251,229,87,108,49,16,1,22,35,112,114,105,118,97,99,121,45,109,97,110,97,103,101,114,45,112,111,112,105,110,2,1,41,208,31,171,16,1,16,35,112,114,105,118,97,99,121,45,111,118,101,114,108,97,121,2,1,88,192,250,105,16,1,11,35,112,115,45,99,111,110,115,101,110,116,2,1,140,89,151,64,16,1,10,35,114,103,112,100,45,102,111,114,109,2,1,136,108,162,40,16,1,9,35,114,103,112,100,109,97,115,107,2,1,207,46,178,153,16,1,16,35,115,112,45,99,111,110,115,101,110,116,77,111,100,97,108,2,1,9,4,149,7,16,1,11,35,115,112,111,112,117,112,67,111,110,116,2,1,160,173,94,215,16,1,18,35,116,97,114,116,101,97,117,99,105,116,114,111,110,82,111,111,116,2,1,85,158,60,199,16,1,20,35,116,114,97,99,107,105,110,103,98,97,110,110,101,114,112,111,112,105,110,2,1,67,130,246,166,16,1,18,35,117,115,101,114,67,111,110,115,101,110,116,80,111,108,105,99,121,2,1,121,144,180,32,16,1,14,35,118,97,108,105,100,45,99,111,111,107,105,101,115,2,1,128,246,94,32,8,1,37,46,67,111,111,107,105,101,87,97,114,110,105,110,103,45,109,111,100,117,108,101,45,45,99,111,111,107,105,101,115,45,45,50,66,84,84,87,2,1,241,99,159,241,8,1,29,46,78,97,118,105,103,97,116,105,111,110,84,114,97,99,107,101,114,95,95,99,111,110,116,97,105,110,101,114,2,1,216,54,108,212,8,1,13,46,78,111,116,105,102,105,99,97,116,105,111,110,2,1,146,81,197,59,8,1,5,46,82,103,112,100,2,1,136,5,242,120,8,1,16,46,84,114,97,99,107,105,110,103,73,110,102,111,66,111,120,2,1,145,222,66,238,8,1,46,46,86,111,116,101,68,105,115,99,108,97,105,109,101,114,95,118,111,116,101,68,105,115,99,108,97,105,109,101,114,67,111,110,116,97,105,110,101,114,95,95,50,55,113,103,108,2,1,204,158,137,120,8,1,21,46,88,106,53,52,115,89,86,67,114,112,81,56,56,105,116,87,77,103,97,80,2,1,3,249,122,26,8,1,17,46,95,49,49,86,83,56,32,62,32,46,95,50,111,98,121,89,2,1,224,179,133,43,8,1,13,46,97,108,101,114,116,45,99,111,111,107,105,101,2,2,122,62,199,48,142,222,221,66,8,1,9,46,97,110,116,115,45,50,48,56,2,1,198,168,64,0,8,1,7,46,98,66,88,112,115,90,2,1,114,2,101,170,8,1,7,46,98,76,79,82,102,107,2,1,161,55,12,172,8,1,17,46,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,252,246,251,104,8,1,16,46,98,103,45,103,114,97,121,45,57,48,48,46,112,45,53,2,1,233,65,210,16,8,1,16,46,98,108,111,99,107,45,102,115,45,99,111,111,107,105,101,2,1,59,70,47,147,8,1,14,46,98,108,111,99,107,95,99,111,111,107,105,101,115,2,1,204,113,116,147,8,1,12,46,98,114,97,118,101,95,112,111,112,117,112,2,1,167,105,244,1,8,1,7,46,99,89,76,83,103,69,2,1,164,7,154,215,8,1,10,46,99,108,45,98,97,110,110,101,114,2,2,20,166,252,212,165,114,44,225,8,1,10,46,99,109,112,45,112,111,112,105,110,2,1,44,224,240,54,8,1,12,46,99,109,112,45,119,114,97,112,112,101,114,2,1,172,30,192,66,8,1,9,46,99,111,103,110,105,116,111,50,2,1,58,203,31,115,8,1,19,46,99,111,110,115,101,110,116,45,98,108,111,99,107,45,115,105,116,101,2,1,38,163,204,2,8,1,22,46,99,111,110,115,101,110,116,45,109,111,100,97,108,45,99,111,110,116,101,110,116,2,1,62,31,88,194,8,1,13,46,99,111,110,115,101,110,116,95,105,110,102,111,2,1,145,28,154,168,8,1,14,46,99,111,110,116,97,105,110,101,114,45,48,45,53,2,1,108,189,41,64,8,1,23,46,99,111,110,116,97,105,110,101,114,45,102,105,120,101,100,45,99,111,111,107,105,101,2,1,49,147,186,207,8,1,21,46,99,111,110,116,97,105,110,101,114,95,112,114,105,118,95,115,116,97,116,101,2,1,132,123,97,83,8,1,16,46,99,111,111,107,98,97,114,45,111,118,101,114,108,97,121,2,1,252,37,145,160,8,1,47,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,109,112,111,110,101,110,116,95,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,95,95,50,90,99,55,98,2,1,179,2,123,228,8,1,25,46,99,111,111,107,105,101,45,116,111,111,108,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,26,236,179,35,8,1,12,46,99,111,111,107,105,101,45,119,97,108,108,2,1,89,226,253,0,8,1,19,46,99,111,111,107,105,101,115,45,109,97,110,97,103,101,109,101,110,116,2,1,115,146,138,252,8,1,15,46,99,115,115,45,50,111,100,50,111,110,113,69,77,88,2,1,255,50,170,161,8,1,11,46,99,115,115,45,99,103,120,109,121,56,2,1,141,46,247,125,8,1,11,46,99,115,115,45,117,117,113,99,55,98,2,1,150,218,114,253,8,1,13,46,99,116,119,45,98,111,116,116,111,109,45,52,2,1,96,236,78,16,8,1,7,46,100,105,97,108,111,103,2,1,170,238,238,102,8,1,27,46,100,105,106,105,116,68,105,97,108,111,103,85,110,100,101,114,108,97,121,87,114,97,112,112,101,114,2,1,254,164,6,166,8,1,7,46,100,105,109,109,101,114,2,1,182,131,67,237,8,1,15,46,100,105,115,99,108,97,105,109,101,114,95,98,111,120,2,1,1,208,177,227,8,1,6,46,101,82,110,104,73,2,1,52,188,71,111,8,1,7,46,101,120,97,114,73,113,2,1,205,61,166,23,8,1,12,46,101,120,116,45,101,108,45,109,97,115,107,2,1,164,218,206,39,8,1,9,46,102,49,110,48,99,116,103,57,2,1,95,230,100,207,8,1,19,46,102,97,100,101,45,105,110,45,101,110,116,101,114,45,100,111,110,101,2,1,75,114,244,102,8,1,19,46,102,97,110,99,121,98,111,120,45,99,111,110,116,97,105,110,101,114,2,2,3,109,112,251,246,74,29,33,8,1,17,46,102,97,110,99,121,98,111,120,45,111,118,101,114,108,97,121,2,2,39,130,67,241,82,121,188,205,8,1,14,46,102,97,110,99,121,98,111,120,45,119,114,97,112,2,2,39,130,67,241,82,121,188,205,8,1,4,46,102,99,107,2,1,90,102,250,165,8,1,18,46,102,105,114,115,116,45,118,105,115,105,116,45,97,108,101,114,116,2,1,194,103,113,247,8,1,16,46,102,108,111,97,116,105,110,103,45,98,111,116,116,111,109,2,1,49,91,86,155,8,1,86,46,102,114,111,110,116,95,119,101,98,95,97,112,112,95,109,97,105,110,95,109,101,110,117,95,102,114,111,110,116,45,119,101,98,45,97,112,112,45,109,97,105,110,45,109,101,110,117,45,99,111,109,112,111,110,101,110,116,95,102,114,111,110,116,95,115,104,111,119,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,2,1,162,57,75,45,8,1,15,46,103,45,97,108,101,114,116,45,99,111,111,107,105,101,2,1,108,72,131,138,8,1,7,46,103,67,75,65,117,99,2,1,223,71,125,250,8,1,27,46,103,100,112,114,95,99,111,110,115,101,110,116,95,119,105,100,103,101,116,95,95,50,83,116,88,107,2,1,241,127,44,52,8,1,27,46,103,111,111,100,104,111,111,100,45,99,111,109,112,111,110,101,110,116,115,95,95,50,80,75,103,97,2,1,150,6,80,153,8,1,12,46,104,101,97,100,101,114,73,110,102,111,115,2,1,200,226,72,92,8,1,7,46,104,103,102,118,67,87,2,1,164,7,154,215,8,1,24,46,104,105,100,100,101,110,45,115,109,46,104,105,100,100,101,110,45,109,100,46,114,111,119,2,1,235,176,228,30,8,1,11,46,104,105,100,101,95,99,108,105,99,107,2,1,182,131,108,114,8,1,7,46,105,71,101,102,120,109,2,1,210,147,206,147,8,1,9,46,105,110,102,111,45,98,97,110,2,1,0,38,176,190,8,1,15,46,105,110,102,111,45,115,97,110,105,116,97,105,114,101,2,1,96,236,78,70,8,1,12,46,106,97,110,117,115,98,97,110,110,101,114,2,1,212,197,58,21,8,1,7,46,106,105,110,76,121,103,2,1,7,147,68,165,8,1,15,46,106,115,45,71,108,111,98,97,108,80,111,112,105,110,2,1,140,111,174,105,8,1,9,46,106,115,45,111,116,115,100,107,2,1,6,178,251,153,8,1,7,46,106,115,115,49,50,53,2,1,169,91,39,252,8,1,15,46,108,97,121,111,117,116,45,99,111,111,107,105,101,115,2,1,130,167,155,11,8,1,23,46,108,97,121,111,117,116,45,99,111,111,107,105,101,115,95,95,110,111,116,105,99,101,2,1,130,167,155,11,8,1,10,46,109,45,111,118,101,114,108,97,121,2,1,168,66,37,190,8,1,5,46,109,97,115,107,2,1,4,122,204,12,8,1,13,46,109,100,99,45,115,110,97,99,107,98,97,114,2,1,96,54,230,17,8,1,23,46,109,105,99,114,111,109,111,100,97,108,45,115,108,105,100,101,46,109,111,100,97,108,2,1,208,79,84,115,8,1,14,46,109,111,100,97,108,45,99,111,110,116,101,110,116,2,1,62,66,122,180,8,1,14,46,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,181,129,164,132,8,1,5,46,110,111,116,97,2,1,96,242,74,175,8,1,12,46,110,113,45,114,103,112,100,45,98,97,114,2,1,234,8,49,47,8,1,22,46,111,114,101,106,105,109,101,45,78,111,116,105,99,101,79,118,101,114,108,97,121,2,1,57,53,56,248,8,1,12,46,111,118,101,114,108,97,121,95,97,120,97,2,1,204,113,116,147,8,1,10,46,112,101,114,102,77,111,100,97,108,2,1,218,93,176,107,8,1,6,46,112,111,112,117,112,2,1,130,49,71,157,8,1,15,46,112,111,112,117,112,45,45,99,111,111,107,105,101,115,2,1,220,67,32,48,8,1,8,46,112,114,105,118,97,99,121,2,1,31,86,126,97,8,1,3,46,112,118,2,1,61,158,102,229,8,1,21,46,114,101,97,99,116,45,111,110,99,108,105,99,107,111,117,116,115,105,100,101,2,1,136,170,29,185,8,1,16,46,114,103,112,100,45,45,99,111,110,116,97,105,110,101,114,2,1,182,26,187,132,8,1,11,46,114,103,112,100,45,109,111,100,97,108,2,1,61,96,223,210,8,1,13,46,114,103,112,100,45,111,118,101,114,108,97,121,2,1,147,85,37,18,8,1,18,46,115,45,99,111,111,107,105,101,95,95,109,111,100,97,108,57,50,2,1,212,252,120,46,8,1,9,46,115,49,100,50,54,99,107,53,2,1,43,61,75,100,8,1,10,46,115,99,45,98,102,104,118,68,119,2,1,250,197,76,205,8,1,18,46,115,99,114,111,108,108,45,102,105,120,95,95,105,110,110,101,114,2,1,163,12,243,203,8,1,19,46,115,100,115,45,109,45,99,111,111,107,105,101,98,97,110,110,101,114,2,1,0,106,70,13,8,1,35,46,115,103,112,98,45,112,111,112,117,112,45,100,105,97,108,111,103,45,109,97,105,110,45,100,105,118,45,119,114,97,112,112,101,114,2,1,182,131,102,214,8,1,19,46,115,103,112,98,45,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,182,131,102,214,8,1,14,46,115,116,105,99,107,121,45,102,111,111,116,101,114,2,1,98,254,195,245,8,1,26,46,115,116,121,108,101,115,95,80,111,112,105,110,66,97,110,110,101,114,95,95,56,119,97,88,53,2,1,105,231,8,238,8,1,26,46,116,97,114,116,101,97,117,99,105,116,114,111,110,45,109,97,103,105,99,45,98,108,111,99,107,2,1,2,209,133,241,8,1,12,46,116,108,45,98,111,116,116,111,109,45,48,2,1,178,11,90,100,8,1,9,46,116,114,97,110,115,98,111,120,2,1,1,208,177,227,8,1,15,46,117,115,101,114,110,111,116,105,99,101,95,112,111,112,2,1,157,231,206,77,8,1,8,46,119,101,108,99,111,109,101,2,1,169,238,80,165,8,1,5,46,122,45,53,48,2,1,143,146,204,116,0,1,39,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,122,45,105,110,100,101,120,58,32,49,48,59,34,93,2,1,142,193,51,180,0,1,48,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,32,116,111,112,58,32,48,112,120,59,34,93,2,1,160,100,82,141,0,1,26,97,112,112,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,86,145,218,114,0,1,19,97,112,112,45,112,111,112,45,117,112,45,116,114,97,99,107,105,110,103,2,1,107,79,52,72,0,1,28,100,105,118,91,99,108,97,115,115,94,61,34,67,111,110,115,101,110,116,66,97,110,110,101,114,95,34,93,2,1,183,226,61,247,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,103,100,112,114,95,99,111,110,115,101,110,116,95,34,93,2,1,77,108,90,250,0,1,51,100,105,118,91,115,116,121,108,101,42,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,53,41,59,34,93,2,1,175,255,55,220,0,1,41,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,59,34,93,2,1,182,36,132,101,0,1,54,100,105,118,91,115,116,121,108,101,94,61,34,118,105,115,105,98,105,108,105,116,121,58,32,118,105,115,105,98,108,101,59,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,34,93,2,1,194,47,240,25,0,1,10,112,101,45,99,111,111,107,105,101,115,2,2,181,132,145,1,214,20,151,11,0,1,10,112,112,110,45,99,111,111,107,105,101,2,2,14,19,192,189,161,211,190,231,16,1,12,35,105,110,102,111,99,111,111,107,105,101,115,2,1,128,235,124,3,16,1,12,35,105,110,102,111,45,98,111,116,116,111,109,2,2,25,159,175,243,161,159,146,113,8,1,47,46,65,108,108,111,119,67,111,111,107,105,101,115,68,105,115,99,108,97,105,109,101,114,95,99,67,111,110,116,97,105,110,101,114,65,99,116,105,118,101,95,95,50,121,107,87,114,2,1,127,18,150,237,8,1,22,46,67,111,111,107,105,101,95,99,111,110,115,101,110,116,95,95,71,72,56,111,70,2,1,231,208,91,203,8,1,51,46,80,114,105,118,97,99,121,80,111,112,117,112,115,116,121,108,101,100,95,95,80,114,105,118,97,99,121,80,111,112,117,112,67,111,110,116,97,105,110,101,114,45,117,107,48,55,114,113,45,48,2,1,175,222,28,200,8,1,18,46,99,111,111,107,105,101,45,100,101,115,99,108,97,105,109,101,114,2,1,24,88,194,77,0,1,13,97,112,112,45,109,116,45,99,111,111,107,105,101,2,1,246,27,95,234,16,1,7,35,97,45,45,98,97,114,2,1,159,151,218,146,16,1,13,35,97,99,99,101,112,116,95,116,101,114,109,115,2,1,159,151,225,254,16,1,9,35,98,103,95,112,111,112,117,112,2,1,166,51,82,60,16,1,17,35,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,2,1,70,234,21,34,16,1,19,35,103,100,112,114,45,97,99,99,101,112,116,45,99,111,111,107,105,101,2,1,16,240,100,101,8,1,6,46,72,56,52,83,48,2,1,16,224,126,242,8,1,6,46,78,78,118,118,84,2,1,131,248,250,83,8,1,19,46,80,97,103,101,95,95,67,111,111,107,105,101,115,80,111,112,117,112,2,1,16,240,42,126,8,1,14,46,95,114,111,111,116,95,49,109,101,106,100,95,50,2,2,70,72,108,92,222,248,225,114,8,1,26,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,95,97,108,108,95,95,51,116,68,110,111,2,1,112,102,236,183,8,1,19,46,97,112,112,45,99,111,111,107,105,101,115,95,95,112,111,112,117,112,2,1,195,46,174,253,8,1,8,46,98,108,111,99,107,101,114,2,1,5,115,213,93,8,1,14,46,99,111,110,102,105,114,109,45,112,97,110,101,108,2,1,163,209,161,100,8,1,18,46,99,111,111,107,105,101,45,97,108,101,114,116,45,115,104,111,119,2,1,5,115,213,93,8,1,19,46,109,45,99,111,111,107,105,101,115,45,105,110,102,111,114,109,101,114,2,1,131,248,255,249,8,1,25,46,109,111,100,97,108,45,100,101,108,105,118,101,114,121,45,100,97,116,97,45,100,97,116,97,2,2,119,233,120,140,162,28,141,127,8,1,27,46,109,111,100,97,108,45,100,101,108,105,118,101,114,121,45,100,97,116,97,45,100,97,116,97,45,119,2,2,119,233,120,140,162,28,141,127,8,1,18,46,110,111,116,105,99,101,45,99,107,45,119,114,97,112,112,101,114,2,1,42,216,72,210,8,1,23,46,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,2,1,234,86,85,86,8,1,14,46,112,111,108,105,99,121,45,102,111,111,116,101,114,2,1,164,153,178,196,8,1,16,46,112,111,112,111,118,101,114,45,119,114,97,112,112,101,114,2,1,159,151,101,173,8,1,14,46,112,114,105,118,97,99,121,95,98,108,111,99,107,2,2,10,99,68,5,112,158,192,117,8,1,22,46,112,114,105,118,97,116,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,2,1,221,77,255,180,8,1,31,46,115,116,121,108,101,115,95,97,103,114,101,101,109,101,110,116,87,114,97,112,112,101,114,95,95,51,86,86,116,102,2,1,112,13,217,201,8,1,22,46,115,116,121,108,101,115,95,119,114,97,112,112,101,114,95,95,89,65,52,67,82,2,1,114,67,128,177,8,1,8,46,119,97,114,110,105,110,103,2,1,159,151,112,220,0,1,25,91,99,108,97,115,115,94,61,34,97,99,99,101,112,116,45,99,111,111,107,105,101,115,34,93,2,1,163,239,135,186,16,1,10,35,112,111,108,105,99,121,68,105,118,2,2,120,155,13,30,208,196,187,19,8,1,13,46,66,70,48,72,84,78,67,45,74,99,45,98,2,1,173,227,16,172,8,1,16,46,99,111,110,115,101,110,116,95,119,114,97,112,112,101,114,2,1,111,184,206,220,8,1,8,46,99,112,45,97,114,101,97,2,1,35,219,79,211,8,1,11,46,109,97,105,110,45,109,111,100,97,108,2,1,207,8,60,69,8,1,12,46,115,99,45,52,111,117,112,54,57,45,49,2,1,244,16,199,202,16,1,12,35,98,97,114,45,109,101,115,115,97,103,101,2,1,210,199,25,35,16,1,14,35,112,111,112,45,117,112,45,112,111,108,105,99,121,2,1,22,166,89,152,16,1,8,35,112,114,105,118,97,99,121,2,1,116,138,125,53,16,1,13,35,112,114,105,118,97,116,101,95,105,110,102,111,2,1,19,156,119,97,16,1,12,35,117,115,108,112,111,108,122,118,97,110,101,2,1,234,179,173,32,8,1,16,46,65,99,99,101,112,116,67,111,110,100,105,116,105,111,110,2,1,47,195,201,167,8,1,19,46,71,100,112,114,95,108,97,121,111,117,116,95,95,119,45,70,115,101,2,1,68,23,33,189,8,1,19,46,98,111,116,116,111,109,45,102,114,101,101,122,101,100,45,98,97,114,2,6,46,74,19,22,83,7,122,5,113,216,217,78,192,128,160,245,213,249,26,197,226,157,128,154,8,1,23,46,99,45,119,101,98,115,105,116,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,2,161,160,201,210,183,233,55,162,8,1,14,46,104,101,97,100,101,114,45,110,111,116,105,99,101,2,1,240,111,177,122,8,1,13,46,105,110,102,111,45,109,101,115,115,97,103,101,2,1,119,63,178,185,8,1,11,46,106,115,45,99,111,110,115,101,110,116,2,2,72,73,246,157,220,75,92,206,8,1,14,46,109,112,112,45,99,111,110,116,97,105,110,101,114,2,1,226,144,157,83,8,1,8,46,111,118,101,114,108,97,121,2,1,116,138,125,53,8,1,13,46,112,111,112,117,112,45,112,111,108,105,99,121,2,2,219,194,23,94,252,216,133,53,0,1,57,100,105,118,91,115,116,121,108,101,94,61,34,99,111,108,111,114,58,32,114,103,98,40,53,49,44,32,53,49,44,32,53,49,41,59,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,34,93,2,1,13,26,166,29,16,1,6,35,65,108,108,111,119,2,3,20,228,45,54,117,109,186,110,250,68,115,205,16,1,13,35,80,114,105,118,97,99,121,65,108,101,114,116,2,1,227,118,81,38,16,1,17,35,97,99,99,101,112,116,68,105,115,99,108,97,105,109,101,114,2,1,234,186,185,92,16,1,19,35,97,110,110,111,117,110,99,101,109,101,110,116,72,101,97,100,101,114,2,1,162,152,194,29,16,1,10,35,99,107,95,102,111,111,116,101,114,2,1,25,163,219,24,16,1,8,35,99,109,99,56,48,48,55,2,5,2,172,179,94,9,45,23,122,44,20,37,145,217,237,85,157,237,123,108,7,16,1,8,35,99,111,118,105,100,49,57,2,6,3,230,228,8,51,153,158,192,93,157,198,244,115,72,164,155,129,28,100,127,170,87,8,203,16,1,24,35,106,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,2,1,80,225,241,198,16,1,13,35,109,101,101,114,107,97,116,45,119,114,97,112,2,1,219,15,115,112,16,1,15,35,112,111,108,105,99,121,45,119,97,114,110,105,110,103,2,2,136,32,235,108,175,171,232,236,16,1,13,35,112,114,105,118,97,99,121,80,97,110,101,108,2,1,250,67,237,142,16,1,25,35,114,111,116,95,99,116,114,49,95,98,111,100,95,98,108,107,54,95,99,117,115,116,111,109,2,1,19,129,155,119,16,1,13,35,115,104,101,110,103,109,105,110,103,84,105,112,2,1,100,177,74,109,16,1,6,35,115,112,45,99,99,2,1,127,84,158,134,8,1,7,46,95,49,71,67,76,76,2,1,129,45,31,154,8,1,7,46,97,100,118,98,111,120,2,4,41,5,142,78,78,34,248,230,82,16,206,160,219,153,120,186,8,1,39,46,97,114,99,111,45,111,118,101,114,108,97,121,46,97,114,99,111,45,111,118,101,114,108,97,121,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,81,15,216,41,8,1,20,46,98,97,110,110,101,114,45,102,105,120,101,100,45,98,111,116,116,111,109,2,1,138,107,23,25,8,1,15,46,98,103,45,98,108,97,99,107,46,102,105,120,101,100,2,1,151,91,181,144,8,1,7,46,99,66,97,106,110,86,2,1,123,57,76,229,8,1,7,46,99,83,65,120,88,122,2,1,203,204,214,143,8,1,6,46,99,95,49,50,56,2,1,131,61,89,243,8,1,6,46,99,104,112,70,76,2,1,68,32,218,158,8,1,11,46,99,111,109,112,108,105,97,110,99,101,2,1,111,189,72,177,8,1,15,46,99,111,110,115,101,110,116,45,110,111,116,105,99,101,2,1,114,128,182,109,8,1,22,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,100,101,115,107,116,111,112,2,1,173,143,178,179,8,1,15,46,99,111,111,107,105,101,45,99,111,110,99,101,110,116,2,1,43,216,221,14,8,1,12,46,99,111,111,107,105,101,45,102,108,101,120,2,1,121,77,181,108,8,1,12,46,99,111,111,107,105,101,45,116,105,112,115,2,1,132,250,180,115,8,1,28,46,99,111,111,107,105,101,115,45,112,101,114,109,105,115,115,105,111,110,95,50,107,69,121,84,86,71,98,2,1,6,77,88,183,8,1,22,46,99,111,111,107,105,101,115,65,103,114,101,101,67,111,110,116,97,105,110,101,114,2,1,94,32,119,133,8,1,21,46,99,111,112,121,114,105,103,104,116,45,98,111,116,116,111,109,45,110,97,118,2,1,21,249,51,72,8,1,7,46,102,72,112,102,121,110,2,1,120,37,2,27,8,1,12,46,102,105,120,101,100,98,111,116,116,111,109,2,1,103,222,209,213,8,1,20,46,102,111,111,116,101,114,45,102,108,111,97,116,105,110,103,45,116,97,98,2,1,130,4,148,30,8,1,14,46,102,111,111,116,101,114,80,114,105,118,97,99,121,2,1,102,71,116,21,8,1,20,46,103,108,111,98,97,108,45,97,108,101,114,116,45,98,97,110,110,101,114,2,1,80,225,241,198,8,1,7,46,104,88,90,122,66,80,2,1,18,80,117,33,8,1,8,46,104,101,95,99,111,111,107,2,1,89,120,76,229,8,1,13,46,104,101,97,100,101,114,45,115,104,101,101,116,2,1,240,65,122,30,8,1,7,46,104,108,110,68,79,73,2,1,203,204,214,143,8,1,7,46,105,87,117,68,106,112,2,1,126,62,176,208,8,1,26,46,105,110,100,101,120,95,95,99,111,111,107,105,101,45,98,97,114,95,95,95,50,115,80,76,98,2,1,42,68,136,182,8,1,7,46,106,82,83,81,80,72,2,1,177,152,58,185,8,1,7,46,106,108,121,76,100,83,2,1,251,157,4,44,8,1,10,46,106,115,45,100,105,97,108,111,103,2,1,198,56,132,24,8,1,11,46,106,115,95,99,111,111,107,66,111,120,2,1,126,32,185,142,8,1,7,46,106,118,53,76,97,81,2,1,3,133,37,167,8,1,14,46,109,111,100,97,108,45,112,114,105,118,97,99,121,2,1,43,207,196,35,8,1,10,46,110,111,116,105,102,121,98,97,114,2,1,144,146,160,206,8,1,7,46,112,111,108,105,99,121,2,1,118,26,167,38,8,1,13,46,112,114,105,118,97,99,121,45,97,114,101,97,2,1,148,181,65,236,8,1,12,46,112,114,105,118,97,99,121,45,98,111,120,2,1,42,132,80,123,8,1,13,46,112,114,105,118,97,99,121,45,119,114,97,112,2,1,122,215,109,89,8,1,12,46,112,114,105,118,97,99,121,65,114,101,97,2,1,114,65,110,216,8,1,12,46,112,114,105,118,97,99,121,68,101,115,99,2,1,110,237,37,115,8,1,14,46,112,114,105,118,97,99,121,80,111,108,105,99,121,2,1,254,91,79,23,8,1,12,46,112,114,105,118,97,99,121,95,98,111,120,2,1,110,251,210,59,8,1,15,46,112,114,105,118,97,99,121,102,111,114,115,105,116,101,2,1,87,163,255,153,8,1,25,46,115,112,97,99,101,45,109,111,98,105,108,101,45,105,110,115,105,100,101,45,115,105,100,101,2,1,74,40,31,191,8,1,32,46,115,116,121,108,101,45,55,52,54,100,56,54,99,52,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,54,236,35,177,8,1,12,46,116,118,98,45,99,111,111,107,105,101,115,2,1,38,157,73,36,16,1,4,35,74,80,79,2,1,103,101,182,204,16,1,8,35,98,108,111,107,68,105,118,2,1,237,215,57,240,16,1,7,35,102,111,111,116,101,114,2,1,183,37,58,62,16,1,9,35,107,117,107,105,106,105,109,97,2,1,103,80,165,141,16,1,14,35,109,121,103,100,112,114,80,111,112,117,112,72,82,2,1,154,201,2,173,16,1,6,35,110,103,45,99,99,2,1,245,55,138,137,16,1,13,35,112,97,103,101,45,100,105,115,97,98,108,101,2,4,65,188,0,214,101,145,172,5,203,24,56,89,240,239,96,158,16,1,13,35,112,97,103,101,65,108,101,114,116,66,111,120,2,1,238,94,108,179,16,1,19,35,112,114,105,118,97,99,121,80,111,108,105,99,121,77,111,100,97,108,2,1,15,33,191,248,16,1,24,35,115,117,98,115,99,114,105,112,116,105,111,110,80,111,112,117,112,66,111,116,116,111,109,2,1,222,194,169,132,16,1,7,35,115,119,103,100,112,114,2,1,16,106,92,210,8,1,17,46,83,105,116,101,65,110,110,111,117,110,99,101,109,101,110,116,2,1,40,110,106,62,8,1,10,46,99,99,98,95,95,101,100,105,116,2,1,49,182,219,190,8,1,10,46,99,100,45,109,111,100,117,108,101,2,1,59,142,209,252,8,1,15,46,99,100,45,109,111,100,117,108,101,45,109,97,105,110,2,2,182,175,74,230,207,81,43,93,8,1,11,46,99,115,115,45,56,103,54,120,51,108,2,1,241,173,127,83,8,1,14,46,100,105,97,108,111,103,45,119,105,100,103,101,116,2,2,112,94,154,0,238,162,60,95,8,1,23,46,103,100,112,114,45,99,111,110,116,97,105,110,101,114,45,119,114,97,112,112,101,114,2,1,64,214,79,118,8,1,6,46,107,117,107,105,112,2,1,241,6,144,114,8,1,17,46,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,2,1,111,47,60,189,8,1,7,46,111,45,100,97,116,97,2,1,69,42,254,97,8,1,7,46,112,111,112,117,112,50,2,1,238,139,74,181,8,1,9,46,112,111,112,117,112,95,104,114,2,1,237,178,100,124,8,1,11,46,112,114,105,118,97,116,110,111,115,116,2,1,80,133,100,224,0,1,40,100,105,118,91,115,116,121,108,101,94,61,34,122,45,105,110,100,101,120,58,57,57,57,57,59,100,105,115,112,108,97,121,58,98,108,111,99,107,34,93,2,1,200,231,59,189,16,1,8,35,66,111,120,49,48,48,50,2,1,230,210,139,136,16,1,14,35,82,101,115,115,67,111,111,107,105,101,66,111,120,2,1,238,142,90,1,16,1,11,35,99,50,50,111,118,101,114,108,97,121,2,1,231,246,77,187,16,1,6,35,99,95,108,97,119,2,2,100,29,180,109,250,54,210,169,16,1,10,35,99,99,45,45,109,97,105,110,50,2,1,26,202,32,134,16,1,6,35,99,99,109,110,103,2,1,11,8,89,252,16,1,4,35,99,107,98,2,1,116,33,51,35,16,1,19,35,99,111,111,107,105,101,115,45,98,97,114,45,98,111,116,116,111,109,2,1,116,28,108,9,16,1,19,35,99,111,111,107,105,101,115,45,98,97,114,45,100,105,97,108,111,103,2,1,201,116,11,196,16,1,18,35,99,111,111,107,105,101,115,45,108,112,45,98,97,110,110,101,114,2,1,37,198,214,155,16,1,13,35,99,111,111,107,105,101,115,77,111,100,97,108,2,1,28,1,99,86,16,1,6,35,99,115,95,98,120,2,2,29,51,188,7,36,152,166,241,16,1,11,35,99,115,95,98,120,95,101,110,118,108,2,1,36,152,166,241,16,1,10,35,99,115,95,115,116,114,105,112,101,2,1,60,35,68,66,16,1,67,35,99,116,108,48,48,95,101,119,112,122,49,95,109,97,105,110,84,101,109,112,108,97,116,101,67,116,114,108,95,102,111,111,116,101,114,95,70,111,114,109,67,111,111,107,105,101,115,77,97,110,97,103,101,114,49,95,112,110,67,109,78,97,118,66,97,114,2,1,78,234,151,72,16,1,16,35,99,122,110,105,99,45,99,111,111,107,105,101,98,97,114,2,1,28,163,129,44,16,1,14,35,100,105,115,97,98,108,101,45,99,108,105,99,107,2,1,16,145,127,78,16,1,7,35,101,117,45,102,99,107,2,1,231,246,76,23,16,1,7,35,101,117,95,99,107,115,2,1,244,16,46,16,16,1,18,35,105,100,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,31,12,186,179,16,1,13,35,106,115,45,99,99,45,98,97,110,110,101,114,2,1,176,20,123,238,16,1,6,35,108,105,115,116,97,2,1,159,150,243,11,16,1,9,35,109,121,65,108,101,114,116,50,2,1,156,184,55,94,16,1,17,35,109,121,67,111,110,115,101,110,116,67,111,111,107,105,101,115,2,1,106,126,211,71,16,1,26,35,110,97,115,116,97,118,101,110,105,45,115,111,117,107,114,111,109,105,45,98,97,110,110,101,114,2,1,116,39,21,15,16,1,24,35,111,112,101,110,95,112,114,101,102,101,114,101,110,99,101,115,95,99,101,110,116,101,114,2,1,227,94,215,97,16,1,68,35,112,95,108,116,95,87,101,98,80,97,114,116,90,111,110,101,49,51,95,90,111,110,101,77,97,105,110,95,85,115,101,114,67,111,110,116,114,111,108,53,95,117,115,101,114,67,111,110,116,114,111,108,69,108,101,109,95,112,110,108,67,111,111,107,105,101,115,2,1,201,58,101,149,16,1,15,35,112,111,112,117,112,67,111,110,116,97,99,116,66,71,2,1,238,142,90,1,16,1,5,35,112,112,95,98,2,1,12,8,111,216,16,1,34,35,115,110,105,112,112,101,116,45,99,111,111,107,105,101,83,101,116,116,105,110,103,115,45,99,111,111,107,105,101,73,110,102,111,2,1,18,65,63,158,16,1,38,35,115,110,105,112,112,101,116,45,99,111,111,107,105,101,115,67,111,110,115,101,110,116,45,99,111,111,107,105,101,115,99,111,110,115,101,110,116,2,1,173,142,52,209,16,1,8,35,115,111,117,104,108,97,115,2,1,134,152,247,121,16,1,13,35,115,116,105,99,107,121,70,111,111,116,101,114,2,1,102,159,53,219,16,1,5,35,119,114,45,99,2,8,6,16,189,181,32,116,196,126,131,200,95,19,140,83,139,71,146,133,203,89,171,236,27,154,188,119,72,240,200,118,86,185,8,1,12,46,65,112,112,45,99,111,111,107,105,101,115,2,10,3,58,185,118,7,26,87,219,24,73,139,219,36,226,177,220,102,34,116,146,114,119,53,4,120,251,158,175,144,45,52,54,167,53,101,21,237,90,111,99,8,1,35,46,67,111,110,115,101,110,116,115,116,121,108,101,100,95,95,66,97,110,110,101,114,45,115,99,45,49,99,115,101,109,52,113,45,49,2,1,32,116,89,95,8,1,7,46,70,111,111,116,101,114,2,1,70,11,159,113,8,1,10,46,71,68,80,82,80,111,112,117,112,2,1,160,178,27,52,8,1,26,46,77,111,100,97,108,95,95,109,111,100,97,108,45,115,104,111,119,110,95,95,82,105,76,51,121,2,1,197,24,231,60,8,1,16,46,80,111,112,117,112,66,97,99,107,103,114,111,117,110,100,2,1,160,178,27,52,8,1,9,46,95,49,104,121,119,101,116,102,2,1,116,33,41,147,8,1,13,46,98,45,99,111,111,107,105,101,45,98,97,114,2,1,231,246,78,184,8,1,9,46,98,97,114,45,73,110,102,111,2,1,73,93,226,167,8,1,8,46,98,108,111,99,107,85,73,2,3,84,136,1,183,108,107,187,162,227,217,45,102,8,1,16,46,98,108,111,99,107,101,114,45,99,111,111,107,105,101,115,2,1,32,116,185,12,8,1,21,46,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,2,1,219,1,34,67,8,1,8,46,99,45,108,97,121,101,114,2,1,29,134,64,152,8,1,16,46,99,45,109,111,100,97,108,45,99,111,111,107,105,101,115,2,1,126,216,48,164,8,1,8,46,99,95,109,111,100,97,108,2,1,14,88,145,90,8,1,3,46,99,98,2,1,192,195,211,246,8,1,15,46,99,99,45,98,97,110,110,101,114,45,119,114,97,112,2,1,94,236,46,114,8,1,11,46,99,99,45,116,114,105,103,103,101,114,2,1,202,96,81,245,8,1,4,46,99,111,107,2,1,111,208,125,23,8,1,14,46,99,111,109,109,111,110,80,114,105,118,97,99,121,2,1,49,62,168,39,8,1,12,46,99,111,110,115,101,116,45,119,114,97,112,2,1,133,212,188,79,8,1,16,46,99,111,110,116,97,105,110,101,114,95,95,98,111,100,121,2,1,200,224,169,99,8,1,19,46,99,111,111,107,105,101,45,102,97,100,101,45,119,105,110,100,111,119,2,1,200,157,58,33,8,1,15,46,99,111,111,107,105,101,115,45,99,97,110,118,97,115,2,5,19,124,217,81,38,177,105,201,150,80,154,68,200,230,9,154,220,205,115,91,8,1,23,46,99,111,111,107,105,101,115,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,2,1,129,120,116,10,8,1,20,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,115,104,111,114,116,2,1,221,124,46,31,8,1,18,46,99,111,111,107,105,101,115,95,112,97,110,101,108,95,119,114,112,2,1,108,91,71,118,8,1,3,46,99,115,2,2,127,160,152,244,151,170,20,86,8,1,11,46,99,115,115,45,112,118,57,57,55,99,2,1,16,82,65,232,8,1,16,46,101,108,101,99,116,114,111,45,111,118,101,114,108,97,121,2,1,101,244,122,198,8,1,23,46,101,115,45,99,111,111,107,105,101,115,45,98,97,114,45,119,114,97,112,112,101,114,2,1,92,103,126,139,8,1,4,46,101,117,99,2,2,124,84,185,37,247,99,88,26,8,1,15,46,102,105,120,101,100,45,99,101,110,116,101,114,101,100,2,1,45,180,9,52,8,1,6,46,102,108,97,115,104,2,1,159,151,227,105,8,1,12,46,102,108,111,97,116,70,111,111,116,101,114,2,1,103,243,103,82,8,1,8,46,102,110,120,95,95,99,99,2,1,157,188,78,5,8,1,7,46,104,74,105,65,82,77,2,1,192,41,248,106,8,1,29,46,105,109,112,111,114,116,97,110,116,45,113,117,101,115,116,105,111,110,95,95,98,97,99,107,100,114,111,112,2,1,199,23,188,166,8,1,27,46,105,109,112,111,114,116,97,110,116,45,113,117,101,115,116,105,111,110,95,95,100,105,97,108,111,103,2,1,199,23,188,166,8,1,13,46,105,110,99,111,110,115,101,110,116,45,99,99,2,1,119,243,103,98,8,1,10,46,105,110,102,111,45,111,107,110,111,2,1,142,37,7,133,8,1,8,46,106,45,99,105,110,102,111,2,1,118,249,190,219,8,1,7,46,106,115,115,51,54,51,2,1,188,85,160,231,8,1,23,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,2,1,69,114,244,8,8,1,7,46,107,83,73,79,84,81,2,1,120,179,226,151,8,1,7,46,108,97,118,119,110,97,2,1,170,169,124,139,8,1,16,46,108,103,71,97,70,117,46,115,99,45,65,120,105,75,119,2,1,116,37,8,22,8,1,10,46,109,99,99,45,109,111,100,97,108,2,1,96,131,37,48,8,1,14,46,109,111,100,97,108,66,97,99,107,100,114,111,112,2,3,23,183,195,195,116,25,179,194,231,240,36,157,8,1,12,46,109,111,100,97,108,87,105,110,100,111,119,2,3,23,183,195,195,116,25,179,194,231,240,36,157,8,1,13,46,111,112,116,105,110,87,114,97,112,112,101,114,2,3,162,147,104,1,174,135,98,34,214,251,190,219,8,1,9,46,115,105,116,101,45,109,115,103,2,1,184,222,63,130,8,1,11,46,115,109,45,119,114,97,112,112,101,114,2,2,67,0,119,240,116,18,140,148,8,1,12,46,115,122,100,99,45,45,109,111,100,97,108,2,1,158,87,176,31,8,1,25,46,115,122,110,45,99,109,112,45,100,105,97,108,111,103,45,99,111,110,116,97,105,110,101,114,2,1,135,94,197,116,8,1,8,46,116,111,112,73,110,102,111,2,1,141,85,164,8,8,1,40,46,117,105,95,119,105,100,103,101,116,115,95,117,110,105,116,45,99,111,111,107,105,101,115,95,112,114,101,102,50,48,50,50,95,102,111,111,116,101,114,2,1,116,28,108,9,8,1,11,46,117,112,111,122,111,114,110,101,110,105,2,1,199,169,79,3,8,1,13,46,117,115,101,114,83,101,116,116,105,110,103,115,2,1,163,117,180,46,8,1,14,46,119,97,114,110,105,110,103,45,109,111,100,97,108,2,1,94,122,148,129,0,1,38,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,34,93,2,1,187,207,114,131,0,1,15,100,105,118,46,112,111,112,117,112,45,115,104,97,100,101,2,1,186,128,22,51,0,1,74,100,105,118,91,115,116,121,108,101,94,61,34,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,32,112,97,100,100,105,110,103,58,32,49,48,112,120,32,50,48,112,120,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,70,70,59,34,93,2,1,87,39,18,158,0,1,45,102,111,114,109,91,115,116,121,108,101,94,61,34,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,34,93,2,1,11,108,48,175,16,1,12,35,80,79,80,85,80,83,95,82,79,79,84,2,1,80,16,150,232,16,1,11,35,99,45,108,45,119,105,100,103,101,116,2,1,233,104,169,136,16,1,10,35,99,111,110,115,101,110,116,85,73,2,1,238,86,9,91,16,1,16,35,99,111,111,107,105,101,45,97,99,99,101,112,116,101,114,2,1,18,157,159,222,16,1,21,35,99,111,111,107,105,101,115,65,99,99,101,112,116,87,114,97,112,112,101,114,2,1,73,142,237,63,16,1,10,35,102,105,120,101,100,68,105,118,50,2,1,55,45,106,7,16,1,8,35,108,98,109,111,100,97,108,2,2,3,113,103,112,124,226,74,34,16,1,16,35,108,98,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,124,226,74,34,16,1,11,35,109,111,100,97,108,76,97,121,101,114,2,1,64,6,148,92,16,1,24,35,109,121,98,97,110,107,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,254,161,242,183,8,1,6,46,98,49,52,99,99,2,1,45,160,55,158,8,1,27,46,98,97,99,107,103,114,111,117,110,100,67,111,118,101,114,87,114,97,112,112,101,114,95,99,97,119,2,1,73,142,237,63,8,1,21,46,98,103,45,115,100,45,98,108,117,101,45,115,101,99,111,110,100,97,114,121,2,1,180,111,221,10,8,1,9,46,98,108,111,99,107,98,107,103,2,1,120,90,44,26,8,1,20,46,98,111,114,100,101,114,45,98,111,100,121,45,45,98,111,116,116,111,109,2,1,78,46,140,177,8,1,10,46,99,45,111,118,101,114,108,97,121,2,2,100,96,103,83,112,228,162,156,8,1,10,46,99,99,45,100,105,97,108,111,103,2,1,186,129,209,140,8,1,23,46,99,111,111,107,105,101,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,1,238,26,118,224,8,1,13,46,99,117,115,116,111,109,45,112,111,112,117,112,2,1,191,98,65,144,8,1,7,46,102,111,111,116,101,114,2,1,6,127,45,187,8,1,6,46,104,112,95,99,99,2,1,103,76,57,88,8,1,16,46,105,110,102,111,98,97,114,45,119,114,97,112,112,101,114,2,1,46,59,53,158,8,1,17,46,106,115,45,97,108,101,114,116,45,112,114,105,118,97,99,121,2,1,90,190,77,168,8,1,6,46,109,116,115,110,98,2,1,219,95,168,91,8,1,16,46,110,111,116,105,102,105,99,97,116,105,111,110,98,97,114,2,2,60,44,52,148,106,204,114,123,8,1,12,46,112,111,112,45,111,118,101,114,108,97,121,2,2,93,16,235,16,150,135,75,67,8,1,10,46,112,111,112,117,112,45,109,115,103,2,1,160,115,162,72,8,1,16,46,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,2,1,8,10,81,147,8,1,8,46,112,117,115,104,45,117,112,2,1,123,154,122,52,8,1,19,46,114,101,103,105,111,110,45,112,97,103,101,45,98,111,116,116,111,109,2,1,19,220,109,212,8,1,10,46,115,101,112,116,105,109,97,99,99,2,1,60,23,52,73,8,1,15,46,115,104,45,112,97,103,101,45,110,111,116,105,99,101,2,1,100,165,242,213,8,1,12,46,119,112,99,45,111,118,101,114,108,97,121,2,1,149,246,222,194,8,1,10,46,119,112,99,45,112,111,112,117,112,2,1,149,246,222,194,0,1,29,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,45,109,111,100,117,108,101,45,34,93,2,1,102,158,191,230,16,1,17,35,66,108,117,114,114,121,66,97,99,107,103,114,111,117,110,100,2,1,226,210,188,105,16,1,11,35,67,111,111,107,105,101,119,97,108,108,2,1,212,106,2,51,16,1,12,35,73,68,70,99,111,111,107,105,101,86,51,2,1,139,101,150,252,16,1,3,35,84,49,2,1,101,45,25,63,16,1,17,35,84,82,67,79,45,97,112,112,108,105,99,97,116,105,111,110,2,1,139,94,71,105,16,1,11,35,87,71,98,101,115,104,114,107,103,106,2,1,187,93,10,148,16,1,11,35,87,71,105,106,103,120,107,104,106,118,2,1,111,22,34,252,16,1,11,35,87,71,110,122,109,104,101,101,108,104,2,1,56,241,70,223,16,1,11,35,87,71,117,122,110,116,116,101,113,104,2,3,186,113,49,109,187,112,255,47,239,179,52,197,16,1,11,35,97,99,99,45,98,111,116,116,111,109,2,1,107,142,83,135,16,1,14,35,97,99,99,101,112,116,115,99,112,50,48,49,50,2,1,186,10,204,80,16,1,14,35,97,118,103,45,99,111,110,116,97,105,110,101,114,2,1,140,7,163,48,16,1,6,35,99,45,98,97,114,2,1,103,16,241,238,16,1,22,35,99,99,109,95,110,111,116,105,102,105,99,97,116,105,111,110,95,104,111,115,116,2,1,139,95,54,253,16,1,10,35,99,105,87,114,97,112,112,101,114,2,1,173,61,118,107,16,1,4,35,99,107,109,2,1,50,78,141,198,16,1,6,35,99,107,112,111,108,2,1,30,25,241,68,16,1,14,35,99,111,109,112,45,106,107,109,111,100,55,99,109,2,1,242,81,149,233,16,1,15,35,99,111,110,115,101,110,116,45,112,108,117,103,105,110,2,13,14,58,230,199,16,70,99,0,21,109,146,70,38,100,92,92,41,180,63,196,52,234,55,207,139,104,227,16,176,34,1,114,182,94,127,144,190,147,223,200,233,121,151,194,250,185,31,13,253,197,250,141,16,1,13,35,99,111,110,115,101,110,116,77,111,100,97,108,2,1,56,78,165,21,16,1,38,35,99,111,111,107,105,101,45,112,114,111,109,112,116,45,109,111,100,97,108,95,95,95,66,86,95,109,111,100,97,108,95,111,117,116,101,114,95,2,1,182,118,148,224,16,1,18,35,99,111,111,107,105,101,95,112,111,112,117,112,95,98,111,100,121,2,1,190,147,21,97,16,1,14,35,99,111,111,107,105,101,99,104,111,105,99,101,115,2,1,139,91,106,213,16,1,14,35,99,111,111,107,105,101,108,97,119,95,105,100,102,2,1,187,206,176,154,16,1,22,35,99,111,111,107,105,101,108,97,119,95,105,100,102,95,111,118,101,114,108,97,121,2,1,187,206,176,154,16,1,14,35,99,111,111,107,105,101,115,95,109,111,100,97,108,2,1,236,218,107,145,16,1,13,35,99,119,101,116,45,119,114,97,112,112,101,114,2,1,209,179,72,58,16,1,7,35,100,97,114,107,101,114,2,1,94,124,31,62,16,1,6,35,101,114,103,99,98,2,1,37,165,195,154,16,1,11,35,103,97,45,99,111,110,115,101,110,116,2,1,222,198,31,20,16,1,13,35,103,97,108,108,101,116,97,45,109,97,105,110,2,4,53,133,146,5,193,125,64,117,223,231,76,203,255,155,109,230,16,1,19,35,103,100,112,114,45,99,111,111,107,105,101,45,100,105,97,108,111,103,2,1,193,210,254,72,16,1,21,35,103,108,111,98,97,108,109,101,115,115,97,103,101,95,104,111,108,100,101,114,2,1,112,240,208,174,16,1,8,35,108,111,97,100,105,110,103,2,4,58,184,20,92,74,43,234,15,234,218,207,200,248,183,116,111,16,1,11,35,109,109,45,99,99,45,119,114,97,112,2,1,132,117,169,153,16,1,17,35,109,112,45,112,111,112,117,112,111,118,101,114,108,97,121,49,2,1,27,102,62,18,16,1,13,35,110,111,116,105,102,105,99,97,116,105,111,110,2,1,20,61,216,243,16,1,17,35,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,2,1,93,14,10,118,16,1,10,35,115,116,79,118,101,114,108,97,121,2,1,34,125,127,185,16,1,11,35,115,116,79,118,101,114,108,97,121,66,2,1,34,125,127,185,16,1,8,35,115,119,105,116,99,104,50,2,1,100,26,124,64,16,1,8,35,116,111,99,109,97,115,107,2,1,173,86,61,186,16,1,8,35,117,100,116,68,97,114,107,2,2,30,23,135,209,76,10,0,246,8,1,26,46,71,100,112,114,45,109,111,100,117,108,101,95,95,103,100,112,114,95,95,95,111,120,81,106,68,2,1,243,177,240,183,8,1,7,46,72,95,77,104,112,90,2,1,60,14,139,54,8,1,12,46,77,111,100,97,108,67,111,111,107,105,101,2,1,171,134,83,120,8,1,28,46,77,117,105,66,97,99,107,100,114,111,112,45,114,111,111,116,46,99,115,115,45,51,99,50,54,108,101,2,1,111,73,26,59,8,1,11,46,80,97,110,101,108,80,111,112,85,112,2,1,179,211,181,169,8,1,7,46,95,49,49,99,97,95,2,2,143,67,6,24,193,113,87,175,8,1,7,46,95,49,50,100,57,55,2,4,45,67,5,161,134,59,34,101,228,192,20,141,235,28,66,61,8,1,14,46,95,50,49,98,57,57,49,51,49,56,52,52,52,2,1,165,193,29,147,8,1,7,46,95,50,109,109,121,98,2,4,45,67,5,161,134,59,34,101,228,192,20,141,235,28,66,61,8,1,14,46,95,99,98,97,100,57,98,97,102,100,52,49,55,2,1,165,193,29,147,8,1,16,46,97,98,115,111,108,117,116,101,45,100,105,97,108,111,103,2,1,11,190,219,89,8,1,17,46,97,103,101,99,104,101,99,107,45,119,114,97,112,112,101,114,2,2,34,141,162,96,240,62,33,60,8,1,10,46,97,109,111,118,101,114,108,97,121,2,1,10,53,234,168,8,1,4,46,97,118,103,2,1,216,72,102,71,8,1,16,46,98,97,99,107,103,114,111,117,110,100,45,102,97,100,101,2,1,105,208,68,118,8,1,18,46,98,97,99,107,103,114,111,117,110,100,111,118,101,114,108,97,121,2,2,98,21,43,185,254,143,27,2,8,1,21,46,98,97,108,108,111,111,110,95,110,111,116,105,102,105,99,97,116,105,111,110,2,1,29,210,84,175,8,1,22,46,98,97,114,45,100,105,115,112,108,97,121,46,99,111,110,116,97,105,110,101,114,2,1,205,56,235,179,8,1,12,46,98,108,111,99,107,45,49,50,49,45,49,2,1,38,100,7,90,8,1,7,46,98,109,97,68,121,100,2,1,139,93,238,65,8,1,19,46,98,110,114,45,110,111,116,105,99,101,45,99,117,114,116,97,105,110,2,1,13,74,34,125,8,1,10,46,98,111,45,99,98,45,98,97,114,2,1,73,234,80,242,8,1,10,46,98,111,116,116,111,109,45,50,48,2,1,44,45,76,234,8,1,9,46,99,45,110,111,116,105,99,101,2,1,84,43,14,23,8,1,11,46,99,99,45,45,119,105,110,100,111,119,2,1,190,148,62,213,8,1,9,46,99,99,45,112,111,112,117,112,2,1,28,105,66,18,8,1,8,46,99,99,95,114,111,111,116,2,1,149,141,243,20,8,1,6,46,99,103,45,56,50,2,1,90,151,146,184,8,1,6,46,99,103,45,57,55,2,1,90,151,146,184,8,1,7,46,99,104,74,102,80,66,2,1,139,93,238,65,8,1,8,46,99,107,79,117,116,101,114,2,1,247,146,72,42,8,1,27,46,99,108,95,99,111,111,107,105,101,95,110,111,116,105,99,101,95,99,111,110,116,97,105,110,101,114,2,1,229,180,172,37,8,1,29,46,99,111,108,111,114,45,105,110,118,101,114,116,46,102,111,110,116,45,115,105,122,101,45,115,109,97,108,108,2,1,11,83,14,126,8,1,28,46,99,111,109,112,111,110,101,110,116,45,45,102,114,101,111,45,99,111,111,107,105,101,108,101,118,101,108,2,1,139,96,212,217,8,1,17,46,99,111,110,115,101,110,116,45,98,97,99,107,100,114,111,112,2,1,151,222,108,224,8,1,21,46,99,111,110,115,101,110,116,45,119,97,108,108,45,111,118,101,114,108,97,121,2,1,139,105,59,44,8,1,14,46,99,111,111,107,105,101,45,45,88,112,98,70,77,2,1,16,185,145,209,8,1,18,46,99,111,111,107,105,101,45,99,111,109,112,111,110,101,110,116,115,2,1,171,128,130,198,8,1,15,46,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,109,188,72,9,8,1,43,46,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,99,111,110,116,97,105,110,101,114,45,112,111,112,117,112,45,98,97,99,107,100,114,111,112,2,1,100,15,100,44,8,1,16,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,2,1,46,180,161,105,8,1,12,46,99,111,111,107,105,101,45,119,97,108,108,2,2,145,171,116,93,206,11,51,215,8,1,25,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,98,97,99,107,103,114,111,117,110,100,2,1,104,151,163,7,8,1,21,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,100,105,97,108,111,103,2,1,104,151,163,7,8,1,11,46,99,111,111,107,105,101,119,97,108,108,2,1,153,147,176,101,8,1,28,46,99,111,111,107,105,101,119,97,108,108,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,33,220,58,188,8,1,17,46,99,111,111,107,105,101,119,97,108,108,45,109,111,100,97,108,2,2,38,40,208,133,108,39,222,129,8,1,9,46,99,111,111,111,107,105,101,115,2,1,157,79,143,51,8,1,11,46,99,115,115,45,107,114,116,106,53,115,2,1,139,99,24,69,8,1,11,46,99,115,115,45,117,117,113,99,55,98,2,2,177,76,202,5,183,57,196,76,8,1,9,46,99,116,45,109,111,100,97,108,2,1,189,109,202,20,8,1,7,46,99,117,74,68,101,120,2,1,88,101,12,138,8,1,15,46,99,117,115,116,111,109,45,99,111,110,115,101,110,116,2,6,40,119,190,134,121,71,239,210,159,1,20,33,179,138,212,49,179,162,100,97,215,70,17,241,8,1,7,46,99,118,65,81,119,76,2,1,88,101,12,138,8,1,18,46,100,105,97,108,111,103,95,98,111,120,95,95,102,97,105,95,49,2,1,139,101,44,44,8,1,23,46,100,105,97,108,111,103,95,108,105,103,104,116,98,111,120,95,95,49,79,49,103,67,2,1,139,101,44,44,8,1,18,46,100,109,99,99,77,97,107,101,83,101,108,101,99,116,105,111,110,2,1,139,98,232,242,8,1,7,46,101,111,118,78,98,106,2,1,88,101,12,138,8,1,19,46,101,115,116,114,97,116,101,103,121,45,99,99,45,112,111,112,117,112,2,1,41,177,195,193,8,1,17,46,102,97,110,99,121,98,111,120,45,111,118,101,114,108,97,121,2,3,16,174,60,170,52,255,118,59,113,87,217,115,8,1,11,46,102,111,111,116,101,114,45,109,115,103,2,1,45,100,28,245,8,1,20,46,102,111,111,116,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,214,178,213,21,8,1,15,46,102,114,101,101,122,101,45,111,118,101,114,108,97,121,2,1,119,28,26,40,8,1,7,46,104,85,97,112,65,76,2,1,245,200,100,241,8,1,14,46,104,101,97,100,101,114,45,110,111,116,105,99,101,2,2,68,232,101,119,220,191,74,123,8,1,23,46,104,111,109,101,32,62,32,100,105,118,32,62,32,46,104,121,100,114,97,116,101,100,2,1,108,80,100,45,8,1,9,46,105,110,100,45,99,98,97,114,2,1,214,119,66,245,8,1,31,46,105,110,100,101,120,45,109,111,100,117,108,101,45,45,99,111,110,116,97,105,110,101,114,45,45,49,53,105,99,109,2,1,69,133,191,190,8,1,17,46,106,99,45,98,115,51,45,99,111,110,116,97,105,110,101,114,2,1,144,30,167,0,8,1,7,46,106,113,105,98,111,120,2,1,47,67,123,106,8,1,11,46,106,113,109,67,111,110,102,105,114,109,2,1,250,61,99,81,8,1,7,46,106,115,115,49,55,57,2,1,149,146,8,204,8,1,7,46,106,115,115,50,51,54,2,1,149,146,8,204,8,1,7,46,107,82,88,79,121,122,2,1,10,30,234,111,8,1,15,46,107,111,101,107,106,101,45,99,111,110,116,101,110,116,2,1,97,66,197,170,8,1,7,46,107,114,100,107,110,102,2,1,71,88,173,28,8,1,10,46,109,97,105,110,115,116,105,99,107,2,1,220,156,147,104,8,1,8,46,109,101,110,116,105,111,110,2,1,141,84,33,162,8,1,24,46,109,101,115,115,97,103,101,45,112,111,112,117,112,45,99,111,111,107,105,101,45,108,113,2,1,15,184,220,62,8,1,20,46,109,105,106,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,44,121,40,129,8,1,15,46,109,111,100,97,108,115,45,111,118,101,114,108,97,121,2,1,20,200,184,202,8,1,12,46,109,111,100,97,108,119,105,110,100,111,119,2,2,98,21,43,185,254,143,27,2,8,1,7,46,110,111,98,108,117,114,2,3,74,43,234,15,234,218,207,200,248,183,116,111,8,1,22,46,110,111,116,105,102,105,99,97,116,105,111,110,67,111,110,116,97,105,110,101,114,2,1,123,237,173,219,8,1,22,46,110,111,116,105,102,105,99,97,116,105,111,110,115,45,109,97,110,97,103,101,114,2,1,172,197,249,199,8,1,10,46,111,110,100,101,114,98,97,108,107,2,1,27,3,206,85,8,1,5,46,111,114,101,111,2,1,114,177,171,129,8,1,14,46,111,116,45,99,111,111,107,105,101,45,98,97,114,2,1,40,160,216,209,8,1,12,46,112,105,110,45,98,46,102,105,120,101,100,2,1,20,135,190,76,8,1,8,46,112,111,112,109,97,107,101,2,1,38,46,186,30,8,1,15,46,112,111,112,117,112,45,98,97,99,107,100,114,111,112,2,1,139,109,2,173,8,1,11,46,112,111,112,117,112,95,109,97,105,110,2,1,32,131,150,254,8,1,28,46,112,111,112,117,112,98,117,105,108,100,101,114,45,119,105,100,103,101,116,45,99,111,110,116,101,110,116,2,1,17,173,21,128,8,1,15,46,112,111,115,105,116,105,111,110,45,102,105,120,101,100,2,1,11,83,14,126,8,1,21,46,112,114,111,114,97,105,108,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,175,213,222,144,8,1,21,46,112,116,104,117,45,100,105,97,108,111,103,95,95,109,111,100,97,108,98,103,2,1,139,105,174,54,8,1,15,46,114,101,118,101,97,108,45,111,118,101,114,108,97,121,2,1,121,193,75,19,8,1,14,46,114,101,118,105,101,119,45,98,97,110,110,101,114,2,1,190,148,58,131,8,1,13,46,114,111,119,45,109,100,45,115,112,108,105,116,2,1,32,103,20,197,8,1,9,46,114,115,116,98,111,120,101,115,2,1,99,77,196,144,8,1,18,46,115,45,99,111,111,107,105,101,95,95,109,111,100,97,108,51,50,2,1,93,119,5,213,8,1,17,46,115,99,45,103,109,109,88,65,103,46,98,102,68,99,119,69,2,1,10,30,234,111,8,1,10,46,115,99,45,104,71,80,66,106,73,2,1,88,101,12,138,8,1,15,46,115,104,45,112,97,103,101,45,110,111,116,105,99,101,2,1,2,49,172,67,8,1,10,46,115,104,111,119,46,100,97,114,107,2,1,77,2,177,72,8,1,18,46,115,105,116,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,8,95,185,78,8,1,19,46,115,110,97,99,107,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,90,107,249,183,8,1,8,46,115,116,80,111,112,117,112,2,1,34,125,127,185,8,1,16,46,115,116,105,99,107,45,116,111,45,98,111,116,116,111,109,2,1,134,153,86,57,8,1,30,46,115,116,121,108,101,95,95,83,67,111,111,107,105,101,66,97,114,45,115,99,45,117,119,106,110,51,107,45,48,2,1,139,105,175,86,8,1,20,46,116,45,99,111,111,107,105,101,45,98,97,114,45,104,111,108,100,101,114,2,1,103,254,222,112,8,1,3,46,116,98,2,1,131,183,72,36,8,1,6,46,116,100,101,99,99,2,4,88,118,238,144,178,168,165,84,215,70,134,41,251,82,224,130,8,1,26,46,116,111,116,97,108,45,112,108,117,115,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,2,1,71,115,163,129,8,1,25,46,117,115,101,114,45,99,111,110,102,105,114,109,97,116,105,111,110,45,115,99,114,101,101,110,2,1,190,147,219,16,8,1,15,46,118,45,98,111,116,116,111,109,45,115,104,101,101,116,2,1,70,46,81,86,8,1,19,46,118,105,97,45,109,111,100,97,108,45,45,99,111,110,115,101,110,116,2,2,27,102,62,18,170,252,144,15,8,1,30,46,118,105,115,105,111,45,97,110,97,108,121,116,105,99,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,127,75,11,242,8,1,35,46,119,51,45,97,110,105,109,97,116,101,45,111,112,97,99,105,116,121,32,62,32,46,119,51,45,99,111,110,116,97,105,110,101,114,2,1,78,213,71,225,8,1,5,46,119,97,108,108,2,2,83,88,115,221,188,94,58,130,8,1,17,46,122,45,53,48,46,98,111,116,116,111,109,45,50,92,46,53,2,1,234,6,38,111,0,1,42,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,101,115,115,97,103,101,34,93,2,1,135,236,185,232,0,1,24,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,77,111,100,97,108,95,34,93,2,1,107,141,219,123,0,1,27,91,100,97,116,97,45,99,121,61,34,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,34,93,2,1,149,146,8,204,0,1,16,99,99,109,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,190,147,235,150,0,1,26,99,111,110,115,101,110,116,45,115,108,105,100,101,45,105,110,45,99,111,109,112,111,110,101,110,116,2,1,107,213,71,141,0,1,6,99,111,111,107,105,101,2,1,190,148,11,162,0,1,24,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,66,97,114,95,34,93,2,1,178,26,226,156,0,1,25,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,87,97,108,108,95,34,93,2,1,115,231,30,132,0,1,91,100,105,118,91,115,116,121,108,101,61,34,109,97,114,103,105,110,58,32,50,48,112,120,59,32,112,97,100,100,105,110,103,45,108,101,102,116,58,50,48,112,120,59,32,112,97,100,100,105,110,103,45,114,105,103,104,116,58,50,48,112,120,59,98,111,114,100,101,114,58,32,49,112,120,32,100,111,116,116,101,100,32,35,57,57,57,57,57,57,34,93,2,1,4,255,113,173,0,1,10,109,97,105,110,32,126,32,100,105,118,2,1,186,191,210,101,16,1,12,35,102,114,101,101,122,95,112,97,110,101,108,2,1,243,23,222,130,8,1,17,46,67,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,250,241,235,23,8,1,16,46,67,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,250,241,235,23,8,1,24,46,67,111,111,107,105,101,66,97,110,110,101,114,45,98,97,99,107,103,114,111,117,110,100,2,1,174,85,51,40,8,1,8,46,98,108,117,101,45,98,103,2,1,88,162,26,210,0,1,30,46,99,99,107,92,58,99,111,111,107,105,101,45,110,111,116,105,99,101,95,95,99,111,110,116,97,105,110,101,114,2,1,87,166,229,44,8,1,11,46,99,115,115,45,53,52,55,99,114,112,2,1,80,185,49,129,8,1,14,46,100,105,97,108,111,103,45,119,105,110,100,111,119,2,1,5,203,53,134,8,1,19,46,100,105,115,99,108,97,105,109,101,114,45,119,114,97,112,112,101,114,2,1,243,99,61,187,8,1,9,46,100,105,118,95,99,111,111,99,2,1,179,117,122,111,8,1,7,46,101,86,73,90,70,118,2,1,250,231,58,69,8,1,8,46,101,118,111,99,110,116,99,2,1,166,128,35,56,8,1,7,46,103,115,79,84,118,110,2,1,250,231,58,69,8,1,6,46,109,101,109,75,73,2,1,163,8,125,199,8,1,15,46,109,111,100,97,97,108,45,111,118,101,114,108,97,121,2,1,250,141,135,15,8,1,15,46,109,111,100,97,97,108,45,119,114,97,112,112,101,114,2,1,250,141,135,15,8,1,15,46,112,111,95,112,111,112,117,112,95,116,121,112,101,50,2,1,165,143,11,173,8,1,30,46,115,116,121,108,101,115,95,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,95,95,51,112,107,77,121,2,1,110,34,45,211,8,1,19,46,118,100,45,109,101,115,115,97,103,101,45,119,114,97,112,112,101,114,2,1,235,63,240,94,8,1,9,46,119,49,120,114,111,101,107,57,2,1,244,119,108,187,0,1,37,91,115,116,121,108,101,94,61,34,98,111,116,116,111,109,58,32,48,112,120,59,32,104,101,105,103,104,116,58,32,53,48,112,120,59,34,93,2,1,90,147,209,168,16,1,38,35,95,95,110,101,120,116,32,62,32,100,105,118,46,77,117,105,66,111,120,45,114,111,111,116,58,108,97,115,116,45,111,102,45,116,121,112,101,2,1,21,19,69,70,16,1,17,35,99,111,111,107,105,101,45,105,110,102,111,45,119,114,97,112,2,1,224,248,164,116,16,1,9,35,99,112,95,112,111,112,117,112,2,3,3,18,7,35,24,4,45,146,47,239,190,222,16,1,9,35,101,118,97,115,116,101,101,116,2,4,5,64,143,179,128,39,131,236,232,235,225,189,253,139,127,153,16,1,16,35,103,116,109,67,111,111,107,105,101,66,97,110,110,101,114,2,1,46,9,154,144,16,1,7,35,107,109,45,99,99,119,2,1,132,204,198,3,16,1,9,35,110,97,112,115,117,95,99,99,2,1,17,112,62,39,16,1,15,35,115,105,119,97,45,99,111,111,107,105,101,98,97,114,2,1,248,10,212,234,8,1,30,46,77,111,100,97,108,83,117,98,77,111,100,117,108,101,95,111,118,101,114,108,97,121,95,95,113,103,57,73,76,2,1,55,121,58,219,8,1,13,46,95,95,108,100,95,99,111,111,107,105,101,115,2,1,71,62,153,254,8,1,13,46,97,110,105,109,97,116,101,46,109,97,115,107,2,1,233,213,99,65,8,1,19,46,98,111,108,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,41,207,99,22,8,1,6,46,99,103,45,57,55,2,1,225,87,7,91,8,1,18,46,99,104,50,45,100,105,97,108,111,103,45,98,111,116,116,111,109,2,1,92,205,215,173,8,1,21,46,99,108,105,45,112,111,112,117,112,98,97,114,45,111,118,101,114,108,97,121,2,1,102,83,186,61,8,1,16,46,99,111,110,116,97,105,110,101,114,45,97,103,114,101,101,2,1,171,10,221,250,8,1,23,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,108,105,103,104,116,98,111,120,2,1,233,213,99,65,8,1,21,46,99,111,111,107,105,101,95,109,111,100,97,108,95,111,118,101,114,108,97,121,2,1,253,174,191,39,8,1,11,46,99,115,45,111,118,101,114,108,97,121,2,1,50,110,221,255,8,1,12,46,99,115,115,45,49,51,106,101,119,117,97,2,1,18,109,163,165,8,1,27,46,100,105,97,108,111,103,66,97,110,110,101,114,45,45,97,108,105,103,110,45,98,111,116,116,111,109,2,1,131,84,55,71,8,1,7,46,101,105,97,98,121,106,2,1,148,124,21,248,8,1,29,46,102,105,114,115,116,45,112,97,103,101,45,111,102,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,2,1,199,5,118,2,8,1,7,46,103,68,70,87,116,76,2,1,199,160,250,208,8,1,19,46,103,100,112,114,80,111,112,85,112,45,114,111,111,116,45,49,122,84,2,1,234,169,56,134,8,1,24,46,103,110,97,118,95,110,111,116,105,102,105,99,97,116,105,111,110,45,112,111,112,117,112,2,1,118,30,119,11,8,1,23,46,104,99,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,43,26,42,214,8,1,7,46,105,78,103,71,120,121,2,1,143,152,145,179,8,1,8,46,105,114,46,105,113,46,104,2,1,17,240,229,135,8,1,7,46,106,102,67,72,78,122,2,1,182,82,134,85,8,1,7,46,107,99,76,81,122,80,2,1,34,155,103,86,8,1,15,46,107,105,105,116,111,115,45,99,111,111,107,105,101,115,2,1,56,164,123,211,8,1,18,46,108,109,115,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,118,216,142,105,8,1,5,46,108,112,99,110,2,1,14,167,67,247,8,1,30,46,109,97,110,97,103,101,45,99,111,110,115,101,110,116,115,45,112,111,112,117,112,45,119,114,97,112,112,101,114,2,3,39,138,135,200,76,244,175,80,214,100,168,71,8,1,21,46,109,111,100,97,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,2,61,16,39,179,255,3,80,198,8,1,43,46,110,103,45,115,99,111,112,101,91,110,103,45,105,102,36,61,34,99,117,115,116,111,109,67,111,110,115,101,110,116,77,97,110,97,103,101,109,101,110,116,34,93,2,1,20,39,163,201,8,1,15,46,110,111,116,105,99,101,45,45,99,111,111,107,105,101,2,3,15,14,29,188,39,244,68,2,226,84,162,233,8,1,21,46,110,111,116,105,102,105,99,97,116,105,111,110,45,119,97,114,110,105,110,103,2,1,95,41,234,187,8,1,14,46,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,67,223,201,34,8,1,31,46,111,110,101,116,114,117,115,116,45,112,99,45,100,97,114,107,45,102,105,108,116,101,114,91,115,116,121,108,101,93,2,1,19,131,170,60,8,1,54,46,111,110,101,116,114,117,115,116,45,112,99,45,100,97,114,107,45,102,105,108,116,101,114,91,115,116,121,108,101,93,32,43,32,35,111,110,101,116,114,117,115,116,45,98,97,110,110,101,114,45,115,100,107,2,1,19,131,170,60,8,1,13,46,111,118,101,114,108,97,121,99,108,97,115,115,2,1,133,195,185,67,8,1,23,46,111,118,101,114,108,97,121,115,32,62,32,46,98,97,99,107,103,114,111,117,110,100,2,1,166,30,103,73,8,1,11,46,114,105,98,98,111,110,45,50,56,48,2,1,28,6,161,35,8,1,7,46,114,115,116,98,111,120,2,1,111,75,72,43,8,1,25,46,115,45,100,105,97,108,111,103,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,2,1,203,215,74,187,8,1,13,46,115,105,116,101,45,111,118,101,114,108,97,121,2,1,203,215,71,25,8,1,14,46,115,118,101,108,116,101,45,55,55,114,105,122,105,2,1,128,79,103,41,8,1,36,46,116,45,98,111,100,121,45,115,109,97,108,108,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,2,1,19,235,54,138,8,1,30,46,117,45,112,111,115,105,116,105,111,110,45,102,105,120,101,100,46,117,45,122,105,110,100,101,120,45,49,48,48,2,1,165,140,205,20,8,1,17,46,118,45,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,231,140,131,193,8,1,16,46,118,45,115,110,97,99,107,45,45,98,111,116,116,111,109,2,1,216,42,245,108,8,1,20,46,118,97,114,109,97,45,102,111,111,116,101,114,45,115,116,105,99,107,121,2,1,19,235,180,151,8,1,14,46,118,116,45,100,105,115,99,108,97,105,109,101,114,2,1,203,215,58,159,8,1,9,46,119,49,120,114,111,101,107,57,2,1,219,137,84,20,0,1,56,91,99,108,97,115,115,94,61,34,115,116,121,108,101,100,66,97,114,78,111,116,105,102,105,99,97,116,105,111,110,95,95,66,97,114,78,111,116,105,102,105,99,97,116,105,111,110,87,114,97,112,112,101,114,34,93,2,1,51,244,154,143,0,1,76,91,115,116,121,108,101,61,34,119,105,100,116,104,58,49,48,48,37,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,70,48,70,48,70,48,59,112,97,100,100,105,110,103,58,49,48,112,120,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,34,93,2,1,106,208,168,254,0,1,11,98,119,45,105,110,102,111,45,98,97,114,2,1,108,69,11,28,0,1,12,100,105,118,32,62,32,46,99,103,45,53,55,2,1,225,87,7,91,0,1,52,100,105,118,91,97,114,105,97,45,108,97,98,101,108,61,34,68,101,110,110,97,32,119,101,98,98,112,108,97,116,115,32,97,110,118,228,110,100,101,114,32,119,101,98,98,107,97,107,111,114,34,93,2,2,18,97,205,8,118,25,42,219,0,1,48,100,105,118,91,97,114,105,97,45,108,97,98,101,108,61,34,83,105,118,117,115,116,111,108,108,97,32,107,228,121,116,101,116,228,228,110,32,101,118,228,115,116,101,105,116,228,34,93,2,2,18,97,205,8,118,25,42,219,0,1,43,100,105,118,91,97,114,105,97,45,108,97,98,101,108,61,34,84,104,105,115,32,119,101,98,115,105,116,101,32,117,115,101,115,32,99,111,111,107,105,101,115,34,93,2,2,18,97,205,8,118,25,42,219,0,1,39,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,67,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,95,95,34,93,2,1,19,235,246,124,0,1,34,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,84,111,111,108,116,105,112,83,116,121,108,101,95,34,93,2,1,118,30,23,64,0,1,128,0,0,0,159,100,105,118,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,32,114,105,103,104,116,58,32,48,112,120,59,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,32,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,32,99,101,110,116,101,114,59,32,122,45,105,110,100,101,120,58,32,49,48,48,48,48,48,59,32,116,114,97,110,115,105,116,105,111,110,58,32,116,114,97,110,115,102,111,114,109,32,50,48,48,109,115,32,101,97,115,101,32,48,115,59,34,93,2,2,71,144,102,14,78,95,243,252,0,1,48,100,105,118,91,115,116,121,108,101,94,61,34,111,112,97,99,105,116,121,58,32,49,59,32,104,101,105,103,104,116,58,32,34,93,91,115,116,121,108,101,36,61,34,112,120,59,34,93,2,1,186,14,78,111,0,1,43,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,114,105,103,104,116,58,48,59,116,111,112,58,48,59,34,93,2,1,99,255,151,3,0,1,56,100,105,118,91,115,116,121,108,101,94,61,34,115,116,121,108,101,61,119,105,100,116,104,58,49,48,48,37,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,70,48,70,48,70,48,59,34,93,2,1,106,208,168,254,0,1,19,105,109,116,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,2,1,203,215,41,178,0,1,36,115,101,99,116,105,111,110,91,97,114,105,97,45,108,97,98,101,108,61,34,65,99,99,101,112,116,32,67,111,111,107,105,101,115,34,93,2,1,18,89,97,70,0,1,39,115,101,99,116,105,111,110,91,99,108,97,115,115,94,61,34,80,114,105,118,97,99,121,67,111,110,115,101,110,116,66,97,110,110,101,114,95,34,93,2,7,71,129,251,225,84,170,120,206,114,107,112,116,142,160,149,115,165,148,4,201,173,180,101,47,239,210,150,82,8,1,37,46,115,116,121,108,101,115,95,97,99,99,101,112,116,67,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,95,95,50,50,99,117,89,2,1,243,3,245,124,16,1,24,35,67,111,111,107,105,101,71,100,112,114,67,111,110,115,101,110,116,66,97,110,110,101,114,2,1,233,64,129,131,16,1,15,35,67,111,111,107,105,101,115,83,101,99,116,105,111,110,2,1,183,99,141,164,16,1,19,35,78,77,67,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,2,1,52,127,189,173,16,1,12,35,97,100,118,101,114,116,45,111,110,99,101,2,1,196,7,12,125,16,1,10,35,98,116,109,95,116,101,114,109,115,2,1,230,180,48,101,16,1,11,35,99,107,95,99,111,111,107,105,101,115,2,3,37,32,138,248,37,121,32,147,224,9,113,44,16,1,19,35,99,111,110,115,101,110,116,80,108,97,99,101,104,111,108,100,101,114,2,1,180,181,193,153,16,1,11,35,99,111,111,107,83,69,84,119,105,110,2,1,10,247,160,240,16,1,18,35,99,111,111,107,105,101,115,95,99,111,109,112,111,110,101,110,116,2,1,182,82,129,243,16,1,22,35,99,111,111,107,105,101,115,101,116,116,105,110,103,115,45,100,105,97,108,111,103,2,1,247,144,168,214,16,1,3,35,99,112,2,1,89,244,45,200,16,1,11,35,100,105,115,99,108,97,105,109,101,114,2,1,207,130,66,39,16,1,20,35,101,108,73,110,115,111,109,110,105,97,67,111,111,107,105,101,66,97,114,2,1,189,88,75,48,16,1,4,35,101,117,99,2,1,69,72,75,86,16,1,8,35,109,121,77,111,100,97,108,2,1,89,239,32,199,16,1,8,35,109,121,80,111,112,117,112,2,1,168,245,204,71,16,1,14,35,112,111,108,105,99,121,45,110,111,116,105,99,101,2,1,159,35,124,43,16,1,15,35,114,111,111,116,32,62,32,46,101,89,71,81,68,105,2,1,128,31,26,162,16,1,9,35,114,115,116,98,111,120,95,50,2,1,103,102,150,109,16,1,14,35,116,99,45,112,110,108,46,111,112,101,110,101,100,2,1,253,76,159,120,16,1,14,35,117,115,105,110,103,45,99,111,111,107,105,101,115,2,1,151,112,254,82,8,1,36,46,67,111,111,107,105,101,80,111,108,105,99,121,73,110,102,111,95,95,99,111,110,116,97,105,110,101,114,95,95,95,50,100,100,105,45,2,1,110,202,25,20,8,1,12,46,97,108,101,114,116,98,97,110,110,101,114,2,1,238,211,191,72,8,1,10,46,98,111,116,116,111,109,98,97,114,2,1,141,125,61,145,8,1,7,46,99,99,95,111,98,120,2,1,233,239,70,206,8,1,11,46,102,105,120,45,98,111,116,116,111,109,2,1,63,201,26,15,8,1,8,46,103,100,112,114,112,111,112,2,1,76,77,82,36,8,1,15,46,109,111,100,97,108,115,45,119,114,97,112,112,101,114,2,1,147,162,255,93,8,1,26,46,110,101,119,45,99,111,111,107,105,101,45,115,117,112,101,114,99,111,110,116,97,105,110,101,114,2,1,215,209,188,65,8,1,9,46,112,114,118,109,111,100,97,108,2,1,89,240,108,55,8,1,11,46,115,101,116,67,111,111,107,105,101,115,2,1,42,227,187,153,8,1,10,46,116,101,114,109,115,110,111,116,101,2,1,164,124,181,138,8,1,6,46,119,45,49,48,48,2,1,249,167,147,209,0,1,15,99,111,111,107,105,101,115,45,99,111,110,99,101,110,116,2,1,137,179,236,98,0,1,22,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,115,95,34,93,2,1,55,201,118,229,0,1,30,100,105,118,91,100,97,116,97,45,116,101,115,116,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,34,93,2,1,110,202,25,20,8,1,18,46,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,2,1,134,146,199,141,16,1,7,35,67,76,97,121,101,114,2,4,23,81,75,123,122,139,125,90,142,132,25,3,227,145,171,136,16,1,2,35,97,2,1,0,205,84,158,16,1,17,35,97,99,99,101,112,116,45,99,111,110,116,97,105,110,101,114,2,2,165,252,146,164,182,166,50,239,16,1,17,35,97,99,99,101,112,116,95,99,111,110,116,97,105,110,101,114,2,1,198,25,85,174,16,1,6,35,99,105,110,102,111,2,1,221,41,159,133,16,1,19,35,99,111,111,107,105,101,119,97,108,108,45,119,114,97,112,112,101,114,2,1,158,100,4,187,16,1,6,35,99,112,45,98,103,2,1,26,227,128,181,16,1,11,35,99,112,45,99,111,110,116,101,110,116,2,1,26,227,128,181,16,1,3,35,99,119,2,1,149,55,166,26,16,1,9,35,99,119,97,114,110,105,110,103,2,1,48,41,43,27,16,1,7,35,100,105,100,121,111,117,2,1,170,85,138,21,16,1,18,35,101,120,112,111,115,101,77,97,115,107,79,118,101,114,108,97,121,2,2,6,11,169,106,205,166,214,32,16,1,6,35,102,105,103,121,117,2,1,161,158,226,254,16,1,7,35,102,111,111,116,101,114,2,1,72,142,207,115,16,1,15,35,102,111,111,116,101,114,45,99,111,110,115,101,110,116,2,1,170,85,166,162,16,1,13,35,102,114,97,109,101,45,109,111,100,97,108,115,2,1,216,4,217,129,16,1,14,35,106,115,99,111,111,107,105,101,109,111,100,97,108,2,1,91,121,195,183,16,1,8,35,108,97,98,108,101,99,97,2,1,131,1,174,94,16,1,26,35,108,97,121,111,117,116,95,97,100,118,101,114,116,105,115,105,110,103,95,98,111,116,116,111,109,2,3,38,204,165,33,77,140,101,123,211,67,160,222,16,1,17,35,109,97,114,107,101,116,105,110,103,67,111,110,115,101,110,116,2,2,170,85,146,34,227,226,235,58,16,1,21,35,111,118,101,114,108,97,121,95,99,111,111,107,105,101,95,97,108,101,114,116,2,1,6,11,169,106,16,1,10,35,112,97,103,101,45,109,97,115,107,2,1,91,121,195,183,16,1,7,35,115,108,105,100,101,114,2,1,132,47,54,157,16,1,16,35,115,112,99,111,111,107,105,101,111,118,101,114,108,97,121,2,1,179,194,185,40,16,1,9,35,115,116,105,97,108,101,114,116,2,1,100,223,106,128,16,1,10,35,115,117,116,105,95,99,115,105,107,2,1,181,233,127,168,16,1,10,35,115,117,116,105,100,111,98,111,122,2,1,228,194,38,7,8,1,12,46,90,101,98,114,97,68,105,97,108,111,103,2,2,170,85,163,80,243,163,177,51,8,1,19,46,90,101,98,114,97,68,105,97,108,111,103,79,118,101,114,108,97,121,2,2,170,85,163,80,243,163,177,51,8,1,10,46,95,50,100,95,108,57,76,87,99,2,1,53,234,35,16,8,1,6,46,97,102,99,111,111,2,1,116,204,171,118,8,1,17,46,97,115,122,102,76,97,121,101,114,67,111,110,116,101,110,116,2,1,238,137,220,102,8,1,7,46,98,84,80,108,82,71,2,1,166,244,53,195,8,1,9,46,99,45,119,105,100,103,101,116,2,1,68,26,37,79,8,1,10,46,99,99,45,104,111,108,100,101,114,2,1,62,139,110,49,8,1,12,46,99,100,105,115,99,108,97,105,109,101,114,2,1,234,5,100,60,8,1,25,46,99,111,110,116,101,110,116,45,98,111,116,116,111,109,45,102,117,108,108,119,105,100,116,104,2,1,234,207,67,215,8,1,13,46,99,111,111,107,105,101,45,97,108,101,114,116,2,1,205,166,214,32,8,1,12,46,99,111,111,107,105,101,45,98,97,115,101,2,1,122,165,246,112,8,1,15,46,99,111,111,107,105,101,45,110,101,119,45,99,110,116,2,1,170,85,174,26,8,1,3,46,99,116,2,2,65,53,175,88,242,52,249,110,8,1,8,46,100,105,115,99,45,99,112,2,1,170,85,181,184,8,1,17,46,103,114,101,121,45,112,111,112,117,112,45,108,97,121,101,114,2,1,122,165,246,112,8,1,7,46,104,66,72,117,110,100,2,1,166,244,53,195,8,1,24,46,106,101,103,118,101,114,101,109,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,193,73,132,3,8,1,20,46,108,97,98,108,101,99,95,115,117,116,105,95,115,122,97,98,97,108,121,2,1,99,58,108,107,8,1,19,46,108,101,103,97,108,45,99,111,110,115,101,110,116,45,119,114,97,112,2,1,158,93,1,172,8,1,6,46,109,111,100,97,108,2,1,70,185,213,82,8,1,14,46,110,101,119,65,83,90,70,76,97,121,101,114,50,2,1,70,31,226,124,8,1,29,46,110,111,116,48,49,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,2,1,170,85,223,210,8,1,17,46,111,102,102,99,97,110,118,97,115,45,98,111,116,116,111,109,2,1,63,179,218,59,8,1,13,46,112,111,112,117,112,95,119,105,110,100,111,119,2,1,13,79,196,130,8,1,15,46,112,111,115,105,116,105,111,110,45,102,105,120,101,100,2,1,55,169,201,6,8,1,14,46,114,101,103,105,111,110,45,98,111,116,116,111,109,2,1,188,48,197,4,8,1,7,46,114,115,116,98,111,120,2,1,51,226,234,106,8,1,18,46,115,122,101,50,48,50,48,45,99,111,110,116,97,105,110,101,114,2,1,216,4,217,129,0,1,51,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,119,105,100,116,104,58,32,51,57,101,109,59,32,108,101,102,116,58,32,53,48,37,59,34,93,2,1,58,249,209,226,0,1,54,100,105,118,91,115,116,121,108,101,42,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,97,40,51,52,44,32,51,52,44,32,51,52,44,32,48,46,56,41,59,34,93,2,1,168,220,216,19,0,1,128,0,0,0,129,100,105,118,91,115,116,121,108,101,61,34,119,105,100,116,104,58,49,48,48,37,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,98,108,97,99,107,59,32,112,97,100,100,105,110,103,58,32,56,112,120,59,32,99,111,108,111,114,58,119,104,105,116,101,59,32,111,112,97,99,105,116,121,58,48,46,56,59,32,122,45,105,110,100,101,120,58,50,48,48,48,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,48,59,34,93,2,1,228,91,223,116,0,1,39,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,32,98,111,116,116,111,109,58,48,59,34,93,2,1,235,220,21,43,8,1,28,46,67,111,111,107,105,101,78,111,116,105,99,101,95,119,114,97,112,112,101,114,95,95,109,48,117,82,110,2,1,49,246,50,181,8,1,17,46,71,100,112,114,95,103,100,112,114,95,95,51,67,78,98,113,2,2,54,18,1,230,162,152,217,73,8,1,13,46,95,115,97,109,95,103,97,95,105,110,102,111,2,1,215,169,135,188,8,1,14,46,98,111,116,116,111,109,45,98,97,110,110,101,114,2,2,61,25,172,232,198,68,206,208,8,1,18,46,98,111,116,116,111,109,45,100,105,115,99,108,97,105,109,101,114,2,1,132,36,254,140,8,1,4,46,99,104,50,2,1,232,184,4,6,8,1,7,46,99,111,111,66,111,120,2,1,248,158,53,86,8,1,18,46,100,105,115,109,105,115,115,97,98,108,101,45,116,101,114,109,115,2,1,11,178,2,1,8,1,11,46,101,49,118,108,55,122,97,116,49,48,2,1,6,102,118,148,8,1,43,46,101,108,101,109,101,110,116,111,114,45,119,105,100,103,101,116,45,105,99,111,110,45,98,111,120,46,101,108,101,109,101,110,116,111,114,45,119,105,100,103,101,116,2,1,130,173,181,113,8,1,10,46,101,110,118,116,113,121,115,49,48,2,1,6,102,118,148,8,1,7,46,101,119,118,75,70,113,2,1,27,219,102,177,8,1,5,46,104,45,52,48,2,1,162,153,11,222,8,1,15,46,104,101,97,100,101,114,45,109,101,115,115,97,103,101,2,1,35,102,68,29,8,1,8,46,104,111,115,45,98,97,114,2,1,53,198,212,157,8,1,21,46,106,101,116,45,112,111,112,117,112,95,95,99,111,110,116,97,105,110,101,114,2,1,130,173,181,113,8,1,15,46,112,45,53,46,122,45,49,48,46,102,105,120,101,100,2,1,131,130,170,126,8,1,13,46,112,45,54,46,109,97,120,45,119,45,115,109,2,1,128,25,14,223,8,1,6,46,112,120,45,52,48,2,1,83,65,220,103,8,1,13,46,115,101,115,115,105,111,110,45,116,101,120,116,2,4,21,122,90,206,151,242,225,176,162,152,216,54,233,90,4,250,8,1,12,46,115,117,99,100,45,98,97,110,110,101,114,2,1,157,47,132,135,8,1,13,46,67,111,111,107,105,101,115,77,111,100,101,108,2,1,19,41,11,80,8,1,21,46,104,101,97,100,101,114,45,116,101,120,116,45,99,111,110,116,101,110,101,114,2,1,250,82,89,234,8,1,11,46,113,117,105,99,107,115,108,105,100,101,2,1,136,63,120,189,8,1,23,46,115,105,116,101,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,2,1,162,254,21,151,16,1,3,35,67,107,2,1,29,176,123,98,16,1,16,35,67,111,115,77,111,111,80,111,112,117,112,77,97,115,107,2,1,24,235,151,66,16,1,4,35,71,80,80,2,1,210,207,142,203,16,1,7,35,71,95,105,110,102,111,2,2,36,185,190,192,249,147,55,170,16,1,12,35,80,79,80,85,80,83,95,82,79,79,84,2,1,172,178,235,201,16,1,22,35,82,73,78,71,79,45,98,97,110,110,101,114,45,98,97,99,107,100,114,111,112,2,1,90,60,136,94,0,1,28,35,92,53,102,32,117,98,117,110,116,117,45,105,116,95,99,111,111,107,105,101,95,112,111,108,105,99,121,2,1,18,113,200,158,16,1,13,35,95,99,112,109,116,45,105,102,114,97,109,101,2,1,222,147,160,77,16,1,90,35,95,105,116,95,110,101,120,116,109,105,110,100,95,108,105,102,101,114,97,121,95,99,111,111,107,105,101,95,105,110,116,101,114,99,101,112,116,111,114,95,67,111,111,107,105,101,73,110,116,101,114,99,101,112,116,111,114,80,111,114,116,108,101,116,95,99,111,111,107,105,101,73,110,116,101,114,99,101,112,116,111,114,87,114,97,112,112,101,114,2,1,218,219,242,162,16,1,9,35,97,98,115,111,108,117,116,101,2,1,46,25,235,45,16,1,17,35,97,99,99,111,110,115,101,110,116,111,45,99,108,105,99,107,2,2,106,58,59,226,153,99,241,166,16,1,10,35,97,102,45,99,119,45,98,111,120,2,1,144,106,243,61,16,1,11,35,97,103,101,45,118,101,114,105,102,121,2,1,150,136,154,41,16,1,6,35,97,108,101,114,116,2,1,151,179,246,29,16,1,7,35,98,97,110,110,101,114,2,1,109,166,225,3,16,1,14,35,98,97,110,110,101,114,67,111,110,116,101,110,116,2,1,69,19,130,213,16,1,11,35,98,97,110,110,101,114,73,110,102,111,2,1,168,127,198,18,16,1,13,35,98,97,114,114,97,45,112,111,108,105,99,121,2,1,92,140,149,169,16,1,8,35,98,108,117,114,45,98,103,2,1,164,148,134,183,16,1,7,35,98,110,114,99,107,115,2,1,231,2,15,56,16,1,14,35,98,111,116,116,111,109,45,98,97,110,110,101,114,2,1,11,125,195,157,16,1,10,35,98,111,116,116,111,109,98,97,114,2,1,64,159,85,34,16,1,11,35,98,111,120,45,118,101,114,105,102,121,2,1,150,136,154,41,16,1,13,35,98,111,120,82,105,99,104,105,101,115,116,97,2,2,193,206,151,43,230,123,6,38,16,1,8,35,98,121,115,119,105,110,100,2,1,149,124,131,64,16,1,8,35,99,45,109,111,100,97,108,2,1,34,206,177,60,16,1,9,35,99,77,101,115,115,97,103,101,2,1,140,84,67,87,16,1,21,35,99,97,115,115,97,102,111,114,101,110,115,101,45,99,111,111,107,105,101,115,2,2,1,62,248,202,115,131,81,1,16,1,4,35,99,99,77,2,1,171,129,123,55,16,1,11,35,99,100,95,119,114,97,112,112,101,114,2,1,92,186,190,202,16,1,8,35,99,107,101,95,112,108,99,2,1,163,113,28,122,16,1,4,35,99,107,110,2,1,203,137,41,88,16,1,3,35,99,109,2,1,128,205,75,90,16,1,12,35,99,109,112,45,111,118,101,114,108,97,121,2,1,69,60,210,156,16,1,13,35,99,109,112,67,111,110,116,97,105,110,101,114,2,1,40,196,180,206,16,1,17,35,99,111,110,116,97,105,110,101,114,80,114,105,118,97,99,121,2,1,32,33,21,121,16,1,12,35,99,111,111,107,105,101,45,119,97,108,108,2,1,113,73,36,141,16,1,15,35,99,111,111,107,105,101,66,97,114,77,111,100,97,108,2,2,21,148,116,34,241,64,63,137,16,1,17,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,2,1,7,136,69,124,16,1,17,35,99,111,111,107,105,101,77,101,108,97,66,97,110,110,101,114,2,1,177,106,160,73,16,1,13,35,99,111,111,107,105,101,95,97,108,101,114,116,2,1,189,177,130,180,16,1,16,35,99,111,111,107,105,101,109,111,100,97,108,54,53,52,55,2,1,217,55,152,153,16,1,27,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,98,111,116,116,111,109,95,108,101,102,116,2,1,106,99,182,186,16,1,7,35,99,111,111,107,117,112,2,1,60,73,19,216,16,1,14,35,99,111,111,107,121,95,99,111,110,116,101,110,116,2,1,242,180,11,228,16,1,5,35,100,84,99,102,2,1,27,137,59,132,16,1,17,35,100,99,98,45,98,108,97,99,107,45,115,99,114,101,101,110,2,1,236,3,191,67,16,1,7,35,100,105,115,66,111,116,2,1,76,105,233,196,16,1,6,35,100,105,115,99,108,2,1,50,46,10,130,16,1,9,35,100,105,115,99,114,101,116,111,2,1,115,248,186,210,16,1,20,35,100,105,118,45,99,111,110,102,105,114,109,45,112,114,105,118,97,99,121,2,1,126,234,115,130,16,1,15,35,100,105,118,82,73,78,71,79,66,97,110,110,101,114,2,1,90,60,136,94,16,1,23,35,100,111,110,101,119,105,102,105,95,99,111,111,107,105,101,95,97,100,118,105,99,101,2,1,211,214,69,97,16,1,12,35,102,105,114,115,116,45,118,105,115,105,116,2,1,97,220,118,213,16,1,7,35,102,111,111,116,101,114,2,1,68,19,115,217,16,1,4,35,104,105,100,2,1,75,242,251,206,16,1,15,35,104,111,108,100,111,110,45,111,118,101,114,108,97,121,2,1,98,197,58,77,16,1,22,35,105,99,101,103,114,97,109,95,109,101,115,115,97,103,101,95,49,48,57,55,49,2,1,141,131,172,211,16,1,19,35,105,110,102,111,114,109,97,116,105,118,97,80,114,105,118,97,99,121,2,1,88,236,101,6,16,1,18,35,105,117,98,101,110,100,97,45,99,115,45,98,97,110,110,101,114,2,1,208,203,244,42,16,1,10,35,108,108,95,98,97,110,110,101,114,2,1,241,1,137,65,16,1,8,35,108,108,95,105,110,102,111,2,1,241,1,137,65,16,1,4,35,109,97,103,2,1,49,121,109,110,16,1,13,35,109,97,115,107,45,111,118,101,114,108,97,121,2,1,7,136,69,124,16,1,11,35,109,101,115,115,97,103,101,66,97,114,2,1,174,49,73,253,16,1,18,35,109,103,105,116,95,110,111,116,105,102,105,99,97,116,105,111,110,2,1,168,102,33,148,16,1,18,35,109,121,95,112,114,105,118,97,99,121,95,119,105,100,103,101,116,2,1,37,245,117,123,16,1,10,35,110,111,114,109,97,116,105,118,97,2,3,35,107,181,132,58,72,114,209,86,62,36,248,16,1,11,35,112,97,103,101,95,104,105,100,101,114,2,1,125,172,175,3,16,1,23,35,112,105,95,116,114,97,99,107,105,110,103,95,111,112,116,95,105,110,95,100,105,118,2,1,66,85,28,6,16,1,23,35,112,105,120,101,108,102,97,98,114,105,99,97,45,99,115,45,98,97,110,110,101,114,2,1,34,214,200,69,16,1,13,35,112,111,112,99,111,111,107,105,101,115,98,103,2,1,80,21,205,199,16,1,16,35,112,114,105,118,97,99,121,95,97,100,118,105,115,111,114,2,1,206,166,95,131,16,1,11,35,112,114,105,118,97,99,121,100,105,118,2,1,162,139,30,0,16,1,8,35,112,117,116,104,101,114,101,2,1,166,253,74,94,16,1,23,35,114,100,115,45,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,2,1,166,254,129,45,16,1,12,35,115,66,95,105,110,106,101,99,116,101,100,2,1,93,139,204,61,16,1,15,35,115,101,99,45,98,97,110,110,101,114,45,100,105,118,2,1,0,167,16,200,16,1,12,35,115,108,105,100,101,45,112,97,110,101,108,2,1,223,106,126,128,16,1,14,35,115,108,105,100,105,110,103,45,112,111,112,117,112,2,1,189,72,54,86,16,1,20,35,115,112,108,97,115,104,98,111,120,45,97,100,118,99,111,114,110,101,114,2,1,10,207,69,253,16,1,13,35,115,116,105,99,107,121,45,112,111,112,117,112,2,1,208,42,18,206,16,1,15,35,115,121,115,116,101,109,45,109,101,115,115,97,103,101,2,2,8,205,122,2,29,10,244,21,16,1,12,35,116,97,45,99,99,45,109,111,100,97,108,2,1,127,129,64,131,16,1,8,35,116,104,101,112,114,105,118,2,1,171,176,84,3,16,1,19,35,116,105,109,101,115,45,108,101,103,97,108,45,110,111,116,105,99,101,2,1,199,203,186,1,16,1,11,35,116,114,97,99,101,45,102,111,114,109,2,1,9,22,252,186,16,1,8,35,117,100,116,68,97,114,107,2,1,36,101,198,80,16,1,9,35,117,105,65,118,118,105,115,105,2,1,89,212,7,126,16,1,19,35,117,110,105,112,103,45,99,111,111,107,105,101,99,104,111,105,99,101,2,1,9,101,101,13,16,1,13,35,118,105,115,105,116,111,114,95,105,110,102,111,2,1,147,22,99,130,16,1,14,35,119,97,114,110,105,110,103,45,112,111,112,117,112,2,1,254,42,117,181,16,1,15,35,119,114,97,112,68,105,115,99,108,97,105,109,101,114,2,1,237,253,58,162,16,1,11,35,120,49,100,95,99,104,111,105,115,101,2,1,136,53,214,86,16,1,17,35,122,102,45,45,97,108,101,114,116,115,45,112,97,110,101,108,2,1,7,31,117,30,8,1,30,46,77,73,80,67,111,110,115,101,110,116,95,102,117,108,108,95,115,99,114,101,101,110,95,95,52,117,83,119,109,2,1,212,231,221,187,8,1,7,46,95,49,50,100,57,55,2,1,119,37,76,98,8,1,7,46,95,50,109,109,121,98,2,1,119,37,76,98,8,1,8,46,95,51,117,88,53,68,115,2,1,232,103,100,181,8,1,9,46,95,67,76,95,109,97,105,110,2,12,71,143,230,223,71,164,180,242,111,163,200,126,135,18,177,74,135,143,39,19,153,157,220,61,164,245,209,129,174,130,105,78,218,85,117,55,224,142,53,194,228,161,96,15,251,109,36,3,8,1,19,46,97,99,99,101,116,116,97,95,99,111,111,107,105,101,115,95,109,101,2,1,0,115,4,217,8,1,7,46,97,99,116,105,118,101,2,2,6,237,1,9,48,58,219,139,8,1,11,46,97,108,101,114,116,45,105,110,102,111,2,1,93,44,31,92,8,1,16,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,2,1,26,0,9,12,8,1,27,46,97,109,103,100,112,114,99,111,111,107,105,101,45,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,144,16,99,20,8,1,37,46,97,110,105,109,97,116,101,95,95,97,110,105,109,97,116,101,100,46,97,110,105,109,97,116,101,95,95,115,108,105,100,101,73,110,85,112,2,1,93,55,62,168,8,1,17,46,98,97,99,107,103,114,111,117,110,100,45,112,111,112,117,112,2,1,51,3,97,245,8,1,14,46,98,108,97,99,107,95,111,118,101,114,108,97,121,2,1,113,73,249,213,8,1,10,46,98,111,108,100,95,116,101,120,116,2,1,194,212,159,6,8,1,30,46,98,111,115,101,45,105,110,102,111,66,97,114,50,48,49,54,45,45,102,105,120,101,100,66,111,116,116,111,109,2,1,34,213,5,187,8,1,23,46,99,98,111,115,115,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,2,2,94,38,133,127,235,23,174,202,8,1,8,46,99,99,45,108,105,110,107,2,1,110,254,12,61,8,1,15,46,99,99,95,112,108,97,99,101,104,111,108,100,101,114,2,2,8,5,30,223,197,73,90,181,8,1,5,46,99,101,110,116,2,1,127,223,162,60,8,1,13,46,99,104,101,99,107,45,112,111,108,105,99,121,2,1,7,39,46,52,8,1,6,46,99,107,95,105,102,2,1,96,199,32,133,8,1,15,46,99,108,45,98,97,110,110,101,114,45,98,111,100,121,2,1,133,170,23,200,8,1,4,46,99,108,109,2,1,72,101,25,153,8,1,10,46,99,111,108,97,119,45,100,105,118,2,1,119,188,247,138,8,1,10,46,99,111,110,116,80,111,112,117,112,2,1,24,235,151,66,8,1,8,46,99,111,110,116,101,110,116,2,1,9,9,240,51,8,1,14,46,99,111,111,107,105,101,95,119,105,110,100,111,119,2,1,197,102,108,186,8,1,51,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,95,99,111,111,107,105,101,115,67,111,110,115,101,110,116,66,97,110,110,101,114,95,95,106,115,119,71,72,2,1,175,254,143,100,8,1,12,46,99,115,115,45,49,103,106,113,117,111,97,2,1,143,61,19,199,8,1,11,46,99,115,115,45,106,121,97,107,122,97,2,1,255,84,225,2,8,1,13,46,99,119,95,99,111,110,116,97,105,110,101,114,2,1,107,221,212,203,8,1,11,46,99,121,110,45,98,97,110,110,101,114,2,1,47,87,206,229,8,1,10,46,100,105,45,98,97,110,110,101,114,2,1,177,254,95,89,8,1,26,46,101,120,112,108,105,99,105,116,95,99,111,110,115,101,110,116,95,98,97,99,107,115,105,100,101,2,1,150,156,196,7,8,1,22,46,102,97,115,99,105,97,45,97,118,118,105,115,111,45,99,111,111,99,107,105,101,2,1,228,226,196,60,8,1,12,46,102,105,114,115,116,45,118,105,115,105,116,2,1,214,23,64,243,8,1,48,46,102,114,101,101,112,114,105,118,97,99,121,112,111,108,105,99,121,45,99,111,109,45,45,45,110,98,45,105,110,116,101,114,115,116,105,116,105,97,108,45,111,118,101,114,108,97,121,2,1,41,170,99,44,8,1,22,46,102,117,108,108,115,99,114,101,101,110,95,98,111,120,95,108,101,103,97,108,101,2,1,198,131,41,191,8,1,15,46,103,115,45,101,117,99,111,111,107,105,101,108,97,119,2,1,64,84,8,168,8,1,12,46,105,110,102,111,45,98,97,110,110,101,114,2,1,208,153,105,209,8,1,17,46,105,110,102,111,45,98,97,114,45,119,114,97,112,112,101,114,2,1,221,174,57,59,8,1,13,46,105,110,102,111,45,112,114,105,118,97,99,121,2,1,133,49,67,229,8,1,16,46,105,110,105,98,105,115,99,105,95,115,102,111,110,100,111,2,1,198,131,41,191,8,1,15,46,105,110,118,105,101,119,95,97,110,105,109,97,116,101,2,1,30,162,207,19,8,1,17,46,105,122,105,77,111,100,97,108,45,111,118,101,114,108,97,121,2,1,230,165,158,177,8,1,9,46,106,99,111,110,102,105,114,109,2,1,218,120,107,234,8,1,14,46,106,99,111,110,102,105,114,109,45,99,101,108,108,2,1,218,120,107,234,8,1,7,46,106,115,115,50,49,56,2,1,77,209,17,42,8,1,7,46,106,115,115,50,52,51,2,1,77,209,17,42,8,1,19,46,106,117,115,116,105,99,97,45,99,111,111,107,105,101,95,98,97,114,2,1,143,110,89,249,8,1,10,46,106,119,45,112,111,112,117,112,115,2,1,202,188,200,157,8,1,29,46,109,97,105,110,45,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,224,230,92,148,8,1,22,46,109,97,112,115,116,111,114,101,45,99,111,111,107,105,101,45,112,97,110,101,108,2,1,156,22,160,181,8,1,8,46,109,101,115,115,97,103,101,2,2,54,231,254,11,166,254,169,34,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,2,21,148,116,34,241,64,63,137,8,1,13,46,109,111,100,97,108,77,101,115,115,97,103,101,2,1,166,234,112,125,8,1,15,46,109,111,100,97,108,95,95,111,118,101,114,108,97,121,2,1,192,58,15,42,8,1,15,46,109,111,100,97,108,115,45,119,114,97,112,112,101,114,2,1,73,108,230,44,8,1,20,46,109,112,112,45,105,115,45,111,112,101,110,46,109,112,112,45,98,111,120,2,1,7,190,126,228,8,1,15,46,109,120,45,48,46,119,45,49,48,48,46,114,111,119,2,1,30,162,207,19,8,1,12,46,110,111,116,105,99,101,45,119,114,97,112,2,1,146,124,96,187,8,1,19,46,110,112,45,99,111,111,107,105,101,115,95,95,115,99,114,101,101,110,2,1,41,14,96,187,8,1,7,46,110,115,45,98,111,120,2,1,212,176,163,47,8,1,8,46,111,45,109,111,100,97,108,2,1,172,71,21,167,8,1,6,46,111,112,116,105,110,2,1,8,59,221,98,8,1,12,46,112,114,105,118,97,99,121,45,109,115,103,2,1,130,189,226,187,8,1,17,46,112,114,105,118,97,99,121,83,116,97,116,101,109,101,110,116,2,1,248,140,84,234,8,1,19,46,114,97,105,110,49,45,99,112,45,99,111,110,116,97,105,110,101,114,2,1,20,229,199,37,8,1,16,46,114,100,115,45,109,111,100,97,108,45,112,111,112,117,112,2,1,166,254,129,45,8,1,21,46,114,101,97,99,116,45,111,110,99,108,105,99,107,111,117,116,115,105,100,101,2,1,191,95,62,172,8,1,9,46,114,115,116,98,111,120,101,115,2,1,214,178,219,246,8,1,18,46,115,50,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,49,10,55,175,8,1,10,46,115,95,98,108,117,101,98,111,120,2,1,129,174,147,220,8,1,10,46,115,99,45,100,120,103,79,105,81,2,1,52,237,18,191,8,1,17,46,115,99,45,102,122,110,78,118,76,46,105,65,115,122,104,99,2,1,202,113,24,184,8,1,21,46,115,105,116,101,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,115,2,1,100,252,107,55,8,1,14,46,115,108,100,115,45,98,97,99,107,100,114,111,112,2,1,166,211,110,27,8,1,11,46,115,108,100,115,45,109,111,100,97,108,2,1,166,211,110,27,8,1,37,46,115,113,115,45,97,110,110,111,117,110,99,101,109,101,110,116,45,98,97,114,45,99,117,115,116,111,109,45,108,111,99,97,116,105,111,110,2,1,138,24,204,127,8,1,13,46,115,116,105,99,107,121,70,111,111,116,101,114,2,1,149,95,20,223,8,1,28,46,115,118,118,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,119,251,93,9,8,1,28,46,116,101,108,99,101,108,45,98,97,110,110,101,114,45,97,118,105,115,111,45,99,111,111,107,105,101,115,2,1,36,226,26,27,8,1,13,46,116,119,99,99,95,95,110,111,116,105,99,101,2,1,192,152,161,0,8,1,10,46,117,105,45,100,105,97,108,111,103,2,1,209,164,152,113,8,1,18,46,117,105,45,119,105,100,103,101,116,45,111,118,101,114,108,97,121,2,1,209,164,152,113,8,1,11,46,117,114,103,101,110,116,45,109,115,103,2,1,9,181,124,172,8,1,14,46,119,104,105,116,101,95,99,111,110,116,101,110,116,2,1,113,73,249,213,8,1,48,46,119,111,114,100,112,114,101,115,115,45,103,100,112,114,45,112,114,105,118,97,99,121,45,115,101,116,116,105,110,103,115,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,255,144,7,114,8,1,4,46,120,99,98,2,1,60,137,181,35,8,1,15,46,121,97,112,45,99,111,111,107,105,101,45,98,97,114,2,1,237,149,152,252,8,1,18,46,121,117,105,51,45,119,105,100,103,101,116,45,109,111,100,97,108,2,2,23,58,230,193,169,210,82,65,8,1,23,46,121,117,105,51,45,119,105,100,103,101,116,46,112,111,112,117,112,45,118,105,101,119,2,1,34,208,249,230,8,1,16,46,122,97,107,105,95,112,99,104,95,98,97,110,110,101,114,2,1,239,34,11,11,0,1,26,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,34,93,2,1,8,147,142,154,0,1,40,100,105,118,91,97,114,105,97,45,108,97,98,101,108,61,34,73,110,102,111,114,109,97,116,105,118,97,32,115,117,105,32,99,111,111,107,105,101,34,93,2,1,8,56,232,62,0,1,30,100,105,118,91,99,108,97,115,115,42,61,34,45,99,111,111,107,105,101,115,83,101,99,116,105,111,110,45,34,93,2,1,58,207,0,91,0,1,17,100,105,118,91,105,100,94,61,34,99,110,116,110,116,45,34,93,2,1,126,106,157,99,0,1,109,100,105,118,91,115,116,121,108,101,61,34,32,119,105,100,116,104,58,32,49,48,48,37,59,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,59,32,112,97,100,100,105,110,103,45,116,111,112,58,32,53,112,120,59,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,53,112,120,59,32,102,111,110,116,45,115,105,122,101,58,49,50,112,120,59,32,122,45,105,110,100,101,120,58,32,50,48,34,93,2,1,33,239,221,61,0,1,104,100,105,118,91,115,116,121,108,101,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,69,50,69,50,69,50,59,102,108,111,97,116,58,108,101,102,116,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,53,48,112,120,59,108,101,102,116,58,48,59,32,104,101,105,103,104,116,58,54,48,112,120,59,119,105,100,116,104,58,49,48,48,37,59,34,93,2,1,78,236,191,75,0,1,97,100,105,118,91,115,116,121,108,101,61,34,112,97,100,100,105,110,103,58,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,102,55,55,57,48,48,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,49,50,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,59,34,93,2,1,16,165,190,172,0,1,128,0,0,0,151,100,105,118,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,122,45,105,110,100,101,120,58,32,57,57,57,59,32,98,111,116,116,111,109,58,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,32,114,105,103,104,116,58,32,48,112,120,59,32,109,97,114,103,105,110,58,32,48,112,120,32,97,117,116,111,59,32,109,97,120,45,119,105,100,116,104,58,32,57,54,48,112,120,59,32,109,105,110,45,119,105,100,116,104,58,32,51,54,48,112,120,59,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,34,93,2,1,22,165,111,227,0,1,38,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,34,93,2,1,36,215,3,215,0,1,43,115,99,114,105,112,116,32,43,32,100,105,118,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,58,32,35,48,48,48,48,48,48,59,34,93,2,1,8,63,92,100,16,1,13,35,70,111,111,116,101,114,80,111,108,105,99,121,2,1,117,114,6,184,16,1,11,35,97,103,114,101,101,80,97,110,101,108,2,1,36,31,185,29,16,1,10,35,97,103,114,101,101,109,101,110,116,2,1,87,147,202,156,16,1,15,35,97,103,114,101,101,109,101,110,116,45,97,114,101,97,2,1,20,59,92,111,16,1,14,35,99,95,112,111,108,105,99,121,95,119,114,97,112,2,1,174,131,197,211,16,1,16,35,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,2,1,59,59,92,12,16,1,14,35,99,111,111,107,105,101,45,99,111,110,102,105,103,2,1,79,21,220,182,16,1,10,35,99,111,111,107,105,101,65,108,116,2,1,6,77,54,3,16,1,10,35,102,108,111,97,116,65,114,101,97,2,1,125,29,209,129,16,1,12,35,102,117,110,99,45,99,111,111,107,105,101,2,1,103,116,17,149,16,1,12,35,103,100,112,114,45,98,97,110,110,101,114,2,1,89,132,169,119,16,1,8,35,106,115,45,103,100,112,114,2,1,80,210,212,126,16,1,17,35,108,97,121,101,114,95,98,111,97,114,100,95,97,114,101,97,2,1,56,94,115,37,16,1,14,35,109,111,100,97,108,45,99,111,110,116,101,110,116,2,1,17,71,87,137,16,1,14,35,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,14,119,116,0,16,1,7,35,109,111,114,100,97,108,2,1,71,209,0,216,16,1,20,35,111,110,101,116,114,117,115,116,45,98,97,110,110,101,114,45,115,100,107,2,1,38,157,35,119,16,1,20,35,112,105,45,112,99,45,97,108,108,45,112,111,112,117,112,108,101,102,116,2,1,81,43,156,223,16,1,13,35,112,111,108,105,99,121,95,109,111,100,97,108,2,1,54,231,60,4,16,1,11,35,115,101,99,95,99,111,111,107,105,101,2,1,153,87,86,125,16,1,13,35,116,104,112,95,110,111,116,102,95,100,105,118,2,1,148,185,40,166,16,1,18,35,116,109,112,95,119,114,97,112,95,105,110,102,111,95,98,111,120,2,1,49,150,3,213,8,1,14,46,67,111,111,107,105,101,67,111,110,102,105,114,109,2,1,46,170,80,129,8,1,16,46,97,110,110,111,116,97,116,105,111,110,45,97,114,101,97,2,1,212,109,74,211,8,1,16,46,97,116,101,110,116,105,111,110,95,99,111,111,107,105,101,2,1,112,163,189,93,8,1,23,46,98,111,116,116,111,109,95,111,112,116,111,117,116,95,97,110,110,111,117,110,99,101,2,1,80,211,20,117,8,1,10,46,99,111,110,115,101,110,116,95,99,2,1,195,191,229,104,8,1,15,46,99,111,111,107,105,101,45,105,110,113,117,105,114,121,2,1,216,7,116,122,8,1,37,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,103,114,101,101,109,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,86,192,63,145,8,1,12,46,99,111,111,107,105,101,97,103,114,101,101,2,1,35,213,21,71,8,1,11,46,99,111,111,107,105,101,100,105,97,103,2,1,38,251,176,194,8,1,23,46,99,111,111,107,105,101,115,95,99,111,111,107,105,101,115,95,95,100,87,76,102,79,2,1,76,139,68,245,8,1,13,46,102,105,120,101,100,95,98,97,110,110,101,114,2,1,142,137,102,99,8,1,9,46,102,105,120,101,100,98,111,116,2,1,112,175,252,238,8,1,18,46,102,111,111,116,101,114,95,100,105,115,99,108,97,105,109,101,114,2,1,181,169,159,242,8,1,13,46,102,111,111,116,101,114,115,116,105,99,107,121,2,1,55,238,156,189,8,1,7,46,104,74,85,77,108,90,2,1,230,146,217,55,8,1,17,46,105,110,102,111,67,111,110,115,101,110,116,77,111,100,97,108,2,1,201,37,192,60,8,1,14,46,108,95,99,111,111,107,105,101,65,103,114,101,101,2,1,127,200,78,0,8,1,18,46,109,45,115,110,97,99,107,98,97,114,45,110,111,116,105,99,101,2,1,112,84,170,202,8,1,15,46,109,95,99,111,111,107,105,101,66,97,110,110,101,114,2,1,62,109,134,83,8,1,12,46,109,111,100,95,109,101,115,115,97,103,101,2,1,14,119,116,0,8,1,11,46,109,111,100,97,108,45,103,100,112,114,2,1,113,211,183,86,8,1,14,46,109,111,100,97,108,95,99,111,110,116,101,110,116,2,1,80,210,212,194,8,1,14,46,110,111,116,101,112,97,110,101,108,87,114,97,112,2,1,33,93,106,39,8,1,14,46,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,227,211,246,67,8,1,15,46,110,111,116,105,102,121,95,115,116,105,99,107,105,101,2,1,126,210,206,184,8,1,9,46,110,119,45,109,111,100,97,108,2,1,80,211,20,117,8,1,6,46,111,112,116,73,110,2,1,27,74,66,64,8,1,8,46,111,112,116,105,110,102,111,2,1,127,197,114,35,8,1,6,46,112,97,110,101,108,2,1,113,162,255,189,8,1,19,46,112,101,114,115,111,110,97,108,73,110,102,111,95,95,97,114,101,97,2,1,96,134,128,143,8,1,7,46,112,111,108,105,99,121,2,1,82,22,250,9,8,1,10,46,112,111,108,105,99,121,70,105,120,2,1,14,241,68,143,8,1,13,46,112,111,112,117,112,95,98,97,110,110,101,114,2,1,59,31,247,124,8,1,16,46,114,45,102,111,111,116,101,114,45,99,111,111,107,105,101,2,1,167,190,130,221,8,1,16,46,114,101,117,115,101,45,99,111,109,112,111,110,101,110,116,2,1,126,163,114,26,8,1,17,46,115,116,45,84,101,114,109,115,95,87,114,97,112,112,101,114,2,1,126,208,122,111,8,1,27,46,116,97,114,116,101,97,117,99,105,116,114,111,110,66,101,102,111,114,101,86,105,115,105,98,108,101,2,1,184,87,87,10,8,1,19,46,116,111,97,115,116,45,98,111,116,116,111,109,45,114,105,103,104,116,2,1,99,71,181,160,8,1,16,46,118,45,115,110,97,99,107,45,45,98,111,116,116,111,109,2,1,237,32,106,215,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,71,68,80,82,95,95,67,111,110,116,97,105,110,101,114,45,34,93,2,1,126,250,206,86,16,1,5,35,65,103,54,112,2,1,114,216,29,251,8,1,14,46,99,111,111,107,105,101,80,111,112,65,114,101,97,2,1,34,217,115,128,8,1,17,46,103,108,111,98,97,108,45,115,116,97,116,101,109,101,110,116,2,1,131,88,189,201,16,1,14,35,80,114,105,118,97,99,121,80,111,108,105,99,121,2,1,112,34,108,1,16,1,12,35,99,111,110,115,101,110,116,45,98,111,120,2,1,49,110,132,40,16,1,13,35,99,111,111,107,105,101,45,105,110,110,101,114,2,1,44,31,47,98,16,1,8,35,101,117,67,67,119,105,110,2,1,66,245,164,242,16,1,15,35,109,97,110,97,103,101,45,99,111,111,107,105,101,115,2,3,7,236,111,19,171,27,192,149,171,28,94,171,16,1,12,35,109,101,115,115,97,103,101,45,98,97,114,2,1,187,16,144,7,16,1,9,35,109,115,103,45,119,114,97,112,2,1,13,165,104,113,16,1,13,35,110,111,116,105,102,105,99,97,116,105,111,110,2,1,70,252,247,218,16,1,15,35,112,114,105,118,97,99,121,45,112,111,112,45,117,112,2,1,175,196,29,108,16,1,15,35,122,45,116,101,114,109,115,45,111,102,45,117,115,101,2,1,122,223,150,49,8,1,7,46,95,50,99,66,95,111,2,1,187,6,225,154,8,1,7,46,95,51,89,65,101,78,2,1,232,242,225,187,8,1,13,46,99,111,110,116,101,110,116,80,97,100,115,76,2,1,10,88,103,59,8,1,20,46,99,111,111,107,105,101,73,110,102,111,67,111,110,116,97,105,110,101,114,2,1,220,156,44,204,8,1,7,46,100,72,116,107,119,114,2,1,2,70,49,121,8,1,7,46,100,110,80,118,109,103,2,1,58,38,33,27,8,1,19,46,103,100,112,114,80,111,112,85,112,45,114,111,111,116,45,49,122,84,2,1,213,199,115,175,8,1,7,46,103,115,79,84,118,110,2,1,194,55,227,187,8,1,16,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,2,1,187,14,79,227,8,1,14,46,106,113,45,116,111,97,115,116,45,119,114,97,112,2,1,187,14,79,227,8,1,34,46,109,112,112,45,99,111,110,116,97,105,110,101,114,45,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,45,98,97,114,2,1,171,27,220,142,8,1,7,46,112,111,108,105,99,121,2,1,123,13,208,236,8,1,13,46,112,111,112,117,112,45,102,105,108,116,101,114,2,1,142,190,147,75,8,1,14,46,112,111,112,117,112,45,109,101,115,115,97,103,101,2,1,171,28,76,212,8,1,5,46,112,114,105,118,2,1,8,33,141,239,8,1,11,46,115,101,116,95,99,111,111,107,105,101,2,1,128,218,10,235,8,1,14,46,98,97,115,105,99,76,105,103,104,116,98,111,120,2,1,101,229,235,152,8,1,22,46,98,108,97,104,95,98,108,97,104,95,98,108,97,104,95,104,111,108,100,101,114,2,1,144,176,82,35,8,1,21,46,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,2,1,18,188,196,86,8,1,22,46,112,97,114,101,110,116,45,99,111,110,116,97,105,110,101,114,45,105,100,103,121,2,1,226,242,231,222,8,1,13,46,119,117,95,99,111,110,116,97,105,110,101,114,2,1,233,15,255,200,8,1,27,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,115,101,99,116,105,111,110,45,114,111,111,116,2,1,15,66,68,104,16,1,27,35,95,95,110,101,120,116,32,62,32,100,105,118,91,99,108,97,115,115,94,61,34,99,115,115,34,93,2,3,33,198,201,89,34,84,15,96,202,187,42,228,16,1,26,35,103,108,111,98,97,108,45,111,118,101,114,108,97,121,45,98,97,99,107,103,114,111,117,110,100,2,1,192,127,8,55,16,1,6,35,107,106,101,107,115,2,1,166,183,209,166,16,1,7,35,111,112,116,45,105,110,2,2,32,11,221,38,109,177,210,151,16,1,7,35,116,111,112,98,97,114,2,1,196,72,62,79,8,1,14,46,71,68,80,82,99,111,110,116,97,105,110,101,114,2,1,138,6,86,109,8,1,14,46,98,99,99,45,99,111,110,116,97,105,110,101,114,2,1,202,187,25,116,8,1,7,46,99,73,119,84,78,104,2,1,170,26,75,196,8,1,7,46,99,98,120,77,116,70,2,1,33,198,201,89,8,1,13,46,99,111,99,111,45,119,114,97,112,112,101,114,2,1,144,120,237,99,8,1,11,46,99,115,115,45,112,112,45,98,111,120,2,1,170,26,75,196,8,1,15,46,102,105,120,101,100,45,109,101,115,115,97,103,101,115,2,1,33,198,88,28,8,1,20,46,102,111,111,116,101,114,67,117,114,116,97,105,110,67,111,111,107,105,101,2,1,164,99,77,183,8,1,26,46,103,108,111,98,97,108,45,111,118,101,114,108,97,121,45,98,97,99,107,103,114,111,117,110,100,2,1,63,178,143,207,8,1,10,46,107,97,107,101,95,119,114,97,112,2,1,33,229,167,253,8,1,26,46,110,114,107,45,109,97,115,116,104,101,97,100,95,95,105,110,102,111,45,98,97,110,110,101,114,2,1,202,187,52,79,8,1,14,46,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,190,168,103,205,8,1,27,46,112,112,45,97,110,110,111,117,110,99,101,109,101,110,116,45,98,97,114,45,98,111,116,116,111,109,2,1,255,134,64,243,8,1,14,46,115,99,104,105,98,115,116,101,100,45,98,97,114,2,1,155,10,151,119,8,1,19,46,115,104,111,119,45,99,111,111,107,105,101,45,112,111,112,45,117,112,2,1,107,8,45,39,8,1,9,46,119,51,45,98,108,97,99,107,2,1,166,183,209,166,8,1,11,46,119,102,45,115,101,99,116,105,111,110,2,1,26,168,103,204,0,1,34,91,97,114,105,97,45,108,97,98,101,108,61,34,73,110,102,111,114,109,97,115,106,111,110,115,107,97,112,115,108,101,114,34,93,2,1,57,79,65,194,0,1,31,100,105,118,91,100,97,116,97,45,116,101,115,116,61,34,99,111,111,107,105,101,45,116,111,97,115,116,101,114,34,93,2,1,186,177,152,235,0,1,22,100,105,118,91,105,100,94,61,34,115,112,95,109,101,115,115,97,103,101,95,34,93,2,1,66,221,253,135,0,1,8,102,105,101,108,100,115,101,116,2,1,88,232,164,222,16,1,13,35,100,97,116,97,45,112,114,105,118,97,99,121,2,1,178,109,161,226,16,1,8,35,104,101,97,100,101,114,48,2,1,181,87,208,207,16,1,7,35,112,111,108,105,99,121,2,1,101,158,114,125,16,1,14,35,112,114,105,118,97,99,121,80,111,108,105,99,121,2,1,118,216,214,46,8,1,21,46,99,111,111,107,105,101,95,99,111,111,107,105,101,95,95,118,119,95,102,115,2,1,116,117,92,30,8,1,15,46,106,99,111,110,102,105,114,109,45,108,105,103,104,116,2,1,159,99,185,159,8,1,13,46,106,99,111,110,102,105,114,109,45,114,111,119,2,1,159,99,185,159,8,1,5,46,109,101,109,111,2,1,50,180,100,62,8,1,12,46,112,111,112,117,112,45,109,111,100,97,108,2,1,177,250,84,223,8,1,14,46,112,114,105,118,97,99,121,95,109,111,100,97,108,2,1,136,250,179,156,8,1,16,46,116,111,112,45,99,111,110,116,101,110,116,45,98,97,114,2,1,137,110,51,102,16,1,10,35,66,111,120,67,111,111,107,105,101,2,1,157,103,156,223,16,1,8,35,66,111,120,76,105,110,101,2,11,3,242,237,119,25,131,114,252,62,90,42,212,129,194,38,252,130,22,113,223,133,5,228,161,146,57,223,248,159,37,202,218,198,153,143,157,210,100,40,232,243,241,177,98,16,1,11,35,67,65,80,80,68,105,97,108,111,103,2,1,141,36,205,72,16,1,7,35,67,79,79,75,73,69,2,1,15,126,58,104,16,1,9,35,67,80,95,76,97,121,101,114,2,1,130,28,122,215,16,1,15,35,87,80,45,99,111,111,107,105,101,45,105,110,102,111,2,5,18,186,21,98,38,247,198,142,77,188,199,243,161,89,69,75,190,212,137,225,16,1,5,35,95,95,99,112,2,2,32,155,181,152,227,172,51,172,16,1,10,35,97,108,101,114,116,95,98,97,114,2,4,4,13,31,249,14,83,5,112,199,74,182,199,245,64,127,80,16,1,12,35,97,108,101,114,116,95,112,111,112,117,112,2,1,138,184,128,127,16,1,15,35,97,110,97,108,121,116,105,99,115,77,111,100,97,108,2,1,88,19,38,77,16,1,9,35,98,97,99,107,100,114,111,112,2,4,32,128,93,6,77,194,65,65,165,128,114,238,225,4,173,42,16,1,10,35,98,97,110,110,101,114,77,83,71,2,1,243,108,251,110,16,1,25,35,98,97,122,105,110,103,97,45,109,117,102,102,105,110,45,99,111,110,116,97,105,110,101,114,2,1,42,95,235,57,16,1,5,35,98,108,117,114,2,1,26,147,131,234,16,1,13,35,98,111,116,116,111,109,45,99,104,97,114,109,2,1,94,205,105,207,16,1,16,35,98,111,120,45,112,111,108,105,116,121,107,97,45,112,114,2,1,132,77,198,127,16,1,9,35,98,111,120,95,105,110,102,111,2,1,190,81,121,175,16,1,11,35,99,67,111,110,116,97,105,110,101,114,2,2,104,218,84,202,106,243,4,234,16,1,6,35,99,73,110,102,111,2,1,11,184,17,66,16,1,8,35,99,95,112,111,112,101,107,2,1,87,27,50,56,16,1,9,35,99,99,95,112,111,112,117,112,2,1,212,128,59,36,16,1,12,35,99,99,110,115,116,95,95,109,97,105,110,2,1,121,105,41,29,16,1,5,35,99,102,102,99,2,1,129,199,196,245,16,1,5,35,99,108,97,119,2,2,129,179,32,138,142,125,93,36,16,1,6,35,99,108,111,115,101,2,1,251,65,159,7,16,1,3,35,99,110,2,1,154,100,19,60,16,1,21,35,99,111,110,115,101,110,116,115,80,111,108,105,99,121,68,105,97,108,111,103,2,1,177,78,54,71,16,1,14,35,99,111,110,116,97,105,110,101,114,95,118,115,109,2,1,245,162,62,66,16,1,5,35,99,111,111,107,2,1,253,121,80,193,16,1,13,35,99,111,111,107,105,101,45,102,114,97,109,101,2,1,237,129,209,61,16,1,20,35,99,111,111,107,105,101,45,105,110,102,111,45,111,118,101,114,108,97,121,2,1,117,184,245,176,16,1,17,35,99,111,111,107,105,101,77,111,110,115,116,101,114,79,118,114,2,1,244,89,37,127,16,1,17,35,99,111,111,107,105,101,87,97,114,110,105,110,103,78,101,119,2,1,61,106,65,120,16,1,15,35,99,111,111,107,105,101,95,105,110,102,111,95,101,115,2,1,222,76,76,225,16,1,19,35,99,111,111,107,105,101,95,105,110,102,111,95,115,101,108,49,95,110,2,1,191,247,55,168,16,1,12,35,99,111,111,107,105,101,109,111,100,97,108,2,1,55,123,21,15,16,1,22,35,99,111,111,107,105,101,115,45,98,97,110,101,114,45,119,114,97,112,112,101,114,2,1,195,9,124,230,16,1,30,35,99,111,111,107,105,101,115,45,105,110,102,111,45,109,111,100,97,108,95,98,97,99,107,103,114,111,117,110,100,2,1,166,190,183,3,16,1,27,35,99,111,111,107,105,101,115,45,105,110,102,111,45,109,111,100,97,108,95,119,114,97,112,112,101,114,2,1,166,190,183,3,16,1,12,35,99,111,111,107,105,101,115,45,108,97,119,2,3,42,243,101,153,149,192,59,194,233,192,182,26,16,1,12,35,99,111,111,107,105,101,115,82,111,100,111,2,1,66,79,168,86,16,1,13,35,99,111,111,107,105,101,115,95,116,101,120,116,2,1,226,38,231,25,16,1,4,35,99,111,112,2,4,59,90,170,250,112,115,119,53,121,137,232,236,216,43,73,251,16,1,13,35,99,114,111,115,115,45,100,105,97,108,111,103,2,2,12,45,184,210,48,149,124,193,16,1,7,35,99,117,95,98,97,114,2,2,58,158,10,69,67,143,157,71,16,1,5,35,99,120,99,120,2,1,115,70,249,186,16,1,22,35,100,105,100,111,109,105,66,108,111,99,107,78,97,118,105,103,97,116,105,111,110,2,1,214,115,14,37,16,1,7,35,100,105,118,95,97,99,2,1,226,114,6,152,16,1,9,35,102,116,99,99,98,99,109,100,2,1,65,212,172,10,16,1,27,35,103,97,114,117,97,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,112,111,112,117,112,2,1,237,236,111,51,16,1,21,35,103,112,95,99,111,111,107,105,101,95,97,103,114,101,101,109,101,110,116,115,2,1,139,111,105,87,16,1,15,35,104,111,108,100,111,110,45,111,118,101,114,108,97,121,2,1,45,88,150,25,16,1,21,35,105,102,114,97,109,101,80,111,112,117,112,67,111,110,116,97,105,110,101,114,2,1,192,8,133,144,16,1,17,35,105,109,112,111,114,116,97,110,116,45,110,111,116,105,99,101,2,1,106,119,237,19,16,1,4,35,105,110,102,2,1,81,46,97,10,16,1,5,35,105,110,102,111,2,1,120,59,225,181,16,1,9,35,105,110,102,111,45,98,97,114,2,2,20,162,139,88,195,89,197,170,16,1,17,35,105,110,102,111,68,105,118,67,111,110,116,97,105,110,101,114,2,1,136,72,181,162,16,1,11,35,105,110,102,111,95,99,95,98,111,120,2,4,117,213,82,146,201,194,54,189,237,236,68,39,251,111,244,243,16,1,15,35,105,110,102,111,95,99,111,110,116,97,105,110,101,114,2,3,69,236,233,8,106,18,151,120,180,79,109,191,16,1,8,35,105,110,102,111,98,97,114,2,1,95,142,19,20,16,1,7,35,105,116,108,98,111,120,2,1,206,105,54,21,16,1,6,35,107,101,107,115,101,2,1,121,249,134,33,16,1,31,35,107,108,97,117,122,117,108,97,95,105,110,102,111,114,109,97,99,121,106,110,97,95,110,97,107,108,97,100,107,97,2,1,193,30,27,169,16,1,12,35,107,113,115,45,98,111,120,45,116,108,111,2,1,85,125,109,168,16,1,8,35,107,113,115,45,116,108,111,2,1,85,125,109,168,16,1,8,35,109,101,110,117,98,97,114,2,1,113,6,177,40,16,1,9,35,109,101,110,117,115,68,105,118,2,1,212,244,222,245,16,1,8,35,109,101,115,115,97,103,101,2,2,79,153,96,11,103,75,218,220,16,1,20,35,109,101,115,115,97,103,101,45,116,111,112,45,119,114,97,112,112,101,114,2,1,192,71,198,201,16,1,13,35,109,101,115,115,97,103,101,80,111,112,117,112,2,1,232,105,61,124,16,1,12,35,109,101,115,115,97,103,101,95,98,111,120,2,1,148,40,128,206,16,1,13,35,109,101,115,115,97,103,101,95,119,114,97,112,2,1,133,209,186,53,16,1,14,35,109,105,97,115,116,111,115,122,107,111,108,101,110,2,1,84,0,149,202,16,1,6,35,109,111,100,57,56,2,1,211,46,41,205,16,1,6,35,109,111,100,57,57,2,1,104,208,151,39,16,1,21,35,109,111,100,97,108,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,13,221,236,179,16,1,6,35,109,111,114,101,49,2,1,214,115,14,37,16,1,7,35,109,112,111,112,100,119,2,1,95,251,71,71,16,1,7,35,109,112,111,112,117,112,2,1,95,251,71,71,16,1,9,35,109,115,103,76,97,121,101,114,2,1,190,81,57,15,16,1,11,35,109,121,77,111,100,97,108,112,111,108,2,1,173,199,166,207,16,1,16,35,110,97,118,98,97,114,95,110,111,116,105,99,101,95,49,2,1,102,26,23,173,16,1,17,35,110,97,118,98,97,114,95,110,111,116,105,99,101,95,49,49,2,1,84,37,52,251,16,1,17,35,110,97,118,98,97,114,95,110,111,116,105,99,101,95,49,50,2,1,88,205,155,81,16,1,11,35,110,101,119,45,112,111,108,105,99,121,2,1,221,33,197,78,16,1,11,35,110,111,116,105,99,101,95,98,97,114,2,5,14,220,139,59,66,254,92,148,92,167,97,60,170,184,69,89,190,81,52,69,16,1,13,35,110,111,116,105,102,121,99,111,111,107,105,101,2,1,22,121,221,194,16,1,12,35,111,114,101,111,115,45,112,111,112,117,112,2,1,81,28,130,42,16,1,8,35,112,108,97,110,115,122,97,2,1,130,58,8,70,16,1,7,35,112,111,108,99,105,97,2,1,43,216,5,182,16,1,7,35,112,111,108,105,99,121,2,1,192,10,154,115,16,1,9,35,112,111,108,105,116,121,107,97,2,4,23,108,189,227,129,49,205,105,140,167,242,199,193,58,183,55,16,1,6,35,112,111,112,101,107,2,1,100,15,193,9,16,1,11,35,112,111,112,117,112,45,112,101,107,97,2,1,1,52,245,77,16,1,13,35,112,111,112,117,112,67,111,110,116,97,99,116,2,1,193,58,165,90,16,1,9,35,112,111,112,117,112,68,105,118,2,2,190,81,121,203,221,118,65,74,16,1,13,35,112,111,115,99,111,111,107,105,101,108,97,119,2,1,190,81,42,10,16,1,3,35,112,112,2,1,243,255,251,61,16,1,20,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,105,110,102,111,2,1,164,196,124,140,16,1,15,35,112,114,105,118,97,99,121,77,101,115,115,97,103,101,2,1,129,89,193,63,16,1,8,35,114,101,103,95,97,108,108,2,1,193,20,145,199,16,1,16,35,114,111,97,114,45,97,108,101,114,116,45,119,114,97,112,2,1,190,81,10,193,16,1,5,35,114,111,100,111,2,1,150,227,144,214,16,1,9,35,114,111,100,111,45,98,97,114,2,1,120,134,189,81,16,1,11,35,114,111,100,111,45,112,111,112,117,112,2,1,233,119,208,255,16,1,9,35,114,111,100,111,95,97,108,108,2,1,195,94,4,122,16,1,12,35,114,111,100,111,95,99,111,111,107,105,101,2,1,199,74,182,199,16,1,10,35,115,97,121,99,111,111,107,105,101,2,1,217,81,35,124,16,1,13,35,115,105,109,112,108,101,45,109,111,100,97,108,2,1,160,194,99,222,16,1,21,35,115,105,109,112,108,101,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,166,122,101,10,16,1,22,35,115,105,116,101,45,110,97,118,105,103,97,116,105,111,110,32,126,32,100,105,118,2,1,72,231,66,192,16,1,18,35,115,111,102,116,77,101,115,115,97,103,101,115,45,108,105,115,116,2,1,193,57,233,251,16,1,16,35,115,111,110,114,105,115,111,45,99,111,111,107,105,101,115,2,1,204,76,213,124,16,1,16,35,115,112,101,99,105,97,108,98,111,120,45,105,110,102,111,2,1,10,141,65,48,16,1,9,35,115,119,115,109,111,100,97,108,2,2,58,64,207,60,77,171,241,75,16,1,11,35,115,119,115,111,118,101,114,108,97,121,2,2,58,64,207,60,77,171,241,75,16,1,19,35,116,105,109,101,115,45,108,101,103,97,108,45,110,111,116,105,99,101,2,1,11,210,74,29,16,1,13,35,116,111,111,108,116,105,112,45,104,111,111,107,2,1,255,38,30,248,16,1,9,35,116,111,112,48,105,110,102,111,2,1,88,232,10,3,16,1,18,35,116,111,112,73,110,102,111,67,111,110,116,97,105,110,101,114,48,2,7,66,190,44,87,79,178,25,219,123,246,68,144,136,107,200,172,181,121,140,179,214,116,54,77,229,92,69,149,16,1,18,35,116,111,112,73,110,102,111,67,111,110,116,97,105,110,101,114,49,2,14,63,255,155,19,129,195,142,101,136,107,200,172,142,125,89,239,144,165,19,191,151,119,132,104,181,134,138,147,191,16,228,56,192,8,209,23,195,44,73,165,214,170,193,202,216,6,15,221,231,35,230,181,253,1,219,111,16,1,7,35,116,111,112,98,97,114,2,3,193,59,231,252,220,121,74,214,233,41,63,144,16,1,13,35,117,110,100,101,114,95,102,111,111,116,101,114,2,1,104,203,53,210,16,1,16,35,122,97,109,107,110,105,106,95,99,111,111,107,105,101,115,2,1,47,43,65,80,8,1,27,46,67,111,111,107,105,101,66,97,114,95,99,111,111,107,105,101,66,97,114,95,95,51,122,115,73,107,2,2,35,46,185,164,101,128,199,148,8,1,12,46,67,111,111,107,105,101,83,116,121,108,101,2,2,198,1,112,60,228,89,172,131,8,1,28,46,67,111,111,107,105,101,115,45,109,111,100,117,108,101,45,99,111,111,107,105,101,115,95,49,50,49,84,2,1,206,36,122,155,8,1,14,46,67,111,111,107,105,101,115,78,111,116,105,99,101,2,1,232,82,72,25,8,1,11,46,71,68,80,82,45,80,111,112,117,112,2,1,120,142,130,96,8,1,10,46,74,83,87,114,97,112,112,101,114,2,2,85,5,72,9,176,98,127,115,8,1,17,46,82,111,100,111,95,98,108,117,114,95,95,99,110,75,100,78,2,1,194,136,240,251,8,1,6,46,83,82,97,66,77,2,1,91,94,52,246,8,1,36,46,84,101,114,109,115,79,102,85,115,101,77,111,100,97,108,95,109,111,100,97,108,87,114,97,112,112,101,114,95,95,51,98,87,80,88,2,1,126,21,161,252,8,1,16,46,84,114,97,99,107,105,110,103,73,110,102,111,66,111,120,2,1,233,4,185,230,8,1,9,46,95,99,111,110,115,101,110,116,2,1,119,235,194,53,8,1,29,46,95,99,111,111,107,105,101,95,99,111,111,107,105,101,115,45,112,97,110,101,108,95,95,76,77,73,57,97,2,1,20,27,248,174,8,1,5,46,97,98,99,100,2,1,234,190,182,21,8,1,9,46,97,100,45,109,111,100,97,108,2,1,178,141,120,93,8,1,16,46,97,108,99,97,108,105,97,45,99,111,111,107,105,101,115,2,1,179,202,79,98,8,1,12,46,97,108,101,114,116,45,102,108,97,115,104,2,1,94,172,28,209,8,1,11,46,97,108,101,114,116,66,111,120,101,115,2,1,4,157,64,254,8,1,8,46,97,118,119,112,45,97,118,2,1,92,118,11,227,8,1,16,46,97,118,119,112,45,97,118,45,111,118,101,114,108,97,121,2,1,92,118,11,227,8,1,8,46,98,45,109,111,100,97,108,2,1,188,183,252,135,8,1,19,46,98,97,99,107,103,114,111,117,110,100,45,111,118,101,114,108,97,121,2,1,231,126,31,204,8,1,12,46,98,97,108,108,45,99,111,111,107,105,101,2,1,38,242,39,136,8,1,12,46,98,97,114,45,45,98,111,116,116,111,109,2,1,154,239,148,104,8,1,14,46,98,97,115,105,99,76,105,103,104,116,98,111,120,2,1,196,209,36,86,8,1,13,46,98,103,45,103,114,101,101,110,45,50,48,48,2,1,217,126,187,80,8,1,17,46,98,105,112,45,99,111,111,107,105,101,45,109,111,100,97,108,2,2,98,166,166,240,210,156,254,166,8,1,11,46,98,109,45,112,114,105,118,97,99,121,2,1,54,237,11,46,8,1,20,46,98,115,45,99,111,111,107,105,101,115,95,95,111,118,101,114,108,97,121,2,1,117,213,82,151,8,1,8,46,99,95,95,99,97,107,101,2,1,159,105,208,8,8,1,24,46,99,105,97,99,104,98,116,109,45,119,114,97,112,45,99,111,110,116,97,105,110,101,114,2,1,247,162,135,123,8,1,7,46,99,106,99,86,68,119,2,1,9,73,228,176,8,1,4,46,99,107,103,2,1,45,111,47,216,8,1,11,46,99,109,45,111,118,101,114,108,97,121,2,1,193,167,67,79,8,1,17,46,99,109,45,112,111,112,117,112,45,119,114,97,112,112,101,114,2,1,36,64,217,86,8,1,8,46,99,109,117,108,113,55,122,2,1,217,1,40,94,8,1,16,46,99,111,110,102,105,103,45,109,101,115,115,97,103,101,115,2,1,147,163,82,51,8,1,15,46,99,111,110,115,101,110,116,45,108,97,121,111,117,116,2,1,171,112,99,249,8,1,9,46,99,111,110,115,101,110,116,115,2,6,57,112,6,4,164,188,110,65,201,169,155,25,233,144,80,236,239,19,72,56,244,59,160,111,8,1,16,46,99,111,111,107,105,101,45,100,105,118,45,109,97,105,110,2,1,53,151,125,200,8,1,19,46,99,111,111,107,105,101,45,112,111,112,117,112,45,109,111,100,97,108,2,1,237,180,9,120,8,1,12,46,99,111,111,107,105,101,45,119,97,108,108,2,1,193,30,27,169,8,1,15,46,99,111,111,107,105,101,115,45,45,99,108,111,97,107,2,5,0,27,29,29,7,25,248,48,32,118,106,44,129,187,31,54,129,193,19,123,8,1,11,46,99,111,111,107,105,101,115,45,97,116,2,1,122,20,111,111,8,1,19,46,99,111,111,107,105,101,115,45,97,116,45,111,118,101,114,108,97,121,2,1,122,20,111,111,8,1,25,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,95,99,111,109,112,111,110,101,110,116,2,1,47,61,226,200,8,1,30,46,99,111,111,107,105,101,115,66,108,111,99,107,83,99,115,115,45,98,97,99,107,100,114,111,112,45,49,102,122,2,2,185,42,138,199,209,102,116,250,8,1,26,46,99,111,111,107,105,101,115,66,108,111,99,107,83,99,115,115,45,114,111,111,116,45,49,83,103,2,2,185,42,138,199,209,102,116,250,8,1,16,46,99,111,111,107,105,101,115,95,99,118,121,117,97,120,104,2,1,217,1,40,94,8,1,16,46,99,111,111,107,105,101,115,95,100,113,120,122,57,108,103,2,1,217,1,40,94,8,1,6,46,99,111,118,101,114,2,1,210,90,236,37,8,1,5,46,99,112,112,97,2,2,44,201,207,56,218,63,147,84,8,1,12,46,99,115,115,45,49,114,105,120,115,116,117,2,1,23,38,100,74,8,1,12,46,99,115,115,45,49,118,49,106,116,102,113,2,1,254,246,14,197,8,1,11,46,99,115,115,45,56,103,120,51,121,122,2,1,151,213,73,44,8,1,11,46,99,115,115,45,106,106,100,50,115,101,2,1,192,10,95,45,8,1,11,46,99,115,115,45,112,121,52,97,51,50,2,1,43,28,224,93,8,1,11,46,99,115,115,45,117,109,49,57,118,98,2,1,151,213,73,44,8,1,11,46,99,115,115,45,121,99,111,50,101,103,2,1,7,252,241,249,8,1,7,46,100,68,87,87,80,107,2,1,129,38,24,206,8,1,16,46,100,105,97,108,111,103,98,108,111,99,107,114,111,100,111,2,1,129,189,198,205,8,1,15,46,100,105,118,77,111,100,97,108,68,105,97,108,111,103,2,1,220,12,168,105,8,1,7,46,101,100,120,122,100,75,2,1,129,200,7,250,8,1,7,46,101,107,45,98,97,114,2,2,59,42,57,73,106,183,247,254,8,1,5,46,101,117,99,108,2,1,221,151,229,14,8,1,9,46,101,122,107,50,56,48,118,51,2,1,5,106,19,223,8,1,7,46,102,83,99,114,109,109,2,1,6,6,98,195,8,1,16,46,102,97,99,101,116,101,100,45,111,118,101,114,108,97,121,2,1,130,57,198,201,8,1,24,46,102,105,108,116,101,114,45,109,111,100,97,108,45,98,97,99,107,103,114,111,117,110,100,2,5,78,214,77,31,125,185,102,12,135,170,77,176,141,226,127,145,204,200,133,223,8,1,19,46,102,105,120,101,100,45,98,111,116,116,111,109,45,114,105,103,104,116,2,1,92,233,6,115,8,1,11,46,103,117,101,115,116,95,119,97,114,110,2,1,136,192,8,111,8,1,22,46,104,101,97,100,45,112,97,103,101,45,105,110,102,111,114,109,97,116,105,111,110,2,5,118,103,32,165,128,129,209,99,185,185,26,151,212,18,46,129,222,99,155,54,8,1,14,46,104,101,97,100,101,114,45,98,97,110,110,101,114,2,1,232,157,192,208,8,1,7,46,105,66,89,105,112,106,2,1,200,219,94,38,8,1,7,46,105,82,104,68,100,78,2,1,15,190,5,11,8,1,3,46,105,98,2,1,7,33,166,250,8,1,11,46,105,110,102,111,95,99,95,98,111,120,2,1,103,119,114,187,8,1,15,46,105,110,102,111,114,109,97,116,105,111,110,66,97,114,2,1,73,32,50,213,8,1,9,46,106,99,111,110,102,105,114,109,2,1,7,73,48,31,8,1,11,46,106,113,45,99,111,111,107,105,101,115,2,1,233,119,209,82,8,1,12,46,106,115,45,109,101,115,115,97,103,101,115,2,1,166,3,78,150,8,1,17,46,106,115,45,109,111,100,97,108,45,99,111,111,107,105,101,115,2,1,204,91,93,7,8,1,7,46,106,115,115,50,53,54,2,1,114,44,201,21,8,1,7,46,106,115,115,51,53,57,2,1,192,240,128,208,8,1,31,46,107,108,97,117,122,117,108,97,45,98,97,99,107,103,114,111,117,110,100,45,119,121,115,122,97,114,122,111,110,121,2,1,11,219,235,168,8,1,22,46,108,97,110,100,101,110,100,45,105,110,102,111,98,97,114,45,108,105,103,104,116,2,2,141,249,55,108,142,21,242,230,8,1,18,46,108,97,121,111,117,116,32,62,32,46,119,114,97,112,112,101,114,2,1,183,35,72,127,8,1,12,46,108,97,121,111,117,116,45,109,97,115,107,2,1,189,186,12,241,8,1,26,46,108,97,121,111,117,116,95,99,111,111,107,105,101,115,82,117,108,101,95,95,50,81,111,117,88,2,1,24,43,102,89,8,1,12,46,108,101,103,97,108,65,100,118,105,99,101,2,1,120,46,48,101,8,1,5,46,109,45,99,99,2,1,190,80,235,111,8,1,10,46,109,45,99,111,111,107,105,101,115,2,1,80,160,51,180,8,1,11,46,109,97,120,45,119,45,102,117,108,108,2,1,12,233,54,26,8,1,14,46,109,101,115,115,97,103,101,45,97,108,101,114,116,2,1,36,172,227,10,8,1,25,46,109,101,115,115,97,103,101,45,112,111,112,117,112,45,98,97,99,107,103,114,111,117,110,100,2,1,80,124,27,158,8,1,15,46,109,101,115,115,97,103,101,45,119,105,110,100,111,119,2,1,44,160,235,196,8,1,9,46,109,101,115,115,97,103,101,115,2,1,193,57,233,251,8,1,15,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,237,180,9,120,8,1,11,46,109,111,100,97,108,45,103,100,112,114,2,1,145,122,36,45,8,1,12,46,109,111,100,97,108,45,108,101,103,97,108,2,1,15,40,145,201,8,1,10,46,109,111,100,97,108,82,79,68,79,2,1,67,130,255,17,8,1,21,46,109,111,100,117,108,101,45,104,101,97,100,101,114,95,110,111,116,105,99,101,2,1,193,14,136,70,8,1,6,46,109,111,110,105,116,2,1,213,192,80,117,8,1,12,46,109,121,77,111,100,97,108,45,98,111,120,2,3,64,178,139,57,152,112,67,116,193,167,242,51,8,1,11,46,110,111,116,105,99,101,95,98,97,114,2,2,64,30,78,254,137,121,23,90,8,1,27,46,110,111,116,105,102,105,99,97,116,105,111,110,45,97,108,101,114,116,45,119,114,97,112,112,101,114,2,1,84,73,249,236,8,1,14,46,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,231,90,53,31,8,1,13,46,111,118,101,114,108,97,121,45,103,100,112,114,2,1,145,122,36,45,8,1,7,46,112,111,108,105,99,121,2,1,238,201,9,143,8,1,17,46,112,111,112,117,112,45,98,97,99,107,103,114,111,117,110,100,2,1,127,174,156,206,8,1,17,46,112,111,112,117,112,45,116,111,112,45,104,101,97,100,101,114,2,1,118,125,48,137,8,1,13,46,112,111,112,117,112,67,111,110,116,101,110,116,2,1,145,253,72,196,8,1,16,46,112,111,115,105,116,105,111,110,45,98,111,116,116,111,109,2,1,234,227,146,161,8,1,4,46,112,112,99,2,1,186,188,234,69,8,1,23,46,112,121,45,52,46,112,120,45,54,46,105,116,101,109,115,45,99,101,110,116,101,114,2,1,193,29,211,233,8,1,16,46,114,97,110,107,45,99,111,111,107,105,101,45,98,97,114,2,1,155,201,240,64,8,1,18,46,114,107,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,185,42,152,222,8,1,5,46,114,111,100,111,2,4,10,195,69,81,166,187,90,179,200,127,157,216,217,161,227,158,8,1,9,46,114,115,116,98,111,120,101,115,2,1,89,75,136,12,8,1,20,46,115,99,45,49,121,107,106,106,109,56,45,48,46,108,111,102,75,120,81,2,1,129,200,7,250,8,1,10,46,115,99,45,98,116,101,119,113,85,2,1,129,200,153,152,8,1,9,46,115,101,110,100,95,97,107,116,2,1,138,57,123,66,8,1,15,46,115,104,45,112,97,103,101,45,110,111,116,105,99,101,2,1,67,198,196,220,8,1,13,46,115,105,109,112,108,101,45,109,111,100,97,108,2,1,166,122,101,10,8,1,5,46,115,111,111,107,2,1,202,148,152,123,8,1,28,46,115,116,101,97,109,97,115,116,101,114,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,91,245,142,202,8,1,14,46,115,116,105,99,107,121,45,102,111,111,116,101,114,2,1,35,134,244,3,8,1,12,46,115,116,105,99,107,121,110,111,116,101,50,2,1,77,164,6,178,8,1,19,46,115,116,121,108,101,115,95,115,104,111,119,95,95,51,105,54,107,120,2,1,63,157,5,228,8,1,23,46,116,97,114,110,111,119,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,2,1,224,55,177,204,8,1,6,46,116,99,101,108,108,2,1,221,192,207,69,8,1,8,46,116,99,111,111,107,105,101,2,1,242,206,129,3,8,1,4,46,116,111,112,2,1,200,187,46,233,8,1,38,46,117,105,45,100,105,97,108,111,103,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,99,111,111,107,105,101,115,34,93,2,1,60,9,41,179,8,1,59,46,117,105,45,100,105,97,108,111,103,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,61,34,99,111,111,107,105,101,115,34,93,32,126,32,46,117,105,45,119,105,100,103,101,116,45,111,118,101,114,108,97,121,2,1,60,9,41,179,8,1,18,46,117,105,45,119,105,100,103,101,116,45,99,111,110,116,101,110,116,2,1,99,105,65,90,8,1,9,46,119,51,45,109,111,100,97,108,2,1,86,227,56,165,8,1,10,46,119,105,100,103,101,116,115,45,53,2,1,232,65,11,92,8,1,13,46,120,49,51,101,117,99,111,111,107,105,101,115,2,1,58,196,193,79,8,1,23,46,120,49,51,101,117,99,111,111,107,105,101,115,95,95,98,97,99,107,100,114,111,112,2,1,233,75,87,34,8,1,27,46,122,45,49,50,48,48,46,98,111,114,100,101,114,45,112,114,105,109,97,114,121,45,109,97,105,110,2,1,193,29,211,233,8,1,23,46,122,103,111,100,97,95,110,97,95,112,114,122,101,116,119,97,114,122,97,110,105,101,2,1,169,39,85,246,8,1,7,46,122,115,97,118,57,97,2,1,7,109,76,69,0,1,37,91,100,97,116,97,45,116,101,115,116,61,34,109,111,100,97,108,45,99,111,111,107,105,101,45,98,111,116,116,111,109,45,98,97,114,34,93,2,1,217,1,40,94,0,1,48,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,32,116,111,112,58,32,48,112,120,59,34,93,2,2,46,255,150,126,221,192,207,69,0,1,32,91,115,116,121,108,101,94,61,34,116,111,112,58,48,59,108,101,102,116,58,48,59,114,105,103,104,116,58,48,59,34,93,2,1,79,162,90,77,0,1,18,97,112,112,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,2,1,234,119,225,22,0,1,25,98,111,100,121,32,62,32,100,105,118,91,115,116,121,108,101,42,61,34,49,48,48,37,34,93,2,1,98,83,84,249,0,1,13,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,33,6,170,175,0,1,29,100,105,118,91,99,108,97,115,115,94,61,34,71,68,80,82,67,111,111,107,105,101,73,110,102,111,95,34,93,2,1,211,91,214,184,0,1,35,100,105,118,91,99,108,97,115,115,94,61,34,115,116,121,108,101,115,95,95,72,101,97,100,101,114,73,110,102,111,66,97,114,34,93,2,1,150,44,133,158,0,1,24,100,105,118,91,105,100,94,61,34,67,111,111,107,105,101,115,80,111,112,117,112,95,34,93,2,1,88,14,219,60,0,1,52,100,105,118,91,115,116,121,108,101,42,61,34,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,105,109,97,103,101,115,47,99,111,111,107,105,101,115,95,116,108,111,46,112,110,103,41,34,93,2,1,225,166,185,156,0,1,128,0,0,1,145,100,105,118,91,115,116,121,108,101,61,34,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,65,70,65,70,65,59,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,103,114,97,121,59,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,48,112,120,32,49,48,112,120,32,49,48,112,120,32,49,48,112,120,59,32,32,98,111,120,45,115,104,97,100,111,119,58,32,49,112,120,32,49,112,120,32,51,112,120,32,48,32,103,114,97,121,59,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,59,32,32,112,97,100,100,105,110,103,58,32,49,48,112,120,32,50,53,112,120,59,32,32,119,105,100,116,104,58,32,57,51,48,112,120,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,65,70,65,70,65,59,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,103,114,97,121,59,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,48,112,120,59,32,109,111,122,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,48,112,120,59,32,119,101,98,107,105,116,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,48,112,120,59,32,32,98,111,120,45,115,104,97,100,111,119,58,32,49,112,120,32,49,112,120,32,51,112,120,32,48,32,103,114,97,121,59,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,59,32,32,112,97,100,100,105,110,103,58,32,49,48,112,120,32,50,53,112,120,59,32,32,119,105,100,116,104,58,32,57,51,48,112,120,59,34,93,2,1,130,58,45,80,0,1,128,0,0,0,247,100,105,118,91,115,116,121,108,101,61,34,98,111,114,100,101,114,45,116,111,112,58,32,49,112,120,32,115,111,108,105,100,32,114,103,98,40,49,57,51,44,32,49,57,51,44,32,49,57,51,41,59,32,98,111,116,116,111,109,58,32,48,112,120,59,32,98,111,120,45,115,104,97,100,111,119,58,32,48,112,120,32,45,50,112,120,32,52,112,120,32,114,103,98,40,49,57,51,44,32,49,57,51,44,32,49,57,51,41,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,112,97,100,100,105,110,103,58,32,49,48,112,120,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,32,114,105,103,104,116,58,32,48,112,120,59,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,32,119,105,100,116,104,58,32,49,48,48,37,59,32,122,45,105,110,100,101,120,58,32,49,48,48,48,48,48,48,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,119,104,105,116,101,59,34,93,2,1,214,148,92,52,0,1,77,100,105,118,91,115,116,121,108,101,61,34,99,108,101,97,114,58,32,98,111,116,104,59,32,102,111,110,116,58,32,110,111,114,109,97,108,32,49,50,112,120,32,65,114,105,97,108,59,32,112,97,100,100,105,110,103,58,32,53,112,120,32,48,112,120,32,53,112,120,32,49,48,112,120,59,34,93,2,1,129,192,159,87,0,1,128,0,0,0,136,100,105,118,91,115,116,121,108,101,61,34,99,108,101,97,114,58,98,111,116,104,59,98,97,99,107,103,114,111,117,110,100,58,35,102,102,102,59,99,111,108,111,114,58,35,48,48,48,59,112,97,100,100,105,110,103,58,49,48,112,120,32,51,37,59,109,97,114,103,105,110,58,48,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,55,55,55,59,119,105,100,116,104,58,57,52,37,59,34,93,2,1,234,175,163,231,0,1,25,100,105,118,91,115,116,121,108,101,61,34,112,97,100,100,105,110,103,58,56,112,120,59,34,93,2,1,245,64,46,4,0,1,128,0,0,0,150,100,105,118,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,48,59,32,114,105,103,104,116,58,48,59,32,98,111,116,116,111,109,58,48,59,32,104,101,105,103,104,116,58,51,52,112,120,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,101,101,59,32,98,111,114,100,101,114,45,116,111,112,58,32,49,112,120,32,115,111,108,105,100,32,98,108,97,99,107,59,32,122,45,105,110,100,101,120,58,49,48,48,48,59,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,34,93,2,1,192,253,99,142,0,1,68,100,105,118,91,115,116,121,108,101,61,34,116,101,120,116,45,97,108,105,103,110,58,32,114,105,103,104,116,59,32,102,111,110,116,45,115,105,122,101,58,32,57,112,120,59,32,112,97,100,100,105,110,103,45,114,105,103,104,116,58,32,50,48,112,120,59,34,93,2,1,100,117,79,46,0,1,128,0,0,1,24,100,105,118,91,115,116,121,108,101,61,34,119,105,100,116,104,58,32,49,48,48,37,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,40,48,44,32,48,44,32,48,41,59,32,109,97,114,103,105,110,58,32,48,112,120,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,32,112,97,100,100,105,110,103,58,32,48,112,120,59,32,104,101,105,103,104,116,58,32,49,53,112,120,59,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,53,112,120,59,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,32,99,111,108,111,114,58,32,114,103,98,40,50,53,53,44,32,50,53,53,44,32,50,53,53,41,59,32,122,45,105,110,100,101,120,58,32,49,48,48,48,59,32,102,111,110,116,45,102,97,109,105,108,121,58,32,65,114,105,97,108,44,32,72,101,108,118,101,116,105,99,97,44,32,115,97,110,115,45,115,101,114,105,102,59,32,102,111,110,116,45,115,105,122,101,58,32,49,48,112,120,59,34,93,2,1,190,79,212,154,0,1,128,0,0,0,220,100,105,118,91,115,116,121,108,101,61,34,119,105,100,116,104,58,32,49,48,48,37,59,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,40,52,52,44,32,52,56,44,32,53,49,41,32,110,111,110,101,32,114,101,112,101,97,116,32,115,99,114,111,108,108,32,48,37,32,48,37,59,32,112,97,100,100,105,110,103,58,32,49,48,112,120,32,48,59,32,99,111,108,111,114,58,32,35,102,102,102,59,32,98,111,114,100,101,114,45,116,111,112,58,32,49,112,120,32,115,111,108,105,100,32,114,103,98,40,50,50,49,44,32,50,50,49,44,32,50,50,49,41,59,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,59,32,122,45,105,110,100,101,120,58,32,57,57,57,57,57,57,57,57,57,59,34,93,2,1,204,113,231,255,0,1,128,0,0,0,180,100,105,118,91,115,116,121,108,101,61,34,119,105,100,116,104,58,32,49,48,48,37,59,102,108,111,97,116,58,32,108,101,102,116,59,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,112,97,100,100,105,110,103,58,32,49,53,112,120,32,48,59,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,116,111,112,58,32,48,112,120,59,108,101,102,116,58,32,48,112,120,59,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,99,111,108,111,114,58,32,35,48,48,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,49,112,120,32,35,48,48,48,32,115,111,108,105,100,59,122,45,105,110,100,101,120,58,32,49,48,48,48,59,34,93,2,1,190,81,127,43,0,1,128,0,0,0,173,100,105,118,91,115,116,121,108,101,61,34,119,105,100,116,104,58,32,57,55,48,112,120,59,32,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,103,114,97,121,59,32,109,97,114,103,105,110,58,32,51,112,120,32,97,117,116,111,59,32,99,111,108,111,114,58,32,103,114,97,121,59,32,112,97,100,100,105,110,103,58,32,51,112,120,59,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,32,102,111,110,116,58,32,49,48,112,120,32,86,101,114,100,97,110,97,44,32,115,97,110,115,45,115,101,114,105,102,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,102,102,102,102,102,59,34,93,2,1,100,117,79,46,0,1,128,0,0,0,252,100,105,118,91,115,116,121,108,101,61,34,122,45,105,110,100,101,120,58,32,49,48,48,59,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,65,114,105,97,108,59,32,102,111,110,116,45,115,105,122,101,58,32,49,50,112,120,59,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,32,111,112,97,99,105,116,121,58,32,48,46,56,59,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,50,112,120,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,52,102,52,102,52,59,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,55,55,55,59,32,98,111,114,100,101,114,45,108,101,102,116,58,32,48,59,32,98,111,114,100,101,114,45,114,105,103,104,116,58,32,48,59,32,98,111,116,116,111,109,58,32,48,112,120,59,32,119,105,100,116,104,58,32,49,48,48,37,59,32,112,97,100,100,105,110,103,58,32,53,112,120,59,34,93,2,1,138,187,77,181,0,1,50,100,105,118,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,40,49,56,56,44,32,49,53,51,44,32,55,51,41,59,34,93,2,1,27,81,85,177,0,1,30,100,105,118,91,115,116,121,108,101,94,61,34,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,34,93,2,1,249,245,25,125,0,1,38,100,105,118,91,115,116,121,108,101,94,61,34,102,111,110,116,45,115,105,122,101,58,49,50,112,120,59,98,111,116,116,111,109,58,48,59,34,93,2,1,142,131,135,253,0,1,29,100,105,118,91,115,116,121,108,101,94,61,34,108,101,102,116,58,32,48,112,120,59,32,116,111,112,58,34,93,2,1,168,22,18,159,0,1,49,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,32,122,45,105,110,100,101,120,58,32,51,50,48,48,48,59,34,93,2,1,40,164,166,228,0,1,38,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,34,93,2,1,78,15,161,164,0,1,46,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,100,105,115,112,108,97,121,58,32,116,97,98,108,101,59,34,93,2,1,221,192,207,69,0,1,36,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,34,93,2,1,24,171,169,138,0,1,35,100,105,118,91,115,116,121,108,101,94,61,34,116,111,112,58,48,59,108,101,102,116,58,48,59,114,105,103,104,116,58,48,59,34,93,2,1,130,57,192,2,0,1,16,119,112,108,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,229,116,56,53,16,1,10,35,67,79,79,75,73,69,66,65,82,2,1,103,200,251,145,16,1,15,35,76,71,80,68,45,83,116,97,114,116,69,99,111,109,2,1,26,119,25,12,16,1,14,35,97,115,102,67,111,111,107,105,101,115,66,97,114,2,1,97,254,45,138,16,1,14,35,98,97,114,114,97,109,101,110,115,97,103,101,109,2,1,206,111,7,248,16,1,13,35,99,107,45,99,111,110,116,97,105,110,101,114,2,1,33,120,253,137,16,1,5,35,99,111,111,107,2,1,226,98,121,28,16,1,17,35,99,111,111,107,105,101,45,108,97,119,45,112,97,110,101,108,2,1,164,112,226,206,16,1,13,35,99,111,111,107,105,101,115,109,111,100,97,108,2,1,51,4,186,46,16,1,36,35,99,116,108,48,48,95,80,111,108,105,116,105,99,97,67,111,111,107,105,101,115,95,100,105,118,67,111,111,107,105,101,115,77,115,103,2,1,61,255,82,176,16,1,11,35,100,105,115,99,108,97,105,109,101,114,2,4,79,119,184,49,102,171,249,248,132,189,69,230,221,63,198,122,16,1,9,35,100,118,99,111,111,107,105,101,2,1,68,81,27,31,16,1,9,35,102,103,118,45,108,103,112,100,2,1,124,233,221,0,16,1,10,35,103,111,108,100,112,111,112,117,112,2,1,16,177,89,16,16,1,7,35,105,115,86,105,101,119,2,1,105,107,39,9,16,1,17,35,105,116,45,101,112,114,105,118,97,99,121,45,114,111,111,116,2,1,138,254,68,33,16,1,17,35,107,108,97,114,111,45,112,101,45,111,118,101,114,108,97,121,2,1,204,117,112,10,16,1,16,35,107,108,97,114,111,45,112,101,45,119,105,110,100,111,119,2,1,204,117,112,10,16,1,5,35,108,103,112,100,2,2,20,173,79,230,131,26,76,89,16,1,9,35,108,103,112,100,45,98,111,120,2,1,153,78,185,217,16,1,13,35,108,103,112,100,45,119,114,97,112,112,101,114,2,1,225,211,131,61,16,1,11,35,108,103,112,100,67,111,111,107,105,101,2,1,117,190,169,46,16,1,12,35,108,103,112,100,95,98,97,110,110,101,114,2,1,208,202,241,101,16,1,11,35,108,103,112,100,98,97,110,110,101,114,2,1,52,15,42,29,16,1,15,35,108,111,97,100,101,114,45,111,118,101,114,108,97,121,2,3,91,34,251,41,142,38,93,166,157,39,2,184,16,1,15,35,108,112,45,112,111,109,45,98,111,120,45,53,50,56,2,1,106,114,92,182,16,1,18,35,109,45,97,99,99,45,100,101,115,99,114,105,112,116,105,111,110,2,1,99,8,232,237,16,1,14,35,109,97,110,97,103,101,67,111,111,107,105,101,115,2,1,48,40,51,152,16,1,18,35,109,111,100,97,108,95,97,99,101,105,116,101,121,99,112,111,108,2,1,114,12,14,208,16,1,17,35,109,111,116,111,114,111,108,97,45,99,111,111,107,105,101,115,2,2,195,63,222,240,213,81,107,31,16,1,6,35,110,103,45,99,99,2,1,55,177,120,83,16,1,13,35,111,80,114,105,118,97,108,108,121,65,112,112,2,1,198,100,82,102,16,1,7,35,111,112,97,113,117,101,2,1,98,49,139,75,16,1,13,35,112,111,108,105,116,105,99,97,45,98,111,120,2,1,154,26,188,96,16,1,20,35,112,111,108,105,116,105,99,97,80,114,105,118,97,99,105,100,97,100,101,2,1,84,76,215,215,16,1,19,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,100,105,118,2,1,55,1,106,230,16,1,21,35,112,114,105,118,97,99,121,45,116,111,111,108,115,45,98,97,110,110,101,114,2,1,35,80,23,253,16,1,18,35,114,111,111,116,32,62,32,46,115,99,45,98,100,86,97,74,97,2,1,141,15,203,86,16,1,22,35,114,116,112,103,101,114,97,108,99,111,111,107,105,101,99,111,110,116,101,110,116,2,1,164,112,213,215,16,1,10,35,116,101,114,109,111,45,117,115,111,2,1,13,19,63,79,16,1,17,35,116,101,114,109,111,115,95,97,110,97,108,121,116,105,99,115,2,1,89,70,241,246,16,1,17,35,118,116,101,120,45,108,103,112,100,45,99,111,111,107,105,101,2,2,43,59,173,137,197,48,49,27,16,1,12,35,119,114,110,103,45,97,103,114,109,110,116,2,1,26,238,110,208,8,1,8,46,45,112,111,108,105,99,121,2,1,63,172,79,31,8,1,30,46,67,111,111,107,105,101,72,111,108,100,101,114,95,99,111,110,116,97,105,110,101,114,95,95,50,51,103,48,115,2,1,51,87,131,32,8,1,16,46,68,121,107,71,111,46,115,99,45,99,114,122,111,65,69,2,1,98,128,196,164,8,1,6,46,70,83,101,108,105,2,1,20,154,58,67,8,1,12,46,76,71,80,68,45,110,111,116,105,99,101,2,1,106,247,171,182,8,1,16,46,84,114,97,99,107,105,110,103,73,110,102,111,66,111,120,2,1,215,231,105,142,8,1,7,46,95,49,105,83,80,121,2,1,200,179,91,137,8,1,20,46,95,99,111,110,116,97,105,110,101,114,95,49,115,105,113,114,95,53,52,2,1,126,22,76,208,8,1,13,46,97,99,99,101,112,116,80,111,108,105,99,101,2,1,209,61,126,201,8,1,17,46,97,99,99,101,112,116,97,110,99,101,45,116,101,114,109,115,2,1,203,241,225,91,8,1,7,46,97,99,101,105,116,101,2,2,134,174,35,169,248,40,39,211,8,1,15,46,97,100,112,45,112,111,112,117,112,45,119,114,97,112,2,1,194,102,34,168,8,1,7,46,97,108,101,114,116,97,2,2,229,181,219,20,233,176,165,253,8,1,14,46,97,108,101,114,116,97,67,111,111,107,105,101,115,2,2,57,22,3,62,75,56,152,112,8,1,51,46,97,110,116,100,45,112,114,111,45,99,111,109,112,111,110,101,110,116,115,45,99,111,111,107,105,101,45,112,111,112,45,117,112,45,105,110,100,101,120,45,115,104,111,119,95,112,111,112,117,112,2,1,105,124,95,215,8,1,7,46,98,90,69,103,102,72,2,1,139,196,100,89,8,1,17,46,98,97,99,107,100,114,111,112,45,98,108,117,114,45,115,109,2,1,172,128,55,184,8,1,19,46,98,97,99,107,103,114,111,117,110,100,45,111,118,101,114,108,97,121,2,1,189,103,77,149,8,1,17,46,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,220,50,207,225,8,1,17,46,98,97,110,110,101,114,45,102,105,120,101,100,45,98,111,120,2,1,158,135,160,129,8,1,19,46,98,97,110,110,101,114,45,102,111,111,116,101,114,45,108,103,112,100,2,1,51,79,0,78,8,1,33,46,98,97,110,110,101,114,95,114,111,100,97,112,101,95,105,110,102,111,114,109,97,110,100,111,95,99,111,111,107,105,101,115,2,2,85,92,18,5,100,73,27,124,8,1,105,46,98,97,115,101,45,102,108,101,120,45,99,111,108,46,108,103,92,58,98,97,115,101,45,102,108,101,120,45,114,111,119,46,98,97,115,101,45,102,108,101,120,46,98,97,115,101,45,119,45,102,117,108,108,46,98,97,115,101,45,105,116,101,109,115,45,99,101,110,116,101,114,46,98,97,115,101,45,106,117,115,116,105,102,121,45,98,101,116,119,101,101,110,46,98,97,115,101,45,112,45,120,120,120,115,2,1,194,197,244,117,8,1,16,46,98,103,45,98,108,117,101,45,103,114,101,121,45,49,48,2,1,60,182,9,15,8,1,7,46,98,106,82,77,97,114,2,1,141,15,203,86,8,1,20,46,98,108,111,99,107,45,114,101,103,105,111,110,45,102,111,111,116,101,114,2,1,51,243,41,114,8,1,21,46,98,111,116,116,111,109,45,112,111,112,117,112,45,119,114,97,112,112,101,114,2,1,96,150,34,49,8,1,23,46,98,111,120,45,97,99,101,105,116,101,45,112,114,105,118,97,99,105,100,97,100,101,2,2,205,127,113,216,223,234,113,89,8,1,7,46,98,115,119,84,115,114,2,1,152,255,124,134,8,1,22,46,99,45,112,111,112,117,112,45,99,111,110,115,101,110,116,105,109,101,110,116,111,2,1,198,153,63,142,8,1,7,46,99,95,115,104,111,119,2,1,86,46,7,7,8,1,12,46,99,97,105,120,97,45,97,108,101,114,116,2,1,204,173,92,11,8,1,18,46,99,97,108,108,97,104,97,110,45,99,97,109,112,97,105,103,110,2,1,247,56,98,202,8,1,12,46,99,97,114,100,45,98,111,116,116,111,109,2,1,210,84,213,51,8,1,18,46,99,97,114,100,46,98,117,116,116,111,110,45,102,105,120,101,100,2,1,166,176,151,139,8,1,42,46,99,97,115,97,101,118,105,100,101,111,110,101,119,105,111,45,115,116,111,114,101,45,116,104,101,109,101,45,56,45,120,45,99,111,110,116,97,105,110,101,114,2,1,109,160,139,6,8,1,7,46,99,98,90,69,70,106,2,1,27,183,105,35,8,1,20,46,99,101,110,116,101,114,45,98,111,116,116,111,109,45,102,105,120,101,100,2,1,87,57,207,226,8,1,32,46,99,104,97,107,114,97,45,109,111,100,97,108,95,95,99,111,110,116,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,215,46,233,171,8,1,22,46,99,104,97,107,114,97,45,109,111,100,97,108,95,95,111,118,101,114,108,97,121,2,1,215,46,233,171,8,1,14,46,99,104,97,107,114,97,45,112,111,114,116,97,108,2,1,51,78,35,23,8,1,4,46,99,107,101,2,1,223,229,149,46,8,1,20,46,99,111,110,115,101,110,116,45,98,97,114,45,119,114,97,112,112,101,114,2,1,99,205,254,154,8,1,19,46,99,111,110,115,101,110,116,99,111,111,107,105,101,95,49,54,56,95,2,1,196,79,45,205,8,1,17,46,99,111,110,116,97,105,110,101,114,45,112,111,108,105,99,121,2,1,131,13,11,168,8,1,16,46,99,111,110,116,97,105,110,101,114,65,99,101,105,116,101,2,1,105,142,66,16,8,1,20,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,2,19,55,137,94,101,149,29,87,8,1,18,46,99,111,111,107,105,101,115,45,101,117,45,98,97,110,110,101,114,2,1,238,137,20,182,8,1,13,46,99,111,111,107,105,101,115,77,111,100,97,108,2,2,6,215,129,160,235,207,170,135,8,1,12,46,99,115,115,45,49,57,105,111,120,106,57,2,1,41,40,116,132,8,1,11,46,99,115,115,45,114,118,99,49,102,113,2,1,41,40,116,132,8,1,11,46,99,120,104,55,100,116,52,117,76,105,2,1,101,23,130,33,8,1,17,46,99,120,118,53,49,73,49,56,106,104,115,119,99,115,68,104,2,1,6,29,254,114,8,1,7,46,100,75,103,86,75,74,2,1,114,220,75,58,8,1,9,46,101,56,53,97,107,97,101,48,2,1,174,161,13,18,8,1,9,46,102,105,120,101,100,66,97,114,2,1,220,27,41,216,8,1,11,46,102,105,120,101,100,98,108,111,99,107,2,1,189,166,223,148,8,1,128,0,0,0,226,46,102,108,101,120,46,102,108,101,120,45,99,111,108,46,109,100,92,58,102,108,101,120,45,114,111,119,46,106,117,115,116,105,102,121,45,99,101,110,116,101,114,46,109,100,92,58,106,117,115,116,105,102,121,45,115,116,97,114,116,46,105,116,101,109,115,45,99,101,110,116,101,114,46,103,97,112,45,92,91,49,48,112,120,92,93,46,109,100,92,58,103,97,112,45,92,91,49,52,112,120,92,93,46,109,97,120,45,119,45,92,91,55,54,48,112,120,92,93,46,112,121,45,53,46,112,120,45,52,46,119,45,102,117,108,108,46,109,100,92,58,112,120,45,53,46,109,100,92,58,112,121,45,92,91,49,52,112,120,92,93,46,109,98,45,92,91,49,48,48,112,120,92,93,46,98,103,45,119,104,105,116,101,46,114,111,117,110,100,101,100,45,120,108,46,98,111,114,100,101,114,45,98,45,52,46,98,111,111,114,100,101,114,45,92,91,92,35,69,65,69,67,70,48,92,93,2,1,172,128,55,184,8,1,19,46,102,108,111,97,116,105,110,103,66,97,114,80,114,105,118,97,99,121,2,2,53,10,16,63,240,244,29,40,8,1,7,46,102,111,80,99,112,89,2,1,161,70,65,253,8,1,7,46,102,111,111,116,101,114,2,1,188,38,124,130,8,1,17,46,102,111,111,116,101,114,45,102,105,120,101,100,45,98,97,114,2,2,170,66,58,71,254,196,107,205,8,1,12,46,102,111,111,116,101,114,45,108,103,112,100,2,1,58,103,205,123,8,1,15,46,102,111,111,116,101,114,45,119,97,114,110,105,110,103,2,1,191,6,205,220,8,1,7,46,103,69,66,105,82,80,2,1,247,104,109,204,8,1,7,46,103,79,72,65,103,117,2,1,114,220,75,58,8,1,7,46,103,102,85,78,112,80,2,1,23,153,179,22,8,1,31,46,103,118,45,99,111,111,107,105,101,45,108,103,112,100,45,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,2,1,106,85,41,123,8,1,7,46,104,67,72,120,112,103,2,1,236,171,76,25,8,1,7,46,104,90,101,89,82,100,2,1,106,79,118,197,8,1,7,46,104,114,119,119,99,106,2,1,232,228,104,33,8,1,23,46,104,117,98,45,105,110,102,111,45,98,97,114,45,99,111,109,112,111,110,101,110,116,2,6,51,87,131,32,51,89,45,48,106,37,158,123,139,195,242,28,181,96,128,106,192,216,204,94,8,1,7,46,105,84,72,103,79,98,2,1,119,27,165,78,8,1,35,46,105,110,100,101,120,45,109,111,100,117,108,101,45,45,67,111,111,107,105,101,115,66,97,110,110,101,114,45,45,50,101,112,45,68,2,1,109,43,242,36,8,1,18,46,105,110,102,111,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,106,108,129,142,8,1,18,46,105,110,102,111,45,112,111,108,105,116,105,99,97,45,97,108,108,2,1,45,253,0,171,8,1,13,46,105,110,102,111,98,111,120,45,119,114,97,112,2,1,214,10,244,88,8,1,7,46,106,87,117,69,102,83,2,1,53,190,161,189,8,1,16,46,106,99,45,108,103,112,100,45,99,111,110,115,101,110,116,2,1,51,249,201,14,8,1,14,46,106,113,45,116,111,97,115,116,45,119,114,97,112,2,1,196,84,146,229,8,1,17,46,106,115,45,115,104,111,119,45,114,101,109,105,110,100,101,114,2,1,239,33,202,129,8,1,5,46,106,115,115,52,2,1,32,99,75,104,8,1,6,46,106,115,115,53,55,2,1,136,44,91,1,8,1,6,46,106,115,115,54,56,2,1,94,40,158,17,8,1,19,46,106,117,115,116,105,99,97,45,99,111,111,107,105,101,95,98,97,114,2,1,231,46,216,118,8,1,7,46,107,85,103,83,69,120,2,1,20,154,58,67,8,1,5,46,108,103,112,100,2,13,0,2,164,84,1,12,111,163,47,8,215,33,58,94,154,119,58,142,139,82,62,55,145,219,86,229,99,107,108,9,96,31,108,14,184,57,124,242,110,7,225,210,81,68,235,227,195,75,246,235,33,136,8,1,12,46,108,103,112,100,45,97,99,101,105,116,101,2,1,55,215,67,249,8,1,13,46,108,103,112,100,45,116,111,111,108,116,105,112,2,1,81,124,107,94,8,1,11,46,108,103,112,100,98,97,110,110,101,114,2,2,80,245,245,86,145,13,49,232,8,1,7,46,108,108,83,78,118,80,2,1,29,134,16,34,8,1,52,46,108,111,106,97,111,98,114,97,109,97,120,45,115,116,111,114,101,45,99,111,109,112,111,110,101,110,116,115,45,48,45,120,45,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,2,1,189,171,251,76,8,1,36,46,108,111,106,97,115,99,104,110,101,105,100,101,114,45,115,116,111,114,101,45,48,45,120,45,99,111,110,115,101,110,116,76,103,112,100,2,1,247,197,106,192,8,1,13,46,109,100,99,45,115,110,97,99,107,98,97,114,2,1,80,168,94,27,8,1,20,46,109,111,100,97,108,45,97,118,105,115,111,45,99,111,111,107,105,101,115,2,1,177,138,21,211,8,1,13,46,109,111,100,97,108,67,111,111,107,105,101,115,2,1,117,192,37,174,8,1,17,46,109,111,100,97,108,68,105,97,108,111,103,65,118,105,115,111,2,1,37,149,109,214,8,1,14,46,110,45,114,111,111,116,45,48,45,50,45,56,49,2,1,171,12,217,147,8,1,18,46,110,97,118,98,97,114,45,100,105,115,99,108,97,105,109,101,114,2,1,106,116,254,10,8,1,29,46,110,97,118,98,97,114,45,109,111,100,117,108,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,106,116,254,10,8,1,7,46,110,111,116,105,102,105,2,1,90,0,81,207,8,1,20,46,110,111,116,105,102,105,99,97,116,105,111,110,45,102,111,111,116,101,114,2,1,109,226,139,23,8,1,16,46,110,111,116,105,102,105,99,97,116,105,111,110,66,97,114,2,1,201,216,84,71,8,1,9,46,110,111,116,105,102,105,110,111,2,2,102,27,123,21,196,79,87,225,8,1,25,46,111,110,101,45,98,117,116,116,111,110,45,99,111,111,107,105,101,115,45,112,111,112,117,112,2,1,209,38,233,85,8,1,7,46,111,112,116,45,105,110,2,2,108,8,107,1,187,246,3,55,8,1,16,46,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,2,2,147,38,92,48,196,80,240,190,8,1,4,46,112,45,51,2,1,89,100,193,252,8,1,22,46,112,100,115,45,99,45,80,74,76,86,45,105,110,110,112,69,85,45,99,115,115,2,1,26,211,70,148,8,1,16,46,112,111,108,105,99,105,101,115,45,97,99,99,101,112,116,2,1,51,227,31,197,8,1,7,46,112,111,108,105,99,121,2,1,163,233,150,169,8,1,17,46,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,2,1,158,31,210,236,8,1,13,46,112,111,108,105,99,121,45,116,101,114,109,115,2,4,3,176,148,185,95,129,66,33,222,175,151,176,247,24,124,73,8,1,21,46,112,111,108,105,116,105,99,97,115,80,114,105,118,97,99,105,100,97,100,101,2,1,86,252,178,0,8,1,10,46,112,111,112,117,112,45,112,114,111,2,1,70,158,193,210,8,1,13,46,112,111,112,117,112,95,102,111,111,116,101,114,2,3,72,123,17,94,227,127,35,106,239,138,85,160,8,1,22,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,95,95,112,111,112,117,112,2,1,139,196,77,198,8,1,16,46,112,114,105,118,97,99,121,45,119,97,114,110,105,110,103,2,1,60,190,215,117,8,1,14,46,114,105,103,111,114,45,99,111,111,107,105,101,115,2,1,52,134,100,148,8,1,33,46,114,111,118,105,116,101,120,45,97,112,112,115,45,48,45,120,45,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,2,1,177,8,10,121,8,1,21,46,115,99,45,56,99,52,56,98,101,48,48,45,48,46,106,115,119,71,82,113,2,1,106,32,39,13,8,1,9,46,115,99,45,65,120,105,75,119,2,1,116,108,224,240,8,1,21,46,115,99,45,98,55,102,100,57,100,98,51,45,48,46,105,119,75,75,107,85,2,1,34,96,208,87,8,1,14,46,115,99,45,102,97,97,100,97,52,54,98,45,48,2,1,210,138,53,76,8,1,10,46,115,99,45,105,66,89,81,107,118,2,1,43,61,103,220,8,1,15,46,115,101,99,116,105,111,110,45,45,51,89,111,98,108,2,1,98,144,219,233,8,1,17,46,115,105,116,101,45,119,114,97,112,45,99,111,111,107,105,101,2,1,10,160,26,223,8,1,35,46,115,116,121,108,101,115,95,95,67,111,111,107,105,101,67,111,110,116,101,110,116,45,115,99,45,49,54,109,112,100,50,97,45,48,2,1,252,176,90,182,8,1,22,46,115,121,110,45,99,111,110,116,97,105,110,101,114,45,98,97,110,110,101,114,49,2,1,200,223,121,116,8,1,31,46,116,101,109,112,108,97,116,101,45,112,97,114,116,45,99,111,109,112,111,110,101,110,116,45,116,101,114,109,111,115,2,1,145,160,74,216,8,1,16,46,116,101,114,109,111,115,45,112,111,108,105,116,105,99,97,2,1,3,55,40,1,8,1,15,46,116,101,115,108,97,45,108,103,112,100,45,98,111,120,2,1,106,113,77,197,8,1,20,46,116,106,109,116,67,111,111,107,105,101,115,95,95,98,97,110,110,101,114,2,1,13,31,95,32,8,1,20,46,116,111,111,108,107,105,116,45,112,114,105,118,97,99,121,45,98,111,120,2,1,49,18,243,162,8,1,26,46,116,111,111,108,107,105,116,45,112,114,105,118,97,99,121,45,98,111,120,95,95,98,111,100,121,2,1,194,197,244,117,8,1,16,46,120,45,99,97,102,101,76,111,114,95,95,108,103,112,100,2,1,238,207,80,178,8,1,8,46,122,55,99,109,98,110,114,2,1,14,91,18,136,8,1,7,46,122,115,97,118,57,97,2,1,87,50,190,198,0,1,25,91,99,108,97,115,115,94,61,34,80,114,105,118,97,99,121,70,111,111,116,101,114,95,34,93,2,1,68,54,220,104,0,1,36,91,99,108,97,115,115,94,61,34,115,116,121,108,101,115,95,109,111,108,101,99,117,108,101,95,95,99,111,111,107,105,101,115,45,34,93,2,1,99,214,115,74,0,1,34,91,100,97,116,97,45,99,121,61,34,99,111,110,116,97,105,110,101,114,45,109,111,100,97,108,45,99,111,111,107,105,101,34,93,2,1,157,210,152,90,0,1,5,97,108,101,114,116,2,1,94,220,79,228,0,1,10,97,112,112,45,111,112,116,45,105,110,2,1,51,72,91,139,0,1,17,99,111,111,107,105,101,45,112,111,108,105,99,101,45,98,97,114,2,1,107,26,250,123,0,1,48,100,105,118,91,99,108,97,115,115,94,61,34,82,101,97,99,116,70,111,111,116,101,114,67,105,118,105,108,77,97,114,107,95,110,111,116,105,102,105,99,97,116,105,111,110,95,34,93,2,1,124,91,25,81,0,1,32,100,105,118,91,99,108,97,115,115,94,61,34,97,108,101,114,116,45,99,111,111,107,105,101,115,116,121,108,101,115,34,93,2,1,212,187,78,68,0,1,31,100,105,118,91,99,108,97,115,115,94,61,34,108,103,112,100,45,109,101,115,115,97,103,101,45,98,111,120,95,34,93,2,3,109,128,19,62,166,181,9,44,196,239,198,103,0,1,42,100,105,118,91,99,108,97,115,115,94,61,34,115,116,121,108,101,115,95,97,99,99,101,112,116,67,111,111,107,105,101,115,87,114,97,112,112,101,114,95,34,93,2,1,215,50,224,118,0,1,25,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,98,97,110,110,101,114,34,93,2,1,116,75,88,87,0,1,39,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,98,97,110,110,101,114,45,99,111,111,107,105,101,115,45,116,101,114,109,115,34,93,2,1,51,76,239,95,0,1,63,100,105,118,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,58,98,108,97,99,107,59,32,99,111,108,111,114,58,119,104,105,116,101,59,32,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,34,93,2,1,142,51,59,229,0,1,37,100,105,118,91,115,116,121,108,101,94,61,34,98,111,116,116,111,109,58,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,34,93,2,1,128,42,113,153,0,1,27,100,105,118,91,115,116,121,108,101,94,61,34,104,101,105,103,104,116,58,32,51,53,112,120,59,34,93,2,1,94,52,155,128,0,1,43,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,119,105,100,116,104,58,32,49,48,48,37,59,34,93,2,1,38,142,183,213,0,1,47,100,105,118,91,115,116,121,108,101,94,61,34,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,34,93,2,1,48,157,170,82,16,1,13,35,97,99,99,101,112,116,45,112,111,112,117,112,2,1,104,0,228,135,16,1,6,35,97,118,101,114,116,2,1,126,220,178,8,16,1,15,35,97,118,101,114,116,95,97,108,108,95,112,97,103,101,2,1,140,104,195,133,16,1,8,35,98,97,114,119,114,97,112,2,1,44,85,137,245,16,1,7,35,98,103,79,118,101,114,2,1,176,83,154,171,16,1,13,35,99,107,105,101,115,101,108,101,99,116,95,105,2,1,201,30,93,184,16,1,4,35,99,107,110,2,1,110,148,217,249,16,1,13,35,99,111,110,115,101,110,116,77,111,100,97,108,2,1,119,107,69,176,16,1,8,35,99,111,111,107,98,111,120,2,1,11,168,215,3,16,1,13,35,99,111,111,107,105,101,115,109,111,100,97,108,2,1,152,76,68,118,16,1,11,35,111,116,45,115,100,107,45,98,116,110,2,1,59,94,77,199,16,1,22,35,111,118,101,114,108,97,121,95,103,100,112,114,95,97,117,116,101,110,116,105,99,2,1,229,91,247,149,16,1,30,35,111,118,101,114,108,97,121,95,103,100,112,114,95,97,117,116,101,110,116,105,99,95,99,111,110,116,101,110,116,2,1,229,91,247,149,16,1,10,35,112,97,103,101,45,109,97,115,107,2,1,15,123,34,136,16,1,12,35,112,111,112,117,112,119,105,110,100,111,119,2,1,199,151,240,192,16,1,6,35,116,101,114,109,115,2,3,11,218,187,70,52,15,108,131,205,93,233,242,16,1,15,35,119,105,110,100,111,119,95,111,118,101,114,108,97,121,2,1,119,240,139,179,8,1,14,46,98,97,110,110,101,114,87,114,97,112,112,101,114,2,1,165,208,240,21,8,1,32,46,98,111,116,116,111,109,45,98,97,110,110,101,114,46,99,97,114,100,32,62,32,46,99,97,114,100,45,98,111,100,121,2,1,151,254,15,30,8,1,14,46,99,107,80,111,108,105,99,121,71,111,109,97,103,2,1,58,56,172,240,8,1,13,46,99,111,111,107,105,101,95,109,111,100,97,108,2,1,224,93,167,92,8,1,11,46,99,112,45,111,118,101,114,108,97,121,2,1,217,217,112,203,8,1,11,46,103,100,112,114,80,111,108,105,99,121,2,1,205,227,12,157,8,1,14,46,104,101,97,100,101,114,45,110,111,116,105,99,101,2,1,254,117,218,15,8,1,12,46,108,99,107,45,119,114,97,112,112,101,114,2,1,148,196,146,130,8,1,7,46,108,111,97,100,101,114,2,1,208,194,145,184,8,1,20,46,109,45,119,114,97,112,112,101,114,45,98,103,45,45,103,108,97,115,115,2,2,7,102,46,22,173,167,252,169,8,1,13,46,115,116,105,99,107,121,45,97,108,101,114,116,2,1,160,255,25,65,8,1,7,46,122,45,49,48,53,48,2,1,93,91,222,36,0,1,89,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,116,111,112,58,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,32,119,105,100,116,104,58,32,49,48,48,37,59,32,104,101,105,103,104,116,58,32,49,48,48,37,59,32,122,45,105,110,100,101,120,58,32,49,48,52,48,59,34,93,2,1,57,196,145,195,16,1,15,35,71,68,80,82,45,99,111,110,116,97,105,110,101,114,2,1,152,48,94,79,16,1,9,35,97,99,99,101,112,116,95,113,2,1,206,55,237,133,16,1,14,35,97,99,99,101,115,115,95,99,111,111,107,105,101,2,1,205,15,11,148,16,1,7,35,97,103,114,101,101,67,2,1,238,37,52,6,16,1,13,35,97,103,114,101,101,100,66,97,110,110,101,114,2,1,140,195,201,187,16,1,9,35,98,103,95,112,111,112,117,112,2,1,169,130,170,219,16,1,20,35,98,105,115,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,2,1,211,194,123,41,16,1,4,35,99,98,98,2,1,51,46,85,4,16,1,18,35,99,108,111,115,101,67,111,111,107,105,101,66,97,110,110,101,114,2,1,102,168,12,64,16,1,6,35,99,111,111,107,98,2,1,137,152,187,165,16,1,10,35,99,111,111,107,105,101,95,112,112,2,1,240,164,215,44,16,1,30,35,99,111,111,107,105,101,115,99,114,105,112,116,95,105,110,106,101,99,116,101,100,95,119,114,97,112,112,101,114,2,1,22,25,239,15,16,1,18,35,105,110,102,111,45,98,111,116,116,45,109,101,115,115,97,103,101,2,1,242,234,54,64,16,1,10,35,105,110,102,111,114,109,101,114,50,2,1,101,154,139,235,16,1,23,35,106,115,85,115,101,80,101,114,115,111,110,97,108,68,97,116,97,66,108,111,99,107,2,1,10,233,86,162,16,1,4,35,107,117,107,2,1,179,109,212,109,16,1,21,35,109,101,115,115,97,103,101,45,98,108,111,99,107,45,99,111,111,107,105,101,2,1,247,61,29,148,16,1,12,35,109,111,100,97,108,99,111,111,107,105,101,2,1,7,123,134,23,16,1,4,35,110,116,102,2,1,45,240,130,159,16,1,8,35,111,118,101,114,108,97,121,2,1,143,201,40,111,16,1,25,35,112,101,114,115,111,110,97,108,45,100,97,116,97,45,112,114,111,99,101,115,115,105,110,103,2,1,174,255,59,82,16,1,25,35,112,111,108,105,99,121,66,108,111,99,107,70,111,114,70,105,114,115,116,86,105,115,105,116,2,2,167,112,86,200,241,220,72,19,16,1,19,35,112,111,108,105,99,121,67,111,110,102,105,114,109,97,116,105,111,110,2,1,61,110,114,166,16,1,4,35,112,111,112,2,3,29,96,52,228,71,167,51,251,105,157,56,125,16,1,12,35,112,111,112,112,117,112,45,102,111,111,100,2,1,219,94,132,237,16,1,14,35,112,114,105,118,97,99,121,80,111,108,105,99,121,2,1,103,142,232,145,16,1,24,35,114,101,99,111,109,109,101,110,100,45,116,101,99,104,45,115,110,97,99,107,98,97,114,2,1,51,52,136,67,16,1,21,35,114,103,115,45,109,97,105,110,45,99,111,110,116,101,120,116,45,98,97,114,2,1,167,112,109,148,16,1,17,35,117,110,105,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,13,20,190,53,16,1,26,35,117,115,101,95,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,45,98,108,111,99,107,2,1,103,26,21,68,8,1,6,46,67,98,104,95,99,2,1,167,112,109,48,8,1,42,46,67,111,111,107,105,101,65,99,99,101,112,116,80,111,112,117,112,45,109,111,100,117,108,101,95,95,99,111,110,116,97,105,110,101,114,95,85,110,100,80,70,2,1,16,165,88,115,8,1,25,46,67,111,111,107,105,101,65,99,99,101,112,116,95,114,111,111,116,95,95,55,75,55,97,112,2,1,103,61,132,106,8,1,40,46,67,111,111,107,105,101,65,108,108,111,119,97,110,99,101,95,99,111,111,107,105,101,115,65,108,108,111,119,97,110,99,101,95,95,55,56,104,65,79,2,1,52,168,98,59,8,1,39,46,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,95,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,95,95,49,120,113,65,45,2,1,12,7,229,37,8,1,30,46,67,111,111,107,105,101,73,110,102,111,114,109,101,114,95,119,114,97,112,112,101,114,95,95,68,85,114,118,57,2,1,163,49,94,159,8,1,27,46,67,111,111,107,105,101,80,111,112,117,112,95,111,118,101,114,108,97,121,95,95,49,67,88,110,86,2,1,101,184,215,251,8,1,26,46,67,111,111,107,105,101,87,97,114,110,105,110,103,95,114,111,111,116,95,95,72,121,115,108,109,2,1,66,249,207,91,8,1,32,46,67,111,111,107,105,101,87,105,110,100,111,119,115,116,121,108,101,95,95,98,108,111,99,107,45,45,49,105,88,102,113,2,1,130,237,201,119,8,1,25,46,67,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,95,95,100,48,80,70,84,2,1,51,64,39,91,8,1,22,46,71,68,80,82,80,97,110,101,108,45,109,111,100,117,108,101,45,114,111,111,116,2,1,109,200,218,37,8,1,6,46,71,117,119,110,71,2,1,214,194,142,210,8,1,22,46,72,53,67,109,122,98,55,118,108,99,49,81,50,56,117,119,52,108,45,66,118,2,2,8,63,210,45,133,39,237,98,8,1,6,46,74,101,53,56,102,2,1,122,44,161,71,8,1,25,46,77,117,105,65,108,101,114,116,45,115,116,97,110,100,97,114,100,83,117,99,99,101,115,115,2,1,167,112,52,170,8,1,33,46,78,111,116,105,102,105,99,97,116,105,111,110,67,111,111,107,105,101,95,99,111,111,107,105,101,95,95,49,106,100,66,120,2,1,56,148,7,61,8,1,20,46,80,101,114,115,111,110,97,108,68,97,116,97,67,111,110,102,105,114,109,2,1,48,149,154,145,8,1,36,46,83,109,97,114,116,67,97,112,116,99,104,97,45,83,104,105,101,108,100,95,112,111,115,105,116,105,111,110,95,98,111,116,116,111,109,2,1,143,195,125,69,8,1,25,46,84,111,97,115,116,82,111,111,116,95,119,114,97,112,112,101,114,95,95,80,70,76,71,109,2,1,167,112,112,124,8,1,26,46,84,111,97,115,116,105,102,121,95,95,116,111,97,115,116,45,99,111,110,116,97,105,110,101,114,2,1,51,47,175,93,8,1,2,46,88,2,1,247,60,242,5,8,1,6,46,90,117,101,101,65,2,1,101,150,144,158,8,1,6,46,95,49,81,71,110,2,1,200,96,90,252,8,1,7,46,95,49,105,117,108,110,2,1,122,44,161,71,8,1,8,46,95,49,122,104,122,66,109,2,1,120,228,202,108,8,1,7,46,95,50,48,88,50,98,2,1,167,30,158,213,8,1,7,46,95,50,71,99,73,122,2,1,180,29,12,174,8,1,7,46,95,50,81,85,53,57,2,1,186,64,85,93,8,1,7,46,95,50,114,45,54,102,2,1,214,194,142,210,8,1,7,46,95,51,49,51,67,102,2,1,20,233,155,115,8,1,10,46,95,51,117,57,106,113,104,81,86,2,1,20,244,70,0,8,1,9,46,95,103,84,105,56,76,56,107,2,1,106,7,109,137,8,1,8,46,95,110,108,110,105,105,117,2,2,48,221,11,109,51,63,138,177,8,1,10,46,97,45,119,97,114,110,105,110,103,2,1,215,191,75,29,8,1,7,46,97,99,99,101,112,116,2,1,14,90,194,89,8,1,21,46,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,112,111,112,117,112,2,1,143,120,187,210,8,1,14,46,97,99,99,101,115,115,45,99,111,111,107,105,101,2,1,102,5,127,112,8,1,6,46,97,102,87,73,88,2,1,180,29,12,174,8,1,20,46,97,103,114,101,101,109,101,110,116,45,115,117,98,115,116,114,97,116,101,2,1,191,37,60,205,8,1,17,46,97,108,101,114,116,45,99,111,109,112,108,105,97,110,99,101,2,1,249,176,221,47,8,1,18,46,97,108,101,114,116,45,102,105,114,115,116,45,117,115,97,103,101,2,1,199,160,176,171,8,1,14,46,97,108,101,114,116,45,109,101,115,115,97,103,101,2,1,201,237,166,215,8,1,16,46,97,110,110,111,117,110,99,101,45,99,111,111,107,105,101,2,1,213,121,169,214,8,1,13,46,97,112,112,114,105,115,101,79,117,116,101,114,2,1,248,172,104,130,8,1,15,46,97,112,112,114,105,115,101,79,118,101,114,108,97,121,2,1,248,172,104,130,8,1,7,46,98,45,99,111,111,107,2,1,87,56,236,85,8,1,15,46,98,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,103,16,207,55,8,1,8,46,98,45,112,111,112,117,112,2,1,198,97,101,205,8,1,8,46,98,108,111,99,107,101,114,2,1,69,157,21,27,8,1,3,46,98,110,2,1,247,60,242,5,8,1,15,46,98,111,116,116,111,109,45,109,101,115,115,97,103,101,2,1,216,123,179,178,8,1,20,46,98,111,116,116,111,109,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,51,49,233,234,8,1,13,46,98,111,116,116,111,109,45,112,111,112,117,112,2,2,172,72,22,208,239,45,102,30,8,1,21,46,98,111,116,116,111,109,95,95,99,111,111,107,105,101,95,98,108,111,99,107,2,1,151,127,50,79,8,1,12,46,98,114,97,118,101,95,112,111,112,117,112,2,1,106,241,129,53,8,1,8,46,99,45,109,111,100,97,108,2,1,254,204,196,169,8,1,32,46,99,45,110,111,116,105,99,101,115,32,62,32,46,104,97,115,66,117,116,116,111,110,46,99,45,110,111,116,105,99,101,2,1,101,7,185,99,8,1,7,46,99,67,80,105,77,70,2,1,101,150,144,158,8,1,16,46,99,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,43,187,88,32,8,1,13,46,99,104,101,99,107,95,99,111,111,107,105,101,2,1,175,243,232,232,8,1,9,46,99,109,45,109,95,99,45,119,2,1,248,200,222,177,8,1,9,46,99,111,110,102,102,111,114,109,2,1,125,99,55,152,8,1,16,46,99,111,110,102,105,100,101,110,116,97,108,73,110,102,111,2,1,129,217,134,240,8,1,9,46,99,111,111,107,45,119,101,98,2,1,103,59,165,204,8,1,11,46,99,111,111,107,95,76,70,80,110,75,2,1,102,125,182,54,8,1,6,46,99,111,111,107,101,2,1,102,67,104,121,8,1,18,46,99,111,111,107,105,101,45,97,108,101,114,116,45,115,104,111,119,2,1,69,157,21,27,8,1,30,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,45,119,114,97,112,2,1,49,56,167,60,8,1,20,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,16,140,3,48,8,1,19,46,99,111,111,107,105,101,45,114,111,111,116,45,45,51,45,48,45,51,2,1,107,40,254,70,8,1,18,46,99,111,111,107,105,101,45,115,105,116,101,45,97,108,101,114,116,2,1,248,138,244,45,8,1,14,46,99,111,111,107,105,101,67,111,110,102,105,114,109,2,1,136,78,140,10,8,1,11,46,99,111,111,107,105,101,95,95,105,110,2,1,209,228,254,210,8,1,13,46,99,111,111,107,105,101,95,95,111,112,101,110,2,1,103,253,173,153,8,1,14,46,99,111,111,107,105,101,95,95,113,54,98,78,112,2,1,207,108,225,4,8,1,19,46,99,111,111,107,105,101,95,105,110,110,101,114,95,49,118,107,87,106,2,1,51,63,241,217,8,1,26,46,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,95,119,114,97,112,2,1,209,231,207,127,8,1,17,46,99,111,111,107,105,101,95,111,117,116,101,114,95,100,105,118,2,1,179,64,193,253,8,1,24,46,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,97,108,101,114,116,2,1,177,21,18,137,8,1,37,46,99,111,111,107,105,101,115,77,101,115,115,97,103,101,95,99,111,111,107,105,101,115,109,101,115,115,97,103,101,95,95,106,65,70,110,111,2,1,2,185,100,120,8,1,13,46,99,111,111,107,105,101,115,77,111,100,97,108,2,1,167,112,24,25,8,1,8,46,99,111,111,107,115,95,107,2,1,51,51,129,152,8,1,16,46,99,111,112,121,114,105,103,104,116,95,102,105,120,101,100,2,1,23,80,254,209,8,1,4,46,99,111,119,2,2,131,149,116,72,158,228,98,146,8,1,6,46,99,113,66,114,78,2,1,28,20,96,241,8,1,8,46,99,117,99,104,101,99,107,2,1,12,97,20,60,8,1,15,46,99,117,115,116,111,109,95,109,101,115,115,97,103,101,2,1,110,223,200,125,8,1,13,46,100,97,110,103,101,110,45,108,97,98,108,101,2,1,51,61,55,159,8,1,6,46,100,101,115,99,108,2,1,53,65,58,31,8,1,7,46,100,105,97,108,111,103,2,1,10,243,230,222,8,1,19,46,100,105,115,99,108,97,105,109,101,114,95,95,95,119,56,88,71,85,2,1,51,56,13,25,8,1,10,46,100,105,115,99,108,97,109,101,114,2,3,51,53,64,177,104,29,18,77,167,111,247,197,8,1,7,46,100,105,118,49,53,50,2,1,58,239,127,113,8,1,17,46,100,110,81,65,90,110,46,115,99,45,105,70,77,65,111,73,2,1,50,207,33,121,8,1,10,46,101,49,110,98,115,105,57,108,48,2,1,176,216,225,126,8,1,40,46,101,117,45,99,111,111,107,105,101,45,112,111,112,117,112,45,109,111,100,117,108,101,95,95,101,117,95,99,111,111,107,105,101,95,112,111,112,117,112,2,1,175,194,204,43,8,1,7,46,102,84,113,84,74,107,2,13,63,72,163,17,63,205,16,93,81,44,98,27,102,168,12,64,102,241,217,98,109,32,161,150,111,21,88,204,193,255,135,210,228,51,248,175,232,217,131,125,236,96,58,201,241,128,92,236,244,86,210,155,8,1,21,46,102,105,120,101,100,45,98,108,111,99,107,95,95,99,111,111,107,105,101,115,2,1,160,224,142,212,8,1,21,46,102,108,111,97,116,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,108,255,67,23,8,1,15,46,102,111,111,98,97,114,45,119,114,97,112,112,101,114,2,1,102,79,148,156,8,1,13,46,102,111,111,116,101,114,32,126,32,46,99,99,2,1,104,215,89,253,8,1,24,46,102,111,111,116,101,114,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,2,1,47,114,200,87,8,1,21,46,102,111,111,116,101,114,45,112,101,114,115,111,110,97,108,45,100,97,116,97,2,1,80,245,49,199,8,1,7,46,103,65,72,76,88,66,2,1,80,76,25,170,8,1,7,46,103,72,85,85,72,117,2,1,49,119,40,137,8,1,10,46,103,100,112,114,45,114,111,111,116,2,2,118,255,236,195,148,196,116,43,8,1,3,46,104,55,2,1,51,52,94,82,8,1,17,46,105,110,102,111,45,99,111,111,107,105,101,45,117,115,101,115,2,1,102,204,249,8,8,1,7,46,105,110,102,111,114,109,2,1,103,206,69,182,8,1,12,46,105,110,102,111,114,109,97,116,105,111,110,2,1,35,191,205,35,8,1,13,46,105,115,45,102,105,120,101,100,45,98,111,120,2,1,192,31,186,185,8,1,23,46,105,115,45,104,101,97,100,101,114,45,109,101,115,115,97,103,101,45,100,111,99,107,2,1,167,112,0,68,8,1,15,46,105,115,45,109,101,115,115,97,103,101,45,112,112,100,2,1,167,112,76,60,8,1,10,46,106,115,95,99,111,111,107,105,101,2,1,77,89,37,140,8,1,7,46,107,89,83,114,113,90,2,1,101,150,144,158,8,1,24,46,108,101,112,111,112,117,112,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,52,158,235,232,8,1,22,46,108,101,112,111,112,117,112,45,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,52,158,235,232,8,1,20,46,109,45,119,114,97,112,112,101,114,45,98,103,45,45,103,108,97,115,115,2,27,2,180,84,24,7,104,221,108,13,90,189,225,16,169,108,187,17,64,133,230,20,109,12,195,22,143,202,210,22,249,38,46,42,34,240,221,51,107,35,241,52,120,112,45,62,42,105,222,73,9,212,7,74,177,64,209,82,243,227,220,91,243,201,224,103,112,134,161,105,43,70,53,123,210,106,110,136,160,100,227,149,206,136,212,166,238,217,247,167,86,108,199,176,36,43,23,197,92,70,89,223,169,132,68,255,118,193,165,8,1,15,46,109,67,83,66,95,99,111,110,116,97,105,110,101,114,2,1,102,182,42,178,8,1,26,46,109,97,105,110,45,117,115,101,114,45,99,111,110,115,101,110,116,45,114,101,113,117,101,115,116,2,1,160,220,17,229,8,1,16,46,109,97,114,107,101,116,105,110,103,45,112,111,112,117,112,2,1,123,76,61,86,8,1,8,46,109,101,115,115,97,103,101,2,1,148,181,140,201,8,1,14,46,109,101,115,115,97,103,101,45,97,108,101,114,116,2,4,26,161,19,95,35,250,138,138,91,230,188,175,254,204,196,169,8,1,6,46,109,111,100,97,108,2,3,17,246,69,92,118,10,68,37,167,25,218,90,8,1,25,46,109,111,100,97,108,67,111,111,107,105,101,115,95,114,111,111,116,95,95,51,53,54,81,45,2,1,51,53,40,219,8,1,23,46,109,111,100,97,108,95,112,111,112,117,112,95,115,101,115,115,105,100,95,98,111,120,2,1,254,54,6,20,8,1,9,46,109,115,103,45,116,101,120,116,2,1,102,246,104,121,8,1,3,46,110,75,2,1,73,95,179,32,8,1,14,46,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,174,148,92,32,8,1,24,46,110,111,116,105,102,105,99,97,116,105,111,110,115,45,99,111,110,116,97,105,110,101,114,2,1,62,11,90,113,8,1,11,46,110,111,116,105,102,121,45,98,97,114,2,1,180,29,12,174,8,1,25,46,112,97,103,101,32,62,32,91,99,108,97,115,115,42,61,34,119,105,100,103,101,116,34,93,2,2,214,100,3,200,215,90,181,231,8,1,26,46,112,97,103,101,45,102,111,111,116,101,114,95,95,112,111,112,117,112,45,99,111,111,107,105,101,2,1,51,105,132,198,8,1,14,46,112,97,110,101,108,45,119,97,114,110,105,110,103,2,1,47,223,117,90,8,1,13,46,112,97,110,101,108,95,49,53,50,95,119,112,2,1,149,171,248,16,8,1,8,46,112,103,115,45,116,111,112,2,1,1,219,72,186,8,1,14,46,112,108,97,116,101,95,95,95,80,52,88,111,103,2,1,216,123,179,178,8,1,13,46,112,111,108,105,99,121,45,112,111,112,117,112,2,2,12,55,62,131,51,52,188,99,8,1,15,46,112,111,108,105,99,121,45,119,97,114,110,105,110,103,2,1,201,157,215,58,8,1,13,46,112,111,108,105,99,121,95,112,111,112,117,112,2,1,251,186,107,117,8,1,9,46,112,111,108,105,116,105,99,97,2,1,58,31,151,68,8,1,13,46,112,111,112,117,112,45,98,97,110,110,101,114,2,1,102,83,223,169,8,1,12,46,112,111,112,117,112,95,52,121,54,50,56,2,1,44,155,32,129,8,1,14,46,112,111,112,117,112,95,119,114,97,112,112,101,114,2,1,103,222,48,230,8,1,14,46,112,114,105,118,97,99,121,45,98,108,111,99,107,2,1,244,153,91,48,8,1,15,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,2,1,101,32,23,195,8,1,5,46,112,114,119,105,2,1,2,211,171,114,8,1,8,46,113,97,45,103,100,112,114,2,1,148,72,101,180,8,1,27,46,114,45,99,111,111,107,105,101,45,112,114,111,109,112,116,95,95,99,111,110,116,97,105,110,101,114,2,1,26,235,65,60,8,1,24,46,115,95,95,121,50,103,106,78,105,73,83,48,111,49,82,65,95,53,69,98,110,107,119,2,6,4,247,16,137,52,40,24,47,85,93,27,102,118,35,127,217,165,215,213,118,169,62,14,157,8,1,13,46,115,97,109,112,108,101,45,112,111,112,117,112,2,1,68,209,39,77,8,1,23,46,115,98,105,115,114,117,45,67,111,111,107,105,101,65,103,114,101,101,109,101,110,116,2,1,51,63,137,185,8,1,13,46,115,99,45,49,56,111,108,115,111,51,45,48,2,1,148,182,101,194,8,1,10,46,115,99,45,119,105,100,103,101,116,2,1,188,198,204,74,8,1,48,46,115,104,97,114,101,100,45,99,111,109,112,111,110,101,110,116,115,45,67,111,111,107,105,101,115,65,103,114,101,101,109,101,110,116,45,45,114,111,111,116,45,45,50,73,78,106,77,2,1,64,217,96,75,8,1,12,46,115,104,111,119,45,99,111,111,107,105,101,2,1,224,178,216,225,8,1,14,46,115,110,111,119,100,105,118,45,109,111,100,97,108,2,1,141,81,180,32,8,1,13,46,115,112,101,99,105,97,108,65,108,101,114,116,2,1,61,174,21,163,8,1,16,46,115,112,117,45,98,111,116,116,111,109,45,108,101,102,116,2,1,102,82,132,218,8,1,18,46,115,116,112,108,95,99,111,111,107,105,101,115,95,119,114,97,112,2,1,151,54,211,86,8,1,18,46,115,116,121,108,101,95,95,100,105,115,99,108,97,105,109,101,114,2,1,51,60,114,158,8,1,37,46,115,116,121,108,101,115,45,109,111,100,117,108,101,95,95,99,111,111,107,105,101,115,87,97,114,110,105,110,103,45,45,50,109,102,72,67,2,1,179,98,234,241,8,1,24,46,115,116,121,108,101,115,95,99,111,110,116,97,105,110,101,114,95,95,49,111,98,77,53,2,1,51,52,252,166,8,1,10,46,116,45,105,45,97,103,114,101,101,2,2,90,98,172,78,232,217,142,166,8,1,5,46,116,54,53,55,2,2,47,76,109,67,47,254,209,101,8,1,5,46,116,56,56,54,2,1,48,135,193,162,8,1,12,46,116,101,114,109,115,45,112,111,112,117,112,2,1,104,211,3,86,8,1,14,46,116,111,97,115,116,45,109,101,115,115,97,103,101,2,1,192,25,205,112,8,1,12,46,116,111,112,45,109,101,115,115,97,103,101,2,1,172,187,179,87,8,1,11,46,117,105,45,112,110,111,116,105,102,121,2,1,50,239,179,210,8,1,9,46,117,107,45,112,97,110,101,108,2,1,101,155,191,219,8,1,29,46,117,115,101,114,45,100,97,116,97,45,112,114,111,99,101,115,115,105,110,103,45,119,114,97,112,112,101,114,2,1,141,154,8,134,8,1,14,46,117,115,105,110,103,45,99,111,111,107,105,101,115,2,1,10,155,119,249,8,1,22,46,118,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,94,118,179,144,8,1,18,46,118,45,100,105,97,108,111,103,95,95,99,111,110,116,101,110,116,2,1,35,98,234,55,8,1,21,46,119,101,45,117,115,101,45,99,111,111,107,105,101,115,45,98,108,111,99,107,2,1,167,112,86,17,8,1,17,46,119,101,98,45,99,111,111,107,105,101,45,112,111,112,117,112,2,1,51,60,117,86,8,1,14,46,119,101,108,99,111,109,101,45,112,111,112,117,112,2,1,122,79,207,234,8,1,6,46,119,116,45,99,98,2,1,25,55,48,222,8,1,7,46,121,45,103,100,112,114,2,1,215,78,216,189,8,1,7,46,122,97,108,117,112,97,2,1,13,143,80,140,0,1,24,91,99,108,97,115,115,94,61,34,65,99,99,101,112,116,67,111,111,107,105,101,95,34,93,2,1,167,112,12,194,0,1,26,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,65,103,114,101,101,109,101,110,116,34,93,2,1,233,240,134,253,0,1,20,91,99,108,97,115,115,94,61,34,102,99,119,45,119,114,97,112,45,34,93,2,1,126,222,140,222,0,1,38,91,99,108,97,115,115,94,61,34,115,116,121,108,101,115,95,76,97,121,111,117,116,95,95,99,111,111,107,105,101,80,97,110,101,108,95,34,93,2,1,136,105,126,74,0,1,38,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,84,101,120,116,34,93,2,1,247,60,242,5,0,1,45,91,115,116,121,108,101,94,61,34,116,101,120,116,45,97,108,105,103,110,58,32,108,101,102,116,59,32,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,34,93,2,1,15,88,218,210,0,1,18,97,112,112,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,2,1,136,53,110,71,0,1,36,100,105,118,91,99,108,97,115,115,42,61,34,115,116,121,108,101,100,95,95,67,111,111,107,105,101,87,114,97,112,112,101,114,45,34,93,2,1,107,7,42,33,0,1,33,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,65,99,99,101,112,116,66,97,110,110,101,114,95,34,93,2,1,49,119,40,137,0,1,30,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,115,73,110,102,111,114,109,101,114,95,34,93,2,1,122,44,161,71,0,1,32,100,105,118,91,99,108,97,115,115,94,61,34,80,114,111,118,105,100,101,114,95,99,111,110,116,97,105,110,101,114,34,93,2,1,74,54,146,230,0,1,38,100,105,118,91,99,108,97,115,115,94,61,34,83,110,111,119,80,114,105,118,97,99,121,80,111,108,105,99,121,66,97,110,110,101,114,95,34,93,2,1,137,238,238,36,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,109,111,100,97,108,67,111,111,107,105,101,115,95,34,93,2,1,51,53,40,219,0,1,41,100,105,118,91,100,97,116,97,45,115,116,111,114,97,103,101,45,105,116,101,109,94,61,34,116,56,56,54,99,111,111,107,105,101,110,97,109,101,95,34,93,2,1,239,14,111,7,0,1,41,100,105,118,91,100,97,116,97,45,115,116,111,114,97,103,101,45,105,116,101,109,94,61,34,116,56,56,55,99,111,111,107,105,101,110,97,109,101,95,34,93,2,1,65,11,60,58,0,1,37,100,105,118,91,100,97,116,97,45,116,101,115,116,45,105,100,61,34,99,111,111,107,105,101,65,99,99,101,112,116,80,111,112,117,112,34,93,2,1,16,165,88,115,0,1,55,100,105,118,91,115,116,121,108,101,94,61,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,51,99,100,59,32,99,111,108,111,114,58,32,35,56,53,54,52,48,52,59,34,93,2,1,103,112,217,27,0,1,43,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,112,120,59,34,93,2,1,248,143,165,16,0,1,6,102,111,111,116,101,114,2,1,181,78,231,95,0,1,24,109,118,105,100,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,207,134,188,214,0,1,13,110,111,116,105,102,105,99,97,116,105,111,110,115,2,1,54,217,96,74,0,1,12,117,105,45,119,101,98,45,97,108,101,114,116,2,1,51,52,92,121,16,1,8,35,107,111,108,97,99,105,99,2,1,68,102,62,26,16,1,16,35,107,117,107,105,95,117,112,111,122,111,114,101,110,106,101,2,1,82,31,82,116,16,1,24,35,115,117,98,115,99,114,105,112,116,105,111,110,80,111,112,117,112,66,111,116,116,111,109,2,1,122,244,15,179,8,1,24,46,77,117,105,65,112,112,66,97,114,45,112,111,115,105,116,105,111,110,70,105,120,101,100,2,1,230,226,141,121,8,1,7,46,99,79,77,75,112,118,2,1,214,227,95,102,8,1,10,46,101,49,103,98,49,56,106,111,48,2,1,122,31,100,52,8,1,7,46,105,65,88,67,73,70,2,1,214,227,95,102,8,1,13,46,105,116,101,109,115,87,114,97,112,112,101,114,2,1,122,31,100,52,8,1,7,46,107,100,100,88,99,74,2,1,214,227,95,102,8,1,11,46,112,111,112,45,117,112,45,115,114,98,2,1,88,150,120,42,8,1,16,46,115,108,105,100,101,45,105,110,45,98,111,116,116,111,109,2,1,197,179,186,30,8,1,8,46,116,49,45,103,100,112,114,2,1,193,16,181,26,0,1,40,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,112,120,59,34,93,2,1,202,141,3,243,16,1,17,35,73,54,45,99,111,111,107,105,101,67,111,110,115,101,110,116,2,1,101,119,246,9,16,1,5,35,99,98,97,114,2,1,60,125,133,223,16,1,18,35,105,100,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,11,211,87,218,16,1,8,35,105,110,102,111,67,111,111,2,1,105,24,152,21,16,1,12,35,115,101,116,45,119,105,110,45,99,111,111,2,1,208,27,122,41,8,1,28,46,97,108,107,111,115,104,111,112,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,98,97,114,2,1,12,10,129,132,8,1,14,46,99,99,95,100,105,115,99,108,97,105,109,101,114,2,1,39,189,54,44,8,1,6,46,99,107,115,45,109,2,1,123,85,21,220,8,1,10,46,99,109,45,45,112,97,110,101,108,2,1,49,50,22,225,8,1,12,46,99,111,111,107,105,101,66,97,110,101,114,2,1,148,20,83,169,8,1,7,46,99,115,88,77,73,115,2,1,45,93,167,51,8,1,3,46,101,117,2,1,45,174,16,97,8,1,10,46,102,109,45,116,111,97,115,116,83,2,1,99,64,173,41,8,1,19,46,106,115,45,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,2,1,118,117,98,60,8,1,25,46,106,115,45,99,111,111,107,105,101,115,45,115,101,116,116,105,110,103,45,109,111,100,97,108,2,1,118,117,98,60,8,1,12,46,109,112,112,45,105,115,45,111,112,101,110,2,1,212,229,170,92,8,1,30,46,110,97,118,98,97,114,45,102,105,120,101,100,45,116,111,112,32,62,32,46,99,111,110,116,97,105,110,101,114,2,1,125,26,7,62,8,1,16,46,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,2,1,139,206,150,215,8,1,13,46,112,45,99,111,111,107,105,101,45,98,97,114,2,1,80,236,165,69,8,1,9,46,112,100,49,48,45,105,110,103,2,1,30,172,185,249,8,1,25,46,112,111,115,105,116,105,111,110,45,102,105,120,101,100,46,111,118,46,115,104,97,100,111,119,2,1,95,25,9,170,8,1,18,46,115,101,116,45,119,105,110,45,99,111,111,45,112,111,112,117,112,2,1,212,229,168,64,8,1,9,46,119,95,110,111,116,105,99,101,2,1,206,100,93,193,0,1,69,91,115,114,99,61,34,104,116,116,112,115,58,47,47,115,116,97,116,105,99,46,112,111,115,116,97,46,115,107,47,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,115,47,100,105,97,108,111,103,47,115,107,47,105,110,100,101,120,46,104,116,109,108,34,93,2,1,126,160,122,76,0,1,40,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,112,120,59,34,93,2,1,128,95,44,102,0,1,31,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,108,97,121,111,117,116,45,112,111,112,117,112,34,93,2,1,139,206,150,215,0,1,54,100,105,118,91,115,116,121,108,101,94,61,34,112,97,100,100,105,110,103,45,116,111,112,58,32,49,48,112,120,59,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,49,48,112,120,59,34,93,2,1,233,213,149,153,0,1,41,100,105,118,91,115,116,121,108,101,94,61,34,119,105,100,116,104,58,32,49,48,48,37,59,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,34,93,2,1,142,224,200,184,16,1,8,35,99,99,45,110,111,116,101,2,1,87,207,133,186,16,1,21,35,99,100,45,109,111,100,117,108,101,45,109,111,100,97,108,45,109,97,105,110,2,1,5,192,133,48,16,1,11,35,99,107,45,111,118,101,114,108,97,121,2,1,196,117,196,208,16,1,20,35,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,87,114,97,112,2,1,206,58,185,194,16,1,13,35,99,111,111,107,105,101,95,112,111,112,117,112,2,1,27,100,10,122,16,1,8,35,103,114,97,121,79,117,116,2,1,94,49,20,3,16,1,13,35,112,114,101,108,111,97,100,95,111,118,101,114,2,1,206,58,185,194,8,1,18,46,95,49,122,66,80,53,114,117,121,109,99,51,56,78,68,55,66,2,1,56,182,215,105,8,1,11,46,99,99,45,119,114,97,112,112,101,114,2,1,247,192,209,26,8,1,11,46,99,100,45,111,118,101,114,108,97,121,2,1,5,192,133,48,8,1,11,46,99,111,111,107,105,101,67,111,110,116,2,1,55,16,179,143,8,1,27,46,99,111,111,107,105,101,95,97,103,114,101,101,109,101,110,116,95,99,111,110,116,97,105,110,101,114,2,1,87,5,11,138,8,1,12,46,99,115,115,45,49,101,54,111,122,106,99,2,1,111,242,159,25,8,1,5,46,100,97,114,107,2,1,79,57,36,106,8,1,4,46,102,102,102,2,3,108,88,113,176,117,41,255,15,124,94,131,51,8,1,5,46,107,117,107,105,2,1,206,133,11,19,8,1,11,46,109,100,45,99,111,111,107,105,101,115,2,2,28,122,109,40,47,253,26,183,8,1,11,46,109,100,45,111,118,101,114,108,97,121,2,2,28,122,109,40,47,253,26,183,8,1,15,46,109,111,100,97,108,115,45,111,118,101,114,108,97,121,2,1,149,228,165,37,8,1,12,46,112,111,108,112,114,111,115,111,106,110,111,2,1,14,6,188,254,0,1,38,91,115,116,121,108,101,94,61,34,109,97,114,103,105,110,58,49,48,37,32,97,117,116,111,59,32,119,105,100,116,104,58,56,48,37,59,34,93,2,1,206,135,239,196,0,1,35,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,32,116,111,112,58,48,112,120,59,34,93,2,1,206,135,239,196,0,1,22,98,111,100,121,32,62,32,46,117,114,101,106,97,110,106,101,99,101,110,116,101,114,2,1,110,159,56,170,0,1,74,100,105,118,91,115,116,121,108,101,42,61,34,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,112,120,32,45,53,112,120,32,49,52,112,120,32,45,52,112,120,32,114,103,98,97,34,93,2,1,139,236,120,88,0,1,17,116,114,32,62,32,46,110,97,112,105,115,110,97,110,111,103,105,2,1,110,159,56,170,0,1,20,116,114,32,62,32,46,117,114,101,106,97,110,106,101,99,101,110,116,101,114,2,1,110,159,56,170,0,1,7,116,114,32,62,32,116,100,2,1,52,34,49,199,16,1,12,35,73,110,102,111,114,109,97,99,105,111,110,2,1,190,6,229,49,16,1,11,35,87,105,110,100,111,119,76,111,97,100,2,1,16,125,145,151,16,1,5,35,95,95,98,103,2,1,80,185,243,238,16,1,10,35,95,95,99,111,111,107,105,101,115,2,1,80,185,243,238,16,1,21,35,97,98,100,109,45,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,2,1,138,96,120,191,16,1,19,35,97,99,99,101,112,116,97,116,105,111,110,67,77,80,87,97,108,108,2,1,194,197,253,186,16,1,16,35,97,99,101,112,116,97,114,45,99,111,111,107,105,101,115,2,1,218,219,82,147,16,1,19,35,97,100,97,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,172,199,127,40,16,1,11,35,97,100,100,105,116,105,111,110,97,108,2,1,35,84,210,234,16,1,8,35,97,110,117,110,99,105,111,2,1,84,199,135,218,16,1,22,35,97,114,115,121,115,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,2,1,187,172,89,129,16,1,6,35,97,118,105,115,111,2,8,9,131,168,29,14,133,63,47,20,236,123,79,21,136,125,63,70,189,0,86,77,166,55,54,143,130,111,107,220,255,51,134,16,1,10,35,97,118,105,115,111,95,111,102,102,2,1,222,0,213,94,16,1,10,35,97,118,105,115,111,108,115,115,105,2,1,143,53,238,71,16,1,10,35,97,118,105,115,111,115,117,115,99,2,1,15,72,196,219,16,1,6,35,98,97,114,114,97,2,2,68,160,196,1,209,107,169,63,16,1,22,35,98,97,114,114,97,95,109,101,110,115,97,106,101,95,99,111,111,107,105,101,115,2,1,86,189,11,244,16,1,22,35,98,115,45,103,100,112,114,45,99,111,111,107,105,101,115,45,109,111,100,97,108,2,1,172,134,124,44,16,1,20,35,99,45,99,111,111,107,105,101,115,95,95,109,111,100,97,108,98,97,114,2,1,207,23,206,70,16,1,10,35,99,45,109,101,115,115,97,103,101,2,1,242,88,19,184,16,1,9,35,99,45,110,111,116,105,99,101,2,1,80,213,160,171,16,1,10,35,99,97,95,98,97,110,110,101,114,2,1,14,19,28,211,16,1,9,35,99,97,102,77,111,100,97,108,2,1,38,157,59,188,16,1,13,35,99,97,112,97,95,103,97,108,108,101,116,97,2,1,15,205,78,128,16,1,22,35,99,111,110,102,105,103,117,114,97,99,105,111,110,95,99,111,111,107,105,101,115,2,1,64,72,21,132,16,1,27,35,99,111,110,115,101,110,116,77,111,100,101,68,105,97,108,111,103,67,111,110,116,97,105,110,101,114,2,1,79,120,117,209,16,1,17,35,99,111,110,116,97,105,110,101,114,45,115,99,114,101,101,110,2,1,160,35,228,169,16,1,18,35,99,111,110,116,97,105,110,101,114,95,111,112,97,99,105,116,121,2,3,105,144,136,58,121,29,45,71,206,185,134,178,16,1,5,35,99,111,111,107,2,1,102,210,30,230,16,1,12,35,99,111,111,107,105,101,45,97,114,101,97,2,1,31,0,78,35,16,1,19,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,97,103,101,2,1,234,231,178,189,16,1,22,35,99,111,111,107,105,101,45,119,114,97,112,112,101,114,45,111,98,106,101,116,111,2,1,9,209,234,53,16,1,10,35,99,111,111,107,105,101,84,111,112,2,1,237,21,48,76,16,1,15,35,99,111,111,107,105,101,95,98,108,111,99,107,101,114,2,1,47,37,96,230,16,1,10,35,99,111,111,107,105,101,98,97,114,2,1,38,208,165,6,16,1,12,35,99,111,111,107,105,101,115,45,105,107,105,2,1,98,20,206,86,16,1,26,35,99,111,111,107,105,101,115,67,111,110,102,105,103,117,114,97,116,105,111,110,77,111,100,97,108,2,1,38,157,173,124,16,1,22,35,99,111,111,107,105,101,115,95,99,111,110,102,105,103,117,114,97,116,105,111,110,2,1,109,18,28,142,16,1,18,35,99,115,95,105,110,102,111,114,109,97,116,105,111,110,66,97,114,2,1,105,150,199,231,16,1,19,35,100,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,2,1,42,225,55,237,16,1,10,35,100,97,114,107,108,97,121,101,114,2,1,209,250,2,218,16,1,11,35,100,105,118,67,111,110,115,101,110,116,2,1,126,17,96,76,16,1,18,35,101,99,108,45,99,111,110,116,97,105,110,101,114,45,98,111,120,2,1,168,157,119,180,16,1,6,35,102,98,45,99,100,2,1,102,11,138,185,16,1,11,35,102,111,110,100,111,97,118,105,115,111,2,7,9,131,168,29,14,133,63,47,20,236,123,79,77,166,55,54,77,209,28,229,143,130,111,107,220,255,51,134,16,1,24,35,102,111,110,100,111,116,114,97,110,115,112,97,114,101,110,99,105,97,45,103,114,105,115,2,1,112,73,232,230,16,1,4,35,104,105,100,2,1,194,196,253,9,16,1,8,35,104,121,108,95,99,111,111,2,1,176,101,124,32,16,1,11,35,105,116,114,111,95,111,112,97,99,111,2,1,48,28,76,177,16,1,11,35,105,116,114,111,95,112,111,112,117,112,2,1,48,28,76,177,16,1,15,35,108,97,112,117,116,97,112,111,108,105,116,105,99,97,2,1,108,45,118,81,16,1,13,35,108,101,103,97,108,67,111,111,107,105,101,115,2,1,219,253,69,148,16,1,4,35,108,101,121,2,1,125,164,141,56,16,1,9,35,108,111,112,100,95,111,102,102,2,1,188,113,232,3,16,1,9,35,108,111,112,100,103,100,100,100,2,2,107,145,149,90,136,231,171,116,16,1,11,35,109,101,115,115,97,103,101,98,97,114,2,1,180,89,40,136,16,1,30,35,109,111,100,97,108,45,99,111,111,107,105,101,115,45,50,48,50,49,45,104,111,114,105,122,111,110,116,97,108,2,1,66,198,134,223,16,1,15,35,109,111,100,97,108,67,111,110,116,97,105,110,101,114,2,1,65,79,26,144,16,1,12,35,109,111,100,97,108,67,111,111,107,105,101,2,1,57,168,48,141,16,1,13,35,110,111,116,105,102,105,99,97,116,105,111,110,2,1,125,136,37,144,16,1,9,35,111,118,101,114,98,111,120,51,2,14,5,118,252,91,25,152,222,189,78,132,221,10,78,206,224,187,81,80,184,49,93,47,245,212,93,190,42,145,129,68,174,2,137,104,70,0,149,78,137,116,149,170,68,160,152,196,109,225,163,3,52,249,180,142,22,185,16,1,13,35,112,97,103,101,45,111,118,101,114,108,97,121,2,1,49,201,170,182,16,1,23,35,112,100,99,99,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,2,1,49,78,149,254,16,1,14,35,112,100,99,99,45,109,111,100,97,108,45,98,103,2,1,54,184,198,189,16,1,8,35,112,111,108,67,111,111,107,2,1,89,4,239,137,16,1,3,35,112,112,2,1,151,213,159,140,16,1,14,35,113,76,116,101,109,112,79,118,101,114,108,97,121,2,1,205,155,165,79,16,1,13,35,115,116,97,116,105,99,45,99,111,118,101,114,2,1,202,104,138,143,16,1,15,35,115,121,115,116,101,109,45,109,101,115,115,97,103,101,2,1,189,138,92,190,16,1,19,35,116,105,109,101,115,45,108,101,103,97,108,45,110,111,116,105,99,101,2,1,19,196,252,217,16,1,21,35,117,99,97,95,112,111,112,117,112,95,98,97,99,107,103,114,111,117,110,100,2,1,163,3,120,252,16,1,14,35,119,112,45,99,111,111,107,105,101,45,112,114,111,2,1,122,244,94,26,16,1,18,35,122,121,108,107,95,97,118,105,115,111,99,111,111,107,105,101,115,2,1,190,35,12,38,8,1,5,46,67,67,48,53,2,1,103,1,194,57,8,1,8,46,67,79,79,75,73,69,83,2,1,127,30,210,214,8,1,25,46,67,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,71,101,110,101,114,97,108,2,1,192,221,86,235,8,1,29,46,70,108,111,97,116,105,110,103,66,111,120,101,115,67,111,110,116,97,105,110,101,114,66,111,116,116,111,109,2,1,43,44,54,168,8,1,9,46,75,111,108,97,99,105,107,121,2,1,86,238,180,31,8,1,19,46,77,84,77,45,98,97,110,110,101,114,45,99,111,111,107,105,101,115,2,1,61,29,141,235,8,1,8,46,80,114,105,118,97,99,121,2,2,137,209,70,117,192,144,196,193,8,1,19,46,95,99,111,110,116,97,105,110,101,114,95,49,112,109,48,114,95,49,2,1,209,148,127,210,8,1,14,46,97,106,97,120,45,112,114,111,103,114,101,115,115,2,1,163,3,7,58,8,1,19,46,97,108,101,114,116,95,95,109,115,103,45,87,114,97,112,112,101,114,2,1,31,208,80,211,8,1,12,46,98,97,110,110,101,114,45,98,111,100,121,2,1,160,47,103,150,8,1,6,46,98,97,114,114,97,2,2,38,156,72,64,140,15,95,109,8,1,13,46,98,97,114,114,97,67,111,111,107,105,101,115,2,1,54,155,234,145,8,1,38,46,98,97,115,105,99,45,45,100,114,97,119,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,97,114,45,110,111,116,105,99,101,2,1,13,92,44,151,8,1,58,46,98,97,115,105,99,45,45,100,114,97,119,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,97,114,45,110,111,116,105,99,101,45,45,112,97,103,101,45,99,111,110,116,101,110,116,45,108,97,121,101,114,2,1,13,92,44,151,8,1,14,46,98,97,115,105,99,76,105,103,104,116,98,111,120,2,1,2,113,241,185,8,1,10,46,98,103,45,99,111,111,107,105,101,2,1,174,26,113,133,8,1,11,46,98,103,45,111,118,101,114,108,97,121,2,1,44,52,3,17,8,1,9,46,98,103,95,112,111,112,117,112,2,2,70,74,192,160,205,29,23,185,8,1,13,46,98,108,117,114,45,99,111,111,107,105,101,115,2,1,232,15,198,247,8,1,8,46,99,45,109,111,100,97,108,2,1,203,139,70,229,8,1,7,46,99,84,87,66,104,80,2,1,46,75,201,234,8,1,6,46,99,95,49,50,56,2,4,32,205,30,166,41,77,187,113,89,69,35,235,139,83,232,32,8,1,23,46,99,99,111,111,107,105,101,112,111,112,117,112,119,114,97,112,98,97,110,110,101,114,2,1,127,196,230,91,8,1,20,46,99,105,116,105,45,110,97,118,98,97,114,45,109,101,115,115,97,103,101,2,1,39,96,147,228,8,1,9,46,99,109,45,112,111,112,117,112,2,2,58,74,205,103,149,208,187,137,8,1,16,46,99,109,45,119,112,45,99,111,110,116,97,105,110,101,114,2,1,120,42,143,151,8,1,13,46,99,111,110,115,101,110,116,66,111,120,101,115,2,1,143,123,106,92,8,1,21,46,99,111,111,107,105,101,45,99,111,110,102,105,103,117,114,97,116,105,111,110,2,1,17,213,100,203,8,1,16,46,99,111,111,107,105,101,66,111,120,95,51,48,86,56,98,2,1,126,1,98,126,8,1,18,46,99,111,111,107,105,101,115,45,97,117,116,104,111,114,105,122,101,2,1,209,148,127,210,8,1,22,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,2,34,78,177,223,171,10,228,69,8,1,16,46,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,2,1,52,207,15,164,8,1,23,46,99,111,111,107,105,101,115,77,101,115,115,97,103,101,45,119,114,97,112,112,101,114,2,1,97,12,246,167,8,1,18,46,99,111,111,107,105,101,115,106,115,114,45,98,97,110,110,101,114,2,1,176,149,13,147,8,1,12,46,99,112,77,97,105,110,80,97,110,101,108,2,1,214,99,169,207,8,1,17,46,99,117,114,116,97,105,110,95,108,105,103,104,116,98,111,120,2,1,122,115,189,172,8,1,7,46,100,76,121,109,82,107,2,1,5,139,187,137,8,1,12,46,100,97,114,107,45,102,105,108,116,101,114,2,1,44,50,143,104,8,1,13,46,100,97,116,97,45,112,114,105,118,97,99,121,2,1,122,128,196,147,8,1,7,46,100,107,112,121,106,79,2,1,5,139,187,137,8,1,5,46,100,114,111,112,2,1,187,172,89,129,8,1,7,46,101,72,115,78,87,66,2,1,14,194,220,197,8,1,8,46,101,110,99,97,98,101,122,2,1,27,16,91,74,8,1,7,46,102,107,79,100,83,89,2,1,172,79,88,196,8,1,14,46,102,111,111,116,101,114,95,95,116,101,114,109,115,2,1,100,66,221,239,8,1,10,46,102,117,101,45,109,111,100,97,108,2,1,217,188,32,138,8,1,19,46,102,117,101,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,217,188,32,138,8,1,12,46,102,117,108,108,79,112,97,99,105,116,121,2,1,209,115,132,250,8,1,11,46,102,117,115,105,111,110,45,114,111,119,2,1,247,128,152,22,8,1,8,46,103,104,45,105,110,102,111,2,1,254,170,31,79,8,1,17,46,103,108,111,98,97,108,45,115,116,97,116,101,109,101,110,116,2,1,162,111,37,118,8,1,12,46,103,108,111,119,45,98,97,110,110,101,114,2,1,120,193,28,90,8,1,5,46,104,105,100,101,2,1,62,165,120,38,8,1,25,46,105,97,109,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,109,111,100,97,108,2,1,111,112,61,232,8,1,34,46,105,97,109,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,111,112,61,232,8,1,10,46,105,110,102,111,95,112,114,105,118,2,1,249,77,114,156,8,1,7,46,105,114,75,74,89,106,2,1,172,79,88,196,8,1,5,46,106,115,115,49,2,1,45,71,111,199,8,1,7,46,106,115,115,50,54,56,2,1,63,198,48,249,8,1,6,46,106,115,115,52,53,2,1,241,195,103,180,8,1,10,46,107,116,104,45,116,111,97,115,116,2,1,81,14,41,167,8,1,17,46,109,99,101,82,111,119,45,45,114,101,108,97,116,105,118,101,2,1,178,24,96,60,8,1,22,46,109,99,110,84,101,109,112,108,97,116,101,80,97,103,101,66,97,110,110,101,114,2,1,50,191,86,108,8,1,7,46,109,102,112,45,98,103,2,1,52,0,85,100,8,1,9,46,109,102,112,45,119,114,97,112,2,1,52,0,85,100,8,1,41,46,109,111,98,105,108,101,45,117,110,100,101,114,115,105,122,101,100,45,117,112,112,101,114,46,109,111,98,105,108,101,45,102,111,114,99,101,104,105,100,101,2,1,230,231,3,96,8,1,13,46,109,111,100,97,108,45,97,118,105,115,111,115,2,1,162,101,167,14,8,1,18,46,109,111,100,97,108,45,99,111,110,100,105,99,105,111,110,101,115,2,1,52,119,212,112,8,1,15,46,109,111,100,97,108,115,45,119,114,97,112,112,101,114,2,1,199,94,44,38,8,1,8,46,109,111,115,116,114,97,114,2,1,157,255,101,37,8,1,13,46,110,111,109,97,45,112,114,105,118,97,99,121,2,1,7,204,5,194,8,1,18,46,110,111,116,105,102,105,99,97,116,105,111,110,45,115,117,98,115,2,1,3,0,244,66,8,1,9,46,110,111,116,105,102,105,110,111,2,1,216,132,253,237,8,1,7,46,110,111,116,105,102,121,2,1,52,43,39,229,8,1,12,46,111,116,115,100,107,95,97,108,101,114,116,2,1,214,178,89,142,8,1,14,46,111,116,115,100,107,95,111,118,101,114,108,97,121,2,1,214,178,89,142,8,1,19,46,111,120,121,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,117,191,131,90,8,1,4,46,112,103,99,2,1,32,206,82,220,8,1,27,46,112,111,114,116,108,101,116,45,99,111,111,107,105,101,115,45,108,97,121,111,117,116,45,115,101,116,2,1,129,73,113,236,8,1,24,46,113,67,111,111,107,105,101,65,110,105,109,97,99,105,111,110,69,110,116,114,97,100,97,2,1,188,121,15,58,8,1,13,46,114,101,45,83,104,97,114,101,100,67,109,112,2,1,23,151,71,169,8,1,13,46,114,101,118,101,97,108,45,109,111,100,97,108,2,1,177,160,127,222,8,1,15,46,114,101,118,101,97,108,45,111,118,101,114,108,97,121,2,1,48,250,53,189,8,1,6,46,115,105,112,111,49,2,1,183,17,6,111,8,1,20,46,115,116,105,99,107,121,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,54,26,83,59,8,1,23,46,115,116,121,108,101,115,95,115,110,97,99,107,98,97,114,95,95,51,105,66,84,98,2,1,191,183,99,187,8,1,18,46,115,117,105,45,84,99,102,70,105,114,115,116,76,97,121,101,114,2,2,38,51,33,34,95,233,19,219,8,1,13,46,115,117,112,101,114,99,111,111,107,105,101,115,2,1,97,188,20,90,8,1,15,46,115,118,101,108,116,101,45,49,117,53,113,53,57,97,2,1,209,148,127,210,8,1,13,46,116,111,97,115,116,45,98,111,116,116,111,109,2,1,146,130,235,192,8,1,11,46,116,111,112,45,104,101,97,100,101,114,2,1,121,136,188,182,8,1,7,46,116,111,112,66,97,114,2,1,163,4,94,26,8,1,13,46,116,117,115,115,45,99,111,111,107,105,101,115,2,1,115,76,22,193,8,1,18,46,117,105,45,100,105,97,108,111,103,45,98,117,116,116,111,110,115,2,1,121,73,98,151,8,1,11,46,117,114,103,101,110,116,45,109,115,103,2,1,23,13,221,227,8,1,14,46,118,109,45,45,99,111,110,116,97,105,110,101,114,2,3,34,78,177,223,66,68,220,55,171,10,228,69,8,1,12,46,118,109,45,45,111,118,101,114,108,97,121,2,2,34,78,177,223,171,10,228,69,0,1,36,91,97,114,105,97,45,108,97,98,101,108,61,34,67,111,111,107,105,101,32,115,101,116,116,105,110,103,115,32,112,97,110,101,108,34,93,2,1,241,195,103,180,0,1,32,91,100,97,116,97,45,116,111,97,115,116,61,34,102,95,99,111,111,107,105,101,115,95,97,99,101,112,116,101,100,34,93,2,1,107,101,58,158,0,1,19,97,51,54,48,45,99,111,111,107,105,101,115,45,97,100,118,105,99,101,2,1,254,224,214,240,0,1,18,97,112,112,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,2,1,44,174,232,197,0,1,15,98,111,100,121,32,62,32,46,99,97,106,97,116,120,116,2,1,50,28,190,48,0,1,21,98,111,100,121,32,62,32,100,105,118,91,105,100,93,91,99,108,97,115,115,93,2,2,107,82,121,91,171,16,156,34,0,1,108,100,105,118,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,108,101,102,116,58,48,59,116,111,112,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,122,45,105,110,100,101,120,58,57,57,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,48,46,51,41,34,93,2,1,1,118,224,3,0,1,22,100,119,45,103,108,111,98,97,108,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,32,194,113,206,0,1,18,119,99,45,99,111,111,107,105,101,115,45,109,97,110,97,103,101,114,2,1,146,9,150,180,0,1,27,97,112,112,45,110,111,116,105,102,105,99,97,116,105,111,110,115,45,99,111,110,116,97,105,110,101,114,2,1,236,22,167,42,8,1,13,46,115,104,111,119,66,97,99,107,100,114,111,112,2,1,247,239,188,91,8,1,12,46,115,104,111,119,67,111,110,115,101,110,116,2,1,247,239,188,91,8,1,16,46,102,99,45,99,111,110,115,101,110,116,45,114,111,111,116,2,1,207,84,32,220,8,1,10,46,102,117,101,45,109,111,100,97,108,2,1,12,248,183,214,8,1,19,46,102,117,101,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,12,248,183,214,8,1,17,46,112,111,112,117,112,66,97,114,114,97,67,111,111,107,105,101,2,1,142,61,183,121,8,1,9,46,112,111,112,117,112,95,98,103,2,1,231,61,232,182,16,1,16,35,67,111,111,107,105,101,115,83,101,116,116,105,110,103,115,2,2,153,128,57,181,169,49,96,194,16,1,11,35,97,112,112,114,111,118,101,98,111,120,2,1,185,252,193,167,16,1,22,35,99,98,99,107,70,117,108,108,115,99,114,101,101,110,66,108,111,99,107,101,114,2,1,239,195,118,128,16,1,22,35,99,98,99,107,99,104,97,110,103,101,104,111,108,100,101,114,70,105,114,115,116,2,1,239,195,118,128,16,1,12,35,99,111,111,99,107,105,101,105,110,102,111,2,1,86,29,134,215,16,1,11,35,99,111,111,107,105,101,109,103,109,116,2,1,13,240,138,185,16,1,12,35,99,111,111,107,105,101,109,111,100,97,108,2,1,229,211,159,34,16,1,18,35,101,112,45,99,111,111,107,105,101,45,99,111,110,99,101,110,116,2,6,17,170,12,169,33,76,177,141,76,162,9,117,111,142,47,179,120,199,95,90,242,0,224,50,16,1,29,35,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,111,118,101,114,108,97,121,2,1,218,98,25,127,16,1,23,35,103,101,116,67,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,2,1,190,204,87,237,16,1,6,35,103,108,97,115,115,2,1,185,252,193,167,16,1,11,35,106,115,45,99,109,45,99,108,97,119,2,1,133,248,1,223,16,1,9,35,107,97,107,114,117,116,97,110,2,1,244,98,199,145,16,1,28,35,109,98,95,109,111,100,117,108,101,115,95,112,111,112,117,112,115,95,67,111,110,116,97,105,110,101,114,2,2,138,148,166,199,240,138,122,114,16,1,8,35,111,118,101,114,108,97,121,2,1,244,99,28,105,16,1,33,35,115,99,104,105,98,115,116,101,100,45,100,97,116,97,45,99,111,110,116,114,111,108,108,101,114,45,115,116,105,99,107,121,2,1,244,98,208,142,16,1,10,35,115,105,116,101,102,108,97,115,104,2,1,142,78,97,36,16,1,8,35,116,111,112,45,98,97,114,2,1,154,255,223,180,16,1,16,35,119,114,97,112,112,101,114,45,100,120,45,99,111,107,105,2,1,97,30,23,114,16,1,2,35,121,2,1,172,70,118,243,8,1,6,46,70,67,83,86,99,2,1,234,237,235,189,8,1,10,46,79,102,53,50,97,97,99,98,56,2,1,193,125,236,65,8,1,37,46,83,99,104,105,98,115,116,101,100,66,97,110,110,101,114,95,95,87,114,97,112,112,101,114,45,115,99,45,101,108,108,55,104,105,45,48,2,1,206,145,171,231,8,1,6,46,83,110,97,99,107,2,1,245,94,74,107,8,1,8,46,95,49,106,117,114,74,105,2,1,106,203,233,1,8,1,24,46,95,50,73,112,54,102,57,74,99,112,101,95,101,100,67,111,101,49,84,115,50,109,77,2,1,234,237,234,196,8,1,10,46,97,108,101,114,116,45,98,111,120,2,1,123,1,3,200,8,1,10,46,97,108,101,114,116,87,114,97,112,2,1,21,216,49,71,8,1,7,46,98,69,82,97,115,77,2,1,91,62,56,100,8,1,20,46,98,97,107,101,100,45,100,111,117,103,104,45,99,111,110,115,101,110,116,2,1,87,183,168,67,8,1,10,46,98,108,99,107,45,105,110,102,111,2,1,234,237,237,55,8,1,10,46,99,45,109,101,115,115,97,103,101,2,1,228,36,80,177,8,1,11,46,99,45,109,101,115,115,97,103,101,115,2,1,25,193,184,40,8,1,4,46,99,45,119,2,1,220,32,147,152,8,1,9,46,99,49,104,115,117,105,105,54,2,1,82,81,137,85,8,1,8,46,99,99,45,112,97,103,101,2,1,230,54,121,172,8,1,9,46,99,99,110,116,45,97,112,112,2,1,137,128,148,66,0,1,33,46,99,111,109,112,111,110,101,110,116,92,58,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,2,1,6,137,79,101,8,1,17,46,99,111,110,115,101,110,116,45,98,97,99,107,100,114,111,112,2,1,244,98,237,59,8,1,16,46,99,111,110,115,101,110,116,45,104,97,110,100,108,101,114,2,1,190,141,104,238,8,1,19,46,99,111,111,107,105,101,45,97,99,99,101,112,116,45,102,111,114,109,2,1,27,210,24,236,8,1,18,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,118,2,1,82,70,246,212,8,1,14,46,99,111,111,107,105,101,45,99,117,116,116,101,114,2,1,88,213,47,148,8,1,19,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,2,1,244,99,28,105,8,1,21,46,99,111,111,107,105,101,45,109,111,100,97,108,45,119,114,97,112,112,101,114,2,1,139,195,212,166,8,1,12,46,99,115,115,45,49,114,52,117,98,120,51,2,1,228,37,50,25,8,1,11,46,99,115,115,45,52,117,120,122,110,108,2,1,241,184,124,212,8,1,7,46,99,117,71,115,121,104,2,1,63,111,219,127,8,1,23,46,100,107,45,104,101,97,100,101,114,45,105,110,102,111,45,109,101,115,115,97,103,101,2,1,70,68,145,133,8,1,7,46,100,121,120,108,73,110,2,1,70,66,119,99,8,1,25,46,101,108,101,109,101,110,116,111,114,45,108,111,99,97,116,105,111,110,45,112,111,112,117,112,2,1,244,99,2,199,8,1,7,46,102,65,97,108,72,81,2,1,91,62,56,100,8,1,30,46,102,108,117,102,102,121,45,87,114,97,112,112,101,114,45,102,108,117,102,102,121,45,45,118,48,100,122,114,116,2,1,111,231,220,104,8,1,7,46,104,66,122,88,122,74,2,1,170,157,230,232,8,1,15,46,104,101,97,100,101,114,95,95,98,97,110,110,101,114,2,1,69,68,255,12,8,1,13,46,105,110,102,111,45,109,101,115,115,97,103,101,2,1,48,211,58,183,8,1,15,46,105,110,102,111,98,97,114,45,98,111,116,116,111,109,2,1,220,131,169,115,8,1,14,46,105,110,115,101,116,45,48,46,102,105,120,101,100,2,1,249,76,148,68,8,1,16,46,105,115,45,97,99,116,105,118,101,46,109,111,100,97,108,2,1,147,161,192,179,8,1,15,46,106,115,45,105,110,102,111,45,98,97,110,110,101,114,2,1,42,174,84,192,8,1,34,46,106,115,45,115,104,98,45,105,110,115,115,45,108,111,103,105,110,95,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,169,41,105,74,8,1,7,46,106,115,115,49,49,51,2,1,189,176,99,6,8,1,7,46,107,90,102,71,68,88,2,1,219,22,36,202,8,1,11,46,107,101,121,45,49,56,50,117,120,122,2,1,82,68,121,118,8,1,19,46,109,100,45,100,105,97,108,111,103,45,98,97,99,107,100,114,111,112,2,1,190,204,87,237,8,1,8,46,109,101,115,115,97,103,101,2,1,227,207,99,151,8,1,6,46,111,49,102,45,97,2,1,237,165,79,32,8,1,21,46,111,110,108,105,110,101,45,110,111,116,105,102,105,99,97,116,105,111,110,115,2,3,17,180,199,103,67,168,188,239,222,89,229,1,8,1,8,46,111,118,101,114,108,97,121,2,1,148,108,111,41,8,1,4,46,112,109,115,2,1,82,73,67,168,8,1,14,46,112,111,108,105,99,121,45,110,111,116,105,99,101,2,1,225,159,208,195,8,1,21,46,112,111,108,111,112,111,108,121,78,111,116,105,102,105,99,97,116,105,111,110,2,1,82,79,80,68,8,1,13,46,112,111,112,85,112,87,114,97,112,112,101,114,2,1,228,36,55,62,8,1,8,46,112,111,112,95,98,111,120,2,1,236,84,247,115,8,1,16,46,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,2,1,181,12,193,50,8,1,21,46,112,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,118,50,2,1,244,98,200,95,8,1,10,46,115,99,45,99,106,105,98,66,120,2,1,171,115,70,160,8,1,31,46,115,100,45,111,98,106,101,99,116,45,105,102,32,62,32,46,115,100,45,111,98,106,101,99,116,45,99,111,100,101,2,1,22,69,104,143,8,1,23,46,115,100,45,111,98,106,101,99,116,45,105,102,46,115,100,45,111,98,106,101,99,116,2,1,70,73,37,231,8,1,29,46,115,101,99,116,105,111,110,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,45,111,117,116,101,114,2,1,82,67,59,12,8,1,7,46,115,104,97,100,111,119,2,1,244,99,44,64,8,1,17,46,115,110,97,99,107,98,97,114,45,119,114,97,112,112,101,114,2,1,82,69,232,20,8,1,18,46,115,111,115,45,99,107,45,99,110,115,110,116,45,109,103,110,114,2,1,50,164,120,45,8,1,28,46,115,116,121,108,101,95,99,111,110,115,101,110,116,45,98,97,110,110,101,114,95,95,70,110,115,50,74,2,1,106,203,233,1,8,1,31,46,115,116,121,108,101,115,95,95,67,111,111,107,105,101,98,97,114,87,114,97,112,45,103,53,97,98,55,110,45,48,2,1,79,177,198,214,8,1,8,46,119,112,50,55,110,118,120,2,1,144,193,7,54,8,1,6,46,120,100,109,70,111,2,1,75,133,45,78,0,1,29,91,97,114,105,97,45,108,97,98,101,108,61,34,75,97,107,105,110,102,111,114,109,97,116,105,111,110,34,93,2,1,97,202,181,253,0,1,62,91,115,116,121,108,101,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,98,111,116,116,111,109,58,32,48,112,120,59,32,108,101,102,116,58,32,48,112,120,59,32,114,105,103,104,116,58,32,48,112,120,59,34,93,2,1,1,204,166,51,0,1,47,91,115,116,121,108,101,94,61,34,119,105,100,116,104,58,49,48,48,37,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,70,48,70,48,70,48,59,34,93,2,1,12,113,182,32,0,1,34,100,105,118,91,99,108,97,115,115,94,61,34,71,108,111,98,97,108,67,111,111,107,105,101,66,97,110,110,101,114,95,95,34,93,2,2,1,85,190,94,51,93,159,124,0,1,38,100,105,118,91,99,108,97,115,115,94,61,34,115,116,121,108,101,115,95,99,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,95,34,93,2,1,154,178,147,204,0,1,49,100,105,118,91,115,116,121,108,101,94,61,34,100,105,115,112,108,97,121,58,32,102,108,101,120,59,32,97,108,105,103,110,45,105,116,101,109,115,58,32,99,101,110,116,101,114,59,34,93,2,1,234,237,234,170,0,1,51,100,105,118,91,115,116,121,108,101,94,61,34,112,111,115,105,116,105,111,110,58,32,102,105,120,101,100,59,32,108,101,102,116,58,32,48,112,120,59,32,116,111,112,58,32,48,112,120,59,34,93,2,1,82,70,229,117,0,1,19,114,101,97,99,116,45,99,111,111,107,105,101,115,45,112,111,112,117,112,2,1,228,150,201,90,16,1,21,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,102,111,111,116,101,114,2,1,155,122,156,130,16,1,11,35,98,111,120,45,112,111,108,105,99,121,2,1,175,205,129,31,16,1,16,35,99,111,111,107,105,101,45,99,111,110,45,104,101,97,100,2,1,101,175,248,41,16,1,12,35,112,100,112,97,45,112,111,108,105,99,121,2,1,62,136,128,28,16,1,9,35,112,111,112,117,112,45,115,115,2,1,19,95,182,111,8,1,5,46,80,100,112,97,2,1,66,54,241,151,8,1,26,46,98,101,99,111,111,107,105,101,115,45,111,117,116,101,114,45,99,111,110,116,97,105,110,101,114,2,2,79,205,74,120,99,17,41,202,8,1,12,46,99,97,114,100,45,99,111,111,107,105,101,2,1,137,151,38,226,8,1,18,46,99,107,45,97,99,112,116,45,99,111,110,116,97,105,110,101,114,2,1,100,78,57,3,8,1,16,46,99,111,110,115,101,110,116,95,115,101,99,116,105,111,110,2,1,51,46,74,157,8,1,14,46,99,111,111,107,105,101,45,119,97,112,112,101,114,2,1,63,46,165,114,8,1,17,46,99,111,111,107,105,101,115,45,45,119,114,97,112,112,101,114,2,1,82,126,78,227,8,1,13,46,99,111,111,107,105,101,115,45,112,100,112,97,2,1,63,46,63,120,8,1,25,46,99,119,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,117,105,45,115,100,107,2,1,134,252,118,202,8,1,11,46,101,110,116,101,114,45,100,111,110,101,2,1,17,101,123,135,8,1,14,46,102,111,111,116,101,114,45,112,111,108,105,99,121,2,1,66,54,249,217,8,1,13,46,102,111,111,116,101,114,112,111,108,105,99,121,2,1,172,122,33,98,8,1,7,46,112,111,108,105,99,121,2,2,210,106,233,225,236,72,23,69,8,1,12,46,112,111,112,117,112,95,95,112,100,112,97,2,1,202,69,32,67,8,1,16,46,112,114,105,118,97,99,121,45,99,111,110,99,101,114,110,2,1,197,28,51,129,8,1,21,46,112,116,45,115,110,97,99,107,98,97,114,95,95,115,117,114,102,97,99,101,2,1,151,58,134,130,8,1,22,46,115,99,98,97,109,45,109,111,100,97,108,45,108,105,115,116,95,98,48,48,52,2,1,126,51,59,210,8,1,21,46,116,104,101,45,112,100,112,97,45,99,111,110,115,101,110,116,45,98,97,114,2,1,47,63,192,190,0,1,27,100,105,118,91,99,108,97,115,115,94,61,34,67,111,111,107,105,101,83,101,115,115,105,111,110,34,93,2,1,57,46,176,122,16,1,14,35,67,111,111,107,105,101,67,111,110,99,101,110,116,2,1,119,132,45,221,16,1,10,35,75,86,75,95,67,101,114,101,122,2,1,28,212,68,217,16,1,15,35,99,80,114,111,109,112,116,95,72,111,108,100,101,114,2,1,85,164,29,201,16,1,12,35,99,98,45,108,105,103,104,116,98,111,120,2,1,92,57,149,139,16,1,10,35,99,101,114,101,122,95,100,105,118,2,1,96,232,179,109,16,1,12,35,99,101,114,101,122,95,107,97,98,117,108,2,1,254,190,181,123,16,1,9,35,99,108,111,115,101,45,109,101,2,1,21,21,100,9,16,1,17,35,99,108,111,115,101,80,111,108,105,99,105,101,115,68,105,118,2,1,15,113,141,147,16,1,11,35,99,111,110,115,101,110,116,100,105,118,2,3,0,10,249,144,137,75,102,221,140,171,80,217,16,1,10,35,99,111,110,115,105,100,101,110,116,2,1,236,55,205,134,16,1,13,35,100,97,116,97,80,111,108,105,99,105,101,115,2,1,111,102,99,129,16,1,10,35,100,105,118,95,99,99,95,99,99,2,1,237,187,173,132,16,1,12,35,103,101,110,101,114,97,108,45,116,111,115,2,1,38,104,139,30,16,1,19,35,106,115,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,161,179,160,172,16,1,5,35,107,118,107,107,2,3,21,158,171,208,28,221,78,114,184,129,179,72,16,1,19,35,107,118,107,107,45,98,97,110,110,101,114,45,104,101,97,100,101,114,2,1,27,194,237,27,16,1,18,35,107,118,107,107,95,110,111,116,105,102,105,99,97,116,105,111,110,2,1,169,57,32,102,16,1,8,35,107,118,107,107,98,111,120,2,1,96,235,166,145,16,1,10,35,108,105,103,104,116,115,111,117,116,2,1,185,168,184,104,16,1,13,35,109,99,84,111,112,84,111,111,108,116,105,112,2,2,87,188,153,31,95,201,251,178,16,1,20,35,114,101,97,100,101,100,95,99,111,110,116,114,97,99,116,95,114,111,119,2,1,126,22,25,118,16,1,12,35,116,111,112,98,97,114,45,104,105,100,101,2,1,20,75,136,254,8,1,6,46,76,101,103,97,108,2,1,40,223,145,123,8,1,25,46,77,117,105,67,111,108,108,97,112,115,101,45,119,114,97,112,112,101,114,73,110,110,101,114,2,1,233,26,231,142,8,1,17,46,97,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,2,1,41,151,113,228,8,1,14,46,98,111,116,116,111,109,45,99,101,110,116,101,114,2,1,147,150,53,123,8,1,6,46,99,101,114,101,122,2,20,0,66,141,43,16,121,185,209,20,138,232,103,37,181,197,107,44,130,159,110,104,43,193,8,120,199,212,37,129,126,104,19,134,60,225,44,135,49,119,37,138,170,45,244,150,32,246,18,160,13,236,10,164,9,143,66,181,111,75,203,194,250,15,8,213,220,110,69,218,100,38,111,224,59,87,117,239,37,179,15,8,1,9,46,99,101,114,101,122,97,108,108,2,1,53,21,100,88,8,1,15,46,99,101,114,101,122,107,117,108,108,97,110,105,109,105,2,1,97,224,45,193,8,1,14,46,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,166,221,221,141,8,1,15,46,99,111,110,116,114,97,99,116,45,112,111,112,117,112,2,1,44,192,110,148,8,1,24,46,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,45,109,111,100,117,108,101,2,1,232,47,75,22,8,1,34,46,99,111,111,107,105,101,45,112,111,108,105,99,121,95,99,111,111,107,105,101,80,111,108,105,99,121,95,95,57,120,98,97,122,2,1,13,232,184,16,8,1,14,46,99,111,111,107,105,101,67,111,110,116,101,110,116,2,1,96,5,90,62,8,1,35,46,99,111,111,107,105,101,95,99,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,112,101,114,95,95,106,68,76,100,78,2,1,177,233,253,185,8,1,3,46,99,112,2,2,22,252,123,192,203,217,68,28,8,1,12,46,99,115,115,45,49,102,108,48,109,102,118,2,1,249,110,13,47,8,1,11,46,99,115,115,45,49,112,120,56,115,120,2,1,151,177,29,81,8,1,12,46,100,97,116,97,45,112,111,108,105,99,121,2,1,76,174,138,15,8,1,8,46,100,97,116,97,66,97,114,2,1,194,167,9,135,8,1,21,46,100,105,97,108,111,103,45,116,121,112,101,45,108,105,103,104,116,98,111,120,2,1,192,150,133,185,8,1,7,46,101,72,122,100,116,74,2,1,218,77,64,150,8,1,19,46,101,101,106,73,108,99,46,115,99,45,109,113,117,103,115,117,45,48,2,1,234,173,6,192,8,1,24,46,101,102,105,108,108,105,45,108,97,121,111,117,116,45,102,105,98,97,98,97,110,107,97,2,1,255,215,28,147,8,1,7,46,102,97,79,121,104,103,2,1,129,73,34,97,8,1,9,46,102,97,100,101,73,110,85,112,2,1,16,249,110,27,8,1,22,46,102,105,120,101,100,112,114,111,116,101,99,116,105,111,110,79,102,68,97,116,97,2,1,130,85,182,24,8,1,10,46,105,104,109,45,112,111,112,117,112,2,1,83,18,51,47,8,1,18,46,105,104,109,45,112,111,112,117,112,45,111,118,101,114,108,97,121,2,1,83,18,51,47,8,1,4,46,107,118,107,2,1,170,43,207,156,8,1,23,46,107,118,107,45,105,110,102,111,114,109,97,116,105,111,110,45,109,97,115,116,101,114,2,1,249,110,120,50,8,1,11,46,109,111,100,97,108,45,115,104,111,119,2,1,185,168,184,104,8,1,7,46,109,111,100,97,108,120,2,1,2,160,75,52,8,1,22,46,110,111,116,105,102,105,99,97,116,105,111,110,95,95,119,114,97,112,112,101,114,2,1,173,250,11,208,8,1,9,46,112,111,108,105,99,105,101,115,2,1,139,117,193,93,8,1,7,46,112,111,108,105,99,121,2,2,12,79,28,57,43,128,121,112,8,1,14,46,112,111,108,105,116,101,95,95,97,108,101,114,116,2,1,37,185,246,254,8,1,15,46,112,111,112,117,112,67,111,110,116,97,105,110,101,114,2,1,161,179,160,172,8,1,21,46,112,111,114,116,111,45,98,108,111,99,107,45,104,116,109,108,45,116,111,112,2,1,203,217,67,169,8,1,17,46,112,114,111,116,101,99,116,105,111,110,79,102,68,97,116,97,2,1,126,80,164,176,8,1,15,46,114,101,115,45,98,111,116,116,111,109,45,98,97,114,2,1,118,102,97,93,8,1,19,46,115,99,45,109,113,117,103,115,117,45,48,46,101,101,106,73,108,99,2,1,234,173,6,192,8,1,12,46,115,116,105,99,107,102,111,111,116,101,114,2,1,118,102,219,134,8,1,14,46,115,116,105,99,107,121,45,102,111,111,116,101,114,2,4,37,101,103,80,42,123,129,143,103,118,98,43,118,102,202,88,8,1,20,46,115,116,121,108,101,95,99,111,111,107,105,101,95,95,85,78,105,66,105,2,1,28,207,1,192,8,1,13,46,117,115,105,110,103,45,99,111,111,107,105,101,2,1,44,156,66,248,8,1,11,46,118,101,114,105,65,108,116,66,97,114,2,4,20,21,119,215,27,140,222,118,29,149,173,74,40,205,182,153,8,1,18,46,118,110,111,116,105,102,121,45,99,111,110,116,97,105,110,101,114,2,1,1,60,18,137,8,1,16,46,121,115,45,99,111,111,107,105,101,45,109,111,100,97,108,2,1,12,79,28,57,0,1,33,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,98,111,120,95,99,111,111,107,105,101,66,111,120,34,93,2,1,18,148,242,180,0,1,14,108,97,121,111,117,116,45,99,111,111,107,105,101,115,2,1,41,14,114,100,16,1,15,35,71,68,80,82,45,99,111,110,116,97,105,110,101,114,2,1,148,11,65,56,16,1,7,35,97,99,99,101,112,116,2,1,116,164,43,16,16,1,19,35,102,108,111,97,116,105,110,103,95,97,103,114,101,101,109,101,110,116,2,1,30,161,115,128,16,1,13,35,112,97,114,101,110,116,95,112,111,112,117,112,2,1,96,179,51,62,16,1,7,35,112,98,108,111,99,107,2,1,182,197,110,127,16,1,7,35,112,111,108,105,99,121,2,1,52,187,234,93,16,1,14,35,112,111,108,105,99,121,45,97,99,99,101,112,116,2,1,187,84,241,79,0,1,38,35,114,111,111,116,32,100,105,118,91,99,108,97,115,115,94,61,34,99,111,111,107,105,101,77,101,115,115,97,103,101,45,114,111,111,116,34,93,2,1,195,237,85,81,16,1,21,35,117,115,97,103,101,45,110,111,116,105,99,101,45,109,101,115,115,97,103,101,2,1,30,11,180,31,8,1,11,46,68,105,115,99,108,97,105,109,101,114,2,1,47,223,73,236,8,1,23,46,95,50,118,119,73,56,57,114,51,120,121,49,69,57,118,85,112,120,67,49,45,113,2,1,149,46,172,54,8,1,24,46,95,51,107,49,48,99,49,102,85,72,104,72,90,87,85,106,99,67,117,48,57,86,101,2,1,149,46,172,54,8,1,39,46,97,100,108,95,99,109,112,95,99,111,110,115,101,110,116,45,100,105,97,108,111,103,45,109,111,100,117,108,101,95,98,97,99,107,100,114,111,112,2,1,187,84,241,79,0,1,38,46,97,103,114,101,101,67,111,111,107,105,101,92,46,99,111,109,112,111,110,101,110,116,95,95,99,111,111,107,105,101,87,114,97,112,112,101,114,2,1,127,46,222,209,8,1,17,46,98,97,99,107,103,114,111,117,110,100,45,112,111,112,117,112,2,1,50,178,166,17,8,1,6,46,98,108,111,99,107,2,1,160,129,6,24,8,1,11,46,98,110,95,99,111,111,107,105,101,115,2,1,224,246,74,255,8,1,20,46,99,97,114,116,97,45,112,111,108,105,99,121,45,98,111,116,116,111,109,2,1,185,172,155,4,8,1,5,46,99,111,111,107,2,1,236,41,113,196,8,1,23,46,99,111,111,107,105,101,115,45,112,111,112,117,112,45,115,117,115,112,105,108,110,101,2,1,204,139,39,242,8,1,6,46,99,111,111,111,107,2,1,214,64,216,239,8,1,17,46,100,102,95,95,99,111,111,107,105,101,45,112,111,112,117,112,2,1,136,243,77,139,8,1,7,46,103,76,102,105,121,114,2,1,235,69,177,1,8,1,7,46,103,78,66,120,77,77,2,1,113,236,38,86,8,1,17,46,112,111,108,105,116,105,99,95,99,111,110,102,105,100,101,108,2,1,188,102,241,26,8,1,12,46,116,101,114,109,115,95,112,111,112,117,112,2,2,198,240,111,220,248,19,158,134,8,1,8,46,119,97,114,110,105,110,103,2,1,188,60,146,53,0,1,15,91,114,111,108,101,61,34,100,105,97,108,111,103,34,93,2,2,219,159,241,76,249,243,123,86,0,1,45,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,95,95,99,111,110,116,97,105,110,101,114,34,93,2,1,1,18,185,254,16,1,23,35,98,103,76,97,121,101,114,115,95,99,111,109,112,45,106,104,113,55,109,99,55,50,2,1,144,9,223,144,16,1,13,35,105,100,112,111,112,95,99,111,111,107,105,101,2,1,202,82,242,223,8,1,21,46,102,111,111,116,101,114,95,95,110,111,116,105,102,105,99,97,116,105,111,110,2,1,19,170,131,246,0,1,128,0,0,0,136,91,115,116,121,108,101,61,34,97,108,105,103,110,45,105,116,101,109,115,58,32,99,101,110,116,101,114,59,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,40,50,51,55,44,32,50,52,53,44,32,50,53,50,41,59,32,112,97,100,100,105,110,103,45,116,111,112,58,32,49,50,112,120,59,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,49,50,112,120,59,32,45,119,101,98,107,105,116,45,98,111,120,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,34,93,2,1,45,112,14,110,8,1,25,46,99,111,111,107,105,101,66,97,110,110,101,114,95,115,104,111,119,95,95,49,69,56,68,106,2,1,87,218,107,105,8,1,17,46,115,103,45,112,111,112,117,112,45,99,111,110,116,101,110,116,2,1,87,218,170,189,16,1,14,35,110,101,103,101,115,67,97,110,105,97,116,97,100,2,1,104,116,2,112,8,1,13,46,99,111,111,107,105,101,115,45,116,101,120,116,2,1,91,50,112,165,0,0,0,2,0,0,0,2,0,0,0,1,75,0,0,0,0,0,2,0,0,0,124,221,128,234,16,0,0,0,32,0,56,91,104,114,101,102,61,34,104,116,116,112,115,58,47,47,100,101,118,111,119,108,46,105,111,47,119,111,114,100,112,114,101,115,115,45,114,101,97,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,47,34,93,0,0,64,0,0,0,64,182,0,0,32,91,128,0,4,153,139,0,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,4,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,14,0,0,0,16,0,0,0,18,0,0,0,20,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,26,0,0,0,26,0,0,0,26,0,0,0,26,0,0,0,26,0,0,0,26,0,0,0,26,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,32,0,0,0,34,0,0,0,34,0,0,0,36,0,0,0,36,0,0,0,38,0,0,0,38,0,0,0,38,0,0,0,38,0,0,0,38,0,0,0,38,0,0,0,38,0,0,0,40,0,0,0,42,0,0,0,42,0,0,0,42,0,0,0,42,0,0,0,42,0,0,0,46,0,0,0,50,0,0,0,50,0,0,0,50,0,0,0,50,0,0,0,50,0,0,0,50,0,0,0,50,0,0,0,52,0,0,0,52,0,0,0,54,0,0,0,56,0,0,0,58,0,0,0,60,0,0,0,60,0,0,0,60,0,0,0,60,0,0,0,62,0,0,0,62,0,0,0,62,0,0,0,62,0,0,0,64,0,0,0,64,0,0,0,64,0,0,0,64,0,0,0,64,0,0,0,66,0,0,0,66,0,0,0,66,0,0,0,66,0,0,0,66,0,0,0,68,0,0,0,68,0,0,0,72,0,0,0,72,0,0,0,72,0,0,0,72,0,0,0,72,0,0,0,72,0,0,0,76,0,0,0,78,0,0,0,80,0,0,0,82,0,0,0,82,0,0,0,82,0,0,0,84,0,0,0,86,0,0,0,86,0,0,0,88,0,0,0,88,0,0,0,88,0,0,0,88,0,0,0,90,0,0,0,90,0,0,0,92,0,0,0,94,0,0,0,98,0,0,0,102,0,0,0,102,0,0,0,102,0,0,0,102,0,0,0,104,0,0,0,106,0,0,0,106,0,0,0,108,0,0,0,110,0,0,0,110,0,0,0,112,0,0,0,112,0,0,0,112,0,0,0,114,0,0,0,116,0,0,0,116,0,0,0,116,0,0,0,116,0,0,0,116,0,0,0,116,0,0,0,118,0,0,0,118,0,0,0,120,0,0,0,122,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,126,0,0,0,132,0,0,0,132,0,0,0,136,0,0,0,138,0,0,0,138,0,0,0,138,0,0,0,140,0,0,0,140,0,0,0,140,0,0,0,140,0,0,0,140,0,0,0,140,0,0,0,140,0,0,0,140,0,0,0,142,0,0,0,142,0,0,0,144,0,0,0,144,0,0,0,146,0,0,0,148,0,0,0,148,0,0,0,150,0,0,0,152,0,0,0,156,0,0,0,156,0,0,0,158,0,0,0,158,0,0,0,158,0,0,0,164,0,0,0,164,0,0,0,166,0,0,0,168,0,0,0,172,0,0,0,172,0,0,0,174,0,0,0,174,0,0,0,176,0,0,0,176,0,0,0,178,0,0,0,180,0,0,0,180,0,0,0,180,0,0,0,180,0,0,0,184,0,0,0,186,0,0,0,188,0,0,0,188,0,0,0,188,0,0,0,188,0,0,0,188,0,0,0,192,0,0,0,194,0,0,0,196,0,0,0,198,0,0,0,200,0,0,0,200,0,0,0,200,0,0,0,202,0,0,0,204,0,0,0,204,0,0,0,204,0,0,0,204,0,0,0,206,0,0,0,210,0,0,0,212,0,0,0,212,0,0,0,212,0,0,0,216,0,0,0,216,0,0,0,216,0,0,0,216,0,0,0,216,0,0,0,216,0,0,0,220,0,0,0,220,0,0,0,220,0,0,0,220,0,0,0,222,0,0,0,222,0,0,0,222,0,0,0,224,0,0,0,226,0,0,0,226,0,0,0,226,0,0,0,228,0,0,0,232,0,0,0,234,0,0,0,236,0,0,0,236,0,0,0,236,0,0,0,236,0,0,0,238,0,0,0,238,0,0,0,240,0,0,0,242,0,0,0,242,0,0,0,242,0,0,0,244,0,0,0,244,0,0,0,246,0,0,0,246,0,0,0,246,0,0,0,248,0,0,0,250,0,0,0,250,0,0,0,252,0,0,0,252,0,0,0,252,0,0,0,254,0,0,0,254,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,2,1,0,0,2,1,0,0,4,1,0,0,4,1,0,0,6,1,0,0,8,1,0,0,8,1,0,0,8,1,0,0,8,1,0,0,8,1,0,0,10,1,0,0,10,1,0,0,12,1,0,0,12,1,0,0,16,1,0,0,16,1,0,0,18,1,0,0,20,1,0,0,20,1,0,0,20,1,0,0,22,1,0,0,22,1,0,0,22,1,0,0,24,1,0,0,24,1,0,0,26,1,0,0,26,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,28,1,0,0,30,1,0,0,30,1,0,0,32,1,0,0,32,1,0,0,32,1,0,0,32,1,0,0,32,1,0,0,32,1,0,0,34,1,0,0,36,1,0,0,36,1,0,0,40,1,0,0,42,1,0,0,42,1,0,0,42,1,0,0,42,1,0,0,42,1,0,0,42,1,0,0,42,1,0,0,42,1,0,0,44,1,0,0,46,1,0,0,46,1,0,0,46,1,0,0,46,1,0,0,46,1,0,0,48,1,0,0,48,1,0,0,48,1,0,0,48,1,0,0,48,1,0,0,50,1,0,0,52,1,0,0,52,1,0,0,52,1,0,0,52,1,0,0,52,1,0,0,54,1,0,0,54,1,0,0,56,1,0,0,58,1,0,0,60,1,0,0,60,1,0,0,60,1,0,0,60,1,0,0,62,1,0,0,66,1,0,0,66,1,0,0,68,1,0,0,70,1,0,0,70,1,0,0,70,1,0,0,70,1,0,0,70,1,0,0,72,1,0,0,76,1,0,0,76,1,0,0,80,1,0,0,80,1,0,0,82,1,0,0,82,1,0,0,82,1,0,0,84,1,0,0,86,1,0,0,86,1,0,0,86,1,0,0,86,1,0,0,90,1,0,0,92,1,0,0,92,1,0,0,96,1,0,0,96,1,0,0,96,1,0,0,96,1,0,0,96,1,0,0,98,1,0,0,98,1,0,0,100,1,0,0,100,1,0,0,102,1,0,0,104,1,0,0,104,1,0,0,106,1,0,0,110,1,0,0,110,1,0,0,110,1,0,0,112,1,0,0,116,1,0,0,118,1,0,0,118,1,0,0,118,1,0,0,118,1,0,0,120,1,0,0,120,1,0,0,122,1,0,0,122,1,0,0,122,1,0,0,124,1,0,0,124,1,0,0,126,1,0,0,126,1,0,0,128,1,0,0,128,1,0,0,130,1,0,0,132,1,0,0,132,1,0,0,134,1,0,0,136,1,0,0,138,1,0,0,138,1,0,0,138,1,0,0,138,1,0,0,138,1,0,0,138,1,0,0,138,1,0,0,138,1,0,0,138,1,0,0,140,1,0,0,140,1,0,0,140,1,0,0,140,1,0,0,140,1,0,0,142,1,0,0,142,1,0,0,142,1,0,0,142,1,0,0,144,1,0,0,148,1,0,0,148,1,0,0,148,1,0,0,150,1,0,0,150,1,0,0,152,1,0,0,154,1,0,0,154,1,0,0,156,1,0,0,156,1,0,0,156,1,0,0,156,1,0,0,158,1,0,0,158,1,0,0,158,1,0,0,162,1,0,0,164,1,0,0,164,1,0,0,164,1,0,0,168,1,0,0,170,1,0,0,170,1,0,0,170,1,0,0,170,1,0,0,170,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,174,1,0,0,176,1,0,0,176,1,0,0,176,1,0,0,176,1,0,0,180,1,0,0,182,1,0,0,182,1,0,0,186,1,0,0,188,1,0,0,190,1,0,0,194,1,0,0,198,1,0,0,198,1,0,0,198,1,0,0,200,1,0,0,200,1,0,0,200,1,0,0,202,1,0,0,202,1,0,0,204,1,0,0,208,1,0,0,208,1,0,0,208,1,0,0,208,1,0,0,208,1,0,0,208,1,0,0,214,1,0,0,214,1,0,0,218,1,0,0,218,1,0,0,218,1,0,0,218,1,0,0,220,1,0,0,220,1,0,0,220,1,0,0,222,1,0,0,222,1,0,0,222,1,0,0,222,1,0,0,222,1,0,0,228,1,0,0,228,1,0,0,230,1,0,0,230,1,0,0,230,1,0,0,230,1,0,0,232,1,0,0,234,1,0,0,236,1,0,0,236,1,0,0,236,1,0,0,238,1,0,0,238,1,0,0,238,1,0,0,238,1,0,0,238,1,0,0,240,1,0,0,240,1,0,0,240,1,0,0,240,1,0,0,242,1,0,0,246,1,0,0,250,1,0,0,250,1,0,0,250,1,0,0,252,1,0,0,254,1,0,0,4,2,0,0,4,2,0,0,4,2,0,0,6,2,0,0,8,2,0,0,8,2,0,0,8,2,0,0,8,2,0,0,8,2,0,0,10,2,0,0,10,2,0,0,10,2,0,0,14,2,0,0,14,2,0,0,14,2,0,0,14,2,0,0,14,2,0,0,18,2,0,0,18,2,0,0,18,2,0,0,20,2,0,0,20,2,0,0,20,2,0,0,22,2,0,0,22,2,0,0,22,2,0,0,22,2,0,0,24,2,0,0,26,2,0,0,26,2,0,0,26,2,0,0,28,2,0,0,28,2,0,0,28,2,0,0,28,2,0,0,30,2,0,0,30,2,0,0,30,2,0,0,30,2,0,0,32,2,0,0,32,2,0,0,32,2,0,0,32,2,0,0,32,2,0,0,32,2,0,0,32,2,0,0,36,2,0,0,36,2,0,0,36,2,0,0,38,2,0,0,38,2,0,0,38,2,0,0,38,2,0,0,38,2,0,0,40,2,0,0,40,2,0,0,42,2,0,0,42,2,0,0,44,2,0,0,44,2,0,0,44,2,0,0,44,2,0,0,44,2,0,0,46,2,0,0,48,2,0,0,50,2,0,0,52,2,0,0,54,2,0,0,56,2,0,0,56,2,0,0,56,2,0,0,56,2,0,0,56,2,0,0,60,2,0,0,60,2,0,0,70,2,0,0,70,2,0,0,72,2,0,0,74,2,0,0,74,2,0,0,74,2,0,0,74,2,0,0,76,2,0,0,78,2,0,0,80,2,0,0,80,2,0,0,80,2,0,0,80,2,0,0,80,2,0,0,80,2,0,0,82,2,0,0,82,2,0,0,82,2,0,0,82,2,0,0,82,2,0,0,82,2,0,0,84,2,0,0,84,2,0,0,86,2,0,0,86,2,0,0,88,2,0,0,88,2,0,0,92,2,0,0,92,2,0,0,92,2,0,0,92,2,0,0,92,2,0,0,94,2,0,0,96,2,0,0,96,2,0,0,96,2,0,0,96,2,0,0,96,2,0,0,102,2,0,0,104,2,0,0,104,2,0,0,108,2,0,0,108,2,0,0,108,2,0,0,110,2,0,0,112,2,0,0,112,2,0,0,112,2,0,0,112,2,0,0,112,2,0,0,114,2,0,0,114,2,0,0,114,2,0,0,114,2,0,0,116,2,0,0,118,2,0,0,118,2,0,0,118,2,0,0,118,2,0,0,120,2,0,0,120,2,0,0,124,2,0,0,124,2,0,0,124,2,0,0,124,2,0,0,124,2,0,0,124,2,0,0,124,2,0,0,126,2,0,0,126,2,0,0,130,2,0,0,132,2,0,0,134,2,0,0,136,2,0,0,138,2,0,0,138,2,0,0,138,2,0,0,138,2,0,0,140,2,0,0,140,2,0,0,140,2,0,0,142,2,0,0,144,2,0,0,144,2,0,0,144,2,0,0,144,2,0,0,146,2,0,0,148,2,0,0,150,2,0,0,150,2,0,0,152,2,0,0,154,2,0,0,154,2,0,0,158,2,0,0,160,2,0,0,162,2,0,0,162,2,0,0,164,2,0,0,168,2,0,0,170,2,0,0,172,2,0,0,172,2,0,0,176,2,0,0,176,2,0,0,176,2,0,0,176,2,0,0,176,2,0,0,176,2,0,0,176,2,0,0,176,2,0,0,176,2,0,0,180,2,0,0,180,2,0,0,180,2,0,0,180,2,0,0,182,2,0,0,184,2,0,0,184,2,0,0,186,2,0,0,186,2,0,0,188,2,0,0,188,2,0,0,188,2,0,0,192,2,0,0,192,2,0,0,194,2,0,0,194,2,0,0,194,2,0,0,196,2,0,0,198,2,0,0,200,2,0,0,200,2,0,0,202,2,0,0,202,2,0,0,202,2,0,0,206,2,0,0,210,2,0,0,210,2,0,0,210,2,0,0,210,2,0,0,210,2,0,0,212,2,0,0,212,2,0,0,214,2,0,0,216,2,0,0,218,2,0,0,218,2,0,0,218,2,0,0,218,2,0,0,218,2,0,0,218,2,0,0,218,2,0,0,218,2,0,0,220,2,0,0,220,2,0,0,220,2,0,0,220,2,0,0,220,2,0,0,220,2,0,0,220,2,0,0,220,2,0,0,220,2,0,0,222,2,0,0,222,2,0,0,224,2,0,0,226,2,0,0,226,2,0,0,228,2,0,0,228,2,0,0,228,2,0,0,230,2,0,0,230,2,0,0,234,2,0,0,234,2,0,0,236,2,0,0,236,2,0,0,238,2,0,0,240,2,0,0,244,2,0,0,244,2,0,0,244,2,0,0,246,2,0,0,252,2,0,0,254,2,0,0,254,2,0,0,254,2,0,0,254,2,0,0,254,2,0,0,0,3,0,0,0,3,0,0,4,3,0,0,4,3,0,0,6,3,0,0,10,3,0,0,12,3,0,0,14,3,0,0,14,3,0,0,16,3,0,0,18,3,0,0,20,3,0,0,22,3,0,0,24,3,0,0,26,3,0,0,26,3,0,0,28,3,0,0,28,3,0,0,28,3,0,0,28,3,0,0,30,3,0,0,30,3,0,0,30,3,0,0,34,3,0,0,36,3,0,0,38,3,0,0,38,3,0,0,38,3,0,0,38,3,0,0,38,3,0,0,40,3,0,0,40,3,0,0,40,3,0,0,40,3,0,0,40,3,0,0,40,3,0,0,42,3,0,0,44,3,0,0,46,3,0,0,48,3,0,0,48,3,0,0,50,3,0,0,50,3,0,0,54,3,0,0,56,3,0,0,56,3,0,0,58,3,0,0,58,3,0,0,60,3,0,0,60,3,0,0,64,3,0,0,64,3,0,0,64,3,0,0,64,3,0,0,64,3,0,0,66,3,0,0,68,3,0,0,70,3,0,0,70,3,0,0,70,3,0,0,70,3,0,0,70,3,0,0,70,3,0,0,70,3,0,0,70,3,0,0,70,3,0,0,70,3,0,0,72,3,0,0,72,3,0,0,74,3,0,0,76,3,0,0,76,3,0,0,78,3,0,0,78,3,0,0,78,3,0,0,82,3,0,0,82,3,0,0,82,3,0,0,84,3,0,0,84,3,0,0,84,3,0,0,86,3,0,0,86,3,0,0,88,3,0,0,88,3,0,0,88,3,0,0,94,3,0,0,94,3,0,0,94,3,0,0,94,3,0,0,98,3,0,0,98,3,0,0,98,3,0,0,98,3,0,0,100,3,0,0,102,3,0,0,102,3,0,0,102,3,0,0,104,3,0,0,104,3,0,0,104,3,0,0,104,3,0,0,104,3,0,0,104,3,0,0,106,3,0,0,108,3,0,0,110,3,0,0,110,3,0,0,110,3,0,0,112,3,0,0,112,3,0,0,116,3,0,0,116,3,0,0,116,3,0,0,120,3,0,0,122,3,0,0,124,3,0,0,124,3,0,0,126,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,132,3,0,0,134,3,0,0,134,3,0,0,134,3,0,0,134,3,0,0,136,3,0,0,136,3,0,0,136,3,0,0,136,3,0,0,136,3,0,0,138,3,0,0,140,3,0,0,140,3,0,0,142,3,0,0,144,3,0,0,146,3,0,0,150,3,0,0,150,3,0,0,150,3,0,0,150,3,0,0,150,3,0,0,150,3,0,0,150,3,0,0,150,3,0,0,152,3,0,0,152,3,0,0,154,3,0,0,158,3,0,0,160,3,0,0,162,3,0,0,162,3,0,0,162,3,0,0,162,3,0,0,166,3,0,0,166,3,0,0,168,3,0,0,168,3,0,0,168,3,0,0,168,3,0,0,170,3,0,0,170,3,0,0,170,3,0,0,174,3,0,0,180,3,0,0,180,3,0,0,180,3,0,0,180,3,0,0,180,3,0,0,180,3,0,0,180,3,0,0,182,3,0,0,184,3,0,0,188,3,0,0,188,3,0,0,188,3,0,0,190,3,0,0,194,3,0,0,194,3,0,0,194,3,0,0,196,3,0,0,200,3,0,0,200,3,0,0,202,3,0,0,204,3,0,0,204,3,0,0,206,3,0,0,208,3,0,0,208,3,0,0,210,3,0,0,210,3,0,0,212,3,0,0,216,3,0,0,218,3,0,0,222,3,0,0,224,3,0,0,224,3,0,0,224,3,0,0,224,3,0,0,226,3,0,0,226,3,0,0,226,3,0,0,226,3,0,0,228,3,0,0,228,3,0,0,230,3,0,0,232,3,0,0,232,3,0,0,232,3,0,0,232,3,0,0,236,3,0,0,236,3,0,0,238,3,0,0,238,3,0,0,238,3,0,0,240,3,0,0,240,3,0,0,240,3,0,0,244,3,0,0,248,3,0,0,250,3,0,0,250,3,0,0,250,3,0,0,252,3,0,0,252,3,0,0,252,3,0,0,252,3,0,0,252,3,0,0,252,3,0,0,254,3,0,0,254,3,0,0,0,4,0,0,4,4,0,0,4,4,0,0,6,4,0,0,6,4,0,0,8,4,0,0,10,4,0,0,12,4,0,0,12,4,0,0,14,4,0,0,14,4,0,0,16,4,0,0,16,4,0,0,16,4,0,0,16,4,0,0,20,4,0,0,22,4,0,0,22,4,0,0,22,4,0,0,24,4,0,0,28,4,0,0,30,4,0,0,32,4,0,0,34,4,0,0,36,4,0,0,38,4,0,0,38,4,0,0,42,4,0,0,44,4,0,0,46,4,0,0,46,4,0,0,48,4,0,0,48,4,0,0,48,4,0,0,48,4,0,0,48,4,0,0,50,4,0,0,50,4,0,0,52,4,0,0,52,4,0,0,52,4,0,0,52,4,0,0,52,4,0,0,54,4,0,0,56,4,0,0,58,4,0,0,62,4,0,0,62,4,0,0,66,4,0,0,66,4,0,0,66,4,0,0,66,4,0,0,68,4,0,0,68,4,0,0,70,4,0,0,70,4,0,0,70,4,0,0,72,4,0,0,84,4,0,0,84,4,0,0,88,4,0,0,88,4,0,0,88,4,0,0,90,4,0,0,92,4,0,0,94,4,0,0,96,4,0,0,96,4,0,0,98,4,0,0,100,4,0,0,100,4,0,0,100,4,0,0,100,4,0,0,100,4,0,0,100,4,0,0,102,4,0,0,104,4,0,0,104,4,0,0,104,4,0,0,104,4,0,0,104,4,0,0,104,4,0,0,104,4,0,0,104,4,0,0,106,4,0,0,106,4,0,0,106,4,0,0,106,4,0,0,108,4,0,0,108,4,0,0,108,4,0,0,112,4,0,0,114,4,0,0,116,4,0,0,116,4,0,0,116,4,0,0,116,4,0,0,116,4,0,0,116,4,0,0,118,4,0,0,124,4,0,0,124,4,0,0,128,4,0,0,128,4,0,0,130,4,0,0,132,4,0,0,134,4,0,0,134,4,0,0,134,4,0,0,136,4,0,0,138,4,0,0,140,4,0,0,140,4,0,0,142,4,0,0,142,4,0,0,150,4,0,0,150,4,0,0,150,4,0,0,152,4,0,0,152,4,0,0,152,4,0,0,154,4,0,0,154,4,0,0,156,4,0,0,156,4,0,0,156,4,0,0,158,4,0,0,158,4,0,0,158,4,0,0,158,4,0,0,158,4,0,0,158,4,0,0,158,4,0,0,160,4,0,0,160,4,0,0,160,4,0,0,160,4,0,0,160,4,0,0,160,4,0,0,160,4,0,0,160,4,0,0,162,4,0,0,162,4,0,0,162,4,0,0,162,4,0,0,164,4,0,0,164,4,0,0,168,4,0,0,168,4,0,0,168,4,0,0,168,4,0,0,168,4,0,0,168,4,0,0,168,4,0,0,172,4,0,0,174,4,0,0,174,4,0,0,174,4,0,0,174,4,0,0,174,4,0,0,176,4,0,0,178,4,0,0,180,4,0,0,182,4,0,0,184,4,0,0,184,4,0,0,184,4,0,0,186,4,0,0,186,4,0,0,186,4,0,0,186,4,0,0,186,4,0,0,188,4,0,0,188,4,0,0,190,4,0,0,192,4,0,0,194,4,0,0,196,4,0,0,196,4,0,0,198,4,0,0,198,4,0,0,198,4,0,0,200,4,0,0,200,4,0,0,200,4,0,0,200,4,0,0,200,4,0,0,202,4,0,0,204,4,0,0,204,4,0,0,204,4,0,0,210,4,0,0,210,4,0,0,210,4,0,0,210,4,0,0,214,4,0,0,216,4,0,0,218,4,0,0,218,4,0,0,218,4,0,0,218,4,0,0,222,4,0,0,222,4,0,0,224,4,0,0,224,4,0,0,228,4,0,0,230,4,0,0,230,4,0,0,232,4,0,0,232,4,0,0,234,4,0,0,238,4,0,0,238,4,0,0,238,4,0,0,238,4,0,0,240,4,0,0,240,4,0,0,244,4,0,0,244,4,0,0,250,4,0,0,250,4,0,0,252,4,0,0,0,5,0,0,2,5,0,0,4,5,0,0,4,5,0,0,6,5,0,0,8,5,0,0,8,5,0,0,8,5,0,0,8,5,0,0,8,5,0,0,8,5,0,0,10,5,0,0,12,5,0,0,12,5,0,0,16,5,0,0,18,5,0,0,18,5,0,0,18,5,0,0,20,5,0,0,22,5,0,0,22,5,0,0,24,5,0,0,28,5,0,0,28,5,0,0,30,5,0,0,30,5,0,0,32,5,0,0,34,5,0,0,34,5,0,0,34,5,0,0,34,5,0,0,34,5,0,0,34,5,0,0,36,5,0,0,38,5,0,0,40,5,0,0,40,5,0,0,40,5,0,0,44,5,0,0,44,5,0,0,44,5,0,0,46,5,0,0,46,5,0,0,46,5,0,0,46,5,0,0,48,5,0,0,48,5,0,0,50,5,0,0,50,5,0,0,52,5,0,0,52,5,0,0,54,5,0,0,56,5,0,0,56,5,0,0,56,5,0,0,56,5,0,0,56,5,0,0,58,5,0,0,58,5,0,0,58,5,0,0,58,5,0,0,58,5,0,0,62,5,0,0,64,5,0,0,64,5,0,0,64,5,0,0,66,5,0,0,68,5,0,0,68,5,0,0,70,5,0,0,70,5,0,0,70,5,0,0,72,5,0,0,72,5,0,0,72,5,0,0,74,5,0,0,76,5,0,0,78,5,0,0,80,5,0,0,82,5,0,0,82,5,0,0,88,5,0,0,90,5,0,0,90,5,0,0,90,5,0,0,90,5,0,0,90,5,0,0,94,5,0,0,94,5,0,0,96,5,0,0,100,5,0,0,100,5,0,0,100,5,0,0,104,5,0,0,106,5,0,0,106,5,0,0,106,5,0,0,108,5,0,0,110,5,0,0,114,5,0,0,118,5,0,0,118,5,0,0,118,5,0,0,118,5,0,0,118,5,0,0,118,5,0,0,120,5,0,0,122,5,0,0,124,5,0,0,124,5,0,0,128,5,0,0,130,5,0,0,132,5,0,0,134,5,0,0,136,5,0,0,138,5,0,0,138,5,0,0,140,5,0,0,140,5,0,0,142,5,0,0,142,5,0,0,144,5,0,0,146,5,0,0,146,5,0,0,146,5,0,0,148,5,0,0,150,5,0,0,152,5,0,0,152,5,0,0,152,5,0,0,156,5,0,0,158,5,0,0,158,5,0,0,158,5,0,0,158,5,0,0,158,5,0,0,158,5,0,0,158,5,0,0,158,5,0,0,162,5,0,0,162,5,0,0,166,5,0,0,166,5,0,0,166,5,0,0,168,5,0,0,170,5,0,0,170,5,0,0,170,5,0,0,170,5,0,0,170,5,0,0,172,5,0,0,172,5,0,0,174,5,0,0,174,5,0,0,174,5,0,0,176,5,0,0,176,5,0,0,176,5,0,0,178,5,0,0,178,5,0,0,178,5,0,0,178,5,0,0,180,5,0,0,182,5,0,0,182,5,0,0,184,5,0,0,186,5,0,0,186,5,0,0,188,5,0,0,188,5,0,0,188,5,0,0,188,5,0,0,190,5,0,0,192,5,0,0,192,5,0,0,192,5,0,0,194,5,0,0,194,5,0,0,196,5,0,0,196,5,0,0,198,5,0,0,200,5,0,0,200,5,0,0,202,5,0,0,206,5,0,0,210,5,0,0,212,5,0,0,216,5,0,0,216,5,0,0,216,5,0,0,216,5,0,0,218,5,0,0,220,5,0,0,220,5,0,0,220,5,0,0,220,5,0,0,220,5,0,0,220,5,0,0,220,5,0,0,220,5,0,0,222,5,0,0,222,5,0,0,222,5,0,0,224,5,0,0,224,5,0,0,226,5,0,0,228,5,0,0,228,5,0,0,230,5,0,0,232,5,0,0,232,5,0,0,232,5,0,0,232,5,0,0,234,5,0,0,234,5,0,0,234,5,0,0,234,5,0,0,234,5,0,0,240,5,0,0,242,5,0,0,244,5,0,0,244,5,0,0,244,5,0,0,246,5,0,0,250,5,0,0,252,5,0,0,252,5,0,0,254,5,0,0,0,6,0,0,0,6,0,0,2,6,0,0,2,6,0,0,2,6,0,0,2,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,6,6,0,0,8,6,0,0,8,6,0,0,8,6,0,0,10,6,0,0,10,6,0,0,10,6,0,0,14,6,0,0,14,6,0,0,14,6,0,0,16,6,0,0,16,6,0,0,18,6,0,0,22,6,0,0,24,6,0,0,24,6,0,0,24,6,0,0,28,6,0,0,30,6,0,0,30,6,0,0,36,6,0,0,36,6,0,0,36,6,0,0,38,6,0,0,38,6,0,0,38,6,0,0,40,6,0,0,44,6,0,0,46,6,0,0,46,6,0,0,46,6,0,0,46,6,0,0,46,6,0,0,50,6,0,0,56,6,0,0,56,6,0,0,56,6,0,0,56,6,0,0,58,6,0,0,60,6,0,0,60,6,0,0,60,6,0,0,60,6,0,0,60,6,0,0,62,6,0,0,62,6,0,0,62,6,0,0,62,6,0,0,64,6,0,0,64,6,0,0,64,6,0,0,64,6,0,0,64,6,0,0,64,6,0,0,64,6,0,0,70,6,0,0,70,6,0,0,70,6,0,0,70,6,0,0,70,6,0,0,70,6,0,0,72,6,0,0,72,6,0,0,72,6,0,0,74,6,0,0,74,6,0,0,74,6,0,0,74,6,0,0,74,6,0,0,76,6,0,0,76,6,0,0,78,6,0,0,78,6,0,0,78,6,0,0,78,6,0,0,78,6,0,0,78,6,0,0,80,6,0,0,80,6,0,0,80,6,0,0,80,6,0,0,80,6,0,0,80,6,0,0,80,6,0,0,82,6,0,0,84,6,0,0,84,6,0,0,84,6,0,0,86,6,0,0,86,6,0,0,88,6,0,0,88,6,0,0,92,6,0,0,92,6,0,0,92,6,0,0,94,6,0,0,96,6,0,0,98,6,0,0,102,6,0,0,102,6,0,0,104,6,0,0,106,6,0,0,106,6,0,0,106,6,0,0,106,6,0,0,106,6,0,0,106,6,0,0,106,6,0,0,110,6,0,0,110,6,0,0,110,6,0,0,110,6,0,0,110,6,0,0,110,6,0,0,110,6,0,0,110,6,0,0,110,6,0,0,110,6,0,0,110,6,0,0,112,6,0,0,114,6,0,0,114,6,0,0,114,6,0,0,114,6,0,0,114,6,0,0,116,6,0,0,122,6,0,0,122,6,0,0,122,6,0,0,126,6,0,0,128,6,0,0,128,6,0,0,128,6,0,0,130,6,0,0,132,6,0,0,132,6,0,0,134,6,0,0,138,6,0,0,138,6,0,0,142,6,0,0,144,6,0,0,146,6,0,0,150,6,0,0,150,6,0,0,152,6,0,0,156,6,0,0,158,6,0,0,158,6,0,0,162,6,0,0,162,6,0,0,162,6,0,0,162,6,0,0,162,6,0,0,162,6,0,0,164,6,0,0,166,6,0,0,166,6,0,0,166,6,0,0,166,6,0,0,166,6,0,0,166,6,0,0,168,6,0,0,168,6,0,0,168,6,0,0,170,6,0,0,170,6,0,0,172,6,0,0,172,6,0,0,172,6,0,0,174,6,0,0,174,6,0,0,176,6,0,0,176,6,0,0,176,6,0,0,176,6,0,0,176,6,0,0,176,6,0,0,178,6,0,0,178,6,0,0,180,6,0,0,180,6,0,0,180,6,0,0,182,6,0,0,182,6,0,0,182,6,0,0,184,6,0,0,184,6,0,0,184,6,0,0,184,6,0,0,184,6,0,0,186,6,0,0,186,6,0,0,186,6,0,0,188,6,0,0,188,6,0,0,190,6,0,0,190,6,0,0,190,6,0,0,192,6,0,0,194,6,0,0,194,6,0,0,194,6,0,0,194,6,0,0,196,6,0,0,196,6,0,0,198,6,0,0,202,6,0,0,204,6,0,0,204,6,0,0,204,6,0,0,206,6,0,0,206,6,0,0,210,6,0,0,212,6,0,0,214,6,0,0,214,6,0,0,216,6,0,0,216,6,0,0,220,6,0,0,220,6,0,0,220,6,0,0,220,6,0,0,222,6,0,0,222,6,0,0,222,6,0,0,226,6,0,0,226,6,0,0,230,6,0,0,232,6,0,0,232,6,0,0,232,6,0,0,232,6,0,0,234,6,0,0,236,6,0,0,236,6,0,0,238,6,0,0,240,6,0,0,240,6,0,0,240,6,0,0,244,6,0,0,244,6,0,0,244,6,0,0,246,6,0,0,246,6,0,0,248,6,0,0,250,6,0,0,252,6,0,0,252,6,0,0,254,6,0,0,254,6,0,0,0,7,0,0,0,7,0,0,0,7,0,0,2,7,0,0,4,7,0,0,4,7,0,0,4,7,0,0,4,7,0,0,6,7,0,0,6,7,0,0,6,7,0,0,6,7,0,0,8,7,0,0,8,7,0,0,10,7,0,0,12,7,0,0,14,7,0,0,14,7,0,0,14,7,0,0,14,7,0,0,16,7,0,0,18,7,0,0,20,7,0,0,20,7,0,0,20,7,0,0,22,7,0,0,22,7,0,0,24,7,0,0,24,7,0,0,24,7,0,0,28,7,0,0,30,7,0,0,30,7,0,0,32,7,0,0,34,7,0,0,34,7,0,0,34,7,0,0,34,7,0,0,34,7,0,0,36,7,0,0,36,7,0,0,38,7,0,0,38,7,0,0,40,7,0,0,42,7,0,0,42,7,0,0,44,7,0,0,44,7,0,0,44,7,0,0,46,7,0,0,46,7,0,0,46,7,0,0,46,7,0,0,46,7,0,0,46,7,0,0,46,7,0,0,46,7,0,0,50,7,0,0,52,7,0,0,54,7,0,0,56,7,0,0,56,7,0,0,56,7,0,0,56,7,0,0,56,7,0,0,58,7,0,0,58,7,0,0,64,7,0,0,66,7,0,0,66,7,0,0,68,7,0,0,68,7,0,0,70,7,0,0,72,7,0,0,72,7,0,0,72,7,0,0,72,7,0,0,78,7,0,0,80,7,0,0,80,7,0,0,80,7,0,0,84,7,0,0,84,7,0,0,84,7,0,0,84,7,0,0,84,7,0,0,84,7,0,0,84,7,0,0,84,7,0,0,86,7,0,0,88,7,0,0,88,7,0,0,88,7,0,0,90,7,0,0,90,7,0,0,90,7,0,0,90,7,0,0,92,7,0,0,92,7,0,0,94,7,0,0,94,7,0,0,98,7,0,0,100,7,0,0,100,7,0,0,100,7,0,0,102,7,0,0,102,7,0,0,102,7,0,0,106,7,0,0,106,7,0,0,106,7,0,0,106,7,0,0,106,7,0,0,106,7,0,0,106,7,0,0,106,7,0,0,108,7,0,0,108,7,0,0,108,7,0,0,110,7,0,0,110,7,0,0,110,7,0,0,110,7,0,0,110,7,0,0,110,7,0,0,110,7,0,0,110,7,0,0,112,7,0,0,112,7,0,0,112,7,0,0,112,7,0,0,114,7,0,0,114,7,0,0,114,7,0,0,114,7,0,0,118,7,0,0,122,7,0,0,122,7,0,0,122,7,0,0,124,7,0,0,124,7,0,0,126,7,0,0,128,7,0,0,128,7,0,0,128,7,0,0,128,7,0,0,128,7,0,0,130,7,0,0,134,7,0,0,134,7,0,0,138,7,0,0,138,7,0,0,138,7,0,0,140,7,0,0,140,7,0,0,140,7,0,0,142,7,0,0,142,7,0,0,142,7,0,0,142,7,0,0,142,7,0,0,144,7,0,0,146,7,0,0,146,7,0,0,146,7,0,0,146,7,0,0,146,7,0,0,146,7,0,0,146,7,0,0,146,7,0,0,146,7,0,0,146,7,0,0,148,7,0,0,148,7,0,0,152,7,0,0,152,7,0,0,156,7,0,0,156,7,0,0,156,7,0,0,156,7,0,0,156,7,0,0,158,7,0,0,158,7,0,0,158,7,0,0,158,7,0,0,158,7,0,0,160,7,0,0,162,7,0,0,162,7,0,0,164,7,0,0,164,7,0,0,164,7,0,0,168,7,0,0,168,7,0,0,172,7,0,0,172,7,0,0,174,7,0,0,178,7,0,0,180,7,0,0,180,7,0,0,180,7,0,0,186,7,0,0,188,7,0,0,190,7,0,0,192,7,0,0,192,7,0,0,192,7,0,0,192,7,0,0,192,7,0,0,192,7,0,0,192,7,0,0,194,7,0,0,194,7,0,0,194,7,0,0,194,7,0,0,196,7,0,0,196,7,0,0,198,7,0,0,200,7,0,0,200,7,0,0,202,7,0,0,204,7,0,0,206,7,0,0,208,7,0,0,208,7,0,0,210,7,0,0,212,7,0,0,212,7,0,0,212,7,0,0,216,7,0,0,218,7,0,0,220,7,0,0,220,7,0,0,222,7,0,0,226,7,0,0,226,7,0,0,226,7,0,0,226,7,0,0,226,7,0,0,226,7,0,0,228,7,0,0,228,7,0,0,228,7,0,0,230,7,0,0,232,7,0,0,234,7,0,0,234,7,0,0,236,7,0,0,236,7,0,0,236,7,0,0,238,7,0,0,238,7,0,0,240,7,0,0,242,7,0,0,242,7,0,0,242,7,0,0,244,7,0,0,244,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,246,7,0,0,248,7,0,0,248,7,0,0,250,7,0,0,250,7,0,0,250,7,0,0,250,7,0,0,250,7,0,0,250,7,0,0,250,7,0,0,252,7,0,0,254,7,0,0,254,7,0,0,254,7,0,0,254,7,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,2,8,0,0,4,8,0,0,4,8,0,0,6,8,0,0,6,8,0,0,8,8,0,0,10,8,0,0,12,8,0,0,12,8,0,0,14,8,0,0,16,8,0,0,16,8,0,0,16,8,0,0,16,8,0,0,16,8,0,0,16,8,0,0,18,8,0,0,18,8,0,0,20,8,0,0,22,8,0,0,22,8,0,0,24,8,0,0,28,8,0,0,30,8,0,0,30,8,0,0,32,8,0,0,38,8,0,0,38,8,0,0,38,8,0,0,40,8,0,0,42,8,0,0,42,8,0,0,44,8,0,0,46,8,0,0,48,8,0,0,48,8,0,0,48,8,0,0,48,8,0,0,48,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,54,8,0,0,54,8,0,0,54,8,0,0,54,8,0,0,54,8,0,0,54,8,0,0,54,8,0,0,56,8,0,0,60,8,0,0,60,8,0,0,60,8,0,0,60,8,0,0,62,8,0,0,66,8,0,0,66,8,0,0,72,8,0,0,72,8,0,0,74,8,0,0,74,8,0,0,74,8,0,0,74,8,0,0,74,8,0,0,76,8,0,0,80,8,0,0,80,8,0,0,82,8,0,0,82,8,0,0,82,8,0,0,82,8,0,0,84,8,0,0,84,8,0,0,84,8,0,0,84,8,0,0,84,8,0,0,86,8,0,0,86,8,0,0,86,8,0,0,86,8,0,0,86,8,0,0,86,8,0,0,88,8,0,0,90,8,0,0,90,8,0,0,90,8,0,0,94,8,0,0,96,8,0,0,98,8,0,0,100,8,0,0,102,8,0,0,106,8,0,0,106,8,0,0,106,8,0,0,106,8,0,0,106,8,0,0,110,8,0,0,110,8,0,0,112,8,0,0,112,8,0,0,112,8,0,0,114,8,0,0,116,8,0,0,118,8,0,0,118,8,0,0,118,8,0,0,122,8,0,0,122,8,0,0,124,8,0,0,124,8,0,0,126,8,0,0,126,8,0,0,126,8,0,0,126,8,0,0,126,8,0,0,126,8,0,0,126,8,0,0,126,8,0,0,128,8,0,0,128,8,0,0,128,8,0,0,132,8,0,0,134,8,0,0,134,8,0,0,136,8,0,0,136,8,0,0,138,8,0,0,138,8,0,0,138,8,0,0,140,8,0,0,140,8,0,0,140,8,0,0,146,8,0,0,146,8,0,0,152,8,0,0,154,8,0,0,154,8,0,0,154,8,0,0,154,8,0,0,154,8,0,0,158,8,0,0,160,8,0,0,160,8,0,0,162,8,0,0,164,8,0,0,166,8,0,0,168,8,0,0,170,8,0,0,170,8,0,0,172,8,0,0,172,8,0,0,172,8,0,0,172,8,0,0,172,8,0,0,174,8,0,0,174,8,0,0,178,8,0,0,178,8,0,0,178,8,0,0,180,8,0,0,180,8,0,0,182,8,0,0,182,8,0,0,184,8,0,0,184,8,0,0,184,8,0,0,184,8,0,0,188,8,0,0,190,8,0,0,190,8,0,0,194,8,0,0,194,8,0,0,194,8,0,0,194,8,0,0,194,8,0,0,196,8,0,0,198,8,0,0,198,8,0,0,198,8,0,0,198,8,0,0,200,8,0,0,204,8,0,0,204,8,0,0,204,8,0,0,204,8,0,0,206,8,0,0,206,8,0,0,206,8,0,0,208,8,0,0,208,8,0,0,212,8,0,0,214,8,0,0,214,8,0,0,216,8,0,0,216,8,0,0,218,8,0,0,218,8,0,0,218,8,0,0,218,8,0,0,220,8,0,0,220,8,0,0,220,8,0,0,220,8,0,0,222,8,0,0,222,8,0,0,222,8,0,0,222,8,0,0,222,8,0,0,222,8,0,0,222,8,0,0,224,8,0,0,224,8,0,0,226,8,0,0,230,8,0,0,230,8,0,0,230,8,0,0,232,8,0,0,236,8,0,0,240,8,0,0,244,8,0,0,244,8,0,0,244,8,0,0,244,8,0,0,244,8,0,0,244,8,0,0,244,8,0,0,244,8,0,0,246,8,0,0,246,8,0,0,246,8,0,0,248,8,0,0,250,8,0,0,250,8,0,0,252,8,0,0,252,8,0,0,252,8,0,0,252,8,0,0,252,8,0,0,252,8,0,0,252,8,0,0,254,8,0,0,0,9,0,0,2,9,0,0,8,9,0,0,8,9,0,0,8,9,0,0,8,9,0,0,8,9,0,0,8,9,0,0,10,9,0,0,12,9,0,0,12,9,0,0,12,9,0,0,12,9,0,0,12,9,0,0,14,9,0,0,14,9,0,0,16,9,0,0,18,9,0,0,18,9,0,0,20,9,0,0,20,9,0,0,22,9,0,0,22,9,0,0,24,9,0,0,24,9,0,0,24,9,0,0,24,9,0,0,24,9,0,0,24,9,0,0,28,9,0,0,30,9,0,0,30,9,0,0,30,9,0,0,30,9,0,0,32,9,0,0,32,9,0,0,32,9,0,0,34,9,0,0,34,9,0,0,36,9,0,0,36,9,0,0,36,9,0,0,36,9,0,0,36,9,0,0,36,9,0,0,36,9,0,0,38,9,0,0,42,9,0,0,44,9,0,0,44,9,0,0,46,9,0,0,46,9,0,0,46,9,0,0,46,9,0,0,46,9,0,0,48,9,0,0,48,9,0,0,48,9,0,0,48,9,0,0,52,9,0,0,52,9,0,0,52,9,0,0,54,9,0,0,54,9,0,0,54,9,0,0,54,9,0,0,56,9,0,0,58,9,0,0,58,9,0,0,60,9,0,0,60,9,0,0,60,9,0,0,60,9,0,0,60,9,0,0,62,9,0,0,62,9,0,0,62,9,0,0,62,9,0,0,62,9,0,0,62,9,0,0,66,9,0,0,66,9,0,0,66,9,0,0,66,9,0,0,66,9,0,0,68,9,0,0,68,9,0,0,68,9,0,0,70,9,0,0,70,9,0,0,72,9,0,0,74,9,0,0,74,9,0,0,74,9,0,0,76,9,0,0,76,9,0,0,78,9,0,0,78,9,0,0,78,9,0,0,78,9,0,0,80,9,0,0,80,9,0,0,82,9,0,0,84,9,0,0,84,9,0,0,88,9,0,0,88,9,0,0,90,9,0,0,90,9,0,0,90,9,0,0,90,9,0,0,90,9,0,0,90,9,0,0,90,9,0,0,92,9,0,0,92,9,0,0,96,9,0,0,96,9,0,0,100,9,0,0,100,9,0,0,100,9,0,0,102,9,0,0,102,9,0,0,102,9,0,0,102,9,0,0,104,9,0,0,106,9,0,0,110,9,0,0,110,9,0,0,110,9,0,0,110,9,0,0,114,9,0,0,114,9,0,0,114,9,0,0,114,9,0,0,116,9,0,0,116,9,0,0,122,9,0,0,124,9,0,0,126,9,0,0,126,9,0,0,130,9,0,0,134,9,0,0,134,9,0,0,134,9,0,0,134,9,0,0,134,9,0,0,134,9,0,0,138,9,0,0,140,9,0,0,140,9,0,0,144,9,0,0,144,9,0,0,144,9,0,0,146,9,0,0,148,9,0,0,150,9,0,0,150,9,0,0,150,9,0,0,150,9,0,0,150,9,0,0,152,9,0,0,152,9,0,0,152,9,0,0,154,9,0,0,154,9,0,0,156,9,0,0,156,9,0,0,156,9,0,0,156,9,0,0,156,9,0,0,156,9,0,0,156,9,0,0,156,9,0,0,158,9,0,0,160,9,0,0,160,9,0,0,160,9,0,0,162,9,0,0,162,9,0,0,162,9,0,0,162,9,0,0,162,9,0,0,164,9,0,0,164,9,0,0,164,9,0,0,166,9,0,0,170,9,0,0,170,9,0,0,170,9,0,0,170,9,0,0,170,9,0,0,170,9,0,0,170,9,0,0,170,9,0,0,170,9,0,0,170,9,0,0,172,9,0,0,172,9,0,0,174,9,0,0,174,9,0,0,174,9,0,0,174,9,0,0,174,9,0,0,176,9,0,0,176,9,0,0,176,9,0,0,176,9,0,0,176,9,0,0,176,9,0,0,176,9,0,0,178,9,0,0,178,9,0,0,178,9,0,0,180,9,0,0,180,9,0,0,180,9,0,0,180,9,0,0,180,9,0,0,180,9,0,0,180,9,0,0,180,9,0,0,184,9,0,0,184,9,0,0,184,9,0,0,186,9,0,0,190,9,0,0,190,9,0,0,190,9,0,0,196,9,0,0,196,9,0,0,196,9,0,0,196,9,0,0,196,9,0,0,200,9,0,0,206,9,0,0,206,9,0,0,206,9,0,0,208,9,0,0,210,9,0,0,210,9,0,0,210,9,0,0,210,9,0,0,214,9,0,0,216,9,0,0,216,9,0,0,216,9,0,0,216,9,0,0,220,9,0,0,220,9,0,0,220,9,0,0,224,9,0,0,224,9,0,0,226,9,0,0,228,9,0,0,230,9,0,0,230,9,0,0,230,9,0,0,232,9,0,0,232,9,0,0,232,9,0,0,232,9,0,0,234,9,0,0,236,9,0,0,242,9,0,0,244,9,0,0,244,9,0,0,244,9,0,0,246,9,0,0,248,9,0,0,248,9,0,0,248,9,0,0,248,9,0,0,248,9,0,0,248,9,0,0,248,9,0,0,248,9,0,0,250,9,0,0,250,9,0,0,250,9,0,0,252,9,0,0,252,9,0,0,252,9,0,0,252,9,0,0,254,9,0,0,0,10,0,0,0,10,0,0,4,10,0,0,4,10,0,0,8,10,0,0,10,10,0,0,12,10,0,0,12,10,0,0,14,10,0,0,14,10,0,0,16,10,0,0,16,10,0,0,18,10,0,0,18,10,0,0,18,10,0,0,18,10,0,0,18,10,0,0,20,10,0,0,20,10,0,0,20,10,0,0,20,10,0,0,22,10,0,0,24,10,0,0,28,10,0,0,28,10,0,0,28,10,0,0,28,10,0,0,28,10,0,0,28,10,0,0,28,10,0,0,28,10,0,0,28,10,0,0,28,10,0,0,32,10,0,0,32,10,0,0,34,10,0,0,34,10,0,0,34,10,0,0,40,10,0,0,42,10,0,0,42,10,0,0,44,10,0,0,44,10,0,0,48,10,0,0,48,10,0,0,52,10,0,0,52,10,0,0,52,10,0,0,56,10,0,0,56,10,0,0,56,10,0,0,56,10,0,0,56,10,0,0,56,10,0,0,58,10,0,0,60,10,0,0,60,10,0,0,60,10,0,0,62,10,0,0,62,10,0,0,62,10,0,0,62,10,0,0,62,10,0,0,62,10,0,0,62,10,0,0,64,10,0,0,64,10,0,0,64,10,0,0,64,10,0,0,64,10,0,0,64,10,0,0,66,10,0,0,66,10,0,0,68,10,0,0,70,10,0,0,72,10,0,0,72,10,0,0,72,10,0,0,72,10,0,0,74,10,0,0,74,10,0,0,76,10,0,0,76,10,0,0,76,10,0,0,76,10,0,0,76,10,0,0,82,10,0,0,86,10,0,0,86,10,0,0,86,10,0,0,86,10,0,0,88,10,0,0,88,10,0,0,88,10,0,0,92,10,0,0,94,10,0,0,96,10,0,0,98,10,0,0,98,10,0,0,100,10,0,0,100,10,0,0,100,10,0,0,102,10,0,0,102,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,104,10,0,0,106,10,0,0,106,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,108,10,0,0,110,10,0,0,112,10,0,0,116,10,0,0,116,10,0,0,116,10,0,0,118,10,0,0,120,10,0,0,124,10,0,0,124,10,0,0,124,10,0,0,126,10,0,0,126,10,0,0,128,10,0,0,130,10,0,0,130,10,0,0,130,10,0,0,132,10,0,0,132,10,0,0,132,10,0,0,132,10,0,0,134,10,0,0,136,10,0,0,136,10,0,0,138,10,0,0,142,10,0,0,144,10,0,0,146,10,0,0,148,10,0,0,150,10,0,0,150,10,0,0,152,10,0,0,152,10,0,0,152,10,0,0,152,10,0,0,152,10,0,0,158,10,0,0,158,10,0,0,162,10,0,0,164,10,0,0,166,10,0,0,166,10,0,0,166,10,0,0,166,10,0,0,166,10,0,0,168,10,0,0,170,10,0,0,170,10,0,0,172,10,0,0,172,10,0,0,172,10,0,0,172,10,0,0,172,10,0,0,172,10,0,0,174,10,0,0,174,10,0,0,174,10,0,0,176,10,0,0,176,10,0,0,176,10,0,0,176,10,0,0,176,10,0,0,176,10,0,0,176,10,0,0,176,10,0,0,178,10,0,0,178,10,0,0,180,10,0,0,180,10,0,0,180,10,0,0,180,10,0,0,180,10,0,0,182,10,0,0,182,10,0,0,182,10,0,0,182,10,0,0,182,10,0,0,184,10,0,0,188,10,0,0,188,10,0,0,188,10,0,0,190,10,0,0,194,10,0,0,194,10,0,0,194,10,0,0,196,10,0,0,196,10,0,0,200,10,0,0,202,10,0,0,202,10,0,0,204,10,0,0,206,10,0,0,206,10,0,0,206,10,0,0,208,10,0,0,208,10,0,0,208,10,0,0,222,10,0,0,224,10,0,0,228,10,0,0,228,10,0,0,228,10,0,0,228,10,0,0,230,10,0,0,232,10,0,0,232,10,0,0,234,10,0,0,234,10,0,0,234,10,0,0,236,10,0,0,236,10,0,0,238,10,0,0,240,10,0,0,240,10,0,0,242,10,0,0,242,10,0,0,242,10,0,0,242,10,0,0,242,10,0,0,246,10,0,0,246,10,0,0,246,10,0,0,246,10,0,0,248,10,0,0,252,10,0,0,252,10,0,0,252,10,0,0,252,10,0,0,252,10,0,0,2,11,0,0,2,11,0,0,2,11,0,0,2,11,0,0,2,11,0,0,2,11,0,0,4,11,0,0,4,11,0,0,6,11,0,0,6,11,0,0,8,11,0,0,8,11,0,0,8,11,0,0,8,11,0,0,10,11,0,0,12,11,0,0,14,11,0,0,16,11,0,0,18,11,0,0,20,11,0,0,22,11,0,0,24,11,0,0,26,11,0,0,26,11,0,0,30,11,0,0,32,11,0,0,32,11,0,0,34,11,0,0,34,11,0,0,36,11,0,0,38,11,0,0,38,11,0,0,40,11,0,0,40,11,0,0,40,11,0,0,40,11,0,0,40,11,0,0,40,11,0,0,40,11,0,0,42,11,0,0,42,11,0,0,42,11,0,0,42,11,0,0,42,11,0,0,42,11,0,0,42,11,0,0,42,11,0,0,44,11,0,0,46,11,0,0,46,11,0,0,46,11,0,0,46,11,0,0,46,11,0,0,48,11,0,0,48,11,0,0,50,11,0,0,50,11,0,0,52,11,0,0,54,11,0,0,56,11,0,0,58,11,0,0,58,11,0,0,58,11,0,0,60,11,0,0,62,11,0,0,64,11,0,0,64,11,0,0,64,11,0,0,68,11,0,0,72,11,0,0,72,11,0,0,72,11,0,0,72,11,0,0,72,11,0,0,72,11,0,0,72,11,0,0,74,11,0,0,76,11,0,0,76,11,0,0,76,11,0,0,80,11,0,0,80,11,0,0,80,11,0,0,80,11,0,0,80,11,0,0,84,11,0,0,86,11,0,0,86,11,0,0,86,11,0,0,86,11,0,0,86,11,0,0,86,11,0,0,88,11,0,0,90,11,0,0,92,11,0,0,92,11,0,0,92,11,0,0,94,11,0,0,96,11,0,0,98,11,0,0,98,11,0,0,98,11,0,0,100,11,0,0,104,11,0,0,104,11,0,0,106,11,0,0,106,11,0,0,106,11,0,0,106,11,0,0,108,11,0,0,110,11,0,0,112,11,0,0,112,11,0,0,114,11,0,0,114,11,0,0,114,11,0,0,114,11,0,0,120,11,0,0,124,11,0,0,124,11,0,0,128,11,0,0,132,11,0,0,136,11,0,0,136,11,0,0,138,11,0,0,138,11,0,0,142,11,0,0,144,11,0,0,144,11,0,0,146,11,0,0,148,11,0,0,148,11,0,0,148,11,0,0,148,11,0,0,148,11,0,0,150,11,0,0,150,11,0,0,150,11,0,0,152,11,0,0,152,11,0,0,152,11,0,0,152,11,0,0,152,11,0,0,152,11,0,0,152,11,0,0,152,11,0,0,152,11,0,0,152,11,0,0,154,11,0,0,154,11,0,0,156,11,0,0,158,11,0,0,160,11,0,0,160,11,0,0,160,11,0,0,160,11,0,0,164,11,0,0,172,11,0,0,174,11,0,0,174,11,0,0,174,11,0,0,176,11,0,0,176,11,0,0,178,11,0,0,178,11,0,0,180,11,0,0,180,11,0,0,182,11,0,0,182,11,0,0,182,11,0,0,186,11,0,0,188,11,0,0,190,11,0,0,192,11,0,0,192,11,0,0,192,11,0,0,192,11,0,0,194,11,0,0,198,11,0,0,204,11,0,0,206,11,0,0,208,11,0,0,208,11,0,0,210,11,0,0,210,11,0,0,212,11,0,0,212,11,0,0,214,11,0,0,214,11,0,0,214,11,0,0,218,11,0,0,218,11,0,0,218,11,0,0,220,11,0,0,226,11,0,0,226,11,0,0,226,11,0,0,226,11,0,0,226,11,0,0,226,11,0,0,226,11,0,0,226,11,0,0,230,11,0,0,230,11,0,0,230,11,0,0,230,11,0,0,230,11,0,0,230,11,0,0,230,11,0,0,230,11,0,0,230,11,0,0,230,11,0,0,232,11,0,0,234,11,0,0,234,11,0,0,236,11,0,0,238,11,0,0,238,11,0,0,238,11,0,0,238,11,0,0,240,11,0,0,240,11,0,0,240,11,0,0,242,11,0,0,242,11,0,0,242,11,0,0,246,11,0,0,246,11,0,0,250,11,0,0,250,11,0,0,254,11,0,0,0,12,0,0,2,12,0,0,4,12,0,0,4,12,0,0,6,12,0,0,6,12,0,0,6,12,0,0,6,12,0,0,8,12,0,0,8,12,0,0,8,12,0,0,8,12,0,0,10,12,0,0,10,12,0,0,10,12,0,0,12,12,0,0,12,12,0,0,12,12,0,0,14,12,0,0,14,12,0,0,16,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,20,12,0,0,20,12,0,0,22,12,0,0,22,12,0,0,22,12,0,0,24,12,0,0,24,12,0,0,26,12,0,0,26,12,0,0,26,12,0,0,26,12,0,0,28,12,0,0,28,12,0,0,30,12,0,0,30,12,0,0,30,12,0,0,34,12,0,0,34,12,0,0,36,12,0,0,36,12,0,0,36,12,0,0,36,12,0,0,36,12,0,0,36,12,0,0,36,12,0,0,40,12,0,0,42,12,0,0,44,12,0,0,44,12,0,0,46,12,0,0,48,12,0,0,48,12,0,0,52,12,0,0,52,12,0,0,52,12,0,0,54,12,0,0,56,12,0,0,56,12,0,0,58,12,0,0,58,12,0,0,58,12,0,0,58,12,0,0,60,12,0,0,60,12,0,0,60,12,0,0,60,12,0,0,60,12,0,0,60,12,0,0,62,12,0,0,62,12,0,0,62,12,0,0,62,12,0,0,62,12,0,0,62,12,0,0,64,12,0,0,64,12,0,0,64,12,0,0,64,12,0,0,64,12,0,0,66,12,0,0,66,12,0,0,66,12,0,0,66,12,0,0,68,12,0,0,68,12,0,0,68,12,0,0,72,12,0,0,72,12,0,0,72,12,0,0,72,12,0,0,72,12,0,0,72,12,0,0,72,12,0,0,74,12,0,0,76,12,0,0,78,12,0,0,78,12,0,0,78,12,0,0,78,12,0,0,80,12,0,0,82,12,0,0,84,12,0,0,88,12,0,0,88,12,0,0,88,12,0,0,88,12,0,0,90,12,0,0,90,12,0,0,94,12,0,0,98,12,0,0,100,12,0,0,100,12,0,0,100,12,0,0,100,12,0,0,102,12,0,0,102,12,0,0,102,12,0,0,104,12,0,0,106,12,0,0,106,12,0,0,106,12,0,0,106,12,0,0,106,12,0,0,106,12,0,0,108,12,0,0,108,12,0,0,110,12,0,0,110,12,0,0,110,12,0,0,110,12,0,0,112,12,0,0,114,12,0,0,114,12,0,0,118,12,0,0,120,12,0,0,122,12,0,0,124,12,0,0,124,12,0,0,124,12,0,0,124,12,0,0,126,12,0,0,130,12,0,0,134,12,0,0,134,12,0,0,136,12,0,0,138,12,0,0,138,12,0,0,138,12,0,0,138,12,0,0,138,12,0,0,140,12,0,0,142,12,0,0,142,12,0,0,144,12,0,0,146,12,0,0,218,12,0,0,218,12,0,0,220,12,0,0,224,12,0,0,224,12,0,0,224,12,0,0,224,12,0,0,226,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,228,12,0,0,230,12,0,0,230,12,0,0,230,12,0,0,230,12,0,0,230,12,0,0,230,12,0,0,232,12,0,0,232,12,0,0,234,12,0,0,234,12,0,0,236,12,0,0,236,12,0,0,238,12,0,0,238,12,0,0,242,12,0,0,242,12,0,0,242,12,0,0,244,12,0,0,244,12,0,0,246,12,0,0,250,12,0,0,250,12,0,0,250,12,0,0,250,12,0,0,252,12,0,0,252,12,0,0,252,12,0,0,252,12,0,0,254,12,0,0,2,13,0,0,4,13,0,0,4,13,0,0,6,13,0,0,8,13,0,0,10,13,0,0,10,13,0,0,10,13,0,0,10,13,0,0,10,13,0,0,10,13,0,0,12,13,0,0,14,13,0,0,18,13,0,0,18,13,0,0,20,13,0,0,22,13,0,0,24,13,0,0,24,13,0,0,26,13,0,0,26,13,0,0,28,13,0,0,32,13,0,0,34,13,0,0,34,13,0,0,34,13,0,0,36,13,0,0,38,13,0,0,38,13,0,0,40,13,0,0,42,13,0,0,44,13,0,0,48,13,0,0,48,13,0,0,48,13,0,0,50,13,0,0,50,13,0,0,50,13,0,0,50,13,0,0,50,13,0,0,50,13,0,0,52,13,0,0,54,13,0,0,54,13,0,0,54,13,0,0,56,13,0,0,56,13,0,0,56,13,0,0,56,13,0,0,56,13,0,0,58,13,0,0,60,13,0,0,62,13,0,0,62,13,0,0,64,13,0,0,64,13,0,0,64,13,0,0,64,13,0,0,68,13,0,0,68,13,0,0,68,13,0,0,68,13,0,0,68,13,0,0,70,13,0,0,72,13,0,0,72,13,0,0,72,13,0,0,72,13,0,0,74,13,0,0,74,13,0,0,76,13,0,0,76,13,0,0,76,13,0,0,80,13,0,0,80,13,0,0,82,13,0,0,82,13,0,0,82,13,0,0,84,13,0,0,84,13,0,0,86,13,0,0,86,13,0,0,90,13,0,0,90,13,0,0,90,13,0,0,92,13,0,0,92,13,0,0,94,13,0,0,94,13,0,0,94,13,0,0,96,13,0,0,98,13,0,0,100,13,0,0,102,13,0,0,102,13,0,0,102,13,0,0,102,13,0,0,104,13,0,0,104,13,0,0,104,13,0,0,106,13,0,0,108,13,0,0,108,13,0,0,110,13,0,0,112,13,0,0,114,13,0,0,116,13,0,0,116,13,0,0,118,13,0,0,120,13,0,0,122,13,0,0,122,13,0,0,122,13,0,0,122,13,0,0,122,13,0,0,124,13,0,0,124,13,0,0,126,13,0,0,126,13,0,0,128,13,0,0,132,13,0,0,132,13,0,0,136,13,0,0,136,13,0,0,136,13,0,0,138,13,0,0,142,13,0,0,142,13,0,0,144,13,0,0,144,13,0,0,144,13,0,0,144,13,0,0,144,13,0,0,144,13,0,0,144,13,0,0,144,13,0,0,144,13,0,0,148,13,0,0,150,13,0,0,150,13,0,0,150,13,0,0,150,13,0,0,152,13,0,0,154,13,0,0,154,13,0,0,154,13,0,0,154,13,0,0,154,13,0,0,156,13,0,0,156,13,0,0,158,13,0,0,158,13,0,0,158,13,0,0,158,13,0,0,160,13,0,0,162,13,0,0,162,13,0,0,162,13,0,0,162,13,0,0,164,13,0,0,164,13,0,0,166,13,0,0,166,13,0,0,168,13,0,0,168,13,0,0,170,13,0,0,172,13,0,0,174,13,0,0,174,13,0,0,174,13,0,0,174,13,0,0,174,13,0,0,174,13,0,0,174,13,0,0,174,13,0,0,174,13,0,0,174,13,0,0,176,13,0,0,176,13,0,0,178,13,0,0,178,13,0,0,180,13,0,0,180,13,0,0,182,13,0,0,182,13,0,0,182,13,0,0,182,13,0,0,182,13,0,0,182,13,0,0,182,13,0,0,186,13,0,0,186,13,0,0,186,13,0,0,186,13,0,0,190,13,0,0,190,13,0,0,190,13,0,0,190,13,0,0,192,13,0,0,192,13,0,0,192,13,0,0,194,13,0,0,200,13,0,0,200,13,0,0,202,13,0,0,202,13,0,0,202,13,0,0,202,13,0,0,202,13,0,0,202,13,0,0,202,13,0,0,206,13,0,0,206,13,0,0,208,13,0,0,208,13,0,0,214,13,0,0,216,13,0,0,216,13,0,0,216,13,0,0,216,13,0,0,216,13,0,0,218,13,0,0,220,13,0,0,220,13,0,0,220,13,0,0,220,13,0,0,220,13,0,0,220,13,0,0,220,13,0,0,220,13,0,0,222,13,0,0,222,13,0,0,224,13,0,0,224,13,0,0,224,13,0,0,224,13,0,0,224,13,0,0,226,13,0,0,226,13,0,0,226,13,0,0,226,13,0,0,226,13,0,0,228,13,0,0,228,13,0,0,230,13,0,0,232,13,0,0,234,13,0,0,234,13,0,0,236,13,0,0,236,13,0,0,236,13,0,0,240,13,0,0,240,13,0,0,242,13,0,0,244,13,0,0,244,13,0,0,244,13,0,0,244,13,0,0,246,13,0,0,248,13,0,0,252,13,0,0,252,13,0,0,252,13,0,0,252,13,0,0,252,13,0,0,252,13,0,0,252,13,0,0,254,13,0,0,0,14,0,0,0,14,0,0,0,14,0,0,2,14,0,0,2,14,0,0,2,14,0,0,4,14,0,0,4,14,0,0,6,14,0,0,6,14,0,0,6,14,0,0,6,14,0,0,10,14,0,0,12,14,0,0,12,14,0,0,16,14,0,0,16,14,0,0,18,14,0,0,18,14,0,0,20,14,0,0,20,14,0,0,20,14,0,0,22,14,0,0,22,14,0,0,24,14,0,0,28,14,0,0,28,14,0,0,28,14,0,0,30,14,0,0,30,14,0,0,32,14,0,0,32,14,0,0,34,14,0,0,36,14,0,0,40,14,0,0,42,14,0,0,42,14,0,0,42,14,0,0,42,14,0,0,42,14,0,0,42,14,0,0,42,14,0,0,42,14,0,0,46,14,0,0,46,14,0,0,46,14,0,0,46,14,0,0,46,14,0,0,46,14,0,0,48,14,0,0,48,14,0,0,48,14,0,0,50,14,0,0,52,14,0,0,52,14,0,0,54,14,0,0,54,14,0,0,54,14,0,0,54,14,0,0,54,14,0,0,54,14,0,0,54,14,0,0,54,14,0,0,54,14,0,0,54,14,0,0,54,14,0,0,54,14,0,0,56,14,0,0,56,14,0,0,56,14,0,0,58,14,0,0,60,14,0,0,60,14,0,0,60,14,0,0,62,14,0,0,64,14,0,0,68,14,0,0,68,14,0,0,68,14,0,0,70,14,0,0,70,14,0,0,74,14,0,0,80,14,0,0,80,14,0,0,80,14,0,0,80,14,0,0,80,14,0,0,80,14,0,0,82,14,0,0,82,14,0,0,84,14,0,0,88,14,0,0,88,14,0,0,88,14,0,0,88,14,0,0,90,14,0,0,90,14,0,0,90,14,0,0,92,14,0,0,98,14,0,0,98,14,0,0,98,14,0,0,98,14,0,0,100,14,0,0,102,14,0,0,102,14,0,0,102,14,0,0,104,14,0,0,106,14,0,0,106,14,0,0,108,14,0,0,108,14,0,0,110,14,0,0,112,14,0,0,112,14,0,0,116,14,0,0,118,14,0,0,118,14,0,0,120,14,0,0,122,14,0,0,124,14,0,0,124,14,0,0,128,14,0,0,130,14,0,0,130,14,0,0,134,14,0,0,134,14,0,0,134,14,0,0,134,14,0,0,136,14,0,0,136,14,0,0,136,14,0,0,138,14,0,0,142,14,0,0,142,14,0,0,142,14,0,0,144,14,0,0,146,14,0,0,148,14,0,0,148,14,0,0,150,14,0,0,152,14,0,0,152,14,0,0,154,14,0,0,156,14,0,0,156,14,0,0,156,14,0,0,158,14,0,0,160,14,0,0,162,14,0,0,162,14,0,0,162,14,0,0,164,14,0,0,164,14,0,0,164,14,0,0,168,14,0,0,168,14,0,0,168,14,0,0,174,14,0,0,178,14,0,0,178,14,0,0,178,14,0,0,178,14,0,0,178,14,0,0,182,14,0,0,182,14,0,0,182,14,0,0,184,14,0,0,186,14,0,0,186,14,0,0,188,14,0,0,188,14,0,0,190,14,0,0,190,14,0,0,190,14,0,0,192,14,0,0,192,14,0,0,192,14,0,0,194,14,0,0,194,14,0,0,194,14,0,0,194,14,0,0,196,14,0,0,196,14,0,0,198,14,0,0,198,14,0,0,198,14,0,0,200,14,0,0,204,14,0,0,206,14,0,0,206,14,0,0,206,14,0,0,206,14,0,0,206,14,0,0,208,14,0,0,208,14,0,0,208,14,0,0,210,14,0,0,210,14,0,0,210,14,0,0,214,14,0,0,216,14,0,0,218,14,0,0,218,14,0,0,222,14,0,0,224,14,0,0,226,14,0,0,226,14,0,0,226,14,0,0,226,14,0,0,226,14,0,0,226,14,0,0,228,14,0,0,230,14,0,0,230,14,0,0,232,14,0,0,236,14,0,0,236,14,0,0,238,14,0,0,240,14,0,0,242,14,0,0,242,14,0,0,242,14,0,0,242,14,0,0,242,14,0,0,244,14,0,0,244,14,0,0,246,14,0,0,246,14,0,0,248,14,0,0,250,14,0,0,254,14,0,0,254,14,0,0,0,15,0,0,2,15,0,0,4,15,0,0,4,15,0,0,6,15,0,0,6,15,0,0,8,15,0,0,10,15,0,0,14,15,0,0,14,15,0,0,14,15,0,0,14,15,0,0,14,15,0,0,14,15,0,0,14,15,0,0,16,15,0,0,16,15,0,0,18,15,0,0,18,15,0,0,18,15,0,0,18,15,0,0,18,15,0,0,18,15,0,0,18,15,0,0,18,15,0,0,18,15,0,0,18,15,0,0,20,15,0,0,22,15,0,0,22,15,0,0,24,15,0,0,24,15,0,0,26,15,0,0,26,15,0,0,30,15,0,0,32,15,0,0,32,15,0,0,34,15,0,0,34,15,0,0,34,15,0,0,34,15,0,0,34,15,0,0,34,15,0,0,38,15,0,0,38,15,0,0,38,15,0,0,38,15,0,0,40,15,0,0,40,15,0,0,40,15,0,0,40,15,0,0,40,15,0,0,40,15,0,0,40,15,0,0,40,15,0,0,42,15,0,0,42,15,0,0,42,15,0,0,42,15,0,0,42,15,0,0,42,15,0,0,44,15,0,0,44,15,0,0,44,15,0,0,48,15,0,0,48,15,0,0,48,15,0,0,48,15,0,0,50,15,0,0,50,15,0,0,50,15,0,0,50,15,0,0,52,15,0,0,52,15,0,0,52,15,0,0,52,15,0,0,52,15,0,0,54,15,0,0,54,15,0,0,54,15,0,0,54,15,0,0,56,15,0,0,56,15,0,0,60,15,0,0,62,15,0,0,62,15,0,0,64,15,0,0,64,15,0,0,64,15,0,0,64,15,0,0,66,15,0,0,66,15,0,0,66,15,0,0,70,15,0,0,70,15,0,0,70,15,0,0,72,15,0,0,72,15,0,0,76,15,0,0,76,15,0,0,78,15,0,0,78,15,0,0,78,15,0,0,80,15,0,0,84,15,0,0,86,15,0,0,86,15,0,0,88,15,0,0,90,15,0,0,92,15,0,0,94,15,0,0,94,15,0,0,94,15,0,0,98,15,0,0,100,15,0,0,100,15,0,0,100,15,0,0,102,15,0,0,102,15,0,0,102,15,0,0,102,15,0,0,104,15,0,0,104,15,0,0,104,15,0,0,104,15,0,0,104,15,0,0,106,15,0,0,108,15,0,0,108,15,0,0,108,15,0,0,110,15,0,0,112,15,0,0,114,15,0,0,114,15,0,0,116,15,0,0,118,15,0,0,120,15,0,0,120,15,0,0,120,15,0,0,122,15,0,0,124,15,0,0,126,15,0,0,130,15,0,0,130,15,0,0,132,15,0,0,132,15,0,0,134,15,0,0,134,15,0,0,136,15,0,0,136,15,0,0,138,15,0,0,140,15,0,0,140,15,0,0,140,15,0,0,140,15,0,0,140,15,0,0,140,15,0,0,142,15,0,0,144,15,0,0,146,15,0,0,146,15,0,0,146,15,0,0,146,15,0,0,148,15,0,0,152,15,0,0,152,15,0,0,152,15,0,0,154,15,0,0,158,15,0,0,158,15,0,0,158,15,0,0,160,15,0,0,162,15,0,0,164,15,0,0,164,15,0,0,164,15,0,0,164,15,0,0,166,15,0,0,166,15,0,0,168,15,0,0,168,15,0,0,168,15,0,0,168,15,0,0,168,15,0,0,170,15,0,0,174,15,0,0,174,15,0,0,174,15,0,0,176,15,0,0,176,15,0,0,176,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,180,15,0,0,182,15,0,0,184,15,0,0,184,15,0,0,190,15,0,0,190,15,0,0,190,15,0,0,190,15,0,0,190,15,0,0,190,15,0,0,192,15,0,0,198,15,0,0,202,15,0,0,202,15,0,0,202,15,0,0,204,15,0,0,204,15,0,0,204,15,0,0,208,15,0,0,210,15,0,0,212,15,0,0,212,15,0,0,212,15,0,0,212,15,0,0,212,15,0,0,212,15,0,0,212,15,0,0,212,15,0,0,212,15,0,0,214,15,0,0,216,15,0,0,216,15,0,0,216,15,0,0,216,15,0,0,216,15,0,0,216,15,0,0,216,15,0,0,218,15,0,0,218,15,0,0,218,15,0,0,220,15,0,0,224,15,0,0,224,15,0,0,228,15,0,0,230,15,0,0,232,15,0,0,234,15,0,0,234,15,0,0,236,15,0,0,240,15,0,0,240,15,0,0,248,15,0,0,252,15,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,2,16,0,0,2,16,0,0,2,16,0,0,4,16,0,0,4,16,0,0,8,16,0,0,8,16,0,0,10,16,0,0,10,16,0,0,14,16,0,0,18,16,0,0,18,16,0,0,22,16,0,0,22,16,0,0,24,16,0,0,28,16,0,0,28,16,0,0,30,16,0,0,30,16,0,0,32,16,0,0,34,16,0,0,36,16,0,0,36,16,0,0,36,16,0,0,36,16,0,0,36,16,0,0,36,16,0,0,36,16,0,0,38,16,0,0,38,16,0,0,38,16,0,0,40,16,0,0,42,16,0,0,42,16,0,0,46,16,0,0,46,16,0,0,46,16,0,0,46,16,0,0,46,16,0,0,48,16,0,0,50,16,0,0,50,16,0,0,50,16,0,0,50,16,0,0,50,16,0,0,50,16,0,0,52,16,0,0,52,16,0,0,52,16,0,0,54,16,0,0,54,16,0,0,56,16,0,0,56,16,0,0,56,16,0,0,58,16,0,0,58,16,0,0,60,16,0,0,60,16,0,0,60,16,0,0,60,16,0,0,60,16,0,0,60,16,0,0,60,16,0,0,60,16,0,0,60,16,0,0,62,16,0,0,62,16,0,0,62,16,0,0,64,16,0,0,64,16,0,0,64,16,0,0,64,16,0,0,66,16,0,0,70,16,0,0,70,16,0,0,72,16,0,0,72,16,0,0,76,16,0,0,76,16,0,0,78,16,0,0,78,16,0,0,82,16,0,0,82,16,0,0,84,16,0,0,84,16,0,0,84,16,0,0,84,16,0,0,84,16,0,0,90,16,0,0,92,16,0,0,92,16,0,0,92,16,0,0,92,16,0,0,96,16,0,0,98,16,0,0,102,16,0,0,104,16,0,0,104,16,0,0,104,16,0,0,104,16,0,0,104,16,0,0,104,16,0,0,104,16,0,0,104,16,0,0,104,16,0,0,106,16,0,0,110,16,0,0,110,16,0,0,112,16,0,0,112,16,0,0,114,16,0,0,114,16,0,0,114,16,0,0,114,16,0,0,116,16,0,0,118,16,0,0,118,16,0,0,118,16,0,0,118,16,0,0,118,16,0,0,118,16,0,0,120,16,0,0,120,16,0,0,120,16,0,0,120,16,0,0,120,16,0,0,120,16,0,0,122,16,0,0,124,16,0,0,124,16,0,0,124,16,0,0,124,16,0,0,124,16,0,0,124,16,0,0,126,16,0,0,128,16,0,0,128,16,0,0,128,16,0,0,128,16,0,0,130,16,0,0,134,16,0,0,134,16,0,0,136,16,0,0,140,16,0,0,140,16,0,0,142,16,0,0,142,16,0,0,142,16,0,0,144,16,0,0,144,16,0,0,144,16,0,0,152,16,0,0,156,16,0,0,156,16,0,0,158,16,0,0,158,16,0,0,158,16,0,0,158,16,0,0,158,16,0,0,164,16,0,0,164,16,0,0,164,16,0,0,164,16,0,0,164,16,0,0,164,16,0,0,164,16,0,0,168,16,0,0,170,16,0,0,172,16,0,0,174,16,0,0,174,16,0,0,176,16,0,0,180,16,0,0,182,16,0,0,182,16,0,0,184,16,0,0,188,16,0,0,190,16,0,0,192,16,0,0,194,16,0,0,194,16,0,0,194,16,0,0,196,16,0,0,196,16,0,0,198,16,0,0,198,16,0,0,200,16,0,0,202,16,0,0,204,16,0,0,208,16,0,0,210,16,0,0,210,16,0,0,210,16,0,0,212,16,0,0,212,16,0,0,214,16,0,0,214,16,0,0,216,16,0,0,218,16,0,0,218,16,0,0,218,16,0,0,218,16,0,0,218,16,0,0,218,16,0,0,218,16,0,0,220,16,0,0,220,16,0,0,220,16,0,0,222,16,0,0,222,16,0,0,224,16,0,0,224,16,0,0,230,16,0,0,230,16,0,0,230,16,0,0,230,16,0,0,232,16,0,0,232,16,0,0,232,16,0,0,234,16,0,0,234,16,0,0,234,16,0,0,236,16,0,0,236,16,0,0,238,16,0,0,238,16,0,0,244,16,0,0,244,16,0,0,244,16,0,0,244,16,0,0,244,16,0,0,246,16,0,0,246,16,0,0,246,16,0,0,248,16,0,0,252,16,0,0,252,16,0,0,252,16,0,0,252,16,0,0,254,16,0,0,254,16,0,0,0,17,0,0,0,17,0,0,0,17,0,0,0,17,0,0,4,17,0,0,6,17,0,0,6,17,0,0,8,17,0,0,8,17,0,0,8,17,0,0,8,17,0,0,8,17,0,0,10,17,0,0,10,17,0,0,14,17,0,0,16,17,0,0,16,17,0,0,18,17,0,0,18,17,0,0,20,17,0,0,20,17,0,0,20,17,0,0,20,17,0,0,20,17,0,0,20,17,0,0,20,17,0,0,20,17,0,0,20,17,0,0,20,17,0,0,20,17,0,0,24,17,0,0,24,17,0,0,26,17,0,0,28,17,0,0,28,17,0,0,28,17,0,0,30,17,0,0,30,17,0,0,32,17,0,0,32,17,0,0,32,17,0,0,32,17,0,0,32,17,0,0,34,17,0,0,34,17,0,0,34,17,0,0,34,17,0,0,34,17,0,0,34,17,0,0,36,17,0,0,36,17,0,0,40,17,0,0,40,17,0,0,40,17,0,0,40,17,0,0,40,17,0,0,40,17,0,0,40,17,0,0,40,17,0,0,40,17,0,0,40,17,0,0,40,17,0,0,42,17,0,0,44,17,0,0,44,17,0,0,46,17,0,0,46,17,0,0,48,17,0,0,48,17,0,0,48,17,0,0,52,17,0,0,54,17,0,0,54,17,0,0,54,17,0,0,56,17,0,0,56,17,0,0,58,17,0,0,58,17,0,0,58,17,0,0,58,17,0,0,60,17,0,0,62,17,0,0,62,17,0,0,62,17,0,0,64,17,0,0,64,17,0,0,66,17,0,0,66,17,0,0,68,17,0,0,68,17,0,0,68,17,0,0,68,17,0,0,68,17,0,0,68,17,0,0,68,17,0,0,68,17,0,0,68,17,0,0,68,17,0,0,70,17,0,0,74,17,0,0,74,17,0,0,74,17,0,0,74,17,0,0,74,17,0,0,74,17,0,0,76,17,0,0,76,17,0,0,78,17,0,0,80,17,0,0,82,17,0,0,86,17,0,0,86,17,0,0,86,17,0,0,88,17,0,0,90,17,0,0,96,17,0,0,96,17,0,0,98,17,0,0,98,17,0,0,98,17,0,0,100,17,0,0,100,17,0,0,100,17,0,0,102,17,0,0,104,17,0,0,104,17,0,0,104,17,0,0,106,17,0,0,106,17,0,0,108,17,0,0,110,17,0,0,112,17,0,0,116,17,0,0,118,17,0,0,120,17,0,0,120,17,0,0,122,17,0,0,122,17,0,0,126,17,0,0,128,17,0,0,128,17,0,0,128,17,0,0,130,17,0,0,130,17,0,0,136,17,0,0,136,17,0,0,136,17,0,0,136,17,0,0,140,17,0,0,142,17,0,0,142,17,0,0,142,17,0,0,142,17,0,0,142,17,0,0,144,17,0,0,144,17,0,0,146,17,0,0,150,17,0,0,152,17,0,0,154,17,0,0,156,17,0,0,156,17,0,0,156,17,0,0,160,17,0,0,160,17,0,0,160,17,0,0,162,17,0,0,166,17,0,0,166,17,0,0,166,17,0,0,166,17,0,0,166,17,0,0,168,17,0,0,168,17,0,0,168,17,0,0,168,17,0,0,168,17,0,0,168,17,0,0,168,17,0,0,168,17,0,0,168,17,0,0,174,17,0,0,178,17,0,0,182,17,0,0,182,17,0,0,184,17,0,0,184,17,0,0,184,17,0,0,186,17,0,0,186,17,0,0,186,17,0,0,190,17,0,0,192,17,0,0,196,17,0,0,196,17,0,0,196,17,0,0,198,17,0,0,200,17,0,0,200,17,0,0,200,17,0,0,200,17,0,0,202,17,0,0,202,17,0,0,202,17,0,0,202,17,0,0,204,17,0,0,204,17,0,0,206,17,0,0,206,17,0,0,206,17,0,0,206,17,0,0,206,17,0,0,208,17,0,0,210,17,0,0,214,17,0,0,214,17,0,0,216,17,0,0,216,17,0,0,218,17,0,0,220,17,0,0,220,17,0,0,220,17,0,0,220,17,0,0,222,17,0,0,222,17,0,0,224,17,0,0,224,17,0,0,224,17,0,0,224,17,0,0,224,17,0,0,224,17,0,0,226,17,0,0,230,17,0,0,236,17,0,0,236,17,0,0,236,17,0,0,236,17,0,0,238,17,0,0,242,17,0,0,242,17,0,0,246,17,0,0,246,17,0,0,248,17,0,0,252,17,0,0,252,17,0,0,254,17,0,0,254,17,0,0,0,18,0,0,2,18,0,0,2,18,0,0,2,18,0,0,4,18,0,0,4,18,0,0,4,18,0,0,4,18,0,0,4,18,0,0,8,18,0,0,8,18,0,0,10,18,0,0,12,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,14,18,0,0,16,18,0,0,16,18,0,0,16,18,0,0,20,18,0,0,22,18,0,0,24,18,0,0,24,18,0,0,24,18,0,0,24,18,0,0,26,18,0,0,26,18,0,0,26,18,0,0,26,18,0,0,26,18,0,0,28,18,0,0,28,18,0,0,28,18,0,0,30,18,0,0,32,18,0,0,34,18,0,0,38,18,0,0,40,18,0,0,42,18,0,0,42,18,0,0,46,18,0,0,48,18,0,0,50,18,0,0,50,18,0,0,50,18,0,0,50,18,0,0,52,18,0,0,52,18,0,0,52,18,0,0,54,18,0,0,54,18,0,0,54,18,0,0,56,18,0,0,56,18,0,0,56,18,0,0,60,18,0,0,60,18,0,0,60,18,0,0,60,18,0,0,60,18,0,0,62,18,0,0,64,18,0,0,70,18,0,0,70,18,0,0,70,18,0,0,70,18,0,0,70,18,0,0,70,18,0,0,70,18,0,0,70,18,0,0,72,18,0,0,72,18,0,0,72,18,0,0,76,18,0,0,76,18,0,0,76,18,0,0,76,18,0,0,78,18,0,0,80,18,0,0,82,18,0,0,84,18,0,0,84,18,0,0,86,18,0,0,88,18,0,0,90,18,0,0,90,18,0,0,90,18,0,0,90,18,0,0,94,18,0,0,94,18,0,0,96,18,0,0,96,18,0,0,96,18,0,0,96,18,0,0,96,18,0,0,96,18,0,0,96,18,0,0,98,18,0,0,100,18,0,0,100,18,0,0,100,18,0,0,102,18,0,0,102,18,0,0,102,18,0,0,104,18,0,0,106,18,0,0,106,18,0,0,106,18,0,0,108,18,0,0,108,18,0,0,108,18,0,0,108,18,0,0,108,18,0,0,108,18,0,0,110,18,0,0,112,18,0,0,116,18,0,0,116,18,0,0,116,18,0,0,116,18,0,0,116,18,0,0,116,18,0,0,116,18,0,0,116,18,0,0,116,18,0,0,116,18,0,0,118,18,0,0,120,18,0,0,120,18,0,0,120,18,0,0,120,18,0,0,120,18,0,0,124,18,0,0,126,18,0,0,128,18,0,0,128,18,0,0,128,18,0,0,128,18,0,0,128,18,0,0,128,18,0,0,130,18,0,0,130,18,0,0,130,18,0,0,132,18,0,0,132,18,0,0,132,18,0,0,134,18,0,0,136,18,0,0,136,18,0,0,136,18,0,0,136,18,0,0,136,18,0,0,138,18,0,0,138,18,0,0,138,18,0,0,138,18,0,0,138,18,0,0,142,18,0,0,144,18,0,0,144,18,0,0,144,18,0,0,146,18,0,0,146,18,0,0,146,18,0,0,148,18,0,0,150,18,0,0,152,18,0,0,152,18,0,0,152,18,0,0,154,18,0,0,154,18,0,0,156,18,0,0,156,18,0,0,160,18,0,0,162,18,0,0,162,18,0,0,162,18,0,0,162,18,0,0,164,18,0,0,164,18,0,0,166,18,0,0,170,18,0,0,172,18,0,0,176,18,0,0,178,18,0,0,178,18,0,0,178,18,0,0,180,18,0,0,182,18,0,0,182,18,0,0,184,18,0,0,186,18,0,0,188,18,0,0,190,18,0,0,190,18,0,0,192,18,0,0,194,18,0,0,194,18,0,0,194,18,0,0,194,18,0,0,194,18,0,0,194,18,0,0,194,18,0,0,196,18,0,0,198,18,0,0,198,18,0,0,198,18,0,0,200,18,0,0,202,18,0,0,204,18,0,0,204,18,0,0,212,18,0,0,214,18,0,0,214,18,0,0,222,18,0,0,222,18,0,0,222,18,0,0,222,18,0,0,228,18,0,0,228,18,0,0,232,18,0,0,236,18,0,0,238,18,0,0,238,18,0,0,238,18,0,0,242,18,0,0,242,18,0,0,242,18,0,0,246,18,0,0,246,18,0,0,246,18,0,0,246,18,0,0,246,18,0,0,246,18,0,0,246,18,0,0,248,18,0,0,248,18,0,0,248,18,0,0,250,18,0,0,252,18,0,0,252,18,0,0,254,18,0,0,0,19,0,0,0,19,0,0,2,19,0,0,6,19,0,0,6,19,0,0,6,19,0,0,6,19,0,0,6,19,0,0,8,19,0,0,12,19,0,0,12,19,0,0,12,19,0,0,12,19,0,0,12,19,0,0,12,19,0,0,18,19,0,0,18,19,0,0,18,19,0,0,18,19,0,0,20,19,0,0,20,19,0,0,20,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,22,19,0,0,26,19,0,0,28,19,0,0,34,19,0,0,34,19,0,0,34,19,0,0,36,19,0,0,38,19,0,0,38,19,0,0,38,19,0,0,40,19,0,0,42,19,0,0,46,19,0,0,48,19,0,0,48,19,0,0,50,19,0,0,50,19,0,0,50,19,0,0,54,19,0,0,56,19,0,0,58,19,0,0,58,19,0,0,60,19,0,0,60,19,0,0,60,19,0,0,62,19,0,0,64,19,0,0,64,19,0,0,66,19,0,0,68,19,0,0,68,19,0,0,70,19,0,0,70,19,0,0,70,19,0,0,70,19,0,0,72,19,0,0,72,19,0,0,72,19,0,0,72,19,0,0,72,19,0,0,74,19,0,0,76,19,0,0,80,19,0,0,80,19,0,0,80,19,0,0,80,19,0,0,80,19,0,0,82,19,0,0,82,19,0,0,84,19,0,0,88,19,0,0,88,19,0,0,90,19,0,0,94,19,0,0,96,19,0,0,98,19,0,0,98,19,0,0,98,19,0,0,100,19,0,0,100,19,0,0,100,19,0,0,102,19,0,0,102,19,0,0,102,19,0,0,106,19,0,0,108,19,0,0,110,19,0,0,110,19,0,0,110,19,0,0,110,19,0,0,114,19,0,0,118,19,0,0,118,19,0,0,118,19,0,0,120,19,0,0,120,19,0,0,120,19,0,0,120,19,0,0,122,19,0,0,122,19,0,0,124,19,0,0,124,19,0,0,126,19,0,0,126,19,0,0,126,19,0,0,126,19,0,0,126,19,0,0,126,19,0,0,126,19,0,0,126,19,0,0,128,19,0,0,132,19,0,0,132,19,0,0,132,19,0,0,134,19,0,0,136,19,0,0,138,19,0,0,138,19,0,0,138,19,0,0,138,19,0,0,142,19,0,0,144,19,0,0,144,19,0,0,146,19,0,0,148,19,0,0,154,19,0,0,154,19,0,0,156,19,0,0,158,19,0,0,162,19,0,0,162,19,0,0,164,19,0,0,164,19,0,0,164,19,0,0,164,19,0,0,164,19,0,0,164,19,0,0,164,19,0,0,168,19,0,0,170,19,0,0,170,19,0,0,170,19,0,0,170,19,0,0,170,19,0,0,170,19,0,0,172,19,0,0,172,19,0,0,172,19,0,0,172,19,0,0,172,19,0,0,172,19,0,0,172,19,0,0,172,19,0,0,172,19,0,0,172,19,0,0,172,19,0,0,172,19,0,0,172,19,0,0,174,19,0,0,174,19,0,0,176,19,0,0,184,19,0,0,184,19,0,0,190,19,0,0,190,19,0,0,190,19,0,0,192,19,0,0,194,19,0,0,194,19,0,0,194,19,0,0,194,19,0,0,194,19,0,0,194,19,0,0,196,19,0,0,198,19,0,0,198,19,0,0,202,19,0,0,202,19,0,0,202,19,0,0,202,19,0,0,204,19,0,0,204,19,0,0,204,19,0,0,204,19,0,0,204,19,0,0,206,19,0,0,208,19,0,0,208,19,0,0,210,19,0,0,210,19,0,0,214,19,0,0,214,19,0,0,214,19,0,0,214,19,0,0,218,19,0,0,220,19,0,0,220,19,0,0,220,19,0,0,220,19,0,0,222,19,0,0,222,19,0,0,222,19,0,0,222,19,0,0,222,19,0,0,222,19,0,0,224,19,0,0,228,19,0,0,234,19,0,0,234,19,0,0,234,19,0,0,234,19,0,0,234,19,0,0,236,19,0,0,236,19,0,0,236,19,0,0,236,19,0,0,240,19,0,0,240,19,0,0,240,19,0,0,240,19,0,0,240,19,0,0,240,19,0,0,240,19,0,0,240,19,0,0,244,19,0,0,246,19,0,0,246,19,0,0,246,19,0,0,246,19,0,0,248,19,0,0,250,19,0,0,252,19,0,0,252,19,0,0,254,19,0,0,254,19,0,0,2,20,0,0,2,20,0,0,4,20,0,0,6,20,0,0,10,20,0,0,10,20,0,0,10,20,0,0,10,20,0,0,10,20,0,0,10,20,0,0,12,20,0,0,14,20,0,0,14,20,0,0,14,20,0,0,14,20,0,0,14,20,0,0,14,20,0,0,14,20,0,0,16,20,0,0,16,20,0,0,16,20,0,0,18,20,0,0,18,20,0,0,20,20,0,0,20,20,0,0,26,20,0,0,26,20,0,0,26,20,0,0,26,20,0,0,26,20,0,0,26,20,0,0,30,20,0,0,34,20,0,0,36,20,0,0,36,20,0,0,36,20,0,0,38,20,0,0,38,20,0,0,40,20,0,0,42,20,0,0,44,20,0,0,44,20,0,0,48,20,0,0,48,20,0,0,48,20,0,0,50,20,0,0,50,20,0,0,50,20,0,0,52,20,0,0,56,20,0,0,58,20,0,0,58,20,0,0,60,20,0,0,60,20,0,0,62,20,0,0,62,20,0,0,62,20,0,0,62,20,0,0,62,20,0,0,64,20,0,0,64,20,0,0,66,20,0,0,66,20,0,0,66,20,0,0,66,20,0,0,66,20,0,0,66,20,0,0,66,20,0,0,66,20,0,0,66,20,0,0,66,20,0,0,68,20,0,0,70,20,0,0,72,20,0,0,72,20,0,0,74,20,0,0,76,20,0,0,76,20,0,0,76,20,0,0,80,20,0,0,80,20,0,0,82,20,0,0,82,20,0,0,84,20,0,0,84,20,0,0,86,20,0,0,86,20,0,0,90,20,0,0,90,20,0,0,90,20,0,0,90,20,0,0,94,20,0,0,94,20,0,0,96,20,0,0,98,20,0,0,98,20,0,0,98,20,0,0,98,20,0,0,98,20,0,0,100,20,0,0,100,20,0,0,102,20,0,0,104,20,0,0,106,20,0,0,108,20,0,0,110,20,0,0,110,20,0,0,112,20,0,0,112,20,0,0,112,20,0,0,112,20,0,0,112,20,0,0,112,20,0,0,114,20,0,0,116,20,0,0,116,20,0,0,118,20,0,0,120,20,0,0,122,20,0,0,122,20,0,0,122,20,0,0,122,20,0,0,126,20,0,0,128,20,0,0,128,20,0,0,130,20,0,0,130,20,0,0,134,20,0,0,136,20,0,0,136,20,0,0,136,20,0,0,136,20,0,0,144,20,0,0,146,20,0,0,146,20,0,0,146,20,0,0,146,20,0,0,146,20,0,0,146,20,0,0,146,20,0,0,146,20,0,0,146,20,0,0,146,20,0,0,148,20,0,0,150,20,0,0,152,20,0,0,152,20,0,0,152,20,0,0,152,20,0,0,152,20,0,0,154,20,0,0,154,20,0,0,156,20,0,0,156,20,0,0,158,20,0,0,160,20,0,0,164,20,0,0,164,20,0,0,166,20,0,0,168,20,0,0,170,20,0,0,170,20,0,0,170,20,0,0,170,20,0,0,172,20,0,0,176,20,0,0,176,20,0,0,178,20,0,0,178,20,0,0,178,20,0,0,178,20,0,0,180,20,0,0,180,20,0,0,182,20,0,0,182,20,0,0,182,20,0,0,184,20,0,0,188,20,0,0,188,20,0,0,188,20,0,0,188,20,0,0,188,20,0,0,188,20,0,0,188,20,0,0,188,20,0,0,188,20,0,0,188,20,0,0,188,20,0,0,188,20,0,0,190,20,0,0,190,20,0,0,190,20,0,0,192,20,0,0,192,20,0,0,194,20,0,0,194,20,0,0,194,20,0,0,194,20,0,0,196,20,0,0,196,20,0,0,196,20,0,0,198,20,0,0,198,20,0,0,200,20,0,0,202,20,0,0,202,20,0,0,202,20,0,0,204,20,0,0,206,20,0,0,206,20,0,0,206,20,0,0,208,20,0,0,208,20,0,0,208,20,0,0,210,20,0,0,210,20,0,0,210,20,0,0,210,20,0,0,212,20,0,0,214,20,0,0,216,20,0,0,218,20,0,0,218,20,0,0,218,20,0,0,218,20,0,0,218,20,0,0,218,20,0,0,218,20,0,0,218,20,0,0,222,20,0,0,222,20,0,0,222,20,0,0,224,20,0,0,224,20,0,0,224,20,0,0,226,20,0,0,228,20,0,0,228,20,0,0,228,20,0,0,230,20,0,0,230,20,0,0,232,20,0,0,236,20,0,0,236,20,0,0,238,20,0,0,240,20,0,0,242,20,0,0,244,20,0,0,246,20,0,0,246,20,0,0,246,20,0,0,250,20,0,0,252,20,0,0,252,20,0,0,0,21,0,0,0,21,0,0,4,21,0,0,6,21,0,0,6,21,0,0,8,21,0,0,10,21,0,0,10,21,0,0,12,21,0,0,14,21,0,0,14,21,0,0,16,21,0,0,16,21,0,0,16,21,0,0,18,21,0,0,20,21,0,0,20,21,0,0,20,21,0,0,28,21,0,0,30,21,0,0,34,21,0,0,34,21,0,0,34,21,0,0,36,21,0,0,40,21,0,0,40,21,0,0,44,21,0,0,44,21,0,0,48,21,0,0,50,21,0,0,50,21,0,0,50,21,0,0,52,21,0,0,54,21,0,0,54,21,0,0,54,21,0,0,54,21,0,0,54,21,0,0,54,21,0,0,56,21,0,0,58,21,0,0,60,21,0,0,62,21,0,0,64,21,0,0,64,21,0,0,64,21,0,0,64,21,0,0,66,21,0,0,66,21,0,0,66,21,0,0,66,21,0,0,66,21,0,0,66,21,0,0,68,21,0,0,70,21,0,0,72,21,0,0,74,21,0,0,78,21,0,0,82,21,0,0,84,21,0,0,84,21,0,0,86,21,0,0,86,21,0,0,88,21,0,0,88,21,0,0,90,21,0,0,90,21,0,0,94,21,0,0,94,21,0,0,94,21,0,0,94,21,0,0,94,21,0,0,94,21,0,0,94,21,0,0,94,21,0,0,100,21,0,0,100,21,0,0,102,21,0,0,102,21,0,0,102,21,0,0,106,21,0,0,106,21,0,0,106,21,0,0,106,21,0,0,106,21,0,0,110,21,0,0,110,21,0,0,112,21,0,0,112,21,0,0,112,21,0,0,114,21,0,0,116,21,0,0,116,21,0,0,116,21,0,0,120,21,0,0,120,21,0,0,120,21,0,0,120,21,0,0,124,21,0,0,124,21,0,0,124,21,0,0,128,21,0,0,128,21,0,0,128,21,0,0,130,21,0,0,132,21,0,0,132,21,0,0,132,21,0,0,132,21,0,0,136,21,0,0,136,21,0,0,136,21,0,0,138,21,0,0,138,21,0,0,138,21,0,0,138,21,0,0,140,21,0,0,144,21,0,0,144,21,0,0,146,21,0,0,148,21,0,0,150,21,0,0,154,21,0,0,156,21,0,0,156,21,0,0,156,21,0,0,158,21,0,0,158,21,0,0,160,21,0,0,160,21,0,0,160,21,0,0,160,21,0,0,160,21,0,0,162,21,0,0,162,21,0,0,162,21,0,0,162,21,0,0,164,21,0,0,164,21,0,0,166,21,0,0,170,21,0,0,172,21,0,0,172,21,0,0,172,21,0,0,172,21,0,0,172,21,0,0,172,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,176,21,0,0,178,21,0,0,180,21,0,0,182,21,0,0,182,21,0,0,182,21,0,0,182,21,0,0,182,21,0,0,182,21,0,0,182,21,0,0,182,21,0,0,182,21,0,0,182,21,0,0,184,21,0,0,186,21,0,0,188,21,0,0,192,21,0,0,194,21,0,0,198,21,0,0,200,21,0,0,200,21,0,0,200,21,0,0,200,21,0,0,200,21,0,0,202,21,0,0,204,21,0,0,206,21,0,0,206,21,0,0,210,21,0,0,210,21,0,0,214,21,0,0,214,21,0,0,216,21,0,0,216,21,0,0,218,21,0,0,218,21,0,0,220,21,0,0,222,21,0,0,222,21,0,0,222,21,0,0,224,21,0,0,228,21,0,0,230,21,0,0,230,21,0,0,230,21,0,0,230,21,0,0,230,21,0,0,230,21,0,0,230,21,0,0,230,21,0,0,230,21,0,0,232,21,0,0,232,21,0,0,234,21,0,0,234,21,0,0,238,21,0,0,238,21,0,0,240,21,0,0,242,21,0,0,244,21,0,0,246,21,0,0,246,21,0,0,246,21,0,0,246,21,0,0,250,21,0,0,252,21,0,0,252,21,0,0,254,21,0,0,0,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,2,22,0,0,4,22,0,0,4,22,0,0,4,22,0,0,4,22,0,0,4,22,0,0,4,22,0,0,4,22,0,0,4,22,0,0,4,22,0,0,6,22,0,0,6,22,0,0,6,22,0,0,8,22,0,0,8,22,0,0,10,22,0,0,14,22,0,0,16,22,0,0,18,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,20,22,0,0,22,22,0,0,22,22,0,0,22,22,0,0,22,22,0,0,22,22,0,0,22,22,0,0,22,22,0,0,26,22,0,0,26,22,0,0,26,22,0,0,28,22,0,0,30,22,0,0,30,22,0,0,30,22,0,0,32,22,0,0,34,22,0,0,34,22,0,0,34,22,0,0,40,22,0,0,40,22,0,0,40,22,0,0,42,22,0,0,42,22,0,0,42,22,0,0,42,22,0,0,42,22,0,0,44,22,0,0,44,22,0,0,44,22,0,0,44,22,0,0,44,22,0,0,44,22,0,0,48,22,0,0,50,22,0,0,50,22,0,0,52,22,0,0,54,22,0,0,56,22,0,0,56,22,0,0,56,22,0,0,56,22,0,0,58,22,0,0,58,22,0,0,58,22,0,0,60,22,0,0,60,22,0,0,62,22,0,0,62,22,0,0,62,22,0,0,62,22,0,0,64,22,0,0,64,22,0,0,64,22,0,0,66,22,0,0,68,22,0,0,70,22,0,0,70,22,0,0,70,22,0,0,72,22,0,0,72,22,0,0,74,22,0,0,74,22,0,0,74,22,0,0,76,22,0,0,78,22,0,0,80,22,0,0,80,22,0,0,80,22,0,0,86,22,0,0,86,22,0,0,86,22,0,0,88,22,0,0,88,22,0,0,88,22,0,0,92,22,0,0,94,22,0,0,94,22,0,0,94,22,0,0,94,22,0,0,94,22,0,0,94,22,0,0,94,22,0,0,96,22,0,0,96,22,0,0,96,22,0,0,104,22,0,0,106,22,0,0,106,22,0,0,106,22,0,0,106,22,0,0,106,22,0,0,106,22,0,0,106,22,0,0,108,22,0,0,108,22,0,0,108,22,0,0,108,22,0,0,108,22,0,0,108,22,0,0,108,22,0,0,112,22,0,0,112,22,0,0,112,22,0,0,112,22,0,0,114,22,0,0,116,22,0,0,116,22,0,0,116,22,0,0,120,22,0,0,120,22,0,0,120,22,0,0,122,22,0,0,122,22,0,0,122,22,0,0,122,22,0,0,124,22,0,0,126,22,0,0,126,22,0,0,126,22,0,0,126,22,0,0,128,22,0,0,130,22,0,0,130,22,0,0,130,22,0,0,132,22,0,0,134,22,0,0,136,22,0,0,136,22,0,0,136,22,0,0,136,22,0,0,140,22,0,0,144,22,0,0,144,22,0,0,144,22,0,0,144,22,0,0,144,22,0,0,144,22,0,0,144,22,0,0,144,22,0,0,144,22,0,0,146,22,0,0,146,22,0,0,148,22,0,0,152,22,0,0,154,22,0,0,154,22,0,0,154,22,0,0,156,22,0,0,156,22,0,0,156,22,0,0,156,22,0,0,156,22,0,0,156,22,0,0,156,22,0,0,158,22,0,0,158,22,0,0,158,22,0,0,162,22,0,0,162,22,0,0,162,22,0,0,162,22,0,0,162,22,0,0,162,22,0,0,162,22,0,0,162,22,0,0,164,22,0,0,168,22,0,0,168,22,0,0,170,22,0,0,170,22,0,0,172,22,0,0,172,22,0,0,172,22,0,0,172,22,0,0,172,22,0,0,172,22,0,0,172,22,0,0,174,22,0,0,176,22,0,0,178,22,0,0,178,22,0,0,178,22,0,0,178,22,0,0,178,22,0,0,180,22,0,0,180,22,0,0,182,22,0,0,184,22,0,0,184,22,0,0,184,22,0,0,184,22,0,0,186,22,0,0,186,22,0,0,186,22,0,0,186,22,0,0,188,22,0,0,190,22,0,0,192,22,0,0,196,22,0,0,196,22,0,0,198,22,0,0,202,22,0,0,202,22,0,0,204,22,0,0,204,22,0,0,206,22,0,0,210,22,0,0,210,22,0,0,210,22,0,0,210,22,0,0,212,22,0,0,216,22,0,0,218,22,0,0,218,22,0,0,218,22,0,0,218,22,0,0,220,22,0,0,222,22,0,0,224,22,0,0,224,22,0,0,224,22,0,0,226,22,0,0,226,22,0,0,226,22,0,0,230,22,0,0,230,22,0,0,230,22,0,0,232,22,0,0,234,22,0,0,234,22,0,0,238,22,0,0,238,22,0,0,238,22,0,0,238,22,0,0,238,22,0,0,240,22,0,0,242,22,0,0,242,22,0,0,244,22,0,0,244,22,0,0,246,22,0,0,246,22,0,0,246,22,0,0,248,22,0,0,250,22,0,0,254,22,0,0,254,22,0,0,254,22,0,0,254,22,0,0,254,22,0,0,0,23,0,0,0,23,0,0,2,23,0,0,6,23,0,0,6,23,0,0,6,23,0,0,10,23,0,0,10,23,0,0,12,23,0,0,12,23,0,0,12,23,0,0,12,23,0,0,14,23,0,0,18,23,0,0,18,23,0,0,20,23,0,0,22,23,0,0,24,23,0,0,26,23,0,0,26,23,0,0,26,23,0,0,26,23,0,0,28,23,0,0,28,23,0,0,30,23,0,0,32,23,0,0,34,23,0,0,34,23,0,0,34,23,0,0,36,23,0,0,36,23,0,0,40,23,0,0,40,23,0,0,40,23,0,0,44,23,0,0,44,23,0,0,44,23,0,0,44,23,0,0,52,23,0,0,52,23,0,0,52,23,0,0,52,23,0,0,56,23,0,0,60,23,0,0,62,23,0,0,62,23,0,0,64,23,0,0,64,23,0,0,68,23,0,0,68,23,0,0,70,23,0,0,70,23,0,0,76,23,0,0,78,23,0,0,78,23,0,0,78,23,0,0,80,23,0,0,80,23,0,0,80,23,0,0,80,23,0,0,82,23,0,0,82,23,0,0,82,23,0,0,82,23,0,0,82,23,0,0,84,23,0,0,86,23,0,0,86,23,0,0,86,23,0,0,86,23,0,0,86,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,88,23,0,0,90,23,0,0,92,23,0,0,94,23,0,0,94,23,0,0,94,23,0,0,94,23,0,0,94,23,0,0,98,23,0,0,102,23,0,0,102,23,0,0,102,23,0,0,104,23,0,0,104,23,0,0,106,23,0,0,106,23,0,0,106,23,0,0,106,23,0,0,108,23,0,0,108,23,0,0,110,23,0,0,110,23,0,0,112,23,0,0,114,23,0,0,116,23,0,0,118,23,0,0,118,23,0,0,118,23,0,0,118,23,0,0,120,23,0,0,120,23,0,0,120,23,0,0,124,23,0,0,124,23,0,0,124,23,0,0,126,23,0,0,126,23,0,0,126,23,0,0,126,23,0,0,126,23,0,0,126,23,0,0,128,23,0,0,130,23,0,0,130,23,0,0,130,23,0,0,130,23,0,0,132,23,0,0,132,23,0,0,134,23,0,0,134,23,0,0,134,23,0,0,134,23,0,0,136,23,0,0,140,23,0,0,140,23,0,0,140,23,0,0,140,23,0,0,142,23,0,0,144,23,0,0,144,23,0,0,146,23,0,0,146,23,0,0,146,23,0,0,146,23,0,0,148,23,0,0,148,23,0,0,150,23,0,0,152,23,0,0,154,23,0,0,158,23,0,0,162,23,0,0,164,23,0,0,166,23,0,0,166,23,0,0,166,23,0,0,168,23,0,0,168,23,0,0,170,23,0,0,170,23,0,0,174,23,0,0,174,23,0,0,176,23,0,0,176,23,0,0,176,23,0,0,180,23,0,0,180,23,0,0,180,23,0,0,184,23,0,0,184,23,0,0,186,23,0,0,188,23,0,0,188,23,0,0,188,23,0,0,188,23,0,0,188,23,0,0,188,23,0,0,188,23,0,0,192,23,0,0,196,23,0,0,196,23,0,0,196,23,0,0,198,23,0,0,198,23,0,0,198,23,0,0,198,23,0,0,198,23,0,0,202,23,0,0,202,23,0,0,202,23,0,0,202,23,0,0,204,23,0,0,206,23,0,0,206,23,0,0,206,23,0,0,208,23,0,0,208,23,0,0,208,23,0,0,208,23,0,0,212,23,0,0,214,23,0,0,216,23,0,0,216,23,0,0,222,23,0,0,224,23,0,0,224,23,0,0,226,23,0,0,228,23,0,0,232,23,0,0,232,23,0,0,232,23,0,0,232,23,0,0,234,23,0,0,234,23,0,0,236,23,0,0,236,23,0,0,236,23,0,0,240,23,0,0,240,23,0,0,240,23,0,0,244,23,0,0,244,23,0,0,244,23,0,0,244,23,0,0,244,23,0,0,246,23,0,0,246,23,0,0,248,23,0,0,250,23,0,0,252,23,0,0,252,23,0,0,252,23,0,0,252,23,0,0,252,23,0,0,254,23,0,0,254,23,0,0,2,24,0,0,4,24,0,0,4,24,0,0,4,24,0,0,6,24,0,0,6,24,0,0,8,24,0,0,8,24,0,0,10,24,0,0,10,24,0,0,10,24,0,0,12,24,0,0,12,24,0,0,18,24,0,0,20,24,0,0,20,24,0,0,24,24,0,0,30,24,0,0,30,24,0,0,34,24,0,0,34,24,0,0,34,24,0,0,36,24,0,0,38,24,0,0,38,24,0,0,38,24,0,0,38,24,0,0,38,24,0,0,40,24,0,0,42,24,0,0,44,24,0,0,44,24,0,0,44,24,0,0,44,24,0,0,46,24,0,0,46,24,0,0,50,24,0,0,52,24,0,0,54,24,0,0,54,24,0,0,54,24,0,0,56,24,0,0,58,24,0,0,64,24,0,0,66,24,0,0,66,24,0,0,70,24,0,0,70,24,0,0,70,24,0,0,70,24,0,0,70,24,0,0,72,24,0,0,72,24,0,0,72,24,0,0,72,24,0,0,74,24,0,0,74,24,0,0,76,24,0,0,76,24,0,0,76,24,0,0,76,24,0,0,80,24,0,0,80,24,0,0,80,24,0,0,80,24,0,0,80,24,0,0,80,24,0,0,80,24,0,0,80,24,0,0,80,24,0,0,80,24,0,0,82,24,0,0,82,24,0,0,84,24,0,0,84,24,0,0,86,24,0,0,88,24,0,0,88,24,0,0,88,24,0,0,88,24,0,0,90,24,0,0,92,24,0,0,96,24,0,0,98,24,0,0,98,24,0,0,100,24,0,0,102,24,0,0,102,24,0,0,104,24,0,0,104,24,0,0,106,24,0,0,106,24,0,0,110,24,0,0,110,24,0,0,112,24,0,0,112,24,0,0,114,24,0,0,116,24,0,0,116,24,0,0,116,24,0,0,116,24,0,0,116,24,0,0,116,24,0,0,116,24,0,0,116,24,0,0,116,24,0,0,116,24,0,0,116,24,0,0,118,24,0,0,118,24,0,0,118,24,0,0,118,24,0,0,120,24,0,0,120,24,0,0,120,24,0,0,120,24,0,0,120,24,0,0,120,24,0,0,120,24,0,0,122,24,0,0,122,24,0,0,122,24,0,0,122,24,0,0,122,24,0,0,126,24,0,0,126,24,0,0,126,24,0,0,126,24,0,0,126,24,0,0,126,24,0,0,128,24,0,0,128,24,0,0,128,24,0,0,132,24,0,0,132,24,0,0,132,24,0,0,132,24,0,0,132,24,0,0,132,24,0,0,134,24,0,0,134,24,0,0,134,24,0,0,134,24,0,0,134,24,0,0,134,24,0,0,138,24,0,0,140,24,0,0,142,24,0,0,154,24,0,0,154,24,0,0,156,24,0,0,158,24,0,0,158,24,0,0,158,24,0,0,158,24,0,0,158,24,0,0,160,24,0,0,160,24,0,0,160,24,0,0,160,24,0,0,162,24,0,0,162,24,0,0,162,24,0,0,162,24,0,0,164,24,0,0,164,24,0,0,164,24,0,0,166,24,0,0,168,24,0,0,168,24,0,0,168,24,0,0,172,24,0,0,172,24,0,0,172,24,0,0,172,24,0,0,176,24,0,0,176,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,180,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,182,24,0,0,184,24,0,0,184,24,0,0,184,24,0,0,184,24,0,0,184,24,0,0,184,24,0,0,184,24,0,0,184,24,0,0,184,24,0,0,184,24,0,0,184,24,0,0,184,24,0,0,186,24,0,0,186,24,0,0,186,24,0,0,186,24,0,0,186,24,0,0,186,24,0,0,190,24,0,0,192,24,0,0,192,24,0,0,192,24,0,0,194,24,0,0,194,24,0,0,194,24,0,0,194,24,0,0,194,24,0,0,196,24,0,0,196,24,0,0,196,24,0,0,196,24,0,0,196,24,0,0,196,24,0,0,196,24,0,0,196,24,0,0,198,24,0,0,198,24,0,0,198,24,0,0,198,24,0,0,198,24,0,0,202,24,0,0,202,24,0,0,202,24,0,0,202,24,0,0,204,24,0,0,204,24,0,0,204,24,0,0,204,24,0,0,204,24,0,0,206,24,0,0,208,24,0,0,208,24,0,0,208,24,0,0,208,24,0,0,210,24,0,0,212,24,0,0,212,24,0,0,212,24,0,0,212,24,0,0,218,24,0,0,222,24,0,0,224,24,0,0,226,24,0,0,226,24,0,0,228,24,0,0,230,24,0,0,232,24,0,0,234,24,0,0,240,24,0,0,242,24,0,0,242,24,0,0,244,24,0,0,244,24,0,0,244,24,0,0,244,24,0,0,244,24,0,0,252,24,0,0,254,24,0,0,4,25,0,0,4,25,0,0,6,25,0,0,6,25,0,0,8,25,0,0,8,25,0,0,10,25,0,0,10,25,0,0,12,25,0,0,14,25,0,0,14,25,0,0,14,25,0,0,14,25,0,0,14,25,0,0,16,25,0,0,16,25,0,0,16,25,0,0,18,25,0,0,22,25,0,0,22,25,0,0,24,25,0,0,24,25,0,0,24,25,0,0,24,25,0,0,24,25,0,0,24,25,0,0,24,25,0,0,24,25,0,0,26,25,0,0,26,25,0,0,26,25,0,0,26,25,0,0,26,25,0,0,28,25,0,0,30,25,0,0,30,25,0,0,32,25,0,0,34,25,0,0,34,25,0,0,34,25,0,0,34,25,0,0,38,25,0,0,38,25,0,0,42,25,0,0,44,25,0,0,44,25,0,0,46,25,0,0,46,25,0,0,48,25,0,0,48,25,0,0,48,25,0,0,54,25,0,0,54,25,0,0,54,25,0,0,56,25,0,0,56,25,0,0,58,25,0,0,58,25,0,0,58,25,0,0,58,25,0,0,58,25,0,0,58,25,0,0,58,25,0,0,60,25,0,0,60,25,0,0,60,25,0,0,60,25,0,0,60,25,0,0,62,25,0,0,62,25,0,0,62,25,0,0,62,25,0,0,64,25,0,0,66,25,0,0,66,25,0,0,66,25,0,0,66,25,0,0,68,25,0,0,68,25,0,0,68,25,0,0,68,25,0,0,68,25,0,0,70,25,0,0,72,25,0,0,74,25,0,0,74,25,0,0,74,25,0,0,74,25,0,0,78,25,0,0,78,25,0,0,78,25,0,0,80,25,0,0,80,25,0,0,80,25,0,0,82,25,0,0,84,25,0,0,84,25,0,0,84,25,0,0,86,25,0,0,86,25,0,0,88,25,0,0,88,25,0,0,88,25,0,0,88,25,0,0,88,25,0,0,88,25,0,0,88,25,0,0,88,25,0,0,90,25,0,0,92,25,0,0,94,25,0,0,94,25,0,0,94,25,0,0,96,25,0,0,96,25,0,0,98,25,0,0,98,25,0,0,100,25,0,0,100,25,0,0,100,25,0,0,100,25,0,0,102,25,0,0,102,25,0,0,102,25,0,0,104,25,0,0,104,25,0,0,108,25,0,0,108,25,0,0,108,25,0,0,110,25,0,0,110,25,0,0,110,25,0,0,112,25,0,0,114,25,0,0,114,25,0,0,118,25,0,0,118,25,0,0,118,25,0,0,124,25,0,0,124,25,0,0,124,25,0,0,126,25,0,0,126,25,0,0,126,25,0,0,126,25,0,0,126,25,0,0,126,25,0,0,126,25,0,0,126,25,0,0,128,25,0,0,128,25,0,0,128,25,0,0,128,25,0,0,130,25,0,0,130,25,0,0,130,25,0,0,130,25,0,0,130,25,0,0,132,25,0,0,132,25,0,0,134,25,0,0,134,25,0,0,134,25,0,0,140,25,0,0,140,25,0,0,140,25,0,0,140,25,0,0,140,25,0,0,140,25,0,0,140,25,0,0,140,25,0,0,140,25,0,0,146,25,0,0,148,25,0,0,150,25,0,0,150,25,0,0,152,25,0,0,156,25,0,0,156,25,0,0,156,25,0,0,156,25,0,0,160,25,0,0,160,25,0,0,162,25,0,0,162,25,0,0,162,25,0,0,168,25,0,0,168,25,0,0,170,25,0,0,170,25,0,0,172,25,0,0,172,25,0,0,172,25,0,0,174,25,0,0,176,25,0,0,176,25,0,0,176,25,0,0,176,25,0,0,176,25,0,0,176,25,0,0,176,25,0,0,176,25,0,0,176,25,0,0,176,25,0,0,176,25,0,0,178,25,0,0,180,25,0,0,180,25,0,0,182,25,0,0,182,25,0,0,184,25,0,0,184,25,0,0,184,25,0,0,184,25,0,0,186,25,0,0,186,25,0,0,186,25,0,0,186,25,0,0,186,25,0,0,190,25,0,0,190,25,0,0,190,25,0,0,194,25,0,0,194,25,0,0,194,25,0,0,194,25,0,0,194,25,0,0,194,25,0,0,194,25,0,0,196,25,0,0,200,25,0,0,202,25,0,0,202,25,0,0,202,25,0,0,202,25,0,0,202,25,0,0,202,25,0,0,202,25,0,0,204,25,0,0,204,25,0,0,204,25,0,0,204,25,0,0,204,25,0,0,206,25,0,0,206,25,0,0,210,25,0,0,210,25,0,0,210,25,0,0,212,25,0,0,212,25,0,0,214,25,0,0,214,25,0,0,214,25,0,0,216,25,0,0,218,25,0,0,218,25,0,0,218,25,0,0,220,25,0,0,220,25,0,0,220,25,0,0,220,25,0,0,224,25,0,0,224,25,0,0,224,25,0,0,224,25,0,0,226,25,0,0,226,25,0,0,228,25,0,0,228,25,0,0,228,25,0,0,228,25,0,0,230,25,0,0,234,25,0,0,234,25,0,0,236,25,0,0,236,25,0,0,238,25,0,0,238,25,0,0,238,25,0,0,238,25,0,0,238,25,0,0,238,25,0,0,240,25,0,0,240,25,0,0,242,25,0,0,242,25,0,0,242,25,0,0,244,25,0,0,246,25,0,0,248,25,0,0,250,25,0,0,252,25,0,0,252,25,0,0,252,25,0,0,0,26,0,0,2,26,0,0,2,26,0,0,4,26,0,0,4,26,0,0,4,26,0,0,8,26,0,0,8,26,0,0,8,26,0,0,8,26,0,0,8,26,0,0,10,26,0,0,10,26,0,0,10,26,0,0,12,26,0,0,14,26,0,0,14,26,0,0,14,26,0,0,14,26,0,0,16,26,0,0,16,26,0,0,20,26,0,0,22,26,0,0,22,26,0,0,26,26,0,0,28,26,0,0,32,26,0,0,32,26,0,0,34,26,0,0,34,26,0,0,34,26,0,0,34,26,0,0,38,26,0,0,42,26,0,0,48,26,0,0,48,26,0,0,48,26,0,0,50,26,0,0,50,26,0,0,50,26,0,0,50,26,0,0,52,26,0,0,52,26,0,0,52,26,0,0,56,26,0,0,58,26,0,0,58,26,0,0,58,26,0,0,60,26,0,0,62,26,0,0,62,26,0,0,64,26,0,0,64,26,0,0,68,26,0,0,70,26,0,0,70,26,0,0,72,26,0,0,72,26,0,0,74,26,0,0,74,26,0,0,74,26,0,0,76,26,0,0,76,26,0,0,76,26,0,0,78,26,0,0,80,26,0,0,80,26,0,0,80,26,0,0,80,26,0,0,82,26,0,0,88,26,0,0,88,26,0,0,90,26,0,0,90,26,0,0,92,26,0,0,94,26,0,0,94,26,0,0,94,26,0,0,96,26,0,0,98,26,0,0,100,26,0,0,102,26,0,0,102,26,0,0,102,26,0,0,102,26,0,0,102,26,0,0,102,26,0,0,102,26,0,0,102,26,0,0,102,26,0,0,102,26,0,0,104,26,0,0,108,26,0,0,108,26,0,0,110,26,0,0,110,26,0,0,112,26,0,0,114,26,0,0,114,26,0,0,114,26,0,0,116,26,0,0,116,26,0,0,116,26,0,0,120,26,0,0,120,26,0,0,122,26,0,0,124,26,0,0,124,26,0,0,124,26,0,0,124,26,0,0,126,26,0,0,126,26,0,0,134,26,0,0,136,26,0,0,136,26,0,0,138,26,0,0,142,26,0,0,144,26,0,0,144,26,0,0,144,26,0,0,144,26,0,0,144,26,0,0,144,26,0,0,144,26,0,0,148,26,0,0,152,26,0,0,152,26,0,0,154,26,0,0,156,26,0,0,156,26,0,0,156,26,0,0,156,26,0,0,156,26,0,0,158,26,0,0,158,26,0,0,158,26,0,0,158,26,0,0,158,26,0,0,160,26,0,0,160,26,0,0,160,26,0,0,164,26,0,0,170,26,0,0,172,26,0,0,174,26,0,0,176,26,0,0,182,26,0,0,182,26,0,0,182,26,0,0,184,26,0,0,188,26,0,0,190,26,0,0,194,26,0,0,196,26,0,0,198,26,0,0,200,26,0,0,200,26,0,0,204,26,0,0,204,26,0,0,204,26,0,0,206,26,0,0,206,26,0,0,208,26,0,0,208,26,0,0,208,26,0,0,208,26,0,0,208,26,0,0,210,26,0,0,210,26,0,0,214,26,0,0,216,26,0,0,216,26,0,0,216,26,0,0,216,26,0,0,218,26,0,0,218,26,0,0,218,26,0,0,218,26,0,0,222,26,0,0,224,26,0,0,226,26,0,0,226,26,0,0,226,26,0,0,226,26,0,0,226,26,0,0,228,26,0,0,230,26,0,0,232,26,0,0,234,26,0,0,236,26,0,0,240,26,0,0,244,26,0,0,244,26,0,0,246,26,0,0,248,26,0,0,250,26,0,0,250,26,0,0,250,26,0,0,254,26,0,0,0,27,0,0,0,27,0,0,0,27,0,0,0,27,0,0,2,27,0,0,2,27,0,0,2,27,0,0,2,27,0,0,4,27,0,0,4,27,0,0,8,27,0,0,8,27,0,0,12,27,0,0,12,27,0,0,12,27,0,0,12,27,0,0,12,27,0,0,12,27,0,0,12,27,0,0,12,27,0,0,12,27,0,0,12,27,0,0,12,27,0,0,14,27,0,0,14,27,0,0,14,27,0,0,14,27,0,0,18,27,0,0,20,27,0,0,26,27,0,0,26,27,0,0,28,27,0,0,28,27,0,0,28,27,0,0,30,27,0,0,30,27,0,0,30,27,0,0,30,27,0,0,32,27,0,0,32,27,0,0,36,27,0,0,36,27,0,0,36,27,0,0,36,27,0,0,36,27,0,0,38,27,0,0,40,27,0,0,42,27,0,0,44,27,0,0,44,27,0,0,44,27,0,0,44,27,0,0,44,27,0,0,44,27,0,0,44,27,0,0,44,27,0,0,44,27,0,0,44,27,0,0,44,27,0,0,48,27,0,0,48,27,0,0,48,27,0,0,48,27,0,0,50,27,0,0,50,27,0,0,52,27,0,0,56,27,0,0,56,27,0,0,56,27,0,0,56,27,0,0,60,27,0,0,60,27,0,0,60,27,0,0,60,27,0,0,62,27,0,0,62,27,0,0,64,27,0,0,64,27,0,0,64,27,0,0,64,27,0,0,64,27,0,0,64,27,0,0,66,27,0,0,66,27,0,0,68,27,0,0,68,27,0,0,70,27,0,0,70,27,0,0,74,27,0,0,76,27,0,0,80,27,0,0,82,27,0,0,82,27,0,0,82,27,0,0,84,27,0,0,88,27,0,0,88,27,0,0,90,27,0,0,92,27,0,0,92,27,0,0,98,27,0,0,98,27,0,0,98,27,0,0,100,27,0,0,106,27,0,0,110,27,0,0,112,27,0,0,112,27,0,0,112,27,0,0,112,27,0,0,112,27,0,0,114,27,0,0,114,27,0,0,114,27,0,0,116,27,0,0,118,27,0,0,118,27,0,0,120,27,0,0,120,27,0,0,120,27,0,0,120,27,0,0,120,27,0,0,120,27,0,0,126,27,0,0,126,27,0,0,126,27,0,0,128,27,0,0,128,27,0,0,128,27,0,0,128,27,0,0,130,27,0,0,130,27,0,0,134,27,0,0,134,27,0,0,140,27,0,0,142,27,0,0,142,27,0,0,142,27,0,0,144,27,0,0,146,27,0,0,146,27,0,0,148,27,0,0,148,27,0,0,150,27,0,0,152,27,0,0,154,27,0,0,154,27,0,0,156,27,0,0,156,27,0,0,158,27,0,0,164,27,0,0,164,27,0,0,166,27,0,0,166,27,0,0,168,27,0,0,168,27,0,0,172,27,0,0,172,27,0,0,174,27,0,0,174,27,0,0,176,27,0,0,176,27,0,0,176,27,0,0,176,27,0,0,176,27,0,0,178,27,0,0,180,27,0,0,182,27,0,0,182,27,0,0,182,27,0,0,182,27,0,0,182,27,0,0,182,27,0,0,182,27,0,0,182,27,0,0,182,27,0,0,182,27,0,0,182,27,0,0,184,27,0,0,184,27,0,0,184,27,0,0,184,27,0,0,184,27,0,0,186,27,0,0,188,27,0,0,192,27,0,0,192,27,0,0,194,27,0,0,194,27,0,0,196,27,0,0,196,27,0,0,196,27,0,0,196,27,0,0,196,27,0,0,196,27,0,0,200,27,0,0,200,27,0,0,202,27,0,0,204,27,0,0,206,27,0,0,208,27,0,0,208,27,0,0,210,27,0,0,210,27,0,0,210,27,0,0,210,27,0,0,210,27,0,0,214,27,0,0,218,27,0,0,220,27,0,0,220,27,0,0,220,27,0,0,220,27,0,0,220,27,0,0,220,27,0,0,220,27,0,0,220,27,0,0,222,27,0,0,222,27,0,0,224,27,0,0,224,27,0,0,224,27,0,0,224,27,0,0,224,27,0,0,224,27,0,0,224,27,0,0,224,27,0,0,228,27,0,0,230,27,0,0,230,27,0,0,232,27,0,0,232,27,0,0,232,27,0,0,234,27,0,0,234,27,0,0,236,27,0,0,238,27,0,0,240,27,0,0,240,27,0,0,240,27,0,0,240,27,0,0,240,27,0,0,242,27,0,0,242,27,0,0,242,27,0,0,246,27,0,0,246,27,0,0,246,27,0,0,252,27,0,0,252,27,0,0,252,27,0,0,252,27,0,0,252,27,0,0,254,27,0,0,0,28,0,0,0,28,0,0,2,28,0,0,8,28,0,0,8,28,0,0,10,28,0,0,12,28,0,0,12,28,0,0,14,28,0,0,14,28,0,0,16,28,0,0,16,28,0,0,18,28,0,0,20,28,0,0,20,28,0,0,20,28,0,0,22,28,0,0,22,28,0,0,22,28,0,0,22,28,0,0,22,28,0,0,22,28,0,0,22,28,0,0,24,28,0,0,26,28,0,0,28,28,0,0,28,28,0,0,28,28,0,0,28,28,0,0,28,28,0,0,30,28,0,0,32,28,0,0,32,28,0,0,32,28,0,0,34,28,0,0,34,28,0,0,36,28,0,0,36,28,0,0,36,28,0,0,36,28,0,0,36,28,0,0,40,28,0,0,40,28,0,0,40,28,0,0,40,28,0,0,40,28,0,0,42,28,0,0,42,28,0,0,42,28,0,0,44,28,0,0,48,28,0,0,48,28,0,0,50,28,0,0,52,28,0,0,52,28,0,0,52,28,0,0,54,28,0,0,54,28,0,0,54,28,0,0,56,28,0,0,56,28,0,0,56,28,0,0,56,28,0,0,56,28,0,0,56,28,0,0,56,28,0,0,56,28,0,0,56,28,0,0,58,28,0,0,62,28,0,0,62,28,0,0,64,28,0,0,66,28,0,0,66,28,0,0,66,28,0,0,68,28,0,0,68,28,0,0,68,28,0,0,68,28,0,0,74,28,0,0,76,28,0,0,76,28,0,0,76,28,0,0,76,28,0,0,76,28,0,0,76,28,0,0,76,28,0,0,78,28,0,0,78,28,0,0,78,28,0,0,78,28,0,0,78,28,0,0,78,28,0,0,80,28,0,0,82,28,0,0,82,28,0,0,82,28,0,0,82,28,0,0,84,28,0,0,86,28,0,0,86,28,0,0,88,28,0,0,92,28,0,0,92,28,0,0,92,28,0,0,92,28,0,0,92,28,0,0,92,28,0,0,94,28,0,0,96,28,0,0,98,28,0,0,98,28,0,0,102,28,0,0,102,28,0,0,106,28,0,0,106,28,0,0,108,28,0,0,108,28,0,0,110,28,0,0,114,28,0,0,114,28,0,0,114,28,0,0,114,28,0,0,114,28,0,0,114,28,0,0,114,28,0,0,118,28,0,0,122,28,0,0,124,28,0,0,126,28,0,0,128,28,0,0,130,28,0,0,130,28,0,0,130,28,0,0,132,28,0,0,132,28,0,0,132,28,0,0,134,28,0,0,134,28,0,0,136,28,0,0,136,28,0,0,136,28,0,0,138,28,0,0,138,28,0,0,138,28,0,0,140,28,0,0,142,28,0,0,142,28,0,0,142,28,0,0,142,28,0,0,142,28,0,0,142,28,0,0,142,28,0,0,142,28,0,0,142,28,0,0,144,28,0,0,144,28,0,0,144,28,0,0,146,28,0,0,146,28,0,0,146,28,0,0,148,28,0,0,148,28,0,0,148,28,0,0,148,28,0,0,148,28,0,0,148,28,0,0,148,28,0,0,150,28,0,0,150,28,0,0,150,28,0,0,152,28,0,0,152,28,0,0,152,28,0,0,156,28,0,0,156,28,0,0,158,28,0,0,158,28,0,0,158,28,0,0,160,28,0,0,160,28,0,0,160,28,0,0,162,28,0,0,162,28,0,0,164,28,0,0,164,28,0,0,164,28,0,0,166,28,0,0,166,28,0,0,166,28,0,0,166,28,0,0,166,28,0,0,166,28,0,0,166,28,0,0,166,28,0,0,166,28,0,0,166,28,0,0,166,28,0,0,166,28,0,0,168,28,0,0,170,28,0,0,170,28,0,0,172,28,0,0,172,28,0,0,172,28,0,0,172,28,0,0,174,28,0,0,174,28,0,0,174,28,0,0,178,28,0,0,178,28,0,0,178,28,0,0,180,28,0,0,180,28,0,0,180,28,0,0,186,28,0,0,186,28,0,0,186,28,0,0,188,28,0,0,188,28,0,0,188,28,0,0,188,28,0,0,188,28,0,0,192,28,0,0,192,28,0,0,192,28,0,0,192,28,0,0,194,28,0,0,194,28,0,0,196,28,0,0,198,28,0,0,198,28,0,0,200,28,0,0,202,28,0,0,202,28,0,0,202,28,0,0,204,28,0,0,204,28,0,0,206,28,0,0,208,28,0,0,208,28,0,0,210,28,0,0,212,28,0,0,212,28,0,0,214,28,0,0,214,28,0,0,216,28,0,0,216,28,0,0,218,28,0,0,218,28,0,0,222,28,0,0,224,28,0,0,226,28,0,0,226,28,0,0,228,28,0,0,230,28,0,0,232,28,0,0,234,28,0,0,234,28,0,0,234,28,0,0,236,28,0,0,236,28,0,0,236,28,0,0,236,28,0,0,236,28,0,0,238,28,0,0,238,28,0,0,238,28,0,0,240,28,0,0,240,28,0,0,242,28,0,0,242,28,0,0,244,28,0,0,248,28,0,0,248,28,0,0,250,28,0,0,250,28,0,0,250,28,0,0,250,28,0,0,252,28,0,0,254,28,0,0,254,28,0,0,0,29,0,0,2,29,0,0,4,29,0,0,4,29,0,0,6,29,0,0,8,29,0,0,8,29,0,0,8,29,0,0,8,29,0,0,8,29,0,0,12,29,0,0,12,29,0,0,14,29,0,0,14,29,0,0,16,29,0,0,16,29,0,0,16,29,0,0,16,29,0,0,16,29,0,0,16,29,0,0,18,29,0,0,18,29,0,0,18,29,0,0,18,29,0,0,18,29,0,0,20,29,0,0,20,29,0,0,24,29,0,0,24,29,0,0,24,29,0,0,24,29,0,0,24,29,0,0,28,29,0,0,28,29,0,0,28,29,0,0,28,29,0,0,30,29,0,0,30,29,0,0,30,29,0,0,32,29,0,0,32,29,0,0,32,29,0,0,34,29,0,0,34,29,0,0,36,29,0,0,38,29,0,0,38,29,0,0,40,29,0,0,40,29,0,0,40,29,0,0,40,29,0,0,42,29,0,0,42,29,0,0,42,29,0,0,42,29,0,0,44,29,0,0,44,29,0,0,44,29,0,0,46,29,0,0,48,29,0,0,54,29,0,0,54,29,0,0,58,29,0,0,58,29,0,0,58,29,0,0,58,29,0,0,58,29,0,0,60,29,0,0,62,29,0,0,68,29,0,0,68,29,0,0,68,29,0,0,68,29,0,0,68,29,0,0,70,29,0,0,72,29,0,0,72,29,0,0,72,29,0,0,74,29,0,0,74,29,0,0,74,29,0,0,74,29,0,0,74,29,0,0,74,29,0,0,74,29,0,0,74,29,0,0,74,29,0,0,74,29,0,0,80,29,0,0,80,29,0,0,82,29,0,0,82,29,0,0,84,29,0,0,86,29,0,0,88,29,0,0,90,29,0,0,90,29,0,0,90,29,0,0,90,29,0,0,90,29,0,0,94,29,0,0,94,29,0,0,94,29,0,0,96,29,0,0,96,29,0,0,96,29,0,0,96,29,0,0,96,29,0,0,98,29,0,0,98,29,0,0,98,29,0,0,98,29,0,0,98,29,0,0,98,29,0,0,98,29,0,0,98,29,0,0,98,29,0,0,98,29,0,0,100,29,0,0,102,29,0,0,102,29,0,0,102,29,0,0,102,29,0,0,102,29,0,0,106,29,0,0,108,29,0,0,108,29,0,0,108,29,0,0,108,29,0,0,108,29,0,0,108,29,0,0,108,29,0,0,110,29,0,0,110,29,0,0,110,29,0,0,110,29,0,0,110,29,0,0,110,29,0,0,110,29,0,0,112,29,0,0,114,29,0,0,114,29,0,0,114,29,0,0,114,29,0,0,116,29,0,0,116,29,0,0,116,29,0,0,118,29,0,0,118,29,0,0,118,29,0,0,118,29,0,0,120,29,0,0,120,29,0,0,120,29,0,0,122,29,0,0,122,29,0,0,122,29,0,0,126,29,0,0,128,29,0,0,128,29,0,0,128,29,0,0,132,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,134,29,0,0,138,29,0,0,138,29,0,0,138,29,0,0,138,29,0,0,138,29,0,0,138,29,0,0,138,29,0,0,138,29,0,0,138,29,0,0,138,29,0,0,140,29,0,0,140,29,0,0,140,29,0,0,144,29,0,0,144,29,0,0,146,29,0,0,148,29,0,0,148,29,0,0,148,29,0,0,148,29,0,0,150,29,0,0,154,29,0,0,154,29,0,0,158,29,0,0,160,29,0,0,160,29,0,0,160,29,0,0,160,29,0,0,160,29,0,0,162,29,0,0,162,29,0,0,162,29,0,0,162,29,0,0,162,29,0,0,162,29,0,0,164,29,0,0,168,29,0,0,168,29,0,0,168,29,0,0,168,29,0,0,168,29,0,0,168,29,0,0,168,29,0,0,168,29,0,0,170,29,0,0,172,29,0,0,176,29,0,0,178,29,0,0,178,29,0,0,180,29,0,0,180,29,0,0,184,29,0,0,186,29,0,0,188,29,0,0,190,29,0,0,192,29,0,0,194,29,0,0,196,29,0,0,196,29,0,0,198,29,0,0,200,29,0,0,200,29,0,0,200,29,0,0,200,29,0,0,200,29,0,0,200,29,0,0,200,29,0,0,204,29,0,0,206,29,0,0,206,29,0,0,206,29,0,0,208,29,0,0,208,29,0,0,208,29,0,0,212,29,0,0,212,29,0,0,212,29,0,0,212,29,0,0,212,29,0,0,214,29,0,0,214,29,0,0,214,29,0,0,216,29,0,0,216,29,0,0,216,29,0,0,216,29,0,0,216,29,0,0,218,29,0,0,218,29,0,0,226,29,0,0,228,29,0,0,228,29,0,0,228,29,0,0,228,29,0,0,228,29,0,0,230,29,0,0,230,29,0,0,230,29,0,0,230,29,0,0,230,29,0,0,230,29,0,0,230,29,0,0,230,29,0,0,234,29,0,0,234,29,0,0,238,29,0,0,238,29,0,0,238,29,0,0,240,29,0,0,240,29,0,0,240,29,0,0,242,29,0,0,244,29,0,0,244,29,0,0,244,29,0,0,246,29,0,0,250,29,0,0,250,29,0,0,252,29,0,0,254,29,0,0,254,29,0,0,254,29,0,0,4,30,0,0,6,30,0,0,8,30,0,0,10,30,0,0,12,30,0,0,12,30,0,0,12,30,0,0,12,30,0,0,12,30,0,0,12,30,0,0,12,30,0,0,14,30,0,0,16,30,0,0,16,30,0,0,18,30,0,0,18,30,0,0,18,30,0,0,20,30,0,0,20,30,0,0,20,30,0,0,22,30,0,0,22,30,0,0,24,30,0,0,26,30,0,0,26,30,0,0,26,30,0,0,28,30,0,0,30,30,0,0,30,30,0,0,32,30,0,0,32,30,0,0,32,30,0,0,32,30,0,0,32,30,0,0,32,30,0,0,32,30,0,0,36,30,0,0,36,30,0,0,38,30,0,0,38,30,0,0,42,30,0,0,42,30,0,0,44,30,0,0,44,30,0,0,44,30,0,0,44,30,0,0,46,30,0,0,48,30,0,0,52,30,0,0,52,30,0,0,54,30,0,0,54,30,0,0,54,30,0,0,54,30,0,0,54,30,0,0,54,30,0,0,56,30,0,0,58,30,0,0,58,30,0,0,58,30,0,0,60,30,0,0,60,30,0,0,60,30,0,0,60,30,0,0,60,30,0,0,60,30,0,0,62,30,0,0,66,30,0,0,66,30,0,0,68,30,0,0,70,30,0,0,72,30,0,0,72,30,0,0,74,30,0,0,74,30,0,0,74,30,0,0,74,30,0,0,76,30,0,0,76,30,0,0,78,30,0,0,84,30,0,0,84,30,0,0,88,30,0,0,88,30,0,0,88,30,0,0,90,30,0,0,94,30,0,0,94,30,0,0,94,30,0,0,96,30,0,0,96,30,0,0,96,30,0,0,96,30,0,0,96,30,0,0,98,30,0,0,100,30,0,0,100,30,0,0,100,30,0,0,100,30,0,0,100,30,0,0,100,30,0,0,100,30,0,0,100,30,0,0,102,30,0,0,102,30,0,0,102,30,0,0,104,30,0,0,106,30,0,0,106,30,0,0,106,30,0,0,106,30,0,0,108,30,0,0,110,30,0,0,110,30,0,0,110,30,0,0,110,30,0,0,112,30,0,0,112,30,0,0,112,30,0,0,112,30,0,0,114,30,0,0,114,30,0,0,116,30,0,0,116,30,0,0,116,30,0,0,118,30,0,0,120,30,0,0,120,30,0,0,120,30,0,0,122,30,0,0,122,30,0,0,124,30,0,0,124,30,0,0,126,30,0,0,128,30,0,0,128,30,0,0,130,30,0,0,130,30,0,0,130,30,0,0,132,30,0,0,134,30,0,0,136,30,0,0,136,30,0,0,136,30,0,0,136,30,0,0,136,30,0,0,138,30,0,0,138,30,0,0,138,30,0,0,140,30,0,0,142,30,0,0,142,30,0,0,148,30,0,0,148,30,0,0,148,30,0,0,148,30,0,0,148,30,0,0,150,30,0,0,150,30,0,0,150,30,0,0,152,30,0,0,156,30,0,0,158,30,0,0,162,30,0,0,164,30,0,0,164,30,0,0,168,30,0,0,170,30,0,0,170,30,0,0,174,30,0,0,176,30,0,0,178,30,0,0,178,30,0,0,180,30,0,0,184,30,0,0,188,30,0,0,190,30,0,0,190,30,0,0,190,30,0,0,196,30,0,0,196,30,0,0,196,30,0,0,198,30,0,0,198,30,0,0,200,30,0,0,200,30,0,0,200,30,0,0,202,30,0,0,204,30,0,0,208,30,0,0,208,30,0,0,208,30,0,0,208,30,0,0,210,30,0,0,212,30,0,0,216,30,0,0,218,30,0,0,220,30,0,0,220,30,0,0,222,30,0,0,224,30,0,0,224,30,0,0,224,30,0,0,224,30,0,0,224,30,0,0,224,30,0,0,224,30,0,0,224,30,0,0,224,30,0,0,224,30,0,0,226,30,0,0,228,30,0,0,232,30,0,0,234,30,0,0,234,30,0,0,236,30,0,0,238,30,0,0,240,30,0,0,240,30,0,0,240,30,0,0,242,30,0,0,246,30,0,0,246,30,0,0,246,30,0,0,248,30,0,0,248,30,0,0,248,30,0,0,248,30,0,0,248,30,0,0,248,30,0,0,248,30,0,0,248,30,0,0,248,30,0,0,250,30,0,0,252,30,0,0,254,30,0,0,254,30,0,0,254,30,0,0,254,30,0,0,2,31,0,0,2,31,0,0,2,31,0,0,2,31,0,0,2,31,0,0,8,31,0,0,8,31,0,0,8,31,0,0,8,31,0,0,8,31,0,0,8,31,0,0,8,31,0,0,8,31,0,0,8,31,0,0,10,31,0,0,10,31,0,0,10,31,0,0,10,31,0,0,10,31,0,0,14,31,0,0,16,31,0,0,16,31,0,0,18,31,0,0,20,31,0,0,20,31,0,0,20,31,0,0,20,31,0,0,20,31,0,0,20,31,0,0,22,31,0,0,24,31,0,0,24,31,0,0,26,31,0,0,26,31,0,0,26,31,0,0,26,31,0,0,28,31,0,0,28,31,0,0,30,31,0,0,36,31,0,0,36,31,0,0,38,31,0,0,38,31,0,0,38,31,0,0,38,31,0,0,38,31,0,0,38,31,0,0,44,31,0,0,44,31,0,0,44,31,0,0,48,31,0,0,48,31,0,0,50,31,0,0,50,31,0,0,50,31,0,0,50,31,0,0,52,31,0,0,52,31,0,0,52,31,0,0,54,31,0,0,54,31,0,0,54,31,0,0,54,31,0,0,54,31,0,0,54,31,0,0,54,31,0,0,56,31,0,0,56,31,0,0,58,31,0,0,58,31,0,0,58,31,0,0,58,31,0,0,62,31,0,0,62,31,0,0,64,31,0,0,66,31,0,0,66,31,0,0,66,31,0,0,70,31,0,0,70,31,0,0,74,31,0,0,74,31,0,0,74,31,0,0,74,31,0,0,74,31,0,0,74,31,0,0,74,31,0,0,74,31,0,0,74,31,0,0,74,31,0,0,74,31,0,0,78,31,0,0,80,31,0,0,80,31,0,0,82,31,0,0,86,31,0,0,86,31,0,0,86,31,0,0,88,31,0,0,88,31,0,0,88,31,0,0,88,31,0,0,88,31,0,0,88,31,0,0,88,31,0,0,88,31,0,0,90,31,0,0,94,31,0,0,98,31,0,0,98,31,0,0,98,31,0,0,98,31,0,0,100,31,0,0,100,31,0,0,100,31,0,0,100,31,0,0,100,31,0,0,100,31,0,0,100,31,0,0,100,31,0,0,102,31,0,0,102,31,0,0,104,31,0,0,104,31,0,0,108,31,0,0,110,31,0,0,110,31,0,0,114,31,0,0,118,31,0,0,122,31,0,0,124,31,0,0,128,31,0,0,128,31,0,0,128,31,0,0,130,31,0,0,130,31,0,0,130,31,0,0,134,31,0,0,134,31,0,0,136,31,0,0,136,31,0,0,138,31,0,0,140,31,0,0,140,31,0,0,142,31,0,0,142,31,0,0,146,31,0,0,148,31,0,0,148,31,0,0,152,31,0,0,152,31,0,0,152,31,0,0,154,31,0,0,158,31,0,0,158,31,0,0,158,31,0,0,158,31,0,0,158,31,0,0,160,31,0,0,160,31,0,0,160,31,0,0,160,31,0,0,160,31,0,0,160,31,0,0,160,31,0,0,162,31,0,0,162,31,0,0,162,31,0,0,162,31,0,0,162,31,0,0,162,31,0,0,164,31,0,0,166,31,0,0,168,31,0,0,168,31,0,0,168,31,0,0,170,31,0,0,172,31,0,0,172,31,0,0,172,31,0,0,174,31,0,0,176,31,0,0,176,31,0,0,178,31,0,0,178,31,0,0,180,31,0,0,180,31,0,0,180,31,0,0,180,31,0,0,182,31,0,0,184,31,0,0,186,31,0,0,188,31,0,0,190,31,0,0,190,31,0,0,190,31,0,0,192,31,0,0,192,31,0,0,196,31,0,0,196,31,0,0,196,31,0,0,196,31,0,0,198,31,0,0,200,31,0,0,202,31,0,0,202,31,0,0,202,31,0,0,202,31,0,0,204,31,0,0,208,31,0,0,208,31,0,0,212,31,0,0,212,31,0,0,212,31,0,0,214,31,0,0,214,31,0,0,214,31,0,0,216,31,0,0,218,31,0,0,220,31,0,0,220,31,0,0,220,31,0,0,220,31,0,0,222,31,0,0,222,31,0,0,222,31,0,0,222,31,0,0,224,31,0,0,226,31,0,0,226,31,0,0,228,31,0,0,228,31,0,0,228,31,0,0,230,31,0,0,230,31,0,0,238,31,0,0,238,31,0,0,240,31,0,0,240,31,0,0,240,31,0,0,244,31,0,0,244,31,0,0,244,31,0,0,246,31,0,0,246,31,0,0,246,31,0,0,246,31,0,0,250,31,0,0,250,31,0,0,250,31,0,0,250,31,0,0,250,31,0,0,254,31,0,0,0,32,0,0,0,32,0,0,0,32,0,0,2,32,0,0,2,32,0,0,2,32,0,0,2,32,0,0,2,32,0,0,4,32,0,0,4,32,0,0,6,32,0,0,6,32,0,0,6,32,0,0,8,32,0,0,10,32,0,0,12,32,0,0,12,32,0,0,14,32,0,0,14,32,0,0,16,32,0,0,16,32,0,0,16,32,0,0,16,32,0,0,18,32,0,0,18,32,0,0,18,32,0,0,18,32,0,0,18,32,0,0,20,32,0,0,22,32,0,0,24,32,0,0,26,32,0,0,26,32,0,0,26,32,0,0,30,32,0,0,30,32,0,0,30,32,0,0,32,32,0,0,32,32,0,0,32,32,0,0,34,32,0,0,34,32,0,0,34,32,0,0,36,32,0,0,36,32,0,0,36,32,0,0,38,32,0,0,38,32,0,0,38,32,0,0,38,32,0,0,38,32,0,0,38,32,0,0,42,32,0,0,50,32,0,0,52,32,0,0,52,32,0,0,52,32,0,0,54,32,0,0,54,32,0,0,54,32,0,0,54,32,0,0,56,32,0,0,56,32,0,0,56,32,0,0,58,32,0,0,62,32,0,0,62,32,0,0,62,32,0,0,64,32,0,0,64,32,0,0,64,32,0,0,68,32,0,0,70,32,0,0,70,32,0,0,70,32,0,0,70,32,0,0,70,32,0,0,70,32,0,0,72,32,0,0,74,32,0,0,74,32,0,0,76,32,0,0,76,32,0,0,80,32,0,0,84,32,0,0,88,32,0,0,88,32,0,0,88,32,0,0,88,32,0,0,92,32,0,0,94,32,0,0,94,32,0,0,96,32,0,0,96,32,0,0,98,32,0,0,98,32,0,0,100,32,0,0,100,32,0,0,100,32,0,0,100,32,0,0,100,32,0,0,102,32,0,0,102,32,0,0,102,32,0,0,102,32,0,0,102,32,0,0,102,32,0,0,102,32,0,0,104,32,0,0,104,32,0,0,108,32,0,0,108,32,0,0,108,32,0,0,112,32,0,0,114,32,0,0,116,32,0,0,116,32,0,0,118,32,0,0,118,32,0,0,120,32,0,0,122,32,0,0,122,32,0,0,122,32,0,0,122,32,0,0,124,32,0,0,124,32,0,0,124,32,0,0,124,32,0,0,126,32,0,0,126,32,0,0,128,32,0,0,128,32,0,0,128,32,0,0,128,32,0,0,130,32,0,0,130,32,0,0,130,32,0,0,130,32,0,0,130,32,0,0,130,32,0,0,130,32,0,0,132,32,0,0,134,32,0,0,138,32,0,0,138,32,0,0,140,32,0,0,142,32,0,0,142,32,0,0,144,32,0,0,144,32,0,0,146,32,0,0,146,32,0,0,146,32,0,0,146,32,0,0,150,32,0,0,150,32,0,0,150,32,0,0,152,32,0,0,152,32,0,0,152,32,0,0,152,32,0,0,152,32,0,0,154,32,0,0,156,32,0,0,156,32,0,0,156,32,0,0,158,32,0,0,160,32,0,0,160,32,0,0,164,32,0,0,166,32,0,0,166,32,0,0,168,32,0,0,168,32,0,0,168,32,0,0,168,32,0,0,172,32,0,0,172,32,0,0,172,32,0,0,174,32,0,0,174,32,0,0,174,32,0,0,174,32,0,0,174,32,0,0,174,32,0,0,176,32,0,0,178,32,0,0,180,32,0,0,180,32,0,0,182,32,0,0,184,32,0,0,186,32,0,0,188,32,0,0,188,32,0,0,190,32,0,0,196,32,0,0,196,32,0,0,198,32,0,0,198,32,0,0,198,32,0,0,198,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,200,32,0,0,202,32,0,0,202,32,0,0,202,32,0,0,204,32,0,0,204,32,0,0,208,32,0,0,210,32,0,0,212,32,0,0,212,32,0,0,212,32,0,0,212,32,0,0,216,32,0,0,218,32,0,0,222,32,0,0,222,32,0,0,224,32,0,0,224,32,0,0,224,32,0,0,226,32,0,0,230,32,0,0,230,32,0,0,230,32,0,0,232,32,0,0,234,32,0,0,234,32,0,0,236,32,0,0,236,32,0,0,238,32,0,0,240,32,0,0,240,32,0,0,240,32,0,0,240,32,0,0,244,32,0,0,244,32,0,0,244,32,0,0,246,32,0,0,248,32,0,0,248,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,252,32,0,0,254,32,0,0,0,33,0,0,0,33,0,0,0,33,0,0,0,33,0,0,0,33,0,0,0,33,0,0,0,33,0,0,2,33,0,0,2,33,0,0,2,33,0,0,4,33,0,0,4,33,0,0,4,33,0,0,6,33,0,0,8,33,0,0,12,33,0,0,12,33,0,0,12,33,0,0,12,33,0,0,14,33,0,0,14,33,0,0,16,33,0,0,18,33,0,0,18,33,0,0,18,33,0,0,18,33,0,0,18,33,0,0,18,33,0,0,20,33,0,0,20,33,0,0,20,33,0,0,20,33,0,0,22,33,0,0,22,33,0,0,24,33,0,0,24,33,0,0,24,33,0,0,24,33,0,0,24,33,0,0,24,33,0,0,24,33,0,0,26,33,0,0,28,33,0,0,28,33,0,0,30,33,0,0,30,33,0,0,30,33,0,0,30,33,0,0,32,33,0,0,36,33,0,0,36,33,0,0,36,33,0,0,40,33,0,0,44,33,0,0,48,33,0,0,48,33,0,0,50,33,0,0,52,33,0,0,52,33,0,0,52,33,0,0,54,33,0,0,56,33,0,0,56,33,0,0,56,33,0,0,58,33,0,0,62,33,0,0,64,33,0,0,66,33,0,0,66,33,0,0,68,33,0,0,68,33,0,0,70,33,0,0,72,33,0,0,74,33,0,0,76,33,0,0,78,33,0,0,80,33,0,0,80,33,0,0,80,33,0,0,82,33,0,0,84,33,0,0,86,33,0,0,90,33,0,0,92,33,0,0,92,33,0,0,92,33,0,0,92,33,0,0,92,33,0,0,92,33,0,0,92,33,0,0,94,33,0,0,94,33,0,0,94,33,0,0,94,33,0,0,94,33,0,0,94,33,0,0,96,33,0,0,102,33,0,0,102,33,0,0,104,33,0,0,106,33,0,0,106,33,0,0,108,33,0,0,108,33,0,0,108,33,0,0,110,33,0,0,114,33,0,0,114,33,0,0,114,33,0,0,114,33,0,0,114,33,0,0,114,33,0,0,116,33,0,0,116,33,0,0,118,33,0,0,118,33,0,0,118,33,0,0,120,33,0,0,120,33,0,0,120,33,0,0,120,33,0,0,120,33,0,0,120,33,0,0,120,33,0,0,120,33,0,0,120,33,0,0,122,33,0,0,122,33,0,0,122,33,0,0,122,33,0,0,122,33,0,0,124,33,0,0,124,33,0,0,124,33,0,0,124,33,0,0,124,33,0,0,126,33,0,0,126,33,0,0,126,33,0,0,128,33,0,0,130,33,0,0,132,33,0,0,132,33,0,0,132,33,0,0,132,33,0,0,134,33,0,0,134,33,0,0,136,33,0,0,138,33,0,0,138,33,0,0,138,33,0,0,140,33,0,0,144,33,0,0,144,33,0,0,144,33,0,0,146,33,0,0,146,33,0,0,148,33,0,0,150,33,0,0,154,33,0,0,154,33,0,0,156,33,0,0,158,33,0,0,160,33,0,0,160,33,0,0,160,33,0,0,160,33,0,0,164,33,0,0,166,33,0,0,170,33,0,0,172,33,0,0,172,33,0,0,176,33,0,0,178,33,0,0,178,33,0,0,178,33,0,0,182,33,0,0,182,33,0,0,186,33,0,0,188,33,0,0,190,33,0,0,192,33,0,0,192,33,0,0,194,33,0,0,194,33,0,0,194,33,0,0,194,33,0,0,194,33,0,0,194,33,0,0,196,33,0,0,196,33,0,0,198,33,0,0,198,33,0,0,198,33,0,0,198,33,0,0,198,33,0,0,198,33,0,0,200,33,0,0,200,33,0,0,200,33,0,0,200,33,0,0,200,33,0,0,200,33,0,0,202,33,0,0,202,33,0,0,204,33,0,0,204,33,0,0,204,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,212,33,0,0,214,33,0,0,214,33,0,0,216,33,0,0,216,33,0,0,218,33,0,0,218,33,0,0,218,33,0,0,218,33,0,0,222,33,0,0,222,33,0,0,222,33,0,0,222,33,0,0,222,33,0,0,224,33,0,0,226,33,0,0,226,33,0,0,228,33,0,0,228,33,0,0,232,33,0,0,232,33,0,0,232,33,0,0,232,33,0,0,232,33,0,0,234,33,0,0,234,33,0,0,236,33,0,0,236,33,0,0,236,33,0,0,236,33,0,0,238,33,0,0,238,33,0,0,238,33,0,0,240,33,0,0,242,33,0,0,246,33,0,0,246,33,0,0,246,33,0,0,248,33,0,0,248,33,0,0,248,33,0,0,248,33,0,0,248,33,0,0,248,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,250,33,0,0,252,33,0,0,252,33,0,0,252,33,0,0,252,33,0,0,252,33,0,0,254,33,0,0,0,34,0,0,0,34,0,0,2,34,0,0,2,34,0,0,4,34,0,0,4,34,0,0,4,34,0,0,4,34,0,0,4,34,0,0,4,34,0,0,4,34,0,0,8,34,0,0,10,34,0,0,14,34,0,0,16,34,0,0,16,34,0,0,16,34,0,0,16,34,0,0,18,34,0,0,18,34,0,0,20,34,0,0,20,34,0,0,20,34,0,0,20,34,0,0,20,34,0,0,24,34,0,0,24,34,0,0,24,34,0,0,28,34,0,0,28,34,0,0,30,34,0,0,30,34,0,0,30,34,0,0,30,34,0,0,32,34,0,0,32,34,0,0,32,34,0,0,32,34,0,0,36,34,0,0,36,34,0,0,38,34,0,0,38,34,0,0,38,34,0,0,40,34,0,0,40,34,0,0,42,34,0,0,44,34,0,0,44,34,0,0,48,34,0,0,50,34,0,0,52,34,0,0,54,34,0,0,58,34,0,0,60,34,0,0,62,34,0,0,62,34,0,0,62,34,0,0,62,34,0,0,64,34,0,0,64,34,0,0,66,34,0,0,66,34,0,0,66,34,0,0,68,34,0,0,68,34,0,0,70,34,0,0,70,34,0,0,70,34,0,0,70,34,0,0,70,34,0,0,70,34,0,0,70,34,0,0,70,34,0,0,72,34,0,0,72,34,0,0,72,34,0,0,72,34,0,0,72,34,0,0,72,34,0,0,82,34,0,0,84,34,0,0,84,34,0,0,84,34,0,0,84,34,0,0,86,34,0,0,86,34,0,0,86,34,0,0,88,34,0,0,92,34,0,0,92,34,0,0,94,34,0,0,94,34,0,0,98,34,0,0,100,34,0,0,102,34,0,0,102,34,0,0,102,34,0,0,102,34,0,0,106,34,0,0,106,34,0,0,106,34,0,0,106,34,0,0,106,34,0,0,106,34,0,0,106,34,0,0,108,34,0,0,108,34,0,0,108,34,0,0,108,34,0,0,108,34,0,0,108,34,0,0,108,34,0,0,108,34,0,0,108,34,0,0,112,34,0,0,112,34,0,0,112,34,0,0,114,34,0,0,116,34,0,0,116,34,0,0,118,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,120,34,0,0,126,34,0,0,126,34,0,0,130,34,0,0,130,34,0,0,130,34,0,0,132,34,0,0,132,34,0,0,132,34,0,0,132,34,0,0,132,34,0,0,134,34,0,0,134,34,0,0,134,34,0,0,134,34,0,0,134,34,0,0,136,34,0,0,140,34,0,0,144,34,0,0,144,34,0,0,144,34,0,0,144,34,0,0,144,34,0,0,146,34,0,0,146,34,0,0,146,34,0,0,146,34,0,0,146,34,0,0,146,34,0,0,146,34,0,0,146,34,0,0,148,34,0,0,150,34,0,0,150,34,0,0,152,34,0,0,152,34,0,0,154,34,0,0,156,34,0,0,156,34,0,0,156,34,0,0,156,34,0,0,158,34,0,0,158,34,0,0,158,34,0,0,158,34,0,0,160,34,0,0,160,34,0,0,162,34,0,0,162,34,0,0,162,34,0,0,162,34,0,0,162,34,0,0,162,34,0,0,162,34,0,0,164,34,0,0,164,34,0,0,164,34,0,0,164,34,0,0,166,34,0,0,166,34,0,0,166,34,0,0,166,34,0,0,166,34,0,0,168,34,0,0,168,34,0,0,168,34,0,0,168,34,0,0,170,34,0,0,172,34,0,0,174,34,0,0,178,34,0,0,178,34,0,0,180,34,0,0,182,34,0,0,182,34,0,0,182,34,0,0,184,34,0,0,184,34,0,0,184,34,0,0,184,34,0,0,184,34,0,0,184,34,0,0,184,34,0,0,184,34,0,0,188,34,0,0,188,34,0,0,188,34,0,0,188,34,0,0,188,34,0,0,188,34,0,0,188,34,0,0,188,34,0,0,190,34,0,0,190,34,0,0,190,34,0,0,190,34,0,0,190,34,0,0,190,34,0,0,190,34,0,0,190,34,0,0,190,34,0,0,192,34,0,0,192,34,0,0,192,34,0,0,192,34,0,0,194,34,0,0,196,34,0,0,198,34,0,0,198,34,0,0,198,34,0,0,200,34,0,0,202,34,0,0,202,34,0,0,202,34,0,0,202,34,0,0,202,34,0,0,202,34,0,0,202,34,0,0,204,34,0,0,206,34,0,0,208,34,0,0,210,34,0,0,210,34,0,0,210,34,0,0,212,34,0,0,212,34,0,0,216,34,0,0,218,34,0,0,218,34,0,0,220,34,0,0,220,34,0,0,222,34,0,0,222,34,0,0,222,34,0,0,222,34,0,0,222,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,224,34,0,0,226,34,0,0,228,34,0,0,232,34,0,0,234,34,0,0,236,34,0,0,240,34,0,0,242,34,0,0,242,34,0,0,242,34,0,0,242,34,0,0,244,34,0,0,250,34,0,0,252,34,0,0,254,34,0,0,0,35,0,0,2,35,0,0,4,35,0,0,6,35,0,0,8,35,0,0,8,35,0,0,8,35,0,0,8,35,0,0,8,35,0,0,8,35,0,0,8,35,0,0,12,35,0,0,14,35,0,0,16,35,0,0,16,35,0,0,16,35,0,0,18,35,0,0,18,35,0,0,20,35,0,0,20,35,0,0,24,35,0,0,24,35,0,0,28,35,0,0,28,35,0,0,32,35,0,0,34,35,0,0,34,35,0,0,34,35,0,0,36,35,0,0,36,35,0,0,36,35,0,0,36,35,0,0,38,35,0,0,38,35,0,0,38,35,0,0,40,35,0,0,44,35,0,0,46,35,0,0,46,35,0,0,46,35,0,0,46,35,0,0,48,35,0,0,48,35,0,0,52,35,0,0,52,35,0,0,54,35,0,0,56,35,0,0,58,35,0,0,60,35,0,0,60,35,0,0,62,35,0,0,62,35,0,0,62,35,0,0,64,35,0,0,66,35,0,0,66,35,0,0,66,35,0,0,70,35,0,0,70,35,0,0,70,35,0,0,70,35,0,0,70,35,0,0,72,35,0,0,74,35,0,0,74,35,0,0,74,35,0,0,76,35,0,0,76,35,0,0,78,35,0,0,80,35,0,0,82,35,0,0,84,35,0,0,84,35,0,0,84,35,0,0,84,35,0,0,84,35,0,0,84,35,0,0,86,35,0,0,88,35,0,0,90,35,0,0,90,35,0,0,90,35,0,0,90,35,0,0,90,35,0,0,92,35,0,0,92,35,0,0,94,35,0,0,94,35,0,0,94,35,0,0,94,35,0,0,94,35,0,0,94,35,0,0,98,35,0,0,100,35,0,0,102,35,0,0,102,35,0,0,102,35,0,0,102,35,0,0,102,35,0,0,102,35,0,0,102,35,0,0,102,35,0,0,104,35,0,0,104,35,0,0,106,35,0,0,106,35,0,0,110,35,0,0,112,35,0,0,112,35,0,0,112,35,0,0,114,35,0,0,114,35,0,0,116,35,0,0,116,35,0,0,116,35,0,0,118,35,0,0,118,35,0,0,118,35,0,0,118,35,0,0,118,35,0,0,118,35,0,0,120,35,0,0,120,35,0,0,120,35,0,0,120,35,0,0,122,35,0,0,124,35,0,0,124,35,0,0,124,35,0,0,126,35,0,0,126,35,0,0,126,35,0,0,126,35,0,0,128,35,0,0,128,35,0,0,128,35,0,0,128,35,0,0,128,35,0,0,128,35,0,0,128,35,0,0,128,35,0,0,132,35,0,0,132,35,0,0,132,35,0,0,132,35,0,0,134,35,0,0,134,35,0,0,134,35,0,0,136,35,0,0,136,35,0,0,136,35,0,0,136,35,0,0,138,35,0,0,138,35,0,0,138,35,0,0,142,35,0,0,142,35,0,0,148,35,0,0,148,35,0,0,148,35,0,0,148,35,0,0,150,35,0,0,150,35,0,0,150,35,0,0,154,35,0,0,154,35,0,0,154,35,0,0,154,35,0,0,156,35,0,0,156,35,0,0,158,35,0,0,160,35,0,0,164,35,0,0,166,35,0,0,166,35,0,0,166,35,0,0,168,35,0,0,168,35,0,0,172,35,0,0,174,35,0,0,176,35,0,0,178,35,0,0,178,35,0,0,180,35,0,0,180,35,0,0,182,35,0,0,182,35,0,0,182,35,0,0,182,35,0,0,182,35,0,0,182,35,0,0,184,35,0,0,186,35,0,0,186,35,0,0,192,35,0,0,192,35,0,0,192,35,0,0,192,35,0,0,192,35,0,0,194,35,0,0,194,35,0,0,198,35,0,0,198,35,0,0,198,35,0,0,198,35,0,0,200,35,0,0,200,35,0,0,200,35,0,0,202,35,0,0,202,35,0,0,204,35,0,0,204,35,0,0,204,35,0,0,204,35,0,0,208,35,0,0,208,35,0,0,210,35,0,0,210,35,0,0,210,35,0,0,210,35,0,0,212,35,0,0,212,35,0,0,212,35,0,0,214,35,0,0,214,35,0,0,214,35,0,0,214,35,0,0,216,35,0,0,216,35,0,0,216,35,0,0,216,35,0,0,216,35,0,0,216,35,0,0,220,35,0,0,220,35,0,0,224,35,0,0,224,35,0,0,226,35,0,0,226,35,0,0,228,35,0,0,228,35,0,0,232,35,0,0,232,35,0,0,232,35,0,0,232,35,0,0,236,35,0,0,238,35,0,0,240,35,0,0,242,35,0,0,246,35,0,0,246,35,0,0,246,35,0,0,246,35,0,0,246,35,0,0,250,35,0,0,250,35,0,0,252,35,0,0,252,35,0,0,252,35,0,0,254,35,0,0,254,35,0,0,0,36,0,0,2,36,0,0,4,36,0,0,4,36,0,0,10,36,0,0,10,36,0,0,12,36,0,0,14,36,0,0,14,36,0,0,14,36,0,0,16,36,0,0,18,36,0,0,20,36,0,0,24,36,0,0,26,36,0,0,26,36,0,0,26,36,0,0,26,36,0,0,26,36,0,0,28,36,0,0,34,36,0,0,34,36,0,0,34,36,0,0,36,36,0,0,38,36,0,0,38,36,0,0,48,36,0,0,48,36,0,0,50,36,0,0,54,36,0,0,58,36,0,0,58,36,0,0,60,36,0,0,60,36,0,0,60,36,0,0,60,36,0,0,60,36,0,0,60,36,0,0,62,36,0,0,62,36,0,0,62,36,0,0,62,36,0,0,64,36,0,0,66,36,0,0,68,36,0,0,68,36,0,0,70,36,0,0,72,36,0,0,72,36,0,0,72,36,0,0,76,36,0,0,76,36,0,0,76,36,0,0,78,36,0,0,78,36,0,0,78,36,0,0,78,36,0,0,78,36,0,0,78,36,0,0,78,36,0,0,78,36,0,0,78,36,0,0,78,36,0,0,80,36,0,0,82,36,0,0,86,36,0,0,86,36,0,0,86,36,0,0,88,36,0,0,90,36,0,0,90,36,0,0,90,36,0,0,94,36,0,0,98,36,0,0,100,36,0,0,100,36,0,0,102,36,0,0,106,36,0,0,106,36,0,0,106,36,0,0,108,36,0,0,110,36,0,0,112,36,0,0,114,36,0,0,116,36,0,0,116,36,0,0,116,36,0,0,118,36,0,0,118,36,0,0,118,36,0,0,118,36,0,0,118,36,0,0,118,36,0,0,118,36,0,0,118,36,0,0,118,36,0,0,118,36,0,0,120,36,0,0,124,36,0,0,126,36,0,0,126,36,0,0,128,36,0,0,132,36,0,0,134,36,0,0,134,36,0,0,136,36,0,0,140,36,0,0,140,36,0,0,142,36,0,0,142,36,0,0,142,36,0,0,144,36,0,0,148,36,0,0,150,36,0,0,150,36,0,0,154,36,0,0,156,36,0,0,156,36,0,0,156,36,0,0,156,36,0,0,156,36,0,0,162,36,0,0,162,36,0,0,164,36,0,0,164,36,0,0,166,36,0,0,166,36,0,0,168,36,0,0,174,36,0,0,176,36,0,0,178,36,0,0,180,36,0,0,184,36,0,0,184,36,0,0,186,36,0,0,188,36,0,0,188,36,0,0,188,36,0,0,188,36,0,0,188,36,0,0,188,36,0,0,190,36,0,0,190,36,0,0,190,36,0,0,192,36,0,0,192,36,0,0,192,36,0,0,192,36,0,0,198,36,0,0,198,36,0,0,198,36,0,0,198,36,0,0,198,36,0,0,202,36,0,0,202,36,0,0,202,36,0,0,202,36,0,0,202,36,0,0,204,36,0,0,204,36,0,0,204,36,0,0,206,36,0,0,206,36,0,0,206,36,0,0,208,36,0,0,210,36,0,0,210,36,0,0,212,36,0,0,212,36,0,0,214,36,0,0,214,36,0,0,214,36,0,0,214,36,0,0,214,36,0,0,216,36,0,0,216,36,0,0,216,36,0,0,220,36,0,0,220,36,0,0,220,36,0,0,220,36,0,0,220,36,0,0,220,36,0,0,220,36,0,0,228,36,0,0,228,36,0,0,230,36,0,0,230,36,0,0,230,36,0,0,232,36,0,0,232,36,0,0,234,36,0,0,234,36,0,0,234,36,0,0,234,36,0,0,234,36,0,0,234,36,0,0,234,36,0,0,238,36,0,0,238,36,0,0,240,36,0,0,242,36,0,0,242,36,0,0,242,36,0,0,242,36,0,0,244,36,0,0,244,36,0,0,244,36,0,0,244,36,0,0,244,36,0,0,244,36,0,0,244,36,0,0,244,36,0,0,244,36,0,0,248,36,0,0,252,36,0,0,252,36,0,0,0,37,0,0,2,37,0,0,6,37,0,0,6,37,0,0,8,37,0,0,10,37,0,0,12,37,0,0,14,37,0,0,14,37,0,0,14,37,0,0,14,37,0,0,14,37,0,0,16,37,0,0,16,37,0,0,20,37,0,0,20,37,0,0,20,37,0,0,20,37,0,0,20,37,0,0,20,37,0,0,20,37,0,0,20,37,0,0,20,37,0,0,20,37,0,0,22,37,0,0,22,37,0,0,22,37,0,0,22,37,0,0,24,37,0,0,24,37,0,0,24,37,0,0,26,37,0,0,28,37,0,0,32,37,0,0,32,37,0,0,36,37,0,0,36,37,0,0,36,37,0,0,38,37,0,0,38,37,0,0,38,37,0,0,38,37,0,0,40,37,0,0,42,37,0,0,42,37,0,0,44,37,0,0,44,37,0,0,44,37,0,0,44,37,0,0,44,37,0,0,48,37,0,0,48,37,0,0,50,37,0,0,50,37,0,0,52,37,0,0,54,37,0,0,54,37,0,0,54,37,0,0,56,37,0,0,60,37,0,0,60,37,0,0,60,37,0,0,60,37,0,0,62,37,0,0,62,37,0,0,64,37,0,0,64,37,0,0,64,37,0,0,66,37,0,0,66,37,0,0,68,37,0,0,68,37,0,0,70,37,0,0,70,37,0,0,72,37,0,0,76,37,0,0,78,37,0,0,78,37,0,0,78,37,0,0,78,37,0,0,78,37,0,0,78,37,0,0,78,37,0,0,78,37,0,0,78,37,0,0,78,37,0,0,80,37,0,0,80,37,0,0,82,37,0,0,82,37,0,0,82,37,0,0,82,37,0,0,82,37,0,0,86,37,0,0,86,37,0,0,88,37,0,0,90,37,0,0,90,37,0,0,92,37,0,0,92,37,0,0,96,37,0,0,96,37,0,0,96,37,0,0,96,37,0,0,98,37,0,0,98,37,0,0,100,37,0,0,102,37,0,0,102,37,0,0,106,37,0,0,106,37,0,0,108,37,0,0,110,37,0,0,110,37,0,0,110,37,0,0,110,37,0,0,112,37,0,0,112,37,0,0,112,37,0,0,114,37,0,0,114,37,0,0,114,37,0,0,114,37,0,0,116,37,0,0,116,37,0,0,120,37,0,0,122,37,0,0,124,37,0,0,124,37,0,0,124,37,0,0,126,37,0,0,126,37,0,0,126,37,0,0,126,37,0,0,126,37,0,0,130,37,0,0,130,37,0,0,130,37,0,0,130,37,0,0,130,37,0,0,132,37,0,0,132,37,0,0,132,37,0,0,134,37,0,0,140,37,0,0,142,37,0,0,144,37,0,0,144,37,0,0,146,37,0,0,146,37,0,0,150,37,0,0,152,37,0,0,152,37,0,0,152,37,0,0,152,37,0,0,154,37,0,0,156,37,0,0,156,37,0,0,158,37,0,0,158,37,0,0,158,37,0,0,158,37,0,0,162,37,0,0,164,37,0,0,166,37,0,0,166,37,0,0,166,37,0,0,166,37,0,0,172,37,0,0,172,37,0,0,172,37,0,0,174,37,0,0,176,37,0,0,178,37,0,0,178,37,0,0,178,37,0,0,180,37,0,0,180,37,0,0,180,37,0,0,180,37,0,0,184,37,0,0,188,37,0,0,190,37,0,0,190,37,0,0,190,37,0,0,190,37,0,0,190,37,0,0,190,37,0,0,190,37,0,0,190,37,0,0,192,37,0,0,192,37,0,0,192,37,0,0,194,37,0,0,194,37,0,0,194,37,0,0,194,37,0,0,196,37,0,0,196,37,0,0,198,37,0,0,200,37,0,0,202,37,0,0,204,37,0,0,206,37,0,0,206,37,0,0,206,37,0,0,206,37,0,0,208,37,0,0,208,37,0,0,208,37,0,0,208,37,0,0,210,37,0,0,212,37,0,0,212,37,0,0,214,37,0,0,218,37,0,0,218,37,0,0,220,37,0,0,222,37,0,0,222,37,0,0,222,37,0,0,224,37,0,0,226,37,0,0,228,37,0,0,228,37,0,0,230,37,0,0,234,37,0,0,234,37,0,0,234,37,0,0,234,37,0,0,238,37,0,0,238,37,0,0,240,37,0,0,242,37,0,0,244,37,0,0,248,37,0,0,248,37,0,0,252,37,0,0,0,38,0,0,0,38,0,0,0,38,0,0,0,38,0,0,2,38,0,0,4,38,0,0,6,38,0,0,8,38,0,0,8,38,0,0,8,38,0,0,10,38,0,0,12,38,0,0,14,38,0,0,18,38,0,0,18,38,0,0,18,38,0,0,18,38,0,0,18,38,0,0,18,38,0,0,18,38,0,0,20,38,0,0,20,38,0,0,20,38,0,0,20,38,0,0,22,38,0,0,22,38,0,0,22,38,0,0,22,38,0,0,22,38,0,0,22,38,0,0,22,38,0,0,22,38,0,0,24,38,0,0,26,38,0,0,26,38,0,0,26,38,0,0,30,38,0,0,30,38,0,0,32,38,0,0,34,38,0,0,36,38,0,0,36,38,0,0,36,38,0,0,36,38,0,0,36,38,0,0,36,38,0,0,38,38,0,0,38,38,0,0,38,38,0,0,38,38,0,0,38,38,0,0,38,38,0,0,40,38,0,0,40,38,0,0,40,38,0,0,42,38,0,0,42,38,0,0,44,38,0,0,46,38,0,0,48,38,0,0,50,38,0,0,50,38,0,0,52,38,0,0,52,38,0,0,54,38,0,0,54,38,0,0,54,38,0,0,56,38,0,0,56,38,0,0,58,38,0,0,58,38,0,0,62,38,0,0,62,38,0,0,62,38,0,0,62,38,0,0,62,38,0,0,62,38,0,0,64,38,0,0,66,38,0,0,66,38,0,0,66,38,0,0,66,38,0,0,66,38,0,0,66,38,0,0,68,38,0,0,68,38,0,0,68,38,0,0,68,38,0,0,68,38,0,0,68,38,0,0,68,38,0,0,70,38,0,0,70,38,0,0,72,38,0,0,74,38,0,0,78,38,0,0,78,38,0,0,78,38,0,0,78,38,0,0,80,38,0,0,80,38,0,0,80,38,0,0,80,38,0,0,80,38,0,0,80,38,0,0,82,38,0,0,82,38,0,0,82,38,0,0,82,38,0,0,82,38,0,0,84,38,0,0,84,38,0,0,88,38,0,0,90,38,0,0,90,38,0,0,90,38,0,0,90,38,0,0,92,38,0,0,92,38,0,0,92,38,0,0,92,38,0,0,92,38,0,0,94,38,0,0,94,38,0,0,94,38,0,0,94,38,0,0,94,38,0,0,94,38,0,0,94,38,0,0,94,38,0,0,94,38,0,0,94,38,0,0,96,38,0,0,96,38,0,0,96,38,0,0,100,38,0,0,100,38,0,0,104,38,0,0,104,38,0,0,104,38,0,0,104,38,0,0,104,38,0,0,104,38,0,0,104,38,0,0,104,38,0,0,104,38,0,0,104,38,0,0,106,38,0,0,106,38,0,0,108,38,0,0,108,38,0,0,108,38,0,0,108,38,0,0,108,38,0,0,112,38,0,0,112,38,0,0,112,38,0,0,114,38,0,0,116,38,0,0,118,38,0,0,120,38,0,0,122,38,0,0,128,38,0,0,128,38,0,0,128,38,0,0,130,38,0,0,130,38,0,0,130,38,0,0,130,38,0,0,132,38,0,0,132,38,0,0,132,38,0,0,140,38,0,0,140,38,0,0,142,38,0,0,142,38,0,0,144,38,0,0,144,38,0,0,146,38,0,0,146,38,0,0,146,38,0,0,148,38,0,0,154,38,0,0,154,38,0,0,156,38,0,0,158,38,0,0,158,38,0,0,164,38,0,0,164,38,0,0,166,38,0,0,166,38,0,0,168,38,0,0,168,38,0,0,170,38,0,0,172,38,0,0,172,38,0,0,172,38,0,0,174,38,0,0,176,38,0,0,178,38,0,0,180,38,0,0,180,38,0,0,180,38,0,0,182,38,0,0,182,38,0,0,182,38,0,0,184,38,0,0,184,38,0,0,184,38,0,0,186,38,0,0,186,38,0,0,186,38,0,0,186,38,0,0,188,38,0,0,188,38,0,0,188,38,0,0,190,38,0,0,192,38,0,0,192,38,0,0,192,38,0,0,194,38,0,0,196,38,0,0,198,38,0,0,202,38,0,0,204,38,0,0,206,38,0,0,206,38,0,0,206,38,0,0,214,38,0,0,216,38,0,0,218,38,0,0,220,38,0,0,220,38,0,0,220,38,0,0,220,38,0,0,222,38,0,0,222,38,0,0,222,38,0,0,224,38,0,0,224,38,0,0,224,38,0,0,226,38,0,0,228,38,0,0,228,38,0,0,230,38,0,0,232,38,0,0,232,38,0,0,232,38,0,0,238,38,0,0,238,38,0,0,238,38,0,0,238,38,0,0,238,38,0,0,240,38,0,0,242,38,0,0,244,38,0,0,246,38,0,0,246,38,0,0,246,38,0,0,246,38,0,0,246,38,0,0,246,38,0,0,246,38,0,0,246,38,0,0,246,38,0,0,246,38,0,0,246,38,0,0,246,38,0,0,248,38,0,0,250,38,0,0,250,38,0,0,250,38,0,0,254,38,0,0,0,39,0,0,0,39,0,0,0,39,0,0,0,39,0,0,0,39,0,0,2,39,0,0,4,39,0,0,6,39,0,0,8,39,0,0,8,39,0,0,8,39,0,0,8,39,0,0,10,39,0,0,12,39,0,0,12,39,0,0,12,39,0,0,14,39,0,0,14,39,0,0,14,39,0,0,14,39,0,0,18,39,0,0,20,39,0,0,22,39,0,0,26,39,0,0,26,39,0,0,28,39,0,0,28,39,0,0,28,39,0,0,32,39,0,0,34,39,0,0,34,39,0,0,36,39,0,0,38,39,0,0,38,39,0,0,38,39,0,0,38,39,0,0,38,39,0,0,38,39,0,0,40,39,0,0,44,39,0,0,46,39,0,0,48,39,0,0,48,39,0,0,48,39,0,0,54,39,0,0,56,39,0,0,56,39,0,0,58,39,0,0,58,39,0,0,62,39,0,0,62,39,0,0,64,39,0,0,66,39,0,0,66,39,0,0,66,39,0,0,68,39,0,0,70,39,0,0,72,39,0,0,76,39,0,0,78,39,0,0,78,39,0,0,80,39,0,0,82,39,0,0,82,39,0,0,84,39,0,0,86,39,0,0,86,39,0,0,88,39,0,0,88,39,0,0,88,39,0,0,88,39,0,0,88,39,0,0,88,39,0,0,88,39,0,0,88,39,0,0,88,39,0,0,88,39,0,0,92,39,0,0,94,39,0,0,96,39,0,0,100,39,0,0,100,39,0,0,102,39,0,0,102,39,0,0,102,39,0,0,102,39,0,0,102,39,0,0,102,39,0,0,102,39,0,0,104,39,0,0,104,39,0,0,108,39,0,0,108,39,0,0,110,39,0,0,110,39,0,0,118,39,0,0,118,39,0,0,118,39,0,0,118,39,0,0,118,39,0,0,120,39,0,0,122,39,0,0,122,39,0,0,122,39,0,0,122,39,0,0,122,39,0,0,122,39,0,0,124,39,0,0,124,39,0,0,124,39,0,0,126,39,0,0,126,39,0,0,126,39,0,0,128,39,0,0,128,39,0,0,130,39,0,0,130,39,0,0,132,39,0,0,132,39,0,0,134,39,0,0,134,39,0,0,134,39,0,0,136,39,0,0,136,39,0,0,136,39,0,0,138,39,0,0,140,39,0,0,140,39,0,0,140,39,0,0,140,39,0,0,140,39,0,0,140,39,0,0,140,39,0,0,140,39,0,0,140,39,0,0,140,39,0,0,140,39,0,0,140,39,0,0,140,39,0,0,144,39,0,0,144,39,0,0,146,39,0,0,148,39,0,0,150,39,0,0,150,39,0,0,150,39,0,0,152,39,0,0,152,39,0,0,152,39,0,0,154,39,0,0,154,39,0,0,154,39,0,0,154,39,0,0,154,39,0,0,154,39,0,0,154,39,0,0,154,39,0,0,156,39,0,0,158,39,0,0,158,39,0,0,158,39,0,0,158,39,0,0,158,39,0,0,160,39,0,0,162,39,0,0,162,39,0,0,162,39,0,0,170,39,0,0,170,39,0,0,170,39,0,0,170,39,0,0,170,39,0,0,170,39,0,0,172,39,0,0,172,39,0,0,172,39,0,0,174,39,0,0,174,39,0,0,176,39,0,0,178,39,0,0,178,39,0,0,178,39,0,0,178,39,0,0,180,39,0,0,180,39,0,0,180,39,0,0,182,39,0,0,182,39,0,0,184,39,0,0,186,39,0,0,186,39,0,0,186,39,0,0,186,39,0,0,186,39,0,0,186,39,0,0,186,39,0,0,186,39,0,0,186,39,0,0,190,39,0,0,190,39,0,0,190,39,0,0,192,39,0,0,192,39,0,0,194,39,0,0,200,39,0,0,202,39,0,0,202,39,0,0,202,39,0,0,204,39,0,0,206,39,0,0,206,39,0,0,206,39,0,0,210,39,0,0,212,39,0,0,214,39,0,0,214,39,0,0,216,39,0,0,216,39,0,0,218,39,0,0,218,39,0,0,218,39,0,0,220,39,0,0,222,39,0,0,226,39,0,0,226,39,0,0,226,39,0,0,226,39,0,0,230,39,0,0,234,39,0,0,234,39,0,0,234,39,0,0,236,39,0,0,236,39,0,0,236,39,0,0,236,39,0,0,236,39,0,0,236,39,0,0,236,39,0,0,236,39,0,0,240,39,0,0,240,39,0,0,242,39,0,0,244,39,0,0,244,39,0,0,244,39,0,0,248,39,0,0,248,39,0,0,248,39,0,0,248,39,0,0,248,39,0,0,250,39,0,0,252,39,0,0,252,39,0,0,252,39,0,0,254,39,0,0,2,40,0,0,4,40,0,0,4,40,0,0,4,40,0,0,6,40,0,0,10,40,0,0,12,40,0,0,12,40,0,0,14,40,0,0,14,40,0,0,14,40,0,0,16,40,0,0,16,40,0,0,16,40,0,0,16,40,0,0,16,40,0,0,16,40,0,0,16,40,0,0,16,40,0,0,16,40,0,0,16,40,0,0,16,40,0,0,18,40,0,0,18,40,0,0,18,40,0,0,24,40,0,0,28,40,0,0,30,40,0,0,32,40,0,0,32,40,0,0,32,40,0,0,34,40,0,0,36,40,0,0,36,40,0,0,36,40,0,0,36,40,0,0,36,40,0,0,40,40,0,0,42,40,0,0,42,40,0,0,42,40,0,0,42,40,0,0,44,40,0,0,46,40,0,0,46,40,0,0,48,40,0,0,50,40,0,0,54,40,0,0,54,40,0,0,56,40,0,0,56,40,0,0,56,40,0,0,56,40,0,0,56,40,0,0,58,40,0,0,58,40,0,0,58,40,0,0,60,40,0,0,60,40,0,0,60,40,0,0,60,40,0,0,68,40,0,0,68,40,0,0,68,40,0,0,70,40,0,0,70,40,0,0,72,40,0,0,74,40,0,0,74,40,0,0,76,40,0,0,76,40,0,0,78,40,0,0,80,40,0,0,86,40,0,0,86,40,0,0,86,40,0,0,86,40,0,0,88,40,0,0,88,40,0,0,88,40,0,0,88,40,0,0,90,40,0,0,90,40,0,0,90,40,0,0,92,40,0,0,92,40,0,0,92,40,0,0,92,40,0,0,92,40,0,0,94,40,0,0,94,40,0,0,94,40,0,0,96,40,0,0,98,40,0,0,100,40,0,0,102,40,0,0,102,40,0,0,104,40,0,0,104,40,0,0,106,40,0,0,106,40,0,0,108,40,0,0,112,40,0,0,112,40,0,0,112,40,0,0,112,40,0,0,112,40,0,0,116,40,0,0,120,40,0,0,122,40,0,0,122,40,0,0,122,40,0,0,124,40,0,0,124,40,0,0,124,40,0,0,124,40,0,0,124,40,0,0,124,40,0,0,128,40,0,0,128,40,0,0,128,40,0,0,128,40,0,0,128,40,0,0,130,40,0,0,134,40,0,0,134,40,0,0,136,40,0,0,138,40,0,0,138,40,0,0,138,40,0,0,138,40,0,0,138,40,0,0,142,40,0,0,142,40,0,0,144,40,0,0,144,40,0,0,146,40,0,0,148,40,0,0,148,40,0,0,148,40,0,0,150,40,0,0,152,40,0,0,154,40,0,0,154,40,0,0,154,40,0,0,154,40,0,0,154,40,0,0,158,40,0,0,160,40,0,0,160,40,0,0,162,40,0,0,162,40,0,0,164,40,0,0,164,40,0,0,164,40,0,0,164,40,0,0,164,40,0,0,166,40,0,0,168,40,0,0,168,40,0,0,170,40,0,0,170,40,0,0,172,40,0,0,172,40,0,0,172,40,0,0,176,40,0,0,176,40,0,0,178,40,0,0,178,40,0,0,178,40,0,0,182,40,0,0,182,40,0,0,182,40,0,0,182,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,184,40,0,0,186,40,0,0,186,40,0,0,186,40,0,0,188,40,0,0,190,40,0,0,192,40,0,0,194,40,0,0,194,40,0,0,194,40,0,0,194,40,0,0,194,40,0,0,194,40,0,0,196,40,0,0,196,40,0,0,196,40,0,0,200,40,0,0,202,40,0,0,206,40,0,0,206,40,0,0,206,40,0,0,206,40,0,0,208,40,0,0,208,40,0,0,208,40,0,0,210,40,0,0,210,40,0,0,210,40,0,0,216,40,0,0,216,40,0,0,216,40,0,0,216,40,0,0,218,40,0,0,220,40,0,0,220,40,0,0,220,40,0,0,220,40,0,0,220,40,0,0,220,40,0,0,222,40,0,0,222,40,0,0,222,40,0,0,224,40,0,0,226,40,0,0,228,40,0,0,228,40,0,0,228,40,0,0,228,40,0,0,228,40,0,0,228,40,0,0,230,40,0,0,232,40,0,0,232,40,0,0,234,40,0,0,234,40,0,0,234,40,0,0,234,40,0,0,234,40,0,0,234,40,0,0,234,40,0,0,236,40,0,0,236,40,0,0,238,40,0,0,244,40,0,0,244,40,0,0,248,40,0,0,250,40,0,0,250,40,0,0,250,40,0,0,252,40,0,0,252,40,0,0,252,40,0,0,252,40,0,0,254,40,0,0,254,40,0,0,0,41,0,0,0,41,0,0,2,41,0,0,2,41,0,0,2,41,0,0,2,41,0,0,4,41,0,0,4,41,0,0,6,41,0,0,6,41,0,0,6,41,0,0,6,41,0,0,6,41,0,0,8,41,0,0,10,41,0,0,10,41,0,0,10,41,0,0,10,41,0,0,12,41,0,0,12,41,0,0,14,41,0,0,14,41,0,0,14,41,0,0,14,41,0,0,14,41,0,0,16,41,0,0,16,41,0,0,18,41,0,0,18,41,0,0,18,41,0,0,18,41,0,0,18,41,0,0,18,41,0,0,18,41,0,0,24,41,0,0,24,41,0,0,24,41,0,0,24,41,0,0,30,41,0,0,30,41,0,0,30,41,0,0,34,41,0,0,34,41,0,0,36,41,0,0,36,41,0,0,36,41,0,0,36,41,0,0,36,41,0,0,40,41,0,0,42,41,0,0,42,41,0,0,42,41,0,0,42,41,0,0,42,41,0,0,42,41,0,0,42,41,0,0,42,41,0,0,42,41,0,0,42,41,0,0,42,41,0,0,44,41,0,0,44,41,0,0,44,41,0,0,44,41,0,0,46,41,0,0,46,41,0,0,46,41,0,0,46,41,0,0,46,41,0,0,48,41,0,0,48,41,0,0,48,41,0,0,48,41,0,0,52,41,0,0,52,41,0,0,52,41,0,0,52,41,0,0,56,41,0,0,58,41,0,0,58,41,0,0,58,41,0,0,58,41,0,0,60,41,0,0,60,41,0,0,60,41,0,0,60,41,0,0,60,41,0,0,60,41,0,0,62,41,0,0,66,41,0,0,66,41,0,0,68,41,0,0,70,41,0,0,74,41,0,0,76,41,0,0,76,41,0,0,76,41,0,0,78,41,0,0,78,41,0,0,78,41,0,0,80,41,0,0,80,41,0,0,80,41,0,0,84,41,0,0,84,41,0,0,84,41,0,0,86,41,0,0,86,41,0,0,92,41,0,0,94,41,0,0,94,41,0,0,94,41,0,0,94,41,0,0,94,41,0,0,94,41,0,0,94,41,0,0,94,41,0,0,94,41,0,0,94,41,0,0,94,41,0,0,94,41,0,0,96,41,0,0,98,41,0,0,102,41,0,0,104,41,0,0,104,41,0,0,104,41,0,0,104,41,0,0,104,41,0,0,104,41,0,0,104,41,0,0,104,41,0,0,106,41,0,0,110,41,0,0,112,41,0,0,112,41,0,0,114,41,0,0,116,41,0,0,118,41,0,0,120,41,0,0,122,41,0,0,122,41,0,0,122,41,0,0,124,41,0,0,124,41,0,0,124,41,0,0,124,41,0,0,124,41,0,0,124,41,0,0,124,41,0,0,128,41,0,0,128,41,0,0,130,41,0,0,132,41,0,0,134,41,0,0,138,41,0,0,138,41,0,0,140,41,0,0,142,41,0,0,142,41,0,0,144,41,0,0,144,41,0,0,144,41,0,0,144,41,0,0,144,41,0,0,148,41,0,0,150,41,0,0,150,41,0,0,150,41,0,0,150,41,0,0,152,41,0,0,154,41,0,0,158,41,0,0,158,41,0,0,158,41,0,0,158,41,0,0,158,41,0,0,158,41,0,0,158,41,0,0,162,41,0,0,162,41,0,0,164,41,0,0,164,41,0,0,164,41,0,0,164,41,0,0,164,41,0,0,166,41,0,0,166,41,0,0,166,41,0,0,166,41,0,0,166,41,0,0,166,41,0,0,168,41,0,0,168,41,0,0,172,41,0,0,174,41,0,0,174,41,0,0,174,41,0,0,174,41,0,0,176,41,0,0,176,41,0,0,178,41,0,0,178,41,0,0,180,41,0,0,180,41,0,0,180,41,0,0,180,41,0,0,180,41,0,0,182,41,0,0,182,41,0,0,184,41,0,0,186,41,0,0,186,41,0,0,186,41,0,0,186,41,0,0,186,41,0,0,188,41,0,0,192,41,0,0,194,41,0,0,194,41,0,0,196,41,0,0,196,41,0,0,198,41,0,0,200,41,0,0,200,41,0,0,200,41,0,0,204,41,0,0,204,41,0,0,204,41,0,0,206,41,0,0,206,41,0,0,206,41,0,0,206,41,0,0,208,41,0,0,208,41,0,0,208,41,0,0,208,41,0,0,208,41,0,0,210,41,0,0,210,41,0,0,210,41,0,0,214,41,0,0,214,41,0,0,216,41,0,0,218,41,0,0,220,41,0,0,224,41,0,0,224,41,0,0,226,41,0,0,226,41,0,0,228,41,0,0,232,41,0,0,234,41,0,0,236,41,0,0,238,41,0,0,238,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,242,41,0,0,244,41,0,0,246,41,0,0,246,41,0,0,246,41,0,0,246,41,0,0,246,41,0,0,246,41,0,0,248,41,0,0,250,41,0,0,250,41,0,0,250,41,0,0,250,41,0,0,254,41,0,0,254,41,0,0,6,42,0,0,10,42,0,0,12,42,0,0,12,42,0,0,12,42,0,0,12,42,0,0,12,42,0,0,12,42,0,0,14,42,0,0,14,42,0,0,14,42,0,0,14,42,0,0,14,42,0,0,18,42,0,0,18,42,0,0,20,42,0,0,20,42,0,0,26,42,0,0,28,42,0,0,28,42,0,0,28,42,0,0,28,42,0,0,28,42,0,0,32,42,0,0,32,42,0,0,34,42,0,0,34,42,0,0,34,42,0,0,34,42,0,0,34,42,0,0,34,42,0,0,36,42,0,0,36,42,0,0,38,42,0,0,40,42,0,0,40,42,0,0,40,42,0,0,40,42,0,0,42,42,0,0,44,42,0,0,46,42,0,0,46,42,0,0,48,42,0,0,48,42,0,0,48,42,0,0,48,42,0,0,48,42,0,0,48,42,0,0,48,42,0,0,50,42,0,0,54,42,0,0,58,42,0,0,64,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,66,42,0,0,68,42,0,0,68,42,0,0,70,42,0,0,70,42,0,0,76,42,0,0,76,42,0,0,76,42,0,0,76,42,0,0,76,42,0,0,80,42,0,0,82,42,0,0,84,42,0,0,84,42,0,0,84,42,0,0,84,42,0,0,92,42,0,0,92,42,0,0,94,42,0,0,94,42,0,0,94,42,0,0,94,42,0,0,94,42,0,0,94,42,0,0,94,42,0,0,94,42,0,0,94,42,0,0,96,42,0,0,96,42,0,0,96,42,0,0,102,42,0,0,104,42,0,0,104,42,0,0,106,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,108,42,0,0,112,42,0,0,114,42,0,0,116,42,0,0,118,42,0,0,120,42,0,0,120,42,0,0,120,42,0,0,122,42,0,0,126,42,0,0,128,42,0,0,132,42,0,0,134,42,0,0,138,42,0,0,138,42,0,0,142,42,0,0,142,42,0,0,142,42,0,0,142,42,0,0,142,42,0,0,142,42,0,0,146,42,0,0,148,42,0,0,148,42,0,0,150,42,0,0,150,42,0,0,150,42,0,0,152,42,0,0,152,42,0,0,156,42,0,0,158,42,0,0,160,42,0,0,162,42,0,0,162,42,0,0,164,42,0,0,164,42,0,0,164,42,0,0,164,42,0,0,164,42,0,0,166,42,0,0,168,42,0,0,170,42,0,0,170,42,0,0,170,42,0,0,170,42,0,0,170,42,0,0,172,42,0,0,172,42,0,0,174,42,0,0,176,42,0,0,178,42,0,0,178,42,0,0,180,42,0,0,180,42,0,0,184,42,0,0,186,42,0,0,188,42,0,0,188,42,0,0,188,42,0,0,188,42,0,0,188,42,0,0,188,42,0,0,192,42,0,0,192,42,0,0,192,42,0,0,192,42,0,0,192,42,0,0,192,42,0,0,192,42,0,0,196,42,0,0,198,42,0,0,198,42,0,0,198,42,0,0,198,42,0,0,198,42,0,0,200,42,0,0,202,42,0,0,202,42,0,0,202,42,0,0,206,42,0,0,212,42,0,0,214,42,0,0,214,42,0,0,218,42,0,0,220,42,0,0,222,42,0,0,224,42,0,0,228,42,0,0,230,42,0,0,232,42,0,0,234,42,0,0,234,42,0,0,234,42,0,0,236,42,0,0,238,42,0,0,244,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,248,42,0,0,250,42,0,0,250,42,0,0,250,42,0,0,252,42,0,0,252,42,0,0,252,42,0,0,0,43,0,0,0,43,0,0,0,43,0,0,0,43,0,0,0,43,0,0,4,43,0,0,4,43,0,0,4,43,0,0,4,43,0,0,4,43,0,0,4,43,0,0,6,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,10,43,0,0,12,43,0,0,12,43,0,0,12,43,0,0,12,43,0,0,14,43,0,0,18,43,0,0,18,43,0,0,18,43,0,0,18,43,0,0,20,43,0,0,22,43,0,0,22,43,0,0,26,43,0,0,26,43,0,0,26,43,0,0,26,43,0,0,28,43,0,0,28,43,0,0,32,43,0,0,32,43,0,0,36,43,0,0,40,43,0,0,40,43,0,0,40,43,0,0,40,43,0,0,40,43,0,0,40,43,0,0,40,43,0,0,40,43,0,0,40,43,0,0,42,43,0,0,42,43,0,0,42,43,0,0,42,43,0,0,44,43,0,0,44,43,0,0,44,43,0,0,44,43,0,0,44,43,0,0,44,43,0,0,46,43,0,0,46,43,0,0,46,43,0,0,46,43,0,0,46,43,0,0,46,43,0,0,46,43,0,0,48,43,0,0,50,43,0,0,50,43,0,0,50,43,0,0,52,43,0,0,56,43,0,0,60,43,0,0,60,43,0,0,62,43,0,0,64,43,0,0,66,43,0,0,66,43,0,0,66,43,0,0,66,43,0,0,66,43,0,0,66,43,0,0,66,43,0,0,66,43,0,0,70,43,0,0,70,43,0,0,70,43,0,0,70,43,0,0,70,43,0,0,72,43,0,0,72,43,0,0,74,43,0,0,74,43,0,0,74,43,0,0,76,43,0,0,76,43,0,0,76,43,0,0,76,43,0,0,78,43,0,0,78,43,0,0,82,43,0,0,82,43,0,0,82,43,0,0,84,43,0,0,84,43,0,0,84,43,0,0,86,43,0,0,88,43,0,0,88,43,0,0,88,43,0,0,94,43,0,0,96,43,0,0,96,43,0,0,98,43,0,0,100,43,0,0,100,43,0,0,100,43,0,0,100,43,0,0,104,43,0,0,104,43,0,0,104,43,0,0,104,43,0,0,104,43,0,0,104,43,0,0,104,43,0,0,104,43,0,0,106,43,0,0,106,43,0,0,108,43,0,0,108,43,0,0,112,43,0,0,112,43,0,0,112,43,0,0,112,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,114,43,0,0,116,43,0,0,116,43,0,0,118,43,0,0,118,43,0,0,120,43,0,0,122,43,0,0,124,43,0,0,124,43,0,0,124,43,0,0,126,43,0,0,128,43,0,0,130,43,0,0,130,43,0,0,130,43,0,0,130,43,0,0,134,43,0,0,136,43,0,0,136,43,0,0,136,43,0,0,136,43,0,0,136,43,0,0,138,43,0,0,138,43,0,0,140,43,0,0,142,43,0,0,142,43,0,0,146,43,0,0,148,43,0,0,148,43,0,0,150,43,0,0,150,43,0,0,150,43,0,0,150,43,0,0,150,43,0,0,154,43,0,0,154,43,0,0,156,43,0,0,158,43,0,0,158,43,0,0,160,43,0,0,160,43,0,0,160,43,0,0,160,43,0,0,164,43,0,0,164,43,0,0,164,43,0,0,168,43,0,0,170,43,0,0,170,43,0,0,174,43,0,0,174,43,0,0,174,43,0,0,174,43,0,0,174,43,0,0,174,43,0,0,174,43,0,0,176,43,0,0,178,43,0,0,178,43,0,0,182,43,0,0,182,43,0,0,182,43,0,0,182,43,0,0,184,43,0,0,184,43,0,0,184,43,0,0,184,43,0,0,186,43,0,0,190,43,0,0,192,43,0,0,194,43,0,0,194,43,0,0,194,43,0,0,194,43,0,0,194,43,0,0,198,43,0,0,200,43,0,0,200,43,0,0,200,43,0,0,200,43,0,0,202,43,0,0,202,43,0,0,202,43,0,0,204,43,0,0,204,43,0,0,204,43,0,0,204,43,0,0,206,43,0,0,206,43,0,0,208,43,0,0,210,43,0,0,210,43,0,0,210,43,0,0,212,43,0,0,214,43,0,0,216,43,0,0,216,43,0,0,216,43,0,0,216,43,0,0,220,43,0,0,220,43,0,0,220,43,0,0,222,43,0,0,222,43,0,0,226,43,0,0,230,43,0,0,230,43,0,0,232,43,0,0,232,43,0,0,234,43,0,0,234,43,0,0,234,43,0,0,236,43,0,0,238,43,0,0,238,43,0,0,240,43,0,0,240,43,0,0,242,43,0,0,244,43,0,0,246,43,0,0,246,43,0,0,246,43,0,0,246,43,0,0,246,43,0,0,246,43,0,0,248,43,0,0,248,43,0,0,248,43,0,0,250,43,0,0,254,43,0,0,254,43,0,0,2,44,0,0,4,44,0,0,6,44,0,0,6,44,0,0,8,44,0,0,8,44,0,0,8,44,0,0,8,44,0,0,8,44,0,0,8,44,0,0,8,44,0,0,10,44,0,0,10,44,0,0,10,44,0,0,12,44,0,0,14,44,0,0,14,44,0,0,14,44,0,0,16,44,0,0,18,44,0,0,20,44,0,0,20,44,0,0,20,44,0,0,22,44,0,0,24,44,0,0,24,44,0,0,24,44,0,0,28,44,0,0,28,44,0,0,28,44,0,0,30,44,0,0,30,44,0,0,30,44,0,0,30,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,32,44,0,0,36,44,0,0,38,44,0,0,40,44,0,0,42,44,0,0,46,44,0,0,48,44,0,0,48,44,0,0,48,44,0,0,52,44,0,0,52,44,0,0,52,44,0,0,54,44,0,0,58,44,0,0,60,44,0,0,60,44,0,0,60,44,0,0,62,44,0,0,64,44,0,0,66,44,0,0,70,44,0,0,72,44,0,0,72,44,0,0,72,44,0,0,74,44,0,0,74,44,0,0,74,44,0,0,78,44,0,0,80,44,0,0,80,44,0,0,80,44,0,0,82,44,0,0,84,44,0,0,84,44,0,0,86,44,0,0,86,44,0,0,86,44,0,0,86,44,0,0,86,44,0,0,86,44,0,0,90,44,0,0,90,44,0,0,92,44,0,0,92,44,0,0,94,44,0,0,96,44,0,0,100,44,0,0,100,44,0,0,102,44,0,0,102,44,0,0,104,44,0,0,104,44,0,0,104,44,0,0,104,44,0,0,106,44,0,0,106,44,0,0,106,44,0,0,106,44,0,0,106,44,0,0,110,44,0,0,110,44,0,0,110,44,0,0,112,44,0,0,116,44,0,0,118,44,0,0,122,44,0,0,122,44,0,0,124,44,0,0,124,44,0,0,126,44,0,0,132,44,0,0,132,44,0,0,134,44,0,0,136,44,0,0,136,44,0,0,138,44,0,0,138,44,0,0,142,44,0,0,146,44,0,0,148,44,0,0,148,44,0,0,152,44,0,0,152,44,0,0,152,44,0,0,152,44,0,0,156,44,0,0,156,44,0,0,158,44,0,0,162,44,0,0,162,44,0,0,166,44,0,0,166,44,0,0,166,44,0,0,168,44,0,0,172,44,0,0,174,44,0,0,174,44,0,0,174,44,0,0,176,44,0,0,178,44,0,0,178,44,0,0,182,44,0,0,182,44,0,0,186,44,0,0,186,44,0,0,188,44,0,0,190,44,0,0,192,44,0,0,192,44,0,0,196,44,0,0,196,44,0,0,196,44,0,0,196,44,0,0,198,44,0,0,198,44,0,0,200,44,0,0,202,44,0,0,202,44,0,0,202,44,0,0,202,44,0,0,204,44,0,0,204,44,0,0,204,44,0,0,206,44,0,0,206,44,0,0,210,44,0,0,212,44,0,0,212,44,0,0,216,44,0,0,216,44,0,0,218,44,0,0,218,44,0,0,220,44,0,0,224,44,0,0,224,44,0,0,224,44,0,0,228,44,0,0,230,44,0,0,230,44,0,0,230,44,0,0,230,44,0,0,230,44,0,0,230,44,0,0,230,44,0,0,232,44,0,0,232,44,0,0,236,44,0,0,236,44,0,0,236,44,0,0,236,44,0,0,236,44,0,0,238,44,0,0,240,44,0,0,242,44,0,0,242,44,0,0,242,44,0,0,242,44,0,0,242,44,0,0,244,44,0,0,248,44,0,0,248,44,0,0,248,44,0,0,248,44,0,0,250,44,0,0,252,44,0,0,252,44,0,0,252,44,0,0,252,44,0,0,252,44,0,0,254,44,0,0,0,45,0,0,0,45,0,0,0,45,0,0,4,45,0,0,4,45,0,0,4,45,0,0,4,45,0,0,10,45,0,0,10,45,0,0,10,45,0,0,10,45,0,0,14,45,0,0,14,45,0,0,14,45,0,0,16,45,0,0,16,45,0,0,18,45,0,0,18,45,0,0,18,45,0,0,18,45,0,0,22,45,0,0,24,45,0,0,24,45,0,0,24,45,0,0,24,45,0,0,24,45,0,0,26,45,0,0,28,45,0,0,28,45,0,0,28,45,0,0,28,45,0,0,32,45,0,0,34,45,0,0,36,45,0,0,36,45,0,0,40,45,0,0,42,45,0,0,42,45,0,0,42,45,0,0,44,45,0,0,44,45,0,0,44,45,0,0,46,45,0,0,48,45,0,0,50,45,0,0,54,45,0,0,54,45,0,0,54,45,0,0,56,45,0,0,58,45,0,0,58,45,0,0,58,45,0,0,60,45,0,0,60,45,0,0,62,45,0,0,62,45,0,0,62,45,0,0,64,45,0,0,66,45,0,0,66,45,0,0,66,45,0,0,66,45,0,0,66,45,0,0,68,45,0,0,70,45,0,0,70,45,0,0,70,45,0,0,70,45,0,0,70,45,0,0,70,45,0,0,80,45,0,0,82,45,0,0,82,45,0,0,86,45,0,0,86,45,0,0,86,45,0,0,88,45,0,0,88,45,0,0,90,45,0,0,90,45,0,0,92,45,0,0,92,45,0,0,92,45,0,0,94,45,0,0,96,45,0,0,100,45,0,0,102,45,0,0,102,45,0,0,102,45,0,0,102,45,0,0,102,45,0,0,102,45,0,0,102,45,0,0,104,45,0,0,104,45,0,0,106,45,0,0,108,45,0,0,108,45,0,0,108,45,0,0,110,45,0,0,110,45,0,0,114,45,0,0,114,45,0,0,116,45,0,0,118,45,0,0,120,45,0,0,120,45,0,0,126,45,0,0,128,45,0,0,128,45,0,0,128,45,0,0,128,45,0,0,130,45,0,0,130,45,0,0,130,45,0,0,130,45,0,0,130,45,0,0,130,45,0,0,134,45,0,0,136,45,0,0,138,45,0,0,138,45,0,0,140,45,0,0,142,45,0,0,144,45,0,0,144,45,0,0,146,45,0,0,146,45,0,0,146,45,0,0,148,45,0,0,148,45,0,0,148,45,0,0,148,45,0,0,150,45,0,0,152,45,0,0,152,45,0,0,152,45,0,0,158,45,0,0,158,45,0,0,158,45,0,0,158,45,0,0,162,45,0,0,164,45,0,0,164,45,0,0,164,45,0,0,164,45,0,0,164,45,0,0,164,45,0,0,168,45,0,0,170,45,0,0,172,45,0,0,172,45,0,0,174,45,0,0,174,45,0,0,174,45,0,0,174,45,0,0,174,45,0,0,174,45,0,0,174,45,0,0,174,45,0,0,174,45,0,0,174,45,0,0,176,45,0,0,176,45,0,0,176,45,0,0,178,45,0,0,178,45,0,0,178,45,0,0,180,45,0,0,180,45,0,0,182,45,0,0,182,45,0,0,184,45,0,0,184,45,0,0,186,45,0,0,186,45,0,0,186,45,0,0,190,45,0,0,192,45,0,0,192,45,0,0,194,45,0,0,194,45,0,0,198,45,0,0,198,45,0,0,198,45,0,0,198,45,0,0,200,45,0,0,202,45,0,0,202,45,0,0,202,45,0,0,202,45,0,0,204,45,0,0,210,45,0,0,212,45,0,0,216,45,0,0,216,45,0,0,218,45,0,0,254,45,0,0,254,45,0,0,0,46,0,0,0,46,0,0,0,46,0,0,2,46,0,0,4,46,0,0,8,46,0,0,8,46,0,0,8,46,0,0,8,46,0,0,10,46,0,0,10,46,0,0,12,46,0,0,14,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,18,46,0,0,20,46,0,0,20,46,0,0,20,46,0,0,20,46,0,0,20,46,0,0,22,46,0,0,22,46,0,0,22,46,0,0,22,46,0,0,22,46,0,0,24,46,0,0,24,46,0,0,26,46,0,0,26,46,0,0,28,46,0,0,28,46,0,0,30,46,0,0,30,46,0,0,32,46,0,0,34,46,0,0,34,46,0,0,34,46,0,0,36,46,0,0,38,46,0,0,38,46,0,0,38,46,0,0,38,46,0,0,40,46,0,0,40,46,0,0,40,46,0,0,40,46,0,0,42,46,0,0,46,46,0,0,46,46,0,0,52,46,0,0,54,46,0,0,56,46,0,0,56,46,0,0,56,46,0,0,60,46,0,0,60,46,0,0,62,46,0,0,64,46,0,0,66,46,0,0,68,46,0,0,70,46,0,0,70,46,0,0,70,46,0,0,70,46,0,0,70,46,0,0,72,46,0,0,72,46,0,0,72,46,0,0,72,46,0,0,74,46,0,0,74,46,0,0,74,46,0,0,76,46,0,0,76,46,0,0,80,46,0,0,80,46,0,0,80,46,0,0,80,46,0,0,80,46,0,0,82,46,0,0,82,46,0,0,82,46,0,0,82,46,0,0,82,46,0,0,82,46,0,0,82,46,0,0,82,46,0,0,82,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,84,46,0,0,86,46,0,0,90,46,0,0,92,46,0,0,96,46,0,0,96,46,0,0,100,46,0,0,100,46,0,0,100,46,0,0,104,46,0,0,104,46,0,0,104,46,0,0,104,46,0,0,106,46,0,0,106,46,0,0,106,46,0,0,106,46,0,0,108,46,0,0,108,46,0,0,110,46,0,0,112,46,0,0,112,46,0,0,112,46,0,0,112,46,0,0,112,46,0,0,114,46,0,0,116,46,0,0,116,46,0,0,116,46,0,0,116,46,0,0,118,46,0,0,120,46,0,0,120,46,0,0,120,46,0,0,120,46,0,0,120,46,0,0,120,46,0,0,122,46,0,0,124,46,0,0,126,46,0,0,128,46,0,0,128,46,0,0,128,46,0,0,130,46,0,0,130,46,0,0,130,46,0,0,130,46,0,0,134,46,0,0,136,46,0,0,138,46,0,0,138,46,0,0,138,46,0,0,140,46,0,0,142,46,0,0,144,46,0,0,150,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,152,46,0,0,154,46,0,0,158,46,0,0,158,46,0,0,158,46,0,0,160,46,0,0,160,46,0,0,160,46,0,0,160,46,0,0,162,46,0,0,164,46,0,0,166,46,0,0,166,46,0,0,166,46,0,0,166,46,0,0,166,46,0,0,166,46,0,0,170,46,0,0,174,46,0,0,176,46,0,0,176,46,0,0,178,46,0,0,178,46,0,0,178,46,0,0,178,46,0,0,180,46,0,0,180,46,0,0,180,46,0,0,180,46,0,0,182,46,0,0,182,46,0,0,182,46,0,0,186,46,0,0,186,46,0,0,186,46,0,0,186,46,0,0,188,46,0,0,188,46,0,0,190,46,0,0,190,46,0,0,190,46,0,0,190,46,0,0,190,46,0,0,190,46,0,0,190,46,0,0,190,46,0,0,192,46,0,0,192,46,0,0,194,46,0,0,194,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,196,46,0,0,200,46,0,0,200,46,0,0,200,46,0,0,200,46,0,0,204,46,0,0,204,46,0,0,204,46,0,0,204,46,0,0,204,46,0,0,204,46,0,0,206,46,0,0,208,46,0,0,210,46,0,0,210,46,0,0,210,46,0,0,210,46,0,0,210,46,0,0,210,46,0,0,210,46,0,0,212,46,0,0,214,46,0,0,216,46,0,0,216,46,0,0,216,46,0,0,216,46,0,0,216,46,0,0,218,46,0,0,218,46,0,0,218,46,0,0,218,46,0,0,218,46,0,0,218,46,0,0,218,46,0,0,218,46,0,0,220,46,0,0,220,46,0,0,222,46,0,0,222,46,0,0,222,46,0,0,222,46,0,0,228,46,0,0,230,46,0,0,232,46,0,0,232,46,0,0,238,46,0,0,240,46,0,0,240,46,0,0,240,46,0,0,242,46,0,0,244,46,0,0,244,46,0,0,246,46,0,0,248,46,0,0,250,46,0,0,250,46,0,0,250,46,0,0,252,46,0,0,254,46,0,0,254,46,0,0,4,47,0,0,4,47,0,0,6,47,0,0,6,47,0,0,6,47,0,0,6,47,0,0,8,47,0,0,8,47,0,0,8,47,0,0,10,47,0,0,12,47,0,0,12,47,0,0,14,47,0,0,14,47,0,0,16,47,0,0,18,47,0,0,18,47,0,0,22,47,0,0,22,47,0,0,22,47,0,0,26,47,0,0,26,47,0,0,26,47,0,0,26,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,28,47,0,0,32,47,0,0,32,47,0,0,32,47,0,0,32,47,0,0,34,47,0,0,34,47,0,0,34,47,0,0,34,47,0,0,34,47,0,0,34,47,0,0,34,47,0,0,36,47,0,0,40,47,0,0,40,47,0,0,40,47,0,0,40,47,0,0,40,47,0,0,42,47,0,0,42,47,0,0,44,47,0,0,46,47,0,0,48,47,0,0,48,47,0,0,50,47,0,0,52,47,0,0,52,47,0,0,52,47,0,0,54,47,0,0,54,47,0,0,54,47,0,0,54,47,0,0,54,47,0,0,56,47,0,0,56,47,0,0,56,47,0,0,58,47,0,0,60,47,0,0,62,47,0,0,62,47,0,0,62,47,0,0,62,47,0,0,66,47,0,0,68,47,0,0,68,47,0,0,70,47,0,0,70,47,0,0,74,47,0,0,76,47,0,0,78,47,0,0,80,47,0,0,80,47,0,0,82,47,0,0,82,47,0,0,82,47,0,0,82,47,0,0,82,47,0,0,82,47,0,0,82,47,0,0,86,47,0,0,86,47,0,0,86,47,0,0,88,47,0,0,90,47,0,0,90,47,0,0,90,47,0,0,92,47,0,0,92,47,0,0,94,47,0,0,96,47,0,0,96,47,0,0,98,47,0,0,98,47,0,0,102,47,0,0,102,47,0,0,104,47,0,0,104,47,0,0,106,47,0,0,108,47,0,0,112,47,0,0,112,47,0,0,114,47,0,0,114,47,0,0,114,47,0,0,118,47,0,0,120,47,0,0,120,47,0,0,120,47,0,0,120,47,0,0,120,47,0,0,120,47,0,0,122,47,0,0,124,47,0,0,124,47,0,0,124,47,0,0,124,47,0,0,124,47,0,0,124,47,0,0,124,47,0,0,126,47,0,0,130,47,0,0,130,47,0,0,130,47,0,0,132,47,0,0,138,47,0,0,138,47,0,0,138,47,0,0,138,47,0,0,138,47,0,0,140,47,0,0,140,47,0,0,142,47,0,0,142,47,0,0,142,47,0,0,144,47,0,0,144,47,0,0,146,47,0,0,148,47,0,0,152,47,0,0,152,47,0,0,152,47,0,0,154,47,0,0,156,47,0,0,156,47,0,0,156,47,0,0,158,47,0,0,158,47,0,0,158,47,0,0,158,47,0,0,158,47,0,0,158,47,0,0,158,47,0,0,164,47,0,0,164,47,0,0,164,47,0,0,164,47,0,0,166,47,0,0,166,47,0,0,170,47,0,0,172,47,0,0,178,47,0,0,182,47,0,0,182,47,0,0,184,47,0,0,184,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,190,47,0,0,194,47,0,0,196,47,0,0,198,47,0,0,200,47,0,0,200,47,0,0,200,47,0,0,200,47,0,0,200,47,0,0,202,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,206,47,0,0,208,47,0,0,208,47,0,0,208,47,0,0,208,47,0,0,208,47,0,0,210,47,0,0,210,47,0,0,212,47,0,0,214,47,0,0,214,47,0,0,216,47,0,0,216,47,0,0,218,47,0,0,220,47,0,0,222,47,0,0,224,47,0,0,224,47,0,0,224,47,0,0,224,47,0,0,224,47,0,0,224,47,0,0,226,47,0,0,230,47,0,0,234,47,0,0,238,47,0,0,238,47,0,0,238,47,0,0,240,47,0,0,242,47,0,0,242,47,0,0,242,47,0,0,246,47,0,0,246,47,0,0,246,47,0,0,248,47,0,0,250,47,0,0,252,47,0,0,254,47,0,0,254,47,0,0,0,48,0,0,0,48,0,0,0,48,0,0,0,48,0,0,0,48,0,0,0,48,0,0,2,48,0,0,4,48,0,0,4,48,0,0,4,48,0,0,4,48,0,0,4,48,0,0,4,48,0,0,8,48,0,0,10,48,0,0,12,48,0,0,14,48,0,0,14,48,0,0,16,48,0,0,16,48,0,0,20,48,0,0,20,48,0,0,20,48,0,0,24,48,0,0,26,48,0,0,26,48,0,0,30,48,0,0,32,48,0,0,32,48,0,0,34,48,0,0,36,48,0,0,36,48,0,0,36,48,0,0,36,48,0,0,36,48,0,0,38,48,0,0,38,48,0,0,40,48,0,0,40,48,0,0,40,48,0,0,42,48,0,0,42,48,0,0,42,48,0,0,42,48,0,0,44,48,0,0,44,48,0,0,44,48,0,0,44,48,0,0,46,48,0,0,48,48,0,0,50,48,0,0,52,48,0,0,54,48,0,0,54,48,0,0,54,48,0,0,56,48,0,0,58,48,0,0,58,48,0,0,60,48,0,0,62,48,0,0,64,48,0,0,64,48,0,0,64,48,0,0,64,48,0,0,64,48,0,0,64,48,0,0,64,48,0,0,66,48,0,0,66,48,0,0,66,48,0,0,66,48,0,0,66,48,0,0,68,48,0,0,68,48,0,0,70,48,0,0,70,48,0,0,70,48,0,0,74,48,0,0,74,48,0,0,78,48,0,0,78,48,0,0,78,48,0,0,80,48,0,0,80,48,0,0,80,48,0,0,80,48,0,0,84,48,0,0,86,48,0,0,88,48,0,0,88,48,0,0,90,48,0,0,90,48,0,0,92,48,0,0,92,48,0,0,92,48,0,0,92,48,0,0,92,48,0,0,92,48,0,0,92,48,0,0,94,48,0,0,96,48,0,0,96,48,0,0,98,48,0,0,98,48,0,0,100,48,0,0,100,48,0,0,102,48,0,0,102,48,0,0,102,48,0,0,104,48,0,0,104,48,0,0,104,48,0,0,104,48,0,0,104,48,0,0,104,48,0,0,104,48,0,0,106,48,0,0,108,48,0,0,110,48,0,0,110,48,0,0,112,48,0,0,112,48,0,0,114,48,0,0,116,48,0,0,116,48,0,0,116,48,0,0,118,48,0,0,118,48,0,0,120,48,0,0,120,48,0,0,122,48,0,0,122,48,0,0,122,48,0,0,124,48,0,0,126,48,0,0,126,48,0,0,126,48,0,0,130,48,0,0,130,48,0,0,130,48,0,0,130,48,0,0,138,48,0,0,138,48,0,0,138,48,0,0,140,48,0,0,140,48,0,0,142,48,0,0,144,48,0,0,144,48,0,0,144,48,0,0,144,48,0,0,144,48,0,0,144,48,0,0,146,48,0,0,146,48,0,0,146,48,0,0,146,48,0,0,146,48,0,0,146,48,0,0,146,48,0,0,148,48,0,0,148,48,0,0,152,48,0,0,154,48,0,0,154,48,0,0,154,48,0,0,160,48,0,0,160,48,0,0,160,48,0,0,164,48,0,0,164,48,0,0,166,48,0,0,170,48,0,0,170,48,0,0,172,48,0,0,174,48,0,0,174,48,0,0,174,48,0,0,174,48,0,0,174,48,0,0,174,48,0,0,174,48,0,0,174,48,0,0,176,48,0,0,176,48,0,0,178,48,0,0,180,48,0,0,180,48,0,0,180,48,0,0,184,48,0,0,186,48,0,0,186,48,0,0,186,48,0,0,186,48,0,0,186,48,0,0,186,48,0,0,186,48,0,0,188,48,0,0,188,48,0,0,188,48,0,0,190,48,0,0,190,48,0,0,190,48,0,0,190,48,0,0,192,48,0,0,192,48,0,0,192,48,0,0,194,48,0,0,194,48,0,0,194,48,0,0,196,48,0,0,198,48,0,0,198,48,0,0,198,48,0,0,198,48,0,0,198,48,0,0,200,48,0,0,200,48,0,0,202,48,0,0,204,48,0,0,206,48,0,0,208,48,0,0,210,48,0,0,212,48,0,0,214,48,0,0,216,48,0,0,216,48,0,0,218,48,0,0,218,48,0,0,218,48,0,0,218,48,0,0,218,48,0,0,218,48,0,0,220,48,0,0,222,48,0,0,222,48,0,0,222,48,0,0,222,48,0,0,222,48,0,0,222,48,0,0,224,48,0,0,224,48,0,0,226,48,0,0,226,48,0,0,226,48,0,0,226,48,0,0,230,48,0,0,230,48,0,0,230,48,0,0,230,48,0,0,230,48,0,0,232,48,0,0,232,48,0,0,234,48,0,0,234,48,0,0,234,48,0,0,234,48,0,0,236,48,0,0,238,48,0,0,240,48,0,0,240,48,0,0,240,48,0,0,242,48,0,0,244,48,0,0,246,48,0,0,248,48,0,0,248,48,0,0,250,48,0,0,250,48,0,0,250,48,0,0,250,48,0,0,250,48,0,0,250,48,0,0,250,48,0,0,252,48,0,0,252,48,0,0,252,48,0,0,254,48,0,0,254,48,0,0,0,49,0,0,2,49,0,0,2,49,0,0,2,49,0,0,2,49,0,0,4,49,0,0,6,49,0,0,6,49,0,0,6,49,0,0,10,49,0,0,10,49,0,0,10,49,0,0,12,49,0,0,12,49,0,0,14,49,0,0,14,49,0,0,14,49,0,0,14,49,0,0,16,49,0,0,16,49,0,0,16,49,0,0,16,49,0,0,16,49,0,0,16,49,0,0,16,49,0,0,22,49,0,0,22,49,0,0,22,49,0,0,22,49,0,0,24,49,0,0,26,49,0,0,28,49,0,0,28,49,0,0,32,49,0,0,32,49,0,0,34,49,0,0,34,49,0,0,34,49,0,0,36,49,0,0,36,49,0,0,36,49,0,0,36,49,0,0,38,49,0,0,40,49,0,0,40,49,0,0,40,49,0,0,44,49,0,0,44,49,0,0,44,49,0,0,46,49,0,0,48,49,0,0,48,49,0,0,50,49,0,0,50,49,0,0,52,49,0,0,52,49,0,0,52,49,0,0,52,49,0,0,52,49,0,0,52,49,0,0,54,49,0,0,54,49,0,0,54,49,0,0,54,49,0,0,54,49,0,0,56,49,0,0,58,49,0,0,60,49,0,0,62,49,0,0,62,49,0,0,62,49,0,0,62,49,0,0,64,49,0,0,64,49,0,0,66,49,0,0,68,49,0,0,68,49,0,0,68,49,0,0,70,49,0,0,72,49,0,0,74,49,0,0,74,49,0,0,74,49,0,0,78,49,0,0,78,49,0,0,78,49,0,0,80,49,0,0,82,49,0,0,82,49,0,0,82,49,0,0,84,49,0,0,84,49,0,0,88,49,0,0,88,49,0,0,88,49,0,0,88,49,0,0,92,49,0,0,92,49,0,0,96,49,0,0,96,49,0,0,96,49,0,0,98,49,0,0,98,49,0,0,98,49,0,0,100,49,0,0,100,49,0,0,100,49,0,0,100,49,0,0,102,49,0,0,108,49,0,0,108,49,0,0,110,49,0,0,112,49,0,0,112,49,0,0,112,49,0,0,114,49,0,0,116,49,0,0,118,49,0,0,118,49,0,0,118,49,0,0,120,49,0,0,120,49,0,0,120,49,0,0,120,49,0,0,120,49,0,0,122,49,0,0,126,49,0,0,128,49,0,0,132,49,0,0,134,49,0,0,134,49,0,0,136,49,0,0,138,49,0,0,142,49,0,0,142,49,0,0,144,49,0,0,148,49,0,0,148,49,0,0,148,49,0,0,148,49,0,0,148,49,0,0,148,49,0,0,148,49,0,0,150,49,0,0,150,49,0,0,150,49,0,0,150,49,0,0,150,49,0,0,156,49,0,0,158,49,0,0,158,49,0,0,160,49,0,0,160,49,0,0,162,49,0,0,162,49,0,0,162,49,0,0,164,49,0,0,164,49,0,0,164,49,0,0,164,49,0,0,166,49,0,0,166,49,0,0,166,49,0,0,166,49,0,0,166,49,0,0,166,49,0,0,166,49,0,0,168,49,0,0,170,49,0,0,170,49,0,0,170,49,0,0,174,49,0,0,176,49,0,0,176,49,0,0,176,49,0,0,180,49,0,0,180,49,0,0,180,49,0,0,180,49,0,0,182,49,0,0,186,49,0,0,186,49,0,0,188,49,0,0,188,49,0,0,190,49,0,0,190,49,0,0,190,49,0,0,190,49,0,0,190,49,0,0,192,49,0,0,192,49,0,0,192,49,0,0,194,49,0,0,196,49,0,0,196,49,0,0,196,49,0,0,198,49,0,0,198,49,0,0,204,49,0,0,206,49,0,0,208,49,0,0,210,49,0,0,212,49,0,0,212,49,0,0,212,49,0,0,212,49,0,0,220,49,0,0,222,49,0,0,222,49,0,0,222,49,0,0,222,49,0,0,222,49,0,0,222,49,0,0,222,49,0,0,226,49,0,0,228,49,0,0,232,49,0,0,232,49,0,0,234,49,0,0,240,49,0,0,240,49,0,0,240,49,0,0,244,49,0,0,244,49,0,0,246,49,0,0,248,49,0,0,250,49,0,0,252,49,0,0,252,49,0,0,252,49,0,0,252,49,0,0,252,49,0,0,252,49,0,0,0,50,0,0,2,50,0,0,2,50,0,0,4,50,0,0,8,50,0,0,8,50,0,0,8,50,0,0,12,50,0,0,12,50,0,0,14,50,0,0,14,50,0,0,14,50,0,0,14,50,0,0,16,50,0,0,16,50,0,0,16,50,0,0,16,50,0,0,18,50,0,0,18,50,0,0,18,50,0,0,18,50,0,0,18,50,0,0,18,50,0,0,18,50,0,0,18,50,0,0,18,50,0,0,20,50,0,0,24,50,0,0,26,50,0,0,26,50,0,0,26,50,0,0,26,50,0,0,28,50,0,0,28,50,0,0,30,50,0,0,32,50,0,0,34,50,0,0,40,50,0,0,42,50,0,0,44,50,0,0,44,50,0,0,44,50,0,0,46,50,0,0,46,50,0,0,46,50,0,0,48,50,0,0,50,50,0,0,52,50,0,0,52,50,0,0,52,50,0,0,54,50,0,0,56,50,0,0,56,50,0,0,56,50,0,0,56,50,0,0,56,50,0,0,58,50,0,0,58,50,0,0,58,50,0,0,58,50,0,0,58,50,0,0,58,50,0,0,60,50,0,0,60,50,0,0,60,50,0,0,60,50,0,0,64,50,0,0,64,50,0,0,66,50,0,0,66,50,0,0,66,50,0,0,66,50,0,0,72,50,0,0,74,50,0,0,74,50,0,0,74,50,0,0,76,50,0,0,76,50,0,0,78,50,0,0,78,50,0,0,78,50,0,0,78,50,0,0,80,50,0,0,84,50,0,0,84,50,0,0,84,50,0,0,84,50,0,0,88,50,0,0,88,50,0,0,90,50,0,0,94,50,0,0,94,50,0,0,94,50,0,0,96,50,0,0,96,50,0,0,98,50,0,0,98,50,0,0,98,50,0,0,98,50,0,0,98,50,0,0,100,50,0,0,104,50,0,0,106,50,0,0,106,50,0,0,106,50,0,0,108,50,0,0,108,50,0,0,108,50,0,0,108,50,0,0,108,50,0,0,108,50,0,0,112,50,0,0,112,50,0,0,112,50,0,0,114,50,0,0,116,50,0,0,116,50,0,0,116,50,0,0,116,50,0,0,118,50,0,0,120,50,0,0,122,50,0,0,124,50,0,0,124,50,0,0,124,50,0,0,124,50,0,0,126,50,0,0,126,50,0,0,128,50,0,0,128,50,0,0,128,50,0,0,128,50,0,0,128,50,0,0,130,50,0,0,130,50,0,0,130,50,0,0,132,50,0,0,132,50,0,0,132,50,0,0,134,50,0,0,134,50,0,0,134,50,0,0,138,50,0,0,140,50,0,0,140,50,0,0,142,50,0,0,144,50,0,0,144,50,0,0,144,50,0,0,146,50,0,0,146,50,0,0,146,50,0,0,146,50,0,0,146,50,0,0,148,50,0,0,152,50,0,0,152,50,0,0,152,50,0,0,156,50,0,0,156,50,0,0,156,50,0,0,156,50,0,0,156,50,0,0,160,50,0,0,160,50,0,0,164,50,0,0,164,50,0,0,168,50,0,0,168,50,0,0,168,50,0,0,168,50,0,0,168,50,0,0,170,50,0,0,172,50,0,0,174,50,0,0,176,50,0,0,176,50,0,0,178,50,0,0,178,50,0,0,180,50,0,0,180,50,0,0,180,50,0,0,180,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,182,50,0,0,184,50,0,0,186,50,0,0,188,50,0,0,188,50,0,0,188,50,0,0,188,50,0,0,188,50,0,0,194,50,0,0,194,50,0,0,196,50,0,0,198,50,0,0,198,50,0,0,198,50,0,0,198,50,0,0,200,50,0,0,202,50,0,0,208,50,0,0,208,50,0,0,208,50,0,0,212,50,0,0,212,50,0,0,212,50,0,0,214,50,0,0,216,50,0,0,216,50,0,0,218,50,0,0,218,50,0,0,218,50,0,0,220,50,0,0,220,50,0,0,220,50,0,0,222,50,0,0,222,50,0,0,222,50,0,0,222,50,0,0,222,50,0,0,224,50,0,0,226,50,0,0,226,50,0,0,226,50,0,0,226,50,0,0,226,50,0,0,226,50,0,0,226,50,0,0,226,50,0,0,226,50,0,0,228,50,0,0,228,50,0,0,228,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,230,50,0,0,232,50,0,0,234,50,0,0,234,50,0,0,234,50,0,0,234,50,0,0,236,50,0,0,236,50,0,0,238,50,0,0,240,50,0,0,242,50,0,0,242,50,0,0,242,50,0,0,242,50,0,0,244,50,0,0,244,50,0,0,248,50,0,0,248,50,0,0,248,50,0,0,250,50,0,0,252,50,0,0,254,50,0,0,2,51,0,0,2,51,0,0,4,51,0,0,6,51,0,0,6,51,0,0,8,51,0,0,8,51,0,0,10,51,0,0,10,51,0,0,10,51,0,0,12,51,0,0,12,51,0,0,12,51,0,0,14,51,0,0,16,51,0,0,16,51,0,0,16,51,0,0,18,51,0,0,18,51,0,0,18,51,0,0,18,51,0,0,24,51,0,0,24,51,0,0,24,51,0,0,26,51,0,0,26,51,0,0,28,51,0,0,28,51,0,0,30,51,0,0,32,51,0,0,40,51,0,0,46,51,0,0,48,51,0,0,48,51,0,0,50,51,0,0,50,51,0,0,50,51,0,0,52,51,0,0,52,51,0,0,52,51,0,0,56,51,0,0,56,51,0,0,56,51,0,0,58,51,0,0,58,51,0,0,58,51,0,0,60,51,0,0,62,51,0,0,62,51,0,0,62,51,0,0,64,51,0,0,66,51,0,0,66,51,0,0,66,51,0,0,70,51,0,0,72,51,0,0,72,51,0,0,72,51,0,0,74,51,0,0,74,51,0,0,80,51,0,0,82,51,0,0,82,51,0,0,82,51,0,0,82,51,0,0,82,51,0,0,82,51,0,0,82,51,0,0,82,51,0,0,82,51,0,0,82,51,0,0,86,51,0,0,86,51,0,0,90,51,0,0,92,51,0,0,92,51,0,0,94,51,0,0,94,51,0,0,94,51,0,0,96,51,0,0,96,51,0,0,96,51,0,0,96,51,0,0,98,51,0,0,102,51,0,0,102,51,0,0,102,51,0,0,104,51,0,0,104,51,0,0,104,51,0,0,104,51,0,0,106,51,0,0,106,51,0,0,108,51,0,0,108,51,0,0,112,51,0,0,112,51,0,0,112,51,0,0,114,51,0,0,116,51,0,0,118,51,0,0,118,51,0,0,118,51,0,0,118,51,0,0,120,51,0,0,122,51,0,0,122,51,0,0,122,51,0,0,122,51,0,0,122,51,0,0,124,51,0,0,124,51,0,0,124,51,0,0,126,51,0,0,128,51,0,0,130,51,0,0,130,51,0,0,132,51,0,0,134,51,0,0,136,51,0,0,138,51,0,0,140,51,0,0,140,51,0,0,142,51,0,0,144,51,0,0,146,51,0,0,146,51,0,0,146,51,0,0,146,51,0,0,146,51,0,0,146,51,0,0,148,51,0,0,152,51,0,0,154,51,0,0,156,51,0,0,156,51,0,0,158,51,0,0,160,51,0,0,160,51,0,0,162,51,0,0,162,51,0,0,162,51,0,0,164,51,0,0,164,51,0,0,164,51,0,0,164,51,0,0,164,51,0,0,164,51,0,0,164,51,0,0,166,51,0,0,168,51,0,0,168,51,0,0,168,51,0,0,170,51,0,0,174,51,0,0,174,51,0,0,174,51,0,0,176,51,0,0,180,51,0,0,184,51,0,0,186,51,0,0,186,51,0,0,188,51,0,0,190,51,0,0,190,51,0,0,190,51,0,0,190,51,0,0,190,51,0,0,190,51,0,0,192,51,0,0,194,51,0,0,194,51,0,0,196,51,0,0,198,51,0,0,200,51,0,0,200,51,0,0,202,51,0,0,202,51,0,0,202,51,0,0,206,51,0,0,208,51,0,0,214,51,0,0,214,51,0,0,214,51,0,0,216,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,218,51,0,0,220,51,0,0,222,51,0,0,222,51,0,0,222,51,0,0,222,51,0,0,222,51,0,0,224,51,0,0,226,51,0,0,226,51,0,0,228,51,0,0,230,51,0,0,232,51,0,0,232,51,0,0,232,51,0,0,232,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,236,51,0,0,238,51,0,0,240,51,0,0,240,51,0,0,242,51,0,0,242,51,0,0,242,51,0,0,242,51,0,0,246,51,0,0,248,51,0,0,248,51,0,0,248,51,0,0,250,51,0,0,250,51,0,0,252,51,0,0,252,51,0,0,252,51,0,0,252,51,0,0,252,51,0,0,252,51,0,0,254,51,0,0,254,51,0,0,2,52,0,0,2,52,0,0,4,52,0,0,4,52,0,0,4,52,0,0,4,52,0,0,4,52,0,0,4,52,0,0,4,52,0,0,8,52,0,0,8,52,0,0,8,52,0,0,8,52,0,0,8,52,0,0,10,52,0,0,10,52,0,0,10,52,0,0,10,52,0,0,10,52,0,0,14,52,0,0,14,52,0,0,14,52,0,0,20,52,0,0,22,52,0,0,26,52,0,0,26,52,0,0,26,52,0,0,26,52,0,0,30,52,0,0,30,52,0,0,34,52,0,0,34,52,0,0,38,52,0,0,40,52,0,0,40,52,0,0,40,52,0,0,42,52,0,0,42,52,0,0,42,52,0,0,44,52,0,0,44,52,0,0,44,52,0,0,44,52,0,0,44,52,0,0,44,52,0,0,46,52,0,0,46,52,0,0,48,52,0,0,52,52,0,0,54,52,0,0,54,52,0,0,54,52,0,0,56,52,0,0,56,52,0,0,56,52,0,0,56,52,0,0,56,52,0,0,60,52,0,0,62,52,0,0,62,52,0,0,62,52,0,0,62,52,0,0,66,52,0,0,66,52,0,0,70,52,0,0,72,52,0,0,72,52,0,0,72,52,0,0,72,52,0,0,72,52,0,0,76,52,0,0,76,52,0,0,76,52,0,0,76,52,0,0,76,52,0,0,80,52,0,0,80,52,0,0,80,52,0,0,82,52,0,0,84,52,0,0,86,52,0,0,86,52,0,0,88,52,0,0,88,52,0,0,88,52,0,0,92,52,0,0,92,52,0,0,94,52,0,0,94,52,0,0,94,52,0,0,96,52,0,0,98,52,0,0,98,52,0,0,100,52,0,0,102,52,0,0,106,52,0,0,108,52,0,0,108,52,0,0,112,52,0,0,118,52,0,0,118,52,0,0,118,52,0,0,120,52,0,0,122,52,0,0,124,52,0,0,126,52,0,0,126,52,0,0,126,52,0,0,126,52,0,0,126,52,0,0,126,52,0,0,126,52,0,0,126,52,0,0,128,52,0,0,130,52,0,0,130,52,0,0,130,52,0,0,134,52,0,0,136,52,0,0,140,52,0,0,140,52,0,0,140,52,0,0,142,52,0,0,142,52,0,0,142,52,0,0,146,52,0,0,148,52,0,0,148,52,0,0,148,52,0,0,150,52,0,0,150,52,0,0,150,52,0,0,150,52,0,0,150,52,0,0,154,52,0,0,158,52,0,0,160,52,0,0,160,52,0,0,160,52,0,0,160,52,0,0,160,52,0,0,160,52,0,0,162,52,0,0,164,52,0,0,164,52,0,0,164,52,0,0,166,52,0,0,168,52,0,0,170,52,0,0,170,52,0,0,172,52,0,0,172,52,0,0,174,52,0,0,176,52,0,0,178,52,0,0,178,52,0,0,178,52,0,0,180,52,0,0,180,52,0,0,182,52,0,0,182,52,0,0,182,52,0,0,182,52,0,0,182,52,0,0,182,52,0,0,182,52,0,0,182,52,0,0,184,52,0,0,184,52,0,0,186,52,0,0,186,52,0,0,186,52,0,0,186,52,0,0,186,52,0,0,186,52,0,0,188,52,0,0,188,52,0,0,190,52,0,0,192,52,0,0,194,52,0,0,194,52,0,0,196,52,0,0,198,52,0,0,198,52,0,0,200,52,0,0,204,52,0,0,206,52,0,0,208,52,0,0,208,52,0,0,208,52,0,0,208,52,0,0,208,52,0,0,208,52,0,0,208,52,0,0,210,52,0,0,212,52,0,0,214,52,0,0,214,52,0,0,214,52,0,0,214,52,0,0,214,52,0,0,214,52,0,0,214,52,0,0,214,52,0,0,216,52,0,0,218,52,0,0,218,52,0,0,222,52,0,0,222,52,0,0,224,52,0,0,224,52,0,0,224,52,0,0,226,52,0,0,228,52,0,0,230,52,0,0,234,52,0,0,234,52,0,0,234,52,0,0,234,52,0,0,234,52,0,0,236,52,0,0,236,52,0,0,238,52,0,0,238,52,0,0,238,52,0,0,238,52,0,0,238,52,0,0,238,52,0,0,240,52,0,0,240,52,0,0,242,52,0,0,242,52,0,0,244,52,0,0,244,52,0,0,246,52,0,0,248,52,0,0,248,52,0,0,248,52,0,0,248,52,0,0,248,52,0,0,248,52,0,0,248,52,0,0,248,52,0,0,248,52,0,0,250,52,0,0,250,52,0,0,250,52,0,0,252,52,0,0,0,53,0,0,0,53,0,0,2,53,0,0,4,53,0,0,6,53,0,0,14,53,0,0,14,53,0,0,14,53,0,0,16,53,0,0,16,53,0,0,16,53,0,0,16,53,0,0,16,53,0,0,16,53,0,0,16,53,0,0,16,53,0,0,16,53,0,0,16,53,0,0,18,53,0,0,20,53,0,0,20,53,0,0,20,53,0,0,20,53,0,0,20,53,0,0,20,53,0,0,20,53,0,0,20,53,0,0,24,53,0,0,26,53,0,0,26,53,0,0,30,53,0,0,34,53,0,0,34,53,0,0,34,53,0,0,34,53,0,0,36,53,0,0,38,53,0,0,40,53,0,0,42,53,0,0,42,53,0,0,42,53,0,0,42,53,0,0,42,53,0,0,42,53,0,0,42,53,0,0,44,53,0,0,44,53,0,0,50,53,0,0,50,53,0,0,50,53,0,0,52,53,0,0,54,53,0,0,54,53,0,0,54,53,0,0,54,53,0,0,58,53,0,0,58,53,0,0,58,53,0,0,60,53,0,0,64,53,0,0,68,53,0,0,70,53,0,0,72,53,0,0,72,53,0,0,74,53,0,0,78,53,0,0,78,53,0,0,78,53,0,0,78,53,0,0,78,53,0,0,78,53,0,0,78,53,0,0,82,53,0,0,84,53,0,0,84,53,0,0,84,53,0,0,84,53,0,0,84,53,0,0,84,53,0,0,86,53,0,0,88,53,0,0,88,53,0,0,88,53,0,0,88,53,0,0,88,53,0,0,92,53,0,0,96,53,0,0,100,53,0,0,100,53,0,0,104,53,0,0,106,53,0,0,108,53,0,0,108,53,0,0,116,53,0,0,118,53,0,0,120,53,0,0,120,53,0,0,124,53,0,0,126,53,0,0,128,53,0,0,128,53,0,0,128,53,0,0,128,53,0,0,130,53,0,0,130,53,0,0,132,53,0,0,132,53,0,0,132,53,0,0,134,53,0,0,136,53,0,0,138,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,140,53,0,0,142,53,0,0,142,53,0,0,142,53,0,0,142,53,0,0,142,53,0,0,142,53,0,0,142,53,0,0,142,53,0,0,144,53,0,0,146,53,0,0,146,53,0,0,146,53,0,0,146,53,0,0,146,53,0,0,152,53,0,0,152,53,0,0,152,53,0,0,152,53,0,0,154,53,0,0,154,53,0,0,154,53,0,0,154,53,0,0,154,53,0,0,154,53,0,0,156,53,0,0,156,53,0,0,156,53,0,0,156,53,0,0,158,53,0,0,158,53,0,0,160,53,0,0,160,53,0,0,160,53,0,0,160,53,0,0,162,53,0,0,162,53,0,0,162,53,0,0,162,53,0,0,162,53,0,0,162,53,0,0,162,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,164,53,0,0,166,53,0,0,168,53,0,0,168,53,0,0,168,53,0,0,168,53,0,0,168,53,0,0,168,53,0,0,168,53,0,0,170,53,0,0,170,53,0,0,172,53,0,0,174,53,0,0,174,53,0,0,176,53,0,0,176,53,0,0,176,53,0,0,176,53,0,0,176,53,0,0,176,53,0,0,176,53,0,0,178,53,0,0,180,53,0,0,180,53,0,0,184,53,0,0,184,53,0,0,184,53,0,0,186,53,0,0,188,53,0,0,188,53,0,0,190,53,0,0,190,53,0,0,190,53,0,0,192,53,0,0,194,53,0,0,194,53,0,0,194,53,0,0,194,53,0,0,196,53,0,0,196,53,0,0,196,53,0,0,196,53,0,0,198,53,0,0,200,53,0,0,206,53,0,0,206,53,0,0,206,53,0,0,210,53,0,0,210,53,0,0,212,53,0,0,214,53,0,0,214,53,0,0,214,53,0,0,214,53,0,0,214,53,0,0,214,53,0,0,216,53,0,0,218,53,0,0,218,53,0,0,218,53,0,0,218,53,0,0,220,53,0,0,222,53,0,0,222,53,0,0,224,53,0,0,224,53,0,0,226,53,0,0,226,53,0,0,226,53,0,0,228,53,0,0,228,53,0,0,230,53,0,0,230,53,0,0,232,53,0,0,234,53,0,0,234,53,0,0,234,53,0,0,234,53,0,0,238,53,0,0,238,53,0,0,238,53,0,0,238,53,0,0,240,53,0,0,244,53,0,0,246,53,0,0,246,53,0,0,246,53,0,0,248,53,0,0,248,53,0,0,252,53,0,0,252,53,0,0,252,53,0,0,252,53,0,0,254,53,0,0,254,53,0,0,254,53,0,0,254,53,0,0,254,53,0,0,0,54,0,0,0,54,0,0,0,54,0,0,2,54,0,0,2,54,0,0,2,54,0,0,2,54,0,0,6,54,0,0,8,54,0,0,8,54,0,0,8,54,0,0,8,54,0,0,10,54,0,0,10,54,0,0,10,54,0,0,10,54,0,0,10,54,0,0,10,54,0,0,10,54,0,0,10,54,0,0,10,54,0,0,14,54,0,0,14,54,0,0,14,54,0,0,14,54,0,0,18,54,0,0,18,54,0,0,18,54,0,0,22,54,0,0,22,54,0,0,24,54,0,0,24,54,0,0,24,54,0,0,24,54,0,0,24,54,0,0,24,54,0,0,24,54,0,0,24,54,0,0,26,54,0,0,30,54,0,0,30,54,0,0,34,54,0,0,36,54,0,0,36,54,0,0,42,54,0,0,44,54,0,0,48,54,0,0,52,54,0,0,52,54,0,0,52,54,0,0,54,54,0,0,56,54,0,0,58,54,0,0,60,54,0,0,60,54,0,0,60,54,0,0,64,54,0,0,64,54,0,0,68,54,0,0,72,54,0,0,72,54,0,0,72,54,0,0,72,54,0,0,74,54,0,0,76,54,0,0,76,54,0,0,76,54,0,0,76,54,0,0,78,54,0,0,78,54,0,0,80,54,0,0,82,54,0,0,82,54,0,0,86,54,0,0,86,54,0,0,86,54,0,0,86,54,0,0,88,54,0,0,90,54,0,0,90,54,0,0,90,54,0,0,90,54,0,0,92,54,0,0,92,54,0,0,92,54,0,0,92,54,0,0,92,54,0,0,92,54,0,0,94,54,0,0,98,54,0,0,100,54,0,0,100,54,0,0,102,54,0,0,102,54,0,0,102,54,0,0,104,54,0,0,106,54,0,0,108,54,0,0,108,54,0,0,108,54,0,0,110,54,0,0,110,54,0,0,110,54,0,0,110,54,0,0,110,54,0,0,110,54,0,0,110,54,0,0,110,54,0,0,110,54,0,0,110,54,0,0,112,54,0,0,114,54,0,0,114,54,0,0,116,54,0,0,116,54,0,0,118,54,0,0,120,54,0,0,122,54,0,0,122,54,0,0,124,54,0,0,126,54,0,0,126,54,0,0,128,54,0,0,130,54,0,0,132,54,0,0,134,54,0,0,134,54,0,0,138,54,0,0,142,54,0,0,142,54,0,0,142,54,0,0,142,54,0,0,144,54,0,0,144,54,0,0,144,54,0,0,146,54,0,0,146,54,0,0,146,54,0,0,148,54,0,0,148,54,0,0,148,54,0,0,148,54,0,0,148,54,0,0,148,54,0,0,148,54,0,0,150,54,0,0,150,54,0,0,150,54,0,0,150,54,0,0,154,54,0,0,156,54,0,0,162,54,0,0,162,54,0,0,162,54,0,0,162,54,0,0,166,54,0,0,168,54,0,0,170,54,0,0,172,54,0,0,172,54,0,0,172,54,0,0,174,54,0,0,176,54,0,0,176,54,0,0,176,54,0,0,176,54,0,0,176,54,0,0,176,54,0,0,176,54,0,0,176,54,0,0,176,54,0,0,176,54,0,0,178,54,0,0,178,54,0,0,178,54,0,0,180,54,0,0,182,54,0,0,184,54,0,0,186,54,0,0,186,54,0,0,190,54,0,0,190,54,0,0,190,54,0,0,192,54,0,0,192,54,0,0,192,54,0,0,192,54,0,0,194,54,0,0,196,54,0,0,196,54,0,0,198,54,0,0,198,54,0,0,202,54,0,0,204,54,0,0,204,54,0,0,206,54,0,0,206,54,0,0,208,54,0,0,214,54,0,0,214,54,0,0,216,54,0,0,216,54,0,0,216,54,0,0,216,54,0,0,216,54,0,0,218,54,0,0,218,54,0,0,220,54,0,0,222,54,0,0,224,54,0,0,224,54,0,0,224,54,0,0,224,54,0,0,224,54,0,0,226,54,0,0,226,54,0,0,226,54,0,0,226,54,0,0,226,54,0,0,226,54,0,0,228,54,0,0,228,54,0,0,230,54,0,0,230,54,0,0,230,54,0,0,232,54,0,0,232,54,0,0,234,54,0,0,234,54,0,0,236,54,0,0,236,54,0,0,242,54,0,0,242,54,0,0,242,54,0,0,244,54,0,0,244,54,0,0,244,54,0,0,244,54,0,0,244,54,0,0,244,54,0,0,244,54,0,0,246,54,0,0,246,54,0,0,248,54,0,0,248,54,0,0,248,54,0,0,252,54,0,0,0,55,0,0,2,55,0,0,2,55,0,0,4,55,0,0,4,55,0,0,4,55,0,0,6,55,0,0,8,55,0,0,8,55,0,0,14,55,0,0,14,55,0,0,14,55,0,0,14,55,0,0,14,55,0,0,14,55,0,0,14,55,0,0,16,55,0,0,16,55,0,0,18,55,0,0,18,55,0,0,22,55,0,0,22,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,24,55,0,0,28,55,0,0,30,55,0,0,34,55,0,0,34,55,0,0,34,55,0,0,34,55,0,0,34,55,0,0,34,55,0,0,34,55,0,0,34,55,0,0,36,55,0,0,36,55,0,0,38,55,0,0,38,55,0,0,38,55,0,0,38,55,0,0,38,55,0,0,38,55,0,0,40,55,0,0,40,55,0,0,44,55,0,0,46,55,0,0,48,55,0,0,48,55,0,0,50,55,0,0,50,55,0,0,50,55,0,0,52,55,0,0,58,55,0,0,62,55,0,0,64,55,0,0,64,55,0,0,66,55,0,0,68,55,0,0,74,55,0,0,74,55,0,0,76,55,0,0,76,55,0,0,76,55,0,0,76,55,0,0,80,55,0,0,84,55,0,0,84,55,0,0,84,55,0,0,86,55,0,0,88,55,0,0,88,55,0,0,88,55,0,0,88,55,0,0,88,55,0,0,92,55,0,0,92,55,0,0,92,55,0,0,98,55,0,0,98,55,0,0,100,55,0,0,100,55,0,0,100,55,0,0,100,55,0,0,100,55,0,0,102,55,0,0,104,55,0,0,108,55,0,0,110,55,0,0,118,55,0,0,120,55,0,0,124,55,0,0,126,55,0,0,126,55,0,0,126,55,0,0,128,55,0,0,128,55,0,0,130,55,0,0,130,55,0,0,132,55,0,0,134,55,0,0,134,55,0,0,134,55,0,0,134,55,0,0,134,55,0,0,134,55,0,0,134,55,0,0,134,55,0,0,136,55,0,0,140,55,0,0,140,55,0,0,140,55,0,0,142,55,0,0,146,55,0,0,146,55,0,0,146,55,0,0,146,55,0,0,148,55,0,0,148,55,0,0,148,55,0,0,148,55,0,0,148,55,0,0,152,55,0,0,152,55,0,0,154,55,0,0,156,55,0,0,162,55,0,0,164,55,0,0,166,55,0,0,168,55,0,0,172,55,0,0,172,55,0,0,172,55,0,0,174,55,0,0,176,55,0,0,176,55,0,0,178,55,0,0,178,55,0,0,178,55,0,0,180,55,0,0,180,55,0,0,182,55,0,0,184,55,0,0,184,55,0,0,184,55,0,0,186,55,0,0,188,55,0,0,188,55,0,0,188,55,0,0,190,55,0,0,190,55,0,0,192,55,0,0,192,55,0,0,194,55,0,0,194,55,0,0,194,55,0,0,196,55,0,0,196,55,0,0,202,55,0,0,204,55,0,0,204,55,0,0,206,55,0,0,208,55,0,0,210,55,0,0,210,55,0,0,210,55,0,0,214,55,0,0,214,55,0,0,214,55,0,0,216,55,0,0,216,55,0,0,220,55,0,0,220,55,0,0,222,55,0,0,224,55,0,0,226,55,0,0,228,55,0,0,228,55,0,0,228,55,0,0,228,55,0,0,228,55,0,0,228,55,0,0,230,55,0,0,230,55,0,0,230,55,0,0,232,55,0,0,232,55,0,0,232,55,0,0,232,55,0,0,234,55,0,0,234,55,0,0,234,55,0,0,238,55,0,0,240,55,0,0,240,55,0,0,240,55,0,0,240,55,0,0,242,55,0,0,244,55,0,0,246,55,0,0,246,55,0,0,248,55,0,0,248,55,0,0,252,55,0,0,252,55,0,0,254,55,0,0,0,56,0,0,0,56,0,0,0,56,0,0,2,56,0,0,4,56,0,0,4,56,0,0,4,56,0,0,4,56,0,0,4,56,0,0,6,56,0,0,6,56,0,0,6,56,0,0,8,56,0,0,10,56,0,0,10,56,0,0,12,56,0,0,14,56,0,0,14,56,0,0,16,56,0,0,16,56,0,0,18,56,0,0,20,56,0,0,22,56,0,0,22,56,0,0,22,56,0,0,22,56,0,0,24,56,0,0,24,56,0,0,30,56,0,0,30,56,0,0,32,56,0,0,32,56,0,0,32,56,0,0,32,56,0,0,32,56,0,0,32,56,0,0,32,56,0,0,36,56,0,0,38,56,0,0,38,56,0,0,40,56,0,0,44,56,0,0,48,56,0,0,50,56,0,0,50,56,0,0,54,56,0,0,56,56,0,0,60,56,0,0,60,56,0,0,60,56,0,0,60,56,0,0,60,56,0,0,62,56,0,0,62,56,0,0,64,56,0,0,64,56,0,0,64,56,0,0,66,56,0,0,68,56,0,0,68,56,0,0,68,56,0,0,70,56,0,0,70,56,0,0,70,56,0,0,70,56,0,0,70,56,0,0,70,56,0,0,70,56,0,0,72,56,0,0,72,56,0,0,74,56,0,0,74,56,0,0,74,56,0,0,74,56,0,0,74,56,0,0,74,56,0,0,74,56,0,0,74,56,0,0,74,56,0,0,74,56,0,0,76,56,0,0,76,56,0,0,78,56,0,0,80,56,0,0,80,56,0,0,82,56,0,0,82,56,0,0,84,56,0,0,84,56,0,0,86,56,0,0,86,56,0,0,86,56,0,0,88,56,0,0,92,56,0,0,96,56,0,0,98,56,0,0,98,56,0,0,100,56,0,0,102,56,0,0,102,56,0,0,102,56,0,0,104,56,0,0,110,56,0,0,110,56,0,0,110,56,0,0,110,56,0,0,112,56,0,0,116,56,0,0,118,56,0,0,120,56,0,0,120,56,0,0,120,56,0,0,122,56,0,0,122,56,0,0,124,56,0,0,124,56,0,0,124,56,0,0,126,56,0,0,126,56,0,0,126,56,0,0,126,56,0,0,126,56,0,0,128,56,0,0,130,56,0,0,132,56,0,0,136,56,0,0,140,56,0,0,140,56,0,0,140,56,0,0,140,56,0,0,142,56,0,0,144,56,0,0,148,56,0,0,148,56,0,0,148,56,0,0,150,56,0,0,150,56,0,0,150,56,0,0,150,56,0,0,152,56,0,0,152,56,0,0,152,56,0,0,152,56,0,0,152,56,0,0,152,56,0,0,152,56,0,0,154,56,0,0,156,56,0,0,156,56,0,0,158,56,0,0,158,56,0,0,158,56,0,0,158,56,0,0,158,56,0,0,158,56,0,0,162,56,0,0,166,56,0,0,166,56,0,0,168,56,0,0,168,56,0,0,168,56,0,0,168,56,0,0,168,56,0,0,170,56,0,0,172,56,0,0,174,56,0,0,174,56,0,0,174,56,0,0,174,56,0,0,176,56,0,0,178,56,0,0,178,56,0,0,178,56,0,0,178,56,0,0,178,56,0,0,180,56,0,0,184,56,0,0,186,56,0,0,188,56,0,0,188,56,0,0,188,56,0,0,190,56,0,0,192,56,0,0,192,56,0,0,192,56,0,0,192,56,0,0,194,56,0,0,200,56,0,0,202,56,0,0,204,56,0,0,204,56,0,0,204,56,0,0,204,56,0,0,204,56,0,0,204,56,0,0,206,56,0,0,206,56,0,0,206,56,0,0,208,56,0,0,208,56,0,0,210,56,0,0,214,56,0,0,214,56,0,0,214,56,0,0,218,56,0,0,218,56,0,0,218,56,0,0,218,56,0,0,218,56,0,0,220,56,0,0,222,56,0,0,224,56,0,0,226,56,0,0,226,56,0,0,228,56,0,0,228,56,0,0,228,56,0,0,228,56,0,0,228,56,0,0,230,56,0,0,232,56,0,0,232,56,0,0,232,56,0,0,234,56,0,0,238,56,0,0,240,56,0,0,240,56,0,0,242,56,0,0,244,56,0,0,250,56,0,0,250,56,0,0,250,56,0,0,254,56,0,0,0,57,0,0,0,57,0,0,0,57,0,0,0,57,0,0,2,57,0,0,2,57,0,0,4,57,0,0,4,57,0,0,4,57,0,0,4,57,0,0,8,57,0,0,8,57,0,0,8,57,0,0,8,57,0,0,8,57,0,0,8,57,0,0,10,57,0,0,12,57,0,0,12,57,0,0,14,57,0,0,16,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,18,57,0,0,22,57,0,0,22,57,0,0,30,57,0,0,30,57,0,0,32,57,0,0,32,57,0,0,32,57,0,0,32,57,0,0,32,57,0,0,32,57,0,0,38,57,0,0,40,57,0,0,40,57,0,0,40,57,0,0,42,57,0,0,44,57,0,0,44,57,0,0,46,57,0,0,48,57,0,0,48,57,0,0,50,57,0,0,50,57,0,0,50,57,0,0,50,57,0,0,50,57,0,0,50,57,0,0,50,57,0,0,50,57,0,0,54,57,0,0,56,57,0,0,56,57,0,0,58,57,0,0,58,57,0,0,60,57,0,0,62,57,0,0,62,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,64,57,0,0,68,57,0,0,68,57,0,0,70,57,0,0,70,57,0,0,70,57,0,0,70,57,0,0,72,57,0,0,72,57,0,0,74,57,0,0,74,57,0,0,76,57,0,0,76,57,0,0,76,57,0,0,76,57,0,0,76,57,0,0,78,57,0,0,78,57,0,0,78,57,0,0,78,57,0,0,84,57,0,0,86,57,0,0,86,57,0,0,86,57,0,0,86,57,0,0,88,57,0,0,88,57,0,0,88,57,0,0,90,57,0,0,92,57,0,0,92,57,0,0,96,57,0,0,96,57,0,0,96,57,0,0,98,57,0,0,100,57,0,0,102,57,0,0,102,57,0,0,102,57,0,0,104,57,0,0,104,57,0,0,108,57,0,0,108,57,0,0,112,57,0,0,114,57,0,0,114,57,0,0,116,57,0,0,118,57,0,0,118,57,0,0,120,57,0,0,120,57,0,0,120,57,0,0,120,57,0,0,124,57,0,0,126,57,0,0,126,57,0,0,126,57,0,0,128,57,0,0,128,57,0,0,130,57,0,0,132,57,0,0,132,57,0,0,134,57,0,0,134,57,0,0,134,57,0,0,134,57,0,0,134,57,0,0,134,57,0,0,134,57,0,0,134,57,0,0,134,57,0,0,136,57,0,0,138,57,0,0,138,57,0,0,140,57,0,0,140,57,0,0,142,57,0,0,146,57,0,0,146,57,0,0,148,57,0,0,150,57,0,0,150,57,0,0,150,57,0,0,150,57,0,0,152,57,0,0,154,57,0,0,158,57,0,0,158,57,0,0,158,57,0,0,160,57,0,0,160,57,0,0,160,57,0,0,162,57,0,0,164,57,0,0,164,57,0,0,164,57,0,0,168,57,0,0,170,57,0,0,170,57,0,0,170,57,0,0,174,57,0,0,178,57,0,0,178,57,0,0,178,57,0,0,178,57,0,0,178,57,0,0,182,57,0,0,182,57,0,0,182,57,0,0,184,57,0,0,186,57,0,0,188,57,0,0,188,57,0,0,190,57,0,0,190,57,0,0,190,57,0,0,192,57,0,0,192,57,0,0,192,57,0,0,192,57,0,0,194,57,0,0,196,57,0,0,198,57,0,0,198,57,0,0,198,57,0,0,198,57,0,0,200,57,0,0,200,57,0,0,200,57,0,0,200,57,0,0,202,57,0,0,204,57,0,0,206,57,0,0,206,57,0,0,206,57,0,0,212,57,0,0,212,57,0,0,214,57,0,0,216,57,0,0,216,57,0,0,216,57,0,0,216,57,0,0,216,57,0,0,216,57,0,0,220,57,0,0,220,57,0,0,220,57,0,0,222,57,0,0,226,57,0,0,226,57,0,0,226,57,0,0,228,57,0,0,228,57,0,0,230,57,0,0,234,57,0,0,236,57,0,0,236,57,0,0,236,57,0,0,238,57,0,0,240,57,0,0,242,57,0,0,244,57,0,0,244,57,0,0,244,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,246,57,0,0,250,57,0,0,250,57,0,0,250,57,0,0,250,57,0,0,252,57,0,0,252,57,0,0,252,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,254,57,0,0,0,58,0,0,0,58,0,0,2,58,0,0,4,58,0,0,4,58,0,0,6,58,0,0,6,58,0,0,8,58,0,0,8,58,0,0,8,58,0,0,8,58,0,0,8,58,0,0,8,58,0,0,10,58,0,0,14,58,0,0,16,58,0,0,18,58,0,0,18,58,0,0,20,58,0,0,22,58,0,0,24,58,0,0,24,58,0,0,24,58,0,0,24,58,0,0,24,58,0,0,26,58,0,0,26,58,0,0,26,58,0,0,28,58,0,0,30,58,0,0,30,58,0,0,32,58,0,0,34,58,0,0,34,58,0,0,34,58,0,0,34,58,0,0,36,58,0,0,36,58,0,0,36,58,0,0,38,58,0,0,38,58,0,0,38,58,0,0,40,58,0,0,42,58,0,0,42,58,0,0,44,58,0,0,44,58,0,0,46,58,0,0,48,58,0,0,50,58,0,0,50,58,0,0,52,58,0,0,52,58,0,0,54,58,0,0,54,58,0,0,56,58,0,0,56,58,0,0,56,58,0,0,56,58,0,0,56,58,0,0,56,58,0,0,58,58,0,0,60,58,0,0,62,58,0,0,62,58,0,0,66,58,0,0,66,58,0,0,66,58,0,0,68,58,0,0,70,58,0,0,70,58,0,0,70,58,0,0,70,58,0,0,70,58,0,0,70,58,0,0,70,58,0,0,70,58,0,0,70,58,0,0,72,58,0,0,72,58,0,0,74,58,0,0,74,58,0,0,74,58,0,0,76,58,0,0,76,58,0,0,82,58,0,0,84,58,0,0,86,58,0,0,86,58,0,0,88,58,0,0,90,58,0,0,92,58,0,0,92,58,0,0,94,58,0,0,96,58,0,0,98,58,0,0,98,58,0,0,98,58,0,0,98,58,0,0,100,58,0,0,100,58,0,0,100,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,102,58,0,0,104,58,0,0,106,58,0,0,108,58,0,0,110,58,0,0,110,58,0,0,112,58,0,0,114,58,0,0,116,58,0,0,118,58,0,0,118,58,0,0,122,58,0,0,122,58,0,0,122,58,0,0,122,58,0,0,122,58,0,0,122,58,0,0,122,58,0,0,122,58,0,0,124,58,0,0,124,58,0,0,124,58,0,0,124,58,0,0,126,58,0,0,126,58,0,0,126,58,0,0,126,58,0,0,126,58,0,0,128,58,0,0,128,58,0,0,130,58,0,0,132,58,0,0,132,58,0,0,134,58,0,0,136,58,0,0,136,58,0,0,136,58,0,0,136,58,0,0,138,58,0,0,138,58,0,0,140,58,0,0,140,58,0,0,140,58,0,0,144,58,0,0,144,58,0,0,144,58,0,0,146,58,0,0,150,58,0,0,150,58,0,0,150,58,0,0,154,58,0,0,154,58,0,0,154,58,0,0,154,58,0,0,156,58,0,0,156,58,0,0,158,58,0,0,158,58,0,0,160,58,0,0,160,58,0,0,160,58,0,0,162,58,0,0,166,58,0,0,166,58,0,0,166,58,0,0,166,58,0,0,168,58,0,0,168,58,0,0,168,58,0,0,168,58,0,0,168,58,0,0,168,58,0,0,168,58,0,0,168,58,0,0,170,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,172,58,0,0,176,58,0,0,178,58,0,0,178,58,0,0,178,58,0,0,178,58,0,0,180,58,0,0,180,58,0,0,184,58,0,0,186,58,0,0,188,58,0,0,188,58,0,0,190,58,0,0,190,58,0,0,190,58,0,0,190,58,0,0,194,58,0,0,194,58,0,0,194,58,0,0,194,58,0,0,194,58,0,0,196,58,0,0,196,58,0,0,196,58,0,0,196,58,0,0,198,58,0,0,200,58,0,0,200,58,0,0,200,58,0,0,200,58,0,0,202,58,0,0,202,58,0,0,202,58,0,0,204,58,0,0,206,58,0,0,206,58,0,0,206,58,0,0,206,58,0,0,208,58,0,0,210,58,0,0,212,58,0,0,212,58,0,0,214,58,0,0,218,58,0,0,220,58,0,0,222,58,0,0,222,58,0,0,222,58,0,0,222,58,0,0,222,58,0,0,222,58,0,0,222,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,224,58,0,0,226,58,0,0,228,58,0,0,228,58,0,0,228,58,0,0,230,58,0,0,230,58,0,0,232,58,0,0,234,58,0,0,236,58,0,0,236,58,0,0,236,58,0,0,236,58,0,0,240,58,0,0,240,58,0,0,240,58,0,0,240,58,0,0,240,58,0,0,240,58,0,0,240,58,0,0,242,58,0,0,242,58,0,0,244,58,0,0,244,58,0,0,246,58,0,0,250,58,0,0,250,58,0,0,250,58,0,0,254,58,0,0,0,59,0,0,0,59,0,0,0,59,0,0,0,59,0,0,0,59,0,0,0,59,0,0,0,59,0,0,2,59,0,0,2,59,0,0,2,59,0,0,2,59,0,0,2,59,0,0,2,59,0,0,4,59,0,0,6,59,0,0,6,59,0,0,6,59,0,0,6,59,0,0,8,59,0,0,8,59,0,0,8,59,0,0,10,59,0,0,12,59,0,0,14,59,0,0,18,59,0,0,18,59,0,0,18,59,0,0,18,59,0,0,18,59,0,0,18,59,0,0,18,59,0,0,18,59,0,0,20,59,0,0,20,59,0,0,20,59,0,0,22,59,0,0,24,59,0,0,24,59,0,0,24,59,0,0,24,59,0,0,28,59,0,0,28,59,0,0,28,59,0,0,28,59,0,0,30,59,0,0,30,59,0,0,30,59,0,0,30,59,0,0,32,59,0,0,34,59,0,0,34,59,0,0,34,59,0,0,36,59,0,0,38,59,0,0,38,59,0,0,38,59,0,0,42,59,0,0,42,59,0,0,42,59,0,0,44,59,0,0,44,59,0,0,44,59,0,0,48,59,0,0,50,59,0,0,50,59,0,0,52,59,0,0,54,59,0,0,54,59,0,0,54,59,0,0,56,59,0,0,56,59,0,0,56,59,0,0,56,59,0,0,56,59,0,0,56,59,0,0,56,59,0,0,60,59,0,0,60,59,0,0,64,59,0,0,64,59,0,0,68,59,0,0,70,59,0,0,70,59,0,0,74,59,0,0,76,59,0,0,76,59,0,0,76,59,0,0,80,59,0,0,82,59,0,0,84,59,0,0,86,59,0,0,86,59,0,0,88,59,0,0,90,59,0,0,90,59,0,0,90,59,0,0,90,59,0,0,92,59,0,0,92,59,0,0,92,59,0,0,92,59,0,0,94,59,0,0,94,59,0,0,96,59,0,0,96,59,0,0,100,59,0,0,100,59,0,0,100,59,0,0,100,59,0,0,100,59,0,0,100,59,0,0,100,59,0,0,100,59,0,0,100,59,0,0,102,59,0,0,102,59,0,0,102,59,0,0,106,59,0,0,106,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,108,59,0,0,110,59,0,0,116,59,0,0,120,59,0,0,120,59,0,0,120,59,0,0,122,59,0,0,122,59,0,0,122,59,0,0,122,59,0,0,124,59,0,0,124,59,0,0,130,59,0,0,130,59,0,0,134,59,0,0,136,59,0,0,136,59,0,0,140,59,0,0,142,59,0,0,142,59,0,0,142,59,0,0,144,59,0,0,144,59,0,0,144,59,0,0,146,59,0,0,146,59,0,0,146,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,148,59,0,0,150,59,0,0,150,59,0,0,152,59,0,0,152,59,0,0,152,59,0,0,154,59,0,0,156,59,0,0,156,59,0,0,156,59,0,0,158,59,0,0,160,59,0,0,162,59,0,0,164,59,0,0,164,59,0,0,168,59,0,0,170,59,0,0,170,59,0,0,170,59,0,0,170,59,0,0,172,59,0,0,174,59,0,0,176,59,0,0,176,59,0,0,176,59,0,0,176,59,0,0,176,59,0,0,176,59,0,0,176,59,0,0,176,59,0,0,178,59,0,0,180,59,0,0,182,59,0,0,182,59,0,0,182,59,0,0,182,59,0,0,186,59,0,0,186,59,0,0,186,59,0,0,186,59,0,0,186,59,0,0,186,59,0,0,186,59,0,0,190,59,0,0,190,59,0,0,194,59,0,0,194,59,0,0,196,59,0,0,196,59,0,0,198,59,0,0,200,59,0,0,200,59,0,0,202,59,0,0,204,59,0,0,206,59,0,0,206,59,0,0,208,59,0,0,208,59,0,0,208,59,0,0,212,59,0,0,212,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,216,59,0,0,218,59,0,0,218,59,0,0,218,59,0,0,220,59,0,0,222,59,0,0,222,59,0,0,222,59,0,0,224,59,0,0,224,59,0,0,226,59,0,0,226,59,0,0,226,59,0,0,228,59,0,0,230,59,0,0,232,59,0,0,232,59,0,0,232,59,0,0,232,59,0,0,232,59,0,0,232,59,0,0,234,59,0,0,234,59,0,0,234,59,0,0,234,59,0,0,234,59,0,0,234,59,0,0,236,59,0,0,236,59,0,0,236,59,0,0,238,59,0,0,238,59,0,0,240,59,0,0,240,59,0,0,244,59,0,0,244,59,0,0,244,59,0,0,246,59,0,0,246,59,0,0,248,59,0,0,250,59,0,0,250,59,0,0,250,59,0,0,250,59,0,0,250,59,0,0,250,59,0,0,250,59,0,0,250,59,0,0,254,59,0,0,254,59,0,0,254,59,0,0,254,59,0,0,254,59,0,0,254,59,0,0,254,59,0,0,254,59,0,0,0,60,0,0,0,60,0,0,0,60,0,0,2,60,0,0,4,60,0,0,4,60,0,0,4,60,0,0,4,60,0,0,4,60,0,0,4,60,0,0,4,60,0,0,6,60,0,0,6,60,0,0,8,60,0,0,10,60,0,0,16,60,0,0,16,60,0,0,16,60,0,0,16,60,0,0,16,60,0,0,16,60,0,0,18,60,0,0,20,60,0,0,24,60,0,0,24,60,0,0,26,60,0,0,26,60,0,0,26,60,0,0,26,60,0,0,28,60,0,0,28,60,0,0,28,60,0,0,28,60,0,0,28,60,0,0,30,60,0,0,32,60,0,0,36,60,0,0,36,60,0,0,36,60,0,0,40,60,0,0,40,60,0,0,40,60,0,0,42,60,0,0,46,60,0,0,46,60,0,0,50,60,0,0,54,60,0,0,54,60,0,0,54,60,0,0,54,60,0,0,56,60,0,0,56,60,0,0,56,60,0,0,58,60,0,0,58,60,0,0,60,60,0,0,62,60,0,0,64,60,0,0,64,60,0,0,64,60,0,0,64,60,0,0,64,60,0,0,64,60,0,0,66,60,0,0,66,60,0,0,66,60,0,0,68,60,0,0,68,60,0,0,68,60,0,0,68,60,0,0,68,60,0,0,68,60,0,0,68,60,0,0,68,60,0,0,70,60,0,0,70,60,0,0,72,60,0,0,76,60,0,0,78,60,0,0,82,60,0,0,84,60,0,0,84,60,0,0,86,60,0,0,88,60,0,0,88,60,0,0,88,60,0,0,88,60,0,0,90,60,0,0,90,60,0,0,90,60,0,0,90,60,0,0,92,60,0,0,92,60,0,0,92,60,0,0,92,60,0,0,92,60,0,0,94,60,0,0,94,60,0,0,94,60,0,0,96,60,0,0,96,60,0,0,102,60,0,0,104,60,0,0,104,60,0,0,104,60,0,0,108,60,0,0,112,60,0,0,112,60,0,0,112,60,0,0,114,60,0,0,114,60,0,0,114,60,0,0,116,60,0,0,116,60,0,0,116,60,0,0,116,60,0,0,116,60,0,0,116,60,0,0,116,60,0,0,116,60,0,0,116,60,0,0,120,60,0,0,120,60,0,0,120,60,0,0,124,60,0,0,124,60,0,0,124,60,0,0,126,60,0,0,126,60,0,0,130,60,0,0,130,60,0,0,134,60,0,0,138,60,0,0,138,60,0,0,138,60,0,0,140,60,0,0,144,60,0,0,144,60,0,0,144,60,0,0,144,60,0,0,144,60,0,0,146,60,0,0,146,60,0,0,148,60,0,0,150,60,0,0,150,60,0,0,152,60,0,0,154,60,0,0,154,60,0,0,156,60,0,0,156,60,0,0,156,60,0,0,156,60,0,0,158,60,0,0,160,60,0,0,162,60,0,0,164,60,0,0,164,60,0,0,166,60,0,0,168,60,0,0,168,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,170,60,0,0,174,60,0,0,174,60,0,0,174,60,0,0,178,60,0,0,180,60,0,0,180,60,0,0,184,60,0,0,184,60,0,0,184,60,0,0,184,60,0,0,184,60,0,0,184,60,0,0,186,60,0,0,186,60,0,0,186,60,0,0,188,60,0,0,190,60,0,0,192,60,0,0,192,60,0,0,194,60,0,0,194,60,0,0,196,60,0,0,196,60,0,0,196,60,0,0,196,60,0,0,196,60,0,0,196,60,0,0,198,60,0,0,200,60,0,0,200,60,0,0,200,60,0,0,200,60,0,0,200,60,0,0,200,60,0,0,200,60,0,0,202,60,0,0,208,60,0,0,208,60,0,0,210,60,0,0,210,60,0,0,210,60,0,0,210,60,0,0,210,60,0,0,210,60,0,0,212,60,0,0,212,60,0,0,212,60,0,0,212,60,0,0,214,60,0,0,214,60,0,0,214,60,0,0,214,60,0,0,214,60,0,0,216,60,0,0,216,60,0,0,216,60,0,0,220,60,0,0,222,60,0,0,222,60,0,0,224,60,0,0,224,60,0,0,224,60,0,0,226,60,0,0,228,60,0,0,232,60,0,0,232,60,0,0,232,60,0,0,232,60,0,0,234,60,0,0,236,60,0,0,236,60,0,0,236,60,0,0,236,60,0,0,236,60,0,0,238,60,0,0,240,60,0,0,240,60,0,0,242,60,0,0,242,60,0,0,242,60,0,0,246,60,0,0,248,60,0,0,248,60,0,0,248,60,0,0,248,60,0,0,248,60,0,0,250,60,0,0,250,60,0,0,250,60,0,0,254,60,0,0,0,61,0,0,2,61,0,0,2,61,0,0,4,61,0,0,4,61,0,0,6,61,0,0,8,61,0,0,8,61,0,0,8,61,0,0,10,61,0,0,10,61,0,0,10,61,0,0,10,61,0,0,10,61,0,0,12,61,0,0,16,61,0,0,20,61,0,0,20,61,0,0,20,61,0,0,20,61,0,0,20,61,0,0,22,61,0,0,22,61,0,0,22,61,0,0,24,61,0,0,24,61,0,0,24,61,0,0,24,61,0,0,24,61,0,0,26,61,0,0,28,61,0,0,30,61,0,0,30,61,0,0,30,61,0,0,32,61,0,0,34,61,0,0,36,61,0,0,36,61,0,0,36,61,0,0,36,61,0,0,36,61,0,0,40,61,0,0,40,61,0,0,40,61,0,0,40,61,0,0,42,61,0,0,44,61,0,0,46,61,0,0,48,61,0,0,48,61,0,0,48,61,0,0,48,61,0,0,48,61,0,0,48,61,0,0,52,61,0,0,52,61,0,0,52,61,0,0,52,61,0,0,52,61,0,0,52,61,0,0,54,61,0,0,54,61,0,0,54,61,0,0,58,61,0,0,60,61,0,0,60,61,0,0,60,61,0,0,60,61,0,0,62,61,0,0,62,61,0,0,62,61,0,0,62,61,0,0,62,61,0,0,64,61,0,0,64,61,0,0,64,61,0,0,64,61,0,0,66,61,0,0,68,61,0,0,68,61,0,0,68,61,0,0,70,61,0,0,70,61,0,0,72,61,0,0,72,61,0,0,72,61,0,0,74,61,0,0,74,61,0,0,74,61,0,0,74,61,0,0,76,61,0,0,76,61,0,0,76,61,0,0,78,61,0,0,80,61,0,0,80,61,0,0,82,61,0,0,82,61,0,0,82,61,0,0,82,61,0,0,82,61,0,0,82,61,0,0,82,61,0,0,82,61,0,0,82,61,0,0,84,61,0,0,84,61,0,0,84,61,0,0,86,61,0,0,86,61,0,0,86,61,0,0,88,61,0,0,92,61,0,0,92,61,0,0,92,61,0,0,92,61,0,0,92,61,0,0,94,61,0,0,94,61,0,0,94,61,0,0,96,61,0,0,96,61,0,0,96,61,0,0,96,61,0,0,96,61,0,0,100,61,0,0,102,61,0,0,104,61,0,0,110,61,0,0,116,61,0,0,118,61,0,0,120,61,0,0,120,61,0,0,120,61,0,0,120,61,0,0,124,61,0,0,124,61,0,0,126,61,0,0,126,61,0,0,126,61,0,0,128,61,0,0,132,61,0,0,132,61,0,0,132,61,0,0,132,61,0,0,134,61,0,0,134,61,0,0,134,61,0,0,136,61,0,0,136,61,0,0,136,61,0,0,138,61,0,0,138,61,0,0,140,61,0,0,140,61,0,0,142,61,0,0,146,61,0,0,148,61,0,0,150,61,0,0,150,61,0,0,150,61,0,0,150,61,0,0,150,61,0,0,150,61,0,0,150,61,0,0,152,61,0,0,154,61,0,0,158,61,0,0,160,61,0,0,160,61,0,0,160,61,0,0,160,61,0,0,160,61,0,0,160,61,0,0,166,61,0,0,166,61,0,0,168,61,0,0,174,61,0,0,174,61,0,0,176,61,0,0,176,61,0,0,178,61,0,0,180,61,0,0,180,61,0,0,180,61,0,0,180,61,0,0,180,61,0,0,184,61,0,0,184,61,0,0,186,61,0,0,186,61,0,0,188,61,0,0,190,61,0,0,190,61,0,0,190,61,0,0,192,61,0,0,194,61,0,0,198,61,0,0,198,61,0,0,200,61,0,0,200,61,0,0,200,61,0,0,202,61,0,0,202,61,0,0,202,61,0,0,206,61,0,0,206,61,0,0,206,61,0,0,206,61,0,0,206,61,0,0,210,61,0,0,210,61,0,0,210,61,0,0,212,61,0,0,212,61,0,0,216,61,0,0,216,61,0,0,216,61,0,0,216,61,0,0,218,61,0,0,218,61,0,0,218,61,0,0,218,61,0,0,218,61,0,0,220,61,0,0,222,61,0,0,222,61,0,0,222,61,0,0,222,61,0,0,230,61,0,0,230,61,0,0,232,61,0,0,234,61,0,0,236,61,0,0,236,61,0,0,238,61,0,0,238,61,0,0,240,61,0,0,244,61,0,0,244,61,0,0,244,61,0,0,246,61,0,0,246,61,0,0,250,61,0,0,250,61,0,0,252,61,0,0,252,61,0,0,254,61,0,0,254,61,0,0,254,61,0,0,0,62,0,0,0,62,0,0,0,62,0,0,0,62,0,0,2,62,0,0,4,62,0,0,4,62,0,0,4,62,0,0,6,62,0,0,6,62,0,0,6,62,0,0,10,62,0,0,10,62,0,0,10,62,0,0,12,62,0,0,16,62,0,0,18,62,0,0,18,62,0,0,18,62,0,0,18,62,0,0,20,62,0,0,20,62,0,0,20,62,0,0,20,62,0,0,24,62,0,0,26,62,0,0,26,62,0,0,26,62,0,0,28,62,0,0,28,62,0,0,28,62,0,0,34,62,0,0,34,62,0,0,36,62,0,0,38,62,0,0,40,62,0,0,42,62,0,0,42,62,0,0,44,62,0,0,44,62,0,0,44,62,0,0,44,62,0,0,44,62,0,0,46,62,0,0,46,62,0,0,48,62,0,0,52,62,0,0,52,62,0,0,52,62,0,0,54,62,0,0,54,62,0,0,54,62,0,0,56,62,0,0,56,62,0,0,56,62,0,0,58,62,0,0,60,62,0,0,62,62,0,0,64,62,0,0,64,62,0,0,68,62,0,0,68,62,0,0,68,62,0,0,70,62,0,0,72,62,0,0,74,62,0,0,76,62,0,0,78,62,0,0,80,62,0,0,80,62,0,0,80,62,0,0,82,62,0,0,82,62,0,0,84,62,0,0,86,62,0,0,86,62,0,0,88,62,0,0,94,62,0,0,98,62,0,0,100,62,0,0,102,62,0,0,102,62,0,0,102,62,0,0,102,62,0,0,106,62,0,0,106,62,0,0,108,62,0,0,110,62,0,0,110,62,0,0,116,62,0,0,116,62,0,0,118,62,0,0,120,62,0,0,120,62,0,0,120,62,0,0,122,62,0,0,122,62,0,0,124,62,0,0,126,62,0,0,126,62,0,0,126,62,0,0,126,62,0,0,126,62,0,0,126,62,0,0,130,62,0,0,132,62,0,0,136,62,0,0,140,62,0,0,140,62,0,0,142,62,0,0,142,62,0,0,142,62,0,0,144,62,0,0,144,62,0,0,144,62,0,0,144,62,0,0,144,62,0,0,146,62,0,0,146,62,0,0,148,62,0,0,150,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,152,62,0,0,154,62,0,0,154,62,0,0,154,62,0,0,154,62,0,0,156,62,0,0,160,62,0,0,162,62,0,0,162,62,0,0,162,62,0,0,162,62,0,0,168,62,0,0,168,62,0,0,172,62,0,0,172,62,0,0,174,62,0,0,174,62,0,0,174,62,0,0,174,62,0,0,174,62,0,0,178,62,0,0,178,62,0,0,178,62,0,0,180,62,0,0,180,62,0,0,180,62,0,0,182,62,0,0,182,62,0,0,184,62,0,0,186,62,0,0,188,62,0,0,190,62,0,0,190,62,0,0,190,62,0,0,190,62,0,0,192,62,0,0,192,62,0,0,192,62,0,0,192,62,0,0,192,62,0,0,192,62,0,0,194,62,0,0,194,62,0,0,194,62,0,0,194,62,0,0,194,62,0,0,194,62,0,0,198,62,0,0,200,62,0,0,200,62,0,0,200,62,0,0,200,62,0,0,204,62,0,0,208,62,0,0,212,62,0,0,214,62,0,0,214,62,0,0,214,62,0,0,214,62,0,0,216,62,0,0,216,62,0,0,218,62,0,0,220,62,0,0,220,62,0,0,220,62,0,0,220,62,0,0,222,62,0,0,222,62,0,0,226,62,0,0,226,62,0,0,228,62,0,0,228,62,0,0,228,62,0,0,230,62,0,0,234,62,0,0,234,62,0,0,236,62,0,0,236,62,0,0,238,62,0,0,238,62,0,0,238,62,0,0,238,62,0,0,240,62,0,0,240,62,0,0,244,62,0,0,246,62,0,0,246,62,0,0,252,62,0,0,252,62,0,0,252,62,0,0,252,62,0,0,254,62,0,0,0,63,0,0,2,63,0,0,2,63,0,0,4,63,0,0,4,63,0,0,4,63,0,0,8,63,0,0,8,63,0,0,8,63,0,0,8,63,0,0,8,63,0,0,8,63,0,0,12,63,0,0,12,63,0,0,12,63,0,0,12,63,0,0,14,63,0,0,16,63,0,0,16,63,0,0,16,63,0,0,16,63,0,0,18,63,0,0,18,63,0,0,20,63,0,0,22,63,0,0,22,63,0,0,26,63,0,0,26,63,0,0,26,63,0,0,28,63,0,0,28,63,0,0,30,63,0,0,30,63,0,0,30,63,0,0,32,63,0,0,34,63,0,0,36,63,0,0,36,63,0,0,36,63,0,0,36,63,0,0,36,63,0,0,38,63,0,0,38,63,0,0,38,63,0,0,38,63,0,0,38,63,0,0,38,63,0,0,40,63,0,0,44,63,0,0,44,63,0,0,44,63,0,0,48,63,0,0,48,63,0,0,50,63,0,0,50,63,0,0,50,63,0,0,52,63,0,0,52,63,0,0,56,63,0,0,56,63,0,0,56,63,0,0,60,63,0,0,62,63,0,0,62,63,0,0,62,63,0,0,62,63,0,0,62,63,0,0,62,63,0,0,62,63,0,0,64,63,0,0,70,63,0,0,70,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,72,63,0,0,74,63,0,0,74,63,0,0,78,63,0,0,84,63,0,0,86,63,0,0,88,63,0,0,90,63,0,0,90,63,0,0,90,63,0,0,90,63,0,0,90,63,0,0,90,63,0,0,90,63,0,0,92,63,0,0,92,63,0,0,96,63,0,0,96,63,0,0,96,63,0,0,96,63,0,0,96,63,0,0,96,63,0,0,102,63,0,0,104,63,0,0,104,63,0,0,104,63,0,0,104,63,0,0,104,63,0,0,104,63,0,0,104,63,0,0,106,63,0,0,106,63,0,0,106,63,0,0,108,63,0,0,108,63,0,0,110,63,0,0,110,63,0,0,110,63,0,0,110,63,0,0,110,63,0,0,110,63,0,0,112,63,0,0,112,63,0,0,112,63,0,0,112,63,0,0,112,63,0,0,112,63,0,0,114,63,0,0,116,63,0,0,116,63,0,0,120,63,0,0,122,63,0,0,124,63,0,0,124,63,0,0,124,63,0,0,124,63,0,0,126,63,0,0,126,63,0,0,126,63,0,0,128,63,0,0,130,63,0,0,130,63,0,0,132,63,0,0,136,63,0,0,140,63,0,0,146,63,0,0,148,63,0,0,148,63,0,0,150,63,0,0,150,63,0,0,152,63,0,0,152,63,0,0,154,63,0,0,156,63,0,0,156,63,0,0,156,63,0,0,156,63,0,0,160,63,0,0,160,63,0,0,162,63,0,0,162,63,0,0,162,63,0,0,162,63,0,0,162,63,0,0,162,63,0,0,162,63,0,0,164,63,0,0,166,63,0,0,168,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,172,63,0,0,174,63,0,0,174,63,0,0,174,63,0,0,174,63,0,0,174,63,0,0,174,63,0,0,178,63,0,0,178,63,0,0,178,63,0,0,178,63,0,0,178,63,0,0,180,63,0,0,182,63,0,0,182,63,0,0,182,63,0,0,182,63,0,0,182,63,0,0,184,63,0,0,186,63,0,0,186,63,0,0,186,63,0,0,188,63,0,0,188,63,0,0,190,63,0,0,192,63,0,0,192,63,0,0,192,63,0,0,194,63,0,0,194,63,0,0,194,63,0,0,194,63,0,0,194,63,0,0,194,63,0,0,194,63,0,0,196,63,0,0,198,63,0,0,198,63,0,0,198,63,0,0,200,63,0,0,202,63,0,0,202,63,0,0,202,63,0,0,202,63,0,0,206,63,0,0,208,63,0,0,212,63,0,0,212,63,0,0,216,63,0,0,218,63,0,0,218,63,0,0,220,63,0,0,220,63,0,0,220,63,0,0,220,63,0,0,220,63,0,0,222,63,0,0,222,63,0,0,224,63,0,0,224,63,0,0,224,63,0,0,224,63,0,0,230,63,0,0,230,63,0,0,232,63,0,0,232,63,0,0,234,63,0,0,234,63,0,0,234,63,0,0,234,63,0,0,238,63,0,0,238,63,0,0,240,63,0,0,244,63,0,0,244,63,0,0,246,63,0,0,252,63,0,0,254,63,0,0,254,63,0,0,254,63,0,0,254,63,0,0,254,63,0,0,254,63,0,0,254,63,0,0,254,63,0,0,254,63,0,0,254,63,0,0,0,64,0,0,2,64,0,0,4,64,0,0,6,64,0,0,10,64,0,0,14,64,0,0,16,64,0,0,16,64,0,0,20,64,0,0,20,64,0,0,20,64,0,0,22,64,0,0,26,64,0,0,26,64,0,0,28,64,0,0,28,64,0,0,28,64,0,0,28,64,0,0,28,64,0,0,32,64,0,0,32,64,0,0,34,64,0,0,34,64,0,0,34,64,0,0,34,64,0,0,36,64,0,0,36,64,0,0,36,64,0,0,36,64,0,0,36,64,0,0,38,64,0,0,38,64,0,0,40,64,0,0,42,64,0,0,44,64,0,0,44,64,0,0,44,64,0,0,46,64,0,0,48,64,0,0,48,64,0,0,48,64,0,0,48,64,0,0,48,64,0,0,48,64,0,0,48,64,0,0,50,64,0,0,50,64,0,0,52,64,0,0,52,64,0,0,52,64,0,0,52,64,0,0,54,64,0,0,54,64,0,0,56,64,0,0,56,64,0,0,56,64,0,0,56,64,0,0,56,64,0,0,58,64,0,0,58,64,0,0,58,64,0,0,60,64,0,0,62,64,0,0,62,64,0,0,64,64,0,0,64,64,0,0,64,64,0,0,70,64,0,0,72,64,0,0,72,64,0,0,74,64,0,0,74,64,0,0,76,64,0,0,76,64,0,0,82,64,0,0,82,64,0,0,82,64,0,0,84,64,0,0,84,64,0,0,84,64,0,0,84,64,0,0,84,64,0,0,88,64,0,0,90,64,0,0,90,64,0,0,90,64,0,0,94,64,0,0,94,64,0,0,94,64,0,0,96,64,0,0,98,64,0,0,102,64,0,0,104,64,0,0,104,64,0,0,104,64,0,0,104,64,0,0,104,64,0,0,104,64,0,0,104,64,0,0,108,64,0,0,110,64,0,0,110,64,0,0,112,64,0,0,116,64,0,0,118,64,0,0,118,64,0,0,118,64,0,0,118,64,0,0,120,64,0,0,122,64,0,0,124,64,0,0,124,64,0,0,128,64,0,0,130,64,0,0,130,64,0,0,130,64,0,0,132,64,0,0,136,64,0,0,136,64,0,0,136,64,0,0,136,64,0,0,136,64,0,0,138,64,0,0,138,64,0,0,138,64,0,0,140,64,0,0,140,64,0,0,142,64,0,0,142,64,0,0,142,64,0,0,144,64,0,0,144,64,0,0,144,64,0,0,144,64,0,0,144,64,0,0,146,64,0,0,150,64,0,0,154,64,0,0,156,64,0,0,158,64,0,0,158,64,0,0,158,64,0,0,158,64,0,0,160,64,0,0,160,64,0,0,162,64,0,0,162,64,0,0,164,64,0,0,164,64,0,0,164,64,0,0,166,64,0,0,166,64,0,0,166,64,0,0,168,64,0,0,168,64,0,0,168,64,0,0,170,64,0,0,172,64,0,0,174,64,0,0,174,64,0,0,176,64,0,0,176,64,0,0,176,64,0,0,180,64,0,0,182,64,0,0,182,64,0,0,0,192,5,138,165,39,2,0,3,128,219,14,43,143,3,0,4,0,71,182,100,242,3,0,7,0,123,147,144,52,4,0,10,64,231,89,34,137,2,0,14,64,225,159,146,220,2,0,17,0,133,96,62,23,2,0,18,128,162,171,118,159,2,0,19,0,152,22,7,128,3,0,20,0,99,194,241,0,4,0,21,192,54,94,38,49,3,0,21,192,17,130,91,253,3,0,29,192,6,129,14,225,3,0,36,64,89,199,72,183,3,0,46,0,230,96,211,61,2,0,46,0,77,126,115,114,2,0,47,192,200,212,56,226,3,0,49,128,156,25,149,36,4,0,51,0,189,53,227,55,3,0,58,64,3,5,132,210,2,0,59,0,48,28,123,155,2,0,64,192,167,60,64,95,2,0,64,192,63,10,175,20,3,0,65,64,6,55,42,3,2,0,65,128,10,215,39,75,2,0,72,0,159,135,175,133,2,0,74,128,111,67,1,41,3,0,75,0,13,85,61,138,3,0,76,64,40,146,187,138,3,0,77,64,162,54,61,154,2,0,81,128,23,104,219,144,4,0,85,128,251,102,28,113,2,0,90,128,35,224,147,86,3,0,95,0,230,218,212,204,3,0,97,192,182,7,215,162,2,0,97,128,52,93,179,213,3,0,103,0,179,87,79,79,3,0,103,192,170,19,178,184,3,0,104,64,62,159,182,253,3,0,105,0,0,110,48,225,2,0,106,0,225,1,169,195,2,0,109,192,29,148,128,169,2,0,110,128,64,178,208,163,3,0,112,64,196,255,213,218,2,0,116,0,14,16,20,82,4,0,118,192,136,184,116,74,3,0,119,128,135,252,227,35,2,0,120,192,70,249,14,22,2,0,120,128,115,12,33,117,2,0,121,192,158,18,226,55,2,0,121,64,7,188,20,49,3,0,125,64,129,14,100,135,3,0,126,128,104,77,39,121,2,0,128,0,234,74,37,194,3,0,129,192,11,48,209,45,2,0,131,128,231,164,151,108,4,0,134,128,63,209,131,47,2,0,135,128,65,251,67,227,3,0,141,0,80,217,188,197,3,0,143,0,248,53,109,144,3,0,144,0,57,195,120,90,2,0,145,192,29,222,206,117,2,0,154,0,15,178,65,235,3,0,155,0,73,47,160,91,3,0,155,64,58,168,73,99,3,0,155,128,127,176,70,228,3,0,157,64,29,196,109,103,2,0,157,64,247,143,119,226,3,0,158,0,102,118,111,43,4,0,161,192,200,5,232,50,3,0,169,192,67,60,230,96,2,0,171,0,144,118,123,189,2,0,173,192,197,235,189,58,2,0,174,0,29,157,61,65,4,0,176,0,9,109,254,218,2,0,177,64,201,14,219,207,3,0,178,0,239,157,88,49,3,0,178,128,27,253,61,224,3,0,180,64,15,222,220,59,4,0,183,192,52,86,202,164,2,0,183,0,177,63,4,142,3,0,183,0,86,191,153,176,3,0,185,0,140,181,166,14,2,0,186,64,12,82,11,111,2,0,187,0,176,248,42,235,2,0,187,128,70,186,145,26,3,0,189,128,42,84,104,60,4,0,191,192,41,111,82,247,3,0,193,64,86,108,6,249,3,0,194,64,253,25,26,229,3,0,198,64,108,31,12,132,3,0,198,64,226,190,155,120,4,0,199,192,162,147,73,190,3,0,200,128,160,248,200,59,2,0,205,128,250,89,127,198,2,0,205,192,89,92,184,87,4,0,206,128,173,87,87,177,2,0,207,64,174,53,232,145,3,0,208,192,60,12,217,192,3,0,209,0,228,55,31,20,4,0,212,64,245,24,78,153,3,0,213,0,34,255,194,121,3,0,217,0,66,62,90,141,2,0,218,128,111,108,8,131,2,0,218,64,207,75,244,165,3,0,219,64,164,189,240,206,2,0,222,192,131,92,35,68,4,0,222,64,32,220,236,110,4,0,228,0,182,150,232,216,3,0,228,192,73,195,0,92,4,0,232,64,110,111,94,145,4,0,235,0,67,249,220,27,2,0,236,64,243,50,235,94,4,0,239,0,188,164,210,105,3,0,240,192,51,13,26,238,2,0,240,128,126,126,78,33,4,0,241,64,2,253,139,215,3,0,242,64,29,36,230,71,2,0,246,128,82,106,126,217,3,0,248,64,193,126,182,143,3,0,249,128,200,54,217,107,3,0,252,0,41,26,180,159,3,0,254,192,72,106,91,193,2,0,1,129,202,126,51,24,2,0,2,129,111,234,38,44,3,0,4,193,70,249,34,22,2,0,7,1,179,76,119,183,2,0,9,1,243,26,57,134,2,0,15,193,95,7,25,25,2,0,17,193,235,230,87,29,2,0,19,193,94,182,39,17,3,0,20,65,36,247,186,252,2,0,25,193,100,182,181,116,4,0,27,65,210,143,32,192,2,0,29,129,157,71,216,41,2,0,29,193,54,193,187,197,2,0,31,129,169,90,94,220,2,0,32,193,212,233,33,85,3,0,35,129,253,219,31,164,2,0,38,129,178,254,215,77,4,0,40,65,47,81,59,244,2,0,42,1,55,81,187,222,2,0,54,1,156,144,172,102,3,0,56,129,185,97,29,17,2,0,62,1,148,53,12,42,3,0,63,193,23,121,88,200,3,0,65,65,167,35,179,103,3,0,65,65,56,175,137,142,4,0,66,129,208,42,60,39,4,0,74,129,37,139,96,63,3,0,75,193,78,120,237,38,3,0,80,65,139,20,179,105,3,0,85,193,65,227,44,121,3,0,86,193,128,53,41,130,4,0,91,65,30,241,185,18,2,0,93,129,26,23,195,253,3,0,94,193,214,204,114,174,2,0,95,1,212,43,110,26,4,0,99,1,169,81,56,213,2,0,100,65,217,193,218,181,3,0,100,193,18,95,59,60,4,0,102,65,35,29,213,136,4,0,103,1,111,245,97,43,3,0,108,193,96,99,233,40,4,0,109,65,223,59,211,246,2,0,109,1,11,168,219,103,3,0,111,129,99,198,56,86,3,0,111,193,74,79,229,192,3,0,113,129,104,45,222,234,3,0,116,65,123,59,171,61,4,0,117,193,253,210,169,57,3,0,121,193,52,248,254,104,3,0,121,193,243,126,101,174,3,0,122,129,210,6,242,126,2,0,124,65,21,41,11,3,3,0,124,129,63,204,111,205,3,0,129,65,134,88,254,124,3,0,131,129,44,210,186,83,3,0,133,129,38,126,145,166,2,0,134,129,238,22,77,213,2,0,136,1,104,248,98,111,2,0,137,1,43,110,78,156,2,0,137,193,19,187,29,197,2,0,140,129,138,197,107,35,2,0,141,65,55,112,64,11,2,0,141,1,5,54,35,40,4,0,142,129,185,199,31,237,2,0,146,193,147,155,1,19,2,0,148,193,212,16,148,91,2,0,151,65,88,30,147,151,2,0,153,1,168,58,51,126,4,0,155,129,76,193,255,44,2,0,157,129,46,6,122,208,3,0,158,193,20,249,43,65,4,0,160,1,66,208,146,31,2,0,161,65,123,167,127,101,3,0,162,65,232,103,155,44,4,0,171,1,57,134,158,137,3,0,176,129,133,90,82,209,3,0,180,1,235,116,70,184,3,0,181,1,48,213,124,125,2,0,181,65,163,185,118,202,3,0,184,1,117,34,84,120,2,0,186,129,57,166,118,123,3,0,187,193,204,58,72,182,2,0,189,129,67,156,51,146,2,0,193,1,200,8,33,56,2,0,196,65,195,240,246,209,2,0,196,193,74,98,252,252,2,0,197,129,202,126,87,24,2,0,200,1,205,50,94,39,3,0,200,65,179,90,9,58,3,0,201,65,126,23,163,159,3,0,206,1,50,81,29,242,2,0,206,129,61,241,37,31,3,0,216,65,232,126,132,129,2,0,220,65,172,118,83,7,2,0,220,129,231,131,4,54,3,0,221,65,249,140,80,54,3,0,223,129,94,186,186,29,3,0,223,193,242,20,251,146,3,0,224,129,196,128,104,125,4,0,225,1,102,6,13,54,4,0,226,65,8,121,110,105,2,0,226,65,158,227,222,34,3,0,227,193,62,207,152,108,2,0,227,129,237,26,213,253,3,0,230,129,231,120,149,8,3,0,233,193,24,196,14,102,3,0,235,65,231,12,75,22,2,0,236,1,56,47,32,210,3,0,236,1,184,90,82,254,3,0,242,193,76,81,236,157,2,0,242,1,183,139,132,193,2,0,242,193,203,113,47,87,3,0,244,1,251,0,205,10,2,0,244,65,225,182,22,59,2,0,248,193,197,53,136,153,2,0,251,65,60,49,246,79,3,0,0,194,116,230,25,7,2,0,0,194,253,53,65,8,3,0,0,2,90,253,87,16,3,0,2,130,222,243,60,102,4,0,6,130,247,46,130,111,4,0,7,194,75,86,223,116,2,0,8,2,223,103,173,12,4,0,11,66,255,76,20,58,2,0,16,2,19,37,182,19,2,0,20,194,80,207,150,230,3,0,21,66,13,172,181,77,3,0,21,130,181,70,177,217,3,0,22,66,80,52,156,208,3,0,22,130,208,27,108,220,3,0,25,194,174,205,2,33,2,0,26,194,117,223,171,13,2,0,27,194,101,52,225,242,2,0,27,194,18,186,162,36,3,0,27,130,239,111,160,64,4,0,30,130,75,131,75,49,4,0,31,194,93,113,103,61,3,0,36,194,233,214,111,21,4,0,39,194,41,177,255,221,2,0,39,2,77,233,176,78,3,0,44,130,137,170,175,8,2,0,44,2,137,80,205,140,3,0,47,130,70,60,87,31,4,0,50,2,119,132,8,106,4,0,54,130,204,27,132,142,3,0,55,2,165,109,185,38,2,0,58,194,181,181,46,218,2,0,62,66,83,33,229,205,2,0,66,2,137,168,144,105,2,0,73,2,221,61,14,23,2,0,73,194,245,250,168,109,3,0,76,2,69,142,222,218,3,0,81,130,170,200,84,127,3,0,83,66,46,143,155,162,2,0,85,194,117,10,251,71,2,0,90,194,145,238,55,217,2,0,91,66,112,47,44,202,3,0,92,194,253,53,25,8,3,0,93,130,46,162,134,21,4,0,94,2,126,194,157,24,3,0,95,194,216,73,223,113,4,0,100,194,45,74,34,24,2,0,100,130,73,145,113,117,4,0,102,130,219,47,189,119,2,0,102,130,219,47,207,119,2,0,102,130,219,47,220,119,2,0,102,66,129,106,35,191,2,0,102,130,35,218,195,127,4,0,104,2,180,255,133,144,3,0,105,194,211,43,129,73,4,0,109,66,110,4,245,143,4,0,110,66,232,47,17,12,2,0,111,66,130,192,153,204,3,0,117,2,73,32,171,133,3,0,123,2,222,250,195,42,2,0,125,130,191,39,209,209,3,0,127,2,97,220,171,41,4,0,129,2,179,12,149,17,3,0,129,66,84,125,102,164,3,0,134,194,214,178,128,74,2,0,135,2,252,26,181,92,3,0,140,194,78,211,38,231,2,0,140,130,153,223,128,245,2,0,140,194,105,180,174,73,4,0,141,194,166,130,95,122,4,0,143,66,223,49,45,179,2,0,143,130,59,81,20,209,2,0,146,130,228,96,168,81,3,0,147,194,15,226,75,70,4,0,152,194,137,77,68,136,3,0,156,130,191,174,229,154,3,0,157,194,140,155,185,92,4,0,161,66,30,129,169,219,3,0,163,66,164,100,134,254,2,0,163,130,2,158,19,16,3,0,170,2,233,187,184,245,2,0,172,130,139,195,203,69,2,0,172,2,129,101,156,240,3,0,173,130,129,146,129,198,3,0,174,2,205,153,147,37,2,0,175,130,176,123,190,252,3,0,176,2,34,199,241,220,2,0,180,130,88,193,138,218,2,0,183,194,22,196,84,146,2,0,184,2,49,252,165,253,2,0,188,130,26,40,72,75,4,0,189,194,9,157,208,254,3,0,190,194,159,250,28,175,3,0,192,2,137,223,101,18,4,0,193,66,199,57,42,94,2,0,195,66,96,233,136,86,2,0,195,2,29,120,228,174,3,0,196,130,106,86,162,130,3,0,197,130,99,212,55,110,2,0,199,2,191,226,237,108,4,0,200,2,243,228,186,3,2,0,200,130,21,65,6,111,3,0,201,194,137,197,62,82,4,0,202,66,198,115,10,104,2,0,204,66,169,9,108,176,3,0,204,2,158,13,177,38,4,0,213,66,51,130,206,62,4,0,213,2,251,228,47,81,4,0,217,66,98,178,173,119,3,0,218,2,246,123,73,0,3,0,220,66,163,92,238,8,2,0,222,194,112,163,150,100,4,0,225,2,153,223,30,40,3,0,225,66,106,137,22,58,4,0,227,66,74,7,168,131,2,0,230,194,94,66,39,9,4,0,231,130,228,142,70,112,4,0,232,194,46,255,79,109,3,0,234,130,83,214,44,124,3,0,237,2,228,41,72,165,2,0,237,194,217,38,67,189,2,0,238,130,80,176,95,78,2,0,238,66,106,116,136,112,4,0,243,2,184,85,103,117,3,0,245,194,119,148,110,112,3,0,246,130,249,62,198,85,4,0,247,2,119,172,47,120,3,0,255,130,205,47,170,84,2,0,8,3,195,24,171,254,3,0,10,131,254,215,215,60,4,0,11,67,1,32,63,59,2,0,13,131,136,160,250,67,3,0,16,67,89,96,198,229,3,0,18,3,155,114,100,156,2,0,18,3,20,152,79,86,4,0,20,131,31,30,48,79,2,0,22,131,56,22,72,48,2,0,23,67,172,154,198,54,4,0,24,195,255,104,184,56,2,0,24,131,246,17,162,255,2,0,27,195,233,70,26,31,4,0,28,67,120,99,255,102,2,0,28,3,53,73,74,150,2,0,28,195,159,89,106,219,2,0,29,3,81,203,32,116,2,0,34,3,129,184,65,81,3,0,36,67,223,61,139,89,2,0,36,131,7,57,69,79,4,0,38,3,225,217,30,216,2,0,39,131,41,229,245,87,2,0,39,131,39,81,197,5,3,0,40,67,115,225,229,247,3,0,41,131,83,126,118,239,3,0,43,67,252,118,121,8,2,0,44,195,163,155,177,22,2,0,45,67,150,27,152,34,4,0,46,195,19,20,46,129,4,0,47,131,223,110,169,123,3,0,48,195,208,136,200,68,4,0,50,67,225,172,145,154,3,0,54,131,163,218,208,33,2,0,57,195,226,194,161,177,2,0,57,131,23,81,48,101,3,0,58,195,133,238,76,82,4,0,59,3,63,77,155,242,2,0,64,67,166,244,150,58,3,0,70,131,25,105,37,123,3,0,71,195,71,192,45,154,3,0,72,131,103,52,227,235,3,0,73,195,233,26,36,106,2,0,75,195,76,81,203,157,2,0,77,131,2,219,167,11,2,0,77,195,59,237,226,105,3,0,78,195,225,142,222,4,4,0,80,3,182,186,234,1,3,0,82,195,27,208,139,52,3,0,84,3,205,50,111,39,3,0,84,195,152,223,77,103,3,0,89,3,211,146,124,122,3,0,90,195,202,16,210,7,2,0,91,3,93,157,70,220,3,0,101,195,208,152,240,182,3,0,103,67,113,115,83,63,2,0,104,195,218,98,68,111,4,0,106,3,85,47,197,234,3,0,109,131,98,193,167,57,4,0,109,67,75,86,41,131,4,0,112,195,33,203,220,49,3,0,115,195,155,129,251,3,3,0,117,131,225,7,106,42,2,0,120,67,105,191,13,6,2,0,120,67,46,57,118,156,2,0,120,3,63,219,230,134,4,0,124,195,76,81,65,157,2,0,124,67,66,160,246,168,2,0,128,195,211,39,22,99,3,0,129,3,191,216,169,0,4,0,132,195,28,170,250,12,4,0,138,67,39,49,147,181,2,0,139,195,154,155,242,117,2,0,140,3,178,99,123,18,4,0,143,3,135,209,115,254,3,0,145,67,132,14,42,149,2,0,145,131,32,16,167,187,2,0,148,131,242,147,57,215,2,0,148,195,74,98,13,253,2,0,149,67,44,81,81,248,2,0,150,131,69,119,246,52,4,0,152,131,142,117,69,32,2,0,153,67,248,51,101,202,3,0,153,3,138,13,80,39,4,0,160,3,229,255,76,185,3,0,161,3,126,63,61,147,2,0,165,67,83,144,171,74,2,0,170,195,125,163,156,249,3,0,171,67,204,253,137,132,4,0,173,131,43,76,104,124,2,0,174,131,39,81,51,2,3,0,175,67,251,103,187,148,2,0,176,131,112,24,17,32,2,0,176,131,33,32,109,36,4,0,184,195,121,152,139,135,2,0,186,195,199,22,223,62,4,0,187,195,31,66,218,21,2,0,187,195,85,83,123,30,4,0,188,131,226,175,127,234,2,0,189,67,15,37,192,82,2,0,193,67,56,91,216,190,3,0,193,195,24,245,42,119,4,0,195,195,154,45,163,69,4,0,199,67,215,161,21,12,3,0,202,67,233,187,169,245,2,0,202,131,119,24,113,97,4,0,203,195,78,57,185,89,2,0,203,195,225,173,150,7,3,0,203,131,152,88,153,161,3,0,210,195,140,210,49,224,2,0,211,3,151,182,119,246,3,0,212,131,127,193,112,67,2,0,212,3,127,133,134,67,4,0,215,131,81,60,137,12,2,0,216,195,79,243,105,2,4,0,216,67,54,199,107,72,4,0,219,131,225,107,185,163,3,0,220,3,155,69,4,239,2,0,220,195,128,146,246,240,2,0,222,67,127,212,101,158,2,0,223,131,126,91,172,121,3,0,225,195,47,33,219,69,4,0,226,67,246,27,72,19,3,0,228,131,119,89,99,48,4,0,230,67,40,128,145,8,4,0,231,67,114,129,252,155,2,0,231,195,125,253,94,1,4,0,232,131,142,174,140,191,3,0,233,3,199,11,176,146,2,0,233,195,202,210,216,2,3,0,234,131,26,203,4,5,4,0,238,131,252,65,158,150,3,0,242,195,154,98,123,179,2,0,244,3,169,92,9,192,3,0,245,195,246,27,98,234,3,0,249,67,216,211,23,21,3,0,249,195,23,81,193,99,3,0,251,131,199,70,194,213,3,0,254,3,91,161,115,143,3,0,1,4,70,216,207,209,2,0,1,196,227,195,72,106,3,0,2,132,203,70,58,140,2,0,2,196,146,20,232,159,3,0,3,68,191,23,221,125,3,0,6,196,121,8,44,111,2,0,12,196,200,200,155,126,3,0,14,132,148,196,42,125,4,0,15,132,178,11,250,31,2,0,15,4,48,81,254,245,2,0,17,68,220,151,46,169,3,0,19,68,141,104,231,242,3,0,20,132,199,71,97,131,4,0,21,196,193,61,231,128,3,0,23,132,55,237,185,73,2,0,25,132,81,209,233,196,2,0,29,196,148,246,193,45,4,0,29,4,30,231,140,94,4,0,30,132,177,159,167,6,2,0,33,4,51,9,56,192,2,0,34,132,191,104,161,149,2,0,34,68,51,136,187,37,3,0,35,68,240,250,242,9,4,0,36,68,138,222,169,248,2,0,37,68,195,154,212,108,2,0,38,4,150,229,114,122,4,0,39,68,24,102,91,104,2,0,41,68,117,19,32,22,3,0,41,196,34,11,1,45,4,0,42,132,193,53,106,253,3,0,43,68,14,97,203,29,4,0,45,68,176,69,161,231,2,0,50,196,225,92,112,248,2,0,52,68,244,163,161,99,3,0,57,132,59,184,201,60,3,0,58,4,33,235,105,133,2,0,59,196,70,133,58,181,2,0,60,196,143,9,114,70,3,0,60,132,50,12,166,186,3,0,62,132,197,137,7,208,3,0,62,68,139,21,122,137,4,0,66,196,78,253,73,137,2,0,68,132,15,211,11,76,4,0,71,132,171,121,1,39,4,0,72,4,187,126,212,14,2,0,72,196,166,63,109,53,2,0,72,196,48,246,131,104,2,0,72,196,51,137,140,106,2,0,72,196,248,38,116,64,4,0,72,196,186,243,150,95,4,0,74,196,93,164,0,34,3,0,74,4,153,223,137,43,3,0,77,132,126,119,103,237,2,0,78,4,55,232,70,17,3,0,79,4,196,179,137,210,3,0,80,4,23,44,102,246,3,0,82,132,36,255,203,172,3,0,83,132,199,40,168,86,2,0,89,196,239,39,100,62,2,0,90,68,77,140,91,173,2,0,98,196,149,179,101,123,4,0,102,132,153,223,227,245,2,0,105,4,36,182,81,42,2,0,105,68,115,2,16,101,4,0,106,4,59,184,13,67,3,0,107,132,227,197,108,118,4,0,113,68,191,54,7,68,4,0,114,132,68,236,23,125,2,0,114,132,133,40,23,177,2,0,114,4,57,23,216,147,3,0,116,4,235,217,44,161,2,0,116,68,236,234,39,46,4,0,118,4,143,101,94,41,4,0,119,196,22,10,113,177,3,0,120,196,99,180,36,36,4,0,123,68,134,53,219,97,3,0,124,68,94,53,194,244,2,0,125,196,120,134,165,226,2,0,127,196,128,40,90,178,3,0,129,196,80,80,70,19,2,0,129,68,184,81,4,19,3,0,129,4,255,9,106,57,3,0,129,4,97,188,123,212,3,0,132,4,20,50,236,170,3,0,135,132,183,141,129,36,4,0,137,68,56,236,130,105,2,0,140,196,214,2,150,57,2,0,147,132,120,166,151,119,3,0,155,132,162,48,182,143,2,0,159,68,178,94,217,99,4,0,161,4,63,234,184,237,3,0,161,196,179,44,145,121,4,0,168,132,247,187,46,158,2,0,168,68,90,2,193,188,2,0,169,68,217,238,193,152,4,0,174,132,87,131,181,243,2,0,175,132,82,16,150,47,3,0,176,196,36,243,124,110,2,0,177,4,94,169,215,237,2,0,178,4,161,23,214,121,4,0,181,68,17,107,138,39,4,0,186,4,18,58,244,100,3,0,188,132,78,131,163,191,3,0,189,132,36,150,106,190,2,0,190,132,254,20,215,44,3,0,191,132,209,114,237,156,2,0,193,4,59,159,20,40,2,0,196,196,197,72,76,110,2,0,201,132,56,7,54,22,2,0,202,4,6,180,125,117,3,0,205,132,15,73,97,171,2,0,205,132,122,52,86,28,3,0,205,132,74,228,58,211,3,0,209,196,98,159,109,252,2,0,209,68,233,133,23,86,4,0,210,196,241,72,89,177,3,0,211,196,15,64,5,137,3,0,215,132,111,169,225,72,2,0,215,196,62,161,225,244,3,0,217,4,141,105,97,173,3,0,219,196,251,126,182,95,2,0,219,68,62,59,160,56,4,0,220,196,73,186,160,26,3,0,222,4,64,125,220,235,2,0,224,132,153,223,44,247,2,0,225,196,234,220,59,36,2,0,225,196,182,218,165,178,3,0,229,196,53,191,113,62,2,0,231,4,17,72,221,79,2,0,231,4,87,82,93,20,3,0,233,68,32,147,25,95,2,0,233,132,62,59,97,115,2,0,233,68,232,149,177,200,3,0,235,132,44,142,186,41,3,0,236,68,162,112,113,31,2,0,236,196,56,117,193,27,4,0,237,68,26,255,38,244,3,0,238,132,223,160,17,234,2,0,240,132,65,127,8,93,4,0,241,4,82,177,213,36,4,0,247,132,212,153,247,244,3,0,248,132,46,28,209,154,2,0,250,4,152,6,209,183,2,0,250,4,64,178,24,220,3,0,251,4,71,249,97,22,2,0,254,4,179,191,63,116,4,0,255,4,203,47,149,140,4,0,1,5,138,179,129,43,2,0,2,69,242,55,97,179,2,0,2,5,231,107,172,8,3,0,4,133,151,197,117,141,4,0,6,197,171,184,145,127,3,0,7,69,195,0,26,148,3,0,13,197,41,150,252,158,3,0,14,133,216,244,163,102,4,0,15,5,16,188,180,235,2,0,18,197,217,126,57,72,2,0,18,5,83,86,139,129,3,0,21,133,150,151,43,208,3,0,25,197,86,146,183,226,2,0,27,69,17,74,84,29,4,0,29,197,139,67,128,4,3,0,31,133,26,217,123,213,2,0,32,69,15,210,30,205,3,0,37,197,184,234,239,44,3,0,42,5,196,136,182,99,2,0,42,133,64,3,167,243,3,0,43,5,142,180,54,214,3,0,46,5,90,18,4,177,3,0,47,5,135,184,215,75,3,0,49,197,170,68,38,84,3,0,52,197,106,151,252,67,2,0,55,197,47,214,83,139,4,0,56,197,212,3,207,98,3,0,57,69,201,5,233,113,2,0,58,197,117,97,235,29,3,0,59,133,54,67,241,58,2,0,61,69,182,5,217,5,2,0,61,5,242,118,147,205,3,0,61,133,241,161,249,43,4,0,62,5,81,6,13,79,2,0,67,69,243,47,223,7,2,0,67,69,214,33,234,139,2,0,69,133,223,29,30,107,2,0,70,197,126,3,121,63,4,0,70,133,217,193,144,109,4,0,73,69,189,142,97,143,3,0,73,5,190,23,254,163,3,0,74,133,79,210,228,0,4,0,77,133,52,72,25,223,3,0,78,5,128,212,42,50,2,0,79,197,253,158,145,155,3,0,79,69,45,131,121,15,4,0,80,69,138,67,153,247,2,0,80,5,36,45,195,221,3,0,86,5,181,230,118,78,4,0,87,69,24,19,2,45,3,0,88,133,208,101,68,122,4,0,90,5,114,118,12,140,2,0,90,197,39,222,190,168,2,0,91,197,20,37,139,42,3,0,92,197,66,205,158,17,2,0,93,133,187,14,163,105,3,0,94,5,207,59,189,149,2,0,95,197,70,133,76,181,2,0,97,5,20,85,14,121,2,0,99,69,183,161,46,184,2,0,101,69,209,235,39,10,4,0,102,133,51,146,255,171,3,0,105,5,102,184,97,101,3,0,106,197,142,197,181,8,4,0,107,197,192,165,73,8,2,0,110,133,18,191,2,32,3,0,110,197,225,130,209,202,3,0,111,69,80,206,11,254,3,0,119,133,50,5,176,131,3,0,119,69,49,246,177,52,4,0,121,197,53,126,43,10,2,0,121,133,211,36,131,191,2,0,124,197,128,122,222,105,4,0,125,69,133,78,115,213,3,0,130,69,191,227,185,186,2,0,132,69,104,32,198,192,2,0,135,69,19,15,126,2,3,0,138,5,79,234,49,64,3,0,142,197,115,20,172,82,2,0,143,197,255,107,41,84,2,0,145,69,4,201,230,207,3,0,146,197,142,76,206,41,3,0,148,133,195,127,84,7,3,0,152,133,55,116,109,224,2,0,153,133,204,0,226,131,4,0,156,133,220,243,211,92,2,0,158,5,104,112,203,192,3,0,160,69,44,169,214,145,3,0,161,197,32,69,202,169,3,0,163,197,37,3,59,4,4,0,164,5,207,24,35,190,2,0,164,197,140,155,19,140,3,0,165,5,134,101,174,173,3,0,165,5,136,48,77,45,4,0,166,197,2,167,194,239,2,0,167,69,62,146,12,230,2,0,167,5,166,99,2,127,3,0,171,69,25,81,193,43,3,0,172,69,177,45,248,162,2,0,180,197,35,178,173,46,4,0,183,5,54,254,113,92,3,0,185,197,157,130,189,140,2,0,186,69,229,79,150,207,3,0,188,5,253,16,223,6,4,0,189,5,94,176,36,16,3,0,193,197,5,9,224,233,3,0,198,197,94,216,145,41,2,0,198,5,176,233,27,187,3,0,198,5,164,105,225,53,4,0,199,5,253,70,226,232,2,0,200,5,2,234,193,20,2,0,203,69,17,61,205,227,3,0,204,69,151,81,151,14,2,0,204,5,240,72,56,194,3,0,205,197,133,211,131,70,3,0,207,69,45,245,107,184,3,0,208,197,221,145,248,47,4,0,210,197,42,85,208,145,2,0,214,69,38,0,145,216,2,0,214,5,172,208,212,22,4,0,225,197,205,229,10,100,2,0,228,197,195,138,36,19,2,0,231,5,236,25,108,191,2,0,231,69,201,187,74,245,2,0,234,133,243,199,115,135,4,0,236,5,173,27,237,140,3,0,237,5,158,47,162,179,3,0,237,5,173,196,59,219,3,0,238,197,111,234,19,44,3,0,241,133,184,92,250,175,2,0,241,5,150,30,158,117,4,0,242,69,46,64,31,127,4,0,244,5,229,27,105,93,2,0,244,133,167,235,111,233,3,0,244,197,91,216,70,56,4,0,247,69,187,46,122,4,2,0,250,133,16,207,11,198,3,0,251,197,153,154,62,163,2,0,251,197,190,232,120,108,4,0,252,197,101,195,193,13,4,0,1,198,247,4,138,121,2,0,1,70,17,123,130,143,2,0,2,70,121,82,2,16,2,0,2,198,224,253,194,216,2,0,2,198,95,57,65,187,3,0,6,134,250,44,103,203,3,0,7,70,52,36,225,153,3,0,12,134,115,138,89,144,3,0,16,134,38,126,58,166,2,0,23,6,14,150,57,3,2,0,23,70,45,170,200,81,2,0,23,70,40,78,88,242,2,0,29,6,6,37,150,111,3,0,32,134,177,45,27,147,3,0,37,134,114,16,13,175,3,0,39,6,3,131,43,144,3,0,45,198,74,82,17,159,3,0,52,70,58,58,123,63,2,0,53,70,110,105,248,207,2,0,56,134,212,230,46,202,2,0,58,198,71,173,144,71,3,0,60,134,176,28,161,182,3,0,60,134,161,226,142,103,4,0,63,198,41,188,214,240,2,0,64,134,84,255,180,206,2,0,65,70,209,169,208,82,3,0,66,134,232,193,15,134,3,0,66,198,245,192,234,215,3,0,68,198,13,207,240,230,3,0,69,6,47,16,6,44,4,0,76,134,160,129,139,40,3,0,76,134,219,235,190,143,4,0,87,6,162,72,27,146,4,0,88,70,163,88,118,75,3,0,93,70,134,8,7,233,3,0,94,198,217,47,172,187,3,0,94,198,217,47,189,187,3,0,94,198,217,47,168,190,3,0,97,198,57,35,131,248,2,0,97,198,238,169,247,86,3,0,98,198,183,225,242,202,3,0,101,198,39,81,188,22,3,0,102,134,75,58,56,176,2,0,104,134,179,173,175,106,3,0,105,198,142,180,35,52,2,0,105,198,207,46,243,145,2,0,107,134,114,150,206,82,4,0,107,70,62,88,237,90,4,0,108,70,118,67,20,82,2,0,109,198,31,18,43,187,3,0,110,70,39,5,117,20,3,0,110,6,74,127,147,129,4,0,112,198,26,81,210,14,4,0,113,70,118,196,248,120,2,0,113,198,238,169,40,86,3,0,114,134,195,48,59,133,3,0,116,70,129,20,66,145,2,0,116,198,238,253,237,195,2,0,122,134,227,143,198,170,3,0,123,6,10,36,37,245,2,0,129,134,209,20,38,174,2,0,132,198,198,22,177,164,2,0,134,198,86,239,236,186,2,0,137,6,250,94,103,85,4,0,139,134,118,122,116,101,2,0,145,6,61,153,43,219,3,0,147,198,194,32,157,93,2,0,150,6,17,238,106,129,4,0,153,198,125,99,139,4,2,0,158,70,238,117,96,149,3,0,161,6,49,75,114,58,4,0,163,198,34,216,142,14,4,0,166,198,122,77,218,150,2,0,167,6,147,83,88,94,4,0,171,134,108,41,0,77,3,0,173,198,103,139,62,28,3,0,174,6,192,215,75,45,2,0,174,6,194,21,135,115,4,0,175,134,154,171,158,75,3,0,178,198,226,193,82,72,2,0,180,198,0,159,57,8,2,0,180,134,157,14,214,102,3,0,181,134,94,248,136,11,4,0,182,70,40,72,232,212,2,0,184,6,232,207,52,183,3,0,186,70,106,242,139,231,2,0,186,6,54,76,102,146,3,0,190,70,57,108,149,54,3,0,193,198,214,7,235,79,2,0,193,134,89,50,167,168,3,0,195,198,165,35,141,194,2,0,195,198,245,144,36,88,3,0,196,198,211,176,177,21,3,0,200,6,213,250,124,111,2,0,201,198,228,194,45,177,2,0,203,134,203,133,235,131,3,0,204,134,0,112,217,49,2,0,207,198,224,7,53,153,3,0,207,134,84,67,84,128,4,0,210,198,95,104,231,237,3,0,212,134,215,222,46,107,3,0,213,134,141,184,215,101,3,0,214,70,136,21,216,193,3,0,216,198,44,55,231,131,2,0,218,6,177,224,180,127,4,0,221,6,149,118,82,226,2,0,222,70,202,251,244,254,2,0,226,198,163,234,110,141,3,0,230,6,5,174,86,174,3,0,232,70,189,167,190,29,4,0,233,198,4,157,167,108,2,0,234,134,224,76,95,114,2,0,238,70,7,27,4,98,2,0,239,198,179,211,227,165,2,0,240,134,15,44,155,92,3,0,243,6,178,74,120,140,3,0,245,134,76,65,57,239,2,0,248,6,216,155,90,137,3,0,248,198,84,124,56,144,3,0,249,70,111,66,228,97,4,0,251,6,57,45,212,247,3,0,252,198,7,91,108,150,2,0,1,71,146,181,192,12,4,0,3,135,21,169,36,227,2,0,5,7,139,34,202,17,2,0,6,7,17,193,104,222,3,0,8,7,134,175,203,137,4,0,11,71,60,201,132,95,4,0,19,71,206,93,167,198,3,0,19,71,121,102,17,248,3,0,20,199,25,24,232,182,2,0,21,71,74,80,57,20,2,0,22,135,91,203,157,215,3,0,27,199,69,195,38,59,4,0,29,7,7,167,9,221,2,0,29,71,224,176,82,140,3,0,29,135,141,4,34,1,4,0,30,199,67,96,173,141,3,0,32,135,116,240,202,214,3,0,34,199,37,1,229,117,4,0,35,7,153,223,21,43,3,0,39,135,13,151,192,202,2,0,39,135,164,198,4,20,4,0,39,135,117,50,141,114,4,0,40,199,153,68,202,134,4,0,43,199,78,142,44,5,3,0,43,135,168,228,230,193,3,0,51,135,7,192,4,14,2,0,52,199,147,205,15,213,2,0,55,199,233,44,59,73,3,0,59,135,80,187,240,37,2,0,61,71,10,32,22,94,2,0,63,71,46,28,231,154,2,0,63,7,47,81,164,244,2,0,64,71,196,112,72,27,4,0,67,7,225,247,188,251,3,0,70,199,54,146,88,53,2,0,70,199,157,99,118,59,4,0,78,135,7,93,205,180,2,0,81,199,79,158,194,23,4,0,89,135,163,139,23,41,4,0,93,135,144,131,203,162,3,0,97,135,27,123,34,43,3,0,97,7,59,184,185,67,3,0,98,71,154,223,220,202,2,0,98,135,121,248,3,51,3,0,101,135,218,252,80,84,3,0,103,71,90,75,49,222,3,0,104,7,23,104,172,104,3,0,109,71,207,0,24,212,2,0,110,199,10,40,194,126,3,0,110,7,251,158,18,136,4,0,112,199,12,74,130,232,2,0,112,199,49,243,202,145,3,0,115,7,212,8,217,12,3,0,118,135,77,47,29,111,4,0,123,71,11,91,216,61,4,0,124,135,88,35,218,9,2,0,134,7,184,16,172,144,3,0,136,71,103,224,62,45,4,0,136,7,109,36,163,87,4,0,138,7,188,255,27,205,2,0,138,7,8,58,111,106,3,0,143,199,66,96,134,51,2,0,148,71,168,206,200,21,4,0,149,135,102,142,90,238,3,0,151,7,128,236,47,86,4,0,154,135,34,178,3,108,2,0,154,7,98,197,5,63,3,0,156,71,164,151,168,53,3,0,156,71,250,82,203,139,3,0,158,199,84,216,239,80,2,0,159,7,176,18,137,249,2,0,159,199,177,80,248,236,3,0,160,7,47,172,62,136,2,0,163,7,78,140,209,30,2,0,163,199,175,154,105,164,2,0,163,7,102,6,219,170,3,0,164,135,170,68,42,195,3,0,165,135,30,31,204,93,3,0,166,7,121,184,132,38,4,0,173,71,231,38,25,98,2,0,177,71,13,197,140,207,2,0,179,7,166,177,74,49,2,0,180,71,121,37,190,250,2,0,182,7,114,36,178,244,2,0,183,135,50,76,123,85,2,0,184,135,224,253,79,217,2,0,185,199,176,5,54,245,3,0,187,7,227,101,93,105,2,0,188,199,62,107,225,248,3,0,191,7,244,231,81,111,2,0,191,71,155,114,59,191,3,0,192,7,177,156,125,178,3,0,193,135,56,57,110,15,4,0,195,71,178,248,89,157,3,0,196,135,202,17,213,199,2,0,196,199,52,18,109,1,4,0,202,71,208,17,119,78,2,0,205,71,24,182,158,234,2,0,206,135,121,146,183,90,4,0,207,199,252,255,213,248,3,0,209,71,27,128,65,24,2,0,212,7,102,250,134,68,4,0,214,71,88,239,134,56,3,0,215,135,169,230,231,0,3,0,218,7,251,128,131,205,2,0,220,135,139,118,205,95,4,0,231,199,220,71,232,72,4,0,233,71,106,138,254,187,2,0,240,135,140,62,158,196,2,0,241,135,234,135,234,107,4,0,245,199,170,58,220,232,3,0,249,135,157,52,56,100,2,0,250,199,211,156,215,187,3,0,252,135,225,97,4,149,4,0,254,199,104,222,186,4,2,0,255,7,248,227,249,215,3,0,0,200,41,180,220,201,3,0,2,136,251,221,56,122,2,0,3,136,228,99,189,25,4,0,9,72,140,114,129,116,4,0,11,136,196,213,161,116,4,0,12,72,141,216,223,86,3,0,14,72,222,25,166,85,3,0,15,136,151,74,29,0,3,0,15,8,250,6,118,50,3,0,16,8,85,133,189,48,2,0,18,136,143,184,242,73,3,0,19,200,58,15,121,6,2,0,19,72,250,223,190,123,2,0,19,8,148,159,217,15,3,0,22,72,222,233,131,125,3,0,23,8,101,90,201,160,2,0,25,200,216,116,17,181,3,0,26,200,212,11,213,253,2,0,27,8,208,181,21,198,2,0,32,200,161,223,239,48,3,0,36,72,177,235,9,123,2,0,36,136,252,34,253,148,2,0,43,136,159,222,136,12,3,0,44,8,207,79,148,21,2,0,44,8,23,37,243,159,2,0,48,136,194,173,196,179,2,0,49,200,24,42,132,242,2,0,49,200,158,222,151,99,4,0,51,200,247,246,28,71,3,0,51,72,22,70,13,129,3,0,51,136,178,166,6,51,4,0,53,136,187,134,164,136,2,0,58,136,204,190,121,37,4,0,59,72,246,70,37,115,2,0,59,72,239,71,249,141,2,0,61,200,158,102,18,156,2,0,65,8,72,173,182,71,3,0,70,8,21,65,207,141,2,0,76,72,2,121,118,222,2,0,77,136,55,254,236,23,3,0,80,8,10,254,63,143,3,0,80,8,184,146,246,220,3,0,81,72,8,248,83,147,2,0,82,8,182,186,93,4,3,0,83,136,82,69,153,233,3,0,84,72,31,59,132,152,2,0,85,8,244,156,43,68,2,0,85,200,210,207,248,80,3,0,90,8,148,235,98,186,2,0,90,72,18,89,193,25,3,0,92,8,56,160,148,118,2,0,95,136,223,207,252,77,4,0,96,136,131,98,182,241,2,0,97,200,184,194,132,67,2,0,100,72,31,154,24,103,2,0,100,8,158,38,198,71,3,0,102,200,185,142,107,219,3,0,104,8,110,24,150,12,4,0,112,72,178,153,195,66,4,0,115,72,226,123,179,0,3,0,115,8,66,236,13,69,4,0,116,72,131,105,37,18,3,0,118,8,195,234,130,149,4,0,120,72,78,100,31,61,4,0,123,72,152,209,129,73,2,0,126,8,224,232,226,89,2,0,126,200,36,59,154,28,3,0,126,136,108,225,255,127,4,0,128,136,76,240,115,133,2,0,128,136,76,81,86,202,2,0,128,200,253,105,159,208,2,0,129,200,101,86,35,23,3,0,134,136,39,81,165,0,3,0,134,72,25,130,208,143,4,0,135,8,69,212,144,101,2,0,137,72,167,193,198,6,2,0,138,200,152,252,155,78,3,0,139,8,132,88,166,138,4,0,140,72,153,223,236,5,3,0,141,200,76,81,160,169,2,0,143,72,113,198,92,90,4,0,148,72,134,82,181,102,4,0,150,136,216,186,112,45,2,0,150,200,76,81,144,167,2,0,153,200,75,153,101,7,3,0,155,8,250,150,48,253,3,0,157,8,7,235,234,12,4,0,161,72,77,63,158,45,2,0,161,200,175,45,62,161,2,0,162,8,105,147,20,133,2,0,164,8,22,102,66,251,2,0,164,200,152,167,204,241,3,0,169,200,112,231,70,139,4,0,170,8,38,227,205,148,4,0,174,72,154,223,11,200,2,0,175,136,25,192,56,171,2,0,175,8,47,158,214,106,3,0,179,72,5,77,252,57,2,0,182,8,42,31,173,204,2,0,184,200,20,148,81,85,2,0,184,8,162,215,245,146,2,0,185,200,210,124,120,142,3,0,187,200,169,239,68,30,3,0,189,200,184,75,25,64,2,0,193,72,54,140,16,96,2,0,197,136,201,18,136,141,4,0,204,8,53,56,164,166,2,0,206,72,248,132,209,39,2,0,207,72,236,14,187,153,2,0,207,8,125,195,49,157,2,0,210,8,32,159,154,181,3,0,211,200,96,129,36,133,2,0,211,72,115,172,102,119,3,0,212,8,211,143,48,98,2,0,212,200,118,41,7,32,4,0,213,200,152,223,53,104,3,0,213,200,208,193,134,247,3,0,221,8,77,93,107,111,3,0,224,200,51,45,212,112,3,0,225,136,202,114,186,160,3,0,227,200,80,27,105,2,3,0,234,200,80,154,61,12,3,0,235,8,233,192,140,91,3,0,236,8,168,53,102,127,2,0,237,72,153,223,121,0,3,0,237,200,119,169,63,40,3,0,237,8,120,92,37,225,3,0,243,72,24,81,51,81,3,0,244,136,77,41,152,180,2,0,249,200,181,219,7,80,4,0,251,72,78,1,170,179,2,0,252,8,32,43,147,189,2,0,254,72,65,122,174,28,3,0,0,201,158,94,198,15,3,0,2,73,236,111,158,21,3,0,8,137,126,123,55,49,4,0,8,73,50,36,60,90,4,0,9,9,180,18,120,210,3,0,13,201,131,252,162,10,4,0,16,201,72,70,248,36,4,0,18,201,50,77,172,192,2,0,25,137,13,129,78,30,4,0,26,9,114,80,189,138,2,0,26,73,58,76,232,236,3,0,27,201,95,114,156,47,4,0,29,137,132,254,0,217,2,0,34,9,7,248,252,48,2,0,38,9,241,54,39,234,2,0,38,73,210,186,48,140,4,0,41,9,32,239,217,113,3,0,45,73,77,167,109,87,2,0,46,73,189,72,233,200,2,0,48,137,136,111,255,118,2,0,53,137,186,254,148,67,4,0,59,201,140,37,159,30,2,0,59,137,228,230,66,158,2,0,64,73,251,144,18,172,3,0,67,9,159,208,204,78,2,0,69,9,2,80,29,52,4,0,70,9,148,159,221,14,3,0,73,137,186,212,214,106,2,0,75,9,7,165,12,129,2,0,79,73,119,150,249,112,4,0,81,201,121,67,45,73,4,0,82,201,51,32,156,110,4,0,84,9,127,248,105,10,2,0,84,73,177,225,82,167,3,0,86,137,18,223,78,226,3,0,93,9,233,160,1,43,3,0,95,201,187,61,87,2,4,0,95,201,235,182,2,8,4,0,97,137,39,81,217,0,3,0,97,73,248,31,8,94,3,0,100,201,83,204,4,71,4,0,104,9,46,15,116,9,2,0,105,137,66,250,12,60,3,0,106,9,42,31,154,204,2,0,106,73,209,255,22,71,4,0,110,137,27,163,111,3,3,0,110,137,56,27,82,161,3,0,114,137,52,9,115,193,2,0,116,137,189,186,206,14,3,0,116,9,188,245,69,66,3,0,116,201,52,195,156,241,3,0,117,9,220,52,11,93,3,0,118,201,122,77,235,150,2,0,120,137,189,186,152,14,3,0,120,9,180,221,118,89,4,0,121,201,100,197,124,91,2,0,121,73,117,105,31,171,3,0,127,201,165,125,117,22,2,0,127,201,47,194,226,198,2,0,128,73,38,246,133,57,2,0,130,137,19,192,223,178,2,0,130,201,15,44,221,35,3,0,133,137,39,81,219,255,2,0,134,201,80,193,251,5,4,0,135,73,122,71,252,139,2,0,140,137,120,85,96,92,2,0,143,9,29,3,120,217,2,0,145,9,132,64,6,9,3,0,153,201,159,156,115,99,4,0,154,9,14,120,13,4,4,0,157,137,75,8,230,24,2,0,162,201,23,81,8,99,3,0,165,201,147,198,107,200,3,0,166,201,162,232,111,48,2,0,166,201,104,129,195,104,4,0,176,9,19,113,27,118,2,0,178,137,26,226,41,48,4,0,183,73,85,180,14,52,4,0,190,73,97,85,38,87,4,0,193,201,239,81,0,226,2,0,201,201,75,218,112,173,2,0,201,201,173,3,156,172,3,0,204,73,106,147,45,199,3,0,205,137,153,223,243,235,2,0,205,73,189,148,65,130,4,0,208,137,32,35,25,118,3,0,208,137,192,6,57,231,3,0,208,201,16,69,234,85,4,0,213,137,95,146,26,91,3,0,213,9,10,118,116,83,4,0,214,9,225,142,252,27,3,0,214,9,12,65,172,136,3,0,214,73,194,187,62,140,3,0,217,137,102,30,1,59,2,0,218,9,32,158,202,132,2,0,222,73,29,231,216,67,2,0,222,9,116,139,233,101,2,0,223,73,125,43,174,237,2,0,227,201,117,86,66,33,2,0,227,201,4,250,221,126,4,0,230,137,8,181,243,234,3,0,230,137,232,45,91,62,4,0,232,201,59,237,101,39,4,0,233,73,153,223,118,7,3,0,234,201,47,226,15,137,2,0,237,73,49,248,117,23,4,0,241,73,124,222,220,178,3,0,242,9,86,113,228,51,4,0,243,137,36,84,211,215,2,0,243,137,31,254,19,153,3,0,243,9,221,47,0,162,3,0,244,9,188,128,8,154,3,0,247,137,253,129,211,51,4,0,248,9,38,206,194,207,2,0,0,74,153,223,234,15,3,0,3,138,144,206,13,246,3,0,7,202,106,62,156,25,3,0,8,138,178,178,98,92,4,0,10,10,210,235,68,152,2,0,10,202,176,75,36,255,2,0,12,10,222,163,82,33,2,0,12,138,230,144,194,164,3,0,13,202,81,234,43,169,2,0,14,10,46,153,163,103,3,0,16,138,95,146,190,91,3,0,18,138,42,74,238,121,3,0,20,10,18,139,96,82,4,0,25,74,207,235,177,134,2,0,29,74,6,255,205,111,4,0,30,138,253,17,235,248,2,0,31,138,175,100,159,154,2,0,31,74,224,151,3,10,3,0,41,202,43,248,154,147,2,0,41,74,188,205,50,211,2,0,43,202,23,217,5,142,4,0,46,10,51,65,213,90,2,0,46,10,45,211,10,91,2,0,46,74,112,231,10,230,3,0,47,138,143,77,172,83,2,0,49,10,105,76,14,1,3,0,51,10,7,218,95,35,3,0,51,138,102,203,97,86,3,0,53,138,219,8,120,80,3,0,53,202,5,190,212,115,3,0,56,138,63,66,28,104,2,0,56,10,61,106,94,213,3,0,62,202,81,185,47,16,2,0,63,74,75,240,80,151,2,0,66,74,0,53,121,167,3,0,73,202,209,119,100,175,3,0,79,74,24,81,185,80,3,0,81,138,218,242,116,153,3,0,82,74,153,223,40,14,3,0,83,74,177,201,124,197,3,0,87,74,60,166,21,42,2,0,89,138,91,206,218,104,3,0,94,74,154,223,33,158,2,0,94,202,235,232,54,230,3,0,94,74,67,38,217,236,3,0,95,138,215,195,197,152,2,0,95,10,204,187,149,244,2,0,99,138,29,120,132,214,2,0,102,10,0,144,85,12,3,0,102,74,179,185,67,209,3,0,103,10,224,227,151,192,2,0,104,202,18,251,197,238,3,0,105,202,119,169,80,40,3,0,107,202,141,32,122,119,3,0,110,202,97,177,209,94,3,0,112,202,80,167,37,231,3,0,116,74,101,11,135,30,4,0,118,202,135,99,103,247,2,0,127,74,154,223,255,156,2,0,128,74,83,86,70,44,2,0,129,74,158,80,236,112,2,0,129,74,136,42,82,201,2,0,132,10,38,206,230,207,2,0,133,10,182,88,138,28,4,0,134,74,181,234,173,124,2,0,134,10,138,37,222,223,2,0,137,10,59,58,61,47,3,0,139,10,65,86,141,22,4,0,140,10,242,227,4,255,2,0,143,138,55,54,126,104,4,0,147,10,101,115,107,77,3,0,148,74,94,4,171,254,2,0,150,138,35,107,67,154,3,0,151,202,2,151,158,104,2,0,151,10,30,81,109,42,3,0,152,10,74,171,152,39,4,0,153,10,207,177,16,88,3,0,154,138,162,23,70,146,3,0,155,74,182,79,56,172,2,0,157,202,177,150,66,212,3,0,162,202,245,102,231,39,2,0,162,138,142,60,44,219,2,0,162,138,160,114,158,101,3,0,164,10,107,41,42,77,3,0,164,202,233,142,229,89,3,0,165,202,46,139,105,6,3,0,166,138,140,248,117,56,4,0,171,10,181,126,3,18,2,0,172,10,135,250,177,203,3,0,174,202,199,130,22,39,4,0,180,74,213,49,7,104,4,0,183,138,24,192,191,169,2,0,191,202,105,232,84,129,2,0,193,138,114,48,0,35,3,0,198,202,216,225,53,163,3,0,203,10,158,36,162,163,3,0,204,138,217,244,163,38,2,0,204,202,134,154,8,61,2,0,207,202,194,150,78,62,2,0,208,202,211,17,32,230,3,0,208,138,64,97,207,133,4,0,211,202,102,67,215,103,4,0,213,10,38,206,212,207,2,0,213,74,76,140,245,118,3,0,214,10,216,149,104,120,2,0,216,74,176,0,50,189,3,0,217,138,94,186,106,30,3,0,220,10,30,81,179,42,3,0,223,202,63,202,167,1,4,0,223,138,51,219,14,150,4,0,223,138,51,219,59,150,4,0,223,138,51,219,113,150,4,0,223,138,51,219,167,150,4,0,223,138,51,219,208,150,4,0,223,138,51,219,250,150,4,0,224,74,71,81,105,204,2,0,225,138,157,95,151,205,2,0,225,138,251,211,185,123,4,0,229,74,187,67,100,223,3,0,230,138,220,47,39,145,3,0,232,202,179,30,145,102,2,0,235,138,97,50,250,207,3,0,237,10,3,119,25,48,3,0,238,138,250,212,248,244,2,0,240,10,181,162,245,46,3,0,245,74,182,94,104,251,2,0,245,202,116,61,149,2,3,0,249,138,173,11,229,33,3,0,250,10,86,59,108,26,2,0,250,138,189,79,172,224,2,0,255,138,53,194,76,199,2,0,255,138,82,121,237,13,3,0,255,10,158,164,206,138,3,0,5,11,90,46,215,88,2,0,7,139,114,48,113,146,4,0,9,203,170,18,209,208,3,0,13,139,194,106,106,44,2,0,14,75,115,253,29,152,4,0,15,139,207,176,201,32,4,0,16,75,18,216,124,155,3,0,17,11,220,97,186,132,3,0,18,139,121,95,108,64,2,0,19,203,250,252,5,12,3,0,20,11,128,135,148,97,3,0,21,11,120,177,214,216,2,0,23,139,197,3,236,18,2,0,23,11,215,171,80,239,2,0,24,75,223,224,210,63,3,0,26,139,0,239,200,27,3,0,28,75,47,87,151,254,2,0,29,75,149,41,78,88,3,0,31,75,47,51,74,87,2,0,38,203,231,252,1,199,2,0,46,139,130,180,198,175,2,0,47,11,150,29,72,17,2,0,52,139,174,15,25,220,2,0,54,203,53,42,57,31,2,0,56,11,91,9,153,136,4,0,57,11,182,197,163,95,2,0,58,139,73,140,168,78,2,0,59,139,63,226,102,234,2,0,62,75,68,12,74,188,3,0,63,139,242,174,109,8,4,0,64,203,8,71,62,135,4,0,67,11,160,206,60,16,3,0,67,139,111,184,107,99,3,0,68,11,218,203,70,37,3,0,68,203,29,81,166,43,3,0,75,203,207,7,42,247,3,0,76,139,241,54,248,57,3,0,79,139,155,137,127,15,2,0,79,139,119,224,228,125,2,0,84,203,19,163,111,75,2,0,84,11,172,48,142,79,2,0,85,139,77,34,209,171,2,0,91,75,217,101,68,151,4,0,92,75,80,72,98,27,4,0,93,75,122,36,80,6,3,0,96,203,110,239,2,3,4,0,97,11,7,116,200,134,2,0,98,203,125,220,43,94,3,0,101,75,49,200,156,115,2,0,102,203,42,89,52,6,2,0,102,75,194,12,129,176,3,0,104,75,154,223,16,170,2,0,108,203,224,253,125,216,2,0,109,11,153,223,43,37,3,0,110,75,154,223,29,170,2,0,112,75,36,62,131,240,2,0,116,203,253,79,85,116,2,0,116,75,253,83,17,28,3,0,116,11,124,54,34,108,4,0,117,11,235,13,206,103,2,0,117,11,84,122,71,232,2,0,119,75,98,218,176,180,3,0,119,11,145,183,31,8,4,0,120,75,113,185,171,210,2,0,120,75,32,38,19,124,3,0,121,75,135,144,15,191,3,0,121,203,56,41,148,79,4,0,123,139,170,194,111,88,4,0,125,75,160,174,197,75,3,0,125,11,116,102,34,174,3,0,126,139,160,154,91,165,3,0,128,203,224,253,62,216,2,0,129,75,205,184,201,45,3,0,134,203,48,39,190,26,3,0,137,75,36,114,231,243,3,0,147,11,75,98,208,22,2,0,149,11,58,105,85,163,2,0,150,203,205,249,165,194,2,0,151,75,196,202,16,110,2,0,155,139,40,75,248,76,2,0,155,203,171,218,150,126,4,0,156,11,243,86,213,12,2,0,156,75,62,119,207,122,2,0,156,203,89,205,191,210,2,0,156,203,253,41,176,101,3,0,157,203,246,235,220,138,4,0,160,203,187,16,135,40,2,0,162,203,159,55,130,184,3,0,164,11,3,80,221,15,2,0,166,11,95,77,57,150,2,0,169,11,231,86,166,69,2,0,169,11,169,190,108,72,2,0,170,11,199,78,249,54,3,0,171,139,167,209,16,71,2,0,172,203,214,117,226,117,2,0,176,139,201,79,78,96,4,0,177,75,243,133,89,190,3,0,177,75,250,227,67,115,4,0,178,11,62,248,6,75,3,0,178,203,133,179,88,208,3,0,178,203,175,234,49,147,4,0,179,11,147,68,201,241,2,0,180,139,124,184,155,93,3,0,182,11,113,189,62,3,4,0,184,75,157,100,194,29,2,0,186,203,233,87,66,7,2,0,189,139,150,25,91,149,2,0,189,139,2,177,25,131,3,0,192,11,165,69,158,167,2,0,193,11,128,125,118,89,3,0,193,203,139,155,50,129,3,0,193,139,255,157,78,153,4,0,201,11,169,46,161,40,2,0,201,11,198,104,174,163,3,0,211,203,207,79,133,21,2,0,212,75,149,201,85,19,4,0,214,11,148,59,218,38,2,0,215,11,212,21,181,11,3,0,219,11,161,73,175,109,2,0,222,11,23,217,172,31,4,0,225,11,119,207,33,57,2,0,225,11,153,100,182,224,3,0,227,75,33,156,34,146,2,0,227,75,29,198,202,6,3,0,229,203,223,167,6,197,2,0,229,139,108,219,18,168,3,0,230,11,81,171,123,79,3,0,231,11,105,74,67,129,4,0,232,203,212,11,99,253,2,0,234,139,102,79,131,3,4,0,238,75,160,54,174,58,3,0,242,75,108,31,149,132,3,0,245,75,90,79,211,115,2,0,248,203,121,56,16,118,2,0,250,75,170,7,111,68,4,0,251,11,183,94,141,226,3,0,5,76,62,24,139,78,4,0,7,12,242,42,213,199,3,0,10,140,194,163,130,185,3,0,12,140,53,41,221,31,3,0,16,12,132,24,251,85,3,0,18,76,146,116,132,171,2,0,21,76,114,51,170,29,2,0,21,204,5,129,126,54,2,0,23,204,96,74,129,187,3,0,30,76,164,143,212,129,3,0,30,204,110,106,83,10,4,0,31,12,183,94,158,226,3,0,32,204,210,44,148,65,2,0,34,12,88,12,82,134,2,0,35,76,248,2,195,59,4,0,37,12,236,123,53,44,2,0,37,76,139,243,15,236,2,0,40,140,15,248,31,173,2,0,41,140,177,33,250,12,2,0,43,76,90,75,137,65,4,0,47,76,151,58,254,64,2,0,53,204,24,249,243,125,4,0,59,140,6,148,180,24,2,0,64,140,27,68,176,41,2,0,68,12,81,171,139,79,3,0,71,12,68,4,77,7,4,0,71,140,217,151,45,32,4,0,78,76,166,81,178,60,3,0,79,76,238,112,164,223,3,0,80,140,117,103,175,32,4,0,84,12,224,10,79,65,4,0,85,12,131,233,220,240,3,0,86,12,55,143,208,61,3,0,87,140,129,56,154,73,3,0,87,204,58,119,138,112,3,0,91,204,129,248,181,44,3,0,93,12,145,32,196,112,2,0,93,76,74,199,242,144,4,0,94,76,87,162,139,253,2,0,94,204,119,173,200,130,4,0,95,204,60,123,35,107,3,0,99,140,24,81,194,73,3,0,102,204,207,236,146,40,4,0,103,12,99,74,161,186,2,0,109,76,19,216,216,60,3,0,111,140,215,162,104,3,4,0,115,12,138,3,181,59,2,0,116,76,91,214,83,81,2,0,118,140,211,118,242,237,2,0,118,204,40,48,248,97,4,0,119,12,46,119,128,25,4,0,120,12,244,36,108,151,4,0,121,12,231,203,83,54,2,0,125,140,231,129,143,124,3,0,126,204,82,203,172,151,2,0,126,204,29,228,162,25,4,0,127,12,166,172,70,188,2,0,127,76,244,223,70,80,3,0,129,12,18,192,253,171,2,0,130,12,175,159,170,252,3,0,135,140,208,127,249,6,3,0,136,140,122,229,13,77,2,0,138,204,139,20,232,102,3,0,139,140,165,10,185,55,3,0,140,204,139,20,29,68,3,0,140,204,139,20,47,68,3,0,140,204,139,20,65,68,3,0,140,204,139,20,82,68,3,0,140,204,139,20,103,68,3,0,140,204,139,20,132,68,3,0,140,204,139,20,152,68,3,0,140,204,139,20,173,68,3,0,140,204,139,20,200,68,3,0,140,204,139,20,219,68,3,0,140,204,139,20,243,68,3,0,140,204,139,20,5,69,3,0,140,204,139,20,29,69,3,0,140,204,139,20,50,69,3,0,140,204,139,20,71,69,3,0,140,204,139,20,93,69,3,0,140,204,139,20,107,69,3,0,140,204,139,20,129,69,3,0,140,204,139,20,147,69,3,0,140,204,139,20,168,69,3,0,140,204,139,20,182,69,3,0,140,204,139,20,198,69,3,0,140,204,139,20,220,69,3,0,140,204,139,20,237,69,3,0,140,204,139,20,253,69,3,0,140,204,139,20,12,70,3,0,140,204,139,20,28,70,3,0,140,204,139,20,46,70,3,0,140,204,139,20,66,70,3,0,140,204,139,20,81,70,3,0,140,204,139,20,56,82,3,0,140,204,139,20,93,82,3,0,140,204,139,20,118,82,3,0,140,204,139,20,144,82,3,0,140,204,139,20,216,151,4,0,140,204,139,20,110,153,4,0,142,12,124,56,48,148,3,0,143,204,139,20,190,45,3,0,143,12,71,35,14,30,4,0,147,204,124,93,190,140,4,0,148,76,186,126,251,89,4,0,160,204,139,20,155,250,2,0,166,76,167,178,59,187,2,0,168,12,233,56,165,108,4,0,170,12,82,102,76,72,4,0,172,76,3,152,200,49,4,0,174,204,139,20,8,243,2,0,174,204,66,116,28,67,3,0,177,204,243,3,74,163,3,0,179,12,89,104,161,10,2,0,180,204,177,12,99,30,2,0,180,204,188,34,47,51,4,0,184,140,135,66,12,2,3,0,188,204,139,20,98,212,2,0,189,204,17,100,25,217,3,0,189,12,232,206,220,26,4,0,190,12,82,55,4,119,4,0,192,76,85,103,92,148,4,0,193,12,147,67,152,143,3,0,194,140,200,31,231,122,2,0,200,76,226,179,208,224,3,0,201,204,130,184,199,80,3,0,202,204,7,245,18,38,4,0,202,140,77,241,253,99,4,0,204,204,19,186,12,37,3,0,205,204,139,20,47,204,2,0,206,204,139,20,20,204,2,0,208,12,80,17,252,100,2,0,210,76,29,177,181,78,4,0,211,204,195,166,169,215,2,0,211,140,122,54,152,232,3,0,212,140,188,59,50,43,4,0,215,76,171,254,106,4,4,0,216,140,125,183,135,229,3,0,218,140,79,114,52,97,4,0,219,204,184,28,105,237,3,0,220,204,225,101,32,241,2,0,221,12,123,168,154,98,3,0,221,204,251,94,172,228,3,0,224,76,12,58,180,176,2,0,230,140,28,136,151,189,3,0,231,140,198,246,101,235,2,0,234,204,58,99,105,180,2,0,239,12,39,94,97,42,4,0,240,140,173,139,86,130,2,0,241,76,124,132,51,62,2,0,243,12,255,136,17,88,4,0,247,76,147,49,61,30,2,0,247,76,182,210,203,130,2,0,252,140,21,225,251,104,2,0,253,140,52,111,65,96,3,0,1,13,131,45,39,252,3,0,3,77,168,141,197,8,4,0,6,13,72,177,130,190,2,0,6,13,178,245,204,119,4,0,8,13,54,81,196,232,2,0,11,13,59,239,29,109,2,0,13,205,19,78,104,57,4,0,15,141,187,121,0,215,2,0,15,13,128,117,100,116,4,0,18,77,139,93,206,189,3,0,20,141,185,64,179,138,4,0,23,13,167,123,236,32,2,0,24,205,91,209,173,36,4,0,25,13,88,181,86,3,4,0,26,205,153,44,105,8,3,0,30,141,109,198,205,83,4,0,33,205,190,54,83,126,4,0,34,77,104,88,204,217,3,0,36,141,87,52,195,66,3,0,37,13,135,64,24,145,4,0,38,77,143,232,249,125,3,0,39,77,218,140,181,34,3,0,41,13,243,159,25,105,3,0,42,13,89,116,169,53,2,0,43,13,58,155,106,115,4,0,48,13,157,21,7,132,4,0,50,141,7,38,24,240,2,0,52,13,13,6,71,236,3,0,53,141,254,247,148,54,2,0,53,205,152,221,35,171,2,0,55,141,236,186,179,116,3,0,55,205,10,253,73,210,3,0,58,141,151,145,177,94,3,0,59,141,135,98,255,68,2,0,59,141,246,183,146,144,4,0,61,141,214,202,172,85,2,0,70,13,194,199,33,236,3,0,70,13,29,18,45,78,4,0,71,141,149,177,192,9,3,0,75,205,176,129,58,135,3,0,76,77,229,113,170,4,3,0,81,205,28,134,147,179,2,0,83,77,124,184,206,33,4,0,87,141,163,159,174,147,3,0,88,141,205,63,251,229,2,0,92,141,177,110,255,212,2,0,94,141,238,142,201,240,3,0,96,13,53,81,244,231,2,0,98,13,200,189,206,211,2,0,99,13,235,0,162,139,4,0,100,13,20,192,185,23,3,0,110,141,30,220,127,106,2,0,112,205,51,63,214,156,2,0,114,205,70,155,186,0,4,0,116,205,212,11,119,253,2,0,123,13,160,107,196,225,2,0,123,77,72,92,225,220,3,0,127,141,137,184,21,74,3,0,127,13,112,95,50,119,3,0,131,205,117,36,223,76,2,0,134,13,193,227,132,88,2,0,135,205,76,94,190,50,3,0,135,205,206,155,249,64,3,0,135,141,146,2,170,145,3,0,137,141,82,162,217,239,2,0,144,77,87,182,244,126,4,0,144,205,91,95,41,137,4,0,146,77,103,161,73,0,4,0,148,13,41,40,217,13,2,0,148,141,65,86,213,221,3,0,148,13,90,44,132,224,3,0,149,13,177,200,183,123,3,0,154,141,135,240,76,166,3,0,155,77,45,43,150,137,4,0,163,205,24,192,66,167,2,0,165,205,66,217,249,78,2,0,170,77,218,21,189,60,2,0,175,77,191,28,10,166,2,0,177,13,250,31,12,68,2,0,178,141,77,167,42,154,2,0,179,205,46,103,218,175,3,0,181,77,185,159,163,48,3,0,184,77,147,171,144,96,2,0,184,77,51,195,169,211,2,0,186,205,125,181,137,139,4,0,187,141,29,163,111,25,4,0,191,205,131,46,216,142,4,0,192,77,229,13,241,148,4,0,193,77,7,98,82,10,2,0,193,13,144,197,104,116,3,0,200,77,22,30,109,57,2,0,201,77,68,27,154,135,3,0,204,205,128,241,99,207,2,0,207,141,189,5,61,226,2,0,209,141,164,39,60,90,2,0,213,205,5,76,242,89,2,0,213,205,45,56,123,98,2,0,214,77,250,8,128,80,2,0,216,13,185,142,246,63,2,0,216,141,247,155,80,84,2,0,218,77,84,252,119,1,3,0,220,141,193,98,47,132,3,0,223,13,212,228,244,113,4,0,225,13,226,67,22,110,4,0,226,13,13,120,18,149,2,0,226,205,48,99,191,47,4,0,229,141,136,107,5,97,3,0,231,77,47,89,203,9,4,0,233,13,236,37,84,30,3,0,234,13,69,49,99,114,3,0,235,205,213,3,39,59,2,0,235,141,148,137,28,253,3,0,236,205,173,79,191,223,2,0,244,141,4,128,189,64,2,0,244,13,170,250,107,101,4,0,250,13,173,189,175,208,2,0,253,77,211,25,216,20,4,0,254,77,137,235,126,145,2,0,0,78,141,52,128,71,4,0,12,14,22,254,151,164,3,0,15,142,203,15,218,16,3,0,16,142,36,47,177,142,3,0,19,78,11,143,118,199,2,0,20,14,9,112,229,92,2,0,21,78,133,251,30,126,2,0,21,206,198,184,172,47,3,0,24,206,67,7,16,157,3,0,26,206,166,244,211,24,3,0,26,78,0,18,113,247,3,0,27,142,45,216,49,78,2,0,27,206,156,138,87,26,4,0,27,78,247,23,188,93,4,0,33,142,66,80,40,21,2,0,35,206,45,216,172,17,3,0,36,206,24,181,4,90,2,0,36,142,15,248,247,172,2,0,40,142,26,125,86,141,4,0,43,142,14,221,131,146,2,0,44,14,167,108,198,36,2,0,44,14,217,47,56,223,2,0,44,78,172,8,217,45,4,0,48,78,121,33,205,78,4,0,49,142,152,20,5,7,2,0,52,14,190,186,20,13,3,0,53,142,105,228,120,194,3,0,55,78,12,254,0,153,3,0,57,206,246,20,146,74,2,0,58,14,72,56,95,180,3,0,60,78,5,186,44,8,3,0,60,78,157,183,89,17,3,0,61,14,2,204,48,211,3,0,63,206,55,138,192,65,4,0,64,206,76,81,194,170,2,0,65,78,26,170,105,145,3,0,67,14,14,232,208,47,4,0,67,206,30,200,173,76,4,0,68,142,153,223,148,240,2,0,70,206,129,6,229,78,2,0,70,14,246,9,77,117,2,0,74,78,97,177,207,160,3,0,77,142,40,61,246,27,4,0,78,14,226,110,236,173,2,0,78,78,186,171,231,187,3,0,81,206,225,116,90,147,4,0,82,142,119,244,151,140,2,0,83,78,225,46,61,177,2,0,85,78,45,200,190,9,4,0,86,206,244,65,106,90,3,0,88,142,153,223,18,237,2,0,89,14,195,53,31,232,3,0,92,206,93,188,228,169,3,0,93,206,139,102,53,28,4,0,94,206,139,102,30,28,4,0,97,78,105,10,42,48,3,0,100,14,50,235,29,81,3,0,100,78,212,148,85,119,3,0,103,206,54,124,229,141,2,0,103,206,22,43,243,176,2,0,103,14,18,185,85,18,3,0,104,142,178,16,213,139,2,0,104,14,196,215,246,149,2,0,109,142,128,177,103,218,2,0,109,14,152,13,7,23,4,0,112,14,248,227,252,178,3,0,113,206,45,92,91,112,4,0,115,14,151,103,208,65,3,0,117,78,213,255,134,16,4,0,120,206,53,99,22,87,2,0,123,78,24,128,81,23,2,0,127,206,55,71,173,241,3,0,129,142,146,20,83,160,3,0,132,78,63,32,235,50,4,0,133,206,205,249,187,183,2,0,133,78,228,152,131,81,4,0,134,14,98,216,163,75,4,0,139,206,86,234,168,175,2,0,142,78,121,154,29,177,3,0,145,14,226,26,20,148,2,0,145,206,176,51,76,22,4,0,146,142,245,181,230,25,2,0,147,78,245,37,184,60,4,0,149,142,128,175,169,111,3,0,149,14,175,219,28,233,3,0,150,206,60,222,161,41,2,0,151,206,138,41,93,68,2,0,157,14,155,130,182,155,3,0,158,206,234,140,208,182,2,0,160,14,107,197,237,88,2,0,161,206,180,72,108,106,2,0,161,142,236,103,118,115,2,0,163,142,4,171,221,250,3,0,164,142,221,121,60,164,3,0,165,78,147,164,153,125,2,0,170,206,110,247,126,138,4,0,172,78,138,149,38,34,4,0,174,206,213,35,110,255,2,0,175,206,95,36,176,75,4,0,176,14,210,67,248,219,2,0,176,206,14,176,110,243,3,0,178,206,83,119,237,72,3,0,179,78,2,240,70,4,3,0,180,206,100,186,150,30,3,0,182,142,7,51,106,233,2,0,184,142,110,221,28,73,4,0,185,206,60,160,134,113,2,0,186,206,25,55,225,53,2,0,186,78,168,99,178,126,2,0,193,142,12,223,227,102,4,0,195,14,149,112,8,162,3,0,205,142,93,121,243,188,3,0,206,206,98,112,10,214,2,0,208,78,202,8,92,185,3,0,210,206,98,112,161,214,2,0,212,78,123,37,20,14,2,0,212,206,87,240,150,233,2,0,213,206,209,10,132,157,2,0,215,206,5,66,220,229,2,0,221,206,171,43,2,186,3,0,221,78,33,68,122,77,4,0,225,206,30,196,125,118,4,0,233,142,76,10,227,77,4,0,239,142,202,32,114,54,4,0,242,14,127,237,75,41,2,0,242,14,252,228,157,171,2,0,246,78,64,24,76,119,2,0,250,14,53,154,82,52,4,0,255,14,17,47,94,36,4,0,3,207,76,94,165,50,3,0,5,15,161,181,207,76,2,0,5,207,153,185,110,141,2,0,6,207,124,7,51,114,2,0,8,207,72,26,48,134,4,0,12,207,74,185,249,205,3,0,15,15,157,190,160,176,2,0,15,143,175,242,69,91,3,0,18,143,43,21,37,4,4,0,20,79,15,192,44,199,2,0,20,15,252,250,13,245,3,0,22,15,153,142,15,179,3,0,25,207,191,177,29,0,4,0,26,79,24,126,106,85,2,0,26,15,157,145,180,247,2,0,27,79,166,145,26,123,3,0,29,143,254,233,26,91,2,0,30,143,45,13,196,131,2,0,31,207,196,89,14,112,3,0,32,79,110,225,249,60,2,0,35,79,155,160,197,113,3,0,35,15,133,40,30,37,4,0,36,15,38,231,254,65,3,0,39,15,73,27,50,183,2,0,43,15,69,122,128,228,2,0,48,143,34,167,82,216,2,0,49,207,13,141,156,145,4,0,52,207,25,192,208,170,2,0,53,79,32,222,51,27,4,0,54,207,193,111,16,63,4,0,56,79,180,228,8,114,4,0,57,79,210,8,48,21,3,0,58,143,39,234,34,169,3,0,61,79,38,122,137,54,4,0,62,207,197,132,125,113,4,0,63,207,123,177,235,216,2,0,64,143,153,116,131,48,3,0,64,15,118,179,173,157,3,0,66,15,240,190,39,96,2,0,68,15,70,21,225,64,2,0,70,79,181,132,235,57,4,0,72,143,89,209,140,81,3,0,73,207,65,248,163,139,2,0,79,143,192,21,39,41,2,0,80,15,83,208,64,18,3,0,81,143,4,234,191,146,3,0,85,207,246,135,81,83,2,0,86,143,224,13,54,105,2,0,86,15,247,113,67,81,4,0,89,79,70,23,246,240,3,0,90,79,74,193,171,198,2,0,90,15,223,178,46,122,3,0,93,79,5,52,99,37,2,0,94,207,129,215,86,115,4,0,95,143,251,65,199,1,4,0,99,79,39,28,187,154,2,0,101,15,40,159,151,127,2,0,106,79,229,113,236,59,4,0,107,207,41,218,139,112,2,0,107,15,219,201,209,149,3,0,110,15,94,202,156,88,4,0,113,79,253,14,5,46,2,0,113,15,134,85,237,151,2,0,124,207,150,156,2,30,3,0,125,143,21,163,41,118,4,0,127,143,61,95,104,215,2,0,127,15,117,51,86,184,3,0,127,143,42,59,243,28,4,0,133,143,178,33,131,106,4,0,134,15,29,153,145,182,2,0,134,207,137,152,121,121,4,0,134,143,255,39,139,148,4,0,135,143,248,109,80,44,4,0,135,143,156,28,80,121,4,0,138,143,93,90,8,115,3,0,141,15,42,157,138,77,2,0,141,207,63,79,249,15,4,0,142,79,74,111,134,254,3,0,143,79,92,139,191,66,2,0,152,143,149,64,247,197,3,0,153,207,47,81,199,245,2,0,160,143,91,240,144,63,4,0,163,79,78,236,158,6,4,0,164,79,88,183,150,65,3,0,164,79,214,137,183,95,3,0,166,15,152,115,46,45,2,0,166,79,131,42,164,193,2,0,167,207,22,217,166,129,4,0,168,207,55,38,227,180,2,0,169,207,159,189,211,89,2,0,171,207,66,92,195,220,2,0,172,207,78,160,239,16,3,0,172,15,22,179,177,37,4,0,174,207,112,217,111,177,2,0,174,15,205,215,190,208,2,0,174,79,211,158,112,33,3,0,174,79,167,209,224,167,3,0,175,143,47,137,153,173,2,0,175,143,235,9,163,244,3,0,176,143,48,39,254,39,3,0,176,15,119,34,0,169,3,0,183,15,222,11,184,62,2,0,186,143,248,119,37,215,2,0,188,79,172,231,5,54,2,0,188,207,17,100,56,217,3,0,190,207,236,54,55,87,4,0,192,15,96,227,16,200,3,0,192,79,23,42,132,110,4,0,193,207,129,162,121,102,2,0,193,143,209,7,29,254,3,0,195,207,122,164,146,148,3,0,195,79,190,242,6,129,4,0,197,15,14,17,233,253,2,0,198,143,10,3,104,130,3,0,198,15,55,50,0,34,4,0,200,15,155,130,224,155,3,0,202,79,9,16,87,187,2,0,203,79,172,122,108,154,3,0,204,79,165,201,233,36,4,0,211,143,178,168,167,217,2,0,214,79,64,83,215,24,2,0,215,207,193,57,129,60,2,0,217,143,139,20,143,147,2,0,217,79,189,255,225,214,2,0,222,207,221,7,205,136,2,0,223,79,23,54,77,53,3,0,229,79,183,231,196,0,3,0,232,79,159,224,133,13,3,0,234,207,39,123,252,124,2,0,237,15,35,56,82,23,4,0,239,207,235,234,73,152,4,0,248,143,46,198,33,181,3,0,251,207,252,224,130,188,3,0,255,79,209,242,155,122,4,0,0,16,74,32,24,248,2,0,0,144,211,66,113,124,4,0,2,144,52,185,122,133,4,0,4,144,175,183,73,229,3,0,4,16,98,135,169,103,4,0,6,16,86,221,28,9,3,0,8,208,94,89,193,5,2,0,8,208,181,234,240,168,3,0,10,16,104,41,67,128,3,0,15,144,44,168,66,195,3,0,15,16,65,3,83,80,4,0,15,16,245,136,159,97,4,0,16,80,111,166,231,219,2,0,20,144,235,185,14,47,3,0,20,144,52,62,206,108,4,0,21,208,233,206,230,80,3,0,22,80,107,50,68,172,3,0,22,208,185,177,182,54,4,0,23,16,24,165,143,96,3,0,32,16,64,92,166,57,2,0,33,208,106,227,46,95,2,0,33,80,233,8,109,132,3,0,35,16,133,162,95,53,4,0,37,208,27,57,225,4,3,0,41,208,167,228,165,189,3,0,42,16,229,98,81,55,4,0,48,16,51,44,16,53,4,0,54,16,76,31,189,234,2,0,55,80,112,202,169,65,4,0,61,80,251,194,196,102,2,0,62,208,193,2,210,67,4,0,66,80,168,252,235,63,3,0,67,208,23,81,250,98,3,0,67,16,242,41,24,208,3,0,69,144,8,1,213,75,4,0,70,80,197,238,235,213,2,0,70,16,81,171,155,79,3,0,72,80,243,9,65,71,3,0,75,144,114,187,67,250,2,0,78,80,3,226,148,35,2,0,78,208,118,78,112,160,2,0,78,80,217,47,200,197,3,0,78,80,237,83,52,225,3,0,79,16,219,17,59,199,2,0,79,144,52,248,5,101,3,0,81,208,25,146,195,199,2,0,86,80,65,24,216,54,2,0,86,208,161,6,196,8,3,0,86,144,135,210,170,7,4,0,93,80,236,215,81,112,2,0,93,80,198,103,178,139,3,0,94,80,29,134,217,65,4,0,95,144,52,248,243,95,3,0,96,80,235,168,34,36,2,0,98,16,254,125,125,134,3,0,99,80,127,92,141,172,2,0,99,144,52,248,173,82,3,0,100,80,193,116,177,178,3,0,102,16,152,108,175,154,3,0,103,80,64,227,177,107,3,0,103,208,88,230,105,22,4,0,104,144,52,248,173,80,3,0,105,144,120,108,153,32,2,0,106,16,28,134,28,114,2,0,109,208,76,185,0,254,2,0,111,16,217,128,32,146,3,0,113,80,186,207,4,75,4,0,114,208,226,180,96,67,2,0,115,80,13,73,114,108,3,0,116,80,233,9,33,201,2,0,116,144,52,248,230,101,3,0,117,144,52,248,91,74,3,0,120,80,68,162,164,132,2,0,122,80,59,184,90,55,3,0,124,80,107,131,30,228,3,0,125,16,161,79,17,178,3,0,132,208,97,83,96,211,2,0,135,80,54,118,89,123,3,0,137,144,204,9,249,131,3,0,139,144,214,128,172,26,2,0,139,80,230,123,144,228,3,0,139,144,201,3,125,119,4,0,143,144,1,54,166,132,3,0,146,144,215,25,21,41,3,0,149,80,167,166,142,120,4,0,151,80,22,148,160,77,3,0,153,80,226,229,163,161,2,0,153,208,40,200,130,90,4,0,153,16,198,229,183,130,4,0,158,16,171,101,140,24,4,0,161,16,213,90,26,5,4,0,162,80,76,178,222,176,2,0,162,16,10,146,152,70,3,0,166,16,173,160,89,147,3,0,168,144,33,97,215,98,4,0,172,16,106,44,5,72,3,0,172,144,123,54,167,83,4,0,173,16,98,101,53,175,2,0,175,80,32,244,20,8,2,0,180,16,57,114,144,225,3,0,182,208,215,163,5,14,3,0,182,80,95,85,20,226,3,0,183,144,212,166,8,145,3,0,185,208,214,159,103,20,4,0,187,144,52,248,36,45,3,0,198,144,95,249,91,244,2,0,198,16,199,186,81,24,3,0,200,208,155,210,173,52,2,0,201,80,54,240,39,89,2,0,204,144,79,118,160,5,2,0,206,144,177,45,155,164,2,0,211,80,92,103,148,64,2,0,217,208,2,182,27,182,2,0,219,80,100,55,105,12,2,0,219,208,10,74,39,135,4,0,230,80,92,5,101,46,2,0,231,80,15,213,17,186,3,0,233,208,156,225,130,162,2,0,235,80,222,106,227,64,3,0,238,208,92,198,202,135,2,0,238,80,227,210,87,144,4,0,239,208,201,203,137,5,3,0,242,80,186,236,187,116,2,0,244,144,127,145,28,73,2,0,248,144,112,49,103,122,2,0,249,80,146,38,171,70,2,0,252,16,95,241,137,31,3,0,254,16,76,178,97,44,4,0,0,81,147,176,157,52,3,0,10,17,228,61,11,118,3,0,11,17,242,221,184,158,2,0,11,209,137,64,161,125,3,0,17,209,3,208,54,95,3,0,19,209,225,25,212,53,3,0,20,145,44,194,16,106,3,0,21,81,177,204,27,106,4,0,22,81,113,184,170,98,3,0,22,81,249,163,104,211,3,0,25,81,142,62,92,155,2,0,26,17,178,248,74,103,4,0,27,17,157,68,169,123,2,0,27,17,137,236,188,137,2,0,27,17,182,54,189,253,2,0,29,17,94,106,40,160,2,0,32,81,242,219,18,4,2,0,35,145,20,172,228,137,4,0,36,145,76,23,149,142,3,0,39,17,58,48,131,124,4,0,41,17,245,38,1,109,2,0,42,81,14,67,58,53,3,0,43,81,79,82,213,104,2,0,44,81,158,97,135,154,2,0,44,81,145,204,38,180,3,0,45,145,126,122,16,26,2,0,46,81,138,84,190,219,3,0,48,81,158,98,182,251,2,0,50,17,81,104,233,177,3,0,50,209,79,60,101,254,3,0,51,17,93,23,254,145,3,0,54,145,99,69,138,235,3,0,56,145,52,241,26,63,2,0,56,145,234,173,55,159,3,0,56,145,193,189,105,208,3,0,60,145,64,187,184,196,2,0,60,209,195,171,131,74,3,0,61,209,211,47,241,26,4,0,66,145,47,237,4,67,4,0,68,145,181,61,69,173,2,0,69,17,167,184,57,44,3,0,69,81,215,184,10,48,3,0,70,81,208,126,100,139,3,0,71,81,196,79,91,126,2,0,72,145,182,211,222,135,2,0,75,145,131,82,153,6,3,0,75,17,114,110,58,23,4,0,78,81,33,30,73,201,3,0,79,17,36,25,138,31,4,0,79,209,125,130,220,152,4,0,84,17,83,4,44,58,2,0,93,81,177,162,223,32,2,0,93,145,52,248,241,41,3,0,93,209,210,246,9,161,3,0,94,17,31,19,193,184,3,0,94,209,113,153,174,221,3,0,95,17,163,75,163,58,2,0,95,209,100,65,209,208,2,0,97,17,111,145,73,165,3,0,100,145,217,76,62,121,2,0,103,209,129,74,242,105,3,0,103,209,94,197,103,119,4,0,104,81,49,191,84,191,2,0,105,17,255,143,186,84,3,0,105,209,167,79,150,143,4,0,108,81,177,45,6,162,2,0,109,17,66,21,88,122,2,0,113,17,171,198,19,243,2,0,117,209,113,39,252,150,3,0,119,81,55,240,242,47,2,0,124,17,159,112,66,26,3,0,125,209,195,171,25,75,3,0,126,81,124,9,154,13,4,0,126,17,169,236,38,94,4,0,128,81,177,45,188,161,2,0,130,145,64,231,86,188,3,0,131,81,53,121,25,122,3,0,135,17,93,54,66,20,4,0,137,145,215,85,118,3,2,0,143,17,61,254,251,117,4,0,144,209,72,64,52,33,2,0,144,17,42,196,230,146,2,0,145,17,97,227,107,74,2,0,145,17,153,223,185,38,3,0,145,17,53,244,104,29,4,0,149,209,63,127,157,62,4,0,150,81,97,75,195,67,4,0,150,81,231,232,179,94,4,0,152,209,174,21,78,132,2,0,152,145,190,120,157,227,2,0,154,81,29,254,118,74,4,0,155,209,23,229,64,15,2,0,155,145,149,204,53,54,3,0,157,17,41,19,47,155,2,0,159,81,180,126,176,21,2,0,160,17,223,107,115,73,3,0,163,209,71,202,229,204,3,0,168,209,65,232,164,44,2,0,168,145,39,69,154,116,3,0,170,81,15,169,153,95,3,0,171,209,132,87,1,10,2,0,172,17,175,69,163,113,4,0,180,145,244,184,250,203,3,0,183,17,80,91,31,157,2,0,183,145,35,129,46,240,2,0,184,17,110,181,126,55,4,0,185,17,57,186,67,80,4,0,189,209,57,166,84,222,3,0,194,81,229,231,252,25,2,0,197,209,248,233,199,177,3,0,198,145,151,123,102,167,2,0,199,81,102,184,112,101,3,0,200,81,35,34,120,227,2,0,200,81,53,231,242,248,3,0,201,209,111,60,76,80,2,0,202,145,52,248,165,38,3,0,204,145,32,80,209,40,2,0,204,145,97,177,227,33,4,0,205,145,59,101,20,27,2,0,206,145,187,190,168,220,3,0,210,209,243,116,120,231,2,0,213,81,96,75,176,58,4,0,216,209,8,132,124,237,2,0,219,209,30,81,151,38,3,0,219,81,215,36,139,195,3,0,224,81,234,252,92,81,4,0,225,209,134,153,206,83,2,0,226,17,32,183,106,13,2,0,226,17,74,9,34,188,2,0,226,17,100,118,42,215,3,0,234,81,164,73,3,83,3,0,237,145,183,16,33,176,2,0,237,145,196,48,128,179,3,0,241,17,6,170,134,251,3,0,242,81,36,37,182,142,2,0,243,81,15,80,220,123,4,0,244,81,74,120,136,221,3,0,246,209,89,139,252,23,3,0,247,209,82,48,227,173,3,0,248,81,250,10,213,25,2,0,252,145,209,196,61,88,2,0,252,81,99,168,248,199,3,0,254,17,81,235,20,61,2,0,5,18,230,185,6,223,2,0,6,18,79,191,0,246,3,0,9,210,47,160,189,92,2,0,12,18,61,12,73,191,3,0,13,210,79,212,67,134,4,0,16,146,230,138,215,16,2,0,22,18,123,43,220,92,4,0,23,82,171,209,107,64,3,0,24,82,104,82,106,51,2,0,24,82,243,9,48,71,3,0,34,82,91,86,236,109,4,0,35,210,116,163,95,33,2,0,40,82,212,207,29,184,3,0,40,210,135,40,31,237,3,0,41,82,150,226,205,220,3,0,42,210,82,208,215,18,3,0,48,146,241,116,42,80,4,0,51,146,238,129,249,216,3,0,54,82,230,130,83,202,3,0,55,18,197,24,253,87,4,0,60,82,63,82,151,253,3,0,65,82,185,97,253,21,2,0,65,210,77,75,65,153,2,0,66,146,77,95,99,11,3,0,69,82,138,177,25,218,2,0,72,210,17,54,91,52,3,0,73,210,22,196,69,146,2,0,74,18,69,236,4,153,4,0,77,210,38,235,17,101,3,0,79,146,128,185,235,210,2,0,81,18,99,201,52,92,3,0,81,146,246,223,252,3,4,0,82,18,20,13,15,210,2,0,86,210,0,157,59,130,3,0,88,146,165,200,69,112,3,0,89,18,169,172,76,185,2,0,89,146,46,56,206,179,3,0,90,18,110,129,144,82,4,0,91,146,53,218,196,173,2,0,91,82,167,85,172,71,4,0,92,82,154,11,132,118,3,0,95,82,205,123,37,66,3,0,96,18,112,86,187,108,3,0,98,146,69,71,166,116,2,0,99,210,157,179,212,159,3,0,100,82,183,220,1,210,3,0,101,146,88,212,117,253,3,0,103,18,129,51,185,17,2,0,104,210,149,227,80,186,3,0,111,146,71,61,226,171,2,0,112,210,149,227,81,187,3,0,115,210,37,176,114,79,4,0,116,146,22,63,192,2,4,0,117,146,253,30,60,32,4,0,119,18,132,205,255,81,2,0,119,210,178,141,38,35,3,0,119,210,150,26,171,117,3,0,119,18,118,149,192,186,3,0,120,18,60,194,48,20,3,0,122,82,70,85,123,103,2,0,122,18,93,92,163,251,2,0,122,146,113,224,28,26,3,0,122,146,43,181,15,46,3,0,126,82,41,188,91,80,2,0,126,82,50,4,129,1,4,0,126,82,30,162,210,84,4,0,128,210,213,237,86,204,3,0,128,210,226,233,216,32,4,0,129,82,221,97,198,174,2,0,129,18,15,189,63,38,3,0,130,210,146,80,156,42,3,0,133,82,225,236,91,187,3,0,133,210,66,162,212,31,4,0,136,82,254,167,66,16,2,0,136,210,110,100,197,216,3,0,143,146,55,168,41,99,3,0,146,18,35,66,246,169,3,0,147,210,66,218,238,177,2,0,149,18,168,32,206,110,2,0,150,210,149,251,118,182,2,0,152,146,190,5,108,25,2,0,153,146,252,83,116,40,2,0,153,18,18,29,77,120,4,0,158,82,73,113,253,22,3,0,159,210,76,81,94,150,2,0,159,146,95,252,144,50,3,0,165,82,28,96,64,79,2,0,165,210,131,159,60,42,4,0,165,146,202,157,248,71,4,0,169,210,157,20,60,242,2,0,172,18,149,69,46,157,3,0,180,146,12,222,58,207,3,0,180,210,7,56,49,106,4,0,181,82,48,111,87,15,3,0,182,210,72,147,57,13,2,0,182,210,157,34,54,71,2,0,182,82,216,231,173,239,3,0,185,210,76,81,168,150,2,0,186,18,207,93,70,253,3,0,189,82,224,129,166,227,3,0,190,82,156,180,98,225,3,0,191,18,124,129,106,185,2,0,191,82,21,81,158,104,3,0,192,82,11,74,62,29,3,0,194,210,165,15,96,70,4,0,197,146,50,216,92,28,2,0,197,18,20,15,234,90,2,0,198,18,208,180,24,36,3,0,199,18,234,126,147,44,2,0,201,18,18,167,219,17,4,0,204,82,89,195,3,70,4,0,205,82,231,150,97,56,2,0,207,146,198,117,199,72,3,0,208,18,16,182,74,162,3,0,210,18,68,45,192,218,2,0,214,146,52,248,138,30,3,0,219,82,215,65,212,184,2,0,220,210,64,228,168,142,4,0,221,146,151,145,68,85,2,0,221,82,34,16,77,15,4,0,226,210,101,16,41,141,2,0,228,82,177,45,243,10,2,0,229,82,49,181,107,80,2,0,229,210,111,67,86,40,4,0,231,146,142,116,194,238,2,0,232,18,117,241,12,64,2,0,232,82,236,236,76,255,2,0,233,18,26,3,27,246,2,0,234,146,69,17,11,42,4,0,237,210,168,94,30,212,3,0,240,82,149,192,181,124,3,0,243,82,160,13,103,161,3,0,243,146,168,147,217,49,4,0,244,18,40,139,10,173,2,0,245,82,240,54,251,43,2,0,249,82,139,25,114,149,2,0,249,210,0,42,167,129,3,0,250,18,59,184,159,66,3,0,250,82,74,25,57,58,4,0,253,146,161,87,217,144,2,0,1,19,227,2,7,12,4,0,3,147,61,81,125,212,2,0,5,211,241,232,84,228,2,0,13,211,167,35,36,104,3,0,14,211,227,219,95,79,2,0,14,19,29,117,157,1,3,0,17,147,52,248,166,250,2,0,18,147,52,248,178,250,2,0,19,211,3,125,84,1,3,0,23,19,183,186,106,0,3,0,23,211,173,154,117,139,3,0,24,147,75,58,85,175,2,0,26,83,93,118,128,35,4,0,27,147,68,171,192,85,3,0,28,211,25,192,240,170,2,0,28,211,25,173,51,188,2,0,28,147,189,164,165,29,3,0,30,83,70,248,160,72,2,0,31,83,89,166,253,49,4,0,32,83,169,210,133,85,3,0,32,19,61,12,30,191,3,0,34,211,78,132,68,41,3,0,41,19,182,126,56,19,2,0,41,83,159,195,201,242,2,0,42,147,65,110,239,161,3,0,48,211,202,113,42,137,3,0,61,211,122,128,6,137,4,0,63,19,201,26,221,140,3,0,64,211,207,124,137,161,2,0,64,83,3,5,113,210,2,0,64,211,59,173,17,40,4,0,64,147,13,123,228,142,4,0,66,83,222,125,247,70,2,0,66,211,19,8,88,152,2,0,66,147,52,248,24,255,2,0,69,19,35,81,237,36,3,0,70,147,225,114,5,219,3,0,76,83,22,81,100,70,3,0,77,147,108,0,222,220,2,0,79,19,119,221,192,101,2,0,79,147,2,217,13,144,3,0,83,147,64,71,244,106,2,0,88,147,168,93,183,68,4,0,89,147,45,72,81,225,3,0,91,83,20,139,125,222,3,0,93,147,130,73,247,172,3,0,93,19,219,175,41,55,4,0,97,19,92,244,8,125,2,0,97,147,216,41,44,105,4,0,98,19,227,34,189,217,2,0,102,19,208,210,183,53,2,0,108,83,56,43,73,183,2,0,109,83,233,68,207,80,2,0,109,19,224,254,230,98,4,0,110,147,115,207,226,56,2,0,110,147,88,69,243,103,3,0,110,83,13,47,66,133,4,0,115,211,241,51,47,239,3,0,119,19,187,205,55,254,3,0,119,19,28,87,1,41,4,0,127,19,38,243,30,194,2,0,127,211,163,69,135,244,3,0,128,211,194,238,201,156,3,0,132,211,198,186,141,25,3,0,133,211,245,107,129,204,3,0,134,83,15,181,243,241,3,0,136,83,163,145,228,94,3,0,138,19,208,210,204,53,2,0,138,147,40,44,63,174,2,0,140,19,37,113,187,162,2,0,141,147,124,176,93,227,3,0,142,147,147,64,58,52,4,0,142,19,158,49,113,120,4,0,148,147,6,250,135,123,2,0,149,211,22,241,16,13,4,0,156,83,225,245,152,65,4,0,159,83,121,209,56,126,3,0,161,147,13,13,193,63,4,0,163,147,179,24,33,78,2,0,163,83,138,7,34,26,4,0,163,147,7,2,191,146,4,0,169,147,117,124,73,241,2,0,169,147,228,144,224,48,4,0,170,147,168,116,240,91,2,0,170,83,28,217,67,157,3,0,171,83,188,243,168,146,4,0,174,19,185,154,8,123,4,0,176,147,29,83,126,84,4,0,177,83,68,129,212,210,2,0,178,147,194,79,108,70,2,0,180,147,29,94,123,127,3,0,180,83,177,132,126,136,3,0,183,211,240,251,219,167,2,0,186,211,200,72,144,144,3,0,187,147,238,182,185,184,2,0,187,211,162,56,177,30,4,0,188,19,142,66,180,207,3,0,190,19,174,108,105,232,3,0,192,147,184,238,61,3,3,0,197,147,52,81,139,229,2,0,199,83,74,75,237,38,2,0,209,147,194,35,164,143,3,0,210,147,153,106,190,97,4,0,211,147,67,104,91,220,3,0,213,147,109,229,18,89,2,0,214,19,163,136,184,94,2,0,217,83,149,33,223,10,2,0,217,83,109,110,67,29,4,0,219,211,206,199,103,84,3,0,221,83,235,169,103,88,3,0,223,19,234,130,131,95,2,0,225,211,70,233,77,209,2,0,225,147,118,177,99,217,2,0,229,83,29,253,87,101,2,0,229,211,127,150,221,55,4,0,231,19,21,44,221,185,3,0,232,19,73,132,57,128,2,0,237,147,35,116,169,140,3,0,239,83,173,112,190,171,2,0,240,211,15,54,214,54,3,0,241,211,223,211,174,173,2,0,242,147,107,238,252,167,3,0,243,211,67,50,117,44,4,0,245,83,6,92,96,152,3,0,251,211,164,134,23,90,4,0,252,147,47,129,93,3,2,0,254,83,227,94,179,111,4,0,255,211,89,126,155,112,4,0,0,212,241,123,112,130,2,0,4,84,65,110,50,192,3,0,4,20,142,66,87,195,3,0,5,20,195,150,60,180,3,0,7,148,187,175,230,107,3,0,9,84,84,61,34,134,2,0,9,148,214,252,122,6,3,0,10,148,203,224,245,142,2,0,14,20,229,99,119,7,2,0,14,84,236,162,111,35,3,0,14,148,248,217,228,67,4,0,14,148,200,207,181,77,4,0,15,148,37,44,14,17,4,0,25,20,93,74,15,167,2,0,26,148,146,148,250,50,4,0,27,20,54,164,225,87,4,0,32,148,101,89,153,90,4,0,34,212,32,65,104,118,2,0,36,212,30,110,108,217,3,0,37,148,160,216,94,86,2,0,38,84,242,241,100,65,2,0,38,20,197,8,85,142,3,0,40,84,156,248,64,78,3,0,41,212,52,176,90,123,2,0,42,20,186,220,103,127,4,0,46,148,97,11,75,158,3,0,47,20,107,248,154,43,2,0,47,212,69,100,114,162,3,0,49,20,250,96,249,103,4,0,53,20,38,239,230,127,2,0,55,84,203,47,187,132,4,0,58,84,91,250,207,4,2,0,59,148,144,183,66,83,2,0,59,148,69,201,93,42,3,0,71,84,192,240,72,5,4,0,74,20,123,184,214,95,3,0,76,84,33,189,119,175,3,0,80,148,232,51,117,66,3,0,83,84,45,255,64,246,3,0,85,148,207,235,167,134,2,0,86,84,156,47,140,114,3,0,89,84,6,120,237,106,3,0,90,84,55,51,163,4,2,0,93,148,115,18,99,129,2,0,96,148,109,79,203,210,3,0,100,84,159,193,229,79,3,0,101,20,116,90,194,146,2,0,102,20,154,153,220,111,3,0,103,84,81,67,4,141,2,0,111,20,65,251,105,13,3,0,111,212,149,227,5,191,3,0,114,148,162,109,194,49,2,0,117,212,168,110,122,27,4,0,118,20,249,32,169,172,2,0,121,84,53,189,192,246,2,0,123,84,62,26,19,250,3,0,124,148,36,85,149,48,2,0,124,84,44,198,58,54,2,0,126,148,213,228,82,71,3,0,127,20,122,247,228,133,2,0,128,84,90,29,230,172,2,0,129,212,58,12,60,168,2,0,130,148,76,73,207,99,3,0,133,20,24,81,229,95,3,0,133,212,222,36,71,177,3,0,134,212,38,209,108,168,3,0,136,20,180,201,243,193,2,0,136,148,195,84,159,147,4,0,138,148,127,113,14,43,2,0,138,212,86,65,162,144,2,0,139,212,139,55,29,32,4,0,141,148,38,28,238,221,2,0,142,84,252,188,23,252,3,0,144,84,245,73,121,167,2,0,145,20,217,177,147,156,3,0,147,148,8,229,102,12,4,0,150,84,193,251,66,253,2,0,151,20,113,121,166,160,3,0,154,212,86,3,82,246,2,0,154,84,235,121,105,98,3,0,154,20,160,215,113,157,3,0,154,84,251,31,202,129,4,0,155,20,180,7,89,34,2,0,156,20,85,189,62,1,3,0,156,20,137,41,102,106,4,0,159,148,69,37,61,125,3,0,160,84,3,39,158,63,2,0,160,148,193,53,241,41,4,0,162,148,58,21,228,143,2,0,162,212,166,231,58,216,3,0,164,148,75,58,103,175,2,0,164,84,54,135,8,174,3,0,165,212,111,172,52,229,3,0,168,148,25,222,8,105,4,0,169,148,218,37,110,66,4,0,175,84,146,114,208,33,3,0,176,212,77,22,111,31,4,0,177,20,52,202,104,67,3,0,178,84,88,148,174,176,3,0,179,148,187,172,236,138,4,0,183,148,169,105,39,40,2,0,189,212,166,197,133,67,3,0,190,20,87,3,65,246,2,0,191,84,15,109,128,252,3,0,192,212,130,36,127,87,3,0,193,20,24,81,200,95,3,0,193,148,79,106,233,13,4,0,194,148,105,184,143,101,3,0,194,20,114,130,74,58,4,0,195,84,65,134,205,64,2,0,197,84,77,168,72,57,4,0,199,84,174,151,121,104,3,0,201,84,231,150,77,56,2,0,203,212,80,204,50,131,3,0,203,20,76,11,144,184,3,0,211,84,66,85,69,58,2,0,211,148,52,248,141,245,2,0,211,84,157,20,216,44,4,0,213,84,198,192,237,30,3,0,216,20,217,89,98,50,3,0,216,84,206,40,118,100,3,0,221,212,220,124,16,44,2,0,221,20,24,81,169,95,3,0,223,148,238,182,241,184,2,0,226,212,11,53,105,59,2,0,227,84,79,207,224,138,3,0,230,84,42,71,162,135,2,0,230,212,239,82,34,224,3,0,234,84,0,13,128,154,3,0,234,84,253,102,35,138,4,0,237,84,194,107,2,218,2,0,237,20,138,222,175,113,3,0,240,20,187,238,174,135,3,0,241,20,132,29,202,149,4,0,245,84,15,62,3,174,2,0,245,20,1,50,236,226,2,0,248,84,100,129,190,208,3,0,252,148,57,241,68,26,4,0,253,84,109,49,157,153,2,0,253,212,19,105,53,52,3,0,255,84,74,76,233,246,2,0,0,149,52,248,79,236,2,0,1,21,141,179,80,73,4,0,2,213,153,223,34,209,2,0,2,213,53,90,63,57,3,0,3,21,10,210,145,209,3,0,6,149,241,186,217,52,3,0,8,21,219,23,218,107,2,0,13,149,116,84,140,75,4,0,17,85,147,227,42,32,3,0,19,21,233,114,208,72,2,0,20,149,137,197,104,94,3,0,20,21,10,160,138,50,4,0,21,21,203,239,248,213,3,0,27,149,52,248,136,235,2,0,27,21,199,196,124,189,3,0,45,21,117,153,190,120,4,0,46,213,223,190,85,40,2,0,47,149,76,73,224,99,3,0,57,21,6,162,103,178,3,0,58,21,151,134,112,38,4,0,59,149,52,248,124,235,2,0,60,213,83,21,84,118,2,0,60,21,14,64,77,234,3,0,61,85,217,120,49,184,3,0,62,21,230,152,87,154,2,0,62,149,171,194,230,44,4,0,63,85,177,182,197,189,2,0,68,149,76,81,201,172,2,0,69,213,58,12,85,168,2,0,70,21,207,67,73,31,2,0,72,149,217,169,243,82,3,0,72,213,225,4,171,188,3,0,74,85,205,212,212,134,3,0,74,21,76,50,219,12,4,0,76,213,1,224,95,66,3,0,78,213,25,9,251,36,3,0,80,21,17,175,22,14,3,0,81,149,10,225,222,224,3,0,84,213,222,66,118,131,4,0,85,85,181,99,246,131,2,0,85,149,213,56,155,12,3,0,86,21,15,11,144,131,3,0,95,213,130,174,67,51,2,0,97,85,240,206,208,51,3,0,99,21,38,81,24,35,3,0,99,85,6,120,81,67,3,0,101,213,68,156,246,119,4,0,102,85,218,217,3,228,2,0,103,85,217,90,81,164,2,0,104,21,227,133,228,189,3,0,108,21,35,243,196,139,2,0,108,149,42,222,216,186,3,0,109,149,61,172,140,102,3,0,111,21,251,170,254,241,2,0,112,149,218,170,131,214,3,0,113,149,176,139,141,145,4,0,125,21,35,81,207,36,3,0,134,149,52,248,254,226,2,0,137,213,228,88,186,26,2,0,139,85,182,136,13,59,4,0,140,213,207,105,159,47,2,0,140,21,41,93,120,50,2,0,141,149,247,65,201,218,3,0,142,85,89,8,77,18,2,0,143,21,85,103,208,91,3,0,151,213,99,96,20,232,2,0,158,149,45,233,134,66,3,0,158,85,69,237,176,45,4,0,161,149,217,47,66,97,3,0,162,149,218,90,22,119,2,0,165,85,172,52,49,185,3,0,166,21,27,69,111,42,4,0,169,213,25,110,223,138,2,0,169,149,52,248,49,148,2,0,169,213,169,130,227,252,3,0,172,213,222,20,98,23,2,0,177,149,127,72,221,58,4,0,183,21,191,40,153,245,2,0,183,213,196,35,132,230,3,0,184,149,109,32,113,121,3,0,186,149,130,54,226,124,4,0,187,85,142,33,191,112,4,0,188,21,67,163,169,101,4,0,192,21,160,6,243,138,3,0,195,213,76,81,0,153,2,0,197,213,236,109,60,95,4,0,201,21,225,170,214,80,3,0,204,213,120,244,34,67,4,0,205,149,198,212,79,104,4,0,206,21,174,124,237,227,2,0,209,85,188,166,123,247,2,0,211,21,4,182,208,56,4,0,214,21,17,9,20,81,2,0,215,21,56,130,153,217,3,0,216,213,26,134,122,238,3,0,219,213,175,244,145,9,2,0,219,149,197,66,169,106,2,0,219,149,160,129,148,56,4,0,222,21,65,212,142,30,2,0,225,85,97,209,12,224,2,0,225,85,163,168,205,124,4,0,226,149,215,27,147,41,3,0,233,21,181,118,224,147,2,0,236,213,178,87,230,104,2,0,236,213,153,223,114,206,2,0,236,21,115,54,52,47,4,0,236,213,24,151,173,98,4,0,237,213,82,248,232,133,3,0,244,149,50,36,0,46,4,0,251,149,174,126,55,201,2,0,251,85,107,172,84,172,3,0,255,149,66,239,156,125,4,0,0,150,175,89,200,121,4,0,3,22,48,158,246,127,2,0,3,86,213,134,104,190,3,0,6,22,167,250,223,129,4,0,10,150,52,248,106,223,2,0,11,86,131,53,215,50,3,0,15,22,100,87,65,215,3,0,16,214,53,146,151,50,4,0,19,214,117,184,138,95,3,0,20,150,85,94,73,238,2,0,21,214,211,72,81,75,2,0,25,150,207,226,237,211,2,0,25,150,52,248,118,223,2,0,26,86,124,41,212,38,3,0,26,86,89,171,243,77,3,0,35,86,102,199,150,43,3,0,37,22,149,250,32,157,3,0,38,22,28,8,178,10,4,0,38,214,173,55,252,85,4,0,39,214,255,204,76,28,4,0,42,22,62,99,221,226,3,0,49,86,25,67,34,80,3,0,52,22,196,4,44,246,2,0,52,150,229,130,100,244,3,0,60,150,151,79,195,105,4,0,61,214,46,29,109,192,3,0,61,22,2,241,255,230,3,0,63,22,105,184,17,100,3,0,65,150,147,208,202,244,3,0,72,150,242,241,196,50,2,0,73,150,120,167,21,6,4,0,74,214,221,138,47,81,2,0,79,22,173,184,93,45,3,0,81,86,200,197,2,226,3,0,82,22,97,198,245,187,3,0,86,22,148,71,14,55,3,0,90,150,39,162,191,28,4,0,91,214,38,99,12,17,2,0,92,214,7,229,135,152,3,0,93,22,114,58,251,105,2,0,93,86,63,50,54,197,2,0,95,214,203,113,7,87,3,0,96,214,1,230,153,206,3,0,96,214,1,79,255,222,3,0,98,214,153,223,250,205,2,0,100,86,70,69,140,253,3,0,101,86,20,223,111,225,2,0,101,22,86,187,38,50,3,0,105,22,110,152,19,77,3,0,106,150,70,186,33,79,2,0,106,214,153,223,119,204,2,0,107,86,104,53,255,181,2,0,111,214,136,72,217,13,3,0,112,86,155,195,211,113,2,0,113,22,1,69,59,35,3,0,116,86,190,79,24,226,2,0,119,150,219,159,93,60,2,0,119,150,73,5,60,51,4,0,122,22,44,120,102,1,3,0,123,86,238,104,216,50,4,0,125,22,11,43,190,53,3,0,125,22,202,84,165,122,3,0,130,214,6,242,99,195,2,0,131,86,202,126,201,24,2,0,133,86,109,252,149,0,3,0,135,214,168,224,0,57,4,0,138,22,135,161,237,124,3,0,139,22,10,206,21,83,3,0,140,22,96,22,116,211,2,0,140,214,214,25,210,195,3,0,145,150,13,49,37,213,2,0,147,86,169,97,141,5,2,0,148,214,16,212,95,166,2,0,148,86,230,47,166,114,3,0,151,22,110,105,148,206,2,0,151,150,52,248,24,222,2,0,153,150,13,70,98,77,2,0,157,86,237,246,119,126,4,0,158,86,171,34,156,114,2,0,158,150,14,49,199,213,2,0,160,150,186,81,45,205,3,0,161,150,52,248,214,221,2,0,162,150,43,81,228,247,2,0,163,214,4,173,232,21,3,0,167,86,6,75,49,124,4,0,169,22,12,140,225,185,2,0,170,22,51,240,232,1,4,0,171,214,39,81,140,19,3,0,174,86,202,252,189,248,2,0,176,150,79,59,229,240,2,0,176,214,188,186,79,137,3,0,179,150,68,155,49,118,3,0,179,86,41,160,3,97,4,0,183,22,221,68,180,139,2,0,183,150,52,248,226,221,2,0,183,214,39,81,56,17,3,0,183,22,150,101,148,219,3,0,187,150,243,32,140,241,3,0,187,86,65,163,194,72,4,0,188,86,98,216,43,28,2,0,188,214,120,242,208,30,4,0,189,86,217,90,57,164,2,0,191,86,161,169,51,41,3,0,193,150,66,65,25,85,2,0,193,86,60,227,33,204,3,0,195,214,134,209,193,34,2,0,197,150,50,189,208,226,2,0,197,214,147,152,236,18,3,0,197,214,123,184,72,90,3,0,198,214,204,235,240,174,2,0,201,22,9,174,195,235,2,0,205,22,131,67,16,20,2,0,210,22,82,56,225,228,3,0,211,22,64,151,212,111,2,0,216,22,196,135,112,93,3,0,222,22,255,79,58,73,4,0,223,22,194,90,138,49,3,0,224,150,5,139,18,15,4,0,229,22,43,166,166,75,2,0,229,22,152,32,152,74,4,0,230,86,171,17,2,132,2,0,230,214,211,150,153,235,3,0,233,86,142,24,20,176,3,0,235,150,126,38,30,47,4,0,239,150,95,52,81,94,3,0,241,214,54,81,208,223,2,0,243,150,17,193,228,54,4,0,244,86,126,98,120,142,2,0,245,214,74,203,72,6,4,0,246,150,220,5,78,77,2,0,250,22,153,223,212,39,3,0,253,22,130,36,11,17,3,0,253,150,47,2,184,162,3,0,0,151,46,173,32,56,3,0,6,215,130,146,26,228,2,0,7,87,189,17,141,23,2,0,11,87,83,185,108,118,3,0,13,23,245,15,227,147,3,0,17,23,232,113,101,227,2,0,18,151,52,248,102,206,2,0,18,23,21,41,89,3,3,0,22,151,52,248,47,209,2,0,23,87,182,176,46,4,3,0,25,87,169,42,252,184,3,0,29,151,12,191,245,41,2,0,31,151,9,113,171,127,3,0,32,23,160,227,53,255,3,0,33,87,137,234,35,162,3,0,34,151,52,248,86,212,2,0,34,215,24,95,22,247,3,0,35,23,62,157,53,170,3,0,35,151,87,59,246,67,4,0,36,87,58,176,25,122,2,0,37,215,71,208,95,45,2,0,40,215,94,57,206,125,2,0,42,87,117,159,146,133,2,0,44,23,9,243,121,175,2,0,44,215,80,5,245,45,3,0,46,151,128,182,218,9,3,0,49,151,195,237,46,4,2,0,49,87,60,143,161,103,2,0,52,23,237,48,15,7,4,0,52,151,71,28,177,121,4,0,54,151,185,28,80,46,2,0,55,23,28,210,192,11,2,0,62,87,209,240,117,108,2,0,62,215,253,53,130,8,3,0,63,23,76,216,186,209,2,0,63,23,35,168,254,139,4,0,66,23,48,114,232,146,4,0,71,151,231,150,13,57,2,0,71,23,34,57,47,249,3,0,75,87,21,41,185,11,4,0,76,151,82,255,0,113,2,0,79,151,23,81,179,100,3,0,83,151,105,212,3,63,2,0,83,23,29,101,196,107,4,0,84,23,250,132,244,55,3,0,85,215,23,81,140,98,3,0,87,215,199,10,139,226,2,0,87,151,56,106,37,160,3,0,87,215,38,47,102,11,4,0,88,215,133,109,149,66,4,0,90,215,181,150,29,239,2,0,91,215,30,165,115,28,2,0,92,87,178,186,229,254,2,0,92,151,163,211,53,145,4,0,96,151,172,95,198,1,3,0,98,87,81,243,120,50,4,0,101,23,130,199,183,6,2,0,101,87,14,139,12,62,3,0,104,23,143,120,244,52,3,0,104,23,129,207,20,164,3,0,109,87,101,16,53,15,3,0,111,215,209,183,247,249,3,0,112,23,237,17,151,21,4,0,113,87,113,247,127,9,2,0,118,215,25,20,232,135,3,0,120,151,52,248,139,212,2,0,120,87,10,144,97,135,4,0,121,215,81,108,65,239,3,0,124,87,12,10,41,48,2,0,126,215,186,214,158,26,4,0,128,151,179,182,89,249,3,0,131,23,147,251,246,58,4,0,133,215,166,127,128,164,2,0,133,87,61,254,19,23,3,0,133,23,144,162,84,141,3,0,134,151,15,229,214,225,3,0,136,215,203,255,146,165,2,0,136,87,164,103,82,250,2,0,137,215,63,94,202,142,2,0,137,215,127,91,170,128,3,0,137,151,163,74,110,207,3,0,139,23,19,62,79,199,3,0,139,215,170,50,187,149,4,0,142,23,135,67,245,147,3,0,143,215,81,82,90,52,2,0,148,215,5,63,198,59,3,0,149,151,28,12,80,4,4,0,150,215,64,196,30,144,3,0,154,215,228,54,6,99,2,0,156,215,47,145,120,38,2,0,156,23,159,114,203,143,2,0,157,215,216,245,226,51,3,0,158,151,60,115,120,245,3,0,161,87,192,19,253,110,2,0,162,151,213,70,57,76,4,0,163,215,228,196,60,248,2,0,163,87,227,41,148,248,2,0,163,151,56,51,78,126,3,0,164,151,122,49,52,112,4,0,166,215,36,167,149,138,3,0,166,23,109,29,191,175,3,0,171,151,119,122,77,82,2,0,175,23,114,88,228,51,2,0,177,87,36,121,223,86,2,0,181,215,126,142,176,37,2,0,181,87,248,145,120,33,4,0,191,23,177,126,146,22,2,0,193,23,26,253,227,26,3,0,195,23,222,146,115,38,3,0,196,215,231,186,222,28,3,0,200,151,3,245,31,129,3,0,201,151,231,190,60,191,2,0,202,87,85,2,33,187,2,0,202,215,99,102,0,65,4,0,203,87,254,149,202,17,4,0,205,87,53,165,212,141,3,0,206,151,227,164,125,117,2,0,208,151,99,26,240,75,2,0,210,87,193,79,8,21,2,0,212,87,205,47,163,104,4,0,212,151,5,58,83,131,4,0,214,87,152,137,119,65,4,0,216,151,251,183,48,26,3,0,217,23,101,133,195,212,3,0,228,151,178,191,27,65,3,0,232,215,138,145,66,104,3,0,239,215,241,230,14,80,3,0,244,87,12,93,249,55,2,0,244,215,226,138,189,142,4,0,250,87,76,193,244,197,2,0,253,151,54,136,154,159,2,0,253,23,139,119,228,206,3,0,3,88,164,36,137,88,3,0,9,24,64,182,239,17,2,0,9,88,62,102,69,148,4,0,10,88,161,203,26,42,4,0,11,88,169,116,211,117,3,0,12,152,173,19,157,37,3,0,12,152,173,19,212,37,3,0,12,152,173,19,235,37,3,0,12,152,173,19,12,38,3,0,12,152,173,19,38,38,3,0,12,88,129,67,6,140,3,0,14,152,31,54,99,209,3,0,15,216,64,37,49,233,3,0,20,24,118,39,57,19,4,0,24,216,251,236,59,116,2,0,28,88,25,184,94,32,4,0,31,216,114,109,117,216,3,0,32,152,128,182,86,9,3,0,35,152,201,91,37,20,2,0,35,216,121,210,181,74,4,0,39,152,31,195,184,114,2,0,39,88,79,218,62,61,4,0,41,24,104,62,166,90,2,0,41,88,39,197,194,86,3,0,45,216,208,114,227,134,2,0,54,216,221,40,99,130,2,0,66,152,25,11,179,236,3,0,72,24,73,75,5,8,2,0,72,24,46,249,45,110,4,0,73,216,178,115,152,87,2,0,76,152,121,137,86,41,3,0,81,216,134,75,6,165,3,0,89,216,199,7,167,132,4,0,94,24,105,184,32,100,3,0,94,152,161,48,79,135,4,0,98,88,133,161,178,119,4,0,103,216,91,241,192,193,3,0,104,24,41,166,160,22,2,0,108,216,142,240,130,219,2,0,109,24,136,73,18,140,4,0,113,216,108,253,176,80,2,0,113,24,223,83,235,120,2,0,113,152,255,63,159,114,4,0,114,24,116,37,97,51,4,0,114,152,23,92,211,79,4,0,115,88,22,10,124,125,4,0,116,152,5,234,245,237,3,0,118,152,191,226,214,90,3,0,119,152,173,140,63,6,3,0,120,24,5,232,21,25,3,0,121,152,38,60,161,84,3,0,122,24,171,144,8,34,2,0,122,152,4,195,203,186,2,0,122,216,123,184,199,90,3,0,123,216,37,36,184,166,3,0,125,216,99,87,85,215,3,0,130,152,246,209,113,95,2,0,130,88,209,47,213,76,4,0,130,88,209,47,226,76,4,0,130,88,209,47,246,76,4,0,131,88,200,191,75,21,3,0,132,24,210,235,48,152,2,0,132,24,241,94,167,14,3,0,132,88,209,47,127,75,4,0,134,88,154,234,66,111,2,0,136,216,165,111,244,39,2,0,138,88,248,61,53,111,4,0,140,216,95,126,191,40,3,0,141,24,97,162,132,238,2,0,146,88,40,91,125,96,3,0,149,88,55,232,106,17,3,0,150,24,77,71,165,76,2,0,150,216,125,67,87,2,3,0,152,152,149,120,200,131,4,0,160,24,196,176,110,30,4,0,165,88,13,74,249,43,3,0,166,24,192,251,239,136,3,0,168,24,229,187,34,5,2,0,169,216,88,102,83,133,4,0,173,24,130,112,156,107,4,0,173,24,109,53,184,114,4,0,175,24,165,169,181,96,3,0,175,24,27,226,45,158,3,0,176,24,247,94,180,115,4,0,178,216,193,14,80,136,2,0,180,24,156,12,210,119,3,0,183,88,205,154,122,19,2,0,183,88,216,238,66,5,3,0,183,152,103,149,106,206,3,0,186,152,145,6,141,20,3,0,188,88,24,163,254,39,4,0,195,88,8,104,54,132,2,0,200,24,178,144,217,157,2,0,204,88,210,199,93,194,3,0,205,152,97,247,157,218,2,0,209,24,113,60,173,207,2,0,214,216,182,186,134,0,3,0,215,24,53,120,181,1,3,0,216,152,202,161,124,190,3,0,220,152,147,28,127,242,3,0,220,24,51,111,228,7,4,0,223,216,79,35,165,144,4,0,226,152,51,59,28,149,4,0,227,216,52,74,254,99,3,0,230,216,40,13,122,29,2,0,232,88,28,153,120,132,4,0,240,24,122,206,47,66,2,0,241,152,197,237,46,117,2,0,242,88,99,149,63,123,4,0,245,152,112,99,204,123,4,0,247,88,195,13,88,166,3,0,249,152,118,227,153,190,3,0,253,216,197,8,64,142,3,0,0,25,87,63,50,29,4,0,2,25,188,186,206,7,3,0,2,153,118,49,192,70,3,0,5,89,138,149,183,77,2,0,8,217,136,15,60,40,4,0,9,89,149,46,84,125,4,0,11,217,241,34,220,179,3,0,11,25,50,83,219,145,4,0,14,153,62,167,88,204,2,0,14,217,133,144,30,208,2,0,14,153,59,99,144,17,4,0,17,25,21,33,215,87,2,0,25,89,243,175,56,176,3,0,29,25,168,240,29,2,4,0,34,89,101,155,20,50,4,0,36,25,53,116,179,6,4,0,39,25,110,105,164,206,2,0,39,89,182,77,0,251,2,0,39,25,206,119,219,237,3,0,48,25,59,121,146,122,3,0,48,25,188,189,54,146,3,0,48,89,100,30,49,120,4,0,49,25,110,237,144,132,2,0,50,153,151,122,7,83,4,0,52,89,158,188,8,229,2,0,53,153,152,143,189,228,3,0,53,217,194,8,141,127,4,0,57,89,111,116,192,57,3,0,57,89,232,241,69,47,4,0,59,153,161,109,57,173,3,0,62,25,98,202,136,3,3,0,62,217,149,217,220,90,4,0,62,25,159,147,28,153,4,0,64,217,165,83,97,191,3,0,66,25,101,186,165,30,3,0,69,89,3,143,114,46,3,0,70,25,64,68,194,96,2,0,81,153,201,17,119,215,3,0,82,25,69,210,82,37,4,0,84,25,58,59,151,60,4,0,86,89,3,33,220,168,3,0,90,153,247,187,156,246,2,0,95,89,191,203,126,60,3,0,95,217,103,148,195,16,4,0,98,89,164,155,156,12,2,0,98,89,124,130,101,21,2,0,105,153,214,23,101,7,4,0,106,153,102,155,46,253,2,0,106,25,21,209,213,71,4,0,107,153,245,61,122,24,2,0,114,153,210,200,17,70,4,0,119,217,4,19,251,140,4,0,121,25,31,229,163,77,2,0,121,25,196,100,73,238,3,0,124,153,143,127,158,92,4,0,126,153,218,242,196,75,2,0,129,89,62,189,26,101,2,0,130,217,153,223,22,211,2,0,133,217,201,42,47,88,4,0,137,217,145,33,77,252,3,0,137,89,87,1,50,56,4,0,141,25,106,174,164,129,2,0,143,89,100,21,17,86,2,0,147,89,10,203,16,146,2,0,148,89,178,199,70,74,2,0,148,89,161,81,186,128,2,0,150,217,26,177,21,189,2,0,152,153,52,248,58,204,2,0,158,217,153,223,111,209,2,0,160,89,143,155,73,145,4,0,163,153,233,109,196,125,3,0,164,89,144,132,33,125,2,0,165,89,196,44,129,209,3,0,166,153,71,164,180,205,2,0,167,25,232,230,137,29,2,0,170,153,11,196,203,174,3,0,170,153,111,9,86,66,4,0,171,217,46,197,204,79,2,0,173,153,120,130,227,59,2,0,176,153,115,200,60,235,2,0,176,153,59,184,67,58,3,0,181,25,241,4,154,220,3,0,184,25,227,247,67,247,3,0,185,217,6,236,188,120,2,0,189,89,85,71,36,103,4,0,191,217,236,144,77,62,3,0,191,153,66,221,100,160,3,0,192,25,127,44,33,81,4,0,194,25,132,239,36,129,2,0,194,217,35,250,72,39,3,0,195,89,43,193,214,120,2,0,196,153,42,110,110,70,4,0,196,217,213,115,166,152,4,0,198,217,122,77,201,150,2,0,202,153,58,24,236,108,2,0,202,153,200,127,233,90,3,0,203,153,152,99,155,143,2,0,203,217,108,110,225,149,3,0,204,217,207,169,153,116,2,0,204,217,194,94,197,116,2,0,204,89,150,40,62,193,2,0,207,25,57,66,129,230,2,0,211,217,44,226,157,237,3,0,214,217,54,115,56,35,2,0,214,25,181,67,38,179,3,0,215,89,19,195,86,113,4,0,218,25,96,223,217,204,2,0,219,153,113,120,68,159,3,0,221,153,162,116,147,85,2,0,223,153,59,132,87,13,3,0,223,217,243,17,27,144,4,0,224,25,124,184,170,87,3,0,226,25,27,248,211,27,4,0,228,25,62,231,109,110,4,0,231,89,20,150,47,145,3,0,234,153,210,131,120,44,3,0,235,25,146,58,252,233,2,0,239,89,229,167,133,74,4,0,240,89,146,156,90,44,2,0,240,25,211,72,41,200,2,0,240,153,147,249,2,60,4,0,242,25,57,150,170,235,3,0,244,153,179,229,181,240,3,0,245,25,145,16,213,123,2,0,248,217,86,83,109,34,4,0,249,89,154,32,227,19,2,0,250,25,22,115,91,38,3,0,251,153,221,187,19,27,3,0,5,154,240,189,225,103,2,0,6,90,247,239,218,157,3,0,6,26,80,30,223,118,4,0,8,154,28,200,239,120,3,0,10,154,236,109,110,40,4,0,11,218,139,78,43,57,3,0,14,26,145,42,94,64,4,0,17,154,232,242,56,50,3,0,17,218,198,95,45,167,3,0,19,154,117,138,217,239,3,0,20,154,95,8,54,165,3,0,24,218,224,244,208,157,3,0,26,218,208,203,135,93,2,0,26,154,187,185,84,252,2,0,26,90,224,227,103,58,3,0,26,90,21,48,190,118,4,0,27,154,143,8,148,44,3,0,29,218,19,131,27,239,3,0,30,218,123,57,154,137,2,0,30,154,242,211,115,83,3,0,31,218,81,152,74,9,4,0,38,26,40,167,193,100,3,0,38,218,10,254,9,117,3,0,39,218,47,81,121,246,2,0,39,154,193,189,155,100,3,0,41,26,189,185,224,80,2,0,42,90,200,114,94,55,2,0,47,218,236,175,213,110,4,0,52,218,6,45,195,51,4,0,55,26,105,64,37,110,2,0,55,154,27,236,113,26,3,0,56,154,52,248,105,153,2,0,56,154,78,36,150,236,2,0,56,90,89,128,94,53,3,0,57,218,10,110,4,178,2,0,58,26,101,186,180,30,3,0,59,26,107,246,123,137,3,0,60,154,120,86,219,62,2,0,60,218,149,227,241,193,3,0,60,26,38,85,126,92,4,0,63,26,62,27,236,70,4,0,64,218,118,120,173,238,2,0,64,90,118,199,248,42,4,0,65,90,130,85,110,82,4,0,66,90,73,70,229,225,3,0,66,26,107,74,76,67,4,0,67,90,138,231,186,129,2,0,68,218,105,27,238,246,3,0,69,90,104,136,127,7,4,0,71,26,164,244,30,64,3,0,71,26,19,225,254,156,3,0,74,218,26,177,172,188,2,0,76,26,19,180,131,181,3,0,81,218,153,223,156,211,2,0,83,26,8,37,38,119,2,0,83,26,204,226,128,136,2,0,84,154,77,107,161,78,4,0,88,154,21,240,38,255,3,0,92,154,4,192,233,202,2,0,92,218,23,176,121,30,3,0,93,90,32,123,181,64,3,0,94,154,69,206,39,27,2,0,99,218,85,125,66,87,3,0,100,218,180,159,4,94,4,0,101,90,22,81,55,66,3,0,102,218,68,93,82,4,2,0,103,90,90,29,21,174,2,0,104,154,52,248,119,148,2,0,104,154,252,140,224,82,4,0,105,26,218,200,176,189,3,0,105,26,241,93,29,134,4,0,107,154,52,248,107,148,2,0,108,26,210,80,133,17,2,0,109,218,152,12,18,94,4,0,112,90,115,229,47,109,2,0,112,218,98,211,81,78,4,0,113,154,119,17,109,86,2,0,117,218,78,28,39,164,3,0,121,218,207,23,156,109,2,0,123,218,166,78,102,127,3,0,123,218,92,232,194,148,3,0,125,26,215,236,55,111,3,0,125,90,133,171,62,119,4,0,136,90,45,25,36,139,4,0,140,218,152,223,231,100,3,0,140,154,79,88,213,167,3,0,141,26,165,83,75,138,3,0,142,90,26,31,185,9,2,0,142,26,143,189,248,45,2,0,142,154,175,192,137,97,4,0,144,154,133,232,97,218,3,0,147,90,125,91,220,70,4,0,151,154,64,0,74,135,3,0,153,154,236,22,214,31,2,0,153,90,96,27,133,117,4,0,158,26,44,132,233,24,3,0,159,90,58,96,216,161,3,0,160,26,211,169,208,133,2,0,161,90,50,230,132,135,4,0,172,26,66,55,253,23,2,0,172,90,186,160,204,126,2,0,176,154,14,13,112,36,2,0,178,218,126,48,243,68,4,0,179,26,50,10,84,57,3,0,179,90,231,78,19,3,4,0,183,218,112,223,175,28,2,0,183,218,154,23,178,65,2,0,187,154,137,172,197,74,4,0,189,26,189,121,135,220,3,0,195,154,165,215,174,66,2,0,197,218,9,73,92,25,4,0,199,218,224,61,60,61,2,0,201,154,249,126,22,49,2,0,201,218,146,132,188,236,2,0,202,26,138,222,215,248,2,0,203,90,138,63,199,104,2,0,203,26,24,81,22,92,3,0,204,26,139,224,217,158,3,0,207,218,139,78,23,57,3,0,208,154,33,15,17,126,2,0,208,90,150,217,8,91,4,0,210,90,209,47,114,75,4,0,211,218,3,132,62,116,3,0,213,218,20,224,208,194,2,0,213,26,193,245,111,244,2,0,213,154,230,176,118,19,4,0,216,218,240,140,132,173,2,0,217,90,75,97,79,73,3,0,217,26,194,248,14,107,4,0,217,90,97,255,219,108,4,0,218,218,149,24,223,188,2,0,218,218,120,50,2,237,2,0,219,218,69,92,141,26,4,0,224,154,33,15,182,124,2,0,227,90,76,130,200,78,3,0,228,154,231,172,183,56,4,0,230,154,42,201,108,152,3,0,236,154,21,125,190,187,2,0,236,218,147,41,30,62,3,0,236,26,241,57,187,96,4,0,239,26,237,41,222,75,2,0,243,218,91,133,15,96,3,0,245,26,141,252,94,67,4,0,245,26,188,186,81,123,4,0,247,26,5,74,223,170,2,0,247,26,174,45,194,185,2,0,247,154,223,208,251,135,4,0,248,154,139,20,166,147,2,0,251,218,196,9,172,61,3,0,252,26,191,236,174,171,3,0,254,90,202,120,25,80,2,0,0,91,76,81,85,195,2,0,1,155,125,54,43,49,2,0,2,219,99,18,20,141,2,0,4,27,121,176,35,126,3,0,6,27,145,0,62,129,2,0,7,91,77,178,102,102,3,0,7,91,198,156,123,147,3,0,7,91,6,75,32,124,4,0,9,91,80,175,195,44,4,0,11,27,179,167,62,186,2,0,13,155,74,174,72,144,3,0,13,27,76,60,76,106,4,0,15,219,65,122,162,228,2,0,17,155,26,95,26,130,4,0,22,27,235,97,70,222,2,0,23,91,184,91,211,21,3,0,24,219,152,223,35,101,3,0,35,91,31,97,143,217,2,0,40,155,162,142,137,108,4,0,41,91,49,144,223,50,2,0,42,155,63,219,110,22,3,0,42,91,183,165,189,140,3,0,44,219,44,140,133,56,4,0,46,219,153,23,151,128,3,0,52,27,137,168,163,19,2,0,52,91,79,72,246,229,3,0,54,27,162,142,180,89,3,0,55,91,111,84,28,12,4,0,56,27,99,223,16,29,4,0,57,155,150,110,122,116,2,0,59,27,18,56,57,106,2,0,64,27,158,50,133,82,2,0,64,27,162,35,139,140,3,0,65,27,221,196,255,133,3,0,65,27,139,224,199,158,3,0,66,91,165,82,144,186,3,0,74,155,128,87,176,231,3,0,76,27,19,223,150,105,3,0,84,91,76,81,70,196,2,0,84,219,115,180,244,194,3,0,85,91,170,41,205,176,3,0,87,91,45,189,145,24,2,0,90,219,90,41,207,173,3,0,92,155,236,63,212,11,3,0,93,91,37,114,255,180,2,0,94,27,156,223,36,148,2,0,99,219,103,67,27,79,4,0,102,27,155,64,81,180,2,0,102,219,182,233,154,14,4,0,105,219,178,227,57,33,3,0,105,155,24,238,236,99,4,0,105,27,37,159,36,102,4,0,110,91,164,155,169,12,2,0,111,219,253,229,117,28,4,0,113,27,80,171,224,212,3,0,114,27,239,157,217,98,2,0,114,91,104,120,166,101,2,0,114,27,75,39,174,151,3,0,116,91,115,132,184,88,3,0,117,155,193,16,148,151,3,0,119,27,13,162,38,193,2,0,121,219,21,18,200,211,3,0,123,91,151,63,124,191,3,0,124,219,237,240,69,6,2,0,127,27,174,196,130,115,3,0,134,91,125,53,175,50,2,0,135,219,30,95,117,144,2,0,136,219,159,85,248,115,4,0,141,219,152,223,241,99,3,0,142,219,153,223,11,212,2,0,145,27,91,15,223,66,3,0,147,27,178,192,128,91,4,0,152,91,15,31,101,60,3,0,152,219,207,101,196,136,4,0,157,155,7,120,153,246,3,0,160,219,15,1,110,68,2,0,161,91,164,155,237,12,2,0,161,91,37,94,177,147,2,0,163,91,150,146,91,10,3,0,164,219,125,64,181,130,2,0,167,27,17,95,136,61,4,0,170,91,106,134,248,224,2,0,179,27,10,63,187,46,3,0,180,219,61,185,253,41,3,0,180,155,25,163,237,250,3,0,182,155,3,63,170,33,2,0,183,219,204,180,31,46,3,0,186,155,5,119,245,75,4,0,190,155,167,152,179,6,3,0,190,91,247,143,102,12,3,0,190,155,138,81,129,17,4,0,191,91,247,143,119,12,3,0,198,219,152,223,180,99,3,0,204,27,155,165,104,107,3,0,205,27,221,194,14,24,4,0,209,91,230,29,25,33,3,0,210,219,226,88,180,14,4,0,212,27,5,3,27,93,2,0,213,219,55,152,78,126,2,0,213,91,120,58,14,205,3,0,219,27,192,89,123,41,2,0,220,155,26,254,242,20,4,0,221,27,74,128,181,19,3,0,223,155,2,100,110,117,2,0,223,155,233,67,163,124,4,0,225,91,5,72,152,42,2,0,225,91,34,185,197,205,3,0,227,155,88,169,45,228,2,0,229,155,97,102,61,233,2,0,230,219,71,27,105,128,2,0,230,219,222,244,80,154,3,0,237,27,21,181,72,20,2,0,237,219,63,173,131,252,2,0,238,27,100,176,110,161,2,0,238,219,81,222,234,142,3,0,239,219,123,243,30,58,3,0,240,219,239,131,101,40,2,0,241,155,210,126,48,23,2,0,242,91,194,188,126,20,4,0,245,155,85,142,99,91,3,0,248,155,135,30,138,237,3,0,250,91,50,12,160,187,3,0,253,219,90,220,253,29,4,0,0,28,142,131,163,59,2,0,1,220,96,111,106,8,2,0,10,28,3,22,158,50,2,0,13,156,187,124,20,11,4,0,16,28,36,31,210,47,3,0,23,92,75,29,8,175,2,0,26,28,63,119,26,66,4,0,29,92,218,159,198,20,3,0,29,220,224,168,116,143,4,0,31,156,44,81,53,250,2,0,34,156,225,30,153,71,4,0,37,28,174,121,225,160,2,0,39,220,142,251,152,131,2,0,42,28,217,107,72,11,3,0,54,220,128,68,72,249,3,0,55,28,68,12,37,188,3,0,57,28,184,239,174,13,4,0,61,220,169,246,178,66,4,0,64,156,181,110,36,222,2,0,64,156,51,31,35,25,4,0,67,220,146,103,184,108,4,0,70,28,238,165,213,34,2,0,70,28,120,1,116,118,2,0,70,28,0,113,30,214,2,0,73,220,132,59,166,130,2,0,78,220,217,130,4,128,2,0,78,92,177,255,170,39,3,0,82,156,71,241,247,113,3,0,84,220,253,29,238,40,3,0,85,92,134,143,234,85,3,0,87,156,189,79,251,223,2,0,88,92,178,247,86,27,2,0,91,92,196,170,168,5,3,0,93,156,97,11,165,158,3,0,94,28,73,134,65,137,3,0,96,156,93,135,138,208,3,0,97,220,13,81,243,15,2,0,99,156,58,182,205,62,2,0,101,220,155,68,252,221,3,0,103,28,24,81,64,88,3,0,105,220,153,223,254,211,2,0,105,156,225,110,94,74,4,0,106,156,80,198,170,41,3,0,107,92,243,85,123,42,2,0,109,28,97,222,53,80,4,0,110,28,100,115,107,251,3,0,111,220,179,191,202,176,2,0,112,28,153,223,85,36,3,0,115,92,163,45,192,167,3,0,120,92,252,122,194,247,3,0,123,92,73,185,71,152,3,0,125,92,95,238,246,95,2,0,127,92,44,215,6,130,4,0,128,92,22,81,9,50,3,0,128,156,180,14,28,54,3,0,130,156,77,22,141,209,2,0,134,28,230,242,250,51,3,0,135,220,197,217,63,145,3,0,137,220,238,133,191,122,3,0,138,28,33,81,246,35,3,0,139,28,211,124,227,141,3,0,141,220,157,85,41,148,4,0,142,220,207,136,138,134,4,0,147,156,216,219,249,53,4,0,147,92,0,138,39,153,4,0,149,92,165,155,129,29,3,0,151,28,11,165,78,231,2,0,157,28,184,61,174,202,2,0,162,92,227,186,33,251,2,0,164,92,44,163,115,48,3,0,164,92,60,155,43,74,4,0,169,28,245,158,244,155,3,0,169,92,221,46,198,126,4,0,173,156,206,218,71,220,2,0,176,156,81,67,209,196,2,0,179,28,121,69,26,185,3,0,181,220,19,81,5,103,3,0,182,92,253,22,160,71,3,0,184,156,207,90,31,46,2,0,188,92,74,192,130,109,2,0,192,156,245,11,141,211,3,0,195,156,235,105,197,100,2,0,196,28,96,184,252,211,3,0,197,156,237,81,198,12,2,0,197,28,163,19,48,238,3,0,197,28,58,64,73,108,4,0,199,156,27,236,129,26,3,0,199,156,127,95,29,80,4,0,204,28,29,118,237,122,3,0,205,220,109,171,212,130,3,0,206,156,67,111,106,9,2,0,206,92,185,234,68,117,2,0,206,92,112,100,148,162,3,0,211,220,138,64,177,110,4,0,212,156,232,93,191,254,3,0,215,92,148,234,135,86,4,0,225,28,87,110,84,76,2,0,225,156,10,23,42,189,2,0,225,220,250,86,45,83,4,0,227,220,162,105,110,15,3,0,229,220,107,68,15,66,2,0,230,28,24,81,60,85,3,0,231,28,59,85,102,241,3,0,232,92,115,75,77,87,4,0,237,28,141,185,110,69,2,0,237,28,38,219,203,10,4,0,240,156,1,150,61,149,3,0,245,156,174,70,244,169,2,0,255,28,6,72,12,135,2,0,0,221,132,18,247,4,3,0,5,221,111,162,91,142,2,0,5,157,201,135,3,78,3,0,6,93,139,16,9,5,3,0,13,29,154,207,83,14,3,0,20,29,132,201,199,92,3,0,21,157,130,39,88,129,3,0,25,93,234,130,35,166,3,0,28,29,90,148,123,250,3,0,32,221,255,172,150,73,2,0,35,93,246,97,160,105,4,0,38,29,57,54,221,7,3,0,38,29,249,252,171,79,3,0,39,93,136,207,38,141,4,0,42,221,181,28,255,206,2,0,42,29,221,201,193,114,3,0,43,29,160,177,199,41,4,0,50,157,168,234,168,111,2,0,50,157,168,234,184,111,2,0,60,157,166,201,123,42,3,0,63,221,123,67,117,56,2,0,63,29,223,121,203,247,2,0,65,93,20,108,94,78,4,0,66,221,135,129,110,229,3,0,70,93,164,114,15,255,3,0,71,93,13,133,138,81,2,0,71,221,129,150,131,96,2,0,73,157,57,108,39,83,3,0,73,29,150,18,195,110,4,0,74,157,199,193,222,15,4,0,79,157,70,178,77,102,3,0,85,221,37,35,235,160,3,0,86,157,7,75,65,112,2,0,86,29,7,109,86,210,3,0,94,29,158,163,195,40,4,0,95,221,153,227,40,69,4,0,96,93,57,35,95,248,2,0,96,221,133,105,19,135,3,0,97,221,39,52,239,233,3,0,99,221,104,170,2,159,2,0,101,221,52,4,206,21,2,0,101,221,110,184,2,93,2,0,102,221,123,143,232,42,3,0,103,221,188,31,114,183,3,0,104,157,71,135,201,254,2,0,105,29,165,65,0,4,2,0,106,29,246,208,0,70,2,0,107,157,170,32,197,87,2,0,109,29,174,105,224,117,3,0,110,221,200,156,122,114,4,0,117,93,229,217,77,166,2,0,117,29,174,217,238,178,2,0,118,157,56,45,160,124,2,0,121,221,218,246,143,105,4,0,124,29,64,144,16,195,2,0,124,221,216,23,244,6,4,0,129,29,205,4,69,12,2,0,132,29,168,146,56,133,4,0,137,29,243,163,188,32,3,0,139,29,183,34,144,16,2,0,139,157,169,204,149,104,4,0,139,157,152,125,244,105,4,0,139,157,15,135,14,111,4,0,140,157,5,69,128,64,2,0,145,29,220,196,235,144,2,0,153,157,228,187,173,126,3,0,153,221,224,168,133,143,4,0,155,221,52,4,224,18,2,0,155,221,57,49,26,221,2,0,158,29,97,142,188,211,2,0,161,157,114,243,84,243,3,0,162,221,100,253,71,15,3,0,165,29,0,224,75,64,3,0,166,93,252,34,211,148,2,0,166,93,140,77,25,113,3,0,168,93,219,47,48,125,2,0,169,93,255,149,191,50,4,0,172,157,203,97,137,200,2,0,172,29,13,116,237,163,3,0,172,29,141,76,208,184,3,0,173,29,184,135,173,204,3,0,174,93,44,215,10,209,3,0,175,221,101,150,254,8,4,0,176,29,0,188,129,90,3,0,183,157,61,82,128,113,3,0,184,29,190,82,235,96,3,0,186,221,16,7,141,25,2,0,189,29,81,20,56,30,4,0,192,29,24,65,233,205,3,0,194,157,92,149,232,30,4,0,195,29,156,90,111,149,4,0,198,93,128,184,199,102,3,0,199,29,226,69,231,95,4,0,201,93,251,43,66,212,2,0,208,221,152,223,32,96,3,0,208,29,161,132,32,18,4,0,210,157,16,216,179,131,4,0,212,221,71,39,211,244,2,0,212,29,125,54,10,138,4,0,214,29,149,230,64,149,2,0,218,221,195,38,84,206,2,0,219,157,50,209,131,72,4,0,220,221,76,75,253,154,2,0,220,93,114,253,205,87,3,0,222,93,98,244,228,132,3,0,228,29,56,59,176,240,2,0,229,157,60,98,50,66,4,0,232,29,233,144,215,133,3,0,238,221,141,90,105,62,3,0,239,29,202,128,249,33,2,0,239,29,62,51,163,252,2,0,241,29,249,143,21,84,3,0,242,221,227,60,17,70,2,0,243,221,198,40,154,86,2,0,245,29,68,176,198,35,3,0,249,157,143,196,182,21,4,0,251,157,169,203,220,197,2,0,252,29,111,49,96,189,2,0,252,221,172,189,125,207,2,0,252,29,185,14,79,20,4,0,254,157,220,57,233,25,3,0,254,157,186,148,209,188,3,0,1,158,45,252,72,211,2,0,2,30,64,63,241,118,2,0,2,94,196,255,175,218,2,0,5,94,14,178,213,66,4,0,10,158,182,120,199,206,3,0,11,158,154,37,191,195,2,0,19,94,221,173,174,100,4,0,22,158,221,129,103,137,3,0,23,94,8,22,216,20,2,0,27,158,251,48,206,9,2,0,28,222,27,212,106,41,3,0,32,30,96,130,157,18,3,0,36,94,33,154,127,232,3,0,38,94,99,177,117,51,4,0,41,94,251,167,120,145,4,0,42,94,214,111,19,57,4,0,45,222,152,223,203,84,3,0,47,222,144,153,56,143,4,0,49,30,52,40,9,141,4,0,50,30,87,122,129,32,4,0,52,158,133,253,67,14,3,0,55,30,248,254,222,119,3,0,56,30,46,240,119,0,4,0,57,222,14,223,59,209,2,0,62,94,227,186,18,251,2,0,65,158,66,14,94,34,4,0,66,158,149,243,115,5,4,0,68,222,41,202,246,7,2,0,68,222,7,182,201,16,3,0,68,158,179,209,246,23,4,0,73,158,44,135,248,149,4,0,76,30,239,47,232,37,2,0,77,222,93,144,216,124,3,0,77,30,193,116,189,83,4,0,78,222,89,135,213,109,2,0,79,94,11,216,109,228,3,0,79,158,42,100,137,231,3,0,80,158,98,75,9,138,3,0,82,222,160,210,160,49,2,0,82,158,228,53,101,171,3,0,83,158,230,4,222,192,2,0,85,222,182,51,95,201,3,0,85,158,56,239,227,127,4,0,86,222,122,29,97,9,4,0,87,158,119,113,166,21,4,0,89,94,172,122,15,165,2,0,90,222,123,184,7,92,3,0,90,222,164,114,202,90,4,0,91,30,97,27,172,215,3,0,91,30,114,189,46,221,3,0,92,30,7,64,6,247,3,0,95,30,244,83,190,134,3,0,95,94,185,37,44,196,3,0,95,30,163,56,193,79,4,0,98,94,242,169,216,84,3,0,100,222,7,193,241,54,2,0,103,158,9,159,211,42,2,0,104,30,196,246,196,221,2,0,105,222,5,20,110,195,3,0,105,30,199,68,39,50,4,0,109,30,33,50,224,201,2,0,110,158,179,22,131,146,4,0,111,94,24,81,109,79,3,0,111,222,234,196,13,146,3,0,112,222,8,55,203,138,4,0,113,222,158,27,63,85,4,0,115,158,146,184,246,71,3,0,116,222,215,230,219,116,3,0,126,94,59,81,137,222,2,0,127,222,203,230,191,80,4,0,128,158,128,220,218,176,3,0,128,158,231,248,174,120,4,0,129,94,76,3,156,92,2,0,131,30,253,137,50,133,2,0,132,94,192,172,130,218,3,0,133,222,26,65,2,1,4,0,136,222,232,196,90,140,4,0,137,222,234,147,84,59,4,0,137,158,97,55,23,119,4,0,140,158,163,2,203,191,2,0,149,222,120,255,200,248,3,0,150,30,14,186,60,77,2,0,151,30,123,184,249,174,3,0,155,30,194,88,53,25,3,0,155,94,14,86,220,107,4,0,160,94,246,44,98,76,2,0,160,30,54,14,134,140,2,0,160,94,241,158,206,214,2,0,169,222,153,158,87,117,4,0,174,158,123,0,192,88,4,0,174,158,152,12,88,114,4,0,175,158,43,175,25,84,4,0,177,30,80,46,56,197,3,0,178,94,203,189,179,141,4,0,184,94,147,20,255,210,2,0,185,222,22,61,93,255,3,0,187,158,24,183,63,48,3,0,191,30,162,210,221,165,3,0,193,222,3,76,187,47,3,0,194,158,143,68,170,15,3,0,194,30,188,64,192,249,3,0,194,222,143,216,250,51,4,0,196,158,249,45,105,38,2,0,202,222,235,239,100,71,2,0,202,94,252,34,232,148,2,0,202,222,15,81,89,224,3,0,205,30,167,81,130,244,2,0,205,94,106,136,158,90,3,0,207,94,105,83,80,197,3,0,211,94,231,239,165,81,4,0,214,158,229,181,84,120,3,0,221,30,246,121,109,142,4,0,223,158,115,210,230,255,3,0,227,94,228,29,179,5,2,0,227,94,71,82,241,22,2,0,229,222,213,135,48,61,2,0,230,30,81,170,89,83,3,0,233,30,154,219,74,78,2,0,233,158,27,129,240,204,2,0,235,30,188,189,35,211,2,0,235,222,133,184,228,77,3,0,246,94,59,184,23,50,3,0,246,94,119,163,156,173,3,0,247,158,13,184,198,28,3,0,249,94,124,24,125,188,2,0,250,158,251,131,245,29,2,0,250,158,24,236,84,46,4,0,253,222,109,233,88,170,3,0,5,95,5,19,241,201,3,0,6,159,33,170,119,88,3,0,6,95,31,45,88,228,3,0,7,95,79,79,98,0,4,0,7,31,253,37,129,14,4,0,11,31,145,76,183,106,4,0,19,159,95,140,91,229,3,0,21,95,65,79,222,83,3,0,23,223,52,4,104,14,2,0,23,95,145,59,65,146,4,0,24,159,221,110,186,31,2,0,26,31,102,191,226,47,4,0,26,223,200,106,31,115,4,0,27,223,28,74,251,134,3,0,27,223,103,91,83,119,4,0,28,223,127,190,99,176,2,0,28,223,216,242,159,184,3,0,29,31,220,111,231,10,4,0,30,95,144,169,103,50,2,0,30,159,34,147,198,111,3,0,33,31,60,224,191,127,2,0,36,31,255,46,39,105,2,0,36,159,200,234,145,111,2,0,38,95,236,61,166,128,4,0,40,159,227,119,119,248,3,0,41,95,36,149,184,182,2,0,43,31,56,32,93,149,4,0,45,223,254,94,109,23,2,0,45,31,84,110,190,209,3,0,46,31,138,255,143,141,2,0,48,159,138,20,50,147,2,0,48,159,32,237,44,108,3,0,51,159,26,108,224,71,3,0,52,31,87,234,216,124,2,0,52,31,121,137,193,242,3,0,57,95,132,102,15,62,2,0,64,223,0,188,83,56,4,0,70,31,201,44,184,69,4,0,71,95,28,136,60,16,4,0,72,95,40,35,139,180,3,0,75,95,72,217,6,239,3,0,76,31,172,74,134,120,3,0,79,223,9,89,208,15,4,0,80,31,190,186,72,13,3,0,82,95,182,77,135,93,3,0,84,31,105,206,224,52,2,0,88,95,49,108,151,126,2,0,89,223,11,174,184,107,2,0,90,223,236,139,199,93,2,0,91,95,102,63,231,80,4,0,92,95,14,40,151,185,3,0,95,223,229,190,43,143,4,0,97,31,54,159,195,167,2,0,97,223,98,177,52,144,4,0,101,31,102,0,91,119,2,0,102,95,58,12,18,169,2,0,103,223,209,219,239,252,3,0,107,31,24,81,231,93,3,0,108,95,73,164,49,97,2,0,108,223,24,101,21,149,3,0,110,95,159,42,108,9,3,0,110,223,126,228,38,197,3,0,113,159,31,38,147,255,3,0,116,31,128,145,19,134,2,0,117,31,157,87,158,17,4,0,118,159,214,140,186,145,2,0,122,95,12,192,150,28,4,0,126,31,90,127,106,128,4,0,127,31,78,143,165,125,2,0,129,31,247,132,77,142,2,0,132,95,181,58,164,141,2,0,134,95,93,14,49,64,2,0,134,159,7,160,141,37,4,0,134,31,26,125,2,99,4,0,134,223,177,71,89,100,4,0,136,95,23,167,39,58,4,0,139,31,130,38,63,159,2,0,139,159,237,44,24,203,3,0,142,159,250,39,239,36,2,0,146,31,193,132,178,47,2,0,146,159,202,3,201,34,4,0,151,95,81,245,255,21,4,0,151,159,69,130,162,85,4,0,152,95,184,0,219,34,4,0,155,31,207,87,207,227,2,0,160,31,83,186,1,28,2,0,162,31,89,244,205,94,4,0,165,159,149,215,36,74,3,0,166,223,149,131,117,184,2,0,167,223,17,223,38,122,2,0,169,159,190,166,81,101,3,0,171,159,139,164,87,69,2,0,175,223,19,252,132,195,2,0,180,95,194,51,178,121,2,0,181,223,124,51,209,46,4,0,182,95,124,32,127,180,2,0,183,159,192,99,103,131,2,0,186,223,22,91,164,163,2,0,186,95,33,227,27,37,3,0,189,159,122,154,207,113,4,0,192,31,184,73,92,238,2,0,195,223,204,133,10,7,3,0,198,95,15,65,85,19,2,0,204,31,181,248,16,24,2,0,204,223,152,223,215,77,3,0,205,31,5,130,211,19,3,0,205,159,3,143,136,141,3,0,205,223,223,128,36,7,4,0,205,223,39,109,106,147,4,0,206,159,132,115,88,127,2,0,209,223,103,129,7,21,4,0,213,223,15,220,222,249,2,0,216,95,87,132,158,8,2,0,217,223,153,223,93,219,2,0,217,159,56,186,101,27,3,0,220,31,87,41,194,2,3,0,223,223,212,53,133,197,2,0,223,31,145,22,27,98,4,0,224,95,59,184,5,49,3,0,230,223,108,104,127,120,4,0,231,159,76,81,44,181,2,0,233,223,87,2,144,196,3,0,235,223,10,15,166,200,2,0,235,31,78,147,96,33,4,0,236,159,160,17,38,233,2,0,236,95,66,54,255,200,3,0,237,31,84,80,228,110,3,0,237,159,26,98,58,208,3,0,241,159,29,172,73,131,2,0,241,159,140,19,113,226,2,0,242,223,117,191,245,47,3,0,244,95,221,239,126,45,4,0,246,223,52,4,57,12,2,0,248,223,227,219,236,104,3,0,253,159,40,20,196,246,3,0,4,96,206,69,44,149,4,0,6,32,99,237,144,55,3,0,6,32,3,109,54,99,4,0,9,32,200,36,199,67,2,0,9,32,102,15,243,114,2,0,10,160,30,138,42,136,4,0,11,96,193,198,79,89,2,0,13,224,123,246,215,91,4,0,15,160,54,81,201,222,2,0,16,224,211,192,20,141,3,0,20,160,218,92,209,100,3,0,24,224,203,207,117,153,2,0,26,96,21,197,158,177,3,0,30,96,153,58,151,201,2,0,37,224,104,4,18,107,3,0,38,96,125,170,222,175,2,0,39,32,101,122,216,2,2,0,39,224,25,252,62,28,2,0,41,32,250,122,244,16,4,0,42,224,110,252,94,255,2,0,44,160,113,234,64,152,4,0,46,32,245,210,223,29,4,0,50,96,216,145,243,2,2,0,50,96,115,112,115,94,2,0,53,32,50,109,130,149,3,0,58,96,16,158,112,20,2,0,59,96,255,38,77,164,3,0,62,96,24,81,0,102,3,0,63,32,90,193,116,195,2,0,65,96,26,147,143,78,2,0,65,96,219,205,147,136,2,0,66,224,26,177,58,190,2,0,68,224,201,199,127,97,3,0,72,32,33,188,148,235,2,0,72,96,57,28,151,63,3,0,75,160,48,69,46,109,4,0,81,224,70,206,47,77,4,0,82,96,239,187,12,246,2,0,83,96,211,65,165,105,2,0,85,224,249,162,8,252,2,0,86,96,78,226,108,159,3,0,87,32,166,166,219,27,3,0,88,224,198,69,166,205,3,0,90,96,103,131,47,84,4,0,91,224,115,90,121,196,2,0,91,160,8,214,98,30,4,0,91,160,113,225,217,85,4,0,93,224,102,209,162,30,4,0,97,32,37,109,186,8,2,0,105,160,205,150,243,209,3,0,108,96,10,34,214,97,2,0,110,96,219,22,113,28,3,0,110,96,13,149,55,193,3,0,111,32,57,14,240,225,3,0,112,224,169,214,111,124,3,0,116,224,123,147,108,147,2,0,116,32,72,134,35,13,3,0,117,224,232,62,59,138,4,0,118,32,142,223,90,105,3,0,118,224,237,244,192,178,3,0,120,32,37,155,8,194,3,0,123,160,201,137,238,4,4,0,124,96,231,47,107,65,3,0,124,32,23,35,242,128,4,0,127,96,181,213,87,111,4,0,128,96,170,201,33,156,3,0,130,32,59,184,253,61,3,0,132,224,5,63,226,208,2,0,133,160,104,212,44,104,2,0,137,32,53,117,128,239,2,0,137,96,16,42,199,207,3,0,140,96,68,244,136,166,3,0,141,224,96,198,249,0,3,0,143,96,64,46,108,10,3,0,143,160,161,22,42,41,4,0,150,160,112,83,233,255,2,0,151,224,118,175,72,52,2,0,158,224,189,114,168,9,4,0,161,160,172,109,151,62,3,0,164,32,159,202,51,248,3,0,165,32,205,90,162,122,2,0,166,32,93,20,96,117,2,0,166,160,18,254,168,54,4,0,170,32,6,48,222,206,2,0,172,160,83,79,164,55,3,0,173,224,152,223,103,74,3,0,179,96,60,203,60,240,3,0,183,160,20,125,121,128,4,0,185,96,252,216,78,244,3,0,192,224,79,217,142,11,3,0,193,32,47,164,70,23,3,0,195,224,219,241,164,82,4,0,199,224,25,1,195,46,2,0,200,224,64,246,5,124,2,0,200,32,30,195,239,69,4,0,203,160,177,211,55,60,2,0,203,96,104,67,83,142,4,0,204,224,76,46,246,49,3,0,204,160,136,218,221,211,3,0,205,32,6,129,194,54,2,0,205,96,133,201,133,129,4,0,207,224,100,162,218,238,2,0,208,160,140,32,87,58,2,0,211,32,44,81,14,250,2,0,212,224,152,223,78,77,3,0,215,96,18,201,15,113,4,0,216,224,54,156,17,155,3,0,216,160,145,171,102,137,4,0,217,224,152,192,21,236,3,0,218,224,193,146,180,177,3,0,220,224,11,11,146,145,3,0,222,160,16,180,245,22,4,0,223,224,115,65,153,130,2,0,224,32,170,100,118,196,3,0,225,224,101,67,176,85,4,0,226,96,19,5,230,74,2,0,227,224,61,172,156,102,3,0,230,32,202,162,211,223,3,0,231,32,15,192,242,198,2,0,232,160,52,52,131,133,2,0,233,32,219,58,53,46,2,0,233,160,123,204,147,68,2,0,234,224,29,152,117,82,2,0,241,224,12,146,96,92,3,0,247,160,113,200,170,251,3,0,248,32,65,123,135,115,2,0,248,224,148,144,233,155,2,0,248,160,111,57,251,198,3,0,250,96,208,47,97,153,4,0,251,160,89,11,122,99,3,0,253,224,174,19,114,63,3,0,0,97,34,58,126,79,2,0,1,225,65,77,128,147,2,0,1,161,213,232,249,21,3,0,7,225,55,116,91,193,3,0,9,33,155,87,79,215,2,0,12,161,226,211,124,25,3,0,21,97,45,28,70,155,2,0,26,161,193,235,74,90,4,0,31,225,134,72,36,49,4,0,34,33,89,135,155,20,4,0,35,225,134,87,30,240,3,0,36,33,82,159,185,82,3,0,40,225,152,223,127,102,3,0,42,97,105,104,87,159,3,0,43,161,223,115,224,132,2,0,46,33,47,166,44,152,3,0,47,161,142,16,251,28,2,0,47,97,40,84,175,25,4,0,50,33,39,199,151,95,2,0,52,161,120,62,14,160,3,0,53,161,209,217,236,185,3,0,54,225,156,237,221,191,3,0,54,97,177,187,126,96,4,0,56,161,236,169,247,88,3,0,57,97,24,81,242,101,3,0,58,97,161,57,147,13,2,0,62,225,195,130,146,4,3,0,62,97,114,178,213,219,3,0,63,33,116,146,89,77,4,0,64,225,76,1,147,134,2,0,64,225,204,97,28,250,2,0,65,33,138,181,235,239,3,0,67,161,145,184,31,102,3,0,67,225,248,208,180,22,4,0,68,225,85,244,154,19,3,0,71,33,155,142,158,197,2,0,71,161,14,169,29,143,4,0,73,33,69,223,94,46,3,0,73,97,18,197,111,95,4,0,74,225,77,25,159,239,3,0,75,161,63,213,28,198,3,0,76,225,130,15,237,236,2,0,78,161,138,30,126,168,3,0,84,225,68,211,154,120,3,0,86,161,15,248,50,173,2,0,92,97,214,177,144,243,3,0,98,97,194,26,89,93,4,0,100,161,248,104,172,97,3,0,103,97,232,152,156,191,2,0,103,33,166,155,236,148,3,0,103,97,189,197,180,158,3,0,103,97,204,103,80,97,4,0,112,97,26,113,149,239,2,0,114,97,187,238,74,36,4,0,116,97,134,184,204,76,3,0,120,225,118,26,61,44,4,0,120,161,157,18,109,132,4,0,125,161,50,124,103,50,4,0,126,225,212,224,5,11,2,0,128,225,59,221,0,117,2,0,130,97,95,77,147,148,2,0,130,97,135,47,66,124,4,0,135,161,114,207,60,77,4,0,137,225,107,231,31,153,2,0,141,225,95,93,12,204,3,0,144,97,93,15,226,152,3,0,145,225,149,19,168,22,3,0,146,33,45,110,126,35,2,0,146,97,103,99,11,134,4,0,149,97,151,223,69,74,4,0,155,33,61,81,151,212,2,0,161,97,30,45,195,30,2,0,166,225,56,18,250,199,2,0,167,225,39,81,152,23,3,0,169,225,86,240,27,77,4,0,171,225,103,136,31,106,3,0,178,161,109,148,44,70,2,0,178,33,49,214,62,55,3,0,179,97,153,219,165,74,3,0,180,161,59,81,243,208,2,0,180,97,126,133,174,62,4,0,181,225,80,246,217,177,3,0,185,161,224,95,151,106,4,0,187,225,116,13,98,39,2,0,192,97,166,239,139,241,2,0,192,33,129,60,232,21,4,0,195,225,192,5,11,143,2,0,195,97,159,122,164,213,3,0,197,225,41,81,141,250,2,0,201,225,37,171,72,141,2,0,205,161,53,23,28,76,2,0,205,225,118,72,118,225,3,0,207,33,161,201,215,100,4,0,210,161,176,44,172,232,3,0,212,161,205,168,4,36,3,0,213,225,6,177,242,72,2,0,215,161,240,85,21,20,3,0,215,225,129,243,82,47,3,0,216,161,120,118,181,172,3,0,217,97,142,48,216,11,4,0,218,225,29,68,41,71,4,0,219,97,233,197,35,55,2,0,219,161,16,175,188,51,3,0,220,33,197,46,248,160,2,0,221,33,142,160,10,27,4,0,225,33,31,183,212,25,3,0,227,225,70,108,170,209,2,0,230,97,18,192,175,171,2,0,232,97,14,94,172,49,3,0,240,225,240,67,65,120,3,0,246,225,138,38,145,71,2,0,246,161,4,223,129,170,3,0,246,161,4,223,156,170,3,0,246,161,4,223,177,170,3,0,246,161,4,223,35,151,4,0,247,225,5,129,172,54,2,0,251,161,72,218,77,3,2,0,254,33,246,124,246,140,2,0,255,97,42,31,89,205,2,0,255,225,89,71,93,13,4,0,1,34,100,68,62,167,3,0,3,34,10,219,154,7,4,0,3,34,129,5,244,40,4,0,4,226,222,176,8,214,3,0,5,226,97,78,165,43,4,0,9,226,131,5,17,66,3,0,9,162,25,80,242,45,4,0,16,226,153,223,140,221,2,0,25,98,205,7,246,42,2,0,25,226,201,49,196,74,2,0,28,98,189,40,46,87,2,0,29,226,58,11,255,80,2,0,31,162,227,200,154,152,3,0,32,226,180,234,2,126,2,0,44,34,198,18,204,19,2,0,44,98,98,60,104,143,2,0,44,34,171,84,58,127,3,0,46,226,61,81,182,221,2,0,46,226,0,35,153,93,4,0,49,226,186,120,152,56,3,0,54,34,240,241,250,84,3,0,59,162,1,37,31,172,2,0,60,98,61,10,234,56,3,0,60,162,185,0,186,169,3,0,61,98,5,39,37,27,3,0,61,34,130,63,65,121,3,0,66,98,201,126,85,15,2,0,74,34,187,21,14,160,2,0,75,162,147,64,132,204,2,0,77,162,108,3,35,163,3,0,79,226,15,70,120,87,4,0,80,226,205,16,90,73,2,0,84,34,119,139,98,88,4,0,88,162,23,120,211,74,2,0,90,162,9,9,201,23,2,0,97,226,130,6,16,133,3,0,101,226,207,188,237,233,2,0,106,98,178,87,54,39,3,0,110,34,11,110,229,224,2,0,111,98,136,30,25,92,2,0,112,98,245,81,40,195,2,0,113,34,177,18,182,10,3,0,113,226,81,45,253,189,3,0,115,98,30,60,175,25,2,0,116,98,188,251,30,253,2,0,119,34,178,7,182,62,3,0,127,162,185,97,213,47,2,0,127,98,214,216,142,9,4,0,135,226,153,83,212,125,4,0,144,226,153,223,47,221,2,0,148,226,201,229,115,36,3,0,149,226,92,254,219,241,3,0,150,226,128,132,135,199,3,0,153,162,192,39,7,216,2,0,154,226,83,152,42,251,3,0,161,34,142,67,181,214,2,0,162,162,152,27,140,128,2,0,163,34,68,72,59,33,4,0,164,226,102,15,194,71,4,0,167,226,199,251,63,203,3,0,169,98,55,84,101,24,2,0,169,34,187,253,94,22,3,0,170,162,143,197,216,128,3,0,172,98,168,155,7,195,3,0,174,98,224,154,186,84,4,0,179,162,90,190,13,231,2,0,194,34,213,193,176,133,4,0,195,162,72,72,146,33,4,0,196,34,189,26,55,213,3,0,196,98,156,192,205,69,4,0,197,162,254,7,127,206,2,0,198,98,147,45,47,72,4,0,199,34,112,240,182,69,2,0,199,226,13,205,95,21,4,0,200,34,99,1,201,205,2,0,204,226,120,172,87,189,3,0,205,34,48,81,240,245,2,0,205,162,93,200,81,43,3,0,205,98,8,228,176,148,4,0,206,226,143,48,62,101,3,0,207,98,68,147,197,37,4,0,208,226,103,144,84,134,3,0,209,226,121,160,234,49,4,0,210,162,84,168,230,191,2,0,211,98,158,186,27,161,3,0,212,98,123,211,168,236,2,0,219,226,61,240,250,192,2,0,219,226,248,186,26,211,3,0,220,162,145,222,252,13,4,0,221,34,57,66,56,230,2,0,224,226,190,51,169,65,3,0,226,98,88,58,18,212,3,0,228,226,207,188,181,232,2,0,228,162,191,53,219,166,3,0,230,98,40,79,134,34,4,0,230,226,21,78,225,133,4,0,232,162,219,13,151,167,3,0,232,226,14,199,175,226,3,0,233,34,123,35,171,216,2,0,236,98,19,231,184,129,4,0,240,34,44,124,203,52,4,0,243,162,105,36,212,255,3,0,244,34,69,60,174,75,3,0,244,226,84,62,78,48,4,0,245,98,42,8,72,26,2,0,249,226,83,113,89,131,2,0,251,98,216,185,157,157,2,0,251,226,183,5,38,38,4,0,253,34,133,46,43,53,4,0,254,162,60,83,153,91,4,0,255,162,221,8,154,79,2,0,0,35,123,19,124,16,3,0,2,227,22,137,30,43,4,0,5,99,149,126,138,53,3,0,6,163,28,48,99,245,3,0,9,163,1,113,58,15,4,0,9,99,11,88,168,19,4,0,14,99,221,159,24,19,4,0,15,163,102,19,52,18,4,0,18,35,121,5,191,194,2,0,20,99,200,114,157,55,2,0,21,35,39,223,92,199,2,0,22,99,206,168,13,117,2,0,23,227,5,21,247,63,4,0,29,35,124,26,209,187,2,0,30,163,55,21,100,202,2,0,31,163,122,92,53,13,3,0,36,163,113,212,212,143,3,0,38,227,242,12,42,186,3,0,44,227,93,42,208,35,2,0,44,99,45,248,221,174,2,0,45,99,10,10,37,69,2,0,46,227,183,173,35,39,3,0,54,227,73,75,77,63,4,0,56,163,181,43,106,113,4,0,58,163,252,95,117,53,3,0,58,99,103,140,38,182,3,0,59,35,231,150,143,56,2,0,62,35,205,237,81,167,2,0,64,163,163,104,178,63,2,0,67,227,161,76,78,57,2,0,73,35,187,253,130,22,3,0,77,227,112,242,19,127,2,0,78,99,132,166,71,122,2,0,81,35,194,105,105,110,2,0,85,163,12,82,19,231,3,0,93,227,55,116,77,193,3,0,93,163,180,58,35,95,4,0,97,227,216,135,246,37,4,0,100,227,79,217,203,10,3,0,104,227,183,85,18,136,2,0,107,99,45,134,0,179,2,0,107,35,167,210,115,85,3,0,109,35,18,223,164,124,3,0,109,227,75,51,68,91,4,0,109,99,185,39,161,141,4,0,113,35,220,248,46,132,4,0,116,163,175,251,33,206,3,0,116,99,11,48,51,107,4,0,120,35,42,116,57,252,2,0,122,99,100,54,92,17,2,0,123,35,164,155,183,16,2,0,124,99,146,100,41,172,3,0,124,227,187,204,129,60,4,0,125,163,168,90,247,153,3,0,128,227,185,195,110,170,2,0,130,35,12,237,223,115,2,0,130,35,5,212,135,1,3,0,131,227,4,176,100,81,2,0,132,227,159,209,176,55,2,0,133,163,60,157,198,99,4,0,135,163,73,209,188,62,4,0,137,35,248,176,144,75,2,0,143,227,223,144,32,103,3,0,144,227,36,155,108,205,2,0,146,163,23,192,18,158,2,0,146,163,139,52,98,252,3,0,146,99,167,203,31,85,4,0,151,99,66,199,145,76,3,0,153,163,93,120,152,238,2,0,153,227,141,253,231,53,3,0,157,99,12,20,145,55,4,0,160,99,136,8,165,67,4,0,162,227,12,162,244,44,4,0,166,227,253,63,63,66,2,0,166,163,223,200,124,164,3,0,168,35,106,0,229,75,4,0,172,99,150,31,148,252,3,0,175,99,240,245,239,122,4,0,179,163,95,77,242,46,4,0,185,35,206,41,225,39,3,0,185,227,225,183,130,12,4,0,187,163,76,185,155,121,2,0,187,163,134,190,26,190,3,0,189,99,131,247,81,32,4,0,191,227,103,87,185,103,2,0,193,227,50,117,4,71,2,0,193,163,24,186,39,236,2,0,197,35,177,45,216,163,2,0,197,35,106,186,105,31,3,0,198,163,39,81,126,10,3,0,199,163,89,122,213,152,2,0,200,163,222,67,89,223,2,0,201,227,184,218,2,147,2,0,201,99,237,145,154,148,4,0,206,99,108,24,167,229,2,0,206,227,124,149,63,202,3,0,208,227,91,111,144,187,3,0,211,163,96,230,243,115,2,0,213,99,7,110,64,143,2,0,214,163,82,239,199,41,2,0,215,35,92,143,114,165,3,0,217,227,201,236,24,130,2,0,217,163,205,164,113,187,3,0,217,35,13,124,89,124,4,0,219,35,112,226,206,64,4,0,220,227,245,184,226,122,4,0,223,163,198,183,130,45,3,0,224,227,32,229,94,87,2,0,225,35,164,155,34,16,2,0,226,35,187,253,57,22,3,0,226,99,153,38,47,115,4,0,227,163,152,160,133,54,3,0,232,163,84,156,1,15,2,0,233,227,179,3,126,170,2,0,233,163,151,16,111,151,3,0,233,163,71,132,170,34,4,0,236,99,233,118,237,239,2,0,237,35,78,17,199,151,4,0,239,99,181,83,134,46,2,0,239,163,186,54,60,221,2,0,239,99,190,2,39,141,3,0,239,35,58,230,218,213,3,0,239,227,89,216,22,72,4,0,241,163,176,5,202,251,3,0,242,163,63,140,4,84,2,0,242,163,197,207,143,139,2,0,243,163,233,60,205,206,2,0,243,35,212,27,41,226,2,0,245,227,217,42,3,73,2,0,251,227,205,229,61,68,4,0,255,163,97,58,48,85,4,0,0,36,115,243,241,144,3,0,1,164,153,223,23,227,2,0,3,100,229,41,157,216,3,0,4,164,254,226,59,70,2,0,7,100,118,179,75,50,2,0,7,164,147,59,158,3,4,0,10,228,93,89,4,247,2,0,20,164,153,223,10,227,2,0,21,100,156,245,103,147,3,0,22,100,171,14,28,47,2,0,22,228,81,32,40,151,2,0,25,100,94,149,20,65,2,0,26,36,220,6,24,249,3,0,29,228,123,200,174,23,2,0,29,164,90,160,47,73,2,0,30,36,18,174,83,21,2,0,30,36,70,115,14,124,4,0,31,36,237,199,251,160,3,0,33,228,172,1,183,200,2,0,34,36,146,195,180,27,2,0,34,36,66,149,154,108,3,0,37,36,198,237,7,90,3,0,38,164,198,94,84,161,2,0,39,100,251,222,82,18,4,0,40,36,238,236,75,97,2,0,41,100,134,149,11,245,2,0,44,36,117,96,199,154,3,0,54,228,131,168,252,95,4,0,55,100,41,173,163,196,3,0,55,228,210,190,217,10,4,0,56,228,39,81,202,23,3,0,58,36,245,146,0,31,3,0,59,100,128,210,85,11,2,0,59,36,204,235,37,145,2,0,60,36,168,102,70,245,3,0,62,36,56,128,227,47,3,0,63,100,187,84,226,30,2,0,63,36,106,129,11,145,2,0,65,164,204,168,100,249,3,0,68,228,19,192,23,178,2,0,69,100,195,186,55,23,3,0,69,100,66,129,57,252,3,0,70,100,106,243,190,165,3,0,72,36,127,195,198,156,2,0,72,100,28,123,130,77,3,0,73,36,184,145,34,124,2,0,78,228,248,235,146,16,3,0,78,164,80,80,1,64,3,0,78,36,151,47,26,93,4,0,80,228,250,73,28,75,4,0,82,36,20,228,96,31,2,0,84,36,251,86,253,111,3,0,85,164,106,252,122,221,2,0,85,164,68,231,45,24,4,0,85,36,49,221,210,109,4,0,86,36,208,120,56,40,2,0,87,228,71,121,169,44,4,0,88,228,2,215,33,42,3,0,89,228,242,114,53,227,2,0,89,164,208,194,207,110,3,0,91,36,73,32,103,111,4,0,92,228,196,220,216,126,3,0,98,228,193,172,34,142,2,0,101,36,60,37,227,42,4,0,105,100,185,234,177,117,2,0,105,100,197,173,190,117,3,0,105,36,201,117,176,249,3,0,110,100,246,195,3,91,3,0,110,36,3,214,156,139,3,0,115,36,24,28,52,139,4,0,118,164,189,188,220,115,4,0,121,100,206,113,175,86,3,0,122,228,143,201,225,6,3,0,124,164,15,150,26,83,4,0,126,36,164,216,193,110,2,0,131,100,35,117,206,114,4,0,134,36,14,89,20,135,4,0,134,228,208,246,69,137,4,0,141,228,3,142,146,34,2,0,141,36,165,235,98,188,2,0,141,36,212,226,241,126,3,0,141,36,32,61,96,56,4,0,143,36,148,44,94,241,2,0,146,100,36,145,118,59,3,0,148,36,140,57,203,34,3,0,155,100,64,240,84,66,2,0,155,228,22,212,142,175,3,0,157,164,132,52,230,134,3,0,158,164,226,213,24,117,4,0,162,100,22,26,108,185,3,0,171,164,217,53,77,56,3,0,171,36,242,169,130,84,3,0,172,100,111,196,46,190,3,0,172,36,102,85,251,147,4,0,174,164,100,157,186,117,2,0,174,100,254,64,131,130,2,0,175,36,7,146,170,93,3,0,176,164,247,126,172,165,2,0,176,228,52,218,216,173,2,0,178,36,100,63,90,134,4,0,179,228,191,135,218,46,2,0,180,228,87,0,157,222,3,0,181,36,135,89,16,98,3,0,186,164,212,72,146,96,4,0,188,36,86,181,253,111,2,0,188,164,57,244,60,59,4,0,198,100,142,89,156,106,2,0,202,164,154,41,35,30,4,0,205,164,141,198,197,115,2,0,206,228,200,150,96,38,4,0,207,100,186,218,209,151,3,0,207,100,186,218,0,152,3,0,209,100,190,190,54,123,3,0,209,36,183,117,160,151,4,0,212,36,187,154,60,56,2,0,216,164,179,209,58,50,2,0,217,228,123,178,120,211,3,0,219,100,254,88,224,169,2,0,224,228,71,64,250,50,2,0,224,228,164,169,197,96,3,0,226,100,70,184,58,126,2,0,228,228,19,192,38,178,2,0,229,164,11,185,127,70,2,0,232,100,245,19,113,103,4,0,233,36,41,108,152,159,3,0,233,164,177,12,91,231,3,0,237,164,20,172,91,77,3,0,239,228,199,92,109,252,3,0,242,36,163,170,153,178,3,0,244,228,239,129,168,174,2,0,246,164,134,192,6,241,3,0,248,228,100,186,246,131,4,0,249,164,144,145,84,104,3,0,249,228,240,116,203,80,4,0,250,36,119,87,115,214,3,0,4,229,13,115,109,212,2,0,6,165,187,194,190,148,4,0,11,229,167,228,63,188,3,0,11,229,123,103,229,71,4,0,13,165,46,147,43,242,2,0,14,37,209,196,248,190,3,0,16,101,144,180,117,21,3,0,18,229,170,27,198,137,3,0,18,165,72,179,176,104,4,0,22,229,79,83,71,110,3,0,24,101,50,146,200,26,4,0,25,101,24,81,168,76,3,0,27,101,107,166,234,60,3,0,27,37,236,10,51,76,3,0,29,165,33,114,93,240,2,0,30,229,75,215,137,178,2,0,34,37,105,178,252,254,3,0,37,37,7,146,187,93,3,0,41,229,41,16,45,108,2,0,43,101,131,151,180,161,3,0,43,101,224,167,147,168,3,0,44,37,90,119,51,61,3,0,45,229,20,91,24,16,4,0,48,37,63,89,238,161,2,0,53,37,62,169,240,40,2,0,53,165,238,252,148,16,4,0,58,165,81,99,148,30,4,0,61,165,148,36,92,96,2,0,62,229,65,58,112,129,2,0,62,37,210,195,131,148,2,0,62,165,36,222,120,138,3,0,63,37,2,140,121,122,2,0,64,37,82,45,253,1,4,0,66,165,242,47,164,26,2,0,68,165,240,165,8,203,3,0,68,37,157,92,78,239,3,0,69,229,250,169,38,95,3,0,73,37,11,50,56,181,3,0,74,229,4,252,116,53,4,0,76,101,233,248,6,253,3,0,80,229,152,223,180,43,3,0,80,229,78,62,73,77,4,0,81,165,97,124,11,36,2,0,82,229,14,136,130,223,2,0,86,229,96,67,125,76,2,0,86,165,166,2,209,250,2,0,86,37,129,177,196,255,3,0,89,37,79,203,244,166,3,0,90,229,164,44,27,90,2,0,91,101,231,178,78,169,3,0,94,101,199,240,76,50,4,0,98,37,96,179,194,115,3,0,98,101,85,159,223,246,3,0,99,37,88,178,234,27,2,0,99,165,77,124,45,235,3,0,100,229,138,169,167,169,3,0,108,229,234,27,20,95,4,0,111,37,39,52,67,107,4,0,115,37,118,141,255,40,2,0,117,229,122,19,141,158,2,0,118,37,11,38,86,222,2,0,119,165,56,166,124,209,2,0,120,37,219,238,241,127,4,0,121,101,38,121,182,118,3,0,125,37,135,99,181,72,3,0,129,101,220,253,160,190,2,0,130,165,170,172,179,99,4,0,132,165,231,142,246,89,3,0,133,101,25,116,207,137,2,0,133,37,16,219,124,200,3,0,135,165,88,62,198,91,2,0,136,101,222,205,178,26,4,0,139,165,62,166,65,210,2,0,140,229,178,45,255,109,3,0,141,165,18,82,182,212,3,0,143,37,167,141,231,127,3,0,144,101,170,160,200,53,4,0,144,37,9,38,71,76,4,0,148,101,46,109,95,74,2,0,148,101,169,12,154,113,2,0,150,101,235,185,208,46,3,0,151,165,132,22,26,84,2,0,152,229,16,148,171,18,4,0,153,37,34,80,118,126,2,0,153,165,251,196,123,126,3,0,155,37,255,198,97,40,3,0,155,101,52,140,114,123,4,0,156,37,72,87,155,178,2,0,156,229,241,250,120,109,3,0,160,165,213,182,11,215,3,0,161,229,13,80,192,111,4,0,162,37,48,81,213,245,2,0,163,229,58,69,83,148,2,0,166,101,116,140,137,104,3,0,167,37,248,60,23,222,3,0,168,229,43,22,30,252,2,0,169,101,141,14,136,135,3,0,169,229,206,175,229,209,3,0,176,37,11,148,243,48,4,0,180,101,218,238,185,45,2,0,188,165,47,211,31,7,3,0,189,37,157,189,191,243,3,0,192,165,59,161,24,152,2,0,192,37,215,28,124,82,4,0,194,101,202,229,160,55,4,0,195,165,69,128,222,109,3,0,196,101,141,156,40,70,4,0,202,37,198,159,56,172,3,0,208,229,59,108,151,171,3,0,211,101,8,54,108,4,3,0,213,101,165,174,148,69,4,0,214,229,4,11,53,245,2,0,215,37,190,147,64,169,2,0,216,37,95,40,218,249,3,0,218,101,231,228,137,33,3,0,220,229,89,169,207,228,2,0,223,165,188,188,189,106,2,0,225,37,63,29,4,220,3,0,227,229,43,100,119,46,2,0,227,37,201,91,77,68,4,0,233,37,53,117,107,239,2,0,234,101,171,44,41,138,3,0,240,229,231,175,43,39,4,0,247,37,45,108,242,138,2,0,249,101,32,25,112,139,2,0,250,37,6,28,213,128,2,0,251,101,161,192,164,158,2,0,251,229,27,19,99,246,2,0,255,101,49,52,170,63,3,0,5,230,69,138,110,105,4,0,10,38,250,34,247,235,3,0,12,230,15,146,67,47,2,0,12,38,5,235,123,100,2,0,13,230,186,119,179,216,3,0,17,230,73,205,79,133,2,0,22,38,167,29,104,136,2,0,32,102,225,81,134,123,4,0,35,102,143,113,94,196,3,0,35,230,75,60,121,41,4,0,37,102,212,78,137,137,2,0,37,166,238,217,32,132,4,0,47,230,167,228,105,188,3,0,49,230,67,83,165,24,2,0,54,166,21,81,189,104,3,0,54,166,120,233,89,219,3,0,57,102,52,234,205,122,4,0,58,38,149,28,166,5,4,0,59,38,131,121,232,109,2,0,60,166,76,81,71,175,2,0,61,166,167,146,108,96,2,0,62,230,17,9,128,28,2,0,62,38,187,160,66,168,3,0,62,38,205,133,225,135,4,0,65,38,30,123,105,215,3,0,69,102,58,135,65,251,3,0,72,166,109,16,3,89,2,0,72,230,0,69,47,46,3,0,72,166,128,184,23,82,3,0,72,230,182,169,194,194,3,0,74,230,206,67,166,59,3,0,76,166,76,10,178,3,4,0,78,102,232,254,180,16,3,0,81,38,48,240,164,71,2,0,82,166,219,243,115,208,2,0,82,102,129,139,210,245,3,0,82,102,251,93,35,107,4,0,84,230,96,56,234,62,2,0,85,102,174,230,217,234,2,0,87,102,64,142,60,10,2,0,87,38,247,23,230,218,2,0,87,230,136,34,93,240,3,0,89,230,173,231,38,216,3,0,91,102,159,243,51,9,3,0,93,38,100,176,177,87,2,0,94,38,204,21,235,136,4,0,97,102,190,94,140,120,2,0,98,102,89,217,195,106,3,0,99,102,139,151,10,6,3,0,100,230,101,35,96,89,3,0,103,230,54,145,25,175,2,0,106,166,153,223,231,231,2,0,109,230,138,250,148,212,3,0,113,38,213,115,43,90,2,0,116,38,88,28,169,109,4,0,117,102,50,86,158,201,3,0,120,166,104,50,57,255,2,0,121,38,138,214,234,150,3,0,122,166,111,169,16,89,4,0,123,230,255,245,216,51,2,0,123,102,89,229,61,83,3,0,124,38,99,87,204,38,2,0,125,38,222,150,102,230,2,0,128,102,48,20,13,31,2,0,128,38,70,102,66,130,2,0,128,38,233,152,175,189,2,0,128,38,167,69,82,137,4,0,129,166,160,229,185,40,2,0,130,38,98,8,226,254,3,0,131,102,252,27,181,233,3,0,135,102,31,170,137,177,2,0,138,230,105,167,100,102,2,0,141,102,212,96,241,77,4,0,142,230,5,30,173,160,2,0,144,38,84,135,35,37,2,0,145,166,221,247,147,57,3,0,148,230,219,69,93,139,2,0,148,102,204,235,15,147,2,0,148,38,73,173,39,135,3,0,153,166,213,209,180,91,4,0,154,230,179,253,218,22,3,0,155,230,51,166,27,111,2,0,156,38,11,139,139,116,2,0,168,102,233,9,107,201,2,0,169,166,13,169,119,77,2,0,172,38,20,226,67,34,2,0,172,102,188,160,237,91,4,0,173,230,119,7,255,123,3,0,178,38,182,38,23,30,3,0,179,102,138,37,160,33,3,0,180,230,189,18,226,73,4,0,181,38,39,133,39,140,3,0,185,230,103,185,230,140,4,0,186,166,193,251,6,3,2,0,189,166,30,180,48,45,3,0,193,166,43,82,193,76,2,0,193,102,253,186,235,65,4,0,194,102,23,192,202,158,2,0,195,38,53,114,152,251,3,0,196,38,34,178,229,88,3,0,196,166,45,158,36,159,3,0,198,102,147,80,33,3,3,0,201,230,213,173,59,48,4,0,201,38,143,78,42,62,4,0,202,38,22,76,24,183,2,0,204,230,228,64,113,84,2,0,205,166,68,171,109,132,2,0,211,38,131,42,158,68,4,0,212,166,168,188,91,87,3,0,212,38,53,192,250,11,4,0,213,102,140,57,25,114,4,0,214,230,186,4,5,167,3,0,217,230,183,42,119,107,3,0,217,166,62,8,180,120,3,0,217,166,96,232,221,164,3,0,218,166,79,247,187,180,2,0,220,230,168,182,172,237,3,0,222,38,71,85,24,72,2,0,222,166,220,64,43,21,4,0,224,166,42,113,175,126,4,0,225,230,30,115,112,173,3,0,228,102,90,236,51,37,2,0,229,166,162,222,235,158,3,0,230,38,225,253,169,149,3,0,231,166,128,251,76,107,3,0,231,166,49,154,248,142,3,0,232,230,201,35,0,29,4,0,234,102,239,2,53,50,4,0,235,102,62,185,56,52,2,0,237,102,196,27,7,37,2,0,238,230,237,145,7,235,3,0,240,166,198,136,63,221,3,0,250,102,246,8,128,39,2,0,250,102,55,16,123,219,3,0,251,166,28,149,110,34,2,0,252,38,234,255,237,164,2,0,253,166,172,78,178,15,2,0,253,102,249,213,196,103,3,0,255,38,58,159,223,142,2,0,6,103,189,103,10,47,2,0,8,39,68,36,20,45,2,0,8,231,112,58,29,147,4,0,10,231,99,148,80,90,2,0,12,103,181,110,201,201,2,0,12,231,128,228,45,220,2,0,12,167,98,138,21,4,3,0,12,231,103,95,87,91,4,0,17,231,190,239,89,198,2,0,18,231,130,219,227,46,3,0,24,103,215,66,47,79,4,0,27,103,57,222,244,228,2,0,30,39,147,83,109,167,3,0,32,231,73,197,22,88,2,0,34,231,89,68,108,228,2,0,36,103,30,35,54,89,2,0,39,103,6,17,221,111,4,0,42,231,196,51,254,82,2,0,43,103,75,33,24,100,4,0,56,231,93,89,24,247,2,0,56,231,185,194,47,78,3,0,58,39,64,68,19,126,3,0,59,231,127,236,12,26,3,0,60,167,101,153,100,91,2,0,63,103,61,146,190,21,2,0,66,39,227,182,75,11,4,0,74,103,110,4,4,59,3,0,75,167,9,219,35,56,4,0,80,231,51,99,158,175,3,0,81,167,170,18,232,103,4,0,84,231,13,224,176,67,2,0,84,167,79,247,169,180,2,0,84,231,152,223,80,45,3,0,84,39,251,146,155,166,3,0,90,231,190,239,72,198,2,0,93,231,99,40,31,250,3,0,95,167,20,43,138,27,2,0,96,167,235,252,145,10,2,0,100,103,13,139,26,87,3,0,103,103,69,1,94,184,2,0,105,103,6,128,198,32,2,0,106,39,123,95,33,81,2,0,115,167,165,104,154,110,2,0,115,231,66,253,113,224,3,0,118,167,115,19,188,191,3,0,120,231,49,200,242,141,4,0,121,103,91,203,95,138,3,0,121,167,251,236,193,142,3,0,121,231,91,145,226,217,3,0,122,103,195,109,106,25,3,0,125,231,213,72,46,241,3,0,126,39,116,10,110,83,2,0,129,167,37,250,134,94,2,0,129,231,122,251,70,204,2,0,130,231,123,133,22,196,3,0,131,231,60,81,242,214,2,0,133,39,229,245,41,29,2,0,135,103,223,141,68,27,2,0,138,103,217,192,37,135,2,0,139,231,163,155,133,22,2,0,140,231,244,118,185,118,2,0,140,231,84,87,23,46,4,0,144,39,74,27,80,33,3,0,144,103,179,5,95,72,3,0,145,231,60,81,124,218,2,0,145,103,31,81,198,38,3,0,148,103,251,178,5,171,3,0,156,39,111,17,113,23,3,0,156,103,242,166,9,118,4,0,158,231,64,192,61,82,2,0,159,231,112,1,40,23,4,0,162,39,173,128,11,79,3,0,162,103,177,66,124,11,4,0,167,167,153,223,177,231,2,0,168,103,111,5,2,228,3,0,171,39,151,59,154,89,2,0,172,39,216,7,197,90,2,0,172,167,58,12,165,168,2,0,173,103,21,99,68,140,4,0,176,167,119,148,214,159,2,0,177,39,5,84,130,224,2,0,177,231,125,127,69,88,4,0,178,167,169,221,71,93,2,0,180,103,145,100,234,196,3,0,183,231,20,15,69,126,4,0,194,167,198,142,98,81,3,0,197,231,45,203,204,63,2,0,197,231,111,253,56,237,2,0,197,39,193,126,197,143,3,0,198,167,50,130,38,67,2,0,198,39,93,75,137,208,2,0,199,39,75,255,145,113,4,0,200,231,244,64,210,161,2,0,203,167,175,123,198,6,4,0,204,39,28,198,224,123,2,0,209,167,138,47,144,187,2,0,209,167,110,215,96,83,4,0,210,103,51,60,85,35,4,0,214,39,227,88,195,14,4,0,215,39,212,235,207,243,3,0,217,103,194,155,193,85,2,0,218,39,227,74,147,203,3,0,219,167,37,174,91,232,2,0,219,231,202,196,145,25,4,0,221,167,113,251,52,47,2,0,226,103,170,214,94,207,3,0,229,167,154,64,15,120,2,0,233,39,65,21,6,139,2,0,233,39,65,21,23,139,2,0,233,39,65,21,43,139,2,0,233,39,65,21,62,139,2,0,236,167,216,67,250,253,3,0,238,231,79,186,246,10,3,0,239,103,152,171,102,75,3,0,241,39,202,42,10,87,4,0,243,167,217,9,18,9,2,0,244,39,11,143,136,199,2,0,245,103,244,5,161,10,3,0,245,167,42,11,29,19,3,0,245,231,201,234,80,123,3,0,249,167,133,227,101,216,3,0,253,231,48,29,108,45,3,0,0,168,224,205,183,178,2,0,5,168,98,145,126,160,3,0,8,104,177,87,140,163,2,0,9,40,107,149,75,34,4,0,10,232,13,34,233,34,2,0,11,40,12,192,200,200,2,0,13,168,224,219,95,100,3,0,15,104,57,207,22,28,2,0,17,104,4,243,220,137,3,0,18,232,205,113,249,5,3,0,18,40,124,184,135,83,3,0,23,168,255,230,228,121,2,0,23,104,158,0,82,138,4,0,24,168,93,98,79,28,2,0,24,40,3,228,219,108,3,0,25,104,122,54,182,222,3,0,28,104,209,144,90,103,3,0,34,232,170,165,183,57,2,0,34,168,25,166,229,118,2,0,39,40,79,167,168,167,3,0,40,232,76,184,76,25,4,0,40,168,110,103,16,74,4,0,42,104,169,248,96,112,2,0,43,168,51,151,60,160,2,0,48,40,20,229,208,73,3,0,48,104,146,26,53,17,4,0,50,104,221,183,5,108,3,0,52,104,233,9,129,201,2,0,53,232,174,99,132,132,2,0,56,104,190,139,251,122,4,0,57,104,93,229,11,13,2,0,58,232,147,48,120,165,2,0,63,40,99,21,147,98,2,0,63,40,222,252,14,125,4,0,64,40,80,192,34,71,2,0,66,40,79,182,187,136,2,0,68,104,208,138,249,243,3,0,73,168,206,178,84,196,2,0,74,168,43,77,32,128,4,0,76,40,184,123,144,6,4,0,78,232,168,165,219,57,3,0,81,232,164,65,29,199,3,0,81,104,207,85,140,248,3,0,83,104,39,81,238,252,2,0,86,168,36,78,147,76,2,0,86,232,62,231,224,111,2,0,90,232,111,105,190,163,2,0,97,40,164,155,21,16,2,0,100,104,107,145,240,123,2,0,101,40,112,50,211,0,4,0,102,168,59,17,104,108,2,0,103,104,181,29,22,218,3,0,109,40,220,122,241,145,4,0,112,104,162,218,117,32,3,0,112,168,213,71,96,76,4,0,113,40,24,229,46,88,2,0,114,232,255,63,109,66,2,0,114,40,131,135,68,147,3,0,118,104,85,20,211,135,3,0,121,104,190,106,83,128,2,0,124,104,216,14,34,133,3,0,124,40,63,92,20,237,3,0,124,104,179,73,253,146,4,0,128,168,143,146,106,210,3,0,129,40,250,232,34,13,2,0,135,40,158,216,16,61,3,0,138,168,103,54,108,166,3,0,139,104,153,206,234,22,3,0,140,232,189,181,222,64,4,0,146,232,157,222,102,6,2,0,147,232,157,222,83,6,2,0,149,232,98,112,33,248,3,0,156,104,149,241,64,133,2,0,158,104,113,189,103,222,2,0,159,168,153,223,65,231,2,0,159,232,55,175,46,34,3,0,159,168,42,203,184,225,3,0,161,232,155,184,102,122,3,0,161,104,113,151,252,137,3,0,162,104,176,162,10,68,3,0,165,168,100,125,9,131,3,0,169,40,205,179,75,194,3,0,171,104,153,223,1,250,2,0,173,232,55,67,174,169,2,0,177,104,49,68,119,237,3,0,179,232,26,209,232,84,3,0,184,168,120,133,185,24,3,0,185,232,122,100,246,242,3,0,189,168,233,20,155,106,3,0,191,104,79,217,176,49,2,0,196,168,167,119,126,13,2,0,198,232,238,86,142,97,2,0,205,168,79,15,230,4,2,0,205,168,69,132,136,211,2,0,205,104,222,86,51,174,3,0,209,232,167,223,190,12,3,0,209,40,136,68,19,216,3,0,209,168,47,21,226,149,4,0,212,40,59,242,134,49,2,0,212,168,221,195,89,153,2,0,214,168,9,217,15,201,3,0,219,104,246,243,99,18,2,0,219,168,197,230,80,89,4,0,220,232,251,186,189,157,3,0,231,168,240,246,60,93,3,0,235,232,132,140,140,130,3,0,240,104,231,134,210,139,4,0,244,40,37,81,152,27,3,0,244,104,53,114,140,133,4,0,248,104,108,53,69,150,3,0,248,168,148,229,219,86,4,0,249,232,9,199,154,242,3,0,253,232,206,183,48,103,3,0,3,105,109,215,180,214,3,0,4,41,204,63,227,202,3,0,4,233,122,72,229,81,4,0,6,169,83,228,36,136,2,0,7,233,96,51,166,135,4,0,8,169,213,52,252,150,2,0,8,233,203,45,135,255,2,0,9,169,129,154,2,124,4,0,12,169,191,81,226,14,2,0,15,169,200,11,8,133,4,0,18,169,42,223,36,132,2,0,18,233,215,6,43,198,3,0,21,41,180,161,253,144,2,0,23,169,91,89,52,162,2,0,23,169,124,171,193,240,2,0,23,233,225,48,164,51,4,0,24,105,9,48,193,30,4,0,36,233,18,173,196,3,3,0,37,169,0,1,237,111,2,0,38,41,24,169,178,44,2,0,38,41,72,12,183,141,2,0,39,41,21,60,129,120,2,0,47,41,242,130,55,72,3,0,48,169,159,218,68,103,2,0,48,233,214,160,138,153,3,0,49,41,142,170,21,196,2,0,51,233,123,184,7,89,3,0,52,105,127,140,138,3,2,0,53,233,176,23,189,124,2,0,54,233,123,184,22,89,3,0,55,41,157,186,102,140,4,0,58,233,96,254,129,213,3,0,65,233,10,160,4,76,2,0,65,233,129,57,246,92,3,0,67,233,233,236,203,197,2,0,68,41,185,51,17,105,2,0,69,233,247,22,163,225,3,0,70,41,16,192,159,202,2,0,70,169,0,254,164,16,3,0,72,41,108,13,107,129,3,0,73,41,254,246,207,26,2,0,75,41,9,107,241,2,3,0,80,41,82,199,203,8,2,0,80,105,29,177,39,42,4,0,81,169,200,216,106,77,4,0,85,105,227,16,222,70,2,0,86,105,246,58,181,1,4,0,87,41,9,229,110,60,2,0,87,233,42,33,179,151,4,0,94,105,61,52,124,124,2,0,94,41,124,184,65,84,3,0,96,169,98,145,146,160,3,0,101,233,145,7,112,112,2,0,107,41,1,83,173,164,3,0,109,169,237,204,154,18,2,0,109,41,24,190,48,24,3,0,110,105,237,223,213,96,3,0,114,169,152,5,54,113,3,0,116,105,231,169,36,92,3,0,118,233,24,254,65,24,3,0,123,169,10,95,209,32,2,0,125,169,108,95,130,207,3,0,126,105,63,105,54,208,2,0,131,169,222,223,43,220,3,0,132,105,58,83,1,19,4,0,132,169,158,78,203,120,4,0,133,233,216,47,156,149,4,0,135,41,37,81,186,27,3,0,137,233,17,75,208,118,4,0,138,233,89,248,217,158,2,0,141,41,108,155,85,47,4,0,141,169,235,204,120,98,4,0,144,169,248,39,74,149,3,0,148,41,14,248,87,94,2,0,153,105,247,105,54,171,3,0,156,169,218,217,133,160,2,0,156,105,74,240,220,195,2,0,158,105,26,220,57,210,3,0,159,233,37,64,247,124,4,0,160,233,32,117,44,138,2,0,161,169,44,157,150,45,3,0,161,41,231,174,225,119,4,0,163,233,159,121,13,33,4,0,165,233,168,105,239,250,2,0,166,233,200,172,236,84,4,0,166,233,250,159,85,98,4,0,167,169,97,195,77,71,2,0,168,233,226,154,221,35,4,0,169,41,251,250,20,95,3,0,171,233,44,21,0,248,2,0,171,169,15,219,90,163,3,0,181,41,0,230,214,57,4,0,182,41,10,213,149,170,2,0,188,41,239,167,69,39,2,0,189,233,212,45,79,25,3,0,193,233,172,189,158,207,2,0,193,233,26,110,172,194,3,0,195,233,54,12,79,30,2,0,195,233,204,208,251,106,3,0,195,41,233,28,112,186,3,0,195,41,132,89,109,201,3,0,196,233,69,230,98,73,3,0,196,41,132,204,166,86,4,0,197,41,121,128,46,53,2,0,203,105,175,60,121,6,4,0,208,105,251,19,90,32,3,0,208,169,189,183,254,195,3,0,210,169,17,125,210,96,4,0,212,41,209,181,196,14,2,0,212,169,190,198,134,27,3,0,212,105,123,42,149,1,4,0,213,41,155,9,85,37,2,0,218,41,213,227,74,25,2,0,218,41,121,220,45,101,4,0,220,105,237,62,251,128,3,0,226,41,158,216,133,61,3,0,228,41,121,180,255,11,2,0,229,41,73,11,67,71,4,0,233,169,202,146,55,13,4,0,234,41,137,67,13,233,2,0,235,105,23,192,185,166,2,0,237,169,41,60,61,8,4,0,244,105,167,240,143,145,2,0,245,169,94,36,216,45,3,0,245,105,49,52,134,63,3,0,246,41,104,201,220,93,2,0,246,41,29,198,241,121,2,0,247,169,138,118,210,42,3,0,247,169,120,239,189,135,3,0,247,41,187,200,191,36,4,0,248,169,244,217,212,85,3,0,254,41,163,190,149,194,3,0,0,234,65,252,177,175,3,0,2,234,102,172,2,9,2,0,2,42,109,142,218,37,2,0,2,170,139,198,179,125,3,0,7,106,25,52,72,65,3,0,7,106,237,81,201,101,4,0,8,42,136,240,87,245,3,0,9,234,221,179,64,45,3,0,13,234,114,58,141,32,3,0,13,234,169,20,42,57,4,0,13,234,14,49,177,112,4,0,13,106,110,27,103,133,4,0,15,234,66,227,160,67,3,0,24,106,127,153,132,18,3,0,27,106,83,76,43,15,2,0,27,42,80,17,207,115,4,0,27,106,214,57,136,126,4,0,28,234,118,168,191,7,4,0,30,42,163,103,95,154,3,0,31,106,240,97,206,242,3,0,39,42,53,50,66,38,2,0,39,106,112,123,65,73,2,0,40,170,118,254,97,99,4,0,41,42,88,233,234,183,2,0,42,170,118,20,98,4,2,0,43,106,23,210,90,36,2,0,46,170,100,125,231,130,3,0,47,42,50,12,220,180,3,0,47,170,69,127,175,218,3,0,48,42,24,242,247,147,2,0,49,106,8,90,131,225,2,0,49,170,226,66,42,229,2,0,50,42,11,177,107,54,3,0,51,106,107,55,115,240,3,0,51,234,67,91,112,46,4,0,53,234,111,240,125,174,3,0,53,234,111,240,166,174,3,0,59,234,84,40,224,123,3,0,59,42,140,171,69,151,3,0,60,170,70,253,8,187,2,0,62,106,39,0,116,92,2,0,65,106,218,255,21,195,3,0,67,234,23,81,2,98,3,0,67,106,198,137,63,186,3,0,68,42,153,223,194,36,3,0,69,42,69,232,225,198,3,0,70,42,207,30,175,95,4,0,72,234,39,77,3,240,3,0,77,106,73,198,19,142,3,0,78,170,165,164,127,171,3,0,79,170,210,110,150,195,2,0,84,234,111,88,7,164,2,0,86,170,97,39,182,168,3,0,87,42,85,135,33,60,4,0,88,106,93,96,15,30,2,0,90,234,35,102,92,145,2,0,92,106,141,151,98,88,2,0,92,106,44,113,239,79,4,0,93,170,175,252,236,76,3,0,94,234,45,50,225,203,3,0,100,106,77,7,213,114,3,0,100,170,170,128,42,16,4,0,107,234,47,254,244,46,2,0,107,106,42,16,154,140,3,0,108,106,181,137,44,168,3,0,113,234,88,91,189,97,3,0,114,170,106,204,54,115,2,0,117,42,75,228,53,119,2,0,117,42,71,55,241,118,4,0,118,234,53,27,170,220,2,0,118,234,63,25,177,110,3,0,118,106,31,143,45,117,3,0,119,234,17,230,125,5,2,0,121,42,83,235,144,63,2,0,121,106,144,228,19,123,2,0,122,42,200,47,89,153,4,0,123,106,190,33,206,140,2,0,124,170,10,160,172,248,3,0,125,170,255,12,85,8,2,0,125,42,162,57,250,157,2,0,126,170,162,81,208,4,4,0,127,42,175,141,255,75,3,0,128,42,101,92,63,155,3,0,131,234,15,245,46,165,2,0,132,170,94,92,78,17,4,0,133,42,17,23,165,128,2,0,133,106,213,210,82,210,2,0,133,170,28,65,151,213,2,0,134,170,87,145,227,61,2,0,134,234,55,23,7,16,4,0,144,170,213,75,47,105,3,0,147,170,210,153,73,200,3,0,150,42,127,93,39,153,3,0,150,106,204,161,193,147,4,0,155,170,101,102,194,230,2,0,155,234,115,188,155,149,3,0,161,234,204,247,28,206,2,0,162,42,124,184,146,84,3,0,162,106,14,66,33,33,4,0,174,234,40,13,26,29,2,0,178,106,110,252,90,0,3,0,179,170,229,15,17,43,4,0,179,106,252,107,198,61,4,0,183,106,29,81,209,40,3,0,184,106,95,75,204,97,4,0,186,170,64,104,46,65,3,0,186,106,80,224,189,79,3,0,190,234,158,134,66,14,2,0,192,234,242,10,94,138,2,0,192,234,164,152,22,138,3,0,194,170,47,188,135,236,2,0,194,234,35,181,236,162,3,0,195,170,219,129,242,129,2,0,195,106,53,180,51,110,3,0,204,170,17,192,186,172,2,0,208,234,93,74,185,117,4,0,214,106,246,247,87,136,3,0,221,42,98,158,147,51,4,0,222,170,179,42,145,36,3,0,225,234,137,65,94,157,2,0,226,106,98,65,249,153,2,0,226,106,98,65,170,155,2,0,227,42,24,18,109,242,2,0,227,106,70,27,137,172,3,0,229,170,184,40,43,43,2,0,230,42,127,238,139,62,2,0,231,170,104,96,171,89,2,0,239,42,2,14,32,26,2,0,239,42,249,194,21,221,3,0,244,170,15,192,0,201,2,0,246,234,69,126,6,53,2,0,249,170,113,178,165,112,2,0,253,170,148,122,50,42,2,0,255,234,106,245,27,41,2,0,255,42,190,216,37,243,2,0,2,235,64,247,159,234,3,0,5,171,87,149,143,76,4,0,6,43,217,111,173,31,3,0,9,43,247,196,134,23,3,0,9,43,147,15,96,148,3,0,9,43,175,153,100,153,3,0,10,235,186,159,57,63,3,0,12,235,99,100,123,98,3,0,13,107,36,73,253,135,3,0,17,235,247,24,30,44,2,0,17,43,151,140,184,82,4,0,25,43,70,114,234,190,3,0,27,171,81,147,44,3,4,0,29,235,186,233,239,98,2,0,29,171,16,234,43,126,2,0,33,171,25,31,62,228,2,0,45,43,37,58,178,186,3,0,47,107,3,141,19,24,3,0,49,171,199,165,217,29,3,0,50,171,130,148,194,232,3,0,51,235,107,112,199,27,2,0,54,171,51,159,88,93,3,0,55,235,194,10,111,182,3,0,56,43,17,195,30,184,2,0,60,235,70,245,96,24,3,0,60,107,40,145,8,173,3,0,61,171,18,52,133,65,3,0,66,43,83,208,228,17,3,0,68,107,24,27,230,98,3,0,69,107,39,81,120,254,2,0,71,43,253,172,109,135,2,0,71,43,240,113,20,254,2,0,72,171,93,193,136,92,2,0,74,107,75,58,15,176,2,0,79,107,244,128,206,252,2,0,79,171,191,219,176,181,3,0,81,43,119,152,225,128,4,0,82,235,165,189,11,180,2,0,84,43,144,153,91,50,4,0,88,43,160,154,73,95,3,0,88,235,86,83,12,187,3,0,91,107,222,36,87,78,3,0,91,43,213,232,142,234,3,0,92,171,164,173,157,119,4,0,94,43,93,224,20,73,3,0,94,43,97,26,19,227,3,0,101,107,154,74,193,80,2,0,102,235,13,254,215,233,2,0,104,235,13,197,234,94,2,0,104,171,206,242,75,61,3,0,108,171,208,203,0,112,4,0,112,107,23,192,212,165,2,0,113,43,222,97,174,70,3,0,113,171,222,241,103,143,4,0,114,171,160,254,129,10,2,0,115,43,140,53,171,51,3,0,120,235,200,187,233,244,2,0,120,107,93,241,102,181,3,0,121,43,138,103,44,133,4,0,125,107,39,101,49,31,4,0,128,43,13,75,115,200,2,0,132,235,22,28,25,152,3,0,134,235,217,89,80,118,4,0,135,235,82,132,158,221,3,0,138,43,184,126,217,112,2,0,139,107,181,168,65,178,3,0,140,107,0,234,58,237,3,0,144,107,13,234,240,223,3,0,144,235,184,17,91,237,3,0,147,43,249,14,210,194,3,0,149,43,4,33,108,33,2,0,149,235,233,208,214,80,4,0,150,107,85,94,196,237,2,0,150,107,121,14,216,48,3,0,152,43,12,80,59,190,3,0,154,107,209,84,70,129,3,0,157,107,189,102,196,136,3,0,158,171,34,175,194,21,3,0,160,171,255,90,41,201,3,0,162,171,139,69,74,98,2,0,163,107,183,186,51,7,3,0,164,43,68,155,29,202,3,0,170,43,50,12,83,180,3,0,173,107,32,42,70,51,3,0,174,171,89,144,75,219,3,0,174,171,58,83,94,97,4,0,176,43,168,121,211,105,2,0,176,43,182,102,72,192,3,0,177,107,165,100,47,99,2,0,178,235,75,184,243,251,2,0,180,43,160,155,180,196,3,0,187,107,49,170,241,52,2,0,190,43,139,20,25,147,2,0,191,171,148,34,172,230,2,0,194,107,24,81,65,75,3,0,195,107,125,79,35,125,3,0,196,107,163,28,60,63,2,0,199,235,145,84,113,192,2,0,200,107,64,197,140,99,3,0,203,171,238,97,2,73,4,0,203,235,93,125,169,122,4,0,206,107,172,136,29,53,2,0,210,171,113,116,116,81,3,0,229,171,151,250,22,155,2,0,229,107,26,24,123,223,3,0,230,43,140,212,242,82,4,0,231,235,205,31,253,137,2,0,232,107,78,35,33,66,2,0,233,107,180,13,111,10,4,0,233,235,146,164,251,104,4,0,234,171,179,221,224,228,2,0,237,235,116,103,175,167,2,0,237,235,58,82,63,10,4,0,240,43,179,93,176,197,3,0,241,235,82,177,71,92,3,0,241,235,196,9,64,2,4,0,242,171,72,172,4,126,4,0,245,107,129,113,245,61,4,0,246,43,50,12,208,180,3,0,247,43,255,117,169,134,3,0,248,107,54,94,238,152,3,0,248,43,207,14,94,121,4,0,249,235,124,59,38,210,2,0,252,171,209,93,218,104,4,0,255,107,96,52,185,98,3,0,255,107,101,44,86,127,4,0,0,108,215,27,73,124,3,0,3,236,206,37,165,77,4,0,4,236,173,120,151,160,2,0,6,172,208,21,217,25,4,0,12,236,248,143,243,83,3,0,12,44,16,101,72,98,3,0,14,172,56,82,240,102,2,0,16,236,35,182,194,109,2,0,17,108,52,81,153,229,2,0,18,108,153,223,128,250,2,0,18,44,124,184,18,85,3,0,20,172,59,255,231,95,2,0,22,108,222,222,82,14,4,0,26,108,202,107,73,132,4,0,31,172,7,25,17,115,2,0,31,172,255,166,230,221,3,0,34,236,29,110,0,57,3,0,35,172,83,32,190,22,2,0,35,172,137,240,195,22,4,0,36,236,152,223,109,47,3,0,37,44,62,105,185,72,2,0,37,172,25,131,96,132,4,0,39,44,181,216,83,57,4,0,41,44,164,73,128,76,4,0,42,108,169,114,171,73,2,0,42,44,217,111,197,31,3,0,42,172,162,131,255,132,3,0,44,236,113,58,89,34,3,0,45,44,212,113,154,180,3,0,47,108,16,195,18,150,2,0,49,108,43,51,192,108,2,0,49,172,102,212,201,39,4,0,50,108,140,184,62,102,3,0,50,108,49,87,217,28,4,0,51,172,79,143,193,95,4,0,53,44,130,7,134,21,3,0,53,44,129,13,174,66,3,0,57,172,135,24,134,134,2,0,57,236,17,105,205,92,4,0,59,44,21,102,21,55,4,0,60,172,248,26,163,224,3,0,60,172,121,108,76,16,4,0,62,172,232,111,165,212,2,0,62,108,19,129,141,165,3,0,65,236,19,135,2,62,2,0,66,236,60,81,63,219,2,0,66,108,64,185,223,40,3,0,67,108,30,195,109,87,3,0,70,44,68,201,157,25,2,0,71,44,146,229,110,43,2,0,73,236,252,92,76,170,2,0,73,172,140,247,225,73,3,0,75,108,208,35,72,217,3,0,75,172,56,172,51,26,4,0,77,44,61,4,73,89,3,0,78,236,175,41,146,193,3,0,79,236,174,70,252,26,3,0,81,236,3,144,131,44,2,0,81,108,167,162,2,67,2,0,85,108,123,102,25,251,3,0,87,172,89,23,119,249,2,0,88,236,55,170,225,137,2,0,92,44,200,209,194,128,3,0,95,44,221,32,162,115,4,0,97,172,61,81,153,221,2,0,97,172,124,54,131,157,3,0,98,108,211,157,240,245,3,0,100,44,254,134,71,178,2,0,100,44,46,87,77,171,3,0,102,236,18,7,125,25,2,0,104,172,222,209,112,13,4,0,105,236,212,47,245,222,2,0,105,172,175,146,77,243,2,0,108,172,254,14,242,20,2,0,108,172,190,65,159,153,3,0,109,44,212,12,52,80,3,0,116,236,255,35,134,48,2,0,118,172,89,23,204,249,2,0,118,108,240,53,60,60,3,0,123,108,208,106,167,45,3,0,124,44,203,159,139,47,4,0,125,172,81,31,192,188,3,0,130,236,5,70,22,137,4,0,131,236,195,241,167,145,2,0,131,44,131,164,214,16,4,0,135,108,157,180,222,139,3,0,136,236,178,5,22,83,2,0,141,236,93,114,78,83,4,0,142,172,70,95,86,236,3,0,145,44,187,126,243,14,2,0,145,108,144,108,216,131,2,0,149,108,111,227,31,6,2,0,149,172,126,15,121,11,3,0,149,44,193,130,249,54,4,0,153,172,140,155,163,64,3,0,153,44,98,208,187,244,3,0,156,172,86,251,149,230,2,0,158,236,115,136,225,29,2,0,162,44,175,205,5,8,3,0,162,236,30,28,246,74,4,0,163,236,60,81,252,213,2,0,168,236,17,139,169,90,4,0,169,108,103,117,75,5,2,0,173,108,71,49,104,120,3,0,173,236,15,177,87,95,4,0,174,172,158,252,193,133,2,0,175,108,159,85,21,151,2,0,177,236,206,169,228,33,2,0,177,236,209,66,53,194,2,0,178,108,101,119,219,72,3,0,181,44,71,112,49,177,3,0,184,172,216,66,141,227,2,0,185,172,60,197,18,168,2,0,186,108,85,94,7,238,2,0,187,108,237,182,156,147,3,0,187,44,133,246,133,122,4,0,190,172,254,226,100,65,4,0,191,108,18,222,102,59,4,0,194,44,9,14,234,66,2,0,196,236,243,254,235,195,3,0,199,44,29,143,24,34,3,0,200,236,36,121,242,86,2,0,205,44,166,208,246,188,2,0,206,108,32,84,204,102,4,0,212,236,152,93,35,62,2,0,212,108,63,20,126,251,2,0,212,172,208,207,113,37,3,0,212,44,55,147,69,131,3,0,212,44,202,28,72,248,3,0,213,172,137,146,115,32,4,0,215,44,242,11,67,81,2,0,215,172,123,123,196,17,3,0,218,108,122,138,240,49,2,0,220,44,31,210,156,80,3,0,222,108,80,113,230,56,4,0,225,236,55,225,11,217,3,0,226,236,183,60,60,206,3,0,227,44,2,73,103,197,3,0,227,44,70,176,228,120,4,0,228,172,178,27,223,43,4,0,235,108,48,142,148,188,2,0,237,108,110,64,188,109,3,0,238,236,122,198,113,19,3,0,241,44,38,119,68,127,4,0,243,44,89,205,201,111,2,0,243,44,172,42,73,64,4,0,245,108,252,162,99,5,4,0,246,108,216,140,211,50,2,0,247,236,147,255,105,78,3,0,249,172,143,223,63,105,3,0,249,236,82,110,23,150,3,0,249,172,212,110,88,11,4,0,250,44,182,238,35,97,2,0,254,108,35,166,207,29,2,0,4,237,213,96,2,232,2,0,4,45,151,50,67,223,3,0,5,237,19,235,80,47,2,0,6,237,168,21,1,52,2,0,8,173,245,31,25,51,2,0,9,109,227,207,32,183,3,0,10,45,194,144,1,27,2,0,12,173,178,206,14,77,4,0,15,173,10,249,222,214,3,0,19,109,52,152,38,11,2,0,20,109,213,237,52,103,4,0,23,45,23,192,217,166,2,0,23,109,170,128,245,78,3,0,23,237,226,150,229,156,3,0,27,109,206,218,123,220,2,0,27,109,249,101,2,146,4,0,28,237,255,26,72,213,3,0,34,45,160,179,62,169,3,0,34,173,173,217,20,45,4,0,35,45,39,106,127,136,4,0,36,173,216,165,205,99,2,0,38,237,13,7,228,209,2,0,48,109,64,185,15,40,3,0,51,109,29,52,77,147,4,0,54,45,217,169,230,194,3,0,56,173,160,29,221,130,4,0,58,45,224,222,45,54,4,0,60,237,114,12,50,51,2,0,63,45,159,154,14,163,2,0,63,109,7,242,177,238,3,0,64,237,113,58,69,34,3,0,66,109,204,235,103,105,3,0,68,109,161,4,42,170,2,0,68,237,213,69,8,37,4,0,72,237,102,48,119,52,4,0,73,45,135,251,55,62,3,0,77,173,247,109,34,112,2,0,78,237,75,184,222,251,2,0,78,45,83,208,249,17,3,0,78,173,17,170,86,69,4,0,79,237,186,94,109,180,3,0,80,173,178,44,195,70,2,0,80,173,111,226,255,114,4,0,82,173,229,58,5,248,3,0,83,109,204,235,248,202,2,0,83,109,204,235,9,203,2,0,83,109,204,235,25,203,2,0,83,109,204,235,49,203,2,0,83,109,204,235,72,203,2,0,83,109,204,235,89,203,2,0,83,109,204,235,106,203,2,0,83,109,204,235,124,203,2,0,83,109,204,235,140,203,2,0,83,109,204,235,163,203,2,0,83,109,204,235,182,203,2,0,83,109,204,235,199,203,2,0,83,109,204,235,213,203,2,0,83,109,204,235,228,203,2,0,83,109,204,235,245,203,2,0,83,109,204,235,4,204,2,0,83,109,53,155,80,203,3,0,83,45,149,175,250,31,4,0,85,173,205,185,224,22,2,0,88,109,80,66,217,121,3,0,89,173,204,122,26,10,2,0,90,109,229,230,239,141,3,0,90,45,241,68,252,154,3,0,94,237,166,78,173,225,2,0,96,173,188,114,29,134,3,0,97,109,16,95,63,69,2,0,98,173,1,153,150,52,2,0,98,173,191,220,125,159,3,0,104,109,94,153,9,64,4,0,109,45,24,185,23,29,3,0,114,45,83,16,5,197,3,0,116,109,37,62,240,3,2,0,118,237,46,205,58,21,4,0,120,237,108,156,206,169,2,0,122,173,12,29,140,192,3,0,123,237,25,100,152,225,2,0,126,45,163,90,148,146,2,0,127,237,57,252,215,84,2,0,131,173,126,195,242,212,3,0,135,173,122,89,86,135,3,0,136,173,88,75,82,58,3,0,136,109,188,139,39,15,4,0,138,109,159,151,16,158,3,0,138,109,1,171,122,39,4,0,138,173,82,122,210,146,4,0,139,45,43,24,191,13,3,0,140,173,30,85,46,237,3,0,143,237,165,149,49,127,2,0,143,45,130,174,211,132,3,0,145,173,122,89,54,136,3,0,146,173,189,45,172,45,2,0,147,237,192,152,151,132,4,0,148,45,141,36,111,52,2,0,149,237,20,129,198,243,2,0,154,45,169,157,186,78,2,0,158,45,101,221,116,91,3,0,161,45,85,196,111,145,2,0,163,45,2,60,232,166,2,0,163,109,18,249,223,230,3,0,168,173,54,81,231,222,2,0,177,237,187,206,90,108,2,0,189,173,62,100,214,252,3,0,190,237,172,243,117,89,2,0,190,109,183,110,177,136,4,0,191,237,214,127,5,122,3,0,192,109,83,62,220,94,2,0,192,173,184,5,147,111,4,0,194,173,139,25,107,134,2,0,194,109,87,24,19,45,3,0,197,45,88,252,75,179,3,0,197,45,165,126,39,242,3,0,201,237,107,109,33,209,3,0,205,237,34,50,186,229,2,0,207,237,188,166,36,35,4,0,208,45,57,66,173,17,4,0,213,45,83,156,59,108,4,0,214,109,69,90,187,128,4,0,218,109,18,186,165,11,4,0,219,109,4,199,255,84,4,0,225,45,142,31,104,91,4,0,226,237,252,28,203,11,4,0,227,237,90,207,255,182,2,0,228,109,45,145,145,250,3,0,231,109,108,240,105,55,3,0,235,109,69,33,147,83,2,0,235,173,203,166,179,234,3,0,236,237,19,220,15,201,2,0,237,45,231,23,18,8,4,0,240,109,146,118,91,121,2,0,241,45,5,211,58,142,4,0,242,173,76,81,164,181,2,0,243,173,195,130,74,51,4,0,243,45,201,245,69,66,4,0,243,45,89,79,140,128,4,0,244,45,137,99,6,243,3,0,249,173,164,13,247,34,4,0,250,45,253,229,123,158,2,0,250,237,104,218,12,122,4,0,253,109,5,53,118,139,4,0,1,46,109,108,241,112,3,0,2,46,231,147,151,61,3,0,3,110,141,233,56,49,2,0,9,174,141,116,210,127,2,0,9,110,66,12,83,133,3,0,10,110,206,192,196,124,3,0,10,110,0,171,174,105,4,0,11,110,239,18,97,249,2,0,13,46,150,217,184,124,4,0,17,174,77,164,200,100,4,0,21,174,0,67,24,213,3,0,24,110,188,242,61,148,2,0,24,46,169,255,218,213,2,0,28,110,142,133,70,255,3,0,30,46,124,184,151,85,3,0,38,238,17,188,0,236,2,0,40,46,137,86,43,1,3,0,42,46,105,25,106,189,3,0,47,110,207,187,223,28,2,0,47,110,187,178,19,65,4,0,51,46,183,138,161,32,3,0,51,110,109,31,85,108,3,0,57,46,154,86,178,72,4,0,58,174,150,55,13,119,3,0,59,238,212,237,54,232,2,0,66,110,194,168,89,98,3,0,67,110,229,220,164,24,4,0,68,174,216,66,191,227,2,0,73,174,200,251,143,88,4,0,81,238,239,206,219,37,4,0,83,174,216,66,175,227,2,0,87,46,97,49,45,96,3,0,87,110,25,208,211,235,3,0,87,46,15,80,25,51,4,0,88,110,64,144,36,11,3,0,89,46,177,110,213,127,4,0,91,46,97,8,51,124,2,0,91,110,131,50,40,176,3,0,91,46,132,137,35,207,3,0,92,46,52,254,31,122,4,0,95,238,177,255,17,144,2,0,96,110,190,214,60,238,3,0,98,46,12,104,74,208,2,0,99,110,89,95,231,65,2,0,100,110,186,171,140,80,3,0,103,110,101,151,57,11,4,0,104,238,162,235,42,65,2,0,106,238,250,236,14,171,2,0,106,174,23,68,176,230,3,0,106,110,229,149,160,18,4,0,108,110,156,65,40,14,2,0,112,46,103,84,137,59,3,0,115,46,183,94,149,227,3,0,116,46,162,98,94,79,4,0,118,46,86,250,115,47,4,0,120,174,180,92,74,95,4,0,121,110,151,113,126,192,3,0,123,46,221,117,76,181,3,0,123,238,115,242,142,118,4,0,126,174,76,81,116,181,2,0,126,110,195,148,65,113,4,0,130,174,161,189,6,148,3,0,141,46,182,229,56,56,3,0,141,174,35,174,10,238,3,0,145,238,33,70,88,150,3,0,152,238,14,34,193,97,2,0,153,174,238,155,29,143,3,0,153,238,245,88,248,102,4,0,158,238,109,157,139,89,3,0,160,238,107,12,200,183,3,0,161,110,205,81,240,11,2,0,162,238,196,116,180,49,4,0,164,110,7,112,227,22,4,0,165,110,149,69,212,219,2,0,168,46,212,79,14,153,2,0,173,174,249,124,180,89,4,0,176,174,145,88,99,146,2,0,177,110,131,57,255,85,2,0,178,46,65,99,42,243,3,0,182,174,49,21,142,202,2,0,182,46,21,67,41,149,3,0,183,46,175,246,164,146,2,0,185,46,244,87,175,229,3,0,187,174,42,203,142,33,2,0,187,46,227,85,116,27,3,0,188,110,102,141,101,11,2,0,189,46,147,65,248,137,4,0,190,46,202,127,122,32,2,0,192,238,160,134,62,120,4,0,199,174,220,170,29,129,4,0,199,238,187,42,136,140,4,0,202,46,34,68,122,48,4,0,203,238,19,41,54,57,2,0,206,46,196,94,57,100,4,0,208,238,11,217,33,18,2,0,209,110,68,19,14,53,3,0,211,46,78,190,138,20,4,0,213,46,11,201,43,246,3,0,213,110,21,44,85,246,3,0,215,110,192,238,99,250,2,0,217,238,37,173,46,102,3,0,218,46,4,73,183,79,2,0,219,174,105,17,65,9,2,0,219,238,190,230,113,125,3,0,221,110,108,236,13,104,3,0,224,174,1,212,61,120,2,0,224,110,226,114,5,251,3,0,225,110,107,150,204,222,3,0,231,110,149,51,214,134,2,0,232,46,222,124,147,184,2,0,239,238,169,47,219,186,2,0,240,46,29,128,203,94,2,0,240,110,89,164,65,1,4,0,243,46,180,75,221,89,4,0,244,110,254,221,208,231,3,0,244,110,254,221,247,231,3,0,244,110,94,153,29,64,4,0,249,238,206,97,245,12,3,0,251,174,0,151,55,180,2,0,254,46,93,37,177,242,2,0,0,239,16,2,128,132,3,0,1,111,43,35,223,230,2,0,2,47,65,115,231,153,2,0,2,47,26,138,24,249,2,0,5,239,155,38,52,131,2,0,6,175,42,95,128,20,2,0,9,175,112,230,12,172,2,0,16,175,108,213,138,19,2,0,16,239,96,17,152,51,2,0,16,175,88,103,77,106,2,0,20,239,195,78,137,18,4,0,22,111,30,92,134,24,3,0,22,47,247,198,238,38,4,0,23,239,213,211,131,52,2,0,24,239,233,109,221,211,2,0,24,47,48,19,187,210,3,0,24,47,183,241,218,106,4,0,25,47,48,91,163,96,3,0,25,239,157,213,78,122,3,0,27,47,163,101,63,41,2,0,29,111,244,108,4,177,2,0,29,111,74,186,240,7,3,0,29,239,9,234,117,234,3,0,41,239,144,197,110,168,2,0,41,111,191,2,117,24,4,0,42,239,127,5,154,247,3,0,43,239,225,250,236,215,2,0,44,239,25,89,107,238,3,0,49,239,24,140,170,60,2,0,50,111,228,220,79,79,2,0,50,111,122,218,75,109,2,0,66,47,192,160,17,33,2,0,71,239,37,75,214,81,2,0,73,239,118,65,149,146,4,0,74,111,129,159,193,115,4,0,76,239,234,36,200,133,3,0,78,111,46,211,25,76,3,0,79,175,113,107,32,14,4,0,80,175,13,177,100,86,4,0,81,111,194,84,111,130,4,0,87,175,218,62,70,225,2,0,88,111,159,35,238,14,3,0,88,111,9,122,43,40,3,0,89,111,137,132,68,36,3,0,89,239,26,156,43,227,3,0,90,47,238,255,160,80,2,0,90,47,35,100,73,179,2,0,93,175,91,106,168,20,2,0,94,175,37,72,175,34,2,0,97,47,225,22,176,115,2,0,97,47,183,207,30,140,2,0,100,239,165,13,97,48,3,0,101,175,189,79,10,225,2,0,102,239,189,33,137,124,2,0,103,111,196,174,243,55,4,0,105,111,209,207,25,97,4,0,111,111,54,186,98,36,3,0,112,47,0,149,229,240,3,0,118,239,192,217,55,80,2,0,118,175,241,125,120,156,3,0,119,239,228,249,182,39,2,0,120,111,22,213,240,99,2,0,121,111,167,143,149,136,3,0,123,47,219,230,151,80,4,0,125,239,54,148,35,39,2,0,125,175,68,141,19,242,3,0,128,239,202,62,103,16,3,0,128,175,116,83,158,245,3,0,129,111,28,235,141,2,4,0,131,47,219,47,226,130,2,0,131,47,71,80,238,186,3,0,132,239,214,183,73,114,3,0,134,175,213,135,153,31,3,0,135,175,3,50,233,251,3,0,140,111,31,11,137,107,3,0,142,47,205,235,32,90,3,0,145,47,201,196,174,192,3,0,149,175,30,221,36,180,2,0,153,175,101,51,18,34,4,0,154,239,71,206,231,7,2,0,155,111,170,239,201,29,3,0,156,239,201,78,211,236,2,0,157,47,53,222,139,167,3,0,160,47,247,124,129,139,2,0,161,111,220,11,57,128,4,0,163,175,240,81,234,143,3,0,164,239,37,206,12,208,2,0,165,239,169,233,115,128,3,0,172,111,221,27,221,59,3,0,177,239,49,100,29,192,3,0,179,111,30,189,235,147,4,0,182,239,10,167,54,96,2,0,182,47,74,230,14,139,3,0,184,111,189,250,48,150,3,0,184,175,64,45,24,235,3,0,187,47,182,216,221,41,4,0,191,239,107,224,98,16,4,0,191,175,173,23,77,60,4,0,192,47,206,78,0,80,2,0,193,47,83,115,192,139,4,0,195,239,155,34,214,118,2,0,197,239,69,83,211,5,3,0,204,239,45,220,96,41,2,0,205,175,87,139,33,116,4,0,207,175,57,160,200,116,3,0,209,111,198,59,29,6,3,0,211,175,76,81,84,186,2,0,214,175,58,82,244,183,3,0,221,111,91,29,138,131,4,0,222,111,118,49,71,171,2,0,223,111,242,20,241,249,2,0,225,111,179,207,189,84,2,0,227,239,34,245,93,68,4,0,228,175,6,169,25,44,4,0,231,175,52,114,210,13,4,0,233,175,238,155,137,101,4,0,235,239,86,255,76,230,2,0,238,175,199,1,17,3,2,0,239,239,118,47,128,151,3,0,242,47,69,188,180,157,2,0,242,175,102,188,119,243,2,0,246,239,150,19,44,38,2,0,246,47,211,255,158,61,2,0,246,111,251,187,52,51,3,0,246,239,108,147,240,164,3,0,249,239,152,160,42,53,3,0,251,47,101,180,113,105,3,0,252,47,118,215,85,206,3,0,2,240,240,203,201,31,4,0,9,176,99,189,33,128,3,0,11,176,40,10,141,169,3,0,11,112,198,47,75,38,4,0,12,48,145,11,76,35,3,0,15,240,152,231,255,19,3,0,15,48,156,214,207,215,3,0,15,112,100,249,228,3,4,0,18,240,181,110,58,135,2,0,18,176,91,106,228,161,3,0,20,112,34,192,14,55,2,0,21,240,148,125,17,35,2,0,21,176,216,59,54,35,4,0,23,176,216,214,152,214,3,0,24,240,31,209,106,5,2,0,32,176,166,16,179,51,4,0,34,240,42,205,136,9,3,0,35,240,157,19,182,86,2,0,38,176,72,30,47,30,3,0,38,240,43,12,55,0,4,0,39,176,39,98,253,140,3,0,46,48,253,242,46,20,4,0,49,240,236,232,80,146,4,0,53,48,82,14,0,196,2,0,56,112,167,35,193,42,3,0,59,176,221,84,98,116,2,0,60,240,55,142,182,90,3,0,65,240,202,4,193,159,3,0,67,240,141,104,53,11,3,0,68,240,129,163,96,58,4,0,69,176,173,154,97,165,2,0,70,240,238,78,50,112,2,0,71,48,42,138,185,74,3,0,72,112,140,31,172,137,3,0,73,240,98,87,122,47,3,0,74,176,74,4,101,155,3,0,76,240,38,239,54,166,3,0,82,112,19,127,143,179,3,0,83,240,224,108,26,215,3,0,89,48,50,12,64,185,3,0,91,112,187,99,62,67,3,0,95,48,170,216,44,86,2,0,95,112,109,42,8,213,3,0,100,240,128,217,14,36,4,0,102,48,85,103,135,114,2,0,106,176,48,61,200,166,2,0,107,176,83,181,69,196,3,0,108,48,185,75,25,111,3,0,111,176,20,16,106,7,2,0,112,48,208,136,10,190,2,0,113,240,90,38,165,64,2,0,114,240,231,195,186,4,4,0,116,112,124,184,28,94,3,0,123,48,20,10,253,181,3,0,126,176,195,204,117,93,4,0,128,48,236,46,14,85,4,0,129,112,31,136,166,27,3,0,133,48,113,14,181,43,2,0,134,240,183,151,170,143,4,0,137,176,35,78,180,152,2,0,137,176,46,156,231,31,4,0,140,112,84,241,123,2,4,0,142,48,151,75,72,44,3,0,146,176,74,210,162,96,2,0,153,112,5,63,245,59,3,0,153,240,115,2,135,99,4,0,153,240,51,105,215,147,4,0,157,112,157,214,106,136,3,0,158,240,120,100,204,193,2,0,159,48,83,55,120,16,2,0,161,112,9,132,218,67,3,0,161,240,45,214,141,42,4,0,163,48,162,76,218,82,2,0,166,176,161,40,229,241,2,0,170,48,9,100,207,81,4,0,171,240,26,17,165,118,3,0,174,176,254,234,44,91,3,0,174,240,53,233,23,99,4,0,177,48,74,40,29,123,4,0,178,48,158,178,28,15,3,0,180,176,49,227,94,56,3,0,182,112,215,13,149,89,4,0,188,112,192,194,94,205,3,0,193,176,51,161,46,218,3,0,194,112,88,125,14,235,2,0,195,112,181,99,5,193,3,0,196,240,210,80,131,7,3,0,200,112,16,47,175,42,2,0,202,240,144,184,31,112,4,0,203,112,175,129,69,76,3,0,206,112,108,157,57,175,3,0,207,176,105,129,255,72,3,0,208,176,31,219,120,76,3,0,211,112,192,247,139,196,2,0,211,176,35,216,229,27,4,0,214,112,202,173,114,43,3,0,215,176,229,217,248,165,2,0,218,176,104,0,82,152,4,0,220,176,131,241,170,113,2,0,220,112,154,72,33,214,3,0,224,112,226,206,255,10,4,0,224,240,232,8,156,134,4,0,226,176,44,125,195,25,2,0,226,48,63,55,182,76,2,0,229,112,89,22,41,100,4,0,232,176,221,25,43,63,2,0,236,112,134,79,67,18,4,0,237,240,67,221,14,52,2,0,237,48,2,71,111,157,2,0,237,48,235,216,102,221,2,0,239,48,142,221,154,15,4,0,240,48,79,143,247,130,3,0,243,240,227,195,235,14,4,0,244,112,149,101,13,142,2,0,245,176,86,211,154,188,3,0,248,176,167,33,200,233,3,0,253,112,102,81,214,2,4,0,254,240,188,181,83,251,3,0,254,48,87,3,252,73,4,0,255,176,23,193,102,204,3,0,0,49,142,33,113,47,2,0,0,49,192,208,141,41,4,0,1,177,217,113,78,86,3,0,3,49,200,67,220,8,2,0,4,241,40,7,38,72,3,0,5,241,107,94,27,51,3,0,5,49,233,15,127,8,4,0,7,113,229,181,93,235,3,0,8,177,15,35,33,230,2,0,8,49,100,210,176,55,4,0,15,49,46,179,11,112,2,0,20,241,26,96,131,192,2,0,20,241,179,188,169,233,2,0,20,113,203,96,89,102,4,0,21,241,95,154,105,126,2,0,23,49,137,230,77,172,2,0,25,49,24,192,183,156,2,0,28,49,150,251,49,91,4,0,32,241,143,2,160,31,2,0,39,241,1,250,88,221,3,0,40,177,211,113,66,244,3,0,43,241,37,112,224,145,2,0,43,49,216,106,186,135,4,0,44,49,9,192,55,196,2,0,47,177,104,0,69,116,2,0,47,49,106,1,135,100,3,0,51,241,164,153,1,249,2,0,52,113,61,46,30,97,3,0,52,241,32,232,59,9,4,0,54,241,30,7,160,202,3,0,56,177,253,76,135,87,2,0,61,49,128,147,138,146,3,0,64,49,131,97,225,229,3,0,65,241,108,126,199,107,2,0,68,49,166,197,92,63,4,0,70,241,41,17,112,154,2,0,70,113,251,19,153,195,3,0,70,177,162,171,78,216,3,0,71,177,16,96,57,142,2,0,72,49,124,177,141,144,2,0,73,241,202,255,152,215,2,0,74,49,16,203,109,111,2,0,78,241,149,238,104,196,2,0,78,241,202,255,135,215,2,0,78,241,7,99,88,31,3,0,78,177,11,173,165,72,3,0,79,49,73,212,125,30,2,0,86,113,70,184,40,118,2,0,86,49,227,184,186,14,3,0,87,113,60,35,160,11,3,0,88,241,202,101,13,121,3,0,88,177,25,21,12,18,4,0,90,113,69,130,60,62,4,0,91,241,218,169,249,4,2,0,91,241,8,194,239,64,4,0,91,177,70,188,66,131,4,0,94,49,36,217,206,88,3,0,94,49,67,125,40,52,4,0,96,113,187,26,243,133,4,0,97,177,103,6,105,52,4,0,98,113,16,198,102,89,2,0,99,113,245,131,96,217,3,0,105,177,229,38,84,194,2,0,105,241,17,138,145,64,3,0,106,177,234,111,44,203,3,0,108,113,250,93,236,62,3,0,109,49,108,107,5,194,2,0,109,113,52,179,244,234,2,0,112,177,142,211,178,191,2,0,112,49,93,92,228,114,4,0,114,177,226,147,243,191,3,0,118,241,43,2,196,46,4,0,122,113,3,52,157,70,4,0,131,241,23,68,253,14,4,0,132,241,121,241,198,86,2,0,132,113,129,111,255,217,3,0,133,113,235,206,59,195,2,0,137,113,178,166,38,114,4,0,139,49,186,143,255,87,3,0,140,177,58,161,65,250,3,0,141,177,221,39,211,155,2,0,142,49,102,102,37,98,3,0,142,113,200,213,231,208,3,0,142,49,100,169,8,244,3,0,143,241,140,41,179,79,4,0,144,241,7,209,70,218,2,0,147,177,165,7,111,150,3,0,150,49,127,156,131,51,4,0,151,49,136,160,46,67,3,0,152,241,95,94,222,85,2,0,155,113,104,216,175,36,2,0,156,113,90,77,157,23,2,0,161,113,18,178,129,173,3,0,167,49,213,253,181,153,3,0,171,113,37,81,74,31,3,0,171,49,48,215,27,148,4,0,173,113,29,78,96,80,3,0,177,241,219,221,87,59,2,0,177,177,68,82,180,102,2,0,177,113,227,119,83,143,4,0,178,49,153,223,88,27,3,0,181,177,17,188,91,236,2,0,183,241,142,160,11,65,3,0,187,241,63,208,246,125,2,0,188,177,17,1,194,152,3,0,188,241,20,187,210,19,4,0,192,49,210,235,112,152,2,0,192,177,5,130,12,115,4,0,194,49,231,88,87,70,2,0,195,113,72,58,240,132,2,0,195,49,42,138,147,74,3,0,198,177,176,87,116,163,2,0,200,241,130,241,223,32,3,0,205,241,142,48,65,125,4,0,206,241,166,50,33,60,2,0,206,177,4,70,46,123,2,0,207,177,173,232,35,105,4,0,210,49,30,85,58,84,2,0,216,241,74,198,138,139,3,0,216,241,116,241,170,199,3,0,219,49,24,192,216,153,2,0,220,241,119,103,174,125,4,0,224,177,166,243,12,143,4,0,225,113,238,226,86,135,2,0,226,177,208,211,223,163,3,0,227,177,185,215,234,151,4,0,231,177,217,225,93,128,3,0,233,49,13,82,39,93,2,0,238,241,60,112,95,59,3,0,241,113,26,135,125,58,3,0,244,177,170,246,79,130,3,0,247,241,246,253,25,145,2,0,247,49,140,175,7,206,2,0,248,177,243,228,226,77,2,0,250,49,66,125,89,51,3,0,251,177,17,152,27,245,3,0,254,177,141,127,193,235,3,0,3,50,88,144,196,19,4,0,4,178,167,228,163,192,3,0,4,178,105,23,241,86,4,0,7,242,124,102,0,75,2,0,7,242,16,116,229,140,2,0,12,114,71,66,23,137,3,0,12,114,189,130,199,200,3,0,14,114,95,49,37,150,2,0,14,178,140,43,2,158,3,0,16,50,93,75,133,34,3,0,16,114,21,169,12,190,3,0,21,114,180,145,49,162,3,0,22,242,17,146,207,5,4,0,23,242,76,104,172,210,3,0,24,50,244,38,5,237,3,0,26,242,119,103,247,107,2,0,28,50,43,175,244,157,3,0,32,242,220,111,144,158,3,0,42,178,121,65,23,110,3,0,43,178,239,143,205,83,3,0,44,242,175,66,150,29,4,0,49,114,185,255,20,215,2,0,49,178,39,81,247,15,3,0,49,242,187,183,63,46,4,0,51,50,163,44,54,241,2,0,52,242,17,235,81,241,3,0,56,242,146,13,244,119,2,0,57,242,235,211,182,12,2,0,58,50,27,7,92,25,2,0,58,178,139,231,188,61,2,0,58,50,61,6,249,101,4,0,61,114,89,197,5,133,2,0,61,114,108,62,134,240,3,0,64,178,220,187,209,26,3,0,65,114,249,4,201,144,4,0,67,114,128,228,159,27,2,0,70,242,245,136,114,107,4,0,73,114,143,58,228,100,4,0,78,50,41,227,152,218,3,0,79,50,56,131,218,70,3,0,88,114,95,24,154,129,3,0,91,242,33,104,37,165,3,0,100,114,32,13,251,109,4,0,101,114,42,199,123,22,4,0,105,242,152,94,19,131,4,0,107,178,187,119,98,229,2,0,108,242,74,230,221,10,3,0,109,114,201,193,134,36,2,0,113,114,138,43,168,123,4,0,115,178,45,116,21,193,3,0,115,114,71,218,86,61,4,0,118,242,189,175,248,173,3,0,119,114,118,147,139,53,4,0,120,114,140,42,1,234,3,0,121,114,169,80,184,35,2,0,121,242,69,14,62,53,2,0,123,242,157,210,78,208,3,0,124,178,8,67,184,202,3,0,126,242,187,166,7,121,4,0,128,178,163,166,94,132,2,0,131,242,191,213,89,12,2,0,134,50,149,60,55,134,3,0,135,114,30,24,85,174,2,0,138,242,20,124,147,183,3,0,142,114,152,55,235,78,4,0,142,178,218,6,230,88,4,0,142,178,26,161,79,105,4,0,145,114,18,176,109,51,3,0,147,50,72,133,142,236,3,0,149,178,32,105,155,36,2,0,150,50,233,27,97,213,2,0,151,50,155,59,13,74,2,0,151,50,236,23,5,31,4,0,151,50,164,110,171,84,4,0,151,242,103,147,92,107,4,0,152,178,57,222,123,151,2,0,152,114,57,115,193,155,2,0,152,178,150,170,6,82,3,0,153,178,111,28,84,145,3,0,155,50,84,26,240,82,2,0,158,178,138,254,215,212,2,0,161,50,59,84,97,100,2,0,161,114,229,206,73,52,3,0,164,178,218,85,101,137,2,0,167,114,154,236,141,58,2,0,168,178,59,76,59,179,3,0,171,178,27,34,146,22,3,0,172,114,160,62,158,38,4,0,175,178,152,160,108,52,3,0,175,50,107,221,15,128,4,0,176,242,98,110,252,201,2,0,179,114,81,169,12,48,4,0,181,50,216,240,97,82,2,0,181,50,19,162,28,246,3,0,181,114,51,164,198,141,4,0,182,178,126,115,70,119,3,0,192,178,20,183,104,162,2,0,192,114,42,199,59,25,4,0,194,178,50,171,246,116,3,0,194,242,16,195,198,145,4,0,195,178,4,28,212,116,4,0,197,114,98,168,54,98,3,0,200,178,189,79,32,224,2,0,204,50,168,11,87,116,3,0,205,178,100,66,227,57,2,0,205,242,148,160,155,51,3,0,208,242,210,3,27,22,4,0,212,50,53,241,44,117,4,0,214,242,204,156,49,64,4,0,216,114,235,38,131,10,4,0,216,50,185,26,103,109,4,0,219,50,96,120,83,227,2,0,220,242,60,12,85,191,3,0,221,242,207,207,50,14,4,0,225,114,247,194,138,238,3,0,226,178,169,66,0,108,4,0,231,114,102,140,156,229,3,0,234,50,57,187,195,255,2,0,235,50,179,221,57,243,2,0,236,114,107,243,177,32,2,0,238,178,6,133,209,65,2,0,239,50,168,227,204,190,2,0,240,114,59,184,163,60,3,0,241,114,51,6,183,91,2,0,242,114,81,242,56,236,2,0,244,114,164,11,109,18,3,0,245,114,146,184,23,72,3,0,246,50,49,235,30,29,4,0,252,242,120,57,227,68,2,0,253,242,79,233,170,140,2,0,253,114,169,155,111,29,3,0,254,178,62,107,7,29,2,0,255,50,208,232,223,43,3,0,1,179,88,207,15,189,3,0,2,115,168,138,215,243,2,0,4,51,149,22,234,67,2,0,7,179,226,189,25,114,3,0,14,115,78,157,252,136,2,0,15,51,241,116,110,80,4,0,18,51,250,169,4,95,3,0,19,243,7,93,22,181,2,0,19,51,131,173,194,144,3,0,22,179,229,217,40,166,2,0,23,243,30,169,143,99,2,0,23,51,116,222,12,116,4,0,24,115,226,25,170,54,3,0,24,115,81,128,184,182,3,0,25,179,227,199,90,233,3,0,27,115,14,107,12,157,2,0,28,51,67,41,231,19,4,0,34,51,246,68,209,129,2,0,35,51,136,201,12,102,2,0,37,51,100,15,122,137,2,0,38,115,183,74,246,130,4,0,39,51,238,39,193,185,3,0,41,243,19,69,150,243,2,0,44,179,59,127,229,124,2,0,44,179,33,203,194,49,3,0,45,51,17,132,129,116,3,0,46,51,162,254,16,125,3,0,46,51,23,34,232,222,3,0,46,243,142,165,100,138,4,0,49,51,111,5,174,25,3,0,50,179,22,141,108,73,2,0,60,115,182,24,52,161,3,0,61,243,21,135,23,179,2,0,66,243,206,130,104,139,4,0,67,179,5,218,83,233,2,0,69,243,98,116,231,39,4,0,70,51,70,68,237,2,4,0,71,243,140,185,128,69,2,0,75,243,205,207,137,77,4,0,75,179,111,58,65,93,4,0,84,51,36,81,74,27,3,0,85,115,137,155,188,51,2,0,87,179,11,212,54,67,2,0,91,179,6,253,88,131,3,0,91,51,213,220,73,31,4,0,92,115,229,19,200,181,3,0,95,179,158,42,85,8,4,0,97,179,234,63,200,118,2,0,103,179,181,172,122,193,3,0,105,115,2,128,7,229,3,0,105,51,153,230,136,79,4,0,107,51,140,55,158,157,3,0,114,115,178,47,36,8,2,0,114,51,66,4,97,248,3,0,119,115,208,238,47,223,3,0,124,115,215,195,200,151,2,0,124,179,24,124,120,166,2,0,127,179,127,209,65,108,3,0,127,243,86,101,169,208,3,0,127,51,123,90,153,46,4,0,128,115,85,196,77,145,2,0,129,243,81,24,132,185,2,0,129,243,23,176,231,54,3,0,133,115,39,74,145,35,3,0,133,179,126,8,26,119,3,0,135,179,139,20,139,105,3,0,135,115,205,174,36,170,3,0,137,243,233,152,221,189,2,0,137,179,139,20,128,105,3,0,138,179,51,148,136,46,4,0,141,243,164,184,169,209,3,0,144,179,26,254,92,47,2,0,150,179,43,210,31,104,4,0,152,179,63,106,230,128,2,0,153,115,190,55,123,127,2,0,153,243,81,119,206,191,3,0,154,179,89,121,246,179,2,0,157,179,107,54,51,32,2,0,162,115,211,56,73,218,3,0,162,115,137,167,152,54,4,0,163,115,244,67,221,8,3,0,167,243,69,156,165,62,2,0,167,115,0,184,138,126,2,0,169,51,154,160,0,61,3,0,169,51,20,81,63,103,3,0,170,179,217,228,39,102,2,0,175,243,154,23,155,59,4,0,175,179,15,177,245,88,4,0,180,243,82,37,59,160,3,0,180,179,161,207,208,55,4,0,183,51,19,180,159,131,4,0,184,243,79,14,177,36,3,0,185,115,186,30,140,159,3,0,187,115,126,200,15,0,4,0,190,115,208,137,159,34,3,0,190,115,188,144,177,130,3,0,192,179,80,212,171,115,3,0,195,115,208,110,230,61,3,0,196,51,139,20,190,105,3,0,198,243,45,117,162,79,4,0,199,51,81,100,124,18,2,0,200,115,183,244,35,144,2,0,200,243,140,233,235,91,3,0,201,179,91,79,249,159,3,0,203,115,143,242,86,200,2,0,203,243,55,237,96,96,4,0,204,179,161,142,44,72,2,0,204,51,153,223,100,26,3,0,204,51,51,13,196,226,3,0,207,179,147,61,9,202,3,0,208,115,47,136,139,156,2,0,209,51,193,198,43,12,4,0,210,51,103,95,2,38,2,0,218,243,136,7,33,128,2,0,219,51,72,110,212,150,3,0,222,51,153,223,87,26,3,0,222,243,103,37,200,127,3,0,223,179,77,104,226,210,3,0,224,243,225,202,86,103,2,0,224,51,217,162,25,197,3,0,227,243,43,169,137,149,2,0,230,115,193,100,219,168,2,0,230,179,50,97,142,5,4,0,231,115,60,81,97,209,2,0,234,179,110,60,139,190,3,0,239,179,111,114,73,22,3,0,239,179,185,123,206,117,4,0,240,179,15,227,102,71,3,0,240,179,59,129,100,226,3,0,241,51,121,141,29,100,2,0,247,51,91,66,187,245,3,0,248,115,182,4,203,86,4,0,251,243,162,51,16,166,3,0,252,179,43,184,0,134,2,0,253,179,137,255,148,237,2,0,255,243,148,34,192,81,3,0,1,244,136,178,152,224,2,0,2,116,213,23,115,81,2,0,3,116,239,234,27,108,3,0,6,244,233,48,166,23,3,0,8,180,149,154,227,8,4,0,16,180,236,223,39,156,2,0,18,116,25,191,22,32,3,0,24,116,196,145,22,163,3,0,26,180,137,237,67,189,3,0,27,116,234,223,173,242,3,0,28,180,88,199,10,184,3,0,30,180,242,247,90,5,2,0,31,52,34,40,184,64,4,0,33,244,170,152,53,92,2,0,34,244,118,9,10,81,3,0,34,116,145,160,165,106,4,0,35,52,72,201,251,193,3,0,36,52,102,1,138,117,2,0,43,52,140,128,1,85,2,0,44,52,131,164,235,20,3,0,45,244,230,234,151,88,2,0,53,180,218,173,32,158,3,0,54,244,99,53,10,48,2,0,56,180,177,156,215,148,3,0,56,180,99,199,200,43,4,0,58,52,69,175,60,68,2,0,61,244,119,74,90,151,3,0,62,180,222,163,217,44,2,0,63,180,150,68,147,0,4,0,64,180,41,25,72,114,2,0,64,52,103,181,99,45,4,0,69,52,121,112,220,81,3,0,71,180,78,42,15,188,3,0,77,244,117,185,12,185,2,0,79,244,190,9,90,158,3,0,81,180,153,236,189,33,4,0,83,180,241,134,139,119,4,0,84,180,189,79,69,224,2,0,93,116,54,228,115,88,2,0,96,244,27,151,91,85,3,0,97,52,76,14,163,35,2,0,97,116,33,99,72,149,4,0,99,52,65,139,105,55,4,0,100,52,210,235,4,152,2,0,101,52,128,12,68,127,2,0,102,116,75,10,59,86,2,0,102,52,151,85,209,228,3,0,102,52,91,134,164,35,4,0,102,116,180,74,157,37,4,0,105,52,47,253,129,111,3,0,115,244,4,131,113,73,4,0,116,180,76,32,101,169,3,0,124,180,85,23,207,231,2,0,124,180,4,42,159,249,2,0,125,52,158,62,236,132,4,0,127,244,23,81,92,95,3,0,127,180,21,144,179,15,4,0,128,52,223,247,84,65,2,0,128,116,136,168,76,140,2,0,132,244,169,219,37,77,2,0,133,180,21,234,99,97,3,0,134,52,141,243,182,131,2,0,135,180,244,188,231,227,3,0,142,244,186,251,225,179,2,0,144,244,53,241,221,30,3,0,144,244,68,231,80,223,3,0,144,116,239,145,53,75,4,0,147,180,68,27,15,106,2,0,148,244,243,140,11,50,2,0,152,180,8,129,197,71,2,0,152,116,162,23,93,250,3,0,155,244,125,149,209,212,3,0,156,52,9,249,199,108,3,0,156,244,106,96,10,2,4,0,157,52,143,160,164,117,2,0,157,180,222,136,182,156,3,0,158,52,102,18,175,39,4,0,159,244,144,96,86,121,3,0,161,180,232,169,37,89,3,0,162,116,209,67,109,34,3,0,162,116,129,246,190,129,3,0,169,180,58,162,209,142,3,0,169,52,100,106,185,86,4,0,170,244,224,5,192,150,3,0,176,244,52,69,34,139,3,0,177,180,201,206,188,83,2,0,182,116,158,202,135,14,2,0,182,180,183,228,121,80,4,0,183,244,2,54,236,13,2,0,183,244,114,26,245,190,2,0,184,116,177,95,108,133,3,0,184,116,116,78,24,167,3,0,186,244,115,33,251,127,3,0,186,244,128,221,117,145,3,0,187,244,251,89,178,30,2,0,188,52,254,171,120,131,3,0,190,180,223,103,140,7,2,0,190,52,241,47,185,33,2,0,190,116,62,100,116,121,2,0,190,52,86,121,215,131,3,0,191,244,149,81,14,244,2,0,192,116,176,74,47,146,4,0,194,244,127,131,184,33,3,0,194,52,254,181,163,2,4,0,195,52,215,82,98,140,3,0,196,180,173,192,41,103,2,0,200,116,55,253,117,16,4,0,202,116,206,250,184,145,3,0,205,116,199,117,52,22,4,0,206,116,160,117,97,23,4,0,207,180,14,121,168,7,2,0,208,52,131,164,1,21,3,0,212,180,208,191,214,171,3,0,220,116,31,200,135,246,2,0,221,180,100,98,148,124,4,0,226,52,124,206,112,232,2,0,226,244,44,3,199,236,3,0,226,116,166,212,106,87,4,0,230,116,197,117,105,236,3,0,236,52,153,190,242,92,4,0,240,116,17,192,215,172,2,0,242,180,57,182,250,62,4,0,246,52,214,242,58,232,3,0,253,180,210,65,131,108,2,0,6,53,191,181,139,216,3,0,7,245,88,199,92,182,3,0,14,117,221,16,41,75,3,0,16,181,255,253,241,242,2,0,17,117,110,25,98,108,4,0,19,245,186,4,85,29,3,0,26,245,30,169,122,95,3,0,27,181,189,1,111,49,3,0,29,53,52,80,203,15,2,0,29,53,208,2,179,46,2,0,32,117,83,30,163,185,2,0,33,117,15,234,250,239,3,0,35,53,170,129,96,178,2,0,38,181,87,243,223,9,4,0,39,53,164,140,201,121,2,0,43,117,113,86,183,41,4,0,47,117,40,17,51,113,4,0,48,53,251,170,165,33,4,0,49,53,8,34,203,198,2,0,49,245,223,203,194,119,3,0,49,53,110,13,41,76,4,0,52,245,29,77,215,222,2,0,52,245,133,193,71,233,3,0,54,53,208,38,12,184,2,0,55,117,37,97,28,243,3,0,61,117,178,148,23,217,2,0,62,53,41,125,86,224,2,0,66,53,27,137,22,162,3,0,67,117,103,173,223,17,2,0,69,181,201,130,128,83,2,0,71,117,137,219,133,102,4,0,74,53,214,18,47,127,4,0,76,117,90,71,67,125,2,0,78,181,24,54,240,9,3,0,79,245,205,100,62,162,3,0,83,117,75,185,144,138,2,0,83,181,51,70,51,200,3,0,87,245,251,80,48,251,2,0,88,117,57,123,20,10,3,0,88,245,235,119,50,209,3,0,89,117,85,205,141,75,3,0,92,245,170,171,99,243,2,0,94,181,156,77,94,83,2,0,94,245,53,220,117,111,4,0,98,245,210,214,250,143,3,0,103,181,161,135,46,240,3,0,106,117,138,31,195,130,3,0,110,181,55,195,228,31,2,0,110,53,216,62,93,192,3,0,111,181,244,76,160,88,3,0,115,53,110,21,2,40,2,0,124,181,211,213,5,87,2,0,124,53,129,58,252,115,3,0,128,53,150,104,140,174,2,0,128,181,154,123,10,56,4,0,131,117,191,239,236,27,3,0,131,117,111,243,125,88,4,0,133,53,246,67,111,79,2,0,141,53,221,116,252,226,3,0,142,181,109,202,180,112,2,0,142,53,238,254,110,76,4,0,144,181,144,170,245,81,3,0,144,245,27,97,81,116,4,0,145,245,24,212,46,120,2,0,147,245,150,92,81,197,2,0,147,181,39,81,5,16,3,0,147,53,27,4,243,25,4,0,148,245,17,110,79,190,2,0,149,117,95,199,151,70,2,0,149,245,118,138,84,92,4,0,150,245,219,64,241,84,2,0,150,53,34,17,123,9,4,0,153,245,68,0,47,6,4,0,154,117,179,68,31,78,4,0,155,53,125,31,218,141,4,0,156,245,159,69,145,155,2,0,159,117,167,78,180,211,3,0,159,53,63,240,129,255,3,0,161,245,73,186,175,26,3,0,161,53,45,152,119,94,4,0,162,181,161,242,191,52,2,0,162,181,197,94,48,249,2,0,166,117,8,26,102,90,2,0,167,181,29,138,192,215,3,0,171,117,210,177,255,73,2,0,173,117,117,162,136,70,4,0,174,245,164,40,134,144,4,0,176,245,155,224,253,94,2,0,176,117,187,170,99,49,4,0,180,53,164,102,240,18,4,0,181,181,129,22,69,110,4,0,185,53,120,179,200,153,3,0,191,117,46,28,115,230,3,0,192,181,42,204,155,3,2,0,192,117,33,215,53,74,3,0,193,53,106,154,134,143,3,0,195,117,178,218,180,179,3,0,198,245,113,68,191,103,4,0,199,181,163,208,135,38,3,0,200,245,21,41,154,7,2,0,203,53,247,204,179,247,3,0,213,181,90,104,183,93,2,0,214,53,113,39,147,94,2,0,216,117,90,75,134,66,4,0,218,53,84,167,130,249,3,0,219,245,85,115,156,53,4,0,220,245,255,20,113,55,2,0,222,245,122,49,62,94,3,0,223,117,240,162,101,98,2,0,225,245,175,181,171,120,2,0,226,117,229,206,35,52,3,0,227,53,13,159,140,10,3,0,228,181,234,22,179,213,2,0,230,181,202,120,141,110,2,0,230,53,235,15,223,184,3,0,231,181,71,173,128,71,3,0,231,117,153,230,227,79,4,0,235,53,153,177,51,67,4,0,238,53,153,100,240,171,3,0,241,245,138,132,201,190,3,0,248,181,47,227,109,140,2,0,252,181,132,190,134,13,4,0,252,117,8,252,62,37,4,0,253,117,120,23,164,148,2,0,254,117,225,220,178,206,3,0,254,245,209,246,241,123,4,0,254,181,214,45,3,152,4,0,2,54,91,54,74,176,2,0,2,118,76,136,55,7,4,0,3,54,52,51,8,28,4,0,4,118,49,8,95,214,3,0,5,54,100,183,151,199,3,0,8,118,4,230,95,162,3,0,9,246,40,166,97,113,2,0,19,54,154,202,194,24,4,0,22,182,197,240,159,45,4,0,23,118,152,95,42,159,2,0,24,118,133,182,159,98,4,0,25,54,191,122,72,124,2,0,27,246,29,70,69,96,2,0,27,246,226,85,100,104,4,0,30,118,8,230,45,212,3,0,34,54,178,209,128,57,3,0,35,54,57,170,146,60,2,0,37,118,107,28,77,63,3,0,39,182,250,245,254,148,3,0,39,118,160,240,76,84,4,0,40,54,36,80,185,122,4,0,42,246,58,142,67,21,2,0,44,54,82,126,135,51,3,0,45,246,71,41,227,136,2,0,45,182,130,115,144,60,3,0,45,54,71,233,211,205,3,0,47,54,192,170,111,102,4,0,52,182,182,56,165,48,4,0,54,54,143,25,96,106,2,0,55,246,166,58,93,124,3,0,56,182,80,223,30,54,2,0,61,246,157,190,245,93,3,0,67,246,54,36,146,175,2,0,69,118,205,48,9,221,3,0,72,246,181,106,250,255,3,0,74,246,96,50,57,247,2,0,76,246,241,10,192,18,3,0,78,182,33,15,202,73,2,0,78,182,33,15,220,73,2,0,78,182,33,15,237,73,2,0,81,182,85,6,200,98,4,0,88,246,106,238,204,57,2,0,90,246,102,79,134,201,3,0,93,54,102,62,85,113,3,0,93,246,28,190,95,28,4,0,94,246,51,71,195,13,2,0,94,54,200,8,32,123,2,0,95,182,254,190,13,156,3,0,97,246,109,83,143,245,3,0,100,118,231,172,8,60,2,0,101,54,141,77,173,195,3,0,103,182,19,110,49,98,4,0,103,54,121,11,124,152,4,0,103,54,121,11,145,152,4,0,110,54,186,217,113,241,2,0,112,246,187,145,122,229,2,0,114,54,110,219,245,59,2,0,114,246,249,250,177,177,2,0,116,118,101,52,111,245,2,0,125,118,164,207,89,99,2,0,125,54,231,40,214,140,4,0,126,54,162,170,41,248,2,0,127,182,187,122,208,4,3,0,127,246,219,247,30,238,3,0,135,118,154,17,190,231,2,0,137,246,126,196,83,13,2,0,143,54,159,198,61,77,3,0,145,182,145,167,229,187,2,0,145,246,123,184,214,89,3,0,146,246,57,91,107,96,3,0,147,118,76,81,2,195,2,0,149,54,63,184,137,15,3,0,152,246,54,185,51,42,3,0,153,54,191,157,115,131,2,0,153,118,110,169,96,140,2,0,153,246,117,109,238,238,2,0,154,54,229,106,219,91,2,0,154,118,3,176,163,235,2,0,155,246,221,7,206,3,4,0,157,118,147,184,7,114,2,0,158,118,244,31,98,37,4,0,159,182,2,210,24,219,2,0,159,118,252,38,154,107,3,0,159,118,230,85,221,136,3,0,161,182,247,130,78,237,2,0,165,246,110,40,198,48,3,0,165,182,24,81,121,72,3,0,166,246,202,237,114,238,2,0,166,182,145,184,44,73,3,0,169,182,198,248,146,138,4,0,170,54,173,198,171,40,4,0,175,246,186,126,182,14,2,0,175,118,227,101,149,39,3,0,178,246,156,254,123,26,2,0,178,182,46,96,73,36,2,0,178,182,173,53,187,176,3,0,180,182,129,156,73,244,2,0,185,118,206,77,149,163,3,0,186,182,40,252,196,56,3,0,187,118,139,211,210,114,2,0,187,182,194,152,128,40,4,0,188,246,221,208,132,78,3,0,189,54,215,84,179,48,3,0,189,54,21,91,50,234,3,0,189,118,176,143,191,133,4,0,189,118,35,119,150,135,4,0,190,54,221,23,114,172,3,0,191,118,73,54,34,61,3,0,191,182,247,18,74,211,3,0,192,246,54,40,131,43,4,0,195,182,183,121,82,88,2,0,197,118,183,172,159,210,3,0,199,118,69,38,25,234,3,0,200,118,40,118,157,28,2,0,208,182,248,67,150,77,4,0,209,246,31,8,151,222,2,0,209,182,28,175,120,134,4,0,212,118,155,188,58,229,2,0,213,182,238,145,176,152,3,0,213,54,87,159,45,90,4,0,217,246,137,42,30,33,2,0,222,54,44,204,143,59,2,0,222,246,17,146,187,5,4,0,224,118,105,145,127,41,3,0,225,182,24,81,81,72,3,0,226,54,202,126,246,24,2,0,226,182,124,183,65,42,2,0,226,54,159,198,219,76,3,0,227,54,141,118,50,34,2,0,228,118,1,177,227,3,3,0,229,118,2,96,132,130,4,0,230,246,124,224,106,194,3,0,230,54,206,56,167,214,3,0,233,54,231,91,167,29,4,0,234,246,84,162,174,239,2,0,236,182,132,42,0,95,4,0,239,54,173,215,84,109,4,0,241,54,73,177,47,37,4,0,242,246,135,185,84,67,2,0,245,182,242,234,140,163,3,0,246,182,131,79,32,9,2,0,249,118,170,21,208,112,4,0,251,54,53,52,191,61,3,0,253,54,156,149,116,188,3,0,0,183,199,252,249,251,3,0,2,119,149,121,254,108,3,0,2,55,52,99,245,204,3,0,2,183,199,137,175,50,4,0,3,183,101,108,89,20,2,0,5,183,199,55,163,126,2,0,6,119,83,23,154,61,4,0,7,55,240,87,23,229,2,0,10,247,38,81,134,150,2,0,10,183,193,98,190,189,3,0,13,183,213,233,39,168,2,0,15,247,30,39,100,172,2,0,15,119,130,230,196,52,3,0,17,55,205,188,31,204,2,0,18,119,121,235,27,225,2,0,19,55,126,9,116,14,2,0,20,55,196,80,105,16,2,0,26,247,197,25,212,196,3,0,29,55,166,188,37,163,2,0,33,119,80,246,76,123,2,0,36,183,106,168,108,123,2,0,36,55,199,61,76,240,2,0,37,119,208,172,1,97,2,0,41,247,49,225,148,117,3,0,42,55,245,68,141,46,3,0,43,247,255,52,252,109,2,0,45,247,16,206,86,129,4,0,47,183,210,117,213,28,2,0,47,119,80,246,155,123,2,0,49,183,198,79,224,92,3,0,50,55,131,224,26,126,4,0,53,183,99,238,246,117,3,0,54,119,163,185,139,202,3,0,59,247,46,43,11,92,2,0,62,183,110,61,147,57,4,0,63,183,243,214,143,125,4,0,65,247,234,9,86,37,3,0,66,55,216,242,156,49,4,0,68,119,39,38,17,127,3,0,70,247,128,42,240,97,3,0,71,119,231,19,152,146,3,0,72,55,56,61,137,186,2,0,76,183,214,194,12,148,4,0,78,55,198,42,221,177,2,0,78,247,90,171,35,193,3,0,78,55,35,101,13,139,4,0,80,183,8,240,4,198,2,0,87,247,233,106,16,132,2,0,87,247,87,209,171,233,3,0,88,119,144,125,68,115,3,0,90,55,125,247,228,121,4,0,91,247,10,173,255,191,2,0,91,55,124,194,17,108,4,0,92,119,124,184,162,94,3,0,92,55,218,40,130,205,3,0,93,247,147,209,217,149,2,0,95,183,204,54,54,144,2,0,95,247,13,177,245,230,2,0,96,119,32,229,63,41,4,0,97,183,172,104,79,214,2,0,97,119,23,96,235,217,2,0,102,55,133,235,230,199,2,0,104,55,212,126,128,68,2,0,107,55,215,105,144,26,2,0,108,183,244,122,141,8,2,0,111,119,120,150,252,5,2,0,118,55,210,246,113,112,4,0,120,247,200,185,130,35,3,0,130,247,226,128,119,176,2,0,132,183,2,210,65,14,4,0,133,183,11,74,210,232,2,0,135,183,22,150,218,3,2,0,137,55,193,180,159,4,4,0,139,55,89,73,239,11,3,0,142,119,60,89,28,162,2,0,143,183,62,193,238,163,2,0,143,183,188,150,188,42,4,0,144,55,129,114,4,205,2,0,144,183,121,19,74,111,3,0,145,119,189,38,203,107,3,0,147,247,25,187,127,49,4,0,148,183,6,158,249,166,2,0,151,247,96,239,40,155,3,0,152,247,119,151,9,5,2,0,152,119,193,228,215,200,2,0,152,247,167,61,174,27,4,0,156,247,249,216,199,230,3,0,157,55,176,4,93,176,3,0,157,183,138,212,64,242,3,0,158,55,119,48,113,235,3,0,159,183,212,96,9,78,4,0,162,119,94,18,184,134,4,0,164,247,199,110,77,219,2,0,167,55,50,84,74,237,3,0,172,183,156,188,232,83,4,0,173,183,219,72,24,105,4,0,174,119,41,93,29,241,3,0,175,119,253,106,106,15,2,0,175,119,201,3,172,112,3,0,176,247,233,186,109,194,2,0,176,55,119,10,35,142,3,0,180,55,81,150,86,160,2,0,181,55,165,55,102,104,3,0,182,247,157,228,221,36,3,0,182,119,248,35,97,146,4,0,185,119,111,105,66,205,2,0,189,183,126,230,11,123,3,0,196,247,137,185,5,39,3,0,197,247,99,168,189,233,2,0,199,247,137,185,20,39,3,0,205,247,114,26,12,191,2,0,205,55,174,78,247,232,2,0,206,55,7,122,202,166,3,0,206,247,199,89,249,17,4,0,208,183,82,225,115,85,4,0,213,183,39,81,121,14,3,0,214,119,219,22,72,102,2,0,215,55,239,137,135,246,3,0,219,183,212,96,20,78,4,0,220,247,32,243,174,219,2,0,225,183,148,26,164,35,3,0,226,247,99,84,101,126,3,0,226,247,12,36,81,85,4,0,227,247,94,105,20,39,2,0,228,55,219,4,58,151,2,0,231,55,255,16,97,6,4,0,232,55,105,184,200,101,3,0,236,119,190,161,171,88,2,0,237,183,242,211,119,61,2,0,237,247,179,90,88,107,2,0,237,247,249,189,255,9,4,0,238,119,124,56,234,106,4,0,239,247,216,66,146,228,2,0,245,183,198,79,38,93,3,0,248,55,138,155,50,85,2,0,250,247,107,207,163,56,2,0,251,247,71,173,23,21,2,0,251,55,145,164,39,254,2,0,254,55,32,40,54,75,2,0,254,55,166,161,196,198,3,0,3,56,171,47,120,186,2,0,4,56,247,225,133,92,3,0,5,120,124,184,194,94,3,0,6,120,25,242,21,116,3,0,8,120,38,241,16,193,2,0,13,56,184,186,138,6,3,0,14,56,72,69,220,24,4,0,17,248,64,22,126,65,2,0,18,248,18,144,74,85,3,0,18,248,238,253,163,22,4,0,19,184,203,224,53,89,3,0,21,248,94,220,124,59,2,0,22,248,177,119,173,16,4,0,23,120,75,7,41,25,2,0,23,120,141,14,118,135,3,0,23,248,71,234,57,158,3,0,26,184,153,223,223,226,2,0,26,120,112,187,62,69,4,0,27,248,246,171,173,47,4,0,31,184,223,181,65,76,2,0,33,248,68,235,203,87,4,0,37,56,209,59,23,131,2,0,37,56,241,219,121,114,3,0,43,184,101,199,223,23,4,0,44,248,101,126,249,143,2,0,46,56,67,51,18,169,3,0,47,56,98,33,106,179,3,0,48,184,132,201,20,35,4,0,62,120,119,162,153,82,2,0,62,248,130,95,0,82,4,0,64,184,163,75,82,38,2,0,64,56,250,1,161,94,2,0,64,56,88,224,46,212,2,0,64,184,152,198,132,182,3,0,66,248,60,38,57,25,2,0,72,248,54,167,179,104,2,0,72,120,59,184,20,52,3,0,72,120,116,20,253,80,4,0,73,120,186,128,91,75,4,0,76,120,185,54,63,12,4,0,77,248,185,19,160,8,4,0,79,56,145,164,101,254,2,0,80,120,9,103,203,239,3,0,82,120,147,245,151,27,4,0,90,120,169,229,150,11,4,0,90,120,68,141,93,24,4,0,91,120,6,211,236,158,2,0,93,248,181,128,248,93,2,0,95,56,52,131,106,142,3,0,96,120,44,113,70,74,3,0,98,56,153,223,10,29,3,0,104,120,237,203,218,162,3,0,104,120,18,24,18,120,4,0,106,120,199,85,117,169,3,0,110,56,104,83,168,138,3,0,112,184,229,13,89,99,3,0,114,56,231,100,57,34,4,0,119,56,42,97,185,43,4,0,123,248,51,124,222,63,4,0,123,184,109,199,104,114,4,0,123,184,203,54,108,144,4,0,124,184,92,201,225,193,2,0,128,56,205,229,196,16,2,0,131,248,22,220,242,224,3,0,132,248,251,74,16,138,2,0,134,56,21,192,223,181,2,0,134,56,68,27,200,123,3,0,137,56,21,192,208,181,2,0,138,56,21,192,193,181,2,0,139,248,41,40,198,203,3,0,142,120,226,33,65,114,4,0,144,120,240,21,216,58,2,0,144,248,64,252,248,247,3,0,146,248,146,77,10,154,2,0,146,248,41,4,13,170,3,0,147,56,65,70,97,110,3,0,149,56,145,61,84,158,2,0,150,184,171,168,89,125,3,0,152,248,106,27,243,129,4,0,156,56,100,162,130,34,2,0,156,56,120,25,243,189,2,0,157,56,136,196,136,44,4,0,160,184,168,5,54,96,4,0,162,120,177,230,67,20,3,0,163,56,234,192,166,28,4,0,165,120,13,12,14,18,3,0,174,56,76,13,24,200,2,0,175,184,222,88,66,53,4,0,177,120,160,143,72,139,3,0,179,120,162,203,199,237,3,0,180,120,40,176,172,40,2,0,180,120,65,66,161,52,4,0,182,184,100,128,70,94,2,0,183,120,126,213,243,116,4,0,187,56,229,104,139,90,2,0,188,184,48,188,203,58,4,0,189,248,175,81,106,198,2,0,189,120,135,203,96,208,2,0,192,56,233,127,0,39,2,0,195,248,71,212,60,49,3,0,196,120,15,80,36,51,4,0,199,120,23,188,65,2,3,0,199,120,69,83,57,236,3,0,200,248,63,213,12,145,4,0,203,56,40,166,190,68,2,0,203,56,86,31,209,93,4,0,204,248,54,92,242,103,2,0,204,184,176,183,203,104,3,0,209,248,206,45,218,238,3,0,209,248,196,179,214,88,4,0,212,120,243,217,151,198,2,0,213,120,130,133,57,91,2,0,214,56,154,33,223,188,3,0,216,248,30,87,27,54,4,0,219,248,63,84,74,231,3,0,223,56,252,216,20,151,3,0,224,184,11,74,85,235,2,0,225,120,114,167,88,49,2,0,229,248,50,38,36,207,2,0,233,56,136,239,82,9,2,0,234,184,148,117,227,110,2,0,235,120,161,138,29,132,3,0,238,184,26,192,50,153,2,0,238,184,6,98,162,142,3,0,238,56,230,230,142,45,4,0,240,120,14,171,112,58,2,0,241,120,247,65,138,147,4,0,247,248,10,143,177,199,2,0,247,56,33,186,86,5,3,0,250,248,244,137,233,69,2,0,251,120,11,98,216,36,2,0,251,120,133,249,152,31,4,0,254,184,192,124,77,60,3,0,0,249,83,145,3,118,2,0,1,249,200,171,128,100,4,0,1,185,2,86,155,133,4,0,2,57,5,160,110,69,4,0,5,249,65,100,17,67,2,0,6,57,233,132,230,125,4,0,7,185,48,49,251,25,3,0,8,121,211,168,66,29,2,0,11,249,157,177,147,121,3,0,21,249,145,142,204,37,2,0,21,185,197,15,27,21,4,0,25,57,41,74,14,153,4,0,28,185,11,218,24,108,2,0,39,185,70,237,32,60,3,0,41,185,66,66,146,69,2,0,42,121,58,168,57,99,3,0,44,57,98,98,170,146,3,0,46,249,184,100,41,7,2,0,52,185,142,250,40,245,3,0,53,57,94,0,212,52,2,0,53,185,104,204,237,200,3,0,54,121,37,81,59,32,3,0,55,57,236,233,90,110,4,0,57,121,193,66,8,103,4,0,58,121,53,81,237,229,2,0,59,57,64,236,202,124,2,0,64,57,180,77,247,28,3,0,67,249,24,234,215,102,2,0,68,249,58,6,185,87,3,0,70,121,19,192,122,178,2,0,71,249,133,254,173,68,2,0,75,121,123,171,3,15,3,0,78,249,141,67,176,2,3,0,81,121,3,41,157,32,4,0,82,57,30,93,191,58,3,0,84,57,21,192,178,181,2,0,86,185,16,15,248,57,4,0,87,57,103,160,41,44,4,0,88,185,29,230,158,200,3,0,90,185,68,37,33,47,3,0,92,249,85,114,126,11,2,0,94,185,185,120,59,5,2,0,100,249,229,192,158,127,4,0,101,57,160,97,153,29,2,0,102,57,17,145,68,54,4,0,104,121,113,119,191,4,3,0,104,185,41,254,11,224,3,0,107,57,67,55,230,11,4,0,108,249,7,217,84,42,4,0,117,185,225,151,69,9,3,0,119,121,125,177,104,216,2,0,122,185,138,218,145,53,2,0,124,57,150,227,206,95,2,0,124,249,188,152,132,161,3,0,124,57,95,117,198,48,4,0,125,57,60,17,79,75,3,0,126,185,160,223,128,4,4,0,128,121,76,81,20,188,2,0,129,121,246,221,211,147,2,0,130,249,131,84,121,129,3,0,132,185,230,33,215,21,4,0,133,249,28,209,86,16,2,0,134,121,142,231,160,241,2,0,138,185,90,75,192,171,3,0,141,249,117,101,25,48,2,0,155,121,194,103,18,81,4,0,156,57,241,98,82,253,2,0,157,249,198,149,79,35,2,0,158,185,122,25,5,122,2,0,160,121,77,86,182,150,2,0,161,249,138,106,228,74,4,0,162,185,31,1,232,81,2,0,163,121,220,211,169,222,2,0,165,121,71,145,90,159,2,0,165,249,8,2,108,134,3,0,173,185,87,103,167,63,4,0,177,185,176,84,216,1,3,0,182,249,221,34,20,10,4,0,184,185,62,199,167,42,4,0,185,249,198,99,172,88,4,0,187,249,68,198,134,73,3,0,188,121,167,35,146,103,3,0,192,57,171,40,22,11,2,0,194,249,113,246,49,26,2,0,197,57,6,73,154,199,2,0,197,185,143,19,5,0,3,0,200,121,224,193,188,193,2,0,201,185,40,189,249,90,2,0,201,57,68,197,58,59,3,0,204,185,224,253,191,215,2,0,204,185,179,129,188,149,3,0,208,249,153,27,136,72,2,0,210,249,75,215,205,178,2,0,212,121,59,184,181,52,3,0,215,57,244,248,163,232,2,0,216,185,83,226,199,43,2,0,216,121,59,184,124,52,3,0,220,249,228,73,93,170,2,0,228,57,105,41,54,204,3,0,229,249,217,215,4,25,2,0,241,57,203,13,185,159,2,0,241,249,161,243,226,112,4,0,242,185,141,88,115,146,2,0,246,249,86,213,129,58,4,0,248,121,138,32,212,6,2,0,248,121,239,142,41,28,3,0,249,249,160,61,128,186,3,0,250,121,190,105,241,134,2,0,252,185,79,131,70,205,3,0,0,122,120,1,132,118,2,0,0,186,88,188,88,230,3,0,5,122,148,241,215,132,4,0,9,250,172,42,139,64,4,0,10,186,78,170,170,3,3,0,14,250,161,188,86,64,2,0,17,122,120,214,79,48,3,0,18,122,225,135,94,168,3,0,22,58,23,25,92,106,3,0,23,250,191,110,165,91,2,0,24,186,170,145,158,13,3,0,26,186,236,203,10,207,3,0,27,58,205,131,119,113,2,0,27,122,18,98,106,119,2,0,28,58,168,130,111,227,3,0,29,186,193,10,200,201,3,0,36,58,241,64,238,66,4,0,46,186,87,209,222,78,3,0,47,250,9,179,10,183,3,0,50,58,50,143,126,103,3,0,52,122,64,104,23,75,2,0,53,250,20,81,112,103,3,0,54,250,33,49,88,43,2,0,58,58,206,61,94,44,3,0,58,250,236,30,44,2,4,0,65,250,226,187,4,163,3,0,67,122,234,171,80,175,3,0,69,58,15,130,187,63,3,0,70,186,194,44,49,74,2,0,70,186,105,214,52,43,3,0,73,58,153,223,195,30,3,0,73,250,223,32,138,206,3,0,74,250,232,153,82,95,2,0,81,250,74,211,57,104,4,0,87,58,254,195,138,15,4,0,88,186,114,25,27,173,3,0,92,186,241,22,179,132,2,0,95,186,90,226,116,5,3,0,96,250,171,167,158,141,3,0,97,122,76,81,18,192,2,0,98,58,237,24,188,10,2,0,98,58,153,223,208,30,3,0,106,186,160,160,171,246,2,0,109,250,36,151,239,60,4,0,110,58,153,223,24,31,3,0,114,250,24,248,203,74,3,0,114,58,236,209,7,109,4,0,118,58,56,21,79,176,3,0,122,250,10,254,239,19,3,0,123,250,66,240,254,134,4,0,126,250,176,184,89,245,2,0,127,58,247,225,174,193,3,0,130,250,164,155,1,23,2,0,130,122,91,228,210,146,2,0,133,186,116,37,242,7,4,0,136,122,211,179,87,90,3,0,136,186,25,169,106,95,3,0,137,250,232,22,25,62,4,0,139,58,236,141,13,26,4,0,140,186,36,25,217,146,3,0,143,122,214,61,31,23,2,0,150,186,195,109,116,24,3,0,150,186,222,214,58,36,4,0,152,186,57,120,36,32,2,0,152,122,70,3,71,43,4,0,154,250,69,212,8,241,2,0,154,122,155,66,252,106,4,0,155,122,163,239,53,206,2,0,157,186,225,164,68,46,3,0,157,58,71,66,116,71,4,0,158,186,144,112,218,18,4,0,161,186,62,219,19,19,2,0,161,186,94,203,130,66,2,0,162,122,28,186,140,200,3,0,163,122,31,217,140,109,3,0,164,122,233,26,73,229,2,0,166,58,237,145,230,75,3,0,167,186,195,62,121,231,3,0,171,250,173,67,165,9,2,0,175,122,124,184,245,94,3,0,177,122,147,113,73,132,3,0,179,122,195,180,246,70,3,0,179,58,251,197,172,23,4,0,188,122,203,61,229,48,2,0,191,122,158,163,62,107,2,0,191,186,231,75,157,89,3,0,193,250,124,53,81,50,3,0,204,122,125,128,229,42,2,0,205,58,49,206,53,178,2,0,205,58,172,86,162,9,3,0,205,186,102,134,27,219,3,0,206,58,63,122,214,66,2,0,206,250,9,118,66,105,2,0,209,58,42,138,222,74,3,0,213,122,39,81,49,6,3,0,215,58,228,207,164,138,2,0,215,122,76,234,194,219,2,0,215,58,84,206,168,83,3,0,217,122,183,94,56,141,2,0,217,58,33,227,150,10,4,0,218,250,185,74,243,102,3,0,220,186,78,61,160,41,4,0,220,122,62,95,159,94,4,0,221,58,179,172,164,102,2,0,224,250,240,237,224,82,3,0,227,122,124,69,129,233,2,0,230,250,35,159,27,68,2,0,242,186,148,231,145,20,2,0,244,186,185,125,44,123,4,0,247,58,144,194,238,16,2,0,248,186,139,7,197,55,2,0,251,58,178,64,120,40,3,0,252,122,83,161,233,58,3,0,253,250,169,207,231,194,2,0,254,58,161,61,92,54,4,0,0,251,163,155,163,21,2,0,0,123,182,115,87,212,3,0,1,59,215,136,163,236,3,0,5,123,237,49,133,150,3,0,6,187,33,61,123,29,4,0,7,59,255,9,2,66,4,0,15,59,65,152,139,83,4,0,16,187,243,91,182,101,4,0,17,123,106,86,94,132,3,0,21,123,34,66,249,19,2,0,21,59,195,142,199,251,2,0,28,187,242,193,128,187,2,0,28,59,238,137,192,204,2,0,30,251,248,113,194,98,2,0,30,187,30,81,56,37,3,0,32,59,68,45,50,83,2,0,34,123,5,253,235,225,2,0,35,123,125,200,77,214,3,0,37,251,37,150,17,18,2,0,38,123,223,100,174,7,3,0,39,251,201,186,139,125,2,0,41,123,159,227,73,32,3,0,44,123,190,73,127,109,4,0,44,187,147,244,73,144,4,0,46,187,39,81,176,12,3,0,46,59,41,187,97,120,4,0,58,187,130,22,98,84,2,0,61,251,181,126,108,19,2,0,62,59,37,92,243,9,2,0,65,123,241,85,235,97,2,0,67,59,3,71,38,82,3,0,70,187,35,46,225,172,3,0,71,59,11,239,211,122,3,0,72,187,86,96,170,137,2,0,78,59,52,30,233,108,3,0,84,187,61,196,14,56,3,0,87,59,145,219,90,186,3,0,89,251,230,35,117,202,2,0,91,187,244,9,84,143,2,0,91,251,92,247,23,199,2,0,94,123,67,109,102,17,4,0,96,59,105,198,2,188,3,0,97,123,198,104,171,127,2,0,105,187,176,126,239,21,2,0,105,251,188,247,139,122,2,0,113,123,83,162,4,240,2,0,116,251,26,152,103,29,2,0,117,59,201,136,163,80,4,0,124,187,219,208,36,30,2,0,126,59,153,225,120,31,3,0,127,123,169,85,205,77,2,0,128,187,9,76,191,113,2,0,128,59,95,15,95,169,2,0,128,251,122,148,42,11,4,0,134,251,158,168,190,105,2,0,135,187,86,83,253,186,3,0,136,59,200,114,138,55,2,0,136,251,44,140,60,182,3,0,138,59,138,238,52,18,2,0,142,251,111,49,130,181,2,0,147,59,108,143,147,183,2,0,148,59,58,64,242,24,4,0,149,59,197,123,166,119,2,0,149,187,59,72,129,69,4,0,152,251,89,64,187,125,2,0,152,59,19,113,239,176,3,0,155,59,129,146,148,198,3,0,156,251,248,143,4,84,3,0,156,187,56,132,110,61,4,0,158,59,154,166,84,115,2,0,158,251,251,121,108,136,4,0,159,251,74,142,248,177,3,0,159,59,11,7,180,113,4,0,163,251,211,53,117,56,3,0,166,187,93,29,94,144,2,0,168,123,14,119,27,5,3,0,169,59,237,102,139,126,3,0,170,251,151,85,128,228,3,0,176,251,53,124,246,100,4,0,179,187,11,30,247,65,2,0,187,251,167,155,147,29,3,0,189,123,13,192,113,187,2,0,190,123,168,99,230,105,2,0,190,251,17,4,51,92,4,0,191,187,111,14,56,214,2,0,192,123,185,213,103,151,2,0,192,123,101,184,69,170,3,0,193,187,217,1,235,15,4,0,195,187,238,84,147,84,2,0,196,251,94,54,64,65,2,0,200,59,236,148,182,76,3,0,204,123,147,248,221,183,3,0,209,59,181,32,131,28,3,0,212,187,174,198,189,224,2,0,214,251,240,102,234,130,2,0,214,123,31,14,76,162,2,0,214,187,129,6,136,80,4,0,215,187,119,31,56,125,2,0,218,59,140,1,54,7,2,0,218,187,241,161,79,221,2,0,219,251,24,192,113,169,2,0,219,187,213,214,173,73,3,0,222,187,25,99,254,144,4,0,225,251,30,199,247,149,3,0,234,251,153,184,71,138,2,0,234,59,24,192,79,157,2,0,237,123,28,203,48,142,3,0,237,59,127,101,162,211,3,0,240,123,183,245,70,204,3,0,242,187,188,49,180,249,2,0,242,59,102,45,198,73,4,0,244,123,198,2,249,167,2,0,244,59,71,87,36,13,4,0,245,123,234,193,65,104,2,0,245,251,151,53,167,250,3,0,248,59,0,140,183,122,2,0,249,59,133,216,11,22,3,0,249,123,152,26,243,175,3,0,254,187,248,241,41,198,2,0,0,188,243,1,228,197,3,0,1,124,142,234,55,0,3,0,3,124,23,157,141,80,2,0,4,124,212,31,227,47,2,0,6,124,206,228,231,253,3,0,10,188,164,186,98,183,2,0,11,252,224,218,16,78,2,0,12,252,15,41,201,168,3,0,13,188,43,216,58,55,4,0,15,60,242,38,134,243,2,0,16,124,138,51,77,207,2,0,18,252,20,25,217,20,3,0,31,252,31,172,123,203,3,0,31,124,160,244,117,147,4,0,34,60,34,86,221,144,3,0,34,60,243,225,227,5,4,0,35,60,246,254,235,179,3,0,37,252,199,114,207,56,2,0,37,188,9,218,243,77,2,0,43,60,206,23,114,7,4,0,46,124,226,182,81,92,2,0,47,188,132,151,207,55,3,0,48,124,235,100,55,137,2,0,50,60,124,176,156,152,2,0,52,188,145,184,150,72,3,0,58,252,132,114,42,191,3,0,59,60,125,165,42,10,3,0,66,252,231,47,80,43,2,0,67,60,158,187,25,38,2,0,67,60,21,123,59,118,2,0,67,60,249,252,45,12,3,0,69,252,25,187,176,53,4,0,75,60,147,34,46,17,2,0,79,60,2,23,157,100,2,0,84,60,108,143,167,183,2,0,87,60,198,161,41,143,2,0,87,252,222,215,56,27,3,0,88,188,146,105,34,83,2,0,90,60,167,107,44,167,2,0,93,60,129,51,196,212,2,0,94,124,9,23,47,89,4,0,95,252,61,243,195,147,3,0,95,124,121,19,25,91,4,0,99,124,56,131,45,185,2,0,100,188,171,239,228,63,2,0,105,188,97,155,100,47,4,0,106,252,67,90,124,163,3,0,108,124,138,51,55,207,2,0,111,188,30,53,211,182,3,0,111,60,207,120,221,200,3,0,112,252,180,166,134,119,2,0,117,188,50,78,67,108,2,0,120,124,63,88,63,199,3,0,120,252,185,235,94,84,4,0,121,60,26,192,255,170,2,0,122,124,207,176,217,23,2,0,124,252,163,247,195,109,4,0,126,60,140,90,128,62,3,0,127,188,40,156,150,58,4,0,130,188,71,0,75,99,4,0,135,252,246,185,84,8,3,0,136,60,49,194,187,198,2,0,136,124,114,145,188,220,3,0,137,124,171,174,159,81,2,0,137,188,49,81,106,236,2,0,142,124,96,151,19,124,2,0,145,252,87,49,45,116,4,0,150,252,212,241,22,161,2,0,151,188,1,54,118,148,4,0,152,124,104,175,219,251,3,0,155,252,45,117,42,93,4,0,156,252,53,8,129,84,2,0,157,252,4,160,171,118,2,0,162,252,68,212,187,133,3,0,162,60,109,187,62,117,4,0,166,252,244,37,80,125,2,0,167,60,180,131,37,127,3,0,168,124,229,142,55,90,3,0,169,252,73,177,152,6,2,0,175,252,229,161,99,231,2,0,175,188,113,5,154,73,4,0,181,124,199,153,141,223,3,0,184,60,88,117,168,148,3,0,184,188,140,51,13,47,4,0,185,188,236,195,128,57,4,0,189,188,18,167,67,10,3,0,194,188,200,134,89,65,3,0,198,60,42,181,45,76,2,0,199,60,57,126,203,64,3,0,202,252,249,254,43,121,4,0,204,60,218,188,241,210,3,0,207,252,206,240,101,109,2,0,211,252,114,250,56,93,2,0,214,188,46,26,27,133,4,0,215,252,103,30,237,5,2,0,217,60,77,209,51,55,2,0,226,252,98,197,237,116,2,0,229,60,205,189,181,212,2,0,232,188,147,52,218,1,4,0,233,124,169,161,13,180,3,0,233,124,126,162,225,52,4,0,238,252,138,171,241,137,3,0,241,188,151,29,189,151,3,0,246,60,182,180,167,107,2,0,246,60,21,141,41,217,3,0,247,252,45,5,6,116,2,0,248,252,88,237,116,197,2,0,249,188,26,44,47,145,2,0,249,124,239,108,141,176,2,0,249,188,6,215,154,130,4,0,250,188,45,217,95,147,2,0,250,252,39,241,187,192,3,0,250,60,75,163,15,96,4,0,251,188,145,184,135,72,3,0,252,188,97,11,129,158,3,0,0,253,21,85,208,42,4,0,0,125,5,46,104,126,4,0,2,61,216,12,179,246,3,0,5,189,83,157,136,27,4,0,6,253,231,40,120,33,2,0,6,253,131,188,49,5,4,0,10,125,197,52,4,120,3,0,13,189,194,227,117,236,3,0,16,189,85,69,32,223,2,0,18,61,63,52,249,1,3,0,20,125,240,248,191,75,4,0,21,189,103,144,59,156,2,0,21,125,184,129,130,227,3,0,22,253,16,43,198,177,2,0,23,253,237,43,115,90,4,0,30,253,166,0,66,42,3,0,31,61,184,136,11,56,2,0,32,61,3,216,101,54,2,0,32,125,135,88,222,100,2,0,33,125,80,254,61,4,2,0,39,189,66,41,14,11,3,0,39,253,128,107,55,141,3,0,39,125,225,36,104,239,3,0,41,61,227,17,72,60,2,0,42,189,185,134,239,243,2,0,42,125,59,184,43,59,3,0,42,125,58,252,129,128,3,0,44,61,77,83,35,17,4,0,46,189,168,169,255,95,3,0,47,253,210,199,141,177,3,0,52,253,173,51,108,158,3,0,52,189,188,163,230,101,4,0,54,253,176,210,41,12,2,0,56,253,93,199,144,87,4,0,57,189,110,117,143,147,3,0,60,253,210,4,34,112,3,0,61,253,123,107,211,128,4,0,62,189,68,23,212,62,3,0,62,61,245,146,140,239,3,0,64,189,77,158,63,200,2,0,67,253,147,181,120,199,3,0,70,125,229,177,242,26,2,0,70,189,222,198,151,43,4,0,75,189,17,210,116,221,3,0,75,61,204,76,35,96,4,0,78,61,200,106,114,170,3,0,80,125,150,207,195,55,4,0,80,125,14,56,164,96,4,0,84,125,48,191,113,49,2,0,89,61,254,53,243,8,3,0,90,253,220,152,23,59,3,0,94,61,200,56,20,15,2,0,94,61,137,100,37,61,2,0,94,189,131,210,146,103,2,0,94,125,222,187,36,109,3,0,96,253,52,59,171,170,2,0,97,253,239,179,247,142,4,0,98,189,241,69,48,58,3,0,100,253,170,94,241,96,4,0,102,61,236,189,167,221,2,0,103,61,84,206,150,83,3,0,103,61,14,127,109,100,4,0,106,125,165,26,198,106,4,0,108,253,170,58,124,62,4,0,108,253,165,172,178,145,4,0,110,189,49,137,41,82,4,0,112,61,164,155,91,14,2,0,115,61,187,217,1,209,2,0,119,253,3,137,247,196,3,0,120,125,62,73,89,105,4,0,123,61,6,66,203,229,2,0,126,125,71,227,1,120,2,0,126,61,2,144,52,19,3,0,129,61,168,221,170,110,2,0,130,61,22,156,26,186,2,0,130,253,86,40,47,100,3,0,131,189,145,135,229,45,2,0,135,189,88,112,117,27,2,0,139,125,96,68,72,55,2,0,139,189,76,81,28,159,2,0,140,253,7,30,198,0,4,0,143,61,129,231,136,32,2,0,146,253,255,122,173,150,3,0,146,125,144,131,169,162,3,0,146,61,54,126,86,232,3,0,148,189,15,192,71,202,2,0,149,253,63,191,50,106,3,0,150,125,68,92,65,118,4,0,151,61,156,5,55,153,4,0,153,125,0,13,84,155,3,0,158,125,11,5,181,90,2,0,160,61,124,100,118,93,2,0,161,125,183,192,244,66,3,0,161,125,63,105,244,192,3,0,164,125,120,136,177,80,4,0,167,253,153,38,129,233,3,0,170,61,56,153,216,23,3,0,171,125,10,47,117,86,4,0,172,189,24,145,151,142,2,0,173,125,60,170,193,195,3,0,175,61,252,78,175,223,2,0,175,253,55,129,33,79,3,0,178,61,60,112,186,223,3,0,179,253,70,232,94,19,3,0,180,189,39,81,107,14,3,0,181,253,3,153,114,17,2,0,182,253,226,203,87,130,4,0,183,253,229,80,206,138,2,0,186,61,196,22,197,77,3,0,188,125,153,203,178,183,3,0,189,189,39,81,53,14,3,0,191,253,30,136,55,79,3,0,192,61,208,19,53,31,3,0,192,125,243,9,11,71,3,0,192,189,152,223,19,103,3,0,193,125,105,84,105,193,3,0,193,253,48,90,207,135,4,0,194,61,150,203,230,139,4,0,195,189,149,68,40,178,3,0,199,125,151,147,89,51,2,0,199,189,30,70,238,238,3,0,201,189,78,145,74,148,3,0,202,189,191,27,212,120,3,0,204,125,20,234,128,39,3,0,204,253,59,95,58,201,3,0,204,253,197,210,215,40,4,0,206,61,127,217,126,53,2,0,207,125,65,147,49,30,2,0,210,125,215,158,134,85,4,0,212,189,164,65,144,251,2,0,213,189,41,188,161,240,2,0,219,189,199,251,71,64,2,0,219,253,118,236,179,20,4,0,220,61,205,81,225,11,2,0,221,253,20,25,99,21,3,0,221,125,247,96,147,84,4,0,222,125,43,229,226,87,3,0,222,189,169,89,124,94,3,0,224,189,214,213,168,140,4,0,227,253,149,246,152,133,3,0,232,189,51,191,155,72,4,0,234,61,232,69,81,242,3,0,235,189,12,91,129,110,3,0,236,61,153,45,112,249,3,0,242,253,147,112,249,130,2,0,246,61,113,215,100,32,2,0,247,61,154,16,186,65,3,0,247,189,212,96,70,78,4,0,248,253,242,129,39,92,2,0,252,125,49,127,242,214,3,0,252,125,103,54,69,222,3,0,252,189,244,164,142,48,4,0,254,125,60,91,91,115,3,0,254,189,10,153,69,174,3,0,0,254,2,1,79,247,2,0,5,62,173,54,141,107,2,0,5,62,213,87,111,67,4,0,8,126,252,214,230,129,3,0,11,62,69,239,147,19,4,0,13,190,161,130,200,250,3,0,14,254,217,171,36,147,2,0,15,126,211,142,58,254,2,0,16,190,89,123,162,46,3,0,20,190,64,185,226,41,3,0,26,126,139,235,17,206,3,0,32,62,252,134,208,11,2,0,32,126,103,122,106,214,2,0,33,254,142,110,232,93,4,0,37,126,37,176,207,43,3,0,37,254,164,119,200,67,3,0,38,126,159,53,176,201,3,0,38,190,124,212,184,57,4,0,39,190,217,2,153,90,2,0,39,254,240,77,73,223,2,0,40,254,94,39,171,10,2,0,44,126,164,186,97,182,2,0,46,254,119,203,249,132,4,0,47,254,72,181,226,46,4,0,51,126,134,26,138,131,2,0,53,254,178,68,38,232,2,0,53,190,47,75,140,23,4,0,55,126,45,80,49,228,3,0,58,126,191,63,116,107,2,0,59,62,27,22,124,55,3,0,59,190,122,27,112,14,4,0,61,190,189,79,94,225,2,0,63,62,182,46,193,33,2,0,67,126,37,81,244,31,3,0,69,62,107,32,120,86,3,0,69,190,91,213,29,92,4,0,70,126,97,200,166,118,4,0,72,190,186,237,113,240,2,0,72,190,112,153,25,154,3,0,72,190,221,198,170,165,3,0,76,254,244,54,89,192,2,0,77,62,162,142,197,89,3,0,78,62,72,96,182,135,2,0,80,254,157,227,239,34,3,0,83,254,92,147,132,133,3,0,83,254,82,162,210,38,4,0,89,190,249,197,184,7,2,0,89,62,93,32,118,37,2,0,93,254,249,225,201,187,3,0,94,62,199,6,20,136,3,0,98,62,56,248,191,199,3,0,100,190,88,169,48,36,3,0,101,62,222,148,87,12,4,0,103,126,80,76,51,238,2,0,103,62,226,124,81,21,4,0,106,126,123,10,74,91,2,0,108,254,85,147,6,107,2,0,111,62,129,100,233,157,3,0,112,254,125,224,93,71,4,0,113,190,89,143,242,32,4,0,118,254,58,152,49,188,3,0,124,254,100,80,255,180,3,0,125,126,4,241,247,32,3,0,125,126,151,85,247,228,3,0,128,126,37,176,199,44,3,0,128,62,17,107,46,151,3,0,130,62,165,87,97,97,2,0,133,126,165,78,249,129,3,0,135,126,180,134,186,70,4,0,135,190,51,101,202,70,4,0,138,126,12,181,61,101,2,0,138,62,188,111,174,137,4,0,139,190,144,56,85,251,2,0,146,190,107,222,10,105,3,0,147,254,210,16,99,63,2,0,147,62,209,181,222,126,2,0,147,190,158,160,218,56,3,0,149,126,40,223,102,125,2,0,160,254,172,245,233,199,3,0,162,126,133,252,72,37,2,0,162,254,168,13,94,103,4,0,163,254,169,217,32,120,2,0,163,62,229,229,233,152,2,0,163,62,32,61,198,125,4,0,164,62,213,158,90,43,4,0,165,254,21,122,215,225,2,0,166,126,64,38,169,185,3,0,173,254,195,79,76,105,3,0,175,62,106,111,203,18,2,0,175,62,22,156,75,184,2,0,181,190,172,240,178,56,3,0,181,126,74,155,6,79,4,0,181,190,116,249,27,109,4,0,182,62,104,59,139,107,4,0,189,126,227,35,0,84,4,0,192,254,179,253,202,22,3,0,194,62,114,252,247,56,2,0,200,190,148,217,121,243,3,0,206,254,35,46,76,118,3,0,207,190,134,1,78,68,2,0,209,62,149,194,118,241,3,0,209,62,28,73,243,121,4,0,210,126,221,137,56,63,4,0,211,190,122,95,179,81,2,0,215,62,143,145,145,94,3,0,218,62,233,9,179,201,2,0,219,254,190,68,6,61,4,0,221,126,28,160,16,130,3,0,222,254,212,31,198,47,2,0,222,126,153,223,168,243,2,0,223,126,52,94,86,96,3,0,223,126,28,33,55,139,3,0,224,62,35,81,131,36,3,0,224,190,224,53,60,117,3,0,224,254,78,232,12,182,3,0,225,190,234,201,161,156,2,0,227,190,56,133,188,81,4,0,229,126,109,59,75,101,4,0,231,126,97,130,172,59,4,0,232,190,107,118,140,50,2,0,236,126,234,106,50,9,2,0,236,126,145,87,194,39,3,0,238,254,8,157,39,130,3,0,245,126,221,146,163,111,4,0,246,62,60,128,68,156,3,0,247,126,199,142,80,81,3,0,248,254,194,53,167,79,2,0,248,190,114,195,134,194,3,0,3,191,55,111,202,155,3,0,9,127,219,210,249,135,2,0,9,127,120,189,55,222,2,0,14,191,2,253,191,165,2,0,15,63,141,208,38,142,4,0,20,63,60,128,94,156,3,0,21,191,218,87,30,2,3,0,24,63,61,102,143,137,3,0,26,255,166,197,119,127,4,0,27,127,23,185,149,134,3,0,30,255,109,216,57,83,4,0,37,63,155,59,31,74,2,0,38,127,122,129,0,186,2,0,41,191,221,119,94,181,2,0,42,127,251,22,254,122,2,0,46,63,3,67,196,141,3,0,46,127,144,131,133,162,3,0,47,63,67,146,12,51,2,0,48,191,129,89,45,116,3,0,48,191,50,249,194,77,4,0,50,191,67,211,34,244,2,0,50,127,94,186,47,29,3,0,51,127,91,247,235,211,3,0,53,191,29,243,209,224,2,0,58,63,167,174,228,219,3,0,60,255,36,208,189,54,3,0,64,127,164,186,51,182,2,0,64,127,48,93,228,118,3,0,64,255,107,197,185,227,3,0,66,191,157,142,197,131,3,0,68,255,229,12,240,74,3,0,72,127,105,7,121,138,2,0,72,63,31,81,129,37,3,0,74,127,234,63,153,66,2,0,75,63,31,81,143,37,3,0,75,191,26,122,31,63,3,0,77,255,69,38,17,207,2,0,78,255,11,196,1,146,2,0,78,127,158,54,216,58,3,0,78,63,130,140,244,114,3,0,79,191,214,50,105,212,3,0,89,127,150,66,150,123,3,0,90,127,8,78,64,100,3,0,91,255,84,255,22,202,2,0,92,127,46,106,238,232,3,0,93,63,102,110,91,183,3,0,93,191,34,92,16,49,4,0,94,127,248,157,18,86,3,0,94,63,13,18,23,194,3,0,95,63,62,155,129,148,3,0,97,63,123,49,45,186,2,0,97,63,217,186,67,234,2,0,100,127,128,237,68,141,4,0,101,255,171,54,114,171,2,0,101,127,154,138,152,197,3,0,103,191,188,168,213,217,2,0,108,127,147,207,166,40,3,0,108,255,207,47,245,35,4,0,110,127,178,234,201,105,3,0,114,127,0,17,92,23,3,0,119,191,21,75,177,107,4,0,121,127,142,163,74,113,2,0,122,63,31,93,147,11,2,0,123,255,196,164,76,61,2,0,126,127,178,234,11,148,2,0,127,127,79,103,226,60,2,0,134,255,179,179,146,232,2,0,136,191,34,185,177,255,3,0,140,191,30,155,15,14,4,0,142,127,104,145,68,24,4,0,147,191,44,115,158,219,2,0,150,63,110,149,192,204,3,0,151,255,249,100,138,168,2,0,153,63,52,179,123,172,2,0,156,255,191,159,135,14,3,0,156,255,215,36,93,76,3,0,156,255,146,145,35,45,4,0,157,63,92,84,20,210,3,0,159,63,228,70,73,136,4,0,161,63,48,188,120,236,2,0,163,191,0,193,154,67,2,0,163,191,42,86,66,7,3,0,163,63,38,72,159,76,4,0,166,255,76,17,75,249,2,0,171,127,242,240,26,78,3,0,171,191,136,114,61,94,4,0,172,255,229,227,76,254,2,0,175,191,120,8,107,163,3,0,175,127,180,198,190,18,4,0,178,127,243,192,36,55,3,0,179,191,163,202,154,120,2,0,180,127,53,62,235,83,2,0,180,63,123,49,238,181,2,0,181,63,113,15,79,105,2,0,188,191,39,12,148,223,2,0,188,191,148,223,197,76,4,0,189,127,212,198,116,140,4,0,191,127,147,69,226,245,3,0,192,63,180,61,194,28,2,0,192,63,219,123,72,35,4,0,193,255,115,185,151,210,2,0,197,63,247,49,78,198,3,0,198,191,94,21,216,151,2,0,199,127,90,168,105,198,3,0,201,127,177,132,137,38,2,0,201,63,44,81,242,247,2,0,202,63,193,204,18,102,4,0,205,255,130,150,63,243,3,0,206,63,102,232,169,92,2,0,206,63,150,203,242,139,4,0,211,63,203,9,48,45,4,0,214,191,51,177,99,199,3,0,216,255,53,123,75,117,3,0,219,63,238,212,125,17,3,0,224,255,73,51,187,134,2,0,225,191,123,127,2,42,2,0,225,191,209,177,80,240,3,0,226,191,1,92,4,88,2,0,226,127,0,13,165,155,3,0,227,191,104,135,231,65,3,0,228,127,94,173,148,87,3,0,232,191,225,6,180,228,2,0,234,191,61,81,11,220,2,0,236,127,148,210,199,7,2,0,239,255,135,121,122,71,2,0,242,127,250,193,73,192,2,0,245,127,189,21,152,254,3,0,246,63,121,38,43,82,2,0,247,63,165,185,11,127,4,0,249,191,154,253,225,68,4,0,252,191,232,105,154,15,2,0,252,255,189,40,60,87,2,0,253,255,36,37,108,104,2,0,16,0,24,35,45,67,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,16,0,16,35,65,67,67,69,84,84,65,95,67,79,79,75,73,69,83,16,0,8,35,65,70,95,71,68,80,82,16,0,22,35,65,84,69,68,73,78,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,16,0,12,35,65,86,71,45,109,101,115,115,97,103,101,16,0,17,35,65,86,71,99,111,111,107,105,101,109,101,108,100,105,110,103,16,0,13,35,65,99,99,101,112,116,67,111,111,107,105,101,16,0,22,35,65,99,99,101,112,116,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,17,35,65,99,99,101,112,116,67,111,111,107,105,101,73,110,102,111,16,0,14,35,65,99,99,101,112,116,67,111,111,107,105,101,115,16,0,28,35,65,99,99,101,112,116,67,111,111,107,105,101,115,66,97,110,110,101,114,84,101,109,112,108,97,116,101,16,0,29,35,65,99,99,101,112,116,80,114,105,118,97,99,121,68,105,115,99,108,97,105,109,66,111,120,87,114,97,112,16,0,19,35,65,100,97,116,118,101,100,101,108,109,105,73,110,102,111,115,97,118,16,0,13,35,65,103,114,101,101,67,111,111,107,105,101,115,16,0,15,35,65,105,114,97,71,100,112,114,68,105,97,108,111,103,16,0,25,35,65,107,97,100,101,109,105,95,67,111,111,107,105,101,80,111,108,105,99,121,95,98,97,114,16,0,12,35,65,108,101,114,116,67,111,111,107,105,101,16,0,18,35,65,108,101,114,116,67,111,111,107,105,101,66,97,110,110,101,114,16,0,13,35,65,108,101,114,116,67,111,111,107,105,101,115,16,0,21,35,65,108,101,114,116,68,105,97,108,111,103,67,111,110,97,116,105,110,101,114,16,0,14,35,65,108,101,114,116,97,67,111,111,107,105,101,115,16,0,21,35,65,108,108,111,119,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,20,35,65,108,108,111,119,67,111,111,107,105,101,115,77,101,115,115,97,103,101,16,0,18,35,65,108,108,111,119,67,111,111,107,105,101,115,77,111,100,97,108,16,0,20,35,65,108,108,111,119,67,111,111,107,105,101,115,87,114,97,112,112,101,114,16,0,16,35,65,110,97,108,121,116,105,99,115,80,114,111,109,112,116,16,0,13,35,65,112,112,67,111,111,107,105,101,66,97,114,16,0,22,35,65,114,115,121,115,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,16,0,22,35,65,115,112,78,101,116,70,111,114,109,32,62,32,35,99,111,111,107,105,101,115,16,0,13,35,65,118,105,115,111,67,79,79,75,73,69,83,16,0,12,35,65,118,105,115,111,67,111,111,107,105,101,16,0,13,35,65,118,105,115,111,67,111,111,107,105,101,115,16,0,16,35,65,118,105,115,111,67,111,111,107,105,101,115,108,97,119,16,0,13,35,65,118,118,105,115,111,67,111,111,107,105,101,16,0,16,35,65,119,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,16,35,66,66,67,111,111,107,105,101,84,111,111,108,68,105,118,16,0,11,35,66,73,80,67,111,111,107,105,101,115,16,0,21,35,66,77,79,68,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,114,16,0,17,35,66,79,88,95,67,111,111,107,105,101,80,111,108,105,99,121,16,0,12,35,66,97,110,100,101,97,117,67,78,73,76,16,0,14,35,66,97,110,100,101,97,117,67,111,111,107,105,101,16,0,15,35,66,97,110,100,101,97,117,67,111,111,107,105,101,115,16,0,18,35,66,97,110,100,101,97,117,73,110,102,111,67,111,111,107,105,101,16,0,14,35,66,97,110,101,114,73,78,99,111,111,107,105,101,16,0,11,35,66,97,110,110,101,114,76,71,80,68,16,0,16,35,66,97,110,110,101,114,95,99,111,111,107,105,101,95,48,16,0,16,35,66,97,110,110,101,114,95,99,111,111,107,105,101,95,49,16,0,28,35,66,97,114,84,97,98,95,100,105,118,73,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,16,0,12,35,66,97,114,114,97,67,111,111,107,105,101,16,0,13,35,66,97,114,114,97,67,111,111,107,105,101,115,16,0,12,35,66,97,115,105,99,67,111,111,107,105,101,16,0,11,35,66,108,107,67,111,111,107,105,101,115,16,0,46,35,66,111,100,121,67,111,110,116,101,110,116,95,117,115,114,65,99,99,101,112,116,67,111,111,107,105,101,115,95,112,110,108,65,99,99,101,112,116,67,111,111,107,105,101,115,16,0,17,35,66,111,114,108,97,98,115,67,111,111,107,105,101,66,111,120,16,0,13,35,66,111,114,116,111,115,67,111,111,107,105,101,16,0,10,35,66,111,120,67,111,111,107,105,101,16,0,9,35,66,115,67,111,111,107,105,101,16,0,14,35,66,117,116,116,111,110,95,67,111,111,107,105,101,16,0,20,35,67,67,67,95,67,111,111,107,105,101,115,95,119,114,97,112,112,101,114,16,0,10,35,67,67,77,95,112,111,112,117,112,16,0,18,35,67,67,80,65,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,11,35,67,67,80,65,66,97,110,110,101,114,16,0,11,35,67,67,80,65,78,111,116,105,99,101,16,0,13,35,67,67,80,65,95,111,112,116,95,111,117,116,16,0,12,35,67,67,111,109,112,108,105,97,110,99,101,16,0,8,35,67,67,111,111,107,105,101,16,0,10,35,67,71,85,67,111,111,107,105,101,16,0,5,35,67,78,73,76,16,0,12,35,67,78,73,76,45,99,111,111,107,105,101,16,0,12,35,67,78,73,76,45,110,111,116,105,99,101,16,0,12,35,67,78,73,76,77,101,115,115,97,103,101,16,0,13,35,67,78,73,76,95,109,101,115,115,97,103,101,16,0,18,35,67,79,45,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,13,35,67,79,77,85,78,45,67,111,111,107,105,101,16,0,9,35,67,79,79,75,45,98,97,110,16,0,18,35,67,79,79,75,73,69,45,67,79,78,83,69,78,84,45,69,85,16,0,12,35,67,79,79,75,73,69,65,76,69,82,84,16,0,17,35,67,79,79,75,73,69,69,88,80,69,82,84,73,78,70,79,16,0,14,35,67,79,79,75,73,69,72,73,78,87,69,73,83,16,0,14,35,67,79,79,75,73,69,77,69,83,83,65,71,69,16,0,8,35,67,79,79,75,73,69,83,16,0,14,35,67,79,79,75,73,69,87,65,82,78,73,78,71,16,0,14,35,67,79,79,75,73,69,95,66,65,78,78,69,82,16,0,15,35,67,79,79,75,73,69,95,72,73,78,87,69,73,83,16,0,17,35,67,79,79,75,73,69,95,77,72,68,95,65,76,69,82,84,16,0,13,35,67,79,79,75,73,69,95,78,79,84,73,70,16,0,11,35,67,79,79,75,73,69,95,79,80,84,16,0,15,35,67,79,79,75,73,69,95,87,65,82,78,73,78,71,16,0,12,35,67,79,79,75,73,69,109,111,100,97,108,16,0,14,35,67,79,79,75,80,77,45,66,65,78,78,69,82,16,0,21,35,67,79,87,73,99,111,111,107,105,101,115,100,105,114,101,99,116,105,118,101,16,0,7,35,67,80,95,98,111,120,16,0,8,35,67,80,111,108,105,99,121,16,0,15,35,67,80,114,105,118,97,99,121,45,80,97,110,101,108,16,0,17,35,67,82,84,76,95,65,108,101,114,116,67,111,111,107,105,101,16,0,17,35,67,82,84,76,95,67,111,111,107,105,101,65,108,101,114,116,16,0,18,35,67,83,71,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,9,35,67,87,67,111,111,107,105,101,16,0,22,35,67,101,110,116,117,114,105,97,67,111,111,107,105,101,77,111,110,115,116,101,114,16,0,11,35,67,101,114,101,122,85,121,97,114,105,16,0,22,35,67,105,110,101,109,97,65,99,99,101,112,116,67,111,111,107,105,101,66,97,114,16,0,14,35,67,111,110,115,101,110,116,66,97,110,110,101,114,16,0,14,35,67,111,110,115,101,110,116,67,111,111,107,105,101,16,0,19,35,67,111,110,115,101,110,116,67,111,111,107,105,101,80,111,112,117,112,16,0,20,35,67,111,110,115,101,110,116,76,97,121,101,114,87,114,97,112,112,101,114,16,0,21,35,67,111,110,115,101,110,116,101,109,101,110,116,45,99,111,111,107,105,101,115,16,0,13,35,67,111,111,99,107,105,101,65,108,101,114,116,16,0,13,35,67,111,111,99,107,105,101,115,80,97,103,101,16,0,7,35,67,111,111,107,105,101,16,0,14,35,67,111,111,107,105,101,45,65,112,112,101,110,100,16,0,14,35,67,111,111,107,105,101,45,66,97,110,110,101,114,16,0,15,35,67,111,111,107,105,101,45,67,111,110,115,101,110,116,16,0,17,35,67,111,111,107,105,101,45,67,111,110,116,97,105,110,101,114,16,0,15,35,67,111,111,107,105,101,45,79,118,101,114,108,97,121,16,0,14,35,67,111,111,107,105,101,45,80,111,108,105,99,121,16,0,13,35,67,111,111,107,105,101,45,80,111,112,117,112,16,0,23,35,67,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,95,111,117,116,101,114,16,0,18,35,67,111,111,107,105,101,45,115,99,114,111,108,108,100,111,119,110,16,0,13,35,67,111,111,107,105,101,65,99,99,101,112,116,16,0,22,35,67,111,111,107,105,101,65,99,99,101,112,116,67,111,110,116,97,105,110,101,114,16,0,18,35,67,111,111,107,105,101,65,99,99,101,112,116,76,97,121,101,114,16,0,17,35,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,16,0,22,35,67,111,111,107,105,101,65,99,107,110,111,119,108,101,100,103,101,73,110,102,111,16,0,13,35,67,111,111,107,105,101,65,100,118,105,99,101,16,0,14,35,67,111,111,107,105,101,65,107,107,111,111,114,100,16,0,12,35,67,111,111,107,105,101,65,108,97,114,109,16,0,12,35,67,111,111,107,105,101,65,108,101,114,116,16,0,15,35,67,111,111,107,105,101,65,108,101,114,116,66,111,120,16,0,21,35,67,111,111,107,105,101,65,108,101,114,116,67,111,110,116,97,105,110,101,114,16,0,13,35,67,111,111,107,105,101,65,108,101,114,116,115,16,0,9,35,67,111,111,107,105,101,66,71,16,0,17,35,67,111,111,107,105,101,66,97,99,107,103,114,111,117,110,100,16,0,13,35,67,111,111,107,105,101,66,97,110,110,101,114,16,0,29,35,67,111,111,107,105,101,66,97,110,110,101,114,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,16,35,67,111,111,107,105,101,66,97,110,110,101,114,78,101,119,16,0,10,35,67,111,111,107,105,101,66,97,114,16,0,10,35,67,111,111,107,105,101,66,111,120,16,0,13,35,67,111,111,107,105,101,66,117,116,116,111,110,16,0,12,35,67,111,111,107,105,101,67,104,101,99,107,16,0,21,35,67,111,111,107,105,101,67,104,101,99,107,95,105,110,106,101,99,116,101,100,16,0,10,35,67,111,111,107,105,101,67,111,110,16,0,14,35,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,20,35,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,16,0,20,35,67,111,111,107,105,101,67,111,110,115,101,110,116,67,104,101,99,107,50,16,0,23,35,67,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,16,0,20,35,67,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,16,0,17,35,67,111,111,107,105,101,67,111,110,115,101,110,116,68,105,118,16,0,18,35,67,111,111,107,105,101,67,111,110,115,101,110,116,71,100,112,114,16,0,21,35,67,111,111,107,105,101,67,111,110,115,101,110,116,77,101,115,115,97,103,101,16,0,21,35,67,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,112,101,114,16,0,19,35,67,111,111,107,105,101,67,111,110,115,101,110,116,101,109,101,110,116,16,0,16,35,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,21,35,67,111,111,107,105,101,67,111,110,116,114,111,108,87,114,97,112,112,101,114,16,0,13,35,67,111,111,107,105,101,68,105,97,108,111,103,16,0,17,35,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,16,0,23,35,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,66,97,110,110,101,114,16,0,22,35,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,80,111,112,117,112,16,0,10,35,67,111,111,107,105,101,68,105,118,16,0,9,35,67,111,111,107,105,101,69,85,16,0,16,35,67,111,111,107,105,101,69,110,97,98,108,101,66,111,120,16,0,13,35,67,111,111,107,105,101,70,111,111,116,101,114,16,0,12,35,67,111,111,107,105,101,70,114,97,103,101,16,0,13,35,67,111,111,107,105,101,72,97,110,100,108,101,16,0,11,35,67,111,111,107,105,101,72,101,97,100,16,0,13,35,67,111,111,107,105,101,72,101,97,100,101,114,16,0,11,35,67,111,111,107,105,101,72,105,110,116,16,0,14,35,67,111,111,107,105,101,72,105,110,119,101,105,115,16,0,11,35,67,111,111,107,105,101,73,110,102,111,16,0,16,35,67,111,111,107,105,101,73,110,102,111,66,108,111,99,107,16,0,20,35,67,111,111,107,105,101,73,110,102,111,67,111,110,116,97,105,110,101,114,16,0,18,35,67,111,111,107,105,101,73,110,102,111,68,101,115,107,116,111,112,16,0,18,35,67,111,111,107,105,101,73,110,102,111,79,118,101,114,108,97,121,16,0,18,35,67,111,111,107,105,101,73,110,102,111,87,114,97,112,112,101,114,16,0,18,35,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,16,0,24,35,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,68,105,97,108,111,103,16,0,21,35,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,68,105,118,16,0,22,35,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,82,111,111,116,16,0,15,35,67,111,111,107,105,101,73,110,102,111,114,109,101,114,16,0,19,35,67,111,111,107,105,101,73,110,102,111,114,109,101,114,86,105,101,119,16,0,12,35,67,111,111,107,105,101,73,110,116,114,111,16,0,16,35,67,111,111,107,105,101,75,111,109,117,110,105,107,97,116,16,0,10,35,67,111,111,107,105,101,76,65,87,16,0,10,35,67,111,111,107,105,101,76,97,119,16,0,16,35,67,111,111,107,105,101,76,97,119,67,104,111,105,99,101,16,0,17,35,67,111,111,107,105,101,76,97,119,67,111,110,116,101,110,116,16,0,16,35,67,111,111,107,105,101,76,97,119,72,111,108,100,101,114,16,0,12,35,67,111,111,107,105,101,76,97,121,101,114,16,0,21,35,67,111,111,107,105,101,76,101,103,97,108,67,111,110,116,97,105,110,101,114,16,0,36,35,67,111,111,107,105,101,76,101,103,105,115,108,97,116,105,111,110,95,67,111,111,107,105,101,65,99,99,101,112,116,80,97,110,101,108,16,0,10,35,67,111,111,107,105,101,76,101,121,16,0,16,35,67,111,111,107,105,101,77,97,110,67,108,105,101,110,116,16,0,20,35,67,111,111,107,105,101,77,97,110,97,103,101,114,68,105,97,108,111,103,16,0,27,35,67,111,111,107,105,101,77,97,110,97,103,101,114,68,105,97,108,111,103,87,114,97,112,112,101,114,16,0,14,35,67,111,111,107,105,101,77,101,108,100,105,110,103,16,0,14,35,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,23,35,67,111,111,107,105,101,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,17,35,67,111,111,107,105,101,77,101,115,115,97,103,101,68,105,118,16,0,19,35,67,111,111,107,105,101,77,101,115,115,97,103,101,73,110,110,101,114,16,0,16,35,67,111,111,107,105,101,77,101,115,115,97,103,105,110,103,16,0,22,35,67,111,111,107,105,101,77,111,100,97,108,46,105,115,45,97,99,116,105,118,101,16,0,24,35,67,111,111,107,105,101,77,111,100,97,108,95,99,111,111,107,105,101,109,111,100,97,108,16,0,14,35,67,111,111,107,105,101,77,111,110,115,116,101,114,16,0,18,35,67,111,111,107,105,101,77,111,110,115,116,101,114,78,65,73,72,16,0,13,35,67,111,111,107,105,101,77,115,103,66,111,120,16,0,17,35,67,111,111,107,105,101,78,97,118,105,103,97,116,105,111,110,16,0,11,35,67,111,111,107,105,101,78,111,116,101,16,0,13,35,67,111,111,107,105,101,78,111,116,105,99,101,16,0,16,35,67,111,111,107,105,101,78,111,116,105,99,101,66,111,120,16,0,22,35,67,111,111,107,105,101,78,111,116,105,99,101,67,111,110,116,97,105,110,101,114,16,0,19,35,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,22,35,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,16,0,27,35,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,83,112,97,99,101,16,0,28,35,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,67,111,110,116,97,105,110,101,114,16,0,15,35,67,111,111,107,105,101,78,111,116,105,102,105,101,114,16,0,18,35,67,111,111,107,105,101,78,111,116,105,102,105,101,114,105,110,103,16,0,9,35,67,111,111,107,105,101,79,75,16,0,18,35,67,111,111,107,105,101,79,112,116,73,110,66,97,110,110,101,114,16,0,15,35,67,111,111,107,105,101,79,112,116,73,110,66,111,120,16,0,14,35,67,111,111,107,105,101,79,118,101,114,108,97,121,16,0,17,35,67,111,111,107,105,101,79,118,101,114,108,97,121,66,111,120,16,0,11,35,67,111,111,107,105,101,80,97,110,101,16,0,12,35,67,111,111,107,105,101,80,97,110,101,108,16,0,20,35,67,111,111,107,105,101,80,97,110,101,108,78,101,103,97,116,105,118,101,16,0,11,35,67,111,111,107,105,101,80,108,117,115,16,0,13,35,67,111,111,107,105,101,80,111,108,105,99,121,16,0,22,35,67,111,111,107,105,101,80,111,108,105,99,121,67,111,110,116,97,105,110,101,114,16,0,16,35,67,111,111,107,105,101,80,111,108,105,99,121,68,105,118,16,0,19,35,67,111,111,107,105,101,80,111,108,105,99,121,72,101,97,100,101,114,16,0,20,35,67,111,111,107,105,101,80,111,108,105,99,121,77,101,115,115,97,103,101,16,0,19,35,67,111,111,107,105,101,80,111,108,105,99,121,78,111,116,105,99,101,16,0,20,35,67,111,111,107,105,101,80,111,108,105,99,121,79,118,101,114,108,97,121,16,0,18,35,67,111,111,107,105,101,80,111,108,105,99,121,80,97,110,101,108,16,0,17,35,67,111,111,107,105,101,80,111,108,105,99,121,95,100,105,118,16,0,12,35,67,111,111,107,105,101,80,111,112,117,112,16,0,14,35,67,111,111,107,105,101,80,114,105,118,97,99,121,16,0,20,35,67,111,111,107,105,101,80,114,105,118,97,99,121,78,111,116,105,99,101,16,0,13,35,67,111,111,107,105,101,80,117,98,83,101,116,16,0,14,35,67,111,111,107,105,101,81,66,97,110,110,101,114,16,0,20,35,67,111,111,107,105,101,82,101,112,111,114,116,115,66,97,110,110,101,114,16,0,22,35,67,111,111,107,105,101,82,101,112,111,114,116,115,66,97,110,110,101,114,65,90,16,0,20,35,67,111,111,107,105,101,82,101,112,111,114,116,115,66,117,116,116,111,110,16,0,23,35,67,111,111,107,105,101,82,101,112,111,114,116,115,77,105,110,105,80,97,110,101,108,16,0,19,35,67,111,111,107,105,101,82,101,112,111,114,116,115,80,97,110,101,108,16,0,12,35,67,111,111,107,105,101,82,117,108,101,115,16,0,14,35,67,111,111,107,105,101,83,97,118,101,77,115,103,16,0,24,35,67,111,111,107,105,101,83,101,116,116,105,110,103,115,67,111,110,116,97,105,110,101,114,16,0,13,35,67,111,111,107,105,101,83,108,105,100,101,114,16,0,15,35,67,111,111,107,105,101,83,110,97,99,107,98,97,114,16,0,29,35,67,111,111,107,105,101,83,116,105,99,107,121,95,112,110,108,67,111,111,107,105,101,83,116,105,99,107,121,16,0,12,35,67,111,111,107,105,101,84,49,66,97,114,16,0,12,35,67,111,111,107,105,101,84,50,66,97,114,16,0,10,35,67,111,111,107,105,101,84,80,67,16,0,11,35,67,111,111,107,105,101,84,111,111,108,16,0,13,35,67,111,111,107,105,101,84,111,112,68,105,118,16,0,9,35,67,111,111,107,105,101,84,114,16,0,18,35,67,111,111,107,105,101,85,115,101,65,112,112,114,111,118,97,108,16,0,11,35,67,111,111,107,105,101,87,97,108,108,16,0,14,35,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,17,35,67,111,111,107,105,101,87,97,114,110,105,110,103,66,97,114,16,0,17,35,67,111,111,107,105,101,87,97,114,110,105,110,103,66,111,120,16,0,18,35,67,111,111,107,105,101,87,97,114,110,105,110,103,76,105,110,107,16,0,19,35,67,111,111,107,105,101,87,97,114,110,105,110,103,80,97,110,101,108,16,0,17,35,67,111,111,107,105,101,87,97,114,110,105,110,103,82,111,119,16,0,13,35,67,111,111,107,105,101,87,105,100,103,101,116,16,0,10,35,67,111,111,107,105,101,87,105,110,16,0,11,35,67,111,111,107,105,101,87,114,97,112,16,0,14,35,67,111,111,107,105,101,87,114,97,112,112,101,114,16,0,10,35,67,111,111,107,105,101,95,69,85,16,0,15,35,67,111,111,107,105,101,95,72,105,110,119,101,105,115,16,0,13,35,67,111,111,107,105,101,95,76,97,121,101,114,16,0,14,35,67,111,111,107,105,101,95,105,110,102,111,114,109,16,0,13,35,67,111,111,107,105,101,98,97,110,110,101,114,16,0,10,35,67,111,111,107,105,101,98,97,114,16,0,14,35,67,111,111,107,105,101,99,111,110,115,101,110,116,16,0,14,35,67,111,111,107,105,101,99,111,110,116,97,105,110,16,0,11,35,67,111,111,107,105,101,105,110,102,111,16,0,16,35,67,111,111,107,105,101,108,97,119,66,97,110,110,101,114,16,0,14,35,67,111,111,107,105,101,109,101,108,100,105,110,103,16,0,8,35,67,111,111,107,105,101,115,16,0,29,35,67,111,111,107,105,101,115,49,95,112,110,108,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,16,0,13,35,67,111,111,107,105,101,115,49,95,117,100,112,16,0,14,35,67,111,111,107,105,101,115,65,99,99,101,112,116,16,0,24,35,67,111,111,107,105,101,115,65,103,114,101,101,109,101,110,116,95,66,111,120,65,108,108,16,0,13,35,67,111,111,107,105,101,115,65,108,101,114,116,16,0,33,35,67,111,111,107,105,101,115,65,108,101,114,116,67,111,110,116,97,105,110,101,114,87,80,81,52,54,95,68,79,67,81,49,16,0,16,35,67,111,111,107,105,101,115,65,108,101,114,116,82,111,119,16,0,15,35,67,111,111,107,105,101,115,65,114,116,105,99,108,101,16,0,14,35,67,111,111,107,105,101,115,66,97,110,110,101,114,16,0,11,35,67,111,111,107,105,101,115,66,97,114,16,0,19,35,67,111,111,107,105,101,115,66,101,115,116,97,101,116,105,103,101,110,16,0,11,35,67,111,111,107,105,101,115,66,111,120,16,0,18,35,67,111,111,107,105,101,115,67,111,109,112,108,105,97,110,99,101,16,0,20,35,67,111,111,107,105,101,115,67,111,110,102,105,114,109,97,116,105,111,110,16,0,17,35,67,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,16,0,12,35,67,111,111,107,105,101,115,67,116,114,108,16,0,18,35,67,111,111,107,105,101,115,68,105,115,99,108,97,105,109,101,114,16,0,11,35,67,111,111,107,105,101,115,68,105,118,16,0,12,35,67,111,111,107,105,101,115,73,110,102,111,16,0,13,35,67,111,111,107,105,101,115,73,110,102,111,115,16,0,11,35,67,111,111,107,105,101,115,76,97,119,16,0,18,35,67,111,111,107,105,101,115,76,97,119,77,101,115,115,97,103,101,16,0,13,35,67,111,111,107,105,101,115,76,97,121,101,114,16,0,13,35,67,111,111,107,105,101,115,77,111,100,97,108,16,0,14,35,67,111,111,107,105,101,115,78,111,116,105,99,101,16,0,15,35,67,111,111,107,105,101,115,79,118,101,114,108,97,121,16,0,13,35,67,111,111,107,105,101,115,80,97,110,101,108,16,0,14,35,67,111,111,107,105,101,115,80,111,108,105,99,121,16,0,13,35,67,111,111,107,105,101,115,80,111,112,117,112,16,0,13,35,67,111,111,107,105,101,115,80,114,105,110,99,16,0,15,35,67,111,111,107,105,101,115,80,114,105,118,97,99,121,16,0,17,35,67,111,111,107,105,101,115,85,115,97,103,101,67,111,110,116,16,0,15,35,67,111,111,107,105,101,115,87,97,114,110,105,110,103,16,0,14,35,67,111,111,107,105,101,115,87,105,110,100,111,119,16,0,19,35,67,111,111,107,105,101,115,95,112,110,108,67,111,111,107,105,101,115,16,0,17,35,67,111,111,107,105,101,122,117,115,116,105,109,109,117,110,103,16,0,13,35,67,111,111,107,105,115,66,97,110,110,101,114,16,0,14,35,67,111,111,107,105,115,87,97,114,110,105,110,103,16,0,20,35,67,112,72,84,77,76,67,111,111,107,105,101,66,97,114,95,98,97,114,16,0,33,35,67,121,98,111,116,67,111,111,107,105,101,98,111,116,68,105,97,108,111,103,66,111,100,121,85,110,100,101,114,108,97,121,16,0,12,35,68,67,67,111,111,107,105,101,76,97,119,16,0,18,35,68,67,73,78,70,79,95,67,79,79,75,73,69,95,65,71,66,16,0,17,35,68,70,76,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,5,35,68,71,80,82,16,0,11,35,68,73,86,99,111,111,107,105,101,115,16,0,18,35,68,73,86,99,111,111,107,105,101,115,119,101,108,99,111,109,101,16,0,32,35,68,76,80,95,101,117,95,99,111,111,107,105,101,95,100,105,115,99,108,111,115,117,114,101,79,118,101,114,108,97,121,16,0,12,35,68,79,95,67,67,95,80,65,78,69,76,16,0,16,35,68,83,71,86,79,95,99,111,110,116,97,105,110,101,114,16,0,16,35,68,83,71,86,79,100,105,115,99,108,97,105,109,101,114,16,0,26,35,68,105,103,105,116,97,108,80,114,105,110,116,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,15,35,68,105,115,99,108,97,105,109,67,111,111,107,105,101,16,0,28,35,68,105,115,99,108,97,105,109,80,114,105,118,97,99,121,66,111,116,116,111,109,66,117,116,116,111,110,16,0,18,35,68,105,115,99,108,97,105,109,101,114,67,111,111,107,105,101,115,16,0,18,35,68,105,115,112,108,97,121,67,111,111,107,105,101,73,110,102,111,16,0,18,35,68,105,118,65,99,101,112,116,97,114,67,111,111,107,105,101,115,16,0,16,35,68,105,118,65,108,108,111,119,67,111,111,107,105,101,115,16,0,18,35,68,105,118,66,97,110,100,101,97,117,67,111,111,107,105,101,115,16,0,11,35,68,105,118,67,111,111,107,105,101,115,16,0,20,35,68,105,118,67,111,111,107,105,101,115,73,110,102,111,80,97,110,101,108,16,0,18,35,68,105,118,67,111,111,107,105,101,115,77,101,115,115,97,103,101,16,0,18,35,68,105,118,73,100,101,97,108,67,111,111,107,76,105,103,104,116,16,0,16,35,68,105,118,80,111,108,105,99,121,67,111,111,107,105,101,16,0,14,35,68,105,118,95,67,111,111,107,105,101,78,97,103,16,0,10,35,68,105,118,99,111,111,107,105,101,16,0,20,35,68,111,87,101,98,67,111,111,107,105,101,115,67,111,110,115,101,110,116,16,0,10,35,69,66,67,111,111,107,105,101,115,16,0,26,35,69,67,45,67,111,111,107,105,101,76,97,119,45,78,111,116,105,102,105,99,97,116,105,111,110,16,0,15,35,69,67,83,99,111,111,107,105,101,112,97,110,101,108,16,0,16,35,69,80,68,105,114,101,99,116,105,118,101,73,110,102,111,16,0,16,35,69,80,95,99,111,111,107,105,101,115,80,111,112,117,112,16,0,7,35,69,85,67,79,79,75,16,0,25,35,69,85,67,111,109,112,108,105,97,110,99,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,9,35,69,85,67,111,111,107,105,101,16,0,16,35,69,85,67,111,111,107,105,101,45,66,97,110,110,101,114,16,0,12,35,69,85,67,111,111,107,105,101,66,97,114,16,0,22,35,69,85,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,16,0,18,35,69,85,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,13,35,69,85,67,111,111,107,105,101,70,97,100,101,16,0,16,35,69,85,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,12,35,69,85,67,111,111,107,105,101,77,115,103,16,0,13,35,69,85,67,111,111,107,105,101,78,111,116,101,16,0,14,35,69,85,67,111,111,107,105,101,80,97,110,101,108,16,0,21,35,69,85,67,111,111,107,105,101,80,111,108,105,99,121,78,111,116,105,99,101,16,0,10,35,69,85,67,111,111,107,105,101,115,16,0,15,35,69,85,67,111,111,107,105,101,115,65,108,101,114,116,16,0,17,35,69,85,67,111,111,107,105,101,115,87,97,114,110,105,110,103,16,0,23,35,69,85,68,105,114,101,99,116,105,118,101,67,111,111,107,105,101,80,97,110,101,108,16,0,18,35,69,85,95,67,111,111,107,105,101,95,77,101,115,115,97,103,101,16,0,10,35,69,85,95,99,111,111,107,105,101,16,0,9,35,69,85,99,111,111,107,105,101,16,0,15,35,69,85,99,111,111,107,105,101,66,97,110,110,101,114,16,0,17,35,69,85,99,111,111,107,105,101,83,116,97,116,109,101,110,116,16,0,23,35,69,110,99,117,114,105,111,71,100,112,114,83,101,99,117,114,105,116,121,66,97,114,16,0,14,35,69,117,67,111,111,107,105,101,66,97,114,45,56,16,0,14,35,69,117,67,111,111,107,105,101,66,108,111,99,107,16,0,16,35,69,117,67,111,111,107,105,101,76,97,119,70,111,114,109,16,0,14,35,69,118,97,115,116,101,95,98,111,116,116,111,109,16,0,11,35,70,84,95,67,111,111,107,105,101,115,16,0,14,35,70,111,111,116,101,114,45,67,111,111,107,105,101,16,0,40,35,70,111,111,116,101,114,49,95,67,111,111,107,105,101,80,111,112,117,112,49,95,112,110,108,68,105,115,99,108,97,105,109,101,114,80,111,112,117,112,16,0,41,35,70,111,111,116,101,114,49,95,99,67,111,111,107,105,101,80,111,112,85,112,49,95,112,110,108,68,105,115,99,108,97,105,109,101,114,80,111,112,117,112,16,0,13,35,70,111,111,116,101,114,67,111,111,107,105,101,16,0,20,35,70,111,111,116,101,114,95,99,111,111,107,105,101,76,97,119,66,111,120,16,0,14,35,70,111,114,98,111,116,67,111,111,107,105,101,115,16,0,30,35,70,111,114,109,76,97,121,111,117,116,95,67,111,111,107,105,101,87,97,114,110,105,110,103,80,97,110,101,108,16,0,11,35,70,114,115,116,67,107,115,68,105,118,16,0,23,35,71,67,85,67,111,111,107,105,101,80,111,108,105,99,121,87,97,114,110,105,110,103,16,0,25,35,71,68,80,82,45,97,99,99,101,112,116,68,105,97,108,111,103,87,114,97,112,112,101,114,16,0,11,35,71,68,80,82,45,97,108,101,114,116,16,0,19,35,71,68,80,82,45,99,111,110,115,101,110,116,45,97,108,101,114,116,16,0,20,35,71,68,80,82,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,16,35,71,68,80,82,65,108,101,114,116,66,97,110,110,101,114,16,0,12,35,71,68,80,82,67,111,110,115,101,110,116,16,0,15,35,71,68,80,82,67,111,110,115,101,110,116,66,97,114,16,0,28,35,71,68,80,82,67,111,110,115,101,110,116,77,97,110,97,103,101,114,67,111,110,116,97,105,110,101,114,16,0,19,35,71,68,80,82,67,111,110,115,101,110,116,79,118,101,114,108,97,121,16,0,11,35,71,68,80,82,67,111,111,107,105,101,16,0,14,35,71,68,80,82,67,111,111,107,105,101,66,111,120,16,0,21,35,71,68,80,82,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,16,0,18,35,71,68,80,82,67,111,111,107,105,101,68,105,115,112,108,97,121,16,0,8,35,71,68,80,82,68,105,118,16,0,11,35,71,68,80,82,70,111,111,116,101,114,16,0,10,35,71,68,80,82,77,111,100,97,108,16,0,19,35,71,68,80,82,80,111,112,117,112,67,111,110,116,97,105,110,101,114,16,0,12,35,71,68,80,82,95,67,79,79,75,73,69,16,0,10,35,71,68,80,82,95,72,105,110,116,16,0,19,35,71,68,80,82,95,77,97,105,110,67,111,110,116,97,105,110,101,114,16,0,11,35,71,68,80,82,95,98,108,111,99,107,16,0,13,35,71,68,80,82,95,119,97,114,110,105,110,103,16,0,10,35,71,68,80,82,112,111,112,117,112,16,0,10,35,71,68,80,82,116,111,97,115,116,16,0,9,35,71,70,83,116,105,99,107,121,16,0,19,35,71,77,73,95,80,114,105,118,97,99,121,95,80,111,108,105,99,121,16,0,25,35,71,82,85,45,99,111,111,107,105,101,115,45,97,108,101,114,116,45,105,102,114,97,109,101,16,0,12,35,71,99,67,111,111,107,105,101,66,111,120,16,0,5,35,71,100,112,114,16,0,12,35,71,100,112,114,45,112,111,108,105,99,121,16,0,17,35,71,100,112,114,67,111,111,107,105,101,66,97,110,110,101,114,16,0,18,35,71,100,112,114,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,12,35,71,100,112,114,69,121,101,98,114,111,119,16,0,39,35,71,101,110,101,114,105,99,116,111,112,109,101,110,117,49,95,83,101,114,118,105,99,101,77,101,110,117,49,95,80,110,108,67,111,111,107,105,101,16,0,14,35,71,105,98,115,111,110,80,114,105,118,97,99,121,16,0,19,35,71,108,111,98,97,108,67,111,111,107,105,101,66,97,110,110,101,114,16,0,18,35,71,111,100,66,108,101,115,115,69,85,67,111,111,107,105,101,115,16,0,17,35,71,114,105,116,116,101,114,67,111,110,116,97,105,110,101,114,16,0,13,35,71,114,117,85,105,87,114,97,112,112,101,114,16,0,26,35,72,67,69,67,111,111,107,105,101,77,97,110,97,103,101,114,67,111,110,116,97,105,110,101,114,16,0,15,35,72,70,83,95,67,111,111,107,105,101,72,105,110,116,16,0,17,35,72,70,83,95,67,111,111,107,105,101,72,105,110,116,66,103,16,0,17,35,72,71,76,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,37,35,72,101,97,100,101,114,95,67,111,111,107,105,101,115,76,101,103,97,99,121,95,112,110,67,111,111,107,105,101,115,76,101,103,97,99,121,16,0,36,35,72,101,97,100,101,114,95,72,101,97,100,101,114,95,99,116,108,48,48,95,99,111,111,107,105,101,68,105,115,99,108,97,109,101,114,16,0,20,35,72,111,108,100,101,114,70,111,114,67,111,111,107,105,101,73,110,102,111,16,0,25,35,72,111,110,101,121,119,101,108,108,69,85,67,111,111,107,105,101,45,66,97,110,110,101,114,16,0,16,35,73,66,84,67,111,111,107,105,101,80,111,108,105,99,121,16,0,19,35,73,67,85,115,101,114,67,111,111,107,105,101,95,98,108,111,99,107,16,0,12,35,73,68,82,111,100,111,80,111,112,85,112,16,0,18,35,73,68,95,68,73,86,95,71,68,80,82,95,65,76,69,82,84,16,0,21,35,73,76,78,98,97,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,16,35,73,76,78,99,111,111,107,105,101,66,97,110,110,101,114,16,0,37,35,73,77,95,99,108,111,115,101,95,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,119,114,97,112,112,101,114,16,0,20,35,73,78,95,99,111,111,107,105,101,98,97,114,119,114,97,112,112,101,114,16,0,22,35,73,100,66,97,110,110,101,114,65,99,99,101,112,116,80,114,105,118,97,99,121,16,0,11,35,73,110,102,111,67,111,111,107,105,101,16,0,14,35,73,110,102,111,67,111,111,107,105,101,84,108,111,16,0,19,35,73,110,102,111,114,109,97,99,106,97,79,67,111,111,107,105,101,115,16,0,19,35,73,110,102,111,114,109,97,116,105,111,110,67,111,111,107,105,101,115,16,0,18,35,73,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,16,0,17,35,74,68,67,111,111,107,105,101,78,111,116,105,102,105,101,114,16,0,20,35,74,77,95,67,111,111,107,105,101,95,67,111,110,116,97,105,110,101,114,16,0,15,35,74,77,95,99,111,111,107,105,101,108,97,121,101,114,16,0,20,35,74,79,73,83,72,57,56,55,95,98,97,114,95,104,111,108,100,101,114,16,0,21,35,74,83,69,87,45,99,111,111,107,105,101,68,101,116,101,99,116,105,111,110,16,0,25,35,74,83,95,99,111,111,107,105,101,115,76,97,119,65,99,99,101,112,116,97,116,105,111,110,16,0,13,35,74,83,99,111,111,107,105,101,73,110,102,111,16,0,18,35,75,66,66,67,111,111,107,105,101,78,111,116,105,102,105,101,114,16,0,10,35,75,80,78,67,111,111,107,105,101,16,0,11,35,75,80,78,95,99,111,111,107,105,101,16,0,16,35,75,83,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,26,35,75,101,116,111,68,105,101,116,79,122,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,26,35,75,105,115,105,115,101,108,86,101,114,105,108,101,114,105,110,75,111,114,117,110,109,97,115,105,16,0,25,35,75,108,105,99,107,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,118,16,0,11,35,76,66,95,99,111,111,107,105,101,115,16,0,11,35,76,67,111,111,107,105,101,66,97,114,16,0,5,35,76,71,80,68,16,0,15,35,76,71,80,68,100,105,115,99,108,97,105,109,101,114,16,0,20,35,76,83,67,111,111,107,105,101,80,111,108,105,99,121,80,111,112,117,112,16,0,16,35,76,97,98,48,99,111,111,107,105,101,95,112,114,101,115,16,0,19,35,76,97,98,101,108,65,110,122,101,105,103,101,67,111,111,107,105,101,16,0,13,35,76,101,103,97,108,67,111,111,107,105,101,115,16,0,20,35,76,101,103,97,108,115,67,111,111,107,105,101,72,105,110,119,101,105,115,16,0,12,35,76,108,101,105,67,111,111,107,105,101,115,16,0,14,35,76,111,103,103,105,110,103,67,111,111,107,105,101,16,0,23,35,77,65,70,73,65,68,79,67,67,79,77,95,99,111,111,107,105,101,95,98,111,120,16,0,19,35,77,67,99,111,111,107,105,101,67,104,111,105,99,101,73,110,102,111,16,0,16,35,77,68,67,77,83,67,111,111,107,105,101,78,111,116,101,16,0,11,35,77,79,68,65,76,95,108,103,112,100,16,0,16,35,77,83,111,102,116,67,111,111,107,105,101,87,97,114,110,16,0,16,35,77,95,99,111,111,107,105,101,87,97,114,110,105,110,103,16,0,17,35,77,97,105,110,67,111,111,107,105,101,66,97,110,110,101,114,16,0,12,35,77,97,105,110,67,111,111,107,105,101,115,16,0,31,35,77,97,110,97,103,101,98,97,115,101,95,67,111,111,107,105,101,66,97,114,95,67,111,110,116,97,105,110,101,114,16,0,26,35,77,101,109,111,71,97,100,103,101,116,67,111,111,107,105,101,98,111,116,68,105,97,108,111,103,16,0,27,35,77,101,110,115,97,106,101,67,111,109,112,114,117,101,98,97,67,111,111,107,105,101,83,105,116,101,16,0,34,35,77,101,110,115,97,106,101,67,111,109,112,114,117,101,98,97,67,111,111,107,105,101,83,105,116,101,84,101,97,108,105,117,109,16,0,14,35,77,101,115,115,97,103,101,67,111,111,107,105,101,16,0,24,35,77,101,115,115,97,103,101,73,110,102,111,95,112,97,110,101,108,67,111,111,107,105,101,16,0,19,35,77,111,100,97,108,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,10,35,77,115,103,67,111,111,107,105,101,16,0,11,35,77,115,106,67,111,111,107,105,101,115,16,0,15,35,78,74,73,45,69,109,101,97,67,111,111,107,105,101,16,0,16,35,78,76,67,95,111,112,97,113,117,101,76,97,121,101,114,16,0,14,35,78,76,67,95,116,101,120,116,76,97,121,101,114,16,0,26,35,78,88,79,84,111,111,108,95,97,117,116,104,111,114,105,122,101,95,99,111,111,107,105,101,115,16,0,13,35,78,101,116,115,78,79,67,111,111,107,105,101,16,0,12,35,78,111,116,97,67,111,111,107,105,101,115,16,0,16,35,78,111,116,105,102,105,99,97,95,99,111,111,107,105,101,16,0,23,35,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,95,99,111,111,107,105,101,16,0,8,35,79,98,115,67,110,105,108,16,0,10,35,79,107,67,111,111,107,105,101,115,16,0,21,35,79,107,110,111,87,105,97,100,111,109,111,115,99,105,67,111,111,107,105,101,16,0,28,35,80,65,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,16,0,12,35,80,67,99,111,111,107,105,101,66,97,114,16,0,25,35,80,67,111,110,115,101,110,116,105,109,101,110,116,111,45,67,111,110,116,97,105,110,101,114,16,0,9,35,80,76,67,111,111,107,105,101,16,0,21,35,80,76,95,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,115,16,0,9,35,80,80,99,111,111,107,105,101,16,0,18,35,80,97,103,101,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,24,35,80,97,110,101,108,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,19,35,80,97,110,101,108,67,111,111,107,105,101,79,118,101,114,108,97,121,16,0,13,35,80,97,110,101,108,67,111,111,107,105,101,115,16,0,12,35,80,97,118,101,67,111,111,107,105,101,115,16,0,20,35,80,101,114,115,111,110,97,108,68,97,116,97,73,110,102,111,66,97,114,16,0,14,35,80,105,112,101,114,45,67,111,110,115,101,110,116,16,0,26,35,80,108,97,121,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,82,111,111,116,16,0,10,35,80,110,108,67,111,111,107,105,101,16,0,16,35,80,110,108,80,114,105,118,97,99,121,65,108,101,114,116,16,0,26,35,80,111,108,105,116,121,107,97,80,114,121,119,97,116,110,111,115,99,105,67,111,111,107,105,101,16,0,12,35,80,111,112,85,112,67,111,111,107,105,101,16,0,13,35,80,111,112,85,112,67,111,111,107,105,101,115,16,0,22,35,80,111,112,117,112,67,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,16,0,14,35,80,114,105,118,97,99,121,66,97,110,110,101,114,16,0,26,35,80,114,105,118,97,99,121,73,110,102,111,114,109,97,116,105,111,110,67,111,110,115,101,110,116,16,0,20,35,80,114,105,118,97,99,121,80,111,108,105,99,121,66,97,110,110,101,114,16,0,17,35,80,114,105,118,97,99,121,80,111,108,105,99,121,66,97,114,16,0,13,35,80,114,105,118,97,99,121,80,111,112,117,112,16,0,15,35,80,114,105,118,97,99,121,87,97,114,110,105,110,103,16,0,14,35,80,114,105,118,97,99,121,95,80,111,112,117,112,16,0,21,35,80,114,111,100,117,99,116,95,99,111,111,107,105,101,115,45,119,114,97,112,16,0,26,35,81,85,85,82,99,111,111,107,105,101,68,105,115,99,108,111,115,117,114,101,79,117,116,101,114,16,0,34,35,82,66,95,82,101,97,99,116,95,67,111,109,112,111,110,101,110,116,95,67,111,111,107,105,101,66,97,110,110,101,114,95,52,16,0,5,35,82,71,80,68,16,0,19,35,82,73,69,85,45,97,99,99,101,112,116,67,111,111,107,105,101,115,16,0,16,35,82,82,90,69,76,101,103,97,108,66,97,110,110,101,114,16,0,22,35,82,97,101,101,114,71,111,111,103,108,101,67,111,111,107,105,101,115,66,111,120,16,0,24,35,82,111,100,111,78,111,116,105,102,105,99,97,116,105,111,110,87,114,97,112,112,101,114,16,0,15,35,82,111,111,116,67,111,111,107,105,101,84,111,111,108,16,0,49,35,82,111,119,49,95,67,111,108,117,109,110,49,95,67,101,108,108,49,95,67,111,111,107,105,101,83,101,116,116,105,110,103,115,95,67,111,111,107,105,101,83,101,116,116,105,110,103,115,16,0,18,35,83,66,83,45,99,111,111,107,105,101,45,119,105,100,103,101,116,16,0,11,35,83,67,45,99,111,111,107,105,101,115,16,0,20,35,83,67,75,95,77,97,120,105,109,105,122,101,100,66,97,110,110,101,114,16,0,14,35,83,72,49,51,53,45,67,79,79,75,73,69,83,16,0,17,35,83,82,80,95,67,111,111,107,105,101,95,66,97,114,114,101,16,0,13,35,83,86,68,118,51,95,99,111,111,107,105,101,16,0,22,35,83,87,67,67,51,95,67,111,111,107,105,101,76,97,119,66,97,110,110,101,114,16,0,13,35,83,95,99,111,111,107,105,101,95,98,111,120,16,0,14,35,83,103,67,111,111,107,105,101,79,112,116,105,110,16,0,11,35,83,104,111,119,67,111,111,107,105,101,16,0,36,35,83,105,116,101,73,110,102,111,66,97,110,110,101,114,91,100,97,116,97,45,99,111,111,107,105,101,45,99,104,101,99,107,101,114,93,16,0,35,35,83,105,116,101,77,97,115,116,101,114,80,97,103,101,95,117,112,100,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,16,0,18,35,83,116,67,111,111,107,105,101,83,116,121,108,101,45,98,97,114,16,0,23,35,83,116,97,110,100,79,117,116,67,111,111,107,105,101,95,67,111,110,115,101,110,116,16,0,26,35,83,116,105,99,107,121,67,111,111,107,105,101,45,99,111,111,107,105,101,83,116,105,99,107,121,16,0,17,35,83,119,79,118,101,114,108,97,121,67,111,111,107,105,101,115,16,0,14,35,84,67,67,73,110,102,111,67,111,111,107,105,101,16,0,43,35,84,78,84,112,97,103,101,67,111,110,116,101,110,116,80,108,97,99,101,72,111,108,100,101,114,95,112,110,108,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,11,35,84,111,83,80,80,65,108,101,114,116,16,0,10,35,84,111,85,95,102,108,111,97,116,16,0,21,35,85,67,67,111,111,107,105,101,115,95,112,110,108,95,99,111,111,107,105,101,16,0,17,35,85,73,70,111,111,116,101,114,45,99,111,110,115,101,110,116,16,0,16,35,85,75,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,10,35,86,80,95,99,111,111,107,105,101,16,0,23,35,86,98,115,70,111,111,116,101,114,95,67,111,111,107,105,101,80,97,110,101,108,49,16,0,19,35,86,105,97,116,111,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,24,35,86,105,110,101,67,111,111,107,105,101,67,111,110,115,101,110,116,80,97,114,101,110,116,16,0,18,35,87,67,80,99,111,111,107,105,101,66,97,110,110,101,114,73,100,16,0,15,35,87,80,45,99,111,111,107,105,101,45,105,110,102,111,16,0,12,35,87,84,67,111,111,107,105,101,68,105,118,16,0,42,35,87,97,114,110,105,110,103,87,101,65,114,101,85,115,105,110,103,67,111,111,107,105,101,115,83,119,101,101,116,83,119,101,101,116,67,111,111,107,105,101,115,16,0,13,35,87,101,85,115,101,67,111,111,107,105,101,115,16,0,20,35,87,101,85,115,101,67,111,111,107,105,101,115,68,101,115,107,116,111,112,16,0,23,35,87,112,97,67,111,111,107,105,101,80,114,105,118,97,99,121,80,111,108,105,99,121,16,0,19,35,89,111,117,114,67,111,111,107,105,101,83,101,116,116,105,110,103,115,16,0,15,35,95,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,21,35,95,67,111,111,107,105,101,67,111,110,115,101,110,116,65,99,99,101,112,116,16,0,12,35,95,67,111,111,107,105,101,84,101,120,116,16,0,10,35,95,68,73,86,95,67,79,79,75,16,0,9,35,95,69,65,80,77,46,84,67,16,0,18,35,95,95,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,15,35,95,95,97,103,114,101,101,109,101,110,116,66,97,114,16,0,25,35,95,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,16,0,16,35,95,95,99,111,111,107,105,101,77,101,115,115,97,103,101,16,0,17,35,95,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,12,35,95,95,99,111,111,107,105,101,109,115,103,16,0,11,35,95,95,99,111,111,107,105,101,115,95,16,0,12,35,95,95,99,111,111,107,105,101,115,95,95,16,0,21,35,95,95,102,114,95,99,111,111,107,105,101,95,110,111,116,105,102,105,101,114,16,0,12,35,95,95,105,99,45,110,111,116,105,99,101,16,0,13,35,95,95,108,111,97,100,67,111,111,107,105,101,16,0,28,35,95,95,110,100,99,99,95,99,111,111,107,105,101,73,109,112,108,105,101,100,67,111,110,115,101,110,116,16,0,36,35,95,95,110,100,99,99,95,99,111,111,107,105,101,73,109,112,108,105,101,100,67,111,110,115,101,110,116,66,97,99,107,100,114,111,112,16,0,20,35,95,95,110,116,107,95,98,97,110,110,101,114,95,99,111,111,107,105,101,16,0,12,35,95,95,112,98,45,99,111,111,107,105,101,16,0,37,35,95,95,115,104,111,112,119,105,114,101,100,95,99,111,110,115,101,110,116,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,37,35,95,95,115,104,111,112,119,105,114,101,100,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,16,0,20,35,95,95,116,101,97,108,105,117,109,68,78,83,95,98,97,110,110,101,114,16,0,23,35,95,95,116,101,97,108,105,117,109,73,109,112,108,105,99,105,116,109,111,100,97,108,16,0,18,35,95,95,116,114,97,99,101,117,114,115,95,119,105,100,103,101,116,16,0,10,35,95,95,117,115,114,112,108,99,121,16,0,15,35,95,97,118,118,105,115,111,95,99,111,111,107,105,101,16,0,11,35,95,99,99,95,98,97,110,110,101,114,16,0,22,35,95,99,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,112,101,114,16,0,18,35,95,99,111,111,107,105,101,77,101,115,115,97,103,101,68,105,118,16,0,23,35,95,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,16,0,13,35,95,99,111,111,107,105,101,80,111,112,117,112,16,0,15,35,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,20,35,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,98,97,114,16,0,20,35,95,99,111,111,107,105,101,95,115,99,114,105,112,116,95,104,97,114,100,16,0,24,35,95,99,111,111,107,105,101,95,115,99,114,105,112,116,95,115,101,116,116,105,110,103,115,16,0,28,35,95,99,111,111,107,105,101,95,115,99,114,105,112,116,95,115,109,97,108,108,95,111,112,101,110,101,114,16,0,13,35,95,99,111,111,107,105,101,97,108,101,114,116,16,0,14,35,95,99,111,111,107,105,101,98,97,110,110,101,114,16,0,25,35,95,99,111,111,107,105,101,98,97,110,110,101,114,45,111,112,116,45,105,110,45,111,117,116,16,0,14,35,95,99,111,111,107,105,101,110,111,116,105,99,101,16,0,17,35,95,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,16,0,15,35,95,99,111,111,107,105,101,115,45,112,111,112,117,112,16,0,14,35,95,99,111,111,107,105,101,115,95,105,110,102,111,16,0,18,35,95,99,116,108,48,95,112,111,112,95,117,112,95,99,110,105,108,16,0,12,35,95,101,118,104,45,98,117,116,116,111,110,16,0,9,35,95,101,118,104,45,114,105,99,16,0,24,35,95,101,118,105,100,111,110,45,98,97,114,114,105,101,114,45,119,114,97,112,112,101,114,16,0,15,35,95,101,118,105,100,111,110,95,98,97,110,110,101,114,16,0,10,35,95,103,100,112,114,95,98,111,120,16,0,22,35,95,103,104,111,115,116,101,114,121,45,109,101,115,115,97,103,101,45,114,111,119,16,0,14,35,95,105,112,104,95,99,112,95,112,111,112,117,112,16,0,19,35,95,108,99,109,115,95,98,97,110,101,114,67,111,111,107,105,101,115,16,0,14,35,95,110,76,111,97,100,67,111,111,107,105,101,115,16,0,25,35,95,111,114,107,108,97,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,15,35,95,112,114,99,121,95,105,110,102,111,95,98,97,114,16,0,33,35,95,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,16,0,25,35,95,117,98,117,110,116,117,45,105,116,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,9,35,97,45,99,111,111,107,105,101,16,0,26,35,97,50,53,45,67,84,85,79,67,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,16,0,10,35,97,51,95,99,111,111,107,105,101,16,0,18,35,97,51,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,97,56,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,13,35,97,97,45,99,111,111,107,105,101,98,97,114,16,0,15,35,97,97,67,111,111,107,105,101,66,97,110,110,101,114,16,0,18,35,97,97,95,112,114,105,118,97,99,121,95,109,111,100,117,108,101,16,0,17,35,97,98,45,99,111,111,107,105,101,45,97,100,118,105,99,101,16,0,16,35,97,98,45,99,111,111,107,105,101,109,111,100,117,108,101,16,0,20,35,97,98,45,99,111,111,107,105,101,109,111,100,117,108,101,45,111,112,99,16,0,15,35,97,98,49,95,99,111,111,107,105,101,95,98,97,114,16,0,18,35,97,98,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,9,35,97,98,101,45,103,100,112,114,16,0,14,35,97,98,111,117,116,45,99,111,111,107,105,101,115,16,0,18,35,97,98,111,117,116,67,111,111,107,105,101,70,111,111,116,101,114,16,0,20,35,97,98,111,117,116,67,111,111,107,105,101,85,115,97,103,101,66,111,120,16,0,14,35,97,98,111,117,116,95,99,111,111,107,105,101,115,16,0,13,35,97,98,111,117,116,99,111,111,107,105,101,115,16,0,23,35,97,98,115,111,108,117,116,101,45,99,111,111,107,105,101,115,45,112,97,110,101,108,16,0,18,35,97,98,119,95,99,111,110,115,101,110,116,98,97,110,110,101,114,16,0,14,35,97,99,95,99,111,111,107,105,101,95,98,97,114,16,0,16,35,97,99,95,99,111,111,107,105,101,98,97,110,110,101,114,16,0,21,35,97,99,95,99,111,111,107,105,101,115,118,97,108,105,100,97,116,105,111,110,16,0,11,35,97,99,98,45,98,97,110,110,101,114,16,0,18,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,98,97,114,16,0,18,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,98,111,120,16,0,33,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,115,101,99,116,105,111,110,16,0,22,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,25,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,16,0,22,35,97,99,99,101,112,116,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,15,35,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,22,35,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,19,35,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,97,114,16,0,21,35,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,98,108,111,99,107,16,0,19,35,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,100,105,118,16,0,19,35,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,109,115,103,16,0,22,35,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,26,35,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,114,101,103,117,108,97,116,105,111,110,16,0,18,35,97,99,99,101,112,116,45,117,115,101,45,99,111,111,107,105,101,16,0,13,35,97,99,99,101,112,116,67,111,111,107,105,101,16,0,18,35,97,99,99,101,112,116,67,111,111,107,105,101,65,108,101,114,116,16,0,19,35,97,99,99,101,112,116,67,111,111,107,105,101,66,97,110,110,101,114,16,0,16,35,97,99,99,101,112,116,67,111,111,107,105,101,66,97,114,16,0,22,35,97,99,99,101,112,116,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,16,35,97,99,99,101,112,116,67,111,111,107,105,101,68,105,118,16,0,16,35,97,99,99,101,112,116,67,111,111,107,105,101,77,101,103,16,0,18,35,97,99,99,101,112,116,67,111,111,107,105,101,77,111,100,97,108,16,0,26,35,97,99,99,101,112,116,67,111,111,107,105,101,77,111,100,97,108,84,101,109,112,108,97,116,101,16,0,20,35,97,99,99,101,112,116,67,111,111,107,105,101,79,118,101,114,108,97,121,16,0,15,35,97,99,99,101,112,116,67,111,111,107,105,101,80,71,16,0,19,35,97,99,99,101,112,116,67,111,111,107,105,101,80,111,108,105,99,121,16,0,24,35,97,99,99,101,112,116,67,111,111,107,105,101,80,111,108,105,99,121,80,111,112,117,112,16,0,14,35,97,99,99,101,112,116,67,111,111,107,105,101,115,16,0,17,35,97,99,99,101,112,116,67,111,111,107,105,101,115,66,97,114,16,0,17,35,97,99,99,101,112,116,67,111,111,107,105,101,115,66,111,120,16,0,23,35,97,99,99,101,112,116,67,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,16,0,17,35,97,99,99,101,112,116,67,111,111,107,105,101,115,68,105,118,16,0,18,35,97,99,99,101,112,116,67,111,111,107,105,101,115,70,111,114,109,16,0,20,35,97,99,99,101,112,116,67,111,111,107,105,101,115,72,111,108,100,101,114,16,0,16,35,97,99,99,101,112,116,67,111,111,107,105,101,115,73,100,16,0,18,35,97,99,99,101,112,116,67,111,111,107,105,101,115,73,110,102,111,16,0,19,35,97,99,99,101,112,116,67,111,111,107,105,101,115,80,97,110,101,108,16,0,17,35,97,99,99,101,112,116,67,111,111,107,105,101,115,80,111,112,16,0,18,35,97,99,99,101,112,116,67,111,111,107,105,101,115,84,101,120,116,16,0,21,35,97,99,99,101,112,116,67,111,111,107,105,101,115,87,114,97,112,112,101,114,16,0,28,35,97,99,99,101,112,116,84,114,97,99,107,105,110,103,67,111,111,107,105,101,87,114,97,112,112,101,114,16,0,21,35,97,99,99,101,112,116,85,115,101,114,69,120,112,101,114,105,101,110,99,101,16,0,14,35,97,99,99,101,112,116,95,67,111,111,107,105,101,16,0,13,35,97,99,99,101,112,116,95,97,103,114,101,101,16,0,14,35,97,99,99,101,112,116,95,99,111,111,107,105,101,16,0,18,35,97,99,99,101,112,116,95,99,111,111,107,105,101,95,98,111,120,16,0,20,35,97,99,99,101,112,116,95,99,111,111,107,105,101,95,109,111,100,97,108,16,0,22,35,97,99,99,101,112,116,95,99,111,111,107,105,101,95,111,118,101,114,108,97,121,16,0,21,35,97,99,99,101,112,116,95,99,111,111,107,105,101,95,119,105,100,103,101,116,16,0,21,35,97,99,99,101,112,116,95,99,111,111,107,105,101,95,119,105,110,100,111,119,16,0,22,35,97,99,99,101,112,116,95,99,111,111,107,105,101,95,119,114,97,112,112,101,114,16,0,15,35,97,99,99,101,112,116,95,99,111,111,107,105,101,115,16,0,22,35,97,99,99,101,112,116,95,99,111,111,107,105,101,115,95,98,97,110,110,101,114,16,0,26,35,97,99,99,101,112,116,95,99,111,111,107,105,101,115,95,99,111,110,116,95,111,117,116,101,114,16,0,19,35,97,99,99,101,112,116,95,99,111,111,107,105,101,115,95,100,105,118,16,0,23,35,97,99,99,101,112,116,95,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,16,0,24,35,97,99,99,101,112,116,97,110,99,101,45,99,111,111,107,105,101,45,109,111,100,97,108,16,0,22,35,97,99,99,101,112,116,97,110,99,101,95,111,102,95,99,111,111,107,105,101,115,16,0,13,35,97,99,99,101,112,116,99,111,111,107,105,101,16,0,18,35,97,99,99,101,112,116,99,111,111,107,105,101,97,108,101,114,116,16,0,14,35,97,99,99,101,112,116,99,111,111,107,105,101,115,16,0,21,35,97,99,99,101,112,116,99,111,111,107,105,101,115,87,114,97,112,112,101,114,16,0,21,35,97,99,99,101,112,116,99,111,111,107,105,101,115,119,114,97,112,112,101,114,16,0,15,35,97,99,99,101,112,116,101,67,111,111,107,105,101,115,16,0,16,35,97,99,99,101,112,116,101,95,99,111,111,107,105,101,115,16,0,16,35,97,99,99,101,112,116,101,100,67,111,111,107,105,101,115,16,0,17,35,97,99,99,101,112,116,101,100,95,99,111,111,107,105,101,115,16,0,15,35,97,99,99,101,112,116,101,114,67,111,111,107,105,101,16,0,16,35,97,99,99,101,112,116,101,114,67,111,111,107,105,101,115,16,0,24,35,97,99,99,101,115,115,105,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,15,35,97,99,99,101,116,116,97,95,99,111,111,107,105,101,16,0,16,35,97,99,99,101,116,116,97,95,99,111,111,107,105,101,115,16,0,22,35,97,99,99,101,116,116,97,122,105,111,110,101,67,111,111,107,105,101,67,110,116,16,0,19,35,97,99,99,110,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,14,35,97,99,101,105,116,97,67,111,111,107,105,101,115,16,0,18,35,97,99,101,112,116,97,99,105,111,110,99,111,111,107,105,101,115,16,0,14,35,97,99,101,112,116,97,114,67,111,111,107,105,101,16,0,16,35,97,99,101,112,116,97,114,95,99,111,111,107,105,101,115,16,0,14,35,97,99,101,112,116,97,114,99,111,111,107,105,101,16,0,21,35,97,99,101,112,116,97,114,99,111,111,107,105,101,115,95,102,111,110,100,111,16,0,16,35,97,99,107,99,111,111,107,105,101,45,112,111,112,117,112,16,0,34,35,97,99,107,110,111,119,108,101,100,103,101,67,111,111,107,105,101,115,65,110,100,80,114,105,118,97,99,121,77,111,100,97,108,16,0,20,35,97,99,107,110,111,119,108,101,100,103,101,95,99,111,111,107,105,101,115,16,0,12,35,97,99,109,112,45,111,112,116,45,105,110,16,0,9,35,97,99,110,95,99,111,111,107,16,0,14,35,97,99,111,111,107,46,112,114,105,118,97,99,121,16,0,8,35,97,99,111,111,107,105,101,16,0,9,35,97,99,111,111,107,105,101,115,16,0,13,35,97,99,111,111,107,105,101,115,82,111,111,116,16,0,40,35,97,99,114,105,115,45,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,45,109,111,100,97,108,45,111,118,101,114,108,97,121,16,0,36,35,97,99,114,105,115,45,45,112,97,103,101,45,119,114,97,112,45,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,16,0,27,35,97,99,114,105,115,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,112,111,112,117,112,16,0,20,35,97,99,117,97,114,101,108,97,45,99,111,111,107,105,101,45,98,97,114,16,0,13,35,97,100,45,99,111,111,107,105,101,66,97,114,16,0,28,35,97,100,99,95,97,118,105,115,111,95,99,111,111,107,105,101,115,95,98,97,114,95,115,116,121,108,101,16,0,10,35,97,100,99,111,111,107,105,101,115,16,0,17,35,97,100,100,67,111,111,107,105,101,66,97,114,73,110,102,111,16,0,13,35,97,100,105,109,111,45,99,111,111,107,105,101,16,0,24,35,97,100,109,111,114,114,105,115,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,19,35,97,100,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,10,35,97,100,115,99,111,111,107,105,101,16,0,23,35,97,100,115,101,110,115,101,45,99,111,110,115,116,101,110,116,45,109,111,100,97,108,16,0,23,35,97,100,115,105,109,112,108,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,16,35,97,100,116,111,110,105,113,45,109,115,103,45,98,97,114,16,0,18,35,97,100,117,108,116,45,97,110,100,45,99,111,111,107,105,101,115,16,0,11,35,97,100,118,95,99,111,111,107,105,101,16,0,12,35,97,100,118,95,99,111,111,107,105,101,115,16,0,22,35,97,100,118,101,114,116,105,115,101,109,101,110,116,45,99,111,111,107,105,101,115,16,0,20,35,97,100,118,103,100,112,114,112,111,112,105,110,45,103,108,111,98,97,108,16,0,14,35,97,100,118,105,99,101,67,111,111,107,105,101,115,16,0,14,35,97,100,118,105,115,101,67,111,111,107,105,101,115,16,0,20,35,97,100,118,109,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,13,35,97,101,45,99,111,111,107,105,101,98,97,114,16,0,21,35,97,101,45,114,117,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,18,35,97,101,103,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,11,35,97,101,117,99,108,46,115,104,111,119,16,0,17,35,97,102,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,23,35,97,102,67,111,111,107,105,101,67,111,110,116,114,111,108,45,110,111,116,105,99,101,16,0,21,35,97,102,67,111,111,107,105,101,67,111,110,116,114,111,108,45,115,104,111,119,16,0,15,35,97,102,95,99,111,111,107,105,101,115,45,98,97,114,16,0,19,35,97,102,102,105,99,104,101,66,97,110,100,101,97,117,82,103,112,100,16,0,10,35,97,103,97,110,95,103,100,112,114,16,0,21,35,97,103,114,101,101,45,116,111,45,117,115,101,45,99,111,111,107,105,101,115,16,0,19,35,97,103,114,101,101,45,119,105,116,104,45,99,111,111,107,105,101,115,16,0,12,35,97,103,114,101,101,67,111,111,107,105,101,16,0,19,35,97,103,114,101,101,78,111,116,105,99,101,87,114,97,112,112,101,114,16,0,17,35,97,103,114,101,101,87,105,116,104,67,111,111,107,105,101,115,16,0,17,35,97,103,114,101,101,95,99,111,111,107,105,101,95,100,105,118,16,0,14,35,97,103,114,101,101,95,99,111,111,107,105,101,115,16,0,21,35,97,103,114,101,101,95,112,114,105,118,97,99,121,95,112,111,108,105,99,121,16,0,13,35,97,103,114,101,101,99,111,111,107,105,101,115,16,0,17,35,97,103,114,101,101,109,101,110,116,80,114,105,118,97,99,121,16,0,26,35,97,103,114,105,111,95,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,19,35,97,104,104,103,45,99,111,111,107,105,101,45,98,117,116,116,111,110,16,0,19,35,97,104,104,103,45,99,111,111,107,105,101,45,119,105,110,100,111,119,16,0,19,35,97,105,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,17,35,97,105,100,97,45,99,111,111,107,105,101,115,45,98,97,114,16,0,13,35,97,105,103,110,101,115,99,111,111,107,105,101,16,0,23,35,97,105,111,45,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,19,35,97,106,97,120,67,111,111,107,105,101,115,77,101,115,115,97,103,101,16,0,27,35,97,106,97,120,83,116,121,108,101,74,97,109,67,111,111,107,105,101,115,77,101,115,115,97,103,101,16,0,28,35,97,106,97,120,95,99,111,111,107,105,101,115,95,117,115,97,103,101,95,97,112,112,114,111,118,97,108,16,0,19,35,97,107,99,101,112,116,97,99,106,97,95,99,111,111,107,105,101,115,16,0,13,35,97,107,99,101,112,116,99,111,111,107,105,101,16,0,21,35,97,108,100,105,45,110,111,114,100,45,99,111,111,107,105,101,104,105,110,116,16,0,15,35,97,108,101,114,116,45,98,105,115,99,111,116,116,105,16,0,11,35,97,108,101,114,116,45,99,110,105,108,16,0,13,35,97,108,101,114,116,45,99,111,111,107,105,101,16,0,18,35,97,108,101,114,116,45,99,111,111,107,105,101,45,104,105,110,116,16,0,22,35,97,108,101,114,116,45,99,111,111,107,105,101,45,105,110,102,111,45,98,97,114,16,0,18,35,97,108,101,114,116,45,99,111,111,107,105,101,45,108,103,112,100,16,0,20,35,97,108,101,114,116,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,18,35,97,108,101,114,116,45,99,111,111,107,105,101,45,112,114,111,102,16,0,14,35,97,108,101,114,116,45,99,111,111,107,105,101,115,16,0,20,35,97,108,101,114,116,45,99,111,111,107,105,101,115,45,116,111,97,115,116,16,0,17,35,97,108,101,114,116,45,101,117,45,99,111,111,107,105,101,115,16,0,21,35,97,108,101,114,116,45,112,114,105,118,97,99,121,45,117,112,100,97,116,101,16,0,12,35,97,108,101,114,116,67,111,111,107,105,101,16,0,18,35,97,108,101,114,116,67,111,111,107,105,101,80,111,108,105,99,121,16,0,13,35,97,108,101,114,116,67,111,111,107,105,101,115,16,0,27,35,97,108,101,114,116,77,101,110,116,105,111,110,67,111,111,107,105,101,115,77,101,115,115,97,103,101,16,0,9,35,97,108,101,114,116,84,111,112,16,0,13,35,97,108,101,114,116,95,99,111,111,107,105,101,16,0,17,35,97,108,101,114,116,95,99,111,111,107,105,101,95,109,115,103,16,0,19,35,97,108,101,114,116,95,99,111,111,107,105,101,95,111,112,116,105,110,16,0,19,35,97,108,101,114,116,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,20,35,97,108,101,114,116,95,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,14,35,97,108,101,114,116,95,99,111,111,107,105,101,115,16,0,15,35,97,108,101,114,116,97,45,99,111,111,107,105,101,115,16,0,15,35,97,108,101,114,116,97,95,99,111,111,107,105,101,115,16,0,13,35,97,108,101,114,116,97,99,111,111,107,105,101,16,0,12,35,97,108,101,114,116,99,111,111,107,105,101,16,0,13,35,97,108,101,114,116,99,111,111,107,105,101,115,16,0,14,35,97,108,101,114,116,101,45,99,111,111,107,105,101,16,0,15,35,97,108,101,114,116,101,45,99,111,111,107,105,101,115,16,0,12,35,97,108,101,114,116,101,95,99,110,105,108,16,0,14,35,97,108,101,114,116,101,95,99,111,111,107,105,101,16,0,15,35,97,108,101,114,116,101,95,99,111,111,107,105,101,115,16,0,16,35,97,108,101,114,116,101,95,116,114,97,99,107,105,110,103,16,0,23,35,97,108,101,114,116,112,111,112,45,112,114,105,118,97,99,121,112,111,108,105,99,121,16,0,14,35,97,108,101,114,116,115,45,112,111,108,105,99,121,16,0,34,35,97,108,108,52,103,110,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,25,35,97,108,108,52,110,97,118,45,99,111,111,107,105,101,45,99,111,109,112,111,110,101,110,116,16,0,35,35,97,108,108,52,110,97,118,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,97,108,108,111,119,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,21,35,97,108,108,111,119,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,20,35,97,108,108,111,119,45,99,111,111,107,105,101,115,45,112,111,112,117,112,16,0,15,35,97,108,108,111,119,67,111,111,107,105,101,68,105,118,16,0,15,35,97,108,108,111,119,67,111,111,107,105,101,77,115,103,16,0,17,35,97,108,108,111,119,67,111,111,107,105,101,84,121,112,101,115,16,0,13,35,97,108,108,111,119,67,111,111,107,105,101,115,16,0,18,35,97,108,108,111,119,67,111,111,107,105,101,115,80,111,112,117,112,16,0,27,35,97,108,108,111,119,77,97,114,107,101,116,105,110,103,67,111,111,107,105,101,115,95,99,111,110,116,16,0,20,35,97,108,108,111,119,95,99,111,111,107,105,101,95,104,111,108,100,101,114,16,0,14,35,97,108,108,111,119,95,99,111,111,107,105,101,115,16,0,24,35,97,108,108,111,119,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,16,0,12,35,97,108,108,111,119,99,111,111,107,105,101,16,0,25,35,97,108,108,111,119,99,111,111,107,105,101,97,110,100,116,104,105,114,100,112,97,114,116,121,16,0,18,35,97,108,108,111,119,99,111,111,107,105,101,98,97,110,110,101,114,16,0,16,35,97,108,108,111,119,117,115,101,99,111,111,107,105,101,115,16,0,21,35,97,108,112,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,17,35,97,108,115,98,95,67,78,73,76,95,110,111,116,105,99,101,16,0,21,35,97,108,116,67,111,111,107,105,101,80,111,108,105,99,121,76,101,103,97,108,16,0,24,35,97,108,116,101,97,45,99,111,111,107,105,101,98,111,120,45,119,114,97,112,112,101,114,16,0,22,35,97,108,116,101,114,110,101,116,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,10,35,97,109,45,99,111,111,107,105,101,16,0,9,35,97,109,50,45,103,100,112,114,16,0,15,35,97,109,99,99,111,111,107,105,101,115,45,98,97,114,16,0,17,35,97,109,99,111,111,107,105,101,97,112,112,114,111,118,97,108,16,0,20,35,97,109,100,115,45,99,111,111,107,105,101,45,108,97,121,111,118,101,114,16,0,20,35,97,109,100,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,19,35,97,109,103,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,20,35,97,109,103,100,112,114,45,99,111,111,107,105,101,45,98,108,111,99,107,16,0,16,35,97,109,112,45,117,115,101,114,45,99,111,111,107,105,101,16,0,30,35,97,109,112,45,117,115,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,115,16,0,30,35,97,109,112,45,117,115,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,45,112,114,105,118,97,99,121,16,0,18,35,97,110,97,108,121,116,105,99,115,45,99,111,110,115,101,110,116,16,0,26,35,97,110,97,108,121,116,105,99,115,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,16,0,17,35,97,110,97,108,121,116,105,99,115,95,99,111,111,107,105,101,16,0,10,35,97,110,100,99,111,111,107,105,101,16,0,22,35,97,110,100,121,116,105,109,101,115,95,112,114,105,118,97,99,121,95,100,105,118,16,0,23,35,97,110,110,111,117,110,99,101,109,101,110,116,45,101,117,45,99,111,111,107,105,101,16,0,25,35,97,110,110,111,117,110,99,101,109,101,110,116,45,101,117,99,111,111,107,105,101,108,97,119,16,0,21,35,97,110,110,111,117,110,99,101,109,101,110,116,101,67,111,111,107,105,101,115,16,0,22,35,97,110,110,111,121,105,110,103,95,99,111,111,107,105,101,95,97,108,101,114,116,16,0,20,35,97,110,110,111,121,105,110,103,101,117,99,111,111,107,105,101,109,115,103,16,0,14,35,97,110,116,105,108,108,101,115,45,103,100,112,114,16,0,14,35,97,110,117,110,116,95,99,111,111,107,105,101,115,16,0,14,35,97,110,121,45,99,111,111,107,105,101,66,97,114,16,0,22,35,97,110,122,101,105,103,101,110,45,101,105,110,119,105,108,108,105,103,117,110,103,16,0,16,35,97,111,45,67,111,111,107,105,101,80,111,108,105,99,121,16,0,15,35,97,111,67,111,111,107,105,101,80,111,108,105,99,121,16,0,22,35,97,111,110,99,111,111,107,105,101,99,111,110,115,101,110,116,112,111,112,117,112,16,0,15,35,97,112,45,99,111,111,107,105,101,45,119,97,108,108,16,0,18,35,97,112,45,99,111,111,107,105,101,115,67,111,110,102,105,114,109,16,0,18,35,97,112,95,99,111,111,107,105,101,95,116,111,111,108,98,97,114,16,0,18,35,97,112,97,99,104,101,45,99,111,111,107,105,101,45,98,97,114,16,0,11,35,97,112,99,99,111,111,107,105,101,115,16,0,14,35,97,112,101,120,95,99,111,111,107,105,101,95,48,16,0,15,35,97,112,112,32,62,32,35,99,111,111,107,105,101,115,16,0,14,35,97,112,112,32,62,32,46,99,111,111,107,105,101,16,0,15,35,97,112,112,32,62,32,46,99,111,111,107,105,101,115,16,0,11,35,97,112,112,45,99,111,111,107,105,101,16,0,15,35,97,112,112,45,99,111,111,107,105,101,45,98,97,114,16,0,15,35,97,112,112,45,99,111,111,107,105,101,45,100,105,118,16,0,18,35,97,112,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,22,35,97,112,112,45,112,97,103,101,45,115,105,116,101,45,99,111,111,107,105,101,115,16,0,9,35,97,112,112,95,103,100,112,114,16,0,18,35,97,112,112,105,102,121,45,99,111,111,107,105,101,45,98,97,114,16,0,15,35,97,112,112,108,121,67,111,111,107,105,101,66,111,120,16,0,22,35,97,112,112,120,95,99,111,111,107,105,101,95,98,97,110,110,101,114,95,101,117,16,0,22,35,97,114,99,104,105,101,45,119,105,100,103,101,116,45,112,114,105,118,97,99,121,16,0,12,35,97,114,101,97,45,99,111,111,107,105,101,16,0,16,35,97,114,101,97,45,99,111,111,107,105,101,50,48,50,49,16,0,23,35,97,114,101,97,45,99,111,111,107,105,101,50,48,50,49,45,115,102,111,110,100,111,16,0,20,35,97,114,101,97,95,99,111,111,107,105,101,95,99,111,110,116,114,111,108,16,0,13,35,97,114,101,97,95,99,111,111,107,105,101,115,16,0,12,35,97,114,105,97,45,112,111,108,105,99,121,16,0,24,35,97,114,107,67,111,111,107,105,101,115,80,114,105,118,97,99,121,80,111,108,105,99,121,16,0,27,35,97,114,107,111,67,110,105,108,84,114,97,99,107,105,110,103,45,99,111,110,116,101,110,101,117,114,16,0,30,35,97,114,109,95,117,115,101,114,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,112,111,112,117,112,16,0,19,35,97,114,116,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,27,35,97,114,117,98,97,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,112,111,112,117,112,16,0,23,35,97,114,122,45,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,16,0,15,35,97,115,45,97,112,112,45,99,111,111,107,105,101,115,16,0,17,35,97,115,45,99,111,111,107,105,101,45,99,117,116,116,101,114,16,0,21,35,97,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,114,16,0,14,35,97,115,99,95,99,104,95,99,111,111,107,105,101,16,0,17,35,97,115,105,100,101,95,99,111,111,107,105,101,95,112,111,108,16,0,16,35,97,115,107,45,103,100,112,114,45,99,111,111,107,105,101,16,0,11,35,97,115,107,67,111,111,107,105,101,115,16,0,24,35,97,115,107,70,111,114,67,111,111,107,105,101,115,66,97,99,107,103,114,111,117,110,100,16,0,19,35,97,115,107,84,111,65,99,99,101,112,116,67,111,111,107,105,101,115,16,0,15,35,97,115,107,95,99,111,111,107,105,101,95,108,111,119,16,0,14,35,97,115,107,95,99,111,111,107,105,101,95,111,107,16,0,8,35,97,115,107,99,111,111,107,16,0,11,35,97,115,107,99,111,111,107,105,101,115,16,0,13,35,97,115,107,102,111,114,99,111,111,107,105,101,16,0,22,35,97,115,116,101,114,105,120,95,99,111,111,107,105,101,95,119,105,100,103,101,116,16,0,18,35,97,116,101,95,99,111,111,107,105,101,95,100,105,97,108,111,103,16,0,21,35,97,116,103,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,16,0,20,35,97,116,108,97,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,15,35,97,116,116,97,105,110,45,99,111,111,107,105,101,115,16,0,17,35,97,116,116,101,110,116,105,111,110,67,111,111,107,105,101,115,16,0,18,35,97,116,116,101,110,116,105,111,110,95,99,111,111,107,105,101,115,16,0,16,35,97,117,95,99,111,111,107,105,101,115,97,108,101,114,116,16,0,22,35,97,117,116,104,80,111,112,117,112,80,111,108,105,99,121,66,97,110,110,101,114,16,0,17,35,97,117,116,111,101,115,99,97,112,101,99,111,111,107,105,101,16,0,19,35,97,117,116,111,114,105,115,97,116,105,111,110,67,111,111,107,105,101,16,0,18,35,97,118,99,110,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,14,35,97,118,99,110,115,45,119,114,97,112,112,101,114,16,0,26,35,97,118,101,110,99,121,45,110,101,111,115,45,99,111,111,107,105,101,101,110,97,98,108,101,114,16,0,14,35,97,118,101,114,116,95,99,111,111,107,105,101,115,16,0,13,35,97,118,101,114,116,99,111,111,107,98,105,115,16,0,22,35,97,118,101,114,116,105,115,115,101,109,101,110,116,45,99,111,111,107,105,101,115,16,0,18,35,97,118,101,114,116,105,115,115,101,109,101,110,116,67,78,73,76,16,0,21,35,97,118,101,114,116,105,115,115,101,109,101,110,116,67,111,111,107,105,101,115,16,0,21,35,97,118,101,114,116,105,115,115,101,109,101,110,116,95,99,111,111,107,105,101,16,0,22,35,97,118,101,114,116,105,115,115,101,109,101,110,116,95,99,111,111,107,105,101,115,16,0,15,35,97,118,101,114,116,111,45,99,111,111,107,105,101,115,16,0,15,35,97,118,103,45,99,111,111,107,105,101,45,98,97,114,16,0,22,35,97,118,103,45,99,111,111,107,105,101,45,98,97,114,45,104,111,108,100,101,114,16,0,17,35,97,118,103,45,99,111,111,107,105,101,98,97,110,110,101,114,16,0,17,35,97,118,103,79,112,116,73,110,45,119,114,97,112,112,101,114,16,0,17,35,97,118,104,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,12,35,97,118,105,97,110,67,111,111,107,105,101,16,0,13,35,97,118,105,115,45,99,111,111,107,105,101,115,16,0,12,35,97,118,105,115,67,111,111,107,105,101,115,16,0,13,35,97,118,105,115,95,99,111,99,107,105,101,115,16,0,13,35,97,118,105,115,95,99,111,111,107,105,101,115,16,0,12,35,97,118,105,115,99,111,111,107,105,101,115,16,0,13,35,97,118,105,115,111,45,98,97,110,110,101,114,16,0,9,35,97,118,105,115,111,45,99,107,16,0,10,35,97,118,105,115,111,45,99,111,111,16,0,13,35,97,118,105,115,111,45,99,111,111,107,105,101,16,0,18,35,97,118,105,115,111,45,99,111,111,107,105,101,45,108,103,112,100,16,0,14,35,97,118,105,115,111,45,99,111,111,107,105,101,115,16,0,11,35,97,118,105,115,111,45,108,103,112,100,16,0,18,35,97,118,105,115,111,45,110,97,118,101,103,97,100,111,114,101,115,16,0,22,35,97,118,105,115,111,45,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,16,0,27,35,97,118,105,115,111,45,112,111,108,105,116,105,99,97,45,112,114,105,118,97,99,105,100,97,100,101,16,0,18,35,97,118,105,115,111,45,112,114,105,118,97,99,105,100,97,100,101,16,0,12,35,97,118,105,115,111,67,111,111,107,105,101,16,0,13,35,97,118,105,115,111,67,111,111,107,105,101,115,16,0,18,35,97,118,105,115,111,67,111,111,107,105,101,115,76,97,121,101,114,16,0,10,35,97,118,105,115,111,76,71,80,68,16,0,16,35,97,118,105,115,111,85,115,111,67,111,111,107,105,101,115,16,0,13,35,97,118,105,115,111,95,99,111,111,107,105,101,16,0,14,35,97,118,105,115,111,95,99,111,111,107,105,101,115,16,0,11,35,97,118,105,115,111,95,108,103,112,100,16,0,14,35,97,118,105,115,111,99,111,111,99,107,105,101,115,16,0,12,35,97,118,105,115,111,99,111,111,107,105,101,16,0,13,35,97,118,105,115,111,99,111,111,107,105,101,115,16,0,18,35,97,118,105,115,111,108,101,103,97,108,99,111,111,107,105,101,115,16,0,10,35,97,118,105,115,111,108,103,112,100,16,0,11,35,97,118,115,45,99,111,111,107,105,101,16,0,17,35,97,118,116,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,13,35,97,118,118,105,115,111,67,111,111,107,105,101,16,0,14,35,97,118,118,105,115,111,95,99,111,111,107,105,101,16,0,12,35,97,118,118,105,115,111,99,117,99,104,105,16,0,20,35,97,119,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,97,119,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,17,35,97,119,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,18,35,97,119,101,45,112,111,112,105,110,45,99,111,111,107,105,101,115,16,0,11,35,97,119,101,95,99,111,111,107,105,101,16,0,15,35,97,119,115,99,99,99,45,115,98,45,117,120,45,99,16,0,20,35,97,120,97,45,97,99,99,101,112,116,101,100,45,99,111,111,107,105,101,16,0,18,35,97,120,115,95,99,111,111,107,105,101,95,116,111,103,103,108,101,16,0,20,35,98,45,99,111,111,107,105,101,46,98,97,114,114,101,45,104,101,97,100,16,0,15,35,98,49,52,45,99,111,111,107,105,101,109,101,110,117,16,0,13,35,98,67,111,111,107,105,101,83,108,105,100,101,16,0,17,35,98,74,83,95,99,111,111,107,105,101,66,97,110,110,101,114,16,0,17,35,98,97,95,101,117,95,99,111,111,107,105,101,95,108,97,119,16,0,13,35,98,97,98,97,111,114,117,109,45,98,97,114,16,0,17,35,98,97,99,107,66,108,97,99,107,67,111,111,107,105,101,115,16,0,16,35,98,97,99,107,80,111,112,117,112,67,111,111,107,105,101,16,0,17,35,98,97,99,107,99,111,108,111,114,99,111,111,107,105,101,115,16,0,23,35,98,97,99,107,100,114,111,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,19,35,98,97,99,107,103,114,111,117,110,100,45,99,111,111,107,105,101,115,16,0,11,35,98,97,110,45,99,111,111,107,105,101,16,0,21,35,98,97,110,45,109,101,110,116,105,111,110,115,45,108,101,103,97,108,101,115,16,0,9,35,98,97,110,95,114,103,112,100,16,0,13,35,98,97,110,100,45,99,111,111,107,105,101,115,16,0,13,35,98,97,110,100,97,95,99,111,111,107,105,101,16,0,12,35,98,97,110,100,97,99,111,111,107,105,101,16,0,10,35,98,97,110,100,101,97,117,45,99,16,0,13,35,98,97,110,100,101,97,117,45,99,110,105,108,16,0,15,35,98,97,110,100,101,97,117,45,99,111,111,107,105,101,16,0,16,35,98,97,110,100,101,97,117,45,99,111,111,107,105,101,115,16,0,22,35,98,97,110,100,101,97,117,45,100,120,108,97,98,115,45,99,111,111,107,105,101,16,0,13,35,98,97,110,100,101,97,117,45,114,103,112,100,16,0,15,35,98,97,110,100,101,97,117,50,99,111,111,107,105,101,16,0,26,35,98,97,110,100,101,97,117,65,99,99,101,112,116,97,116,105,111,110,67,111,111,107,105,101,115,16,0,22,35,98,97,110,100,101,97,117,65,99,99,101,112,116,101,114,67,111,111,107,105,101,16,0,19,35,98,97,110,100,101,97,117,67,104,111,105,120,67,111,111,107,105,101,16,0,12,35,98,97,110,100,101,97,117,67,110,105,108,16,0,14,35,98,97,110,100,101,97,117,67,111,111,107,105,101,16,0,19,35,98,97,110,100,101,97,117,67,111,111,107,105,101,73,100,119,101,98,16,0,15,35,98,97,110,100,101,97,117,67,111,111,107,105,101,115,16,0,12,35,98,97,110,100,101,97,117,95,99,103,118,16,0,13,35,98,97,110,100,101,97,117,95,99,110,105,108,16,0,15,35,98,97,110,100,101,97,117,95,99,111,111,107,105,101,16,0,20,35,98,97,110,100,101,97,117,95,99,111,111,107,105,101,95,99,110,105,108,16,0,16,35,98,97,110,100,101,97,117,95,99,111,111,107,105,101,115,16,0,23,35,98,97,110,100,101,97,117,95,99,111,111,107,105,101,115,95,102,111,111,116,101,114,16,0,23,35,98,97,110,100,101,97,117,95,99,111,111,107,105,101,115,95,111,110,108,105,110,101,16,0,13,35,98,97,110,100,101,97,117,95,105,110,102,111,16,0,21,35,98,97,110,100,101,97,117,95,112,111,112,105,110,95,99,111,111,107,105,101,16,0,22,35,98,97,110,100,101,97,117,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,15,35,98,97,110,100,101,97,117,99,111,111,107,105,101,115,16,0,10,35,98,97,110,110,45,99,111,111,107,16,0,22,35,98,97,110,110,101,114,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,14,35,98,97,110,110,101,114,45,99,111,111,107,105,101,16,0,21,35,98,97,110,110,101,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,22,35,98,97,110,110,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,18,35,98,97,110,110,101,114,45,99,111,111,107,105,101,45,108,97,119,16,0,26,35,98,97,110,110,101,114,45,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,98,111,120,16,0,30,35,98,97,110,110,101,114,45,99,111,111,107,105,101,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,15,35,98,97,110,110,101,114,45,99,111,111,107,105,101,115,16,0,24,35,98,97,110,110,101,114,45,102,108,111,116,97,110,116,101,45,99,111,111,107,105,101,115,16,0,12,35,98,97,110,110,101,114,45,103,100,112,114,16,0,32,35,98,97,110,110,101,114,45,103,100,112,114,45,112,97,108,97,122,122,105,110,97,45,99,111,110,116,97,105,110,101,114,16,0,12,35,98,97,110,110,101,114,45,108,103,112,100,16,0,24,35,98,97,110,110,101,114,45,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,16,0,15,35,98,97,110,110,101,114,46,99,111,111,107,105,101,115,16,0,11,35,98,97,110,110,101,114,67,78,73,76,16,0,11,35,98,97,110,110,101,114,67,110,105,108,16,0,13,35,98,97,110,110,101,114,67,111,111,107,105,101,16,0,22,35,98,97,110,110,101,114,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,16,35,98,97,110,110,101,114,67,111,111,107,105,101,76,97,119,16,0,16,35,98,97,110,110,101,114,67,111,111,107,105,101,80,111,108,16,0,14,35,98,97,110,110,101,114,67,111,111,107,105,101,115,16,0,21,35,98,97,110,110,101,114,67,111,111,107,105,101,115,77,111,115,116,114,97,114,16,0,11,35,98,97,110,110,101,114,76,71,80,68,16,0,11,35,98,97,110,110,101,114,76,103,112,100,16,0,17,35,98,97,110,110,101,114,95,99,107,95,112,111,108,105,99,121,16,0,12,35,98,97,110,110,101,114,95,99,110,105,108,16,0,23,35,98,97,110,110,101,114,95,99,111,110,115,101,110,115,111,95,99,111,111,107,105,101,16,0,14,35,98,97,110,110,101,114,95,99,111,111,107,105,101,16,0,22,35,98,97,110,110,101,114,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,16,0,17,35,98,97,110,110,101,114,95,99,111,111,107,105,101,98,97,114,16,0,15,35,98,97,110,110,101,114,95,99,111,111,107,105,101,115,16,0,27,35,98,97,110,110,101,114,95,99,111,111,107,105,101,115,95,116,114,97,115,112,97,114,101,110,116,101,16,0,12,35,98,97,110,110,101,114,95,108,103,112,100,16,0,15,35,98,97,110,110,101,114,95,112,114,105,118,97,99,121,16,0,21,35,98,97,110,110,101,114,95,112,114,105,118,97,99,121,95,98,108,105,116,122,16,0,12,35,98,97,110,110,101,114,95,114,103,112,100,16,0,18,35,98,97,110,110,101,114,95,116,111,112,95,99,111,111,107,105,101,16,0,13,35,98,97,110,110,101,114,99,111,111,107,105,101,16,0,14,35,98,97,110,110,101,114,99,111,111,107,105,101,115,16,0,14,35,98,97,110,110,101,114,112,114,105,118,97,99,121,16,0,16,35,98,97,110,110,105,101,114,101,45,99,111,111,107,105,101,16,0,17,35,98,97,110,110,105,101,114,101,45,99,111,111,107,105,101,115,16,0,41,35,98,97,110,110,105,101,114,101,95,105,110,102,111,114,109,97,116,105,111,110,95,117,116,105,108,105,115,97,116,105,111,110,95,99,111,111,107,105,101,115,16,0,19,35,98,97,110,114,118,95,99,111,111,107,105,101,99,111,111,107,105,101,16,0,19,35,98,97,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,12,35,98,97,114,45,99,111,111,107,105,101,115,16,0,18,35,98,97,114,45,104,101,97,100,101,114,45,99,111,111,107,105,101,16,0,12,35,98,97,114,45,112,114,105,118,97,99,121,16,0,22,35,98,97,114,45,122,111,110,101,45,99,111,111,107,105,101,45,117,115,97,103,101,16,0,20,35,98,97,114,65,103,114,101,101,87,105,116,104,67,111,111,107,105,101,115,16,0,12,35,98,97,114,95,99,111,111,107,105,101,115,16,0,19,35,98,97,114,97,95,109,101,115,97,106,101,95,99,111,111,107,105,101,16,0,12,35,98,97,114,97,99,111,111,107,105,101,115,16,0,14,35,98,97,114,114,97,45,99,111,111,107,105,101,115,16,0,11,35,98,97,114,114,97,45,108,103,112,100,16,0,23,35,98,97,114,114,97,65,99,101,112,116,97,99,105,111,110,67,111,111,107,105,101,115,16,0,12,35,98,97,114,114,97,67,79,79,75,73,69,16,0,13,35,98,97,114,114,97,67,111,111,107,105,101,115,16,0,15,35,98,97,114,114,97,95,97,99,99,101,112,116,97,114,16,0,20,35,98,97,114,114,97,95,97,118,105,115,111,95,99,111,111,107,105,101,115,16,0,13,35,98,97,114,114,97,95,99,111,111,107,105,101,16,0,14,35,98,97,114,114,97,95,99,111,111,107,105,101,115,16,0,17,35,98,97,114,114,97,95,100,101,105,95,99,111,111,107,105,101,16,0,19,35,98,97,114,114,97,95,108,101,103,97,108,95,99,111,111,107,105,101,16,0,15,35,98,97,114,114,97,97,99,101,112,116,97,99,105,111,16,0,16,35,98,97,114,114,97,97,99,101,112,116,97,99,105,111,110,16,0,11,35,98,97,114,114,97,97,118,105,115,111,16,0,10,35,98,97,114,114,97,99,111,107,105,16,0,12,35,98,97,114,114,97,99,111,111,107,105,101,16,0,13,35,98,97,114,114,97,99,111,111,107,105,101,115,16,0,13,35,98,97,114,114,101,45,99,111,111,107,105,101,16,0,18,35,98,97,114,114,101,65,108,101,114,116,101,67,111,111,107,105,101,16,0,12,35,98,97,114,114,101,67,111,111,107,105,101,16,0,14,35,98,97,114,114,101,95,95,99,111,111,107,105,101,16,0,13,35,98,97,114,114,101,95,99,111,111,107,105,101,16,0,28,35,98,97,114,114,101,95,99,111,111,107,105,101,95,99,111,110,116,101,110,117,95,99,101,110,116,114,101,16,0,14,35,98,97,114,114,101,95,99,111,111,107,105,101,115,16,0,23,35,98,97,114,114,101,95,102,108,111,116,116,97,110,116,101,95,99,111,111,107,105,101,16,0,21,35,98,97,114,114,101,95,108,101,103,97,108,101,95,99,111,111,107,105,101,115,16,0,21,35,98,97,114,114,101,95,116,111,112,95,115,101,99,111,110,100,97,105,114,101,16,0,14,35,98,97,114,114,105,116,97,99,111,111,107,105,101,16,0,15,35,98,97,114,114,105,116,97,99,111,111,107,105,101,115,16,0,12,35,98,97,114,114,105,116,97,108,111,99,97,16,0,18,35,98,97,115,97,108,67,111,111,107,105,101,70,111,111,116,101,114,16,0,18,35,98,97,117,101,114,67,111,111,107,105,101,80,111,108,105,99,121,16,0,24,35,98,97,117,101,114,67,111,111,107,105,101,80,111,108,105,99,121,66,97,110,110,101,114,16,0,11,35,98,98,95,99,111,111,107,105,101,115,16,0,11,35,98,98,99,99,111,111,107,105,101,115,16,0,11,35,98,98,99,100,66,97,110,110,101,114,16,0,25,35,98,98,104,95,103,100,112,114,95,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,16,0,12,35,98,98,116,67,111,111,107,105,101,66,71,16,0,17,35,98,98,120,95,109,111,100,97,108,95,99,111,111,107,105,101,16,0,17,35,98,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,17,35,98,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,10,35,98,99,67,111,111,107,105,101,115,16,0,17,35,98,99,95,99,111,111,107,105,101,99,111,110,116,114,111,108,16,0,19,35,98,99,98,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,15,35,98,99,99,45,99,111,111,107,105,101,45,98,97,114,16,0,26,35,98,99,109,115,67,111,111,107,105,101,73,110,102,111,84,101,120,116,87,114,97,112,112,101,114,16,0,22,35,98,99,109,115,67,111,111,107,105,101,73,110,102,111,87,114,97,112,112,101,114,16,0,9,35,98,99,110,45,99,99,119,114,16,0,14,35,98,99,111,111,107,105,101,119,105,100,103,101,116,16,0,12,35,98,99,112,109,45,102,111,111,116,101,114,16,0,31,35,98,99,112,109,45,110,111,116,105,102,105,99,97,116,105,111,110,45,111,117,116,101,114,45,98,111,114,100,101,114,16,0,10,35,98,100,45,99,111,111,107,105,101,16,0,14,35,98,101,99,111,111,107,105,101,98,97,114,105,100,16,0,19,35,98,101,99,111,111,107,105,101,98,97,114,112,97,110,101,108,105,100,16,0,23,35,98,101,108,45,99,111,111,107,105,101,45,105,110,102,111,45,98,97,110,110,101,114,16,0,13,35,98,101,108,107,97,67,111,111,107,105,101,115,16,0,18,35,98,101,116,116,101,114,45,99,111,111,107,105,101,45,98,97,114,16,0,25,35,98,101,116,116,101,114,103,100,112,114,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,27,35,98,101,116,116,101,114,103,100,112,114,95,117,115,101,114,95,109,101,110,117,95,112,111,112,117,112,16,0,17,35,98,102,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,25,35,98,102,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,14,35,98,102,114,45,99,111,111,107,105,101,108,97,119,16,0,25,35,98,103,45,102,111,111,116,101,114,45,112,114,105,118,97,99,101,45,112,111,108,105,99,121,16,0,16,35,98,103,45,112,111,112,117,112,67,111,111,107,105,101,115,16,0,10,35,98,103,95,99,111,111,107,105,101,16,0,11,35,98,103,95,99,111,111,107,105,101,115,16,0,20,35,98,103,101,101,95,112,114,105,118,97,99,121,95,98,97,110,110,101,114,16,0,16,35,98,103,111,110,45,99,111,111,107,105,101,45,98,97,114,16,0,14,35,98,105,98,95,67,111,111,107,105,101,66,111,120,16,0,11,35,98,105,103,99,111,111,107,105,101,115,16,0,16,35,98,105,103,102,45,99,111,111,107,105,101,45,98,97,114,16,0,25,35,98,105,109,45,115,116,117,100,105,111,45,99,111,111,107,105,101,45,104,111,108,100,101,114,16,0,18,35,98,105,112,111,95,97,118,105,115,111,99,111,111,107,105,101,115,16,0,15,35,98,105,115,99,117,105,116,70,111,114,109,68,105,118,16,0,15,35,98,105,116,98,97,121,45,99,111,111,107,105,101,115,16,0,28,35,98,107,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,16,0,15,35,98,107,67,111,111,107,105,101,66,97,110,110,101,114,16,0,17,35,98,107,95,99,111,111,107,105,101,115,95,97,108,101,114,116,16,0,9,35,98,107,99,111,111,107,105,101,16,0,16,35,98,108,97,99,107,111,117,116,95,99,111,111,107,105,101,16,0,21,35,98,108,97,107,101,95,99,111,111,107,105,101,115,95,110,111,116,105,99,101,16,0,22,35,98,108,97,115,116,110,101,115,115,67,111,111,107,105,101,66,97,110,110,101,114,16,0,12,35,98,108,111,99,45,99,111,111,107,105,101,16,0,23,35,98,108,111,99,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,16,0,20,35,98,108,111,99,45,99,111,111,107,105,101,115,45,110,111,114,109,97,108,16,0,12,35,98,108,111,99,67,111,111,107,105,101,115,16,0,12,35,98,108,111,99,95,99,111,111,107,105,101,16,0,20,35,98,108,111,99,95,99,111,111,107,105,101,95,97,110,110,111,110,99,101,16,0,13,35,98,108,111,99,95,99,111,111,107,105,101,115,16,0,20,35,98,108,111,99,95,104,101,97,100,101,114,95,109,101,115,115,97,103,101,16,0,10,35,98,108,111,99,95,114,103,112,100,16,0,15,35,98,108,111,99,95,115,101,116,99,111,111,107,105,101,16,0,29,35,98,108,111,99,107,45,97,103,101,110,99,101,45,109,45,99,111,111,107,105,101,115,45,98,108,111,99,107,16,0,33,35,98,108,111,99,107,45,97,115,110,45,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,112,114,105,118,97,99,121,16,0,24,35,98,108,111,99,107,45,98,101,97,110,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,31,35,98,108,111,99,107,45,98,116,109,95,98,108,111,99,107,115,45,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,11,35,98,108,111,99,107,45,99,99,112,97,16,0,23,35,98,108,111,99,107,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,16,0,19,35,98,108,111,99,107,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,42,35,98,108,111,99,107,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,16,0,48,35,98,108,111,99,107,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,98,108,111,99,107,16,0,18,35,98,108,111,99,107,45,99,111,111,107,105,101,45,102,111,114,109,16,0,18,35,98,108,111,99,107,45,99,111,111,107,105,101,45,105,110,102,111,16,0,22,35,98,108,111,99,107,45,99,111,111,107,105,101,95,112,111,108,105,99,121,45,48,16,0,18,35,98,108,111,99,107,45,99,111,111,107,105,101,98,108,111,99,107,16,0,20,35,98,108,111,99,107,45,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,23,35,98,108,111,99,107,45,99,111,111,107,105,101,99,111,110,115,101,110,116,98,97,114,16,0,24,35,98,108,111,99,107,45,99,111,111,107,105,101,112,111,108,105,99,121,98,108,111,99,107,16,0,19,35,98,108,111,99,107,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,21,35,98,108,111,99,107,45,99,111,111,107,105,101,115,45,112,111,108,105,99,101,16,0,44,35,98,108,111,99,107,45,99,111,111,107,105,101,115,97,99,116,105,118,101,45,99,111,111,107,105,101,115,97,99,116,105,118,101,45,98,108,111,99,107,99,111,100,101,16,0,20,35,98,108,111,99,107,45,99,111,111,107,105,101,115,110,111,116,105,99,101,16,0,19,35,98,108,111,99,107,45,99,111,111,107,105,101,115,112,111,112,117,112,16,0,20,35,98,108,111,99,107,45,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,38,35,98,108,111,99,107,45,99,115,109,45,117,115,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,101,115,115,97,103,101,16,0,39,35,98,108,111,99,107,45,99,117,115,116,111,109,95,99,111,111,107,105,101,115,45,99,117,115,116,111,109,95,99,111,111,107,105,101,115,95,101,117,16,0,51,35,98,108,111,99,107,45,100,98,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,108,111,99,107,16,0,36,35,98,108,111,99,107,45,100,105,114,101,99,116,45,99,111,110,116,114,111,108,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,16,0,20,35,98,108,111,99,107,45,101,117,99,111,111,107,105,101,98,108,111,99,107,16,0,32,35,98,108,111,99,107,45,101,117,99,111,111,107,105,101,98,108,111,99,107,45,99,111,111,107,105,101,45,105,110,102,111,16,0,23,35,98,108,111,99,107,45,103,100,112,114,99,111,111,107,105,101,115,98,108,111,99,107,16,0,16,35,98,108,111,99,107,45,103,100,112,114,109,111,100,97,108,16,0,24,35,98,108,111,99,107,45,104,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,38,35,98,108,111,99,107,45,105,110,102,45,101,117,45,99,111,111,107,105,101,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,23,35,98,108,111,99,107,45,108,104,103,45,99,111,111,107,105,101,45,117,115,97,103,101,16,0,31,35,98,108,111,99,107,45,109,101,110,117,99,109,116,45,112,117,115,104,95,108,111,105,95,99,111,111,107,105,101,115,16,0,37,35,98,108,111,99,107,45,109,110,99,45,99,110,105,108,45,109,110,99,45,99,110,105,108,45,105,110,102,111,45,99,111,111,107,105,101,115,16,0,22,35,98,108,111,99,107,45,109,119,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,27,35,98,108,111,99,107,45,110,101,116,116,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,16,0,27,35,98,108,111,99,107,45,110,111,116,105,102,105,99,97,116,105,111,110,115,45,99,111,111,107,105,101,16,0,32,35,98,108,111,99,107,45,111,121,115,116,101,114,45,103,100,112,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,23,35,98,108,111,99,107,45,112,111,108,105,116,105,99,97,115,99,111,111,107,105,101,115,16,0,26,35,98,108,111,99,107,45,112,114,105,118,97,99,121,112,111,108,105,99,121,98,97,110,110,101,114,16,0,25,35,98,108,111,99,107,45,112,114,105,118,97,99,121,112,111,108,105,99,121,112,111,112,117,112,16,0,19,35,98,108,111,99,107,45,114,103,112,100,45,98,97,110,100,101,97,117,16,0,23,35,98,108,111,99,107,45,114,103,112,100,45,114,103,112,100,45,102,111,111,116,101,114,16,0,38,35,98,108,111,99,107,45,114,109,103,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,32,35,98,108,111,99,107,45,115,105,116,101,45,97,103,114,101,101,45,97,99,99,101,115,115,45,99,111,111,107,105,101,115,16,0,24,35,98,108,111,99,107,45,116,98,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,30,35,98,108,111,99,107,45,119,98,116,45,98,108,111,99,107,45,100,111,109,97,105,110,45,99,111,111,107,105,101,16,0,25,35,98,108,111,99,107,45,122,111,100,105,97,99,45,115,105,116,101,45,99,111,111,107,105,101,16,0,18,35,98,108,111,99,107,65,99,99,101,112,116,67,111,111,107,105,101,16,0,21,35,98,108,111,99,107,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,16,35,98,108,111,99,107,67,111,111,107,105,101,73,110,102,111,16,0,13,35,98,108,111,99,107,95,99,111,111,107,105,101,16,0,13,35,98,108,111,99,107,99,111,111,107,105,101,115,16,0,16,35,98,108,111,99,107,100,105,115,99,108,97,105,109,101,114,16,0,22,35,98,108,111,103,103,101,114,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,12,35,98,108,111,107,95,99,111,111,107,105,101,16,0,22,35,98,108,111,113,117,101,95,118,101,110,116,97,110,97,67,111,111,107,105,101,115,16,0,14,35,98,108,111,113,117,101,99,111,111,107,105,101,115,16,0,24,35,98,108,117,115,121,115,95,110,111,114,109,97,116,105,118,97,95,99,111,111,107,105,101,16,0,15,35,98,108,122,45,99,111,111,107,105,101,105,110,102,111,16,0,20,35,98,109,119,45,101,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,11,35,98,110,45,99,111,111,107,105,101,115,16,0,20,35,98,111,105,116,101,95,100,105,97,108,111,103,95,99,111,111,107,105,101,16,0,12,35,98,111,110,97,67,111,111,107,105,101,115,16,0,21,35,98,111,110,105,97,108,45,99,109,112,45,99,111,110,116,97,105,110,101,114,16,0,18,35,98,111,111,116,99,111,111,107,101,114,45,98,97,110,110,101,114,16,0,16,35,98,111,116,111,110,101,115,95,99,111,111,107,105,101,115,16,0,14,35,98,111,116,116,111,109,45,99,111,111,107,105,101,16,0,21,35,98,111,116,116,111,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,15,35,98,111,116,116,111,109,45,99,111,111,107,105,101,115,16,0,13,35,98,111,116,116,111,109,67,111,111,107,105,101,16,0,18,35,98,111,116,116,111,109,67,111,111,107,105,101,85,115,97,103,101,16,0,23,35,98,111,116,116,111,109,83,116,105,99,107,121,67,111,111,107,105,101,115,66,111,120,16,0,14,35,98,111,116,116,111,109,95,99,111,111,107,105,101,16,0,20,35,98,111,116,116,111,109,95,105,110,102,111,95,99,111,111,107,105,101,115,16,0,24,35,98,111,120,45,97,99,99,101,116,116,97,122,105,111,110,101,45,99,111,111,107,105,101,16,0,18,35,98,111,120,45,97,103,114,101,101,45,103,100,112,114,45,105,100,16,0,17,35,98,111,120,45,97,108,101,114,116,45,99,111,111,107,105,101,16,0,11,35,98,111,120,45,99,111,111,107,105,101,16,0,14,35,98,111,120,45,99,111,111,107,105,101,45,48,49,16,0,18,35,98,111,120,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,19,35,98,111,120,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,19,35,98,111,120,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,12,35,98,111,120,45,99,111,111,107,105,101,115,16,0,9,35,98,111,120,45,103,100,112,114,16,0,10,35,98,111,120,67,111,111,107,105,101,16,0,11,35,98,111,120,67,111,111,107,105,101,115,16,0,14,35,98,111,120,84,101,120,116,67,111,111,107,105,101,16,0,17,35,98,111,120,90,103,111,100,97,78,97,67,111,111,107,105,101,16,0,11,35,98,111,120,95,99,111,111,107,105,101,16,0,18,35,98,111,120,95,99,111,111,107,105,101,95,97,99,99,101,112,116,16,0,22,35,98,111,120,95,99,111,111,107,105,101,95,97,99,99,101,112,116,97,110,99,101,16,0,18,35,98,111,120,95,99,111,111,107,105,101,95,97,100,118,101,114,116,16,0,16,35,98,111,120,95,99,111,111,107,105,101,95,105,110,102,111,16,0,18,35,98,111,120,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,17,35,98,111,120,95,99,111,111,107,105,101,112,111,108,105,99,121,16,0,18,35,98,111,120,95,99,111,111,107,105,101,115,95,97,108,101,114,116,16,0,18,35,98,111,120,95,99,111,111,107,105,101,115,95,101,114,114,111,114,16,0,17,35,98,111,120,95,99,111,111,107,105,101,115,95,105,110,102,111,16,0,16,35,98,111,120,95,105,110,102,111,95,99,111,111,107,105,101,16,0,9,35,98,111,120,95,108,103,112,100,16,0,16,35,98,111,120,95,108,103,112,100,95,99,111,111,107,105,101,16,0,10,35,98,111,120,99,111,111,107,105,101,16,0,13,35,98,111,120,99,111,111,107,105,101,108,97,119,16,0,10,35,98,112,99,111,111,107,105,101,115,16,0,17,35,98,112,114,95,99,111,111,107,105,101,45,97,108,101,114,116,16,0,22,35,98,112,120,45,114,103,112,100,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,27,35,98,114,45,119,111,114,100,112,114,101,115,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,15,35,98,114,67,111,111,107,105,101,66,97,110,110,101,114,16,0,21,35,98,114,97,95,99,111,111,107,105,101,67,104,111,105,99,101,73,110,102,111,16,0,29,35,98,114,97,105,110,45,99,111,111,107,105,101,45,111,112,116,105,110,45,99,111,111,107,105,101,98,111,120,16,0,23,35,98,114,97,110,100,102,111,117,114,45,99,111,111,107,105,101,45,98,108,111,99,107,16,0,25,35,98,114,105,110,107,45,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,22,35,98,114,111,119,115,101,114,45,99,111,111,107,105,101,45,119,97,114,110,105,110,16,0,23,35,98,114,111,119,115,101,114,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,14,35,98,114,117,110,101,108,99,111,111,107,105,101,115,16,0,12,35,98,114,121,45,99,111,110,115,101,110,116,16,0,16,35,98,115,67,111,111,107,105,101,115,66,97,110,110,101,114,16,0,26,35,98,115,95,99,111,111,107,105,101,95,97,108,101,114,116,95,99,111,110,116,97,105,110,101,114,16,0,9,35,98,115,99,111,111,107,105,101,16,0,18,35,98,115,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,98,116,45,112,114,105,118,97,99,121,45,104,101,97,100,101,114,16,0,19,35,98,116,45,112,114,105,118,97,99,121,45,111,118,101,114,108,97,121,16,0,20,35,98,116,67,111,111,107,105,101,67,111,110,115,101,110,116,82,111,111,116,16,0,11,35,98,116,95,95,99,111,111,107,105,101,16,0,10,35,98,116,95,99,111,111,107,105,101,16,0,11,35,98,116,110,45,99,111,111,107,105,101,16,0,18,35,98,116,110,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,12,35,98,116,110,79,110,101,84,114,117,115,116,16,0,22,35,98,116,115,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,17,35,98,116,122,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,21,35,98,117,107,111,45,103,100,112,114,45,99,111,111,107,105,101,45,98,97,114,16,0,18,35,98,117,110,100,108,101,95,99,111,111,107,105,101,95,98,97,114,16,0,25,35,98,117,115,105,110,101,115,115,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,15,35,98,117,116,116,111,110,45,99,111,111,107,105,101,115,16,0,25,35,98,117,116,116,111,110,95,99,111,111,107,105,101,115,95,118,97,108,105,100,97,116,101,100,16,0,23,35,98,117,122,122,98,108,111,103,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,26,35,98,117,122,122,98,108,111,103,112,114,111,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,23,35,98,118,95,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,16,0,16,35,98,118,105,110,45,99,111,111,107,105,101,45,98,111,120,16,0,16,35,98,119,45,103,100,112,114,95,116,111,97,115,116,101,114,16,0,16,35,98,119,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,16,35,98,119,95,99,111,111,107,105,101,99,104,111,105,99,101,16,0,17,35,98,119,95,99,111,111,107,105,101,111,118,101,114,108,97,121,16,0,17,35,98,119,112,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,18,35,98,119,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,15,35,98,120,95,99,111,111,107,105,101,95,105,110,102,111,16,0,18,35,98,121,115,45,99,111,111,107,105,101,109,101,115,115,97,103,101,16,0,26,35,98,121,116,101,115,105,122,101,95,99,111,111,107,105,101,95,101,120,112,108,97,105,110,101,114,16,0,16,35,98,122,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,14,35,99,45,99,111,111,107,105,101,45,110,111,116,101,16,0,10,35,99,45,99,111,111,107,105,101,115,16,0,13,35,99,45,100,99,120,45,99,111,111,107,105,101,16,0,20,35,99,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,16,0,10,35,99,48,48,107,105,101,77,115,103,16,0,18,35,99,50,103,95,99,111,111,107,105,101,95,100,105,97,108,111,103,16,0,23,35,99,52,115,67,111,111,107,105,101,79,110,101,67,108,105,99,107,77,111,100,97,108,16,0,11,35,99,65,99,99,101,112,116,66,97,114,16,0,13,35,99,67,111,111,107,105,101,65,108,101,114,116,16,0,14,35,99,67,111,111,107,105,101,72,101,97,100,101,114,16,0,19,35,99,67,111,114,101,95,99,111,111,107,105,101,78,111,116,105,99,101,16,0,12,35,99,73,110,102,111,46,99,73,110,102,111,16,0,14,35,99,76,97,121,101,114,46,110,111,116,105,99,101,16,0,8,35,99,80,111,108,105,99,121,16,0,12,35,99,80,114,111,109,112,116,95,98,97,114,16,0,18,35,99,80,114,111,109,112,116,95,98,97,114,83,112,97,99,101,114,16,0,20,35,99,83,112,97,99,101,46,99,111,111,107,105,101,83,112,97,99,101,114,16,0,13,35,99,87,97,114,110,46,99,111,111,107,105,101,16,0,14,35,99,87,97,114,110,46,99,111,111,107,105,101,115,16,0,8,35,99,95,97,103,114,101,109,16,0,9,35,99,95,99,111,111,107,105,101,16,0,10,35,99,97,95,98,97,110,110,101,114,16,0,13,35,99,97,95,105,110,102,111,95,112,108,117,115,16,0,11,35,99,97,98,99,111,111,107,105,101,115,16,0,20,35,99,97,100,114,101,95,97,108,101,114,116,95,99,111,111,107,105,101,115,16,0,13,35,99,97,100,114,101,95,99,111,111,107,105,101,16,0,12,35,99,97,100,118,105,115,101,95,98,97,114,16,0,13,35,99,97,106,97,95,99,111,111,107,105,101,115,16,0,12,35,99,97,106,97,99,111,111,107,105,101,115,16,0,13,35,99,97,108,108,67,111,110,116,114,111,108,108,16,0,24,35,99,97,109,117,115,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,23,35,99,97,112,95,80,111,108,105,116,105,99,97,67,111,111,107,105,101,115,68,105,118,16,0,12,35,99,97,112,97,45,99,111,111,107,105,101,16,0,13,35,99,97,112,97,45,99,111,111,107,105,101,115,16,0,18,35,99,97,112,97,65,99,101,112,116,97,67,111,111,107,105,101,115,16,0,16,35,99,97,112,97,65,118,105,115,111,67,111,111,107,105,101,16,0,17,35,99,97,112,97,65,118,105,115,111,67,111,111,107,105,101,115,16,0,25,35,99,97,112,97,65,118,105,115,111,80,111,108,105,116,105,99,97,67,111,111,107,105,101,115,16,0,43,35,99,97,112,97,65,118,105,115,111,80,111,108,105,116,105,99,97,67,111,111,107,105,101,115,95,115,117,112,101,114,105,111,114,95,109,101,110,115,97,106,101,115,16,0,20,35,99,97,112,97,95,97,99,101,112,116,97,95,99,111,111,107,105,101,115,16,0,19,35,99,97,112,97,95,97,118,105,115,111,95,99,111,111,107,105,101,115,16,0,12,35,99,97,112,97,95,99,111,111,107,105,101,16,0,17,35,99,97,112,97,95,99,111,111,107,105,101,95,114,103,112,100,16,0,13,35,99,97,112,97,95,99,111,111,107,105,101,115,16,0,18,35,99,97,112,97,95,108,111,112,100,95,99,111,111,107,105,101,115,16,0,17,35,99,97,112,97,95,112,111,108,95,99,111,111,107,105,101,115,16,0,19,35,99,97,112,97,101,102,101,99,116,111,115,45,99,111,111,107,105,101,16,0,27,35,99,97,114,114,111,116,45,102,114,97,109,101,45,98,117,109,112,101,114,67,111,111,107,105,101,115,16,0,18,35,99,97,114,116,101,108,99,111,111,107,105,101,108,101,103,97,108,16,0,20,35,99,97,115,101,121,115,45,99,111,111,107,105,101,45,109,111,100,97,108,16,0,18,35,99,97,115,112,105,97,110,95,99,111,111,107,105,101,98,97,114,16,0,20,35,99,97,116,97,112,117,108,116,45,99,111,111,107,105,101,45,98,97,114,16,0,17,35,99,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,17,35,99,98,45,99,111,111,107,105,101,45,104,111,108,100,101,114,16,0,18,35,99,98,45,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,25,35,99,98,95,99,111,111,107,105,101,95,112,111,108,105,99,121,95,100,101,102,97,117,108,116,16,0,23,35,99,98,95,99,111,111,107,105,101,95,112,111,108,105,99,121,95,112,111,112,117,112,16,0,30,35,99,98,95,99,111,111,107,105,101,95,112,111,108,105,99,121,95,112,111,112,117,112,95,115,104,114,111,117,100,16,0,27,35,99,98,95,115,101,116,116,105,110,103,115,95,97,108,101,114,116,95,101,120,116,101,110,100,101,100,16,0,17,35,99,98,99,111,111,107,105,101,115,45,98,111,116,116,111,109,16,0,14,35,99,98,99,111,111,107,105,101,115,45,116,111,112,16,0,27,35,99,98,116,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,10,35,99,99,45,98,97,110,110,101,114,16,0,18,35,99,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,14,35,99,99,45,99,111,111,107,105,101,45,108,97,119,16,0,18,35,99,99,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,17,35,99,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,18,35,99,99,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,11,35,99,99,45,99,111,111,107,105,101,115,16,0,9,35,99,99,45,109,111,100,97,108,16,0,17,35,99,99,45,109,111,100,97,108,45,111,118,101,114,108,97,121,16,0,16,35,99,99,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,99,99,45,110,111,116,105,102,105,99,97,116,105,111,110,45,103,117,116,116,101,114,16,0,24,35,99,99,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,16,0,7,35,99,99,45,116,97,103,16,0,13,35,99,99,46,99,99,95,100,105,97,108,111,103,16,0,10,35,99,99,77,101,115,115,97,103,101,16,0,21,35,99,99,95,95,109,111,100,97,108,95,95,99,111,110,116,97,105,110,101,114,16,0,14,35,99,99,95,95,112,97,103,101,66,108,111,99,107,16,0,11,35,99,99,95,98,97,110,100,101,97,117,16,0,10,35,99,99,95,98,97,110,110,101,114,16,0,18,35,99,99,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,7,35,99,99,95,99,111,110,16,0,23,35,99,99,95,99,111,111,107,105,101,99,111,110,115,101,110,116,110,111,116,105,99,101,16,0,11,35,99,99,95,99,111,111,107,105,101,115,16,0,16,35,99,99,95,100,115,103,118,111,95,98,97,110,110,101,114,16,0,10,35,99,99,95,112,111,108,105,99,121,16,0,17,35,99,99,95,112,114,105,118,97,99,121,95,108,97,121,101,114,16,0,10,35,99,99,95,122,97,103,105,101,108,16,0,19,35,99,99,97,45,99,111,111,107,105,101,115,45,104,111,108,100,101,114,16,0,6,35,99,99,98,97,114,16,0,16,35,99,99,98,97,114,95,99,111,110,116,97,105,110,101,114,16,0,11,35,99,99,99,45,110,111,116,105,102,121,16,0,12,35,99,99,99,45,111,118,101,114,108,97,121,16,0,10,35,99,99,99,45,115,116,97,116,101,16,0,23,35,99,99,99,101,110,116,101,114,45,111,118,101,114,108,97,121,45,102,105,120,101,100,16,0,10,35,99,99,99,111,110,115,101,110,116,16,0,6,35,99,99,99,119,114,16,0,17,35,99,99,102,100,45,101,117,99,111,111,107,105,101,108,97,119,16,0,17,35,99,99,102,119,45,112,97,103,101,45,98,97,110,110,101,114,16,0,13,35,99,99,103,116,109,45,98,97,110,110,101,114,16,0,14,35,99,99,103,116,109,45,119,114,97,112,112,101,114,16,0,10,35,99,99,104,105,110,119,101,105,115,16,0,8,35,99,99,107,45,98,111,120,16,0,10,35,99,99,107,66,97,110,110,101,114,16,0,16,35,99,99,109,45,98,97,110,110,101,114,45,119,114,97,112,16,0,22,35,99,99,109,45,99,111,111,107,105,101,115,68,105,115,99,108,111,115,117,114,101,16,0,17,35,99,99,109,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,9,35,99,99,111,110,115,101,110,116,16,0,13,35,99,99,111,110,115,101,110,116,45,98,97,114,16,0,13,35,99,99,111,110,115,101,110,116,45,112,111,112,16,0,20,35,99,99,111,111,107,105,101,95,98,97,115,101,95,115,116,105,108,101,50,16,0,11,35,99,99,112,45,98,110,114,45,99,107,16,0,12,35,99,99,112,45,111,118,101,114,108,97,121,16,0,11,35,99,99,112,97,45,97,108,101,114,116,16,0,12,35,99,99,112,97,45,98,97,110,110,101,114,16,0,9,35,99,99,112,97,45,98,97,114,16,0,11,35,99,99,112,97,45,98,108,111,99,107,16,0,20,35,99,99,112,97,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,13,35,99,99,112,97,45,99,111,110,116,101,110,116,16,0,12,35,99,99,112,97,45,99,111,111,107,105,101,16,0,20,35,99,99,112,97,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,12,35,99,99,112,97,45,102,111,111,116,101,114,16,0,12,35,99,99,112,97,45,110,111,116,105,99,101,16,0,25,35,99,99,112,97,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,16,0,29,35,99,99,112,97,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,95,49,45,48,16,0,20,35,99,99,112,97,45,112,114,111,109,112,116,45,119,114,97,112,112,101,114,16,0,15,35,99,99,112,97,46,99,111,110,116,97,105,110,101,114,16,0,10,35,99,99,112,97,46,115,104,111,119,16,0,21,35,99,99,112,97,46,119,105,116,104,111,117,116,45,111,118,101,114,108,97,121,16,0,10,35,99,99,112,97,65,108,101,114,116,16,0,11,35,99,99,112,97,66,97,110,110,101,114,16,0,14,35,99,99,112,97,67,111,110,116,97,105,110,101,114,16,0,11,35,99,99,112,97,70,111,111,116,101,114,16,0,12,35,99,99,112,97,95,98,97,110,110,101,114,16,0,20,35,99,99,112,97,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,16,0,17,35,99,99,115,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,22,35,99,99,115,101,114,118,105,99,101,45,99,111,111,107,105,101,115,105,110,102,111,16,0,8,35,99,99,116,45,98,111,120,16,0,11,35,99,99,116,111,111,108,82,111,111,116,16,0,14,35,99,99,116,114,45,106,115,45,109,111,100,97,108,16,0,14,35,99,100,45,99,111,111,107,105,101,45,98,97,114,16,0,23,35,99,100,45,99,111,111,107,105,101,45,98,97,114,45,115,101,116,116,105,110,103,115,16,0,18,35,99,100,102,95,97,110,110,111,110,99,101,67,111,111,107,105,101,16,0,10,35,99,100,105,95,108,97,121,101,114,16,0,19,35,99,100,110,45,98,97,110,110,101,114,45,99,111,111,107,105,101,115,16,0,22,35,99,100,119,101,98,45,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,16,0,20,35,99,101,97,45,100,105,118,67,111,111,107,105,101,80,111,108,105,99,121,16,0,26,35,99,101,108,101,110,117,115,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,16,0,22,35,99,101,110,116,101,114,95,98,97,110,100,101,97,117,95,99,111,111,107,105,101,16,0,19,35,99,101,114,101,107,75,117,108,108,97,110,105,109,85,121,97,114,105,16,0,14,35,99,101,114,101,122,97,121,97,114,108,97,114,105,16,0,20,35,99,101,118,97,95,116,111,111,108,98,97,114,95,99,111,111,107,105,101,16,0,20,35,99,101,119,101,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,24,35,99,101,119,101,45,112,101,114,109,97,110,101,110,116,45,105,110,102,111,45,98,97,114,16,0,10,35,99,102,45,99,111,111,107,105,101,16,0,17,35,99,102,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,17,35,99,103,45,98,97,114,114,97,45,99,111,111,107,105,101,115,16,0,10,35,99,103,67,111,111,107,105,101,115,16,0,15,35,99,103,82,111,100,111,66,97,99,107,100,114,111,112,16,0,12,35,99,103,82,111,100,111,77,111,100,97,108,16,0,14,35,99,103,95,99,111,111,107,105,101,95,98,97,114,16,0,12,35,99,104,101,99,107,67,111,111,107,105,101,16,0,15,35,99,104,101,99,107,67,111,111,107,105,101,66,111,120,16,0,15,35,99,104,101,99,107,85,80,99,111,111,107,105,101,115,16,0,20,35,99,104,101,99,107,109,107,67,111,111,107,105,101,78,111,116,105,99,101,16,0,18,35,99,104,101,108,108,111,99,111,111,107,105,101,115,45,98,97,114,16,0,21,35,99,104,101,114,114,121,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,21,35,99,104,105,108,108,121,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,20,35,99,104,114,111,109,101,102,114,97,109,101,45,99,111,111,107,105,101,115,16,0,8,35,99,105,45,114,111,100,111,16,0,7,35,99,105,97,99,104,111,16,0,10,35,99,105,97,99,104,111,66,97,114,16,0,11,35,99,105,97,99,104,111,105,110,102,111,16,0,27,35,99,105,97,114,95,99,111,111,107,105,101,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,11,35,99,105,97,115,116,101,99,122,107,97,16,0,15,35,99,105,97,115,116,101,99,122,107,97,45,98,111,120,16,0,24,35,99,105,97,115,116,101,99,122,107,97,73,110,102,111,67,111,110,116,97,105,110,101,114,16,0,17,35,99,105,97,115,116,101,99,122,107,97,95,97,108,101,114,116,16,0,11,35,99,105,97,115,116,101,99,122,107,111,16,0,18,35,99,105,97,115,116,101,99,122,107,111,119,101,95,111,107,110,111,16,0,20,35,99,105,97,115,116,101,99,122,107,111,119,121,95,112,111,116,119,111,114,16,0,8,35,99,105,97,115,116,107,97,16,0,13,35,99,105,97,115,116,107,97,95,97,106,97,120,16,0,18,35,99,105,97,115,116,107,97,95,119,105,97,100,111,109,111,115,99,16,0,11,35,99,105,97,115,116,107,111,100,105,118,16,0,12,35,99,105,97,115,116,107,111,100,105,118,102,16,0,14,35,99,105,97,115,116,111,87,97,114,115,116,119,97,16,0,18,35,99,105,99,101,114,111,95,99,111,111,107,105,101,95,109,115,103,16,0,29,35,99,105,103,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,17,35,99,105,110,116,105,108,108,111,46,99,111,111,107,105,101,115,16,0,10,35,99,107,45,97,99,99,101,112,116,16,0,20,35,99,107,45,99,111,111,107,105,101,45,115,116,97,116,101,109,101,110,116,16,0,10,35,99,107,45,100,105,97,108,111,103,16,0,6,35,99,107,66,97,114,16,0,4,35,99,107,67,16,0,10,35,99,107,87,97,114,110,105,110,103,16,0,11,35,99,107,87,114,97,112,46,99,107,87,16,0,10,35,99,107,95,98,97,110,110,101,114,16,0,20,35,99,107,95,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,16,0,9,35,99,107,95,100,115,99,108,114,16,0,12,35,99,107,95,100,115,99,108,114,95,118,50,16,0,7,35,99,107,95,108,97,119,16,0,12,35,99,107,98,114,95,98,97,110,110,101,114,16,0,5,35,99,107,99,104,16,0,8,35,99,107,99,110,115,110,116,16,0,10,35,99,107,99,110,115,116,119,114,112,16,0,19,35,99,107,101,119,45,114,101,115,117,109,45,99,111,111,107,105,101,115,16,0,19,35,99,107,105,101,97,99,112,116,95,99,111,110,116,97,105,110,101,114,16,0,12,35,99,107,105,101,99,111,110,115,101,110,116,16,0,11,35,99,107,105,101,112,114,111,109,112,116,16,0,9,35,99,107,107,97,115,116,101,110,16,0,19,35,99,107,107,97,115,116,101,110,45,99,111,110,116,97,105,110,101,114,16,0,16,35,99,107,109,45,99,111,111,107,105,101,45,99,111,110,116,16,0,19,35,99,107,109,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,16,0,15,35,99,107,109,99,111,111,107,105,101,115,99,111,110,116,16,0,9,35,99,107,112,111,108,105,99,121,16,0,12,35,99,107,112,111,112,46,111,117,116,101,114,16,0,10,35,99,107,115,46,99,107,115,45,118,16,0,10,35,99,107,119,97,114,110,105,110,103,16,0,12,35,99,107,121,45,99,111,110,115,101,110,116,16,0,17,35,99,107,121,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,10,35,99,108,45,98,97,110,110,101,114,16,0,11,35,99,108,45,99,111,110,115,101,110,116,16,0,10,35,99,108,45,99,111,111,107,105,101,16,0,17,35,99,108,95,95,99,111,111,107,105,101,95,97,108,101,114,116,16,0,10,35,99,108,95,98,97,110,110,101,114,16,0,9,35,99,108,95,109,111,100,97,108,16,0,12,35,99,108,97,115,115,67,111,111,107,105,101,16,0,23,35,99,108,98,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,108,103,112,100,16,0,15,35,99,108,101,97,114,102,121,45,99,111,111,107,105,101,16,0,17,35,99,108,101,118,101,114,45,99,111,111,107,105,101,108,97,119,16,0,30,35,99,108,105,99,107,115,107,101,107,115,45,112,111,112,117,112,45,111,117,116,101,114,45,104,111,108,100,101,114,16,0,27,35,99,108,105,111,110,95,99,111,111,107,105,101,66,97,114,95,95,99,111,110,116,97,105,110,101,114,16,0,16,35,99,108,111,115,101,67,111,111,107,101,105,73,110,102,111,16,0,17,35,99,108,111,115,101,71,100,112,114,67,111,110,116,101,110,116,16,0,11,35,99,108,111,115,101,95,99,110,105,108,16,0,18,35,99,108,111,117,100,109,101,67,111,111,107,105,101,73,110,102,111,16,0,25,35,99,108,114,45,99,111,111,107,105,101,45,98,97,114,45,99,111,110,116,97,105,110,101,114,16,0,17,35,99,109,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,17,35,99,109,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,16,35,99,109,45,99,111,111,107,105,101,45,112,111,112,105,110,16,0,17,35,99,109,45,99,111,111,107,105,101,45,119,105,110,100,111,119,16,0,13,35,99,109,45,99,111,111,107,105,101,98,97,114,16,0,11,35,99,109,45,99,111,111,107,105,101,115,16,0,26,35,99,109,52,97,108,108,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,97,103,101,16,0,21,35,99,109,70,108,117,120,77,101,115,115,97,103,101,67,111,111,107,105,101,115,16,0,23,35,99,109,95,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,19,35,99,109,97,110,97,103,101,114,45,99,111,110,116,97,105,110,101,114,16,0,32,35,99,109,99,45,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,102,111,114,109,45,115,116,101,112,49,16,0,22,35,99,109,99,98,45,105,110,102,111,114,109,97,116,105,111,110,76,97,121,101,114,16,0,18,35,99,109,99,111,110,115,101,110,116,45,109,101,115,115,97,103,101,16,0,24,35,99,109,112,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,14,35,99,109,112,45,102,97,107,116,111,114,45,105,111,16,0,35,35,99,109,112,45,102,97,107,116,111,114,45,105,111,45,98,114,97,110,100,45,99,111,110,115,101,110,116,45,110,111,116,105,99,101,16,0,21,35,99,109,112,45,102,97,107,116,111,114,45,105,111,45,112,97,114,101,110,116,16,0,23,35,99,109,112,45,111,118,101,114,108,97,121,46,99,109,112,111,118,101,114,108,97,121,16,0,19,35,99,109,112,45,119,105,100,103,101,116,45,119,114,97,112,112,101,114,16,0,12,35,99,109,112,66,97,99,107,100,114,111,112,16,0,10,35,99,109,112,66,97,110,110,101,114,16,0,17,35,99,109,112,77,105,110,105,109,97,108,80,114,111,109,112,116,16,0,29,35,99,109,112,108,122,45,99,111,111,107,105,101,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,19,35,99,109,115,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,20,35,99,109,115,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,16,0,30,35,99,109,115,45,109,111,100,117,108,101,45,108,101,103,97,108,45,112,114,105,118,97,99,121,45,104,105,110,116,16,0,35,35,99,109,115,45,109,111,100,117,108,101,45,116,114,97,99,107,105,110,103,45,99,111,100,101,115,45,98,97,99,107,100,114,111,112,16,0,39,35,99,109,115,45,109,111,100,117,108,101,45,116,114,97,99,107,105,110,103,45,99,111,100,101,115,45,99,111,110,115,101,110,116,45,104,105,110,116,16,0,17,35,99,109,115,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,10,35,99,109,115,73,110,102,111,67,107,16,0,10,35,99,109,115,99,111,111,107,105,101,16,0,16,35,99,109,115,112,108,117,115,95,99,111,111,107,105,101,115,16,0,19,35,99,109,116,45,119,114,97,112,112,101,114,45,98,97,110,110,101,114,16,0,10,35,99,110,45,99,111,111,107,105,101,16,0,12,35,99,110,67,111,110,116,97,105,110,101,114,16,0,19,35,99,110,100,45,103,100,112,114,45,99,111,110,116,97,105,110,101,114,16,0,20,35,99,110,101,100,95,97,108,101,114,116,101,95,99,111,111,107,105,101,115,16,0,5,35,99,110,105,108,16,0,12,35,99,110,105,108,45,97,100,118,101,114,116,16,0,12,35,99,110,105,108,45,98,97,110,110,101,114,16,0,12,35,99,110,105,108,45,99,111,111,107,105,101,16,0,26,35,99,110,105,108,45,99,111,111,107,105,101,45,97,118,101,114,116,105,115,115,101,109,101,110,116,16,0,18,35,99,110,105,108,45,99,111,111,107,105,101,45,112,97,110,101,108,16,0,13,35,99,110,105,108,45,99,111,111,107,105,101,115,16,0,11,35,99,110,105,108,45,108,97,121,101,114,16,0,9,35,99,110,105,108,45,109,115,103,16,0,20,35,99,110,105,108,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,16,0,11,35,99,110,105,108,66,97,110,110,101,114,16,0,13,35,99,110,105,108,67,111,111,99,107,105,101,115,16,0,11,35,99,110,105,108,67,111,111,107,105,101,16,0,11,35,99,110,105,108,70,111,111,116,101,114,16,0,17,35,99,110,105,108,78,111,116,105,102,105,99,97,116,105,111,110,16,0,12,35,99,110,105,108,87,97,114,110,105,110,103,16,0,12,35,99,110,105,108,87,114,97,112,112,101,114,16,0,9,35,99,110,105,108,90,111,110,101,16,0,11,35,99,110,105,108,95,97,108,101,114,116,16,0,17,35,99,110,105,108,95,97,108,101,114,116,95,105,110,110,101,114,16,0,15,35,99,110,105,108,95,97,108,101,114,116,95,116,111,112,16,0,21,35,99,110,105,108,95,97,108,101,114,116,95,116,111,112,95,105,110,110,101,114,16,0,13,35,99,110,105,108,95,98,97,110,100,101,97,117,16,0,12,35,99,110,105,108,95,98,97,110,110,101,114,16,0,20,35,99,110,105,108,95,98,97,110,110,101,114,95,99,111,110,115,101,110,116,16,0,9,35,99,110,105,108,95,98,97,114,16,0,17,35,99,110,105,108,95,98,97,114,95,119,114,97,112,112,101,114,16,0,12,35,99,110,105,108,95,99,111,111,107,105,101,16,0,20,35,99,110,105,108,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,19,35,99,110,105,108,95,99,111,111,107,105,101,95,111,112,116,111,117,116,16,0,13,35,99,110,105,108,95,99,111,111,107,105,101,115,16,0,18,35,99,110,105,108,95,105,110,102,111,114,109,97,116,105,111,110,115,16,0,12,35,99,110,105,108,95,111,112,116,111,117,116,16,0,13,35,99,110,105,108,95,112,114,105,118,97,99,121,16,0,11,35,99,110,105,108,98,97,110,110,101,114,16,0,11,35,99,110,105,108,99,111,111,107,105,101,16,0,12,35,99,110,105,108,99,111,111,107,105,101,115,16,0,23,35,99,110,105,108,100,105,115,99,108,97,105,109,101,114,76,111,99,97,116,105,111,110,16,0,7,35,99,110,105,108,105,100,16,0,13,35,99,110,105,108,108,95,98,97,110,110,101,114,16,0,12,35,99,110,105,108,109,101,115,115,97,103,101,16,0,26,35,99,110,111,116,105,99,101,45,102,111,111,116,101,114,45,99,111,110,116,101,110,116,45,105,100,16,0,15,35,99,110,116,65,108,101,114,116,67,111,111,107,105,101,16,0,12,35,99,110,116,95,99,111,111,107,105,101,115,16,0,17,35,99,111,95,98,97,110,100,101,97,117,67,111,111,107,105,101,16,0,25,35,99,111,95,99,111,111,107,105,101,80,111,108,105,99,121,67,111,110,116,97,105,110,101,114,16,0,16,35,99,111,98,111,95,99,111,111,107,105,101,95,108,97,119,16,0,12,35,99,111,99,107,105,101,83,108,105,100,101,16,0,20,35,99,111,100,101,109,97,115,116,101,114,115,95,99,111,111,107,105,101,115,16,0,22,35,99,111,101,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,22,35,99,111,101,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,16,0,24,35,99,111,101,95,99,111,111,107,105,101,115,95,112,108,97,99,101,104,111,108,100,101,114,16,0,10,35,99,111,102,99,111,111,107,105,101,16,0,17,35,99,111,105,67,111,110,115,101,110,116,66,97,110,110,101,114,16,0,7,35,99,111,107,80,121,116,16,0,7,35,99,111,107,98,97,114,16,0,10,35,99,111,107,105,101,45,98,97,114,16,0,11,35,99,111,107,105,101,67,111,118,101,114,16,0,10,35,99,111,107,105,101,77,97,105,110,16,0,11,35,99,111,107,105,101,115,105,110,102,111,16,0,24,35,99,111,108,111,114,105,102,121,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,22,35,99,111,109,52,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,16,0,18,35,99,111,109,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,25,35,99,111,109,97,118,111,111,45,103,97,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,20,35,99,111,109,109,111,110,45,67,111,111,107,105,101,78,111,116,105,99,101,16,0,27,35,99,111,109,109,111,110,45,99,111,111,107,105,101,108,97,119,45,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,109,112,108,105,65,99,99,101,112,116,67,111,111,107,105,101,115,16,0,17,35,99,111,109,112,108,105,97,110,99,101,66,97,110,110,101,114,16,0,17,35,99,111,109,112,108,105,97,110,99,101,67,111,111,107,105,101,16,0,17,35,99,111,109,112,108,105,97,110,99,101,99,111,111,107,105,101,16,0,24,35,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,22,35,99,111,109,115,112,97,99,101,45,117,115,101,114,99,101,110,116,114,105,99,115,16,0,15,35,99,111,110,102,101,114,109,97,67,111,111,107,105,101,16,0,23,35,99,111,110,102,105,100,101,110,116,105,97,108,105,116,101,95,99,111,111,107,105,101,16,0,15,35,99,111,110,102,105,114,109,45,99,111,111,107,105,101,16,0,21,35,99,111,110,102,105,114,109,45,99,111,111,107,105,101,45,109,111,100,97,108,16,0,21,35,99,111,110,102,105,114,109,45,99,111,111,107,105,101,111,110,116,101,110,116,16,0,16,35,99,111,110,102,105,114,109,45,99,111,111,107,105,101,115,16,0,14,35,99,111,110,102,105,114,109,67,111,111,107,105,101,16,0,20,35,99,111,110,102,105,114,109,67,111,111,107,105,101,80,111,108,105,99,121,16,0,15,35,99,111,110,102,105,114,109,95,99,111,111,107,105,101,16,0,19,35,99,111,110,102,105,114,109,95,99,111,111,107,105,101,95,117,115,101,16,0,22,35,99,111,110,102,105,114,109,101,100,67,111,111,107,105,101,78,111,116,101,73,100,16,0,16,35,99,111,110,115,101,110,115,111,67,111,111,107,105,101,115,16,0,16,35,99,111,110,115,101,110,115,111,95,99,111,111,107,105,101,16,0,18,35,99,111,110,115,101,110,116,45,97,103,114,101,101,109,101,110,116,16,0,15,35,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,25,35,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,18,35,99,111,110,115,101,110,116,45,98,97,110,110,101,114,45,102,119,16,0,12,35,99,111,110,115,101,110,116,45,98,97,114,16,0,14,35,99,111,110,115,101,110,116,45,98,108,111,99,107,16,0,13,35,99,111,110,115,101,110,116,45,98,117,109,112,16,0,15,35,99,111,110,115,101,110,116,45,99,111,111,107,105,101,16,0,16,35,99,111,110,115,101,110,116,45,99,111,111,107,105,101,115,16,0,15,35,99,111,110,115,101,110,116,45,102,111,111,116,101,114,16,0,25,35,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,45,97,108,101,114,116,16,0,16,35,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,16,0,25,35,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,98,97,99,107,100,114,111,112,16,0,24,35,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,45,111,118,101,114,108,97,121,16,0,20,35,99,111,110,115,101,110,116,45,109,103,109,116,45,98,97,110,110,101,114,16,0,24,35,99,111,110,115,101,110,116,45,109,111,100,97,108,45,98,111,116,116,111,109,98,97,114,16,0,20,35,99,111,110,115,101,110,116,45,109,111,100,97,108,45,102,105,114,115,116,16,0,17,35,99,111,110,115,101,110,116,45,109,111,100,97,108,45,102,119,16,0,22,35,99,111,110,115,101,110,116,45,111,117,116,101,114,45,119,114,97,112,112,101,114,16,0,14,35,99,111,110,115,101,110,116,45,112,111,112,117,112,16,0,14,35,99,111,110,115,101,110,116,45,115,108,105,100,101,16,0,16,35,99,111,110,115,101,110,116,45,116,111,111,108,98,97,114,16,0,17,35,99,111,110,115,101,110,116,45,116,114,97,99,107,105,110,103,16,0,14,35,99,111,110,115,101,110,116,46,97,108,101,114,116,16,0,17,35,99,111,110,115,101,110,116,46,98,97,99,107,100,114,111,112,16,0,16,35,99,111,110,115,101,110,116,46,99,111,110,115,101,110,116,16,0,28,35,99,111,110,115,101,110,116,46,110,97,118,98,97,114,45,102,105,120,101,100,45,98,111,116,116,111,109,16,0,16,35,99,111,110,115,101,110,116,65,99,99,101,112,116,101,100,16,0,14,35,99,111,110,115,101,110,116,66,97,110,110,101,114,16,0,11,35,99,111,110,115,101,110,116,66,97,114,16,0,17,35,99,111,110,115,101,110,116,67,111,111,107,105,101,68,105,118,16,0,14,35,99,111,110,115,101,110,116,68,105,97,108,111,103,16,0,13,35,99,111,110,115,101,110,116,70,105,114,115,116,16,0,14,35,99,111,110,115,101,110,116,70,111,111,116,101,114,16,0,18,35,99,111,110,115,101,110,116,70,111,111,116,101,114,87,114,97,112,16,0,15,35,99,111,110,115,101,110,116,79,118,101,114,108,97,121,16,0,13,35,99,111,110,115,101,110,116,80,111,112,117,112,16,0,15,35,99,111,110,115,101,110,116,87,114,97,112,112,101,114,16,0,25,35,99,111,110,115,101,110,116,95,97,115,115,105,115,116,95,99,111,110,116,97,105,110,101,114,16,0,15,35,99,111,110,115,101,110,116,95,98,97,110,110,101,114,16,0,17,35,99,111,110,115,101,110,116,95,98,108,97,99,107,98,97,114,16,0,10,35,99,111,110,115,101,110,116,95,99,16,0,22,35,99,111,110,115,101,110,116,95,99,111,111,107,105,101,115,95,112,111,112,117,112,16,0,14,35,99,111,110,115,101,110,116,95,112,111,112,117,112,16,0,16,35,99,111,110,115,101,110,116,95,118,105,115,105,116,111,114,16,0,16,35,99,111,110,115,101,110,116,95,119,114,97,112,112,101,114,16,0,14,35,99,111,110,115,101,110,116,99,111,111,107,105,101,16,0,20,35,99,111,110,115,101,110,116,102,111,114,109,95,119,114,97,112,112,101,114,16,0,14,35,99,111,110,115,101,110,116,102,114,105,101,110,100,16,0,11,35,99,111,110,115,101,110,116,108,121,114,16,0,13,35,99,111,110,115,101,110,116,112,111,112,117,112,16,0,18,35,99,111,110,116,65,100,118,105,115,101,67,111,111,107,105,101,115,16,0,12,35,99,111,110,116,95,99,111,111,107,105,101,16,0,13,35,99,111,110,116,95,99,111,111,107,105,101,115,16,0,15,35,99,111,110,116,97,105,110,101,114,45,99,110,105,108,16,0,17,35,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,16,0,30,35,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,18,35,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,115,16,0,16,35,99,111,110,116,97,105,110,101,114,67,111,111,107,105,101,16,0,21,35,99,111,110,116,97,105,110,101,114,67,111,111,107,105,101,78,111,116,105,102,16,0,19,35,99,111,110,116,97,105,110,101,114,67,111,111,107,105,101,87,101,116,16,0,17,35,99,111,110,116,97,105,110,101,114,67,111,111,107,105,101,115,16,0,17,35,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,16,0,18,35,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,115,16,0,20,35,99,111,110,116,97,105,110,101,114,95,105,110,102,111,95,99,110,105,108,16,0,17,35,99,111,110,116,97,105,110,101,114,99,111,111,107,105,101,115,16,0,11,35,99,111,110,116,99,111,111,107,105,101,16,0,26,35,99,111,110,116,101,110,101,100,111,114,45,98,97,110,110,101,114,45,99,111,111,107,105,101,115,16,0,28,35,99,111,110,116,101,110,101,100,111,114,45,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,16,0,28,35,99,111,110,116,101,110,101,100,111,114,65,99,101,112,116,97,99,105,111,110,67,111,111,107,105,101,115,16,0,17,35,99,111,110,116,101,110,101,100,111,114,67,111,111,107,105,101,16,0,18,35,99,111,110,116,101,110,101,100,111,114,67,111,111,107,105,101,115,16,0,19,35,99,111,110,116,101,110,101,100,111,114,67,111,111,107,105,101,115,50,16,0,19,35,99,111,110,116,101,110,101,100,111,114,95,99,111,111,107,105,101,115,16,0,27,35,99,111,110,116,101,110,101,100,111,114,95,99,111,111,107,105,101,115,95,103,101,110,101,114,97,108,16,0,20,35,99,111,110,116,101,110,101,114,65,108,101,114,116,67,111,111,107,105,101,16,0,17,35,99,111,110,116,101,110,101,117,114,45,99,111,111,107,105,101,16,0,17,35,99,111,110,116,101,110,101,117,114,67,111,111,107,105,101,115,16,0,23,35,99,111,110,116,101,110,105,100,111,95,99,97,112,97,95,99,111,111,107,105,101,115,16,0,22,35,99,111,110,116,101,110,105,100,111,97,118,105,115,111,99,111,111,107,105,101,115,16,0,24,35,99,111,110,116,101,110,105,116,111,114,101,66,97,110,110,101,114,67,111,111,107,105,101,16,0,18,35,99,111,110,116,101,110,105,116,111,114,101,67,111,111,107,105,101,16,0,22,35,99,111,110,116,101,110,105,116,111,114,101,100,105,115,99,108,97,105,109,101,114,16,0,18,35,99,111,110,116,101,110,116,32,62,32,35,99,111,111,107,105,101,16,0,21,35,99,111,110,116,101,110,116,45,97,108,101,114,116,45,99,111,111,107,105,101,16,0,15,35,99,111,110,116,101,110,116,45,99,111,111,107,105,101,16,0,16,35,99,111,110,116,101,110,116,45,99,111,111,107,105,101,115,16,0,37,35,99,111,110,116,101,110,116,45,100,101,45,104,105,110,119,101,105,115,45,99,111,111,107,105,101,45,114,105,99,104,116,108,105,110,105,101,16,0,20,35,99,111,110,116,101,110,116,45,112,111,108,45,99,111,111,107,105,101,115,16,0,21,35,99,111,110,116,101,110,116,45,117,99,111,99,45,99,111,111,107,105,101,115,16,0,18,35,99,111,110,116,101,110,116,73,110,102,111,67,111,111,107,105,101,16,0,52,35,99,111,110,116,101,110,116,82,101,99,111,109,109,101,110,100,97,116,105,111,110,87,105,100,103,101,116,95,80,83,95,67,79,79,75,73,69,83,95,66,65,78,78,69,82,95,69,83,80,79,84,16,0,15,35,99,111,110,116,101,110,116,95,99,111,111,107,105,101,16,0,15,35,99,111,110,116,101,110,116,99,111,111,107,105,101,115,16,0,11,35,99,111,111,45,98,97,110,110,101,114,16,0,11,35,99,111,111,77,101,115,115,97,103,101,16,0,9,35,99,111,111,95,110,111,116,101,16,0,7,35,99,111,111,99,105,101,16,0,16,35,99,111,111,99,105,101,115,95,119,97,114,110,105,110,103,16,0,8,35,99,111,111,99,107,105,101,16,0,12,35,99,111,111,99,107,105,101,45,98,97,114,16,0,16,35,99,111,111,99,107,105,101,45,109,101,115,115,97,103,101,16,0,12,35,99,111,111,99,107,105,101,45,109,101,120,16,0,14,35,99,111,111,99,107,105,101,45,109,111,100,97,108,16,0,21,35,99,111,111,99,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,16,35,99,111,111,99,107,105,101,45,119,97,114,110,105,110,103,16,0,19,35,99,111,111,99,107,105,101,65,80,67,111,110,116,97,105,110,101,114,16,0,13,35,99,111,111,99,107,105,101,65,108,101,114,116,16,0,16,35,99,111,111,99,107,105,101,65,108,101,114,116,66,111,120,16,0,11,35,99,111,111,99,107,105,101,66,97,114,16,0,12,35,99,111,111,99,107,105,101,73,110,102,111,16,0,15,35,99,111,111,99,107,105,101,77,101,115,115,97,103,101,16,0,14,35,99,111,111,99,107,105,101,95,97,103,114,101,101,16,0,15,35,99,111,111,99,107,105,101,95,110,111,116,105,99,101,16,0,12,35,99,111,111,99,107,105,101,95,112,97,115,16,0,12,35,99,111,111,99,107,105,101,95,116,120,116,16,0,13,35,99,111,111,99,107,105,101,97,103,114,101,101,16,0,13,35,99,111,111,99,107,105,101,97,108,101,114,116,16,0,14,35,99,111,111,99,107,105,101,99,104,111,105,99,101,16,0,13,35,99,111,111,99,107,105,101,112,111,112,117,112,16,0,9,35,99,111,111,99,107,105,101,115,16,0,15,35,99,111,111,99,107,105,101,115,51,119,109,68,105,118,16,0,13,35,99,111,111,99,107,105,101,115,95,98,111,120,16,0,17,35,99,111,111,99,107,105,101,115,95,119,97,114,110,105,110,103,16,0,12,35,99,111,111,99,107,105,101,119,114,97,112,16,0,10,35,99,111,111,107,45,99,111,110,116,16,0,10,35,99,111,111,107,65,108,101,114,116,16,0,7,35,99,111,111,107,69,78,16,0,8,35,99,111,111,107,73,110,102,16,0,11,35,99,111,111,107,78,84,114,97,99,107,16,0,8,35,99,111,111,107,80,111,108,16,0,19,35,99,111,111,107,80,111,108,105,99,121,45,119,114,97,112,112,101,114,16,0,9,35,99,111,111,107,95,97,102,102,16,0,10,35,99,111,111,107,95,105,110,102,111,16,0,17,35,99,111,111,107,97,108,101,114,116,45,104,111,108,100,101,114,16,0,12,35,99,111,111,107,98,111,120,98,97,99,107,16,0,8,35,99,111,111,107,99,111,110,16,0,9,35,99,111,111,107,99,111,110,116,16,0,8,35,99,111,111,107,100,105,118,16,0,31,35,99,111,111,107,101,67,111,110,116,114,111,108,95,85,112,100,97,116,101,80,97,110,101,108,67,111,111,107,105,101,16,0,10,35,99,111,111,107,101,72,105,110,116,16,0,20,35,99,111,111,107,101,109,101,115,115,97,103,101,104,97,110,100,108,101,114,16,0,17,35,99,111,111,107,101,114,95,99,111,110,116,97,105,110,101,114,16,0,6,35,99,111,111,107,105,16,0,13,35,99,111,111,107,105,95,97,99,99,101,112,116,16,0,10,35,99,111,111,107,105,99,110,105,108,16,0,9,35,99,111,111,107,105,100,105,118,16,0,19,35,99,111,111,107,105,101,45,45,100,105,115,99,108,97,105,109,101,114,16,0,21,35,99,111,111,107,105,101,45,45,105,110,102,111,45,119,114,97,112,112,101,114,16,0,9,35,99,111,111,107,105,101,45,49,16,0,9,35,99,111,111,107,105,101,45,50,16,0,13,35,99,111,111,107,105,101,45,97,99,99,101,112,16,0,14,35,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,20,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,97,108,101,114,116,16,0,21,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,97,114,16,0,18,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,111,120,16,0,18,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,100,105,118,16,0,21,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,102,111,111,116,101,114,16,0,19,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,108,105,110,101,16,0,24,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,109,111,100,97,108,45,100,105,118,16,0,20,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,112,97,110,101,108,16,0,20,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,112,111,112,117,112,16,0,21,35,99,111,111,107,105,101,45,97,99,99,101,112,116,45,119,105,110,100,111,119,16,0,25,35,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,98,97,110,110,101,114,16,0,25,35,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,119,105,100,103,101,116,16,0,26,35,99,111,111,107,105,101,45,97,99,99,101,112,116,97,110,99,101,45,119,114,97,112,112,101,114,16,0,25,35,99,111,111,107,105,101,45,97,99,99,101,112,116,97,116,105,111,110,45,112,111,112,117,112,16,0,16,35,99,111,111,107,105,101,45,97,99,99,101,112,116,101,100,16,0,17,35,99,111,111,107,105,101,45,97,99,99,101,112,116,105,111,110,16,0,14,35,99,111,111,107,105,101,45,97,99,99,112,101,116,16,0,17,35,99,111,111,107,105,101,45,97,99,101,112,116,97,110,99,101,16,0,11,35,99,111,111,107,105,101,45,97,99,107,16,0,23,35,99,111,111,107,105,101,45,97,99,107,110,111,119,108,101,100,103,101,109,101,110,116,16,0,31,35,99,111,111,107,105,101,45,97,99,107,110,111,119,108,101,100,103,101,109,101,110,116,45,99,111,110,116,114,111,108,16,0,11,35,99,111,111,107,105,101,45,97,100,118,16,0,16,35,99,111,111,107,105,101,45,97,100,118,97,114,115,101,108,16,0,14,35,99,111,111,107,105,101,45,97,100,118,101,114,116,16,0,14,35,99,111,111,107,105,101,45,97,100,118,105,99,101,16,0,14,35,99,111,111,107,105,101,45,97,100,118,105,115,101,16,0,22,35,99,111,111,107,105,101,45,97,100,118,105,115,101,45,112,97,110,101,108,73,68,16,0,16,35,99,111,111,107,105,101,45,97,100,118,105,115,111,114,121,16,0,15,35,99,111,111,107,105,101,45,97,103,114,101,101,45,49,16,0,19,35,99,111,111,107,105,101,45,97,103,114,101,101,45,109,111,100,97,108,16,0,20,35,99,111,111,107,105,101,45,97,103,114,101,101,45,112,111,108,105,99,121,16,0,17,35,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,16,0,21,35,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,45,98,111,120,16,0,22,35,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,45,105,110,102,111,16,0,25,35,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,45,119,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,45,97,108,101,114,116,16,0,18,35,99,111,111,107,105,101,45,97,108,101,114,116,45,97,114,101,97,16,0,20,35,99,111,111,107,105,101,45,97,108,101,114,116,45,98,97,110,110,101,114,16,0,17,35,99,111,111,107,105,101,45,97,108,101,114,116,45,98,111,120,16,0,21,35,99,111,111,107,105,101,45,97,108,101,114,116,45,99,103,111,115,98,97,114,16,0,17,35,99,111,111,107,105,101,45,97,108,101,114,116,45,99,110,116,16,0,17,35,99,111,111,107,105,101,45,97,108,101,114,116,45,100,105,118,16,0,21,35,99,111,111,107,105,101,45,97,108,101,114,116,45,109,101,115,115,97,103,101,16,0,17,35,99,111,111,107,105,101,45,97,108,101,114,116,45,109,115,103,16,0,21,35,99,111,111,107,105,101,45,97,108,101,114,116,45,115,101,99,116,105,111,110,16,0,21,35,99,111,111,107,105,101,45,97,108,101,114,116,45,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,45,97,108,101,114,116,101,16,0,13,35,99,111,111,107,105,101,45,97,108,108,111,119,16,0,17,35,99,111,111,107,105,101,45,97,108,108,111,119,45,98,111,120,16,0,20,35,99,111,111,107,105,101,45,97,110,110,111,117,110,99,101,109,101,110,116,16,0,11,35,99,111,111,107,105,101,45,97,112,112,16,0,14,35,99,111,111,107,105,101,45,97,112,112,101,110,100,16,0,16,35,99,111,111,107,105,101,45,97,112,112,114,111,118,97,108,16,0,12,35,99,111,111,107,105,101,45,97,117,116,104,16,0,21,35,99,111,111,107,105,101,45,97,117,116,104,111,114,105,122,97,116,105,111,110,16,0,13,35,99,111,111,107,105,101,45,97,118,105,115,111,16,0,9,35,99,111,111,107,105,101,45,98,16,0,16,35,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,16,0,18,35,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,16,0,27,35,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,45,100,105,115,97,98,108,101,100,16,0,26,35,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,45,111,118,101,114,108,97,121,16,0,12,35,99,111,111,107,105,101,45,98,97,110,100,16,0,15,35,99,111,111,107,105,101,45,98,97,110,100,101,97,117,16,0,14,35,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,29,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,45,112,111,112,117,112,45,119,114,97,112,112,101,114,16,0,16,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,49,16,0,23,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,97,99,107,100,114,111,112,16,0,22,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,101,115,112,111,107,101,16,0,20,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,98,108,111,99,107,16,0,21,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,101,110,116,101,114,16,0,25,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,102,105,114,115,116,45,112,97,103,101,16,0,19,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,104,111,115,116,16,0,19,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,108,103,112,100,16,0,19,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,108,105,110,107,16,0,22,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,109,101,115,115,97,103,101,16,0,22,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,16,0,20,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,112,97,110,101,108,16,0,19,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,114,111,111,116,16,0,28,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,105,116,104,45,115,101,116,116,105,110,103,115,16,0,19,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,16,0,22,35,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,20,35,99,111,111,107,105,101,45,98,97,110,110,101,114,46,102,105,120,101,100,16,0,15,35,99,111,111,107,105,101,45,98,97,110,110,101,114,50,16,0,19,35,99,111,111,107,105,101,45,98,97,110,110,101,114,95,102,108,97,103,16,0,16,35,99,111,111,107,105,101,45,98,97,114,45,50,48,49,57,16,0,19,35,99,111,111,107,105,101,45,98,97,114,45,97,114,100,97,110,116,97,16,0,18,35,99,111,111,107,105,101,45,98,97,114,45,98,111,116,116,111,109,16,0,17,35,99,111,111,107,105,101,45,98,97,114,45,102,105,120,101,100,16,0,16,35,99,111,111,107,105,101,45,98,97,114,45,109,97,105,110,16,0,19,35,99,111,111,107,105,101,45,98,97,114,45,109,101,115,115,97,103,101,16,0,15,35,99,111,111,107,105,101,45,98,97,114,45,109,111,98,16,0,18,35,99,111,111,107,105,101,45,98,97,114,45,109,111,100,117,108,101,16,0,19,35,99,111,111,107,105,101,45,98,97,114,45,119,97,114,110,105,110,103,16,0,19,35,99,111,111,107,105,101,45,98,97,114,45,119,114,97,112,112,101,114,16,0,12,35,99,111,111,107,105,101,45,98,97,114,50,16,0,13,35,99,111,111,107,105,101,45,98,97,114,66,101,16,0,20,35,99,111,111,107,105,101,45,98,97,114,95,95,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,45,98,97,114,98,111,100,121,16,0,10,35,99,111,111,107,105,101,45,98,103,16,0,16,35,99,111,111,107,105,101,45,98,103,45,99,111,118,101,114,16,0,15,35,99,111,111,107,105,101,45,98,105,110,100,105,110,103,16,0,13,35,99,111,111,107,105,101,45,98,108,111,99,107,16,0,11,35,99,111,111,107,105,101,45,98,110,114,16,0,12,35,99,111,111,107,105,101,45,98,111,100,121,16,0,14,35,99,111,111,107,105,101,45,98,111,116,116,111,109,16,0,18,35,99,111,111,107,105,101,45,98,111,116,116,111,109,45,98,97,114,16,0,22,35,99,111,111,107,105,101,45,98,111,116,116,111,109,45,99,111,110,116,101,110,116,16,0,20,35,99,111,111,107,105,101,45,98,111,116,116,111,109,45,108,97,121,101,114,16,0,20,35,99,111,111,107,105,101,45,98,111,116,116,111,109,45,112,111,112,117,112,16,0,11,35,99,111,111,107,105,101,45,98,111,120,16,0,16,35,99,111,111,107,105,101,45,98,111,120,45,105,110,102,111,16,0,11,35,99,111,111,107,105,101,45,98,116,110,16,0,21,35,99,111,111,107,105,101,45,98,117,116,116,111,110,45,98,97,110,110,101,114,16,0,12,35,99,111,111,107,105,101,45,99,97,114,100,16,0,10,35,99,111,111,107,105,101,45,99,99,16,0,17,35,99,111,111,107,105,101,45,99,104,101,99,107,45,98,111,120,16,0,15,35,99,111,111,107,105,101,45,99,104,101,99,107,101,114,16,0,14,35,99,111,111,107,105,101,45,99,104,111,105,99,101,16,0,19,35,99,111,111,107,105,101,45,99,104,111,105,99,101,45,105,110,102,111,16,0,15,35,99,111,111,107,105,101,45,99,104,111,105,99,101,115,16,0,20,35,99,111,111,107,105,101,45,99,104,111,105,99,101,115,45,105,110,102,111,16,0,17,35,99,111,111,107,105,101,45,99,108,101,97,114,45,98,97,114,16,0,15,35,99,111,111,107,105,101,45,99,108,105,99,107,101,114,16,0,12,35,99,111,111,107,105,101,45,99,110,105,108,16,0,16,35,99,111,111,107,105,101,45,99,110,105,108,45,98,111,120,16,0,19,35,99,111,111,107,105,101,45,99,110,105,108,45,109,111,98,105,108,101,16,0,23,35,99,111,111,107,105,101,45,99,110,105,108,45,109,111,98,105,108,101,45,98,111,120,16,0,11,35,99,111,111,107,105,101,45,99,110,116,16,0,18,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,16,0,24,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,108,111,99,107,16,0,25,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,111,116,116,111,109,16,0,33,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,98,111,116,116,111,109,45,111,118,101,114,108,97,121,16,0,28,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,99,111,110,116,97,105,110,101,114,16,0,26,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,109,101,115,115,97,103,101,16,0,26,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,111,118,101,114,108,97,121,16,0,24,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,112,111,112,117,112,16,0,23,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,119,114,97,112,16,0,17,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,116,16,0,23,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,116,45,99,111,110,116,101,16,0,23,35,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,116,45,102,111,110,100,111,16,0,18,35,99,111,111,107,105,101,45,99,111,110,100,105,116,105,111,110,115,16,0,15,35,99,111,111,107,105,101,45,99,111,110,102,105,114,109,16,0,19,35,99,111,111,107,105,101,45,99,111,110,102,105,114,109,45,98,111,120,16,0,25,35,99,111,111,107,105,101,45,99,111,110,102,105,114,109,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,45,99,111,110,102,105,114,109,45,105,110,110,101,114,16,0,20,35,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,16,0,27,35,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,45,100,105,97,108,111,103,16,0,19,35,99,111,111,107,105,101,45,99,111,110,115,45,98,97,110,110,101,114,16,0,15,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,19,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,106,115,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,110,111,116,105,99,101,16,0,24,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,45,111,118,101,114,108,97,121,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,99,116,105,111,110,115,16,0,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,19,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,16,0,25,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,45,111,117,116,101,114,16,0,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,108,111,99,107,16,0,19,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,111,120,16,0,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,111,120,101,115,16,0,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,104,101,99,107,16,0,25,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,101,110,116,16,0,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,16,0,29,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,45,98,111,116,116,111,109,16,0,25,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,66,111,120,16,0,30,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,101,120,112,108,105,99,105,116,45,109,111,100,97,108,16,0,19,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,102,97,98,16,0,20,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,102,111,114,109,16,0,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,104,111,108,100,101,114,16,0,20,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,105,110,102,111,16,0,28,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,105,110,102,111,45,119,114,97,112,112,101,114,16,0,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,108,97,121,101,114,16,0,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,108,111,99,97,108,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,114,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,101,115,115,97,103,101,16,0,19,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,110,101,119,16,0,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,110,111,116,105,99,101,16,0,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,117,116,101,114,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,16,0,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,105,110,16,0,21,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,16,0,20,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,114,111,111,116,16,0,24,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,105,100,101,45,111,117,116,16,0,19,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,116,97,98,16,0,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,116,97,114,103,101,116,16,0,32,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,116,111,111,108,45,112,108,97,99,101,104,111,108,100,101,114,16,0,31,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,116,121,112,57,95,98,97,99,107,103,114,111,117,110,100,16,0,28,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,116,121,112,57,95,119,114,97,112,112,101,114,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,97,114,110,105,110,103,16,0,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,105,110,100,111,119,16,0,20,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,16,0,23,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,98,97,110,110,101,114,16,0,16,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,116,16,0,18,35,99,111,111,107,105,101,45,99,111,110,115,101,116,45,98,97,114,16,0,12,35,99,111,111,107,105,101,45,99,111,110,116,16,0,18,35,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,50,16,0,15,35,99,111,111,107,105,101,45,99,111,110,116,101,110,116,16,0,27,35,99,111,111,107,105,101,45,99,111,110,116,101,110,116,95,112,108,97,99,101,104,111,108,100,101,114,16,0,15,35,99,111,111,107,105,101,45,99,111,110,116,101,115,116,16,0,16,35,99,111,111,107,105,101,45,99,111,110,116,114,97,99,116,16,0,15,35,99,111,111,107,105,101,45,99,111,110,116,114,111,108,16,0,22,35,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,109,97,115,116,101,114,16,0,22,35,99,111,111,107,105,101,45,99,111,110,116,114,111,108,45,112,114,111,109,112,116,16,0,16,35,99,111,111,107,105,101,45,99,111,110,116,114,111,108,108,16,0,18,35,99,111,111,107,105,101,45,99,111,111,107,105,101,45,100,105,118,16,0,12,35,99,111,111,107,105,101,45,99,111,112,121,16,0,14,35,99,111,111,107,105,101,45,99,111,115,101,110,116,16,0,12,35,99,111,111,107,105,101,45,99,117,98,101,16,0,14,35,99,111,111,107,105,101,45,99,117,116,116,101,114,16,0,19,35,99,111,111,107,105,101,45,100,101,97,108,45,98,111,116,116,111,109,16,0,26,35,99,111,111,107,105,101,45,100,101,97,108,45,98,111,116,116,111,109,45,99,111,111,107,105,101,16,0,19,35,99,111,111,107,105,101,45,100,101,99,108,97,114,97,116,105,111,110,16,0,12,35,99,111,111,107,105,101,45,100,101,116,116,16,0,18,35,99,111,111,107,105,101,45,100,105,97,108,111,103,45,98,97,114,16,0,16,35,99,111,111,107,105,101,45,100,105,97,108,111,103,117,101,16,0,20,35,99,111,111,107,105,101,45,100,105,97,108,111,103,117,101,45,100,105,118,16,0,11,35,99,111,111,107,105,101,45,100,105,109,16,0,14,35,99,111,111,107,105,101,45,100,105,109,109,101,114,16,0,17,35,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,16,0,21,35,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,45,98,97,114,16,0,27,35,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,45,99,111,110,116,97,105,110,101,114,16,0,22,35,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,45,110,111,116,101,16,0,18,35,99,111,111,107,105,101,45,100,105,115,99,97,108,105,109,101,114,16,0,18,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,22,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,98,97,114,16,0,22,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,98,111,120,16,0,25,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,102,111,111,116,101,114,16,0,24,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,109,111,100,97,108,16,0,22,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,110,101,119,16,0,26,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,111,118,101,114,108,97,121,16,0,24,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,112,111,112,117,112,16,0,25,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,114,101,103,105,111,110,16,0,22,35,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,45,118,117,101,16,0,18,35,99,111,111,107,105,101,45,100,105,115,99,108,111,115,117,114,101,16,0,28,35,99,111,111,107,105,101,45,100,105,115,99,108,111,115,117,114,101,45,99,111,110,116,97,105,110,101,114,16,0,15,35,99,111,111,107,105,101,45,100,105,115,112,108,97,121,16,0,12,35,99,111,111,107,105,101,45,100,105,115,115,16,0,29,35,99,111,111,107,105,101,45,100,105,115,116,117,114,98,101,114,45,115,117,114,114,111,117,110,100,105,110,103,16,0,11,35,99,111,111,107,105,101,45,100,105,118,16,0,14,35,99,111,111,107,105,101,45,100,114,97,119,101,114,16,0,12,35,99,111,111,107,105,101,45,100,114,111,112,16,0,15,35,99,111,111,107,105,101,45,101,108,101,109,101,110,116,16,0,17,35,99,111,111,107,105,101,45,101,114,108,97,117,98,110,105,115,16,0,25,35,99,111,111,107,105,101,45,101,114,108,97,117,98,110,105,115,45,119,114,97,112,112,101,114,16,0,10,35,99,111,111,107,105,101,45,101,115,16,0,10,35,99,111,111,107,105,101,45,101,117,16,0,31,35,99,111,111,107,105,101,45,101,117,45,99,111,109,112,108,105,97,110,99,101,45,99,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,45,101,117,45,108,97,119,16,0,14,35,99,111,111,107,105,101,45,102,105,110,100,101,114,16,0,13,35,99,111,111,107,105,101,45,102,105,114,115,116,16,0,20,35,99,111,111,107,105,101,45,102,105,120,101,100,45,98,97,110,110,101,114,16,0,19,35,99,111,111,107,105,101,45,102,105,120,101,100,45,108,97,121,101,114,16,0,20,35,99,111,111,107,105,101,45,102,108,111,97,116,101,114,45,119,114,97,112,16,0,11,35,99,111,111,107,105,101,45,102,111,111,16,0,12,35,99,111,111,107,105,101,45,102,111,111,116,16,0,14,35,99,111,111,107,105,101,45,102,111,111,116,101,114,16,0,12,35,99,111,111,107,105,101,45,102,111,114,109,16,0,12,35,99,111,111,107,105,101,45,102,117,108,108,16,0,18,35,99,111,111,107,105,101,45,102,117,108,108,45,119,105,100,116,104,16,0,18,35,99,111,111,107,105,101,45,102,117,108,108,115,99,114,101,101,110,16,0,12,35,99,111,111,107,105,101,45,103,100,112,114,16,0,23,35,99,111,111,107,105,101,45,103,108,111,98,97,108,45,101,110,118,101,108,111,112,101,16,0,14,35,99,111,111,107,105,101,45,103,109,45,110,101,119,16,0,15,35,99,111,111,107,105,101,45,103,114,101,97,116,105,115,16,0,22,35,99,111,111,107,105,101,45,103,114,101,101,116,105,110,103,45,115,116,114,105,112,16,0,15,35,99,111,111,107,105,101,45,104,97,110,100,108,101,114,16,0,12,35,99,111,111,107,105,101,45,104,101,97,100,16,0,16,35,99,111,111,107,105,101,45,104,101,97,100,98,97,110,100,16,0,14,35,99,111,111,107,105,101,45,104,101,97,100,101,114,16,0,24,35,99,111,111,107,105,101,45,104,101,97,100,101,114,45,99,111,110,116,97,105,110,101,114,16,0,12,35,99,111,111,107,105,101,45,104,105,110,116,16,0,16,35,99,111,111,107,105,101,45,104,105,110,116,45,98,111,120,16,0,22,35,99,111,111,107,105,101,45,104,105,110,116,45,99,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,45,104,105,110,116,45,108,97,121,101,114,16,0,20,35,99,111,111,107,105,101,45,104,105,110,116,45,109,101,115,115,97,103,101,16,0,20,35,99,111,111,107,105,101,45,104,105,110,116,45,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,45,104,105,110,119,101,105,115,16,0,25,35,99,111,111,107,105,101,45,104,105,110,119,101,105,115,45,99,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,45,104,111,108,100,101,114,16,0,12,35,99,111,111,107,105,101,45,105,100,110,97,16,0,11,35,99,111,111,107,105,101,45,105,102,121,16,0,12,35,99,111,111,107,105,101,45,105,110,102,111,16,0,14,35,99,111,111,107,105,101,45,105,110,102,111,45,49,16,0,16,35,99,111,111,107,105,101,45,105,110,102,111,45,98,97,114,16,0,18,35,99,111,111,107,105,101,45,105,110,102,111,45,98,108,111,99,107,16,0,16,35,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,16,0,16,35,99,111,111,107,105,101,45,105,110,102,111,45,100,105,118,16,0,19,35,99,111,111,107,105,101,45,105,110,102,111,45,104,101,114,109,101,114,16,0,18,35,99,111,111,107,105,101,45,105,110,102,111,45,108,97,121,101,114,16,0,17,35,99,111,111,107,105,101,45,105,110,102,111,45,111,112,101,110,16,0,18,35,99,111,111,107,105,101,45,105,110,102,111,45,111,117,116,101,114,16,0,18,35,99,111,111,107,105,101,45,105,110,102,111,45,112,97,110,101,108,16,0,19,35,99,111,111,107,105,101,45,105,110,102,111,45,112,97,110,110,101,108,16,0,17,35,99,111,111,107,105,101,45,105,110,102,111,45,114,111,100,111,16,0,17,35,99,111,111,107,105,101,45,105,110,102,111,45,116,101,120,116,16,0,20,35,99,111,111,107,105,101,45,105,110,102,111,45,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,45,105,110,102,111,98,97,114,16,0,14,35,99,111,111,107,105,101,45,105,110,102,111,114,109,16,0,22,35,99,111,111,107,105,101,45,105,110,102,111,114,109,45,109,101,115,115,97,103,101,16,0,19,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,16,0,26,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,98,97,110,110,101,114,16,0,23,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,98,97,114,16,0,25,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,108,97,121,101,114,16,0,27,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,119,114,97,112,112,101,114,16,0,20,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,115,16,0,16,35,99,111,111,107,105,101,45,105,110,102,111,114,109,101,114,16,0,21,35,99,111,111,107,105,101,45,105,110,110,101,114,45,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,45,105,110,118,105,116,101,16,0,25,35,99,111,111,107,105,101,45,106,97,114,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,15,35,99,111,111,107,105,101,45,107,111,110,116,114,111,108,16,0,11,35,99,111,111,107,105,101,45,108,97,119,16,0,15,35,99,111,111,107,105,101,45,108,97,119,45,98,97,114,16,0,15,35,99,111,111,107,105,101,45,108,97,119,45,98,111,120,16,0,22,35,99,111,111,107,105,101,45,108,97,119,45,99,111,109,112,108,105,97,110,99,101,16,0,19,35,99,111,111,107,105,101,45,108,97,119,45,99,111,110,115,101,110,116,16,0,27,35,99,111,111,107,105,101,45,108,97,119,45,99,111,110,115,101,110,116,45,115,101,99,116,105,111,110,16,0,21,35,99,111,111,107,105,101,45,108,97,119,45,99,111,110,116,97,105,110,101,114,16,0,25,35,99,111,111,107,105,101,45,108,97,119,45,99,111,110,116,97,105,110,101,114,45,98,111,120,16,0,18,35,99,111,111,107,105,101,45,108,97,119,45,100,105,97,108,111,103,16,0,15,35,99,111,111,107,105,101,45,108,97,119,45,100,105,118,16,0,20,35,99,111,111,107,105,101,45,108,97,119,45,101,110,102,111,114,99,101,114,16,0,15,35,99,111,111,107,105,101,45,108,97,119,45,102,105,120,16,0,22,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,97,103,97,105,110,16,0,17,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,115,16,0,19,35,99,111,111,107,105,101,45,108,97,119,45,109,101,115,115,97,103,101,16,0,16,35,99,111,111,107,105,101,45,108,97,119,45,110,111,116,101,16,0,17,35,99,111,111,107,105,101,45,108,97,119,45,110,111,116,105,102,16,0,19,35,99,111,111,107,105,101,45,108,97,119,45,112,97,100,100,105,110,103,16,0,17,35,99,111,111,107,105,101,45,108,97,119,45,112,111,112,117,112,16,0,18,35,99,111,111,107,105,101,45,108,97,119,45,115,99,114,105,112,116,16,0,14,35,99,111,111,107,105,101,45,108,97,119,45,117,119,16,0,16,35,99,111,111,107,105,101,45,108,97,119,45,119,114,97,112,16,0,19,35,99,111,111,107,105,101,45,108,97,119,45,119,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,45,108,97,121,101,114,16,0,23,35,99,111,111,107,105,101,45,108,97,121,101,114,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,45,108,97,121,101,114,45,111,118,101,114,108,97,121,16,0,23,35,99,111,111,107,105,101,45,108,97,121,101,114,45,112,114,111,116,101,99,116,111,114,16,0,21,35,99,111,111,107,105,101,45,108,97,121,101,114,45,119,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,45,108,101,103,97,108,16,0,18,35,99,111,111,107,105,101,45,108,101,103,97,108,45,105,110,102,111,16,0,20,35,99,111,111,107,105,101,45,108,101,103,97,108,45,110,111,116,105,99,101,16,0,14,35,99,111,111,107,105,101,45,108,101,103,97,108,115,16,0,19,35,99,111,111,107,105,101,45,108,101,103,105,115,108,97,116,105,111,110,16,0,16,35,99,111,111,107,105,101,45,108,105,103,104,116,98,111,120,16,0,12,35,99,111,111,107,105,101,45,108,105,110,101,16,0,12,35,99,111,111,107,105,101,45,108,105,115,116,16,0,15,35,99,111,111,107,105,101,45,109,97,110,97,103,101,114,16,0,22,35,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,100,105,97,108,111,103,16,0,23,35,99,111,111,107,105,101,45,109,97,110,97,103,101,114,45,119,114,97,112,112,101,114,16,0,12,35,99,111,111,107,105,101,45,109,97,115,107,16,0,15,35,99,111,111,107,105,101,45,109,101,108,100,105,110,103,16,0,25,35,99,111,111,107,105,101,45,109,101,108,100,105,110,103,45,99,111,110,116,97,105,110,101,114,16,0,19,35,99,111,111,107,105,101,45,109,101,108,100,105,110,103,45,116,111,112,16,0,15,35,99,111,111,107,105,101,45,109,101,108,100,117,110,103,16,0,12,35,99,111,111,107,105,101,45,109,101,115,115,16,0,15,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,20,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,97,114,101,97,16,0,19,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,111,120,16,0,25,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,102,105,120,101,100,16,0,23,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,111,118,101,114,108,97,121,16,0,21,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,112,97,110,101,108,16,0,20,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,116,101,120,116,16,0,23,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,119,114,97,112,112,101,114,16,0,26,35,99,111,111,107,105,101,45,109,101,115,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,45,109,105,110,105,45,112,111,112,117,112,16,0,18,35,99,111,111,107,105,101,45,109,111,100,97,108,45,50,48,50,50,16,0,22,35,99,111,111,107,105,101,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,16,0,16,35,99,111,111,107,105,101,45,109,111,100,97,108,45,98,103,16,0,23,35,99,111,111,107,105,101,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,45,109,111,100,97,108,45,111,118,101,114,108,97,121,16,0,19,35,99,111,111,107,105,101,45,109,111,100,101,114,110,45,105,110,102,111,16,0,22,35,99,111,111,107,105,101,45,109,111,100,101,114,110,45,111,118,101,114,108,97,121,16,0,14,35,99,111,111,107,105,101,45,109,111,100,117,108,101,16,0,15,35,99,111,111,107,105,101,45,109,111,110,115,116,97,104,16,0,15,35,99,111,111,107,105,101,45,109,111,110,115,116,101,114,16,0,19,35,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,98,97,114,16,0,25,35,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,114,111,111,116,16,0,19,35,99,111,111,107,105,101,45,109,111,110,115,116,101,114,45,115,97,110,16,0,11,35,99,111,111,107,105,101,45,109,115,103,16,0,15,35,99,111,111,107,105,101,45,109,115,103,45,98,97,114,16,0,15,35,99,111,111,107,105,101,45,109,115,103,45,98,111,120,16,0,19,35,99,111,111,107,105,101,45,109,115,103,45,119,114,97,112,112,101,114,16,0,11,35,99,111,111,107,105,101,45,110,97,103,16,0,14,35,99,111,111,107,105,101,45,110,97,118,98,97,114,16,0,14,35,99,111,111,107,105,101,45,110,98,45,109,115,103,16,0,11,35,99,111,111,107,105,101,45,110,101,119,16,0,12,35,99,111,111,107,105,101,45,110,111,114,109,16,0,12,35,99,111,111,107,105,101,45,110,111,116,101,16,0,12,35,99,111,111,107,105,101,45,110,111,116,102,16,0,12,35,99,111,111,107,105,101,45,110,111,116,105,16,0,14,35,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,25,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,97,99,107,103,114,111,117,110,100,16,0,21,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,97,114,16,0,22,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,108,111,99,107,101,114,16,0,18,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,111,120,16,0,24,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,16,0,36,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,100,97,116,97,45,112,114,105,118,97,99,121,45,115,101,108,101,99,116,111,114,16,0,21,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,100,105,97,108,111,103,16,0,21,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,104,101,97,100,101,114,16,0,20,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,111,117,116,101,114,16,0,22,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,111,118,101,114,108,97,121,16,0,23,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,112,108,97,116,102,111,114,109,16,0,20,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,112,111,112,117,112,16,0,22,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,115,101,99,116,105,111,110,16,0,18,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,116,111,112,16,0,25,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,116,111,112,45,98,97,110,110,101,114,16,0,17,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,117,107,16,0,17,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,118,51,16,0,19,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,16,0,22,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,16,0,31,35,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,45,97,100,118,97,110,99,101,100,16,0,15,35,99,111,111,107,105,101,45,110,111,116,105,99,101,50,16,0,13,35,99,111,111,107,105,101,45,110,111,116,105,102,16,0,26,35,99,111,111,107,105,101,45,110,111,116,105,102,99,97,116,105,111,110,45,98,97,110,110,101,114,16,0,16,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,16,0,20,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,27,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,16,0,35,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,24,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,16,0,26,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,108,111,99,107,16,0,24,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,111,120,16,0,30,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,16,0,28,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,101,110,116,16,0,27,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,104,101,97,100,101,114,16,0,23,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,106,99,16,0,28,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,109,101,115,115,97,103,101,16,0,28,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,111,118,101,114,108,97,121,16,0,28,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,115,101,99,116,105,111,110,16,0,28,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,112,101,114,16,0,23,35,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,98,97,114,16,0,16,35,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,16,0,14,35,99,111,111,107,105,101,45,110,111,116,105,102,121,16,0,19,35,99,111,111,107,105,101,45,110,111,116,105,102,121,80,97,110,101,108,16,0,11,35,99,111,111,107,105,101,45,110,116,99,16,0,19,35,99,111,111,107,105,101,45,110,121,105,108,97,116,107,111,122,97,116,16,0,14,35,99,111,111,107,105,101,45,111,112,116,45,105,110,16,0,21,35,99,111,111,107,105,101,45,111,112,116,45,105,110,45,98,117,116,116,111,110,16,0,21,35,99,111,111,107,105,101,45,111,112,116,45,105,110,45,102,111,111,116,101,114,16,0,15,35,99,111,111,107,105,101,45,111,112,116,45,111,117,116,16,0,13,35,99,111,111,107,105,101,45,111,112,116,105,110,16,0,14,35,99,111,111,107,105,101,45,111,112,116,111,117,116,16,0,25,35,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,99,111,110,116,97,105,110,101,114,16,0,22,35,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,102,111,111,116,101,114,16,0,23,35,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,109,101,115,115,97,103,101,16,0,25,35,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,109,111,100,97,108,45,98,111,120,16,0,23,35,99,111,111,107,105,101,45,111,118,101,114,108,97,121,45,119,114,97,112,112,101,114,16,0,12,35,99,111,111,107,105,101,45,112,97,103,101,16,0,13,35,99,111,111,107,105,101,45,112,97,110,101,108,16,0,20,35,99,111,111,107,105,101,45,112,97,110,101,108,45,98,97,110,110,101,114,16,0,20,35,99,111,111,107,105,101,45,112,97,110,101,108,45,100,105,97,108,111,103,16,0,16,35,99,111,111,107,105,101,45,112,101,114,109,45,98,97,114,16,0,17,35,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,101,16,0,22,35,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,45,98,97,114,16,0,19,35,99,111,111,107,105,101,45,112,108,97,99,101,104,111,108,100,101,114,16,0,11,35,99,111,111,107,105,101,45,112,110,108,16,0,14,35,99,111,111,107,105,101,45,112,111,108,105,99,101,16,0,16,35,99,111,111,107,105,101,45,112,111,108,105,99,105,101,115,16,0,25,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,99,99,101,112,116,45,98,97,114,16,0,24,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,103,114,101,101,109,101,110,116,16,0,20,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,97,108,101,114,116,16,0,21,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,114,16,0,27,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,115,105,99,45,104,111,108,100,101,114,16,0,20,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,108,111,99,107,16,0,28,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,111,116,116,111,109,45,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,111,120,16,0,22,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,115,101,110,116,16,0,26,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,115,101,110,116,45,98,97,114,16,0,24,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,105,97,108,111,103,16,0,25,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,105,115,99,108,97,105,109,101,114,16,0,19,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,104,105,110,116,16,0,21,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,104,111,108,100,101,114,16,0,19,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,105,110,102,111,16,0,20,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,108,97,121,101,114,16,0,22,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,16,0,20,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,111,100,97,108,16,0,18,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,115,103,16,0,24,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,111,118,101,114,108,97,121,16,0,21,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,99,101,16,0,27,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,41,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,95,95,109,105,99,114,111,115,101,114,118,105,99,101,16,0,38,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,111,118,101,114,108,97,121,45,98,108,111,99,107,45,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,105,110,16,0,20,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,117,112,16,0,22,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,101,99,116,105,111,110,16,0,21,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,104,97,100,111,119,16,0,21,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,116,105,99,107,121,16,0,20,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,116,114,97,112,16,0,22,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,97,114,110,105,110,103,16,0,19,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,16,0,22,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,16,0,24,35,99,111,111,107,105,101,45,112,111,108,105,116,105,99,97,115,46,97,99,116,105,118,101,16,0,22,35,99,111,111,107,105,101,45,112,111,108,105,116,105,99,115,45,112,111,112,117,112,16,0,16,35,99,111,111,107,105,101,45,112,111,108,105,116,121,107,97,16,0,11,35,99,111,111,107,105,101,45,112,111,112,16,0,21,35,99,111,111,107,105,101,45,112,111,112,45,99,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,45,112,111,112,45,117,112,16,0,13,35,99,111,111,107,105,101,45,112,111,112,105,110,16,0,21,35,99,111,111,107,105,101,45,112,111,112,105,110,45,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,45,112,111,112,111,118,101,114,16,0,17,35,99,111,111,107,105,101,45,112,111,112,117,112,45,98,97,114,16,0,18,35,99,111,111,107,105,101,45,112,111,112,117,112,45,99,111,110,116,16,0,23,35,99,111,111,107,105,101,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,45,112,111,112,117,112,45,99,111,110,116,101,110,116,16,0,25,35,99,111,111,107,105,101,45,112,111,112,117,112,45,104,105,110,116,101,114,103,114,117,110,100,16,0,19,35,99,111,111,107,105,101,45,112,111,112,117,112,45,105,110,110,101,114,16,0,19,35,99,111,111,107,105,101,45,112,111,112,117,112,45,111,117,116,101,114,16,0,21,35,99,111,111,107,105,101,45,112,111,112,117,112,45,111,118,101,114,108,97,121,16,0,26,35,99,111,111,107,105,101,45,112,111,112,117,112,45,119,105,116,104,45,111,118,101,114,108,97,121,16,0,21,35,99,111,111,107,105,101,45,112,111,112,117,112,45,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,45,112,111,112,117,112,50,16,0,29,35,99,111,111,107,105,101,45,112,111,112,117,112,50,45,115,116,105,99,107,121,45,119,114,97,112,112,101,114,16,0,21,35,99,111,111,107,105,101,45,112,111,119,105,97,100,111,109,105,101,110,105,101,16,0,13,35,99,111,111,107,105,101,45,112,114,101,102,115,16,0,18,35,99,111,111,107,105,101,45,112,114,101,102,115,45,105,99,111,110,16,0,15,35,99,111,111,107,105,101,45,112,114,101,118,101,110,116,16,0,15,35,99,111,111,107,105,101,45,112,114,105,118,97,99,121,16,0,22,35,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,20,35,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,105,110,102,111,16,0,28,35,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,105,110,102,111,45,119,114,97,112,112,101,114,16,0,22,35,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,16,0,29,35,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,21,35,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,112,111,112,117,112,16,0,23,35,99,111,111,107,105,101,45,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,45,112,114,111,109,112,116,16,0,20,35,99,111,111,107,105,101,45,112,114,111,109,112,116,45,102,105,120,101,100,16,0,24,35,99,111,111,107,105,101,45,112,114,111,109,112,116,45,112,114,111,116,101,99,116,111,114,16,0,11,35,99,111,111,107,105,101,45,112,117,112,16,0,21,35,99,111,111,107,105,101,45,112,117,112,117,112,45,119,114,97,112,112,101,114,16,0,16,35,99,111,111,107,105,101,45,113,117,101,115,116,105,111,110,16,0,23,35,99,111,111,107,105,101,45,113,117,101,115,116,105,111,110,45,98,97,110,110,101,114,16,0,11,35,99,111,111,107,105,101,45,114,97,109,16,0,14,35,99,111,111,107,105,101,45,114,101,103,105,111,110,16,0,13,35,99,111,111,107,105,101,45,114,101,103,108,101,16,0,15,35,99,111,111,107,105,101,45,114,101,113,117,101,115,116,16,0,16,35,99,111,111,107,105,101,45,114,101,113,117,105,114,101,100,16,0,19,35,99,111,111,107,105,101,45,114,101,115,116,114,105,99,116,105,111,110,16,0,26,35,99,111,111,107,105,101,45,114,101,116,97,114,103,101,116,105,110,103,45,109,111,100,117,108,101,16,0,14,35,99,111,111,107,105,101,45,114,105,98,98,111,110,16,0,16,35,99,111,111,107,105,101,45,114,105,98,98,111,110,45,49,16,0,18,35,99,111,111,107,105,101,45,114,105,99,104,116,108,105,110,105,101,16,0,31,35,99,111,111,107,105,101,45,114,105,99,104,116,108,105,110,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,12,35,99,111,111,107,105,101,45,114,111,100,111,16,0,11,35,99,111,111,107,105,101,45,114,111,119,16,0,17,35,99,111,111,107,105,101,45,114,117,108,101,115,45,116,111,112,16,0,14,35,99,111,111,107,105,101,45,115,99,114,101,101,110,16,0,15,35,99,111,111,107,105,101,45,115,101,99,116,105,111,110,16,0,16,35,99,111,111,107,105,101,45,115,101,108,101,99,116,111,114,16,0,23,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,45,115,101,99,116,105,111,110,16,0,22,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,97,108,101,114,116,16,0,21,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,99,111,110,116,16,0,26,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,100,108,103,16,0,22,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,108,97,121,101,114,16,0,24,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,45,119,114,97,112,112,101,114,16,0,32,35,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,46,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,16,0,14,35,99,111,111,107,105,101,45,115,104,97,100,111,119,16,0,22,35,99,111,111,107,105,101,45,115,105,116,101,45,99,111,110,116,97,105,110,101,114,16,0,26,35,99,111,111,107,105,101,45,115,105,116,101,45,99,111,110,116,97,105,110,101,114,45,98,111,120,16,0,13,35,99,111,111,107,105,101,45,115,108,105,100,101,16,0,14,35,99,111,111,107,105,101,45,115,108,105,100,101,114,16,0,21,35,99,111,111,107,105,101,45,115,108,105,100,105,110,103,45,112,111,112,117,112,16,0,13,35,99,111,111,107,105,101,45,115,112,97,99,101,16,0,14,35,99,111,111,107,105,101,45,115,112,97,99,101,114,16,0,17,35,99,111,111,107,105,101,45,115,116,97,116,101,109,101,110,116,16,0,28,35,99,111,111,107,105,101,45,115,116,97,116,117,115,45,119,105,100,103,101,116,45,104,111,108,100,101,114,16,0,14,35,99,111,111,107,105,101,45,115,116,105,99,107,50,16,0,14,35,99,111,111,107,105,101,45,115,116,105,99,107,121,16,0,18,35,99,111,111,107,105,101,45,115,116,105,99,107,121,45,98,97,114,16,0,21,35,99,111,111,107,105,101,45,115,116,111,114,101,45,115,101,99,116,105,111,110,16,0,17,35,99,111,111,107,105,101,45,115,116,114,97,112,108,105,110,101,16,0,13,35,99,111,111,107,105,101,45,115,116,114,105,112,16,0,13,35,99,111,111,107,105,101,45,116,97,98,108,101,16,0,20,35,99,111,111,107,105,101,45,116,97,106,101,107,111,122,116,97,116,97,115,16,0,13,35,99,111,111,107,105,101,45,116,101,114,109,115,16,0,12,35,99,111,111,107,105,101,45,116,101,120,116,16,0,19,35,99,111,111,107,105,101,45,116,101,120,116,45,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,45,116,105,109,116,117,108,45,98,111,116,16,0,12,35,99,111,111,107,105,101,45,116,105,112,115,16,0,14,35,99,111,111,107,105,101,45,116,105,115,115,117,101,16,0,13,35,99,111,111,107,105,101,45,116,111,97,115,116,16,0,23,35,99,111,111,107,105,101,45,116,111,97,115,116,45,99,111,110,116,97,105,110,101,114,16,0,15,35,99,111,111,107,105,101,45,116,111,111,108,98,97,114,16,0,15,35,99,111,111,107,105,101,45,116,111,111,108,107,105,116,16,0,20,35,99,111,111,107,105,101,45,116,111,111,108,107,105,116,45,119,114,97,112,16,0,15,35,99,111,111,107,105,101,45,116,111,111,108,116,105,112,16,0,15,35,99,111,111,107,105,101,45,116,111,112,45,98,97,114,16,0,14,35,99,111,111,107,105,101,45,116,111,112,98,97,114,16,0,17,35,99,111,111,107,105,101,45,116,111,112,115,116,105,99,107,121,16,0,14,35,99,111,111,107,105,101,45,116,117,110,110,101,108,16,0,10,35,99,111,111,107,105,101,45,117,101,16,0,14,35,99,111,111,107,105,101,45,117,110,105,45,107,108,16,0,19,35,99,111,111,107,105,101,45,117,115,97,103,101,45,97,108,101,114,116,16,0,20,35,99,111,111,107,105,101,45,117,115,97,103,101,45,110,111,116,105,99,101,16,0,26,35,99,111,111,107,105,101,45,117,115,97,103,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,19,35,99,111,111,107,105,101,45,117,115,97,103,101,45,112,97,110,101,108,16,0,26,35,99,111,111,107,105,101,45,117,115,101,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,45,117,122,101,110,101,116,16,0,14,35,99,111,111,107,105,101,45,118,97,114,115,101,108,16,0,12,35,99,111,111,107,105,101,45,118,105,101,119,16,0,15,35,99,111,111,107,105,101,45,118,117,101,45,97,112,112,16,0,20,35,99,111,111,107,105,101,45,119,97,108,108,45,119,114,97,112,112,101,114,16,0,12,35,99,111,111,107,105,101,45,119,97,114,110,16,0,15,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,19,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,97,112,112,16,0,24,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,98,97,99,107,100,114,111,112,16,0,22,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,98,97,110,110,101,114,16,0,19,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,98,97,114,16,0,19,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,98,111,120,16,0,25,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,16,0,19,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,100,105,118,16,0,20,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,103,100,112,114,16,0,25,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,105,115,45,115,116,117,112,105,100,16,0,23,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,112,97,100,100,105,110,103,16,0,21,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,112,97,110,101,108,16,0,22,35,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,112,108,117,103,105,110,16,0,12,35,99,111,111,107,105,101,45,119,101,108,108,16,0,11,35,99,111,111,107,105,101,45,119,101,116,16,0,14,35,99,111,111,107,105,101,45,119,105,100,103,101,116,16,0,22,35,99,111,111,107,105,101,45,119,105,100,103,101,116,45,99,111,110,102,105,114,109,16,0,14,35,99,111,111,107,105,101,45,119,105,110,100,111,119,16,0,12,35,99,111,111,107,105,101,45,119,114,97,112,16,0,15,35,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,25,35,99,111,111,107,105,101,45,119,114,97,112,112,101,114,45,99,111,110,116,97,105,110,101,114,16,0,10,35,99,111,111,107,105,101,45,121,109,16,0,12,35,99,111,111,107,105,101,45,122,111,110,101,16,0,14,35,99,111,111,107,105,101,46,97,99,116,105,118,101,16,0,13,35,99,111,111,107,105,101,46,97,108,101,114,116,16,0,21,35,99,111,111,107,105,101,46,97,108,101,114,116,45,119,97,114,110,105,110,103,16,0,20,35,99,111,111,107,105,101,46,97,108,105,103,110,45,99,101,110,116,101,114,16,0,14,35,99,111,111,107,105,101,46,99,111,108,45,49,50,16,0,14,35,99,111,111,107,105,101,46,99,111,111,107,105,101,16,0,15,35,99,111,111,107,105,101,46,99,111,111,107,105,101,115,16,0,13,35,99,111,111,107,105,101,46,102,105,120,101,100,16,0,20,35,99,111,111,107,105,101,46,102,105,120,101,100,45,98,111,116,116,111,109,16,0,16,35,99,111,111,107,105,101,46,110,103,45,115,99,111,112,101,16,0,14,35,99,111,111,107,105,101,46,110,111,116,105,99,101,16,0,11,35,99,111,111,107,105,101,46,112,45,52,16,0,12,35,99,111,111,107,105,101,46,114,103,112,100,16,0,14,35,99,111,111,107,105,101,46,115,104,111,119,109,101,16,0,12,35,99,111,111,107,105,101,46,118,105,101,119,16,0,13,35,99,111,111,107,105,101,46,119,45,49,48,48,16,0,8,35,99,111,111,107,105,101,49,16,0,13,35,99,111,111,107,105,101,49,56,121,101,97,114,16,0,8,35,99,111,111,107,105,101,50,16,0,9,35,99,111,111,107,105,101,50,57,16,0,15,35,99,111,111,107,105,101,50,77,101,108,100,117,110,103,16,0,14,35,99,111,111,107,105,101,51,97,114,104,77,115,103,16,0,11,35,99,111,111,107,105,101,54,56,55,54,16,0,10,35,99,111,111,107,105,101,65,99,99,16,0,19,35,99,111,111,107,105,101,65,99,99,101,112,116,66,97,110,110,101,114,16,0,16,35,99,111,111,107,105,101,65,99,99,101,112,116,66,97,114,16,0,16,35,99,111,111,107,105,101,65,99,99,101,112,116,66,111,120,16,0,22,35,99,111,111,107,105,101,65,99,99,101,112,116,67,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,65,99,99,101,112,116,67,111,110,116,101,110,116,16,0,17,35,99,111,111,107,105,101,65,99,99,101,112,116,73,110,102,111,16,0,20,35,99,111,111,107,105,101,65,99,99,101,112,116,77,101,115,115,97,103,101,16,0,36,35,99,111,111,107,105,101,65,99,99,101,112,116,77,111,100,97,108,95,95,95,66,86,95,109,111,100,97,108,95,111,117,116,101,114,95,16,0,20,35,99,111,111,107,105,101,65,99,99,101,112,116,79,118,101,114,108,97,121,16,0,16,35,99,111,111,107,105,101,65,99,99,101,112,116,80,111,115,16,0,20,35,99,111,111,107,105,101,65,99,99,101,112,116,87,114,97,112,112,101,114,16,0,17,35,99,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,16,0,26,35,99,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,67,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,65,99,99,101,112,116,97,116,105,111,110,16,0,25,35,99,111,111,107,105,101,65,99,99,101,112,116,105,110,103,67,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,65,99,99,101,115,115,70,114,97,109,101,16,0,10,35,99,111,111,107,105,101,65,99,107,16,0,18,35,99,111,111,107,105,101,65,99,107,110,111,119,108,101,100,103,101,16,0,22,35,99,111,111,107,105,101,65,99,107,110,111,119,108,101,100,103,101,109,101,110,116,16,0,28,35,99,111,111,107,105,101,65,99,107,110,111,119,108,101,100,103,101,109,101,110,116,83,112,97,99,101,114,16,0,15,35,99,111,111,107,105,101,65,99,116,105,118,101,73,100,16,0,9,35,99,111,111,107,105,101,65,100,16,0,10,35,99,111,111,107,105,101,65,100,118,16,0,18,35,99,111,111,107,105,101,65,100,118,101,114,116,105,115,105,110,103,16,0,13,35,99,111,111,107,105,101,65,100,118,105,99,101,16,0,13,35,99,111,111,107,105,101,65,100,118,105,115,101,16,0,22,35,99,111,111,107,105,101,65,100,118,105,115,101,67,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,65,100,118,105,115,111,114,16,0,15,35,99,111,111,107,105,101,65,103,101,67,104,101,99,107,16,0,12,35,99,111,111,107,105,101,65,103,114,101,101,16,0,15,35,99,111,111,107,105,101,65,103,114,101,101,66,97,114,16,0,16,35,99,111,111,107,105,101,65,103,114,101,101,70,111,114,109,16,0,16,35,99,111,111,107,105,101,65,103,114,101,101,109,101,110,116,16,0,19,35,99,111,111,107,105,101,65,103,114,101,101,109,101,110,116,66,97,114,16,0,19,35,99,111,111,107,105,101,65,103,114,101,101,109,101,110,116,66,111,120,16,0,23,35,99,111,111,107,105,101,65,103,114,101,101,109,101,110,116,67,111,110,116,101,110,116,16,0,12,35,99,111,111,107,105,101,65,108,97,114,109,16,0,15,35,99,111,111,107,105,101,65,108,97,114,109,66,97,114,16,0,12,35,99,111,111,107,105,101,65,108,101,114,116,16,0,18,35,99,111,111,107,105,101,65,108,101,114,116,66,97,110,110,101,114,16,0,15,35,99,111,111,107,105,101,65,108,101,114,116,66,97,114,16,0,15,35,99,111,111,107,105,101,65,108,101,114,116,66,105,103,16,0,15,35,99,111,111,107,105,101,65,108,101,114,116,66,111,120,16,0,17,35,99,111,111,107,105,101,65,108,101,114,116,66,111,120,73,68,16,0,15,35,99,111,111,107,105,101,65,108,101,114,116,67,110,116,16,0,21,35,99,111,111,107,105,101,65,108,101,114,116,67,111,110,116,97,105,110,101,114,16,0,17,35,99,111,111,107,105,101,65,108,101,114,116,76,97,121,101,114,16,0,19,35,99,111,111,107,105,101,65,108,101,114,116,77,101,115,115,97,103,101,16,0,16,35,99,111,111,107,105,101,65,108,101,114,116,87,114,97,112,16,0,19,35,99,111,111,107,105,101,65,108,101,114,116,87,114,97,112,112,101,114,16,0,19,35,99,111,111,107,105,101,65,108,101,114,116,95,112,111,112,112,101,114,16,0,13,35,99,111,111,107,105,101,65,108,101,114,116,101,16,0,12,35,99,111,111,107,105,101,65,108,108,111,119,16,0,16,35,99,111,111,107,105,101,65,108,108,111,119,87,114,97,112,16,0,14,35,99,111,111,107,105,101,65,110,110,111,121,101,114,16,0,14,35,99,111,111,107,105,101,65,110,122,101,105,103,101,16,0,11,35,99,111,111,107,105,101,65,114,101,97,16,0,16,35,99,111,111,107,105,101,65,115,115,105,115,116,97,110,116,16,0,11,35,99,111,111,107,105,101,65,117,116,104,16,0,10,35,99,111,111,107,105,101,66,65,82,16,0,9,35,99,111,111,107,105,101,66,71,16,0,15,35,99,111,111,107,105,101,66,97,99,107,100,114,111,112,16,0,17,35,99,111,111,107,105,101,66,97,99,107,103,114,111,117,110,100,16,0,11,35,99,111,111,107,105,101,66,97,108,107,16,0,10,35,99,111,111,107,105,101,66,97,110,16,0,14,35,99,111,111,107,105,101,66,97,110,100,101,97,117,16,0,26,35,99,111,111,107,105,101,66,97,110,100,101,97,117,67,111,110,115,101,110,116,101,109,101,110,116,16,0,13,35,99,111,111,107,105,101,66,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,66,97,110,110,101,114,45,103,100,112,114,16,0,18,35,99,111,111,107,105,101,66,97,110,110,101,114,45,109,97,105,110,16,0,15,35,99,111,111,107,105,101,66,97,110,110,101,114,66,71,16,0,22,35,99,111,111,107,105,101,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,66,97,110,110,101,114,67,111,110,116,101,110,116,16,0,24,35,99,111,111,107,105,101,66,97,110,110,101,114,67,111,110,116,101,110,116,95,110,101,119,16,0,14,35,99,111,111,107,105,101,66,97,110,110,101,114,68,16,0,28,35,99,111,111,107,105,101,66,97,110,110,101,114,68,66,80,114,105,118,97,99,121,78,111,116,105,99,101,16,0,16,35,99,111,111,107,105,101,66,97,110,110,101,114,68,105,118,16,0,16,35,99,111,111,107,105,101,66,97,110,110,101,114,71,84,86,16,0,17,35,99,111,111,107,105,101,66,97,110,110,101,114,73,110,102,111,16,0,17,35,99,111,111,107,105,101,66,97,110,110,101,114,77,97,105,110,16,0,18,35,99,111,111,107,105,101,66,97,110,110,101,114,77,111,100,97,108,16,0,20,35,99,111,111,107,105,101,66,97,110,110,101,114,79,118,101,114,108,97,121,16,0,17,35,99,111,111,107,105,101,66,97,110,110,101,114,87,114,97,112,16,0,20,35,99,111,111,107,105,101,66,97,110,110,101,114,87,114,97,112,112,101,114,16,0,10,35,99,111,111,107,105,101,66,97,114,16,0,12,35,99,111,111,107,105,101,66,97,114,66,67,16,0,19,35,99,111,111,107,105,101,66,97,114,67,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,66,97,114,82,71,80,68,79,118,101,114,108,97,121,16,0,17,35,99,111,111,107,105,101,66,97,114,82,71,80,68,80,111,112,16,0,17,35,99,111,111,107,105,101,66,97,114,86,105,115,105,98,108,101,16,0,17,35,99,111,111,107,105,101,66,97,114,87,114,97,112,112,101,114,16,0,10,35,99,111,111,107,105,101,66,99,107,16,0,16,35,99,111,111,107,105,101,66,103,79,118,101,114,108,97,121,16,0,15,35,99,111,111,107,105,101,66,108,97,99,107,111,117,116,16,0,12,35,99,111,111,107,105,101,66,108,111,99,107,16,0,13,35,99,111,111,107,105,101,66,108,111,99,107,50,16,0,14,35,99,111,111,107,105,101,66,108,111,99,107,101,114,16,0,10,35,99,111,111,107,105,101,66,110,114,16,0,10,35,99,111,111,107,105,101,66,111,120,16,0,19,35,99,111,111,107,105,101,66,111,120,67,111,110,116,97,105,110,101,114,16,0,17,35,99,111,111,107,105,101,66,111,120,79,118,101,114,108,97,121,16,0,17,35,99,111,111,107,105,101,66,111,120,87,114,97,112,112,101,114,16,0,9,35,99,111,111,107,105,101,66,115,16,0,8,35,99,111,111,107,105,101,67,16,0,13,35,99,111,111,107,105,101,67,68,107,101,121,115,16,0,11,35,99,111,111,107,105,101,67,78,73,76,16,0,9,35,99,111,111,107,105,101,67,84,16,0,11,35,99,111,111,107,105,101,67,97,114,100,16,0,13,35,99,111,111,107,105,101,67,97,114,100,66,103,16,0,12,35,99,111,111,107,105,101,67,104,101,99,107,16,0,16,35,99,111,111,107,105,101,67,104,101,99,107,45,97,112,112,16,0,14,35,99,111,111,107,105,101,67,104,101,99,107,101,114,16,0,20,35,99,111,111,107,105,101,67,104,101,99,107,101,114,66,97,110,110,101,114,16,0,13,35,99,111,111,107,105,101,67,104,111,105,99,101,16,0,19,35,99,111,111,107,105,101,67,104,111,105,99,101,66,97,110,110,101,114,16,0,16,35,99,111,111,107,105,101,67,104,111,105,99,101,66,97,114,16,0,18,35,99,111,111,107,105,101,67,104,111,105,99,101,66,100,114,111,112,16,0,17,35,99,111,111,107,105,101,67,104,111,105,99,101,73,110,102,111,16,0,23,35,99,111,111,107,105,101,67,104,111,105,99,101,73,110,102,111,65,99,99,101,112,116,16,0,25,35,99,111,111,107,105,101,67,104,111,105,99,101,73,110,102,111,95,103,101,110,101,114,97,108,16,0,25,35,99,111,111,107,105,101,67,104,111,105,99,101,77,111,100,97,108,79,118,101,114,108,97,121,16,0,17,35,99,111,111,107,105,101,67,104,111,105,99,101,78,111,116,101,16,0,16,35,99,111,111,107,105,101,67,104,111,105,99,101,115,73,68,16,0,14,35,99,111,111,107,105,101,67,104,111,111,115,101,114,16,0,14,35,99,111,111,107,105,101,67,108,105,99,107,101,114,16,0,11,35,99,111,111,107,105,101,67,110,105,108,16,0,17,35,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,16,0,23,35,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,66,97,110,110,101,114,16,0,20,35,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,66,111,120,16,0,24,35,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,77,101,115,115,97,103,101,16,0,23,35,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,78,111,116,105,99,101,16,0,26,35,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,80,111,108,105,99,121,66,111,120,16,0,17,35,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,121,16,0,22,35,99,111,111,107,105,101,67,111,109,112,108,105,97,110,99,121,77,111,100,97,108,16,0,16,35,99,111,111,107,105,101,67,111,110,97,116,105,110,101,114,16,0,14,35,99,111,111,107,105,101,67,111,110,99,101,110,116,16,0,11,35,99,111,111,107,105,101,67,111,110,102,16,0,17,35,99,111,111,107,105,101,67,111,110,102,105,103,70,111,114,109,16,0,14,35,99,111,111,107,105,101,67,111,110,102,105,114,109,16,0,17,35,99,111,111,107,105,101,67,111,110,102,105,114,109,68,105,118,16,0,19,35,99,111,111,107,105,101,67,111,110,102,105,114,109,97,116,105,111,110,16,0,22,35,99,111,111,107,105,101,67,111,110,102,105,114,109,97,116,105,111,110,66,97,114,16,0,28,35,99,111,111,107,105,101,67,111,110,102,105,114,109,97,116,105,111,110,67,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,67,111,110,115,101,110,115,16,0,14,35,99,111,111,107,105,101,67,111,110,115,101,110,116,16,0,19,35,99,111,111,107,105,101,67,111,110,115,101,110,116,65,108,101,114,116,16,0,17,35,99,111,111,107,105,101,67,111,110,115,101,110,116,65,112,112,16,0,22,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,99,107,100,114,111,112,16,0,24,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,99,107,103,114,111,117,110,100,16,0,20,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,16,0,29,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,16,0,17,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,97,114,16,0,19,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,108,111,99,107,16,0,18,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,108,111,107,16,0,17,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,111,120,16,0,23,35,99,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,16,0,17,35,99,111,111,107,105,101,67,111,110,115,101,110,116,68,105,118,16,0,18,35,99,111,111,107,105,101,67,111,110,115,101,110,116,69,108,73,100,16,0,18,35,99,111,111,107,105,101,67,111,110,115,101,110,116,70,111,114,109,16,0,20,35,99,111,111,107,105,101,67,111,110,115,101,110,116,72,111,108,100,101,114,16,0,29,35,99,111,111,107,105,101,67,111,110,115,101,110,116,73,110,105,116,105,97,108,66,97,99,107,100,114,111,112,16,0,21,35,99,111,111,107,105,101,67,111,110,115,101,110,116,77,101,115,115,97,103,101,16,0,17,35,99,111,111,107,105,101,67,111,110,115,101,110,116,77,115,103,16,0,18,35,99,111,111,107,105,101,67,111,110,115,101,110,116,78,111,116,101,16,0,20,35,99,111,111,107,105,101,67,111,110,115,101,110,116,78,111,116,105,99,101,16,0,21,35,99,111,111,107,105,101,67,111,110,115,101,110,116,79,118,101,114,108,97,121,16,0,19,35,99,111,111,107,105,101,67,111,110,115,101,110,116,80,97,110,101,108,16,0,21,35,99,111,111,107,105,101,67,111,110,115,101,110,116,80,97,110,101,108,85,112,16,0,19,35,99,111,111,107,105,101,67,111,110,115,101,110,116,80,111,112,117,112,16,0,20,35,99,111,111,107,105,101,67,111,110,115,101,110,116,80,114,111,109,112,116,16,0,20,35,99,111,111,107,105,101,67,111,110,115,101,110,116,87,105,110,100,111,119,16,0,18,35,99,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,16,0,21,35,99,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,112,101,114,16,0,30,35,99,111,111,107,105,101,67,111,110,115,101,110,116,87,114,97,112,112,101,114,67,111,110,72,111,108,100,101,114,16,0,18,35,99,111,111,107,105,101,67,111,110,115,101,110,116,95,68,105,118,16,0,11,35,99,111,111,107,105,101,67,111,110,116,16,0,16,35,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,15,35,99,111,111,107,105,101,67,111,110,116,101,110,101,114,16,0,14,35,99,111,111,107,105,101,67,111,110,116,101,110,116,16,0,18,35,99,111,111,107,105,101,67,111,110,116,114,97,112,116,105,111,110,16,0,14,35,99,111,111,107,105,101,67,111,110,116,114,111,108,16,0,21,35,99,111,111,107,105,101,67,111,110,116,114,111,108,87,114,97,112,112,101,114,16,0,23,35,99,111,111,107,105,101,67,111,110,116,114,111,108,95,112,97,110,101,108,105,99,111,16,0,17,35,99,111,111,107,105,101,67,111,110,116,114,111,108,108,101,114,16,0,16,35,99,111,111,107,105,101,67,111,111,107,105,101,66,97,114,16,0,11,35,99,111,111,107,105,101,67,111,112,121,16,0,13,35,99,111,111,107,105,101,67,111,114,110,101,114,16,0,10,35,99,111,111,107,105,101,67,116,97,16,0,21,35,99,111,111,107,105,101,68,97,116,97,80,114,111,116,101,99,116,105,111,110,16,0,25,35,99,111,111,107,105,101,68,101,99,108,97,114,97,116,105,111,110,87,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,68,105,97,108,111,103,16,0,17,35,99,111,111,107,105,101,68,105,97,108,111,103,67,116,110,114,16,0,15,35,99,111,111,107,105,101,68,105,97,108,111,103,117,101,16,0,16,35,99,111,111,107,105,101,68,105,110,103,115,98,117,109,115,16,0,14,35,99,111,111,107,105,101,68,105,114,87,114,97,112,16,0,16,35,99,111,111,107,105,101,68,105,114,101,99,116,105,118,101,16,0,11,35,99,111,111,107,105,101,68,105,115,99,16,0,17,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,16,0,23,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,66,97,110,110,101,114,16,0,20,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,66,111,120,16,0,26,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,67,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,68,105,118,16,0,21,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,73,110,102,111,16,0,22,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,78,111,116,105,102,16,0,24,35,99,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,87,114,97,112,112,101,114,16,0,16,35,99,111,111,107,105,101,68,105,115,99,108,97,109,101,114,16,0,21,35,99,111,111,107,105,101,68,105,115,109,105,115,115,67,111,110,116,101,110,116,16,0,14,35,99,111,111,107,105,101,68,105,115,112,108,97,121,16,0,18,35,99,111,111,107,105,101,68,105,115,112,108,97,121,70,111,114,109,16,0,10,35,99,111,111,107,105,101,68,105,118,16,0,16,35,99,111,111,107,105,101,68,105,118,45,65,108,101,114,116,16,0,20,35,99,111,111,107,105,101,68,105,118,66,97,99,107,103,114,111,117,110,100,16,0,17,35,99,111,111,107,105,101,68,105,118,67,111,110,116,101,110,116,16,0,15,35,99,111,111,107,105,101,68,105,118,67,111,118,101,114,16,0,10,35,99,111,111,107,105,101,68,108,103,16,0,11,35,99,111,111,107,105,101,68,108,103,49,16,0,12,35,99,111,111,107,105,101,68,111,117,103,104,16,0,11,35,99,111,111,107,105,101,68,114,111,112,16,0,15,35,99,111,111,107,105,101,68,114,111,112,68,111,119,110,16,0,9,35,99,111,111,107,105,101,69,67,16,0,9,35,99,111,111,107,105,101,69,85,16,0,14,35,99,111,111,107,105,101,69,108,101,109,101,110,116,16,0,22,35,99,111,111,107,105,101,69,114,114,111,114,77,101,115,115,97,103,101,68,105,118,16,0,9,35,99,111,111,107,105,101,69,117,16,0,16,35,99,111,111,107,105,101,69,117,82,117,108,101,66,97,114,16,0,12,35,99,111,111,107,105,101,70,105,120,101,100,16,0,13,35,99,111,111,107,105,101,70,111,111,116,101,114,16,0,14,35,99,111,111,107,105,101,70,111,117,110,100,114,121,16,0,12,35,99,111,111,107,105,101,70,114,97,109,101,16,0,16,35,99,111,111,107,105,101,71,68,80,82,112,111,112,117,112,16,0,11,35,99,111,111,107,105,101,71,100,112,114,16,0,15,35,99,111,111,107,105,101,71,114,97,100,105,101,110,116,16,0,15,35,99,111,111,107,105,101,71,117,97,114,100,77,115,103,16,0,11,35,99,111,111,107,105,101,72,84,77,76,16,0,11,35,99,111,111,107,105,101,72,101,97,100,16,0,13,35,99,111,111,107,105,101,72,101,97,100,101,114,16,0,11,35,99,111,111,107,105,101,72,105,110,116,16,0,14,35,99,111,111,107,105,101,72,105,110,116,69,120,116,16,0,23,35,99,111,111,107,105,101,72,105,110,116,77,111,100,97,108,71,101,110,101,114,97,108,16,0,21,35,99,111,111,107,105,101,72,105,110,116,95,99,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,72,105,110,119,101,105,115,16,0,13,35,99,111,111,107,105,101,72,111,108,100,101,114,16,0,14,35,99,111,111,107,105,101,72,111,108,115,116,101,114,16,0,9,35,99,111,111,107,105,101,73,68,16,0,9,35,99,111,111,107,105,101,73,87,16,0,15,35,99,111,111,107,105,101,73,100,105,111,116,76,97,119,16,0,24,35,99,111,111,107,105,101,73,100,105,111,116,105,99,80,111,108,105,99,121,73,110,102,111,16,0,13,35,99,111,111,107,105,101,73,102,114,97,109,101,16,0,14,35,99,111,111,107,105,101,73,110,102,67,111,110,116,16,0,11,35,99,111,111,107,105,101,73,110,102,111,16,0,26,35,99,111,111,107,105,101,73,110,102,111,65,99,99,101,112,116,67,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,73,110,102,111,65,114,121,16,0,17,35,99,111,111,107,105,101,73,110,102,111,66,97,110,110,101,114,16,0,14,35,99,111,111,107,105,101,73,110,102,111,66,97,114,16,0,17,35,99,111,111,107,105,101,73,110,102,111,66,111,116,116,111,109,16,0,14,35,99,111,111,107,105,101,73,110,102,111,66,111,120,16,0,20,35,99,111,111,107,105,101,73,110,102,111,67,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,73,110,102,111,67,111,110,116,101,110,116,16,0,19,35,99,111,111,107,105,101,73,110,102,111,68,101,115,105,103,110,95,49,16,0,17,35,99,111,111,107,105,101,73,110,102,111,68,105,97,108,111,103,16,0,14,35,99,111,111,107,105,101,73,110,102,111,68,105,118,16,0,17,35,99,111,111,107,105,101,73,110,102,111,70,111,111,116,101,114,16,0,17,35,99,111,111,107,105,101,73,110,102,111,72,111,108,100,101,114,16,0,16,35,99,111,111,107,105,101,73,110,102,111,76,97,121,101,114,16,0,15,35,99,111,111,107,105,101,73,110,102,111,77,97,105,110,16,0,14,35,99,111,111,107,105,101,73,110,102,111,77,97,120,16,0,18,35,99,111,111,107,105,101,73,110,102,111,77,101,115,115,97,103,101,16,0,19,35,99,111,111,107,105,101,73,110,102,111,77,115,103,79,117,116,101,114,16,0,21,35,99,111,111,107,105,101,73,110,102,111,77,115,103,87,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,73,110,102,111,78,101,119,16,0,17,35,99,111,111,107,105,101,73,110,102,111,79,114,97,110,103,101,16,0,18,35,99,111,111,107,105,101,73,110,102,111,79,117,116,108,105,110,101,16,0,18,35,99,111,111,107,105,101,73,110,102,111,79,118,101,114,108,97,121,16,0,20,35,99,111,111,107,105,101,73,110,102,111,79,118,101,114,108,97,121,66,103,16,0,16,35,99,111,111,107,105,101,73,110,102,111,80,97,110,101,108,16,0,17,35,99,111,111,107,105,101,73,110,102,111,87,105,110,100,111,119,16,0,18,35,99,111,111,107,105,101,73,110,102,111,87,114,97,112,112,101,114,16,0,21,35,99,111,111,107,105,101,73,110,102,111,95,102,105,114,115,116,84,105,109,101,16,0,14,35,99,111,111,107,105,101,73,110,102,111,98,111,120,16,0,17,35,99,111,111,107,105,101,73,110,102,111,114,109,97,99,106,97,16,0,18,35,99,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,16,0,28,35,99,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,66,111,120,87,114,97,112,112,101,114,16,0,23,35,99,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,80,111,112,117,112,16,0,23,35,99,111,111,107,105,101,73,110,102,111,114,109,97,116,105,118,97,66,114,101,118,101,16,0,15,35,99,111,111,107,105,101,73,110,102,111,114,109,101,114,16,0,22,35,99,111,111,107,105,101,73,110,102,111,114,109,101,114,66,111,111,107,108,101,116,16,0,12,35,99,111,111,107,105,101,74,83,100,105,118,16,0,10,35,99,111,111,107,105,101,74,97,114,16,0,15,35,99,111,111,107,105,101,75,111,110,116,101,110,101,114,16,0,9,35,99,111,111,107,105,101,76,89,16,0,10,35,99,111,111,107,105,101,76,97,98,16,0,10,35,99,111,111,107,105,101,76,97,119,16,0,14,35,99,111,111,107,105,101,76,97,119,50,48,49,53,16,0,27,35,99,111,111,107,105,101,76,97,119,65,99,107,110,111,119,108,101,100,103,109,101,110,116,68,105,118,16,0,15,35,99,111,111,107,105,101,76,97,119,65,108,101,114,116,16,0,16,35,99,111,111,107,105,101,76,97,119,66,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,76,97,119,66,97,110,110,101,114,73,100,16,0,13,35,99,111,111,107,105,101,76,97,119,66,97,114,16,0,15,35,99,111,111,107,105,101,76,97,119,66,108,111,99,107,16,0,13,35,99,111,111,107,105,101,76,97,119,66,111,111,16,0,13,35,99,111,111,107,105,101,76,97,119,66,111,120,16,0,27,35,99,111,111,107,105,101,76,97,119,67,111,109,112,108,105,97,110,99,101,77,101,115,115,97,103,101,16,0,19,35,99,111,111,107,105,101,76,97,119,67,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,76,97,119,68,105,115,99,108,97,105,109,101,114,16,0,16,35,99,111,111,107,105,101,76,97,119,72,101,97,100,101,114,16,0,14,35,99,111,111,107,105,101,76,97,119,73,110,102,111,16,0,19,35,99,111,111,107,105,101,76,97,119,73,110,102,111,66,114,101,118,101,16,0,21,35,99,111,111,107,105,101,76,97,119,73,110,102,111,114,109,97,116,105,111,110,16,0,17,35,99,111,111,107,105,101,76,97,119,77,101,115,115,97,103,101,16,0,15,35,99,111,111,107,105,101,76,97,119,80,97,110,101,108,16,0,13,35,99,111,111,107,105,101,76,97,119,80,110,108,16,0,15,35,99,111,111,107,105,101,76,97,119,80,111,112,117,112,16,0,24,35,99,111,111,107,105,101,76,97,119,80,111,112,117,112,67,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,76,97,119,84,101,120,116,16,0,17,35,99,111,111,107,105,101,76,97,119,95,98,97,110,110,101,114,16,0,17,35,99,111,111,107,105,101,76,97,119,95,99,65,108,101,114,116,16,0,12,35,99,111,111,107,105,101,76,97,121,101,114,16,0,16,35,99,111,111,107,105,101,76,97,121,101,114,77,97,105,110,16,0,13,35,99,111,111,107,105,101,76,97,121,111,117,116,16,0,12,35,99,111,111,107,105,101,76,101,103,97,108,16,0,22,35,99,111,111,107,105,101,76,101,103,105,115,108,97,116,105,111,110,73,110,102,111,16,0,21,35,99,111,111,107,105,101,76,101,118,101,108,73,110,116,101,114,99,101,112,116,16,0,14,35,99,111,111,107,105,101,76,105,99,101,110,115,101,16,0,11,35,99,111,111,107,105,101,76,105,110,101,16,0,11,35,99,111,111,107,105,101,76,111,97,100,16,0,16,35,99,111,111,107,105,101,77,97,105,110,80,97,110,101,108,16,0,14,35,99,111,111,107,105,101,77,97,110,100,97,116,101,16,0,14,35,99,111,111,107,105,101,77,101,108,100,105,110,103,16,0,14,35,99,111,111,107,105,101,77,101,108,100,117,110,103,16,0,11,35,99,111,111,107,105,101,77,101,110,115,16,0,14,35,99,111,111,107,105,101,77,101,115,115,97,103,101,16,0,18,35,99,111,111,107,105,101,77,101,115,115,97,103,101,65,114,101,97,16,0,20,35,99,111,111,107,105,101,77,101,115,115,97,103,101,66,97,110,110,101,114,16,0,17,35,99,111,111,107,105,101,77,101,115,115,97,103,101,66,97,114,16,0,23,35,99,111,111,107,105,101,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,24,35,99,111,111,107,105,101,77,101,115,115,97,103,101,68,105,115,112,108,97,121,68,73,86,16,0,17,35,99,111,111,107,105,101,77,101,115,115,97,103,101,68,105,118,16,0,20,35,99,111,111,107,105,101,77,101,115,115,97,103,101,72,111,108,100,101,114,16,0,19,35,99,111,111,107,105,101,77,101,115,115,97,103,101,77,111,100,117,108,16,0,26,35,99,111,111,107,105,101,77,101,115,115,97,103,101,78,111,116,105,102,121,66,97,110,110,101,114,16,0,19,35,99,111,111,107,105,101,77,101,115,115,97,103,101,79,117,116,101,114,16,0,21,35,99,111,111,107,105,101,77,101,115,115,97,103,101,87,114,97,112,112,101,114,16,0,22,35,99,111,111,107,105,101,77,101,115,115,97,103,101,108,105,103,104,116,98,111,120,16,0,24,35,99,111,111,107,105,101,77,101,115,115,97,103,101,115,67,111,110,116,97,105,110,101,114,16,0,10,35,99,111,111,107,105,101,77,103,110,16,0,18,35,99,111,111,107,105,101,77,111,100,97,108,66,111,116,116,111,109,16,0,18,35,99,111,111,107,105,101,77,111,100,97,108,67,101,110,116,101,114,16,0,16,35,99,111,111,107,105,101,77,111,100,97,108,76,105,118,101,16,0,19,35,99,111,111,107,105,101,77,111,100,97,108,79,118,101,114,108,97,121,16,0,13,35,99,111,111,107,105,101,77,111,100,117,108,101,16,0,10,35,99,111,111,107,105,101,77,111,110,16,0,14,35,99,111,111,107,105,101,77,111,110,115,116,101,114,16,0,21,35,99,111,111,107,105,101,77,111,110,115,116,101,114,87,114,97,112,112,101,114,16,0,10,35,99,111,111,107,105,101,77,115,103,16,0,11,35,99,111,111,107,105,101,77,115,103,50,16,0,15,35,99,111,111,107,105,101,77,115,103,65,108,101,114,116,16,0,15,35,99,111,111,107,105,101,77,115,103,66,108,111,99,107,16,0,13,35,99,111,111,107,105,101,77,115,103,68,105,118,16,0,14,35,99,111,111,107,105,101,77,115,103,85,115,101,114,16,0,17,35,99,111,111,107,105,101,77,115,103,87,114,97,112,112,101,114,16,0,18,35,99,111,111,107,105,101,77,115,103,87,114,97,112,112,101,114,50,16,0,15,35,99,111,111,107,105,101,78,111,110,115,101,110,115,101,16,0,13,35,99,111,111,107,105,101,78,111,116,83,101,116,16,0,14,35,99,111,111,107,105,101,78,111,116,101,66,111,120,16,0,15,35,99,111,111,107,105,101,78,111,116,101,87,114,97,112,16,0,12,35,99,111,111,107,105,101,78,111,116,101,115,16,0,11,35,99,111,111,107,105,101,78,111,116,102,16,0,13,35,99,111,111,107,105,101,78,111,116,105,99,101,16,0,18,35,99,111,111,107,105,101,78,111,116,105,99,101,65,108,101,114,116,16,0,19,35,99,111,111,107,105,101,78,111,116,105,99,101,66,97,110,110,101,114,16,0,22,35,99,111,111,107,105,101,78,111,116,105,99,101,67,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,78,111,116,105,99,101,67,111,110,116,101,110,116,16,0,19,35,99,111,111,107,105,101,78,111,116,105,99,101,68,105,97,108,111,103,16,0,20,35,99,111,111,107,105,101,78,111,116,105,99,101,69,108,101,109,101,110,116,16,0,20,35,99,111,111,107,105,101,78,111,116,105,99,101,77,101,115,115,97,103,101,16,0,18,35,99,111,111,107,105,101,78,111,116,105,99,101,80,111,112,117,112,16,0,16,35,99,111,111,107,105,101,78,111,116,105,99,101,80,114,111,16,0,17,35,99,111,111,107,105,101,78,111,116,105,99,101,85,115,101,114,16,0,23,35,99,111,111,107,105,101,78,111,116,105,99,101,95,99,111,110,116,97,105,110,101,114,16,0,19,35,99,111,111,107,105,101,78,111,116,105,99,101,95,111,116,104,101,114,16,0,12,35,99,111,111,107,105,101,78,111,116,105,102,16,0,18,35,99,111,111,107,105,101,78,111,116,105,102,97,99,116,105,111,110,16,0,19,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,25,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,110,110,101,114,16,0,32,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,110,110,101,114,87,114,97,112,112,101,114,16,0,22,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,16,0,28,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,66,111,111,116,115,116,114,97,112,16,0,28,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,67,111,110,116,97,105,110,101,114,16,0,25,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,68,105,97,108,111,103,16,0,24,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,76,97,121,101,114,16,0,23,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,77,97,105,110,16,0,25,35,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,83,99,114,101,101,110,16,0,15,35,99,111,111,107,105,101,78,111,116,105,102,105,101,114,16,0,22,35,99,111,111,107,105,101,78,111,116,105,102,105,101,114,87,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,78,111,116,105,102,121,16,0,20,35,99,111,111,107,105,101,78,111,116,105,102,121,87,114,97,112,112,101,114,16,0,9,35,99,111,111,107,105,101,79,75,16,0,9,35,99,111,111,107,105,101,79,107,16,0,12,35,99,111,111,107,105,101,79,107,68,105,118,16,0,14,35,99,111,111,107,105,101,79,112,97,99,105,116,121,16,0,12,35,99,111,111,107,105,101,79,112,116,73,110,16,0,22,35,99,111,111,107,105,101,79,112,116,73,110,66,97,114,87,114,97,112,112,101,114,16,0,20,35,99,111,111,107,105,101,79,112,116,105,111,110,115,70,111,111,116,101,114,16,0,10,35,99,111,111,107,105,101,79,117,116,16,0,12,35,99,111,111,107,105,101,79,117,116,101,114,16,0,21,35,99,111,111,107,105,101,79,117,116,101,114,67,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,79,118,101,114,108,97,121,16,0,20,35,99,111,111,107,105,101,79,118,101,114,108,97,121,78,111,116,105,102,121,16,0,9,35,99,111,111,107,105,101,80,75,16,0,12,35,99,111,111,107,105,101,80,79,80,117,112,16,0,11,35,99,111,111,107,105,101,80,97,110,101,16,0,12,35,99,111,111,107,105,101,80,97,110,101,108,16,0,12,35,99,111,111,107,105,101,80,97,114,97,103,16,0,15,35,99,111,111,107,105,101,80,97,114,105,115,105,101,110,16,0,17,35,99,111,111,107,105,101,80,101,114,109,105,115,115,105,111,110,16,0,20,35,99,111,111,107,105,101,80,101,114,109,105,115,115,105,111,110,66,97,114,16,0,23,35,99,111,111,107,105,101,80,101,114,109,105,115,115,105,111,110,68,105,97,108,111,103,16,0,18,35,99,111,111,107,105,101,80,108,97,99,101,104,111,108,100,101,114,16,0,13,35,99,111,111,107,105,101,80,108,117,103,105,110,16,0,10,35,99,111,111,107,105,101,80,111,108,16,0,22,35,99,111,111,107,105,101,80,111,108,105,99,105,101,115,77,101,115,115,97,103,101,16,0,19,35,99,111,111,107,105,101,80,111,108,105,99,121,45,108,97,121,101,114,16,0,22,35,99,111,111,107,105,101,80,111,108,105,99,121,65,103,114,101,101,109,101,110,116,16,0,18,35,99,111,111,107,105,101,80,111,108,105,99,121,65,108,101,114,116,16,0,21,35,99,111,111,107,105,101,80,111,108,105,99,121,65,108,101,114,116,66,111,120,16,0,23,35,99,111,111,107,105,101,80,111,108,105,99,121,66,97,99,107,103,114,111,117,110,100,16,0,19,35,99,111,111,107,105,101,80,111,108,105,99,121,66,97,110,110,101,114,16,0,16,35,99,111,111,107,105,101,80,111,108,105,99,121,66,97,114,16,0,24,35,99,111,111,107,105,101,80,111,108,105,99,121,66,97,114,45,111,118,101,114,108,97,121,16,0,18,35,99,111,111,107,105,101,80,111,108,105,99,121,66,108,111,99,107,16,0,16,35,99,111,111,107,105,101,80,111,108,105,99,121,66,111,120,16,0,22,35,99,111,111,107,105,101,80,111,108,105,99,121,67,111,110,116,97,105,110,101,114,16,0,19,35,99,111,111,107,105,101,80,111,108,105,99,121,68,105,97,108,111,103,16,0,16,35,99,111,111,107,105,101,80,111,108,105,99,121,68,105,118,16,0,19,35,99,111,111,107,105,101,80,111,108,105,99,121,68,114,97,119,101,114,16,0,15,35,99,111,111,107,105,101,80,111,108,105,99,121,73,100,16,0,17,35,99,111,111,107,105,101,80,111,108,105,99,121,73,110,102,111,16,0,18,35,99,111,111,107,105,101,80,111,108,105,99,121,76,97,98,108,101,16,0,18,35,99,111,111,107,105,101,80,111,108,105,99,121,77,111,100,97,108,16,0,21,35,99,111,111,107,105,101,80,111,108,105,99,121,77,111,100,97,108,45,78,76,16,0,17,35,99,111,111,107,105,101,80,111,108,105,99,121,78,111,116,101,16,0,19,35,99,111,111,107,105,101,80,111,108,105,99,121,78,111,116,105,99,101,16,0,22,35,99,111,111,107,105,101,80,111,108,105,99,121,78,111,116,105,99,101,66,111,120,16,0,25,35,99,111,111,107,105,101,80,111,108,105,99,121,78,111,116,105,102,105,99,97,116,105,111,110,16,0,20,35,99,111,111,107,105,101,80,111,108,105,99,121,79,118,101,114,108,97,121,16,0,24,35,99,111,111,107,105,101,80,111,108,105,99,121,79,118,101,114,108,97,121,82,111,111,116,16,0,18,35,99,111,111,107,105,101,80,111,108,105,99,121,80,111,112,85,112,16,0,18,35,99,111,111,107,105,101,80,111,108,105,99,121,80,111,112,117,112,16,0,22,35,99,111,111,107,105,101,80,111,108,105,99,121,80,111,112,117,112,72,84,77,76,16,0,17,35,99,111,111,107,105,101,80,111,108,105,99,121,84,101,120,116,16,0,20,35,99,111,111,107,105,101,80,111,108,105,99,121,84,111,111,108,116,105,112,16,0,17,35,99,111,111,107,105,101,80,111,108,105,99,121,87,97,114,110,16,0,20,35,99,111,111,107,105,101,80,111,108,105,99,121,87,114,97,112,112,101,114,16,0,17,35,99,111,111,107,105,101,80,111,108,105,99,121,90,111,110,101,16,0,19,35,99,111,111,107,105,101,80,111,108,105,99,121,95,98,97,114,114,97,16,0,27,35,99,111,111,107,105,101,80,111,108,105,99,121,95,99,111,111,107,105,101,95,97,100,118,105,99,101,16,0,14,35,99,111,111,107,105,101,80,111,108,105,99,121,119,16,0,17,35,99,111,111,107,105,101,80,111,108,105,115,121,73,110,102,111,16,0,15,35,99,111,111,107,105,101,80,111,108,105,116,105,99,115,16,0,14,35,99,111,111,107,105,101,80,111,111,108,105,99,121,16,0,10,35,99,111,111,107,105,101,80,111,112,16,0,12,35,99,111,111,107,105,101,80,111,112,85,112,16,0,14,35,99,111,111,107,105,101,80,111,112,85,112,73,100,16,0,18,35,99,111,111,107,105,101,80,111,112,85,112,95,116,101,114,109,111,16,0,12,35,99,111,111,107,105,101,80,111,112,105,110,16,0,14,35,99,111,111,107,105,101,80,111,112,117,112,66,71,16,0,15,35,99,111,111,107,105,101,80,111,112,117,112,66,97,114,16,0,21,35,99,111,111,107,105,101,80,111,112,117,112,67,111,110,116,97,105,110,101,114,16,0,19,35,99,111,111,107,105,101,80,111,112,117,112,67,111,110,116,101,110,116,16,0,16,35,99,111,111,107,105,101,80,111,112,117,112,70,111,114,109,16,0,18,35,99,111,111,107,105,101,80,111,112,117,112,72,111,108,100,101,114,16,0,16,35,99,111,111,107,105,101,80,111,112,117,112,73,110,102,111,16,0,23,35,99,111,111,107,105,101,80,111,112,117,112,80,97,110,101,108,67,108,105,101,110,116,16,0,18,35,99,111,111,107,105,101,80,111,112,117,112,84,97,114,103,101,116,16,0,19,35,99,111,111,107,105,101,80,111,112,117,112,87,114,97,112,112,101,114,16,0,16,35,99,111,111,107,105,101,80,114,101,102,73,110,116,114,111,16,0,25,35,99,111,111,107,105,101,80,114,101,102,73,110,116,114,111,95,117,110,100,101,114,108,97,121,16,0,22,35,99,111,111,107,105,101,80,114,101,102,101,114,101,110,99,101,80,97,110,101,108,16,0,28,35,99,111,111,107,105,101,80,114,101,102,101,114,101,110,99,101,115,95,102,114,111,110,116,45,101,110,100,16,0,11,35,99,111,111,107,105,101,80,114,101,118,16,0,14,35,99,111,111,107,105,101,80,114,105,118,97,99,121,16,0,25,35,99,111,111,107,105,101,80,114,105,118,97,99,121,68,101,99,108,97,114,97,116,105,111,110,16,0,18,35,99,111,111,107,105,101,80,114,105,118,97,99,121,73,110,102,111,16,0,20,35,99,111,111,107,105,101,80,114,105,118,97,99,121,78,111,116,105,99,101,16,0,20,35,99,111,111,107,105,101,80,114,105,118,97,99,121,80,111,108,105,99,121,16,0,19,35,99,111,111,107,105,101,80,114,105,118,97,99,121,80,111,112,117,112,16,0,21,35,99,111,111,107,105,101,80,114,105,118,97,99,121,87,114,97,112,112,101,114,16,0,21,35,99,111,111,107,105,101,80,114,105,118,97,99,121,95,104,101,97,100,101,114,16,0,13,35,99,111,111,107,105,101,80,114,111,109,112,116,16,0,20,35,99,111,111,107,105,101,80,114,111,109,112,116,87,114,97,112,112,101,114,16,0,8,35,99,111,111,107,105,101,81,16,0,15,35,99,111,111,107,105,101,81,117,101,115,116,105,111,110,16,0,17,35,99,111,111,107,105,101,82,101,103,117,108,97,116,105,111,110,16,0,17,35,99,111,111,107,105,101,82,101,113,117,101,115,116,66,111,120,16,0,19,35,99,111,111,107,105,101,82,101,113,117,101,115,116,76,97,121,101,114,16,0,17,35,99,111,111,107,105,101,82,105,99,104,116,108,105,110,105,101,16,0,12,35,99,111,111,107,105,101,82,117,108,101,115,16,0,13,35,99,111,111,107,105,101,83,99,114,101,101,110,16,0,15,35,99,111,111,107,105,101,83,99,114,105,112,116,73,100,16,0,10,35,99,111,111,107,105,101,83,101,99,16,0,14,35,99,111,111,107,105,101,83,101,99,116,105,111,110,16,0,14,35,99,111,111,107,105,101,83,101,116,116,105,110,103,16,0,21,35,99,111,111,107,105,101,83,101,116,116,105,110,103,115,68,105,97,108,111,103,16,0,28,35,99,111,111,107,105,101,83,101,116,116,105,110,103,115,79,118,101,114,108,97,121,84,111,103,103,108,101,16,0,17,35,99,111,111,107,105,101,83,104,111,114,116,65,108,101,114,116,16,0,22,35,99,111,111,107,105,101,83,104,111,114,116,73,110,102,111,70,111,111,116,101,114,16,0,11,35,99,111,111,107,105,101,83,105,103,110,16,0,15,35,99,111,111,107,105,101,83,105,103,110,112,111,115,116,16,0,17,35,99,111,111,107,105,101,83,105,109,112,108,101,72,105,110,116,16,0,16,35,99,111,111,107,105,101,83,108,105,100,101,114,68,105,118,16,0,16,35,99,111,111,107,105,101,83,111,102,116,79,112,116,73,110,16,0,12,35,99,111,111,107,105,101,83,112,97,99,101,16,0,11,35,99,111,111,107,105,101,83,112,97,110,16,0,13,35,99,111,111,107,105,101,83,112,108,97,115,104,16,0,14,35,99,111,111,107,105,101,83,116,97,110,100,97,114,16,0,19,35,99,111,111,107,105,101,83,116,97,114,116,77,101,115,115,97,103,101,16,0,12,35,99,111,111,107,105,101,83,116,97,116,101,16,0,16,35,99,111,111,107,105,101,83,116,97,116,101,109,101,110,116,16,0,23,35,99,111,111,107,105,101,83,116,97,116,101,109,101,110,116,87,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,83,116,97,116,117,115,16,0,18,35,99,111,111,107,105,101,83,116,105,99,107,121,80,97,110,101,108,16,0,12,35,99,111,111,107,105,101,83,116,114,105,112,16,0,19,35,99,111,111,107,105,101,83,117,104,108,97,115,70,111,111,116,101,114,16,0,14,35,99,111,111,107,105,101,83,117,112,112,111,114,116,16,0,10,35,99,111,111,107,105,101,84,97,98,16,0,9,35,99,111,111,107,105,101,84,100,16,0,13,35,99,111,111,107,105,101,84,101,97,115,101,114,16,0,12,35,99,111,111,107,105,101,84,101,107,115,116,16,0,12,35,99,111,111,107,105,101,84,101,114,109,115,16,0,11,35,99,111,111,107,105,101,84,101,115,116,16,0,11,35,99,111,111,107,105,101,84,105,109,101,16,0,10,35,99,111,111,107,105,101,84,105,112,16,0,11,35,99,111,111,107,105,101,84,105,112,115,16,0,11,35,99,111,111,107,105,101,84,106,101,107,16,0,12,35,99,111,111,107,105,101,84,111,97,115,116,16,0,14,35,99,111,111,107,105,101,84,111,97,115,116,101,114,16,0,18,35,99,111,111,107,105,101,84,111,111,108,87,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,84,111,111,108,98,97,114,16,0,14,35,99,111,111,107,105,101,84,111,111,108,116,105,112,16,0,19,35,99,111,111,107,105,101,84,111,112,67,79,110,116,97,105,110,101,114,16,0,11,35,99,111,111,107,105,101,85,66,97,114,16,0,18,35,99,111,111,107,105,101,85,73,67,111,110,116,97,105,110,101,114,16,0,12,35,99,111,111,107,105,101,85,115,97,103,101,16,0,18,35,99,111,111,107,105,101,85,115,97,103,101,66,97,110,110,101,114,16,0,16,35,99,111,111,107,105,101,85,115,97,103,101,72,105,110,116,16,0,19,35,99,111,111,107,105,101,85,115,97,103,101,77,101,115,115,97,103,101,16,0,24,35,99,111,111,107,105,101,85,115,97,103,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,17,35,99,111,111,107,105,101,85,115,97,103,101,80,111,112,73,110,16,0,17,35,99,111,111,107,105,101,85,115,97,103,101,80,111,112,117,112,16,0,10,35,99,111,111,107,105,101,85,115,101,16,0,19,35,99,111,111,107,105,101,85,115,101,65,103,114,101,101,109,101,110,116,16,0,21,35,99,111,111,107,105,101,85,115,101,73,110,102,111,114,109,97,116,105,111,110,16,0,17,35,99,111,111,107,105,101,85,115,101,87,97,114,110,105,110,103,16,0,27,35,99,111,111,107,105,101,85,115,101,114,65,117,116,104,111,114,105,115,97,116,105,111,110,66,97,114,16,0,24,35,99,111,111,107,105,101,85,115,105,110,103,78,111,116,105,102,105,99,97,116,105,111,110,16,0,20,35,99,111,111,107,105,101,86,97,108,105,100,97,116,111,114,77,97,105,110,16,0,22,35,99,111,111,107,105,101,86,101,114,105,102,105,99,97,116,105,111,110,66,97,114,16,0,11,35,99,111,111,107,105,101,86,105,101,119,16,0,11,35,99,111,111,107,105,101,87,97,108,108,16,0,21,35,99,111,111,107,105,101,87,97,108,108,66,97,99,107,103,114,111,117,110,100,16,0,14,35,99,111,111,107,105,101,87,97,108,108,66,97,114,16,0,16,35,99,111,111,107,105,101,87,97,108,108,77,111,100,97,108,16,0,18,35,99,111,111,107,105,101,87,97,108,108,79,118,101,114,108,97,121,16,0,11,35,99,111,111,107,105,101,87,97,114,110,16,0,14,35,99,111,111,107,105,101,87,97,114,110,66,111,120,16,0,16,35,99,111,111,107,105,101,87,97,114,110,76,97,121,101,114,16,0,14,35,99,111,111,107,105,101,87,97,114,110,105,110,103,16,0,18,35,99,111,111,107,105,101,87,97,114,110,105,110,103,45,80,111,112,16,0,17,35,99,111,111,107,105,101,87,97,114,110,105,110,103,66,111,120,16,0,23,35,99,111,111,107,105,101,87,97,114,110,105,110,103,67,111,110,116,97,105,110,101,114,16,0,17,35,99,111,111,107,105,101,87,97,114,110,105,110,103,68,105,118,16,0,19,35,99,111,111,107,105,101,87,97,114,110,105,110,103,76,97,121,101,114,16,0,20,35,99,111,111,107,105,101,87,97,114,110,105,110,103,76,97,121,111,117,116,16,0,21,35,99,111,111,107,105,101,87,97,114,110,105,110,103,77,101,115,115,97,103,101,16,0,24,35,99,111,111,107,105,101,87,97,114,110,105,110,103,77,101,115,115,97,103,101,78,101,119,16,0,19,35,99,111,111,107,105,101,87,97,114,110,105,110,103,77,111,100,97,108,16,0,19,35,99,111,111,107,105,101,87,97,114,110,105,110,103,80,97,110,101,108,16,0,15,35,99,111,111,107,105,101,87,97,114,110,105,110,103,82,16,0,19,35,99,111,111,107,105,101,87,97,114,110,105,110,103,84,97,98,108,101,16,0,18,35,99,111,111,107,105,101,87,97,114,110,105,110,103,84,101,120,116,16,0,21,35,99,111,111,107,105,101,87,97,114,110,105,110,103,87,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,87,97,114,110,105,110,103,115,16,0,16,35,99,111,111,107,105,101,87,101,116,103,101,118,105,110,103,16,0,13,35,99,111,111,107,105,101,87,105,100,103,101,116,16,0,10,35,99,111,111,107,105,101,87,105,110,16,0,11,35,99,111,111,107,105,101,87,105,110,100,16,0,22,35,99,111,111,107,105,101,87,105,110,100,111,119,67,111,110,116,97,105,110,101,114,16,0,11,35,99,111,111,107,105,101,87,114,97,112,16,0,12,35,99,111,111,107,105,101,87,114,97,112,48,16,0,14,35,99,111,111,107,105,101,87,114,97,112,112,101,114,16,0,26,35,99,111,111,107,105,101,87,114,97,112,112,101,114,87,105,116,104,83,101,116,116,105,110,103,115,16,0,10,35,99,111,111,107,105,101,87,114,112,16,0,11,35,99,111,111,107,105,101,90,111,110,101,16,0,8,35,99,111,111,107,105,101,95,16,0,9,35,99,111,111,107,105,101,95,49,16,0,9,35,99,111,111,107,105,101,95,50,16,0,16,35,99,111,111,107,105,101,95,95,87,114,97,112,112,101,114,16,0,27,35,99,111,111,107,105,101,95,95,97,103,114,101,101,109,101,110,116,95,95,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,95,95,97,108,101,114,116,16,0,15,35,99,111,111,107,105,101,95,95,98,97,110,110,101,114,16,0,12,35,99,111,111,107,105,101,95,95,98,97,114,16,0,12,35,99,111,111,107,105,101,95,95,98,111,120,16,0,15,35,99,111,111,107,105,101,95,95,99,111,111,107,105,101,16,0,16,35,99,111,111,107,105,101,95,95,109,101,115,115,97,103,101,16,0,16,35,99,111,111,107,105,101,95,95,109,111,110,115,116,101,114,16,0,19,35,99,111,111,107,105,101,95,95,112,97,110,101,108,45,104,101,108,112,16,0,15,35,99,111,111,107,105,101,95,95,112,111,112,117,112,49,16,0,16,35,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,16,0,16,35,99,111,111,107,105,101,95,97,99,99,95,119,114,97,112,16,0,14,35,99,111,111,107,105,101,95,97,99,99,101,112,116,16,0,20,35,99,111,111,107,105,101,95,97,99,99,101,112,116,95,97,108,101,114,116,16,0,18,35,99,111,111,107,105,101,95,97,99,99,101,112,116,95,98,97,114,16,0,18,35,99,111,111,107,105,101,95,97,99,99,101,112,116,95,98,111,120,16,0,19,35,99,111,111,107,105,101,95,97,99,99,101,112,116,95,99,111,110,116,16,0,24,35,99,111,111,107,105,101,95,97,99,99,101,112,116,95,99,111,110,116,97,105,110,101,114,16,0,24,35,99,111,111,107,105,101,95,97,99,99,101,112,116,95,109,115,103,95,98,108,111,99,107,16,0,22,35,99,111,111,107,105,101,95,97,99,99,101,112,116,95,115,101,99,116,105,111,110,16,0,19,35,99,111,111,107,105,101,95,97,99,99,101,112,116,97,116,105,111,110,16,0,29,35,99,111,111,107,105,101,95,97,99,99,101,112,116,97,116,105,111,110,95,99,111,110,116,101,110,101,117,114,16,0,20,35,99,111,111,107,105,101,95,97,99,99,101,112,116,101,114,95,100,105,118,16,0,17,35,99,111,111,107,105,101,95,97,99,99,101,112,116,105,111,110,16,0,29,35,99,111,111,107,105,101,95,97,99,99,101,115,115,95,109,101,115,115,97,103,101,95,104,111,108,100,101,114,16,0,11,35,99,111,111,107,105,101,95,97,100,118,16,0,14,35,99,111,111,107,105,101,95,97,100,118,105,99,101,16,0,14,35,99,111,111,107,105,101,95,97,100,118,105,115,101,16,0,13,35,99,111,111,107,105,101,95,97,103,114,101,101,16,0,17,35,99,111,111,107,105,101,95,97,103,114,101,101,109,101,110,116,16,0,13,35,99,111,111,107,105,101,95,97,108,101,114,116,16,0,14,35,99,111,111,107,105,101,95,97,108,101,114,116,50,16,0,17,35,99,111,111,107,105,101,95,97,108,101,114,116,95,98,97,114,16,0,17,35,99,111,111,107,105,101,95,97,108,101,114,116,95,98,111,120,16,0,23,35,99,111,111,107,105,101,95,97,108,101,114,116,95,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,95,97,108,101,114,116,95,99,111,110,116,101,110,116,16,0,21,35,99,111,111,107,105,101,95,97,108,101,114,116,95,100,101,115,107,116,111,112,16,0,17,35,99,111,111,107,105,101,95,97,108,101,114,116,95,100,105,118,16,0,20,35,99,111,111,107,105,101,95,97,108,101,114,116,95,109,111,98,105,108,101,16,0,17,35,99,111,111,107,105,101,95,97,108,108,111,119,95,102,105,120,16,0,16,35,99,111,111,107,105,101,95,97,110,110,111,117,110,99,101,16,0,16,35,99,111,111,107,105,101,95,97,112,112,114,111,118,97,108,16,0,15,35,99,111,111,107,105,101,95,97,112,112,114,111,118,101,16,0,22,35,99,111,111,107,105,101,95,97,112,112,114,111,118,101,95,98,97,110,110,101,114,16,0,16,35,99,111,111,107,105,101,95,97,112,112,114,111,118,101,100,16,0,11,35,99,111,111,107,105,101,95,97,115,107,16,0,14,35,99,111,111,107,105,101,95,97,115,115,101,116,115,16,0,17,35,99,111,111,107,105,101,95,97,115,115,105,115,116,97,110,116,16,0,27,35,99,111,111,107,105,101,95,97,115,115,105,115,116,97,110,116,95,99,111,110,116,97,105,110,101,114,16,0,25,35,99,111,111,107,105,101,95,97,115,115,105,115,116,97,110,116,95,119,114,97,112,112,101,114,16,0,12,35,99,111,111,107,105,101,95,97,117,116,104,16,0,13,35,99,111,111,107,105,101,95,97,118,105,115,111,16,0,17,35,99,111,111,107,105,101,95,97,118,105,115,111,95,98,111,120,16,0,9,35,99,111,111,107,105,101,95,98,16,0,18,35,99,111,111,107,105,101,95,98,97,99,107,103,114,111,117,110,100,16,0,16,35,99,111,111,107,105,101,95,98,97,108,107,95,116,111,112,16,0,15,35,99,111,111,107,105,101,95,98,97,110,100,101,97,117,16,0,13,35,99,111,111,107,105,101,95,98,97,110,101,114,16,0,22,35,99,111,111,107,105,101,95,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,24,35,99,111,111,107,105,101,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,16,0,30,35,99,111,111,107,105,101,95,98,97,110,110,101,114,95,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,16,0,21,35,99,111,111,107,105,101,95,98,97,110,110,101,114,95,102,111,111,116,101,114,16,0,11,35,99,111,111,107,105,101,95,98,97,114,16,0,25,35,99,111,111,107,105,101,95,98,97,114,95,98,105,103,95,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,95,98,97,114,95,99,111,110,116,97,105,110,101,114,16,0,23,35,99,111,111,107,105,101,95,98,97,114,95,101,100,105,116,95,98,117,116,116,111,110,16,0,15,35,99,111,111,107,105,101,95,98,97,114,95,116,111,112,16,0,14,35,99,111,111,107,105,101,95,98,97,114,95,118,50,16,0,13,35,99,111,111,107,105,101,95,98,97,114,114,101,16,0,12,35,99,111,111,107,105,101,95,98,101,108,116,16,0,10,35,99,111,111,107,105,101,95,98,103,16,0,12,35,99,111,111,107,105,101,95,98,108,111,99,16,0,13,35,99,111,111,107,105,101,95,98,108,111,99,107,16,0,11,35,99,111,111,107,105,101,95,98,110,114,16,0,14,35,99,111,111,107,105,101,95,98,111,116,116,111,109,16,0,18,35,99,111,111,107,105,101,95,98,111,116,116,111,109,95,98,97,114,16,0,11,35,99,111,111,107,105,101,95,98,111,120,16,0,15,35,99,111,111,107,105,101,95,98,111,120,95,98,97,114,16,0,18,35,99,111,111,107,105,101,95,98,111,120,95,104,101,97,100,101,114,16,0,26,35,99,111,111,107,105,101,95,98,111,120,95,104,101,97,100,101,114,95,109,101,115,115,97,103,101,16,0,16,35,99,111,111,107,105,101,95,98,111,120,95,105,110,102,111,16,0,19,35,99,111,111,107,105,101,95,98,111,120,95,111,118,101,114,108,97,121,16,0,15,35,99,111,111,107,105,101,95,99,97,117,116,105,111,110,16,0,14,35,99,111,111,107,105,101,95,99,104,97,110,103,101,16,0,13,35,99,111,111,107,105,101,95,99,104,101,99,107,16,0,19,35,99,111,111,107,105,101,95,99,104,101,99,107,95,109,111,100,97,108,16,0,21,35,99,111,111,107,105,101,95,99,104,101,99,107,95,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,95,99,104,111,105,99,101,16,0,15,35,99,111,111,107,105,101,95,99,104,111,105,99,101,115,16,0,15,35,99,111,111,107,105,101,95,99,108,105,99,107,101,114,16,0,12,35,99,111,111,107,105,101,95,99,110,105,108,16,0,16,35,99,111,111,107,105,101,95,99,110,105,108,95,98,111,120,16,0,15,35,99,111,111,107,105,101,95,99,111,105,110,116,101,114,16,0,18,35,99,111,111,107,105,101,95,99,111,109,112,108,105,97,110,99,101,16,0,11,35,99,111,111,107,105,101,95,99,111,110,16,0,19,35,99,111,111,107,105,101,95,99,111,110,102,95,98,97,110,110,101,114,16,0,15,35,99,111,111,107,105,101,95,99,111,110,102,105,114,109,16,0,18,35,99,111,111,107,105,101,95,99,111,110,102,105,114,109,95,100,118,16,0,20,35,99,111,111,107,105,101,95,99,111,110,102,105,114,109,97,116,105,111,110,16,0,24,35,99,111,111,107,105,101,95,99,111,110,102,105,114,109,97,116,105,111,110,95,98,111,120,16,0,15,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,19,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,52,52,51,53,16,0,22,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,16,0,23,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,108,111,99,107,101,114,16,0,19,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,111,120,16,0,25,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,16,0,25,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,99,111,111,107,105,101,98,97,114,16,0,19,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,100,105,118,16,0,22,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,104,101,97,100,101,114,16,0,31,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,97,110,97,103,101,114,95,119,114,97,112,112,101,114,16,0,23,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,101,115,115,97,103,101,16,0,28,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,21,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,111,117,116,101,114,16,0,23,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,111,118,101,114,108,97,121,16,0,22,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,112,108,97,121,122,111,16,0,21,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,112,111,112,117,112,16,0,20,35,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,119,97,108,108,16,0,12,35,99,111,111,107,105,101,95,99,111,110,116,16,0,17,35,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,15,35,99,111,111,107,105,101,95,99,111,110,116,101,110,116,16,0,21,35,99,111,111,107,105,101,95,99,111,110,116,114,111,108,95,112,111,112,117,112,16,0,18,35,99,111,111,107,105,101,95,99,111,110,116,114,111,108,108,101,114,16,0,14,35,99,111,111,107,105,101,95,99,111,111,107,105,101,16,0,14,35,99,111,111,107,105,101,95,99,117,115,116,111,109,16,0,19,35,99,111,111,107,105,101,95,100,97,116,101,110,115,99,104,117,116,122,16,0,15,35,99,111,111,107,105,101,95,100,101,99,108,105,110,101,16,0,15,35,99,111,111,107,105,101,95,100,101,115,107,116,111,112,16,0,14,35,99,111,111,107,105,101,95,100,105,97,108,111,103,16,0,19,35,99,111,111,107,105,101,95,100,105,97,108,111,103,95,119,114,97,112,16,0,17,35,99,111,111,107,105,101,95,100,105,114,101,99,116,105,118,101,16,0,27,35,99,111,111,107,105,101,95,100,105,114,101,99,116,105,118,101,95,99,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,16,0,28,35,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,95,99,111,110,116,97,105,110,101,114,16,0,26,35,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,95,119,114,97,112,112,101,114,16,0,11,35,99,111,111,107,105,101,95,100,105,118,16,0,22,35,99,111,111,107,105,101,95,100,114,111,112,95,99,111,110,116,97,105,110,101,114,16,0,10,35,99,111,111,107,105,101,95,101,117,16,0,14,35,99,111,111,107,105,101,95,101,117,95,98,97,114,16,0,16,35,99,111,111,107,105,101,95,101,117,95,114,101,99,104,116,16,0,17,35,99,111,111,107,105,101,95,101,120,105,116,95,102,111,114,109,16,0,11,35,99,111,111,107,105,101,95,101,120,112,16,0,14,35,99,111,111,107,105,101,95,102,97,115,99,105,97,16,0,22,35,99,111,111,107,105,101,95,102,105,103,121,101,108,109,101,122,116,101,116,101,115,16,0,14,35,99,111,111,107,105,101,95,102,111,111,116,101,114,16,0,13,35,99,111,111,107,105,101,95,102,114,97,109,101,16,0,12,35,99,111,111,107,105,101,95,103,100,112,114,16,0,23,35,99,111,111,107,105,101,95,103,108,100,95,99,111,111,107,105,101,95,102,108,97,103,16,0,20,35,99,111,111,107,105,101,95,103,117,105,100,97,115,101,114,118,105,122,105,16,0,20,35,99,111,111,107,105,101,95,103,117,105,100,108,105,110,101,95,98,111,120,16,0,21,35,99,111,111,107,105,101,95,104,100,114,95,115,104,111,119,97,103,97,105,110,16,0,14,35,99,111,111,107,105,101,95,104,101,97,100,101,114,16,0,18,35,99,111,111,107,105,101,95,104,101,97,100,101,114,95,116,111,112,16,0,17,35,99,111,111,107,105,101,95,104,101,97,100,101,114,116,111,112,16,0,12,35,99,111,111,107,105,101,95,104,105,110,116,16,0,15,35,99,111,111,107,105,101,95,104,105,110,119,101,105,115,16,0,14,35,99,111,111,107,105,101,95,104,111,108,100,101,114,16,0,14,35,99,111,111,107,105,101,95,105,97,103,114,101,101,16,0,10,35,99,111,111,107,105,101,95,105,100,16,0,16,35,99,111,111,107,105,101,95,105,108,109,111,105,116,117,115,16,0,21,35,99,111,111,107,105,101,95,105,108,109,111,105,116,117,115,95,50,48,50,48,16,0,29,35,99,111,111,107,105,101,95,105,108,109,111,105,116,117,115,95,50,48,50,48,95,111,118,101,114,108,97,121,16,0,12,35,99,111,111,107,105,101,95,105,110,102,111,16,0,16,35,99,111,111,107,105,101,95,105,110,102,111,45,98,97,114,16,0,18,35,99,111,111,107,105,101,95,105,110,102,111,95,97,103,114,101,101,16,0,17,35,99,111,111,107,105,101,95,105,110,102,111,95,97,114,101,97,16,0,16,35,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,16,0,18,35,99,111,111,107,105,101,95,105,110,102,111,95,98,108,111,99,107,16,0,16,35,99,111,111,107,105,101,95,105,110,102,111,95,98,111,120,16,0,18,35,99,111,111,107,105,101,95,105,110,102,111,95,98,114,101,118,101,16,0,22,35,99,111,111,107,105,101,95,105,110,102,111,95,99,111,110,116,97,105,110,101,114,16,0,16,35,99,111,111,107,105,101,95,105,110,102,111,95,100,105,118,16,0,20,35,99,111,111,107,105,101,95,105,110,102,111,95,109,101,115,115,97,103,101,16,0,21,35,99,111,111,107,105,101,95,105,110,102,111,95,114,101,115,112,111,110,115,101,16,0,22,35,99,111,111,107,105,101,95,105,110,102,111,95,115,116,97,114,116,112,97,103,101,16,0,19,35,99,111,111,107,105,101,95,105,110,102,111,95,116,111,112,78,97,118,16,0,16,35,99,111,111,107,105,101,95,105,110,102,111,95,116,120,116,16,0,19,35,99,111,111,107,105,101,95,105,110,102,111,95,119,105,110,100,111,119,16,0,20,35,99,111,111,107,105,101,95,105,110,102,111,95,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,95,105,110,102,111,98,111,120,16,0,14,35,99,111,111,107,105,101,95,105,110,102,111,114,109,16,0,19,35,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,16,0,25,35,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,95,98,108,111,99,107,16,0,23,35,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,95,98,111,120,16,0,27,35,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,95,111,118,101,114,108,97,121,16,0,23,35,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,118,97,95,101,115,100,16,0,19,35,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,118,101,16,0,16,35,99,111,111,107,105,101,95,105,110,102,111,114,109,101,114,16,0,14,35,99,111,111,107,105,101,95,105,110,106,101,99,116,16,0,19,35,99,111,111,107,105,101,95,105,110,108,105,110,101,95,102,111,114,109,16,0,22,35,99,111,111,107,105,101,95,105,116,95,98,97,114,95,119,114,97,112,112,101,114,16,0,21,35,99,111,111,107,105,101,95,106,97,114,95,99,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,95,107,101,117,122,101,115,16,0,15,35,99,111,111,107,105,101,95,107,101,122,101,108,101,115,16,0,11,35,99,111,111,107,105,101,95,108,97,119,16,0,18,35,99,111,111,107,105,101,95,108,97,119,45,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,95,108,97,119,95,97,100,118,105,99,101,16,0,18,35,99,111,111,107,105,101,95,108,97,119,95,98,97,110,110,101,114,16,0,15,35,99,111,111,107,105,101,95,108,97,119,95,98,111,120,16,0,22,35,99,111,111,107,105,101,95,108,97,119,95,99,111,109,112,108,105,97,110,99,101,16,0,21,35,99,111,111,107,105,101,95,108,97,119,95,99,111,110,116,97,105,110,101,114,16,0,19,35,99,111,111,107,105,101,95,108,97,119,95,100,105,97,108,111,103,50,16,0,14,35,99,111,111,107,105,101,95,108,97,119,95,105,100,16,0,16,35,99,111,111,107,105,101,95,108,97,119,95,105,110,102,111,16,0,24,35,99,111,111,107,105,101,95,108,97,119,95,105,110,102,111,114,109,97,116,105,111,110,115,16,0,19,35,99,111,111,107,105,101,95,108,97,119,95,109,101,115,115,97,103,101,16,0,18,35,99,111,111,107,105,101,95,108,97,119,95,109,111,98,105,108,101,16,0,15,35,99,111,111,107,105,101,95,108,97,119,95,109,115,103,16,0,18,35,99,111,111,107,105,101,95,108,97,119,95,110,111,116,105,99,101,16,0,28,35,99,111,111,107,105,101,95,108,97,119,95,110,111,116,105,99,101,95,99,111,110,116,97,105,110,101,114,16,0,24,35,99,111,111,107,105,101,95,108,97,119,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,19,35,99,111,111,107,105,101,95,108,97,119,95,119,97,114,110,105,110,103,16,0,13,35,99,111,111,107,105,101,95,108,97,121,101,114,16,0,21,35,99,111,111,107,105,101,95,108,97,121,101,114,95,119,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,95,108,101,103,97,108,16,0,21,35,99,111,111,107,105,101,95,108,101,103,97,108,95,100,105,115,112,108,97,121,16,0,14,35,99,111,111,107,105,101,95,108,101,105,115,116,101,16,0,14,35,99,111,111,107,105,101,95,108,101,118,101,108,48,16,0,14,35,99,111,111,107,105,101,95,108,101,118,101,108,49,16,0,16,35,99,111,111,107,105,101,95,108,105,103,104,116,98,111,120,16,0,18,35,99,111,111,107,105,101,95,109,97,105,110,95,98,108,111,99,107,16,0,11,35,99,111,111,107,105,101,95,109,97,110,16,0,24,35,99,111,111,107,105,101,95,109,97,110,97,103,101,95,99,111,110,116,97,105,110,101,114,16,0,25,35,99,111,111,107,105,101,95,109,97,110,97,103,101,109,101,110,116,95,104,101,97,100,101,114,16,0,28,35,99,111,111,107,105,101,95,109,97,110,97,103,101,114,95,98,111,100,121,95,111,118,101,114,108,97,121,16,0,12,35,99,111,111,107,105,101,95,109,97,115,107,16,0,15,35,99,111,111,107,105,101,95,109,101,108,100,105,110,103,16,0,16,35,99,111,111,107,105,101,95,109,101,110,115,97,103,101,109,16,0,12,35,99,111,111,107,105,101,95,109,101,115,115,16,0,15,35,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,25,35,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,16,0,22,35,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,104,111,108,100,101,114,16,0,30,35,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,119,101,98,115,105,116,101,95,112,111,108,105,99,121,16,0,23,35,99,111,111,107,105,101,95,109,111,100,97,108,95,99,111,110,116,97,105,110,101,114,16,0,17,35,99,111,111,107,105,101,95,109,111,100,97,108,95,100,105,118,16,0,21,35,99,111,111,107,105,101,95,109,111,100,97,108,95,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,95,109,111,100,117,108,101,16,0,15,35,99,111,111,107,105,101,95,109,111,110,115,116,101,114,16,0,10,35,99,111,111,107,105,101,95,109,115,16,0,11,35,99,111,111,107,105,101,95,109,115,103,16,0,13,35,99,111,111,107,105,101,95,109,115,103,95,50,16,0,21,35,99,111,111,107,105,101,95,109,115,103,95,99,111,110,116,97,105,110,101,114,16,0,11,35,99,111,111,107,105,101,95,109,115,110,16,0,11,35,99,111,111,107,105,101,95,110,97,118,16,0,14,35,99,111,111,107,105,101,95,110,97,118,98,97,114,16,0,12,35,99,111,111,107,105,101,95,110,111,116,101,16,0,16,35,99,111,111,107,105,101,95,110,111,116,101,95,100,105,118,16,0,17,35,99,111,111,107,105,101,95,110,111,116,101,95,118,111,108,108,16,0,12,35,99,111,111,107,105,101,95,110,111,116,105,16,0,14,35,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,18,35,99,111,111,107,105,101,95,110,111,116,105,99,101,95,98,97,114,16,0,22,35,99,111,111,107,105,101,95,110,111,116,105,99,101,95,100,101,115,107,116,111,112,16,0,22,35,99,111,111,107,105,101,95,110,111,116,105,99,101,95,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,95,110,111,116,105,99,101,115,16,0,13,35,99,111,111,107,105,101,95,110,111,116,105,102,16,0,20,35,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,24,35,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,98,97,114,16,0,30,35,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,110,116,97,105,110,101,114,16,0,25,35,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,119,114,97,112,16,0,16,35,99,111,111,107,105,101,95,110,111,116,105,102,105,101,114,16,0,14,35,99,111,111,107,105,101,95,110,111,116,105,102,121,16,0,10,35,99,111,111,107,105,101,95,111,107,16,0,11,35,99,111,111,107,105,101,95,111,107,49,16,0,11,35,99,111,111,107,105,101,95,111,112,116,16,0,14,35,99,111,111,107,105,101,95,111,112,116,95,105,110,16,0,21,35,99,111,111,107,105,101,95,111,112,116,95,105,110,95,97,110,99,104,111,114,16,0,24,35,99,111,111,107,105,101,95,111,112,116,95,105,110,95,99,111,110,116,97,105,110,101,114,16,0,13,35,99,111,111,107,105,101,95,111,112,116,105,110,16,0,18,35,99,111,111,107,105,101,95,111,112,116,105,110,95,98,97,99,107,16,0,19,35,99,111,111,107,105,101,95,111,112,116,105,110,95,108,97,121,101,114,16,0,15,35,99,111,111,107,105,101,95,111,118,101,114,108,97,121,16,0,13,35,99,111,111,107,105,101,95,112,97,110,101,108,16,0,18,35,99,111,111,107,105,101,95,112,97,110,101,108,95,50,48,49,56,16,0,14,35,99,111,111,107,105,101,95,112,97,114,101,110,116,16,0,18,35,99,111,111,107,105,101,95,112,101,114,109,105,115,115,105,111,110,16,0,25,35,99,111,111,107,105,101,95,112,101,114,109,105,115,115,105,111,110,95,98,97,110,110,101,114,16,0,25,35,99,111,111,107,105,101,95,112,101,114,109,105,115,115,105,111,110,115,95,97,108,101,114,116,16,0,14,35,99,111,111,107,105,101,95,112,101,114,109,105,116,16,0,11,35,99,111,111,107,105,101,95,112,111,108,16,0,16,35,99,111,111,107,105,101,95,112,111,108,105,99,105,101,115,16,0,14,35,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,16,35,99,111,111,107,105,101,95,112,111,108,105,99,121,45,48,16,0,21,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,97,99,99,101,112,116,16,0,20,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,97,108,101,114,116,16,0,21,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,97,110,110,101,114,16,0,29,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,97,110,110,101,114,95,119,114,97,112,112,101,114,16,0,18,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,97,114,16,0,18,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,111,120,16,0,20,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,99,104,101,99,107,16,0,24,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,99,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,100,105,118,16,0,21,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,104,111,108,100,101,114,16,0,20,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,108,97,121,101,114,16,0,22,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,109,101,115,115,97,103,101,16,0,32,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,109,111,100,97,108,16,0,18,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,109,115,103,16,0,21,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,110,111,116,105,99,101,16,0,22,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,111,118,101,114,108,97,121,16,0,20,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,112,111,112,117,112,16,0,17,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,112,117,16,0,19,35,99,111,111,107,105,101,95,112,111,108,105,99,121,95,114,103,112,100,16,0,16,35,99,111,111,107,105,101,95,112,111,108,105,116,105,99,115,16,0,24,35,99,111,111,107,105,101,95,112,111,108,105,116,105,99,115,95,111,118,101,114,108,97,121,16,0,11,35,99,111,111,107,105,101,95,112,111,112,16,0,24,35,99,111,111,107,105,101,95,112,111,112,105,110,95,105,116,115,97,112,95,104,111,109,101,16,0,27,35,99,111,111,107,105,101,95,112,111,112,105,110,95,105,116,115,97,112,95,111,118,101,114,108,97,121,16,0,25,35,99,111,111,107,105,101,95,112,111,112,111,118,101,114,95,99,111,110,116,97,105,110,101,114,16,0,13,35,99,111,111,107,105,101,95,112,111,112,117,112,16,0,19,35,99,111,111,107,105,101,95,112,111,112,117,112,95,97,108,101,114,116,16,0,24,35,99,111,111,107,105,101,95,112,111,112,117,112,95,98,97,99,107,103,114,111,117,110,100,16,0,16,35,99,111,111,107,105,101,95,112,111,112,117,112,95,98,103,16,0,23,35,99,111,111,107,105,101,95,112,111,112,117,112,95,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,95,112,111,112,117,112,95,111,118,101,114,108,97,121,16,0,21,35,99,111,111,107,105,101,95,112,111,112,117,112,95,119,114,97,112,112,101,114,16,0,31,35,99,111,111,107,105,101,95,112,114,101,102,101,114,101,110,99,101,115,95,98,97,110,110,101,114,95,114,111,111,116,16,0,20,35,99,111,111,107,105,101,95,112,114,101,102,115,95,98,117,109,112,101,114,16,0,16,35,99,111,111,107,105,101,95,112,114,105,118,95,100,105,118,16,0,15,35,99,111,111,107,105,101,95,112,114,105,118,97,99,121,16,0,19,35,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,98,97,114,16,0,19,35,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,98,111,120,16,0,22,35,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,104,111,108,100,101,114,16,0,24,35,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,105,110,102,111,95,98,97,114,16,0,21,35,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,112,111,112,117,112,16,0,15,35,99,111,111,107,105,101,95,112,114,105,118,97,116,101,16,0,14,35,99,111,111,107,105,101,95,112,114,111,109,112,116,16,0,21,35,99,111,111,107,105,101,95,112,117,112,117,112,95,99,111,110,102,105,114,109,16,0,16,35,99,111,111,107,105,101,95,113,117,101,115,116,105,111,110,16,0,14,35,99,111,111,107,105,101,95,114,101,118,111,107,101,16,0,14,35,99,111,111,107,105,101,95,114,105,98,98,111,110,16,0,18,35,99,111,111,107,105,101,95,114,105,99,104,116,108,105,110,105,101,16,0,14,35,99,111,111,107,105,101,95,115,99,114,105,112,116,16,0,15,35,99,111,111,107,105,101,95,115,101,99,116,105,111,110,16,0,18,35,99,111,111,107,105,101,95,115,101,116,95,97,99,99,101,112,116,16,0,22,35,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,95,109,111,100,97,108,16,0,13,35,99,111,111,107,105,101,95,115,104,111,114,116,16,0,18,35,99,111,111,107,105,101,95,115,104,111,114,116,95,105,110,102,111,16,0,13,35,99,111,111,107,105,101,95,115,104,111,117,116,16,0,17,35,99,111,111,107,105,101,95,115,104,111,119,95,105,110,102,111,16,0,13,35,99,111,111,107,105,101,95,115,104,111,119,110,16,0,19,35,99,111,111,107,105,101,95,115,111,117,104,108,97,115,95,100,105,118,16,0,17,35,99,111,111,107,105,101,95,115,116,97,116,101,109,101,110,116,16,0,11,35,99,111,111,107,105,101,95,115,116,114,16,0,13,35,99,111,111,107,105,101,95,115,116,114,105,112,16,0,13,35,99,111,111,107,105,101,95,115,116,117,102,102,16,0,16,35,99,111,111,107,105,101,95,116,97,98,95,109,97,105,110,16,0,19,35,99,111,111,107,105,101,95,116,97,106,101,107,111,122,116,97,116,111,16,0,13,35,99,111,111,107,105,101,95,116,101,114,109,115,16,0,17,35,99,111,111,107,105,101,95,116,101,114,109,115,95,100,105,118,16,0,12,35,99,111,111,107,105,101,95,116,101,120,116,16,0,19,35,99,111,111,107,105,101,95,116,101,120,116,95,104,101,97,100,101,114,16,0,18,35,99,111,111,107,105,101,95,116,111,111,108,95,108,97,114,103,101,16,0,18,35,99,111,111,107,105,101,95,116,111,111,108,95,115,109,97,108,108,16,0,15,35,99,111,111,107,105,101,95,116,111,111,108,98,97,114,16,0,11,35,99,111,111,107,105,101,95,116,111,112,16,0,16,35,99,111,111,107,105,101,95,116,111,112,95,105,110,102,111,16,0,14,35,99,111,111,107,105,101,95,116,111,112,100,105,118,16,0,11,35,99,111,111,107,105,101,95,116,120,116,16,0,17,35,99,111,111,107,105,101,95,117,112,112,101,114,95,100,105,118,16,0,13,35,99,111,111,107,105,101,95,117,115,97,103,101,16,0,20,35,99,111,111,107,105,101,95,117,115,97,103,101,95,98,97,110,110,101,114,16,0,26,35,99,111,111,107,105,101,95,117,115,97,103,101,95,99,111,110,116,97,105,110,101,114,95,105,100,16,0,14,35,99,111,111,107,105,101,95,117,115,116,97,119,97,16,0,13,35,99,111,111,107,105,101,95,118,97,108,105,100,16,0,12,35,99,111,111,107,105,101,95,119,97,114,110,16,0,17,35,99,111,111,107,105,101,95,119,97,114,110,95,116,101,120,116,16,0,15,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,16,0,20,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,97,114,101,97,16,0,25,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,99,111,110,116,97,105,110,101,114,16,0,23,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,99,111,110,116,101,110,116,16,0,19,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,100,105,118,16,0,41,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,110,111,116,105,102,105,99,97,116,105,111,110,95,78,79,84,73,70,73,67,65,84,73,79,78,16,0,29,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,111,117,116,101,114,95,119,114,97,112,112,101,114,16,0,23,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,111,118,101,114,108,97,121,16,0,24,35,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,117,110,100,101,114,108,97,121,16,0,15,35,99,111,111,107,105,101,95,119,97,114,110,117,110,103,16,0,14,35,99,111,111,107,105,101,95,119,105,100,103,101,116,16,0,12,35,99,111,111,107,105,101,95,119,114,97,112,16,0,15,35,99,111,111,107,105,101,95,119,114,97,112,112,101,114,16,0,16,35,99,111,111,107,105,101,95,119,114,97,112,112,101,114,50,16,0,16,35,99,111,111,107,105,101,95,121,101,115,95,105,110,102,111,16,0,18,35,99,111,111,107,105,101,95,122,117,115,116,105,109,109,117,110,103,16,0,15,35,99,111,111,107,105,101,97,95,104,101,97,100,101,114,16,0,14,35,99,111,111,107,105,101,97,98,102,114,97,103,101,16,0,13,35,99,111,111,107,105,101,97,99,99,101,112,116,16,0,17,35,99,111,111,107,105,101,97,99,99,101,112,116,97,110,99,101,16,0,15,35,99,111,111,107,105,101,97,99,99,101,112,116,101,114,16,0,18,35,99,111,111,107,105,101,97,99,99,101,112,116,108,97,121,101,114,16,0,10,35,99,111,111,107,105,101,97,100,100,16,0,10,35,99,111,111,107,105,101,97,100,118,16,0,13,35,99,111,111,107,105,101,97,100,118,105,99,101,16,0,13,35,99,111,111,107,105,101,97,100,118,105,115,101,16,0,12,35,99,111,111,107,105,101,97,103,114,101,101,16,0,12,35,99,111,111,107,105,101,97,108,97,114,109,16,0,12,35,99,111,111,107,105,101,97,108,101,114,116,16,0,16,35,99,111,111,107,105,101,97,108,101,114,116,45,105,98,101,16,0,15,35,99,111,111,107,105,101,97,108,101,114,116,77,115,103,16,0,22,35,99,111,111,107,105,101,97,108,101,114,116,95,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,97,108,101,114,116,95,99,111,110,116,101,110,116,16,0,15,35,99,111,111,107,105,101,97,108,101,114,116,114,111,119,16,0,16,35,99,111,111,107,105,101,97,108,101,114,116,119,114,97,112,16,0,15,35,99,111,111,107,105,101,97,108,108,111,119,98,97,114,16,0,11,35,99,111,111,107,105,101,97,114,101,97,16,0,10,35,99,111,111,107,105,101,97,115,107,16,0,12,35,99,111,111,107,105,101,97,118,105,115,111,16,0,15,35,99,111,111,107,105,101,97,118,105,115,111,105,110,105,16,0,15,35,99,111,111,107,105,101,98,45,98,97,110,110,101,114,16,0,11,35,99,111,111,107,105,101,98,97,99,107,16,0,17,35,99,111,111,107,105,101,98,97,99,107,103,114,111,117,110,100,16,0,11,35,99,111,111,107,105,101,98,97,108,107,16,0,16,35,99,111,111,107,105,101,98,97,108,107,45,119,114,97,112,16,0,14,35,99,111,111,107,105,101,98,97,110,100,101,97,117,16,0,13,35,99,111,111,107,105,101,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,98,97,110,110,101,114,45,109,97,115,107,16,0,21,35,99,111,111,107,105,101,98,97,110,110,101,114,45,111,118,101,114,108,97,121,16,0,18,35,99,111,111,107,105,101,98,97,110,110,101,114,45,114,111,111,116,16,0,21,35,99,111,111,107,105,101,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,24,35,99,111,111,107,105,101,98,97,110,110,101,114,45,119,114,97,112,112,101,114,45,105,100,16,0,15,35,99,111,111,107,105,101,98,97,110,110,101,114,65,72,16,0,20,35,99,111,111,107,105,101,98,97,110,110,101,114,79,118,101,114,108,97,121,16,0,17,35,99,111,111,107,105,101,98,97,110,110,101,114,95,99,111,110,16,0,21,35,99,111,111,107,105,101,98,97,110,110,101,114,95,111,118,101,114,108,97,121,16,0,21,35,99,111,111,107,105,101,98,97,110,110,101,114,95,119,114,97,112,112,101,114,16,0,22,35,99,111,111,107,105,101,98,97,110,110,101,114,99,111,110,116,97,105,110,101,114,16,0,16,35,99,111,111,107,105,101,98,97,110,110,101,114,100,105,118,16,0,10,35,99,111,111,107,105,101,98,97,114,16,0,21,35,99,111,111,107,105,101,98,97,114,45,45,99,111,110,116,97,105,110,101,114,16,0,12,35,99,111,111,107,105,101,98,97,114,45,49,16,0,20,35,99,111,111,107,105,101,98,97,114,45,99,111,110,116,97,105,110,101,114,16,0,23,35,99,111,111,107,105,101,98,97,114,45,99,111,111,107,105,101,112,111,108,105,99,121,16,0,15,35,99,111,111,107,105,101,98,97,114,45,112,101,114,109,16,0,15,35,99,111,111,107,105,101,98,97,114,45,114,111,111,116,16,0,15,35,99,111,111,107,105,101,98,97,114,45,119,114,97,112,16,0,18,35,99,111,111,107,105,101,98,97,114,45,119,114,97,112,112,101,114,16,0,12,35,99,111,111,107,105,101,98,97,114,49,56,16,0,13,35,99,111,111,107,105,101,98,97,114,66,111,120,16,0,15,35,99,111,111,107,105,101,98,97,114,77,111,100,97,108,16,0,20,35,99,111,111,107,105,101,98,97,114,95,99,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,98,97,114,95,99,111,110,116,101,110,116,16,0,21,35,99,111,111,107,105,101,98,97,114,95,112,108,97,121,110,97,116,105,111,110,16,0,18,35,99,111,111,107,105,101,98,97,114,95,119,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,98,97,114,99,110,116,16,0,19,35,99,111,111,107,105,101,98,97,114,99,111,110,116,97,105,110,101,114,16,0,12,35,99,111,111,107,105,101,98,97,114,114,97,16,0,14,35,99,111,111,107,105,101,98,101,114,105,99,104,116,16,0,9,35,99,111,111,107,105,101,98,103,16,0,12,35,99,111,111,107,105,101,98,108,97,99,107,16,0,12,35,99,111,111,107,105,101,98,108,111,99,107,16,0,12,35,99,111,111,107,105,101,98,108,111,107,107,16,0,10,35,99,111,111,107,105,101,98,110,114,16,0,10,35,99,111,111,107,105,101,98,111,116,16,0,13,35,99,111,111,107,105,101,98,111,116,116,111,109,16,0,16,35,99,111,111,107,105,101,98,111,116,116,111,109,98,97,114,16,0,21,35,99,111,111,107,105,101,98,111,116,116,111,109,103,114,97,100,105,101,110,116,16,0,10,35,99,111,111,107,105,101,98,111,120,16,0,13,35,99,111,111,107,105,101,98,111,120,45,98,103,16,0,18,35,99,111,111,107,105,101,98,111,120,45,119,114,97,112,112,101,114,16,0,11,35,99,111,111,107,105,101,98,111,120,77,16,0,14,35,99,111,111,107,105,101,98,117,116,116,111,110,115,16,0,12,35,99,111,111,107,105,101,99,104,101,99,107,16,0,14,35,99,111,111,107,105,101,99,104,101,99,107,101,114,16,0,13,35,99,111,111,107,105,101,99,104,111,105,99,101,16,0,17,35,99,111,111,107,105,101,99,104,111,105,99,101,105,110,102,111,16,0,21,35,99,111,111,107,105,101,99,108,97,105,109,95,105,110,102,111,95,98,97,114,16,0,21,35,99,111,111,107,105,101,99,108,97,105,109,95,105,110,102,111,95,98,111,120,16,0,20,35,99,111,111,107,105,101,99,108,97,105,109,95,111,118,101,114,108,97,121,16,0,11,35,99,111,111,107,105,101,99,110,105,108,16,0,17,35,99,111,111,107,105,101,99,111,109,112,108,105,97,110,99,101,16,0,17,35,99,111,111,107,105,101,99,111,109,112,108,105,101,110,99,101,16,0,14,35,99,111,111,107,105,101,99,111,110,102,105,114,109,16,0,11,35,99,111,111,107,105,101,99,111,110,115,16,0,14,35,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,24,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,98,97,99,107,108,97,121,101,114,16,0,21,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,17,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,98,103,16,0,24,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,16,0,32,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,45,45,115,105,109,112,108,101,16,0,21,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,100,105,97,108,111,103,16,0,31,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,101,120,112,108,105,99,105,116,45,111,118,101,114,108,97,121,16,0,29,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,101,120,112,108,105,99,105,116,45,112,111,112,117,112,16,0,20,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,102,114,97,109,101,16,0,29,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,105,109,112,108,105,99,105,116,45,112,111,112,117,112,16,0,22,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,16,0,20,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,112,111,112,117,112,16,0,21,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,115,116,105,99,107,121,16,0,21,35,99,111,111,107,105,101,99,111,110,115,101,110,116,95,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,99,111,110,115,101,110,116,95,98,97,114,16,0,24,35,99,111,111,107,105,101,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,99,111,110,115,101,110,116,95,100,105,97,108,111,103,16,0,19,35,99,111,111,107,105,101,99,111,110,115,101,110,116,95,116,101,120,116,16,0,20,35,99,111,111,107,105,101,99,111,110,115,101,110,116,95,116,111,97,115,116,16,0,17,35,99,111,111,107,105,101,99,111,110,115,101,110,116,98,97,114,16,0,17,35,99,111,111,107,105,101,99,111,110,115,101,110,116,98,111,120,16,0,21,35,99,111,111,107,105,101,99,111,110,115,101,110,116,102,111,114,109,98,111,120,16,0,23,35,99,111,111,107,105,101,99,111,110,115,101,110,116,103,114,101,121,115,112,97,99,101,16,0,19,35,99,111,111,107,105,101,99,111,110,115,101,110,116,109,111,100,97,108,16,0,19,35,99,111,111,107,105,101,99,111,110,115,101,110,116,112,111,112,117,112,16,0,16,35,99,111,111,107,105,101,99,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,99,111,110,116,101,110,116,16,0,14,35,99,111,111,107,105,101,99,111,110,116,114,111,108,16,0,21,35,99,111,111,107,105,101,99,111,110,116,114,111,108,95,110,111,116,105,99,101,16,0,11,35,99,111,111,107,105,101,99,114,97,112,16,0,18,35,99,111,111,107,105,101,100,101,99,108,97,114,97,116,105,111,110,16,0,14,35,99,111,111,107,105,101,100,101,115,107,116,111,112,16,0,16,35,99,111,111,107,105,101,100,101,116,101,99,116,105,111,110,16,0,13,35,99,111,111,107,105,101,100,105,97,108,111,103,16,0,16,35,99,111,111,107,105,101,100,105,97,108,111,103,98,111,120,16,0,12,35,99,111,111,107,105,101,100,105,110,103,115,16,0,16,35,99,111,111,107,105,101,100,105,110,103,115,98,117,109,115,16,0,31,35,99,111,111,107,105,101,100,105,114,101,99,116,105,118,101,66,117,116,116,111,110,67,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,100,105,115,97,108,108,111,119,45,119,114,97,112,16,0,22,35,99,111,111,107,105,101,100,105,115,97,108,108,111,119,111,118,101,114,108,97,121,16,0,11,35,99,111,111,107,105,101,100,105,115,99,16,0,17,35,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,16,0,21,35,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,50,48,50,50,16,0,17,35,99,111,111,107,105,101,100,105,115,99,108,111,115,117,114,101,16,0,14,35,99,111,111,107,105,101,100,105,115,109,105,115,115,16,0,10,35,99,111,111,107,105,101,100,105,118,16,0,14,35,99,111,111,107,105,101,101,95,97,108,101,114,116,16,0,13,35,99,111,111,107,105,101,102,97,115,99,105,97,16,0,11,35,99,111,111,107,105,101,102,101,108,100,16,0,14,35,99,111,111,107,105,101,102,101,110,115,116,101,114,16,0,12,35,99,111,111,107,105,101,102,108,111,97,116,16,0,14,35,99,111,111,107,105,101,102,108,111,97,116,101,114,16,0,10,35,99,111,111,107,105,101,102,109,116,16,0,11,35,99,111,111,107,105,101,102,111,111,116,16,0,13,35,99,111,111,107,105,101,102,111,111,116,101,114,16,0,11,35,99,111,111,107,105,101,102,111,114,109,16,0,14,35,99,111,111,107,105,101,102,111,114,109,100,105,118,16,0,12,35,99,111,111,107,105,101,102,114,97,103,101,16,0,13,35,99,111,111,107,105,101,102,121,95,98,97,114,16,0,10,35,99,111,111,107,105,101,103,97,112,16,0,11,35,99,111,111,107,105,101,103,100,112,114,16,0,13,35,99,111,111,107,105,101,103,108,111,98,97,108,16,0,24,35,99,111,111,107,105,101,103,117,105,100,101,108,105,110,101,45,119,114,97,112,112,101,114,16,0,13,35,99,111,111,107,105,101,104,101,97,100,101,114,16,0,11,35,99,111,111,107,105,101,104,105,110,116,16,0,11,35,99,111,111,107,105,101,104,105,110,119,16,0,27,35,99,111,111,107,105,101,104,105,110,119,101,105,115,32,62,32,46,122,101,110,116,114,105,101,114,116,16,0,22,35,99,111,111,107,105,101,104,105,110,119,101,105,115,45,119,114,97,112,112,101,114,16,0,20,35,99,111,111,107,105,101,104,105,110,119,101,105,115,46,97,108,101,114,116,16,0,30,35,99,111,111,107,105,101,104,105,110,119,101,105,115,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,16,0,23,35,99,111,111,107,105,101,104,105,110,119,101,105,115,46,106,115,45,97,107,116,105,118,16,0,22,35,99,111,111,107,105,101,104,105,110,119,101,105,115,46,121,109,45,103,114,105,100,16,0,25,35,99,111,111,107,105,101,104,105,110,119,101,105,115,98,111,120,95,119,114,97,112,112,101,114,16,0,21,35,99,111,111,107,105,101,104,105,110,119,101,105,115,98,111,120,98,97,99,107,16,0,17,35,99,111,111,107,105,101,104,105,110,119,101,105,115,100,105,118,16,0,13,35,99,111,111,107,105,101,104,111,108,100,101,114,16,0,11,35,99,111,111,107,105,101,104,117,104,117,16,0,17,35,99,111,111,107,105,101,105,100,46,99,111,111,107,105,101,115,16,0,10,35,99,111,111,107,105,101,105,102,121,16,0,11,35,99,111,111,107,105,101,105,110,102,111,16,0,22,35,99,111,111,107,105,101,105,110,102,111,45,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,105,110,102,111,45,99,111,110,116,97,105,110,101,114,16,0,12,35,99,111,111,107,105,101,105,110,102,111,49,16,0,12,35,99,111,111,107,105,101,105,110,102,111,50,16,0,16,35,99,111,111,107,105,101,105,110,102,111,66,108,97,99,107,16,0,15,35,99,111,111,107,105,101,105,110,102,111,95,116,120,116,16,0,19,35,99,111,111,107,105,101,105,110,102,111,95,120,99,111,111,107,105,101,16,0,14,35,99,111,111,107,105,101,105,110,102,111,98,97,114,16,0,14,35,99,111,111,107,105,101,105,110,102,111,98,111,120,16,0,18,35,99,111,111,107,105,101,105,110,102,111,98,111,120,45,98,111,120,16,0,18,35,99,111,111,107,105,101,105,110,102,111,114,109,97,116,105,111,110,16,0,21,35,99,111,111,107,105,101,105,110,102,111,114,109,97,116,105,111,110,98,97,114,16,0,15,35,99,111,111,107,105,101,105,110,102,111,116,101,120,116,16,0,10,35,99,111,111,107,105,101,106,97,114,16,0,26,35,99,111,111,107,105,101,106,97,114,99,111,110,115,101,110,116,102,117,108,108,119,105,100,116,104,16,0,14,35,99,111,111,107,105,101,107,101,122,101,108,101,115,16,0,12,35,99,111,111,107,105,101,108,97,117,114,97,16,0,10,35,99,111,111,107,105,101,108,97,119,16,0,17,35,99,111,111,107,105,101,108,97,119,45,98,97,110,110,101,114,16,0,14,35,99,111,111,107,105,101,108,97,119,45,98,97,114,16,0,14,35,99,111,111,107,105,101,108,97,119,45,98,111,120,16,0,20,35,99,111,111,107,105,101,108,97,119,45,99,111,110,116,97,105,110,101,114,16,0,16,35,99,111,111,107,105,101,108,97,119,45,108,97,121,101,114,16,0,24,35,99,111,111,107,105,101,108,97,119,45,112,111,112,117,112,45,119,114,97,112,112,101,114,16,0,22,35,99,111,111,107,105,101,108,97,119,45,118,105,101,119,45,104,111,108,100,101,114,16,0,15,35,99,111,111,107,105,101,108,97,119,45,119,114,97,112,16,0,11,35,99,111,111,107,105,101,108,97,119,50,16,0,12,35,99,111,111,107,105,101,108,97,119,50,49,16,0,16,35,99,111,111,107,105,101,108,97,119,95,97,108,101,114,116,16,0,17,35,99,111,111,107,105,101,108,97,119,95,98,97,110,110,101,114,16,0,27,35,99,111,111,107,105,101,108,97,119,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,108,97,119,95,109,115,103,16,0,15,35,99,111,111,107,105,101,108,97,119,95,110,111,100,101,16,0,17,35,99,111,111,107,105,101,108,97,119,95,110,111,116,105,99,101,16,0,18,35,99,111,111,107,105,101,108,97,119,95,111,118,101,114,108,97,121,16,0,17,35,99,111,111,107,105,101,108,97,119,95,115,104,97,100,111,119,16,0,20,35,99,111,111,107,105,101,108,97,119,100,105,115,99,97,108,105,109,101,114,16,0,13,35,99,111,111,107,105,101,108,97,119,100,105,118,16,0,17,35,99,111,111,107,105,101,108,97,119,119,97,114,110,105,110,103,16,0,17,35,99,111,111,107,105,101,108,97,119,119,114,97,112,112,101,114,16,0,12,35,99,111,111,107,105,101,108,97,121,101,114,16,0,9,35,99,111,111,107,105,101,108,98,16,0,12,35,99,111,111,107,105,101,108,101,103,97,108,16,0,18,35,99,111,111,107,105,101,108,101,103,105,115,108,97,116,105,111,110,16,0,15,35,99,111,111,107,105,101,108,105,103,104,116,98,111,120,16,0,12,35,99,111,111,107,105,101,108,105,115,116,97,16,0,24,35,99,111,111,107,105,101,109,97,110,97,103,101,114,95,99,111,111,107,105,101,98,97,114,16,0,13,35,99,111,111,107,105,101,109,97,115,116,101,114,16,0,11,35,99,111,111,107,105,101,109,101,108,100,16,0,13,35,99,111,111,107,105,101,109,101,108,100,101,114,16,0,14,35,99,111,111,107,105,101,109,101,108,100,105,110,103,16,0,20,35,99,111,111,107,105,101,109,101,108,100,105,110,103,95,112,111,112,117,112,16,0,11,35,99,111,111,107,105,101,109,101,110,117,16,0,14,35,99,111,111,107,105,101,109,101,115,115,97,103,101,16,0,19,35,99,111,111,107,105,101,109,101,115,115,97,103,101,45,114,111,111,116,16,0,22,35,99,111,111,107,105,101,109,101,115,115,97,103,101,45,119,114,97,112,112,101,114,16,0,17,35,99,111,111,107,105,101,109,101,115,115,97,103,101,98,97,114,16,0,10,35,99,111,111,107,105,101,109,101,120,16,0,15,35,99,111,111,107,105,101,109,111,100,97,108,98,97,114,16,0,26,35,99,111,111,107,105,101,109,111,100,97,108,98,97,114,112,108,97,99,101,104,111,108,100,101,114,16,0,13,35,99,111,111,107,105,101,109,111,100,117,108,101,16,0,14,35,99,111,111,107,105,101,109,111,110,115,116,101,114,16,0,20,35,99,111,111,107,105,101,109,111,110,115,116,101,114,95,112,111,112,117,112,16,0,10,35,99,111,111,107,105,101,109,115,103,16,0,13,35,99,111,111,107,105,101,109,115,103,98,111,120,16,0,11,35,99,111,111,107,105,101,109,117,117,114,16,0,10,35,99,111,111,107,105,101,110,102,111,16,0,11,35,99,111,111,107,105,101,110,111,116,101,16,0,13,35,99,111,111,107,105,101,110,111,116,105,99,101,16,0,23,35,99,111,111,107,105,101,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,16,0,23,35,99,111,111,107,105,101,110,111,116,105,99,101,95,99,111,110,116,97,105,110,101,114,16,0,16,35,99,111,111,107,105,101,110,111,116,105,99,101,100,105,118,16,0,16,35,99,111,111,107,105,101,110,111,116,105,99,101,116,97,98,16,0,12,35,99,111,111,107,105,101,110,111,116,105,102,16,0,19,35,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,16,0,25,35,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,45,98,108,111,99,107,16,0,30,35,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,95,98,97,99,107,103,114,111,117,110,100,16,0,15,35,99,111,111,107,105,101,110,111,116,105,102,105,101,114,16,0,13,35,99,111,111,107,105,101,110,111,116,105,102,121,16,0,21,35,99,111,111,107,105,101,110,111,116,105,102,121,45,119,114,97,112,112,101,114,16,0,16,35,99,111,111,107,105,101,110,111,116,105,102,121,98,97,114,16,0,14,35,99,111,111,107,105,101,110,116,102,95,100,105,118,16,0,14,35,99,111,111,107,105,101,110,117,116,122,117,110,103,16,0,9,35,99,111,111,107,105,101,111,107,16,0,13,35,99,111,111,107,105,101,111,107,95,98,97,114,16,0,13,35,99,111,111,107,105,101,111,110,112,97,103,101,16,0,10,35,99,111,111,107,105,101,111,112,116,16,0,12,35,99,111,111,107,105,101,111,112,116,105,110,16,0,19,35,99,111,111,107,105,101,111,112,116,105,110,111,118,101,114,108,97,121,16,0,17,35,99,111,111,107,105,101,111,117,116,101,114,102,114,97,109,101,16,0,14,35,99,111,111,107,105,101,111,118,101,114,108,97,121,16,0,20,35,99,111,111,107,105,101,111,118,101,114,108,97,121,95,111,117,116,101,114,16,0,8,35,99,111,111,107,105,101,112,16,0,12,35,99,111,111,107,105,101,112,97,110,101,108,16,0,26,35,99,111,111,107,105,101,112,101,114,109,105,115,115,105,111,110,68,105,97,108,111,103,66,111,120,16,0,23,35,99,111,111,107,105,101,112,101,114,109,105,115,115,105,111,110,112,114,111,109,112,116,16,0,13,35,99,111,111,107,105,101,112,108,117,103,105,110,16,0,13,35,99,111,111,107,105,101,112,111,108,105,99,121,16,0,18,35,99,111,111,107,105,101,112,111,108,105,99,121,45,98,108,111,107,16,0,23,35,99,111,111,107,105,101,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,16,0,17,35,99,111,111,107,105,101,112,111,108,105,99,121,45,100,105,118,16,0,24,35,99,111,111,107,105,101,112,111,108,105,99,121,45,109,97,105,110,45,111,117,116,101,114,16,0,18,35,99,111,111,107,105,101,112,111,108,105,99,121,45,119,114,97,112,16,0,22,35,99,111,111,107,105,101,112,111,108,105,99,121,67,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,112,111,108,105,99,121,95,97,114,101,97,16,0,16,35,99,111,111,107,105,101,112,111,108,105,99,121,98,97,114,16,0,15,35,99,111,111,107,105,101,112,111,108,105,99,121,98,103,16,0,22,35,99,111,111,107,105,101,112,111,108,105,99,121,99,111,110,116,97,105,110,101,114,16,0,16,35,99,111,111,107,105,101,112,111,108,105,99,121,100,105,118,16,0,25,35,99,111,111,107,105,101,112,111,108,105,99,121,110,111,116,105,102,105,99,97,116,105,111,110,16,0,18,35,99,111,111,107,105,101,112,111,108,105,99,121,112,111,112,117,112,16,0,24,35,99,111,111,107,105,101,112,111,108,105,99,121,119,114,97,112,112,101,114,115,104,111,119,16,0,10,35,99,111,111,107,105,101,112,111,112,16,0,25,35,99,111,111,107,105,101,112,111,112,45,108,117,108,117,95,99,111,111,107,105,101,112,111,112,16,0,19,35,99,111,111,107,105,101,112,111,112,99,111,110,116,97,105,110,101,114,16,0,12,35,99,111,111,107,105,101,112,111,112,117,112,16,0,20,35,99,111,111,107,105,101,112,111,112,117,112,45,99,111,110,116,101,110,116,16,0,14,35,99,111,111,107,105,101,112,111,112,117,112,98,103,16,0,15,35,99,111,111,107,105,101,112,111,112,117,112,100,105,118,16,0,18,35,99,111,111,107,105,101,112,111,112,117,112,104,101,97,100,101,114,16,0,12,35,99,111,111,107,105,101,112,114,101,102,115,16,0,14,35,99,111,111,107,105,101,112,114,105,118,97,99,121,16,0,18,35,99,111,111,107,105,101,112,114,105,118,97,99,121,45,98,97,114,16,0,13,35,99,111,111,107,105,101,112,114,111,109,112,116,16,0,15,35,99,111,111,107,105,101,113,117,101,115,116,105,111,110,16,0,15,35,99,111,111,107,105,101,114,45,98,97,110,110,101,114,16,0,13,35,99,111,111,107,105,101,114,66,97,121,101,114,16,0,29,35,99,111,111,107,105,101,114,97,95,102,105,103,121,101,108,109,101,122,116,101,116,111,95,100,111,98,111,122,16,0,13,35,99,111,111,107,105,101,114,101,103,101,108,115,16,0,16,35,99,111,111,107,105,101,114,101,103,112,100,82,111,111,116,16,0,15,35,99,111,111,107,105,101,114,101,109,105,110,100,101,114,16,0,20,35,99,111,111,107,105,101,114,101,112,111,114,116,115,45,98,97,100,103,101,16,0,19,35,99,111,111,107,105,101,115,45,50,48,50,50,45,112,111,112,117,112,16,0,12,35,99,111,111,107,105,101,115,45,97,99,99,16,0,15,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,16,0,19,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,98,97,114,16,0,25,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,105,110,102,111,16,0,24,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,108,105,103,104,116,98,111,120,16,0,31,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,45,115,101,99,116,105,111,110,45,119,114,97,112,112,101,114,16,0,19,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,110,99,101,16,0,23,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,110,99,101,45,97,99,107,16,0,23,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,97,110,99,101,45,98,111,120,16,0,16,35,99,111,111,107,105,101,115,45,97,99,107,45,98,97,114,16,0,11,35,99,111,111,107,105,101,115,45,97,100,16,0,12,35,99,111,111,107,105,101,115,45,97,100,118,16,0,15,35,99,111,111,107,105,101,115,45,97,100,118,105,99,101,16,0,22,35,99,111,111,107,105,101,115,45,97,100,118,105,99,101,45,102,111,111,116,101,114,16,0,14,35,99,111,111,107,105,101,115,45,97,103,114,101,101,16,0,17,35,99,111,111,107,105,101,115,45,97,103,114,101,101,98,97,114,16,0,23,35,99,111,111,107,105,101,115,45,97,103,114,101,101,100,45,119,114,97,112,112,101,114,16,0,18,35,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,16,0,22,35,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,98,97,114,16,0,22,35,99,111,111,107,105,101,115,45,97,103,114,101,101,109,101,110,116,45,98,111,120,16,0,14,35,99,111,111,107,105,101,115,45,97,108,101,114,116,16,0,24,35,99,111,111,107,105,101,115,45,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,115,45,97,108,101,114,116,45,100,105,97,108,111,103,16,0,22,35,99,111,111,107,105,101,115,45,97,108,101,114,116,45,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,115,45,97,108,101,114,116,97,16,0,16,35,99,111,111,107,105,101,115,45,97,108,108,111,119,101,100,16,0,17,35,99,111,111,107,105,101,115,45,97,112,112,114,111,118,97,108,16,0,23,35,99,111,111,107,105,101,115,45,97,112,112,114,111,118,97,108,45,112,111,112,117,112,16,0,17,35,99,111,111,107,105,101,115,45,97,114,101,45,101,118,105,108,16,0,13,35,99,111,111,107,105,101,115,45,97,117,116,104,16,0,14,35,99,111,111,107,105,101,115,45,97,118,105,115,111,16,0,17,35,99,111,111,107,105,101,115,45,98,97,99,107,100,114,111,112,16,0,15,35,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,21,35,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,98,108,111,99,107,16,0,23,35,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,111,118,101,114,108,97,121,16,0,12,35,99,111,111,107,105,101,115,45,98,97,114,16,0,15,35,99,111,111,107,105,101,115,45,98,97,114,45,101,110,16,0,17,35,99,111,111,107,105,101,115,45,98,97,114,45,101,116,114,111,16,0,15,35,99,111,111,107,105,101,115,45,98,97,114,45,112,108,16,0,14,35,99,111,111,107,105,101,115,45,98,108,111,99,107,16,0,13,35,99,111,111,107,105,101,115,45,98,108,111,107,16,0,12,35,99,111,111,107,105,101,115,45,98,111,116,16,0,15,35,99,111,111,107,105,101,115,45,98,111,116,116,111,109,16,0,21,35,99,111,111,107,105,101,115,45,98,111,116,116,111,109,45,109,111,100,97,108,16,0,12,35,99,111,111,107,105,101,115,45,98,111,120,16,0,18,35,99,111,111,107,105,101,115,45,98,111,120,45,105,110,110,101,114,16,0,24,35,99,111,111,107,105,101,115,45,98,111,120,45,111,117,116,101,114,45,108,97,121,101,114,16,0,23,35,99,111,111,107,105,101,115,45,98,114,111,119,115,101,114,45,117,105,45,97,112,112,16,0,25,35,99,111,111,107,105,101,115,45,98,117,116,116,111,110,45,99,111,110,116,97,105,110,101,114,16,0,13,35,99,111,111,107,105,101,115,45,99,97,114,100,16,0,16,35,99,111,111,107,105,101,115,45,99,104,97,114,116,101,114,16,0,14,35,99,111,111,107,105,101,115,45,99,104,101,99,107,16,0,20,35,99,111,111,107,105,101,115,45,99,110,105,108,45,98,97,110,110,101,114,16,0,18,35,99,111,111,107,105,101,115,45,99,110,105,108,45,105,110,102,111,16,0,27,35,99,111,111,107,105,101,115,45,99,110,105,108,45,105,110,102,111,115,45,99,111,110,116,101,110,116,16,0,19,35,99,111,111,107,105,101,115,45,99,111,109,112,108,105,97,110,99,101,16,0,19,35,99,111,111,107,105,101,115,45,99,111,110,100,105,116,105,111,110,115,16,0,16,35,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,16,0,26,35,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,102,111,114,109,16,0,22,35,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,112,111,112,117,112,16,0,24,35,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,115,101,99,116,105,111,110,16,0,24,35,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,16,0,23,35,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,105,109,105,101,110,116,111,16,0,13,35,99,111,111,107,105,101,115,45,99,111,110,116,16,0,18,35,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,16,0,16,35,99,111,111,107,105,101,115,45,99,111,110,116,101,110,116,16,0,22,35,99,111,111,107,105,101,115,45,99,111,111,107,105,101,115,45,109,111,100,97,108,16,0,14,35,99,111,111,107,105,101,115,45,99,111,118,101,114,16,0,15,35,99,111,111,107,105,101,115,45,100,105,97,108,111,103,16,0,18,35,99,111,111,107,105,101,115,45,100,105,114,101,99,116,105,118,101,16,0,19,35,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,16,0,23,35,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,45,98,97,114,16,0,25,35,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,45,98,108,111,99,107,16,0,12,35,99,111,111,107,105,101,115,45,100,105,118,16,0,16,35,99,111,111,107,105,101,115,45,101,108,101,109,101,110,116,16,0,17,35,99,111,111,107,105,101,115,45,101,114,108,97,117,98,101,110,16,0,17,35,99,111,111,107,105,101,115,45,101,117,45,98,97,110,110,101,16,0,18,35,99,111,111,107,105,101,115,45,101,117,45,98,97,110,110,101,114,16,0,19,35,99,111,111,107,105,101,115,45,101,117,45,119,114,97,112,112,101,114,16,0,17,35,99,111,111,107,105,101,115,45,102,97,110,99,121,98,111,120,16,0,14,35,99,111,111,107,105,101,115,45,102,105,120,101,100,16,0,23,35,99,111,111,107,105,101,115,45,102,108,111,97,116,105,110,103,45,115,116,114,105,112,16,0,15,35,99,111,111,107,105,101,115,45,102,111,111,116,101,114,16,0,21,35,99,111,111,107,105,101,115,45,102,111,114,109,45,111,118,101,114,108,97,121,16,0,18,35,99,111,111,107,105,101,115,45,103,100,112,114,45,104,111,115,116,16,0,14,35,99,111,111,107,105,101,115,45,103,108,97,115,115,16,0,20,35,99,111,111,107,105,101,115,45,103,114,97,116,107,105,45,105,110,102,111,16,0,14,35,99,111,111,107,105,101,115,45,103,117,105,100,101,16,0,15,35,99,111,111,107,105,101,115,45,104,101,97,100,101,114,16,0,23,35,99,111,111,107,105,101,115,45,104,101,97,100,101,114,45,119,97,114,110,105,110,103,16,0,15,35,99,111,111,107,105,101,115,45,104,111,108,100,101,114,16,0,19,35,99,111,111,107,105,101,115,45,105,109,109,45,119,114,97,112,101,114,16,0,13,35,99,111,111,107,105,101,115,45,105,110,102,111,16,0,19,35,99,111,111,107,105,101,115,45,105,110,102,111,45,97,108,101,114,116,16,0,20,35,99,111,111,107,105,101,115,45,105,110,102,111,45,98,97,110,110,101,114,16,0,17,35,99,111,111,107,105,101,115,45,105,110,102,111,45,98,97,114,16,0,17,35,99,111,111,107,105,101,115,45,105,110,102,111,45,98,111,120,16,0,18,35,99,111,111,107,105,101,115,45,105,110,102,111,45,99,110,105,108,16,0,19,35,99,111,111,107,105,101,115,45,105,110,102,111,45,102,114,97,109,101,16,0,19,35,99,111,111,107,105,101,115,45,105,110,102,111,45,109,111,100,97,108,16,0,16,35,99,111,111,107,105,101,115,45,105,110,102,111,98,97,114,16,0,19,35,99,111,111,107,105,101,115,45,105,110,102,111,114,109,97,99,106,97,16,0,20,35,99,111,111,107,105,101,115,45,105,110,102,111,114,109,97,116,105,111,110,16,0,24,35,99,111,111,107,105,101,115,45,105,110,102,111,114,109,97,116,105,111,110,45,98,97,114,16,0,26,35,99,111,111,107,105,101,115,45,105,110,102,111,114,109,97,116,105,111,110,45,112,111,112,117,112,16,0,14,35,99,111,111,107,105,101,115,45,105,110,102,111,115,16,0,18,35,99,111,111,107,105,101,115,45,105,110,116,101,114,102,97,99,101,16,0,15,35,99,111,111,107,105,101,115,45,105,112,114,105,109,97,16,0,16,35,99,111,111,107,105,101,115,45,105,114,97,105,115,101,114,16,0,12,35,99,111,111,107,105,101,115,45,106,97,114,16,0,18,35,99,111,111,107,105,101,115,45,107,111,109,117,110,105,107,97,116,16,0,19,35,99,111,111,107,105,101,115,45,108,97,119,45,98,97,110,110,101,114,16,0,22,35,99,111,111,107,105,101,115,45,108,97,119,45,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,115,45,108,97,119,45,105,110,102,111,45,98,111,120,16,0,14,35,99,111,111,107,105,101,115,45,108,97,121,101,114,16,0,22,35,99,111,111,107,105,101,115,45,108,97,121,111,117,116,45,98,97,110,110,101,114,16,0,14,35,99,111,111,107,105,101,115,45,108,101,103,97,108,16,0,24,35,99,111,111,107,105,101,115,45,108,101,103,105,115,108,97,116,105,111,110,45,98,111,120,16,0,16,35,99,111,111,107,105,101,115,45,108,105,99,101,110,115,101,16,0,17,35,99,111,111,107,105,101,115,45,108,105,103,104,116,98,111,120,16,0,12,35,99,111,111,107,105,101,115,45,109,45,99,16,0,34,35,99,111,111,107,105,101,115,45,109,97,110,97,103,101,109,101,110,116,45,98,97,114,45,99,111,105,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,115,45,109,97,110,97,103,101,114,45,109,115,103,16,0,16,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,16,0,26,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,16,0,29,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,45,101,110,16,0,20,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,100,105,118,16,0,21,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,109,97,105,110,16,0,20,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,115,114,99,16,0,17,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,115,16,0,25,35,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,115,45,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,115,45,109,111,100,97,108,16,0,21,35,99,111,111,107,105,101,115,45,109,111,100,97,108,45,116,97,114,103,101,116,16,0,22,35,99,111,111,107,105,101,115,45,109,111,100,97,108,45,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,115,45,109,111,100,117,108,101,16,0,16,35,99,111,111,107,105,101,115,45,109,111,110,115,116,101,114,16,0,12,35,99,111,111,107,105,101,115,45,109,115,103,16,0,20,35,99,111,111,107,105,101,115,45,109,115,103,45,119,114,97,112,112,101,114,16,0,12,35,99,111,111,107,105,101,115,45,110,97,103,16,0,15,35,99,111,111,107,105,101,115,45,110,97,118,98,97,114,16,0,19,35,99,111,111,107,105,101,115,45,110,97,118,105,103,97,116,105,111,110,16,0,13,35,99,111,111,107,105,101,115,45,110,111,116,101,16,0,15,35,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,14,35,99,111,111,107,105,101,115,45,110,111,116,105,102,16,0,21,35,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,25,35,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,16,0,27,35,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,112,111,112,117,112,16,0,15,35,99,111,111,107,105,101,115,45,110,111,116,105,102,121,16,0,18,35,99,111,111,107,105,101,115,45,111,107,45,115,112,97,99,101,114,16,0,16,35,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,16,0,14,35,99,111,111,107,105,101,115,45,112,97,110,101,108,16,0,19,35,99,111,111,107,105,101,115,45,112,101,114,109,105,115,115,105,111,110,16,0,20,35,99,111,111,107,105,101,115,45,112,101,114,115,111,110,97,108,105,122,101,16,0,12,35,99,111,111,107,105,101,115,45,112,111,108,16,0,15,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,16,0,22,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,19,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,98,97,114,16,0,25,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,105,110,102,111,16,0,20,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,109,115,115,103,16,0,28,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,27,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,112,108,97,99,101,104,111,108,100,101,114,16,0,21,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,112,111,112,117,112,16,0,22,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,112,114,111,109,112,116,16,0,23,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,119,97,114,110,105,110,103,16,0,23,35,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,16,0,17,35,99,111,111,107,105,101,115,45,112,111,108,105,116,105,99,115,16,0,16,35,99,111,111,107,105,101,115,45,112,111,112,45,111,117,116,16,0,15,35,99,111,111,107,105,101,115,45,112,111,112,45,117,112,16,0,17,35,99,111,111,107,105,101,115,45,112,111,112,97,112,105,116,111,16,0,14,35,99,111,111,107,105,101,115,45,112,111,112,105,110,16,0,16,35,99,111,111,107,105,101,115,45,112,111,112,111,118,101,114,16,0,14,35,99,111,111,107,105,101,115,45,112,111,112,117,112,16,0,20,35,99,111,111,107,105,101,115,45,112,111,112,117,112,45,109,111,100,97,108,16,0,22,35,99,111,111,107,105,101,115,45,112,111,112,117,112,45,111,118,101,114,108,97,121,16,0,19,35,99,111,111,107,105,101,115,45,112,111,112,117,112,45,119,114,97,112,16,0,26,35,99,111,111,107,105,101,115,45,112,114,101,102,101,114,101,110,99,101,115,45,102,105,120,101,100,16,0,16,35,99,111,111,107,105,101,115,45,112,114,105,118,97,99,121,16,0,23,35,99,111,111,107,105,101,115,45,112,114,105,118,97,99,121,45,97,100,118,105,99,101,16,0,29,35,99,111,111,107,105,101,115,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,97,108,101,114,116,16,0,35,35,99,111,111,107,105,101,115,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,97,108,101,114,116,45,115,109,97,108,108,16,0,15,35,99,111,111,107,105,101,115,45,112,114,111,109,112,116,16,0,15,35,99,111,111,107,105,101,115,45,114,101,103,105,111,110,16,0,19,35,99,111,111,107,105,101,115,45,114,101,103,117,108,97,116,105,111,110,16,0,21,35,99,111,111,107,105,101,115,45,114,103,112,100,45,111,118,101,114,108,97,121,16,0,19,35,99,111,111,107,105,101,115,45,114,103,112,100,45,112,111,112,117,112,16,0,15,35,99,111,111,107,105,101,115,45,114,105,98,98,111,110,16,0,13,35,99,111,111,107,105,101,115,45,114,111,100,111,16,0,16,35,99,111,111,107,105,101,115,45,115,101,99,116,105,111,110,16,0,23,35,99,111,111,107,105,101,115,45,115,101,116,116,105,110,103,115,45,109,111,100,97,108,16,0,14,35,99,111,111,107,105,101,115,45,115,104,111,114,116,16,0,15,35,99,111,111,107,105,101,115,45,115,116,105,99,107,121,16,0,23,35,99,111,111,107,105,101,115,45,115,116,105,99,107,121,45,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,115,45,115,116,114,105,112,16,0,16,35,99,111,111,107,105,101,115,45,116,101,110,100,105,110,97,16,0,14,35,99,111,111,107,105,101,115,45,116,101,114,109,115,16,0,19,35,99,111,111,107,105,101,115,45,116,101,114,109,115,45,105,110,102,111,16,0,20,35,99,111,111,107,105,101,115,45,116,101,114,109,115,45,115,104,111,114,116,16,0,20,35,99,111,111,107,105,101,115,45,116,101,120,116,111,45,99,111,114,116,111,16,0,16,35,99,111,111,107,105,101,115,45,116,111,111,108,98,97,114,16,0,17,35,99,111,111,107,105,101,115,45,116,111,112,45,98,108,111,99,16,0,15,35,99,111,111,107,105,101,115,45,116,111,112,98,97,114,16,0,11,35,99,111,111,107,105,101,115,45,117,101,16,0,23,35,99,111,111,107,105,101,115,45,117,101,45,97,103,114,101,101,45,98,108,111,99,107,16,0,19,35,99,111,111,107,105,101,115,45,117,112,111,122,111,114,110,101,110,105,16,0,14,35,99,111,111,107,105,101,115,45,117,115,97,103,101,16,0,22,35,99,111,111,107,105,101,115,45,117,115,97,103,101,45,109,101,115,115,97,103,101,16,0,12,35,99,111,111,107,105,101,115,45,117,115,101,16,0,18,35,99,111,111,107,105,101,115,45,117,115,101,45,97,108,101,114,116,16,0,25,35,99,111,111,107,105,101,115,45,117,115,101,45,112,97,103,101,45,112,97,100,100,105,110,103,16,0,18,35,99,111,111,107,105,101,115,45,117,115,101,45,112,111,112,117,112,16,0,22,35,99,111,111,107,105,101,115,45,117,115,105,110,103,45,109,101,115,115,97,103,101,16,0,12,35,99,111,111,107,105,101,115,45,118,97,108,16,0,15,35,99,111,111,107,105,101,115,45,118,101,114,105,102,121,16,0,13,35,99,111,111,107,105,101,115,45,119,97,114,110,16,0,16,35,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,16,0,20,35,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,45,98,111,120,16,0,26,35,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,16,0,24,35,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,45,109,101,115,115,97,103,101,16,0,22,35,99,111,111,107,105,101,115,45,119,105,97,100,111,109,111,115,99,45,98,111,120,16,0,12,35,99,111,111,107,105,101,115,45,119,105,110,16,0,15,35,99,111,111,107,105,101,115,45,119,105,110,100,111,119,16,0,29,35,99,111,111,107,105,101,115,45,119,105,116,104,45,115,116,97,99,107,101,100,45,98,117,116,116,111,110,115,16,0,13,35,99,111,111,107,105,101,115,45,119,114,97,112,16,0,16,35,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,115,46,97,99,116,105,118,101,16,0,15,35,99,111,111,107,105,101,115,46,97,99,116,105,118,111,16,0,14,35,99,111,111,107,105,101,115,46,97,108,101,114,116,16,0,18,35,99,111,111,107,105,101,115,46,97,108,101,114,116,45,98,111,120,16,0,26,35,99,111,111,107,105,101,115,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,16,0,17,35,99,111,111,107,105,101,115,46,99,108,101,97,114,102,105,120,16,0,18,35,99,111,111,107,105,101,115,46,99,111,110,116,97,105,110,101,114,16,0,24,35,99,111,111,107,105,101,115,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,16,0,16,35,99,111,111,107,105,101,115,46,99,111,111,107,105,101,115,16,0,21,35,99,111,111,107,105,101,115,46,102,105,120,101,100,45,98,111,116,116,111,109,16,0,15,35,99,111,111,107,105,101,115,46,104,105,100,100,101,110,16,0,21,35,99,111,111,107,105,101,115,46,104,105,100,100,101,110,45,112,114,105,110,116,16,0,18,35,99,111,111,107,105,101,115,46,104,105,100,100,101,110,45,115,109,16,0,18,35,99,111,111,107,105,101,115,46,104,105,100,100,101,110,45,120,115,16,0,19,35,99,111,111,107,105,101,115,46,104,105,100,101,45,112,114,105,110,116,16,0,11,35,99,111,111,107,105,101,115,46,105,110,16,0,19,35,99,111,111,107,105,101,115,46,109,111,110,116,115,101,114,114,97,116,16,0,15,35,99,111,111,107,105,101,115,46,110,111,116,105,99,101,16,0,18,35,99,111,111,107,105,101,115,46,110,111,116,105,102,121,66,97,114,16,0,11,35,99,111,111,107,105,101,115,46,111,110,16,0,13,35,99,111,111,107,105,101,115,46,111,112,101,110,16,0,19,35,99,111,111,107,105,101,115,46,112,97,110,101,108,45,112,97,110,101,16,0,14,35,99,111,111,107,105,101,115,46,112,111,112,117,112,16,0,13,35,99,111,111,107,105,101,115,46,112,121,45,50,16,0,12,35,99,111,111,107,105,101,115,46,114,111,119,16,0,13,35,99,111,111,107,105,101,115,46,115,104,111,119,16,0,15,35,99,111,111,107,105,101,115,46,115,116,105,99,107,121,16,0,17,35,99,111,111,107,105,101,115,46,116,111,112,108,97,121,101,114,16,0,12,35,99,111,111,107,105,101,115,46,118,101,114,16,0,16,35,99,111,111,107,105,101,115,46,118,105,115,105,98,108,101,16,0,11,35,99,111,111,107,105,101,115,49,50,51,16,0,14,35,99,111,111,107,105,101,115,65,99,99,101,112,116,16,0,18,35,99,111,111,107,105,101,115,65,99,99,101,112,116,97,110,99,101,16,0,19,35,99,111,111,107,105,101,115,65,99,99,101,112,116,101,100,68,105,118,16,0,15,35,99,111,111,107,105,101,115,65,99,101,105,116,97,114,16,0,23,35,99,111,111,107,105,101,115,65,99,107,110,111,119,108,101,100,103,101,109,101,110,116,16,0,25,35,99,111,111,107,105,101,115,65,99,107,110,111,119,108,101,100,103,101,109,101,110,116,66,103,16,0,18,35,99,111,111,107,105,101,115,65,100,114,101,110,97,108,105,110,101,16,0,14,35,99,111,111,107,105,101,115,65,100,118,101,114,116,16,0,17,35,99,111,111,107,105,101,115,65,100,118,101,114,116,105,115,101,16,0,14,35,99,111,111,107,105,101,115,65,100,118,105,99,101,16,0,14,35,99,111,111,107,105,101,115,65,100,118,105,115,101,16,0,17,35,99,111,111,107,105,101,115,65,103,114,101,101,109,101,110,116,16,0,23,35,99,111,111,107,105,101,115,65,103,114,101,101,109,101,110,116,78,111,116,105,99,101,16,0,13,35,99,111,111,107,105,101,115,65,108,97,114,109,16,0,13,35,99,111,111,107,105,101,115,65,108,101,114,116,16,0,19,35,99,111,111,107,105,101,115,65,108,101,114,116,87,105,100,103,101,116,16,0,13,35,99,111,111,107,105,101,115,65,108,108,111,119,16,0,23,35,99,111,111,107,105,101,115,65,108,108,111,119,105,110,103,82,101,113,117,101,115,116,16,0,19,35,99,111,111,107,105,101,115,65,112,112,114,111,98,97,116,105,111,110,16,0,12,35,99,111,111,107,105,101,115,65,114,101,97,16,0,15,35,99,111,111,107,105,101,115,65,114,116,105,99,108,101,16,0,12,35,99,111,111,107,105,101,115,66,97,110,100,16,0,14,35,99,111,111,107,105,101,115,66,97,110,110,101,114,16,0,23,35,99,111,111,107,105,101,115,66,97,110,110,101,114,67,111,110,116,97,105,110,101,114,16,0,11,35,99,111,111,107,105,101,115,66,97,114,16,0,23,35,99,111,111,107,105,101,115,66,97,114,65,110,110,111,117,110,99,101,109,101,110,116,16,0,11,35,99,111,111,107,105,101,115,66,111,120,16,0,12,35,99,111,111,107,105,101,115,67,97,112,97,16,0,12,35,99,111,111,107,105,101,115,67,97,114,100,16,0,13,35,99,111,111,107,105,101,115,67,104,101,99,107,16,0,15,35,99,111,111,107,105,101,115,67,104,101,99,107,101,114,16,0,17,35,99,111,111,107,105,101,115,67,111,110,100,105,116,105,111,110,16,0,15,35,99,111,111,107,105,101,115,67,111,110,102,105,114,109,16,0,15,35,99,111,111,107,105,101,115,67,111,110,115,101,110,116,16,0,18,35,99,111,111,107,105,101,115,67,111,110,115,101,110,116,66,97,114,16,0,21,35,99,111,111,107,105,101,115,67,111,110,115,101,110,116,87,105,100,103,101,116,16,0,12,35,99,111,111,107,105,101,115,67,111,110,116,16,0,17,35,99,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,16,0,16,35,99,111,111,107,105,101,115,67,111,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,115,68,105,97,108,111,103,16,0,16,35,99,111,111,107,105,101,115,68,105,97,108,111,103,117,101,16,0,17,35,99,111,111,107,105,101,115,68,105,114,101,99,116,105,118,101,16,0,16,35,99,111,111,107,105,101,115,68,105,115,99,67,111,110,116,16,0,18,35,99,111,111,107,105,101,115,68,105,115,99,108,97,105,109,101,114,16,0,11,35,99,111,111,107,105,101,115,68,105,118,16,0,14,35,99,111,111,107,105,101,115,69,85,45,98,111,120,16,0,14,35,99,111,111,107,105,101,115,70,111,111,116,101,114,16,0,32,35,99,111,111,107,105,101,115,70,111,114,109,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,16,0,12,35,99,111,111,107,105,101,115,72,105,110,116,16,0,14,35,99,111,111,107,105,101,115,72,105,110,116,95,49,16,0,14,35,99,111,111,107,105,101,115,72,111,108,100,101,114,16,0,18,35,99,111,111,107,105,101,115,72,111,109,101,72,101,97,100,101,114,16,0,9,35,99,111,111,107,105,101,115,73,16,0,10,35,99,111,111,107,105,101,115,73,68,16,0,12,35,99,111,111,107,105,101,115,73,110,102,111,16,0,13,35,99,111,111,107,105,101,115,73,110,102,111,50,16,0,15,35,99,111,111,107,105,101,115,73,110,102,111,66,97,114,16,0,17,35,99,111,111,107,105,101,115,73,110,102,111,66,108,111,99,107,16,0,15,35,99,111,111,107,105,101,115,73,110,102,111,66,111,120,16,0,16,35,99,111,111,107,105,101,115,73,110,102,111,66,111,120,49,16,0,15,35,99,111,111,107,105,101,115,73,110,102,111,68,105,118,16,0,19,35,99,111,111,107,105,101,115,73,110,102,111,114,109,97,116,105,111,110,16,0,16,35,99,111,111,107,105,101,115,73,110,102,111,114,109,101,114,16,0,13,35,99,111,111,107,105,101,115,73,110,102,111,115,16,0,21,35,99,111,111,107,105,101,115,73,110,105,116,105,97,108,68,105,97,108,111,103,16,0,11,35,99,111,111,107,105,101,115,76,97,119,16,0,20,35,99,111,111,107,105,101,115,76,97,119,67,111,109,112,108,97,105,110,116,16,0,13,35,99,111,111,107,105,101,115,76,97,121,101,114,16,0,20,35,99,111,111,107,105,101,115,76,97,121,111,117,116,77,111,100,117,108,101,16,0,14,35,99,111,111,107,105,101,115,76,101,103,97,99,121,16,0,13,35,99,111,111,107,105,101,115,76,101,103,97,108,16,0,20,35,99,111,111,107,105,101,115,76,101,103,97,108,77,101,115,115,97,103,101,16,0,15,35,99,111,111,107,105,101,115,76,101,113,117,105,112,101,16,0,12,35,99,111,111,107,105,101,115,77,97,105,110,16,0,22,35,99,111,111,107,105,101,115,77,97,105,110,87,97,114,110,105,110,103,68,105,118,16,0,23,35,99,111,111,107,105,101,115,77,97,110,97,103,101,114,70,114,97,109,101,66,111,120,16,0,23,35,99,111,111,107,105,101,115,77,101,110,115,97,106,101,80,111,108,105,116,105,99,97,16,0,15,35,99,111,111,107,105,101,115,77,101,115,115,97,103,101,16,0,21,35,99,111,111,107,105,101,115,77,101,115,115,97,103,101,66,97,110,110,101,114,16,0,24,35,99,111,111,107,105,101,115,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,22,35,99,111,111,107,105,101,115,77,111,100,97,108,67,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,115,77,111,100,97,108,95,98,111,116,116,111,109,16,0,11,35,99,111,111,107,105,101,115,77,115,103,16,0,19,35,99,111,111,107,105,101,115,78,111,116,65,99,99,101,112,116,101,100,16,0,12,35,99,111,111,107,105,101,115,78,111,116,101,16,0,14,35,99,111,111,107,105,101,115,78,111,116,105,99,101,16,0,17,35,99,111,111,107,105,101,115,78,111,116,105,99,101,68,105,118,16,0,16,35,99,111,111,107,105,101,115,78,111,116,105,99,101,73,100,16,0,20,35,99,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,16,0,16,35,99,111,111,107,105,101,115,78,111,116,105,102,105,101,114,16,0,14,35,99,111,111,107,105,101,115,78,111,116,105,102,121,16,0,10,35,99,111,111,107,105,101,115,79,75,16,0,13,35,99,111,111,107,105,101,115,79,107,66,111,120,16,0,20,35,99,111,111,107,105,101,115,79,112,116,73,110,77,101,115,115,97,103,101,16,0,27,35,99,111,111,107,105,101,115,79,112,116,73,110,77,101,115,115,97,103,101,87,114,97,112,112,101,114,16,0,18,35,99,111,111,107,105,101,115,79,112,116,105,110,76,97,121,101,114,16,0,13,35,99,111,111,107,105,101,115,79,117,116,101,114,16,0,15,35,99,111,111,107,105,101,115,79,118,101,114,108,97,121,16,0,10,35,99,111,111,107,105,101,115,80,80,16,0,12,35,99,111,111,107,105,101,115,80,97,103,101,16,0,13,35,99,111,111,107,105,101,115,80,97,110,101,108,16,0,20,35,99,111,111,107,105,101,115,80,97,110,101,108,87,114,97,112,112,101,114,16,0,18,35,99,111,111,107,105,101,115,80,101,114,109,105,115,115,105,111,110,16,0,14,35,99,111,111,107,105,101,115,80,111,108,105,99,121,16,0,20,35,99,111,111,107,105,101,115,80,111,108,105,99,121,66,97,110,110,101,114,16,0,15,35,99,111,111,107,105,101,115,80,111,108,105,99,121,67,16,0,24,35,99,111,111,107,105,101,115,80,111,108,105,99,121,68,105,115,99,108,97,105,109,101,114,16,0,20,35,99,111,111,107,105,101,115,80,111,108,105,99,121,72,111,108,100,101,114,16,0,18,35,99,111,111,107,105,101,115,80,111,108,105,99,121,73,110,102,111,16,0,21,35,99,111,111,107,105,101,115,80,111,108,105,99,121,77,101,115,115,97,103,101,16,0,19,35,99,111,111,107,105,101,115,80,111,108,105,99,121,77,111,100,97,108,16,0,20,35,99,111,111,107,105,101,115,80,111,108,105,99,121,78,111,116,105,99,101,16,0,19,35,99,111,111,107,105,101,115,80,111,108,105,99,121,80,108,97,99,101,16,0,19,35,99,111,111,107,105,101,115,80,111,108,105,99,121,80,111,112,117,112,16,0,19,35,99,111,111,107,105,101,115,80,111,108,105,99,121,83,108,105,100,101,16,0,21,35,99,111,111,107,105,101,115,80,111,108,105,99,121,87,114,97,112,112,101,114,16,0,27,35,99,111,111,107,105,101,115,80,111,108,105,116,105,99,97,80,114,105,118,97,99,105,100,97,100,101,16,0,11,35,99,111,111,107,105,101,115,80,111,112,16,0,13,35,99,111,111,107,105,101,115,80,111,112,85,112,16,0,13,35,99,111,111,107,105,101,115,80,111,112,105,110,16,0,13,35,99,111,111,107,105,101,115,80,111,112,117,112,16,0,15,35,99,111,111,107,105,101,115,80,114,105,118,97,99,121,16,0,37,35,99,111,111,107,105,101,115,80,114,105,118,97,99,121,80,111,108,105,99,121,67,111,110,116,97,105,110,101,114,87,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,115,80,114,111,109,112,116,16,0,21,35,99,111,111,107,105,101,115,80,114,111,109,112,116,87,114,97,112,112,101,114,16,0,17,35,99,111,111,107,105,101,115,82,101,103,108,101,109,101,110,116,16,0,15,35,99,111,111,107,105,101,115,82,101,113,117,101,115,116,16,0,15,35,99,111,111,107,105,101,115,83,101,99,116,105,111,110,16,0,23,35,99,111,111,107,105,101,115,83,104,111,119,70,108,111,97,116,101,114,70,108,97,116,16,0,21,35,99,111,111,107,105,101,115,83,111,117,104,108,97,115,105,109,66,108,111,107,16,0,17,35,99,111,111,107,105,101,115,83,116,97,116,101,109,101,110,116,16,0,13,35,99,111,111,107,105,101,115,83,116,114,105,112,16,0,14,35,99,111,111,107,105,101,115,83,117,104,108,97,115,16,0,9,35,99,111,111,107,105,101,115,84,16,0,11,35,99,111,111,107,105,101,115,84,97,98,16,0,12,35,99,111,111,107,105,101,115,84,101,120,116,16,0,13,35,99,111,111,107,105,101,115,84,111,97,115,116,16,0,15,35,99,111,111,107,105,101,115,84,111,111,108,98,97,114,16,0,15,35,99,111,111,107,105,101,115,84,111,112,66,108,111,99,16,0,16,35,99,111,111,107,105,101,115,84,111,112,66,108,111,99,107,16,0,19,35,99,111,111,107,105,101,115,85,115,97,103,101,70,111,111,116,101,114,16,0,11,35,99,111,111,107,105,101,115,85,115,101,16,0,12,35,99,111,111,107,105,101,115,87,97,114,110,16,0,15,35,99,111,111,107,105,101,115,87,97,114,110,77,115,103,16,0,15,35,99,111,111,107,105,101,115,87,97,114,110,105,110,103,16,0,21,35,99,111,111,107,105,101,115,87,97,114,110,105,110,103,65,99,116,105,118,101,16,0,25,35,99,111,111,107,105,101,115,87,97,114,110,105,110,103,66,97,99,107,103,114,111,117,110,100,16,0,21,35,99,111,111,107,105,101,115,87,97,114,110,105,110,103,66,97,110,110,101,114,16,0,25,35,99,111,111,107,105,101,115,87,97,114,110,105,110,103,76,111,103,105,110,80,111,112,85,112,16,0,22,35,99,111,111,107,105,101,115,87,97,114,110,105,110,103,77,101,115,115,97,103,101,16,0,14,35,99,111,111,107,105,101,115,87,105,100,103,101,116,16,0,14,35,99,111,111,107,105,101,115,87,105,110,100,111,119,16,0,12,35,99,111,111,107,105,101,115,87,114,97,112,16,0,15,35,99,111,111,107,105,101,115,87,114,97,112,112,101,114,16,0,34,35,99,111,111,107,105,101,115,91,100,97,116,97,45,114,101,103,105,111,110,45,105,100,61,34,99,111,111,107,105,101,115,34,93,16,0,22,35,99,111,111,107,105,101,115,91,114,111,108,101,61,34,97,108,101,114,116,34,93,16,0,23,35,99,111,111,107,105,101,115,91,114,111,108,101,61,34,100,105,97,108,111,103,34,93,16,0,26,35,99,111,111,107,105,101,115,91,115,116,121,108,101,94,61,34,98,111,116,116,111,109,58,34,93,16,0,9,35,99,111,111,107,105,101,115,95,16,0,20,35,99,111,111,107,105,101,115,95,66,97,99,107,103,114,111,117,110,100,49,16,0,13,35,99,111,111,107,105,101,115,95,73,110,102,111,16,0,16,35,99,111,111,107,105,101,115,95,95,98,97,110,110,101,114,16,0,13,35,99,111,111,107,105,101,115,95,95,110,101,119,16,0,15,35,99,111,111,107,105,101,115,95,95,112,111,112,117,112,16,0,15,35,99,111,111,107,105,101,115,95,97,99,99,101,112,116,16,0,19,35,99,111,111,107,105,101,115,95,97,99,99,101,112,116,95,98,111,120,16,0,25,35,99,111,111,107,105,101,115,95,97,99,99,101,112,116,95,99,111,110,116,97,105,110,101,114,16,0,23,35,99,111,111,107,105,101,115,95,97,99,99,101,112,116,95,111,118,101,114,108,97,121,16,0,17,35,99,111,111,107,105,101,115,95,97,99,99,101,112,116,101,100,16,0,12,35,99,111,111,107,105,101,115,95,97,99,107,16,0,15,35,99,111,111,107,105,101,115,95,97,100,118,105,99,101,16,0,15,35,99,111,111,107,105,101,115,95,97,100,118,105,115,101,16,0,16,35,99,111,111,107,105,101,115,95,97,100,118,105,115,111,114,16,0,14,35,99,111,111,107,105,101,115,95,97,103,114,101,101,16,0,18,35,99,111,111,107,105,101,115,95,97,103,114,101,101,109,101,110,116,16,0,14,35,99,111,111,107,105,101,115,95,97,108,97,114,109,16,0,14,35,99,111,111,107,105,101,115,95,97,108,98,105,97,16,0,14,35,99,111,111,107,105,101,115,95,97,108,101,114,116,16,0,24,35,99,111,111,107,105,101,115,95,97,108,101,114,116,95,99,111,110,116,97,105,110,101,114,16,0,12,35,99,111,111,107,105,101,115,95,97,108,108,16,0,20,35,99,111,111,107,105,101,115,95,97,108,108,111,119,101,100,95,98,111,120,16,0,24,35,99,111,111,107,105,101,115,95,97,108,108,111,119,101,100,95,109,101,115,115,97,103,101,16,0,13,35,99,111,111,107,105,101,115,95,97,112,108,97,16,0,12,35,99,111,111,107,105,101,115,95,97,115,107,16,0,22,35,99,111,111,107,105,101,115,95,97,118,101,114,116,105,115,115,101,109,101,110,116,16,0,14,35,99,111,111,107,105,101,115,95,97,118,105,115,111,16,0,10,35,99,111,111,107,105,101,115,95,98,16,0,13,35,99,111,111,107,105,101,115,95,98,97,110,100,16,0,15,35,99,111,111,107,105,101,115,95,98,97,110,110,101,114,16,0,21,35,99,111,111,107,105,101,115,95,98,97,110,110,101,114,95,97,108,101,114,116,16,0,12,35,99,111,111,107,105,101,115,95,98,97,114,16,0,24,35,99,111,111,107,105,101,115,95,98,97,114,114,97,97,99,101,112,116,97,99,105,111,110,16,0,11,35,99,111,111,107,105,101,115,95,98,103,16,0,14,35,99,111,111,107,105,101,115,95,98,108,111,99,107,16,0,21,35,99,111,111,107,105,101,115,95,98,108,111,99,107,95,102,111,111,116,101,114,16,0,15,35,99,111,111,107,105,101,115,95,98,111,114,100,101,114,16,0,15,35,99,111,111,107,105,101,115,95,98,111,116,116,111,109,16,0,12,35,99,111,111,107,105,101,115,95,98,111,120,16,0,23,35,99,111,111,107,105,101,115,95,98,111,120,95,100,105,115,99,108,97,105,109,101,114,16,0,17,35,99,111,111,107,105,101,115,95,98,111,120,95,105,110,102,111,16,0,19,35,99,111,111,107,105,101,115,95,98,114,105,101,102,95,105,110,102,111,16,0,14,35,99,111,111,107,105,101,115,95,99,104,101,99,107,16,0,20,35,99,111,111,107,105,101,115,95,99,110,105,108,95,98,97,110,110,101,114,16,0,19,35,99,111,111,107,105,101,115,95,99,111,109,112,108,105,97,110,99,101,16,0,13,35,99,111,111,107,105,101,115,95,99,111,110,100,16,0,19,35,99,111,111,107,105,101,115,95,99,111,110,100,105,116,105,111,110,115,16,0,16,35,99,111,111,107,105,101,115,95,99,111,110,102,105,114,109,16,0,20,35,99,111,111,107,105,101,115,95,99,111,110,102,105,114,109,95,98,111,120,16,0,24,35,99,111,111,107,105,101,115,95,99,111,110,102,105,114,109,95,119,114,97,112,112,101,114,16,0,25,35,99,111,111,107,105,101,115,95,99,111,110,102,105,114,109,97,116,105,111,110,95,98,97,114,16,0,16,35,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,16,0,26,35,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,95,102,111,114,109,16,0,13,35,99,111,111,107,105,101,115,95,99,111,110,116,16,0,16,35,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,16,0,18,35,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,16,0,16,35,99,111,111,107,105,101,115,95,99,111,110,116,101,110,116,16,0,22,35,99,111,111,107,105,101,115,95,99,111,110,116,101,110,116,95,98,97,114,114,101,16,0,15,35,99,111,111,107,105,101,115,95,99,117,115,116,111,109,16,0,15,35,99,111,111,107,105,101,115,95,100,105,97,108,111,103,16,0,18,35,99,111,111,107,105,101,115,95,100,105,114,101,99,116,105,118,101,16,0,19,35,99,111,111,107,105,101,115,95,100,105,115,99,108,97,105,109,101,114,16,0,12,35,99,111,111,107,105,101,115,95,100,105,118,16,0,17,35,99,111,111,107,105,101,115,95,100,105,118,95,109,97,105,110,16,0,18,35,99,111,111,107,105,101,115,95,101,99,95,110,111,116,105,99,101,16,0,26,35,99,111,111,107,105,101,115,95,101,110,97,98,108,101,100,95,99,111,110,116,97,105,110,101,114,16,0,14,35,99,111,111,107,105,101,115,95,101,110,116,114,121,16,0,17,35,99,111,111,107,105,101,115,95,101,114,108,97,117,98,101,110,16,0,25,35,99,111,111,107,105,101,115,95,101,116,95,116,114,97,99,101,117,114,115,95,67,78,73,76,16,0,11,35,99,111,111,107,105,101,115,95,101,117,16,0,22,35,99,111,111,107,105,101,115,95,101,117,95,97,99,99,101,112,116,97,110,99,101,16,0,13,35,99,111,111,107,105,101,115,95,102,97,100,101,16,0,15,35,99,111,111,107,105,101,115,95,102,111,111,116,101,114,16,0,20,35,99,111,111,107,105,101,115,95,102,111,111,116,101,114,95,105,110,102,111,16,0,21,35,99,111,111,107,105,101,115,95,102,111,111,116,101,114,95,112,111,112,117,112,16,0,19,35,99,111,111,107,105,101,115,95,102,111,111,116,101,114,95,115,101,99,16,0,20,35,99,111,111,107,105,101,115,95,103,100,112,114,95,100,114,97,119,101,114,16,0,15,35,99,111,111,107,105,101,115,95,104,101,97,100,101,114,16,0,13,35,99,111,111,107,105,101,115,95,104,105,110,116,16,0,12,35,99,111,111,107,105,101,115,95,105,110,99,16,0,12,35,99,111,111,107,105,101,115,95,105,110,102,16,0,13,35,99,111,111,107,105,101,115,95,105,110,102,111,16,0,17,35,99,111,111,107,105,101,115,95,105,110,102,111,95,98,111,120,16,0,20,35,99,111,111,107,105,101,115,95,105,110,102,111,95,104,101,97,100,101,114,16,0,19,35,99,111,111,107,105,101,115,95,105,110,102,111,95,112,97,110,101,108,16,0,18,35,99,111,111,107,105,101,115,95,105,110,102,111,95,115,104,111,119,16,0,15,35,99,111,111,107,105,101,115,95,105,110,102,111,114,109,16,0,20,35,99,111,111,107,105,101,115,95,105,110,102,111,114,109,97,116,105,111,110,16,0,14,35,99,111,111,107,105,101,115,95,105,110,102,111,115,16,0,14,35,99,111,111,107,105,101,115,95,105,110,110,101,114,16,0,12,35,99,111,111,107,105,101,115,95,108,97,119,16,0,14,35,99,111,111,107,105,101,115,95,108,97,121,101,114,16,0,14,35,99,111,111,107,105,101,115,95,108,101,103,97,108,16,0,22,35,99,111,111,107,105,101,115,95,108,101,103,97,108,95,109,101,110,116,105,111,110,16,0,20,35,99,111,111,107,105,101,115,95,108,101,103,105,115,108,97,116,105,111,110,16,0,14,35,99,111,111,107,105,101,115,95,108,105,115,116,97,16,0,12,35,99,111,111,107,105,101,115,95,109,101,110,16,0,16,35,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,16,0,20,35,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,95,98,97,114,16,0,26,35,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,95,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,115,95,109,101,115,115,97,103,101,95,105,110,102,111,16,0,14,35,99,111,111,107,105,101,115,95,109,111,100,97,108,16,0,12,35,99,111,111,107,105,101,115,95,109,115,103,16,0,16,35,99,111,111,107,105,101,115,95,109,115,103,95,100,105,118,16,0,23,35,99,111,111,107,105,101,115,95,109,115,103,95,115,117,98,119,114,97,112,112,101,114,16,0,20,35,99,111,111,107,105,101,115,95,109,115,103,95,119,114,97,112,112,101,114,16,0,15,35,99,111,111,107,105,101,115,95,110,111,116,105,99,101,16,0,22,35,99,111,111,107,105,101,115,95,110,111,116,105,99,101,95,98,97,110,110,101,114,16,0,27,35,99,111,111,107,105,101,115,95,110,111,116,105,99,101,95,119,105,100,103,101,116,95,114,111,111,116,16,0,14,35,99,111,111,107,105,101,115,95,110,111,116,105,102,16,0,21,35,99,111,111,107,105,101,115,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,17,35,99,111,111,107,105,101,115,95,110,111,116,105,102,105,101,114,16,0,27,35,99,111,111,107,105,101,115,95,110,111,116,105,102,105,101,114,95,99,111,110,116,97,105,110,101,114,16,0,15,35,99,111,111,107,105,101,115,95,110,111,116,105,102,121,16,0,24,35,99,111,111,107,105,101,115,95,110,111,116,105,102,121,95,99,111,110,116,95,97,108,108,16,0,25,35,99,111,111,107,105,101,115,95,110,111,116,105,102,121,95,99,111,110,116,97,105,110,101,114,16,0,12,35,99,111,111,107,105,101,115,95,111,99,117,16,0,11,35,99,111,111,107,105,101,115,95,111,107,16,0,13,35,99,111,111,107,105,101,115,95,111,114,101,111,16,0,16,35,99,111,111,107,105,101,115,95,111,118,101,114,108,97,121,16,0,22,35,99,111,111,107,105,101,115,95,111,118,101,114,108,97,121,95,115,104,97,100,101,16,0,14,35,99,111,111,107,105,101,115,95,112,97,110,101,108,16,0,17,35,99,111,111,107,105,101,115,95,112,97,110,101,108,95,98,103,16,0,19,35,99,111,111,107,105,101,115,95,112,101,114,109,105,115,115,105,111,110,16,0,23,35,99,111,111,107,105,101,115,95,112,111,108,105,99,105,101,115,95,97,108,101,114,116,16,0,15,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,16,0,22,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,98,97,110,110,101,114,16,0,19,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,98,97,114,16,0,18,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,98,103,16,0,24,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,98,105,103,95,102,111,114,109,16,0,19,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,98,111,120,16,0,25,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,99,111,110,116,97,105,110,101,114,16,0,21,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,112,111,112,117,112,16,0,20,35,99,111,111,107,105,101,115,95,112,111,108,105,99,121,95,119,114,97,112,16,0,17,35,99,111,111,107,105,101,115,95,112,111,108,105,116,121,107,97,16,0,12,35,99,111,111,107,105,101,115,95,112,111,112,16,0,14,35,99,111,111,107,105,101,115,95,112,111,112,105,110,16,0,14,35,99,111,111,107,105,101,115,95,112,111,112,117,112,16,0,24,35,99,111,111,107,105,101,115,95,112,111,112,117,112,95,99,111,110,116,97,105,110,101,114,16,0,11,35,99,111,111,107,105,101,115,95,112,112,16,0,16,35,99,111,111,107,105,101,115,95,112,114,105,118,97,99,121,16,0,17,35,99,111,111,107,105,101,115,95,113,117,101,115,116,105,111,110,16,0,12,35,99,111,111,107,105,101,115,95,114,101,112,16,0,16,35,99,111,111,107,105,101,115,95,114,101,113,117,101,115,116,16,0,16,35,99,111,111,107,105,101,115,95,115,101,99,116,105,111,110,16,0,20,35,99,111,111,107,105,101,115,95,115,104,111,119,95,100,105,97,108,111,103,16,0,17,35,99,111,111,107,105,101,115,95,115,105,100,95,105,110,102,111,16,0,18,35,99,111,111,107,105,101,115,95,115,116,97,116,101,109,101,110,116,16,0,14,35,99,111,111,107,105,101,115,95,115,116,114,105,112,16,0,12,35,99,111,111,107,105,101,115,95,116,97,98,16,0,14,35,99,111,111,107,105,101,115,95,116,101,114,109,115,16,0,12,35,99,111,111,107,105,101,115,95,116,105,99,16,0,16,35,99,111,111,107,105,101,115,95,116,111,111,108,98,97,114,16,0,14,35,99,111,111,107,105,101,115,95,116,114,101,115,99,16,0,12,35,99,111,111,107,105,101,115,95,116,120,116,16,0,13,35,99,111,111,107,105,101,115,95,118,105,101,119,16,0,15,35,99,111,111,107,105,101,115,95,118,105,101,119,101,114,16,0,13,35,99,111,111,107,105,101,115,95,119,97,114,110,16,0,16,35,99,111,111,107,105,101,115,95,119,97,114,110,105,110,103,16,0,16,35,99,111,111,107,105,101,115,95,119,114,97,112,112,101,114,16,0,11,35,99,111,111,107,105,101,115,97,100,118,16,0,13,35,99,111,111,107,105,101,115,97,103,114,101,101,16,0,13,35,99,111,111,107,105,101,115,97,108,101,114,116,16,0,12,35,99,111,111,107,105,101,115,97,114,101,97,16,0,13,35,99,111,111,107,105,101,115,97,118,105,115,111,16,0,11,35,99,111,111,107,105,101,115,98,97,110,16,0,14,35,99,111,111,107,105,101,115,98,97,110,110,101,114,16,0,11,35,99,111,111,107,105,101,115,98,97,114,16,0,12,35,99,111,111,107,105,101,115,98,108,111,107,16,0,11,35,99,111,111,107,105,101,115,98,111,120,16,0,9,35,99,111,111,107,105,101,115,99,16,0,13,35,99,111,111,107,105,101,115,99,104,101,99,107,16,0,14,35,99,111,111,107,105,101,115,99,104,111,105,99,101,16,0,10,35,99,111,111,107,105,101,115,99,107,16,0,17,35,99,111,111,107,105,101,115,99,107,95,97,99,99,101,112,116,16,0,18,35,99,111,111,107,105,101,115,99,107,95,111,118,101,114,108,97,121,16,0,18,35,99,111,111,107,105,101,115,99,111,110,99,101,110,116,98,97,114,16,0,15,35,99,111,111,107,105,101,115,99,111,110,102,105,114,109,16,0,15,35,99,111,111,107,105,101,115,99,111,110,115,101,110,116,16,0,17,35,99,111,111,107,105,101,115,99,111,110,116,97,105,110,101,114,16,0,15,35,99,111,111,107,105,101,115,99,111,110,116,101,110,116,16,0,13,35,99,111,111,107,105,101,115,99,114,101,101,110,16,0,13,35,99,111,111,107,105,101,115,99,114,105,112,116,16,0,19,35,99,111,111,107,105,101,115,99,114,105,112,116,95,98,97,100,103,101,16,0,23,35,99,111,111,107,105,101,115,99,114,105,112,116,95,99,111,110,116,97,105,110,101,114,16,0,22,35,99,111,111,107,105,101,115,99,114,105,112,116,95,105,110,106,101,99,116,101,100,16,0,33,35,99,111,111,107,105,101,115,99,114,105,112,116,95,105,110,106,101,99,116,101,100,95,98,97,99,107,103,114,111,117,110,100,16,0,30,35,99,111,111,107,105,101,115,99,114,105,112,116,95,105,110,106,101,99,116,101,100,95,119,114,97,112,112,101,114,16,0,25,35,99,111,111,107,105,101,115,99,114,105,112,116,95,105,110,106,101,99,116,101,100,111,110,101,16,0,18,35,99,111,111,107,105,101,115,99,114,105,112,116,95,109,97,105,110,16,0,21,35,99,111,111,107,105,101,115,99,114,105,112,116,95,119,114,97,112,112,101,114,16,0,14,35,99,111,111,107,105,101,115,100,105,97,108,111,103,16,0,27,35,99,111,111,107,105,101,115,100,105,114,101,99,116,105,118,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,99,111,111,107,105,101,115,100,105,115,99,108,97,105,109,101,114,16,0,15,35,99,111,111,107,105,101,115,100,105,115,112,108,97,121,16,0,11,35,99,111,111,107,105,101,115,100,105,118,16,0,18,35,99,111,111,107,105,101,115,101,97,108,45,98,97,110,110,101,114,16,0,14,35,99,111,111,107,105,101,115,101,99,116,105,111,110,16,0,15,35,99,111,111,107,105,101,115,101,110,97,98,108,101,100,16,0,14,35,99,111,111,107,105,101,115,101,115,97,110,116,101,16,0,13,35,99,111,111,107,105,101,115,101,116,100,105,118,16,0,15,35,99,111,111,107,105,101,115,101,116,116,105,110,103,115,16,0,14,35,99,111,111,107,105,101,115,101,117,45,98,97,114,16,0,11,35,99,111,111,107,105,101,115,104,105,116,16,0,13,35,99,111,111,107,105,101,115,104,111,121,101,114,16,0,12,35,99,111,111,107,105,101,115,105,110,102,111,16,0,19,35,99,111,111,107,105,101,115,105,110,102,111,45,110,97,118,98,97,114,16,0,20,35,99,111,111,107,105,101,115,105,110,102,111,45,119,114,97,112,112,101,114,16,0,17,35,99,111,111,107,105,101,115,105,110,102,111,112,110,108,95,99,16,0,11,35,99,111,111,107,105,101,115,106,115,114,16,0,11,35,99,111,111,107,105,101,115,108,97,119,16,0,16,35,99,111,111,107,105,101,115,108,97,119,99,104,101,99,107,16,0,13,35,99,111,111,107,105,101,115,108,101,103,97,108,16,0,13,35,99,111,111,107,105,101,115,108,105,100,101,114,16,0,13,35,99,111,111,107,105,101,115,108,105,115,116,97,16,0,15,35,99,111,111,107,105,101,115,109,101,108,100,105,110,103,16,0,12,35,99,111,111,107,105,101,115,109,101,110,117,16,0,15,35,99,111,111,107,105,101,115,109,101,115,115,97,103,101,16,0,18,35,99,111,111,107,105,101,115,109,101,115,115,97,103,101,100,105,118,16,0,16,35,99,111,111,107,105,101,115,109,101,115,115,97,103,101,115,16,0,10,35,99,111,111,107,105,101,115,109,115,16,0,11,35,99,111,111,107,105,101,115,109,115,103,16,0,14,35,99,111,111,107,105,101,115,110,111,116,105,99,101,16,0,14,35,99,111,111,107,105,101,115,110,111,116,105,102,121,16,0,10,35,99,111,111,107,105,101,115,111,114,16,0,16,35,99,111,111,107,105,101,115,111,118,101,114,118,105,101,119,16,0,12,35,99,111,111,107,105,101,115,112,97,99,101,16,0,12,35,99,111,111,107,105,101,115,112,97,110,101,16,0,14,35,99,111,111,107,105,101,115,112,108,101,97,115,101,16,0,28,35,99,111,111,107,105,101,115,112,108,117,115,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,115,112,108,117,115,45,111,118,101,114,108,97,121,16,0,14,35,99,111,111,107,105,101,115,112,111,108,105,99,121,16,0,17,35,99,111,111,107,105,101,115,112,111,108,105,99,121,100,105,118,16,0,21,35,99,111,111,107,105,101,115,112,111,108,105,99,121,109,101,115,115,97,103,101,16,0,11,35,99,111,111,107,105,101,115,112,111,112,16,0,13,35,99,111,111,107,105,101,115,112,111,112,117,112,16,0,19,35,99,111,111,107,105,101,115,112,111,112,117,112,45,108,97,121,101,114,16,0,10,35,99,111,111,107,105,101,115,112,112,16,0,14,35,99,111,111,107,105,101,115,114,105,98,98,111,110,16,0,9,35,99,111,111,107,105,101,115,115,16,0,15,35,99,111,111,107,105,101,115,115,101,99,116,105,111,110,16,0,10,35,99,111,111,107,105,101,115,115,115,16,0,11,35,99,111,111,107,105,101,115,116,97,116,16,0,16,35,99,111,111,107,105,101,115,116,97,116,101,109,101,110,116,16,0,13,35,99,111,111,107,105,101,115,116,101,114,109,115,16,0,12,35,99,111,111,107,105,101,115,116,101,120,116,16,0,12,35,99,111,111,107,105,101,115,116,114,105,112,16,0,13,35,99,111,111,107,105,101,115,117,115,97,103,101,16,0,12,35,99,111,111,107,105,101,115,119,97,114,110,16,0,15,35,99,111,111,107,105,101,115,119,97,114,110,105,110,103,16,0,21,35,99,111,111,107,105,101,115,119,97,114,110,105,110,103,95,98,108,111,99,107,16,0,12,35,99,111,111,107,105,101,115,119,114,97,112,16,0,12,35,99,111,111,107,105,101,116,97,98,108,101,16,0,9,35,99,111,111,107,105,101,116,99,16,0,11,35,99,111,111,107,105,101,116,101,115,116,16,0,11,35,99,111,111,107,105,101,116,101,120,116,16,0,14,35,99,111,111,107,105,101,116,101,120,116,100,105,118,16,0,12,35,99,111,111,107,105,101,116,104,105,110,103,16,0,13,35,99,111,111,107,105,101,116,105,99,107,101,114,16,0,12,35,99,111,111,107,105,101,116,111,97,115,116,16,0,22,35,99,111,111,107,105,101,116,111,101,115,116,101,109,109,105,110,103,98,97,108,107,16,0,22,35,99,111,111,107,105,101,116,111,101,115,116,101,109,109,105,110,103,118,108,97,107,16,0,10,35,99,111,111,107,105,101,116,111,112,16,0,13,35,99,111,111,107,105,101,116,111,112,98,97,114,16,0,13,35,99,111,111,107,105,101,116,111,112,112,101,114,16,0,24,35,99,111,111,107,105,101,116,114,97,99,107,105,110,103,97,103,114,101,101,109,101,110,116,16,0,12,35,99,111,111,107,105,101,116,114,111,108,108,16,0,15,35,99,111,111,107,105,101,116,114,111,110,45,98,97,114,16,0,8,35,99,111,111,107,105,101,117,16,0,15,35,99,111,111,107,105,101,117,95,104,101,97,100,101,114,16,0,11,35,99,111,111,107,105,101,117,100,105,118,16,0,10,35,99,111,111,107,105,101,117,115,101,16,0,13,35,99,111,111,107,105,101,117,115,101,97,103,101,16,0,12,35,99,111,111,107,105,101,117,115,105,110,103,16,0,11,35,99,111,111,107,105,101,118,101,105,108,16,0,10,35,99,111,111,107,105,101,118,106,119,16,0,19,35,99,111,111,107,105,101,119,97,97,114,115,99,104,117,119,105,110,103,16,0,11,35,99,111,111,107,105,101,119,97,114,110,16,0,17,35,99,111,111,107,105,101,119,97,114,110,45,112,97,110,101,108,16,0,14,35,99,111,111,107,105,101,119,97,114,110,98,97,114,16,0,13,35,99,111,111,107,105,101,119,97,114,110,101,114,16,0,14,35,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,20,35,99,111,111,107,105,101,119,97,114,110,105,110,103,45,98,108,111,99,107,16,0,21,35,99,111,111,107,105,101,119,97,114,110,105,110,103,95,104,101,97,100,101,114,16,0,23,35,99,111,111,107,105,101,119,97,114,110,105,110,103,99,111,110,116,97,105,110,101,114,16,0,20,35,99,111,111,107,105,101,119,97,114,110,105,110,103,105,102,114,97,109,101,16,0,14,35,99,111,111,107,105,101,119,97,114,110,117,110,103,16,0,10,35,99,111,111,107,105,101,119,101,116,16,0,15,35,99,111,111,107,105,101,119,101,116,45,98,97,108,107,16,0,15,35,99,111,111,107,105,101,119,101,116,45,104,111,101,107,16,0,16,35,99,111,111,107,105,101,119,101,116,103,101,118,105,110,103,16,0,13,35,99,111,111,107,105,101,119,105,110,100,111,119,16,0,18,35,99,111,111,107,105,101,119,111,111,107,105,101,98,108,111,99,107,16,0,11,35,99,111,111,107,105,101,119,114,97,112,16,0,14,35,99,111,111,107,105,101,119,114,97,112,112,101,114,16,0,11,35,99,111,111,107,105,101,120,110,100,111,16,0,12,35,99,111,111,107,105,101,122,101,105,108,101,16,0,15,35,99,111,111,107,105,105,45,109,101,115,115,97,103,101,16,0,15,35,99,111,111,107,105,105,45,111,118,101,114,108,97,121,16,0,9,35,99,111,111,107,105,110,102,111,16,0,12,35,99,111,111,107,105,110,102,111,68,73,86,16,0,19,35,99,111,111,107,105,110,102,111,95,99,111,110,116,97,105,110,101,114,16,0,13,35,99,111,111,107,105,114,80,111,108,105,99,121,16,0,10,35,99,111,111,107,105,115,45,98,103,16,0,11,35,99,111,111,107,105,115,45,98,111,120,16,0,10,35,99,111,111,107,105,115,116,111,112,16,0,7,35,99,111,111,107,105,116,16,0,12,35,99,111,111,107,105,120,45,98,111,100,121,16,0,8,35,99,111,111,107,108,97,119,16,0,8,35,99,111,111,107,108,97,121,16,0,10,35,99,111,111,107,108,97,121,101,114,16,0,13,35,99,111,111,107,110,111,116,101,45,100,105,118,16,0,8,35,99,111,111,107,112,111,108,16,0,8,35,99,111,111,107,116,97,98,16,0,6,35,99,111,111,107,121,16,0,13,35,99,111,111,107,121,45,112,111,108,105,99,121,16,0,13,35,99,111,111,107,121,95,112,111,108,105,99,121,16,0,27,35,99,111,111,108,101,114,109,97,115,116,101,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,12,35,99,111,111,111,111,111,111,107,105,101,115,16,0,16,35,99,111,111,112,67,111,111,107,105,101,76,97,121,101,114,16,0,19,35,99,111,112,95,99,111,110,102,105,114,109,95,99,111,111,107,105,101,16,0,17,35,99,111,114,112,67,111,111,107,105,101,66,97,110,110,101,114,16,0,16,35,99,111,117,110,99,105,108,95,67,111,111,107,105,101,115,16,0,41,35,99,111,117,112,108,105,110,103,45,109,101,100,105,97,45,104,105,110,119,101,105,115,45,99,111,111,107,105,101,45,114,105,99,104,116,108,105,110,105,101,16,0,17,35,99,111,122,67,111,110,115,101,110,116,78,117,103,103,101,116,16,0,17,35,99,112,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,16,35,99,112,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,20,35,99,112,45,112,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,16,0,11,35,99,112,50,95,99,111,111,107,105,101,16,0,20,35,99,112,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,16,0,14,35,99,112,95,99,111,111,107,105,101,95,98,97,114,16,0,8,35,99,112,95,119,114,97,112,16,0,27,35,99,112,110,98,95,109,97,110,97,103,101,114,95,119,114,97,112,95,99,108,111,115,101,95,98,103,16,0,25,35,99,112,110,98,95,119,97,114,110,105,110,103,66,111,120,66,103,79,118,101,114,108,97,121,16,0,12,35,99,112,111,108,105,99,121,45,98,97,114,16,0,15,35,99,112,111,108,105,99,121,45,104,111,108,100,101,114,16,0,14,35,99,112,111,108,105,99,121,72,111,108,100,101,114,16,0,20,35,99,112,115,45,115,104,97,109,97,110,45,110,111,116,105,102,105,101,114,16,0,23,35,99,112,115,67,111,111,107,105,101,72,105,110,116,67,111,110,116,97,105,110,101,114,16,0,11,35,99,113,99,113,66,117,116,116,111,110,16,0,10,35,99,113,99,113,80,97,110,101,108,16,0,28,35,99,114,121,111,117,116,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,19,35,99,115,95,112,111,108,105,116,121,107,97,99,111,111,107,105,101,115,16,0,14,35,99,115,109,45,111,112,116,105,110,45,98,97,114,16,0,18,35,99,115,115,70,67,111,110,115,101,110,116,67,111,111,107,105,101,16,0,17,35,99,115,115,95,99,111,111,107,105,101,115,95,110,111,116,101,16,0,26,35,99,116,45,117,98,101,114,45,103,100,112,114,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,37,35,99,116,45,117,108,116,105,109,97,116,101,45,103,100,112,114,45,99,111,111,107,105,101,45,111,112,101,110,45,115,104,97,100,100,111,119,16,0,30,35,99,116,45,117,108,116,105,109,97,116,101,45,103,100,112,114,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,9,35,99,116,67,111,111,107,105,101,16,0,17,35,99,116,95,99,111,111,107,105,101,95,112,114,111,109,112,116,16,0,11,35,99,116,97,45,99,111,111,107,105,101,16,0,18,35,99,116,97,95,112,114,111,109,112,116,95,98,111,116,116,111,109,16,0,35,35,99,116,108,48,48,95,66,97,114,84,97,98,49,95,100,105,118,73,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,16,0,40,35,99,116,108,48,48,95,67,105,97,115,116,101,99,122,107,97,80,111,108,105,116,121,107,97,95,82,78,67,111,99,107,105,101,95,112,111,112,117,112,16,0,38,35,99,116,108,48,48,95,67,111,110,116,101,110,116,80,108,97,99,101,72,111,108,100,101,114,49,95,100,105,118,95,99,111,111,107,105,101,115,16,0,17,35,99,116,108,48,48,95,67,111,111,107,105,101,65,114,101,97,16,0,25,35,99,116,108,48,48,95,67,111,111,107,105,101,67,111,110,102,105,114,109,80,97,110,101,108,16,0,17,35,99,116,108,48,48,95,67,111,111,107,105,101,73,110,102,111,16,0,31,35,99,116,108,48,48,95,67,111,111,107,105,101,77,101,115,115,97,103,101,49,95,100,105,118,67,111,111,107,105,101,16,0,30,35,99,116,108,48,48,95,67,111,111,107,105,101,77,101,115,115,97,103,101,49,95,117,112,67,111,111,107,105,101,16,0,21,35,99,116,108,48,48,95,67,111,111,107,105,101,87,97,114,110,105,110,103,49,16,0,25,35,99,116,108,48,48,95,67,111,111,107,105,101,115,95,112,110,108,67,111,111,107,105,101,115,16,0,17,35,99,116,108,48,48,95,68,105,118,67,111,111,107,105,101,115,16,0,23,35,99,116,108,48,48,95,69,85,67,111,111,107,105,101,115,87,97,114,110,105,110,103,16,0,29,35,99,116,108,48,48,95,70,111,111,116,101,114,95,114,110,67,111,111,107,105,101,115,95,112,111,112,117,112,16,0,45,35,99,116,108,48,48,95,72,101,97,100,101,114,95,67,111,111,107,105,101,67,111,110,116,114,111,108,95,112,110,108,67,111,111,107,105,101,84,114,105,97,110,103,108,101,16,0,27,35,99,116,108,48,48,95,73,100,67,111,111,107,105,101,115,95,68,105,118,66,108,97,110,99,104,101,16,0,18,35,99,116,108,48,48,95,80,97,110,101,108,67,111,111,107,105,101,16,0,31,35,99,116,108,48,48,95,80,97,110,101,108,80,111,108,105,116,121,107,97,80,114,121,119,97,116,110,111,115,99,105,16,0,16,35,99,116,108,48,48,95,80,97,110,101,108,82,71,80,68,16,0,27,35,99,116,108,48,48,95,99,104,100,114,95,112,110,108,67,111,111,107,105,101,72,101,97,100,101,114,16,0,16,35,99,116,108,48,48,95,99,107,87,97,114,110,105,110,103,16,0,30,35,99,116,108,48,48,95,99,111,111,107,105,101,67,111,110,115,101,110,116,95,112,110,108,67,111,111,107,105,101,16,0,19,35,99,116,108,48,48,95,99,111,111,107,105,101,78,111,116,105,99,101,16,0,18,35,99,116,108,48,48,95,99,111,111,107,105,101,80,97,110,101,108,16,0,16,35,99,116,108,48,48,95,99,111,111,107,105,101,80,110,108,16,0,26,35,99,116,108,48,48,95,99,111,111,107,105,101,95,99,111,111,107,105,101,95,112,97,110,101,108,16,0,19,35,99,116,108,48,48,95,99,111,111,107,105,101,95,112,97,110,101,108,16,0,30,35,99,116,108,48,48,95,99,111,111,107,105,101,99,111,110,115,101,110,116,95,97,106,97,120,80,97,110,101,108,16,0,14,35,99,116,108,48,48,95,99,111,111,107,105,101,115,16,0,17,35,99,116,108,48,48,95,99,111,111,107,105,101,115,95,112,108,16,0,32,35,99,116,108,48,48,95,99,116,108,48,48,95,67,111,111,107,105,101,80,111,108,105,99,121,77,101,115,115,97,103,101,16,0,38,35,99,116,108,48,48,95,99,116,108,48,48,95,67,111,111,107,105,101,80,111,108,105,99,121,95,99,111,111,107,105,101,80,111,108,105,99,121,16,0,25,35,99,116,108,48,48,95,99,116,108,48,48,95,99,111,111,107,105,101,78,111,116,105,99,101,16,0,31,35,99,116,108,48,48,95,99,116,108,48,48,95,99,116,108,48,48,95,99,111,111,107,105,101,76,97,119,80,110,108,16,0,37,35,99,116,108,48,48,95,99,116,108,48,48,95,100,105,118,67,111,111,107,105,101,80,111,108,105,99,121,67,111,110,116,97,105,110,101,114,16,0,26,35,99,116,108,48,48,95,99,116,108,48,48,95,112,114,105,118,97,99,121,85,112,100,97,116,101,16,0,37,35,99,116,108,48,48,95,99,116,108,48,48,95,117,99,67,111,111,107,105,101,65,108,101,114,116,95,117,112,100,116,67,111,111,107,105,101,16,0,26,35,99,116,108,48,48,95,99,116,108,48,54,95,67,111,111,107,105,101,87,114,97,112,112,101,114,16,0,28,35,99,116,108,48,48,95,99,116,108,49,52,95,112,110,108,87,101,85,115,101,67,111,111,107,105,101,115,16,0,40,35,99,116,108,48,48,95,99,116,108,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,95,112,110,108,68,105,115,99,108,97,105,109,101,114,16,0,44,35,99,116,108,48,48,95,99,116,114,108,85,115,101,114,83,116,97,116,105,99,77,101,110,117,95,99,111,111,107,105,101,68,105,97,108,111,103,84,111,112,68,105,118,16,0,19,35,99,116,108,48,48,95,100,105,118,67,111,111,107,105,101,77,115,103,16,0,17,35,99,116,108,48,48,95,100,105,118,67,111,111,107,105,101,115,16,0,27,35,99,116,108,48,48,95,104,101,97,100,101,114,49,95,67,111,111,107,105,101,72,101,97,100,101,114,16,0,31,35,99,116,108,48,48,95,105,110,102,111,114,109,97,99,106,97,67,111,111,107,105,101,115,76,97,121,111,117,116,52,16,0,45,35,99,116,108,48,48,95,105,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,95,100,105,118,73,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,16,0,23,35,99,116,108,48,48,95,112,97,110,67,111,111,107,105,101,65,98,102,114,97,103,101,16,0,19,35,99,116,108,48,48,95,112,97,110,101,108,95,99,111,111,107,105,101,16,0,16,35,99,116,108,48,48,95,112,110,108,67,111,111,107,105,101,16,0,23,35,99,116,108,48,48,95,112,110,108,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,24,35,99,116,108,48,48,95,112,110,108,67,111,111,107,105,101,83,101,116,116,105,110,103,115,16,0,17,35,99,116,108,48,48,95,112,110,108,67,111,111,107,105,101,115,16,0,28,35,99,116,108,48,48,95,112,110,108,73,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,115,16,0,17,35,99,116,108,48,48,95,112,110,108,95,99,111,111,107,105,101,16,0,57,35,99,116,108,48,48,95,112,114,105,118,97,99,121,67,111,111,107,105,101,115,95,76,73,80,67,78,66,95,80,114,105,118,97,99,121,97,110,100,67,111,111,107,105,101,115,78,111,116,105,99,101,80,97,110,101,108,16,0,20,35,99,116,108,48,48,95,112,114,105,118,97,99,121,85,112,100,97,116,101,16,0,36,35,99,116,108,48,48,95,116,104,101,115,101,117,115,67,111,111,107,105,101,80,111,108,105,99,121,95,99,111,111,107,105,101,80,111,108,16,0,38,35,99,116,108,48,48,95,116,104,101,115,101,117,115,67,111,111,107,105,101,80,111,108,105,99,121,95,117,108,67,111,111,107,105,101,80,111,108,16,0,20,35,99,116,108,48,48,95,117,99,68,97,116,101,110,115,99,104,117,116,122,16,0,15,35,99,116,108,48,48,95,117,112,67,111,111,107,105,101,16,0,37,35,99,116,108,48,49,95,99,116,108,48,48,95,67,111,111,107,105,101,80,114,101,102,101,114,101,110,99,101,115,67,111,110,116,114,111,108,16,0,22,35,99,116,108,48,49,95,112,110,108,67,111,111,107,105,101,66,97,110,110,101,114,16,0,21,35,99,116,108,48,49,95,117,105,67,111,111,107,105,101,66,97,110,110,101,114,16,0,14,35,99,116,108,48,52,95,99,111,111,107,105,101,115,16,0,22,35,99,116,108,48,54,95,112,110,108,67,111,111,107,105,101,66,97,110,110,101,114,16,0,14,35,99,116,108,48,56,95,67,111,111,107,105,101,115,16,0,22,35,99,116,108,48,56,95,112,110,108,67,111,111,107,105,101,80,111,108,105,99,121,16,0,22,35,99,116,108,48,57,95,117,120,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,22,35,99,116,108,49,48,95,112,110,108,67,111,111,107,105,101,66,97,110,110,101,114,16,0,18,35,99,116,108,49,51,95,67,111,111,107,105,101,80,97,110,101,108,16,0,16,35,99,116,108,50,48,95,112,110,108,67,111,111,107,105,101,16,0,24,35,99,116,108,50,54,95,85,112,100,97,116,101,80,97,110,101,108,67,111,111,107,105,101,16,0,16,35,99,116,108,51,48,95,112,110,108,67,111,111,107,105,101,16,0,33,35,99,116,108,109,65,99,116,105,111,110,115,68,105,118,95,99,108,111,115,101,67,111,111,107,105,101,66,97,110,110,101,114,16,0,12,35,99,116,110,95,99,111,111,107,105,101,115,16,0,12,35,99,116,114,45,99,111,111,107,105,101,115,16,0,25,35,99,116,114,108,72,101,97,100,101,114,95,100,105,118,67,111,111,107,105,101,84,101,120,116,16,0,19,35,99,116,114,108,95,98,97,114,114,97,95,99,111,111,107,105,101,115,16,0,20,35,99,116,116,95,119,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,20,35,99,116,119,45,105,109,112,108,105,101,100,45,99,111,110,115,101,110,116,16,0,16,35,99,117,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,18,35,99,117,45,112,114,105,118,97,99,121,45,110,111,116,105,99,101,16,0,10,35,99,117,67,111,110,115,101,110,116,16,0,19,35,99,117,108,116,95,99,111,111,107,105,101,95,97,99,99,101,112,116,16,0,18,35,99,117,115,116,45,99,111,111,107,105,101,45,109,111,100,97,108,16,0,11,35,99,117,115,116,99,111,111,107,105,101,16,0,21,35,99,117,115,116,111,109,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,24,35,99,117,115,116,111,109,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,29,35,99,117,115,116,111,109,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,98,97,110,110,101,114,16,0,21,35,99,117,115,116,111,109,45,104,101,97,100,101,114,45,99,111,111,107,105,101,16,0,30,35,99,117,115,116,111,109,67,111,111,107,105,101,76,111,97,100,105,110,103,66,97,99,107,103,114,111,117,110,100,16,0,14,35,99,117,115,116,111,109,95,99,111,111,107,105,101,16,0,43,35,99,117,115,116,111,109,105,115,101,45,99,111,111,107,105,101,115,45,109,97,105,110,45,98,111,116,116,111,109,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,14,35,99,119,45,99,111,111,107,105,101,73,110,102,111,16,0,21,35,99,119,45,100,97,116,97,45,99,111,111,107,105,101,45,108,101,103,97,108,16,0,10,35,99,119,97,114,110,45,98,111,120,16,0,21,35,99,120,45,110,111,116,105,102,105,99,97,116,105,111,110,45,119,114,97,112,16,0,17,35,99,120,95,98,111,116,116,111,109,95,98,97,110,110,101,114,16,0,12,35,99,122,103,100,112,114,45,109,97,115,107,16,0,14,35,99,122,103,100,112,114,45,110,111,116,105,99,101,16,0,17,35,100,45,99,111,111,107,105,101,115,87,97,114,110,105,110,103,16,0,26,35,100,45,99,111,111,107,105,101,115,87,97,114,110,105,110,103,65,100,115,76,97,121,111,117,116,16,0,19,35,100,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,16,0,18,35,100,52,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,13,35,100,65,118,105,115,111,67,111,111,107,105,101,16,0,9,35,100,67,111,111,107,105,101,115,16,0,35,35,100,97,101,120,116,108,119,99,110,102,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,16,0,40,35,100,97,101,120,116,108,119,99,110,102,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,45,109,97,115,107,16,0,15,35,100,97,112,45,99,111,111,107,105,101,45,98,97,114,16,0,16,35,100,97,114,107,101,110,101,114,95,99,111,111,107,105,101,16,0,17,35,100,97,115,67,111,111,107,105,101,67,111,110,116,114,111,108,16,0,27,35,100,97,116,97,45,100,105,115,99,108,97,105,109,101,114,46,100,105,115,99,108,97,105,109,101,114,16,0,17,35,100,97,116,97,45,112,114,105,118,97,99,121,45,98,97,114,16,0,23,35,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,98,97,110,110,101,114,16,0,29,35,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,24,35,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,111,118,101,114,108,97,121,16,0,27,35,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,114,101,103,117,108,97,116,105,111,110,16,0,28,35,100,97,116,97,45,115,116,111,114,101,45,112,101,114,109,105,115,115,105,111,110,45,112,111,112,117,112,16,0,18,35,100,97,116,97,67,111,108,108,101,99,116,80,111,108,105,99,121,16,0,18,35,100,97,116,97,80,114,105,118,97,99,121,68,105,97,108,111,103,16,0,24,35,100,97,116,97,95,112,114,111,116,101,99,116,105,111,110,95,99,111,109,109,101,110,116,16,0,31,35,100,97,116,97,95,112,114,111,116,101,99,116,105,111,110,95,99,111,109,109,101,110,116,95,109,111,98,105,108,101,16,0,22,35,100,97,116,97,112,114,111,116,101,99,116,105,111,110,109,101,115,115,97,103,101,16,0,19,35,100,97,116,101,110,115,99,104,117,116,122,45,98,97,110,110,101,114,16,0,20,35,100,97,116,101,110,115,99,104,117,116,122,45,99,111,110,115,101,110,116,16,0,18,35,100,97,116,101,110,115,99,104,117,116,122,45,108,97,121,101,114,16,0,20,35,100,97,116,101,110,115,99,104,117,116,122,95,104,105,110,119,101,105,115,16,0,17,35,100,97,116,101,110,115,99,104,117,116,122,95,105,110,102,111,16,0,18,35,100,97,116,101,110,115,99,104,117,116,122,95,112,111,112,117,112,16,0,29,35,100,97,116,101,110,115,99,104,117,116,122,95,112,111,112,117,112,95,98,97,99,107,103,114,111,117,110,100,16,0,21,35,100,97,116,101,110,115,99,104,117,116,122,99,111,110,116,97,105,110,101,114,16,0,19,35,100,97,116,101,110,115,99,104,117,116,122,99,111,111,99,107,105,101,16,0,19,35,100,97,116,101,110,115,99,104,117,116,122,104,105,110,119,101,105,115,16,0,16,35,100,97,116,101,110,115,99,104,117,116,122,105,110,102,111,16,0,23,35,100,97,116,101,110,115,99,104,117,116,122,105,110,102,111,95,115,112,97,99,101,114,16,0,17,35,100,97,116,101,110,115,99,104,117,116,122,108,97,121,101,114,16,0,23,35,100,98,45,103,100,112,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,27,35,100,99,99,95,99,111,111,107,105,101,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,12,35,100,99,107,45,99,111,111,107,105,101,115,16,0,8,35,100,99,111,111,107,105,101,16,0,14,35,100,100,95,99,111,111,107,105,101,95,98,97,114,16,0,23,35,100,100,109,95,99,111,111,107,105,101,112,111,108,105,99,121,98,97,110,110,101,114,16,0,6,35,100,100,110,101,117,16,0,26,35,100,101,97,108,101,114,115,69,80,114,105,118,97,99,121,68,105,115,99,108,97,105,109,101,114,16,0,29,35,100,101,98,117,103,103,101,100,45,99,111,111,107,105,101,98,97,114,45,99,111,110,116,97,105,110,101,114,16,0,16,35,100,101,99,108,97,114,101,45,99,111,111,107,105,101,115,16,0,11,35,100,101,108,116,97,45,103,100,112,114,16,0,14,35,100,101,108,117,120,101,99,111,111,107,105,101,115,16,0,21,35,100,101,110,110,105,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,28,35,100,101,110,110,105,115,45,99,111,111,107,105,101,110,111,116,101,45,99,111,110,116,97,105,110,101,114,16,0,17,35,100,101,115,101,116,45,99,111,111,107,105,101,45,98,97,114,16,0,22,35,100,101,115,107,116,111,112,45,98,97,110,110,101,114,45,115,116,114,105,112,101,16,0,26,35,100,101,115,107,116,111,112,45,99,111,111,107,105,101,45,100,105,115,99,108,111,115,117,114,101,16,0,17,35,100,101,115,107,116,111,112,67,111,111,107,105,101,77,115,103,16,0,15,35,100,101,118,105,99,111,111,107,105,101,105,110,102,111,16,0,29,35,100,102,99,45,99,111,111,107,105,101,45,99,111,110,99,101,114,110,45,99,111,110,116,97,105,110,101,114,16,0,18,35,100,103,99,111,111,107,105,101,115,65,108,101,114,116,66,105,103,16,0,14,35,100,103,100,115,103,118,111,99,111,111,107,105,101,16,0,12,35,100,103,112,95,99,111,111,107,105,101,115,16,0,17,35,100,103,112,114,99,111,111,107,105,101,98,97,110,110,101,114,16,0,18,35,100,105,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,14,35,100,105,97,108,111,103,45,99,111,111,107,105,101,16,0,15,35,100,105,97,108,111,103,45,99,111,111,107,105,101,115,16,0,16,35,100,105,97,108,111,103,45,101,117,67,111,111,107,105,101,16,0,23,35,100,105,97,108,111,103,45,109,111,100,97,108,45,99,111,111,107,105,101,97,100,118,16,0,25,35,100,105,97,108,111,103,65,99,99,101,112,116,67,111,111,107,105,101,80,111,108,105,99,121,16,0,21,35,100,105,97,108,111,103,67,111,110,102,105,114,109,67,111,111,107,105,101,115,16,0,15,35,100,105,97,108,111,103,95,99,111,111,107,105,101,115,16,0,27,35,100,105,97,108,111,103,95,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,111,107,105,101,16,0,15,35,100,105,97,108,111,103,111,67,111,111,107,105,101,115,16,0,14,35,100,105,100,111,109,105,45,110,111,116,105,99,101,16,0,22,35,100,105,102,102,117,115,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,25,35,100,105,103,105,112,117,98,108,105,99,97,45,99,111,111,107,105,101,45,115,104,97,100,101,16,0,23,35,100,105,103,105,115,99,104,111,111,108,95,99,111,111,107,105,101,95,112,117,115,104,16,0,13,35,100,105,103,111,95,99,111,111,107,105,101,115,16,0,18,35,100,105,110,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,19,35,100,105,110,97,109,111,80,114,105,118,97,99,121,80,111,112,117,112,16,0,20,35,100,105,115,45,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,16,0,19,35,100,105,115,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,13,35,100,105,115,99,108,95,99,111,111,107,105,101,16,0,13,35,100,105,115,99,108,97,105,109,95,98,97,114,16,0,15,35,100,105,115,99,108,97,105,109,101,114,45,98,111,120,16,0,18,35,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,16,0,19,35,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,115,16,0,22,35,100,105,115,99,108,97,105,109,101,114,45,99,111,111,107,105,101,115,95,98,103,16,0,14,35,100,105,115,99,108,97,105,109,101,114,66,111,120,16,0,12,35,100,105,115,99,108,97,105,109,101,114,67,16,0,17,35,100,105,115,99,108,97,105,109,101,114,67,111,111,107,105,101,16,0,18,35,100,105,115,99,108,97,105,109,101,114,67,111,111,107,105,101,115,16,0,23,35,100,105,115,99,108,97,105,109,101,114,68,105,97,108,111,103,95,109,111,100,97,108,16,0,15,35,100,105,115,99,108,97,105,109,101,114,71,68,80,82,16,0,18,35,100,105,115,99,108,97,105,109,101,114,95,99,111,111,107,105,101,16,0,19,35,100,105,115,99,108,97,105,109,101,114,95,99,111,111,107,105,101,115,16,0,23,35,100,105,115,109,105,115,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,26,35,100,105,115,109,105,115,115,97,98,108,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,28,35,100,105,115,110,101,121,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,17,35,100,105,115,111,102,108,101,120,45,99,111,111,107,105,101,115,16,0,9,35,100,105,115,112,67,80,65,65,16,0,23,35,100,105,115,112,108,97,121,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,31,35,100,105,115,112,108,97,121,67,111,111,107,105,101,85,115,97,103,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,100,105,115,112,108,97,121,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,19,35,100,105,118,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,11,35,100,105,118,45,99,111,111,107,105,101,16,0,19,35,100,105,118,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,16,35,100,105,118,45,99,111,111,107,105,101,45,105,110,102,111,16,0,21,35,100,105,118,45,99,111,111,107,105,101,45,107,111,109,117,110,105,107,97,116,16,0,19,35,100,105,118,45,99,111,111,107,105,101,45,109,111,110,115,116,101,114,16,0,12,35,100,105,118,45,99,111,111,107,105,101,115,16,0,17,35,100,105,118,45,105,110,102,111,45,99,111,111,107,105,101,115,16,0,15,35,100,105,118,45,116,111,45,99,111,111,107,105,101,115,16,0,15,35,100,105,118,45,117,115,101,45,99,111,111,107,105,101,16,0,16,35,100,105,118,65,99,99,101,112,116,67,111,111,107,105,101,16,0,17,35,100,105,118,65,99,101,112,116,97,67,111,111,107,105,101,115,16,0,15,35,100,105,118,65,118,105,115,67,111,111,107,105,101,115,16,0,16,35,100,105,118,65,118,105,115,111,67,111,111,107,105,101,115,16,0,11,35,100,105,118,67,80,77,111,100,97,108,16,0,15,35,100,105,118,67,104,101,99,107,67,111,111,107,105,101,16,0,12,35,100,105,118,67,111,111,107,73,110,102,111,16,0,10,35,100,105,118,67,111,111,107,105,101,16,0,20,35,100,105,118,67,111,111,107,105,101,65,99,99,101,112,116,97,110,99,101,16,0,19,35,100,105,118,67,111,111,107,105,101,65,103,114,101,101,109,101,110,116,16,0,15,35,100,105,118,67,111,111,107,105,101,65,108,101,114,116,16,0,16,35,100,105,118,67,111,111,107,105,101,66,97,110,110,101,114,16,0,20,35,100,105,118,67,111,111,107,105,101,67,104,111,105,99,101,73,110,102,111,16,0,20,35,100,105,118,67,111,111,107,105,101,67,111,109,112,108,105,97,110,99,101,16,0,17,35,100,105,118,67,111,111,107,105,101,67,111,110,102,105,114,109,16,0,17,35,100,105,118,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,22,35,100,105,118,67,111,111,107,105,101,67,111,110,115,101,110,116,73,110,110,101,114,16,0,33,35,100,105,118,67,111,111,107,105,101,67,111,110,115,101,110,116,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,19,35,100,105,118,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,12,35,100,105,118,67,111,111,107,105,101,69,85,16,0,15,35,100,105,118,67,111,111,107,105,101,69,103,97,116,101,16,0,14,35,100,105,118,67,111,111,107,105,101,73,110,102,111,16,0,16,35,100,105,118,67,111,111,107,105,101,73,110,102,111,114,109,16,0,13,35,100,105,118,67,111,111,107,105,101,76,97,119,16,0,15,35,100,105,118,67,111,111,107,105,101,76,101,97,114,110,16,0,13,35,100,105,118,67,111,111,107,105,101,77,115,103,16,0,22,35,100,105,118,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,16,35,100,105,118,67,111,111,107,105,101,78,111,116,105,102,121,16,0,16,35,100,105,118,67,111,111,107,105,101,80,111,108,105,99,121,16,0,29,35,100,105,118,67,111,111,107,105,101,80,111,108,105,116,105,99,97,80,114,105,118,97,99,105,100,97,100,101,16,0,21,35,100,105,118,67,111,111,107,105,101,83,116,105,99,107,121,76,97,121,101,114,16,0,29,35,100,105,118,67,111,111,107,105,101,83,116,105,99,107,121,76,97,121,101,114,66,97,99,107,100,114,111,112,16,0,18,35,100,105,118,67,111,111,107,105,101,85,115,101,100,78,111,116,101,16,0,15,35,100,105,118,67,111,111,107,105,101,85,121,97,114,105,16,0,17,35,100,105,118,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,11,35,100,105,118,67,111,111,107,105,101,115,16,0,16,35,100,105,118,67,111,111,107,105,101,115,65,108,101,114,116,16,0,14,35,100,105,118,67,111,111,107,105,101,115,66,111,120,16,0,15,35,100,105,118,67,111,111,107,105,101,115,67,78,73,76,16,0,23,35,100,105,118,67,111,111,107,105,101,115,67,111,110,102,105,114,109,97,116,105,111,110,16,0,18,35,100,105,118,67,111,111,107,105,101,115,67,111,110,115,101,110,116,16,0,12,35,100,105,118,67,111,111,107,105,101,115,70,16,0,16,35,100,105,118,67,111,111,107,105,101,115,70,105,120,101,100,16,0,18,35,100,105,118,67,111,111,107,105,101,115,77,101,115,115,97,103,101,16,0,14,35,100,105,118,67,111,111,107,105,101,115,77,115,103,16,0,17,35,100,105,118,67,111,111,107,105,101,115,80,111,108,105,99,121,16,0,22,35,100,105,118,67,111,111,107,105,101,115,95,112,110,108,67,111,111,107,105,101,115,16,0,14,35,100,105,118,68,105,115,99,108,97,105,109,101,114,16,0,24,35,100,105,118,70,114,109,85,115,101,114,67,111,111,107,105,101,67,111,110,102,105,114,109,16,0,14,35,100,105,118,73,110,102,111,67,111,111,107,105,101,16,0,15,35,100,105,118,73,110,102,111,67,111,111,107,105,101,115,16,0,22,35,100,105,118,73,110,102,111,114,109,97,99,105,111,110,67,111,111,107,105,101,115,16,0,21,35,100,105,118,73,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,16,0,22,35,100,105,118,73,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,115,16,0,21,35,100,105,118,77,97,105,110,67,111,111,107,105,101,115,80,111,108,105,99,121,16,0,17,35,100,105,118,77,101,110,115,97,106,101,67,111,111,107,105,101,16,0,16,35,100,105,118,77,101,114,97,99,67,111,111,107,105,101,115,16,0,13,35,100,105,118,77,115,103,67,111,111,107,105,101,16,0,10,35,100,105,118,80,105,115,107,111,116,16,0,12,35,100,105,118,80,105,115,107,111,116,107,105,16,0,14,35,100,105,118,80,111,108,67,111,111,107,105,101,115,16,0,20,35,100,105,118,80,111,108,105,99,121,65,99,99,101,112,116,97,110,99,101,16,0,13,35,100,105,118,80,111,108,105,99,121,66,97,114,16,0,11,35,100,105,118,80,114,105,118,97,99,121,16,0,23,35,100,105,118,80,114,111,116,101,99,116,105,111,110,86,105,101,80,114,105,118,101,101,16,0,26,35,100,105,118,86,97,108,105,100,97,116,105,111,110,67,111,111,107,105,101,67,104,97,114,116,101,16,0,21,35,100,105,118,95,67,79,79,75,73,69,82,73,67,72,84,76,73,78,73,69,16,0,14,35,100,105,118,95,67,111,111,107,105,101,76,97,119,16,0,21,35,100,105,118,95,67,111,111,107,105,101,76,97,119,95,112,97,114,101,110,116,16,0,17,35,100,105,118,95,67,111,111,107,105,101,80,111,108,105,99,121,16,0,18,35,100,105,118,95,95,95,95,95,101,95,112,114,105,118,97,99,121,16,0,19,35,100,105,118,95,97,99,99,101,112,116,95,99,111,111,107,105,101,115,16,0,15,35,100,105,118,95,97,107,99,101,112,116,97,99,106,97,16,0,18,35,100,105,118,95,97,108,101,114,116,95,99,111,111,107,105,101,115,16,0,21,35,100,105,118,95,98,97,114,95,99,111,111,107,105,101,115,95,105,110,102,111,16,0,17,35,100,105,118,95,99,105,97,115,116,107,97,95,105,110,102,111,16,0,16,35,100,105,118,95,99,110,105,108,95,99,111,111,107,105,101,16,0,13,35,100,105,118,95,99,111,111,99,107,105,101,115,16,0,9,35,100,105,118,95,99,111,111,107,16,0,11,35,100,105,118,95,99,111,111,107,105,101,16,0,15,35,100,105,118,95,99,111,111,107,105,101,73,110,102,111,16,0,15,35,100,105,118,95,99,111,111,107,105,101,95,105,110,100,16,0,15,35,100,105,118,95,99,111,111,107,105,101,95,109,115,103,16,0,17,35,100,105,118,95,99,111,111,107,105,101,110,111,116,105,99,101,16,0,12,35,100,105,118,95,99,111,111,107,105,101,115,16,0,19,35,100,105,118,95,99,111,111,107,105,101,115,95,97,99,99,101,112,116,16,0,18,35,100,105,118,95,99,111,111,107,105,101,115,95,97,108,108,111,119,16,0,18,35,100,105,118,95,99,111,111,107,105,101,115,95,110,117,101,118,97,16,0,20,35,100,105,118,95,99,111,111,107,105,101,115,95,119,97,114,110,105,110,103,16,0,31,35,100,105,118,95,99,111,111,107,105,101,115,112,111,108,105,99,121,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,11,35,100,105,118,95,99,111,111,107,105,115,16,0,16,35,100,105,118,95,103,100,112,114,95,102,111,111,116,101,114,16,0,16,35,100,105,118,95,105,110,102,111,95,99,111,111,107,105,101,16,0,17,35,100,105,118,95,105,110,102,111,95,99,111,111,107,105,101,115,16,0,20,35,100,105,118,95,109,101,115,115,97,103,101,95,99,111,111,107,105,101,115,16,0,20,35,100,105,118,95,112,111,108,105,116,105,99,97,95,99,111,111,107,105,101,16,0,21,35,100,105,118,95,112,111,108,105,116,105,113,117,101,95,99,111,111,107,105,101,16,0,22,35,100,105,118,95,112,111,108,105,116,105,113,117,101,95,99,111,111,107,105,101,115,16,0,15,35,100,105,118,95,112,111,112,95,99,111,111,107,105,101,16,0,19,35,100,105,118,95,115,105,116,101,99,111,111,107,105,101,95,97,115,107,16,0,15,35,100,105,118,95,117,115,101,95,99,111,111,107,105,101,16,0,16,35,100,105,118,95,117,115,101,95,99,111,111,107,105,101,115,16,0,20,35,100,105,118,99,99,110,99,111,111,107,105,101,112,114,105,118,97,99,121,16,0,11,35,100,105,118,99,111,110,115,101,110,116,16,0,8,35,100,105,118,99,111,111,107,16,0,10,35,100,105,118,99,111,111,107,105,101,16,0,17,35,100,105,118,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,17,35,100,105,118,99,111,111,107,105,101,104,105,110,119,101,105,115,16,0,12,35,100,105,118,99,111,111,107,105,101,111,107,16,0,11,35,100,105,118,99,111,111,107,105,101,115,16,0,23,35,100,105,118,105,45,108,105,102,101,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,19,35,100,105,118,109,101,110,115,97,103,101,109,99,111,111,107,105,101,49,16,0,18,35,100,105,118,112,114,105,118,97,99,121,99,111,111,107,105,101,115,16,0,8,35,100,107,95,103,100,112,114,16,0,10,35,100,107,109,99,111,111,107,105,101,16,0,10,35,100,108,95,99,111,111,107,105,101,16,0,16,35,100,108,95,99,111,111,107,105,101,66,97,110,110,101,114,16,0,17,35,100,108,95,99,111,111,107,105,101,95,102,111,111,116,101,114,16,0,11,35,100,108,103,67,111,111,107,105,101,115,16,0,17,35,100,108,103,95,99,111,111,107,105,101,95,102,114,97,109,101,16,0,22,35,100,108,105,99,111,111,107,105,101,117,115,97,103,101,119,97,114,110,105,110,103,16,0,26,35,100,109,45,99,111,111,107,105,101,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,16,0,16,35,100,109,95,99,111,111,107,105,101,108,97,95,98,97,114,16,0,16,35,100,109,95,115,104,111,119,95,99,111,111,107,105,101,115,16,0,16,35,100,109,112,99,111,111,107,105,101,110,111,116,105,99,101,16,0,15,35,100,109,115,67,111,111,107,105,101,80,111,112,117,112,16,0,16,35,100,109,120,80,111,112,117,112,67,111,111,107,105,101,115,16,0,24,35,100,110,95,99,111,111,107,105,101,95,110,111,116,105,99,101,95,98,97,110,110,101,114,16,0,17,35,100,110,105,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,18,35,100,110,105,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,14,35,100,110,110,95,112,108,67,111,111,107,105,101,115,16,0,25,35,100,111,45,99,111,111,107,105,101,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,16,0,14,35,100,111,67,111,111,107,105,101,65,108,101,114,116,16,0,18,35,100,111,99,45,98,97,110,110,101,114,45,99,111,111,107,105,101,16,0,15,35,100,111,99,111,111,107,105,101,99,111,111,107,105,101,16,0,19,35,100,111,99,117,109,101,110,116,67,111,111,107,105,101,73,110,102,111,16,0,22,35,100,111,103,45,115,112,45,112,114,105,118,97,99,121,45,98,117,116,116,111,110,16,0,16,35,100,111,103,109,97,99,111,111,107,105,101,104,105,110,116,16,0,37,35,100,111,109,67,111,111,107,105,101,87,97,114,110,105,110,103,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,16,0,10,35,100,111,110,117,116,45,108,97,119,16,0,17,35,100,111,116,98,97,110,100,101,97,117,99,111,111,107,105,101,16,0,20,35,100,112,45,99,99,45,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,17,35,100,112,87,97,114,110,105,110,103,87,114,97,112,112,101,114,16,0,13,35,100,112,99,99,45,119,114,97,112,112,101,114,16,0,19,35,100,114,45,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,16,0,16,35,100,114,95,98,108,111,99,107,105,110,103,95,100,105,118,16,0,12,35,100,114,100,115,103,118,111,95,100,105,118,16,0,12,35,100,114,111,112,45,99,111,111,107,105,101,16,0,17,35,100,115,45,115,116,45,99,111,111,107,105,101,115,98,97,114,16,0,13,35,100,115,95,99,111,111,107,105,101,98,97,114,16,0,13,35,100,115,103,118,111,45,45,112,111,112,117,112,16,0,13,35,100,115,103,118,111,45,98,97,110,110,101,114,16,0,13,35,100,115,103,118,111,45,98,111,116,116,111,109,16,0,20,35,100,115,103,118,111,45,99,111,110,115,101,110,116,45,108,97,121,101,114,16,0,16,35,100,115,103,118,111,45,99,111,110,116,97,105,110,101,114,16,0,13,35,100,115,103,118,111,45,99,111,111,107,105,101,16,0,26,35,100,115,103,118,111,45,99,111,111,107,105,101,45,99,111,110,102,105,103,117,114,97,116,111,114,16,0,23,35,100,115,103,118,111,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,23,35,100,115,103,118,111,45,99,111,111,107,105,101,45,100,110,116,45,108,97,121,101,114,16,0,19,35,100,115,103,118,111,45,99,111,111,107,105,101,45,108,97,121,101,114,16,0,12,35,100,115,103,118,111,45,109,111,100,97,108,16,0,20,35,100,115,103,118,111,45,109,111,100,97,108,45,119,114,97,112,112,101,114,16,0,13,35,100,115,103,118,111,45,111,112,116,45,105,110,16,0,12,35,100,115,103,118,111,45,112,97,110,101,108,16,0,9,35,100,115,103,118,111,66,111,120,16,0,18,35,100,115,103,118,111,67,111,111,107,105,101,66,97,110,110,101,114,16,0,12,35,100,115,103,118,111,70,111,111,116,101,114,16,0,13,35,100,115,103,118,111,95,98,97,110,110,101,114,16,0,10,35,100,115,103,118,111,95,98,111,120,16,0,13,35,100,115,103,118,111,95,99,111,111,107,105,101,16,0,18,35,100,115,103,118,111,95,99,111,111,107,105,101,95,104,105,110,116,16,0,18,35,100,115,103,118,111,95,99,111,111,107,105,101,95,110,111,116,101,16,0,11,35,100,115,103,118,111,95,105,110,102,111,16,0,9,35,100,115,103,118,111,95,118,50,16,0,14,35,100,115,103,118,111,95,119,114,97,112,112,101,114,16,0,10,35,100,115,112,99,111,111,107,105,101,16,0,12,35,100,115,118,103,111,65,99,99,101,112,116,16,0,13,35,100,115,118,103,111,79,118,101,114,108,97,121,16,0,13,35,100,115,118,103,111,95,99,111,111,107,105,101,16,0,22,35,100,116,95,50,48,49,56,95,116,111,115,95,112,112,95,117,112,100,97,116,101,16,0,11,35,100,116,120,45,99,111,111,107,105,101,16,0,34,35,100,116,121,114,100,45,104,105,103,104,108,105,103,104,116,45,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,16,0,11,35,100,117,112,67,111,111,107,105,101,115,16,0,17,35,100,118,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,31,35,100,118,45,116,51,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,45,109,111,100,97,108,16,0,15,35,100,118,65,99,99,101,112,116,67,111,111,107,105,101,16,0,16,35,100,118,65,99,99,101,112,116,67,111,111,107,105,101,115,16,0,15,35,100,118,67,101,114,101,122,66,105,108,103,105,115,105,16,0,9,35,100,118,67,111,111,107,105,101,16,0,15,35,100,118,67,111,111,107,105,101,66,97,110,110,101,114,16,0,12,35,100,118,67,111,111,107,105,101,66,97,114,16,0,12,35,100,118,67,111,111,107,105,101,67,104,107,16,0,19,35,100,118,67,111,111,107,105,101,67,104,111,105,99,101,73,110,102,111,16,0,13,35,100,118,67,111,111,107,105,101,73,110,102,111,16,0,16,35,100,118,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,14,35,100,118,67,111,111,107,105,101,80,111,112,117,112,16,0,10,35,100,118,67,111,111,107,105,101,115,16,0,10,35,100,118,80,114,105,118,97,99,121,16,0,13,35,100,118,82,71,80,68,99,111,111,107,105,101,16,0,14,35,100,118,83,105,116,101,67,111,111,107,105,101,115,16,0,17,35,100,118,95,99,111,111,107,105,101,115,95,97,108,101,114,116,16,0,21,35,100,118,116,95,99,111,111,107,105,101,99,104,111,105,99,101,105,110,102,111,16,0,8,35,100,120,45,99,111,107,105,16,0,25,35,100,120,67,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,16,0,19,35,100,120,109,95,99,107,83,99,114,95,105,110,106,101,99,116,101,100,16,0,24,35,100,121,45,99,111,111,107,105,101,73,110,102,111,45,99,111,110,116,97,105,110,101,114,16,0,17,35,100,121,95,99,111,111,107,105,101,98,97,114,95,48,48,49,16,0,20,35,100,121,110,97,109,105,99,45,99,111,111,107,105,101,115,45,98,97,114,16,0,28,35,100,121,110,97,109,105,99,45,99,111,111,107,105,101,115,45,98,97,114,45,111,118,101,114,108,97,121,16,0,5,35,100,121,119,99,16,0,13,35,100,121,119,99,95,98,103,108,97,121,101,114,16,0,18,35,101,45,112,114,105,118,97,99,121,45,109,101,115,115,97,103,101,16,0,18,35,101,50,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,9,35,101,51,99,111,111,107,105,101,16,0,26,35,101,51,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,21,35,101,67,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,16,0,11,35,101,67,111,111,107,105,101,77,115,103,16,0,15,35,101,75,80,67,95,67,111,110,116,97,105,110,101,114,16,0,9,35,101,80,114,105,118,97,99,121,16,0,15,35,101,80,114,105,118,97,99,121,66,97,110,110,101,114,16,0,19,35,101,80,114,105,118,97,99,121,68,105,115,99,108,97,105,109,101,114,16,0,12,35,101,83,116,111,114,101,95,103,100,112,114,16,0,16,35,101,95,99,111,111,107,105,101,87,97,114,110,105,110,103,16,0,19,35,101,97,99,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,13,35,101,97,102,119,45,99,111,111,107,105,101,115,16,0,29,35,101,97,103,101,114,108,121,45,116,111,111,108,115,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,33,35,101,97,115,121,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,109,97,105,110,45,119,114,97,112,112,101,114,16,0,11,35,101,97,115,121,67,111,111,107,105,101,16,0,15,35,101,97,115,121,99,111,111,107,105,101,105,110,102,111,16,0,18,35,101,97,119,101,95,99,111,111,107,105,101,115,95,105,110,102,111,16,0,23,35,101,98,115,110,105,110,106,97,98,97,114,45,99,111,111,107,105,101,45,98,97,114,16,0,31,35,101,98,117,116,111,111,45,101,97,115,121,45,100,115,103,118,111,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,29,35,101,99,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,115,45,99,111,110,116,97,105,110,101,114,16,0,38,35,101,99,45,112,111,112,117,112,45,109,111,100,97,108,91,115,116,121,108,101,61,34,100,105,115,112,108,97,121,58,98,108,111,99,107,34,93,16,0,18,35,101,99,100,95,111,112,116,95,105,110,95,98,97,110,110,101,114,16,0,11,35,101,99,108,45,110,111,116,105,99,101,16,0,17,35,101,99,108,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,17,35,101,99,108,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,10,35,101,99,108,99,111,111,107,105,101,16,0,15,35,101,99,111,109,97,115,45,115,99,99,104,45,101,120,16,0,18,35,101,99,111,109,97,115,45,115,99,99,104,45,101,120,45,98,103,16,0,18,35,101,99,111,110,100,97,45,112,112,50,45,98,97,110,110,101,114,16,0,8,35,101,99,111,111,107,105,101,16,0,15,35,101,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,14,35,101,99,114,97,110,45,99,111,111,107,105,101,115,16,0,17,35,101,99,114,97,110,67,111,111,107,105,101,65,108,101,114,116,16,0,19,35,101,100,45,103,100,112,114,45,99,111,111,107,105,101,45,98,97,114,16,0,23,35,101,100,99,67,111,111,107,105,101,115,80,111,108,105,99,121,66,97,110,110,101,114,16,0,19,35,101,100,112,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,30,35,101,100,112,95,67,111,111,107,105,101,115,95,68,105,115,99,108,97,105,109,101,114,95,66,97,110,110,101,114,16,0,14,35,101,100,117,110,101,116,67,111,111,107,105,101,115,16,0,19,35,101,101,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,16,0,23,35,101,101,97,45,99,111,110,102,105,114,109,97,116,105,111,110,45,111,117,116,101,114,16,0,18,35,101,101,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,101,102,120,45,98,97,110,110,101,114,45,112,114,111,109,112,116,16,0,15,35,101,103,103,45,99,111,111,107,105,101,45,98,97,114,16,0,20,35,101,103,109,111,110,116,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,17,35,101,103,115,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,17,35,101,104,109,115,45,99,111,111,107,105,101,45,105,110,102,111,16,0,10,35,101,105,95,99,111,111,107,105,101,16,0,19,35,101,105,107,121,111,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,31,35,101,105,109,109,95,98,111,120,95,99,111,111,107,105,101,95,97,108,101,114,116,101,95,109,101,115,115,97,103,101,16,0,22,35,101,105,114,99,111,109,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,11,35,101,107,45,99,111,111,107,105,101,115,16,0,16,35,101,107,115,67,111,111,107,105,101,80,114,111,109,112,116,16,0,18,35,101,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,13,35,101,108,71,117,101,115,116,84,101,114,109,115,16,0,19,35,101,108,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,29,35,101,108,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,16,0,22,35,101,108,101,109,101,110,116,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,18,35,101,108,113,79,112,116,73,110,66,97,110,110,101,114,68,105,118,16,0,16,35,101,108,117,109,98,117,115,45,99,111,111,107,105,101,115,16,0,20,35,101,108,117,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,19,35,101,109,99,50,112,100,99,45,100,105,115,99,108,97,105,109,101,114,16,0,22,35,101,109,99,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,12,35,101,109,101,97,45,99,111,111,107,105,101,16,0,16,35,101,109,101,97,45,99,111,111,107,105,101,45,109,115,103,16,0,17,35,101,109,101,114,103,101,110,116,101,67,111,111,107,105,101,115,16,0,19,35,101,109,101,114,115,101,45,99,111,110,115,101,110,116,45,112,111,112,16,0,15,35,101,109,103,95,99,111,111,107,105,101,119,97,108,108,16,0,21,35,101,109,110,112,114,105,118,97,99,121,115,101,114,118,105,99,101,95,117,105,16,0,23,35,101,109,111,98,105,108,101,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,20,35,101,109,112,111,114,105,45,99,111,111,107,105,101,45,109,111,100,97,108,16,0,18,35,101,110,97,98,108,101,45,99,111,111,107,105,101,45,98,97,114,16,0,18,35,101,110,97,98,108,101,67,111,111,107,105,101,45,99,111,110,116,16,0,14,35,101,110,97,98,108,101,99,111,111,107,105,101,115,16,0,17,35,101,110,101,100,117,101,95,99,111,111,107,105,101,66,111,120,16,0,23,35,101,110,104,97,110,99,101,100,45,112,114,105,118,97,99,121,45,112,111,112,117,112,16,0,12,35,101,110,115,66,97,110,110,101,114,66,71,16,0,17,35,101,110,115,67,111,110,115,101,110,116,87,105,100,103,101,116,16,0,44,35,101,110,115,77,111,100,97,108,87,114,97,112,112,101,114,91,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,42,61,34,67,111,110,115,101,110,116,34,93,16,0,22,35,101,110,115,77,111,100,97,108,87,114,97,112,112,101,114,91,114,111,108,101,93,16,0,16,35,101,110,115,78,111,116,105,102,121,66,97,110,110,101,114,16,0,24,35,101,110,115,95,112,114,95,109,105,110,105,46,101,110,115,95,112,114,95,109,105,110,105,16,0,22,35,101,110,116,114,121,67,111,111,107,105,101,58,110,111,116,40,98,111,100,121,41,16,0,9,35,101,111,99,111,111,107,105,101,16,0,24,35,101,112,45,99,111,111,107,105,101,115,80,111,112,117,112,95,119,114,97,112,112,101,114,16,0,16,35,101,112,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,19,35,101,112,95,99,111,111,107,105,101,115,95,111,118,101,114,108,97,121,16,0,15,35,101,112,100,80,108,97,99,101,104,111,108,100,101,114,16,0,29,35,101,112,112,99,99,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,16,0,9,35,101,112,114,105,118,97,99,121,16,0,15,35,101,112,114,105,118,97,99,121,45,111,117,116,101,114,16,0,16,35,101,112,115,95,99,111,111,107,105,101,95,105,110,102,111,16,0,17,35,101,114,119,45,112,114,105,118,97,99,121,45,105,110,102,111,16,0,11,35,101,115,45,99,111,110,115,101,110,116,16,0,22,35,101,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,97,112,112,16,0,19,35,101,115,95,99,111,111,107,105,101,95,115,111,108,117,116,105,111,110,16,0,13,35,101,115,99,111,111,107,105,101,45,98,111,120,16,0,19,35,101,115,105,65,99,99,101,112,116,67,111,111,107,105,101,66,97,114,16,0,18,35,101,115,105,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,19,35,101,115,105,116,101,115,45,99,111,111,107,105,101,45,105,110,102,111,16,0,16,35,101,115,108,95,99,111,111,107,105,101,95,105,110,102,111,16,0,22,35,101,115,110,115,95,98,97,99,107,103,114,111,117,110,100,95,108,97,121,101,114,16,0,19,35,101,115,118,45,104,101,97,100,101,114,45,99,111,111,107,105,101,115,16,0,14,35,101,116,45,103,100,112,114,45,112,111,112,117,112,16,0,14,35,101,116,95,99,111,111,107,105,101,95,108,97,119,16,0,17,35,101,116,100,95,99,111,111,107,105,101,95,97,108,101,114,116,16,0,19,35,101,116,116,99,108,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,10,35,101,117,45,98,97,110,110,101,114,16,0,12,35,101,117,45,98,105,115,99,117,105,116,115,16,0,10,35,101,117,45,99,111,111,107,105,101,16,0,17,35,101,117,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,14,35,101,117,45,99,111,111,107,105,101,45,98,97,114,16,0,27,35,101,117,45,99,111,111,107,105,101,45,98,97,114,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,21,35,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,16,0,27,35,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,109,111,100,97,108,16,0,20,35,101,117,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,101,117,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,16,0,20,35,101,117,45,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,16,0,20,35,101,117,45,99,111,111,107,105,101,45,103,117,105,100,101,108,105,110,101,16,0,18,35,101,117,45,99,111,111,107,105,101,45,105,114,114,115,105,110,110,16,0,14,35,101,117,45,99,111,111,107,105,101,45,108,97,119,16,0,20,35,101,117,45,99,111,111,107,105,101,45,108,97,119,45,112,111,112,117,112,16,0,18,35,101,117,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,17,35,101,117,45,99,111,111,107,105,101,45,109,111,98,105,108,101,16,0,14,35,101,117,45,99,111,111,107,105,101,45,109,115,103,16,0,17,35,101,117,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,19,35,101,117,45,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,16,0,17,35,101,117,45,99,111,111,107,105,101,45,110,111,116,105,102,121,16,0,22,35,101,117,45,99,111,111,107,105,101,45,110,111,116,105,102,121,45,119,114,97,112,16,0,17,35,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,32,35,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,23,35,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,111,112,16,0,23,35,101,117,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,117,112,16,0,24,35,101,117,45,99,111,111,107,105,101,45,115,108,105,100,105,110,103,45,112,111,112,117,112,16,0,32,35,101,117,45,99,111,111,107,105,101,45,115,108,105,100,105,110,103,45,112,111,112,117,112,45,111,118,101,114,108,97,121,16,0,16,35,101,117,45,99,111,111,107,105,101,45,115,116,117,102,102,16,0,25,35,101,117,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,98,97,110,110,101,114,16,0,22,35,101,117,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,100,105,118,16,0,15,35,101,117,45,99,111,111,107,105,101,45,119,114,97,112,16,0,13,35,101,117,45,99,111,111,107,105,101,108,97,119,16,0,11,35,101,117,45,99,111,111,107,105,101,115,16,0,18,35,101,117,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,19,35,101,117,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,16,0,21,35,101,117,45,99,111,111,107,105,101,115,45,100,105,114,101,99,116,105,118,101,16,0,15,35,101,117,45,99,111,111,107,105,101,115,45,108,97,119,16,0,24,35,101,117,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,12,35,101,117,45,99,111,111,107,105,101,115,50,16,0,13,35,101,117,45,99,112,45,98,97,110,110,101,114,16,0,16,35,101,117,45,103,100,112,114,45,111,118,101,114,108,97,121,16,0,7,35,101,117,45,108,97,119,16,0,12,35,101,117,45,110,111,116,105,102,105,101,114,16,0,8,35,101,117,45,111,107,110,111,16,0,11,35,101,117,45,112,114,105,118,97,99,121,16,0,11,35,101,117,45,115,117,115,101,110,107,97,16,0,13,35,101,117,67,111,109,112,108,105,97,110,99,101,16,0,10,35,101,117,67,111,110,115,101,110,116,16,0,9,35,101,117,67,111,111,107,105,101,16,0,15,35,101,117,67,111,111,107,105,101,66,97,110,110,101,114,16,0,12,35,101,117,67,111,111,107,105,101,66,97,114,16,0,15,35,101,117,67,111,111,107,105,101,68,105,97,108,111,103,16,0,18,35,101,117,67,111,111,107,105,101,68,105,114,101,99,116,105,118,101,16,0,12,35,101,117,67,111,111,107,105,101,68,105,118,16,0,18,35,101,117,67,111,111,107,105,101,73,110,102,111,79,117,116,101,114,16,0,12,35,101,117,67,111,111,107,105,101,76,97,119,16,0,16,35,101,117,67,111,111,107,105,101,76,97,119,73,110,102,111,16,0,15,35,101,117,67,111,111,107,105,101,78,111,116,105,99,101,16,0,15,35,101,117,67,111,111,107,105,101,78,111,116,105,102,121,16,0,14,35,101,117,67,111,111,107,105,101,80,97,110,101,108,16,0,18,35,101,117,67,111,111,107,105,101,82,101,113,117,101,115,116,101,114,16,0,16,35,101,117,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,16,35,101,117,67,111,111,107,105,101,87,114,97,112,112,101,114,16,0,10,35,101,117,67,111,111,107,105,101,115,16,0,16,35,101,117,67,111,111,107,105,101,115,76,97,119,66,97,114,16,0,18,35,101,117,67,111,111,107,105,101,115,81,117,101,115,116,105,111,110,16,0,14,35,101,117,67,111,111,107,105,101,115,90,111,110,101,16,0,12,35,101,117,76,97,119,45,97,108,101,114,116,16,0,9,35,101,117,78,111,116,105,99,101,16,0,8,35,101,117,80,111,112,117,112,16,0,14,35,101,117,95,99,111,109,112,108,105,97,110,99,101,16,0,10,35,101,117,95,99,111,111,107,105,101,16,0,16,35,101,117,95,99,111,111,107,105,101,95,97,108,101,114,116,16,0,17,35,101,117,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,14,35,101,117,95,99,111,111,107,105,101,95,98,97,114,16,0,18,35,101,117,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,20,35,101,117,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,19,35,101,117,95,99,111,111,107,105,101,95,100,105,97,108,111,103,117,101,16,0,21,35,101,117,95,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,16,0,14,35,101,117,95,99,111,111,107,105,101,95,108,97,119,16,0,23,35,101,117,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,95,104,105,100,101,16,0,17,35,101,117,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,17,35,101,117,95,99,111,111,107,105,101,95,110,111,116,105,102,121,16,0,17,35,101,117,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,18,35,101,117,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,16,0,25,35,101,117,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,98,97,110,110,101,114,16,0,13,35,101,117,95,99,111,111,107,105,101,98,111,120,16,0,11,35,101,117,95,99,111,111,107,105,101,115,16,0,15,35,101,117,95,99,111,111,107,105,101,115,95,98,111,120,16,0,22,35,101,117,95,99,111,111,107,105,101,115,95,100,105,115,99,108,97,105,109,101,114,16,0,27,35,101,117,95,99,111,111,107,105,101,115,95,111,118,101,114,108,97,121,95,99,111,110,116,101,110,116,16,0,18,35,101,117,95,99,111,111,107,105,101,115,95,115,112,97,99,101,114,16,0,26,35,101,117,95,108,97,119,95,99,111,111,107,105,101,95,101,120,116,95,119,114,97,112,112,101,114,16,0,18,35,101,117,95,110,111,116,105,99,101,95,99,111,110,116,101,110,116,16,0,24,35,101,117,95,111,112,116,95,105,110,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,33,35,101,117,95,117,115,101,114,95,99,111,110,115,101,110,116,95,112,111,108,105,99,121,95,99,111,110,116,97,105,110,101,114,16,0,9,35,101,117,98,97,110,110,101,114,16,0,8,35,101,117,99,95,98,111,120,16,0,14,35,101,117,99,95,99,111,111,107,105,101,66,111,120,16,0,5,35,101,117,99,99,16,0,11,35,101,117,99,99,66,97,110,110,101,114,16,0,10,35,101,117,99,107,45,110,111,116,101,16,0,11,35,101,117,99,108,95,112,97,110,101,108,16,0,10,35,101,117,99,111,110,115,101,110,116,16,0,9,35,101,117,99,111,111,107,105,101,16,0,18,35,101,117,99,111,111,107,105,101,45,99,111,110,116,101,110,101,114,16,0,16,35,101,117,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,16,35,101,117,99,111,111,107,105,101,95,98,111,116,116,111,109,16,0,12,35,101,117,99,111,111,107,105,101,98,97,114,16,0,18,35,101,117,99,111,111,107,105,101,98,97,114,45,111,117,116,101,114,16,0,12,35,101,117,99,111,111,107,105,101,98,111,120,16,0,16,35,101,117,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,12,35,101,117,99,111,111,107,105,101,108,97,119,16,0,15,35,101,117,99,111,111,107,105,101,108,97,119,98,111,120,16,0,21,35,101,117,99,111,111,107,105,101,108,97,119,99,111,110,116,97,105,110,101,114,16,0,15,35,101,117,99,111,111,107,105,101,110,111,116,105,99,101,16,0,10,35,101,117,99,111,111,107,105,101,115,16,0,15,35,101,117,99,111,111,107,105,101,115,45,110,111,116,101,16,0,18,35,101,117,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,13,35,101,117,99,111,111,107,105,101,119,97,114,110,16,0,14,35,101,117,100,111,109,105,110,116,108,45,99,109,98,16,0,14,35,101,117,103,100,112,114,45,98,97,110,110,101,114,16,0,13,35,101,117,103,100,112,114,95,109,111,100,97,108,16,0,6,35,101,117,108,97,119,16,0,10,35,101,117,108,97,119,45,98,97,114,16,0,9,35,101,117,112,111,108,105,99,121,16,0,8,35,101,117,112,111,112,117,112,16,0,20,35,101,117,114,111,95,99,111,111,107,105,101,95,99,111,110,116,101,110,116,16,0,12,35,101,117,114,111,99,105,97,115,116,107,111,16,0,11,35,101,117,114,111,99,111,111,107,105,101,16,0,14,35,101,117,114,111,99,111,111,107,105,101,108,97,119,16,0,19,35,101,117,114,111,112,101,67,111,111,107,105,101,78,111,116,105,99,101,16,0,16,35,101,117,116,45,112,114,105,118,97,99,121,45,98,97,114,16,0,18,35,101,117,116,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,14,35,101,118,45,99,111,111,107,105,101,84,101,120,116,16,0,22,35,101,118,97,110,99,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,19,35,101,118,101,110,116,45,97,108,101,114,116,45,99,111,111,107,105,101,16,0,24,35,101,118,101,110,116,109,97,103,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,19,35,101,118,105,100,101,67,111,111,107,105,101,115,78,111,116,105,102,121,16,0,18,35,101,119,45,99,111,111,107,105,101,98,97,114,45,102,117,108,108,16,0,24,35,101,119,45,99,111,111,107,105,101,105,110,102,111,45,99,111,110,116,97,105,110,101,114,16,0,16,35,101,119,99,109,50,95,99,111,110,116,97,105,110,101,114,16,0,19,35,101,120,101,110,116,95,99,111,111,107,105,101,95,109,111,100,97,108,16,0,28,35,101,120,111,108,111,103,67,111,111,107,105,101,76,97,119,66,97,114,67,111,110,116,97,105,110,101,114,16,0,14,35,101,120,112,97,116,95,99,111,111,107,105,101,115,16,0,16,35,101,120,112,108,45,103,100,112,114,45,109,111,100,97,108,16,0,15,35,101,120,112,108,45,103,100,112,114,45,119,97,108,108,16,0,20,35,101,120,112,108,105,99,105,116,67,111,111,107,105,101,77,111,100,97,108,16,0,24,35,101,120,112,108,105,99,105,116,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,26,35,101,120,112,111,110,101,97,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,16,0,17,35,101,120,112,114,101,115,115,111,45,99,111,111,107,105,101,115,16,0,28,35,101,120,116,101,110,100,101,100,80,114,105,118,97,99,121,87,97,114,110,105,110,103,80,97,110,101,108,16,0,20,35,101,120,116,101,114,110,97,108,45,99,111,111,107,105,101,45,98,97,114,16,0,25,35,101,122,45,99,111,111,107,105,101,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,16,0,16,35,101,122,45,99,111,111,107,105,101,115,45,119,114,97,112,16,0,16,35,102,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,19,35,102,54,45,99,112,45,99,111,111,107,105,101,98,97,110,110,101,114,16,0,9,35,102,95,99,111,111,107,105,101,16,0,17,35,102,95,103,100,112,114,104,101,97,100,101,114,97,114,101,97,16,0,25,35,102,97,99,101,98,111,111,107,45,116,114,97,99,107,105,110,103,45,110,111,116,105,99,101,16,0,16,35,102,97,99,101,114,105,103,45,99,111,111,107,105,101,115,16,0,26,35,102,97,99,116,111,114,95,99,111,111,107,105,101,99,111,110,115,101,110,116,95,111,112,101,110,16,0,15,35,102,97,108,100,111,110,45,99,111,111,107,105,101,115,16,0,14,35,102,97,108,100,111,110,67,111,111,107,105,101,115,16,0,22,35,102,97,114,109,97,99,106,97,95,99,111,111,107,105,101,95,97,108,101,114,116,16,0,14,35,102,97,115,99,105,97,45,99,111,111,107,105,101,16,0,16,35,102,97,115,99,105,97,45,117,101,45,112,111,112,117,112,16,0,18,35,102,97,115,116,45,99,109,112,45,115,101,116,116,105,110,103,115,16,0,14,35,102,98,45,99,111,111,107,105,101,45,108,97,119,16,0,17,35,102,98,45,112,105,120,101,108,45,99,111,110,115,101,110,116,16,0,24,35,102,99,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,9,35,102,99,67,111,111,107,105,101,16,0,15,35,102,99,99,67,111,111,107,105,101,77,111,100,97,108,16,0,9,35,102,99,111,45,103,100,112,114,16,0,14,35,102,99,111,45,103,100,112,114,45,109,97,115,107,16,0,21,35,102,100,45,110,111,116,101,115,45,116,111,112,45,99,111,111,107,105,101,115,16,0,18,35,102,100,67,111,111,107,105,101,76,97,119,66,97,110,110,101,114,16,0,8,35,102,100,105,104,45,99,98,16,0,25,35,102,100,105,104,95,99,111,111,107,105,101,98,97,100,103,101,95,119,114,97,112,112,101,114,16,0,19,35,102,100,106,84,114,97,99,107,101,114,115,67,111,110,115,101,110,116,16,0,23,35,102,101,97,116,117,114,101,95,112,114,105,118,97,99,121,45,110,111,116,105,99,101,16,0,19,35,102,101,109,117,110,100,111,45,99,111,111,107,105,101,45,98,97,114,16,0,25,35,102,103,95,99,111,111,107,105,101,95,112,108,117,103,105,110,95,103,101,110,101,114,97,108,16,0,11,35,102,104,98,45,99,111,111,107,105,101,16,0,15,35,102,104,114,45,99,111,111,107,105,101,45,98,97,114,16,0,18,35,102,104,119,95,99,111,111,107,105,101,104,105,110,119,101,105,115,16,0,17,35,102,105,45,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,12,35,102,105,108,116,101,114,95,103,100,112,114,16,0,16,35,102,105,114,115,116,76,111,103,78,97,110,111,98,97,114,16,0,16,35,102,105,114,115,116,84,105,109,101,67,111,111,107,105,101,16,0,17,35,102,105,116,45,99,111,111,107,105,101,87,97,108,108,73,100,16,0,13,35,102,105,120,101,100,45,99,111,111,107,105,101,16,0,15,35,102,105,120,101,100,67,111,111,107,105,101,66,97,114,16,0,13,35,102,105,120,101,100,67,111,111,107,105,101,115,16,0,9,35,102,107,45,116,101,114,109,115,16,0,13,35,102,108,97,103,45,99,111,111,107,105,101,115,16,0,13,35,102,108,97,115,104,45,99,111,111,107,105,101,16,0,20,35,102,108,97,115,104,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,13,35,102,108,97,115,104,67,111,111,107,105,101,115,16,0,21,35,102,108,97,115,104,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,16,0,23,35,102,108,101,120,105,98,111,111,107,95,99,111,111,107,105,101,95,108,97,121,101,114,16,0,16,35,102,108,111,97,116,105,110,103,95,99,111,111,107,105,101,16,0,13,35,102,108,120,67,111,111,107,105,101,66,97,114,16,0,23,35,102,108,120,67,111,111,107,105,101,67,111,110,116,114,111,108,67,111,114,110,101,114,16,0,15,35,102,111,67,111,111,107,105,101,78,111,116,105,99,101,16,0,20,35,102,111,110,100,111,45,97,118,105,115,111,45,99,111,111,107,105,101,115,16,0,20,35,102,111,110,100,111,95,97,118,105,115,111,95,99,111,111,107,105,101,115,16,0,14,35,102,111,110,100,111,95,99,111,111,107,105,101,115,16,0,13,35,102,111,110,116,111,95,111,115,99,117,114,111,16,0,16,35,102,111,111,100,102,111,111,100,95,99,111,111,107,105,101,16,0,23,35,102,111,111,100,105,102,121,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,12,35,102,111,111,116,95,99,111,111,107,105,101,16,0,24,35,102,111,111,116,101,114,32,62,32,35,99,111,111,107,105,101,67,111,110,115,101,110,116,16,0,18,35,102,111,111,116,101,114,32,62,32,35,99,111,111,107,105,101,115,16,0,18,35,102,111,111,116,101,114,32,62,32,46,99,111,111,107,105,101,115,16,0,18,35,102,111,111,116,101,114,45,99,110,105,108,45,115,112,97,99,101,16,0,14,35,102,111,111,116,101,114,45,99,111,111,107,105,101,16,0,22,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,23,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,105,110,102,111,45,98,97,114,16,0,20,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,105,116,108,97,119,16,0,20,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,108,97,121,101,114,16,0,21,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,23,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,16,0,21,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,20,35,102,111,111,116,101,114,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,15,35,102,111,111,116,101,114,45,99,111,111,107,105,101,115,16,0,19,35,102,111,111,116,101,114,45,99,111,111,107,105,101,115,45,100,105,118,16,0,23,35,102,111,111,116,101,114,45,99,111,111,107,105,101,117,115,101,45,98,108,111,99,107,16,0,12,35,102,111,111,116,101,114,45,103,100,112,114,16,0,16,35,102,111,111,116,101,114,45,103,100,112,114,45,98,111,120,16,0,20,35,102,111,111,116,101,114,45,103,100,112,114,45,119,114,97,112,112,101,114,16,0,12,35,102,111,111,116,101,114,45,108,103,112,100,16,0,9,35,102,111,111,116,101,114,67,107,16,0,13,35,102,111,111,116,101,114,67,111,111,107,105,101,16,0,27,35,102,111,111,116,101,114,67,111,111,107,105,101,65,108,101,114,116,67,111,110,116,97,105,110,101,114,16,0,20,35,102,111,111,116,101,114,67,111,111,107,105,101,65,114,116,105,99,108,101,16,0,16,35,102,111,111,116,101,114,67,111,111,107,105,101,66,97,114,16,0,22,35,102,111,111,116,101,114,67,111,111,107,105,101,68,105,114,101,99,116,105,118,101,16,0,19,35,102,111,111,116,101,114,67,111,111,107,105,101,78,111,116,105,99,101,16,0,19,35,102,111,111,116,101,114,67,111,111,107,105,101,80,111,108,105,99,121,16,0,19,35,102,111,111,116,101,114,67,111,111,107,105,101,97,99,99,101,112,116,16,0,14,35,102,111,111,116,101,114,67,111,111,107,105,101,115,16,0,16,35,102,111,111,116,101,114,71,100,112,114,77,111,100,97,108,16,0,27,35,102,111,111,116,101,114,95,97,103,114,101,101,80,114,105,118,97,99,121,67,111,111,107,105,101,115,16,0,37,35,102,111,111,116,101,114,95,98,111,116,116,111,109,95,102,108,111,97,116,105,110,103,95,108,105,110,101,95,95,99,111,111,107,105,101,115,16,0,12,35,102,111,111,116,101,114,95,99,111,111,107,16,0,14,35,102,111,111,116,101,114,95,99,111,111,107,105,101,16,0,24,35,102,111,111,116,101,114,95,99,111,111,107,105,101,95,98,97,114,95,98,108,111,99,107,16,0,15,35,102,111,111,116,101,114,95,99,111,111,107,105,101,115,16,0,30,35,102,111,111,116,101,114,95,99,111,111,107,105,101,115,95,98,97,110,110,101,114,95,119,114,97,112,112,101,114,16,0,17,35,102,111,111,116,101,114,95,99,111,111,107,105,101,115,95,111,16,0,18,35,102,111,111,116,101,114,95,116,99,95,112,114,105,118,97,99,121,16,0,13,35,102,111,111,116,101,114,99,111,111,107,105,101,16,0,23,35,102,111,111,116,101,114,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,14,35,102,111,111,116,101,114,99,111,111,107,105,101,115,16,0,15,35,102,111,111,116,109,101,115,115,99,111,111,107,105,101,16,0,14,35,102,111,114,109,95,67,111,111,107,105,101,79,75,16,0,12,35,102,111,114,109,95,99,111,111,107,105,101,16,0,21,35,102,111,114,109,95,99,111,111,107,105,101,115,95,119,114,97,112,112,101,114,16,0,38,35,102,111,114,109,97,108,65,103,114,101,101,109,101,110,116,77,111,100,97,108,32,126,32,35,109,111,100,97,108,66,97,99,107,100,114,111,112,16,0,34,35,102,111,114,109,97,108,65,103,114,101,101,109,101,110,116,77,111,100,97,108,46,99,117,115,116,111,109,45,109,111,100,97,108,16,0,22,35,102,111,120,105,102,121,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,18,35,102,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,17,35,102,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,12,35,102,112,45,103,100,112,114,45,98,97,114,16,0,26,35,102,112,95,99,111,111,107,105,101,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,20,35,102,114,51,101,120,45,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,17,35,102,114,95,99,111,111,107,105,101,77,101,115,115,97,103,101,16,0,16,35,102,114,95,99,111,111,107,105,101,95,97,108,101,114,116,16,0,20,35,102,114,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,13,35,102,114,97,109,101,45,99,111,111,107,105,101,16,0,16,35,102,114,97,109,101,67,111,111,107,105,101,115,66,111,120,16,0,11,35,102,114,97,109,101,97,118,105,115,111,16,0,24,35,102,114,97,109,101,119,111,114,107,95,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,22,35,102,114,111,110,116,45,110,111,45,99,111,111,107,105,101,115,45,119,97,114,110,16,0,30,35,102,114,111,115,109,111,45,99,111,111,107,105,101,45,110,111,116,105,102,45,99,111,110,116,97,105,110,101,114,16,0,17,35,102,115,45,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,13,35,102,115,67,111,111,107,78,84,114,97,99,107,16,0,20,35,102,115,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,11,35,102,116,102,97,99,111,111,107,105,101,16,0,12,35,102,116,114,45,99,111,111,107,105,101,115,16,0,18,35,102,117,99,107,105,110,103,45,101,117,45,99,111,111,107,105,101,16,0,21,35,102,117,108,108,45,99,111,110,116,101,110,116,45,99,111,111,107,105,101,115,16,0,18,35,102,117,116,117,114,101,45,99,111,111,107,105,101,45,98,97,114,16,0,10,35,102,118,45,99,111,111,107,105,101,16,0,15,35,102,119,67,111,111,107,105,101,66,97,110,110,101,114,16,0,10,35,102,119,95,99,111,111,107,105,101,16,0,18,35,102,119,95,99,111,111,107,105,101,115,95,111,112,116,111,117,116,16,0,18,35,102,120,67,111,111,107,105,101,73,110,102,111,76,97,121,101,114,16,0,22,35,102,120,67,111,111,107,105,101,73,110,102,111,87,105,110,100,111,119,66,111,120,16,0,17,35,103,52,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,19,35,103,80,114,105,118,97,99,121,80,97,110,101,108,70,114,97,109,101,16,0,15,35,103,83,101,114,118,105,99,101,67,111,111,107,105,101,16,0,21,35,103,95,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,25,35,103,97,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,16,0,14,35,103,97,98,67,111,111,107,105,101,78,111,116,101,16,0,19,35,103,97,98,97,114,105,116,95,99,110,105,108,99,111,111,107,105,101,16,0,16,35,103,97,99,111,111,107,105,101,109,101,115,115,97,103,101,16,0,15,35,103,97,100,103,101,116,45,99,111,111,107,105,101,115,16,0,13,35,103,97,109,105,103,111,67,111,111,107,105,101,16,0,12,35,103,97,110,95,112,114,105,118,97,99,121,16,0,22,35,103,97,110,116,45,99,111,111,107,105,101,45,108,97,119,45,109,111,100,97,108,16,0,20,35,103,97,114,110,105,101,114,45,99,111,111,107,105,101,45,105,110,102,111,16,0,22,35,103,97,114,114,97,109,112,97,45,99,111,111,107,105,101,110,111,116,105,99,101,16,0,22,35,103,98,45,99,111,110,115,101,110,116,45,109,97,110,97,103,101,109,101,110,116,16,0,10,35,103,98,95,99,99,95,98,97,114,16,0,19,35,103,98,95,115,109,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,25,35,103,98,99,45,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,45,116,111,112,16,0,9,35,103,98,99,111,111,107,105,101,16,0,9,35,103,98,112,108,95,111,98,97,16,0,12,35,103,98,116,101,99,99,111,111,107,105,101,16,0,25,35,103,99,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,16,0,29,35,103,99,95,119,101,98,95,117,115,101,114,95,97,108,108,111,119,95,99,111,111,107,105,101,95,98,111,120,16,0,16,35,103,99,99,111,111,107,105,101,109,101,115,115,97,103,101,16,0,20,35,103,99,109,115,95,99,111,111,107,105,101,95,109,97,110,97,103,101,114,16,0,18,35,103,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,13,35,103,100,45,99,111,111,107,105,101,98,97,114,16,0,28,35,103,100,99,45,99,111,110,116,97,105,110,101,114,46,103,100,99,45,99,111,110,116,97,105,110,101,114,16,0,19,35,103,100,99,45,99,111,111,107,105,101,83,101,116,116,105,110,103,115,16,0,12,35,103,100,112,114,45,45,108,105,115,116,97,16,0,16,35,103,100,112,114,45,97,99,99,101,112,116,97,110,99,101,16,0,15,35,103,100,112,114,45,97,103,114,101,101,109,101,110,116,16,0,23,35,103,100,112,114,45,97,103,114,101,101,109,101,110,116,45,119,114,97,112,112,101,114,16,0,11,35,103,100,112,114,45,97,108,101,114,116,16,0,12,35,103,100,112,114,45,98,97,110,110,101,114,16,0,31,35,103,100,112,114,45,98,97,110,110,101,114,45,98,108,117,114,114,101,100,45,98,97,99,107,103,114,111,117,110,100,16,0,22,35,103,100,112,114,45,98,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,16,0,19,35,103,100,112,114,45,98,97,110,110,101,114,45,109,111,100,117,108,101,16,0,20,35,103,100,112,114,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,9,35,103,100,112,114,45,98,97,114,16,0,11,35,103,100,112,114,45,98,108,111,99,107,16,0,27,35,103,100,112,114,45,98,108,111,99,107,105,110,103,45,112,97,103,101,45,111,118,101,114,108,97,121,16,0,12,35,103,100,112,114,45,98,111,116,116,111,109,16,0,19,35,103,100,112,114,45,98,111,116,116,111,109,45,98,97,110,110,101,114,16,0,29,35,103,100,112,114,45,98,111,116,116,111,109,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,9,35,103,100,112,114,45,98,111,120,16,0,32,35,103,100,112,114,45,98,116,110,58,110,111,116,40,98,117,116,116,111,110,41,58,110,111,116,40,105,110,112,117,116,41,16,0,15,35,103,100,112,114,45,99,104,97,108,108,101,110,103,101,16,0,13,35,103,100,112,114,45,99,111,110,102,105,114,109,16,0,20,35,103,100,112,114,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,17,35,103,100,112,114,45,99,111,110,115,101,110,116,45,98,111,120,16,0,23,35,103,100,112,114,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,16,0,26,35,103,100,112,114,45,99,111,110,115,101,110,116,45,102,111,114,109,45,119,114,97,112,112,101,114,16,0,20,35,103,100,112,114,45,99,111,110,115,101,110,116,45,104,111,108,100,101,114,16,0,19,35,103,100,112,114,45,99,111,110,115,101,110,116,45,112,111,112,117,112,16,0,21,35,103,100,112,114,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,16,0,15,35,103,100,112,114,45,99,111,110,116,97,105,110,101,114,16,0,32,35,103,100,112,114,45,99,111,110,116,97,105,110,101,114,45,98,97,99,107,103,114,111,117,110,100,45,102,105,120,101,100,16,0,12,35,103,100,112,114,45,99,111,111,107,105,101,16,0,23,35,103,100,112,114,45,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,16,0,19,35,103,100,112,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,29,35,103,100,112,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,16,35,103,100,112,114,45,99,111,111,107,105,101,45,98,97,114,16,0,18,35,103,100,112,114,45,99,111,111,107,105,101,45,98,108,111,99,107,16,0,26,35,103,100,112,114,45,99,111,111,107,105,101,45,98,108,111,99,107,101,100,45,108,97,121,101,114,16,0,20,35,103,100,112,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,24,35,103,100,112,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,16,0,26,35,103,100,112,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,16,0,23,35,103,100,112,114,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,19,35,103,100,112,114,45,99,111,111,107,105,101,45,102,111,111,116,101,114,16,0,17,35,103,100,112,114,45,99,111,111,107,105,101,45,104,105,110,116,16,0,17,35,103,100,112,114,45,99,111,111,107,105,101,45,105,110,102,111,16,0,16,35,103,100,112,114,45,99,111,111,107,105,101,45,108,97,119,16,0,20,35,103,100,112,114,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,30,35,103,100,112,114,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,16,0,28,35,103,100,112,114,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,111,118,101,114,108,97,121,16,0,19,35,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,18,35,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,102,16,0,20,35,103,100,112,114,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,19,35,103,100,112,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,16,35,103,100,112,114,45,99,111,111,107,105,101,45,114,111,119,16,0,17,35,103,100,112,114,45,99,111,111,107,105,101,45,119,97,108,108,16,0,18,35,103,100,112,114,45,99,111,111,107,105,101,78,111,116,105,99,101,16,0,13,35,103,100,112,114,45,99,111,111,107,105,101,115,16,0,18,35,103,100,112,114,45,99,111,111,107,105,101,115,45,102,111,114,109,16,0,20,35,103,100,112,114,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,11,35,103,100,112,114,45,99,111,118,101,114,16,0,12,35,103,100,112,114,45,100,105,97,108,111,103,16,0,16,35,103,100,112,114,45,100,105,115,99,108,97,105,109,101,114,16,0,12,35,103,100,112,114,45,102,105,108,116,101,114,16,0,12,35,103,100,112,114,45,102,111,111,116,101,114,16,0,12,35,103,100,112,114,45,104,101,97,100,101,114,16,0,26,35,103,100,112,114,45,105,101,115,76,120,122,45,99,111,111,107,105,101,45,99,97,110,118,97,115,16,0,27,35,103,100,112,114,45,105,101,115,76,120,122,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,20,35,103,100,112,114,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,16,0,12,35,103,100,112,114,45,105,115,45,102,117,110,16,0,9,35,103,100,112,114,45,108,97,119,16,0,13,35,103,100,112,114,45,109,97,110,97,103,101,114,16,0,13,35,103,100,112,114,45,109,101,115,115,97,103,101,16,0,19,35,103,100,112,114,45,109,101,115,115,97,103,101,45,109,111,100,97,108,16,0,18,35,103,100,112,114,45,109,111,100,97,108,45,98,111,116,116,111,109,16,0,15,35,103,100,112,114,45,109,111,100,97,108,45,98,111,120,16,0,21,35,103,100,112,114,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,16,0,25,35,103,100,112,114,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,45,110,101,119,16,0,12,35,103,100,112,114,45,110,97,118,98,97,114,16,0,19,35,103,100,112,114,45,110,101,119,45,99,111,110,116,97,105,110,101,114,16,0,12,35,103,100,112,114,45,110,111,116,105,99,101,16,0,22,35,103,100,112,114,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,103,100,112,114,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,14,35,103,100,112,114,45,110,111,116,105,102,105,101,114,16,0,7,35,103,100,112,114,45,111,16,0,19,35,103,100,112,114,45,111,112,116,105,110,45,115,101,99,116,105,111,110,16,0,13,35,103,100,112,114,45,111,112,116,105,111,110,115,16,0,13,35,103,100,112,114,45,111,118,101,114,108,97,121,16,0,19,35,103,100,112,114,45,112,111,108,105,99,121,45,110,97,118,98,97,114,16,0,9,35,103,100,112,114,45,112,111,112,16,0,11,35,103,100,112,114,45,112,111,112,117,112,16,0,21,35,103,100,112,114,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,16,0,19,35,103,100,112,114,45,112,114,105,118,97,99,121,45,115,116,114,105,112,16,0,12,35,103,100,112,114,45,114,101,103,105,111,110,16,0,12,35,103,100,112,114,45,115,99,114,101,101,110,16,0,12,35,103,100,112,114,45,115,99,114,105,112,116,16,0,13,35,103,100,112,114,45,115,101,99,116,105,111,110,16,0,19,35,103,100,112,114,45,115,116,105,99,107,121,45,98,97,110,110,101,114,16,0,13,35,103,100,112,114,45,116,111,111,108,116,105,112,16,0,7,35,103,100,112,114,45,119,16,0,19,35,103,100,112,114,45,119,97,114,100,101,110,45,98,97,110,110,101,114,16,0,13,35,103,100,112,114,45,119,97,114,110,105,110,103,16,0,12,35,103,100,112,114,45,119,105,100,103,101,116,16,0,13,35,103,100,112,114,45,119,114,97,112,112,101,114,16,0,9,35,103,100,112,114,45,119,114,112,16,0,14,35,103,100,112,114,46,109,45,97,99,116,105,118,101,16,0,9,35,103,100,112,114,46,114,111,119,16,0,11,35,103,100,112,114,49,65,108,101,114,116,16,0,13,35,103,100,112,114,50,48,49,56,48,56,50,57,16,0,11,35,103,100,112,114,65,99,99,101,112,116,16,0,10,35,103,100,112,114,65,103,114,101,101,16,0,10,35,103,100,112,114,65,108,101,114,116,16,0,19,35,103,100,112,114,65,110,100,67,67,80,65,77,101,115,115,97,103,101,16,0,9,35,103,100,112,114,66,97,110,100,16,0,11,35,103,100,112,114,66,97,110,110,101,114,16,0,8,35,103,100,112,114,66,97,114,16,0,9,35,103,100,112,114,66,110,110,114,16,0,16,35,103,100,112,114,66,111,116,116,111,109,76,97,121,101,114,16,0,8,35,103,100,112,114,66,111,120,16,0,11,35,103,100,112,114,67,101,110,116,101,114,16,0,21,35,103,100,112,114,67,111,109,112,108,105,97,110,99,101,66,97,110,110,101,114,16,0,14,35,103,100,112,114,67,111,109,112,111,110,101,110,116,16,0,18,35,103,100,112,114,67,111,110,115,101,110,116,80,114,111,109,112,116,16,0,14,35,103,100,112,114,67,111,110,116,97,105,110,101,114,16,0,11,35,103,100,112,114,67,111,111,107,105,101,16,0,17,35,103,100,112,114,67,111,111,107,105,101,66,97,110,110,101,114,16,0,25,35,103,100,112,114,67,111,111,107,105,101,66,97,110,110,101,114,45,45,99,117,115,116,111,109,16,0,32,35,103,100,112,114,67,111,111,107,105,101,67,111,110,115,101,110,116,77,97,110,97,103,101,100,83,117,109,109,97,114,121,16,0,14,35,103,100,112,114,67,111,111,107,105,101,76,97,119,16,0,17,35,103,100,112,114,67,111,111,107,105,101,80,111,108,105,99,121,16,0,16,35,103,100,112,114,67,111,111,107,105,101,80,111,112,117,112,16,0,15,35,103,100,112,114,67,111,111,107,105,101,87,114,97,112,16,0,24,35,103,100,112,114,67,111,111,107,105,101,109,77,97,110,97,103,101,114,77,111,100,97,108,16,0,11,35,103,100,112,114,68,105,97,108,111,103,16,0,8,35,103,100,112,114,68,105,118,16,0,11,35,103,100,112,114,72,101,97,100,101,114,16,0,13,35,103,100,112,114,76,80,68,105,97,108,111,103,16,0,19,35,103,100,112,114,76,80,68,105,97,108,111,103,95,109,111,100,97,108,16,0,22,35,103,100,112,114,76,101,103,97,108,78,111,116,105,102,105,99,97,116,105,111,110,16,0,12,35,103,100,112,114,77,101,115,115,97,103,101,16,0,11,35,103,100,112,114,78,111,116,105,99,101,16,0,17,35,103,100,112,114,78,111,116,105,102,105,99,97,116,105,111,110,16,0,10,35,103,100,112,114,80,111,112,117,112,16,0,11,35,103,100,112,114,82,105,98,98,111,110,16,0,13,35,103,100,112,114,83,101,116,116,105,110,103,115,16,0,12,35,103,100,112,114,84,114,101,97,116,101,100,16,0,17,35,103,100,112,114,86,120,67,111,110,115,101,110,116,66,97,114,16,0,12,35,103,100,112,114,87,97,114,110,105,110,103,16,0,11,35,103,100,112,114,87,105,110,100,111,119,16,0,12,35,103,100,112,114,87,114,97,112,112,101,114,16,0,30,35,103,100,112,114,91,100,97,116,97,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,117,114,108,93,16,0,12,35,103,100,112,114,95,97,99,99,101,112,116,16,0,15,35,103,100,112,114,95,97,99,99,101,112,116,105,111,110,16,0,11,35,103,100,112,114,95,97,103,114,101,101,16,0,10,35,103,100,112,114,95,97,114,101,97,16,0,7,35,103,100,112,114,95,98,16,0,12,35,103,100,112,114,95,98,97,110,110,101,114,16,0,9,35,103,100,112,114,95,98,97,114,16,0,14,35,103,100,112,114,95,98,97,114,114,101,116,116,97,16,0,11,35,103,100,112,114,95,98,97,115,105,99,16,0,9,35,103,100,112,114,95,98,111,120,16,0,9,35,103,100,112,114,95,99,110,116,16,0,24,35,103,100,112,114,95,99,111,109,112,108,105,97,110,99,101,95,119,114,97,112,112,101,114,16,0,13,35,103,100,112,114,95,99,111,110,115,101,110,116,16,0,20,35,103,100,112,114,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,16,0,22,35,103,100,112,114,95,99,111,110,115,101,110,116,95,100,105,97,108,111,103,117,101,16,0,15,35,103,100,112,114,95,99,111,110,116,97,105,110,101,114,16,0,12,35,103,100,112,114,95,99,111,111,107,105,101,16,0,19,35,103,100,112,114,95,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,19,35,103,100,112,114,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,17,35,103,100,112,114,95,99,111,111,107,105,101,95,108,105,110,101,16,0,18,35,103,100,112,114,95,99,111,111,107,105,101,95,109,111,100,97,108,16,0,19,35,103,100,112,114,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,18,35,103,100,112,114,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,13,35,103,100,112,114,95,99,111,111,107,105,101,115,16,0,14,35,103,100,112,114,95,100,105,97,108,111,103,117,101,16,0,11,35,103,100,112,114,95,102,108,111,97,116,16,0,20,35,103,100,112,114,95,104,101,97,100,101,114,95,119,114,97,112,112,101,114,16,0,8,35,103,100,112,114,95,105,112,16,0,10,35,103,100,112,114,95,108,105,110,107,16,0,13,35,103,100,112,114,95,109,101,115,115,97,103,101,16,0,11,35,103,100,112,114,95,109,111,100,97,108,16,0,9,35,103,100,112,114,95,110,97,118,16,0,12,35,103,100,112,114,95,110,111,116,105,99,101,16,0,14,35,103,100,112,114,95,111,118,101,114,102,108,111,119,16,0,13,35,103,100,112,114,95,111,118,101,114,108,97,121,16,0,11,35,103,100,112,114,95,112,97,110,101,108,16,0,17,35,103,100,112,114,95,112,108,97,99,101,104,111,108,100,101,114,16,0,19,35,103,100,112,114,95,112,111,112,95,99,111,110,116,97,105,110,101,114,16,0,11,35,103,100,112,114,95,112,111,112,105,110,16,0,11,35,103,100,112,114,95,112,111,112,117,112,16,0,14,35,103,100,112,114,95,112,111,112,117,112,95,98,103,16,0,21,35,103,100,112,114,95,112,111,112,117,112,95,99,111,110,116,97,105,110,101,114,16,0,25,35,103,100,112,114,95,117,115,101,114,95,99,111,110,115,101,110,116,95,98,97,110,110,101,114,16,0,15,35,103,100,112,114,95,118,101,114,121,102,105,114,115,116,16,0,21,35,103,100,112,114,95,118,101,114,121,102,105,114,115,116,95,108,97,121,101,114,16,0,11,35,103,100,112,114,98,97,110,110,101,114,16,0,8,35,103,100,112,114,98,97,114,16,0,7,35,103,100,112,114,98,120,16,0,10,35,103,100,112,114,99,95,98,97,114,16,0,12,35,103,100,112,114,99,111,110,115,101,110,116,16,0,11,35,103,100,112,114,99,111,111,107,105,101,16,0,16,35,103,100,112,114,99,111,111,107,105,101,97,108,101,114,116,16,0,16,35,103,100,112,114,99,111,111,107,105,101,112,111,112,117,112,16,0,15,35,103,100,112,114,100,105,115,99,108,97,105,109,101,114,16,0,10,35,103,100,112,114,112,111,112,117,112,16,0,11,35,103,100,112,114,112,114,111,109,112,116,16,0,11,35,103,100,112,114,115,116,105,99,107,121,16,0,12,35,103,100,112,114,119,97,114,110,105,110,103,16,0,20,35,103,100,114,112,45,98,111,116,116,111,109,45,109,101,115,115,97,103,101,16,0,19,35,103,100,114,112,45,99,111,111,107,105,101,111,118,101,114,108,97,121,16,0,13,35,103,100,114,112,45,119,114,97,112,112,101,114,16,0,17,35,103,100,114,112,78,111,116,105,102,105,99,97,116,105,111,110,16,0,11,35,103,100,115,45,99,111,111,107,105,101,16,0,16,35,103,100,121,99,110,95,99,111,110,116,97,105,110,101,114,16,0,11,35,103,101,108,45,99,111,111,107,105,101,16,0,18,35,103,101,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,21,35,103,101,110,105,101,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,18,35,103,101,110,105,117,109,45,99,111,111,107,105,101,45,98,97,114,16,0,20,35,103,101,116,73,110,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,26,35,103,102,107,108,95,111,112,116,95,105,110,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,11,35,103,104,45,99,111,111,107,105,101,98,16,0,17,35,103,104,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,17,35,103,104,111,115,116,101,114,121,45,99,111,110,115,101,110,116,16,0,14,35,103,107,45,99,111,111,107,105,101,45,108,97,119,16,0,22,35,103,108,100,95,98,97,115,101,95,99,111,111,107,105,101,95,98,114,101,118,101,16,0,16,35,103,108,100,95,99,111,111,107,105,101,95,102,108,97,103,16,0,21,35,103,108,111,98,97,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,19,35,103,108,111,98,97,108,45,99,111,111,107,105,101,45,105,110,102,111,16,0,22,35,103,108,111,98,97,108,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,22,35,103,108,111,98,97,108,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,21,35,103,108,111,98,97,108,45,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,23,35,103,108,111,98,97,108,45,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,16,0,16,35,103,108,111,98,97,108,67,111,111,107,105,101,66,97,114,16,0,14,35,103,108,111,98,97,108,67,111,111,107,105,101,115,16,0,29,35,103,108,111,98,97,108,95,100,101,102,97,117,108,116,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,19,35,103,108,111,119,67,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,10,35,103,109,45,99,111,111,107,105,101,16,0,11,35,103,109,45,99,111,111,107,105,101,115,16,0,17,35,103,110,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,10,35,103,110,99,111,110,115,101,110,116,16,0,15,35,103,110,99,111,111,107,105,101,98,97,110,110,101,114,16,0,21,35,103,110,101,119,115,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,20,35,103,111,108,101,109,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,18,35,103,111,111,103,108,101,45,112,111,108,105,99,121,45,98,111,120,16,0,25,35,103,111,111,103,108,101,95,97,110,97,108,121,116,105,99,115,95,104,105,110,119,101,105,115,16,0,21,35,103,112,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,115,16,0,9,35,103,112,67,111,111,107,105,101,16,0,9,35,103,112,99,45,108,103,112,100,16,0,25,35,103,112,100,114,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,16,0,16,35,103,112,100,114,66,97,110,110,101,114,65,115,105,100,101,16,0,17,35,103,112,101,45,99,111,111,107,105,101,115,45,119,97,114,110,16,0,14,35,103,112,102,45,99,111,111,107,105,101,98,97,114,16,0,12,35,103,112,108,45,102,108,97,115,104,101,115,16,0,32,35,103,112,115,101,99,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,67,111,110,116,97,105,110,101,114,16,0,24,35,103,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,98,97,110,110,101,114,16,0,21,35,103,114,97,122,101,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,16,35,103,114,100,112,95,98,97,114,114,101,95,109,97,120,105,16,0,16,35,103,114,100,112,95,98,97,114,114,101,95,109,105,110,105,16,0,26,35,103,114,101,121,45,98,97,114,45,99,111,111,107,105,101,115,45,99,111,110,116,101,110,116,115,16,0,26,35,103,114,104,95,99,111,111,107,105,101,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,23,35,103,114,105,116,116,101,114,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,16,0,31,35,103,114,111,107,105,116,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,16,0,13,35,103,114,112,100,45,99,111,110,115,101,110,116,16,0,15,35,103,114,115,78,111,116,105,102,121,83,104,101,108,108,16,0,13,35,103,114,117,110,116,121,67,111,111,107,105,101,16,0,17,35,103,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,18,35,103,115,45,99,111,111,107,105,101,115,45,114,101,118,105,101,119,16,0,12,35,103,115,107,45,99,111,110,115,101,110,116,16,0,13,35,103,115,111,105,45,99,111,110,115,101,110,116,16,0,16,35,103,116,99,111,111,107,105,101,115,45,109,111,100,97,108,16,0,18,35,103,116,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,16,0,19,35,103,116,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,17,35,103,116,109,95,99,111,111,107,105,101,95,112,97,110,101,108,16,0,12,35,103,116,109,95,112,114,105,118,97,99,121,16,0,21,35,103,117,106,101,109,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,32,35,103,118,101,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,99,111,110,115,101,110,116,45,112,111,112,117,112,16,0,19,35,103,119,95,99,111,111,107,105,101,68,105,114,101,99,116,105,118,101,16,0,12,35,103,119,122,45,99,111,111,107,105,101,115,16,0,16,35,104,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,14,35,104,50,52,45,67,111,111,107,105,101,66,97,114,16,0,13,35,104,67,111,111,107,105,101,80,97,110,101,108,16,0,15,35,104,76,105,98,67,111,111,107,105,101,73,110,102,111,16,0,16,35,104,76,105,98,67,111,111,107,105,101,73,110,102,111,50,16,0,19,35,104,80,111,108,105,99,121,67,111,111,107,105,101,65,108,101,114,116,16,0,19,35,104,97,109,111,110,45,97,108,101,114,116,45,99,111,111,107,105,101,16,0,13,35,104,97,109,111,110,45,98,97,110,110,101,114,16,0,15,35,104,97,110,45,99,111,111,107,105,101,45,98,97,114,16,0,13,35,104,97,112,112,121,99,111,111,107,105,101,115,16,0,23,35,104,97,114,100,108,111,111,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,14,35,104,97,118,101,45,97,45,99,111,111,107,105,101,16,0,12,35,104,97,118,101,97,99,111,111,107,105,101,16,0,19,35,104,97,121,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,11,35,104,98,45,99,99,45,119,114,97,112,16,0,22,35,104,98,67,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,16,0,21,35,104,99,95,101,118,116,95,116,111,111,108,116,105,112,95,109,111,100,97,108,16,0,15,35,104,99,95,104,117,103,115,95,99,111,111,107,105,101,16,0,21,35,104,99,109,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,17,35,104,100,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,18,35,104,100,103,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,21,35,104,101,97,100,45,98,97,114,45,99,111,111,107,105,101,45,105,110,102,111,16,0,17,35,104,101,97,100,67,111,111,107,105,101,65,99,99,101,112,116,16,0,12,35,104,101,97,100,95,99,111,111,107,105,101,16,0,16,35,104,101,97,100,98,97,110,100,45,99,111,111,107,105,101,16,0,17,35,104,101,97,100,98,97,110,100,95,99,111,111,107,105,101,115,16,0,15,35,104,101,97,100,101,114,45,99,111,111,99,107,105,101,16,0,14,35,104,101,97,100,101,114,45,99,111,111,107,105,101,16,0,18,35,104,101,97,100,101,114,45,99,111,111,107,105,101,45,98,97,114,16,0,18,35,104,101,97,100,101,114,45,99,111,111,107,105,101,45,108,97,119,16,0,21,35,104,101,97,100,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,22,35,104,101,97,100,101,114,45,99,111,111,107,105,101,108,97,119,45,102,111,114,109,16,0,15,35,104,101,97,100,101,114,45,99,111,111,107,105,101,115,16,0,12,35,104,101,97,100,101,114,45,103,100,112,114,16,0,19,35,104,101,97,100,101,114,45,105,110,102,111,45,99,111,111,107,105,101,16,0,13,35,104,101,97,100,101,114,67,111,111,107,105,101,16,0,17,35,104,101,97,100,101,114,67,111,111,107,105,101,65,114,101,97,16,0,16,35,104,101,97,100,101,114,67,111,111,107,105,101,76,97,119,16,0,14,35,104,101,97,100,101,114,67,111,111,107,105,101,115,16,0,20,35,104,101,97,100,101,114,67,111,111,107,105,101,115,65,100,118,105,99,101,16,0,17,35,104,101,97,100,101,114,67,111,111,107,105,101,115,66,97,114,16,0,21,35,104,101,97,100,101,114,80,114,105,118,97,99,121,77,115,103,87,114,97,112,16,0,27,35,104,101,97,100,101,114,84,111,112,66,97,114,77,101,115,115,97,103,101,67,111,111,107,105,101,115,16,0,18,35,104,101,97,100,101,114,84,111,112,84,114,97,99,107,105,110,103,16,0,24,35,104,101,97,100,101,114,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,22,35,104,101,97,100,101,114,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,16,0,15,35,104,101,97,100,101,114,95,99,111,111,107,105,101,115,16,0,18,35,104,101,97,100,101,114,95,116,99,95,112,114,105,118,97,99,121,16,0,18,35,104,101,97,100,101,114,98,97,114,95,99,111,111,107,105,101,115,16,0,13,35,104,101,97,100,101,114,99,111,111,107,105,101,16,0,13,35,104,101,98,115,45,99,111,110,115,101,110,116,16,0,13,35,104,101,108,108,111,45,99,111,111,107,105,101,16,0,24,35,104,101,108,108,111,116,114,117,115,116,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,21,35,104,101,114,111,107,117,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,17,35,104,102,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,16,35,104,102,99,45,112,114,105,118,97,99,121,45,98,97,114,16,0,17,35,104,104,95,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,14,35,104,105,45,99,111,111,107,105,101,45,98,111,120,16,0,13,35,104,105,45,101,117,45,111,112,116,45,105,110,16,0,22,35,104,105,100,100,101,110,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,13,35,104,105,100,100,101,110,67,111,111,107,105,101,16,0,12,35,104,105,100,101,95,99,111,111,107,105,101,16,0,22,35,104,105,100,101,99,111,111,107,105,101,105,110,102,111,67,111,110,116,101,110,116,16,0,21,35,104,105,100,101,99,111,111,107,105,101,105,110,102,111,79,98,106,101,99,116,16,0,14,35,104,105,110,119,101,105,115,67,111,111,107,105,101,16,0,16,35,104,105,110,119,101,105,115,95,99,111,111,107,105,101,115,16,0,14,35,104,105,110,119,101,105,115,99,111,111,107,105,101,16,0,16,35,104,105,110,119,101,105,115,99,111,111,107,105,101,105,100,16,0,28,35,104,105,118,101,101,120,116,99,111,111,107,105,101,95,110,111,116,105,99,101,95,114,101,110,100,101,114,16,0,11,35,104,109,45,99,111,110,115,101,110,116,16,0,19,35,104,109,99,102,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,13,35,104,110,99,111,111,107,105,101,103,100,112,114,16,0,21,35,104,111,102,102,102,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,13,35,104,111,109,101,45,99,111,111,107,105,101,115,16,0,24,35,104,111,109,101,45,108,101,103,97,108,45,105,110,102,111,115,45,98,111,116,116,111,109,16,0,22,35,104,111,109,101,45,112,114,105,118,97,99,121,45,99,111,111,111,107,105,101,115,16,0,18,35,104,111,111,100,67,111,111,107,105,101,73,110,102,111,66,111,120,16,0,29,35,104,111,116,67,111,111,107,105,101,66,111,116,68,105,97,108,111,103,66,97,99,107,103,114,111,117,110,100,16,0,12,35,104,112,95,99,99,111,110,115,101,110,116,16,0,22,35,104,114,45,99,111,111,107,105,101,115,45,45,99,111,110,116,97,105,110,101,114,16,0,18,35,104,114,119,45,99,111,111,107,105,101,45,100,105,97,108,111,103,16,0,26,35,104,115,45,101,117,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,97,116,105,111,110,16,0,35,35,104,115,95,99,111,115,95,119,114,97,112,112,101,114,95,99,111,111,107,105,101,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,22,35,104,115,95,115,104,111,119,95,98,97,110,110,101,114,95,98,117,116,116,111,110,16,0,20,35,104,115,111,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,16,0,33,35,104,115,116,51,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,99,111,110,115,101,110,116,45,112,111,112,117,112,16,0,13,35,104,116,95,99,111,111,107,105,101,108,97,119,16,0,17,35,104,116,109,108,80,111,112,105,110,67,111,111,107,105,101,115,16,0,17,35,104,116,109,108,95,99,111,111,107,105,101,65,103,114,101,101,16,0,27,35,104,117,107,95,99,111,111,107,105,101,95,112,114,101,102,101,114,110,99,101,95,112,97,110,101,108,16,0,16,35,104,117,108,107,95,99,111,111,107,105,101,95,98,97,114,16,0,17,35,104,118,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,8,35,104,118,45,103,100,112,114,16,0,17,35,104,118,99,111,111,107,105,101,101,117,68,105,97,108,111,103,16,0,10,35,104,119,95,99,111,111,107,105,101,16,0,14,35,104,119,95,99,111,111,107,105,101,95,108,97,119,16,0,16,35,104,121,100,114,97,45,102,98,45,110,111,116,105,99,101,16,0,12,35,104,122,45,99,111,110,115,101,110,116,115,16,0,17,35,105,45,99,97,110,45,104,97,115,45,99,111,111,107,105,101,16,0,7,35,105,45,99,111,111,107,16,0,14,35,105,45,99,111,111,107,105,101,45,99,110,105,108,16,0,14,35,105,45,99,111,111,107,105,101,115,45,98,97,114,16,0,13,35,105,51,45,98,111,120,67,111,111,107,105,101,16,0,15,35,105,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,10,35,105,95,99,111,111,107,105,101,115,16,0,18,35,105,97,45,99,111,111,107,105,101,45,99,104,111,105,99,101,115,16,0,16,35,105,97,50,95,112,111,112,117,112,99,111,111,107,105,101,16,0,19,35,105,97,105,95,99,111,111,107,105,101,95,119,114,97,112,112,101,114,16,0,32,35,105,98,117,45,111,110,108,105,110,101,45,117,115,101,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,20,35,105,98,119,97,114,110,105,110,103,95,101,117,99,111,111,107,105,101,115,16,0,14,35,105,99,95,99,111,111,107,105,101,115,95,97,114,16,0,14,35,105,99,97,110,104,97,115,99,111,111,107,105,101,16,0,12,35,105,99,99,95,109,101,115,115,97,103,101,16,0,14,35,105,99,101,67,111,111,107,105,101,87,114,97,112,16,0,27,35,105,99,101,103,114,97,109,95,109,101,115,115,97,103,101,115,95,99,111,110,116,97,105,110,101,114,16,0,13,35,105,99,101,121,95,99,111,111,107,105,101,115,16,0,21,35,105,99,109,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,18,35,105,99,110,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,16,35,105,99,111,67,111,111,107,105,101,78,111,116,105,102,121,16,0,17,35,105,99,111,67,111,111,107,105,101,115,66,97,110,110,101,114,16,0,11,35,105,99,111,95,98,97,110,110,101,114,16,0,11,35,105,99,111,95,99,111,111,107,105,101,16,0,16,35,105,99,111,99,111,111,107,105,101,95,111,117,116,101,114,16,0,9,35,105,99,111,111,107,105,101,115,16,0,22,35,105,99,115,45,112,112,45,99,111,111,107,105,101,115,45,97,99,99,101,112,116,16,0,13,35,105,99,116,115,117,99,95,98,108,111,99,107,16,0,10,35,105,100,45,99,111,111,107,105,101,16,0,17,35,105,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,11,35,105,100,45,99,111,111,107,105,101,115,16,0,14,35,105,100,45,99,111,111,107,105,101,119,97,114,110,16,0,19,35,105,100,45,119,97,114,110,105,110,103,45,99,111,111,107,105,101,115,16,0,10,35,105,100,67,111,107,87,114,97,112,16,0,12,35,105,100,67,111,111,107,105,101,77,115,103,16,0,13,35,105,100,67,111,111,107,105,101,80,101,114,109,16,0,20,35,105,100,67,111,111,107,105,101,80,111,108,105,99,121,80,97,110,101,108,16,0,12,35,105,100,67,111,111,107,105,101,98,97,114,16,0,38,35,105,100,72,114,83,121,115,71,105,112,115,68,105,118,66,108,97,99,107,84,114,97,110,115,112,97,114,101,110,116,79,118,101,114,108,97,121,16,0,19,35,105,100,73,110,102,111,114,109,97,99,97,111,67,111,111,107,105,101,16,0,7,35,105,100,76,71,80,68,16,0,13,35,105,100,76,101,121,67,111,111,107,105,101,115,16,0,27,35,105,100,85,115,101,114,67,111,110,115,101,110,116,80,111,108,105,99,121,87,97,114,110,105,110,103,16,0,13,35,105,100,95,95,99,111,111,107,105,101,111,107,16,0,18,35,105,100,95,97,118,118,105,115,111,95,99,111,111,107,105,101,115,16,0,18,35,105,100,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,15,35,105,100,95,99,111,111,107,105,101,95,115,104,111,119,16,0,17,35,105,100,95,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,18,35,105,100,95,100,105,118,95,85,115,101,67,111,111,107,105,101,115,16,0,11,35,105,100,95,109,115,103,67,110,105,108,16,0,14,35,105,100,95,116,114,95,99,111,111,107,105,101,115,16,0,19,35,105,100,97,105,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,9,35,105,100,99,111,111,107,105,101,16,0,12,35,105,100,101,97,95,99,111,111,107,105,101,16,0,18,35,105,100,101,97,108,105,110,103,45,99,111,110,115,101,110,116,115,16,0,18,35,105,100,101,111,99,111,111,107,105,101,45,119,105,100,103,101,116,16,0,15,35,105,100,103,45,99,111,111,107,105,101,45,98,97,114,16,0,15,35,105,100,103,99,112,95,95,115,101,99,116,105,111,110,16,0,22,35,105,100,105,100,105,116,97,108,108,102,111,114,116,104,101,99,111,111,107,105,101,16,0,31,35,105,100,105,117,109,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,114,16,0,10,35,105,100,119,99,111,111,107,105,101,16,0,11,35,105,100,120,99,111,111,107,105,101,115,16,0,12,35,105,100,120,114,99,111,111,107,105,101,115,16,0,15,35,105,101,116,67,111,111,107,105,101,80,97,110,101,108,16,0,19,35,105,102,97,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,13,35,105,102,111,111,100,95,99,111,111,107,105,101,16,0,28,35,105,102,114,97,109,101,45,119,114,97,112,45,110,101,116,105,110,102,111,45,99,111,110,115,101,110,116,16,0,14,35,105,102,114,97,109,101,95,99,111,111,107,105,101,16,0,19,35,105,102,114,97,109,101,95,99,111,111,107,105,101,95,115,105,116,101,16,0,18,35,105,103,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,11,35,105,103,111,95,99,111,111,107,105,101,16,0,32,35,105,103,111,119,101,98,95,99,111,111,107,105,101,112,111,108,105,99,121,95,111,112,116,111,117,116,95,105,110,102,111,16,0,12,35,105,105,98,45,99,111,111,107,105,101,115,16,0,12,35,105,105,109,71,100,112,114,82,111,111,116,16,0,21,35,105,106,45,112,111,108,105,99,121,45,100,105,115,99,108,97,105,109,101,114,16,0,27,35,105,107,97,110,111,115,45,112,114,105,118,97,99,121,45,99,111,111,107,105,101,108,97,121,101,114,16,0,13,35,105,108,111,118,101,99,111,111,107,105,101,115,16,0,22,35,105,109,80,111,108,105,99,121,99,111,111,107,105,101,109,101,115,115,97,103,101,16,0,18,35,105,109,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,20,35,105,109,112,108,105,99,105,116,67,111,111,107,105,101,77,111,100,97,108,16,0,15,35,105,109,112,114,105,110,116,45,99,111,111,107,105,101,16,0,17,35,105,109,112,114,111,111,118,101,45,99,111,111,107,105,101,115,16,0,13,35,105,110,100,101,120,99,111,111,107,105,101,115,16,0,18,35,105,110,100,105,99,97,116,105,111,110,95,99,111,111,107,105,101,16,0,12,35,105,110,102,95,112,114,105,118,97,99,121,16,0,10,35,105,110,102,99,111,111,107,105,101,16,0,19,35,105,110,102,111,45,97,98,111,117,116,45,99,111,111,107,105,101,115,16,0,17,35,105,110,102,111,45,98,97,110,110,101,114,45,103,100,112,114,16,0,17,35,105,110,102,111,45,98,97,114,45,99,111,111,107,105,101,115,16,0,22,35,105,110,102,111,45,98,97,114,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,12,35,105,110,102,111,45,99,111,111,107,105,101,16,0,13,35,105,110,102,111,45,99,111,111,107,105,101,115,16,0,20,35,105,110,102,111,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,17,35,105,110,102,111,45,99,111,111,107,105,101,115,45,98,97,114,16,0,17,35,105,110,102,111,45,99,111,111,107,105,101,115,45,116,111,112,16,0,11,35,105,110,102,111,67,111,111,107,105,101,16,0,17,35,105,110,102,111,67,111,111,107,105,101,66,97,110,110,101,114,16,0,15,35,105,110,102,111,67,111,111,107,105,101,67,78,73,76,16,0,12,35,105,110,102,111,67,111,111,107,105,101,115,16,0,17,35,105,110,102,111,76,111,99,97,108,67,111,111,107,105,101,115,16,0,12,35,105,110,102,111,80,114,105,118,97,99,121,16,0,24,35,105,110,102,111,95,97,98,111,117,116,95,99,111,111,107,105,101,115,95,97,114,101,97,16,0,12,35,105,110,102,111,95,99,111,111,107,105,101,16,0,23,35,105,110,102,111,95,99,111,111,107,105,101,95,98,97,99,107,103,114,111,117,110,100,16,0,16,35,105,110,102,111,95,99,111,111,107,105,101,95,101,120,101,16,0,17,35,105,110,102,111,95,99,111,111,107,105,101,95,101,120,101,108,16,0,17,35,105,110,102,111,95,99,111,111,107,105,101,95,105,112,122,112,16,0,20,35,105,110,102,111,95,99,111,111,107,105,101,95,119,114,97,112,112,101,114,16,0,13,35,105,110,102,111,95,99,111,111,107,105,101,115,16,0,19,35,105,110,102,111,95,99,111,111,107,105,101,115,95,98,108,111,99,107,16,0,15,35,105,110,102,111,95,99,111,111,107,105,101,115,95,108,16,0,19,35,105,110,102,111,98,97,110,110,101,114,45,99,111,111,107,105,101,115,16,0,15,35,105,110,102,111,98,97,114,45,99,111,111,107,105,101,16,0,32,35,105,110,102,111,98,97,114,91,100,97,116,97,45,115,101,116,116,105,110,103,115,61,34,98,111,116,116,111,109,34,93,16,0,14,35,105,110,102,111,98,111,120,99,111,111,107,105,101,16,0,15,35,105,110,102,111,99,105,97,115,116,101,99,122,107,97,16,0,11,35,105,110,102,111,99,111,111,107,105,101,16,0,13,35,105,110,102,111,99,111,111,107,105,101,102,114,16,0,12,35,105,110,102,111,99,111,111,107,105,101,115,16,0,13,35,105,110,102,111,99,111,111,107,105,101,115,50,16,0,21,35,105,110,102,111,114,67,111,111,107,105,101,87,97,108,108,80,111,112,117,112,16,0,9,35,105,110,102,111,114,99,119,112,16,0,15,35,105,110,102,111,114,109,45,99,111,111,107,105,101,115,16,0,24,35,105,110,102,111,114,109,97,99,105,111,110,83,111,98,114,101,67,111,111,107,105,101,115,16,0,21,35,105,110,102,111,114,109,97,99,106,97,45,111,45,99,111,111,107,105,101,115,16,0,24,35,105,110,102,111,114,109,97,99,106,97,79,67,105,97,115,116,101,99,122,107,97,99,104,16,0,19,35,105,110,102,111,114,109,97,99,106,97,95,99,105,97,115,116,107,97,16,0,26,35,105,110,102,111,114,109,97,99,106,97,95,111,95,99,105,97,115,116,101,99,122,107,97,99,104,16,0,20,35,105,110,102,111,114,109,97,99,106,97,95,111,95,99,111,111,107,105,101,16,0,21,35,105,110,102,111,114,109,97,99,106,97,95,111,95,99,111,111,107,105,101,115,16,0,24,35,105,110,102,111,114,109,97,116,105,111,110,65,98,111,117,116,67,111,111,107,105,101,115,16,0,21,35,105,110,102,111,114,109,97,116,105,111,110,115,45,99,111,111,107,105,101,115,16,0,30,35,105,110,102,111,114,109,97,116,105,118,97,45,98,114,101,118,101,45,99,111,111,107,105,101,95,119,114,97,112,16,0,19,35,105,110,102,111,114,109,97,116,105,118,97,45,99,111,111,107,105,101,16,0,20,35,105,110,102,111,114,109,97,116,105,118,97,45,112,114,105,118,97,99,121,16,0,23,35,105,110,102,111,114,109,97,116,105,118,97,66,114,101,118,101,67,111,111,107,105,101,16,0,18,35,105,110,102,111,114,109,97,116,105,118,97,67,111,111,107,105,101,16,0,36,35,105,110,102,111,114,109,97,116,105,118,97,80,114,105,118,97,99,121,67,111,111,107,105,101,115,68,111,109,69,108,101,109,101,110,116,16,0,19,35,105,110,102,111,114,109,97,116,105,118,97,95,99,111,111,107,105,101,16,0,13,35,105,110,102,111,115,67,111,111,107,105,101,115,16,0,13,35,105,110,102,111,115,95,99,111,111,107,105,101,16,0,13,35,105,110,102,111,115,99,111,111,107,105,101,115,16,0,11,35,105,110,103,45,67,111,111,107,105,101,16,0,15,35,105,110,103,45,67,111,111,107,105,101,98,111,100,121,16,0,13,35,105,110,103,97,109,101,67,111,111,107,105,101,16,0,22,35,105,110,105,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,105,110,105,116,45,112,111,112,117,112,45,99,111,111,107,105,101,16,0,18,35,105,110,108,105,110,101,45,99,111,111,107,105,101,45,116,97,98,16,0,20,35,105,110,110,111,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,12,35,105,110,112,108,95,99,112,95,99,110,116,16,0,29,35,105,110,112,115,121,100,101,95,99,111,111,107,105,101,95,98,97,114,95,99,111,110,116,97,105,110,101,114,16,0,17,35,105,110,115,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,16,35,105,110,116,45,99,111,111,107,105,101,115,45,98,97,114,16,0,24,35,105,110,116,101,114,97,99,116,45,112,111,108,105,99,121,45,99,111,110,115,101,110,116,16,0,18,35,105,110,116,101,114,99,101,112,116,45,99,111,111,107,105,101,115,16,0,14,35,105,110,116,115,101,114,95,99,111,111,107,105,101,16,0,24,35,105,110,118,101,110,116,105,115,101,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,16,35,105,112,45,117,115,101,114,45,99,111,110,115,101,110,116,16,0,11,35,105,112,101,114,99,111,111,107,105,101,16,0,17,35,105,112,114,111,109,95,99,112,95,119,114,97,112,112,101,114,16,0,14,35,105,113,105,116,99,111,111,107,105,101,108,97,119,16,0,17,35,105,114,115,95,99,111,111,107,105,101,95,112,97,110,101,108,16,0,18,35,105,115,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,16,35,105,115,45,99,111,111,107,105,101,97,108,101,114,116,114,16,0,9,35,105,115,67,111,111,107,105,101,16,0,22,35,105,115,97,99,97,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,16,0,14,35,105,115,105,100,101,45,99,111,111,107,105,101,115,16,0,22,35,105,115,108,97,101,100,101,110,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,25,35,105,116,45,99,111,111,107,105,101,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,16,0,17,35,105,116,45,101,112,114,105,118,97,99,121,45,114,111,111,116,16,0,19,35,105,116,97,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,16,0,13,35,105,116,97,120,105,45,99,111,111,107,105,101,16,0,18,35,105,116,99,45,99,111,111,107,105,101,45,110,111,116,105,102,121,16,0,15,35,105,116,99,95,99,111,111,107,105,101,105,110,102,111,16,0,14,35,105,116,108,67,111,111,107,105,101,73,110,102,111,16,0,19,35,105,116,115,98,111,111,116,115,116,114,97,112,99,111,111,107,105,101,16,0,24,35,105,116,118,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,105,116,118,45,103,108,111,98,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,17,35,105,117,114,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,12,35,105,118,117,95,112,114,105,118,97,99,121,16,0,17,35,105,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,105,119,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,29,35,105,119,115,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,16,0,22,35,106,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,19,35,106,50,52,45,99,111,110,115,101,110,116,45,99,111,111,107,105,101,16,0,25,35,106,67,111,111,107,105,101,80,114,105,118,97,99,121,95,100,105,118,95,116,101,115,116,111,16,0,20,35,106,81,65,108,101,114,116,65,99,99,101,112,116,67,111,111,107,105,101,16,0,23,35,106,81,117,101,114,121,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,16,0,19,35,106,97,99,107,115,111,110,118,105,108,108,101,45,111,112,116,105,110,16,0,17,35,106,97,110,101,108,97,45,97,118,105,115,111,45,108,103,112,16,0,10,35,106,98,99,111,111,107,105,101,115,16,0,17,35,106,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,20,35,106,101,110,116,105,115,45,99,111,110,115,101,110,116,45,109,97,105,110,16,0,15,35,106,101,110,116,105,115,95,99,111,110,115,101,110,116,16,0,20,35,106,105,118,101,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,19,35,106,105,120,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,22,35,106,105,120,95,97,99,99,101,112,116,99,111,111,107,105,101,115,95,98,111,120,16,0,26,35,106,108,99,111,111,107,105,101,95,99,111,110,116,114,111,108,67,111,110,116,97,105,110,101,114,16,0,24,35,106,108,99,111,111,107,105,101,95,99,111,110,116,114,111,108,67,111,110,116,101,110,116,16,0,20,35,106,108,99,111,111,107,105,101,95,99,111,110,116,114,111,108,77,115,103,16,0,24,35,106,108,99,111,111,107,105,101,95,99,111,110,116,114,111,108,77,115,103,68,101,110,121,16,0,25,35,106,108,99,111,111,107,105,101,95,99,111,110,116,114,111,108,77,115,103,70,105,114,115,116,16,0,21,35,106,108,112,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,16,35,106,109,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,28,35,106,109,115,95,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,115,99,114,101,101,110,16,0,16,35,106,111,117,114,110,97,108,45,99,111,111,107,105,101,115,16,0,23,35,106,113,45,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,16,0,11,35,106,113,95,99,111,111,107,105,101,115,16,0,17,35,106,113,109,67,111,111,107,105,101,77,111,110,115,116,101,114,16,0,25,35,106,113,117,101,114,121,45,99,111,111,107,105,101,45,108,97,119,45,115,99,114,105,112,116,16,0,20,35,106,113,117,101,114,121,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,12,35,106,115,45,45,99,111,111,107,105,101,115,16,0,26,35,106,115,45,45,102,108,97,115,104,45,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,16,0,14,35,106,115,45,84,111,115,80,114,105,118,97,99,121,16,0,17,35,106,115,45,97,99,99,101,112,116,45,99,111,111,107,105,101,16,0,23,35,106,115,45,97,108,101,114,116,45,99,111,111,107,105,101,45,119,105,110,100,111,119,16,0,16,35,106,115,45,98,97,110,100,45,99,111,111,107,105,101,115,16,0,18,35,106,115,45,98,97,110,110,101,114,45,99,111,111,107,105,101,115,16,0,27,35,106,115,45,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,12,35,106,115,45,99,67,111,110,115,101,110,116,16,0,8,35,106,115,45,99,99,112,97,16,0,15,35,106,115,45,99,99,112,97,45,98,97,110,110,101,114,16,0,15,35,106,115,45,99,110,105,108,45,45,97,108,101,114,116,16,0,33,35,106,115,45,99,111,110,115,101,110,116,45,105,110,102,111,114,109,97,116,105,111,110,45,99,111,110,116,97,105,110,101,114,16,0,19,35,106,115,45,99,111,111,107,105,101,45,48,50,45,112,111,112,117,112,16,0,19,35,106,115,45,99,111,111,107,105,101,45,48,51,45,112,111,112,117,112,16,0,16,35,106,115,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,19,35,106,115,45,99,111,111,107,105,101,45,97,112,112,114,111,118,97,108,16,0,14,35,106,115,45,99,111,111,107,105,101,45,98,97,114,16,0,14,35,106,115,45,99,111,111,107,105,101,45,98,111,120,16,0,18,35,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,22,35,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,114,16,0,28,35,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,16,0,20,35,106,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,21,35,106,115,45,99,111,111,107,105,101,45,100,105,97,108,111,103,45,98,111,120,16,0,21,35,106,115,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,23,35,106,115,45,99,111,111,107,105,101,45,102,111,111,116,101,114,45,98,108,111,99,107,16,0,15,35,106,115,45,99,111,111,107,105,101,45,104,105,110,116,16,0,16,35,106,115,45,99,111,111,107,105,101,45,105,110,110,101,114,16,0,16,35,106,115,45,99,111,111,107,105,101,45,108,97,121,101,114,16,0,14,35,106,115,45,99,111,111,107,105,101,45,109,115,103,16,0,16,35,106,115,45,99,111,111,107,105,101,45,110,111,116,101,115,16,0,17,35,106,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,23,35,106,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,24,35,106,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,25,35,106,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,100,101,102,97,117,108,116,16,0,16,35,106,115,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,18,35,106,115,45,99,111,111,107,105,101,45,115,101,99,116,105,111,110,16,0,15,35,106,115,45,99,111,111,107,105,101,45,116,101,120,116,16,0,18,35,106,115,45,99,111,111,107,105,101,45,116,114,105,103,103,101,114,16,0,16,35,106,115,45,99,111,111,107,105,101,66,97,110,110,101,114,16,0,13,35,106,115,45,99,111,111,107,105,101,66,111,120,16,0,25,35,106,115,45,99,111,111,107,105,101,67,111,110,115,101,110,116,45,119,114,97,112,112,101,114,16,0,14,35,106,115,45,99,111,111,107,105,101,73,110,102,111,16,0,17,35,106,115,45,99,111,111,107,105,101,87,97,114,110,105,110,103,16,0,13,35,106,115,45,99,111,111,107,105,101,98,97,114,16,0,19,35,106,115,45,99,111,111,107,105,101,108,97,119,45,97,108,101,114,116,16,0,13,35,106,115,45,99,111,111,107,105,101,108,111,105,16,0,16,35,106,115,45,99,111,111,107,105,101,110,111,116,105,99,101,16,0,23,35,106,115,45,99,111,111,107,105,101,110,111,116,105,99,101,45,115,112,97,99,101,114,16,0,18,35,106,115,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,15,35,106,115,45,99,111,111,107,105,101,115,45,98,97,114,16,0,16,35,106,115,45,99,111,111,107,105,101,115,45,98,108,111,99,16,0,22,35,106,115,45,99,111,111,107,105,101,115,45,100,105,115,99,108,97,105,109,101,114,16,0,18,35,106,115,45,99,111,111,107,105,101,115,45,102,111,111,116,101,114,16,0,16,35,106,115,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,20,35,106,115,45,99,111,111,107,105,101,115,45,109,115,103,45,104,105,100,101,16,0,24,35,106,115,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,18,35,106,115,45,99,111,111,107,105,101,115,45,115,116,114,105,112,101,16,0,17,35,106,115,45,99,111,111,107,105,101,115,45,116,101,114,109,115,16,0,19,35,106,115,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,19,35,106,115,45,99,111,111,107,105,101,115,46,99,111,111,107,105,101,115,16,0,31,35,106,115,45,99,121,98,111,116,45,99,111,111,107,105,101,98,111,116,45,112,108,97,99,101,104,111,108,100,101,114,16,0,24,35,106,115,45,100,97,116,97,45,112,114,111,116,101,99,116,105,111,110,45,110,111,116,101,16,0,14,35,106,115,45,101,120,116,45,99,111,111,107,105,101,16,0,15,35,106,115,45,103,100,112,114,45,98,97,110,110,101,114,16,0,23,35,106,115,45,103,100,112,114,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,20,35,106,115,45,103,100,112,114,45,99,111,111,107,105,101,45,111,112,101,110,16,0,21,35,106,115,45,103,100,112,114,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,14,35,106,115,45,103,100,112,114,45,111,112,116,105,110,16,0,12,35,106,115,45,103,100,112,114,70,111,114,109,16,0,17,35,106,115,45,104,101,97,100,101,114,45,99,111,111,107,105,101,16,0,15,35,106,115,45,104,111,111,107,45,99,111,111,107,105,101,16,0,17,35,106,115,45,105,110,102,111,115,45,99,111,111,107,105,101,115,16,0,14,35,106,115,45,105,112,45,99,111,111,107,105,101,115,16,0,14,35,106,115,45,108,97,119,45,45,97,108,101,114,116,16,0,27,35,106,115,45,109,98,67,111,111,107,105,101,78,111,116,105,99,101,67,111,110,116,97,105,110,101,114,16,0,13,35,106,115,45,109,100,45,99,111,111,107,105,101,16,0,36,35,106,115,45,109,101,115,115,97,103,101,45,98,97,114,45,99,111,111,107,105,101,45,97,117,116,104,111,114,105,122,97,116,105,111,110,16,0,29,35,106,115,45,109,101,115,115,97,103,101,45,98,97,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,36,35,106,115,45,109,101,115,115,97,103,101,91,100,97,116,97,45,105,100,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,34,93,16,0,37,35,106,115,45,109,101,115,115,97,103,101,91,100,97,116,97,45,113,97,61,34,99,111,111,107,105,101,45,109,101,115,115,97,103,101,34,93,16,0,24,35,106,115,45,109,111,100,117,108,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,25,35,106,115,45,111,110,108,105,110,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,16,35,106,115,45,111,112,116,73,110,45,98,97,110,110,101,114,16,0,19,35,106,115,45,112,111,108,105,99,121,45,101,117,99,111,111,107,105,101,16,0,22,35,106,115,45,112,111,112,117,112,45,99,111,111,107,105,101,45,98,108,111,99,107,16,0,17,35,106,115,45,112,111,112,117,112,45,99,111,111,107,105,101,115,16,0,19,35,106,115,45,112,117,108,108,111,117,116,45,99,111,111,107,105,101,115,16,0,23,35,106,115,45,114,101,97,99,116,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,15,35,106,115,45,115,105,116,101,45,99,111,111,107,105,101,16,0,22,35,106,115,45,115,105,116,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,106,115,45,115,116,111,114,109,99,99,45,98,97,110,110,101,114,16,0,18,35,106,115,45,116,97,114,95,99,111,111,107,105,101,115,66,97,114,16,0,19,35,106,115,45,117,115,101,114,45,99,111,111,107,105,101,45,106,97,114,16,0,16,35,106,115,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,18,35,106,115,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,15,35,106,115,67,111,111,107,105,101,78,111,116,105,99,101,16,0,21,35,106,115,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,15,35,106,115,67,111,111,107,105,101,115,80,97,110,101,108,16,0,7,35,106,115,71,68,80,82,16,0,16,35,106,115,85,115,101,67,111,111,107,105,101,84,105,112,115,16,0,21,35,106,115,95,97,99,99,101,112,116,95,99,111,111,107,105,101,95,98,97,114,16,0,12,35,106,115,95,99,110,105,108,45,98,97,114,16,0,15,35,106,115,95,99,111,110,115,101,110,116,95,98,97,114,16,0,21,35,106,115,95,99,111,111,107,105,101,45,98,97,110,110,101,114,45,97,115,107,16,0,22,35,106,115,95,99,111,111,107,105,101,45,98,97,110,110,101,114,45,122,111,110,101,16,0,24,35,106,115,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,95,95,109,97,105,110,16,0,18,35,106,115,95,99,111,111,107,105,101,45,109,111,110,115,116,101,114,16,0,16,35,106,115,95,99,111,111,107,105,101,95,109,111,100,97,108,16,0,22,35,106,115,95,99,111,111,107,105,101,95,109,111,100,97,108,95,108,97,121,101,114,16,0,14,35,106,115,95,99,111,111,107,105,101,95,109,115,103,16,0,17,35,106,115,95,99,111,111,107,105,101,95,119,105,110,100,111,119,16,0,15,35,106,115,95,99,111,111,107,105,101,95,119,105,115,104,16,0,22,35,106,115,95,100,97,116,97,78,111,116,105,99,101,83,101,116,116,105,110,103,115,16,0,18,35,106,115,95,101,117,67,111,111,107,105,101,66,97,110,110,101,114,16,0,17,35,106,115,95,101,117,67,111,111,107,105,101,77,111,100,97,108,16,0,14,35,106,115,95,103,100,112,114,84,111,112,66,97,114,16,0,18,35,106,115,95,103,108,111,98,97,108,45,99,111,111,107,105,101,115,16,0,17,35,106,115,95,112,111,112,117,112,95,99,111,111,107,105,101,115,16,0,25,35,106,115,95,112,117,115,104,68,111,119,110,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,17,35,106,115,95,116,111,112,114,111,119,95,99,111,111,107,105,101,16,0,22,35,106,115,97,108,101,114,116,45,99,111,111,107,105,101,115,97,99,99,101,112,116,16,0,12,35,106,115,110,45,99,111,111,107,105,101,115,16,0,14,35,106,115,116,95,101,117,95,99,111,111,107,105,101,16,0,20,35,106,117,108,105,97,110,97,67,111,111,107,105,101,115,65,108,101,114,116,16,0,15,35,106,117,109,112,101,114,95,99,111,111,107,105,101,115,16,0,13,35,106,117,110,99,111,111,107,105,101,98,97,114,16,0,17,35,106,119,115,100,119,45,99,111,111,107,105,101,72,105,110,116,16,0,27,35,106,119,115,100,119,45,99,111,111,107,105,101,72,105,110,116,45,99,111,110,116,97,105,110,101,114,16,0,9,35,107,45,99,111,111,107,105,101,16,0,21,35,107,95,99,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,11,35,107,97,45,99,111,111,107,105,101,115,16,0,12,35,107,97,67,111,111,107,105,101,66,97,114,16,0,16,35,107,97,105,111,45,99,111,111,107,105,101,45,98,97,110,16,0,9,35,107,97,107,101,98,111,107,115,16,0,22,35,107,97,108,101,118,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,18,35,107,97,110,101,119,115,45,99,111,111,107,105,101,45,98,111,120,16,0,13,35,107,97,115,104,117,98,67,111,111,107,105,101,16,0,17,35,107,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,15,35,107,98,67,111,111,107,105,101,80,111,108,105,99,121,16,0,12,35,107,99,111,111,107,105,101,105,110,102,111,16,0,13,35,107,101,99,111,111,107,105,101,104,105,110,116,16,0,10,35,107,101,107,115,78,111,116,105,122,16,0,12,35,107,101,107,115,95,110,111,116,105,99,101,16,0,8,35,107,101,107,115,98,97,114,16,0,12,35,107,101,107,115,99,104,101,99,107,101,114,16,0,9,35,107,101,107,115,100,111,115,101,16,0,13,35,107,101,107,115,101,46,100,105,97,108,111,103,16,0,14,35,107,101,107,115,105,45,99,111,110,115,101,110,116,16,0,11,35,107,101,107,115,105,118,101,104,106,101,16,0,11,35,107,101,107,115,108,101,105,115,116,101,16,0,16,35,107,103,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,16,35,107,103,67,111,111,107,105,101,87,114,97,112,112,101,114,16,0,12,35,107,103,99,45,99,111,110,115,101,110,116,16,0,9,35,107,104,99,111,111,107,105,101,16,0,12,35,107,105,110,103,45,99,111,111,107,105,101,16,0,17,35,107,106,102,67,111,111,107,105,101,73,110,102,111,66,111,120,16,0,9,35,107,107,99,111,111,107,105,101,16,0,11,35,107,108,45,99,111,111,107,105,101,115,16,0,18,35,107,108,97,114,111,32,46,99,111,111,107,45,109,111,100,97,108,16,0,17,35,107,109,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,15,35,107,110,45,103,100,112,114,45,100,105,97,108,111,103,16,0,9,35,107,111,101,107,98,97,108,107,16,0,10,35,107,111,101,107,105,101,66,97,114,16,0,14,35,107,111,101,107,105,101,109,101,108,100,105,110,103,16,0,14,35,107,111,101,107,105,101,109,111,110,115,116,101,114,16,0,12,35,107,111,101,107,106,101,80,111,112,117,112,16,0,13,35,107,111,108,97,99,105,99,105,45,100,105,118,16,0,36,35,107,111,109,112,108,101,116,116,45,98,101,115,99,104,101,117,101,114,116,101,45,99,111,111,107,105,101,45,119,97,114,110,117,110,103,16,0,17,35,107,111,109,117,110,105,107,97,116,45,99,111,111,107,105,101,16,0,18,35,107,111,109,117,110,105,107,97,116,45,99,111,111,107,105,101,115,16,0,17,35,107,111,109,117,110,105,107,97,116,67,111,111,107,105,101,115,16,0,21,35,107,111,109,117,110,105,107,97,116,95,99,105,97,115,116,101,99,122,107,97,16,0,18,35,107,111,109,117,110,105,107,97,116,95,99,105,97,115,116,107,97,16,0,17,35,107,111,109,117,110,105,107,97,116,95,99,111,111,107,105,101,16,0,15,35,107,111,109,117,110,105,107,97,116,95,114,111,100,111,16,0,10,35,107,111,112,97,103,101,66,97,114,16,0,23,35,107,111,115,105,108,107,97,95,99,111,111,107,105,101,115,95,104,108,97,115,107,97,16,0,11,35,107,113,115,45,99,111,111,107,105,101,16,0,19,35,107,114,110,45,112,114,105,118,97,99,121,45,99,101,110,116,101,114,16,0,16,35,107,115,102,45,103,100,112,114,45,110,111,116,105,99,101,16,0,11,35,107,116,45,99,111,111,107,105,101,115,16,0,27,35,107,116,67,111,111,107,105,101,83,116,97,116,101,109,101,110,116,67,111,110,116,97,105,110,101,114,16,0,11,35,107,116,95,99,111,111,107,105,101,115,16,0,15,35,107,117,107,105,45,111,112,111,122,111,114,105,108,111,16,0,12,35,107,117,107,105,117,111,114,110,105,110,103,16,0,6,35,107,117,107,105,122,16,0,24,35,107,118,95,103,100,112,114,95,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,16,0,13,35,107,118,107,107,95,111,118,101,114,108,97,121,16,0,11,35,107,118,107,107,95,112,111,112,117,112,16,0,17,35,107,119,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,10,35,108,45,99,111,111,107,105,101,115,16,0,19,35,108,97,100,105,101,115,99,111,111,107,105,101,110,111,116,105,99,101,16,0,16,35,108,97,103,111,95,99,111,111,107,105,101,95,98,97,114,16,0,19,35,108,97,112,103,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,22,35,108,97,112,105,101,99,104,95,99,111,111,107,105,101,115,95,102,105,101,108,100,16,0,17,35,108,97,114,103,101,110,101,116,95,99,111,110,115,101,110,116,16,0,16,35,108,97,117,109,97,116,99,111,111,107,105,101,98,111,120,16,0,6,35,108,97,119,69,85,16,0,14,35,108,97,121,45,99,111,111,107,105,101,108,97,119,16,0,13,35,108,97,121,101,114,45,99,111,111,107,105,101,16,0,20,35,108,97,121,101,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,14,35,108,97,121,101,114,45,99,111,111,107,105,101,115,16,0,32,35,108,97,121,101,114,45,112,111,108,105,116,105,113,117,101,45,103,101,115,116,105,111,110,45,99,111,111,107,105,101,115,16,0,18,35,108,97,121,101,114,65,99,99,101,112,116,67,111,111,107,105,101,16,0,13,35,108,97,121,101,114,67,111,111,107,105,101,115,16,0,19,35,108,97,121,101,114,67,111,111,107,105,101,115,80,111,112,103,111,109,16,0,13,35,108,97,121,101,114,95,99,111,111,107,105,101,16,0,14,35,108,97,121,101,114,95,99,111,111,107,105,101,115,16,0,28,35,108,97,121,101,114,95,99,111,111,107,105,101,115,95,112,117,98,108,105,99,105,116,97,105,114,101,115,16,0,12,35,108,97,121,101,114,99,111,111,107,105,101,16,0,21,35,108,97,121,111,117,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,29,35,108,97,121,111,117,116,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,17,35,108,97,121,111,117,116,45,99,111,111,107,105,101,109,115,103,16,0,22,35,108,97,121,111,117,116,95,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,14,35,108,99,45,99,111,111,107,105,101,45,98,97,114,16,0,16,35,108,99,95,99,111,111,107,105,101,115,45,109,97,105,110,16,0,24,35,108,99,95,119,101,98,97,112,112,67,111,111,107,105,101,81,117,101,115,116,105,111,110,16,0,24,35,108,99,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,16,35,108,100,67,111,111,107,105,101,67,111,110,102,105,114,109,16,0,17,35,108,100,95,112,114,105,118,97,99,121,95,112,111,112,117,112,16,0,10,35,108,100,99,119,101,98,45,99,110,16,0,22,35,108,100,100,119,45,99,111,111,107,105,101,45,109,111,100,97,108,45,98,111,120,16,0,12,35,108,100,110,107,45,99,111,111,107,105,101,16,0,13,35,108,101,103,97,108,45,99,111,111,107,105,101,16,0,19,35,108,101,103,97,108,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,11,35,108,101,103,97,108,76,97,121,101,114,16,0,18,35,108,101,103,97,108,78,111,116,105,99,101,67,111,111,107,105,101,16,0,18,35,108,101,103,97,108,78,111,116,105,99,101,72,101,97,100,101,114,16,0,23,35,108,101,103,97,108,78,111,116,105,102,105,99,97,116,105,111,110,69,108,116,73,100,16,0,8,35,108,101,103,97,108,85,69,16,0,20,35,108,101,103,97,108,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,20,35,108,101,103,97,108,95,99,111,111,107,105,101,95,104,111,108,100,101,114,16,0,21,35,108,101,103,97,108,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,16,0,13,35,108,101,103,97,108,95,110,111,116,105,99,101,16,0,21,35,108,101,103,97,108,95,112,111,108,105,99,121,95,99,111,111,107,105,101,115,16,0,15,35,108,101,103,97,108,98,97,114,46,108,101,103,97,108,16,0,12,35,108,101,103,97,108,99,111,111,107,105,101,16,0,27,35,108,101,103,97,108,105,110,99,108,117,100,101,45,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,25,35,108,101,103,97,108,112,108,117,115,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,9,35,108,101,103,99,111,111,107,105,16,0,19,35,108,101,103,105,115,108,97,116,105,111,110,95,99,111,111,107,105,101,16,0,32,35,108,101,109,109,67,111,111,107,105,101,67,111,110,116,114,111,108,68,105,118,67,111,110,116,97,105,110,101,114,66,71,16,0,25,35,108,101,109,109,67,111,111,107,105,101,74,115,68,105,118,67,111,110,116,97,105,110,101,114,16,0,21,35,108,101,114,117,109,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,12,35,108,101,115,95,99,111,111,107,105,101,115,16,0,20,35,108,101,120,97,114,45,97,99,99,101,112,116,45,99,111,111,107,105,101,16,0,19,35,108,101,120,105,115,110,101,120,105,115,45,99,111,111,107,105,101,115,16,0,19,35,108,101,120,116,114,111,95,99,111,111,107,105,101,115,45,98,97,114,16,0,11,35,108,101,121,67,111,111,107,105,101,115,16,0,10,35,108,101,121,99,111,111,107,105,101,16,0,11,35,108,101,121,99,111,111,107,105,101,115,16,0,13,35,108,101,121,100,101,99,111,111,107,105,101,115,16,0,14,35,108,102,95,99,111,111,107,105,101,95,109,115,103,16,0,9,35,108,103,112,100,45,98,97,114,16,0,18,35,108,103,112,100,45,99,111,110,102,105,114,109,97,116,105,111,110,16,0,20,35,108,103,112,100,45,99,111,110,115,101,110,116,45,119,105,100,103,101,116,16,0,12,35,108,103,112,100,45,99,111,111,107,105,101,16,0,26,35,108,103,112,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,106,97,110,101,108,97,16,0,20,35,108,103,112,100,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,13,35,108,103,112,100,45,109,101,115,115,97,103,101,16,0,11,35,108,103,112,100,45,112,111,112,117,112,16,0,13,35,108,103,112,100,45,119,114,97,112,112,101,114,16,0,10,35,108,103,112,100,80,111,112,117,112,16,0,12,35,108,103,112,100,95,100,105,97,108,111,103,16,0,12,35,108,103,112,100,95,111,112,116,97,108,108,16,0,18,35,108,104,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,16,0,18,35,108,105,103,104,116,95,99,111,111,107,105,101,115,95,98,97,114,16,0,14,35,108,105,103,104,116,98,111,120,45,99,110,105,108,16,0,14,35,108,105,103,104,116,98,111,120,45,103,100,112,114,16,0,13,35,108,105,110,99,111,115,99,111,111,107,105,101,16,0,15,35,108,105,110,101,67,111,111,107,105,101,73,110,102,111,16,0,23,35,108,105,115,97,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,16,0,14,35,108,105,115,116,97,45,99,111,111,107,105,101,115,16,0,24,35,108,105,116,101,115,112,111,116,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,12,35,108,108,67,111,111,107,105,101,66,97,114,16,0,21,35,108,108,97,114,45,108,111,103,105,110,45,112,97,103,101,45,103,100,112,114,16,0,13,35,108,108,100,99,111,111,107,105,101,112,111,112,16,0,17,35,108,109,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,22,35,108,109,102,95,112,114,105,118,97,99,121,95,99,111,111,107,105,101,98,97,114,16,0,12,35,108,110,67,111,111,107,105,101,66,97,114,16,0,28,35,108,110,107,67,101,114,114,97,114,73,110,102,111,114,109,97,99,105,111,110,67,111,111,107,105,101,115,16,0,18,35,108,111,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,17,35,108,111,97,100,67,111,111,107,105,101,80,111,108,105,99,121,16,0,22,35,108,111,103,111,110,45,115,110,105,112,112,101,116,45,105,99,111,111,107,105,101,16,0,12,35,108,111,105,45,99,111,111,107,105,101,115,16,0,15,35,108,111,105,95,117,101,95,99,111,111,107,105,101,101,16,0,14,35,108,111,114,101,97,108,45,99,111,111,107,105,101,16,0,16,35,108,112,95,101,117,95,99,111,110,116,97,105,110,101,114,16,0,10,35,108,112,99,111,111,107,105,101,115,16,0,9,35,108,113,100,45,103,100,112,114,16,0,13,35,108,115,99,111,111,107,105,101,115,77,97,120,16,0,15,35,108,115,112,95,99,111,111,107,105,101,95,98,97,114,16,0,18,35,108,115,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,22,35,108,115,119,45,99,111,111,107,105,101,45,98,111,116,116,111,109,45,98,111,120,16,0,19,35,108,117,105,65,99,99,101,112,116,67,111,111,107,105,101,66,97,114,16,0,18,35,108,118,112,95,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,29,35,108,119,99,110,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,16,0,25,35,108,119,115,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,111,117,116,101,114,16,0,10,35,109,45,99,111,110,115,101,110,116,16,0,9,35,109,45,99,111,111,107,105,101,16,0,14,35,109,45,99,111,111,107,105,101,45,105,110,102,111,16,0,17,35,109,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,15,35,109,45,99,111,111,107,105,101,110,111,116,105,99,101,16,0,20,35,109,45,103,108,111,98,97,108,45,100,105,115,99,108,97,105,109,101,114,16,0,22,35,109,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,16,0,14,35,109,51,49,67,111,111,107,105,101,73,110,102,111,16,0,8,35,109,67,67,70,111,114,109,16,0,9,35,109,67,111,111,107,105,101,115,16,0,15,35,109,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,23,35,109,95,119,99,116,114,108,70,73,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,17,35,109,97,45,99,109,112,45,99,111,110,116,97,105,110,101,114,16,0,13,35,109,97,67,111,111,107,105,101,73,110,102,111,16,0,23,35,109,97,98,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,16,0,26,35,109,97,99,99,104,105,97,116,111,95,99,111,111,107,105,101,115,95,119,114,97,112,112,101,114,16,0,25,35,109,97,99,104,101,116,101,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,9,35,109,97,99,111,111,107,105,101,16,0,31,35,109,97,100,45,99,108,105,101,110,116,45,103,100,112,114,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,25,35,109,97,103,101,99,111,109,112,45,99,111,111,107,105,101,45,116,101,109,112,108,97,116,101,16,0,27,35,109,97,103,101,115,116,97,116,45,99,111,111,107,105,101,45,108,97,119,45,98,97,110,110,101,114,16,0,19,35,109,97,105,110,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,19,35,109,97,105,110,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,30,35,109,97,105,110,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,18,35,109,97,105,110,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,13,35,109,97,105,110,45,112,114,105,118,97,99,121,16,0,21,35,109,97,105,110,67,111,110,116,97,105,110,101,114,67,111,111,107,105,101,115,16,0,17,35,109,97,105,110,67,111,111,107,105,101,66,97,110,110,101,114,16,0,14,35,109,97,105,110,67,111,111,107,105,101,66,97,114,16,0,20,35,109,97,105,110,68,105,118,76,101,103,97,99,121,67,111,111,107,105,101,16,0,15,35,109,97,105,110,80,114,105,118,97,99,121,68,105,118,16,0,21,35,109,97,105,110,84,114,97,99,107,105,110,103,79,112,116,105,110,66,111,120,16,0,24,35,109,97,107,115,105,109,101,114,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,15,35,109,97,108,105,104,117,45,99,111,111,107,105,101,115,16,0,15,35,109,97,110,103,101,114,45,99,111,111,107,105,101,115,16,0,15,35,109,97,111,102,114,101,101,95,99,111,111,107,105,101,16,0,11,35,109,97,112,112,99,111,111,107,105,101,16,0,14,35,109,97,114,97,99,111,111,107,105,101,98,111,120,16,0,11,35,109,97,114,99,111,67,105,118,105,108,16,0,13,35,109,97,115,107,95,99,111,111,107,105,101,115,16,0,27,35,109,97,115,116,101,114,112,97,103,101,95,100,105,118,67,111,111,107,105,101,66,97,110,110,101,114,16,0,13,35,109,97,116,45,101,117,99,111,111,107,105,101,16,0,15,35,109,97,116,111,109,111,45,99,111,110,115,101,110,116,16,0,17,35,109,97,116,111,109,111,105,110,102,111,45,102,108,121,105,110,16,0,18,35,109,97,116,114,105,120,45,99,111,111,107,105,101,45,98,97,114,16,0,8,35,109,98,95,103,100,112,114,16,0,16,35,109,98,95,103,100,112,114,95,119,97,114,110,105,110,103,16,0,17,35,109,98,101,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,19,35,109,98,105,101,110,116,67,111,111,107,105,101,78,111,116,105,99,101,16,0,17,35,109,98,109,45,99,111,111,107,105,101,111,107,95,98,97,114,16,0,21,35,109,98,109,45,101,117,95,99,111,111,107,105,101,95,110,111,116,105,102,121,16,0,10,35,109,98,109,99,111,111,107,105,101,16,0,9,35,109,99,67,111,111,107,105,101,16,0,20,35,109,99,67,111,111,107,105,101,115,76,97,119,77,101,115,115,97,103,101,16,0,19,35,109,99,99,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,17,35,109,99,100,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,19,35,109,99,104,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,18,35,109,99,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,12,35,109,99,111,45,99,111,110,115,101,110,116,16,0,8,35,109,99,111,111,107,105,101,16,0,20,35,109,100,45,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,16,0,8,35,109,100,45,108,103,112,100,16,0,28,35,109,100,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,16,0,10,35,109,100,118,67,111,111,107,105,101,16,0,15,35,109,101,95,99,111,111,107,105,101,95,122,111,110,101,16,0,15,35,109,101,107,111,114,109,97,67,111,110,115,101,110,116,16,0,16,35,109,101,110,115,97,106,101,45,99,111,111,107,105,101,115,16,0,14,35,109,101,110,115,97,106,101,67,111,111,107,105,101,16,0,15,35,109,101,110,115,97,106,101,67,111,111,107,105,101,115,16,0,23,35,109,101,110,115,97,106,101,95,97,99,101,112,116,97,95,99,111,111,107,105,101,115,16,0,24,35,109,101,110,115,97,106,101,95,97,99,101,112,116,97,114,95,99,111,111,107,105,101,115,16,0,16,35,109,101,110,115,97,106,101,95,99,111,111,107,105,101,115,16,0,11,35,109,101,110,115,99,111,111,107,105,101,16,0,16,35,109,101,110,116,105,111,110,45,99,111,111,107,105,101,115,16,0,15,35,109,101,110,116,105,111,110,95,99,111,111,107,105,101,16,0,16,35,109,101,110,116,105,111,110,95,99,111,111,107,105,101,115,16,0,17,35,109,101,110,116,105,111,110,115,45,99,111,111,107,105,101,115,16,0,14,35,109,101,115,115,97,103,101,45,45,99,110,105,108,16,0,15,35,109,101,115,115,97,103,101,45,99,111,111,107,105,101,16,0,23,35,109,101,115,115,97,103,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,16,35,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,16,0,20,35,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,45,98,97,114,16,0,12,35,109,101,115,115,97,103,101,67,110,105,108,16,0,14,35,109,101,115,115,97,103,101,67,111,111,107,105,101,16,0,20,35,109,101,115,115,97,103,101,67,111,111,107,105,101,80,111,108,105,99,121,16,0,33,35,109,101,115,115,97,103,101,73,68,95,117,115,101,114,95,105,110,102,111,95,99,111,111,107,105,101,80,111,108,105,99,121,16,0,15,35,109,101,115,115,97,103,101,95,99,111,111,107,105,101,16,0,27,35,109,101,115,115,97,103,101,95,99,111,111,107,105,101,95,105,110,102,111,95,97,99,99,101,112,116,16,0,16,35,109,101,115,115,97,103,101,95,99,111,111,107,105,101,115,16,0,13,35,109,101,115,115,97,103,101,95,114,103,112,100,16,0,15,35,109,101,115,115,97,103,101,99,111,111,107,105,101,115,16,0,17,35,109,101,115,115,97,103,103,105,111,95,99,111,111,107,105,101,16,0,18,35,109,101,115,115,97,103,103,105,111,95,99,111,111,107,105,101,115,16,0,11,35,109,101,115,115,99,111,111,107,105,101,16,0,23,35,109,101,115,115,101,110,103,101,114,83,112,101,99,105,97,108,67,111,111,107,105,101,16,0,15,35,109,101,116,97,67,105,97,115,116,101,99,122,107,111,16,0,22,35,109,101,116,101,111,114,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,18,35,109,101,116,105,115,67,111,111,107,105,101,84,111,112,66,97,114,16,0,25,35,109,101,116,114,111,95,99,111,111,107,105,101,95,99,104,111,105,99,101,95,105,110,102,111,16,0,19,35,109,101,118,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,14,35,109,102,95,99,111,111,107,105,101,95,98,111,120,16,0,9,35,109,102,110,45,103,100,112,114,16,0,10,35,109,103,45,99,111,111,107,105,101,16,0,14,35,109,103,45,117,115,101,114,99,111,111,107,105,101,16,0,10,35,109,103,99,111,111,107,105,101,115,16,0,14,35,109,104,112,45,99,108,46,109,104,112,45,99,108,16,0,29,35,109,105,99,114,111,100,105,103,105,116,97,108,45,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,16,0,28,35,109,105,99,114,111,100,105,103,105,116,97,108,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,26,35,109,105,110,100,109,101,100,105,97,95,99,111,111,107,105,101,95,97,99,99,101,112,116,101,100,16,0,12,35,109,105,110,105,99,99,111,111,107,105,101,16,0,17,35,109,105,110,111,99,45,99,111,111,107,105,101,45,98,97,114,16,0,17,35,109,105,111,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,15,35,109,105,114,118,97,110,111,115,99,111,111,107,105,101,16,0,11,35,109,105,115,99,111,111,107,105,101,115,16,0,15,35,109,105,115,101,117,99,111,111,107,105,101,108,97,119,16,0,16,35,109,105,115,115,97,116,103,101,95,99,111,111,107,105,101,16,0,11,35,109,105,120,99,111,111,107,105,101,115,16,0,18,35,109,106,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,10,35,109,107,45,99,111,111,107,105,101,16,0,16,35,109,107,67,111,111,107,105,101,66,97,114,45,98,97,114,16,0,12,35,109,107,116,103,95,67,111,111,107,105,101,16,0,17,35,109,107,116,103,95,67,111,111,107,105,101,95,87,114,97,112,16,0,20,35,109,107,116,122,114,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,15,35,109,108,85,115,105,110,103,67,111,111,107,105,101,115,16,0,15,35,109,108,97,45,103,100,112,114,45,108,105,103,104,116,16,0,15,35,109,109,45,99,99,112,97,45,110,111,116,105,99,101,16,0,19,35,109,109,45,99,111,110,116,101,110,116,45,99,111,111,107,105,101,115,16,0,26,35,109,109,77,83,45,45,98,111,116,116,111,109,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,19,35,109,109,77,83,45,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,20,35,109,109,95,99,99,95,109,111,100,97,108,95,111,118,101,114,108,97,121,16,0,18,35,109,109,95,116,48,55,95,99,111,111,107,105,101,95,98,111,120,16,0,14,35,109,109,109,109,109,45,99,111,111,107,105,101,115,16,0,22,35,109,109,115,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,15,35,109,109,115,67,111,111,107,105,101,76,97,121,101,114,16,0,21,35,109,110,95,99,111,111,107,105,101,105,110,102,111,95,104,111,108,100,101,114,16,0,15,35,109,110,100,45,99,111,111,107,105,101,45,98,97,114,16,0,24,35,109,110,112,95,99,111,111,107,105,101,95,99,111,110,102,105,114,109,97,116,105,111,110,16,0,24,35,109,110,116,115,105,110,102,111,116,101,99,104,45,99,111,111,107,105,101,45,98,97,114,16,0,17,35,109,111,98,105,85,115,105,110,103,67,111,111,107,105,101,115,16,0,25,35,109,111,98,105,108,101,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,19,35,109,111,98,105,108,101,45,112,114,105,118,97,99,121,45,108,97,119,16,0,21,35,109,111,98,105,108,101,45,115,116,105,99,107,121,45,98,111,116,116,111,109,16,0,14,35,109,111,100,45,99,111,111,107,105,101,66,97,114,16,0,21,35,109,111,100,45,99,111,111,107,105,101,115,45,119,97,114,114,110,105,110,103,16,0,19,35,109,111,100,45,100,97,114,109,97,115,45,99,111,111,107,105,101,115,16,0,18,35,109,111,100,45,101,112,114,105,118,97,99,121,111,112,116,105,110,16,0,23,35,109,111,100,45,101,117,45,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,16,0,19,35,109,111,100,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,16,0,28,35,109,111,100,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,110,110,101,114,45,49,16,0,24,35,109,111,100,45,115,118,109,98,45,99,111,111,107,105,101,45,108,97,121,101,114,45,49,16,0,19,35,109,111,100,80,114,105,118,97,99,121,83,101,116,116,105,110,103,115,16,0,11,35,109,111,100,95,99,111,111,107,105,101,16,0,13,35,109,111,100,95,99,111,111,107,105,101,95,99,16,0,19,35,109,111,100,95,103,100,112,114,95,99,111,110,116,97,105,110,101,114,16,0,19,35,109,111,100,97,108,45,97,118,105,115,111,45,99,111,111,107,105,101,16,0,20,35,109,111,100,97,108,45,97,118,105,115,111,45,99,111,111,107,105,101,115,16,0,20,35,109,111,100,97,108,45,98,97,110,110,101,114,99,111,111,107,105,101,115,16,0,24,35,109,111,100,97,108,45,99,97,114,100,45,101,109,97,105,108,45,110,111,116,105,99,101,16,0,13,35,109,111,100,97,108,45,99,111,107,105,101,115,16,0,24,35,109,111,100,97,108,45,99,111,111,107,105,101,45,98,97,99,107,103,114,111,117,110,100,16,0,21,35,109,111,100,97,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,18,35,109,111,100,97,108,45,99,111,111,107,105,101,45,105,110,102,111,16,0,17,35,109,111,100,97,108,45,99,111,111,107,105,101,45,108,97,119,16,0,17,35,109,111,100,97,108,45,99,111,111,107,105,101,45,109,97,110,16,0,21,35,109,111,100,97,108,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,16,0,23,35,109,111,100,97,108,45,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,16,0,23,35,109,111,100,97,108,45,99,111,111,107,105,101,115,45,98,97,99,107,100,114,111,112,16,0,22,35,109,111,100,97,108,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,16,0,22,35,109,111,100,97,108,45,99,111,111,107,105,101,115,45,103,101,110,101,114,97,108,16,0,21,35,109,111,100,97,108,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,16,0,20,35,109,111,100,97,108,45,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,11,35,109,111,100,97,108,45,103,100,112,114,16,0,18,35,109,111,100,97,108,45,108,101,121,45,99,111,111,107,105,101,115,16,0,16,35,109,111,100,97,108,45,114,111,100,111,45,105,110,102,111,16,0,22,35,109,111,100,97,108,45,114,111,111,116,32,46,82,103,112,100,80,111,112,117,112,16,0,18,35,109,111,100,97,108,65,99,101,112,116,67,111,111,107,105,101,115,16,0,24,35,109,111,100,97,108,67,111,111,107,46,109,111,115,116,114,97,114,45,109,111,100,97,108,16,0,18,35,109,111,100,97,108,67,111,111,107,105,101,66,97,110,110,101,114,16,0,16,35,109,111,100,97,108,67,111,111,107,105,101,67,111,109,112,16,0,19,35,109,111,100,97,108,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,21,35,109,111,100,97,108,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,10,35,109,111,100,97,108,71,68,80,82,16,0,10,35,109,111,100,97,108,76,71,80,68,16,0,24,35,109,111,100,97,108,83,116,97,116,105,99,65,118,105,115,111,67,111,111,107,105,101,115,16,0,13,35,109,111,100,97,108,95,99,111,111,107,105,101,16,0,18,35,109,111,100,97,108,95,99,111,111,107,105,101,45,109,97,115,107,16,0,34,35,109,111,100,97,108,95,99,111,111,107,105,101,115,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,16,0,11,35,109,111,100,97,108,95,108,103,112,100,16,0,13,35,109,111,100,97,108,98,97,107,103,100,112,114,16,0,13,35,109,111,100,97,108,99,111,111,107,105,101,115,16,0,10,35,109,111,100,97,108,114,103,112,100,16,0,27,35,109,111,100,97,108,115,111,117,114,99,101,95,112,114,105,118,97,99,121,95,119,105,100,103,101,116,16,0,21,35,109,111,100,115,115,103,100,112,114,95,99,111,111,107,105,101,95,98,97,114,16,0,21,35,109,111,100,117,108,101,45,97,98,111,117,116,45,99,111,111,107,105,101,115,16,0,15,35,109,111,100,117,108,101,45,99,111,111,107,105,101,115,16,0,15,35,109,111,100,117,108,101,95,99,111,111,107,105,101,115,16,0,12,35,109,111,110,105,116,99,111,111,107,105,101,16,0,18,35,109,111,111,109,111,111,99,111,111,107,105,101,97,108,101,114,116,16,0,13,35,109,111,111,110,45,99,111,111,107,105,101,115,16,0,27,35,109,111,111,118,101,95,103,100,112,114,95,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,16,0,24,35,109,111,111,118,101,95,103,100,112,114,95,99,111,111,107,105,101,95,109,111,100,97,108,16,0,38,35,109,111,111,118,101,95,103,100,112,114,95,115,97,118,101,95,112,111,112,117,112,95,115,101,116,116,105,110,103,115,95,98,117,116,116,111,110,16,0,17,35,109,111,114,112,104,45,99,111,111,107,105,101,45,98,97,114,16,0,12,35,109,111,115,99,97,99,111,111,107,105,101,16,0,20,35,109,111,115,116,114,97,114,95,97,99,101,112,116,99,111,111,107,105,101,16,0,23,35,109,111,116,111,45,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,16,0,16,35,109,111,116,111,114,115,67,111,111,107,105,101,77,115,103,16,0,23,35,109,111,119,95,99,111,111,107,105,101,95,105,110,102,111,95,100,105,97,108,111,103,16,0,19,35,109,112,45,109,105,115,99,45,99,111,111,107,105,101,45,98,97,114,16,0,10,35,109,112,95,99,111,111,107,105,101,16,0,17,35,109,112,99,95,99,111,111,107,105,101,95,105,110,116,114,111,16,0,16,35,109,112,115,45,99,111,111,107,105,101,45,104,105,110,116,16,0,10,35,109,114,99,111,111,99,107,105,101,16,0,18,35,109,114,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,16,35,109,114,118,67,111,111,107,105,101,66,97,110,110,101,114,16,0,21,35,109,114,119,95,99,111,111,107,105,101,108,97,119,95,98,97,110,110,101,114,16,0,17,35,109,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,25,35,109,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,17,35,109,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,16,35,109,115,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,9,35,109,115,67,111,111,107,105,101,16,0,13,35,109,115,95,99,111,111,107,105,101,95,111,107,16,0,22,35,109,115,99,99,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,11,35,109,115,99,99,66,97,110,110,101,114,16,0,11,35,109,115,103,45,99,111,111,107,105,101,16,0,21,35,109,115,103,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,109,115,103,45,99,111,111,107,105,101,45,108,101,118,101,108,48,16,0,19,35,109,115,103,45,99,111,111,107,105,101,45,116,97,103,103,97,114,101,16,0,12,35,109,115,103,45,99,111,111,107,105,101,115,16,0,15,35,109,115,103,45,108,118,45,99,111,111,107,105,101,115,16,0,10,35,109,115,103,67,111,111,107,105,101,16,0,11,35,109,115,103,67,111,111,107,105,101,115,16,0,19,35,109,115,103,67,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,9,35,109,115,103,95,76,71,80,68,16,0,11,35,109,115,103,95,99,111,111,107,105,101,16,0,12,35,109,115,103,95,99,111,111,107,105,101,115,16,0,17,35,109,115,103,95,99,111,111,107,105,101,115,95,102,98,111,120,16,0,15,35,109,115,103,98,111,120,95,99,111,111,107,105,101,115,16,0,10,35,109,115,103,99,111,111,107,105,101,16,0,11,35,109,115,103,99,111,111,107,105,101,115,16,0,17,35,109,115,103,101,120,112,97,110,100,99,111,111,107,105,101,115,16,0,10,35,109,115,105,99,111,111,107,105,101,16,0,18,35,109,115,112,98,95,97,108,101,114,116,95,99,111,111,107,105,101,16,0,12,35,109,115,114,95,99,111,111,107,105,101,115,16,0,17,35,109,115,115,45,108,101,103,97,108,45,98,97,110,110,101,114,16,0,21,35,109,115,115,103,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,16,0,12,35,109,115,116,109,45,99,111,111,107,105,101,16,0,25,35,109,116,45,99,111,111,107,105,101,45,109,97,105,110,45,99,111,110,116,97,105,110,101,114,16,0,17,35,109,116,50,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,20,35,109,116,98,110,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,16,35,109,116,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,24,35,109,116,118,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,12,35,109,116,118,45,99,111,111,107,105,101,115,16,0,13,35,109,117,109,97,45,99,111,111,107,105,101,115,16,0,19,35,109,118,111,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,17,35,109,119,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,16,35,109,120,119,95,114,103,112,100,95,99,111,111,107,105,101,16,0,35,35,109,121,45,97,103,105,108,101,45,112,114,105,118,97,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,45,97,114,101,97,16,0,16,35,109,121,45,98,97,114,114,97,99,111,111,107,105,101,115,16,0,19,35,109,121,45,99,111,111,107,105,101,95,95,99,111,110,115,101,110,116,16,0,17,35,109,121,45,99,111,111,107,105,101,95,95,112,111,112,117,112,16,0,17,35,109,121,45,99,111,111,107,105,101,115,45,97,108,101,114,116,16,0,16,35,109,121,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,14,35,109,121,67,111,111,107,105,101,77,111,100,97,108,16,0,20,35,109,121,67,117,115,116,111,109,67,111,111,107,105,101,76,97,121,101,114,16,0,16,35,109,121,76,111,97,100,101,114,67,111,111,107,105,101,115,16,0,16,35,109,121,77,111,100,97,108,46,99,99,77,111,100,97,108,16,0,14,35,109,121,77,111,100,97,108,67,111,111,107,105,101,16,0,15,35,109,121,77,111,100,97,108,67,111,111,107,105,101,115,16,0,12,35,109,121,77,111,100,97,108,114,103,112,100,16,0,14,35,109,121,85,115,101,114,67,111,110,115,101,110,116,16,0,27,35,109,121,98,121,116,101,95,109,101,100,105,97,95,99,111,111,107,105,101,104,105,110,119,101,105,115,16,0,14,35,109,121,99,109,112,65,108,101,114,116,66,105,103,16,0,10,35,109,121,99,109,112,82,111,111,116,16,0,9,35,109,121,99,111,111,107,105,101,16,0,23,35,109,121,99,111,111,107,105,101,95,108,111,97,100,101,114,95,119,105,110,100,111,119,16,0,12,35,109,121,99,111,111,107,105,101,98,97,114,16,0,12,35,109,121,99,111,111,107,105,101,116,105,112,16,0,22,35,109,121,104,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,98,111,120,16,0,15,35,109,121,109,111,100,97,108,95,99,111,111,107,105,101,16,0,18,35,109,122,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,16,0,18,35,109,122,95,103,101,110,101,114,105,99,79,118,101,114,108,97,121,16,0,16,35,110,45,112,111,112,117,112,45,99,111,111,107,105,101,115,16,0,16,35,110,45,112,111,112,117,112,45,112,114,105,118,97,99,121,16,0,30,35,110,50,103,95,98,111,120,95,99,111,111,107,105,101,95,97,108,101,114,116,101,95,109,101,115,115,97,103,101,16,0,8,35,110,67,111,111,107,105,101,16,0,14,35,110,95,99,111,111,107,105,101,95,105,110,102,111,16,0,13,35,110,97,99,99,45,111,118,101,114,108,97,121,16,0,22,35,110,97,102,101,116,115,95,105,109,112,114,105,110,116,45,99,111,111,107,105,101,16,0,26,35,110,97,109,101,45,103,97,45,99,111,111,107,105,101,45,97,99,99,101,112,116,45,98,97,114,16,0,11,35,110,97,118,45,99,111,111,107,105,101,16,0,10,35,110,97,118,67,111,111,107,105,101,16,0,11,35,110,97,118,67,111,111,107,105,101,115,16,0,11,35,110,97,118,95,99,111,111,107,105,101,16,0,14,35,110,97,118,98,97,114,45,99,111,111,107,105,101,16,0,15,35,110,97,118,98,97,114,45,99,111,111,107,105,101,115,16,0,15,35,110,97,118,98,97,114,45,112,114,105,118,97,99,121,16,0,13,35,110,97,118,98,97,114,67,111,111,107,105,101,16,0,19,35,110,97,118,118,101,45,99,111,111,107,105,101,45,98,108,111,99,107,16,0,16,35,110,98,99,67,111,111,107,105,101,67,104,111,105,99,101,16,0,14,35,110,99,67,111,111,107,105,101,65,108,101,114,116,16,0,11,35,110,99,82,103,112,100,82,111,111,116,16,0,22,35,110,99,97,45,99,111,111,107,105,101,97,99,99,101,112,116,45,108,105,110,101,16,0,19,35,110,99,108,45,99,111,111,107,105,101,45,111,112,116,45,111,117,116,16,0,16,35,110,100,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,27,35,110,101,98,117,108,97,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,110,101,102,111,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,110,101,111,95,99,111,111,107,105,101,95,97,100,118,105,99,101,16,0,15,35,110,101,114,111,108,105,115,67,111,111,107,105,101,115,16,0,22,35,110,101,115,116,105,103,111,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,21,35,110,101,116,103,114,97,102,95,99,111,111,107,105,101,95,97,108,101,114,116,16,0,24,35,110,101,116,105,114,115,95,116,111,112,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,12,35,110,101,116,121,95,99,111,111,107,105,101,16,0,11,35,110,101,119,45,99,111,111,107,105,101,16,0,12,35,110,101,119,45,99,111,111,107,105,101,115,16,0,26,35,110,101,119,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,66,97,110,110,101,114,16,0,14,35,110,101,119,67,111,111,107,105,101,72,101,97,100,16,0,27,35,110,101,119,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,76,97,121,101,114,16,0,16,35,110,101,119,67,111,111,107,105,101,115,65,108,101,114,116,16,0,17,35,110,101,119,67,111,111,107,105,101,115,66,97,110,110,101,114,16,0,17,35,110,101,119,80,111,108,105,99,121,87,114,97,112,112,101,114,16,0,12,35,110,101,119,95,99,111,111,107,105,101,115,16,0,12,35,110,101,119,99,111,111,107,105,101,95,120,16,0,16,35,110,101,119,99,111,111,107,105,101,98,97,110,110,101,114,16,0,19,35,110,101,120,116,95,97,99,99,101,112,116,95,99,111,111,107,105,101,16,0,11,35,110,101,120,116,99,111,111,107,105,101,16,0,20,35,110,101,120,116,108,101,118,101,108,115,67,111,111,107,105,101,66,111,120,16,0,8,35,110,102,80,80,66,97,114,16,0,16,35,110,102,95,99,111,111,107,105,101,98,97,110,110,101,114,16,0,25,35,110,102,97,45,99,111,111,107,105,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,19,35,110,102,98,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,14,35,110,102,99,67,111,111,107,105,101,78,111,116,101,16,0,20,35,110,102,99,111,111,107,105,101,65,99,99,101,112,116,77,111,100,97,108,16,0,30,35,110,103,101,95,98,111,120,95,99,111,111,107,105,101,95,97,108,101,114,116,101,95,109,101,115,115,97,103,101,16,0,25,35,110,103,111,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,30,35,110,103,111,95,98,111,120,95,99,111,111,107,105,101,95,97,108,101,114,116,101,95,109,101,115,115,97,103,101,16,0,26,35,110,104,45,110,101,116,104,45,103,100,112,114,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,18,35,110,104,109,45,99,111,111,107,105,101,45,110,111,116,105,102,121,16,0,25,35,110,105,98,105,114,117,109,97,105,108,95,99,111,111,107,105,101,95,97,100,118,105,99,101,16,0,11,35,110,105,109,103,114,111,119,108,101,114,16,0,18,35,110,107,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,26,35,110,107,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,95,109,101,115,115,97,103,101,16,0,24,35,110,108,95,105,100,95,99,111,111,107,105,101,45,45,99,111,110,116,97,105,110,101,114,16,0,12,35,110,108,100,95,99,111,111,107,105,101,115,16,0,17,35,110,109,45,99,111,111,107,105,101,87,114,97,112,112,101,114,16,0,10,35,110,111,45,99,111,111,107,105,101,16,0,21,35,110,111,45,99,111,111,107,105,101,45,100,111,111,114,107,101,101,112,101,114,16,0,20,35,110,111,67,111,110,115,101,110,116,65,108,101,114,116,77,111,100,97,108,16,0,9,35,110,111,99,111,111,107,105,101,16,0,14,35,110,111,99,111,111,107,105,101,97,107,116,105,118,16,0,21,35,110,111,108,105,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,34,35,110,111,110,45,98,108,111,99,107,105,110,103,45,99,111,110,115,101,110,116,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,110,111,114,100,105,99,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,115,16,0,18,35,110,111,114,105,102,105,99,97,114,101,95,99,111,111,107,105,101,16,0,17,35,110,111,114,109,95,99,111,111,107,105,101,95,110,111,116,101,16,0,13,35,110,111,114,109,95,99,111,111,107,105,101,115,16,0,12,35,110,111,114,109,97,116,105,118,97,69,85,16,0,20,35,110,111,116,65,103,114,101,101,100,70,111,114,67,111,111,107,105,101,115,16,0,11,35,110,111,116,97,67,111,111,107,105,101,16,0,13,35,110,111,116,97,95,99,111,111,107,105,101,115,16,0,20,35,110,111,116,97,116,101,107,112,108,95,99,111,111,107,105,101,108,97,119,16,0,14,35,110,111,116,101,79,110,67,111,111,107,105,101,115,16,0,12,35,110,111,116,101,95,99,111,111,107,105,101,16,0,13,35,110,111,116,101,115,99,111,111,107,105,101,115,16,0,15,35,110,111,116,105,99,101,45,45,99,111,111,107,105,101,16,0,12,35,110,111,116,105,99,101,45,99,111,111,107,16,0,14,35,110,111,116,105,99,101,45,99,111,111,107,105,101,16,0,20,35,110,111,116,105,99,101,45,99,111,111,107,105,101,45,98,108,111,99,107,16,0,25,35,110,111,116,105,99,101,45,99,111,111,107,105,101,45,98,108,111,99,107,45,105,110,102,111,16,0,22,35,110,111,116,105,99,101,45,99,111,111,107,105,101,45,99,111,110,116,101,110,116,16,0,21,35,110,111,116,105,99,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,26,35,110,111,116,105,99,101,45,99,111,111,107,105,101,45,112,114,101,102,101,114,101,110,99,101,115,16,0,15,35,110,111,116,105,99,101,45,99,111,111,107,105,101,115,16,0,15,35,110,111,116,105,99,101,46,99,111,111,107,105,101,115,16,0,19,35,110,111,116,105,99,101,65,98,111,117,116,67,111,111,107,105,101,115,16,0,14,35,110,111,116,105,99,101,67,111,111,107,105,101,115,16,0,12,35,110,111,116,105,99,101,80,111,112,117,112,16,0,14,35,110,111,116,105,99,101,80,114,105,118,97,99,121,16,0,12,35,110,111,116,105,99,101,95,99,110,105,108,16,0,15,35,110,111,116,105,99,101,95,112,114,105,118,97,99,121,16,0,15,35,110,111,116,105,99,101,95,118,105,115,105,116,111,114,16,0,30,35,110,111,116,105,99,101,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,97,114,110,105,110,103,16,0,15,35,110,111,116,105,102,45,45,112,114,105,118,97,99,121,16,0,21,35,110,111,116,105,102,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,12,35,110,111,116,105,102,67,111,111,107,105,101,16,0,17,35,110,111,116,105,102,105,99,97,95,99,111,111,107,105,101,115,16,0,20,35,110,111,116,105,102,105,99,97,99,105,111,45,99,111,111,107,105,101,115,16,0,29,35,110,111,116,105,102,105,99,97,99,105,111,110,95,109,101,110,115,97,106,101,95,99,111,111,107,105,101,115,16,0,19,35,110,111,116,105,102,105,99,97,114,101,45,99,111,111,107,105,101,115,16,0,26,35,110,111,116,105,102,105,99,97,116,105,111,110,45,97,108,108,111,119,67,111,111,107,105,101,115,16,0,20,35,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,16,0,21,35,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,115,16,0,28,35,110,111,116,105,102,105,99,97,116,105,111,110,66,111,120,67,111,111,107,105,101,115,85,115,97,103,101,16,0,20,35,110,111,116,105,102,105,99,97,116,105,111,110,67,111,111,107,105,101,115,16,0,22,35,110,111,116,105,102,105,99,97,116,105,111,110,95,52,99,111,111,107,105,101,115,16,0,21,35,110,111,116,105,102,105,99,97,116,105,111,110,95,95,99,111,111,107,105,101,16,0,20,35,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,111,107,105,101,16,0,21,35,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,111,107,105,101,115,16,0,27,35,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,111,107,105,101,119,97,114,110,105,110,103,16,0,23,35,110,111,116,105,102,105,99,97,116,105,111,110,95,111,102,95,99,111,111,107,105,101,16,0,19,35,110,111,116,105,102,105,99,97,116,105,111,110,99,111,111,107,105,101,16,0,46,35,110,111,116,105,102,121,45,98,97,114,91,100,97,116,97,45,99,111,111,107,105,101,45,110,97,109,101,61,34,110,111,116,105,102,121,45,99,111,111,107,105,101,115,34,93,16,0,21,35,110,111,116,105,102,121,45,112,111,108,105,99,121,45,99,111,111,107,105,101,16,0,14,35,110,111,116,105,102,121,46,99,111,111,107,105,101,16,0,13,35,110,111,116,105,102,121,67,111,111,107,105,101,16,0,16,35,110,111,116,105,102,121,67,111,111,107,105,101,66,111,116,16,0,14,35,110,111,116,105,102,121,67,111,111,107,105,101,115,16,0,14,35,110,111,116,105,102,121,95,99,111,111,107,105,101,16,0,14,35,110,111,116,105,102,121,99,111,111,107,105,101,115,16,0,10,35,110,111,116,121,45,99,110,105,108,16,0,11,35,110,111,116,121,67,111,111,107,105,101,16,0,25,35,110,111,118,95,112,111,112,117,112,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,16,0,23,35,110,111,118,97,95,99,111,111,107,105,101,95,100,105,115,99,108,97,105,109,101,114,16,0,23,35,110,111,118,97,98,108,111,103,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,110,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,14,35,110,112,45,103,100,112,114,45,109,111,100,97,108,16,0,14,35,110,112,95,99,111,111,107,105,101,95,108,97,119,16,0,16,35,110,112,109,67,111,111,107,105,101,66,97,110,110,101,114,16,0,20,35,110,112,111,95,99,99,95,110,111,116,105,102,105,99,97,116,105,111,110,16,0,28,35,110,112,111,95,99,99,95,110,111,116,105,102,105,99,97,116,105,111,110,95,119,114,97,112,112,101,114,16,0,14,35,110,113,95,99,110,105,108,98,97,110,110,101,114,16,0,17,35,110,113,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,19,35,110,114,100,113,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,17,35,110,115,45,99,111,111,107,105,101,45,98,117,116,116,111,110,16,0,18,35,110,115,111,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,22,35,110,116,99,99,91,100,97,116,97,45,99,111,111,107,105,101,45,98,97,114,93,16,0,38,35,110,117,95,98,111,116,116,111,109,95,97,108,101,114,116,95,100,105,97,108,111,103,95,97,99,99,101,112,116,95,99,111,111,107,105,101,115,16,0,18,35,110,117,107,45,99,111,111,107,105,101,77,101,115,115,97,103,101,16,0,23,35,110,117,114,95,99,119,95,99,111,111,107,105,101,115,95,111,118,101,114,108,97,121,16,0,21,35,110,117,114,95,99,119,95,99,111,111,107,105,101,115,95,112,111,112,117,112,16,0,11,35,110,118,101,95,99,111,111,107,105,101,16,0,12,35,110,118,120,45,99,111,111,107,105,101,115,16,0,20,35,110,119,95,99,111,111,107,105,101,95,97,108,101,114,116,95,98,111,120,16,0,16,35,110,119,95,103,100,112,114,95,118,105,101,119,95,105,100,16,0,15,35,110,119,99,111,111,107,45,109,101,115,115,97,103,101,16,0,15,35,110,119,101,45,99,111,111,107,105,101,45,98,97,114,16,0,14,35,110,120,95,103,100,112,114,95,109,111,100,97,108,16,0,15,35,110,120,95,103,100,112,114,95,109,111,100,97,108,50,16,0,19,35,110,120,95,103,100,112,114,95,109,111,100,97,108,95,109,97,105,110,16,0,20,35,110,120,95,103,100,112,114,95,109,111,100,97,108,95,109,97,105,110,49,16,0,20,35,110,120,95,103,100,112,114,95,109,111,100,97,108,95,109,97,105,110,50,16,0,16,35,110,120,115,45,99,99,112,97,45,98,97,110,110,101,114,16,0,19,35,110,121,104,95,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,18,35,110,122,109,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,9,35,111,45,99,111,111,107,105,101,16,0,13,35,111,45,99,111,111,107,105,101,45,108,97,119,16,0,22,35,111,45,99,111,111,107,105,101,80,111,108,105,99,121,79,118,101,114,108,97,121,16,0,23,35,111,50,102,67,111,111,107,105,101,67,111,110,115,101,110,116,68,105,97,108,111,103,16,0,23,35,111,57,57,95,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,16,0,10,35,111,72,95,99,111,111,107,105,101,16,0,13,35,111,80,114,105,118,97,108,108,121,65,112,112,16,0,11,35,111,98,45,99,111,111,107,105,101,115,16,0,17,35,111,98,106,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,14,35,111,98,116,95,103,97,95,98,97,110,110,101,114,16,0,14,35,111,99,95,99,98,95,119,114,97,112,112,101,114,16,0,17,35,111,99,110,45,99,111,111,107,105,101,45,105,110,110,101,114,16,0,16,35,111,99,110,45,99,111,111,107,105,101,45,119,114,97,112,16,0,24,35,111,99,116,45,112,111,108,105,99,121,46,102,105,120,101,100,45,98,111,116,116,111,109,16,0,14,35,111,99,119,95,99,111,110,116,101,110,101,117,114,16,0,20,35,111,100,97,118,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,10,35,111,100,100,99,111,111,107,105,101,16,0,17,35,111,100,101,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,27,35,111,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,117,101,16,0,14,35,111,101,109,97,99,101,112,116,97,99,105,111,110,16,0,18,35,111,102,116,95,99,111,111,107,105,101,67,111,110,115,101,110,116,16,0,18,35,111,103,99,99,95,98,97,114,67,111,110,116,97,105,110,101,114,16,0,19,35,111,105,108,45,112,114,105,118,97,99,121,45,98,117,116,116,111,110,16,0,17,35,111,105,108,45,112,114,105,118,97,99,121,45,102,111,114,109,16,0,9,35,111,107,67,111,111,107,105,101,16,0,10,35,111,107,95,99,111,111,107,105,101,16,0,9,35,111,107,99,111,111,107,105,101,16,0,10,35,111,107,99,111,111,107,105,101,115,16,0,11,35,111,107,110,111,67,111,111,107,105,101,16,0,12,35,111,107,110,111,95,99,111,111,107,105,101,16,0,13,35,111,107,110,111,95,114,99,111,111,107,105,101,16,0,12,35,111,107,111,111,107,105,101,45,98,111,120,16,0,21,35,111,109,110,105,108,101,103,97,108,45,99,111,111,107,105,101,45,98,97,114,16,0,26,35,111,109,116,111,109,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,18,35,111,110,101,116,97,103,95,99,111,111,107,105,101,95,108,97,119,16,0,20,35,111,110,101,116,114,117,115,116,45,98,97,110,110,101,114,45,115,100,107,16,0,21,35,111,110,101,116,114,117,115,116,45,99,111,110,115,101,110,116,45,115,100,107,16,0,11,35,111,110,108,121,67,111,111,107,105,101,16,0,21,35,111,110,121,120,95,99,111,111,107,105,101,115,105,110,102,111,95,98,97,114,16,0,24,35,111,110,121,120,95,99,111,111,107,105,101,115,105,110,102,111,95,115,112,97,99,101,114,16,0,11,35,111,112,101,110,67,111,111,107,105,101,16,0,17,35,111,112,101,110,77,111,100,97,108,67,111,111,107,105,101,115,16,0,26,35,111,112,101,110,103,108,111,98,97,108,95,112,114,105,118,97,99,121,95,119,105,100,103,101,116,16,0,8,35,111,112,116,97,110,111,110,16,0,16,35,111,112,116,97,110,111,110,45,111,118,101,114,108,97,121,16,0,16,35,111,112,116,105,110,45,98,97,110,110,101,114,68,105,118,16,0,10,35,111,112,116,105,110,45,98,97,114,16,0,19,35,111,112,116,105,110,45,111,112,116,105,110,45,104,101,97,100,101,114,16,0,13,35,111,112,116,105,110,45,111,112,116,111,117,116,16,0,12,35,111,112,116,105,110,67,111,111,107,105,101,16,0,18,35,111,112,116,105,110,99,107,121,99,111,110,116,97,105,110,101,114,16,0,10,35,111,114,95,99,111,111,107,105,101,16,0,18,35,111,115,95,97,112,112,95,99,111,111,107,105,101,119,97,114,110,16,0,11,35,111,115,111,109,99,111,111,107,105,101,16,0,25,35,111,115,116,45,99,111,111,107,105,101,119,97,108,108,45,99,111,110,116,97,105,110,101,114,16,0,15,35,111,116,45,99,99,112,97,45,98,97,110,110,101,114,16,0,23,35,111,116,45,115,100,107,45,98,116,110,58,110,111,116,40,98,117,116,116,111,110,41,16,0,12,35,111,116,112,45,112,114,105,118,97,99,121,16,0,23,35,111,116,114,99,111,111,107,105,101,99,111,109,112,108,105,97,110,99,101,100,105,118,16,0,24,35,111,117,112,99,111,111,107,105,101,112,111,108,105,99,121,95,109,101,115,115,97,103,101,16,0,17,35,111,118,101,114,45,99,111,111,107,105,101,115,45,109,115,103,16,0,23,35,111,118,101,114,108,97,121,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,16,35,111,118,101,114,108,97,121,45,99,111,111,99,107,105,101,16,0,15,35,111,118,101,114,108,97,121,45,99,111,111,107,105,101,16,0,21,35,111,118,101,114,108,97,121,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,23,35,111,118,101,114,108,97,121,45,99,111,111,107,105,101,108,97,119,45,102,111,114,109,16,0,16,35,111,118,101,114,108,97,121,45,99,111,111,107,105,101,115,16,0,21,35,111,118,101,114,108,97,121,67,111,110,116,101,110,116,67,111,111,107,105,101,16,0,14,35,111,118,101,114,108,97,121,67,111,111,107,105,101,16,0,18,35,111,118,101,114,108,97,121,67,111,111,107,105,101,50,48,49,53,16,0,26,35,111,118,101,114,108,97,121,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,15,35,111,118,101,114,108,97,121,67,111,111,107,105,101,115,16,0,17,35,111,118,101,114,108,97,121,84,114,97,100,101,67,67,84,50,16,0,16,35,111,118,101,114,108,97,121,95,99,111,110,115,101,110,116,16,0,15,35,111,118,101,114,108,97,121,95,99,111,111,107,105,101,16,0,16,35,111,118,101,114,108,97,121,95,99,111,111,107,105,101,115,16,0,12,35,111,118,101,114,108,97,121,95,112,114,105,16,0,22,35,111,118,101,114,108,97,121,95,112,114,105,118,97,99,121,67,111,111,107,105,101,16,0,15,35,111,118,101,114,108,97,121,99,111,111,107,105,101,115,16,0,15,35,111,118,101,114,116,111,112,99,111,111,107,105,101,115,16,0,28,35,111,119,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,99,111,110,116,97,105,110,101,114,16,0,15,35,111,119,110,67,111,111,107,105,101,76,97,121,101,114,16,0,25,35,111,122,121,45,99,111,111,107,105,101,95,110,111,116,105,99,101,95,98,97,110,110,101,114,16,0,26,35,112,56,48,95,99,111,111,107,105,101,95,110,111,116,105,99,101,95,119,114,97,112,112,101,114,16,0,13,35,112,67,111,111,107,105,101,77,111,100,97,108,16,0,15,35,112,67,111,111,107,105,101,77,111,100,97,108,86,49,16,0,15,35,112,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,10,35,112,95,99,105,73,110,110,101,114,16,0,40,35,112,95,108,116,95,99,116,108,48,48,95,67,111,111,107,105,101,78,111,116,105,99,101,95,112,110,108,67,111,111,107,105,101,78,111,116,105,99,101,16,0,33,35,112,95,112,95,105,100,95,99,111,111,107,105,101,95,87,65,82,95,99,111,111,107,105,101,112,111,114,116,108,101,116,95,16,0,54,35,112,95,112,95,105,100,95,99,111,111,107,105,101,115,112,111,108,105,99,121,112,111,114,116,108,101,116,95,87,65,82,95,99,111,111,107,105,101,115,112,111,108,105,99,121,112,111,114,116,108,101,116,95,16,0,21,35,112,97,99,107,116,95,103,100,112,114,95,99,111,110,116,97,105,110,101,114,16,0,22,35,112,97,103,101,32,62,32,46,112,114,105,118,97,99,121,45,111,112,116,105,110,16,0,19,35,112,97,103,101,45,97,100,118,105,99,101,45,99,111,111,107,105,101,16,0,19,35,112,97,103,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,13,35,112,97,103,101,45,99,111,111,107,105,101,115,16,0,17,35,112,97,103,101,45,99,111,111,107,105,101,115,45,98,97,114,16,0,12,35,112,97,103,101,67,111,111,107,105,101,115,16,0,17,35,112,97,103,101,85,115,101,67,111,111,107,105,101,68,105,118,16,0,17,35,112,97,103,101,95,99,111,111,107,105,101,95,109,101,110,117,16,0,21,35,112,97,103,101,115,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,15,35,112,97,109,67,111,111,107,105,101,76,97,121,101,114,16,0,19,35,112,97,110,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,17,35,112,97,110,67,111,111,107,105,101,82,101,113,117,101,115,116,16,0,12,35,112,97,110,95,99,111,111,107,105,101,115,16,0,13,35,112,97,110,101,108,45,99,111,111,107,105,101,16,0,19,35,112,97,110,101,108,45,99,111,111,107,105,101,45,117,115,97,103,101,16,0,14,35,112,97,110,101,108,45,99,111,111,107,105,101,115,16,0,12,35,112,97,110,101,108,67,111,111,107,105,101,16,0,17,35,112,97,110,101,108,67,111,111,107,105,101,115,73,110,102,111,16,0,13,35,112,97,110,101,108,95,99,111,111,107,105,101,16,0,20,35,112,97,110,101,108,95,99,111,111,107,105,101,95,98,111,116,116,111,109,16,0,17,35,112,97,110,101,108,95,99,111,111,107,105,101,95,100,111,108,16,0,13,35,112,97,110,101,108,99,111,111,107,105,101,115,16,0,17,35,112,97,110,116,97,108,108,97,45,67,111,111,107,105,101,115,16,0,17,35,112,97,110,116,97,108,108,97,95,99,111,111,107,105,101,115,16,0,19,35,112,97,111,95,119,97,114,110,105,110,103,95,99,111,111,107,105,101,16,0,24,35,112,97,112,101,114,105,102,121,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,25,35,112,97,112,101,114,112,108,97,110,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,17,35,112,97,114,97,103,114,97,112,104,95,99,111,111,107,105,101,16,0,34,35,112,97,114,101,110,116,95,83,105,116,101,67,111,111,107,105,101,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,18,35,112,97,114,107,45,99,111,111,107,105,101,98,97,114,45,101,108,16,0,13,35,112,97,114,116,45,99,111,111,107,105,101,115,16,0,17,35,112,97,115,101,107,95,99,105,97,115,116,101,99,122,107,97,16,0,23,35,112,97,115,101,107,95,107,111,109,117,110,105,107,97,116,95,99,111,111,107,105,101,16,0,16,35,112,97,115,116,105,108,108,97,45,99,111,111,107,105,101,16,0,30,35,112,97,120,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,16,0,25,35,112,98,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,16,35,112,98,65,99,99,101,112,116,67,111,111,107,105,101,115,16,0,18,35,112,98,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,18,35,112,98,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,14,35,112,98,98,45,99,111,111,107,105,101,108,97,119,16,0,17,35,112,99,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,18,35,112,99,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,18,35,112,99,99,109,115,67,111,111,107,105,101,115,65,108,101,114,116,16,0,13,35,112,100,95,99,111,111,107,105,101,108,97,119,16,0,11,35,112,100,112,97,45,112,111,112,117,112,16,0,20,35,112,100,112,97,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,16,0,23,35,112,101,99,114,45,99,111,109,112,108,105,97,110,99,101,45,98,97,110,110,101,114,16,0,27,35,112,101,99,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,16,0,20,35,112,101,99,114,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,16,35,112,101,114,109,105,115,111,95,99,111,111,107,105,101,115,16,0,15,35,112,101,114,109,105,115,115,105,111,110,45,98,97,114,16,0,22,35,112,101,114,109,105,115,115,105,111,110,45,98,97,114,45,112,114,111,109,112,116,16,0,23,35,112,101,114,109,105,115,115,105,111,110,95,114,101,113,117,101,115,116,95,98,111,120,16,0,21,35,112,101,114,112,101,116,117,117,109,45,99,111,111,107,105,101,45,98,97,114,16,0,15,35,112,102,45,99,111,111,107,105,101,45,104,105,110,116,16,0,15,35,112,102,67,111,111,107,105,101,78,111,116,105,99,101,16,0,22,35,112,102,105,122,101,114,95,99,111,111,107,105,101,115,95,112,111,108,105,99,121,16,0,21,35,112,102,119,67,111,111,107,105,101,80,114,101,102,101,114,101,110,99,101,115,16,0,17,35,112,103,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,15,35,112,103,45,99,111,111,107,105,101,115,73,110,102,111,16,0,8,35,112,103,45,103,100,112,114,16,0,10,35,112,103,100,103,45,103,100,112,114,16,0,19,35,112,104,45,99,111,111,107,105,101,115,45,97,107,107,111,111,114,100,16,0,16,35,112,104,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,18,35,112,104,101,119,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,28,35,112,104,114,97,115,101,95,110,111,116,105,102,105,99,97,116,105,111,110,95,99,111,111,107,105,101,115,16,0,24,35,112,105,97,110,111,45,105,110,102,111,98,97,114,45,99,111,110,116,97,105,110,101,114,16,0,17,35,112,105,101,95,109,101,110,117,95,99,111,111,107,105,101,115,16,0,16,35,112,105,115,107,111,116,79,112,111,122,111,114,105,108,111,16,0,8,35,112,105,115,107,111,116,105,16,0,9,35,112,105,115,107,111,116,107,105,16,0,13,35,112,105,115,107,111,116,107,105,95,100,105,118,16,0,19,35,112,105,115,107,111,116,107,105,95,111,98,118,101,115,116,105,108,111,16,0,17,35,112,105,115,107,111,116,107,105,95,119,114,97,112,112,101,114,16,0,23,35,112,105,119,105,107,45,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,16,0,12,35,112,105,119,105,107,45,102,108,121,105,110,16,0,10,35,112,105,120,99,111,111,107,105,101,16,0,18,35,112,106,65,99,99,101,112,116,67,111,111,107,105,101,66,97,114,16,0,21,35,112,108,45,115,112,45,112,114,105,118,97,99,121,45,98,117,116,116,111,110,16,0,10,35,112,108,95,99,111,111,107,105,101,16,0,11,35,112,108,95,99,111,111,107,105,101,115,16,0,27,35,112,108,97,116,102,111,114,109,95,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,97,114,16,0,23,35,112,108,101,97,115,101,45,97,112,112,114,111,118,101,45,99,111,111,107,105,101,115,16,0,18,35,112,108,101,110,116,121,45,99,111,111,107,105,101,45,98,97,114,16,0,17,35,112,108,103,45,99,111,111,107,105,101,110,111,116,105,99,101,16,0,16,35,112,108,105,107,105,67,111,111,107,105,101,115,80,111,112,16,0,18,35,112,108,117,103,105,110,95,99,111,111,107,105,101,95,105,110,116,16,0,22,35,112,109,45,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,16,0,10,35,112,109,45,99,111,111,107,105,101,16,0,17,35,112,109,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,112,109,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,16,35,112,109,45,99,111,111,107,105,101,45,110,111,116,105,102,16,0,18,35,112,109,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,17,35,112,109,49,51,95,99,111,111,107,105,101,95,105,110,102,111,16,0,17,35,112,109,49,53,95,99,111,111,107,105,101,95,105,110,102,111,16,0,11,35,112,109,95,99,111,111,107,105,101,115,16,0,17,35,112,109,99,95,116,111,117,112,112,95,110,111,116,105,99,101,16,0,12,35,112,110,108,45,99,111,111,107,105,101,115,16,0,20,35,112,110,108,45,99,111,111,107,105,101,115,45,119,97,114,110,105,110,103,16,0,23,35,112,110,108,65,112,112,114,111,118,101,67,111,111,107,105,101,115,85,115,97,103,101,16,0,10,35,112,110,108,67,111,111,107,105,101,16,0,16,35,112,110,108,67,111,111,107,105,101,66,97,110,110,101,114,16,0,13,35,112,110,108,67,111,111,107,105,101,66,97,114,16,0,17,35,112,110,108,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,16,35,112,110,108,67,111,111,107,105,101,70,111,111,116,101,114,16,0,14,35,112,110,108,67,111,111,107,105,101,73,110,102,111,16,0,17,35,112,110,108,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,16,35,112,110,108,67,111,111,107,105,101,78,111,116,105,99,101,16,0,16,35,112,110,108,67,111,111,107,105,101,83,116,97,116,117,115,16,0,11,35,112,110,108,67,111,111,107,105,101,115,16,0,23,35,112,110,108,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,16,0,18,35,112,110,108,69,85,67,111,111,107,105,101,66,97,110,110,101,114,16,0,11,35,112,110,108,80,114,105,118,97,99,121,16,0,11,35,112,110,110,45,99,111,111,107,105,101,16,0,10,35,112,110,115,99,111,111,107,105,101,16,0,16,35,112,111,105,116,121,107,97,45,99,105,97,115,116,101,107,16,0,12,35,112,111,108,45,99,111,111,107,105,101,115,16,0,10,35,112,111,108,67,111,99,107,105,101,16,0,11,35,112,111,108,67,111,111,107,105,101,115,16,0,12,35,112,111,108,95,99,111,111,107,105,101,115,16,0,19,35,112,111,108,97,110,100,95,99,111,111,107,105,101,95,99,111,110,116,16,0,24,35,112,111,108,97,114,105,115,45,99,111,110,115,101,110,116,45,119,105,100,103,101,116,115,16,0,13,35,112,111,108,105,99,105,121,65,108,101,114,116,16,0,14,35,112,111,108,105,99,121,45,97,99,99,101,112,116,16,0,14,35,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,14,35,112,111,108,105,99,121,45,99,111,111,107,105,101,16,0,21,35,112,111,108,105,99,121,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,22,35,112,111,108,105,99,121,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,11,35,112,111,108,105,99,121,45,100,105,118,16,0,20,35,112,111,108,105,99,121,45,109,111,100,97,108,45,98,97,110,110,101,114,16,0,13,35,112,111,108,105,99,121,45,112,111,112,117,112,16,0,21,35,112,111,108,105,99,121,45,115,101,116,116,105,110,103,115,45,105,110,102,111,16,0,18,35,112,111,108,105,99,121,45,118,97,108,105,100,97,116,105,111,110,16,0,25,35,112,111,108,105,99,121,45,119,97,114,110,105,110,103,45,99,111,110,116,97,105,110,101,114,16,0,21,35,112,111,108,105,99,121,45,119,97,114,110,105,110,103,45,112,111,112,117,112,16,0,14,35,112,111,108,105,99,121,45,119,105,110,100,111,119,16,0,17,35,112,111,108,105,99,121,65,108,101,114,116,80,97,110,101,108,16,0,20,35,112,111,108,105,99,121,66,97,110,110,101,114,87,114,97,112,112,101,114,16,0,10,35,112,111,108,105,99,121,66,97,114,16,0,14,35,112,111,108,105,99,121,67,111,110,115,101,110,116,16,0,13,35,112,111,108,105,99,121,67,111,111,107,105,101,16,0,24,35,112,111,108,105,99,121,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,16,0,14,35,112,111,108,105,99,121,67,111,111,107,105,101,115,16,0,19,35,112,111,108,105,99,121,67,111,111,107,105,101,115,76,97,121,101,114,16,0,14,35,112,111,108,105,99,121,77,101,115,115,97,103,101,16,0,13,35,112,111,108,105,99,121,78,111,116,105,99,101,16,0,12,35,112,111,108,105,99,121,80,97,110,101,108,16,0,12,35,112,111,108,105,99,121,80,111,112,117,112,16,0,21,35,112,111,108,105,99,121,80,111,112,117,112,67,111,110,116,97,105,110,101,114,16,0,14,35,112,111,108,105,99,121,95,99,111,111,107,105,101,16,0,14,35,112,111,108,105,99,121,95,104,101,97,100,101,114,16,0,15,35,112,111,108,105,99,121,95,109,101,115,115,97,103,101,16,0,14,35,112,111,108,105,99,121,95,110,111,116,105,99,101,16,0,15,35,112,111,108,105,99,121,95,119,114,97,112,112,101,114,16,0,19,35,112,111,108,105,115,104,45,99,111,111,107,105,101,45,110,111,116,101,16,0,17,35,112,111,108,105,116,105,99,97,45,99,111,111,107,105,101,115,16,0,26,35,112,111,108,105,116,105,99,97,45,112,114,105,118,97,99,105,100,97,100,101,45,108,103,112,100,16,0,15,35,112,111,108,105,116,105,99,97,67,111,111,107,105,101,16,0,16,35,112,111,108,105,116,105,99,97,67,111,111,107,105,101,115,16,0,18,35,112,111,108,105,116,105,99,97,68,101,67,111,111,107,105,101,115,16,0,20,35,112,111,108,105,116,105,99,97,80,114,105,118,97,99,105,100,97,100,101,16,0,17,35,112,111,108,105,116,105,99,97,95,99,111,111,107,105,101,115,16,0,20,35,112,111,108,105,116,105,99,97,95,100,101,95,99,111,111,107,105,101,115,16,0,30,35,112,111,108,105,116,105,99,97,95,100,101,95,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,16,0,23,35,112,111,108,105,116,105,99,97,95,100,101,95,112,114,105,118,97,99,105,100,97,100,16,0,16,35,112,111,108,105,116,105,99,97,99,111,111,107,105,101,115,16,0,26,35,112,111,108,105,116,105,113,117,101,95,99,111,110,102,105,100,101,110,116,105,97,108,105,116,101,16,0,17,35,112,111,108,105,116,121,107,97,45,99,105,97,115,116,101,107,16,0,16,35,112,111,108,105,116,121,107,97,45,99,111,111,107,105,101,16,0,17,35,112,111,108,105,116,121,107,97,45,99,111,111,107,105,101,115,16,0,21,35,112,111,108,105,116,121,107,97,45,112,114,121,119,97,116,110,111,115,99,105,16,0,25,35,112,111,108,105,116,121,107,97,45,112,114,121,119,97,116,110,111,115,99,105,45,116,108,111,16,0,26,35,112,111,108,105,116,121,107,97,80,114,121,119,97,116,110,111,115,99,105,72,111,108,100,101,114,16,0,21,35,112,111,108,105,116,121,107,97,95,99,111,111,107,105,101,95,101,120,101,108,16,0,17,35,112,111,108,105,116,121,107,97,95,99,111,111,107,105,101,115,16,0,14,35,112,111,108,105,116,121,107,97,95,111,107,110,111,16,0,14,35,112,111,108,105,116,121,107,97,99,111,111,107,105,16,0,16,35,112,111,108,105,116,121,107,97,99,111,111,107,105,101,115,16,0,20,35,112,111,108,105,116,121,107,97,112,114,121,119,97,116,110,111,115,99,105,16,0,16,35,112,111,111,108,99,111,111,107,105,101,98,97,100,103,101,16,0,11,35,112,111,112,45,99,111,111,107,105,101,16,0,20,35,112,111,112,45,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,16,0,12,35,112,111,112,45,99,111,111,107,105,101,115,16,0,9,35,112,111,112,45,103,100,112,114,16,0,14,35,112,111,112,45,117,112,45,99,111,111,107,105,101,16,0,15,35,112,111,112,45,117,112,45,99,111,111,107,105,101,115,16,0,10,35,112,111,112,67,111,111,107,105,101,16,0,21,35,112,111,112,73,110,67,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,13,35,112,111,112,85,112,67,111,111,107,105,101,115,16,0,22,35,112,111,112,85,112,67,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,16,0,16,35,112,111,112,85,112,73,110,102,111,115,76,101,103,97,108,16,0,12,35,112,111,112,95,99,111,111,107,105,101,115,16,0,9,35,112,111,112,95,114,103,112,100,16,0,16,35,112,111,112,95,115,105,116,101,95,99,111,111,107,105,101,16,0,8,35,112,111,112,99,99,49,50,16,0,8,35,112,111,112,99,111,111,107,16,0,10,35,112,111,112,99,111,111,107,105,101,16,0,11,35,112,111,112,99,111,111,107,105,101,115,16,0,20,35,112,111,112,105,110,45,97,99,99,101,112,116,45,99,111,111,107,105,101,16,0,17,35,112,111,112,105,110,45,99,103,117,45,99,111,111,107,105,101,16,0,11,35,112,111,112,105,110,45,99,110,105,108,16,0,13,35,112,111,112,105,110,45,99,111,111,107,105,101,16,0,14,35,112,111,112,105,110,45,99,111,111,107,105,101,115,16,0,12,35,112,111,112,105,110,67,111,111,107,105,101,16,0,13,35,112,111,112,105,110,67,111,111,107,105,101,115,16,0,13,35,112,111,112,105,110,95,99,111,111,107,105,101,16,0,14,35,112,111,112,105,110,95,99,111,111,107,105,101,115,16,0,19,35,112,111,112,105,110,95,105,110,102,111,115,99,111,111,107,105,101,115,16,0,17,35,112,111,112,105,110,95,116,99,95,112,114,105,118,97,99,121,16,0,12,35,112,111,112,105,110,99,111,111,107,105,101,16,0,8,35,112,111,112,114,103,112,100,16,0,15,35,112,111,112,117,112,45,45,99,111,111,107,105,101,115,16,0,21,35,112,111,112,117,112,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,20,35,112,111,112,117,112,45,97,110,110,111,117,110,99,101,109,101,110,116,115,16,0,11,35,112,111,112,117,112,45,99,99,112,97,16,0,22,35,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,45,97,118,105,115,111,16,0,14,35,112,111,112,117,112,45,99,111,111,99,107,105,101,16,0,13,35,112,111,112,117,112,45,99,111,111,107,105,101,16,0,23,35,112,111,112,117,112,45,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,16,0,19,35,112,111,112,117,112,45,99,111,111,107,105,101,45,98,108,111,99,107,16,0,18,35,112,111,112,117,112,45,99,111,111,107,105,101,45,99,110,105,108,16,0,23,35,112,111,112,117,112,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,24,35,112,111,112,117,112,45,99,111,111,107,105,101,45,99,111,110,116,101,110,101,100,111,114,16,0,20,35,112,111,112,117,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,26,35,112,111,112,117,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,115,109,97,108,108,16,0,18,35,112,111,112,117,112,45,99,111,111,107,105,101,45,119,97,108,108,16,0,20,35,112,111,112,117,112,45,99,111,111,107,105,101,67,111,110,115,101,110,116,16,0,14,35,112,111,112,117,112,45,99,111,111,107,105,101,115,16,0,17,35,112,111,112,117,112,45,99,111,111,107,105,101,115,45,49,56,16,0,21,35,112,111,112,117,112,45,99,111,111,107,105,101,115,45,98,111,116,116,111,109,16,0,22,35,112,111,112,117,112,45,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,16,0,21,35,112,111,112,117,112,45,99,111,111,107,105,101,115,45,112,111,108,105,99,101,16,0,17,35,112,111,112,117,112,45,100,105,115,99,108,97,105,109,101,114,16,0,11,35,112,111,112,117,112,45,103,100,112,114,16,0,15,35,112,111,112,117,112,45,109,97,115,107,45,114,100,111,16,0,20,35,112,111,112,117,112,45,112,114,105,118,97,99,121,112,111,108,105,99,121,16,0,21,35,112,111,112,117,112,45,119,101,98,112,97,103,101,45,99,111,111,107,105,101,16,0,19,35,112,111,112,117,112,65,118,118,105,115,111,67,111,111,107,105,101,115,16,0,20,35,112,111,112,117,112,67,78,73,76,45,99,111,110,116,97,105,110,101,114,16,0,12,35,112,111,112,117,112,67,111,111,107,105,101,16,0,13,35,112,111,112,117,112,67,111,111,107,105,101,115,16,0,11,35,112,111,112,117,112,95,99,110,105,108,16,0,13,35,112,111,112,117,112,95,99,111,111,107,105,101,16,0,27,35,112,111,112,117,112,95,99,111,111,107,105,101,95,99,111,110,116,101,110,101,114,95,109,97,105,110,16,0,18,35,112,111,112,117,112,95,99,111,111,107,105,101,95,105,110,102,111,16,0,25,35,112,111,112,117,112,95,99,111,111,107,105,101,95,105,110,102,111,114,109,97,116,105,111,110,16,0,17,35,112,111,112,117,112,95,99,111,111,107,105,101,95,108,97,119,16,0,14,35,112,111,112,117,112,95,99,111,111,107,105,101,115,16,0,20,35,112,111,112,117,112,95,99,111,111,107,105,101,115,95,109,111,100,97,108,16,0,21,35,112,111,112,117,112,95,99,111,111,107,105,101,115,95,112,111,108,105,99,121,16,0,18,35,112,111,112,117,112,95,105,110,102,111,95,99,111,111,107,105,101,16,0,16,35,112,111,112,117,112,95,108,111,105,99,111,111,107,105,101,16,0,12,35,112,111,112,117,112,99,111,111,107,105,101,16,0,13,35,112,111,112,117,112,99,111,111,107,105,101,115,16,0,16,35,112,111,112,117,112,100,101,115,99,111,111,107,105,101,115,16,0,10,35,112,111,112,117,112,103,100,112,114,16,0,10,35,112,111,112,117,112,114,103,112,100,16,0,19,35,112,111,114,116,97,108,45,99,111,111,107,105,101,45,105,110,102,111,16,0,20,35,112,111,114,116,97,108,45,99,111,111,107,105,101,111,112,116,111,117,116,16,0,22,35,112,111,115,105,116,105,118,95,99,111,111,107,105,101,115,95,102,105,101,108,100,16,0,12,35,112,111,119,97,45,99,111,111,107,105,101,16,0,17,35,112,112,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,10,35,112,112,67,111,111,107,105,101,115,16,0,10,35,112,112,95,99,111,111,107,105,101,16,0,18,35,112,112,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,13,35,112,112,95,99,111,111,107,105,101,108,97,119,16,0,12,35,112,112,97,45,99,111,111,107,105,101,115,16,0,9,35,112,112,99,111,111,107,105,101,16,0,20,35,112,112,109,115,95,99,109,95,98,97,114,95,111,118,101,114,108,97,121,16,0,22,35,112,112,109,115,95,99,109,95,112,111,112,117,112,95,111,118,101,114,108,97,121,16,0,19,35,112,113,45,112,97,103,101,45,116,111,112,45,99,111,111,107,105,101,16,0,23,35,112,114,97,105,118,97,99,121,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,16,35,112,114,97,105,118,97,99,121,45,110,111,116,105,99,101,16,0,20,35,112,114,97,118,100,97,45,99,111,111,107,105,101,45,117,115,97,103,101,16,0,27,35,112,114,101,102,101,114,101,110,99,101,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,8,35,112,114,101,103,100,112,114,16,0,18,35,112,114,101,104,101,97,100,101,114,95,99,111,111,107,105,101,115,16,0,21,35,112,114,101,116,116,121,67,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,16,35,112,114,101,118,101,110,116,95,99,111,111,107,105,101,115,16,0,17,35,112,114,102,114,109,95,99,111,111,107,105,101,95,98,110,114,16,0,14,35,112,114,105,99,97,99,121,95,112,111,112,117,112,16,0,27,35,112,114,105,99,101,112,105,114,97,116,101,115,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,18,35,112,114,105,104,118,97,99,97,109,75,111,108,97,99,105,99,101,16,0,10,35,112,114,105,109,117,115,45,99,99,16,0,27,35,112,114,105,111,49,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,109,97,108,108,16,0,14,35,112,114,105,118,97,99,105,100,97,100,66,97,114,16,0,15,35,112,114,105,118,97,99,121,45,97,100,118,105,115,101,16,0,14,35,112,114,105,118,97,99,121,45,97,108,101,114,116,16,0,19,35,112,114,105,118,97,99,121,45,97,108,101,114,116,45,98,108,117,114,16,0,15,35,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,12,35,112,114,105,118,97,99,121,45,98,97,114,16,0,18,35,112,114,105,118,97,99,121,45,98,111,116,116,111,109,98,97,114,16,0,23,35,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,24,35,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,16,0,15,35,112,114,105,118,97,99,121,45,99,111,111,107,105,101,16,0,22,35,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,20,35,112,114,105,118,97,99,121,45,99,111,111,107,105,101,45,105,110,102,111,16,0,22,35,112,114,105,118,97,99,121,45,99,111,111,107,105,101,77,101,115,115,97,103,101,16,0,19,35,112,114,105,118,97,99,121,45,100,105,115,99,108,97,105,109,101,114,16,0,21,35,112,114,105,118,97,99,121,45,102,105,120,101,100,45,98,111,116,116,111,109,16,0,15,35,112,114,105,118,97,99,121,45,102,111,111,116,101,114,16,0,13,35,112,114,105,118,97,99,121,45,104,105,110,116,16,0,34,35,112,114,105,118,97,99,121,45,105,110,102,111,114,109,97,116,105,111,110,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,14,35,112,114,105,118,97,99,121,45,108,97,121,101,114,16,0,20,35,112,114,105,118,97,99,121,45,109,101,115,115,97,103,101,45,98,97,114,16,0,22,35,112,114,105,118,97,99,121,45,109,115,103,45,99,111,110,116,97,105,110,101,114,16,0,13,35,112,114,105,118,97,99,121,45,110,111,116,101,16,0,19,35,112,114,105,118,97,99,121,45,110,111,116,105,99,101,45,98,111,120,16,0,28,35,112,114,105,118,97,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,110,110,101,114,16,0,23,35,112,114,105,118,97,99,121,45,111,118,101,114,108,97,121,45,98,97,110,110,101,114,16,0,15,35,112,114,105,118,97,99,121,45,112,111,108,105,99,101,16,0,24,35,112,114,105,118,97,99,121,45,112,111,108,105,99,105,101,115,45,98,97,110,110,101,114,16,0,22,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,110,110,101,114,16,0,19,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,98,97,114,16,0,30,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,103,108,111,98,97,108,45,109,101,115,115,97,103,101,16,0,28,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,108,105,110,107,45,119,114,97,112,112,101,114,16,0,21,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,109,111,100,97,108,16,0,20,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,110,111,116,101,16,0,22,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,110,111,116,105,99,101,16,0,28,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,21,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,97,110,101,108,16,0,21,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,112,111,112,117,112,16,0,23,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,117,112,100,97,116,101,100,16,0,15,35,112,114,105,118,97,99,121,45,112,111,112,45,117,112,16,0,14,35,112,114,105,118,97,99,121,45,112,111,112,117,112,16,0,24,35,112,114,105,118,97,99,121,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,16,0,15,35,112,114,105,118,97,99,121,45,115,104,105,101,108,100,16,0,26,35,112,114,105,118,97,99,121,45,115,116,97,116,101,109,101,110,116,45,119,114,97,112,112,101,114,16,0,33,35,112,114,105,118,97,99,121,45,115,116,97,116,101,109,101,110,116,58,110,111,116,40,46,99,104,101,99,107,98,111,120,41,16,0,14,35,112,114,105,118,97,99,121,45,116,111,97,115,116,16,0,15,35,112,114,105,118,97,99,121,45,117,112,100,97,116,101,16,0,28,35,112,114,105,118,97,99,121,65,110,100,67,111,111,107,105,101,78,111,116,105,99,101,80,97,110,101,108,16,0,30,35,112,114,105,118,97,99,121,65,110,100,67,111,111,107,105,101,115,67,111,110,102,105,114,109,97,116,105,111,110,16,0,30,35,112,114,105,118,97,99,121,65,110,110,111,117,110,99,101,109,101,110,116,58,110,111,116,40,98,111,100,121,41,16,0,14,35,112,114,105,118,97,99,121,66,97,110,110,101,114,16,0,11,35,112,114,105,118,97,99,121,66,97,114,16,0,15,35,112,114,105,118,97,99,121,67,111,110,115,101,110,116,16,0,14,35,112,114,105,118,97,99,121,67,111,111,107,105,101,16,0,24,35,112,114,105,118,97,99,121,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,16,0,19,35,112,114,105,118,97,99,121,67,111,111,107,105,101,76,97,121,101,114,16,0,37,35,112,114,105,118,97,99,121,67,111,111,107,105,101,115,80,111,108,105,99,121,77,101,115,115,97,103,101,67,111,110,116,97,105,110,101,114,16,0,18,35,112,114,105,118,97,99,121,68,105,115,99,108,97,105,109,101,114,16,0,12,35,112,114,105,118,97,99,121,72,105,110,116,16,0,26,35,112,114,105,118,97,99,121,78,111,116,101,80,111,112,117,112,67,111,110,116,97,105,110,101,114,16,0,20,35,112,114,105,118,97,99,121,78,111,116,105,99,101,85,112,100,97,116,101,16,0,20,35,112,114,105,118,97,99,121,78,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,112,114,105,118,97,99,121,78,111,116,105,102,121,67,111,110,116,97,105,110,101,114,16,0,26,35,112,114,105,118,97,99,121,79,112,116,105,111,110,115,67,111,111,107,105,101,79,112,116,73,110,16,0,22,35,112,114,105,118,97,99,121,79,117,116,101,114,67,111,110,116,97,105,110,101,114,16,0,15,35,112,114,105,118,97,99,121,79,118,101,114,108,97,121,16,0,17,35,112,114,105,118,97,99,121,80,111,108,105,99,121,66,97,114,16,0,17,35,112,114,105,118,97,99,121,80,111,108,105,99,121,66,111,120,16,0,21,35,112,114,105,118,97,99,121,80,111,108,105,99,121,67,111,111,107,105,101,115,16,0,18,35,112,114,105,118,97,99,121,80,111,108,105,99,121,73,110,102,111,16,0,19,35,112,114,105,118,97,99,121,80,111,108,105,99,121,76,97,121,101,114,16,0,20,35,112,114,105,118,97,99,121,80,111,108,105,99,121,76,97,121,101,114,78,16,0,18,35,112,114,105,118,97,99,121,80,111,108,105,99,121,78,111,116,101,16,0,21,35,112,114,105,118,97,99,121,80,111,108,105,99,121,79,118,101,114,108,97,121,16,0,19,35,112,114,105,118,97,99,121,80,111,108,105,99,121,80,111,112,117,112,16,0,13,35,112,114,105,118,97,99,121,80,111,112,117,112,16,0,14,35,112,114,105,118,97,99,121,83,108,105,100,101,114,16,0,14,35,112,114,105,118,97,99,121,84,111,112,66,97,114,16,0,16,35,112,114,105,118,97,99,121,87,97,114,105,110,105,110,103,16,0,21,35,112,114,105,118,97,99,121,87,97,114,110,105,110,103,66,97,110,110,101,114,16,0,15,35,112,114,105,118,97,99,121,87,114,97,112,112,101,114,16,0,15,35,112,114,105,118,97,99,121,95,97,99,99,101,112,116,16,0,18,35,112,114,105,118,97,99,121,95,97,103,114,101,101,109,101,110,116,16,0,16,35,112,114,105,118,97,99,121,95,98,97,110,100,101,97,117,16,0,15,35,112,114,105,118,97,99,121,95,98,97,110,110,101,114,16,0,12,35,112,114,105,118,97,99,121,95,98,97,114,16,0,14,35,112,114,105,118,97,99,121,95,98,97,114,114,101,16,0,20,35,112,114,105,118,97,99,121,95,98,108,111,99,107,115,99,114,101,101,110,16,0,22,35,112,114,105,118,97,99,121,95,98,111,120,95,99,111,110,116,97,105,110,101,114,16,0,15,35,112,114,105,118,97,99,121,95,99,111,111,107,105,101,16,0,20,35,112,114,105,118,97,99,121,95,99,111,111,107,105,101,95,110,111,116,101,16,0,21,35,112,114,105,118,97,99,121,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,21,35,112,114,105,118,97,99,121,95,99,111,111,107,105,101,112,111,108,105,99,121,16,0,16,35,112,114,105,118,97,99,121,95,99,111,111,107,105,101,115,16,0,14,35,112,114,105,118,97,99,121,95,99,111,118,101,114,16,0,21,35,112,114,105,118,97,99,121,95,105,110,102,111,95,99,111,110,116,101,110,116,16,0,21,35,112,114,105,118,97,99,121,95,105,110,102,111,95,111,118,101,114,108,97,121,16,0,12,35,112,114,105,118,97,99,121,95,108,97,119,16,0,26,35,112,114,105,118,97,99,121,95,109,101,115,115,97,103,101,95,97,108,101,114,116,95,100,105,118,16,0,14,35,112,114,105,118,97,99,121,95,109,111,100,97,108,16,0,15,35,112,114,105,118,97,99,121,95,110,111,116,105,99,101,16,0,22,35,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,98,97,110,110,101,114,16,0,19,35,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,98,97,114,16,0,27,35,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,108,105,110,107,95,119,105,110,100,111,119,16,0,14,35,112,114,105,118,97,99,121,95,112,111,112,117,112,16,0,22,35,112,114,105,118,97,99,121,95,116,101,114,109,115,95,99,111,111,107,105,101,115,16,0,15,35,112,114,105,118,97,99,121,95,119,105,100,103,101,116,16,0,14,35,112,114,105,118,97,99,121,98,97,110,110,101,114,16,0,20,35,112,114,105,118,97,99,121,98,97,110,110,101,114,95,109,111,100,97,108,16,0,11,35,112,114,105,118,97,99,121,98,97,114,16,0,14,35,112,114,105,118,97,99,121,99,111,111,107,105,101,16,0,27,35,112,114,105,118,97,99,121,99,111,111,107,105,101,45,100,105,118,45,115,117,112,101,114,116,111,112,16,0,12,35,112,114,105,118,97,99,121,104,105,110,116,16,0,15,35,112,114,105,118,97,99,121,109,97,110,97,103,101,114,16,0,15,35,112,114,105,118,97,99,121,109,101,115,115,97,103,101,16,0,14,35,112,114,105,118,97,99,121,110,111,116,105,99,101,16,0,25,35,112,114,105,118,97,99,121,112,111,108,105,99,121,58,110,111,116,40,105,110,112,117,116,41,16,0,23,35,112,114,105,118,97,99,121,112,111,108,105,99,121,99,111,110,116,97,105,110,101,114,16,0,13,35,112,114,105,118,97,99,121,112,111,112,117,112,16,0,13,35,112,114,105,118,97,116,66,97,110,110,101,114,16,0,15,35,112,114,105,118,97,116,101,45,112,111,108,105,99,121,16,0,20,35,112,114,105,118,97,116,101,80,111,108,105,99,121,72,111,108,100,101,114,16,0,21,35,112,114,111,45,99,112,45,100,105,97,108,111,103,45,98,97,110,110,101,114,16,0,22,35,112,114,111,45,99,112,45,100,105,97,108,111,103,45,119,114,97,112,112,101,114,16,0,14,35,112,114,111,95,99,111,111,107,105,101,98,111,120,16,0,22,35,112,114,111,95,101,117,99,108,112,95,99,111,111,107,105,101,115,95,98,111,120,16,0,15,35,112,114,111,109,112,116,45,99,111,111,107,105,101,115,16,0,23,35,112,114,111,110,97,109,105,99,95,99,111,111,107,105,101,95,104,111,108,100,101,114,16,0,24,35,112,114,111,115,105,116,101,95,99,111,111,107,105,101,95,97,100,118,97,114,115,101,108,16,0,19,35,112,115,67,111,111,107,105,101,68,105,115,99,108,97,105,109,101,114,16,0,21,35,112,115,67,111,111,107,105,101,83,108,105,100,101,114,67,111,110,66,111,116,16,0,21,35,112,115,95,99,111,111,107,105,101,98,97,114,95,99,111,111,107,105,101,115,16,0,16,35,112,116,67,111,111,107,105,101,66,97,114,87,114,97,112,16,0,16,35,112,116,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,12,35,112,116,97,108,107,99,111,111,107,105,101,16,0,18,35,112,117,98,108,105,99,67,111,111,107,105,101,85,115,97,103,101,16,0,18,35,112,117,114,99,104,45,103,100,112,114,45,98,97,110,110,101,114,16,0,11,35,112,117,115,104,95,97,108,101,114,116,16,0,17,35,112,118,45,99,111,111,107,105,101,45,100,105,97,108,111,103,16,0,17,35,112,119,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,11,35,112,119,95,99,111,111,107,105,101,115,16,0,20,35,112,119,99,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,32,35,112,119,99,114,45,99,100,45,99,111,111,107,105,101,45,117,115,97,103,101,45,100,105,115,99,108,97,105,109,101,114,16,0,18,35,112,119,101,98,99,111,111,107,105,101,115,110,111,116,105,102,105,16,0,11,35,112,119,119,45,99,111,111,107,105,101,16,0,23,35,112,120,45,99,111,111,107,105,101,45,98,97,114,45,101,120,116,101,110,100,101,100,16,0,18,35,112,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,26,35,112,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,111,118,101,114,108,97,121,16,0,13,35,112,120,45,99,111,111,107,105,101,98,97,114,16,0,15,35,112,120,97,45,99,111,111,107,105,101,45,98,97,114,16,0,13,35,113,45,99,111,111,107,105,101,45,98,111,120,16,0,21,35,113,56,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,16,0,15,35,113,80,114,105,118,97,99,121,66,97,110,110,101,114,16,0,16,35,113,98,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,23,35,113,98,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,97,105,110,16,0,23,35,113,98,97,108,108,95,99,111,95,99,111,111,107,105,101,45,102,111,111,116,101,114,16,0,20,35,113,99,95,99,104,111,105,99,101,95,51,112,99,95,102,114,97,109,101,16,0,9,35,113,103,45,116,111,97,115,116,16,0,22,35,113,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,111,120,16,0,16,35,113,111,111,107,105,101,115,95,104,97,98,105,116,97,116,16,0,19,35,113,116,104,101,109,101,67,111,111,107,105,101,66,97,110,110,101,114,16,0,16,35,113,117,98,105,116,45,101,117,45,99,111,111,107,105,101,16,0,13,35,114,52,50,67,111,111,107,105,101,66,97,114,16,0,16,35,114,97,98,67,111,111,107,105,101,83,108,105,100,101,114,16,0,27,35,114,97,105,115,105,111,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,22,35,114,97,109,107,97,95,99,105,97,115,116,101,99,122,107,97,95,105,110,102,111,16,0,26,35,114,97,112,105,100,115,116,97,102,102,45,99,111,111,107,105,101,95,95,98,97,110,110,101,114,16,0,28,35,114,97,112,105,100,119,101,97,118,101,114,95,112,114,105,118,97,99,121,95,109,101,115,115,97,103,101,16,0,21,35,114,97,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,21,35,114,97,122,101,114,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,20,35,114,98,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,13,35,114,98,95,99,111,111,107,105,101,66,111,120,16,0,35,35,114,98,105,67,111,111,107,105,101,80,111,108,105,99,121,95,112,117,115,104,68,111,119,110,66,111,120,87,114,97,112,112,101,114,16,0,23,35,114,98,105,67,111,111,107,105,101,80,111,108,105,99,121,95,115,112,97,99,101,114,16,0,23,35,114,99,45,108,101,121,45,99,111,111,107,105,101,115,45,100,105,97,108,111,103,111,16,0,14,35,114,99,67,111,111,107,105,101,80,111,112,85,112,16,0,10,35,114,99,67,111,111,107,105,101,115,16,0,19,35,114,100,109,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,30,35,114,101,97,99,116,45,97,112,112,45,67,111,111,107,105,101,67,111,110,115,101,110,116,66,97,110,110,101,114,16,0,13,35,114,101,97,99,116,45,99,111,111,107,105,101,16,0,22,35,114,101,97,99,116,45,99,111,111,107,105,101,45,97,112,112,114,111,118,97,108,16,0,17,35,114,101,97,99,116,45,99,111,111,107,105,101,45,98,97,114,16,0,21,35,114,101,97,99,116,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,25,35,114,101,97,99,116,95,101,108,101,109,101,110,116,95,95,99,111,111,107,105,101,98,97,114,16,0,23,35,114,101,100,95,99,111,111,107,105,101,95,114,101,115,116,114,105,99,116,105,111,110,16,0,17,35,114,101,100,105,109,45,99,111,111,107,105,101,104,105,110,116,16,0,24,35,114,101,100,105,109,45,99,111,111,107,105,101,104,105,110,116,45,98,111,116,116,111,109,16,0,23,35,114,101,100,105,109,45,99,111,111,107,105,101,104,105,110,116,45,109,111,100,97,108,16,0,22,35,114,101,103,101,110,115,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,16,0,21,35,114,101,103,105,111,110,95,99,111,111,107,105,101,115,95,105,110,102,111,115,16,0,12,35,114,101,107,95,98,108,111,99,107,101,114,16,0,16,35,114,101,109,101,109,98,101,114,95,99,111,111,107,105,101,16,0,26,35,114,101,109,105,110,100,101,114,46,112,114,105,118,97,99,121,45,114,101,109,105,110,100,101,114,16,0,13,35,114,101,109,111,116,101,67,111,111,107,105,101,16,0,28,35,114,101,110,100,101,114,45,99,111,111,107,105,101,115,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,15,35,114,101,113,117,101,115,116,67,111,111,107,105,101,115,16,0,11,35,114,101,115,45,99,111,99,107,105,101,16,0,21,35,114,101,115,117,108,116,67,104,101,99,107,67,111,111,107,105,101,77,83,71,16,0,22,35,114,101,115,117,108,116,115,45,99,111,111,107,105,101,115,45,97,108,101,114,116,16,0,16,35,114,103,45,99,111,111,107,105,101,45,99,104,101,99,107,16,0,16,35,114,103,80,114,105,118,97,99,121,66,97,110,110,101,114,16,0,20,35,114,103,95,99,111,110,116,97,105,110,101,114,95,99,111,111,107,105,101,16,0,10,35,114,103,100,112,46,114,103,112,100,16,0,10,35,114,103,112,98,46,114,103,112,100,16,0,20,35,114,103,112,100,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,10,35,114,103,112,100,45,98,97,110,100,16,0,12,35,114,103,112,100,45,98,97,110,110,101,114,16,0,19,35,114,103,112,100,45,98,97,114,45,99,111,110,116,97,105,110,101,114,16,0,13,35,114,103,112,100,45,99,111,110,115,101,110,116,16,0,13,35,114,103,112,100,45,99,111,111,107,105,101,115,16,0,19,35,114,103,112,100,45,99,111,111,107,105,101,115,45,109,111,100,97,108,16,0,27,35,114,103,112,100,45,99,111,111,107,105,101,115,45,109,111,100,97,108,45,119,114,97,112,112,101,114,16,0,13,35,114,103,112,100,45,103,101,110,101,114,97,108,16,0,11,35,114,103,112,100,45,105,110,102,111,115,16,0,22,35,114,103,112,100,45,108,105,116,116,108,101,45,118,97,108,105,100,97,116,101,100,16,0,11,35,114,103,112,100,45,109,111,100,97,108,16,0,15,35,114,103,112,100,45,109,115,103,46,97,108,101,114,116,16,0,12,35,114,103,112,100,45,110,111,116,105,99,101,16,0,13,35,114,103,112,100,45,111,118,101,114,108,97,121,16,0,11,35,114,103,112,100,45,112,111,112,105,110,16,0,21,35,114,103,112,100,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,16,0,13,35,114,103,112,100,45,119,114,97,112,112,101,114,16,0,10,35,114,103,112,100,46,114,103,112,100,16,0,17,35,114,103,112,100,46,115,109,97,114,116,45,112,111,112,105,110,16,0,21,35,114,103,112,100,46,119,105,116,104,111,117,116,45,111,118,101,114,108,97,121,16,0,10,35,114,103,112,100,65,108,101,114,116,16,0,17,35,114,103,112,100,67,111,111,107,105,101,115,72,97,99,99,101,16,0,10,35,114,103,112,100,77,111,100,97,108,16,0,10,35,114,103,112,100,88,111,111,105,116,16,0,13,35,114,103,112,100,95,95,105,110,102,111,95,95,16,0,14,35,114,103,112,100,95,98,97,99,107,100,114,111,112,16,0,13,35,114,103,112,100,95,98,97,110,100,101,97,117,16,0,12,35,114,103,112,100,95,98,97,110,110,101,114,16,0,10,35,114,103,112,100,95,98,108,111,99,16,0,12,35,114,103,112,100,95,98,111,117,116,111,110,16,0,13,35,114,103,112,100,95,100,101,109,97,110,100,101,16,0,10,35,114,103,112,100,95,109,97,105,110,16,0,18,35,114,103,112,100,95,109,97,105,110,95,99,111,110,116,101,110,116,16,0,9,35,114,103,112,100,95,111,98,106,16,0,11,35,114,103,112,100,95,112,111,112,105,110,16,0,8,35,114,103,112,100,95,112,112,16,0,10,35,114,103,112,100,95,116,114,97,121,16,0,8,35,114,103,112,100,98,97,114,16,0,8,35,114,103,112,100,98,111,120,16,0,11,35,114,103,112,100,99,111,111,107,105,101,16,0,22,35,114,103,112,100,99,111,111,107,105,101,45,112,97,110,101,108,45,114,111,111,116,16,0,8,35,114,103,112,100,109,115,103,16,0,10,35,114,103,112,100,112,111,112,117,112,16,0,21,35,114,103,115,45,109,97,105,110,45,99,111,110,116,101,120,116,45,98,97,114,16,0,18,35,114,103,119,112,45,99,111,111,107,105,101,45,109,111,100,97,108,16,0,19,35,114,103,119,112,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,17,35,114,104,117,108,99,111,111,107,105,101,97,99,99,101,112,116,16,0,21,35,114,105,98,98,111,110,45,99,111,111,107,105,101,115,45,97,103,114,101,101,16,0,27,35,114,105,99,104,45,105,100,45,99,111,111,107,105,101,115,45,114,101,103,117,108,97,116,105,111,110,16,0,24,35,114,105,99,104,112,97,103,101,115,95,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,18,35,114,107,45,97,99,99,101,112,116,45,99,111,111,107,105,101,115,16,0,17,35,114,109,45,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,19,35,114,109,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,22,35,114,110,67,111,111,107,105,101,67,111,110,115,101,110,116,95,112,111,112,117,112,16,0,17,35,114,110,100,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,19,35,114,110,119,95,99,111,111,107,105,101,115,95,98,97,110,110,101,114,16,0,9,35,114,111,100,111,45,98,97,114,16,0,11,35,114,111,100,111,45,98,108,111,99,107,16,0,14,35,114,111,100,111,45,105,110,102,111,45,98,111,120,16,0,11,35,114,111,100,111,45,109,111,100,97,108,16,0,15,35,114,111,100,111,45,109,111,100,97,108,45,97,108,108,16,0,13,35,114,111,100,111,45,111,118,101,114,108,97,121,16,0,9,35,114,111,100,111,45,112,111,112,16,0,21,35,114,111,100,111,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,16,0,19,35,114,111,100,111,45,112,111,112,117,112,45,111,118,101,114,108,97,121,16,0,10,35,114,111,100,111,65,108,101,114,116,16,0,8,35,114,111,100,111,66,111,120,16,0,11,35,114,111,100,111,67,111,111,107,105,101,16,0,13,35,114,111,100,111,73,110,102,111,70,111,114,109,16,0,24,35,114,111,100,111,78,111,116,105,102,105,99,97,116,105,111,110,87,114,97,112,112,101,114,16,0,8,35,114,111,100,111,82,111,119,16,0,12,35,114,111,100,111,87,114,97,112,112,101,114,16,0,12,35,114,111,100,111,95,97,99,99,101,112,116,16,0,9,35,114,111,100,111,95,101,110,118,16,0,11,35,114,111,100,111,95,109,111,100,97,108,16,0,11,35,114,111,100,111,95,112,111,112,117,112,16,0,9,35,114,111,100,111,105,110,102,111,16,0,8,35,114,111,100,111,110,101,119,16,0,14,35,114,111,100,111,110,102,45,97,112,112,45,117,120,16,0,19,35,114,111,111,116,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,18,35,114,111,111,116,45,99,111,111,107,105,101,98,97,110,110,101,114,16,0,12,35,114,111,116,111,114,67,111,111,107,105,101,16,0,11,35,114,111,119,45,99,111,111,107,105,101,16,0,17,35,114,113,105,102,95,105,110,102,111,95,98,97,110,110,101,114,16,0,22,35,114,115,95,99,111,111,107,105,101,95,100,101,99,108,97,114,97,116,105,111,110,16,0,36,35,114,115,95,99,111,111,107,105,101,95,109,97,110,97,103,101,114,95,112,111,112,117,112,58,110,111,116,40,46,109,111,100,97,108,41,16,0,31,35,114,115,95,99,111,111,107,105,101,95,109,97,110,97,103,101,114,95,112,111,112,117,112,95,115,104,97,100,111,119,16,0,20,35,114,115,115,101,111,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,16,35,114,116,80,114,105,118,97,99,121,66,97,110,110,101,114,16,0,19,35,114,116,108,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,24,35,114,116,108,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,17,35,114,116,108,95,99,111,111,107,105,101,95,115,109,97,108,108,16,0,18,35,114,116,111,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,18,35,114,116,112,112,114,105,118,97,99,121,99,111,110,116,101,110,116,16,0,11,35,114,116,115,67,111,111,107,105,101,115,16,0,17,35,114,116,118,101,67,111,111,107,105,101,80,111,108,105,99,121,16,0,11,35,114,117,98,97,110,45,99,110,105,108,16,0,11,35,114,118,97,99,111,111,107,105,101,115,16,0,17,35,114,118,100,119,67,111,111,107,105,101,80,111,108,105,99,121,16,0,17,35,114,119,95,97,99,99,101,112,116,95,99,111,111,107,105,101,16,0,17,35,114,119,95,97,108,101,114,116,95,99,111,111,107,105,101,115,16,0,19,35,114,119,100,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,15,35,114,119,100,99,111,111,107,105,101,115,105,110,102,111,16,0,15,35,114,119,115,45,99,111,111,107,105,101,45,98,97,114,16,0,18,35,114,120,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,16,35,114,121,110,67,111,111,107,105,101,80,111,108,105,99,121,16,0,16,35,115,45,97,118,118,105,115,111,45,99,111,111,107,105,101,16,0,9,35,115,45,99,111,111,107,105,101,16,0,18,35,115,45,117,105,45,99,99,45,99,111,110,116,97,105,110,101,114,16,0,15,35,115,45,117,105,45,99,99,45,110,97,118,98,97,114,16,0,17,35,115,49,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,20,35,115,49,49,50,95,97,99,99,101,112,116,95,99,111,111,107,105,101,115,16,0,25,35,115,50,109,95,99,111,111,107,105,101,115,95,111,112,116,105,110,95,100,105,97,108,111,103,16,0,19,35,115,52,99,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,13,35,115,95,99,111,111,107,105,101,95,109,115,103,16,0,24,35,115,95,115,95,99,111,111,107,105,101,73,110,102,111,67,111,110,116,97,105,110,101,114,16,0,21,35,115,97,103,108,97,115,110,111,115,116,45,99,111,110,116,97,105,110,101,114,16,0,22,35,115,97,108,115,97,45,112,111,108,105,99,105,101,115,45,97,100,118,105,99,101,16,0,19,35,115,97,110,111,109,97,45,99,111,110,115,101,110,116,45,98,97,114,16,0,26,35,115,97,110,111,109,97,45,99,111,110,115,101,110,116,45,98,97,114,45,109,111,98,105,108,101,16,0,15,35,115,97,112,45,100,105,115,99,108,97,105,109,101,114,16,0,29,35,115,98,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,111,118,101,114,108,97,121,16,0,18,35,115,98,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,16,0,21,35,115,98,69,117,67,111,111,107,105,101,67,111,110,115,101,110,116,66,111,120,16,0,12,35,115,98,101,117,45,99,111,111,107,105,101,16,0,21,35,115,99,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,16,0,23,35,115,99,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,16,35,115,99,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,12,35,115,99,45,103,100,112,114,45,98,111,120,16,0,14,35,115,99,67,111,111,107,105,101,77,111,100,97,108,16,0,14,35,115,99,95,116,104,105,115,112,111,108,105,99,121,16,0,12,35,115,99,99,45,99,111,110,115,101,110,116,16,0,15,35,115,99,99,45,99,111,111,107,105,101,45,98,97,114,16,0,19,35,115,99,99,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,9,35,115,99,99,45,109,97,115,107,16,0,16,35,115,99,99,67,111,111,107,105,101,66,97,110,110,101,114,16,0,25,35,115,99,104,105,102,116,101,114,115,45,103,100,112,114,45,99,111,110,116,97,105,110,101,114,16,0,11,35,115,99,109,112,45,112,111,112,105,110,16,0,19,35,115,99,109,115,45,99,99,45,99,111,111,107,105,101,45,98,97,114,16,0,16,35,115,99,110,98,45,99,111,111,107,105,101,45,98,97,114,16,0,14,35,115,100,45,101,117,45,99,111,111,107,105,101,115,16,0,15,35,115,100,67,111,111,107,105,101,66,97,110,110,101,114,16,0,24,35,115,100,98,67,111,111,107,105,101,76,101,103,97,108,67,111,110,116,97,105,110,101,114,16,0,21,35,115,100,103,100,112,114,95,109,111,100,97,108,95,119,114,97,112,112,101,114,16,0,29,35,115,101,45,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,16,0,18,35,115,101,99,99,97,111,49,32,62,32,35,99,111,111,107,105,101,16,0,14,35,115,101,99,99,105,111,99,111,111,107,105,101,115,16,0,15,35,115,101,99,116,105,111,110,45,99,111,111,107,105,101,16,0,28,35,115,101,99,116,105,111,110,45,99,111,111,107,105,101,95,110,111,116,105,116,105,99,97,116,105,111,110,16,0,16,35,115,101,99,116,105,111,110,45,99,111,111,107,105,101,115,16,0,15,35,115,101,99,116,105,111,110,95,99,111,111,107,105,101,16,0,13,35,115,101,99,116,105,111,110,95,114,103,112,100,16,0,19,35,115,101,101,100,68,105,118,67,111,111,107,105,101,76,97,119,73,100,16,0,22,35,115,101,101,100,68,105,118,67,111,111,107,105,101,119,76,97,119,73,110,102,111,16,0,25,35,115,101,103,110,97,108,97,122,105,111,110,101,95,99,111,111,107,105,101,115,95,101,120,116,16,0,14,35,115,101,108,108,121,45,99,111,111,107,105,101,115,16,0,19,35,115,101,109,111,99,111,111,107,105,101,45,104,97,110,100,108,101,114,16,0,26,35,115,101,111,98,108,111,103,103,101,114,116,105,112,115,45,99,111,111,107,105,101,45,105,102,121,16,0,11,35,115,101,114,97,67,111,111,107,105,101,16,0,21,35,115,101,114,97,118,111,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,16,35,115,101,114,118,105,99,101,115,45,99,111,111,107,105,101,16,0,18,35,115,102,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,16,35,115,102,45,99,111,111,107,105,101,45,109,111,100,97,108,16,0,19,35,115,102,67,111,111,107,105,101,87,97,114,110,105,110,103,66,97,114,16,0,25,35,115,102,67,111,111,107,105,101,87,97,114,110,105,110,103,66,97,114,83,112,97,99,101,114,16,0,17,35,115,102,104,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,27,35,115,103,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,45,111,117,116,115,105,100,101,16,0,19,35,115,103,67,111,111,107,105,101,115,80,111,108,105,99,121,66,97,114,16,0,26,35,115,103,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,95,109,101,115,115,97,103,101,16,0,10,35,115,103,99,111,111,107,105,101,115,16,0,11,35,115,103,115,95,99,111,111,107,105,101,16,0,15,35,115,104,97,100,111,119,45,99,111,111,107,105,101,115,16,0,10,35,115,104,97,105,109,95,99,107,115,16,0,13,35,115,104,97,105,109,95,99,107,115,95,101,117,16,0,17,35,115,104,97,114,101,80,114,111,102,105,108,101,76,105,110,107,16,0,19,35,115,104,97,114,101,100,95,103,100,112,114,95,102,111,111,116,101,114,16,0,13,35,115,104,97,114,107,45,99,111,111,107,105,101,16,0,12,35,115,104,111,112,45,99,111,111,107,105,101,16,0,24,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,115,16,0,28,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,115,95,108,97,119,16,0,30,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,99,111,111,107,105,101,115,95,112,111,112,117,112,16,0,35,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,28,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,103,100,112,114,45,100,105,97,108,111,103,16,0,28,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,103,100,112,114,45,110,111,116,105,99,101,16,0,38,35,115,104,111,112,105,102,121,45,115,101,99,116,105,111,110,45,103,108,111,98,97,108,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,27,35,115,104,111,112,105,108,108,97,120,99,111,111,107,105,101,108,97,119,45,119,114,97,112,112,101,114,16,0,25,35,115,104,111,114,116,104,97,110,100,45,103,100,112,114,45,99,111,110,116,97,105,110,101,114,16,0,19,35,115,104,111,114,116,112,105,120,101,108,45,99,111,111,107,105,101,115,16,0,12,35,115,104,111,119,45,99,111,111,107,105,101,16,0,11,35,115,104,111,119,67,111,111,107,105,101,16,0,15,35,115,104,111,119,67,111,111,107,105,101,73,110,102,111,16,0,20,35,115,104,111,119,95,98,97,110,110,101,114,95,99,111,111,107,105,101,115,16,0,12,35,115,104,111,119,95,99,111,111,107,105,101,16,0,20,35,115,104,111,119,95,99,111,111,107,105,101,95,99,111,110,116,101,110,116,16,0,13,35,115,104,111,119,95,99,111,111,107,105,101,115,16,0,11,35,115,104,111,119,99,111,111,107,105,101,16,0,16,35,115,104,111,119,99,111,111,107,105,101,97,108,101,114,116,16,0,15,35,115,104,111,119,99,111,111,107,105,101,105,110,102,111,16,0,14,35,115,104,111,119,99,111,111,107,105,101,108,97,119,16,0,24,35,115,104,111,119,99,111,111,107,105,101,112,114,105,118,97,99,121,95,112,111,112,117,112,16,0,14,35,115,104,111,119,99,111,111,107,105,101,116,120,116,16,0,21,35,115,105,45,98,115,116,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,16,35,115,105,101,101,45,99,111,111,107,105,101,45,98,97,114,16,0,16,35,115,105,107,111,109,111,114,95,99,111,111,107,105,101,115,16,0,14,35,115,105,109,112,108,101,45,99,111,111,107,105,101,16,0,21,35,115,105,109,112,108,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,22,35,115,105,109,112,108,101,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,24,35,115,105,109,112,108,101,45,101,117,45,99,111,111,107,105,101,99,111,110,116,114,111,108,16,0,32,35,115,105,109,112,108,101,45,101,117,45,99,111,111,107,105,101,99,111,110,116,114,111,108,45,111,118,101,114,108,97,121,16,0,19,35,115,105,109,112,108,101,65,99,99,101,112,116,67,111,111,107,105,101,16,0,16,35,115,105,109,112,108,101,67,111,111,107,105,101,66,97,114,16,0,26,35,115,105,109,112,108,101,67,111,111,107,105,101,67,111,110,115,101,110,116,45,112,111,112,117,112,16,0,19,35,115,105,109,112,108,101,67,111,111,107,105,101,68,105,97,108,111,103,16,0,30,35,115,105,109,112,108,101,99,108,105,99,107,95,117,105,115,95,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,11,35,115,105,109,112,108,101,99,111,111,107,16,0,25,35,115,105,109,112,108,101,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,16,0,29,35,115,105,109,112,108,101,99,111,111,107,105,101,110,111,116,105,102,105,99,97,116,105,111,110,95,118,48,49,16,0,24,35,115,105,116,101,45,97,108,101,114,116,45,99,111,111,107,105,101,110,111,116,105,99,101,16,0,17,35,115,105,116,101,45,98,97,110,110,101,114,45,103,100,112,114,16,0,12,35,115,105,116,101,45,99,111,111,107,105,101,16,0,19,35,115,105,116,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,19,35,115,105,116,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,15,35,115,105,116,101,45,99,111,111,107,105,101,98,97,114,16,0,13,35,115,105,116,101,45,99,111,111,107,105,101,115,16,0,20,35,115,105,116,101,45,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,21,35,115,105,116,101,45,102,111,111,116,101,114,95,95,99,111,111,107,105,101,115,16,0,25,35,115,105,116,101,45,102,111,111,116,101,114,95,97,108,101,114,116,95,99,111,111,107,105,101,16,0,33,35,115,105,116,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,32,35,115,105,116,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,112,111,108,105,99,121,45,99,104,97,110,103,101,16,0,18,35,115,105,116,101,45,111,112,116,105,110,45,104,101,97,100,101,114,16,0,20,35,115,105,116,101,45,119,101,45,117,115,101,45,99,111,111,107,105,101,115,16,0,25,35,115,105,116,101,45,119,105,100,101,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,11,35,115,105,116,101,67,111,111,107,105,101,16,0,17,35,115,105,116,101,80,114,105,118,97,99,121,77,111,100,97,108,16,0,20,35,115,105,116,101,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,16,0,24,35,115,105,116,101,95,99,111,111,107,105,101,115,95,119,97,114,110,105,110,103,95,105,100,16,0,28,35,115,105,116,101,95,102,111,111,116,101,114,95,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,18,35,115,105,116,101,95,105,110,102,111,95,99,111,111,107,105,101,115,16,0,16,35,115,105,116,101,95,109,115,103,95,99,111,111,107,105,101,16,0,17,35,115,105,116,101,99,111,111,107,105,101,98,97,110,110,101,114,16,0,23,35,115,105,116,101,109,97,110,97,103,101,114,45,99,111,111,107,105,101,45,98,97,114,16,0,27,35,115,105,116,101,117,115,101,115,99,111,111,107,105,101,119,97,114,110,105,110,103,115,116,114,105,112,16,0,18,35,115,105,117,95,99,111,111,107,105,101,104,105,110,119,101,105,115,16,0,17,35,115,105,118,95,99,111,111,107,105,101,66,97,110,110,101,114,16,0,12,35,115,105,122,122,108,101,45,103,100,112,114,16,0,22,35,115,105,122,122,108,101,45,103,100,112,114,45,115,117,112,114,101,115,115,111,114,16,0,11,35,115,107,45,99,111,111,107,105,101,115,16,0,10,35,115,107,99,111,111,107,105,101,115,16,0,21,35,115,107,112,99,115,98,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,115,107,118,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,15,35,115,107,121,45,99,111,111,107,105,101,45,98,97,114,16,0,22,35,115,107,121,99,111,109,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,15,35,115,108,95,99,111,111,107,105,101,95,105,110,102,111,16,0,9,35,115,108,97,112,117,107,97,105,16,0,23,35,115,108,97,115,104,97,100,109,105,110,95,101,117,99,111,111,107,105,101,108,97,119,16,0,18,35,115,108,99,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,16,35,115,108,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,17,35,115,108,105,99,107,77,111,100,97,108,67,111,111,107,105,101,16,0,16,35,115,108,105,100,101,45,105,110,45,99,111,111,107,105,101,16,0,21,35,115,108,105,100,101,95,104,101,97,100,101,114,95,99,111,111,107,105,101,115,16,0,15,35,115,108,105,100,101,105,116,45,99,111,111,107,105,101,16,0,27,35,115,108,105,100,105,110,103,45,112,111,112,117,112,45,99,111,111,107,105,101,115,45,99,111,110,116,16,0,17,35,115,108,105,100,105,110,103,67,111,111,107,105,101,68,105,118,16,0,15,35,115,108,120,95,99,111,111,107,105,101,95,108,97,119,16,0,20,35,115,109,45,101,117,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,20,35,115,109,95,111,112,116,105,110,95,98,116,110,95,114,101,118,105,101,119,16,0,28,35,115,109,97,108,108,45,112,111,112,117,112,45,99,111,111,107,105,101,115,45,111,118,101,114,108,97,121,16,0,15,35,115,109,97,114,116,45,99,109,112,45,104,111,115,116,16,0,19,35,115,109,97,114,116,99,111,111,107,105,101,115,95,102,114,97,109,101,16,0,24,35,115,109,97,114,116,119,101,98,45,101,117,99,111,111,107,105,101,45,119,101,114,114,97,16,0,25,35,115,109,99,99,95,104,101,97,100,101,114,95,99,111,111,107,105,101,97,99,99,101,112,116,16,0,11,35,115,109,101,95,99,111,111,107,105,101,16,0,16,35,115,109,101,99,111,111,107,105,101,110,111,116,105,99,101,16,0,21,35,115,109,105,108,101,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,19,35,115,109,105,108,101,67,111,111,107,105,101,67,111,110,116,114,111,108,16,0,28,35,115,109,105,108,101,95,99,111,111,107,105,101,99,101,112,116,105,111,110,95,98,97,110,100,101,97,117,16,0,11,35,115,110,95,99,111,111,107,105,101,115,16,0,21,35,115,110,97,99,107,98,97,114,45,99,111,111,107,105,101,45,105,110,102,111,16,0,17,35,115,110,105,112,112,101,116,45,45,99,111,111,107,105,101,115,16,0,32,35,115,110,105,112,112,101,116,45,99,111,111,107,105,101,65,108,108,111,119,45,99,111,111,107,105,101,65,108,108,111,119,16,0,19,35,115,110,105,112,112,101,116,45,99,111,111,107,105,101,66,97,114,45,16,0,33,35,115,110,105,112,112,101,116,45,99,111,111,107,105,101,67,111,110,116,114,111,108,45,99,111,111,107,105,101,73,110,102,111,16,0,32,35,115,110,105,112,112,101,116,45,99,111,111,107,105,101,83,116,114,105,112,45,99,111,111,107,105,101,83,116,114,105,112,16,0,36,35,115,110,105,112,112,101,116,45,99,111,111,107,105,101,115,65,103,114,101,101,109,101,110,116,67,111,110,116,114,111,108,45,98,97,114,16,0,11,35,115,110,109,99,111,111,107,105,101,115,16,0,24,35,115,111,105,45,103,108,111,98,97,108,45,112,114,105,118,97,99,121,45,105,110,102,111,16,0,12,35,115,111,111,112,97,99,111,111,107,105,101,16,0,12,35,115,111,116,116,111,99,111,111,107,105,101,16,0,25,35,115,111,121,45,103,116,109,99,111,111,107,105,101,115,45,109,97,105,110,98,108,111,99,107,16,0,18,35,115,111,121,99,111,110,116,114,111,108,99,111,111,107,105,101,115,16,0,28,35,115,111,121,99,111,110,116,114,111,108,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,16,0,18,35,115,112,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,19,35,115,112,45,103,100,112,114,45,99,111,110,115,101,110,116,45,117,105,16,0,15,35,115,112,97,114,116,111,111,67,111,111,107,105,101,115,16,0,17,35,115,112,99,45,112,111,112,117,112,45,99,111,111,107,105,101,16,0,13,35,115,112,99,111,111,107,105,101,103,100,112,114,16,0,25,35,115,112,101,97,107,111,117,116,45,99,111,111,107,105,101,45,116,101,109,112,108,97,116,101,16,0,16,35,115,112,102,99,111,111,107,105,101,98,97,110,110,101,114,16,0,16,35,115,112,105,99,111,111,107,105,101,98,97,110,110,101,114,16,0,16,35,115,112,108,101,116,107,111,45,99,111,111,107,105,101,115,16,0,14,35,115,112,111,105,108,101,114,67,111,111,107,105,101,16,0,24,35,115,112,111,116,98,117,122,122,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,14,35,115,112,114,97,99,104,104,105,110,119,101,105,115,16,0,13,35,115,112,114,100,45,99,111,110,115,101,110,116,16,0,29,35,115,112,117,116,110,105,107,95,99,111,111,107,105,101,95,112,111,108,105,99,121,95,98,97,110,110,101,114,16,0,17,35,115,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,16,35,115,114,97,67,111,111,107,105,101,66,97,110,110,101,114,16,0,19,35,115,115,99,67,111,111,107,105,101,83,116,97,116,101,109,101,110,116,16,0,21,35,115,115,116,45,102,111,111,116,101,114,45,99,99,112,97,45,110,111,116,101,16,0,23,35,115,116,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,117,112,16,0,12,35,115,116,67,111,111,107,105,101,98,111,120,16,0,10,35,115,116,95,99,111,111,107,105,101,16,0,15,35,115,116,95,103,100,112,114,95,105,102,114,97,109,101,16,0,23,35,115,116,97,45,103,100,112,114,45,109,111,100,97,108,45,111,118,101,114,108,97,121,16,0,26,35,115,116,97,114,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,27,35,115,116,97,114,116,101,114,45,112,114,111,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,29,35,115,116,97,114,116,115,105,100,101,110,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,27,35,115,116,97,114,116,115,105,100,101,110,45,103,100,112,114,45,100,105,115,99,108,97,105,109,101,114,16,0,29,35,115,116,97,116,105,99,45,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,16,0,10,35,115,116,100,67,111,111,107,105,101,16,0,16,35,115,116,103,45,112,114,105,118,97,99,121,45,98,97,114,16,0,26,35,115,116,105,99,107,121,45,98,97,114,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,16,35,115,116,105,99,107,121,45,98,97,114,45,103,100,112,114,16,0,22,35,115,116,105,99,107,121,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,15,35,115,116,105,99,107,121,45,99,111,111,107,105,101,115,16,0,21,35,115,116,105,99,107,121,45,112,111,112,117,112,45,99,111,111,107,105,101,115,16,0,26,35,115,116,105,99,107,121,87,97,114,110,105,110,103,67,111,111,107,105,101,80,111,108,105,99,121,16,0,19,35,115,116,105,99,107,121,99,111,111,107,105,101,80,111,108,105,99,121,16,0,19,35,115,116,105,99,107,121,110,111,116,101,52,99,111,111,107,105,101,115,16,0,27,35,115,116,105,116,99,104,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,15,35,115,116,107,45,99,111,111,107,105,101,45,98,97,114,16,0,20,35,115,116,109,95,103,100,112,114,95,112,111,112,117,112,45,109,97,105,110,16,0,20,35,115,116,110,99,45,99,111,111,107,105,101,99,111,110,116,114,97,99,116,16,0,18,35,115,116,111,45,99,111,111,107,105,101,77,101,115,115,97,103,101,16,0,13,35,115,116,111,112,99,111,111,107,105,110,102,111,16,0,25,35,115,116,111,114,101,102,114,111,110,116,95,99,111,111,107,105,101,95,119,105,100,103,101,116,16,0,13,35,115,116,111,114,109,45,99,111,111,107,105,101,16,0,19,35,115,116,111,114,109,67,111,111,107,105,101,77,101,108,100,105,110,103,16,0,17,35,115,116,111,114,109,67,111,111,107,105,101,80,111,112,117,112,16,0,16,35,115,116,111,114,109,67,111,111,107,105,101,87,97,108,108,16,0,26,35,115,116,111,114,109,100,105,103,105,116,97,108,45,99,111,111,107,105,101,87,97,108,108,73,100,16,0,24,35,115,116,111,114,121,105,102,121,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,19,35,115,116,114,97,118,97,67,111,111,107,105,101,66,97,110,110,101,114,16,0,21,35,115,116,114,97,119,98,101,114,114,121,45,99,111,111,107,105,101,98,97,114,16,0,14,35,115,116,114,105,112,101,45,99,111,111,107,105,101,16,0,14,35,115,116,114,105,112,101,95,104,97,109,109,111,110,16,0,11,35,115,116,116,45,99,111,111,107,105,101,16,0,21,35,115,117,98,115,101,114,118,105,99,101,67,111,111,107,105,101,115,66,97,114,16,0,23,35,115,117,105,45,84,99,102,70,105,114,115,116,76,97,121,101,114,77,111,100,97,108,16,0,19,35,115,117,109,109,117,115,95,99,111,111,107,105,101,95,105,110,102,111,16,0,18,35,115,117,110,45,99,111,111,107,105,101,77,101,115,115,97,103,101,16,0,23,35,115,117,110,45,99,111,111,107,105,101,77,101,115,115,97,103,101,73,110,110,101,114,16,0,20,35,115,117,112,101,114,109,97,103,45,99,111,111,107,105,101,45,105,102,121,16,0,11,35,115,117,114,118,101,121,95,98,97,114,16,0,10,35,115,117,116,105,46,115,117,116,105,16,0,16,35,115,117,116,105,84,97,106,101,107,111,122,116,97,116,111,16,0,20,35,115,117,116,105,95,102,105,103,121,101,108,109,101,122,116,101,116,101,115,16,0,30,35,115,117,116,105,95,102,105,103,121,101,108,109,101,122,116,101,116,101,115,95,97,98,108,97,107,95,102,105,120,16,0,10,35,115,117,116,105,95,105,110,102,111,16,0,13,35,115,117,116,105,95,107,101,122,101,108,101,115,16,0,8,35,115,117,116,105,98,111,120,16,0,6,35,115,117,116,105,107,16,0,32,35,115,117,116,105,107,95,104,97,115,122,110,97,108,97,116,97,95,102,105,103,121,101,108,109,101,122,116,101,116,101,115,16,0,7,35,115,117,116,105,107,101,16,0,18,35,115,118,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,30,35,115,118,116,67,111,111,107,105,101,73,110,102,111,114,109,97,116,105,111,110,67,111,110,116,97,105,110,101,114,16,0,14,35,115,119,69,85,67,111,111,107,105,101,115,73,68,16,0,11,35,115,119,95,99,111,111,107,105,101,115,16,0,18,35,115,119,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,24,35,115,119,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,115,109,97,108,108,16,0,19,35,115,119,108,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,17,35,115,120,99,95,99,111,110,102,105,114,109,97,116,105,111,110,16,0,16,35,115,120,111,67,111,111,107,105,101,115,65,108,101,114,116,16,0,19,35,115,121,108,45,99,111,111,107,105,101,45,109,111,110,115,116,101,114,16,0,24,35,115,121,110,97,112,115,101,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,49,16,0,23,35,115,121,110,101,114,103,105,95,99,111,111,107,105,101,95,119,114,97,112,112,101,114,16,0,26,35,115,121,110,101,114,103,105,95,105,110,110,101,114,95,105,110,102,111,114,109,97,116,105,111,110,16,0,17,35,115,121,115,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,11,35,115,121,115,67,111,111,107,105,101,115,16,0,15,35,115,122,67,111,111,107,105,101,80,111,108,105,99,121,16,0,12,35,115,122,99,111,111,107,105,101,119,114,112,16,0,17,35,115,122,107,67,111,111,107,105,101,73,110,102,111,66,111,120,16,0,13,35,115,122,111,67,111,111,107,105,101,66,97,114,16,0,15,35,116,50,109,101,117,99,111,111,107,105,101,108,97,119,16,0,15,35,116,51,67,111,111,107,105,101,78,111,116,105,99,101,16,0,18,35,116,52,109,45,100,115,103,118,111,45,99,111,110,115,101,110,116,16,0,13,35,116,95,99,111,111,107,105,101,73,110,102,111,16,0,13,35,116,97,98,108,101,45,99,111,111,107,105,101,16,0,22,35,116,97,114,116,101,97,117,99,105,116,114,111,110,45,111,118,101,114,108,97,121,16,0,19,35,116,97,114,116,101,97,117,99,105,116,114,111,110,45,114,111,111,116,16,0,22,35,116,97,114,116,101,97,117,99,105,116,114,111,110,65,108,101,114,116,66,105,103,16,0,14,35,116,97,118,105,115,111,99,111,111,107,105,101,115,16,0,18,35,116,97,120,105,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,16,35,116,98,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,21,35,116,98,119,101,98,95,99,111,111,107,105,101,115,95,102,111,111,116,101,114,16,0,11,35,116,99,45,99,111,110,115,101,110,116,16,0,19,35,116,99,45,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,16,0,14,35,116,99,95,99,110,105,108,95,112,111,112,117,112,16,0,14,35,116,99,95,99,111,111,107,105,101,95,111,112,116,16,0,22,35,116,99,95,112,114,105,118,95,67,117,115,116,111,109,79,118,101,114,108,97,121,16,0,11,35,116,99,95,112,114,105,118,97,99,121,16,0,22,35,116,99,95,112,114,105,118,97,99,121,95,98,111,116,116,111,109,95,102,105,120,16,0,19,35,116,99,95,112,114,105,118,97,99,121,95,119,114,97,112,112,101,114,16,0,14,35,116,99,95,114,103,112,100,95,112,111,112,117,112,16,0,11,35,116,99,99,99,111,111,107,105,101,115,16,0,11,35,116,99,110,95,110,111,116,105,99,101,16,0,16,35,116,101,97,108,105,117,109,45,99,111,111,107,105,101,115,16,0,19,35,116,101,97,108,105,117,109,95,101,110,115,77,111,100,97,108,66,71,16,0,10,35,116,101,99,111,110,115,101,110,116,16,0,15,35,116,101,109,101,108,99,111,111,107,105,101,112,111,112,16,0,23,35,116,101,109,112,108,97,116,101,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,17,35,116,101,110,97,110,116,65,99,99,101,112,116,84,101,120,116,16,0,16,35,116,101,114,109,105,110,111,115,67,111,111,107,105,101,115,16,0,35,35,116,101,114,109,108,121,45,99,111,100,101,45,115,110,105,112,112,101,116,45,115,117,112,112,111,114,116,45,98,97,110,110,101,114,16,0,16,35,116,101,114,109,111,45,100,101,45,99,111,111,107,105,101,16,0,21,35,116,101,114,109,111,45,100,101,45,99,111,111,107,105,101,95,105,110,118,105,16,0,14,35,116,101,114,109,111,115,45,99,111,111,107,105,101,16,0,22,35,116,101,114,109,115,45,112,114,105,118,97,99,121,45,99,111,110,115,101,110,116,16,0,23,35,116,101,114,109,115,65,110,100,80,114,105,118,97,99,121,70,108,111,97,116,101,114,16,0,12,35,116,101,114,109,115,78,111,116,105,99,101,16,0,23,35,116,101,114,109,115,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,12,35,116,101,114,109,115,99,111,111,107,105,101,16,0,24,35,116,101,115,99,111,67,111,111,107,105,101,78,111,116,105,102,105,99,97,116,105,111,110,16,0,20,35,116,101,115,99,111,95,99,111,111,107,105,101,95,119,105,100,103,101,116,16,0,21,35,116,101,115,99,111,95,112,111,108,105,99,121,95,119,105,100,103,101,116,49,16,0,18,35,116,101,120,116,65,99,99,101,112,116,67,111,111,107,105,101,115,16,0,16,35,116,101,120,116,73,110,102,111,67,111,111,107,105,101,115,16,0,20,35,116,101,120,116,111,95,97,118,105,115,111,95,99,111,111,107,105,101,115,16,0,21,35,116,101,120,120,97,115,45,99,111,111,107,105,101,45,97,99,99,101,112,116,16,0,18,35,116,102,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,16,0,15,35,116,102,99,111,111,107,105,101,45,109,111,100,97,108,16,0,15,35,116,102,101,45,99,111,111,107,105,101,45,98,97,114,16,0,20,35,116,102,101,45,99,111,111,107,105,101,45,108,105,103,104,116,98,111,120,16,0,31,35,116,102,101,45,99,111,111,107,105,101,45,108,105,103,104,116,98,111,120,45,115,109,111,107,101,108,97,121,101,114,16,0,12,35,116,102,108,45,99,111,111,107,105,101,115,16,0,21,35,116,102,109,95,100,115,103,118,111,95,100,105,115,99,108,97,105,109,101,114,16,0,12,35,116,102,111,95,99,111,111,107,105,101,115,16,0,16,35,116,103,98,103,100,112,114,45,111,118,101,114,108,97,121,16,0,13,35,116,104,45,45,101,117,99,111,111,107,105,101,16,0,11,35,116,104,101,45,99,111,111,107,105,101,16,0,10,35,116,104,101,67,111,111,107,105,101,16,0,14,35,116,104,101,67,111,111,107,105,101,78,111,116,101,16,0,13,35,116,104,101,76,97,119,67,111,111,107,105,101,16,0,13,35,116,104,101,95,99,111,111,107,105,101,115,51,16,0,10,35,116,104,101,99,111,111,107,105,101,16,0,10,35,116,104,101,101,99,108,98,111,120,16,0,13,35,116,104,101,109,101,95,99,111,111,107,105,101,16,0,32,35,116,104,101,115,101,117,115,67,111,111,107,105,101,80,111,108,105,99,121,95,117,108,67,111,111,107,105,101,80,111,108,16,0,28,35,116,104,105,110,107,99,111,110,115,101,110,116,45,110,111,116,105,99,101,45,119,114,97,112,112,101,114,16,0,18,35,116,104,105,115,99,111,111,107,105,101,109,101,115,115,97,103,101,16,0,15,35,116,105,70,121,95,67,111,111,107,105,101,76,97,119,16,0,18,35,116,105,100,95,99,111,111,107,105,101,87,97,114,110,105,110,103,16,0,19,35,116,105,102,121,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,20,35,116,105,110,100,105,101,95,99,111,111,107,105,101,95,97,108,101,114,116,16,0,16,35,116,105,110,115,95,99,111,111,107,105,101,95,98,97,114,16,0,19,35,116,105,110,121,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,11,35,116,105,112,67,111,111,107,105,101,115,16,0,14,35,116,105,114,111,105,114,95,99,111,111,107,105,101,16,0,15,35,116,105,118,45,99,111,111,107,105,101,45,98,97,114,16,0,20,35,116,108,45,99,111,111,107,105,101,45,112,111,112,117,112,45,98,111,120,16,0,19,35,116,108,67,111,109,109,111,110,71,100,112,114,66,97,110,110,101,114,16,0,33,35,116,108,67,111,111,107,105,101,67,111,109,112,108,105,101,110,99,101,73,110,105,116,105,97,108,87,114,97,112,112,101,114,16,0,11,35,116,108,111,95,99,111,111,107,105,101,16,0,18,35,116,108,112,45,99,111,111,107,105,101,115,45,112,111,112,117,112,16,0,17,35,116,108,115,99,111,111,107,105,101,115,101,117,45,98,97,114,16,0,16,35,116,109,80,114,105,118,97,99,121,68,105,97,108,111,103,16,0,17,35,116,109,80,114,105,118,97,99,121,79,118,101,114,108,97,121,16,0,15,35,116,109,80,114,105,118,97,99,121,83,116,121,108,101,16,0,14,35,116,109,112,95,108,101,103,97,108,95,98,97,114,16,0,24,35,116,109,114,99,95,99,111,111,107,105,101,95,102,111,111,116,101,114,95,105,110,102,111,16,0,13,35,116,110,45,99,111,111,107,105,101,98,97,114,16,0,18,35,116,110,119,95,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,17,35,116,110,122,99,111,111,107,105,101,95,98,111,116,116,111,109,16,0,14,35,116,111,97,115,116,45,99,111,111,107,105,101,115,16,0,10,35,116,111,97,115,116,76,103,112,100,16,0,24,35,116,111,97,115,116,115,32,62,32,35,116,111,97,115,116,115,87,114,97,112,112,101,114,16,0,20,35,116,111,102,105,110,111,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,13,35,116,111,111,103,45,99,111,111,107,105,101,115,16,0,15,35,116,111,111,108,98,97,114,45,99,111,111,107,105,101,16,0,16,35,116,111,111,108,98,97,114,95,99,111,111,107,105,101,115,16,0,15,35,116,111,111,108,116,105,112,45,99,111,111,107,105,101,16,0,22,35,116,111,111,108,116,105,112,45,112,114,105,118,97,99,121,45,115,104,111,119,110,16,0,19,35,116,111,112,45,99,111,111,107,105,101,45,115,101,99,116,105,111,110,16,0,19,35,116,111,112,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,24,35,116,111,112,45,109,101,115,115,97,103,101,45,105,110,102,111,45,99,111,111,107,105,101,16,0,10,35,116,111,112,67,111,111,107,105,101,16,0,16,35,116,111,112,67,111,111,107,105,101,66,97,110,110,101,114,16,0,13,35,116,111,112,67,111,111,107,105,101,115,73,68,16,0,17,35,116,111,112,69,117,67,111,111,107,105,101,65,108,101,114,116,16,0,16,35,116,111,112,95,99,111,111,107,105,101,80,111,112,85,112,16,0,17,35,116,111,112,95,99,111,111,107,105,101,95,112,111,112,117,112,16,0,26,35,116,111,112,95,104,101,97,100,101,114,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,24,35,116,111,112,98,97,114,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,15,35,116,111,112,98,97,114,45,99,111,111,107,105,101,115,16,0,10,35,116,111,112,99,111,111,107,105,101,16,0,11,35,116,111,115,45,98,97,110,110,101,114,16,0,10,35,116,111,115,98,97,110,110,101,114,16,0,25,35,116,111,119,110,115,105,100,101,45,99,111,111,107,105,101,98,97,114,45,111,117,116,101,114,16,0,17,35,116,112,45,99,111,111,107,105,101,45,115,99,114,105,112,116,16,0,18,35,116,112,108,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,9,35,116,114,67,111,111,107,105,101,16,0,15,35,116,114,97,99,107,67,111,111,107,105,101,66,97,114,16,0,15,35,116,114,97,99,107,101,114,45,98,97,110,110,101,114,16,0,16,35,116,114,97,99,107,101,114,45,119,97,114,110,105,110,103,16,0,26,35,116,114,97,99,107,101,114,115,45,97,115,107,45,99,111,110,115,101,110,116,45,103,100,112,114,16,0,29,35,116,114,97,99,107,105,110,103,45,97,103,114,101,101,46,115,116,105,99,107,121,45,98,111,116,116,111,109,16,0,17,35,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,16,0,28,35,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,98,108,111,99,107,45,112,97,103,101,16,0,28,35,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,100,105,97,108,111,103,45,110,101,119,16,0,34,35,116,114,97,99,107,105,110,103,45,99,111,110,115,101,110,116,45,104,101,97,100,101,114,45,99,111,110,116,97,105,110,101,114,16,0,17,35,116,114,97,99,107,105,110,103,45,99,111,111,107,105,101,115,16,0,15,35,116,114,97,99,107,105,110,103,67,111,111,107,105,101,16,0,22,35,116,114,97,99,107,105,110,103,80,101,114,109,105,115,115,105,111,110,66,97,114,16,0,23,35,116,114,97,99,107,105,110,103,95,99,111,110,115,101,110,116,95,109,111,100,97,108,16,0,17,35,116,114,97,99,107,105,110,103,95,104,105,110,119,101,105,115,16,0,22,35,116,114,97,99,107,105,110,103,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,24,35,116,114,97,110,115,99,101,110,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,116,114,97,110,122,121,115,116,111,114,99,111,111,107,105,101,115,16,0,20,35,116,114,97,118,101,108,116,97,45,99,111,111,107,105,101,45,98,97,114,16,0,19,35,116,114,105,97,100,95,103,100,112,114,95,99,111,110,115,101,110,116,16,0,11,35,116,114,105,103,67,111,111,107,105,101,16,0,29,35,116,114,105,112,105,120,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,110,111,116,105,99,101,16,0,21,35,116,114,106,115,45,99,111,111,107,105,101,115,45,101,108,101,109,101,110,116,16,0,12,35,116,114,111,110,105,99,45,103,100,112,114,16,0,25,35,116,114,117,111,110,103,98,108,111,103,103,101,114,45,99,111,111,107,105,101,45,105,102,121,16,0,14,35,116,114,117,115,116,101,45,98,97,110,110,101,114,16,0,14,35,116,114,117,115,116,101,45,98,117,116,116,111,110,16,0,21,35,116,114,117,115,116,101,45,99,111,110,115,101,110,116,45,116,114,97,99,107,16,0,21,35,116,114,117,121,111,45,99,111,110,115,101,110,116,45,109,111,100,117,108,101,16,0,15,35,116,115,95,99,111,111,107,105,101,95,105,110,102,111,16,0,12,35,116,115,99,111,111,107,105,101,98,97,114,16,0,15,35,116,115,111,45,99,111,111,107,105,101,45,98,97,114,16,0,16,35,116,116,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,16,35,116,116,45,99,111,111,107,105,101,45,98,97,100,103,101,16,0,16,35,116,116,45,99,111,111,107,105,101,45,99,104,101,99,107,16,0,17,35,116,116,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,18,35,116,116,45,99,111,111,107,105,101,45,111,118,101,114,108,97,121,16,0,17,35,116,116,45,99,111,111,107,105,101,45,119,105,110,100,111,119,16,0,19,35,116,116,45,99,111,111,107,105,101,98,97,114,45,102,114,97,109,101,16,0,11,35,116,116,95,99,111,111,107,105,101,115,16,0,15,35,116,116,99,111,111,107,105,101,45,111,117,116,101,114,16,0,18,35,116,116,103,45,97,99,99,101,112,116,45,99,111,111,107,105,101,16,0,23,35,116,116,103,70,111,111,116,101,114,67,111,111,107,105,101,72,105,110,119,101,105,115,16,0,18,35,116,116,111,45,99,111,111,107,105,101,77,101,115,115,97,103,101,16,0,18,35,116,116,114,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,25,35,116,117,45,99,111,111,107,105,101,115,45,101,117,45,99,111,109,112,108,105,97,110,99,101,16,0,28,35,116,117,105,95,119,105,100,103,101,116,95,67,111,111,107,105,101,78,111,116,105,102,105,101,114,95,48,16,0,10,35,116,118,45,99,111,111,107,105,101,16,0,12,35,116,118,45,99,111,111,107,105,101,45,49,16,0,17,35,116,118,50,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,13,35,116,118,50,99,111,111,107,105,101,98,97,114,16,0,11,35,116,118,108,99,111,111,107,105,101,115,16,0,12,35,116,118,115,97,45,99,111,111,107,105,101,16,0,10,35,116,119,45,99,111,111,107,105,101,16,0,16,35,116,119,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,13,35,116,119,99,67,111,111,107,105,101,68,105,118,16,0,10,35,116,119,101,67,111,111,107,105,101,16,0,22,35,116,120,45,101,107,100,45,99,111,110,115,101,110,116,109,97,110,97,103,101,114,16,0,32,35,116,120,45,101,109,104,99,111,111,107,105,101,98,97,110,110,101,114,45,98,97,110,110,101,114,119,105,100,103,101,116,16,0,33,35,116,120,45,109,103,101,110,98,97,115,101,45,99,111,111,107,105,101,99,111,110,115,101,110,116,45,110,111,116,105,99,101,16,0,34,35,116,120,95,99,111,111,107,105,101,99,111,110,115,101,110,116,95,112,114,101,102,101,114,101,110,99,101,115,95,101,100,105,116,16,0,11,35,116,120,95,99,111,111,107,105,101,115,16,0,24,35,116,120,95,99,112,115,99,111,111,107,105,101,105,110,102,111,98,111,120,95,112,105,49,16,0,21,35,116,120,95,102,101,95,99,111,111,107,105,101,115,45,98,97,110,110,101,114,16,0,29,35,116,120,95,109,112,99,112,105,119,105,107,95,98,97,110,110,101,114,95,99,111,110,116,97,105,110,101,114,16,0,20,35,116,120,95,119,119,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,11,35,116,120,116,67,111,111,107,105,101,115,16,0,11,35,116,121,116,117,108,95,114,111,100,111,16,0,12,35,117,97,112,112,45,98,97,110,110,101,114,16,0,22,35,117,98,50,52,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,16,35,117,99,45,98,97,110,110,101,114,45,109,111,100,97,108,16,0,34,35,117,99,45,98,116,110,45,111,117,116,115,105,100,101,45,99,108,105,99,107,45,98,97,110,110,101,114,45,109,111,100,97,108,16,0,24,35,117,99,45,99,101,110,116,114,97,108,45,98,97,110,110,101,114,45,109,111,100,97,108,16,0,16,35,117,99,45,112,114,105,118,97,99,121,45,99,104,105,112,16,0,16,35,117,99,110,45,103,100,112,114,45,98,97,110,110,101,114,16,0,19,35,117,100,102,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,11,35,117,100,108,45,99,111,111,107,105,101,16,0,13,35,117,100,116,67,111,111,107,105,101,98,111,120,16,0,17,35,117,101,45,99,111,111,107,105,101,45,110,111,116,105,102,121,16,0,18,35,117,101,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,10,35,117,101,95,99,111,111,107,105,101,16,0,9,35,117,101,99,111,111,107,105,101,16,0,10,35,117,101,99,111,111,107,105,101,115,16,0,18,35,117,102,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,16,0,12,35,117,102,103,45,99,111,111,107,105,101,115,16,0,16,35,117,103,51,45,99,111,111,107,105,101,45,105,110,102,111,16,0,15,35,117,104,102,67,111,111,107,105,101,65,108,101,114,116,16,0,17,35,117,105,45,97,108,108,111,119,45,99,111,111,107,105,101,115,16,0,10,35,117,105,45,99,111,111,107,105,101,16,0,17,35,117,105,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,31,35,117,105,45,99,111,111,107,105,101,45,115,117,112,112,111,114,116,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,14,35,117,105,45,105,100,45,99,111,111,107,105,101,115,16,0,16,35,117,105,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,13,35,117,105,95,99,111,111,107,105,101,98,108,107,16,0,18,35,117,106,115,122,111,95,99,111,111,107,105,101,97,108,101,114,116,16,0,14,35,117,107,45,99,111,111,107,105,101,45,117,115,101,16,0,9,35,117,107,67,111,111,107,105,101,16,0,15,35,117,107,67,111,111,107,105,101,72,101,97,100,101,114,16,0,14,35,117,107,67,111,111,107,105,101,80,111,112,85,112,16,0,14,35,117,107,67,111,111,107,105,101,80,111,112,117,112,16,0,20,35,117,107,95,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,16,0,21,35,117,107,111,111,45,99,111,111,107,105,101,115,45,119,114,97,112,112,101,114,16,0,15,35,117,107,111,111,95,99,111,111,107,105,101,108,97,119,16,0,14,35,117,107,111,111,99,111,111,107,105,101,108,97,119,16,0,12,35,117,110,67,111,111,107,105,101,67,110,116,16,0,18,35,117,110,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,18,35,117,110,105,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,18,35,117,110,105,95,97,99,99,101,112,116,95,99,111,111,107,105,101,16,0,18,35,117,110,105,100,101,98,45,103,100,112,114,45,98,108,111,99,107,16,0,20,35,117,110,105,108,101,118,101,114,67,111,111,107,105,101,80,111,112,117,112,16,0,25,35,117,110,105,115,97,110,116,97,45,99,111,111,107,105,101,45,109,101,110,115,97,103,101,109,16,0,20,35,117,110,105,116,99,111,111,107,105,101,111,110,112,97,103,101,66,97,114,16,0,16,35,117,110,105,116,115,99,111,111,107,105,101,45,108,97,119,16,0,17,35,117,111,95,99,111,111,107,105,101,95,98,97,110,110,101,114,16,0,17,35,117,111,99,95,99,111,111,107,105,101,95,105,110,116,114,111,16,0,16,35,117,111,100,99,111,111,107,105,101,110,111,116,105,99,101,16,0,10,35,117,112,45,99,111,111,107,105,101,16,0,15,35,117,112,45,103,100,112,114,45,98,97,110,110,101,114,16,0,21,35,117,112,100,97,116,101,100,80,114,105,118,97,99,121,80,111,108,105,99,121,16,0,11,35,117,115,45,99,111,111,107,105,101,115,16,0,15,35,117,115,95,99,111,111,107,105,101,115,95,109,115,103,16,0,10,35,117,115,99,111,111,107,105,101,115,16,0,14,35,117,115,101,45,111,102,45,99,111,111,107,105,101,16,0,19,35,117,115,101,67,111,111,107,105,101,65,103,114,101,101,109,101,110,116,16,0,22,35,117,115,101,67,111,111,107,105,101,115,65,99,99,101,112,116,66,108,111,99,107,16,0,15,35,117,115,101,67,111,111,107,105,101,115,67,111,110,116,16,0,11,35,117,115,101,95,99,111,111,107,105,101,16,0,18,35,117,115,101,95,99,111,111,107,105,101,95,114,101,109,105,110,100,16,0,12,35,117,115,101,95,99,111,111,107,105,101,115,16,0,14,35,117,115,101,95,111,102,95,99,111,111,107,105,101,16,0,11,35,117,115,101,99,111,111,107,105,101,115,16,0,22,35,117,115,101,114,45,97,103,114,101,101,109,101,110,116,45,110,111,116,105,102,121,16,0,20,35,117,115,101,114,45,99,111,111,107,105,101,45,99,111,110,102,105,114,109,16,0,20,35,117,115,101,114,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,20,35,117,115,101,114,45,99,111,111,107,105,101,45,109,115,103,45,98,111,120,16,0,20,35,117,115,101,114,65,103,114,101,101,109,101,110,116,66,97,110,110,101,114,16,0,17,35,117,115,101,114,67,111,110,115,101,110,116,68,97,116,97,115,16,0,13,35,117,115,101,114,95,99,111,111,107,105,101,115,16,0,18,35,117,115,101,114,95,111,112,116,105,110,95,98,97,110,110,101,114,16,0,15,35,117,115,101,114,99,111,111,107,105,101,115,104,111,119,16,0,14,35,117,115,101,114,109,115,103,67,111,111,107,105,101,16,0,13,35,117,115,105,110,103,67,111,111,107,105,101,115,16,0,19,35,117,115,105,110,103,67,111,111,107,105,101,115,66,97,110,110,101,114,16,0,14,35,117,115,105,110,103,95,99,111,111,107,105,101,115,16,0,19,35,117,115,111,80,111,108,105,116,105,99,97,67,111,111,107,105,101,115,16,0,12,35,117,115,111,95,99,111,111,107,105,101,115,16,0,15,35,117,115,111,95,100,101,105,95,99,111,111,107,105,101,16,0,11,35,117,115,111,99,111,111,107,105,101,115,16,0,11,35,117,115,114,67,111,110,115,101,110,116,16,0,11,35,117,115,114,99,111,111,107,105,101,115,16,0,13,35,117,115,116,97,119,97,67,111,111,107,105,101,16,0,14,35,117,116,45,99,111,111,107,105,101,45,98,97,114,16,0,22,35,117,116,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,98,97,114,16,0,24,35,117,116,105,108,105,115,97,116,105,111,110,45,100,101,115,45,99,111,111,107,105,101,115,16,0,19,35,117,116,105,108,105,115,97,116,105,111,110,67,111,111,107,105,101,115,16,0,12,35,118,45,99,111,111,107,105,101,108,97,119,16,0,16,35,118,45,99,111,111,107,105,101,109,101,115,115,97,103,101,16,0,23,35,118,52,99,111,114,101,95,99,111,111,107,105,101,95,115,101,116,116,105,110,103,115,16,0,18,35,118,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,21,35,118,97,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,103,16,0,11,35,118,97,100,45,99,111,111,107,105,101,16,0,14,35,118,97,108,105,100,95,99,111,111,107,105,101,115,16,0,17,35,118,97,108,105,100,97,116,105,111,110,67,111,111,107,105,101,16,0,20,35,118,97,114,105,97,110,45,103,100,112,114,45,99,111,110,115,101,110,116,16,0,14,35,118,99,45,98,97,114,45,99,111,111,107,105,101,16,0,18,35,118,99,109,45,118,45,99,111,110,115,101,110,116,45,115,100,107,16,0,16,35,118,100,45,99,111,111,107,105,101,45,97,108,101,114,116,16,0,17,35,118,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,24,35,118,100,45,99,111,111,107,105,101,45,98,97,110,110,101,114,45,115,112,97,99,101,114,16,0,11,35,118,101,110,99,111,111,107,105,101,115,16,0,16,35,118,101,110,116,97,110,97,45,99,111,111,107,105,101,115,16,0,15,35,118,101,110,116,97,110,97,67,111,111,107,105,101,115,16,0,15,35,118,101,114,97,118,105,115,111,99,111,111,107,105,101,16,0,18,35,118,101,114,105,102,105,99,97,114,45,99,111,111,107,105,101,115,16,0,17,35,118,101,115,116,105,45,71,68,80,82,45,102,114,97,109,101,16,0,16,35,118,104,45,99,111,111,107,105,101,45,116,101,114,109,115,16,0,17,35,118,104,98,45,99,111,110,115,101,110,116,108,97,121,101,114,16,0,12,35,118,105,101,119,67,111,111,107,105,101,115,16,0,21,35,118,105,101,119,108,101,116,45,99,111,111,107,105,101,112,111,108,105,99,121,16,0,19,35,118,105,101,119,108,101,116,45,100,105,115,99,108,97,105,109,101,114,16,0,21,35,118,105,115,109,111,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,18,35,118,105,117,99,111,109,45,99,111,111,107,105,101,45,98,97,114,16,0,19,35,118,105,118,101,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,26,35,118,107,95,99,111,111,107,105,101,95,109,97,110,97,103,101,114,45,45,98,97,110,110,101,114,16,0,14,35,118,109,45,99,111,111,107,105,101,45,98,97,114,16,0,18,35,118,109,108,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,22,35,118,111,103,111,110,115,45,99,111,111,107,105,101,115,45,109,97,115,116,101,114,16,0,26,35,118,111,105,101,108,108,111,45,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,19,35,118,111,112,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,16,0,22,35,118,112,45,106,115,45,99,111,111,107,105,101,115,95,95,110,111,116,105,99,101,16,0,14,35,118,114,103,112,100,95,98,97,110,100,101,97,117,16,0,11,35,118,114,110,45,99,111,111,107,105,101,16,0,18,35,118,115,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,16,0,17,35,118,115,45,99,111,111,107,105,101,104,105,110,119,101,105,115,16,0,18,35,118,115,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,16,0,17,35,118,115,99,99,111,111,107,105,101,67,111,110,115,101,110,116,16,0,18,35,118,115,99,111,111,107,105,101,65,108,101,114,116,67,111,110,116,16,0,23,35,118,115,101,98,105,110,97,79,112,111,122,111,114,105,108,97,67,111,111,107,105,101,16,0,17,35,118,115,109,95,99,111,111,107,105,101,95,99,104,101,99,107,16,0,14,35,118,116,45,99,99,98,45,110,111,116,105,102,121,16,0,22,35,118,116,114,105,99,107,45,112,114,111,45,99,111,111,107,105,101,45,105,102,121,16,0,11,35,118,117,95,99,111,110,115,101,110,116,16,0,24,35,118,117,95,108,97,121,101,114,95,99,111,111,107,105,101,95,99,111,110,116,101,110,116,16,0,20,35,118,117,101,45,97,112,112,45,112,114,105,118,97,99,121,45,98,97,114,16,0,10,35,118,117,101,67,111,111,107,105,101,16,0,8,35,118,117,101,71,100,112,114,16,0,14,35,118,117,101,95,99,111,111,107,105,101,108,97,119,16,0,11,35,118,118,99,95,99,111,111,107,105,101,16,0,13,35,118,119,100,67,111,111,107,105,101,66,97,114,16,0,17,35,119,45,99,111,111,107,105,101,115,45,110,111,116,105,99,101,16,0,25,35,119,49,56,108,97,114,97,95,116,103,112,108,117,103,105,110,95,99,111,110,115,101,110,116,16,0,18,35,119,50,117,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,10,35,119,51,53,55,95,99,112,110,98,16,0,12,35,119,51,115,45,99,111,111,107,105,101,115,16,0,16,35,119,52,117,45,99,111,111,107,105,101,45,105,110,102,111,16,0,14,35,119,67,111,111,107,105,101,78,111,116,105,99,101,16,0,9,35,119,97,67,111,111,107,105,101,16,0,7,35,119,97,71,68,80,82,16,0,14,35,119,97,95,99,109,112,79,118,101,114,108,97,121,16,0,17,35,119,97,102,45,99,111,111,107,105,101,45,112,111,112,117,112,16,0,16,35,119,97,103,101,110,116,111,45,99,112,45,119,114,97,112,16,0,15,35,119,97,104,45,103,100,112,114,45,112,111,112,117,112,16,0,12,35,119,97,110,116,99,111,111,107,105,101,115,16,0,18,35,119,97,114,110,45,99,111,111,107,105,101,115,45,97,114,101,97,16,0,12,35,119,97,114,110,67,111,111,107,105,101,115,16,0,13,35,119,97,114,110,95,99,111,111,107,105,101,115,16,0,15,35,119,97,114,110,105,110,103,45,99,111,111,107,105,101,16,0,15,35,119,97,114,110,105,110,103,67,111,111,107,105,101,115,16,0,21,35,119,97,114,110,105,110,103,95,69,85,95,99,111,111,107,105,101,109,115,103,16,0,15,35,119,97,114,110,105,110,103,95,99,111,111,107,105,101,16,0,16,35,119,97,114,110,105,110,103,95,99,111,111,107,105,101,115,16,0,16,35,119,97,114,110,105,110,103,99,111,111,107,105,101,73,100,16,0,20,35,119,97,114,112,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,16,0,27,35,119,97,114,112,95,99,111,111,107,105,101,95,119,97,114,110,105,110,103,95,109,111,98,105,108,101,16,0,15,35,119,97,114,115,116,119,97,95,99,111,111,107,105,101,16,0,15,35,119,98,67,111,111,107,105,101,80,111,108,105,99,121,16,0,25,35,119,98,111,45,99,111,111,107,105,101,45,108,97,121,101,114,45,119,114,97,112,112,101,114,16,0,15,35,119,99,45,103,100,112,114,45,119,105,100,103,101,116,16,0,25,35,119,99,107,45,99,111,111,107,105,101,45,112,111,112,117,112,45,105,110,102,111,98,111,120,16,0,21,35,119,99,112,67,111,110,115,101,110,116,66,97,110,110,101,114,67,116,114,108,16,0,19,35,119,99,115,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,16,35,119,100,45,99,111,110,115,101,110,116,45,116,111,111,108,16,0,20,35,119,100,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,14,35,119,100,103,80,114,105,118,97,99,121,66,111,120,16,0,15,35,119,100,103,95,99,111,111,107,105,101,95,98,97,114,16,0,15,35,119,100,109,45,99,111,111,107,105,101,110,111,116,101,16,0,14,35,119,101,45,117,115,101,45,99,111,111,107,105,101,16,0,15,35,119,101,45,117,115,101,45,99,111,111,107,105,101,115,16,0,13,35,119,101,85,115,101,67,111,111,107,105,101,115,16,0,17,35,119,101,85,115,101,67,111,111,107,105,101,115,73,110,102,111,16,0,18,35,119,101,85,115,101,67,111,111,107,105,101,115,80,111,112,117,112,16,0,15,35,119,101,95,117,115,101,95,99,111,111,107,105,101,115,16,0,23,35,119,101,98,76,105,97,110,100,101,114,67,111,111,107,105,101,66,97,110,110,101,114,16,0,20,35,119,101,98,95,99,111,111,107,105,101,108,97,119,95,112,111,112,117,112,16,0,21,35,119,101,98,97,114,120,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,28,35,119,101,98,100,101,118,67,111,111,107,105,101,115,65,108,101,114,116,67,111,110,116,97,105,110,101,114,16,0,32,35,119,101,98,101,102,101,107,116,105,118,95,103,100,112,114,95,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,16,0,16,35,119,101,98,115,105,116,101,45,99,111,111,107,105,101,115,16,0,23,35,119,101,98,115,105,116,101,45,99,111,111,107,105,101,115,45,112,114,111,109,112,116,16,0,21,35,119,101,98,115,105,116,101,73,115,85,115,105,110,103,67,111,111,107,105,101,16,0,16,35,119,101,98,119,101,114,107,45,99,111,111,107,105,101,115,16,0,14,35,119,101,104,97,118,101,99,111,111,107,105,101,115,16,0,19,35,119,101,108,99,111,109,101,98,97,114,45,119,114,97,112,112,101,114,16,0,24,35,119,101,108,99,111,109,101,98,97,114,45,119,114,97,112,112,101,114,45,103,100,112,114,16,0,13,35,119,101,117,115,101,99,111,111,107,105,101,115,16,0,16,35,119,102,80,114,105,118,97,99,121,78,111,116,105,99,101,16,0,25,35,119,102,95,99,111,111,107,105,101,95,110,111,116,105,99,101,95,119,114,97,112,112,101,114,16,0,10,35,119,103,45,99,111,111,107,105,101,16,0,17,35,119,103,100,112,114,45,99,111,111,107,105,101,45,98,97,114,16,0,17,35,119,104,95,99,111,111,107,105,101,95,97,100,118,105,99,101,16,0,25,35,119,104,105,116,98,114,101,97,100,95,99,111,111,107,105,101,95,119,114,97,112,112,101,114,16,0,21,35,119,105,65,99,99,101,112,116,99,111,111,107,105,101,115,66,108,111,99,107,16,0,26,35,119,105,100,103,101,116,45,97,108,101,114,116,45,117,115,105,110,103,45,99,111,111,107,105,101,16,0,22,35,119,105,100,103,101,116,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,17,35,119,105,100,103,101,116,45,99,111,111,107,105,101,98,97,114,16,0,15,35,119,105,100,103,101,116,45,99,111,111,107,105,101,115,16,0,22,35,119,105,100,103,101,116,45,99,111,111,107,105,101,115,45,97,99,99,101,115,115,16,0,21,35,119,105,100,103,101,116,45,118,114,116,99,111,111,107,105,101,98,97,108,107,16,0,20,35,119,105,100,103,101,116,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,15,35,119,105,100,103,101,116,95,99,111,111,107,105,101,115,16,0,23,35,119,105,100,103,101,116,95,112,114,105,118,97,99,121,95,99,111,111,107,105,101,115,16,0,17,35,119,105,109,80,114,105,118,97,99,121,66,97,110,110,101,114,16,0,17,35,119,105,110,67,111,111,107,105,101,87,97,114,110,105,110,103,16,0,10,35,119,105,110,99,111,111,107,105,101,16,0,21,35,119,105,110,101,114,105,115,116,45,99,111,111,107,105,101,45,105,110,102,111,16,0,14,35,119,105,122,106,111,45,99,111,111,107,105,101,115,16,0,13,35,119,107,95,99,111,111,107,105,101,98,97,114,16,0,30,35,119,108,45,99,111,111,107,105,101,45,100,97,116,101,110,115,99,104,117,116,122,45,109,101,115,115,97,103,101,16,0,20,35,119,109,104,45,99,111,111,107,105,101,45,101,117,45,97,108,101,114,116,16,0,13,35,119,110,95,99,111,111,107,105,101,98,97,114,16,0,15,35,119,110,100,95,99,111,111,107,105,101,95,98,97,114,16,0,10,35,119,111,108,102,45,103,100,112,114,16,0,18,35,119,112,45,99,111,111,107,105,101,45,104,105,110,119,101,105,115,16,0,11,35,119,112,45,99,111,111,107,105,101,115,16,0,16,35,119,112,45,99,111,111,107,105,101,115,45,105,110,102,111,16,0,22,35,119,112,45,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,16,0,27,35,119,112,45,103,100,112,114,45,99,111,111,107,105,101,45,110,111,116,105,99,101,45,119,114,97,112,16,0,15,35,119,112,85,115,105,110,103,67,111,111,107,105,101,115,16,0,17,35,119,112,95,99,111,111,107,105,101,95,112,111,108,105,99,121,16,0,9,35,119,112,99,97,45,98,97,114,16,0,9,35,119,112,99,97,45,98,111,120,16,0,17,35,119,112,99,97,45,112,111,112,117,112,45,109,111,100,97,108,16,0,27,35,119,112,99,117,105,95,99,111,111,107,105,101,95,98,97,114,95,109,97,105,110,95,98,111,100,121,16,0,17,35,119,112,102,95,99,111,111,107,105,101,45,97,108,101,114,116,16,0,19,35,119,112,107,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,16,0,9,35,119,112,110,98,45,98,97,114,16,0,11,35,119,112,120,95,99,111,111,107,105,101,16,0,17,35,119,113,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,10,35,119,114,45,99,111,111,107,105,101,16,0,16,35,119,114,97,112,32,62,32,35,99,111,111,107,105,101,115,16,0,19,35,119,114,97,112,45,99,111,111,107,105,101,45,98,111,116,116,111,109,16,0,21,35,119,114,97,112,45,99,111,111,107,105,101,45,99,111,110,116,114,111,108,115,16,0,13,35,119,114,97,112,45,99,111,111,107,105,101,115,16,0,18,35,119,114,97,112,45,99,111,111,107,105,101,115,45,103,100,112,114,16,0,11,35,119,114,97,112,67,111,111,107,105,101,16,0,26,35,119,114,97,112,95,97,108,101,114,116,95,109,101,115,115,97,103,101,95,99,111,111,107,105,101,16,0,27,35,119,114,97,112,95,97,108,101,114,116,95,109,101,115,115,97,103,101,95,99,111,111,107,105,101,50,16,0,15,35,119,114,97,112,95,105,110,102,111,95,103,100,112,114,16,0,28,35,119,114,97,112,112,101,114,32,62,32,35,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,16,35,119,114,97,112,112,101,114,45,45,99,111,111,107,105,101,16,0,22,35,119,114,97,112,112,101,114,45,97,118,105,115,111,45,99,111,111,107,105,101,115,16,0,15,35,119,114,97,112,112,101,114,45,99,111,111,107,105,101,16,0,16,35,119,114,97,112,112,101,114,45,99,111,111,107,105,101,115,16,0,17,35,119,114,97,112,112,101,114,67,111,111,107,105,101,66,97,114,16,0,21,35,119,114,97,112,112,101,114,77,101,110,115,97,106,101,67,111,111,107,105,101,16,0,16,35,119,114,97,112,112,101,114,95,99,111,111,107,105,101,115,16,0,30,35,119,115,45,98,97,110,110,101,114,45,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,17,35,119,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,22,35,119,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,115,103,16,0,23,35,119,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,45,98,97,114,16,0,25,35,119,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,45,109,111,100,97,108,16,0,28,35,119,115,45,99,111,111,107,105,101,45,110,111,116,105,102,105,101,114,45,109,111,100,97,108,45,98,103,16,0,18,35,119,115,45,99,111,111,107,105,101,45,119,114,97,112,112,101,114,16,0,24,35,119,115,77,111,100,97,108,65,103,114,101,101,109,101,110,116,80,114,105,118,97,99,121,16,0,9,35,119,115,77,115,103,87,110,100,16,0,16,35,119,115,95,99,111,111,107,105,101,95,108,97,121,101,114,16,0,18,35,119,115,95,99,111,111,107,105,101,95,112,114,105,118,97,99,121,16,0,14,35,119,115,98,99,111,111,107,95,97,108,101,114,116,16,0,11,35,119,115,106,99,111,110,115,101,110,116,16,0,10,35,119,115,106,112,101,99,114,103,97,16,0,24,35,119,115,120,103,111,110,45,99,111,111,107,105,101,100,105,115,99,108,97,105,109,101,114,16,0,17,35,119,116,45,99,111,110,102,105,114,109,45,108,97,121,101,114,16,0,10,35,119,116,45,99,111,111,107,105,101,16,0,14,35,119,116,45,99,111,111,107,105,101,45,98,97,114,16,0,14,35,119,116,45,99,111,111,107,105,101,45,98,111,120,16,0,17,35,119,116,95,99,111,111,107,105,101,99,111,110,115,101,110,116,16,0,17,35,119,116,95,110,111,116,105,99,101,95,99,111,111,107,105,101,16,0,15,35,119,116,109,95,99,111,111,107,105,101,95,98,97,114,16,0,34,35,119,117,99,65,99,99,101,112,116,67,111,111,107,105,101,115,95,112,97,110,65,99,99,101,112,116,67,111,111,107,105,101,115,16,0,35,35,119,118,99,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,109,101,115,115,97,103,101,45,99,111,110,116,101,110,116,16,0,22,35,119,119,45,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,16,0,18,35,119,119,95,99,111,111,107,105,101,95,99,111,110,115,101,110,116,16,0,11,35,119,119,102,45,99,111,111,107,105,101,16,0,18,35,119,121,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,16,0,23,35,119,121,109,97,103,97,110,105,97,95,115,107,108,101,112,117,95,97,108,101,114,116,16,0,9,35,120,45,99,111,111,107,105,101,16,0,16,35,120,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,33,35,120,45,99,111,114,101,45,116,111,97,115,116,45,109,101,115,115,97,103,101,45,99,111,111,107,105,101,115,45,100,105,118,16,0,15,35,120,49,51,112,109,99,111,111,107,105,101,98,97,114,16,0,20,35,120,97,110,100,97,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,9,35,120,99,107,80,111,112,117,112,16,0,11,35,120,99,111,111,107,105,101,98,97,114,16,0,9,35,120,99,111,111,107,105,101,115,16,0,26,35,120,109,45,99,111,111,107,105,101,80,111,108,105,99,121,45,99,111,110,116,97,105,110,101,114,16,0,17,35,120,114,111,111,116,67,111,111,107,105,101,82,117,108,101,115,16,0,18,35,120,116,45,99,111,111,107,105,101,115,45,112,111,108,105,99,121,16,0,23,35,120,116,101,95,95,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,16,0,18,35,120,120,45,99,111,111,107,105,101,115,45,112,108,117,103,105,110,16,0,12,35,120,120,48,111,45,99,111,111,107,105,101,16,0,19,35,121,100,112,95,99,111,111,107,105,101,95,109,101,115,115,97,103,101,16,0,17,35,121,110,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,121,111,117,114,67,111,111,107,105,101,67,104,111,105,99,101,115,16,0,19,35,121,111,117,114,67,111,111,107,105,101,83,101,116,116,105,110,103,115,16,0,14,35,121,117,99,115,45,101,112,114,105,118,97,99,121,16,0,22,35,121,117,100,101,110,95,103,100,112,114,95,98,97,99,107,103,114,111,117,110,100,16,0,17,35,121,117,100,101,110,95,103,100,112,114,95,112,111,112,117,112,16,0,15,35,121,119,45,99,111,111,107,105,101,45,103,100,112,114,16,0,12,35,121,119,45,99,111,111,107,105,101,45,110,16,0,14,35,122,45,99,111,111,107,105,101,45,110,111,116,101,16,0,13,35,122,55,99,111,111,107,105,101,110,111,116,101,16,0,15,35,122,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,15,35,122,67,111,111,107,105,101,77,101,115,115,97,103,101,16,0,16,35,122,95,99,111,111,107,105,101,95,97,99,99,101,112,116,16,0,20,35,122,97,100,105,114,45,99,111,111,107,105,101,45,112,111,108,105,99,121,16,0,16,35,122,97,106,97,100,97,109,95,99,111,111,107,105,101,115,16,0,19,35,122,97,112,102,45,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,18,35,122,97,112,121,116,97,106,95,111,95,99,111,111,107,105,101,115,16,0,29,35,122,97,122,45,110,98,45,112,108,117,103,105,110,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,16,0,17,35,122,99,95,99,111,111,107,105,101,95,110,111,116,105,99,101,16,0,25,35,122,99,95,104,111,109,101,112,97,103,101,95,98,97,114,97,95,99,111,111,107,105,101,115,16,0,10,35,122,99,95,110,111,116,105,99,101,16,0,13,35,122,99,111,98,45,99,111,111,107,105,101,115,16,0,8,35,122,99,111,111,107,105,101,16,0,18,35,122,100,112,114,105,118,97,99,121,45,99,111,110,116,101,110,116,16,0,18,35,122,101,114,97,120,111,45,99,111,111,107,105,101,45,98,97,114,16,0,31,35,122,101,114,111,116,105,101,114,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,16,0,19,35,122,101,122,119,111,108,101,110,105,101,78,97,67,111,111,107,105,101,16,0,17,35,122,103,111,100,97,45,99,111,111,107,105,101,45,115,101,99,16,0,13,35,122,103,111,100,97,95,99,111,111,107,105,101,16,0,14,35,122,103,111,100,97,95,99,111,111,107,105,101,115,16,0,12,35,122,103,111,100,97,99,111,111,107,105,101,16,0,11,35,122,105,100,95,98,97,110,110,101,114,16,0,25,35,122,106,101,107,111,122,97,95,99,105,97,115,116,101,99,122,107,97,95,97,108,101,114,116,16,0,20,35,122,107,95,112,111,108,105,116,121,107,97,95,99,105,97,115,116,101,107,16,0,23,35,122,109,98,67,111,111,107,105,101,115,78,111,116,105,102,105,99,97,116,105,111,110,16,0,18,35,122,110,45,112,114,105,118,97,99,121,45,110,111,116,105,99,101,16,0,12,35,122,111,110,97,67,111,111,107,105,101,115,16,0,19,35,122,111,110,101,45,97,99,99,101,112,116,45,99,111,111,107,105,101,16,0,11,35,122,111,110,101,67,111,111,107,105,101,16,0,12,35,122,111,110,101,95,99,111,111,107,105,101,16,0,33,35,122,112,45,102,111,111,116,101,114,45,99,111,111,107,105,101,115,101,116,116,105,110,103,115,45,111,118,101,114,108,97,121,16,0,16,35,122,112,99,111,111,107,105,101,45,98,97,110,110,101,114,16,0,21,35,122,115,101,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,16,0,13,35,122,115,109,115,103,45,112,111,108,105,99,121,16,0,25,35,122,119,95,99,111,111,107,105,101,95,108,97,119,95,115,104,111,114,116,95,105,110,102,111,16,0,18,35,100,105,115,99,108,97,105,109,101,114,95,97,109,117,110,100,105,16,0,15,35,97,115,50,52,45,99,109,112,45,112,111,112,117,112,16,0,16,35,114,111,100,111,112,111,112,117,112,46,112,111,112,117,112,16,0,23,35,99,116,108,48,50,32,62,32,46,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,28,35,102,111,114,109,32,62,32,100,105,118,32,62,32,46,67,111,111,107,105,101,67,111,110,115,101,110,116,16,0,12,35,99,99,109,95,119,101,108,99,111,109,101,16,0,21,35,99,112,45,100,105,97,108,111,103,46,99,112,45,119,114,97,112,112,101,114,16,0,19,35,99,111,110,102,105,114,109,46,106,113,109,67,111,110,102,105,114,109,16,0,19,35,115,116,95,112,111,112,117,112,46,115,116,69,108,101,109,101,110,116,16,0,42,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,32,126,32,46,99,108,105,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,16,0,51,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,91,115,116,121,108,101,42,61,34,98,111,114,100,101,114,45,98,111,120,59,32,100,105,115,112,108,97,121,58,34,93,16,0,51,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,91,115,116,121,108,101,42,61,34,98,111,114,100,101,114,45,98,111,120,59,32,112,97,100,100,105,110,103,58,34,93,16,0,38,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,91,115,116,121,108,101,42,61,34,98,111,116,116,111,109,58,34,93,16,0,39,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,91,115,116,121,108,101,42,61,34,116,111,112,58,32,48,112,120,34,93,16,0,38,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,91,115,116,121,108,101,42,61,34,116,111,112,58,48,112,120,34,93,16,0,30,35,102,111,111,116,101,114,32,62,32,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,16,0,37,35,102,111,111,116,101,114,99,111,110,116,101,110,116,32,62,32,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,16,0,49,35,112,97,103,101,45,119,114,97,112,112,101,114,45,99,111,109,112,111,110,101,110,116,32,62,32,46,108,101,103,97,108,45,98,97,110,110,101,114,45,99,111,109,112,111,110,101,110,116,16,0,16,35,97,112,112,45,114,111,111,116,46,99,32,62,32,46,122,16,0,17,35,99,109,112,45,99,111,110,116,97,105,110,101,114,45,105,100,16,0,14,35,99,109,112,45,117,105,45,105,102,114,97,109,101,16,0,15,35,99,111,111,107,105,101,115,32,62,32,102,111,114,109,16,0,22,35,97,109,112,45,117,115,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,16,0,23,35,97,109,112,45,117,115,101,114,45,110,111,116,105,102,105,99,97,116,105,111,110,49,16,0,32,35,115,108,105,100,105,110,103,45,112,111,112,117,112,46,115,108,105,100,105,110,103,45,112,111,112,117,112,45,116,111,112,16,0,6,35,103,104,45,103,98,16,0,6,35,101,112,98,97,114,16,0,39,35,103,98,91,115,116,121,108,101,61,34,109,105,110,45,119,105,100,116,104,58,32,57,56,48,112,120,59,34,93,32,62,32,46,103,98,95,119,98,16,0,18,35,112,117,115,104,100,111,119,110,32,62,32,46,103,98,95,105,98,16,0,18,35,112,117,115,104,100,111,119,110,32,62,32,46,103,98,95,119,98,16,0,24,35,112,114,105,115,109,45,109,111,100,97,108,46,112,114,105,115,109,45,109,111,100,97,108,16,0,24,35,110,101,119,112,114,105,118,97,99,121,32,62,32,46,97,108,101,114,116,45,98,111,120,16,0,37,35,98,111,116,116,111,109,95,100,105,97,108,111,103,32,62,32,35,98,111,116,116,111,109,95,100,105,97,108,111,103,95,105,110,110,101,114,16,0,7,35,99,107,95,114,111,119,16,0,11,35,100,103,115,118,111,76,97,121,101,114,16,0,8,35,107,107,105,95,100,105,118,16,0,13,35,108,121,116,105,99,95,97,115,107,98,111,120,16,0,20,35,115,102,45,109,105,110,105,115,105,116,101,45,116,111,111,108,98,97,114,16,0,8,35,120,99,109,45,98,97,114,16,0,5,35,122,119,99,99,16,0,10,35,112,112,95,98,46,112,112,45,112,16,0,26,35,99,111,111,107,105,101,115,46,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,0,0,8,0,0,0,13,244,0,0,1,150,128,0,0,151,47,0,0,0,0,16,0,0,0,16,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,32,0,0,0,34,0,0,0,42,0,0,0,44,0,0,0,44,0,0,0,48,0,0,0,52,0,0,0,52,0,0,0,52,0,0,0,54,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,66,0,0,0,68,0,0,0,68,0,0,0,70,0,0,0,70,0,0,0,74,0,0,0,86,0,0,0,92,0,0,0,94,0,0,0,100,0,0,0,106,0,0,0,108,0,0,0,108,0,0,0,108,0,0,0,108,0,0,0,108,0,0,0,108,0,0,0,110,0,0,0,110,0,0,0,110,0,0,0,114,0,0,0,116,0,0,0,116,0,0,0,116,0,0,0,116,0,0,0,116,0,0,0,116,0,0,0,118,0,0,0,118,0,0,0,120,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,132,0,0,0,132,0,0,0,140,0,0,0,142,0,0,0,144,0,0,0,146,0,0,0,150,0,0,0,150,0,0,0,150,0,0,0,160,0,0,0,160,0,0,0,170,0,0,0,170,0,0,0,172,0,0,0,172,0,0,0,172,0,0,0,174,0,0,0,178,0,0,0,182,0,0,0,182,0,0,0,182,0,0,0,190,0,0,0,190,0,0,0,202,0,0,0,202,0,0,0,202,0,0,0,214,0,0,0,214,0,0,0,214,0,0,0,214,0,0,0,222,0,0,0,232,0,0,0,238,0,0,0,238,0,0,0,238,0,0,0,244,0,0,0,246,0,0,0,246,0,0,0,248,0,0,0,254,0,0,0,6,1,0,0,12,1,0,0,14,1,0,0,16,1,0,0,16,1,0,0,16,1,0,0,20,1,0,0,20,1,0,0,20,1,0,0,20,1,0,0,22,1,0,0,22,1,0,0,22,1,0,0,22,1,0,0,22,1,0,0,22,1,0,0,22,1,0,0,30,1,0,0,30,1,0,0,30,1,0,0,30,1,0,0,40,1,0,0,40,1,0,0,42,1,0,0,46,1,0,0,48,1,0,0,48,1,0,0,54,1,0,0,54,1,0,0,62,1,0,0,62,1,0,0,64,1,0,0,64,1,0,0,66,1,0,0,66,1,0,0,68,1,0,0,68,1,0,0,70,1,0,0,70,1,0,0,70,1,0,0,70,1,0,0,70,1,0,0,70,1,0,0,70,1,0,0,70,1,0,0,72,1,0,0,74,1,0,0,74,1,0,0,76,1,0,0,76,1,0,0,76,1,0,0,76,1,0,0,80,1,0,0,80,1,0,0,80,1,0,0,82,1,0,0,88,1,0,0,88,1,0,0,88,1,0,0,88,1,0,0,88,1,0,0,94,1,0,0,94,1,0,0,94,1,0,0,94,1,0,0,94,1,0,0,94,1,0,0,94,1,0,0,94,1,0,0,94,1,0,0,102,1,0,0,112,1,0,0,116,1,0,0,124,1,0,0,128,1,0,0,128,1,0,0,134,1,0,0,134,1,0,0,134,1,0,0,136,1,0,0,136,1,0,0,146,1,0,0,148,1,0,0,152,1,0,0,152,1,0,0,152,1,0,0,152,1,0,0,152,1,0,0,152,1,0,0,152,1,0,0,156,1,0,0,156,1,0,0,156,1,0,0,156,1,0,0,156,1,0,0,156,1,0,0,156,1,0,0,160,1,0,0,168,1,0,0,168,1,0,0,176,1,0,0,176,1,0,0,176,1,0,0,176,1,0,0,176,1,0,0,176,1,0,0,178,1,0,0,186,1,0,0,186,1,0,0,186,1,0,0,186,1,0,0,186,1,0,0,188,1,0,0,190,1,0,0,192,1,0,0,198,1,0,0,198,1,0,0,200,1,0,0,200,1,0,0,200,1,0,0,200,1,0,0,200,1,0,0,202,1,0,0,204,1,0,0,206,1,0,0,206,1,0,0,208,1,0,0,208,1,0,0,208,1,0,0,208,1,0,0,210,1,0,0,210,1,0,0,210,1,0,0,210,1,0,0,220,1,0,0,220,1,0,0,220,1,0,0,222,1,0,0,222,1,0,0,222,1,0,0,224,1,0,0,224,1,0,0,224,1,0,0,224,1,0,0,224,1,0,0,230,1,0,0,232,1,0,0,232,1,0,0,232,1,0,0,232,1,0,0,234,1,0,0,234,1,0,0,234,1,0,0,234,1,0,0,238,1,0,0,238,1,0,0,238,1,0,0,240,1,0,0,240,1,0,0,240,1,0,0,240,1,0,0,242,1,0,0,242,1,0,0,242,1,0,0,242,1,0,0,242,1,0,0,246,1,0,0,246,1,0,0,246,1,0,0,254,1,0,0,0,2,0,0,2,2,0,0,4,2,0,0,10,2,0,0,10,2,0,0,12,2,0,0,12,2,0,0,12,2,0,0,14,2,0,0,16,2,0,0,24,2,0,0,28,2,0,0,28,2,0,0,28,2,0,0,30,2,0,0,30,2,0,0,30,2,0,0,30,2,0,0,30,2,0,0,30,2,0,0,32,2,0,0,32,2,0,0,38,2,0,0,38,2,0,0,42,2,0,0,46,2,0,0,48,2,0,0,48,2,0,0,48,2,0,0,48,2,0,0,48,2,0,0,48,2,0,0,52,2,0,0,52,2,0,0,52,2,0,0,52,2,0,0,52,2,0,0,56,2,0,0,56,2,0,0,56,2,0,0,58,2,0,0,58,2,0,0,66,2,0,0,70,2,0,0,70,2,0,0,70,2,0,0,70,2,0,0,70,2,0,0,76,2,0,0,76,2,0,0,78,2,0,0,78,2,0,0,80,2,0,0,80,2,0,0,80,2,0,0,80,2,0,0,82,2,0,0,82,2,0,0,82,2,0,0,90,2,0,0,92,2,0,0,92,2,0,0,96,2,0,0,96,2,0,0,96,2,0,0,96,2,0,0,96,2,0,0,106,2,0,0,106,2,0,0,106,2,0,0,106,2,0,0,106,2,0,0,106,2,0,0,106,2,0,0,106,2,0,0,106,2,0,0,106,2,0,0,120,2,0,0,128,2,0,0,128,2,0,0,132,2,0,0,142,2,0,0,142,2,0,0,142,2,0,0,144,2,0,0,144,2,0,0,148,2,0,0,150,2,0,0,170,2,0,0,170,2,0,0,172,2,0,0,174,2,0,0,174,2,0,0,176,2,0,0,178,2,0,0,178,2,0,0,178,2,0,0,180,2,0,0,188,2,0,0,188,2,0,0,190,2,0,0,194,2,0,0,194,2,0,0,194,2,0,0,194,2,0,0,196,2,0,0,198,2,0,0,204,2,0,0,204,2,0,0,204,2,0,0,206,2,0,0,206,2,0,0,208,2,0,0,210,2,0,0,210,2,0,0,210,2,0,0,210,2,0,0,210,2,0,0,210,2,0,0,212,2,0,0,212,2,0,0,212,2,0,0,212,2,0,0,212,2,0,0,216,2,0,0,216,2,0,0,216,2,0,0,218,2,0,0,218,2,0,0,218,2,0,0,224,2,0,0,234,2,0,0,236,2,0,0,238,2,0,0,238,2,0,0,238,2,0,0,238,2,0,0,248,2,0,0,250,2,0,0,250,2,0,0,252,2,0,0,252,2,0,0,2,3,0,0,2,3,0,0,2,3,0,0,6,3,0,0,8,3,0,0,8,3,0,0,14,3,0,0,18,3,0,0,26,3,0,0,26,3,0,0,26,3,0,0,26,3,0,0,26,3,0,0,28,3,0,0,28,3,0,0,28,3,0,0,28,3,0,0,30,3,0,0,30,3,0,0,36,3,0,0,36,3,0,0,36,3,0,0,36,3,0,0,36,3,0,0,36,3,0,0,36,3,0,0,36,3,0,0,36,3,0,0,38,3,0,0,38,3,0,0,38,3,0,0,40,3,0,0,40,3,0,0,40,3,0,0,40,3,0,0,42,3,0,0,46,3,0,0,46,3,0,0,46,3,0,0,46,3,0,0,46,3,0,0,46,3,0,0,46,3,0,0,46,3,0,0,50,3,0,0,50,3,0,0,54,3,0,0,54,3,0,0,56,3,0,0,56,3,0,0,56,3,0,0,56,3,0,0,56,3,0,0,56,3,0,0,56,3,0,0,56,3,0,0,56,3,0,0,56,3,0,0,56,3,0,0,58,3,0,0,66,3,0,0,66,3,0,0,66,3,0,0,66,3,0,0,66,3,0,0,66,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,68,3,0,0,70,3,0,0,76,3,0,0,76,3,0,0,84,3,0,0,84,3,0,0,86,3,0,0,88,3,0,0,90,3,0,0,90,3,0,0,90,3,0,0,90,3,0,0,92,3,0,0,92,3,0,0,92,3,0,0,102,3,0,0,102,3,0,0,102,3,0,0,112,3,0,0,112,3,0,0,118,3,0,0,126,3,0,0,132,3,0,0,134,3,0,0,136,3,0,0,138,3,0,0,146,3,0,0,146,3,0,0,146,3,0,0,150,3,0,0,150,3,0,0,160,3,0,0,162,3,0,0,166,3,0,0,166,3,0,0,166,3,0,0,166,3,0,0,168,3,0,0,170,3,0,0,170,3,0,0,172,3,0,0,174,3,0,0,178,3,0,0,182,3,0,0,186,3,0,0,192,3,0,0,192,3,0,0,192,3,0,0,192,3,0,0,194,3,0,0,194,3,0,0,194,3,0,0,198,3,0,0,198,3,0,0,206,3,0,0,206,3,0,0,206,3,0,0,206,3,0,0,206,3,0,0,206,3,0,0,206,3,0,0,206,3,0,0,206,3,0,0,206,3,0,0,206,3,0,0,206,3,0,0,206,3,0,0,206,3,0,0,206,3,0,0,206,3,0,0,206,3,0,0,212,3,0,0,212,3,0,0,216,3,0,0,216,3,0,0,218,3,0,0,218,3,0,0,218,3,0,0,224,3,0,0,228,3,0,0,230,3,0,0,240,3,0,0,244,3,0,0,248,3,0,0,248,3,0,0,248,3,0,0,248,3,0,0,248,3,0,0,252,3,0,0,252,3,0,0,254,3,0,0,254,3,0,0,254,3,0,0,4,4,0,0,8,4,0,0,10,4,0,0,10,4,0,0,10,4,0,0,12,4,0,0,16,4,0,0,16,4,0,0,20,4,0,0,20,4,0,0,20,4,0,0,20,4,0,0,20,4,0,0,20,4,0,0,24,4,0,0,26,4,0,0,26,4,0,0,30,4,0,0,30,4,0,0,30,4,0,0,30,4,0,0,34,4,0,0,34,4,0,0,34,4,0,0,40,4,0,0,40,4,0,0,40,4,0,0,40,4,0,0,40,4,0,0,40,4,0,0,40,4,0,0,40,4,0,0,40,4,0,0,44,4,0,0,48,4,0,0,48,4,0,0,48,4,0,0,48,4,0,0,48,4,0,0,48,4,0,0,50,4,0,0,52,4,0,0,54,4,0,0,54,4,0,0,54,4,0,0,54,4,0,0,56,4,0,0,56,4,0,0,68,4,0,0,68,4,0,0,68,4,0,0,68,4,0,0,74,4,0,0,76,4,0,0,78,4,0,0,80,4,0,0,80,4,0,0,80,4,0,0,80,4,0,0,90,4,0,0,92,4,0,0,92,4,0,0,94,4,0,0,96,4,0,0,96,4,0,0,96,4,0,0,106,4,0,0,110,4,0,0,110,4,0,0,110,4,0,0,112,4,0,0,126,4,0,0,126,4,0,0,126,4,0,0,126,4,0,0,126,4,0,0,134,4,0,0,142,4,0,0,142,4,0,0,142,4,0,0,142,4,0,0,142,4,0,0,142,4,0,0,142,4,0,0,142,4,0,0,142,4,0,0,158,4,0,0,158,4,0,0,162,4,0,0,162,4,0,0,162,4,0,0,166,4,0,0,166,4,0,0,166,4,0,0,166,4,0,0,168,4,0,0,168,4,0,0,170,4,0,0,170,4,0,0,172,4,0,0,172,4,0,0,172,4,0,0,182,4,0,0,182,4,0,0,192,4,0,0,192,4,0,0,198,4,0,0,198,4,0,0,198,4,0,0,198,4,0,0,198,4,0,0,198,4,0,0,198,4,0,0,204,4,0,0,204,4,0,0,204,4,0,0,204,4,0,0,204,4,0,0,204,4,0,0,204,4,0,0,214,4,0,0,218,4,0,0,220,4,0,0,220,4,0,0,220,4,0,0,228,4,0,0,228,4,0,0,234,4,0,0,238,4,0,0,240,4,0,0,242,4,0,0,246,4,0,0,254,4,0,0,2,5,0,0,4,5,0,0,4,5,0,0,4,5,0,0,4,5,0,0,4,5,0,0,4,5,0,0,10,5,0,0,10,5,0,0,24,5,0,0,24,5,0,0,24,5,0,0,24,5,0,0,24,5,0,0,26,5,0,0,26,5,0,0,26,5,0,0,26,5,0,0,26,5,0,0,28,5,0,0,28,5,0,0,30,5,0,0,32,5,0,0,34,5,0,0,34,5,0,0,34,5,0,0,34,5,0,0,34,5,0,0,34,5,0,0,34,5,0,0,40,5,0,0,44,5,0,0,44,5,0,0,46,5,0,0,46,5,0,0,50,5,0,0,50,5,0,0,50,5,0,0,50,5,0,0,56,5,0,0,56,5,0,0,58,5,0,0,64,5,0,0,64,5,0,0,72,5,0,0,76,5,0,0,76,5,0,0,76,5,0,0,76,5,0,0,76,5,0,0,76,5,0,0,76,5,0,0,76,5,0,0,76,5,0,0,84,5,0,0,84,5,0,0,84,5,0,0,84,5,0,0,84,5,0,0,86,5,0,0,86,5,0,0,88,5,0,0,88,5,0,0,98,5,0,0,98,5,0,0,98,5,0,0,102,5,0,0,102,5,0,0,102,5,0,0,102,5,0,0,102,5,0,0,102,5,0,0,102,5,0,0,106,5,0,0,106,5,0,0,106,5,0,0,106,5,0,0,106,5,0,0,106,5,0,0,106,5,0,0,108,5,0,0,108,5,0,0,108,5,0,0,110,5,0,0,110,5,0,0,110,5,0,0,110,5,0,0,112,5,0,0,112,5,0,0,112,5,0,0,112,5,0,0,112,5,0,0,112,5,0,0,112,5,0,0,112,5,0,0,114,5,0,0,116,5,0,0,116,5,0,0,120,5,0,0,120,5,0,0,120,5,0,0,120,5,0,0,122,5,0,0,122,5,0,0,122,5,0,0,124,5,0,0,124,5,0,0,126,5,0,0,126,5,0,0,126,5,0,0,126,5,0,0,126,5,0,0,126,5,0,0,128,5,0,0,128,5,0,0,128,5,0,0,140,5,0,0,144,5,0,0,144,5,0,0,144,5,0,0,144,5,0,0,144,5,0,0,144,5,0,0,146,5,0,0,154,5,0,0,156,5,0,0,156,5,0,0,156,5,0,0,158,5,0,0,158,5,0,0,160,5,0,0,160,5,0,0,160,5,0,0,160,5,0,0,160,5,0,0,160,5,0,0,160,5,0,0,160,5,0,0,160,5,0,0,162,5,0,0,162,5,0,0,164,5,0,0,164,5,0,0,164,5,0,0,164,5,0,0,166,5,0,0,178,5,0,0,178,5,0,0,182,5,0,0,188,5,0,0,188,5,0,0,188,5,0,0,188,5,0,0,188,5,0,0,192,5,0,0,192,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,196,5,0,0,206,5,0,0,216,5,0,0,216,5,0,0,216,5,0,0,216,5,0,0,216,5,0,0,216,5,0,0,220,5,0,0,220,5,0,0,222,5,0,0,222,5,0,0,228,5,0,0,228,5,0,0,228,5,0,0,230,5,0,0,230,5,0,0,230,5,0,0,230,5,0,0,230,5,0,0,234,5,0,0,234,5,0,0,236,5,0,0,240,5,0,0,242,5,0,0,242,5,0,0,244,5,0,0,244,5,0,0,244,5,0,0,244,5,0,0,248,5,0,0,248,5,0,0,248,5,0,0,250,5,0,0,250,5,0,0,250,5,0,0,250,5,0,0,252,5,0,0,252,5,0,0,252,5,0,0,252,5,0,0,252,5,0,0,254,5,0,0,8,6,0,0,8,6,0,0,8,6,0,0,14,6,0,0,24,6,0,0,24,6,0,0,28,6,0,0,28,6,0,0,28,6,0,0,28,6,0,0,36,6,0,0,36,6,0,0,36,6,0,0,36,6,0,0,44,6,0,0,46,6,0,0,46,6,0,0,46,6,0,0,48,6,0,0,48,6,0,0,50,6,0,0,52,6,0,0,52,6,0,0,54,6,0,0,54,6,0,0,54,6,0,0,60,6,0,0,60,6,0,0,62,6,0,0,62,6,0,0,66,6,0,0,66,6,0,0,70,6,0,0,70,6,0,0,70,6,0,0,72,6,0,0,72,6,0,0,72,6,0,0,72,6,0,0,72,6,0,0,72,6,0,0,72,6,0,0,80,6,0,0,84,6,0,0,84,6,0,0,84,6,0,0,86,6,0,0,86,6,0,0,96,6,0,0,98,6,0,0,98,6,0,0,98,6,0,0,98,6,0,0,104,6,0,0,104,6,0,0,104,6,0,0,106,6,0,0,108,6,0,0,110,6,0,0,110,6,0,0,110,6,0,0,126,6,0,0,126,6,0,0,126,6,0,0,126,6,0,0,126,6,0,0,140,6,0,0,146,6,0,0,146,6,0,0,150,6,0,0,150,6,0,0,162,6,0,0,162,6,0,0,162,6,0,0,162,6,0,0,166,6,0,0,166,6,0,0,166,6,0,0,166,6,0,0,166,6,0,0,178,6,0,0,178,6,0,0,178,6,0,0,184,6,0,0,186,6,0,0,186,6,0,0,186,6,0,0,188,6,0,0,190,6,0,0,190,6,0,0,190,6,0,0,190,6,0,0,190,6,0,0,190,6,0,0,190,6,0,0,206,6,0,0,208,6,0,0,210,6,0,0,210,6,0,0,210,6,0,0,210,6,0,0,210,6,0,0,210,6,0,0,210,6,0,0,212,6,0,0,212,6,0,0,214,6,0,0,214,6,0,0,222,6,0,0,222,6,0,0,222,6,0,0,222,6,0,0,224,6,0,0,224,6,0,0,224,6,0,0,236,6,0,0,236,6,0,0,236,6,0,0,244,6,0,0,244,6,0,0,246,6,0,0,0,7,0,0,0,7,0,0,4,7,0,0,4,7,0,0,4,7,0,0,6,7,0,0,14,7,0,0,14,7,0,0,14,7,0,0,18,7,0,0,18,7,0,0,18,7,0,0,18,7,0,0,18,7,0,0,18,7,0,0,28,7,0,0,28,7,0,0,28,7,0,0,28,7,0,0,28,7,0,0,28,7,0,0,36,7,0,0,36,7,0,0,36,7,0,0,36,7,0,0,36,7,0,0,42,7,0,0,44,7,0,0,44,7,0,0,44,7,0,0,46,7,0,0,46,7,0,0,46,7,0,0,46,7,0,0,48,7,0,0,48,7,0,0,48,7,0,0,48,7,0,0,52,7,0,0,58,7,0,0,58,7,0,0,60,7,0,0,64,7,0,0,64,7,0,0,64,7,0,0,76,7,0,0,76,7,0,0,76,7,0,0,78,7,0,0,84,7,0,0,86,7,0,0,88,7,0,0,90,7,0,0,92,7,0,0,92,7,0,0,94,7,0,0,94,7,0,0,94,7,0,0,94,7,0,0,94,7,0,0,94,7,0,0,100,7,0,0,100,7,0,0,102,7,0,0,104,7,0,0,104,7,0,0,104,7,0,0,104,7,0,0,104,7,0,0,106,7,0,0,106,7,0,0,106,7,0,0,106,7,0,0,106,7,0,0,108,7,0,0,110,7,0,0,116,7,0,0,122,7,0,0,122,7,0,0,124,7,0,0,124,7,0,0,124,7,0,0,124,7,0,0,126,7,0,0,128,7,0,0,128,7,0,0,128,7,0,0,128,7,0,0,128,7,0,0,130,7,0,0,130,7,0,0,130,7,0,0,130,7,0,0,130,7,0,0,130,7,0,0,130,7,0,0,130,7,0,0,130,7,0,0,130,7,0,0,130,7,0,0,130,7,0,0,142,7,0,0,142,7,0,0,146,7,0,0,146,7,0,0,146,7,0,0,156,7,0,0,156,7,0,0,162,7,0,0,170,7,0,0,172,7,0,0,172,7,0,0,176,7,0,0,176,7,0,0,176,7,0,0,180,7,0,0,180,7,0,0,196,7,0,0,196,7,0,0,196,7,0,0,196,7,0,0,202,7,0,0,204,7,0,0,206,7,0,0,206,7,0,0,208,7,0,0,212,7,0,0,212,7,0,0,212,7,0,0,212,7,0,0,216,7,0,0,216,7,0,0,216,7,0,0,220,7,0,0,220,7,0,0,224,7,0,0,226,7,0,0,226,7,0,0,226,7,0,0,226,7,0,0,232,7,0,0,232,7,0,0,232,7,0,0,234,7,0,0,234,7,0,0,238,7,0,0,240,7,0,0,240,7,0,0,240,7,0,0,248,7,0,0,248,7,0,0,248,7,0,0,248,7,0,0,248,7,0,0,250,7,0,0,254,7,0,0,254,7,0,0,254,7,0,0,254,7,0,0,254,7,0,0,0,8,0,0,0,8,0,0,2,8,0,0,2,8,0,0,4,8,0,0,4,8,0,0,4,8,0,0,6,8,0,0,6,8,0,0,6,8,0,0,14,8,0,0,20,8,0,0,24,8,0,0,26,8,0,0,28,8,0,0,28,8,0,0,36,8,0,0,36,8,0,0,36,8,0,0,36,8,0,0,42,8,0,0,42,8,0,0,48,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,50,8,0,0,54,8,0,0,54,8,0,0,54,8,0,0,56,8,0,0,58,8,0,0,58,8,0,0,58,8,0,0,60,8,0,0,68,8,0,0,68,8,0,0,68,8,0,0,68,8,0,0,70,8,0,0,74,8,0,0,76,8,0,0,78,8,0,0,78,8,0,0,78,8,0,0,84,8,0,0,84,8,0,0,90,8,0,0,96,8,0,0,96,8,0,0,96,8,0,0,96,8,0,0,96,8,0,0,102,8,0,0,102,8,0,0,108,8,0,0,114,8,0,0,116,8,0,0,116,8,0,0,116,8,0,0,118,8,0,0,118,8,0,0,118,8,0,0,118,8,0,0,118,8,0,0,118,8,0,0,118,8,0,0,118,8,0,0,118,8,0,0,134,8,0,0,134,8,0,0,136,8,0,0,136,8,0,0,136,8,0,0,144,8,0,0,144,8,0,0,144,8,0,0,144,8,0,0,144,8,0,0,154,8,0,0,154,8,0,0,154,8,0,0,156,8,0,0,162,8,0,0,162,8,0,0,162,8,0,0,164,8,0,0,166,8,0,0,172,8,0,0,172,8,0,0,176,8,0,0,176,8,0,0,176,8,0,0,176,8,0,0,178,8,0,0,178,8,0,0,178,8,0,0,180,8,0,0,180,8,0,0,180,8,0,0,180,8,0,0,180,8,0,0,182,8,0,0,182,8,0,0,188,8,0,0,188,8,0,0,196,8,0,0,202,8,0,0,202,8,0,0,206,8,0,0,206,8,0,0,216,8,0,0,216,8,0,0,220,8,0,0,220,8,0,0,224,8,0,0,226,8,0,0,226,8,0,0,226,8,0,0,226,8,0,0,228,8,0,0,234,8,0,0,236,8,0,0,236,8,0,0,236,8,0,0,238,8,0,0,238,8,0,0,238,8,0,0,246,8,0,0,246,8,0,0,250,8,0,0,250,8,0,0,250,8,0,0,14,9,0,0,16,9,0,0,16,9,0,0,16,9,0,0,16,9,0,0,20,9,0,0,20,9,0,0,26,9,0,0,28,9,0,0,28,9,0,0,28,9,0,0,28,9,0,0,38,9,0,0,38,9,0,0,44,9,0,0,44,9,0,0,44,9,0,0,54,9,0,0,56,9,0,0,66,9,0,0,68,9,0,0,68,9,0,0,68,9,0,0,68,9,0,0,68,9,0,0,68,9,0,0,80,9,0,0,84,9,0,0,84,9,0,0,84,9,0,0,84,9,0,0,84,9,0,0,84,9,0,0,84,9,0,0,96,9,0,0,96,9,0,0,96,9,0,0,96,9,0,0,96,9,0,0,96,9,0,0,96,9,0,0,96,9,0,0,106,9,0,0,114,9,0,0,120,9,0,0,120,9,0,0,122,9,0,0,122,9,0,0,122,9,0,0,122,9,0,0,122,9,0,0,124,9,0,0,124,9,0,0,128,9,0,0,128,9,0,0,138,9,0,0,138,9,0,0,138,9,0,0,138,9,0,0,144,9,0,0,144,9,0,0,144,9,0,0,144,9,0,0,144,9,0,0,144,9,0,0,144,9,0,0,146,9,0,0,146,9,0,0,146,9,0,0,152,9,0,0,152,9,0,0,154,9,0,0,154,9,0,0,156,9,0,0,158,9,0,0,158,9,0,0,160,9,0,0,160,9,0,0,160,9,0,0,180,9,0,0,180,9,0,0,180,9,0,0,180,9,0,0,180,9,0,0,180,9,0,0,184,9,0,0,184,9,0,0,186,9,0,0,196,9,0,0,206,9,0,0,210,9,0,0,210,9,0,0,210,9,0,0,210,9,0,0,212,9,0,0,214,9,0,0,216,9,0,0,216,9,0,0,218,9,0,0,220,9,0,0,220,9,0,0,220,9,0,0,220,9,0,0,222,9,0,0,222,9,0,0,224,9,0,0,224,9,0,0,224,9,0,0,224,9,0,0,228,9,0,0,228,9,0,0,228,9,0,0,230,9,0,0,236,9,0,0,242,9,0,0,242,9,0,0,248,9,0,0,250,9,0,0,252,9,0,0,2,10,0,0,2,10,0,0,2,10,0,0,4,10,0,0,4,10,0,0,4,10,0,0,6,10,0,0,6,10,0,0,6,10,0,0,14,10,0,0,14,10,0,0,16,10,0,0,18,10,0,0,18,10,0,0,18,10,0,0,18,10,0,0,26,10,0,0,26,10,0,0,42,10,0,0,42,10,0,0,46,10,0,0,46,10,0,0,52,10,0,0,52,10,0,0,54,10,0,0,54,10,0,0,54,10,0,0,54,10,0,0,64,10,0,0,64,10,0,0,64,10,0,0,64,10,0,0,68,10,0,0,74,10,0,0,74,10,0,0,74,10,0,0,74,10,0,0,74,10,0,0,76,10,0,0,78,10,0,0,78,10,0,0,78,10,0,0,80,10,0,0,80,10,0,0,80,10,0,0,80,10,0,0,82,10,0,0,92,10,0,0,94,10,0,0,94,10,0,0,94,10,0,0,94,10,0,0,94,10,0,0,94,10,0,0,94,10,0,0,98,10,0,0,98,10,0,0,98,10,0,0,98,10,0,0,98,10,0,0,98,10,0,0,98,10,0,0,100,10,0,0,100,10,0,0,100,10,0,0,110,10,0,0,116,10,0,0,116,10,0,0,116,10,0,0,116,10,0,0,116,10,0,0,116,10,0,0,116,10,0,0,118,10,0,0,120,10,0,0,122,10,0,0,124,10,0,0,124,10,0,0,126,10,0,0,126,10,0,0,126,10,0,0,132,10,0,0,132,10,0,0,138,10,0,0,138,10,0,0,138,10,0,0,138,10,0,0,138,10,0,0,138,10,0,0,138,10,0,0,138,10,0,0,140,10,0,0,142,10,0,0,142,10,0,0,142,10,0,0,142,10,0,0,142,10,0,0,142,10,0,0,144,10,0,0,144,10,0,0,146,10,0,0,146,10,0,0,146,10,0,0,146,10,0,0,148,10,0,0,150,10,0,0,154,10,0,0,154,10,0,0,156,10,0,0,156,10,0,0,156,10,0,0,156,10,0,0,156,10,0,0,156,10,0,0,156,10,0,0,156,10,0,0,156,10,0,0,158,10,0,0,160,10,0,0,168,10,0,0,168,10,0,0,168,10,0,0,168,10,0,0,174,10,0,0,176,10,0,0,178,10,0,0,180,10,0,0,180,10,0,0,184,10,0,0,184,10,0,0,192,10,0,0,192,10,0,0,192,10,0,0,192,10,0,0,192,10,0,0,202,10,0,0,202,10,0,0,204,10,0,0,214,10,0,0,224,10,0,0,224,10,0,0,224,10,0,0,226,10,0,0,226,10,0,0,226,10,0,0,226,10,0,0,228,10,0,0,228,10,0,0,228,10,0,0,228,10,0,0,228,10,0,0,232,10,0,0,232,10,0,0,232,10,0,0,232,10,0,0,232,10,0,0,232,10,0,0,234,10,0,0,234,10,0,0,234,10,0,0,234,10,0,0,234,10,0,0,234,10,0,0,234,10,0,0,234,10,0,0,236,10,0,0,236,10,0,0,236,10,0,0,238,10,0,0,246,10,0,0,250,10,0,0,6,11,0,0,8,11,0,0,18,11,0,0,24,11,0,0,32,11,0,0,32,11,0,0,32,11,0,0,40,11,0,0,40,11,0,0,40,11,0,0,40,11,0,0,54,11,0,0,54,11,0,0,54,11,0,0,54,11,0,0,54,11,0,0,54,11,0,0,56,11,0,0,56,11,0,0,56,11,0,0,56,11,0,0,56,11,0,0,60,11,0,0,60,11,0,0,60,11,0,0,60,11,0,0,64,11,0,0,66,11,0,0,66,11,0,0,68,11,0,0,68,11,0,0,68,11,0,0,80,11,0,0,80,11,0,0,80,11,0,0,80,11,0,0,82,11,0,0,84,11,0,0,92,11,0,0,92,11,0,0,92,11,0,0,96,11,0,0,102,11,0,0,104,11,0,0,104,11,0,0,104,11,0,0,104,11,0,0,108,11,0,0,108,11,0,0,108,11,0,0,110,11,0,0,112,11,0,0,112,11,0,0,112,11,0,0,112,11,0,0,112,11,0,0,118,11,0,0,118,11,0,0,118,11,0,0,128,11,0,0,132,11,0,0,132,11,0,0,132,11,0,0,152,11,0,0,158,11,0,0,158,11,0,0,164,11,0,0,170,11,0,0,170,11,0,0,172,11,0,0,172,11,0,0,172,11,0,0,172,11,0,0,174,11,0,0,174,11,0,0,174,11,0,0,174,11,0,0,174,11,0,0,178,11,0,0,178,11,0,0,178,11,0,0,178,11,0,0,178,11,0,0,178,11,0,0,178,11,0,0,178,11,0,0,180,11,0,0,180,11,0,0,180,11,0,0,194,11,0,0,194,11,0,0,194,11,0,0,194,11,0,0,194,11,0,0,194,11,0,0,194,11,0,0,198,11,0,0,198,11,0,0,202,11,0,0,202,11,0,0,204,11,0,0,204,11,0,0,204,11,0,0,204,11,0,0,204,11,0,0,204,11,0,0,204,11,0,0,206,11,0,0,206,11,0,0,206,11,0,0,210,11,0,0,210,11,0,0,212,11,0,0,212,11,0,0,214,11,0,0,214,11,0,0,216,11,0,0,218,11,0,0,218,11,0,0,224,11,0,0,224,11,0,0,224,11,0,0,234,11,0,0,234,11,0,0,238,11,0,0,240,11,0,0,244,11,0,0,244,11,0,0,244,11,0,0,244,11,0,0,246,11,0,0,246,11,0,0,250,11,0,0,252,11,0,0,252,11,0,0,252,11,0,0,254,11,0,0,254,11,0,0,8,12,0,0,8,12,0,0,14,12,0,0,14,12,0,0,14,12,0,0,16,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,18,12,0,0,20,12,0,0,20,12,0,0,20,12,0,0,20,12,0,0,20,12,0,0,20,12,0,0,20,12,0,0,20,12,0,0,24,12,0,0,24,12,0,0,24,12,0,0,28,12,0,0,28,12,0,0,28,12,0,0,38,12,0,0,38,12,0,0,42,12,0,0,42,12,0,0,42,12,0,0,44,12,0,0,48,12,0,0,48,12,0,0,54,12,0,0,54,12,0,0,54,12,0,0,54,12,0,0,54,12,0,0,56,12,0,0,56,12,0,0,56,12,0,0,56,12,0,0,66,12,0,0,66,12,0,0,76,12,0,0,76,12,0,0,80,12,0,0,80,12,0,0,82,12,0,0,84,12,0,0,84,12,0,0,86,12,0,0,86,12,0,0,86,12,0,0,86,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,92,12,0,0,96,12,0,0,98,12,0,0,98,12,0,0,100,12,0,0,100,12,0,0,104,12,0,0,104,12,0,0,104,12,0,0,106,12,0,0,110,12,0,0,110,12,0,0,110,12,0,0,110,12,0,0,114,12,0,0,114,12,0,0,114,12,0,0,116,12,0,0,128,12,0,0,128,12,0,0,132,12,0,0,134,12,0,0,134,12,0,0,144,12,0,0,144,12,0,0,148,12,0,0,148,12,0,0,156,12,0,0,162,12,0,0,164,12,0,0,166,12,0,0,166,12,0,0,170,12,0,0,170,12,0,0,170,12,0,0,176,12,0,0,176,12,0,0,176,12,0,0,176,12,0,0,176,12,0,0,176,12,0,0,176,12,0,0,178,12,0,0,182,12,0,0,186,12,0,0,190,12,0,0,190,12,0,0,190,12,0,0,192,12,0,0,194,12,0,0,198,12,0,0,200,12,0,0,204,12,0,0,210,12,0,0,210,12,0,0,212,12,0,0,214,12,0,0,222,12,0,0,222,12,0,0,222,12,0,0,222,12,0,0,222,12,0,0,224,12,0,0,224,12,0,0,224,12,0,0,224,12,0,0,230,12,0,0,230,12,0,0,232,12,0,0,232,12,0,0,232,12,0,0,232,12,0,0,234,12,0,0,238,12,0,0,244,12,0,0,244,12,0,0,248,12,0,0,248,12,0,0,252,12,0,0,252,12,0,0,252,12,0,0,252,12,0,0,254,12,0,0,2,13,0,0,4,13,0,0,4,13,0,0,4,13,0,0,4,13,0,0,4,13,0,0,4,13,0,0,4,13,0,0,4,13,0,0,4,13,0,0,12,13,0,0,12,13,0,0,16,13,0,0,16,13,0,0,18,13,0,0,20,13,0,0,28,13,0,0,32,13,0,0,32,13,0,0,34,13,0,0,36,13,0,0,38,13,0,0,38,13,0,0,38,13,0,0,48,13,0,0,48,13,0,0,48,13,0,0,48,13,0,0,48,13,0,0,48,13,0,0,48,13,0,0,48,13,0,0,50,13,0,0,50,13,0,0,52,13,0,0,54,13,0,0,60,13,0,0,60,13,0,0,64,13,0,0,66,13,0,0,66,13,0,0,70,13,0,0,72,13,0,0,74,13,0,0,74,13,0,0,76,13,0,0,86,13,0,0,86,13,0,0,88,13,0,0,88,13,0,0,88,13,0,0,92,13,0,0,92,13,0,0,92,13,0,0,92,13,0,0,92,13,0,0,100,13,0,0,102,13,0,0,106,13,0,0,106,13,0,0,106,13,0,0,106,13,0,0,106,13,0,0,106,13,0,0,106,13,0,0,112,13,0,0,112,13,0,0,112,13,0,0,112,13,0,0,112,13,0,0,112,13,0,0,118,13,0,0,122,13,0,0,124,13,0,0,126,13,0,0,128,13,0,0,140,13,0,0,140,13,0,0,142,13,0,0,146,13,0,0,146,13,0,0,146,13,0,0,146,13,0,0,146,13,0,0,146,13,0,0,146,13,0,0,146,13,0,0,146,13,0,0,150,13,0,0,150,13,0,0,160,13,0,0,162,13,0,0,162,13,0,0,162,13,0,0,176,13,0,0,176,13,0,0,178,13,0,0,178,13,0,0,178,13,0,0,180,13,0,0,182,13,0,0,182,13,0,0,182,13,0,0,182,13,0,0,186,13,0,0,188,13,0,0,188,13,0,0,188,13,0,0,194,13,0,0,194,13,0,0,194,13,0,0,196,13,0,0,196,13,0,0,196,13,0,0,198,13,0,0,200,13,0,0,202,13,0,0,202,13,0,0,202,13,0,0,202,13,0,0,206,13,0,0,210,13,0,0,214,13,0,0,214,13,0,0,218,13,0,0,218,13,0,0,220,13,0,0,228,13,0,0,228,13,0,0,228,13,0,0,228,13,0,0,230,13,0,0,230,13,0,0,232,13,0,0,234,13,0,0,234,13,0,0,238,13,0,0,238,13,0,0,242,13,0,0,242,13,0,0,242,13,0,0,242,13,0,0,0,168,142,124,21,102,0,0,0,168,142,124,142,104,0,0,0,160,21,50,97,107,0,0,0,232,185,6,134,112,0,0,0,232,185,6,18,113,0,0,0,232,185,6,20,116,0,0,0,232,185,6,38,144,0,0,0,232,185,6,101,146,0,0,2,160,184,120,228,100,0,0,2,88,181,225,178,111,0,0,2,152,140,213,191,146,0,0,5,0,246,29,146,93,0,0,5,0,246,29,219,94,0,0,5,0,246,29,126,113,0,0,5,0,246,29,160,123,0,0,5,0,246,29,67,144,0,0,6,144,44,105,163,98,0,0,7,192,176,20,246,91,0,0,7,192,176,20,84,117,0,0,7,192,176,20,238,117,0,0,7,192,176,20,189,126,0,0,8,120,234,109,68,146,0,0,10,80,158,115,21,102,0,0,10,80,158,115,142,104,0,0,11,56,11,62,58,99,0,0,11,56,11,62,39,130,0,0,14,80,123,29,163,98,0,0,15,120,135,52,39,137,0,0,20,192,57,106,146,93,0,0,20,192,57,106,219,94,0,0,20,192,57,106,126,113,0,0,20,192,57,106,160,123,0,0,20,192,57,106,67,144,0,0,21,248,242,176,65,89,0,0,23,168,139,128,39,137,0,0,25,96,187,117,21,102,0,0,25,96,187,117,142,104,0,0,26,80,205,164,246,91,0,0,26,80,205,164,84,117,0,0,26,80,205,164,238,117,0,0,26,80,205,164,189,126,0,0,26,120,219,193,252,128,0,0,26,136,144,95,39,137,0,0,27,160,29,179,111,119,0,0,27,200,44,209,39,137,0,0,27,160,29,179,219,147,0,0,28,56,38,210,39,137,0,0,29,0,120,139,21,102,0,0,29,0,120,139,142,104,0,0,29,48,118,175,228,124,0,0,30,112,75,4,38,126,0,0,30,112,75,4,44,134,0,0,30,112,75,4,74,135,0,0,31,80,228,210,39,137,0,0,37,240,81,200,97,130,0,0,40,128,123,247,4,119,0,0,40,128,123,247,194,134,0,0,41,88,18,86,39,137,0,0,47,128,191,105,87,116,0,0,49,176,50,206,39,137,0,0,50,96,58,164,20,107,0,0,50,96,58,164,130,108,0,0,50,56,151,234,179,114,0,0,50,96,58,164,208,135,0,0,53,80,137,195,179,114,0,0,53,24,62,238,39,137,0,0,55,8,127,192,89,88,0,0,55,8,127,192,139,140,0,0,55,8,127,192,10,143,0,0,55,8,127,192,53,149,0,0,56,208,54,63,150,97,0,0,57,0,195,115,168,133,0,0,58,16,212,160,39,137,0,0,59,32,234,43,251,132,0,0,59,32,234,43,4,141,0,0,62,144,148,159,146,93,0,0,62,144,148,159,219,94,0,0,62,144,148,159,126,113,0,0,62,144,148,159,160,123,0,0,62,144,148,159,67,144,0,0,64,248,55,101,64,110,0,0,64,248,55,101,136,110,0,0,64,248,55,101,195,110,0,0,64,248,55,101,231,110,0,0,64,248,55,101,27,111,0,0,66,88,70,10,206,112,0,0,69,208,63,41,39,137,0,0,70,96,62,78,21,102,0,0,70,96,62,78,142,104,0,0,71,136,133,242,87,116,0,0,71,24,4,60,139,133,0,0,74,216,98,173,246,91,0,0,74,216,98,173,84,117,0,0,74,216,98,173,238,117,0,0,74,216,98,173,189,126,0,0,76,184,60,165,246,91,0,0,76,200,179,230,60,109,0,0,76,184,60,165,84,117,0,0,76,184,60,165,238,117,0,0,76,200,179,230,164,120,0,0,76,184,60,165,189,126,0,0,79,128,215,157,146,93,0,0,79,128,215,157,219,94,0,0,79,128,215,157,126,113,0,0,79,128,215,157,160,123,0,0,79,208,138,110,39,137,0,0,79,128,215,157,67,144,0,0,83,0,168,16,172,109,0,0,83,0,168,16,251,109,0,0,83,168,42,140,227,130,0,0,83,0,168,16,190,143,0,0,84,64,249,67,146,93,0,0,84,64,249,67,219,94,0,0,84,64,249,67,126,113,0,0,84,64,249,67,160,123,0,0,84,64,249,67,67,144,0,0,85,32,211,145,21,102,0,0,85,32,211,145,142,104,0,0,85,56,153,111,39,137,0,0,88,96,158,175,31,93,0,0,88,96,158,175,155,114,0,0,88,96,158,175,4,119,0,0,89,16,237,97,168,147,0,0,91,0,125,27,62,122,0,0,92,240,131,12,105,93,0,0,92,240,131,12,226,112,0,0,92,240,131,12,149,145,0,0,93,144,223,74,246,91,0,0,93,144,223,74,84,117,0,0,93,144,223,74,238,117,0,0,93,144,223,74,189,126,0,0,94,208,44,117,172,109,0,0,94,208,44,117,37,123,0,0,94,208,44,117,51,142,0,0,95,200,98,244,188,140,0,0,96,48,30,248,95,128,0,0,99,160,186,147,82,114,0,0,99,120,208,138,62,122,0,0,103,168,211,126,39,137,0,0,110,168,111,122,219,91,0,0,110,168,111,122,155,114,0,0,110,168,111,122,24,120,0,0,110,168,111,122,239,121,0,0,114,56,145,75,246,91,0,0,114,168,5,121,136,111,0,0,114,56,145,75,84,117,0,0,114,56,145,75,238,117,0,0,114,56,145,75,189,126,0,0,116,88,120,192,62,122,0,0,117,72,203,138,180,90,0,0,117,72,203,138,124,136,0,0,118,40,244,44,253,101,0,0,120,192,119,124,170,94,0,0,120,0,70,107,39,137,0,0,120,192,119,124,104,148,0,0,122,216,9,213,167,99,0,0,122,216,9,213,198,99,0,0,122,104,236,202,62,122,0,0,122,216,9,213,202,130,0,0,124,216,81,151,240,136,0,0,126,160,106,188,178,111,0,0,128,56,20,224,113,111,0,0,130,112,33,19,39,137,0,0,138,56,183,255,39,137,0,0,139,216,72,3,39,137,0,0,141,16,190,129,156,111,0,0,145,120,31,254,168,116,0,0,145,120,31,254,250,145,0,0,148,0,61,146,39,137,0,0,149,192,27,171,97,94,0,0,149,96,34,63,39,137,0,0,149,192,27,171,219,147,0,0,154,160,132,182,59,107,0,0,154,160,132,182,153,107,0,0,154,160,132,182,114,141,0,0,163,240,233,155,246,91,0,0,163,240,233,155,84,117,0,0,163,240,233,155,238,117,0,0,163,240,233,155,189,126,0,0,164,112,1,182,146,93,0,0,164,112,1,182,219,94,0,0,164,112,1,182,126,113,0,0,164,112,1,182,160,123,0,0,164,112,1,182,67,144,0,0,165,112,50,91,133,109,0,0,165,112,50,91,124,127,0,0,166,40,185,148,17,89,0,0,166,144,85,40,88,120,0,0,166,144,85,40,128,120,0,0,166,144,85,40,105,147,0,0,167,128,3,163,58,99,0,0,167,128,3,163,39,130,0,0,169,136,215,178,126,93,0,0,169,136,215,178,108,124,0,0,169,136,215,178,158,124,0,0,172,128,28,135,39,137,0,0,174,136,67,142,146,93,0,0,174,136,67,142,219,94,0,0,174,136,67,142,126,113,0,0,174,136,67,142,160,123,0,0,174,136,67,142,67,144,0,0,175,104,250,16,197,125,0,0,176,200,9,182,21,102,0,0,176,200,9,182,142,104,0,0,183,248,47,128,197,94,0,0,183,144,154,3,39,137,0,0,190,240,80,196,149,121,0,0,190,240,80,196,95,129,0,0,191,200,225,26,10,101,0,0,191,216,21,233,111,119,0,0,191,200,225,26,191,146,0,0,191,216,21,233,219,147,0,0,193,32,22,171,178,111,0,0,193,32,22,171,65,112,0,0,193,88,105,47,53,117,0,0,193,88,105,47,10,143,0,0,199,24,215,198,145,129,0,0,200,216,166,248,68,108,0,0,200,152,243,109,38,126,0,0,200,152,243,109,44,134,0,0,200,152,243,109,74,135,0,0,205,232,217,27,39,137,0,0,206,192,223,232,39,137,0,0,207,104,157,38,218,89,0,0,208,144,206,229,21,102,0,0,208,144,206,229,142,104,0,0,208,200,253,111,39,137,0,0,210,184,45,12,97,130,0,0,215,208,198,207,94,111,0,0,216,232,214,141,15,133,0,0,217,64,161,188,97,94,0,0,219,136,121,186,39,137,0,0,223,32,18,231,28,91,0,0,227,88,156,13,246,91,0,0,227,32,104,135,163,98,0,0,227,88,156,13,84,117,0,0,227,88,156,13,238,117,0,0,227,88,156,13,189,126,0,0,230,128,19,204,39,137,0,0,233,48,108,167,39,137,0,0,238,128,234,183,230,87,0,0,238,24,70,159,227,120,0,0,238,24,70,159,95,121,0,0,239,72,120,15,184,95,0,0,243,32,11,231,89,123,0,0,247,88,161,212,21,102,0,0,247,88,161,212,142,104,0,0,250,144,159,145,163,98,0,0,254,112,29,173,39,137,0,0,3,105,194,245,21,102,0,0,3,105,194,245,142,104,0,0,6,113,42,53,246,91,0,0,6,113,42,53,84,117,0,0,6,113,42,53,238,117,0,0,6,113,42,53,189,126,0,0,7,129,34,163,216,107,0,0,8,89,112,168,206,127,0,0,9,249,161,202,135,100,0,0,10,33,126,246,54,93,0,0,10,33,126,246,166,122,0,0,10,33,126,246,37,123,0,0,12,137,190,127,157,100,0,0,15,41,180,148,242,115,0,0,16,1,33,87,20,129,0,0,17,49,230,213,246,91,0,0,17,49,230,213,84,117,0,0,17,49,230,213,238,117,0,0,17,49,230,213,189,126,0,0,18,9,101,125,39,137,0,0,18,89,20,235,39,137,0,0,21,233,245,186,163,98,0,0,27,145,171,15,39,137,0,0,29,217,142,104,38,126,0,0,29,217,142,104,44,134,0,0,29,217,142,104,74,135,0,0,31,161,150,227,21,102,0,0,31,161,150,227,142,104,0,0,32,33,190,175,109,90,0,0,32,33,190,175,85,143,0,0,33,137,201,148,97,107,0,0,39,121,88,207,208,87,0,0,39,121,88,207,67,144,0,0,44,81,66,224,21,102,0,0,44,81,66,224,142,104,0,0,47,201,236,107,39,137,0,0,49,81,214,158,246,91,0,0,49,81,214,158,84,117,0,0,49,81,214,158,238,117,0,0,49,81,214,158,189,126,0,0,50,57,154,112,181,112,0,0,50,57,154,112,138,148,0,0,55,113,78,72,232,90,0,0,55,25,157,38,142,104,0,0,55,113,78,72,67,144,0,0,57,113,126,24,39,137,0,0,59,121,193,165,188,140,0,0,63,49,180,3,39,137,0,0,66,217,117,114,246,91,0,0,66,217,117,114,241,116,0,0,66,233,138,249,39,137,0,0,66,217,117,114,75,145,0,0,67,137,14,191,39,137,0,0,69,137,239,3,21,102,0,0,69,137,239,3,142,104,0,0,74,113,81,117,146,93,0,0,74,113,81,117,219,94,0,0,74,113,81,117,126,113,0,0,74,113,81,117,160,123,0,0,74,113,81,117,67,144,0,0,84,17,87,206,146,93,0,0,84,17,87,206,219,94,0,0,84,17,87,206,126,113,0,0,84,17,87,206,160,123,0,0,84,41,234,162,102,131,0,0,84,41,234,162,124,131,0,0,84,17,87,206,67,144,0,0,85,217,40,127,102,122,0,0,85,217,40,127,134,122,0,0,85,113,97,11,39,137,0,0,85,217,40,127,219,142,0,0,87,209,238,218,21,102,0,0,87,209,238,218,142,104,0,0,88,145,218,52,146,93,0,0,88,145,218,52,219,94,0,0,88,145,218,52,126,113,0,0,88,145,218,52,160,123,0,0,88,145,218,52,67,144,0,0,91,1,171,122,191,146,0,0,93,57,69,24,52,97,0,0,93,41,123,37,10,143,0,0,94,193,166,27,1,142,0,0,95,129,58,197,146,93,0,0,95,129,58,197,219,94,0,0,95,209,202,154,21,102,0,0,95,177,50,218,21,102,0,0,95,209,202,154,142,104,0,0,95,177,50,218,142,104,0,0,95,129,58,197,126,113,0,0,95,129,58,197,160,123,0,0,95,209,202,154,243,135,0,0,95,129,58,197,67,144,0,0,97,105,233,20,27,149,0,0,98,17,236,114,219,147,0,0,100,81,229,36,39,137,0,0,101,65,181,55,139,130,0,0,104,1,233,126,192,92,0,0,105,145,243,10,21,102,0,0,105,145,243,10,142,104,0,0,105,89,166,8,242,114,0,0,105,89,166,8,132,115,0,0,107,105,89,94,191,146,0,0,108,57,25,193,39,137,0,0,108,49,154,250,149,145,0,0,112,17,49,77,35,109,0,0,113,225,65,111,38,133,0,0,114,89,155,19,246,91,0,0,114,89,155,19,20,116,0,0,114,89,155,19,60,116,0,0,117,49,214,49,191,146,0,0,119,25,5,77,89,98,0,0,120,145,223,66,220,136,0,0,126,137,56,75,39,137,0,0,131,185,143,46,21,102,0,0,131,185,143,46,142,104,0,0,134,97,173,2,93,127,0,0,137,17,206,98,159,112,0,0,137,121,171,202,39,137,0,0,137,17,206,98,195,142,0,0,138,113,157,38,21,102,0,0,138,25,65,217,21,102,0,0,138,113,157,38,142,104,0,0,138,25,65,217,142,104,0,0,138,25,65,217,243,135,0,0,139,57,160,40,191,146,0,0,140,25,35,202,39,137,0,0,144,201,186,58,246,91,0,0,144,129,66,43,89,110,0,0,144,201,186,58,84,117,0,0,144,201,186,58,238,117,0,0,144,201,186,58,189,126,0,0,145,241,105,0,89,123,0,0,147,241,185,13,39,137,0,0,149,145,161,185,213,115,0,0,149,145,161,185,47,132,0,0,149,145,161,185,149,145,0,0,152,41,216,224,21,102,0,0,152,41,216,224,142,104,0,0,153,193,19,65,86,90,0,0,155,1,217,248,58,99,0,0,155,1,217,248,39,130,0,0,155,65,110,160,39,137,0,0,156,153,237,24,39,137,0,0,156,177,35,104,39,137,0,0,157,33,32,210,246,91,0,0,157,33,32,210,84,117,0,0,157,33,32,210,238,117,0,0,157,33,32,210,189,126,0,0,162,137,83,181,68,115,0,0,166,233,88,129,1,149,0,0,168,185,113,21,21,102,0,0,168,185,113,21,142,104,0,0,168,185,113,21,243,135,0,0,177,129,155,235,87,116,0,0,180,49,97,175,16,130,0,0,184,129,241,82,105,149,0,0,185,225,189,83,80,93,0,0,185,9,174,241,89,110,0,0,193,129,17,91,21,102,0,0,193,129,17,91,142,104,0,0,195,217,243,28,111,119,0,0,195,217,243,28,219,147,0,0,197,129,35,154,165,148,0,0,208,249,225,133,230,87,0,0,209,209,62,232,246,91,0,0,209,209,62,232,84,117,0,0,209,209,62,232,238,117,0,0,209,209,62,232,189,126,0,0,215,1,46,126,255,95,0,0,224,121,38,141,57,120,0,0,225,17,75,233,180,90,0,0,225,17,75,233,242,114,0,0,225,17,75,233,169,126,0,0,227,113,229,42,180,90,0,0,227,241,75,54,21,102,0,0,227,241,75,54,142,104,0,0,227,113,229,42,124,136,0,0,229,137,210,252,39,137,0,0,230,201,191,116,39,137,0,0,231,81,13,214,197,129,0,0,235,249,5,126,253,149,0,0,238,49,93,189,146,93,0,0,238,49,93,189,219,94,0,0,238,49,93,189,126,113,0,0,238,49,93,189,160,123,0,0,238,49,93,189,67,144,0,0,241,209,103,176,14,100,0,0,241,209,103,176,20,131,0,0,241,209,103,176,57,131,0,0,241,209,103,176,68,132,0,0,241,225,18,234,39,137,0,0,243,89,40,245,38,126,0,0,243,89,40,245,44,134,0,0,243,89,40,245,74,135,0,0,244,81,134,132,58,99,0,0,244,57,236,159,21,102,0,0,244,57,236,159,142,104,0,0,244,81,134,132,39,130,0,0,245,169,102,224,124,127,0,0,245,81,156,151,39,137,0,0,245,33,143,78,223,149,0,0,246,9,22,52,191,146,0,0,247,41,5,165,73,91,0,0,248,145,132,198,82,114,0,0,249,193,252,30,21,102,0,0,249,193,252,30,142,104,0,0,249,193,252,30,243,135,0,0,249,177,82,42,39,137,0,0,252,209,232,219,39,137,0,0,252,193,229,126,49,141,0,0,254,17,180,68,21,102,0,0,254,49,117,249,21,102,0,0,254,17,180,68,142,104,0,0,254,49,117,249,142,104,0,0,254,225,151,159,67,144,0,0,255,153,9,157,161,130,0,0,0,178,191,254,195,91,0,0,0,178,191,254,205,128,0,0,4,82,34,158,191,146,0,0,5,74,143,239,39,137,0,0,7,242,239,179,97,107,0,0,8,82,75,152,97,115,0,0,9,210,140,64,111,119,0,0,9,210,140,64,219,147,0,0,10,114,145,228,21,102,0,0,10,114,145,228,142,104,0,0,11,18,81,92,108,97,0,0,11,18,81,92,16,126,0,0,12,202,183,136,21,102,0,0,12,202,183,136,142,104,0,0,12,154,85,167,39,137,0,0,16,74,60,175,55,143,0,0,19,50,208,169,21,102,0,0,19,50,208,169,142,104,0,0,21,26,13,227,246,91,0,0,21,26,13,227,84,117,0,0,21,26,13,227,238,117,0,0,21,26,13,227,189,126,0,0,38,130,150,234,21,102,0,0,38,130,150,234,142,104,0,0,38,130,150,234,243,135,0,0,40,66,19,210,21,102,0,0,40,66,19,210,142,104,0,0,42,226,141,59,216,96,0,0,45,26,78,227,21,102,0,0,45,26,78,227,142,104,0,0,45,26,78,227,163,135,0,0,46,66,146,174,232,101,0,0,46,170,198,84,39,137,0,0,47,218,101,161,184,127,0,0,48,218,181,104,21,102,0,0,48,218,181,104,142,104,0,0,48,74,40,202,89,133,0,0,48,154,27,102,39,137,0,0,48,74,40,202,75,145,0,0,49,178,118,8,39,137,0,0,49,202,44,145,39,137,0,0,50,162,36,65,21,102,0,0,50,162,36,65,142,104,0,0,55,74,145,199,179,114,0,0,55,26,19,1,54,148,0,0,57,82,250,107,26,132,0,0,60,170,131,19,21,102,0,0,60,170,131,19,142,104,0,0,60,170,131,19,163,135,0,0,61,82,203,204,21,102,0,0,61,82,203,204,142,104,0,0,62,82,215,197,246,142,0,0,65,250,161,133,191,146,0,0,66,66,133,82,21,102,0,0,66,66,133,82,142,104,0,0,68,18,186,112,97,94,0,0,68,18,186,112,144,94,0,0,74,186,29,157,62,122,0,0,74,138,133,199,39,137,0,0,75,90,237,105,111,125,0,0,77,42,10,126,75,113,0,0,77,66,77,81,233,148,0,0,81,170,145,2,163,98,0,0,81,10,66,226,39,137,0,0,84,130,56,66,19,98,0,0,84,130,56,66,168,133,0,0,84,130,56,66,168,143,0,0,93,154,236,237,21,102,0,0,93,154,236,237,142,104,0,0,94,74,253,166,144,88,0,0,94,42,254,54,39,137,0,0,100,26,1,152,39,137,0,0,101,130,216,132,39,137,0,0,102,122,149,145,39,137,0,0,106,2,57,11,39,137,0,0,108,234,115,66,21,102,0,0,108,234,115,66,142,104,0,0,108,234,6,185,18,150,0,0,108,234,6,185,76,150,0,0,108,234,6,185,138,150,0,0,108,234,6,185,198,150,0,0,112,226,114,219,64,110,0,0,112,226,114,219,231,110,0,0,112,226,114,219,27,111,0,0,113,50,220,140,191,146,0,0,114,154,74,229,39,137,0,0,115,58,18,12,39,137,0,0,119,226,212,220,76,101,0,0,119,170,255,235,21,102,0,0,119,170,255,235,142,104,0,0,119,226,212,220,151,118,0,0,119,170,255,235,243,135,0,0,120,250,103,86,134,101,0,0,122,26,234,219,191,146,0,0,123,26,16,100,39,137,0,0,126,242,178,129,21,102,0,0,126,218,49,185,21,102,0,0,126,242,178,129,142,104,0,0,126,218,49,185,142,104,0,0,126,42,113,150,166,146,0,0,127,178,19,61,21,102,0,0,127,178,19,61,142,104,0,0,130,226,111,36,229,111,0,0,131,106,251,180,185,89,0,0,131,202,215,197,21,102,0,0,131,202,215,197,142,104,0,0,131,82,135,171,18,150,0,0,131,82,135,171,76,150,0,0,131,82,135,171,138,150,0,0,131,82,135,171,198,150,0,0,136,146,31,30,79,96,0,0,136,146,31,30,120,96,0,0,136,146,31,30,167,96,0,0,136,34,211,183,222,140,0,0,137,90,194,228,246,91,0,0,137,90,194,228,84,117,0,0,137,90,194,228,238,117,0,0,137,90,194,228,189,126,0,0,146,226,224,156,246,91,0,0,146,226,224,156,84,117,0,0,146,226,224,156,238,117,0,0,146,226,224,156,189,126,0,0,146,146,157,38,18,150,0,0,146,146,157,38,76,150,0,0,146,146,157,38,138,150,0,0,146,146,157,38,198,150,0,0,148,250,9,86,21,102,0,0,148,250,9,86,142,104,0,0,151,50,249,74,48,100,0,0,151,50,249,74,159,110,0,0,155,242,114,86,39,137,0,0,157,226,236,172,140,89,0,0,159,34,133,152,39,137,0,0,162,122,21,240,21,102,0,0,162,114,210,250,21,102,0,0,162,122,21,240,142,104,0,0,162,114,210,250,142,104,0,0,162,194,242,76,191,146,0,0,164,210,112,234,146,93,0,0,164,210,112,234,219,94,0,0,164,210,112,234,126,113,0,0,164,210,112,234,160,123,0,0,164,210,112,234,67,144,0,0,166,34,82,115,163,98,0,0,166,34,125,27,89,123,0,0,166,154,219,231,39,137,0,0,173,194,190,92,242,114,0,0,173,194,190,92,132,115,0,0,173,26,32,211,191,146,0,0,180,146,219,104,146,93,0,0,180,146,219,104,219,94,0,0,180,146,219,104,126,113,0,0,180,146,219,104,160,123,0,0,180,146,219,104,67,144,0,0,181,98,19,188,21,102,0,0,181,98,19,188,142,104,0,0,182,66,244,86,39,137,0,0,185,42,191,172,18,150,0,0,185,42,191,172,76,150,0,0,185,42,191,172,138,150,0,0,185,42,191,172,198,150,0,0,187,58,59,68,21,102,0,0,187,58,59,68,142,104,0,0,187,194,203,7,189,126,0,0,188,202,4,227,136,90,0,0,188,82,74,186,237,96,0,0,189,26,185,92,215,119,0,0,190,122,171,101,39,137,0,0,191,50,149,30,21,102,0,0,191,50,149,30,142,104,0,0,192,90,49,212,38,126,0,0,192,82,159,129,155,132,0,0,192,90,49,212,44,134,0,0,192,90,49,212,74,135,0,0,193,66,173,157,21,102,0,0,193,66,173,157,142,104,0,0,194,82,202,100,145,129,0,0,200,26,157,38,37,107,0,0,200,2,122,185,39,137,0,0,200,74,203,70,104,148,0,0,202,50,243,140,246,91,0,0,202,10,240,186,172,109,0,0,202,10,240,186,251,109,0,0,202,50,243,140,84,117,0,0,202,50,243,140,238,117,0,0,202,50,243,140,189,126,0,0,202,10,240,186,190,143,0,0,207,250,68,228,239,119,0,0,212,250,44,213,163,98,0,0,214,114,182,205,39,137,0,0,215,2,142,110,223,99,0,0,216,250,205,87,39,137,0,0,223,26,67,82,21,102,0,0,223,26,67,82,142,104,0,0,223,34,169,22,39,137,0,0,224,226,52,60,179,114,0,0,224,162,48,142,65,129,0,0,226,114,64,222,21,144,0,0,228,210,53,240,169,129,0,0,228,210,53,240,197,129,0,0,232,210,22,80,172,109,0,0,232,210,22,80,251,109,0,0,232,210,22,80,190,143,0,0,234,2,6,146,227,120,0,0,235,194,69,55,21,102,0,0,235,194,69,55,142,104,0,0,235,194,69,55,86,136,0,0,237,34,234,228,246,91,0,0,237,34,234,228,84,117,0,0,237,34,234,228,238,117,0,0,237,34,234,228,189,126,0,0,238,178,236,44,87,116,0,0,238,202,105,230,221,133,0,0,247,194,114,14,246,91,0,0,247,194,114,14,84,117,0,0,247,194,114,14,238,117,0,0,247,194,114,14,189,126,0,0,252,226,96,246,163,98,0,0,254,50,156,132,160,101,0,0,0,163,246,81,180,90,0,0,0,163,246,81,246,91,0,0,0,235,22,132,111,119,0,0,0,163,246,81,124,136,0,0,0,163,246,81,141,147,0,0,3,195,131,98,21,102,0,0,3,195,131,98,142,104,0,0,10,43,81,172,192,122,0,0,10,43,81,172,138,123,0,0,17,131,113,22,65,112,0,0,20,83,146,126,87,116,0,0,24,139,206,74,133,124,0,0,32,251,197,194,37,108,0,0,33,179,189,98,160,101,0,0,35,59,51,34,230,87,0,0,35,59,51,34,48,101,0,0,39,51,165,153,219,147,0,0,42,187,122,77,230,128,0,0,44,211,235,52,179,114,0,0,50,43,63,107,53,117,0,0,53,123,84,200,246,91,0,0,53,123,84,200,84,117,0,0,53,123,84,200,238,117,0,0,53,131,205,68,164,120,0,0,53,123,84,200,189,126,0,0,53,19,19,28,39,137,0,0,54,195,96,248,21,102,0,0,54,195,96,248,142,104,0,0,60,107,218,203,252,143,0,0,61,179,189,8,21,102,0,0,61,179,189,8,142,104,0,0,61,43,185,73,38,115,0,0,61,51,254,76,39,137,0,0,62,3,255,178,163,98,0,0,65,147,224,133,39,137,0,0,67,75,146,160,163,98,0,0,76,155,137,150,84,100,0,0,78,67,216,108,163,98,0,0,82,59,255,174,164,120,0,0,83,59,130,192,21,102,0,0,83,59,130,192,142,104,0,0,83,123,48,33,38,126,0,0,83,123,48,33,44,134,0,0,83,123,48,33,74,135,0,0,83,43,178,8,141,143,0,0,85,227,162,107,21,102,0,0,85,227,162,107,142,104,0,0,86,171,254,166,87,108,0,0,86,171,254,166,198,108,0,0,86,171,254,166,242,108,0,0,91,91,86,43,17,128,0,0,91,91,86,43,60,128,0,0,93,235,14,55,60,116,0,0,93,155,90,44,39,137,0,0,104,75,165,55,246,99,0,0,104,115,231,242,21,102,0,0,104,115,231,242,142,104,0,0,104,75,165,55,213,131,0,0,104,75,165,55,209,132,0,0,105,243,151,229,146,93,0,0,105,243,151,229,219,94,0,0,105,243,151,229,126,113,0,0,105,243,151,229,160,123,0,0,105,243,151,229,67,144,0,0,111,115,175,193,105,109,0,0,111,139,207,70,39,137,0,0,113,67,218,48,39,137,0,0,115,19,52,36,38,126,0,0,115,19,52,36,44,134,0,0,115,19,52,36,74,135,0,0,118,83,200,198,104,148,0,0,123,219,178,8,21,102,0,0,123,219,178,8,142,104,0,0,125,227,221,81,191,146,0,0,126,35,95,163,21,102,0,0,126,35,95,163,142,104,0,0,127,219,166,149,83,109,0,0,129,171,177,114,247,125,0,0,133,91,233,96,28,141,0,0,133,91,233,96,89,141,0,0,136,99,92,220,63,119,0,0,140,115,145,25,171,149,0,0,145,27,21,108,140,98,0,0,146,147,37,151,146,93,0,0,146,147,37,151,219,94,0,0,146,147,37,151,126,113,0,0,146,147,37,151,160,123,0,0,146,147,37,151,67,144,0,0,149,195,16,87,21,102,0,0,149,195,16,87,142,104,0,0,149,251,80,165,39,137,0,0,150,43,204,105,146,93,0,0,150,43,204,105,219,94,0,0,150,43,204,105,126,113,0,0,150,43,204,105,160,123,0,0,150,43,204,105,67,144,0,0,152,227,27,98,21,102,0,0,152,227,27,98,142,104,0,0,156,235,92,80,21,102,0,0,156,235,92,80,142,104,0,0,156,219,152,7,110,114,0,0,156,219,152,7,219,147,0,0,160,123,180,252,163,98,0,0,160,155,73,151,38,126,0,0,160,155,73,151,44,134,0,0,160,155,73,151,74,135,0,0,161,203,195,111,89,123,0,0,164,187,194,8,39,137,0,0,166,107,28,198,39,137,0,0,167,67,228,117,39,137,0,0,169,243,206,88,33,97,0,0,172,83,202,89,70,123,0,0,172,115,159,37,39,137,0,0,172,83,202,89,149,145,0,0,174,227,243,154,149,145,0,0,176,155,231,242,21,102,0,0,176,155,231,242,142,104,0,0,178,235,146,205,234,122,0,0,178,235,146,205,8,123,0,0,181,27,5,210,37,90,0,0,188,59,217,195,39,89,0,0,188,59,217,195,113,91,0,0,188,59,217,195,144,91,0,0,188,59,217,195,49,96,0,0,189,187,19,146,21,102,0,0,189,187,19,146,142,104,0,0,192,139,218,99,126,121,0,0,194,3,126,33,146,93,0,0,194,3,126,33,219,94,0,0,194,3,126,33,126,113,0,0,194,3,126,33,160,123,0,0,194,3,126,33,67,144,0,0,195,147,7,53,39,137,0,0,199,227,39,60,79,96,0,0,199,227,39,60,120,96,0,0,199,227,39,60,167,96,0,0,202,155,51,79,39,137,0,0,203,219,34,129,180,90,0,0,204,35,222,192,39,137,0,0,207,59,170,147,146,93,0,0,207,59,170,147,219,94,0,0,207,59,170,147,126,113,0,0,207,195,15,88,192,122,0,0,207,59,170,147,160,123,0,0,207,139,55,198,39,137,0,0,207,59,170,147,67,144,0,0,207,83,188,148,191,146,0,0,212,211,100,244,146,93,0,0,212,211,100,244,219,94,0,0,212,83,197,188,21,102,0,0,212,83,197,188,142,104,0,0,212,211,100,244,126,113,0,0,212,211,100,244,160,123,0,0,212,211,100,244,67,144,0,0,213,195,202,97,178,111,0,0,213,195,202,97,227,130,0,0,213,83,149,86,39,137,0,0,215,147,143,117,21,102,0,0,215,147,143,117,142,104,0,0,217,147,45,144,146,93,0,0,217,147,45,144,219,94,0,0,217,147,45,144,126,113,0,0,217,147,45,144,160,123,0,0,217,67,191,131,39,137,0,0,217,147,45,144,67,144,0,0,221,115,195,184,229,111,0,0,221,115,195,184,65,112,0,0,226,195,3,16,163,98,0,0,226,91,136,50,21,102,0,0,226,107,12,142,21,102,0,0,226,91,136,50,142,104,0,0,226,107,12,142,142,104,0,0,226,227,183,53,208,124,0,0,229,219,24,252,172,109,0,0,229,219,24,252,251,109,0,0,229,219,24,252,190,143,0,0,230,187,188,178,25,88,0,0,233,243,134,154,7,91,0,0,234,75,179,148,178,111,0,0,241,131,219,33,21,102,0,0,241,131,219,33,142,104,0,0,241,59,76,37,214,116,0,0,241,59,76,37,185,119,0,0,241,59,76,37,6,121,0,0,241,59,76,37,37,121,0,0,241,27,14,217,39,137,0,0,241,59,76,37,194,147,0,0,242,243,74,45,161,130,0,0,243,83,242,122,39,137,0,0,250,219,241,2,39,137,0,0,252,19,117,13,179,114,0,0,254,163,7,142,18,150,0,0,254,163,7,142,76,150,0,0,254,163,7,142,138,150,0,0,254,163,7,142,198,150,0,0,2,140,210,198,39,137,0,0,5,228,1,254,246,91,0,0,5,228,1,254,84,117,0,0,5,228,1,254,238,117,0,0,5,132,11,170,111,125,0,0,5,228,1,254,189,126,0,0,5,252,199,199,149,145,0,0,8,100,162,51,172,109,0,0,8,100,162,51,251,109,0,0,8,36,155,110,51,142,0,0,8,100,162,51,190,143,0,0,10,204,223,17,39,137,0,0,11,156,138,192,246,91,0,0,11,156,138,192,84,117,0,0,11,156,138,192,238,117,0,0,11,156,138,192,189,126,0,0,11,180,242,46,39,137,0,0,13,124,218,249,21,102,0,0,13,124,218,249,142,104,0,0,16,4,246,237,195,142,0,0,17,156,138,192,246,91,0,0,17,156,138,192,84,117,0,0,17,156,138,192,238,117,0,0,17,156,138,192,189,126,0,0,20,244,18,197,3,97,0,0,20,244,18,197,136,125,0,0,26,28,86,47,146,93,0,0,26,28,86,47,219,94,0,0,26,28,86,47,126,113,0,0,26,28,86,47,160,123,0,0,26,28,86,47,67,144,0,0,32,228,217,16,123,88,0,0,32,60,204,168,87,116,0,0,32,68,46,5,189,126,0,0,32,36,249,128,39,137,0,0,37,44,193,111,87,108,0,0,37,44,193,111,198,108,0,0,37,44,193,111,242,108,0,0,38,52,32,136,191,146,0,0,41,52,205,50,39,137,0,0,45,252,55,89,93,91,0,0,49,188,176,148,21,102,0,0,49,188,176,148,142,104,0,0,50,180,90,205,10,101,0,0,50,180,90,205,27,146,0,0,50,180,90,205,191,146,0,0,52,116,159,2,39,137,0,0,53,68,157,38,21,102,0,0,53,68,157,38,142,104,0,0,56,84,187,202,162,89,0,0,56,84,187,202,241,89,0,0,56,116,81,165,246,91,0,0,56,116,81,165,84,117,0,0,56,116,81,165,238,117,0,0,56,116,81,165,189,126,0,0,59,36,147,174,39,137,0,0,60,132,157,96,172,109,0,0,60,132,157,96,251,109,0,0,60,132,157,96,190,143,0,0,61,100,24,208,39,137,0,0,62,148,185,94,39,137,0,0,63,108,155,47,97,94,0,0,64,132,55,147,206,118,0,0,66,220,13,152,39,137,0,0,72,140,183,152,21,102,0,0,72,140,183,152,142,104,0,0,72,100,161,202,65,112,0,0,74,164,127,138,39,137,0,0,75,212,154,78,181,115,0,0,80,164,167,155,39,137,0,0,85,100,228,169,39,137,0,0,86,84,107,168,168,125,0,0,87,220,61,55,97,94,0,0,87,220,61,55,26,96,0,0,87,140,65,77,191,146,0,0,88,92,45,122,21,102,0,0,88,92,45,122,142,104,0,0,88,108,120,183,39,137,0,0,90,180,52,218,248,127,0,0,94,124,171,64,97,130,0,0,95,116,145,76,97,107,0,0,100,108,157,38,134,128,0,0,112,132,7,116,146,93,0,0,112,132,7,116,219,94,0,0,112,28,214,214,228,100,0,0,112,132,7,116,126,113,0,0,112,132,7,116,160,123,0,0,112,132,7,116,67,144,0,0,114,252,161,157,111,119,0,0,114,252,161,157,219,147,0,0,117,172,156,30,21,102,0,0,117,172,156,30,142,104,0,0,117,44,188,246,172,109,0,0,117,44,188,246,251,109,0,0,117,44,188,246,190,143,0,0,119,156,70,208,21,102,0,0,119,156,70,208,142,104,0,0,119,116,11,251,191,146,0,0,120,172,68,144,14,100,0,0,120,172,68,144,20,131,0,0,120,172,68,144,57,131,0,0,120,172,68,144,68,132,0,0,121,36,250,15,39,137,0,0,123,156,224,253,21,102,0,0,123,156,224,253,142,104,0,0,126,172,242,215,7,93,0,0,126,180,179,63,205,148,0,0,128,44,44,101,21,102,0,0,128,44,44,101,142,104,0,0,128,60,160,139,59,107,0,0,128,60,160,139,153,107,0,0,128,180,61,220,163,108,0,0,128,100,10,185,122,129,0,0,128,44,44,101,86,136,0,0,128,60,160,139,114,141,0,0,132,116,61,94,21,102,0,0,132,116,61,94,142,104,0,0,132,60,189,2,39,137,0,0,133,212,203,110,97,107,0,0,134,212,223,38,97,107,0,0,136,60,150,250,39,137,0,0,137,180,60,166,21,102,0,0,137,180,60,166,142,104,0,0,141,148,45,16,21,102,0,0,141,148,45,16,142,104,0,0,144,180,172,244,21,102,0,0,144,180,172,244,142,104,0,0,146,212,145,254,21,102,0,0,146,212,145,254,142,104,0,0,147,4,51,126,105,149,0,0,151,52,174,213,21,102,0,0,151,52,174,213,142,104,0,0,151,52,174,213,243,135,0,0,154,100,57,105,113,99,0,0,156,76,237,65,89,123,0,0,156,164,166,6,39,137,0,0,157,148,68,174,39,137,0,0,160,108,51,3,21,102,0,0,160,108,51,3,142,104,0,0,160,172,250,29,158,124,0,0,160,108,51,3,243,135,0,0,165,140,82,158,39,137,0,0,166,44,63,193,21,102,0,0,166,44,63,193,142,104,0,0,171,12,161,241,39,137,0,0,173,172,126,242,39,137,0,0,175,116,149,89,44,98,0,0,178,212,182,94,233,95,0,0,181,156,138,192,246,91,0,0,181,156,138,192,84,117,0,0,181,156,138,192,238,117,0,0,181,156,138,192,189,126,0,0,182,188,135,23,97,94,0,0,182,188,135,23,184,118,0,0,182,60,200,79,39,137,0,0,183,236,211,138,21,102,0,0,183,236,211,138,142,104,0,0,184,100,198,6,39,137,0,0,185,52,249,43,87,116,0,0,187,140,157,38,18,150,0,0,187,140,157,38,76,150,0,0,187,140,157,38,138,150,0,0,187,140,157,38,198,150,0,0,191,28,72,92,242,114,0,0,191,28,72,92,132,115,0,0,191,196,239,149,39,137,0,0,193,84,100,139,21,102,0,0,193,84,100,139,142,104,0,0,193,188,58,127,20,116,0,0,194,124,198,139,39,137,0,0,201,164,21,58,21,102,0,0,201,164,21,58,142,104,0,0,204,36,63,131,97,115,0,0,205,28,25,130,191,146,0,0,208,156,36,172,39,137,0,0,209,76,86,75,246,91,0,0,209,76,86,75,84,117,0,0,209,76,86,75,238,117,0,0,209,76,86,75,189,126,0,0,213,244,78,137,89,123,0,0,214,220,227,114,21,102,0,0,214,220,227,114,142,104,0,0,215,68,181,35,212,88,0,0,216,196,73,119,227,130,0,0,219,60,135,110,54,93,0,0,219,60,135,110,166,122,0,0,219,60,135,110,37,123,0,0,221,52,95,31,39,137,0,0,221,124,169,247,39,137,0,0,221,20,156,251,39,137,0,0,222,76,158,27,203,101,0,0,222,140,13,188,249,107,0,0,222,76,158,27,51,135,0,0,227,252,186,128,226,97,0,0,227,252,186,128,182,128,0,0,227,228,108,108,39,137,0,0,229,60,246,142,21,102,0,0,229,60,246,142,142,104,0,0,229,60,246,142,243,135,0,0,230,68,245,113,21,102,0,0,230,68,245,113,142,104,0,0,230,68,245,113,243,135,0,0,231,204,121,224,110,132,0,0,234,124,144,47,97,107,0,0,243,204,91,64,146,93,0,0,243,204,91,64,219,94,0,0,243,164,228,146,79,96,0,0,243,164,228,146,120,96,0,0,243,164,228,146,167,96,0,0,243,204,91,64,126,113,0,0,243,204,91,64,160,123,0,0,243,204,91,64,67,144,0,0,245,68,31,54,39,137,0,0,248,132,156,6,14,100,0,0,248,132,156,6,20,131,0,0,248,132,156,6,57,131,0,0,248,132,156,6,68,132,0,0,253,4,246,52,21,102,0,0,253,4,246,52,142,104,0,0,253,92,125,228,38,126,0,0,253,92,125,228,44,134,0,0,253,92,125,228,74,135,0,0,0,117,1,126,134,132,0,0,1,149,53,160,112,133,0,0,1,29,76,71,101,146,0,0,1,29,76,71,219,147,0,0,4,229,191,63,191,146,0,0,5,5,29,18,39,137,0,0,6,101,246,172,21,102,0,0,6,101,246,172,142,104,0,0,6,181,38,91,185,124,0,0,8,149,191,253,66,125,0,0,8,253,204,103,39,137,0,0,12,93,228,52,39,137,0,0,15,165,195,127,73,111,0,0,20,213,125,203,39,137,0,0,22,173,92,206,180,90,0,0,22,173,92,206,213,131,0,0,22,173,92,206,68,132,0,0,24,45,112,17,179,114,0,0,24,93,41,156,20,116,0,0,24,93,41,156,3,120,0,0,24,85,64,95,39,137,0,0,25,61,241,154,21,102,0,0,25,61,241,154,142,104,0,0,25,61,241,154,243,135,0,0,27,85,106,124,21,102,0,0,27,85,106,124,142,104,0,0,29,253,25,46,87,108,0,0,29,253,25,46,198,108,0,0,29,253,25,46,242,108,0,0,29,37,97,73,111,119,0,0,29,37,97,73,219,147,0,0,31,149,65,35,97,115,0,0,31,149,60,215,149,145,0,0,33,29,184,10,180,90,0,0,33,53,254,236,39,137,0,0,34,109,64,228,39,137,0,0,38,13,212,177,163,108,0,0,39,245,118,59,38,126,0,0,39,245,118,59,44,134,0,0,39,245,118,59,74,135,0,0,40,5,176,203,39,137,0,0,43,37,193,148,133,149,0,0,46,69,14,57,111,119,0,0,46,149,223,190,140,134,0,0,46,157,73,243,39,137,0,0,46,69,14,57,219,147,0,0,48,141,171,35,21,102,0,0,48,141,171,35,142,104,0,0,51,125,36,87,219,91,0,0,51,13,73,145,146,93,0,0,51,13,73,145,219,94,0,0,51,53,231,154,21,102,0,0,51,53,231,154,142,104,0,0,51,13,73,145,126,113,0,0,51,21,35,187,102,122,0,0,51,13,73,145,160,123,0,0,51,125,36,87,169,134,0,0,51,13,73,145,67,144,0,0,52,85,148,190,158,128,0,0,56,13,253,6,21,102,0,0,56,13,253,6,142,104,0,0,58,101,85,7,246,91,0,0,58,101,85,7,241,116,0,0,58,101,85,7,75,145,0,0,59,189,44,236,191,146,0,0,63,157,216,53,146,93,0,0,63,157,216,53,219,94,0,0,63,157,216,53,126,113,0,0,63,157,216,53,160,123,0,0,63,157,216,53,67,144,0,0,65,181,9,171,163,98,0,0,65,237,158,186,66,121,0,0,65,237,158,186,246,133,0,0,68,197,7,68,146,93,0,0,68,197,7,68,219,94,0,0,68,197,7,68,126,113,0,0,68,197,7,68,160,123,0,0,68,197,7,68,67,144,0,0,69,21,107,234,211,95,0,0,70,213,102,142,87,108,0,0,70,213,102,142,198,108,0,0,70,213,102,142,242,108,0,0,70,117,50,210,39,137,0,0,70,229,238,25,67,144,0,0,71,229,181,147,39,137,0,0,77,101,178,13,246,91,0,0,77,157,166,62,87,116,0,0,77,101,178,13,84,117,0,0,77,101,178,13,238,117,0,0,77,101,178,13,189,126,0,0,77,165,60,29,39,137,0,0,78,117,143,150,21,102,0,0,78,117,143,150,142,104,0,0,85,109,70,23,162,88,0,0,85,109,70,23,65,98,0,0,85,109,70,23,110,114,0,0,85,109,70,23,16,125,0,0,85,109,70,23,42,125,0,0,85,109,70,23,68,146,0,0,93,109,99,5,146,93,0,0,93,109,99,5,219,94,0,0,93,109,99,5,126,113,0,0,93,109,99,5,160,123,0,0,93,109,99,5,67,144,0,0,94,13,215,89,21,102,0,0,94,13,215,89,142,104,0,0,94,253,43,179,179,114,0,0,94,13,215,89,243,135,0,0,95,37,13,64,38,126,0,0,95,37,13,64,44,134,0,0,95,37,13,64,74,135,0,0,97,165,240,104,130,97,0,0,102,165,105,160,39,137,0,0,104,197,79,75,21,102,0,0,104,197,79,75,142,104,0,0,106,141,246,20,146,93,0,0,106,141,246,20,219,94,0,0,106,141,246,20,126,113,0,0,106,141,246,20,160,123,0,0,106,141,246,20,67,144,0,0,110,245,100,110,21,102,0,0,110,245,100,110,142,104,0,0,110,245,100,110,243,135,0,0,117,245,13,86,13,122,0,0,120,109,238,50,38,126,0,0,120,109,238,50,44,134,0,0,120,109,238,50,74,135,0,0,122,101,177,211,37,108,0,0,124,109,181,217,96,142,0,0,125,21,231,235,216,145,0,0,127,37,178,92,39,137,0,0,130,21,197,88,146,93,0,0,130,21,197,88,219,94,0,0,130,229,148,247,59,107,0,0,130,229,148,247,153,107,0,0,130,21,197,88,126,113,0,0,130,21,197,88,160,123,0,0,130,229,148,247,114,141,0,0,130,229,148,247,153,141,0,0,130,21,197,88,67,144,0,0,130,173,200,118,67,144,0,0,136,85,207,121,21,102,0,0,136,85,207,121,142,104,0,0,138,125,147,241,191,146,0,0,139,101,250,251,14,100,0,0,139,245,106,20,89,123,0,0,139,101,250,251,20,131,0,0,139,101,250,251,57,131,0,0,139,101,250,251,68,132,0,0,140,173,1,165,65,89,0,0,140,13,108,36,107,89,0,0,140,13,108,36,182,101,0,0,140,13,108,36,75,113,0,0,140,13,108,36,242,115,0,0,141,165,208,18,163,98,0,0,141,165,208,18,197,129,0,0,145,173,81,102,163,98,0,0,146,173,248,113,38,144,0,0,147,125,67,18,171,149,0,0,149,205,157,128,63,119,0,0,150,77,29,217,103,140,0,0,154,237,169,240,39,137,0,0,156,109,85,85,39,137,0,0,160,221,103,81,21,102,0,0,160,221,103,81,142,104,0,0,163,45,231,242,3,97,0,0,164,85,106,88,21,102,0,0,164,85,106,88,142,104,0,0,164,13,213,34,164,120,0,0,165,213,232,155,132,99,0,0,165,21,212,175,21,102,0,0,165,21,212,175,142,104,0,0,167,141,152,112,156,90,0,0,167,141,152,112,248,112,0,0,167,141,152,112,122,145,0,0,168,165,104,191,39,137,0,0,169,189,102,99,65,112,0,0,170,109,114,36,156,131,0,0,170,109,114,36,183,131,0,0,170,109,114,36,177,132,0,0,173,149,186,148,164,120,0,0,176,213,113,13,163,98,0,0,179,85,129,83,18,150,0,0,179,85,129,83,76,150,0,0,179,85,129,83,138,150,0,0,179,85,129,83,198,150,0,0,181,85,103,101,82,114,0,0,182,13,83,14,229,111,0,0,186,253,197,194,58,99,0,0,186,173,55,41,242,114,0,0,186,173,55,41,132,115,0,0,186,253,197,194,39,130,0,0,188,93,32,204,185,89,0,0,188,141,46,227,14,100,0,0,188,93,32,204,178,111,0,0,188,93,32,204,65,112,0,0,188,141,46,227,20,131,0,0,188,141,46,227,57,131,0,0,188,141,46,227,68,132,0,0,188,133,154,199,191,146,0,0,190,141,130,41,21,102,0,0,190,141,130,41,142,104,0,0,192,197,132,12,21,102,0,0,192,197,132,12,142,104,0,0,192,197,132,12,243,135,0,0,194,157,13,33,87,116,0,0,198,93,250,126,146,93,0,0,198,93,250,126,219,94,0,0,198,93,250,126,126,113,0,0,198,93,250,126,160,123,0,0,198,93,250,126,67,144,0,0,202,141,184,239,110,132,0,0,202,77,97,253,149,145,0,0,203,45,109,18,21,102,0,0,203,45,109,18,142,104,0,0,203,45,109,18,163,135,0,0,208,5,111,226,39,137,0,0,209,237,178,249,154,109,0,0,212,133,143,140,227,120,0,0,216,13,229,69,130,142,0,0,217,245,12,98,242,114,0,0,217,245,12,98,132,115,0,0,217,45,75,215,111,119,0,0,217,93,185,70,39,137,0,0,217,45,75,215,219,147,0,0,218,141,50,130,39,137,0,0,225,221,124,37,21,102,0,0,225,221,124,37,142,104,0,0,232,93,47,122,39,137,0,0,235,61,234,243,146,93,0,0,235,61,234,243,219,94,0,0,235,61,234,243,126,113,0,0,235,61,234,243,160,123,0,0,235,61,234,243,67,144,0,0,236,221,200,163,157,100,0,0,236,189,246,194,67,144,0,0,236,189,246,194,41,145,0,0,243,109,236,61,39,137,0,0,244,165,44,230,65,112,0,0,245,157,214,28,111,119,0,0,246,29,227,183,230,87,0,0,248,181,245,57,163,98,0,0,251,13,21,182,79,96,0,0,251,13,21,182,120,96,0,0,251,13,21,182,167,96,0,0,253,53,118,6,172,109,0,0,253,53,118,6,251,109,0,0,253,53,118,6,190,143,0,0,5,70,111,69,230,87,0,0,6,102,225,57,39,137,0,0,12,54,73,164,39,137,0,0,14,174,193,78,149,145,0,0,18,22,226,222,39,137,0,0,19,70,211,4,191,146,0,0,20,174,41,4,21,102,0,0,20,174,41,4,142,104,0,0,22,118,140,230,39,137,0,0,31,134,157,38,217,121,0,0,32,190,207,103,180,90,0,0,33,30,92,58,22,117,0,0,33,30,92,58,228,118,0,0,33,30,92,58,252,129,0,0,33,30,92,58,101,146,0,0,37,70,125,48,21,102,0,0,37,70,125,48,142,104,0,0,37,134,91,235,65,112,0,0,38,214,219,156,191,146,0,0,39,126,34,57,191,146,0,0,40,182,7,125,84,149,0,0,42,238,117,211,39,137,0,0,42,38,46,153,149,145,0,0,44,222,211,252,246,91,0,0,44,222,211,252,84,117,0,0,44,222,211,252,238,117,0,0,44,222,211,252,189,126,0,0,49,110,68,15,146,93,0,0,49,110,68,15,219,94,0,0,49,110,68,15,126,113,0,0,49,110,68,15,160,123,0,0,49,110,68,15,67,144,0,0,51,46,57,126,11,90,0,0,52,110,183,37,146,93,0,0,52,110,183,37,219,94,0,0,52,110,183,37,126,113,0,0,52,110,183,37,160,123,0,0,52,110,183,37,67,144,0,0,53,30,90,20,246,91,0,0,53,182,78,6,75,113,0,0,53,30,90,20,84,117,0,0,53,30,90,20,238,117,0,0,53,30,90,20,189,126,0,0,56,94,92,240,229,111,0,0,60,78,181,187,75,97,0,0,65,134,79,103,142,104,0,0,65,134,79,103,86,136,0,0,71,118,74,136,50,113,0,0,79,14,231,49,65,112,0,0,82,86,48,59,229,111,0,0,83,150,163,89,21,102,0,0,83,150,163,89,142,104,0,0,83,142,209,187,65,112,0,0,83,150,163,89,243,135,0,0,84,62,219,176,21,102,0,0,84,62,219,176,142,104,0,0,85,78,97,216,106,100,0,0,85,110,117,232,98,101,0,0,85,86,154,44,21,102,0,0,85,86,154,44,142,104,0,0,85,110,117,232,242,134,0,0,85,110,117,232,19,135,0,0,86,190,195,165,65,112,0,0,87,254,121,69,146,93,0,0,87,254,121,69,219,94,0,0,87,254,121,69,126,113,0,0,87,254,121,69,160,123,0,0,87,254,121,69,67,144,0,0,88,174,224,186,38,126,0,0,88,174,224,186,44,134,0,0,88,174,224,186,74,135,0,0,89,94,179,191,21,102,0,0,89,94,179,191,142,104,0,0,89,94,179,191,243,135,0,0,89,70,73,183,39,137,0,0,92,166,140,5,172,109,0,0,92,166,140,5,251,109,0,0,92,30,52,187,39,137,0,0,92,166,140,5,190,143,0,0,96,118,183,60,146,93,0,0,96,118,183,60,219,94,0,0,96,118,183,60,126,113,0,0,96,230,165,7,111,119,0,0,96,118,183,60,160,123,0,0,96,118,183,60,67,144,0,0,96,230,165,7,219,147,0,0,102,62,63,101,191,146,0,0,107,214,246,98,21,102,0,0,107,214,246,98,142,104,0,0,111,14,134,250,236,88,0,0,111,70,231,242,89,123,0,0,112,254,50,98,39,137,0,0,114,46,236,94,172,109,0,0,117,62,174,217,59,107,0,0,117,62,174,217,153,107,0,0,117,190,16,249,242,115,0,0,117,190,16,249,87,116,0,0,117,62,174,217,114,141,0,0,117,62,174,217,153,141,0,0,121,62,244,210,39,137,0,0,122,78,185,237,142,104,0,0,123,206,147,73,97,107,0,0,123,62,124,98,38,126,0,0,123,62,124,98,44,134,0,0,123,62,124,98,74,135,0,0,126,102,12,43,26,142,0,0,126,102,12,43,165,148,0,0,127,174,91,108,246,91,0,0,127,174,91,108,241,116,0,0,127,174,91,108,75,145,0,0,128,246,255,3,89,110,0,0,132,86,200,156,58,99,0,0,132,86,200,156,39,130,0,0,135,142,129,235,39,137,0,0,136,86,144,189,39,137,0,0,141,190,244,70,38,126,0,0,141,190,244,70,44,134,0,0,141,190,244,70,74,135,0,0,144,22,74,165,246,91,0,0,144,22,74,165,84,117,0,0,144,22,74,165,238,117,0,0,144,22,74,165,189,126,0,0,144,198,93,59,39,137,0,0,145,6,139,49,21,102,0,0,145,6,139,49,142,104,0,0,148,110,157,71,146,93,0,0,148,110,157,71,219,94,0,0,148,102,85,77,21,102,0,0,148,22,93,111,21,102,0,0,148,102,85,77,142,104,0,0,148,22,93,111,142,104,0,0,148,110,157,71,126,113,0,0,148,110,157,71,160,123,0,0,148,102,85,77,163,135,0,0,148,110,157,71,67,144,0,0,149,38,243,39,10,101,0,0,149,38,243,39,27,146,0,0,149,38,243,39,191,146,0,0,151,190,155,204,193,107,0,0,151,190,155,204,185,141,0,0,151,190,155,204,213,141,0,0,152,174,128,229,38,126,0,0,152,174,128,229,44,134,0,0,152,174,128,229,74,135,0,0,154,238,41,120,22,99,0,0,158,46,151,232,163,98,0,0,163,134,157,6,178,111,0,0,163,38,231,208,39,137,0,0,171,70,60,56,39,137,0,0,174,198,29,96,146,93,0,0,174,198,29,96,219,94,0,0,174,46,164,8,21,102,0,0,174,46,164,8,142,104,0,0,174,198,29,96,126,113,0,0,174,198,29,96,160,123,0,0,174,198,29,96,67,144,0,0,181,62,239,240,21,102,0,0,181,62,239,240,142,104,0,0,183,126,161,67,202,97,0,0,183,126,161,67,250,97,0,0,185,174,251,184,172,109,0,0,192,238,60,166,173,97,0,0,195,190,131,53,115,98,0,0,195,190,131,53,16,134,0,0,197,198,13,189,191,146,0,0,199,182,74,199,110,143,0,0,201,30,100,119,58,99,0,0,202,94,194,220,39,137,0,0,204,102,40,127,29,119,0,0,204,102,40,127,227,120,0,0,204,150,44,36,191,146,0,0,207,46,103,52,146,93,0,0,207,46,103,52,219,94,0,0,207,46,103,52,126,113,0,0,207,46,103,52,160,123,0,0,207,46,103,52,67,144,0,0,209,38,103,27,21,102,0,0,209,38,103,27,142,104,0,0,210,126,231,20,146,126,0,0,211,142,234,42,21,102,0,0,211,142,234,42,142,104,0,0,215,70,198,33,230,87,0,0,217,46,162,223,109,90,0,0,217,46,162,223,20,116,0,0,218,86,84,94,215,122,0,0,221,46,150,190,39,137,0,0,223,22,225,218,39,137,0,0,223,198,45,100,18,150,0,0,223,198,45,100,76,150,0,0,223,198,45,100,138,150,0,0,223,198,45,100,198,150,0,0,225,182,241,36,21,102,0,0,225,182,241,36,142,104,0,0,225,182,241,36,243,135,0,0,228,134,197,5,39,137,0,0,229,22,172,213,163,98,0,0,236,46,81,254,170,92,0,0,244,166,215,176,21,102,0,0,244,166,215,176,142,104,0,0,247,102,183,157,21,102,0,0,247,102,183,157,142,104,0,0,250,206,67,87,146,93,0,0,250,206,67,87,219,94,0,0,250,206,67,87,126,113,0,0,250,206,67,87,160,123,0,0,250,206,67,87,67,144,0,0,252,118,18,126,111,119,0,0,252,118,18,126,219,147,0,0,255,158,243,43,39,137,0,0,0,31,120,86,170,136,0,0,0,111,9,117,39,137,0,0,2,231,9,78,38,126,0,0,2,231,9,78,44,134,0,0,2,231,9,78,74,135,0,0,7,23,143,94,171,121,0,0,11,167,122,198,146,93,0,0,11,167,122,198,219,94,0,0,11,167,122,198,126,113,0,0,11,167,122,198,160,123,0,0,11,167,122,198,67,144,0,0,13,31,213,213,146,93,0,0,13,31,213,213,219,94,0,0,13,31,213,213,126,113,0,0,13,31,213,213,160,123,0,0,13,31,213,213,67,144,0,0,15,87,254,203,21,102,0,0,15,87,254,203,142,104,0,0,17,183,211,55,39,137,0,0,18,151,132,235,242,92,0,0,20,135,251,194,39,137,0,0,24,159,52,128,79,96,0,0,24,159,52,128,120,96,0,0,24,159,52,128,167,96,0,0,31,95,61,116,242,114,0,0,31,95,61,116,132,115,0,0,32,95,4,140,229,111,0,0,34,191,98,70,97,130,0,0,36,159,69,44,21,102,0,0,36,159,69,44,142,104,0,0,39,247,146,90,39,137,0,0,40,175,35,203,95,128,0,0,40,31,170,142,39,137,0,0,44,231,35,225,21,102,0,0,44,231,35,225,142,104,0,0,47,95,76,76,161,130,0,0,48,127,155,237,146,93,0,0,48,127,155,237,219,94,0,0,48,127,155,237,126,113,0,0,48,127,155,237,160,123,0,0,48,191,222,177,159,127,0,0,48,127,155,237,67,144,0,0,50,111,179,110,39,137,0,0,50,183,44,244,39,137,0,0,51,247,108,217,39,137,0,0,53,23,23,146,146,93,0,0,53,23,23,146,219,94,0,0,53,23,23,146,126,113,0,0,53,23,23,146,160,123,0,0,53,23,23,146,67,144,0,0,55,31,228,197,87,116,0,0,55,23,134,217,233,148,0,0,57,239,218,132,79,96,0,0,57,239,218,132,120,96,0,0,57,239,218,132,167,96,0,0,57,47,108,239,15,133,0,0,58,119,240,250,21,102,0,0,58,119,240,250,142,104,0,0,58,119,240,250,243,135,0,0,59,215,245,234,75,145,0,0,60,63,39,23,191,146,0,0,62,207,191,73,21,102,0,0,62,207,191,73,142,104,0,0,65,231,221,77,172,109,0,0,65,231,221,77,136,110,0,0,65,231,221,77,51,142,0,0,72,119,152,194,230,87,0,0,73,255,156,38,42,112,0,0,73,7,152,232,7,137,0,0,74,159,92,34,63,133,0,0,74,159,92,34,167,140,0,0,75,159,62,153,191,116,0,0,75,159,62,153,105,147,0,0,78,71,158,25,39,137,0,0,79,7,80,112,42,129,0,0,80,231,47,236,21,102,0,0,80,231,47,236,142,104,0,0,81,135,244,220,191,146,0,0,82,247,1,90,21,102,0,0,82,247,1,90,142,104,0,0,83,79,225,241,246,91,0,0,83,79,225,241,241,116,0,0,83,79,225,241,75,145,0,0,85,87,103,72,39,137,0,0,86,23,8,62,37,99,0,0,87,191,69,102,21,102,0,0,87,31,212,214,21,102,0,0,87,191,69,102,142,104,0,0,87,31,212,214,142,104,0,0,92,231,239,51,191,146,0,0,96,87,167,247,188,88,0,0,96,87,167,247,89,125,0,0,96,87,167,247,79,148,0,0,98,87,148,190,163,95,0,0,102,135,18,243,39,137,0,0,103,239,172,77,21,102,0,0,103,239,172,77,142,104,0,0,104,119,230,228,58,99,0,0,104,39,47,220,97,107,0,0,104,119,230,228,39,130,0,0,106,191,149,33,21,102,0,0,106,191,149,33,142,104,0,0,108,47,56,223,102,122,0,0,108,47,56,223,197,129,0,0,112,255,161,9,18,151,0,0,113,255,45,127,16,108,0,0,113,151,215,91,216,125,0,0,114,223,250,192,254,88,0,0,123,135,69,18,163,98,0,0,123,63,16,179,21,102,0,0,123,63,16,179,142,104,0,0,123,87,129,214,39,137,0,0,125,255,71,35,196,136,0,0,125,159,69,241,39,137,0,0,127,39,139,106,39,137,0,0,128,215,94,99,111,119,0,0,129,207,23,10,246,91,0,0,129,207,23,10,84,117,0,0,129,207,23,10,238,117,0,0,129,207,23,10,189,126,0,0,130,7,33,83,21,102,0,0,130,7,33,83,142,104,0,0,132,255,75,144,39,137,0,0,133,135,120,36,185,89,0,0,134,143,227,150,75,145,0,0,137,7,65,137,193,107,0,0,137,7,65,137,18,150,0,0,137,7,65,137,76,150,0,0,137,7,65,137,138,150,0,0,137,7,65,137,198,150,0,0,145,215,205,43,230,87,0,0,147,255,46,57,69,141,0,0,148,183,165,193,173,97,0,0,149,127,117,110,38,126,0,0,149,127,117,110,44,134,0,0,149,127,117,110,74,135,0,0,151,159,187,84,39,137,0,0,151,7,211,140,39,137,0,0,152,127,194,202,39,137,0,0,154,199,168,158,21,102,0,0,154,199,168,158,142,104,0,0,155,39,116,221,39,137,0,0,156,239,83,75,164,120,0,0,158,255,6,113,39,137,0,0,159,183,131,211,146,93,0,0,159,183,131,211,219,94,0,0,159,183,131,211,126,113,0,0,159,183,131,211,160,123,0,0,159,183,131,211,67,144,0,0,161,167,190,225,39,137,0,0,164,39,147,108,21,102,0,0,164,39,147,108,142,104,0,0,169,71,40,129,183,100,0,0,169,7,136,216,21,102,0,0,169,7,136,216,142,104,0,0,169,71,40,129,229,132,0,0,170,79,215,48,3,97,0,0,171,39,149,70,47,88,0,0,171,247,230,188,191,146,0,0,178,63,226,230,172,109,0,0,178,63,226,230,251,109,0,0,178,63,226,230,190,143,0,0,184,95,227,169,21,102,0,0,184,95,227,169,142,104,0,0,184,135,255,171,5,132,0,0,185,191,95,26,39,137,0,0,185,247,60,73,39,137,0,0,186,191,164,65,87,116,0,0,187,183,206,64,39,137,0,0,188,39,175,138,149,145,0,0,189,23,249,112,10,101,0,0,189,47,29,33,172,109,0,0,189,47,29,33,251,109,0,0,189,47,29,33,190,143,0,0,189,23,249,112,27,146,0,0,189,23,249,112,191,146,0,0,191,183,114,52,39,137,0,0,192,183,201,84,21,102,0,0,192,183,201,84,142,104,0,0,201,183,107,238,207,100,0,0,201,215,103,62,39,137,0,0,203,247,60,19,146,93,0,0,203,247,60,19,219,94,0,0,203,247,60,19,126,113,0,0,203,247,60,19,160,123,0,0,203,247,60,19,67,144,0,0,204,151,241,158,124,127,0,0,207,143,178,63,89,88,0,0,207,111,212,34,58,99,0,0,207,111,212,34,39,130,0,0,207,143,178,63,139,140,0,0,207,143,178,63,10,143,0,0,207,191,98,158,104,148,0,0,207,143,178,63,53,149,0,0,209,55,189,152,191,146,0,0,212,23,233,20,136,146,0,0,213,95,193,76,163,98,0,0,217,143,237,65,39,122,0,0,217,87,14,87,239,131,0,0,218,151,9,45,39,137,0,0,221,7,27,118,63,90,0,0,221,31,15,76,163,98,0,0,221,7,27,118,219,134,0,0,224,207,74,192,39,137,0,0,227,127,44,134,39,137,0,0,228,63,95,104,65,112,0,0,229,127,12,36,39,137,0,0,233,119,52,221,246,91,0,0,233,119,52,221,203,120,0,0,234,55,211,204,221,92,0,0,234,55,211,204,179,114,0,0,235,223,226,96,111,119,0,0,235,223,226,96,219,147,0,0,237,31,246,120,97,94,0,0,237,63,9,99,18,112,0,0,239,175,29,108,172,109,0,0,240,31,7,227,246,91,0,0,240,31,7,227,84,117,0,0,240,31,7,227,238,117,0,0,240,31,7,227,189,126,0,0,244,207,162,88,196,136,0,0,246,239,50,86,193,121,0,0,247,39,152,0,39,137,0,0,249,199,111,204,21,102,0,0,249,199,111,204,142,104,0,0,251,135,244,26,135,114,0,0,251,71,81,63,39,137,0,0,255,167,61,33,219,147,0,0,17,1,13,35,67,111,111,107,105,101,66,97,110,110,101,114,2,1,207,88,121,39,17,1,14,35,67,111,111,107,105,101,67,111,110,115,101,110,116,2,8,33,198,70,215,34,51,59,35,43,205,215,145,69,111,70,5,133,225,249,208,183,227,29,246,183,234,128,238,194,152,119,72,17,1,13,35,67,111,111,107,105,101,78,111,116,105,99,101,2,1,178,188,187,230,17,1,33,35,67,121,98,111,116,67,111,111,107,105,101,98,111,116,68,105,97,108,111,103,66,111,100,121,85,110,100,101,114,108,97,121,2,1,70,149,39,171,17,1,21,35,95,95,116,101,97,108,105,117,109,71,68,80,82,99,112,80,114,101,102,115,2,2,63,178,143,207,192,127,8,55,17,1,12,35,95,101,118,104,45,98,117,116,116,111,110,2,1,16,217,228,32,17,1,9,35,95,101,118,104,45,114,105,99,2,1,166,253,74,94,17,1,17,35,97,110,97,108,121,116,105,99,115,95,99,111,111,107,105,101,2,1,23,70,109,85,17,1,15,35,97,112,112,45,99,111,111,107,105,101,45,100,105,118,2,1,247,167,87,96,17,1,15,35,98,97,110,110,101,114,45,112,114,105,118,97,99,121,2,1,35,181,68,215,17,1,9,35,99,99,45,109,111,100,97,108,2,1,250,134,14,111,17,1,10,35,99,99,95,98,97,110,110,101,114,2,1,192,250,223,114,17,1,13,35,99,99,95,99,111,110,116,97,105,110,101,114,2,1,148,185,40,166,17,1,17,35,99,108,105,83,101,116,116,105,110,103,115,80,111,112,117,112,2,1,195,217,59,188,17,1,29,35,99,109,112,108,122,45,99,111,111,107,105,101,98,97,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,2,165,1,173,140,176,242,248,21,17,1,24,35,99,111,109,112,111,110,101,110,116,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,36,108,13,140,17,1,13,35,99,111,110,115,101,110,116,45,98,117,109,112,2,1,172,236,226,157,17,1,14,35,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,202,187,84,56,17,1,16,35,99,111,110,115,101,110,116,46,99,111,110,115,101,110,116,2,3,36,120,135,133,180,251,106,131,204,32,93,188,17,1,14,35,99,111,110,115,101,110,116,66,97,110,110,101,114,2,1,38,157,104,207,17,1,17,35,99,111,110,115,101,110,116,67,111,110,116,97,105,110,101,114,2,1,202,187,84,56,17,1,17,35,99,111,110,115,101,110,116,95,98,108,97,99,107,98,97,114,2,1,126,57,46,51,17,1,17,35,99,111,110,116,97,105,110,101,114,45,99,111,111,107,105,101,2,1,210,5,27,181,17,1,14,35,99,111,111,99,107,105,101,45,109,111,100,97,108,2,1,118,27,7,221,17,1,14,35,99,111,111,107,105,101,45,97,99,99,101,112,116,2,1,65,19,193,153,17,1,14,35,99,111,111,107,105,101,45,98,97,110,110,101,114,2,2,175,190,33,32,223,162,46,217,17,1,11,35,99,111,111,107,105,101,45,98,97,114,2,1,227,4,202,188,17,1,15,35,99,111,111,107,105,101,45,99,111,110,102,105,114,109,2,1,112,152,141,167,17,1,15,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,8,10,184,29,33,42,229,113,227,81,246,163,0,103,207,190,32,129,34,219,203,138,203,72,117,206,92,173,22,233,75,17,225,17,1,22,35,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,72,78,113,55,17,1,12,35,99,111,111,107,105,101,45,105,110,102,111,2,1,154,134,243,233,17,1,36,35,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,116,101,109,112,108,97,116,101,45,119,114,97,112,112,101,114,2,1,231,18,32,223,17,1,11,35,99,111,111,107,105,101,45,106,97,114,2,1,165,5,41,247,17,1,11,35,99,111,111,107,105,101,45,108,97,119,2,1,89,55,252,45,17,1,22,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,97,103,97,105,110,2,1,195,217,59,188,17,1,42,35,99,111,111,107,105,101,45,108,97,119,45,105,110,102,111,45,98,97,114,32,126,32,46,99,108,105,45,109,111,100,97,108,45,98,97,99,107,100,114,111,112,2,1,195,217,59,188,17,1,15,35,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,254,191,178,0,17,1,14,35,99,111,111,107,105,101,45,110,111,116,105,99,101,2,2,87,36,125,51,122,111,168,110,17,1,15,35,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,40,7,85,101,58,10,23,207,129,13,156,88,227,13,178,101,77,14,114,194,247,19,155,89,114,20,90,30,53,20,176,192,7,53,42,113,6,58,186,201,144,74,223,144,93,75,86,76,209,75,145,56,114,81,246,163,0,108,91,174,127,114,117,217,66,140,243,50,202,155,233,240,163,156,224,226,146,158,214,81,49,164,205,80,26,165,60,184,76,165,74,22,144,165,81,116,56,173,98,216,74,192,138,156,11,192,138,156,17,192,138,156,181,200,84,123,53,210,32,33,157,213,230,49,17,221,52,119,233,227,7,31,240,227,13,26,21,228,194,90,137,228,234,34,237,232,62,209,209,241,225,79,83,252,211,222,44,254,1,228,5,17,1,13,35,99,111,111,107,105,101,45,112,97,110,101,108,2,1,254,81,46,236,17,1,20,35,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,111,100,97,108,2,1,126,233,1,104,17,1,12,35,99,111,111,107,105,101,45,116,101,120,116,2,1,204,211,55,234,17,1,12,35,99,111,111,107,105,101,45,119,114,97,112,2,1,235,132,151,18,17,1,15,35,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,1,215,242,172,126,17,1,14,35,99,111,111,107,105,101,46,99,111,111,107,105,101,2,1,175,158,96,88,17,1,13,35,99,111,111,107,105,101,65,99,99,101,112,116,2,2,110,135,60,219,246,126,33,10,17,1,16,35,99,111,111,107,105,101,65,99,99,101,112,116,66,97,114,2,1,83,189,225,185,17,1,12,35,99,111,111,107,105,101,65,103,114,101,101,2,1,12,131,240,92,17,1,11,35,99,111,111,107,105,101,65,114,101,97,2,1,178,215,136,169,17,1,18,35,99,111,111,107,105,101,66,97,110,110,101,114,77,111,100,97,108,2,46,5,99,109,93,15,68,110,49,19,60,247,203,20,246,141,106,29,246,0,5,33,126,3,194,37,183,110,52,47,86,28,26,52,103,46,207,52,218,145,88,53,216,157,63,60,183,118,96,64,91,204,243,67,249,64,84,68,7,197,68,69,121,254,87,71,157,110,148,87,67,206,250,88,197,21,130,96,29,198,174,104,219,146,180,105,204,43,150,106,57,192,20,116,7,132,112,117,81,113,74,126,250,93,198,142,67,136,174,144,45,147,217,145,73,13,51,146,23,23,53,147,170,59,207,151,37,147,146,157,215,128,79,159,148,144,62,182,1,112,164,189,93,49,238,197,58,129,95,198,122,167,11,206,87,17,84,211,131,183,159,213,213,31,13,229,151,243,105,234,112,210,164,237,155,127,48,243,234,61,235,244,100,211,212,17,1,14,35,99,111,111,107,105,101,67,111,110,115,101,110,116,2,7,23,135,188,182,47,155,108,63,55,61,220,87,112,186,18,68,120,246,31,237,171,27,192,149,188,161,64,217,17,1,17,35,99,111,111,107,105,101,67,111,110,115,101,110,116,66,111,120,2,1,112,186,18,68,17,1,18,35,99,111,111,107,105,101,67,111,110,115,101,110,116,70,111,114,109,2,1,124,119,192,120,17,1,13,35,99,111,111,107,105,101,68,105,97,108,111,103,2,1,128,47,248,183,17,1,11,35,99,111,111,107,105,101,73,110,102,111,2,46,5,99,109,93,15,68,110,49,19,60,247,203,20,246,141,106,29,246,0,5,33,126,3,194,37,183,110,52,47,86,28,26,52,103,46,207,52,218,145,88,53,216,157,63,60,183,118,96,64,91,204,243,67,249,64,84,68,7,197,68,69,121,254,87,71,157,110,148,87,67,206,250,88,197,21,130,96,29,198,174,104,219,146,180,105,204,43,150,106,57,192,20,116,7,132,112,117,81,113,74,126,250,93,198,142,67,136,174,144,45,147,217,145,73,13,51,146,23,23,53,147,170,59,207,151,37,147,146,157,215,128,79,159,148,144,62,182,1,112,164,189,93,49,238,197,58,129,95,198,122,167,11,206,87,17,84,211,131,183,159,213,213,31,13,229,151,243,105,234,112,210,164,237,155,127,48,243,234,61,235,244,100,211,212,17,1,12,35,99,111,111,107,105,101,76,97,121,101,114,2,1,190,148,87,98,17,1,18,35,99,111,111,107,105,101,77,111,100,97,108,67,101,110,116,101,114,2,1,15,120,72,239,17,1,13,35,99,111,111,107,105,101,78,111,116,105,99,101,2,1,234,107,21,69,17,1,13,35,99,111,111,107,105,101,80,111,108,105,99,121,2,1,94,182,212,178,17,1,18,35,99,111,111,107,105,101,80,111,108,105,99,121,77,111,100,97,108,2,1,126,46,1,215,17,1,14,35,99,111,111,107,105,101,87,114,97,112,112,101,114,2,1,55,61,220,87,17,1,21,35,99,111,111,107,105,101,95,104,100,114,95,115,104,111,119,97,103,97,105,110,2,1,195,217,59,188,17,1,12,35,99,111,111,107,105,101,95,105,110,102,111,2,6,30,31,146,136,60,39,227,199,128,52,159,24,132,218,239,57,146,228,164,243,182,21,13,251,17,1,18,35,99,111,111,107,105,101,95,105,110,102,111,95,98,108,111,99,107,2,6,30,31,146,136,60,39,227,199,128,52,159,24,132,218,239,57,146,228,164,243,182,21,13,251,17,1,20,35,99,111,111,107,105,101,95,105,110,102,111,95,119,114,97,112,112,101,114,2,6,30,31,146,136,60,39,227,199,128,52,159,24,132,218,239,57,146,228,164,243,182,21,13,251,17,1,12,35,99,111,111,107,105,101,95,119,97,108,108,2,1,59,141,226,42,17,1,13,35,99,111,111,107,105,101,97,99,99,101,112,116,2,1,186,74,82,188,17,1,13,35,99,111,111,107,105,101,98,97,110,110,101,114,2,3,48,215,79,170,197,18,244,20,242,231,45,163,17,1,10,35,99,111,111,107,105,101,98,97,114,2,1,88,206,243,169,17,1,14,35,99,111,111,107,105,101,99,111,110,115,101,110,116,2,1,24,69,57,93,17,1,24,35,99,111,111,107,105,101,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,187,181,78,60,17,1,13,35,99,111,111,107,105,101,100,105,97,108,111,103,2,1,92,81,18,11,17,1,11,35,99,111,111,107,105,101,104,105,110,116,2,1,104,240,165,97,17,1,14,35,99,111,111,107,105,101,104,105,110,119,101,105,115,2,1,63,54,208,56,17,1,16,35,99,111,111,107,105,101,109,97,110,45,109,111,100,97,108,2,2,166,60,238,192,193,165,183,148,17,1,15,35,99,111,111,107,105,101,115,45,97,99,99,101,112,116,2,1,67,161,126,183,17,1,15,35,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,128,186,252,227,17,1,16,35,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,2,1,67,161,126,183,17,1,16,35,99,111,111,107,105,101,115,45,99,111,110,116,101,110,116,2,1,66,56,130,84,17,1,12,35,99,111,111,107,105,101,115,45,110,97,103,2,1,89,149,116,175,17,1,15,35,99,111,111,107,105,101,115,46,97,99,116,105,118,101,2,1,23,70,109,85,17,1,17,35,99,111,111,107,105,101,115,67,111,110,116,97,105,110,101,114,2,1,77,5,25,119,17,1,16,35,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,2,1,53,131,190,195,17,1,14,35,99,111,111,107,105,101,115,95,109,111,100,97,108,2,1,108,21,27,145,17,1,14,35,99,111,111,107,105,101,119,97,114,110,105,110,103,2,24,2,145,170,81,13,113,213,176,16,3,195,226,18,69,135,123,18,208,165,141,29,123,80,14,57,245,181,248,76,15,31,221,76,193,95,213,102,81,173,145,105,44,144,6,108,216,67,78,115,82,34,166,135,104,32,227,145,159,144,250,160,146,75,67,171,9,181,65,178,255,3,62,186,245,233,21,213,44,250,212,213,172,22,229,232,151,46,158,246,96,226,252,252,180,123,160,17,1,6,35,99,111,111,107,121,2,1,120,41,238,154,17,1,12,35,100,105,100,111,109,105,45,104,111,115,116,2,1,62,8,23,86,17,1,14,35,100,105,100,111,109,105,45,110,111,116,105,99,101,2,9,34,212,111,207,62,11,56,11,119,100,30,201,132,134,81,244,156,200,86,132,163,3,128,167,194,197,253,186,228,230,119,104,248,217,1,155,17,1,10,35,100,105,118,67,111,111,107,105,101,2,1,105,57,100,154,17,1,26,35,100,109,45,99,111,111,107,105,101,45,112,111,112,117,112,45,99,111,110,116,97,105,110,101,114,2,1,155,232,213,165,17,1,22,35,101,110,115,77,111,100,97,108,87,114,97,112,112,101,114,91,114,111,108,101,93,2,1,213,9,216,122,17,1,16,35,101,110,115,78,111,116,105,102,121,66,97,110,110,101,114,2,1,213,9,216,122,17,1,14,35,101,117,45,99,111,111,107,105,101,45,108,97,119,2,1,110,142,2,215,17,1,15,35,103,100,112,114,45,97,103,114,101,101,109,101,110,116,2,1,55,165,75,104,17,1,9,35,103,100,112,114,45,98,97,114,2,5,6,156,132,248,144,68,172,120,176,103,209,241,227,46,141,188,251,250,101,139,17,1,27,35,103,100,112,114,45,98,108,111,99,107,105,110,103,45,112,97,103,101,45,111,118,101,114,108,97,121,2,1,74,249,50,151,17,1,13,35,103,100,112,114,45,99,111,110,115,101,110,116,2,1,150,137,155,76,17,1,20,35,103,100,112,114,45,99,111,111,107,105,101,45,109,101,115,115,97,103,101,2,1,216,97,78,85,17,1,13,35,103,100,112,114,83,101,116,116,105,110,103,115,2,1,202,161,249,9,17,1,13,35,103,100,112,114,95,99,111,110,115,101,110,116,2,2,127,190,137,12,163,200,221,236,17,1,15,35,103,100,112,114,95,99,111,110,116,97,105,110,101,114,2,1,129,40,71,169,17,1,12,35,103,100,112,114,99,111,110,115,101,110,116,2,1,238,107,183,201,17,1,25,35,103,112,100,114,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,2,120,184,160,2,214,214,28,112,17,1,17,35,106,115,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,4,26,225,200,191,39,243,38,149,112,249,23,189,205,90,180,50,17,1,19,35,109,111,100,97,108,67,111,111,107,105,101,67,111,110,115,101,110,116,2,1,34,51,59,35,17,1,13,35,109,111,100,97,108,95,99,111,111,107,105,101,2,1,220,212,226,119,17,1,27,35,109,111,111,118,101,95,103,100,112,114,95,99,111,111,107,105,101,95,105,110,102,111,95,98,97,114,2,1,232,117,110,85,17,1,17,35,109,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,86,103,250,120,17,1,9,35,109,121,99,111,111,107,105,101,2,2,98,189,179,33,132,156,50,254,17,1,12,35,110,101,119,45,99,111,111,107,105,101,115,2,1,36,108,13,140,17,1,20,35,110,111,116,105,99,101,45,99,111,111,107,105,101,45,98,108,111,99,107,2,1,27,158,76,222,17,1,12,35,110,111,116,105,99,101,80,111,112,117,112,2,1,174,146,66,46,17,1,15,35,110,111,116,105,99,101,95,118,105,115,105,116,111,114,2,1,44,244,40,118,17,1,20,35,111,110,101,116,114,117,115,116,45,98,97,110,110,101,114,45,115,100,107,2,128,0,0,0,151,3,51,108,160,3,239,137,69,4,41,174,20,6,253,13,56,8,164,46,174,8,178,219,123,8,189,179,61,10,243,145,105,12,132,197,192,16,45,148,141,18,109,45,203,19,131,170,60,21,113,185,168,27,103,38,209,30,149,50,191,30,156,172,117,30,252,193,249,33,149,191,106,33,219,131,241,35,171,141,48,36,241,182,225,37,124,221,225,38,157,68,53,38,157,113,138,41,130,141,190,42,234,142,211,44,69,159,36,44,154,86,85,46,143,185,131,48,125,70,37,49,139,6,145,50,136,91,226,52,246,4,253,54,75,241,227,55,69,194,235,58,21,164,201,61,19,178,127,65,36,162,50,66,115,234,108,68,59,58,187,68,180,17,254,73,191,207,62,75,79,197,104,77,85,102,148,77,172,239,103,78,62,96,70,80,92,235,156,81,103,221,160,82,67,26,223,82,133,66,66,83,33,7,130,84,201,183,192,86,9,250,148,87,16,195,149,88,106,85,164,89,163,150,83,89,215,13,94,90,1,247,82,91,17,129,193,94,61,116,132,98,27,227,152,98,131,195,3,98,246,214,107,101,44,44,128,102,69,191,87,104,181,218,48,107,162,227,85,108,147,39,164,110,100,245,110,111,93,22,148,113,245,68,230,114,227,220,214,115,158,80,10,117,143,147,215,117,187,96,25,121,207,85,136,122,45,92,88,124,106,85,27,124,142,168,0,129,178,242,126,136,183,202,12,138,211,236,183,139,100,84,193,139,120,0,29,142,12,107,226,142,246,60,229,145,211,32,85,146,19,187,189,148,176,188,49,150,143,117,78,152,183,140,72,154,202,209,95,154,231,53,51,154,241,61,25,157,173,66,193,157,183,102,247,158,168,199,154,159,236,57,244,163,95,35,126,166,60,180,137,169,208,50,19,169,227,95,184,172,246,101,6,175,212,21,165,176,215,166,244,176,219,62,84,179,16,63,123,182,9,200,176,185,49,218,126,188,19,98,181,188,197,83,212,191,179,94,89,192,130,59,83,193,63,44,166,197,215,202,131,203,254,87,15,204,111,199,249,204,203,82,61,208,70,156,119,210,19,66,40,212,161,88,247,213,174,52,151,214,212,31,87,216,136,7,169,217,65,25,138,218,50,177,95,218,238,209,87,224,66,81,44,224,216,41,152,225,35,231,44,227,78,26,45,227,150,161,31,228,145,114,10,229,206,144,208,234,150,130,38,235,255,170,119,236,47,231,80,237,236,154,93,240,21,122,162,240,239,62,181,242,231,115,104,242,231,155,176,244,172,180,144,245,194,105,3,248,96,195,54,249,117,49,254,249,218,124,13,250,210,114,162,250,240,119,58,253,224,156,123,254,145,212,146,17,1,21,35,111,110,101,116,114,117,115,116,45,99,111,110,115,101,110,116,45,115,100,107,2,128,0,0,0,154,3,51,108,160,3,239,137,69,4,41,174,20,6,253,13,56,8,164,46,174,8,178,219,123,8,189,179,61,10,243,145,105,12,132,197,192,16,45,148,141,18,109,45,203,19,131,170,60,21,113,185,168,27,103,38,209,30,149,50,191,30,156,172,117,30,252,193,249,33,149,191,106,33,219,131,241,35,171,141,48,36,241,182,225,37,124,221,225,38,157,25,55,38,157,68,53,38,157,113,138,41,130,141,190,42,234,142,211,44,69,159,36,44,154,86,85,46,143,185,131,48,125,70,37,49,139,6,145,50,136,91,226,52,246,4,253,54,75,241,227,55,69,194,235,58,21,164,201,61,19,178,127,65,36,162,50,66,115,234,108,68,59,58,187,68,180,17,254,73,191,207,62,75,79,197,104,77,85,102,148,77,172,239,103,78,62,96,70,80,92,235,156,81,103,221,160,82,67,26,223,82,133,66,66,83,33,7,130,84,201,183,192,86,9,250,148,87,16,195,149,88,106,85,164,89,163,150,83,89,215,13,94,90,1,247,82,91,17,129,193,94,61,116,132,98,27,227,152,98,131,195,3,98,246,214,107,101,44,44,128,102,69,191,87,103,79,134,65,104,181,218,48,107,162,227,85,108,147,39,164,110,100,245,110,111,93,22,148,113,245,68,230,114,227,220,214,115,158,80,10,117,143,147,215,117,187,96,25,121,207,85,136,122,45,92,88,124,106,85,27,124,142,168,0,129,178,242,126,136,183,202,12,138,211,236,183,139,100,84,193,139,120,0,29,142,12,107,226,142,246,60,229,145,211,32,85,146,19,187,189,148,176,188,49,150,143,117,78,152,183,140,72,154,202,209,95,154,231,53,51,154,241,61,25,157,173,66,193,157,183,102,247,158,168,199,154,159,236,57,244,163,95,35,126,166,60,180,137,169,208,50,19,169,227,95,184,172,246,101,6,175,212,21,165,176,215,166,244,176,219,62,84,179,16,63,123,182,9,200,176,185,49,218,126,188,19,98,181,188,197,83,212,191,179,94,89,192,130,59,83,193,63,44,166,197,215,202,131,203,254,87,15,204,111,199,249,204,203,82,61,208,70,156,119,210,19,66,40,212,161,88,247,213,174,52,151,214,212,31,87,216,136,7,169,217,65,25,138,218,50,177,95,218,238,209,87,224,66,81,44,224,216,41,152,225,35,231,44,227,78,26,45,227,150,161,31,228,145,114,10,229,206,144,208,234,150,130,38,235,255,170,119,236,47,231,80,237,185,78,122,237,236,154,93,240,21,122,162,240,239,62,181,242,231,115,104,242,231,155,176,244,172,180,144,245,194,105,3,248,96,195,54,249,117,49,254,249,218,124,13,250,210,114,162,250,240,119,58,253,224,156,123,254,145,212,146,17,1,8,35,111,112,116,97,110,111,110,2,1,164,58,96,50,17,1,13,35,112,111,108,105,99,121,78,111,116,105,99,101,2,1,38,157,26,200,17,1,17,35,112,111,112,105,110,95,116,99,95,112,114,105,118,97,99,121,2,4,139,160,60,128,182,132,160,154,217,174,62,117,247,148,229,130,17,1,15,35,112,114,105,118,97,99,121,45,112,111,108,105,99,121,2,9,38,223,212,134,47,144,124,234,50,21,160,0,73,147,206,123,76,145,116,95,110,203,212,133,148,201,137,33,179,239,242,7,220,47,39,104,17,1,19,35,116,99,45,112,114,105,118,97,99,121,45,119,114,97,112,112,101,114,2,4,139,160,60,128,182,132,160,154,217,174,62,117,247,148,229,130,17,1,10,35,116,101,99,111,110,115,101,110,116,2,2,137,65,7,137,204,155,190,151,17,1,24,35,116,111,97,115,116,115,32,62,32,35,116,111,97,115,116,115,87,114,97,112,112,101,114,2,1,163,34,129,7,9,1,14,46,66,111,114,108,97,98,115,67,111,111,107,105,101,2,1,188,13,140,222,9,1,12,46,67,111,111,107,105,101,80,111,112,117,112,2,1,127,45,255,113,9,1,18,46,67,111,111,107,105,101,115,58,110,111,116,40,98,111,100,121,41,2,2,194,197,251,32,211,177,101,122,9,1,10,46,67,111,111,107,105,101,115,79,75,2,1,248,166,216,200,9,1,22,46,80,111,115,105,116,105,111,110,66,111,116,116,111,109,46,97,115,45,111,105,108,2,4,46,25,253,29,111,193,44,37,142,102,213,70,166,254,171,86,9,1,24,46,97,99,99,101,112,116,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,164,58,96,50,9,1,22,46,97,99,99,101,112,116,45,112,114,105,118,97,99,121,45,112,111,108,105,99,121,2,2,177,212,13,38,220,61,180,128,9,1,23,46,97,115,45,111,105,108,45,99,111,110,116,101,110,116,45,111,118,101,114,108,97,121,2,4,46,25,253,29,111,193,44,37,142,102,213,70,166,254,171,86,9,1,28,46,97,115,45,111,105,108,91,100,97,116,97,45,113,97,61,34,111,105,108,45,76,97,121,101,114,34,93,2,4,46,25,253,29,111,193,44,37,142,102,213,70,166,254,171,86,9,1,16,46,98,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,77,49,17,112,9,1,14,46,98,97,110,110,101,114,45,99,111,111,107,105,101,2,1,230,179,200,76,9,1,13,46,98,97,110,110,101,114,95,99,111,107,105,101,2,1,149,166,219,127,9,1,19,46,98,99,112,78,111,116,105,102,105,99,97,116,105,111,110,66,97,114,2,1,193,175,115,111,9,1,12,46,98,111,120,45,99,111,111,107,105,101,115,2,1,91,50,112,165,9,1,9,46,99,45,99,111,111,107,105,101,2,1,249,178,237,209,9,1,10,46,99,99,45,98,97,110,110,101,114,2,16,5,140,166,92,6,118,53,253,16,168,0,83,33,29,47,189,51,162,100,8,77,221,231,65,80,22,210,232,94,236,46,114,96,157,132,60,108,29,175,239,117,44,208,94,184,251,174,185,186,240,10,202,230,226,63,178,246,188,44,117,252,24,219,229,9,1,20,46,99,99,45,98,111,116,116,111,109,46,99,99,45,98,97,110,110,101,114,2,11,5,140,166,92,6,118,53,253,16,168,0,83,33,29,47,189,51,162,100,8,80,22,210,232,96,157,132,60,186,240,10,202,230,226,63,178,246,188,44,117,252,24,219,229,9,1,12,46,99,99,45,102,108,111,97,116,105,110,103,2,2,101,55,248,64,219,114,226,112,9,1,30,46,99,99,45,105,110,100,105,118,105,100,117,97,108,45,99,111,111,107,105,101,45,115,101,116,116,105,110,103,115,2,3,3,255,246,128,43,66,129,144,241,174,9,185,9,1,10,46,99,99,45,114,101,118,111,107,101,2,2,77,221,231,65,101,55,248,64,9,1,27,46,99,99,45,116,104,101,109,101,45,99,108,97,115,115,105,99,46,99,99,45,119,105,110,100,111,119,2,1,74,249,50,151,9,1,27,46,99,99,45,116,121,112,101,45,111,112,116,45,105,110,46,99,99,45,102,108,111,97,116,105,110,103,2,1,101,55,248,64,9,1,39,46,99,99,45,119,105,110,100,111,119,91,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,42,61,34,99,111,110,115,101,110,116,34,93,2,2,101,55,248,64,219,114,226,112,9,1,33,46,99,99,45,119,105,110,100,111,119,91,97,114,105,97,45,108,97,98,101,108,42,61,34,99,111,110,115,101,110,116,34,93,2,2,101,55,248,64,219,114,226,112,9,1,12,46,99,99,112,97,45,98,97,110,110,101,114,2,1,127,195,165,15,9,1,10,46,99,101,45,98,97,110,110,101,114,2,1,207,198,208,215,9,1,14,46,99,108,111,115,101,45,99,111,111,107,105,101,115,2,1,224,20,56,128,9,1,11,46,99,109,45,109,101,115,115,97,103,101,2,1,121,5,168,114,9,1,13,46,99,109,112,45,97,112,112,95,103,100,112,114,2,1,129,190,16,141,9,1,18,46,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,2,7,6,157,134,163,97,202,195,213,148,179,75,234,171,22,32,193,188,106,160,126,204,32,93,188,225,181,88,2,9,1,16,46,99,111,110,115,101,110,116,45,99,111,110,116,101,110,116,2,6,14,83,13,182,36,111,226,130,59,48,86,82,140,4,95,32,184,195,115,221,240,92,94,56,9,1,15,46,99,111,110,115,101,110,116,45,104,111,108,100,101,114,2,1,99,9,63,237,9,1,14,46,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,38,156,255,73,9,1,16,46,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,2,12,22,113,131,17,49,231,14,79,99,102,189,169,104,95,63,228,165,195,190,86,171,22,32,193,184,195,115,221,187,209,142,83,202,161,100,72,204,32,93,188,230,44,165,244,235,91,134,37,9,1,16,46,99,111,110,115,101,110,116,46,99,111,111,107,105,101,115,2,1,6,185,232,0,9,1,13,46,99,111,110,115,101,110,116,80,111,112,117,112,2,1,98,206,17,137,9,1,16,46,99,111,110,116,101,110,116,45,99,111,111,107,105,101,115,2,1,112,154,57,50,9,1,11,46,99,111,111,107,105,101,45,97,103,101,2,1,10,70,88,66,9,1,13,46,99,111,111,107,105,101,45,97,103,114,101,101,2,1,12,131,240,92,9,1,17,46,99,111,111,107,105,101,45,97,103,114,101,101,109,101,110,116,2,1,112,152,141,167,9,1,23,46,99,111,111,107,105,101,45,97,108,101,114,116,45,99,111,110,116,97,105,110,101,114,2,1,6,185,232,0,9,1,16,46,99,111,111,107,105,101,45,98,97,99,107,100,114,111,112,2,1,136,74,118,71,9,1,34,46,99,111,111,107,105,101,45,98,97,110,110,101,114,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,3,6,78,182,53,36,108,13,140,126,10,42,77,9,1,23,46,99,111,111,107,105,101,45,98,97,110,110,101,114,95,95,119,114,97,112,112,101,114,2,46,5,99,109,93,15,68,110,49,19,60,247,203,20,246,141,106,29,246,0,5,33,126,3,194,37,183,110,52,47,86,28,26,52,103,46,207,52,218,145,88,53,216,157,63,60,183,118,96,64,91,204,243,67,249,64,84,68,7,197,68,69,121,254,87,71,157,110,148,87,67,206,250,88,197,21,130,96,29,198,174,104,219,146,180,105,204,43,150,106,57,192,20,116,7,132,112,117,81,113,74,126,250,93,198,142,67,136,174,144,45,147,217,145,73,13,51,146,23,23,53,147,170,59,207,151,37,147,146,157,215,128,79,159,148,144,62,182,1,112,164,189,93,49,238,197,58,129,95,198,122,167,11,206,87,17,84,211,131,183,159,213,213,31,13,229,151,243,105,234,112,210,164,237,155,127,48,243,234,61,235,244,100,211,212,9,1,11,46,99,111,111,107,105,101,45,98,97,114,2,3,101,103,85,181,147,186,160,99,198,132,145,248,9,1,12,46,99,111,111,107,105,101,45,98,111,100,121,2,2,7,152,219,156,23,70,109,85,9,1,11,46,99,111,111,107,105,101,45,98,111,120,2,1,26,244,135,251,9,1,11,46,99,111,111,107,105,101,45,98,116,110,2,2,122,111,168,110,175,158,96,88,9,1,22,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,9,13,117,19,252,17,112,45,24,52,235,211,44,60,52,226,224,179,43,253,94,195,137,80,53,199,145,74,55,204,211,55,234,234,151,56,50,9,1,19,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,111,120,2,7,8,166,89,105,41,55,173,186,92,72,28,191,92,190,194,173,98,12,245,217,116,61,95,31,233,75,17,225,9,1,21,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,73,185,43,61,9,1,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,115,104,111,119,2,1,181,83,137,162,9,1,18,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,118,50,2,3,35,65,149,31,131,63,36,204,152,75,82,8,9,1,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,2,6,8,166,89,105,41,55,173,186,92,72,28,191,92,190,194,173,98,12,245,217,116,61,95,31,9,1,23,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,2,1,78,154,212,75,9,1,20,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,46,115,104,111,119,2,1,185,161,145,149,9,1,17,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,3,36,108,13,140,148,180,41,15,249,16,190,117,9,1,15,46,99,111,111,107,105,101,45,99,111,110,116,101,110,116,2,5,6,185,232,0,19,155,89,114,127,58,188,193,156,41,93,24,223,162,46,217,9,1,14,46,99,111,111,107,105,101,45,100,105,97,108,111,103,2,2,19,155,89,114,55,14,235,93,9,1,28,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,58,110,111,116,40,98,111,100,121,41,2,12,33,13,157,194,43,249,52,185,44,236,178,238,62,166,157,77,65,164,191,186,105,191,128,47,126,146,83,20,168,204,60,32,197,228,31,55,235,155,129,177,242,133,136,71,249,16,190,117,9,1,14,46,99,111,111,107,105,101,45,102,111,111,116,101,114,2,1,254,31,120,145,9,1,14,46,99,111,111,107,105,101,45,104,111,108,100,101,114,2,1,153,62,159,75,9,1,18,46,99,111,111,107,105,101,45,105,110,102,111,45,98,108,111,99,107,2,1,37,76,59,241,9,1,16,46,99,111,111,107,105,101,45,105,110,102,111,45,98,111,120,2,4,7,85,101,58,108,91,174,127,114,117,217,66,241,225,79,83,9,1,22,46,99,111,111,107,105,101,45,105,110,102,111,45,99,111,110,116,97,105,110,101,114,2,1,58,92,30,33,9,1,18,46,99,111,111,107,105,101,45,105,110,102,111,45,109,111,100,97,108,2,2,47,105,88,193,107,63,43,50,9,1,17,46,99,111,111,107,105,101,45,105,110,102,111,45,116,101,120,116,2,33,10,23,207,129,13,156,88,227,13,178,101,77,14,114,194,247,20,90,30,53,20,176,192,7,53,42,113,6,58,186,201,144,74,223,144,93,75,86,76,209,75,145,56,114,140,243,50,202,155,233,240,163,156,224,226,146,158,214,81,49,164,205,80,26,165,60,184,76,165,74,22,144,165,81,116,56,173,98,216,74,192,138,156,11,192,138,156,17,192,138,156,181,200,84,123,53,210,32,33,157,213,230,49,17,227,7,31,240,227,13,26,21,228,194,90,137,228,234,34,237,232,62,209,209,252,211,222,44,254,1,228,5,9,1,32,46,99,111,111,107,105,101,45,105,110,102,111,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,33,10,23,207,129,13,156,88,227,13,178,101,77,14,114,194,247,20,90,30,53,20,176,192,7,53,42,113,6,58,186,201,144,74,223,144,93,75,86,76,209,75,145,56,114,140,243,50,202,155,233,240,163,156,224,226,146,158,214,81,49,164,205,80,26,165,60,184,76,165,74,22,144,165,81,116,56,173,98,216,74,192,138,156,11,192,138,156,17,192,138,156,181,200,84,123,53,210,32,33,157,213,230,49,17,227,7,31,240,227,13,26,21,228,194,90,137,228,234,34,237,232,62,209,209,252,211,222,44,254,1,228,5,9,1,24,46,99,111,111,107,105,101,45,105,110,102,111,114,109,97,116,105,111,110,45,116,101,120,116,2,1,220,212,226,119,9,1,13,46,99,111,111,107,105,101,45,105,110,102,111,115,2,1,23,135,188,182,9,1,13,46,99,111,111,107,105,101,45,105,110,110,101,114,2,1,147,55,132,64,9,1,23,46,99,111,111,107,105,101,45,105,110,110,101,114,45,99,111,110,116,97,105,110,101,114,2,1,58,92,30,33,9,1,12,46,99,111,111,107,105,101,45,105,116,101,109,2,2,175,158,96,88,247,123,128,40,9,1,25,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,45,99,111,110,116,97,105,110,101,114,2,1,127,40,102,204,9,1,35,46,99,111,111,107,105,101,45,109,101,115,115,97,103,101,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,2,2,128,157,205,149,220,92,99,136,9,1,13,46,99,111,111,107,105,101,45,109,111,100,97,108,2,14,7,165,230,96,28,214,157,245,28,243,217,195,57,14,69,46,64,140,210,9,73,97,37,29,96,226,223,235,99,94,215,128,126,18,118,252,132,22,235,0,157,161,252,114,179,29,160,27,215,75,45,217,233,21,216,191,9,1,21,46,99,111,111,107,105,101,45,109,111,100,97,108,45,111,118,101,114,108,97,121,2,1,37,76,59,241,9,1,15,46,99,111,111,107,105,101,45,109,111,110,115,116,101,114,2,1,92,185,26,189,9,1,11,46,99,111,111,107,105,101,45,109,115,103,2,1,228,68,250,207,9,1,12,46,99,111,111,107,105,101,45,110,111,116,101,2,1,156,41,93,24,9,1,24,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,99,111,110,116,97,105,110,101,114,2,1,122,111,168,110,9,1,22,46,99,111,111,107,105,101,45,110,111,116,105,99,101,45,118,105,115,105,98,108,101,2,1,141,38,121,224,9,1,31,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,98,97,99,107,103,114,111,117,110,100,2,1,40,85,144,166,9,1,27,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,45,104,101,97,100,101,114,2,1,40,85,144,166,9,1,10,46,99,111,111,107,105,101,45,111,110,2,6,34,213,13,164,68,205,131,53,75,83,239,156,148,186,149,173,174,255,59,82,230,179,200,76,9,1,15,46,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,221,52,119,233,9,1,14,46,99,111,111,107,105,101,45,112,111,108,105,99,121,2,4,127,40,102,204,140,143,133,212,146,6,2,234,159,70,24,238,9,1,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,99,111,110,115,101,110,116,2,1,37,76,59,241,9,1,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,109,111,100,97,108,2,1,37,76,59,241,9,1,20,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,112,111,112,117,112,2,1,186,158,237,65,9,1,22,46,99,111,111,107,105,101,45,112,111,108,105,99,121,45,119,114,97,112,112,101,114,2,1,159,70,24,238,9,1,14,46,99,111,111,107,105,101,45,112,111,112,45,117,112,2,1,99,218,139,192,9,1,13,46,99,111,111,107,105,101,45,112,111,112,85,112,2,1,196,80,240,190,9,1,13,46,99,111,111,107,105,101,45,112,111,112,117,112,2,1,94,143,23,7,9,1,15,46,99,111,111,107,105,101,45,112,114,105,118,97,99,121,2,1,86,50,239,246,9,1,13,46,99,111,111,107,105,101,45,112,114,111,109,111,2,1,38,157,134,31,9,1,21,46,99,111,111,107,105,101,45,114,101,118,111,107,101,45,104,105,100,100,101,110,2,1,122,111,168,110,9,1,17,46,99,111,111,107,105,101,45,115,116,97,116,101,109,101,110,116,2,1,86,13,245,117,9,1,14,46,99,111,111,107,105,101,45,115,116,105,99,107,121,2,1,65,237,143,217,9,1,15,46,99,111,111,107,105,101,45,118,105,115,105,98,108,101,2,5,27,125,0,91,138,208,120,99,157,29,186,74,192,120,88,116,202,236,104,122,9,1,15,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,2,3,127,40,217,85,187,35,21,51,223,56,47,108,9,1,23,46,99,111,111,107,105,101,45,119,97,114,110,105,110,103,45,99,111,110,116,101,110,116,2,1,127,40,217,85,9,1,13,46,99,111,111,107,105,101,65,99,99,101,112,116,2,2,110,135,60,219,246,126,33,10,9,1,10,46,99,111,111,107,105,101,66,97,114,2,2,88,15,195,207,172,81,43,10,9,1,10,46,99,111,111,107,105,101,66,111,120,2,1,94,84,86,218,9,1,21,46,99,111,111,107,105,101,67,111,110,115,101,110,116,67,111,110,116,101,110,116,2,1,205,146,235,178,9,1,20,46,99,111,111,107,105,101,67,111,110,115,101,110,116,70,111,111,116,101,114,2,1,205,146,235,178,9,1,16,46,99,111,111,107,105,101,67,111,110,116,97,105,110,101,114,2,3,110,135,60,219,117,44,208,94,246,126,33,10,9,1,10,46,99,111,111,107,105,101,68,105,118,2,1,89,202,83,172,9,1,12,46,99,111,111,107,105,101,77,111,100,97,108,2,8,0,105,241,145,20,106,245,139,27,125,34,166,65,237,76,156,111,195,203,161,137,78,244,213,231,11,32,243,242,231,70,111,9,1,13,46,99,111,111,107,105,101,78,111,116,105,99,101,2,1,172,81,43,10,9,1,15,46,99,111,111,107,105,101,83,101,116,116,105,110,103,115,2,46,5,99,109,93,15,68,110,49,19,60,247,203,20,246,141,106,29,246,0,5,33,126,3,194,37,183,110,52,47,86,28,26,52,103,46,207,52,218,145,88,53,216,157,63,60,183,118,96,64,91,204,243,67,249,64,84,68,7,197,68,69,121,254,87,71,157,110,148,87,67,206,250,88,197,21,130,96,29,198,174,104,219,146,180,105,204,43,150,106,57,192,20,116,7,132,112,117,81,113,74,126,250,93,198,142,67,136,174,144,45,147,217,145,73,13,51,146,23,23,53,147,170,59,207,151,37,147,146,157,215,128,79,159,148,144,62,182,1,112,164,189,93,49,238,197,58,129,95,198,122,167,11,206,87,17,84,211,131,183,159,213,213,31,13,229,151,243,105,234,112,210,164,237,155,127,48,243,234,61,235,244,100,211,212,9,1,16,46,99,111,111,107,105,101,83,116,97,116,101,109,101,110,116,2,1,178,215,136,169,9,1,16,46,99,111,111,107,105,101,95,95,119,114,97,112,112,101,114,2,1,74,206,139,24,9,1,14,46,99,111,111,107,105,101,95,97,99,99,101,112,116,2,2,29,250,172,160,178,215,136,169,9,1,14,46,99,111,111,107,105,101,95,98,97,110,110,101,114,2,1,91,38,181,6,9,1,11,46,99,111,111,107,105,101,95,98,97,114,2,1,53,183,227,226,9,1,35,46,99,111,111,107,105,101,95,99,111,110,115,101,110,116,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,1,175,118,48,29,9,1,17,46,99,111,111,107,105,101,95,99,111,110,116,97,105,110,101,114,2,1,23,70,109,85,9,1,15,46,99,111,111,107,105,101,95,109,101,115,115,97,103,101,2,1,23,70,109,85,9,1,14,46,99,111,111,107,105,101,95,112,111,108,105,99,121,2,1,253,191,149,8,9,1,13,46,99,111,111,107,105,101,95,112,111,112,117,112,2,1,247,167,87,96,9,1,12,46,99,111,111,107,105,101,97,108,101,114,116,2,2,105,237,90,75,170,11,132,5,9,1,23,46,99,111,111,107,105,101,98,97,110,110,101,114,58,110,111,116,40,98,111,100,121,41,2,1,197,18,244,20,9,1,20,46,99,111,111,107,105,101,98,97,114,45,99,111,110,116,97,105,110,101,114,2,1,168,107,84,86,9,1,10,46,99,111,111,107,105,101,98,111,120,2,1,16,250,104,175,9,1,22,46,99,111,111,107,105,101,99,111,110,115,101,110,116,45,119,114,97,112,112,101,114,2,1,91,215,151,113,9,1,16,46,99,111,111,107,105,101,99,111,110,116,97,105,110,101,114,2,1,114,177,171,129,9,1,13,46,99,111,111,107,105,101,100,105,97,108,111,103,2,1,92,81,18,11,9,1,31,46,99,111,111,107,105,101,108,97,119,45,115,101,116,99,111,111,107,105,101,112,111,108,105,99,121,45,102,111,114,109,2,18,4,75,112,30,33,48,123,83,36,52,19,115,50,238,109,120,59,118,245,39,64,13,37,95,70,244,190,141,78,9,231,2,98,124,62,123,104,142,217,29,109,243,152,200,110,117,127,149,151,73,155,160,186,224,174,88,212,49,90,192,228,125,92,253,229,128,174,152,245,40,89,243,9,1,14,46,99,111,111,107,105,101,109,101,115,115,97,103,101,2,1,20,231,126,210,9,1,11,46,99,111,111,107,105,101,110,111,116,101,2,1,233,75,17,225,9,1,15,46,99,111,111,107,105,101,115,45,97,99,99,101,112,116,2,35,5,46,68,32,7,203,194,187,10,23,207,129,13,156,88,227,13,178,101,77,14,114,194,247,20,90,30,53,20,176,192,7,53,42,113,6,58,186,201,144,74,223,144,93,75,86,76,209,75,145,56,114,140,243,50,202,155,233,240,163,156,224,226,146,158,214,81,49,164,205,80,26,165,60,184,76,165,74,22,144,165,81,116,56,173,98,216,74,192,138,156,11,192,138,156,17,192,138,156,181,200,84,123,53,210,32,33,157,213,230,49,17,227,7,31,240,227,13,26,21,228,194,90,137,228,234,34,237,232,62,209,209,252,211,222,44,254,1,228,5,9,1,22,46,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,45,112,111,112,117,112,2,1,2,173,97,134,9,1,18,46,99,111,111,107,105,101,115,45,99,111,110,116,97,105,110,101,114,2,3,91,50,112,165,158,241,151,204,224,102,169,245,9,1,16,46,99,111,111,107,105,101,115,45,99,111,110,116,101,110,116,2,1,177,222,191,48,9,1,13,46,99,111,111,107,105,101,115,45,105,110,102,111,2,1,161,101,218,47,9,1,33,46,99,111,111,107,105,101,115,45,105,110,102,111,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,2,1,168,112,89,8,9,1,16,46,99,111,111,107,105,101,115,45,109,101,115,115,97,103,101,2,1,218,52,180,90,9,1,34,46,99,111,111,107,105,101,115,45,109,111,100,97,108,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,1,43,86,91,91,9,1,26,46,99,111,111,107,105,101,115,45,109,111,100,97,108,95,95,98,97,99,107,103,114,111,117,110,100,2,1,43,86,91,91,9,1,26,46,99,111,111,107,105,101,115,45,110,111,116,45,115,101,116,58,110,111,116,40,98,111,100,121,41,2,2,203,35,175,40,248,30,48,96,9,1,15,46,99,111,111,107,105,101,115,45,112,111,108,105,99,121,2,1,38,157,108,100,9,1,15,46,99,111,111,107,105,101,115,45,112,111,112,45,117,112,2,1,190,148,85,52,9,1,14,46,99,111,111,107,105,101,115,45,112,111,112,117,112,2,1,128,186,252,227,9,1,16,46,99,111,111,107,105,101,115,45,118,105,115,105,98,108,101,2,1,254,191,178,0,9,1,13,46,99,111,111,107,105,101,115,45,119,114,97,112,2,1,77,122,187,42,9,1,15,46,99,111,111,107,105,101,115,46,97,99,116,105,118,101,2,1,193,219,120,26,9,1,13,46,99,111,111,107,105,101,115,77,111,100,97,108,2,1,87,33,1,16,9,1,14,46,99,111,111,107,105,101,115,95,95,105,110,102,111,2,1,112,80,7,79,9,1,21,46,99,111,111,107,105,101,115,95,99,111,110,115,101,110,116,45,115,104,111,119,2,1,142,48,162,224,9,1,18,46,99,111,111,107,105,101,115,95,99,111,110,116,97,105,110,101,114,2,1,196,80,240,190,9,1,14,46,99,111,111,107,105,101,115,95,112,111,112,117,112,2,1,185,10,100,128,9,1,11,46,99,111,111,107,105,101,116,101,120,116,2,2,100,202,82,194,198,215,24,199,9,1,19,46,99,111,111,107,105,101,118,97,114,110,105,110,103,45,119,114,97,112,2,1,240,53,210,228,9,1,34,46,99,111,111,107,105,101,119,97,114,110,105,110,103,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,4,18,208,165,141,214,13,81,231,223,56,47,108,240,53,210,228,9,1,11,46,99,111,111,107,105,101,119,114,97,112,2,1,58,92,30,33,9,1,14,46,99,117,115,116,111,109,95,99,111,111,107,105,101,2,1,175,97,49,180,9,1,21,46,100,105,100,111,109,105,45,110,111,116,105,99,101,45,98,97,110,110,101,114,2,8,34,212,111,207,62,11,56,11,132,134,81,244,156,200,86,132,163,3,128,167,194,197,253,186,228,230,119,104,248,217,1,155,9,1,21,46,100,105,100,111,109,105,45,115,99,114,101,101,110,45,120,108,97,114,103,101,2,4,12,45,184,210,64,171,124,94,70,98,191,34,200,81,240,37,9,1,13,46,100,115,103,118,111,45,98,97,110,110,101,114,2,1,55,181,65,101,9,1,24,46,101,99,45,103,116,109,45,99,111,111,107,105,101,45,100,105,114,101,99,116,105,118,101,2,3,45,74,243,242,76,76,95,47,157,9,153,255,9,1,16,46,101,110,115,78,111,116,105,102,121,66,97,110,110,101,114,2,1,213,9,216,122,9,1,32,46,101,117,45,99,111,111,107,105,101,45,99,111,109,112,108,105,97,110,99,101,45,112,111,112,117,112,45,111,112,101,110,2,3,97,202,195,213,119,73,196,216,140,42,168,83,9,1,12,46,103,100,112,114,45,98,97,110,110,101,114,2,5,6,156,132,248,144,68,172,120,176,103,209,241,227,46,141,188,251,250,101,139,9,1,20,46,103,100,112,114,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,5,6,156,132,248,144,68,172,120,176,103,209,241,227,46,141,188,251,250,101,139,9,1,13,46,103,100,112,114,45,99,111,110,115,101,110,116,2,1,162,234,41,84,9,1,23,46,103,100,112,114,45,99,111,110,115,101,110,116,45,99,111,110,116,97,105,110,101,114,2,1,162,234,41,84,9,1,18,46,103,100,112,114,45,99,111,110,115,101,110,116,45,116,97,98,115,2,1,36,114,109,170,9,1,21,46,103,100,112,114,45,99,111,110,115,101,110,116,45,116,97,98,115,45,118,50,2,1,36,114,109,170,9,1,13,46,103,100,112,114,45,99,111,110,116,101,110,116,2,2,55,165,75,104,206,92,173,22,9,1,13,46,103,100,112,114,45,99,111,111,107,105,101,115,2,1,87,14,87,217,9,1,12,46,103,100,112,114,45,100,105,97,108,111,103,2,1,171,255,135,184,9,1,12,46,103,100,112,114,45,102,111,111,116,101,114,2,1,107,250,82,57,9,1,12,46,103,100,112,114,45,110,111,116,105,99,101,2,1,185,161,145,149,9,1,13,46,103,100,112,114,45,111,118,101,114,108,97,121,2,6,6,156,132,248,144,68,172,120,176,103,209,241,206,92,173,22,227,46,141,188,251,250,101,139,9,1,11,46,103,100,112,114,45,112,111,112,117,112,2,2,224,121,204,231,239,184,141,202,9,1,12,46,103,100,112,114,45,112,114,111,109,112,116,2,1,126,1,117,0,9,1,13,46,103,100,112,114,45,119,97,114,110,105,110,103,2,1,129,159,82,192,9,1,23,46,103,100,112,114,77,111,100,97,108,95,95,112,108,97,99,101,104,111,108,100,101,114,2,1,36,114,109,170,9,1,11,46,103,100,112,114,78,111,116,105,99,101,2,1,55,165,75,104,9,1,13,46,103,100,112,114,95,119,114,97,112,112,101,114,2,1,129,40,71,169,9,1,11,46,105,110,102,111,99,111,111,107,105,101,2,1,43,234,32,59,9,1,10,46,106,115,45,99,111,111,107,105,101,2,2,141,214,232,216,239,108,47,57,9,1,16,46,106,115,45,99,111,111,107,105,101,45,97,108,101,114,116,2,1,111,65,225,113,9,1,17,46,106,115,45,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,34,92,159,74,9,1,14,46,106,115,45,99,111,111,107,105,101,45,98,97,114,2,1,202,40,74,48,9,1,18,46,106,115,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,1,160,53,149,1,9,1,20,46,106,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,1,60,4,24,71,9,1,40,46,106,115,45,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,58,110,111,116,40,104,116,109,108,41,58,110,111,116,40,98,111,100,121,41,2,2,66,56,130,84,115,195,0,57,9,1,16,46,106,115,45,99,111,111,107,105,101,45,109,111,100,97,108,2,1,230,105,202,238,9,1,17,46,106,115,45,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,186,158,237,65,9,1,19,46,106,115,45,99,111,111,107,105,101,115,45,99,111,110,115,101,110,116,2,1,53,131,190,195,9,1,19,46,106,115,45,115,101,116,99,111,111,107,105,101,112,111,108,105,99,121,2,18,4,75,112,30,33,48,123,83,36,52,19,115,50,238,109,120,59,118,245,39,64,13,37,95,70,244,190,141,78,9,231,2,98,124,62,123,104,142,217,29,109,243,152,200,110,117,127,149,151,73,155,160,186,224,174,88,212,49,90,192,228,125,92,253,229,128,174,152,245,40,89,243,9,1,20,46,108,103,99,111,111,107,105,101,115,108,97,119,95,98,97,110,110,101,114,2,1,190,223,149,46,9,1,16,46,109,45,99,111,111,107,105,101,45,110,111,116,105,99,101,2,1,87,36,125,51,9,1,16,46,109,45,99,111,111,107,105,101,99,111,110,116,114,111,108,2,1,247,123,128,40,9,1,14,46,109,111,100,97,108,45,99,111,111,99,107,105,101,2,1,118,27,7,221,9,1,24,46,109,111,111,118,101,45,103,100,112,114,45,97,108,105,103,110,45,99,101,110,116,101,114,2,1,232,117,110,85,9,1,23,46,109,111,111,118,101,45,103,100,112,114,45,100,97,114,107,45,115,99,104,101,109,101,2,1,232,117,110,85,9,1,14,46,110,111,116,105,99,101,45,99,111,111,107,105,101,2,1,27,158,76,222,9,1,12,46,111,45,99,111,111,107,105,101,108,97,119,2,18,4,75,112,30,33,48,123,83,36,52,19,115,50,238,109,120,59,118,245,39,64,13,37,95,70,244,190,141,78,9,231,2,98,124,62,123,104,142,217,29,109,243,152,200,110,117,127,149,151,73,155,160,186,224,174,88,212,49,90,192,228,125,92,253,229,128,174,152,245,40,89,243,9,1,24,46,111,110,101,116,114,117,115,116,45,112,99,45,100,97,114,107,45,102,105,108,116,101,114,2,4,18,109,45,203,19,131,170,60,77,85,102,148,227,78,26,45,9,1,26,46,111,112,116,97,110,111,110,45,97,108,101,114,116,45,98,111,120,45,119,114,97,112,112,101,114,2,1,164,58,96,50,9,1,22,46,111,112,116,97,110,111,110,45,115,104,111,119,45,115,101,116,116,105,110,103,115,2,18,3,51,108,160,12,132,197,192,21,113,185,168,30,252,193,249,36,241,182,225,89,163,150,83,89,215,13,94,110,100,245,110,113,245,68,230,142,246,60,229,154,202,209,95,154,241,61,25,191,179,94,89,213,174,52,151,217,65,25,138,234,150,130,38,235,255,170,119,250,240,119,58,9,1,21,46,111,116,45,115,100,107,45,115,104,111,119,45,115,101,116,116,105,110,103,115,2,3,55,69,194,235,101,44,44,128,103,79,134,65,9,1,29,46,112,97,103,101,45,119,114,97,112,45,45,99,111,111,107,105,101,45,112,101,114,109,105,115,115,105,111,110,2,3,42,229,113,227,81,246,163,0,138,203,72,117,9,1,17,46,112,101,97,95,99,111,111,107,95,119,114,97,112,112,101,114,2,1,86,120,31,0,9,1,11,46,112,111,108,105,99,121,45,98,111,120,2,2,35,71,255,125,88,162,207,244,9,1,11,46,112,111,112,117,112,45,103,100,112,114,2,1,66,223,145,120,9,1,14,46,112,114,105,118,97,99,121,45,97,108,101,114,116,2,1,151,81,216,124,9,1,23,46,112,114,105,118,97,99,121,45,112,111,108,105,99,121,45,99,111,110,115,101,110,116,2,1,232,152,7,73,9,1,11,46,112,114,105,118,97,99,121,66,97,114,2,128,0,0,0,203,0,152,39,247,2,159,116,52,2,189,60,132,2,241,219,250,3,72,216,139,3,154,144,183,3,180,49,63,5,197,134,228,6,166,164,156,6,198,100,184,8,118,178,49,8,194,187,164,11,57,2,106,11,97,113,85,12,18,58,115,13,185,241,147,15,171,145,27,15,250,36,121,17,223,204,10,18,29,5,5,19,33,112,130,22,169,34,223,24,126,113,57,24,237,153,156,25,158,71,78,26,95,191,185,27,217,232,205,28,19,19,53,29,60,165,77,31,95,52,221,36,12,127,229,36,229,81,100,37,159,115,172,41,63,208,69,42,82,177,249,43,243,158,255,44,90,155,93,45,9,151,218,46,242,180,11,48,218,67,113,50,205,52,41,52,114,183,191,52,135,120,15,52,228,93,12,53,7,147,195,54,31,68,245,54,254,42,94,55,211,183,17,56,60,70,171,57,225,102,6,59,93,198,144,61,236,109,243,62,103,215,201,63,34,96,149,63,81,71,251,64,206,183,187,70,185,93,217,70,207,139,111,72,103,87,85,73,60,247,185,75,56,137,126,76,254,51,61,79,51,155,202,79,200,60,182,84,187,159,151,84,198,170,46,85,85,109,156,86,18,88,41,86,114,242,155,86,149,83,213,86,244,66,182,87,205,250,216,90,146,247,39,92,178,37,127,94,185,148,62,95,64,85,24,95,144,136,26,98,50,254,112,100,16,26,123,101,171,122,190,102,27,154,48,103,204,253,8,104,35,177,156,106,139,39,127,107,70,0,120,107,236,201,47,108,108,228,227,110,138,208,79,110,179,111,50,111,153,56,85,111,253,200,208,113,6,255,158,116,191,201,230,117,9,111,0,117,228,67,167,122,47,93,232,122,242,83,243,125,101,9,18,126,211,168,103,128,139,168,23,128,249,36,32,130,50,141,218,131,191,67,217,132,216,130,101,133,224,147,65,134,44,127,227,135,28,128,172,138,127,164,74,139,198,124,194,140,211,7,151,142,170,31,40,144,75,255,132,145,44,202,49,145,149,122,102,146,61,0,148,147,181,229,71,149,239,196,191,151,156,81,245,152,1,26,100,152,13,220,66,152,133,34,159,155,167,164,80,158,82,140,165,160,105,165,102,160,110,65,155,160,212,16,58,164,73,54,12,165,80,251,149,167,85,154,12,167,108,48,233,169,228,100,85,172,36,156,208,173,29,112,254,174,68,148,157,174,147,36,59,183,73,70,89,183,120,108,88,185,122,2,200,186,121,136,219,187,52,30,92,189,144,86,136,190,150,46,221,191,14,137,67,191,104,165,168,192,74,207,224,192,222,35,204,193,25,57,108,194,251,135,20,198,28,107,166,198,55,139,207,198,210,140,2,199,133,138,74,202,35,25,140,202,171,121,137,202,194,127,152,203,125,213,20,203,176,5,40,204,19,128,230,205,182,114,214,206,50,176,49,208,24,100,61,208,231,38,163,209,44,200,27,210,38,56,28,210,50,117,70,210,228,80,31,210,244,62,121,211,117,238,42,214,129,87,123,217,14,27,241,217,108,247,51,218,225,22,223,219,232,209,252,220,194,94,202,221,116,39,155,222,226,22,18,225,190,167,161,226,66,10,81,226,111,5,208,228,64,109,34,229,74,154,114,230,140,118,22,231,219,154,166,232,223,192,206,234,18,225,241,235,20,89,18,235,129,142,135,236,254,53,33,238,62,24,53,239,143,74,5,240,169,237,154,241,69,159,125,241,161,12,171,242,126,172,173,243,18,135,102,243,73,157,46,244,44,183,50,247,169,124,221,249,138,233,66,250,150,60,136,251,156,20,221,252,210,137,229,255,183,56,138,9,1,27,46,112,114,105,118,97,99,121,95,112,111,108,105,99,121,95,109,101,115,115,97,103,101,95,98,111,120,2,1,217,29,77,150,9,1,15,46,112,114,105,118,97,99,121,95,112,114,111,109,112,116,2,2,63,178,143,207,192,127,8,55,9,1,12,46,112,114,105,118,97,99,121,104,105,110,116,2,1,34,92,159,74,9,1,21,46,112,119,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,118,50,2,2,165,193,121,59,244,98,200,95,9,1,29,46,112,119,100,45,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,99,117,115,116,111,109,105,122,101,2,1,183,211,34,136,9,1,15,46,112,119,115,95,99,111,111,107,105,101,95,98,97,114,2,1,43,234,32,59,9,1,12,46,114,111,100,111,45,97,99,99,101,112,116,2,1,96,233,91,133,9,1,11,46,114,111,100,111,45,109,111,100,97,108,2,1,126,229,193,252,9,1,11,46,114,111,100,111,45,112,111,112,117,112,2,1,57,46,255,147,9,1,16,46,114,111,100,111,95,95,99,111,110,116,97,105,110,101,114,2,1,96,233,91,133,9,1,18,46,116,99,45,112,114,105,118,97,99,121,45,98,97,110,110,101,114,2,4,139,160,60,128,182,132,160,154,217,174,62,117,247,148,229,130,9,1,19,46,116,99,45,112,114,105,118,97,99,121,45,111,118,101,114,108,97,121,2,2,217,174,62,117,247,148,229,130,9,1,19,46,116,114,117,115,116,101,95,98,111,120,95,111,118,101,114,108,97,121,2,1,204,155,190,151,9,1,35,46,116,114,117,115,116,101,95,111,118,101,114,108,97,121,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,1,204,155,190,151,9,1,16,46,119,101,108,99,111,109,101,45,112,114,105,118,97,99,121,2,1,27,166,193,94,9,1,16,46,120,45,99,111,111,107,105,101,115,45,109,111,100,97,108,2,1,43,12,102,126,1,1,28,91,97,114,105,97,45,108,97,98,101,108,61,34,99,111,111,107,105,101,99,111,110,115,101,110,116,34,93,2,3,77,221,231,65,110,155,36,8,117,44,208,94,1,1,25,91,100,97,116,97,45,99,121,61,34,99,111,111,107,105,101,45,98,97,110,110,101,114,34,93,2,1,217,181,109,124,33,1,56,91,104,114,101,102,61,34,104,116,116,112,115,58,47,47,100,101,118,111,119,108,46,105,111,47,119,111,114,100,112,114,101,115,115,45,114,101,97,108,45,99,111,111,107,105,101,45,98,97,110,110,101,114,47,34,93,2,1,69,229,13,216,1,1,11,97,109,112,45,99,111,110,115,101,110,116,2,2,98,206,17,137,237,246,4,16,1,1,18,97,112,112,45,99,111,111,107,105,101,45,119,97,114,110,105,110,103,2,1,127,40,217,85,1,1,11,97,112,112,45,99,111,111,107,105,101,115,2,1,197,215,82,62,1,1,24,100,105,118,35,95,95,116,101,97,108,105,117,109,71,68,80,82,101,99,77,111,100,97,108,2,4,37,123,41,93,47,105,88,193,63,178,143,207,192,127,8,55,1,1,21,100,105,118,35,99,109,112,45,97,112,112,45,99,111,110,116,97,105,110,101,114,2,1,175,60,74,16,1,1,16,100,105,118,35,99,111,111,107,105,101,45,112,111,112,117,112,2,1,175,190,33,32,1,1,22,100,105,118,35,99,111,111,107,105,101,67,111,110,115,101,110,116,77,111,100,97,108,2,1,199,74,182,199,1,1,18,100,105,118,35,112,114,105,118,97,99,121,95,112,111,108,105,99,121,2,1,8,178,43,83,1,1,13,100,105,118,46,99,45,99,111,111,107,105,101,115,2,1,66,56,130,84,1,1,13,100,105,118,46,99,99,45,114,101,118,111,107,101,2,11,5,140,166,92,6,118,53,253,16,168,0,83,33,29,47,189,51,162,100,8,80,22,210,232,96,157,132,60,186,240,10,202,230,226,63,178,246,188,44,117,252,24,219,229,1,1,16,100,105,118,46,99,99,112,97,45,109,101,115,115,97,103,101,2,1,203,218,107,60,1,1,8,100,105,118,46,99,110,105,108,2,1,222,64,114,226,1,1,16,100,105,118,46,99,111,111,107,105,101,45,97,108,101,114,116,2,2,6,185,232,0,113,248,173,146,1,1,17,100,105,118,46,99,111,111,107,105,101,45,98,97,110,110,101,114,2,52,5,99,109,93,15,68,110,49,19,60,247,203,20,246,141,106,25,238,229,70,29,246,0,5,33,126,3,194,37,183,110,52,47,86,28,26,52,103,46,207,52,218,145,88,53,216,157,63,60,183,118,96,64,91,204,243,67,249,64,84,68,7,197,68,69,121,254,87,71,157,110,148,72,78,113,55,87,67,206,250,88,197,21,130,96,29,198,174,104,219,146,180,105,204,43,150,106,57,192,20,116,7,132,112,117,81,113,74,118,200,173,130,126,250,93,198,142,67,136,174,144,45,147,217,145,73,13,51,146,23,23,53,147,170,59,207,151,37,147,146,157,215,128,79,159,148,144,62,159,151,225,254,182,1,112,164,189,93,49,238,194,246,189,236,197,58,129,95,198,122,167,11,206,87,17,84,207,88,121,39,211,131,183,159,213,213,31,13,229,151,243,105,234,112,210,164,237,155,127,48,243,234,61,235,244,100,211,212,1,1,25,100,105,118,46,99,111,111,107,105,101,45,98,97,110,110,101,114,45,119,114,97,112,112,101,114,2,1,194,246,189,236,1,1,14,100,105,118,46,99,111,111,107,105,101,45,98,97,114,2,7,7,85,101,58,108,91,174,127,114,117,217,66,150,227,143,134,202,40,74,48,234,245,215,59,241,225,79,83,1,1,18,100,105,118,46,99,111,111,107,105,101,45,99,111,110,102,105,114,109,2,1,112,152,141,167,1,1,18,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,2,11,12,131,240,92,78,193,174,14,89,202,83,172,138,175,39,188,153,46,38,42,154,243,227,174,185,161,145,149,199,199,252,5,215,60,149,31,250,154,49,108,253,97,77,202,1,1,25,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,98,97,110,110,101,114,2,1,235,231,21,125,1,1,24,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,109,111,100,97,108,2,1,254,31,120,145,1,1,24,100,105,118,46,99,111,111,107,105,101,45,99,111,110,115,101,110,116,45,112,111,112,117,112,2,3,39,243,38,149,112,249,23,189,205,90,180,50,1,1,20,100,105,118,46,99,111,111,107,105,101,45,99,111,110,116,97,105,110,101,114,2,2,23,70,109,85,109,234,120,8,1,1,18,100,105,118,46,99,111,111,107,105,101,45,99,111,110,116,101,110,116,2,3,6,185,232,0,58,92,30,33,71,76,29,1,1,1,21,100,105,118,46,99,111,111,107,105,101,45,100,105,115,99,108,97,105,109,101,114,2,1,20,233,23,212,1,1,16,100,105,118,46,99,111,111,107,105,101,45,108,97,121,101,114,2,1,150,113,42,126,1,1,17,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,99,101,2,37,4,211,70,19,23,39,63,60,26,225,200,191,36,44,150,204,39,243,38,149,40,160,57,139,49,214,49,117,51,239,231,92,52,22,9,246,57,34,126,39,63,191,229,4,76,242,194,162,77,65,140,87,81,221,227,125,94,89,105,107,101,63,62,102,112,249,23,189,122,171,1,91,130,25,28,205,133,161,250,65,136,32,52,38,140,220,50,113,148,188,83,207,152,189,55,209,156,219,214,38,158,34,82,4,188,230,247,171,189,13,198,197,199,154,133,188,205,90,180,50,211,32,26,173,213,140,152,2,219,234,26,122,220,244,135,81,236,44,189,59,241,147,125,138,251,11,116,119,1,1,23,100,105,118,46,99,111,111,107,105,101,45,110,111,116,105,102,105,99,97,116,105,111,110,2,2,40,85,144,166,153,62,159,75,1,1,18,100,105,118,46,99,111,111,107,105,101,45,111,118,101,114,108,97,121,2,1,81,246,163,0,1,1,17,100,105,118,46,99,111,111,107,105,101,45,112,111,108,105,99,121,2,1,97,237,16,89,1,1,16,100,105,118,46,99,111,111,107,105,101,45,112,111,112,117,112,2,1,37,76,59,241,1,1,18,100,105,118,46,99,111,111,107,105,101,45,119,114,97,112,112,101,114,2,17,7,152,219,156,7,165,230,96,28,243,217,195,33,61,167,255,57,14,69,46,64,140,210,9,71,76,29,1,73,97,37,29,96,226,223,235,114,236,17,98,126,18,118,252,153,165,51,39,157,161,252,114,171,27,192,149,179,29,160,27,215,75,45,217,233,21,216,191,1,1,16,100,105,118,46,99,111,111,107,105,101,72,111,108,100,101,114,2,1,1,19,26,55,1,1,16,100,105,118,46,99,111,111,107,105,101,95,112,111,112,117,112,2,1,247,167,87,96,1,1,13,100,105,118,46,99,111,111,107,105,101,98,97,114,2,4,70,203,74,200,124,119,192,120,158,98,191,207,198,200,83,118,1,1,18,100,105,118,46,99,111,111,107,105,101,115,45,98,97,110,110,101,114,2,1,112,154,57,50,1,1,27,100,105,118,46,99,111,111,107,105,101,115,45,109,111,100,97,108,45,99,111,110,116,97,105,110,101,114,2,2,43,12,102,126,154,35,129,197,1,1,19,100,105,118,46,99,111,111,107,105,101,115,45,118,105,115,105,98,108,101,2,1,63,179,180,126,1,1,11,100,105,118,46,101,117,112,111,112,117,112,2,2,81,77,66,77,217,134,23,55,1,1,17,100,105,118,46,106,115,45,100,105,115,99,108,97,105,109,101,114,2,1,129,88,233,166,1,1,17,100,105,118,46,112,114,105,118,97,99,121,45,109,111,100,97,108,2,1,20,233,105,97,1,1,18,100,105,118,46,112,114,105,118,97,99,121,95,112,114,111,109,112,116,2,2,63,178,143,207,192,127,8,55,1,1,12,100,105,118,46,118,45,99,111,111,107,105,101,2,1,125,7,182,40,1,1,15,100,105,118,46,119,105,116,104,45,99,111,111,107,105,101,2,2,82,241,129,184,126,51,4,147,1,1,29,100,105,118,91,100,97,116,97,45,103,100,112,114,45,99,111,110,115,101,110,116,45,112,114,111,109,112,116,93,2,1,148,193,37,43,1,1,39,100,105,118,91,100,97,116,97,45,116,101,115,116,105,100,61,34,99,111,111,107,105,101,45,112,111,108,105,99,121,45,98,97,110,110,101,114,34,93,2,2,18,67,125,147,25,145,115,140,1,1,21,115,101,99,116,105,111,110,46,99,111,111,107,105,101,45,98,97,110,110,101,114,2,1,78,143,33,245,1,1,12,116,104,111,114,45,99,111,111,107,105,101,115,2,1,126,5,249,235,17,1,17,35,99,111,110,115,101,110,116,95,98,108,97,99,107,98,97,114,2,9,38,157,140,187,38,157,146,146,83,129,85,179,100,45,198,223,137,65,7,137,142,7,163,254,171,135,82,131,172,191,42,185,185,6,234,108,17,1,21,35,116,114,117,115,116,101,45,99,111,110,115,101,110,116,45,116,114,97,99,107,2,9,38,157,140,187,38,157,146,146,83,129,85,179,100,45,198,223,137,65,7,137,142,7,163,254,171,135,82,131,172,191,42,185,185,6,234,108,9,1,19,46,116,114,117,115,116,101,95,98,111,120,95,111,118,101,114,108,97,121,2,9,38,157,140,187,38,157,146,146,83,129,85,179,100,45,198,223,137,65,7,137,142,7,163,254,171,135,82,131,172,191,42,185,185,6,234,108,9,1,35,46,116,114,117,115,116,101,95,111,118,101,114,108,97,121,58,110,111,116,40,98,111,100,121,41,58,110,111,116,40,104,116,109,108,41,2,9,38,157,140,187,38,157,146,146,83,129,85,179,100,45,198,223,137,65,7,137,142,7,163,254,171,135,82,131,172,191,42,185,185,6,234,108,1,1,20,108,105,91,100,97,116,97,45,108,97,121,111,117,116,61,34,97,100,34,93,2,1,9,161,255,112,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,37,126,229]);var Xi=[{name:"192.com",detectCmp:[{exists:".ont-cookies"}],detectPopup:[{visible:".ont-cookies"}],optIn:[{click:".ont-btn-main.ont-cookies-btn.js-ont-btn-ok2"}],optOut:[{click:".ont-cookes-btn-manage"},{click:".ont-btn-main.ont-cookies-btn.js-ont-btn-choose"}],test:[{eval:"EVAL_ONENINETWO_0"}]},{name:"1password-com",cosmetic:!0,prehideSelectors:['footer #footer-root [aria-label="Cookie Consent"]'],detectCmp:[{exists:'footer #footer-root [aria-label="Cookie Consent"]'}],detectPopup:[{visible:'footer #footer-root [aria-label="Cookie Consent"]'}],optIn:[{click:'footer #footer-root [aria-label="Cookie Consent"] button'}],optOut:[{hide:'footer #footer-root [aria-label="Cookie Consent"]'}]},{name:"aa",vendorUrl:"https://aa.com",prehideSelectors:[],cosmetic:!0,detectCmp:[{exists:"#aa_optoutmulti-Modal,#cookieBannerMessage"}],detectPopup:[{visible:"#aa_optoutmulti-Modal,#cookieBannerMessage"}],optIn:[{hide:"#aa_optoutmulti-Modal,#cookieBannerMessage"},{waitForThenClick:"#aa_optoutmulti_checkBox"},{waitForThenClick:"#aa_optoutmulti-Modal button.optoutmulti_button"}],optOut:[{hide:"#aa_optoutmulti-Modal,#cookieBannerMessage"}]},{name:"abc",vendorUrl:"https://abc.net.au",runContext:{urlPattern:"^https://([a-z0-9-]+\\.)?abc\\.net\\.au/"},prehideSelectors:[],detectCmp:[{exists:"[data-component=CookieBanner]"}],detectPopup:[{visible:"[data-component=CookieBanner] [data-component=CookieBanner_AcceptAll]"}],optIn:[{waitForThenClick:"[data-component=CookieBanner] [data-component=CookieBanner_AcceptAll]"}],optOut:[{waitForThenClick:"[data-component=CookieBanner] [data-component=CookieBanner_AcceptABCRequired]"}],test:[{eval:"EVAL_ABC_TEST"}]},{name:"abconcerts.be",vendorUrl:"https://unknown",intermediate:!1,prehideSelectors:["dialog.cookie-consent"],detectCmp:[{exists:"dialog.cookie-consent form.cookie-consent__form"}],detectPopup:[{visible:"dialog.cookie-consent form.cookie-consent__form"}],optIn:[{waitForThenClick:"dialog.cookie-consent form.cookie-consent__form button[value=yes]"}],optOut:[{if:{exists:"dialog.cookie-consent form.cookie-consent__form button[value=no]"},then:[{click:"dialog.cookie-consent form.cookie-consent__form button[value=no]"}],else:[{click:"dialog.cookie-consent form.cookie-consent__form button.cookie-consent__options-toggle"},{waitForThenClick:'dialog.cookie-consent form.cookie-consent__form button[value="save_options"]'}]}]},{name:"acris",prehideSelectors:["div.acris-cookie-consent"],detectCmp:[{exists:"[data-acris-cookie-consent]"}],detectPopup:[{visible:".acris-cookie-consent.is--modal"}],optIn:[{waitForVisible:"#ccConsentAcceptAllButton",check:"any"},{wait:500},{waitForThenClick:"#ccConsentAcceptAllButton"}],optOut:[{waitForVisible:"#ccAcceptOnlyFunctional",check:"any"},{wait:500},{waitForThenClick:"#ccAcceptOnlyFunctional"}]},{name:"activobank.pt",runContext:{urlPattern:"^https://(www\\.)?activobank\\.pt"},prehideSelectors:["aside#cookies,.overlay-cookies"],detectCmp:[{exists:"#cookies .cookies-btn"}],detectPopup:[{visible:"#cookies #submitCookies"}],optIn:[{waitForThenClick:"#cookies #submitCookies"}],optOut:[{waitForThenClick:"#cookies #rejectCookies"}]},{name:"Adroll",prehideSelectors:["#adroll_consent_container"],detectCmp:[{exists:"#adroll_consent_container"}],detectPopup:[{visible:"#adroll_consent_container"}],optIn:[{waitForThenClick:"#adroll_consent_accept"}],optOut:[{waitForThenClick:"#adroll_consent_reject"}],test:[{eval:"EVAL_ADROLL_0"}]},{name:"affinity.serif.com",detectCmp:[{exists:".c-cookie-banner button[data-qa='allow-all-cookies']"}],detectPopup:[{visible:".c-cookie-banner"}],optIn:[{click:'button[data-qa="allow-all-cookies"]'}],optOut:[{click:'button[data-qa="manage-cookies"]'},{waitFor:'.c-cookie-banner ~ [role="dialog"]'},{waitForThenClick:'.c-cookie-banner ~ [role="dialog"] input[type="checkbox"][value="true"]',all:!0},{click:'.c-cookie-banner ~ [role="dialog"] .c-modal__action button'}],test:[{wait:500},{eval:"EVAL_AFFINITY_SERIF_COM_0"}]},{name:"agolde.com",cosmetic:!0,prehideSelectors:["#modal-1 div[data-micromodal-close]"],detectCmp:[{exists:"#modal-1 div[aria-labelledby=modal-1-title]"}],detectPopup:[{exists:"#modal-1 div[data-micromodal-close]"}],optIn:[{click:'button[aria-label="Close modal"]'}],optOut:[{hide:"#modal-1 div[data-micromodal-close]"}]},{name:"aliexpress",vendorUrl:"https://aliexpress.com/",runContext:{urlPattern:"^https://.*\\.aliexpress\\.com/"},prehideSelectors:["#gdpr-new-container"],detectCmp:[{exists:"#gdpr-new-container,#voyager-gdpr > div"}],detectPopup:[{visible:"#gdpr-new-container,#voyager-gdpr > div"}],optIn:[{waitForThenClick:"#gdpr-new-container .btn-accept,#voyager-gdpr > div > div > button:nth-child(1)"}],optOut:[{if:{exists:"#voyager-gdpr > div"},then:[{waitForThenClick:"#voyager-gdpr > div > div > button:nth-child(2)"}],else:[{waitForThenClick:"#gdpr-new-container .btn-more"},{waitFor:"#gdpr-new-container .gdpr-dialog-switcher"},{click:"#gdpr-new-container .switcher-on",all:!0,optional:!0},{click:"#gdpr-new-container .btn-save"}]}]},{name:"almacmp",prehideSelectors:["#alma-cmpv2-container"],detectCmp:[{exists:"#alma-cmpv2-container"}],detectPopup:[{visible:"#alma-cmpv2-container #almacmp-modal-layer1"}],optIn:[{waitForThenClick:"#alma-cmpv2-container #almacmp-modal-layer1 #almacmp-modalConfirmBtn"}],optOut:[{waitForThenClick:"#alma-cmpv2-container #almacmp-modal-layer1 #almacmp-modalSettingBtn"},{waitFor:"#alma-cmpv2-container #almacmp-modal-layer2"},{waitForThenClick:"#alma-cmpv2-container #almacmp-modal-layer2 #almacmp-reject-all-layer2"}],test:[{eval:"EVAL_ALMACMP_0"}]},{name:"altium.com",cosmetic:!0,prehideSelectors:[".altium-privacy-bar"],detectCmp:[{exists:".altium-privacy-bar"}],detectPopup:[{exists:".altium-privacy-bar"}],optIn:[{click:"a.altium-privacy-bar__btn"}],optOut:[{hide:".altium-privacy-bar"}]},{name:"amazon.com",prehideSelectors:['span[data-action="sp-cc"][data-sp-cc*="rejectAllAction"]'],detectCmp:[{exists:'span[data-action="sp-cc"][data-sp-cc*="rejectAllAction"]'}],detectPopup:[{visible:'span[data-action="sp-cc"][data-sp-cc*="rejectAllAction"]'}],optIn:[{waitForVisible:"#sp-cc-accept"},{wait:500},{click:"#sp-cc-accept"}],optOut:[{waitForVisible:"#sp-cc-rejectall-link"},{wait:500},{click:"#sp-cc-rejectall-link"}]},{name:"aquasana.com",prehideSelectors:["#consent-tracking"],detectCmp:[{exists:"#consent-tracking"}],detectPopup:[{exists:"#consent-tracking"}],optIn:[{waitForThenClick:"#consent-tracking .affirm.btn"}],optOut:[{if:{exists:"#consent-tracking .decline.btn"},then:[{click:"#consent-tracking .decline.btn"}],else:[{hide:"#consent-tracking"}]}]},{name:"arbeitsagentur",vendorUrl:"https://www.arbeitsagentur.de/",prehideSelectors:[".modal-open bahf-cookie-disclaimer-dpl3"],detectCmp:[{exists:"bahf-cookie-disclaimer-dpl3"}],detectPopup:[{visible:"bahf-cookie-disclaimer-dpl3"}],optIn:[{waitForThenClick:["bahf-cookie-disclaimer-dpl3","bahf-cd-modal-dpl3 .ba-btn-primary"]}],optOut:[{waitForThenClick:["bahf-cookie-disclaimer-dpl3","bahf-cd-modal-dpl3 .ba-btn-contrast"]}],test:[{eval:"EVAL_ARBEITSAGENTUR_TEST"}]},{name:"asus",vendorUrl:"https://www.asus.com/",runContext:{urlPattern:"^https://www\\.asus\\.com/"},prehideSelectors:["#cookie-policy-info,#cookie-policy-info-bg"],detectCmp:[{exists:"#cookie-policy-info"}],detectPopup:[{visible:"#cookie-policy-info"}],optIn:[{waitForThenClick:'#cookie-policy-info [data-agree="Accept Cookies"]'}],optOut:[{if:{exists:"#cookie-policy-info .btn-reject"},then:[{waitForThenClick:"#cookie-policy-info .btn-reject"}],else:[{waitForThenClick:"#cookie-policy-info .btn-setting"},{waitForThenClick:'#cookie-policy-lightbox-wrapper [data-agree="Save Settings"]'}]}]},{name:"athlinks-com",runContext:{urlPattern:"^https://(www\\.)?athlinks\\.com/"},cosmetic:!0,prehideSelectors:["#footer-container ~ div"],detectCmp:[{exists:"#footer-container ~ div"}],detectPopup:[{visible:"#footer-container > div"}],optIn:[{click:"#footer-container ~ div button"}],optOut:[{hide:"#footer-container ~ div"}]},{name:"ausopen.com",cosmetic:!0,detectCmp:[{exists:".gdpr-popup__message"}],detectPopup:[{visible:".gdpr-popup__message"}],optOut:[{hide:".gdpr-popup__message"}],optIn:[{click:".gdpr-popup__message button"}]},{name:"automattic-cmp-optout",prehideSelectors:['form[class*="cookie-banner"][method="post"]'],detectCmp:[{exists:'form[class*="cookie-banner"][method="post"]'}],detectPopup:[{visible:'form[class*="cookie-banner"][method="post"]'}],optIn:[{click:'a[class*="accept-all-button"]'}],optOut:[{click:'form[class*="cookie-banner"] div[class*="simple-options"] a[class*="customize-button"]'},{waitForThenClick:"input[type=checkbox][checked]:not([disabled])",all:!0},{click:'a[class*="accept-selection-button"]'}]},{name:"aws.amazon.com",prehideSelectors:["#awsccc-cb-content","#awsccc-cs-container","#awsccc-cs-modalOverlay","#awsccc-cs-container-inner"],detectCmp:[{exists:"#awsccc-cb-content"}],detectPopup:[{visible:"#awsccc-cb-content"}],optIn:[{click:"button[data-id=awsccc-cb-btn-accept"}],optOut:[{click:"button[data-id=awsccc-cb-btn-customize]"},{waitFor:"input[aria-checked]"},{click:"input[aria-checked=true]",all:!0,optional:!0},{click:"button[data-id=awsccc-cs-btn-save]"}]},{name:"axeptio",prehideSelectors:[".axeptio_widget"],detectCmp:[{exists:".axeptio_widget"}],detectPopup:[{visible:".axeptio_widget"}],optIn:[{waitFor:".axeptio-widget--open"},{click:"button#axeptio_btn_acceptAll"}],optOut:[{waitFor:".axeptio-widget--open"},{click:"button#axeptio_btn_dismiss"}],test:[{eval:"EVAL_AXEPTIO_0"}]},{name:"baden-wuerttemberg.de",prehideSelectors:[".cookie-alert.t-dark"],cosmetic:!0,detectCmp:[{exists:".cookie-alert.t-dark"}],detectPopup:[{visible:".cookie-alert.t-dark"}],optIn:[{click:".cookie-alert__form input:not([disabled]):not([checked])"},{click:".cookie-alert__button button"}],optOut:[{hide:".cookie-alert.t-dark"}]},{name:"bahn-de",vendorUrl:"https://www.bahn.de/",cosmetic:!1,runContext:{main:!0,frame:!1,urlPattern:"^https://(www\\.)?bahn\\.de/"},intermediate:!1,prehideSelectors:[],detectCmp:[{exists:["body > div:first-child","#consent-layer"]}],detectPopup:[{visible:["body > div:first-child","#consent-layer"]}],optIn:[{waitForThenClick:["body > div:first-child","#consent-layer .js-accept-all-cookies"]}],optOut:[{waitForThenClick:["body > div:first-child","#consent-layer .js-accept-essential-cookies"]}],test:[{eval:"EVAL_BAHN_TEST"}]},{name:"bbb.org",runContext:{urlPattern:"^https://www\\.bbb\\.org/"},cosmetic:!0,prehideSelectors:['div[aria-label="use of cookies on bbb.org"]'],detectCmp:[{exists:'div[aria-label="use of cookies on bbb.org"]'}],detectPopup:[{visible:'div[aria-label="use of cookies on bbb.org"]'}],optIn:[{click:'div[aria-label="use of cookies on bbb.org"] button.bds-button-unstyled span.visually-hidden'}],optOut:[{hide:'div[aria-label="use of cookies on bbb.org"]'}]},{name:"bing.com",prehideSelectors:["#bnp_container"],detectCmp:[{exists:"#bnp_cookie_banner"}],detectPopup:[{visible:"#bnp_cookie_banner"}],optIn:[{click:"#bnp_btn_accept"}],optOut:[{click:"#bnp_btn_preference"},{click:"#mcp_savesettings"}],test:[{eval:"EVAL_BING_0"}]},{name:"blocksy",vendorUrl:"https://creativethemes.com/blocksy/docs/extensions/cookies-consent/",cosmetic:!1,runContext:{main:!0,frame:!1},intermediate:!1,prehideSelectors:[".cookie-notification"],detectCmp:[{exists:"#blocksy-ext-cookies-consent-styles-css"}],detectPopup:[{visible:".cookie-notification"}],optIn:[{click:".cookie-notification .ct-cookies-decline-button"}],optOut:[{waitForThenClick:".cookie-notification .ct-cookies-decline-button"}],test:[{eval:"EVAL_BLOCKSY_0"}]},{name:"borlabs",detectCmp:[{exists:"._brlbs-block-content"}],detectPopup:[{visible:"._brlbs-bar-wrap,._brlbs-box-wrap"}],optIn:[{click:"a[data-cookie-accept-all]"}],optOut:[{click:"a[data-cookie-individual]"},{waitForVisible:".cookie-preference"},{click:"input[data-borlabs-cookie-checkbox]:checked",all:!0,optional:!0},{click:"#CookiePrefSave"},{wait:500}],prehideSelectors:["#BorlabsCookieBox"],test:[{eval:"EVAL_BORLABS_0"}]},{name:"bundesregierung.de",prehideSelectors:[".bpa-cookie-banner"],detectCmp:[{exists:".bpa-cookie-banner"}],detectPopup:[{visible:".bpa-cookie-banner .bpa-module-full-hero"}],optIn:[{click:".bpa-accept-all-button"}],optOut:[{wait:500,comment:"click is not immediately recognized"},{waitForThenClick:".bpa-close-button"}],test:[{eval:"EVAL_BUNDESREGIERUNG_DE_0"}]},{name:"burpee.com",cosmetic:!0,prehideSelectors:["#notice-cookie-block"],detectCmp:[{exists:"#notice-cookie-block"}],detectPopup:[{exists:"#html-body #notice-cookie-block"}],optIn:[{click:"#btn-cookie-allow"}],optOut:[{hide:"#html-body #notice-cookie-block, #notice-cookie"}]},{name:"canva.com",prehideSelectors:['div[role="dialog"] a[data-anchor-id="cookie-policy"]'],detectCmp:[{exists:'div[role="dialog"] a[data-anchor-id="cookie-policy"]'}],detectPopup:[{exists:'div[role="dialog"] a[data-anchor-id="cookie-policy"]'}],optIn:[{click:'div[role="dialog"] button:nth-child(1)'}],optOut:[{if:{exists:'div[role="dialog"] button:nth-child(3)'},then:[{click:'div[role="dialog"] button:nth-child(2)'}],else:[{click:'div[role="dialog"] button:nth-child(2)'},{waitFor:'div[role="dialog"] a[data-anchor-id="cookie-policy"]'},{waitFor:'div[role="dialog"] button[role=switch]'},{click:'div[role="dialog"] button:nth-child(2):not([role])'},{click:'div[role="dialog"] div:last-child button:only-child'}]}],test:[{eval:"EVAL_CANVA_0"}]},{name:"canyon.com",runContext:{urlPattern:"^https://www\\.canyon\\.com/"},prehideSelectors:["div.modal.cookiesModal.is-open"],detectCmp:[{exists:"div.modal.cookiesModal.is-open"}],detectPopup:[{visible:"div.modal.cookiesModal.is-open"}],optIn:[{click:'div.cookiesModal__buttonWrapper > button[data-closecause="close-by-submit"]'}],optOut:[{click:'div.cookiesModal__buttonWrapper > button[data-closecause="close-by-manage-cookies"]'},{waitForThenClick:"button#js-manage-data-privacy-save-button"}]},{name:"cc-banner-springer",prehideSelectors:[".cc-banner[data-cc-banner]"],detectCmp:[{exists:".cc-banner[data-cc-banner]"}],detectPopup:[{visible:".cc-banner[data-cc-banner]"}],optIn:[{waitForThenClick:".cc-banner[data-cc-banner] button[data-cc-action=accept]"}],optOut:[{if:{exists:".cc-banner[data-cc-banner] button[data-cc-action=reject]"},then:[{click:".cc-banner[data-cc-banner] button[data-cc-action=reject]"}],else:[{waitForThenClick:".cc-banner[data-cc-banner] button[data-cc-action=preferences]"},{waitFor:".cc-preferences[data-cc-preferences]"},{click:".cc-preferences[data-cc-preferences] input[type=radio][data-cc-action=toggle-category][value=off]",all:!0,optional:!0},{if:{exists:".cc-preferences[data-cc-preferences] button[data-cc-action=reject]"},then:[{click:".cc-preferences[data-cc-preferences] button[data-cc-action=reject]"}],else:[{click:".cc-preferences[data-cc-preferences] button[data-cc-action=save]"}]}]}],test:[{eval:"EVAL_CC_BANNER2_0"}]},{name:"cc_banner",cosmetic:!0,prehideSelectors:[".cc_banner-wrapper"],detectCmp:[{exists:".cc_banner-wrapper"}],detectPopup:[{visible:".cc_banner"}],optIn:[{click:".cc_btn_accept_all"}],optOut:[{hide:".cc_banner-wrapper"}]},{name:"check24-partnerprogramm-de",prehideSelectors:["[data-modal-content]:has([data-toggle-target^='cookie'])"],detectCmp:[{exists:"[data-toggle-target^='cookie']"}],detectPopup:[{visible:"[data-toggle-target^='cookie']",check:"any"}],optIn:[{waitForThenClick:"[data-cookie-accept-all]"}],optOut:[{waitForThenClick:"[data-cookie-dismiss-all]"}]},{name:"ciaopeople.it",prehideSelectors:["#cp-gdpr-choices"],detectCmp:[{exists:"#cp-gdpr-choices"}],detectPopup:[{visible:"#cp-gdpr-choices"}],optIn:[{waitForThenClick:".gdpr-btm__right > button:nth-child(2)"}],optOut:[{waitForThenClick:".gdpr-top-content > button"},{waitFor:".gdpr-top-back"},{waitForThenClick:".gdpr-btm__right > button:nth-child(1)"}],test:[{visible:"#cp-gdpr-choices",check:"none"}]},{vendorUrl:"https://www.civicuk.com/cookie-control/",name:"civic-cookie-control",prehideSelectors:["#ccc-module,#ccc-overlay"],detectCmp:[{exists:"#ccc-module"}],detectPopup:[{visible:"#ccc"},{visible:"#ccc-module"}],optOut:[{click:"#ccc-reject-settings"}],optIn:[{click:"#ccc-recommended-settings"}]},{name:"click.io",prehideSelectors:["#cl-consent"],detectCmp:[{exists:"#cl-consent"}],detectPopup:[{visible:"#cl-consent"}],optIn:[{waitForThenClick:'#cl-consent [data-role="b_agree"]'}],optOut:[{waitFor:'#cl-consent [data-role="b_options"]'},{wait:500},{click:'#cl-consent [data-role="b_options"]'},{waitFor:'.cl-consent-popup.cl-consent-visible [data-role="alloff"]'},{click:'.cl-consent-popup.cl-consent-visible [data-role="alloff"]',all:!0},{click:'[data-role="b_save"]'}],test:[{eval:"EVAL_CLICKIO_0",comment:"TODO: this only checks if we interacted at all"}]},{name:"clinch",intermediate:!1,runContext:{frame:!1,main:!0},prehideSelectors:[".consent-modal[role=dialog]"],detectCmp:[{exists:".consent-modal[role=dialog]"}],detectPopup:[{visible:".consent-modal[role=dialog]"}],optIn:[{click:"#consent_agree"}],optOut:[{if:{exists:"#consent_reject"},then:[{click:"#consent_reject"}],else:[{click:"#manage_cookie_preferences"},{click:"#cookie_consent_preferences input:checked",all:!0,optional:!0},{click:"#consent_save"}]}],test:[{eval:"EVAL_CLINCH_0"}]},{name:"clustrmaps.com",runContext:{urlPattern:"^https://(www\\.)?clustrmaps\\.com/"},cosmetic:!0,prehideSelectors:["#gdpr-cookie-message"],detectCmp:[{exists:"#gdpr-cookie-message"}],detectPopup:[{visible:"#gdpr-cookie-message"}],optIn:[{click:"button#gdpr-cookie-accept"}],optOut:[{hide:"#gdpr-cookie-message"}]},{name:"coinbase",intermediate:!1,runContext:{frame:!0,main:!0,urlPattern:"^https://(www|help)\\.coinbase\\.com"},prehideSelectors:[],detectCmp:[{exists:"div[class^=CookieBannerContent__Container]"}],detectPopup:[{visible:"div[class^=CookieBannerContent__Container]"}],optIn:[{click:"div[class^=CookieBannerContent__CTA] :nth-last-child(1)"}],optOut:[{click:"button[class^=CookieBannerContent__Settings]"},{click:"div[class^=CookiePreferencesModal__CategoryContainer] input:checked",all:!0,optional:!0},{click:"div[class^=CookiePreferencesModal__ButtonContainer] > button"}],test:[{eval:"EVAL_COINBASE_0"}]},{name:"Complianz banner",prehideSelectors:["#cmplz-cookiebanner-container"],detectCmp:[{exists:"#cmplz-cookiebanner-container .cmplz-cookiebanner"}],detectPopup:[{visible:"#cmplz-cookiebanner-container .cmplz-cookiebanner",check:"any"}],optIn:[{waitForThenClick:".cmplz-cookiebanner .cmplz-accept"}],optOut:[{waitForThenClick:".cmplz-cookiebanner .cmplz-deny"}],test:[{eval:"EVAL_COMPLIANZ_BANNER_0"}]},{name:"Complianz categories",prehideSelectors:['.cc-type-categories[aria-describedby="cookieconsent:desc"]'],detectCmp:[{exists:'.cc-type-categories[aria-describedby="cookieconsent:desc"]'}],detectPopup:[{visible:'.cc-type-categories[aria-describedby="cookieconsent:desc"]'}],optIn:[{any:[{click:".cc-accept-all"},{click:".cc-allow-all"},{click:".cc-allow"},{click:".cc-dismiss"}]}],optOut:[{if:{exists:'.cc-type-categories[aria-describedby="cookieconsent:desc"] .cc-dismiss'},then:[{click:".cc-dismiss"}],else:[{click:".cc-type-categories input[type=checkbox]:not([disabled]):checked",all:!0,optional:!0},{click:".cc-save"}]}]},{name:"Complianz notice",prehideSelectors:['.cc-type-info[aria-describedby="cookieconsent:desc"]'],cosmetic:!0,detectCmp:[{exists:'.cc-type-info[aria-describedby="cookieconsent:desc"] .cc-compliance .cc-btn'}],detectPopup:[{visible:'.cc-type-info[aria-describedby="cookieconsent:desc"] .cc-compliance .cc-btn'}],optIn:[{click:".cc-accept-all",optional:!0},{click:".cc-allow",optional:!0},{click:".cc-dismiss",optional:!0}],optOut:[{if:{exists:".cc-deny"},then:[{click:".cc-deny"}],else:[{hide:'[aria-describedby="cookieconsent:desc"]'}]}]},{name:"Complianz opt-both",prehideSelectors:['[aria-describedby="cookieconsent:desc"] .cc-type-opt-both'],detectCmp:[{exists:'[aria-describedby="cookieconsent:desc"] .cc-type-opt-both'}],detectPopup:[{visible:'[aria-describedby="cookieconsent:desc"] .cc-type-opt-both'}],optIn:[{click:".cc-accept-all",optional:!0},{click:".cc-allow",optional:!0},{click:".cc-dismiss",optional:!0}],optOut:[{waitForThenClick:".cc-deny"}]},{name:"Complianz opt-out",prehideSelectors:['[aria-describedby="cookieconsent:desc"].cc-type-opt-out'],detectCmp:[{exists:'[aria-describedby="cookieconsent:desc"].cc-type-opt-out'}],detectPopup:[{visible:'[aria-describedby="cookieconsent:desc"].cc-type-opt-out'}],optIn:[{click:".cc-accept-all",optional:!0},{click:".cc-allow",optional:!0},{click:".cc-dismiss",optional:!0}],optOut:[{if:{exists:".cc-deny"},then:[{click:".cc-deny"}],else:[{if:{exists:".cmp-pref-link"},then:[{click:".cmp-pref-link"},{waitForThenClick:".cmp-body [id*=rejectAll]"},{waitForThenClick:".cmp-body .cmp-save-btn"}]}]}]},{name:"Complianz optin",prehideSelectors:['.cc-type-opt-in[aria-describedby="cookieconsent:desc"]'],detectCmp:[{exists:'.cc-type-opt-in[aria-describedby="cookieconsent:desc"]'}],detectPopup:[{visible:'.cc-type-opt-in[aria-describedby="cookieconsent:desc"]'}],optIn:[{any:[{click:".cc-accept-all"},{click:".cc-allow"},{click:".cc-dismiss"}]}],optOut:[{if:{visible:".cc-deny"},then:[{click:".cc-deny"}],else:[{if:{visible:".cc-settings"},then:[{waitForThenClick:".cc-settings"},{waitForVisible:".cc-settings-view"},{click:".cc-settings-view input[type=checkbox]:not([disabled]):checked",all:!0,optional:!0},{click:".cc-settings-view .cc-btn-accept-selected"}],else:[{click:".cc-dismiss"}]}]}]},{name:"cookie-law-info",prehideSelectors:["#cookie-law-info-bar"],detectCmp:[{exists:"#cookie-law-info-bar"},{eval:"EVAL_COOKIE_LAW_INFO_DETECT"}],detectPopup:[{visible:"#cookie-law-info-bar"}],optIn:[{click:'[data-cli_action="accept_all"]'}],optOut:[{hide:"#cookie-law-info-bar"},{eval:"EVAL_COOKIE_LAW_INFO_0"}],test:[{eval:"EVAL_COOKIE_LAW_INFO_1"}]},{name:"cookie-manager-popup",cosmetic:!1,runContext:{main:!0,frame:!1},intermediate:!1,detectCmp:[{exists:"#notice-cookie-block #allow-functional-cookies, #notice-cookie-block #btn-cookie-settings"}],detectPopup:[{visible:"#notice-cookie-block"}],optIn:[{click:"#btn-cookie-allow"}],optOut:[{if:{exists:"#allow-functional-cookies"},then:[{click:"#allow-functional-cookies"}],else:[{waitForThenClick:"#btn-cookie-settings"},{waitForVisible:".modal-body"},{click:'.modal-body input:checked, .switch[data-switch="on"]',all:!0,optional:!0},{click:'[role="dialog"] .modal-footer button'}]}],prehideSelectors:["#btn-cookie-settings"],test:[{eval:"EVAL_COOKIE_MANAGER_POPUP_0"}]},{name:"cookie-notice",prehideSelectors:["#cookie-notice"],cosmetic:!0,detectCmp:[{visible:"#cookie-notice .cookie-notice-container"}],detectPopup:[{visible:"#cookie-notice"}],optIn:[{click:"#cn-accept-cookie"}],optOut:[{hide:"#cookie-notice"}]},{name:"cookie-script",vendorUrl:"https://cookie-script.com/",prehideSelectors:["#cookiescript_injected"],detectCmp:[{exists:"#cookiescript_injected"}],detectPopup:[{visible:"#cookiescript_injected"}],optOut:[{if:{exists:"#cookiescript_reject"},then:[{wait:100},{click:"#cookiescript_reject"}],else:[{click:"#cookiescript_manage"},{waitForVisible:".cookiescript_fsd_main"},{waitForThenClick:"#cookiescript_reject"}]}],optIn:[{click:"#cookiescript_accept"}]},{name:"cookieacceptbar",vendorUrl:"https://unknown",cosmetic:!0,prehideSelectors:["#cookieAcceptBar.cookieAcceptBar"],detectCmp:[{exists:"#cookieAcceptBar.cookieAcceptBar"}],detectPopup:[{visible:"#cookieAcceptBar.cookieAcceptBar"}],optIn:[{waitForThenClick:"#cookieAcceptBarConfirm"}],optOut:[{hide:"#cookieAcceptBar.cookieAcceptBar"}]},{name:"cookiealert",intermediate:!1,prehideSelectors:[],runContext:{frame:!0,main:!0},detectCmp:[{exists:".cookie-alert-extended"}],detectPopup:[{visible:".cookie-alert-extended-modal"}],optIn:[{click:"button[data-controller='cookie-alert/extended/button/accept']"},{eval:"EVAL_COOKIEALERT_0"}],optOut:[{click:"a[data-controller='cookie-alert/extended/detail-link']"},{click:".cookie-alert-configuration-input:checked",all:!0,optional:!0},{click:"button[data-controller='cookie-alert/extended/button/configuration']"},{eval:"EVAL_COOKIEALERT_0"}],test:[{eval:"EVAL_COOKIEALERT_2"}]},{name:"cookieconsent2",vendorUrl:"https://www.github.com/orestbida/cookieconsent",comment:"supports v2.x.x of the library",prehideSelectors:["#cc--main"],detectCmp:[{exists:"#cc--main"}],detectPopup:[{visible:"#cm"},{exists:"#s-all-bn"}],optIn:[{waitForThenClick:"#s-all-bn"}],optOut:[{waitForThenClick:"#s-rall-bn"}],test:[{eval:"EVAL_COOKIECONSENT2_TEST"}]},{name:"cookieconsent3",vendorUrl:"https://www.github.com/orestbida/cookieconsent",comment:"supports v3.x.x of the library",prehideSelectors:["#cc-main"],detectCmp:[{exists:"#cc-main"}],detectPopup:[{visible:"#cc-main .cm-wrapper"}],optIn:[{waitForThenClick:".cm__btn[data-role=all]"}],optOut:[{waitForThenClick:".cm__btn[data-role=necessary]"}],test:[{eval:"EVAL_COOKIECONSENT3_TEST"}]},{name:"cookiecuttr",vendorUrl:"https://github.com/cdwharton/cookieCuttr",cosmetic:!1,runContext:{main:!0,frame:!1,urlPattern:""},prehideSelectors:[".cc-cookies"],detectCmp:[{exists:".cc-cookies .cc-cookie-accept"}],detectPopup:[{visible:".cc-cookies .cc-cookie-accept"}],optIn:[{waitForThenClick:".cc-cookies .cc-cookie-accept"}],optOut:[{if:{exists:".cc-cookies .cc-cookie-decline"},then:[{click:".cc-cookies .cc-cookie-decline"}],else:[{hide:".cc-cookies"}]}]},{name:"cookiefirst.com",prehideSelectors:["#cookiefirst-root,.cookiefirst-root,[aria-labelledby=cookie-preference-panel-title]"],detectCmp:[{exists:"#cookiefirst-root,.cookiefirst-root"}],detectPopup:[{visible:"#cookiefirst-root,.cookiefirst-root"}],optIn:[{click:"button[data-cookiefirst-action=accept]"}],optOut:[{if:{exists:"button[data-cookiefirst-action=adjust]"},then:[{click:"button[data-cookiefirst-action=adjust]"},{waitForVisible:"[data-cookiefirst-widget=modal]",timeout:1e3},{eval:"EVAL_COOKIEFIRST_1"},{wait:1e3},{click:"button[data-cookiefirst-action=save]"}],else:[{click:"button[data-cookiefirst-action=reject]"}]}],test:[{eval:"EVAL_COOKIEFIRST_0"}]},{name:"Cookie Information Banner",prehideSelectors:["#cookie-information-template-wrapper"],detectCmp:[{exists:"#cookie-information-template-wrapper"}],detectPopup:[{visible:"#cookie-information-template-wrapper"}],optIn:[{eval:"EVAL_COOKIEINFORMATION_1"}],optOut:[{hide:"#cookie-information-template-wrapper",comment:"some templates don't hide the banner automatically"},{eval:"EVAL_COOKIEINFORMATION_0"}],test:[{eval:"EVAL_COOKIEINFORMATION_2"}]},{name:"cookieyes",prehideSelectors:[".cky-overlay,.cky-consent-container"],detectCmp:[{exists:".cky-consent-container"}],detectPopup:[{visible:".cky-consent-container"}],optIn:[{waitForThenClick:".cky-consent-container [data-cky-tag=accept-button]"}],optOut:[{if:{exists:".cky-consent-container [data-cky-tag=reject-button]"},then:[{waitForThenClick:".cky-consent-container [data-cky-tag=reject-button]"}],else:[{if:{exists:".cky-consent-container [data-cky-tag=settings-button]"},then:[{click:".cky-consent-container [data-cky-tag=settings-button]"},{waitFor:".cky-modal-open input[type=checkbox]"},{click:".cky-modal-open input[type=checkbox]:checked",all:!0,optional:!0},{waitForThenClick:".cky-modal [data-cky-tag=detail-save-button]"}],else:[{hide:".cky-consent-container,.cky-overlay"}]}]}],test:[{eval:"EVAL_COOKIEYES_0"}]},{name:"corona-in-zahlen.de",prehideSelectors:[".cookiealert"],detectCmp:[{exists:".cookiealert"}],detectPopup:[{visible:".cookiealert"}],optOut:[{click:".configurecookies"},{click:".confirmcookies"}],optIn:[{click:".acceptcookies"}]},{name:"crossfit-com",cosmetic:!0,prehideSelectors:['body #modal > div > div[class^="_wrapper_"]'],detectCmp:[{exists:'body #modal > div > div[class^="_wrapper_"]'}],detectPopup:[{visible:'body #modal > div > div[class^="_wrapper_"]'}],optIn:[{click:'button[aria-label="accept cookie policy"]'}],optOut:[{hide:'body #modal > div > div[class^="_wrapper_"]'}]},{name:"csu-landtag-de",runContext:{urlPattern:"^https://(www\\.|)?csu-landtag\\.de"},prehideSelectors:["#cookie-disclaimer"],detectCmp:[{exists:"#cookie-disclaimer"}],detectPopup:[{visible:"#cookie-disclaimer"}],optIn:[{click:"#cookieall"}],optOut:[{click:"#cookiesel"}]},{name:"dailymotion-us",cosmetic:!0,prehideSelectors:['div[class*="CookiePopup__desktopContainer"]:has(div[class*="CookiePopup"])'],detectCmp:[{exists:'div[class*="CookiePopup__desktopContainer"]'}],detectPopup:[{visible:'div[class*="CookiePopup__desktopContainer"]'}],optIn:[{click:'div[class*="CookiePopup__desktopContainer"] > button > span'}],optOut:[{hide:'div[class*="CookiePopup__desktopContainer"]'}]},{name:"dailymotion.com",runContext:{urlPattern:"^https://(www\\.)?dailymotion\\.com/"},prehideSelectors:['div[class*="Overlay__container"]:has(div[class*="TCF2Popup"])'],detectCmp:[{exists:'div[class*="TCF2Popup"]'}],detectPopup:[{visible:'[class*="TCF2Popup"] a[href^="https://www.dailymotion.com/legal/cookiemanagement"]'}],optIn:[{waitForThenClick:'button[class*="TCF2Popup__button"]:not([class*="TCF2Popup__personalize"])'}],optOut:[{waitForThenClick:'button[class*="TCF2ContinueWithoutAcceptingButton"]'}],test:[{eval:"EVAL_DAILYMOTION_0"}]},{name:"dan-com",vendorUrl:"https://unknown",runContext:{main:!0,frame:!1},prehideSelectors:[],detectCmp:[{exists:".cookie-banner.show .cookie-banner__content-all-btn"}],detectPopup:[{visible:".cookie-banner.show .cookie-banner__content-all-btn"}],optIn:[{waitForThenClick:".cookie-banner__content-all-btn"}],optOut:[{waitForThenClick:".cookie-banner__content-essential-btn"}]},{name:"deepl.com",prehideSelectors:[".dl_cookieBanner_container"],detectCmp:[{exists:".dl_cookieBanner_container"}],detectPopup:[{visible:".dl_cookieBanner_container"}],optOut:[{click:".dl_cookieBanner--buttonSelected"}],optIn:[{click:".dl_cookieBanner--buttonAll"}]},{name:"delta.com",runContext:{urlPattern:"^https://www\\.delta\\.com/"},cosmetic:!0,prehideSelectors:["ngc-cookie-banner"],detectCmp:[{exists:"div.cookie-footer-container"}],detectPopup:[{visible:"div.cookie-footer-container"}],optIn:[{click:" button.cookie-close-icon"}],optOut:[{hide:"div.cookie-footer-container"}]},{name:"dmgmedia-us",prehideSelectors:["#mol-ads-cmp-iframe, div.mol-ads-cmp > form > div"],detectCmp:[{exists:"div.mol-ads-cmp > form > div"}],detectPopup:[{waitForVisible:"div.mol-ads-cmp > form > div"}],optIn:[{waitForThenClick:"button.mol-ads-cmp--btn-primary"}],optOut:[{waitForThenClick:"div.mol-ads-ccpa--message > u > a"},{waitForVisible:".mol-ads-cmp--modal-dialog"},{waitForThenClick:"a.mol-ads-cmp-footer-privacy"},{waitForThenClick:"button.mol-ads-cmp--btn-secondary"}]},{name:"dmgmedia",prehideSelectors:['[data-project="mol-fe-cmp"]'],detectCmp:[{exists:'[data-project="mol-fe-cmp"] [class*=footer]'}],detectPopup:[{visible:'[data-project="mol-fe-cmp"] [class*=footer]'}],optIn:[{waitForThenClick:'[data-project="mol-fe-cmp"] button[class*=primary]'}],optOut:[{waitForThenClick:'[data-project="mol-fe-cmp"] button[class*=basic]'},{waitForVisible:'[data-project="mol-fe-cmp"] div[class*="tabContent"]'},{waitForThenClick:'[data-project="mol-fe-cmp"] div[class*="toggle"][class*="enabled"]',all:!0},{waitForThenClick:['[data-project="mol-fe-cmp"] [class*=footer]',"xpath///button[contains(., 'Save & Exit')]"]}]},{name:"dndbeyond",vendorUrl:"https://www.dndbeyond.com/",runContext:{urlPattern:"^https://(www\\.)?dndbeyond\\.com/"},prehideSelectors:["[id^=cookie-consent-banner]"],detectCmp:[{exists:"[id^=cookie-consent-banner]"}],detectPopup:[{visible:"[id^=cookie-consent-banner]"}],optIn:[{waitForThenClick:"#cookie-consent-granted"}],optOut:[{waitForThenClick:"#cookie-consent-denied"}],test:[{eval:"EVAL_DNDBEYOND_TEST"}]},{name:"dpgmedia-nl",prehideSelectors:["#pg-shadow-host"],detectCmp:[{exists:"#pg-shadow-host"}],detectPopup:[{visible:["#pg-shadow-host","#pg-modal"]}],optIn:[{waitForThenClick:["#pg-shadow-host","#pg-accept-btn"]}],optOut:[{waitForThenClick:["#pg-shadow-host","#pg-configure-btn"]},{waitForThenClick:["#pg-shadow-host","#pg-reject-btn"]}]},{name:"Drupal",detectCmp:[{exists:"#drupalorg-crosssite-gdpr"}],detectPopup:[{visible:"#drupalorg-crosssite-gdpr"}],optOut:[{click:".no"}],optIn:[{click:".yes"}]},{name:"WP DSGVO Tools",link:"https://wordpress.org/plugins/shapepress-dsgvo/",prehideSelectors:[".sp-dsgvo"],cosmetic:!0,detectCmp:[{exists:".sp-dsgvo.sp-dsgvo-popup-overlay"}],detectPopup:[{visible:".sp-dsgvo.sp-dsgvo-popup-overlay",check:"any"}],optIn:[{click:".sp-dsgvo-privacy-btn-accept-all",all:!0}],optOut:[{hide:".sp-dsgvo.sp-dsgvo-popup-overlay"}],test:[{eval:"EVAL_DSGVO_0"}]},{name:"dunelm.com",prehideSelectors:["div[data-testid=cookie-consent-modal-backdrop]"],detectCmp:[{exists:"div[data-testid=cookie-consent-message-contents]"}],detectPopup:[{visible:"div[data-testid=cookie-consent-message-contents]"}],optIn:[{click:'[data-testid="cookie-consent-allow-all"]'}],optOut:[{click:"button[data-testid=cookie-consent-adjust-settings]"},{click:"button[data-testid=cookie-consent-preferences-save]"}],test:[{eval:"EVAL_DUNELM_0"}]},{name:"ebay",vendorUrl:"https://ebay.com",cosmetic:!1,runContext:{main:!0,frame:!1,urlPattern:"^https://(www\\.)?ebay\\.([.a-z]+)/"},prehideSelectors:["#gdpr-banner"],detectCmp:[{exists:"#gdpr-banner"}],detectPopup:[{visible:"#gdpr-banner"}],optIn:[{waitForThenClick:"#gdpr-banner-accept"}],optOut:[{waitForThenClick:"#gdpr-banner-decline"}]},{name:"ecosia",vendorUrl:"https://www.ecosia.org/",runContext:{urlPattern:"^https://www\\.ecosia\\.org/"},prehideSelectors:[".cookie-wrapper"],detectCmp:[{exists:".cookie-wrapper > .cookie-notice"}],detectPopup:[{visible:".cookie-wrapper > .cookie-notice"}],optIn:[{waitForThenClick:"[data-test-id=cookie-notice-accept]"}],optOut:[{waitForThenClick:"[data-test-id=cookie-notice-reject]"}]},{name:"Ensighten ensModal",prehideSelectors:[".ensModal"],detectCmp:[{exists:".ensModal"}],detectPopup:[{visible:"#ensModalWrapper[style*=block]"}],optIn:[{waitForThenClick:"#modalAcceptButton"}],optOut:[{wait:500},{visible:"#ensModalWrapper[style*=block]"},{waitForThenClick:".ensCheckbox:checked",all:!0},{waitForThenClick:"#ensSave"}]},{name:"Ensighten ensNotifyBanner",prehideSelectors:["#ensNotifyBanner"],detectCmp:[{exists:"#ensNotifyBanner"}],detectPopup:[{visible:"#ensNotifyBanner[style*=block]"}],optIn:[{waitForThenClick:"#ensCloseBanner"}],optOut:[{wait:500},{visible:"#ensNotifyBanner[style*=block]"},{waitForThenClick:"#ensRejectAll,#rejectAll,#ensRejectBanner,.rejectAll,#ensCloseBanner",timeout:2e3}]},{name:"espace-personnel.agirc-arrco.fr",runContext:{urlPattern:"^https://espace-personnel\\.agirc-arrco\\.fr/"},prehideSelectors:[".cdk-overlay-container"],detectCmp:[{exists:".cdk-overlay-container app-esaa-cookie-component"}],detectPopup:[{visible:".cdk-overlay-container app-esaa-cookie-component"}],optIn:[{waitForThenClick:".btn-cookie-accepter"}],optOut:[{waitForThenClick:".btn-cookie-refuser"}]},{name:"etsy",prehideSelectors:["#gdpr-single-choice-overlay","#gdpr-privacy-settings"],detectCmp:[{exists:"#gdpr-single-choice-overlay"}],detectPopup:[{visible:"#gdpr-single-choice-overlay"}],optOut:[{click:"button[data-gdpr-open-full-settings]"},{waitForVisible:".gdpr-overlay-body input",timeout:3e3},{wait:1e3},{eval:"EVAL_ETSY_0"},{eval:"EVAL_ETSY_1"}],optIn:[{click:"button[data-gdpr-single-choice-accept]"}]},{name:"eu-cookie-compliance-banner",detectCmp:[{exists:"body.eu-cookie-compliance-popup-open"}],detectPopup:[{exists:"body.eu-cookie-compliance-popup-open"}],optIn:[{click:".agree-button"}],optOut:[{if:{visible:".decline-button,.eu-cookie-compliance-save-preferences-button"},then:[{click:".decline-button,.eu-cookie-compliance-save-preferences-button"}]},{hide:".eu-cookie-compliance-banner-info, #sliding-popup"}],test:[{eval:"EVAL_EU_COOKIE_COMPLIANCE_0"}]},{name:"EU Cookie Law",prehideSelectors:[".pea_cook_wrapper,.pea_cook_more_info_popover"],cosmetic:!0,detectCmp:[{exists:".pea_cook_wrapper"}],detectPopup:[{wait:500},{visible:".pea_cook_wrapper"}],optIn:[{click:"#pea_cook_btn"}],optOut:[{hide:".pea_cook_wrapper"}],test:[{eval:"EVAL_EU_COOKIE_LAW_0"}]},{name:"europa-eu",vendorUrl:"https://ec.europa.eu/",runContext:{urlPattern:"^https://[^/]*europa\\.eu/"},prehideSelectors:["#cookie-consent-banner"],detectCmp:[{exists:".cck-container"}],detectPopup:[{visible:".cck-container"}],optIn:[{waitForThenClick:'.cck-actions-button[href="#accept"]'}],optOut:[{waitForThenClick:'.cck-actions-button[href="#refuse"]',hide:".cck-container"}]},{name:"EZoic",prehideSelectors:["#ez-cookie-dialog-wrapper"],detectCmp:[{exists:"#ez-cookie-dialog-wrapper"}],detectPopup:[{visible:"#ez-cookie-dialog-wrapper"}],optIn:[{click:"#ez-accept-all",optional:!0},{eval:"EVAL_EZOIC_0",optional:!0}],optOut:[{wait:500},{click:"#ez-manage-settings"},{waitFor:"#ez-cookie-dialog input[type=checkbox]"},{click:"#ez-cookie-dialog input[type=checkbox]:checked",all:!0},{click:"#ez-save-settings"}],test:[{eval:"EVAL_EZOIC_1"}]},{name:"facebook",runContext:{urlPattern:"^https://([a-z0-9-]+\\.)?facebook\\.com/"},prehideSelectors:['div[data-testid="cookie-policy-manage-dialog"]'],detectCmp:[{exists:'div[data-testid="cookie-policy-manage-dialog"]'}],detectPopup:[{visible:'div[data-testid="cookie-policy-manage-dialog"]'}],optIn:[{waitForThenClick:'button[data-cookiebanner="accept_button"]'},{waitForVisible:'div[data-testid="cookie-policy-manage-dialog"]',check:"none"}],optOut:[{waitForThenClick:'button[data-cookiebanner="accept_only_essential_button"]'},{waitForVisible:'div[data-testid="cookie-policy-manage-dialog"]',check:"none"}]},{name:"fides",vendorUrl:"https://github.com/ethyca/fides",prehideSelectors:["#fides-overlay"],detectCmp:[{exists:"#fides-overlay #fides-banner"}],detectPopup:[{visible:"#fides-overlay #fides-banner"},{eval:"EVAL_FIDES_DETECT_POPUP"}],optIn:[{waitForThenClick:"#fides-banner .fides-accept-all-button"}],optOut:[{waitForThenClick:"#fides-banner .fides-reject-all-button"}]},{name:"funding-choices",prehideSelectors:[".fc-consent-root,.fc-dialog-container,.fc-dialog-overlay,.fc-dialog-content"],detectCmp:[{exists:".fc-consent-root"}],detectPopup:[{exists:".fc-dialog-container"}],optOut:[{click:".fc-cta-do-not-consent,.fc-cta-manage-options"},{click:".fc-preference-consent:checked,.fc-preference-legitimate-interest:checked",all:!0,optional:!0},{click:".fc-confirm-choices",optional:!0}],optIn:[{click:".fc-cta-consent"}]},{name:"geeks-for-geeks",runContext:{urlPattern:"^https://www\\.geeksforgeeks\\.org/"},cosmetic:!0,prehideSelectors:[".cookie-consent"],detectCmp:[{exists:".cookie-consent"}],detectPopup:[{visible:".cookie-consent"}],optIn:[{click:".cookie-consent button.consent-btn"}],optOut:[{hide:".cookie-consent"}]},{name:"google-consent-standalone",prehideSelectors:[],detectCmp:[{exists:'a[href^="https://policies.google.com/technologies/cookies"'},{exists:'form[action^="https://consent.google."][action$=".com/save"]'}],detectPopup:[{visible:'a[href^="https://policies.google.com/technologies/cookies"'}],optIn:[{waitForThenClick:'form[action^="https://consent.google."][action$=".com/save"]:has(input[name=set_eom][value=false]) button'}],optOut:[{waitForThenClick:'form[action^="https://consent.google."][action$=".com/save"]:has(input[name=set_eom][value=true]) button'}]},{name:"google.com",prehideSelectors:[".HTjtHe#xe7COe"],detectCmp:[{exists:".HTjtHe#xe7COe"},{exists:'.HTjtHe#xe7COe a[href^="https://policies.google.com/technologies/cookies"]'}],detectPopup:[{visible:".HTjtHe#xe7COe button#W0wltc"}],optIn:[{waitForThenClick:".HTjtHe#xe7COe button#L2AGLb"}],optOut:[{waitForThenClick:".HTjtHe#xe7COe button#W0wltc"}],test:[{eval:"EVAL_GOOGLE_0"}]},{name:"gov.uk",detectCmp:[{exists:"#global-cookie-message"}],detectPopup:[{exists:"#global-cookie-message"}],optIn:[{click:"button[data-accept-cookies=true]"}],optOut:[{click:"button[data-reject-cookies=true],#reject-cookies"},{click:"button[data-hide-cookie-banner=true],#hide-cookie-decision"}]},{name:"hashicorp",vendorUrl:"https://hashicorp.com/",runContext:{urlPattern:"^https://[^.]*\\.hashicorp\\.com/"},prehideSelectors:["[data-testid=consent-banner]"],detectCmp:[{exists:"[data-testid=consent-banner]"}],detectPopup:[{visible:"[data-testid=consent-banner]"}],optIn:[{waitForThenClick:"[data-testid=accept]"}],optOut:[{waitForThenClick:"[data-testid=manage-preferences]"},{waitForThenClick:"[data-testid=consent-mgr-dialog] [data-ga-button=save-preferences]"}]},{name:"healthline-media",prehideSelectors:["#modal-host > div.no-hash > div.window-wrapper"],detectCmp:[{exists:"#modal-host > div.no-hash > div.window-wrapper, div[data-testid=qualtrics-container]"}],detectPopup:[{exists:"#modal-host > div.no-hash > div.window-wrapper, div[data-testid=qualtrics-container]"}],optIn:[{click:"#modal-host > div.no-hash > div.window-wrapper > div:last-child button"}],optOut:[{if:{exists:'#modal-host > div.no-hash > div.window-wrapper > div:last-child a[href="/privacy-settings"]'},then:[{click:'#modal-host > div.no-hash > div.window-wrapper > div:last-child a[href="/privacy-settings"]'}],else:[{waitForVisible:"div#__next"},{click:"#__next div:nth-child(1) > button:first-child"}]}]},{name:"hema",prehideSelectors:[".cookie-modal"],detectCmp:[{visible:".cookie-modal .cookie-accept-btn"}],detectPopup:[{visible:".cookie-modal .cookie-accept-btn"}],optIn:[{waitForThenClick:".cookie-modal .cookie-accept-btn"}],optOut:[{waitForThenClick:".cookie-modal .js-cookie-reject-btn"}],test:[{eval:"EVAL_HEMA_TEST_0"}]},{name:"hetzner.com",runContext:{urlPattern:"^https://www\\.hetzner\\.com/"},prehideSelectors:["#CookieConsent"],detectCmp:[{exists:"#CookieConsent"}],detectPopup:[{visible:"#CookieConsent"}],optIn:[{click:"#CookieConsentGiven"}],optOut:[{click:"#CookieConsentDeclined"}]},{name:"hl.co.uk",prehideSelectors:[".cookieModalContent","#cookie-banner-overlay"],detectCmp:[{exists:"#cookie-banner-overlay"}],detectPopup:[{exists:"#cookie-banner-overlay"}],optIn:[{click:"#acceptCookieButton"}],optOut:[{click:"#manageCookie"},{hide:".cookieSettingsModal"},{waitFor:"#AOCookieToggle"},{click:"#AOCookieToggle[aria-pressed=true]",optional:!0},{waitFor:"#TPCookieToggle"},{click:"#TPCookieToggle[aria-pressed=true]",optional:!0},{click:"#updateCookieButton"}]},{name:"holidaymedia",vendorUrl:"https://holidaymedia.nl/",prehideSelectors:["dialog[data-cookie-consent]"],detectCmp:[{exists:"dialog[data-cookie-consent]"}],detectPopup:[{visible:"dialog[data-cookie-consent]"}],optIn:[{waitForThenClick:"button.cookie-consent__button--accept-all"}],optOut:[{waitForThenClick:'a[data-cookie-accept="functional"]',timeout:2e3}]},{name:"hu-manity",vendorUrl:"https://hu-manity.co/",prehideSelectors:["#hu.hu-wrapper"],detectCmp:[{exists:"#hu.hu-visible"}],detectPopup:[{visible:"#hu.hu-visible"}],optIn:[{waitForThenClick:"[data-hu-action=cookies-notice-consent-choices-3]"},{waitForThenClick:"#hu-cookies-save"}],optOut:[{waitForThenClick:"#hu-cookies-save"}]},{name:"hubspot",detectCmp:[{exists:"#hs-eu-cookie-confirmation"}],detectPopup:[{visible:"#hs-eu-cookie-confirmation"}],optIn:[{click:"#hs-eu-confirmation-button"}],optOut:[{click:"#hs-eu-decline-button"}]},{name:"indeed.com",cosmetic:!0,prehideSelectors:["#CookiePrivacyNotice"],detectCmp:[{exists:"#CookiePrivacyNotice"}],detectPopup:[{visible:"#CookiePrivacyNotice"}],optIn:[{click:"#CookiePrivacyNotice button[data-gnav-element-name=CookiePrivacyNoticeOk]"}],optOut:[{hide:"#CookiePrivacyNotice"}]},{name:"ing.de",runContext:{urlPattern:"^https://www\\.ing\\.de/"},cosmetic:!0,prehideSelectors:['div[slot="backdrop"]'],detectCmp:[{exists:'[data-tag-name="ing-cc-dialog-frame"]'}],detectPopup:[{visible:'[data-tag-name="ing-cc-dialog-frame"]'}],optIn:[{click:['[data-tag-name="ing-cc-dialog-level0"]','[data-tag-name="ing-cc-button"][class*="accept"]']}],optOut:[{click:['[data-tag-name="ing-cc-dialog-level0"]','[data-tag-name="ing-cc-button"][class*="more"]']}]},{name:"instagram",vendorUrl:"https://instagram.com",runContext:{urlPattern:"^https://www\\.instagram\\.com/"},prehideSelectors:[],detectCmp:[{exists:'xpath///span[contains(., "Vill du tillåta användningen av cookies från Instagram i den här webbläsaren?") or contains(., "Allow the use of cookies from Instagram on this browser?") or contains(., "Povolit v prohlížeči použití souborů cookie z Instagramu?") or contains(., "Dopustiti upotrebu kolačića s Instagrama na ovom pregledniku?") or contains(., "Разрешить использование файлов cookie от Instagram в этом браузере?") or contains(., "Vuoi consentire l\'uso dei cookie di Instagram su questo browser?") or contains(., "Povoliť používanie cookies zo služby Instagram v tomto prehliadači?") or contains(., "Die Verwendung von Cookies durch Instagram in diesem Browser erlauben?") or contains(., "Sallitaanko Instagramin evästeiden käyttö tällä selaimella?") or contains(., "Engedélyezed az Instagram cookie-jainak használatát ebben a böngészőben?") or contains(., "Het gebruik van cookies van Instagram toestaan in deze browser?") or contains(., "Bu tarayıcıda Instagram\'dan çerez kullanımına izin verilsin mi?") or contains(., "Permitir o uso de cookies do Instagram neste navegador?") or contains(., "Permiţi folosirea modulelor cookie de la Instagram în acest browser?") or contains(., "Autoriser l’utilisation des cookies d’Instagram sur ce navigateur ?") or contains(., "¿Permitir el uso de cookies de Instagram en este navegador?") or contains(., "Zezwolić na użycie plików cookie z Instagramu w tej przeglądarce?") or contains(., "Να επιτρέπεται η χρήση cookies από τo Instagram σε αυτό το πρόγραμμα περιήγησης;") or contains(., "Разрешавате ли използването на бисквитки от Instagram на този браузър?") or contains(., "Vil du tillade brugen af cookies fra Instagram i denne browser?") or contains(., "Vil du tillate bruk av informasjonskapsler fra Instagram i denne nettleseren?")]'}],detectPopup:[{visible:'xpath///span[contains(., "Vill du tillåta användningen av cookies från Instagram i den här webbläsaren?") or contains(., "Allow the use of cookies from Instagram on this browser?") or contains(., "Povolit v prohlížeči použití souborů cookie z Instagramu?") or contains(., "Dopustiti upotrebu kolačića s Instagrama na ovom pregledniku?") or contains(., "Разрешить использование файлов cookie от Instagram в этом браузере?") or contains(., "Vuoi consentire l\'uso dei cookie di Instagram su questo browser?") or contains(., "Povoliť používanie cookies zo služby Instagram v tomto prehliadači?") or contains(., "Die Verwendung von Cookies durch Instagram in diesem Browser erlauben?") or contains(., "Sallitaanko Instagramin evästeiden käyttö tällä selaimella?") or contains(., "Engedélyezed az Instagram cookie-jainak használatát ebben a böngészőben?") or contains(., "Het gebruik van cookies van Instagram toestaan in deze browser?") or contains(., "Bu tarayıcıda Instagram\'dan çerez kullanımına izin verilsin mi?") or contains(., "Permitir o uso de cookies do Instagram neste navegador?") or contains(., "Permiţi folosirea modulelor cookie de la Instagram în acest browser?") or contains(., "Autoriser l’utilisation des cookies d’Instagram sur ce navigateur ?") or contains(., "¿Permitir el uso de cookies de Instagram en este navegador?") or contains(., "Zezwolić na użycie plików cookie z Instagramu w tej przeglądarce?") or contains(., "Να επιτρέπεται η χρήση cookies από τo Instagram σε αυτό το πρόγραμμα περιήγησης;") or contains(., "Разрешавате ли използването на бисквитки от Instagram на този браузър?") or contains(., "Vil du tillade brugen af cookies fra Instagram i denne browser?") or contains(., "Vil du tillate bruk av informasjonskapsler fra Instagram i denne nettleseren?")]'}],optIn:[{waitForThenClick:"xpath///button[contains(., 'Tillad alle cookies') or contains(., 'Alle Cookies erlauben') or contains(., 'Allow all cookies') or contains(., 'Разрешаване на всички бисквитки') or contains(., 'Tillåt alla cookies') or contains(., 'Povolit všechny soubory cookie') or contains(., 'Tüm çerezlere izin ver') or contains(., 'Permite toate modulele cookie') or contains(., 'Να επιτρέπονται όλα τα cookies') or contains(., 'Tillat alle informasjonskapsler') or contains(., 'Povoliť všetky cookies') or contains(., 'Permitir todas las cookies') or contains(., 'Permitir todos os cookies') or contains(., 'Alle cookies toestaan') or contains(., 'Salli kaikki evästeet') or contains(., 'Consenti tutti i cookie') or contains(., 'Az összes cookie engedélyezése') or contains(., 'Autoriser tous les cookies') or contains(., 'Zezwól na wszystkie pliki cookie') or contains(., 'Разрешить все cookie') or contains(., 'Dopusti sve kolačiće')]"}],optOut:[{waitForThenClick:"xpath///button[contains(., 'Отклонить необязательные файлы cookie') or contains(., 'Decline optional cookies') or contains(., 'Refuser les cookies optionnels') or contains(., 'Hylkää valinnaiset evästeet') or contains(., 'Afvis valgfrie cookies') or contains(., 'Odmietnuť nepovinné cookies') or contains(., 'Απόρριψη προαιρετικών cookies') or contains(., 'Neka valfria cookies') or contains(., 'Optionale Cookies ablehnen') or contains(., 'Rifiuta cookie facoltativi') or contains(., 'Odbij neobavezne kolačiće') or contains(., 'Avvis valgfrie informasjonskapsler') or contains(., 'İsteğe bağlı çerezleri reddet') or contains(., 'Recusar cookies opcionais') or contains(., 'Optionele cookies afwijzen') or contains(., 'Rechazar cookies opcionales') or contains(., 'Odrzuć opcjonalne pliki cookie') or contains(., 'Отхвърляне на бисквитките по избор') or contains(., 'Odmítnout volitelné soubory cookie') or contains(., 'Refuză modulele cookie opţionale') or contains(., 'A nem kötelező cookie-k elutasítása')]"},{wait:2e3}]},{name:"ionos.de",prehideSelectors:[".privacy-consent--backdrop",".privacy-consent--modal"],detectCmp:[{exists:".privacy-consent--modal"}],detectPopup:[{visible:".privacy-consent--modal"}],optIn:[{click:"#selectAll"}],optOut:[{click:".footer-config-link"},{click:"#confirmSelection"}]},{name:"itopvpn.com",cosmetic:!0,prehideSelectors:[".pop-cookie"],detectCmp:[{exists:".pop-cookie"}],detectPopup:[{exists:".pop-cookie"}],optIn:[{click:"#_pcookie"}],optOut:[{hide:".pop-cookie"}]},{name:"iubenda",prehideSelectors:["#iubenda-cs-banner"],detectCmp:[{exists:"#iubenda-cs-banner"}],detectPopup:[{visible:".iubenda-cs-accept-btn"}],optIn:[{waitForThenClick:".iubenda-cs-accept-btn"}],optOut:[{waitForThenClick:".iubenda-cs-customize-btn"},{eval:"EVAL_IUBENDA_0"},{waitForThenClick:"#iubFooterBtn"}],test:[{eval:"EVAL_IUBENDA_1"}]},{name:"iWink",prehideSelectors:["body.cookies-request #cookie-bar"],detectCmp:[{exists:"body.cookies-request #cookie-bar"}],detectPopup:[{visible:"body.cookies-request #cookie-bar"}],optIn:[{waitForThenClick:"body.cookies-request #cookie-bar .allow-cookies"}],optOut:[{waitForThenClick:"body.cookies-request #cookie-bar .disallow-cookies"}],test:[{eval:"EVAL_IWINK_TEST"}]},{name:"jdsports",vendorUrl:"https://www.jdsports.co.uk/",runContext:{urlPattern:"^https://(www|m)\\.jdsports\\."},prehideSelectors:[".miniConsent,#PrivacyPolicyBanner"],detectCmp:[{exists:".miniConsent,#PrivacyPolicyBanner"}],detectPopup:[{visible:".miniConsent,#PrivacyPolicyBanner"}],optIn:[{waitForThenClick:".miniConsent .accept-all-cookies"}],optOut:[{if:{exists:"#PrivacyPolicyBanner"},then:[{hide:"#PrivacyPolicyBanner"}],else:[{waitForThenClick:"#cookie-settings"},{waitForThenClick:"#reject-all-cookies"}]}]},{name:"johnlewis.com",prehideSelectors:["div[class^=pecr-cookie-banner-]"],detectCmp:[{exists:"div[class^=pecr-cookie-banner-]"}],detectPopup:[{exists:"div[class^=pecr-cookie-banner-]"}],optOut:[{click:"button[data-test^=manage-cookies]"},{wait:"500"},{click:"label[data-test^=toggle][class*=checked]:not([class*=disabled])",all:!0,optional:!0},{click:"button[data-test=save-preferences]"}],optIn:[{click:"button[data-test=allow-all]"}]},{name:"jquery.cookieBar",vendorUrl:"https://github.com/kovarp/jquery.cookieBar",prehideSelectors:[".cookie-bar"],cosmetic:!0,detectCmp:[{exists:".cookie-bar .cookie-bar__message,.cookie-bar .cookie-bar__buttons"}],detectPopup:[{visible:".cookie-bar .cookie-bar__message,.cookie-bar .cookie-bar__buttons",check:"any"}],optIn:[{click:".cookie-bar .cookie-bar__btn"}],optOut:[{hide:".cookie-bar"}],test:[{visible:".cookie-bar .cookie-bar__message,.cookie-bar .cookie-bar__buttons",check:"none"},{eval:"EVAL_JQUERY_COOKIEBAR_0"}]},{name:"justwatch.com",prehideSelectors:[".consent-banner"],detectCmp:[{exists:".consent-banner .consent-banner__actions"}],detectPopup:[{visible:".consent-banner .consent-banner__actions"}],optIn:[{click:".consent-banner__actions button.basic-button.primary"}],optOut:[{click:".consent-banner__actions button.basic-button.secondary"},{waitForThenClick:".consent-modal__footer button.basic-button.secondary"},{waitForThenClick:".consent-modal ion-content > div > a:nth-child(9)"},{click:"label.consent-switch input[type=checkbox]:checked",all:!0,optional:!0},{waitForVisible:".consent-modal__footer button.basic-button.primary"},{click:".consent-modal__footer button.basic-button.primary"}]},{name:"ketch",vendorUrl:"https://www.ketch.com",runContext:{frame:!1,main:!0},intermediate:!1,prehideSelectors:["#lanyard_root div[role='dialog']"],detectCmp:[{exists:"#lanyard_root div[role='dialog']"}],detectPopup:[{visible:"#lanyard_root div[role='dialog']"}],optIn:[{if:{exists:"#lanyard_root button[class='confirmButton']"},then:[{waitForThenClick:"#lanyard_root div[class*=buttons] > :nth-child(2)"},{click:"#lanyard_root button[class='confirmButton']"}],else:[{waitForThenClick:"#lanyard_root div[class*=buttons] > :nth-child(2)"}]}],optOut:[{if:{exists:"#lanyard_root [aria-describedby=banner-description]"},then:[{waitForThenClick:"#lanyard_root div[class*=buttons] > button[class*=secondaryButton], #lanyard_root button[class*=buttons-secondary]",comment:"can be either settings or reject button"}]},{waitFor:"#lanyard_root [aria-describedby=preference-description],#lanyard_root [aria-describedby=modal-description], #ketch-preferences",timeout:1e3,optional:!0},{if:{exists:"#lanyard_root [aria-describedby=preference-description],#lanyard_root [aria-describedby=modal-description], #ketch-preferences"},then:[{waitForThenClick:"#lanyard_root button[class*=rejectButton], #lanyard_root button[class*=rejectAllButton]"},{click:"#lanyard_root button[class*=confirmButton],#lanyard_root div[class*=actions_] > button:nth-child(1), #lanyard_root button[class*=actionButton]"}]}],test:[{eval:"EVAL_KETCH_TEST"}]},{name:"kleinanzeigen-de",runContext:{urlPattern:"^https?://(www\\.)?kleinanzeigen\\.de"},prehideSelectors:["#gdpr-banner-container"],detectCmp:[{any:[{exists:"#gdpr-banner-container #gdpr-banner [data-testid=gdpr-banner-cmp-button]"},{exists:"#ConsentManagementPage"}]}],detectPopup:[{any:[{visible:"#gdpr-banner-container #gdpr-banner [data-testid=gdpr-banner-cmp-button]"},{visible:"#ConsentManagementPage"}]}],optIn:[{if:{exists:"#gdpr-banner-container #gdpr-banner"},then:[{click:"#gdpr-banner-container #gdpr-banner [data-testid=gdpr-banner-accept]"}],else:[{click:"#ConsentManagementPage .Button-primary"}]}],optOut:[{if:{exists:"#gdpr-banner-container #gdpr-banner"},then:[{click:"#gdpr-banner-container #gdpr-banner [data-testid=gdpr-banner-cmp-button]"}],else:[{click:"#ConsentManagementPage .Button-secondary"}]}]},{name:"lightbox",prehideSelectors:[".darken-layer.open,.lightbox.lightbox--cookie-consent"],detectCmp:[{exists:"body.cookie-consent-is-active div.lightbox--cookie-consent > div.lightbox__content > div.cookie-consent[data-jsb]"}],detectPopup:[{visible:"body.cookie-consent-is-active div.lightbox--cookie-consent > div.lightbox__content > div.cookie-consent[data-jsb]"}],optOut:[{click:".cookie-consent__footer > button[type='submit']:not([data-button='selectAll'])"}],optIn:[{click:".cookie-consent__footer > button[type='submit'][data-button='selectAll']"}]},{name:"lineagrafica",vendorUrl:"https://addons.prestashop.com/en/legal/8734-eu-cookie-law-gdpr-banner-blocker.html",cosmetic:!0,prehideSelectors:["#lgcookieslaw_banner,#lgcookieslaw_modal,.lgcookieslaw-overlay"],detectCmp:[{exists:"#lgcookieslaw_banner,#lgcookieslaw_modal,.lgcookieslaw-overlay"}],detectPopup:[{exists:"#lgcookieslaw_banner,#lgcookieslaw_modal,.lgcookieslaw-overlay"}],optIn:[{waitForThenClick:"#lgcookieslaw_accept"}],optOut:[{hide:"#lgcookieslaw_banner,#lgcookieslaw_modal,.lgcookieslaw-overlay"}]},{name:"linkedin.com",prehideSelectors:[".artdeco-global-alert[type=COOKIE_CONSENT]"],detectCmp:[{exists:".artdeco-global-alert[type=COOKIE_CONSENT]"}],detectPopup:[{visible:".artdeco-global-alert[type=COOKIE_CONSENT]"}],optIn:[{waitForVisible:".artdeco-global-alert[type=COOKIE_CONSENT] button[action-type=ACCEPT]"},{wait:500},{waitForThenClick:".artdeco-global-alert[type=COOKIE_CONSENT] button[action-type=ACCEPT]"}],optOut:[{waitForVisible:".artdeco-global-alert[type=COOKIE_CONSENT] button[action-type=DENY]"},{wait:500},{waitForThenClick:".artdeco-global-alert[type=COOKIE_CONSENT] button[action-type=DENY]"}],test:[{waitForVisible:".artdeco-global-alert[type=COOKIE_CONSENT]",check:"none"}]},{name:"livejasmin",vendorUrl:"https://www.livejasmin.com/",runContext:{urlPattern:"^https://(m|www)\\.livejasmin\\.com/"},prehideSelectors:["#consent_modal"],detectCmp:[{exists:"#consent_modal"}],detectPopup:[{visible:"#consent_modal"}],optIn:[{waitForThenClick:"#consent_modal button[data-testid=ButtonStyledButton]:first-of-type"}],optOut:[{waitForThenClick:"#consent_modal button[data-testid=ButtonStyledButton]:nth-of-type(2)"},{waitForVisible:"[data-testid=PrivacyPreferenceCenterWithConsentCookieContent]"},{click:"[data-testid=PrivacyPreferenceCenterWithConsentCookieContent] input[data-testid=PrivacyPreferenceCenterWithConsentCookieSwitch]:checked",optional:!0,all:!0},{waitForThenClick:"[data-testid=PrivacyPreferenceCenterWithConsentCookieContent] button[data-testid=ButtonStyledButton]:last-child"}]},{name:"macpaw.com",cosmetic:!0,prehideSelectors:['div[data-banner="cookies"]'],detectCmp:[{exists:'div[data-banner="cookies"]'}],detectPopup:[{exists:'div[data-banner="cookies"]'}],optIn:[{click:'button[data-banner-close="cookies"]'}],optOut:[{hide:'div[data-banner="cookies"]'}]},{name:"marksandspencer.com",cosmetic:!0,detectCmp:[{exists:".navigation-cookiebbanner"}],detectPopup:[{visible:".navigation-cookiebbanner"}],optOut:[{hide:".navigation-cookiebbanner"}],optIn:[{click:".navigation-cookiebbanner__submit"}]},{name:"mediamarkt.de",prehideSelectors:["div[aria-labelledby=pwa-consent-layer-title]","div[class^=StyledConsentLayerWrapper-]"],detectCmp:[{exists:"div[aria-labelledby^=pwa-consent-layer-title]"}],detectPopup:[{exists:"div[aria-labelledby^=pwa-consent-layer-title]"}],optOut:[{click:"button[data-test^=pwa-consent-layer-deny-all]"}],optIn:[{click:"button[data-test^=pwa-consent-layer-accept-all"}]},{name:"Mediavine",prehideSelectors:['[data-name="mediavine-gdpr-cmp"]'],detectCmp:[{exists:'[data-name="mediavine-gdpr-cmp"]'}],detectPopup:[{wait:500},{visible:'[data-name="mediavine-gdpr-cmp"]'}],optIn:[{waitForThenClick:'[data-name="mediavine-gdpr-cmp"] [format="primary"]'}],optOut:[{waitForThenClick:'[data-name="mediavine-gdpr-cmp"] [data-view="manageSettings"]'},{waitFor:'[data-name="mediavine-gdpr-cmp"] input[type=checkbox]'},{eval:"EVAL_MEDIAVINE_0",optional:!0},{click:'[data-name="mediavine-gdpr-cmp"] [format="secondary"]'}]},{name:"medium",vendorUrl:"https://medium.com",cosmetic:!0,runContext:{main:!0,frame:!1,urlPattern:"^https://([a-z0-9-]+\\.)?medium\\.com/"},prehideSelectors:[],detectCmp:[{exists:'div:has(> div > div > div[role=alert] > a[href^="https://policy.medium.com/medium-privacy-policy-"])'}],detectPopup:[{visible:'div:has(> div > div > div[role=alert] > a[href^="https://policy.medium.com/medium-privacy-policy-"])'}],optIn:[{waitForThenClick:"[data-testid=close-button]"}],optOut:[{hide:'div:has(> div > div > div[role=alert] > a[href^="https://policy.medium.com/medium-privacy-policy-"])'}]},{name:"microsoft.com",prehideSelectors:["#wcpConsentBannerCtrl"],detectCmp:[{exists:"#wcpConsentBannerCtrl"}],detectPopup:[{exists:"#wcpConsentBannerCtrl"}],optOut:[{eval:"EVAL_MICROSOFT_0"}],optIn:[{eval:"EVAL_MICROSOFT_1"}],test:[{eval:"EVAL_MICROSOFT_2"}]},{name:"midway-usa",runContext:{urlPattern:"^https://www\\.midwayusa\\.com/"},cosmetic:!0,prehideSelectors:["#cookie-container"],detectCmp:[{exists:['div[aria-label="Cookie Policy Banner"]']}],detectPopup:[{visible:"#cookie-container"}],optIn:[{click:"button#cookie-btn"}],optOut:[{hide:'div[aria-label="Cookie Policy Banner"]'}]},{name:"moneysavingexpert.com",detectCmp:[{exists:"dialog[data-testid=accept-our-cookies-dialog]"}],detectPopup:[{visible:"dialog[data-testid=accept-our-cookies-dialog]"}],optIn:[{click:"#banner-accept"}],optOut:[{click:"#banner-manage"},{click:"#pc-confirm"}]},{name:"monzo.com",prehideSelectors:[".cookie-alert, cookie-alert__content"],detectCmp:[{exists:'div.cookie-alert[role="dialog"]'},{exists:'a[href*="monzo"]'}],detectPopup:[{visible:".cookie-alert__content"}],optIn:[{click:".js-accept-cookie-policy"}],optOut:[{click:".js-decline-cookie-policy"}]},{name:"Moove",prehideSelectors:["#moove_gdpr_cookie_info_bar"],detectCmp:[{exists:"#moove_gdpr_cookie_info_bar"}],detectPopup:[{visible:"#moove_gdpr_cookie_info_bar:not(.moove-gdpr-info-bar-hidden)"}],optIn:[{waitForThenClick:".moove-gdpr-infobar-allow-all"}],optOut:[{if:{exists:"#moove_gdpr_cookie_info_bar .change-settings-button"},then:[{click:"#moove_gdpr_cookie_info_bar .change-settings-button"},{waitForVisible:"#moove_gdpr_cookie_modal"},{eval:"EVAL_MOOVE_0"},{click:".moove-gdpr-modal-save-settings"}],else:[{hide:"#moove_gdpr_cookie_info_bar"}]}],test:[{visible:"#moove_gdpr_cookie_info_bar",check:"none"}]},{name:"national-lottery.co.uk",detectCmp:[{exists:".cuk_cookie_consent"}],detectPopup:[{visible:".cuk_cookie_consent",check:"any"}],optOut:[{click:".cuk_cookie_consent_manage_pref"},{click:".cuk_cookie_consent_save_pref"},{click:".cuk_cookie_consent_close"}],optIn:[{click:".cuk_cookie_consent_accept_all"}]},{name:"nba.com",runContext:{urlPattern:"^https://(www\\.)?nba.com/"},cosmetic:!0,prehideSelectors:["#onetrust-banner-sdk"],detectCmp:[{exists:"#onetrust-banner-sdk"}],detectPopup:[{visible:"#onetrust-banner-sdk"}],optIn:[{click:"#onetrust-accept-btn-handler"}],optOut:[{hide:"#onetrust-banner-sdk"}]},{name:"netbeat.de",runContext:{urlPattern:"^https://(www\\.)?netbeat\\.de/"},prehideSelectors:["div#cookieWarning"],detectCmp:[{exists:"div#cookieWarning"}],detectPopup:[{visible:"div#cookieWarning"}],optIn:[{waitForThenClick:"a#btnCookiesAcceptAll"}],optOut:[{waitForThenClick:"a#btnCookiesDenyAll"}]},{name:"netflix.de",detectCmp:[{exists:"#cookie-disclosure"}],detectPopup:[{visible:".cookie-disclosure-message",check:"any"}],optIn:[{click:".btn-accept"}],optOut:[{hide:"#cookie-disclosure"},{click:".btn-reject"}]},{name:"nhs.uk",prehideSelectors:["#nhsuk-cookie-banner"],detectCmp:[{exists:"#nhsuk-cookie-banner"}],detectPopup:[{exists:"#nhsuk-cookie-banner"}],optOut:[{click:"#nhsuk-cookie-banner__link_accept"}],optIn:[{click:"#nhsuk-cookie-banner__link_accept_analytics"}]},{name:"nike",vendorUrl:"https://nike.com",runContext:{urlPattern:"^https://(www\\.)?nike\\.com/"},prehideSelectors:[],detectCmp:[{exists:"[data-testid=cookie-dialog-root]"}],detectPopup:[{visible:"[data-testid=cookie-dialog-root]"}],optIn:[{waitForThenClick:"[data-testid=dialog-accept-button]"}],optOut:[{waitForThenClick:"input[type=radio][id$=-declineLabel]",all:!0},{waitForThenClick:"[data-testid=confirm-choice-button]"}]},{name:"notice-cookie",prehideSelectors:[".button--notice"],cosmetic:!0,detectCmp:[{exists:".notice--cookie"}],detectPopup:[{visible:".notice--cookie"}],optIn:[{click:".button--notice"}],optOut:[{hide:".notice--cookie"}]},{name:"nrk.no",cosmetic:!0,prehideSelectors:[".nrk-masthead__info-banner--cookie"],detectCmp:[{exists:".nrk-masthead__info-banner--cookie"}],detectPopup:[{exists:".nrk-masthead__info-banner--cookie"}],optIn:[{click:"div.nrk-masthead__info-banner--cookie button > span:has(+ svg.nrk-close)"}],optOut:[{hide:".nrk-masthead__info-banner--cookie"}]},{name:"obi.de",prehideSelectors:[".disc-cp--active"],detectCmp:[{exists:".disc-cp-modal__modal"}],detectPopup:[{visible:".disc-cp-modal__modal"}],optIn:[{click:".js-disc-cp-accept-all"}],optOut:[{click:".js-disc-cp-deny-all"}]},{name:"om",vendorUrl:"https://olli-machts.de/en/extension/cookie-manager",prehideSelectors:[".tx-om-cookie-consent"],detectCmp:[{exists:".tx-om-cookie-consent .active[data-omcookie-panel]"}],detectPopup:[{exists:".tx-om-cookie-consent .active[data-omcookie-panel]"}],optIn:[{waitForThenClick:"[data-omcookie-panel-save=all]"}],optOut:[{if:{exists:"[data-omcookie-panel-save=min]"},then:[{waitForThenClick:"[data-omcookie-panel-save=min]"}],else:[{click:"input[data-omcookie-panel-grp]:checked:not(:disabled)",all:!0,optional:!0},{waitForThenClick:"[data-omcookie-panel-save=save]"}]}]},{name:"onlyFans.com",runContext:{urlPattern:"^https://onlyfans\\.com/"},prehideSelectors:["div.b-cookies-informer"],detectCmp:[{exists:"div.b-cookies-informer"}],detectPopup:[{exists:"div.b-cookies-informer"}],optIn:[{click:"div.b-cookies-informer__nav > button:nth-child(2)"}],optOut:[{click:"div.b-cookies-informer__nav > button:nth-child(1)"},{if:{exists:"div.b-cookies-informer__switchers"},then:[{click:"div.b-cookies-informer__switchers input:not([disabled])",all:!0},{click:"div.b-cookies-informer__nav > button"}]}]},{name:"openai",vendorUrl:"https://platform.openai.com/",cosmetic:!1,runContext:{urlPattern:"^https://([a-z0-9-]+\\.)?openai\\.com/"},prehideSelectors:["[data-testid=cookie-consent-banner]"],detectCmp:[{exists:"[data-testid=cookie-consent-banner]"}],detectPopup:[{visible:"[data-testid=cookie-consent-banner]"}],optIn:[{waitForThenClick:"xpath///button[contains(., 'Accept all')]"}],optOut:[{waitForThenClick:"xpath///button[contains(., 'Reject all')]"}],test:[{wait:500},{eval:"EVAL_OPENAI_TEST"}]},{name:"openli",vendorUrl:"https://openli.com",prehideSelectors:[".legalmonster-cleanslate"],detectCmp:[{exists:".legalmonster-cleanslate"}],detectPopup:[{visible:".legalmonster-cleanslate #lm-cookie-wall-container",check:"any"}],optIn:[{waitForThenClick:"#lm-accept-all"}],optOut:[{waitForThenClick:"#lm-accept-necessary"}]},{name:"opera.com",vendorUrl:"https://unknown",cosmetic:!1,runContext:{main:!0,frame:!1},intermediate:!1,prehideSelectors:[],detectCmp:[{exists:"#cookie-consent .manage-cookies__btn"}],detectPopup:[{visible:"#cookie-consent .cookie-basic-consent__btn"}],optIn:[{waitForThenClick:"#cookie-consent .cookie-basic-consent__btn"}],optOut:[{waitForThenClick:"#cookie-consent .manage-cookies__btn"},{waitForThenClick:"#cookie-consent .active.marketing_option_switch.cookie-consent__switch",all:!0},{waitForThenClick:"#cookie-consent .cookie-selection__btn"}],test:[{eval:"EVAL_OPERA_0"}]},{name:"osano",prehideSelectors:[".osano-cm-window,.osano-cm-dialog"],detectCmp:[{exists:".osano-cm-window"}],detectPopup:[{visible:".osano-cm-dialog"}],optIn:[{click:".osano-cm-accept-all",optional:!0}],optOut:[{waitForThenClick:".osano-cm-denyAll"}]},{name:"otto.de",prehideSelectors:[".cookieBanner--visibility"],detectCmp:[{exists:".cookieBanner--visibility"}],detectPopup:[{visible:".cookieBanner__wrapper"}],optIn:[{click:".js_cookieBannerPermissionButton"}],optOut:[{click:".js_cookieBannerProhibitionButton"}]},{name:"ourworldindata",vendorUrl:"https://ourworldindata.org/",runContext:{urlPattern:"^https://ourworldindata\\.org/"},prehideSelectors:[".cookie-manager"],detectCmp:[{exists:".cookie-manager"}],detectPopup:[{visible:".cookie-manager .cookie-notice.open"}],optIn:[{waitForThenClick:".cookie-notice [data-test=accept]"}],optOut:[{waitForThenClick:".cookie-notice [data-test=reject]"}]},{name:"pabcogypsum",vendorUrl:"https://unknown",prehideSelectors:[".js-cookie-notice:has(#cookie_settings-form)"],detectCmp:[{exists:".js-cookie-notice #cookie_settings-form"}],detectPopup:[{visible:".js-cookie-notice #cookie_settings-form"}],optIn:[{waitForThenClick:".js-cookie-notice button[value=allow]"}],optOut:[{waitForThenClick:".js-cookie-notice button[value=disable]"}]},{name:"paypal-us",prehideSelectors:["#ccpaCookieContent_wrapper, article.ppvx_modal--overpanel"],detectCmp:[{exists:"#ccpaCookieBanner, .privacy-sheet-content"}],detectPopup:[{exists:"#ccpaCookieBanner, .privacy-sheet-content"}],optIn:[{click:"#acceptAllButton"}],optOut:[{if:{exists:"#bannerDeclineButton"},then:[{click:"#bannerDeclineButton"}],else:[{if:{exists:"a#manageCookiesLink"},then:[{click:"a#manageCookiesLink"}],else:[{waitForVisible:".privacy-sheet-content #formContent"},{click:"#formContent .cookiepref-11m2iee-checkbox_base input:checked",all:!0,optional:!0},{click:".confirmCookie #submitCookiesBtn"}]}]}]},{name:"paypal.com",prehideSelectors:["#gdprCookieBanner"],detectCmp:[{exists:"#gdprCookieBanner"}],detectPopup:[{visible:"#gdprCookieContent_wrapper"}],optIn:[{click:"#acceptAllButton"}],optOut:[{wait:200},{click:".gdprCookieBanner_decline-button"}],test:[{wait:500},{eval:"EVAL_PAYPAL_0"}]},{name:"pinetools.com",cosmetic:!0,prehideSelectors:["#aviso_cookies"],detectCmp:[{exists:"#aviso_cookies"}],detectPopup:[{exists:".lang_en #aviso_cookies"}],optIn:[{click:"#aviso_cookies .a_boton_cerrar"}],optOut:[{hide:"#aviso_cookies"}]},{name:"pinterest-business",vendorUrl:"https://business.pinterest.com/",runContext:{urlPattern:"^https://.*\\.pinterest\\.com/"},prehideSelectors:[".BusinessCookieConsent"],detectCmp:[{exists:".BusinessCookieConsent"}],detectPopup:[{visible:".BusinessCookieConsent [data-id=cookie-consent-banner-buttons]"}],optIn:[{waitForThenClick:"[data-id=cookie-consent-banner-buttons] > div:nth-child(1) button"}],optOut:[{waitForThenClick:"[data-id=cookie-consent-banner-buttons] > div:nth-child(2) button"}]},{name:"pmc",cosmetic:!0,prehideSelectors:["#pmc-pp-tou--notice"],detectCmp:[{exists:"#pmc-pp-tou--notice"}],detectPopup:[{visible:"#pmc-pp-tou--notice"}],optIn:[{click:"span.pmc-pp-tou--notice-close-btn"}],optOut:[{hide:"#pmc-pp-tou--notice"}]},{name:"pornhub.com",runContext:{urlPattern:"^https://(www\\.)?pornhub\\.com/"},cosmetic:!0,prehideSelectors:[".cookiesBanner"],detectCmp:[{exists:".cookiesBanner"}],detectPopup:[{visible:".cookiesBanner"}],optIn:[{click:".cookiesBanner .okButton"}],optOut:[{hide:".cookiesBanner"}]},{name:"pornpics.com",cosmetic:!0,prehideSelectors:["#cookie-contract"],detectCmp:[{exists:"#cookie-contract"}],detectPopup:[{visible:"#cookie-contract"}],optIn:[{click:"#cookie-contract .icon-cross"}],optOut:[{hide:"#cookie-contract"}]},{name:"PrimeBox CookieBar",prehideSelectors:["#cookie-bar"],detectCmp:[{exists:"#cookie-bar .cb-enable,#cookie-bar .cb-disable,#cookie-bar .cb-policy"}],detectPopup:[{visible:"#cookie-bar .cb-enable,#cookie-bar .cb-disable,#cookie-bar .cb-policy",check:"any"}],optIn:[{waitForThenClick:"#cookie-bar .cb-enable"}],optOut:[{click:"#cookie-bar .cb-disable",optional:!0},{hide:"#cookie-bar"}],test:[{eval:"EVAL_PRIMEBOX_0"}]},{name:"privacymanager.io",prehideSelectors:["#gdpr-consent-tool-wrapper",'iframe[src^="https://cmp-consent-tool.privacymanager.io"]'],runContext:{urlPattern:"^https://cmp-consent-tool\\.privacymanager\\.io/",main:!1,frame:!0},detectCmp:[{exists:"button#save"}],detectPopup:[{visible:"button#save"}],optIn:[{click:"button#save"}],optOut:[{if:{exists:"#denyAll"},then:[{click:"#denyAll"},{waitForThenClick:".okButton"}],else:[{waitForThenClick:"#manageSettings"},{waitFor:".purposes-overview-list"},{waitFor:"button#saveAndExit"},{click:"span[role=checkbox][aria-checked=true]",all:!0,optional:!0},{click:"button#saveAndExit"}]}]},{name:"productz.com",vendorUrl:"https://productz.com/",runContext:{urlPattern:"^https://productz\\.com/"},prehideSelectors:[],detectCmp:[{exists:".c-modal.is-active"}],detectPopup:[{visible:".c-modal.is-active"}],optIn:[{waitForThenClick:".c-modal.is-active .is-accept"}],optOut:[{waitForThenClick:".c-modal.is-active .is-dismiss"}]},{name:"pubtech",prehideSelectors:["#pubtech-cmp"],detectCmp:[{exists:"#pubtech-cmp"}],detectPopup:[{visible:"#pubtech-cmp #pt-actions"}],optIn:[{if:{exists:"#pt-accept-all"},then:[{click:"#pubtech-cmp #pt-actions #pt-accept-all"}],else:[{click:"#pubtech-cmp #pt-actions button:nth-of-type(2)"}]}],optOut:[{click:"#pubtech-cmp #pt-close"}],test:[{eval:"EVAL_PUBTECH_0"}]},{name:"quantcast",prehideSelectors:["#qc-cmp2-main,#qc-cmp2-container"],detectCmp:[{exists:"#qc-cmp2-container"}],detectPopup:[{visible:"#qc-cmp2-ui"}],optOut:[{waitFor:'.qc-cmp2-summary-buttons > button[mode="secondary"]',timeout:2e3},{if:{exists:'.qc-cmp2-summary-buttons > button[mode="secondary"]:nth-of-type(2)'},then:[{click:'.qc-cmp2-summary-buttons > button[mode="secondary"]:nth-of-type(2)'}],else:[{click:'.qc-cmp2-summary-buttons > button[mode="secondary"]:nth-of-type(1)'},{waitFor:"#qc-cmp2-ui"},{click:'.qc-cmp2-toggle-switch > button[aria-checked="true"]',all:!0,optional:!0},{click:'.qc-cmp2-main button[aria-label="REJECT ALL"]',optional:!0},{waitForThenClick:'.qc-cmp2-main button[aria-label="SAVE & EXIT"],.qc-cmp2-buttons-desktop > button[mode="primary"]',timeout:5e3}]}],optIn:[{click:'.qc-cmp2-summary-buttons > button[mode="primary"]'}]},{name:"reddit.com",runContext:{urlPattern:"^https://www\\.reddit\\.com/"},prehideSelectors:["[bundlename=reddit_cookie_banner]"],detectCmp:[{exists:"reddit-cookie-banner"}],detectPopup:[{visible:"reddit-cookie-banner"}],optIn:[{waitForThenClick:["reddit-cookie-banner","#accept-all-cookies-button > button"]}],optOut:[{waitForThenClick:["reddit-cookie-banner","#reject-nonessential-cookies-button > button"]}],test:[{eval:"EVAL_REDDIT_0"}]},{name:"roblox",vendorUrl:"https://roblox.com",cosmetic:!1,runContext:{main:!0,frame:!1,urlPattern:"^https://(www\\.)?roblox\\.com/"},prehideSelectors:[],detectCmp:[{exists:".cookie-banner-wrapper"}],detectPopup:[{visible:".cookie-banner-wrapper .cookie-banner"}],optIn:[{waitForThenClick:".cookie-banner-wrapper button.btn-cta-lg"}],optOut:[{waitForThenClick:".cookie-banner-wrapper button.btn-secondary-lg"}],test:[{eval:"EVAL_ROBLOX_TEST"}]},{name:"rog-forum.asus.com",runContext:{urlPattern:"^https://rog-forum\\.asus\\.com/"},prehideSelectors:["#cookie-policy-info"],detectCmp:[{exists:"#cookie-policy-info"}],detectPopup:[{visible:"#cookie-policy-info"}],optIn:[{click:'div.cookie-btn-box > div[aria-label="Accept"]'}],optOut:[{click:'div.cookie-btn-box > div[aria-label="Reject"]'},{waitForThenClick:'.cookie-policy-lightbox-bottom > div[aria-label="Save Settings"]'}]},{name:"roofingmegastore.co.uk",runContext:{urlPattern:"^https://(www\\.)?roofingmegastore\\.co\\.uk"},prehideSelectors:["#m-cookienotice"],detectCmp:[{exists:"#m-cookienotice"}],detectPopup:[{visible:"#m-cookienotice"}],optIn:[{click:"#accept-cookies"}],optOut:[{click:"#manage-cookies"},{waitForThenClick:"#accept-selected"}]},{name:"samsung.com",runContext:{urlPattern:"^https://www\\.samsung\\.com/"},cosmetic:!0,prehideSelectors:["div.cookie-bar"],detectCmp:[{exists:"div.cookie-bar"}],detectPopup:[{visible:"div.cookie-bar"}],optIn:[{click:"div.cookie-bar__manage > a"}],optOut:[{hide:"div.cookie-bar"}]},{name:"setapp.com",vendorUrl:"https://setapp.com/",cosmetic:!0,runContext:{urlPattern:"^https://setapp\\.com/"},prehideSelectors:[],detectCmp:[{exists:".cookie-banner.js-cookie-banner"}],detectPopup:[{visible:".cookie-banner.js-cookie-banner"}],optIn:[{waitForThenClick:".cookie-banner.js-cookie-banner button"}],optOut:[{hide:".cookie-banner.js-cookie-banner"}]},{name:"sibbo",prehideSelectors:["sibbo-cmp-layout"],detectCmp:[{exists:"sibbo-cmp-layout"}],detectPopup:[{visible:"#rejectAllMain"}],optIn:[{click:"#acceptAllMain"}],optOut:[{click:"#rejectAllMain"}]},{name:"similarweb.com",cosmetic:!0,prehideSelectors:[".app-cookies-notification"],detectCmp:[{exists:".app-cookies-notification"}],detectPopup:[{exists:".app-layout .app-cookies-notification"}],optIn:[{click:"button.app-cookies-notification__dismiss"}],optOut:[{hide:".app-layout .app-cookies-notification"}]},{name:"Sirdata",cosmetic:!1,prehideSelectors:["#sd-cmp"],detectCmp:[{exists:"#sd-cmp"}],detectPopup:[{visible:"#sd-cmp"}],optIn:[{waitForThenClick:"#sd-cmp .sd-cmp-3cRQ2"}],optOut:[{waitForThenClick:["#sd-cmp","xpath///span[contains(., 'Do not accept') or contains(., 'Acceptera inte') or contains(., 'No aceptar') or contains(., 'Ikke acceptere') or contains(., 'Nicht akzeptieren') or contains(., 'Не приемам') or contains(., 'Να μην γίνει αποδοχή') or contains(., 'Niet accepteren') or contains(., 'Nepřijímat') or contains(., 'Nie akceptuj') or contains(., 'Nu acceptați') or contains(., 'Não aceitar') or contains(., 'Continuer sans accepter') or contains(., 'Non accettare') or contains(., 'Nem fogad el')]"]}]},{name:"snigel",detectCmp:[{exists:".snigel-cmp-framework"}],detectPopup:[{visible:".snigel-cmp-framework"}],optOut:[{click:"#sn-b-custom"},{click:"#sn-b-save"}],test:[{eval:"EVAL_SNIGEL_0"}],optIn:[{click:".snigel-cmp-framework #accept-choices"}]},{name:"steampowered.com",detectCmp:[{exists:".cookiepreferences_popup"},{visible:".cookiepreferences_popup"}],detectPopup:[{visible:".cookiepreferences_popup"}],optOut:[{click:"#rejectAllButton"}],optIn:[{click:"#acceptAllButton"}],test:[{wait:1e3},{eval:"EVAL_STEAMPOWERED_0"}]},{name:"strato.de",prehideSelectors:[".consent__wrapper"],runContext:{urlPattern:"^https://www\\.strato\\.de/"},detectCmp:[{exists:".consent"}],detectPopup:[{visible:".consent"}],optIn:[{click:"button.consentAgree"}],optOut:[{click:"button.consentSettings"},{waitForThenClick:"button#consentSubmit"}]},{name:"svt.se",vendorUrl:"https://www.svt.se/",runContext:{urlPattern:"^https://www\\.svt\\.se/"},prehideSelectors:["[class*=CookieConsent__root___]"],detectCmp:[{exists:"[class*=CookieConsent__root___]"}],detectPopup:[{visible:"[class*=CookieConsent__modal___]"}],optIn:[{waitForThenClick:"[class*=CookieConsent__modal___] > div > button[class*=primary]"}],optOut:[{waitForThenClick:"[class*=CookieConsent__modal___] > div > button[class*=secondary]:nth-child(2)"}],test:[{eval:"EVAL_SVT_TEST"}]},{name:"takealot.com",cosmetic:!0,prehideSelectors:['div[class^="cookies-banner-module_"]'],detectCmp:[{exists:'div[class^="cookies-banner-module_cookie-banner_"]'}],detectPopup:[{exists:'div[class^="cookies-banner-module_cookie-banner_"]'}],optIn:[{click:'button[class*="cookies-banner-module_dismiss-button_"]'}],optOut:[{hide:'div[class^="cookies-banner-module_"]'},{if:{exists:'div[class^="cookies-banner-module_small-cookie-banner_"]'},then:[{eval:"EVAL_TAKEALOT_0"}],else:[]}]},{name:"tarteaucitron.js",prehideSelectors:["#tarteaucitronRoot"],detectCmp:[{exists:"#tarteaucitronRoot"}],detectPopup:[{visible:"#tarteaucitronRoot #tarteaucitronAlertBig",check:"any"}],optIn:[{eval:"EVAL_TARTEAUCITRON_1"}],optOut:[{eval:"EVAL_TARTEAUCITRON_0"}],test:[{eval:"EVAL_TARTEAUCITRON_2",comment:"sometimes there are required categories, so we check that at least something is false"}]},{name:"taunton",vendorUrl:"https://www.taunton.com/",prehideSelectors:["#taunton-user-consent__overlay"],detectCmp:[{exists:"#taunton-user-consent__overlay"}],detectPopup:[{exists:"#taunton-user-consent__overlay:not([aria-hidden=true])"}],optIn:[{click:"#taunton-user-consent__toolbar input[type=checkbox]:not(:checked)"},{click:"#taunton-user-consent__toolbar button[type=submit]"}],optOut:[{click:"#taunton-user-consent__toolbar input[type=checkbox]:checked",optional:!0,all:!0},{click:"#taunton-user-consent__toolbar button[type=submit]"}],test:[{eval:"EVAL_TAUNTON_TEST"}]},{name:"Tealium",prehideSelectors:["#__tealiumGDPRecModal,#__tealiumGDPRcpPrefs,#__tealiumImplicitmodal,#consent-layer"],detectCmp:[{exists:"#__tealiumGDPRecModal *,#__tealiumGDPRcpPrefs *,#__tealiumImplicitmodal *"},{eval:"EVAL_TEALIUM_0"}],detectPopup:[{visible:"#__tealiumGDPRecModal *,#__tealiumGDPRcpPrefs *,#__tealiumImplicitmodal *",check:"any"}],optOut:[{eval:"EVAL_TEALIUM_1"},{eval:"EVAL_TEALIUM_DONOTSELL"},{hide:"#__tealiumGDPRecModal,#__tealiumGDPRcpPrefs,#__tealiumImplicitmodal"},{waitForThenClick:"#cm-acceptNone,.js-accept-essential-cookies",timeout:1e3,optional:!0}],optIn:[{hide:"#__tealiumGDPRecModal,#__tealiumGDPRcpPrefs"},{eval:"EVAL_TEALIUM_2"}],test:[{eval:"EVAL_TEALIUM_3"},{eval:"EVAL_TEALIUM_DONOTSELL_CHECK"},{visible:"#__tealiumGDPRecModal,#__tealiumGDPRcpPrefs",check:"none"}]},{name:"temu",vendorUrl:"https://temu.com",runContext:{urlPattern:"^https://([a-z0-9-]+\\.)?temu\\.com/"},prehideSelectors:[],detectCmp:[{exists:'div > div > div > div > span[href*="/cookie-and-similar-technologies-policy.html"]'}],detectPopup:[{visible:'div > div > div > div > span[href*="/cookie-and-similar-technologies-policy.html"]'}],optIn:[{waitForThenClick:'div > div > div:has(> div > span[href*="/cookie-and-similar-technologies-policy.html"]) > [role=button]:nth-child(3)'}],optOut:[{if:{exists:"xpath///span[contains(., 'Alle afwijzen') or contains(., 'Reject all') or contains(., 'Tümünü reddet') or contains(., 'Odrzuć wszystko')]"},then:[{waitForThenClick:"xpath///span[contains(., 'Alle afwijzen') or contains(., 'Reject all') or contains(., 'Tümünü reddet') or contains(., 'Odrzuć wszystko')]"}],else:[{waitForThenClick:'div > div > div:has(> div > span[href*="/cookie-and-similar-technologies-policy.html"]) > [role=button]:nth-child(2)'}]}]},{name:"Termly",prehideSelectors:["#termly-code-snippet-support"],detectCmp:[{exists:"#termly-code-snippet-support"}],detectPopup:[{visible:"#termly-code-snippet-support div"}],optIn:[{waitForThenClick:'[data-tid="banner-accept"]'}],optOut:[{if:{exists:'[data-tid="banner-decline"]'},then:[{click:'[data-tid="banner-decline"]'}],else:[{click:".t-preference-button"},{wait:500},{if:{exists:".t-declineAllButton"},then:[{click:".t-declineAllButton"}],else:[{waitForThenClick:".t-preference-modal input[type=checkbox][checked]:not([disabled])",all:!0},{waitForThenClick:".t-saveButton"}]}]}]},{name:"termsfeed",vendorUrl:"https://termsfeed.com",comment:"v4.x.x",prehideSelectors:[".termsfeed-com---nb"],detectCmp:[{exists:".termsfeed-com---nb"}],detectPopup:[{visible:".termsfeed-com---nb"}],optIn:[{waitForThenClick:".cc-nb-okagree"}],optOut:[{waitForThenClick:".cc-nb-reject"}]},{name:"termsfeed3",vendorUrl:"https://termsfeed.com",comment:"v3.x.x",prehideSelectors:[".cc_dialog.cc_css_reboot,.cc_overlay_lock"],detectCmp:[{exists:".cc_dialog.cc_css_reboot"}],detectPopup:[{visible:".cc_dialog.cc_css_reboot"}],optIn:[{waitForThenClick:".cc_dialog.cc_css_reboot .cc_b_ok"}],optOut:[{if:{exists:".cc_dialog.cc_css_reboot .cc_b_cp"},then:[{click:".cc_dialog.cc_css_reboot .cc_b_cp"},{waitForVisible:".cookie-consent-preferences-dialog .cc_cp_f_save button"},{waitForThenClick:".cookie-consent-preferences-dialog .cc_cp_f_save button"}],else:[{hide:".cc_dialog.cc_css_reboot,.cc_overlay_lock"}]}]},{name:"tesla",vendorUrl:"https://tesla.com/",runContext:{main:!0,frame:!1,urlPattern:"^https://(www\\.)?tesla\\.com/"},prehideSelectors:[],detectCmp:[{exists:"#cookie_banner"}],detectPopup:[{visible:"#cookie_banner"}],optIn:[{waitForThenClick:"#tsla-accept-cookie"}],optOut:[{waitForThenClick:"#tsla-reject-cookie"}],test:[{eval:"EVAL_TESLA_TEST"}]},{name:"Test page cosmetic CMP",cosmetic:!0,prehideSelectors:["#privacy-test-page-cmp-test-prehide"],detectCmp:[{exists:"#privacy-test-page-cmp-test-banner"}],detectPopup:[{visible:"#privacy-test-page-cmp-test-banner"}],optIn:[{waitFor:"#accept-all"},{click:"#accept-all"}],optOut:[{hide:"#privacy-test-page-cmp-test-banner"}],test:[{wait:500},{eval:"EVAL_TESTCMP_COSMETIC_0"}]},{name:"Test page CMP",prehideSelectors:["#reject-all"],detectCmp:[{exists:"#privacy-test-page-cmp-test"}],detectPopup:[{visible:"#privacy-test-page-cmp-test"}],optIn:[{waitFor:"#accept-all"},{click:"#accept-all"}],optOut:[{waitFor:"#reject-all"},{click:"#reject-all"}],test:[{eval:"EVAL_TESTCMP_0"}]},{name:"thalia.de",prehideSelectors:[".consent-banner-box"],detectCmp:[{exists:"consent-banner[component=consent-banner]"}],detectPopup:[{visible:".consent-banner-box"}],optIn:[{click:".button-zustimmen"}],optOut:[{click:"button[data-consent=disagree]"}]},{name:"thefreedictionary.com",prehideSelectors:["#cmpBanner"],detectCmp:[{exists:"#cmpBanner"}],detectPopup:[{visible:"#cmpBanner"}],optIn:[{eval:"EVAL_THEFREEDICTIONARY_1"}],optOut:[{eval:"EVAL_THEFREEDICTIONARY_0"}]},{name:"theverge",runContext:{frame:!1,main:!0,urlPattern:"^https://(www)?\\.theverge\\.com"},intermediate:!1,prehideSelectors:[".duet--cta--cookie-banner"],detectCmp:[{exists:".duet--cta--cookie-banner"}],detectPopup:[{visible:".duet--cta--cookie-banner"}],optIn:[{click:".duet--cta--cookie-banner button.tracking-12",all:!1}],optOut:[{click:".duet--cta--cookie-banner button.tracking-12 > span"}],test:[{eval:"EVAL_THEVERGE_0"}]},{name:"tidbits-com",cosmetic:!0,prehideSelectors:["#eu_cookie_law_widget-2"],detectCmp:[{exists:"#eu_cookie_law_widget-2"}],detectPopup:[{visible:"#eu_cookie_law_widget-2"}],optIn:[{click:"#eu-cookie-law form > input.accept"}],optOut:[{hide:"#eu_cookie_law_widget-2"}]},{name:"tractor-supply",runContext:{urlPattern:"^https://www\\.tractorsupply\\.com/"},cosmetic:!0,prehideSelectors:[".tsc-cookie-banner"],detectCmp:[{exists:".tsc-cookie-banner"}],detectPopup:[{visible:".tsc-cookie-banner"}],optIn:[{click:"#cookie-banner-cancel"}],optOut:[{hide:".tsc-cookie-banner"}]},{name:"trader-joes-com",cosmetic:!0,prehideSelectors:['div.aem-page > div[class^="CookiesAlert_cookiesAlert__"]'],detectCmp:[{exists:'div.aem-page > div[class^="CookiesAlert_cookiesAlert__"]'}],detectPopup:[{visible:'div.aem-page > div[class^="CookiesAlert_cookiesAlert__"]'}],optIn:[{click:'div[class^="CookiesAlert_cookiesAlert__container__"] button'}],optOut:[{hide:'div.aem-page > div[class^="CookiesAlert_cookiesAlert__"]'}]},{name:"transcend",vendorUrl:"https://unknown",cosmetic:!0,prehideSelectors:["#transcend-consent-manager"],detectCmp:[{exists:"#transcend-consent-manager"}],detectPopup:[{visible:"#transcend-consent-manager"}],optIn:[{waitForThenClick:["#transcend-consent-manager","#consentManagerMainDialog .inner-container button"]}],optOut:[{hide:"#transcend-consent-manager"}]},{name:"transip-nl",runContext:{urlPattern:"^https://www\\.transip\\.nl/"},prehideSelectors:["#consent-modal"],detectCmp:[{any:[{exists:"#consent-modal"},{exists:"#privacy-settings-content"}]}],detectPopup:[{any:[{visible:"#consent-modal"},{visible:"#privacy-settings-content"}]}],optIn:[{click:'button[type="submit"]'}],optOut:[{if:{exists:"#privacy-settings-content"},then:[{click:'button[type="submit"]'}],else:[{click:"div.one-modal__action-footer-column--secondary > a"}]}]},{name:"tropicfeel-com",prehideSelectors:["#shopify-section-cookies-controller"],detectCmp:[{exists:"#shopify-section-cookies-controller"}],detectPopup:[{visible:"#shopify-section-cookies-controller #cookies-controller-main-pane",check:"any"}],optIn:[{waitForThenClick:"#cookies-controller-main-pane form[data-form-allow-all] button"}],optOut:[{click:"#cookies-controller-main-pane a[data-tab-target=manage-cookies]"},{waitFor:"#manage-cookies-pane.active"},{click:"#manage-cookies-pane.active input[type=checkbox][checked]:not([disabled])",all:!0},{click:"#manage-cookies-pane.active button[type=submit]"}],test:[]},{name:"true-car",runContext:{urlPattern:"^https://www\\.truecar\\.com/"},cosmetic:!0,prehideSelectors:[['div[aria-labelledby="cookie-banner-heading"]']],detectCmp:[{exists:'div[aria-labelledby="cookie-banner-heading"]'}],detectPopup:[{visible:'div[aria-labelledby="cookie-banner-heading"]'}],optIn:[{click:'div[aria-labelledby="cookie-banner-heading"] > button[aria-label="Close"]'}],optOut:[{hide:'div[aria-labelledby="cookie-banner-heading"]'}]},{name:"truyo",prehideSelectors:["#truyo-consent-module"],detectCmp:[{exists:"#truyo-cookieBarContent"}],detectPopup:[{visible:"#truyo-consent-module"}],optIn:[{click:"button#acceptAllCookieButton"}],optOut:[{click:"button#declineAllCookieButton"}]},{name:"twcc",vendorUrl:"https://unknown",cosmetic:!1,runContext:{main:!0,frame:!1,urlPattern:""},prehideSelectors:["#twcc__mechanism"],detectCmp:[{exists:"#twcc__mechanism .twcc__notice"}],detectPopup:[{visible:"#twcc__mechanism .twcc__notice"}],optIn:[{waitForThenClick:"#twcc__accept-button"}],optOut:[{waitForThenClick:"#twcc__decline-button"}],test:[{eval:"EVAL_TWCC_TEST"}]},{name:"twitch-mobile",vendorUrl:"https://m.twitch.tv/",cosmetic:!0,runContext:{urlPattern:"^https?://m\\.twitch\\.tv"},prehideSelectors:[],detectCmp:[{exists:'.ReactModal__Overlay [href="https://www.twitch.tv/p/cookie-policy"]'}],detectPopup:[{visible:'.ReactModal__Overlay [href="https://www.twitch.tv/p/cookie-policy"]'}],optIn:[{waitForThenClick:'.ReactModal__Overlay:has([href="https://www.twitch.tv/p/cookie-policy"]) button'}],optOut:[{hide:'.ReactModal__Overlay:has([href="https://www.twitch.tv/p/cookie-policy"])'}]},{name:"twitch.tv",runContext:{urlPattern:"^https?://(www\\.)?twitch\\.tv"},prehideSelectors:["div:has(> .consent-banner .consent-banner__content--gdpr-v2),.ReactModalPortal:has([data-a-target=consent-modal-save])"],detectCmp:[{exists:".consent-banner .consent-banner__content--gdpr-v2"}],detectPopup:[{visible:".consent-banner .consent-banner__content--gdpr-v2"}],optIn:[{click:'button[data-a-target="consent-banner-accept"]'}],optOut:[{hide:"div:has(> .consent-banner .consent-banner__content--gdpr-v2)"},{click:'button[data-a-target="consent-banner-manage-preferences"]'},{waitFor:"input[type=checkbox][data-a-target=tw-checkbox]"},{click:"input[type=checkbox][data-a-target=tw-checkbox][checked]:not([disabled])",all:!0,optional:!0},{waitForThenClick:"[data-a-target=consent-modal-save]"},{waitForVisible:".ReactModalPortal:has([data-a-target=consent-modal-save])",check:"none"}]},{name:"twitter",runContext:{urlPattern:"^https://([a-z0-9-]+\\.)?(twitter|x)\\.com/"},prehideSelectors:['[data-testid="BottomBar"]'],detectCmp:[{exists:'[data-testid="BottomBar"] div'}],detectPopup:[{visible:'[data-testid="BottomBar"] div'}],optIn:[{waitForThenClick:'[data-testid="BottomBar"] > div:has(>div:first-child>div:last-child>button[role=button]>span) > div:last-child > button[role=button]:first-child'}],optOut:[{waitForThenClick:'[data-testid="BottomBar"] > div:has(>div:first-child>div:last-child>button[role=button]>span) > div:last-child > button[role=button]:last-child'}],TODOtest:[{eval:"EVAL_document.cookie.includes('d_prefs=MjoxLGNvbnNlbnRfdmVyc2lvbjoy')"}]},{name:"ubuntu.com",prehideSelectors:["dialog.cookie-policy"],detectCmp:[{any:[{exists:"dialog.cookie-policy header"},{exists:'xpath///*[@id="modal"]/div/header'}]}],detectPopup:[{any:[{visible:"dialog header"},{visible:'xpath///*[@id="modal"]/div/header'}]}],optIn:[{any:[{waitForThenClick:"#cookie-policy-button-accept"},{waitForThenClick:'xpath///*[@id="cookie-policy-button-accept"]'}]}],optOut:[{any:[{waitForThenClick:"button.js-manage"},{waitForThenClick:'xpath///*[@id="cookie-policy-content"]/p[4]/button[2]'}]},{waitForThenClick:"dialog.cookie-policy .p-switch__input:checked",optional:!0,all:!0,timeout:500},{any:[{waitForThenClick:"dialog.cookie-policy .js-save-preferences"},{waitForThenClick:'xpath///*[@id="modal"]/div/button'}]}],test:[{eval:"EVAL_UBUNTU_COM_0"}]},{name:"UK Cookie Consent",prehideSelectors:["#catapult-cookie-bar"],cosmetic:!0,detectCmp:[{exists:"#catapult-cookie-bar"}],detectPopup:[{exists:".has-cookie-bar #catapult-cookie-bar"}],optIn:[{click:"#catapultCookie"}],optOut:[{hide:"#catapult-cookie-bar"}],test:[{eval:"EVAL_UK_COOKIE_CONSENT_0"}]},{name:"urbanarmorgear-com",cosmetic:!0,prehideSelectors:['div[class^="Layout__CookieBannerContainer-"]'],detectCmp:[{exists:'div[class^="Layout__CookieBannerContainer-"]'}],detectPopup:[{visible:'div[class^="Layout__CookieBannerContainer-"]'}],optIn:[{click:'button[class^="CookieBanner__AcceptButton"]'}],optOut:[{hide:'div[class^="Layout__CookieBannerContainer-"]'}]},{name:"usercentrics-api",detectCmp:[{exists:"#usercentrics-root,#usercentrics-cmp-ui"}],detectPopup:[{eval:"EVAL_USERCENTRICS_API_0"},{if:{exists:"#usercentrics-cmp-ui"},then:[{waitForVisible:"#usercentrics-cmp-ui",timeout:2e3}],else:[{exists:["#usercentrics-root","[data-testid=uc-container]"]},{waitForVisible:"#usercentrics-root",timeout:2e3}]}],optIn:[{eval:"EVAL_USERCENTRICS_API_3"},{eval:"EVAL_USERCENTRICS_API_1"},{eval:"EVAL_USERCENTRICS_API_5"}],optOut:[{eval:"EVAL_USERCENTRICS_API_1"},{eval:"EVAL_USERCENTRICS_API_2"}],test:[{eval:"EVAL_USERCENTRICS_API_6"}]},{name:"usercentrics-button",detectCmp:[{exists:"#usercentrics-button"}],detectPopup:[{visible:"#usercentrics-button #uc-btn-accept-banner"}],optIn:[{click:"#usercentrics-button #uc-btn-accept-banner"}],optOut:[{click:"#usercentrics-button #uc-btn-deny-banner"}],test:[{eval:"EVAL_USERCENTRICS_BUTTON_0"}]},{name:"uswitch.com",runContext:{main:!0,frame:!1,urlPattern:"^https://(www\\.)?uswitch\\.com/"},prehideSelectors:[".ucb"],detectCmp:[{exists:".ucb-banner"}],detectPopup:[{visible:".ucb-banner"}],optIn:[{waitForThenClick:".ucb-banner .ucb-btn-accept"}],optOut:[{waitForThenClick:".ucb-banner .ucb-btn-save"}]},{name:"vodafone.de",runContext:{urlPattern:"^https://www\\.vodafone\\.de/"},prehideSelectors:[".dip-consent,.dip-consent-container"],detectCmp:[{exists:".dip-consent-container"}],detectPopup:[{visible:".dip-consent-content"}],optOut:[{click:'.dip-consent-btn[tabindex="2"]'}],optIn:[{click:'.dip-consent-btn[tabindex="1"]'}]},{name:"waitrose.com",prehideSelectors:["div[aria-labelledby=CookieAlertModalHeading]","section[data-test=initial-waitrose-cookie-consent-banner]","section[data-test=cookie-consent-modal]"],detectCmp:[{exists:"section[data-test=initial-waitrose-cookie-consent-banner]"}],detectPopup:[{visible:"section[data-test=initial-waitrose-cookie-consent-banner]"}],optIn:[{click:"button[data-test=accept-all]"}],optOut:[{click:"button[data-test=manage-cookies]"},{wait:200},{eval:"EVAL_WAITROSE_0"},{click:"button[data-test=submit]"}],test:[{eval:"EVAL_WAITROSE_1"}]},{name:"webflow",vendorUrl:"https://webflow.com/",prehideSelectors:[".fs-cc-components"],detectCmp:[{exists:".fs-cc-components"}],detectPopup:[{visible:".fs-cc-components"},{visible:"[fs-cc=banner]"}],optIn:[{wait:500},{waitForThenClick:"[fs-cc=banner] [fs-cc=allow]"}],optOut:[{wait:500},{waitForThenClick:"[fs-cc=banner] [fs-cc=deny]"}]},{name:"wetransfer.com",detectCmp:[{exists:".welcome__cookie-notice"}],detectPopup:[{visible:".welcome__cookie-notice"}],optIn:[{click:".welcome__button--accept"}],optOut:[{click:".welcome__button--decline"}]},{name:"whitepages.com",runContext:{urlPattern:"^https://www\\.whitepages\\.com/"},cosmetic:!0,prehideSelectors:[".cookie-wrapper, .cookie-overlay"],detectCmp:[{exists:".cookie-wrapper"}],detectPopup:[{visible:".cookie-overlay"}],optIn:[{click:'button[aria-label="Got it"]'}],optOut:[{hide:".cookie-wrapper"}]},{name:"wolframalpha",vendorUrl:"https://www.wolframalpha.com",prehideSelectors:[],cosmetic:!0,runContext:{urlPattern:"^https://www\\.wolframalpha\\.com/"},detectCmp:[{exists:"section._a_yb"}],detectPopup:[{visible:"section._a_yb"}],optIn:[{waitForThenClick:"section._a_yb button"}],optOut:[{hide:"section._a_yb"}]},{name:"woo-commerce-com",prehideSelectors:[".wccom-comp-privacy-banner .wccom-privacy-banner"],detectCmp:[{exists:".wccom-comp-privacy-banner .wccom-privacy-banner"}],detectPopup:[{exists:".wccom-comp-privacy-banner .wccom-privacy-banner"}],optIn:[{click:".wccom-privacy-banner__content-buttons button.is-primary"}],optOut:[{click:".wccom-privacy-banner__content-buttons button.is-secondary"},{waitForThenClick:"input[type=checkbox][checked]:not([disabled])",all:!0},{click:"div.wccom-modal__footer > button"}]},{name:"WP Cookie Notice for GDPR",vendorUrl:"https://wordpress.org/plugins/gdpr-cookie-consent/",prehideSelectors:["#gdpr-cookie-consent-bar"],detectCmp:[{exists:"#gdpr-cookie-consent-bar"}],detectPopup:[{visible:"#gdpr-cookie-consent-bar"}],optIn:[{waitForThenClick:"#gdpr-cookie-consent-bar #cookie_action_accept"}],optOut:[{waitForThenClick:"#gdpr-cookie-consent-bar #cookie_action_reject"}],test:[{eval:"EVAL_WP_COOKIE_NOTICE_0"}]},{name:"wpcc",cosmetic:!0,prehideSelectors:[".wpcc-container"],detectCmp:[{exists:".wpcc-container"}],detectPopup:[{exists:".wpcc-container .wpcc-message"}],optIn:[{click:".wpcc-compliance .wpcc-btn"}],optOut:[{hide:".wpcc-container"}]},{name:"xe.com",vendorUrl:"https://www.xe.com/",runContext:{urlPattern:"^https://www\\.xe\\.com/"},prehideSelectors:["[class*=ConsentBanner]"],detectCmp:[{exists:"[class*=ConsentBanner]"}],detectPopup:[{visible:"[class*=ConsentBanner]"}],optIn:[{waitForThenClick:"[class*=ConsentBanner] .egnScw"}],optOut:[{wait:1e3},{waitForThenClick:"[class*=ConsentBanner] .frDWEu"},{waitForThenClick:"[class*=ConsentBanner] .hXIpFU"}],test:[{eval:"EVAL_XE_TEST"}]},{name:"xhamster-eu",prehideSelectors:[".cookies-modal"],detectCmp:[{exists:".cookies-modal"}],detectPopup:[{exists:".cookies-modal"}],optIn:[{click:"button.cmd-button-accept-all"}],optOut:[{click:"button.cmd-button-reject-all"}]},{name:"xhamster-us",runContext:{urlPattern:"^https://(www\\.)?xhamster\\d?\\.com"},cosmetic:!0,prehideSelectors:[".cookie-announce"],detectCmp:[{exists:".cookie-announce"}],detectPopup:[{visible:".cookie-announce .announce-text"}],optIn:[{click:".cookie-announce button.xh-button"}],optOut:[{hide:".cookie-announce"}]},{name:"xing.com",detectCmp:[{exists:"div[class^=cookie-consent-CookieConsent]"}],detectPopup:[{exists:"div[class^=cookie-consent-CookieConsent]"}],optIn:[{click:"#consent-accept-button"}],optOut:[{click:"#consent-settings-button"},{click:".consent-banner-button-accept-overlay"}],test:[{eval:"EVAL_XING_0"}]},{name:"xnxx-com",cosmetic:!0,prehideSelectors:["#cookies-use-alert"],detectCmp:[{exists:"#cookies-use-alert"}],detectPopup:[{visible:"#cookies-use-alert"}],optIn:[{click:"#cookies-use-alert .close"}],optOut:[{hide:"#cookies-use-alert"}]},{name:"xvideos",vendorUrl:"https://xvideos.com",runContext:{urlPattern:"^https://[^/]*xvideos\\.com/"},prehideSelectors:[],detectCmp:[{exists:".disclaimer-opened #disclaimer-cookies"}],detectPopup:[{visible:".disclaimer-opened #disclaimer-cookies"}],optIn:[{waitForThenClick:"#disclaimer-accept_cookies"}],optOut:[{waitForThenClick:"#disclaimer-reject_cookies"}]},{name:"Yahoo",runContext:{urlPattern:"^https://consent\\.yahoo\\.com/v2/"},prehideSelectors:["#reject-all"],detectCmp:[{exists:"#consent-page"}],detectPopup:[{visible:"#consent-page"}],optIn:[{waitForThenClick:"#consent-page button[value=agree]"}],optOut:[{waitForThenClick:"#consent-page button[value=reject]"}]},{name:"youporn.com",cosmetic:!0,prehideSelectors:[".euCookieModal, #js_euCookieModal"],detectCmp:[{exists:".euCookieModal"}],detectPopup:[{exists:".euCookieModal, #js_euCookieModal"}],optIn:[{click:'button[name="user_acceptCookie"]'}],optOut:[{hide:".euCookieModal"}]},{name:"youtube-desktop",prehideSelectors:["tp-yt-iron-overlay-backdrop.opened","ytd-consent-bump-v2-lightbox"],detectCmp:[{exists:"ytd-consent-bump-v2-lightbox tp-yt-paper-dialog"},{exists:'ytd-consent-bump-v2-lightbox tp-yt-paper-dialog a[href^="https://consent.youtube.com/"]'}],detectPopup:[{visible:"ytd-consent-bump-v2-lightbox tp-yt-paper-dialog"}],optIn:[{waitForThenClick:"ytd-consent-bump-v2-lightbox .eom-buttons .eom-button-row:first-child ytd-button-renderer:last-child #button,ytd-consent-bump-v2-lightbox .eom-buttons .eom-button-row:first-child ytd-button-renderer:last-child button"},{wait:500}],optOut:[{waitForThenClick:"ytd-consent-bump-v2-lightbox .eom-buttons .eom-button-row:first-child ytd-button-renderer:first-child #button,ytd-consent-bump-v2-lightbox .eom-buttons .eom-button-row:first-child ytd-button-renderer:first-child button"},{wait:500}],test:[{wait:500},{eval:"EVAL_YOUTUBE_DESKTOP_0"}]},{name:"youtube-mobile",prehideSelectors:[".consent-bump-v2-lightbox"],detectCmp:[{exists:"ytm-consent-bump-v2-renderer"}],detectPopup:[{visible:"ytm-consent-bump-v2-renderer"}],optIn:[{waitForThenClick:"ytm-consent-bump-v2-renderer .privacy-terms + .one-col-dialog-buttons c3-material-button:first-child button, ytm-consent-bump-v2-renderer .privacy-terms + .one-col-dialog-buttons ytm-button-renderer:first-child button"},{wait:500}],optOut:[{waitForThenClick:"ytm-consent-bump-v2-renderer .privacy-terms + .one-col-dialog-buttons c3-material-button:nth-child(2) button, ytm-consent-bump-v2-renderer .privacy-terms + .one-col-dialog-buttons ytm-button-renderer:nth-child(2) button"},{wait:500}],test:[{wait:500},{eval:"EVAL_YOUTUBE_MOBILE_0"}]},{name:"zdf",prehideSelectors:["#zdf-cmp-banner-sdk"],detectCmp:[{exists:"#zdf-cmp-banner-sdk"}],detectPopup:[{visible:"#zdf-cmp-main.zdf-cmp-show"}],optIn:[{waitForThenClick:"#zdf-cmp-main #zdf-cmp-accept-btn"}],optOut:[{waitForThenClick:"#zdf-cmp-main #zdf-cmp-deny-btn"}],test:[]},{name:"zentralruf-de",runContext:{urlPattern:"^https://(www\\.)?zentralruf\\.de"},prehideSelectors:["#cookie_modal_wrapper"],detectCmp:[{exists:"#cookie_modal_wrapper"}],detectPopup:[{visible:"#cookie_modal_wrapper"}],optIn:[{waitForThenClick:"#cookie_modal_wrapper #cookie_modal_button_consent_all"}],optOut:[{waitForThenClick:"#cookie_modal_wrapper #cookie_modal_button_choose"}]}],Zi={"didomi.io":{detectors:[{presentMatcher:{target:{selector:"#didomi-host, #didomi-notice"},type:"css"},showingMatcher:{target:{selector:"body.didomi-popup-open, .didomi-notice-banner"},type:"css"}}],methods:[{action:{target:{selector:".didomi-popup-notice-buttons .didomi-button:not(.didomi-button-highlight), .didomi-notice-banner .didomi-learn-more-button"},type:"click"},name:"OPEN_OPTIONS"},{action:{actions:[{retries:50,target:{selector:"#didomi-purpose-cookies"},type:"waitcss",waitTime:50},{consents:[{description:"Share (everything) with others",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-share_whith_others]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-share_whith_others]:last-child"},type:"click"},type:"X"},{description:"Information storage and access",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-cookies]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-cookies]:last-child"},type:"click"},type:"D"},{description:"Content selection, offers and marketing",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-CL-T1Rgm7]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-CL-T1Rgm7]:last-child"},type:"click"},type:"E"},{description:"Analytics",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-analytics]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-analytics]:last-child"},type:"click"},type:"B"},{description:"Analytics",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-M9NRHJe3G]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-M9NRHJe3G]:last-child"},type:"click"},type:"B"},{description:"Ad and content selection",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-advertising_personalization]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-advertising_personalization]:last-child"},type:"click"},type:"F"},{description:"Ad and content selection",falseAction:{parent:{childFilter:{target:{selector:"#didomi-purpose-pub-ciblee"}},selector:".didomi-consent-popup-data-processing, .didomi-components-accordion-label-container"},target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-pub-ciblee]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-pub-ciblee]:last-child"},type:"click"},type:"F"},{description:"Ad and content selection - basics",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-q4zlJqdcD]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-q4zlJqdcD]:last-child"},type:"click"},type:"F"},{description:"Ad and content selection - partners and subsidiaries",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-partenaire-cAsDe8jC]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-partenaire-cAsDe8jC]:last-child"},type:"click"},type:"F"},{description:"Ad and content selection - social networks",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-p4em9a8m]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-p4em9a8m]:last-child"},type:"click"},type:"F"},{description:"Ad and content selection - others",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-autres-pub]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-autres-pub]:last-child"},type:"click"},type:"F"},{description:"Social networks",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-reseauxsociaux]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-reseauxsociaux]:last-child"},type:"click"},type:"A"},{description:"Social networks",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-social_media]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-social_media]:last-child"},type:"click"},type:"A"},{description:"Content selection",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-content_personalization]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-content_personalization]:last-child"},type:"click"},type:"E"},{description:"Ad delivery",falseAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-ad_delivery]:first-child"},type:"click"},trueAction:{target:{selector:".didomi-components-radio__option[aria-describedby=didomi-purpose-ad_delivery]:last-child"},type:"click"},type:"F"}],type:"consent"},{action:{consents:[{matcher:{childFilter:{target:{selector:":not(.didomi-components-radio__option--selected)"}},type:"css"},trueAction:{target:{selector:":nth-child(2)"},type:"click"},falseAction:{target:{selector:":first-child"},type:"click"},type:"X"}],type:"consent"},target:{selector:".didomi-components-radio"},type:"foreach"}],type:"list"},name:"DO_CONSENT"},{action:{parent:{selector:".didomi-consent-popup-footer .didomi-consent-popup-actions"},target:{selector:".didomi-components-button:first-child"},type:"click"},name:"SAVE_CONSENT"}]},oil:{detectors:[{presentMatcher:{target:{selector:".as-oil-content-overlay"},type:"css"},showingMatcher:{target:{selector:".as-oil-content-overlay"},type:"css"}}],methods:[{action:{actions:[{target:{selector:".as-js-advanced-settings"},type:"click"},{retries:"10",target:{selector:".as-oil-cpc__purpose-container"},type:"waitcss",waitTime:"250"}],type:"list"},name:"OPEN_OPTIONS"},{action:{actions:[{consents:[{matcher:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:["Information storage and access","Opbevaring af og adgang til oplysninger på din enhed"]},target:{selector:"input"},type:"checkbox"},toggleAction:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:["Information storage and access","Opbevaring af og adgang til oplysninger på din enhed"]},target:{selector:".as-oil-cpc__switch"},type:"click"},type:"D"},{matcher:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:["Personlige annoncer","Personalisation"]},target:{selector:"input"},type:"checkbox"},toggleAction:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:["Personlige annoncer","Personalisation"]},target:{selector:".as-oil-cpc__switch"},type:"click"},type:"E"},{matcher:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:["Annoncevalg, levering og rapportering","Ad selection, delivery, reporting"]},target:{selector:"input"},type:"checkbox"},toggleAction:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:["Annoncevalg, levering og rapportering","Ad selection, delivery, reporting"]},target:{selector:".as-oil-cpc__switch"},type:"click"},type:"F"},{matcher:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:["Personalisering af indhold","Content selection, delivery, reporting"]},target:{selector:"input"},type:"checkbox"},toggleAction:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:["Personalisering af indhold","Content selection, delivery, reporting"]},target:{selector:".as-oil-cpc__switch"},type:"click"},type:"E"},{matcher:{parent:{childFilter:{target:{selector:".as-oil-cpc__purpose-header",textFilter:["Måling","Measurement"]}},selector:".as-oil-cpc__purpose-container"},target:{selector:"input"},type:"checkbox"},toggleAction:{parent:{childFilter:{target:{selector:".as-oil-cpc__purpose-header",textFilter:["Måling","Measurement"]}},selector:".as-oil-cpc__purpose-container"},target:{selector:".as-oil-cpc__switch"},type:"click"},type:"B"},{matcher:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:"Google"},target:{selector:"input"},type:"checkbox"},toggleAction:{parent:{selector:".as-oil-cpc__purpose-container",textFilter:"Google"},target:{selector:".as-oil-cpc__switch"},type:"click"},type:"F"}],type:"consent"}],type:"list"},name:"DO_CONSENT"},{action:{target:{selector:".as-oil__btn-optin"},type:"click"},name:"SAVE_CONSENT"},{action:{target:{selector:"div.as-oil"},type:"hide"},name:"HIDE_CMP"}]},optanon:{detectors:[{presentMatcher:{target:{selector:"#optanon-menu, .optanon-alert-box-wrapper"},type:"css"},showingMatcher:{target:{displayFilter:!0,selector:".optanon-alert-box-wrapper"},type:"css"}}],methods:[{action:{actions:[{target:{selector:".optanon-alert-box-wrapper .optanon-toggle-display, a[onclick*='OneTrust.ToggleInfoDisplay()'], a[onclick*='Optanon.ToggleInfoDisplay()']"},type:"click"}],type:"list"},name:"OPEN_OPTIONS"},{action:{actions:[{target:{selector:".preference-menu-item #Your-privacy"},type:"click"},{target:{selector:"#optanon-vendor-consent-text"},type:"click"},{action:{consents:[{matcher:{target:{selector:"input"},type:"checkbox"},toggleAction:{target:{selector:"label"},type:"click"},type:"X"}],type:"consent"},target:{selector:"#optanon-vendor-consent-list .vendor-item"},type:"foreach"},{target:{selector:".vendor-consent-back-link"},type:"click"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-performance"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-performance"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"B"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-functional"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-functional"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"E"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-advertising"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-advertising"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"F"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-social"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-social"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"B"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Social Media Cookies"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Social Media Cookies"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"B"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Personalisation"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Personalisation"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"E"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Site monitoring cookies"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Site monitoring cookies"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"B"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Third party privacy-enhanced content"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Third party privacy-enhanced content"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"X"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Performance & Advertising Cookies"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Performance & Advertising Cookies"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"F"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Information storage and access"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Information storage and access"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"D"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Ad selection, delivery, reporting"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Ad selection, delivery, reporting"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"F"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Content selection, delivery, reporting"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Content selection, delivery, reporting"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"E"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Measurement"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Measurement"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"B"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Recommended Cookies"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Recommended Cookies"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"X"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Unclassified Cookies"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Unclassified Cookies"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"X"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Analytical Cookies"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Analytical Cookies"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"B"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Marketing Cookies"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Marketing Cookies"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"F"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Personalization"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Personalization"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"E"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Ad Selection, Delivery & Reporting"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Ad Selection, Delivery & Reporting"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"F"}],type:"consent"}],type:"list"},type:"ifcss"},{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Content Selection, Delivery & Reporting"},trueAction:{actions:[{parent:{selector:"#optanon-menu, .optanon-menu"},target:{selector:".menu-item-necessary",textFilter:"Content Selection, Delivery & Reporting"},type:"click"},{consents:[{matcher:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status input"},type:"checkbox"},toggleAction:{parent:{selector:"#optanon-popup-body-right"},target:{selector:".optanon-status label"},type:"click"},type:"E"}],type:"consent"}],type:"list"},type:"ifcss"}],type:"list"},name:"DO_CONSENT"},{action:{parent:{selector:".optanon-save-settings-button"},target:{selector:".optanon-white-button-middle"},type:"click"},name:"SAVE_CONSENT"},{action:{actions:[{target:{selector:"#optanon-popup-wrapper"},type:"hide"},{target:{selector:"#optanon-popup-bg"},type:"hide"},{target:{selector:".optanon-alert-box-wrapper"},type:"hide"}],type:"list"},name:"HIDE_CMP"}]},quantcast2:{detectors:[{presentMatcher:{target:{selector:"[data-tracking-opt-in-overlay]"},type:"css"},showingMatcher:{target:{selector:"[data-tracking-opt-in-overlay] [data-tracking-opt-in-learn-more]"},type:"css"}}],methods:[{action:{target:{selector:"[data-tracking-opt-in-overlay] [data-tracking-opt-in-learn-more]"},type:"click"},name:"OPEN_OPTIONS"},{action:{actions:[{type:"wait",waitTime:500},{action:{actions:[{target:{selector:"div",textFilter:["Information storage and access"]},trueAction:{consents:[{matcher:{target:{selector:"input"},type:"checkbox"},toggleAction:{target:{selector:"label"},type:"click"},type:"D"}],type:"consent"},type:"ifcss"},{target:{selector:"div",textFilter:["Personalization"]},trueAction:{consents:[{matcher:{target:{selector:"input"},type:"checkbox"},toggleAction:{target:{selector:"label"},type:"click"},type:"F"}],type:"consent"},type:"ifcss"},{target:{selector:"div",textFilter:["Ad selection, delivery, reporting"]},trueAction:{consents:[{matcher:{target:{selector:"input"},type:"checkbox"},toggleAction:{target:{selector:"label"},type:"click"},type:"F"}],type:"consent"},type:"ifcss"},{target:{selector:"div",textFilter:["Content selection, delivery, reporting"]},trueAction:{consents:[{matcher:{target:{selector:"input"},type:"checkbox"},toggleAction:{target:{selector:"label"},type:"click"},type:"E"}],type:"consent"},type:"ifcss"},{target:{selector:"div",textFilter:["Measurement"]},trueAction:{consents:[{matcher:{target:{selector:"input"},type:"checkbox"},toggleAction:{target:{selector:"label"},type:"click"},type:"B"}],type:"consent"},type:"ifcss"},{target:{selector:"div",textFilter:["Other Partners"]},trueAction:{consents:[{matcher:{target:{selector:"input"},type:"checkbox"},toggleAction:{target:{selector:"label"},type:"click"},type:"X"}],type:"consent"},type:"ifcss"}],type:"list"},parent:{childFilter:{target:{selector:"input"}},selector:"[data-tracking-opt-in-overlay] > div > div"},target:{childFilter:{target:{selector:"input"}},selector:":scope > div"},type:"foreach"}],type:"list"},name:"DO_CONSENT"},{action:{target:{selector:"[data-tracking-opt-in-overlay] [data-tracking-opt-in-save]"},type:"click"},name:"SAVE_CONSENT"}]},springer:{detectors:[{presentMatcher:{parent:null,target:{selector:".cmp-app_gdpr"},type:"css"},showingMatcher:{parent:null,target:{displayFilter:!0,selector:".cmp-popup_popup"},type:"css"}}],methods:[{action:{actions:[{target:{selector:".cmp-intro_rejectAll"},type:"click"},{type:"wait",waitTime:250},{target:{selector:".cmp-purposes_purposeItem:not(.cmp-purposes_selectedPurpose)"},type:"click"}],type:"list"},name:"OPEN_OPTIONS"},{action:{consents:[{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Przechowywanie informacji na urządzeniu lub dostęp do nich",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Przechowywanie informacji na urządzeniu lub dostęp do nich",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"D"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Wybór podstawowych reklam",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Wybór podstawowych reklam",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"F"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Tworzenie profilu spersonalizowanych reklam",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Tworzenie profilu spersonalizowanych reklam",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"F"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Wybór spersonalizowanych reklam",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Wybór spersonalizowanych reklam",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"E"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Tworzenie profilu spersonalizowanych treści",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Tworzenie profilu spersonalizowanych treści",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"E"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Wybór spersonalizowanych treści",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Wybór spersonalizowanych treści",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"B"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Pomiar wydajności reklam",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Pomiar wydajności reklam",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"B"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Pomiar wydajności treści",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Pomiar wydajności treści",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"B"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Stosowanie badań rynkowych w celu generowania opinii odbiorców",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Stosowanie badań rynkowych w celu generowania opinii odbiorców",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"X"},{matcher:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Opracowywanie i ulepszanie produktów",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch .cmp-switch_isSelected"},type:"css"},toggleAction:{parent:{selector:".cmp-purposes_detailHeader",textFilter:"Opracowywanie i ulepszanie produktów",childFilter:{target:{selector:".cmp-switch_switch"}}},target:{selector:".cmp-switch_switch:not(.cmp-switch_isSelected)"},type:"click"},type:"X"}],type:"consent"},name:"DO_CONSENT"},{action:{target:{selector:".cmp-details_save"},type:"click"},name:"SAVE_CONSENT"}]},wordpressgdpr:{detectors:[{presentMatcher:{parent:null,target:{selector:".wpgdprc-consent-bar"},type:"css"},showingMatcher:{parent:null,target:{displayFilter:!0,selector:".wpgdprc-consent-bar"},type:"css"}}],methods:[{action:{parent:null,target:{selector:".wpgdprc-consent-bar .wpgdprc-consent-bar__settings",textFilter:null},type:"click"},name:"OPEN_OPTIONS"},{action:{actions:[{target:{selector:".wpgdprc-consent-modal .wpgdprc-button",textFilter:"Eyeota"},type:"click"},{consents:[{description:"Eyeota Cookies",matcher:{parent:{selector:".wpgdprc-consent-modal__description",textFilter:"Eyeota"},target:{selector:"input"},type:"checkbox"},toggleAction:{parent:{selector:".wpgdprc-consent-modal__description",textFilter:"Eyeota"},target:{selector:"label"},type:"click"},type:"X"}],type:"consent"},{target:{selector:".wpgdprc-consent-modal .wpgdprc-button",textFilter:"Advertising"},type:"click"},{consents:[{description:"Advertising Cookies",matcher:{parent:{selector:".wpgdprc-consent-modal__description",textFilter:"Advertising"},target:{selector:"input"},type:"checkbox"},toggleAction:{parent:{selector:".wpgdprc-consent-modal__description",textFilter:"Advertising"},target:{selector:"label"},type:"click"},type:"F"}],type:"consent"}],type:"list"},name:"DO_CONSENT"},{action:{parent:null,target:{selector:".wpgdprc-button",textFilter:"Save my settings"},type:"click"},name:"SAVE_CONSENT"}]}},Ji={autoconsent:Xi,consentomatic:Zi},en=Object.freeze({__proto__:null,autoconsent:Xi,consentomatic:Zi,default:Ji}); /*! Bundled license information: - @cliqz/adblocker/src/codebooks/cosmetic-selector.ts: + @cliqz/adblocker/dist/esm/codebooks/cosmetic-selector.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -10,7 +10,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/codebooks/network-csp.ts: + @cliqz/adblocker/dist/esm/codebooks/network-csp.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -19,7 +19,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/codebooks/network-filter.ts: + @cliqz/adblocker/dist/esm/codebooks/network-filter.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -28,7 +28,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/codebooks/network-hostname.ts: + @cliqz/adblocker/dist/esm/codebooks/network-hostname.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -37,7 +37,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/codebooks/network-redirect.ts: + @cliqz/adblocker/dist/esm/codebooks/network-redirect.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -46,7 +46,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/codebooks/raw-network.ts: + @cliqz/adblocker/dist/esm/codebooks/raw-network.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -55,7 +55,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/codebooks/raw-cosmetic.ts: + @cliqz/adblocker/dist/esm/codebooks/raw-cosmetic.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -64,7 +64,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/compression.ts: + @cliqz/adblocker/dist/esm/compression.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -73,7 +73,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/punycode.ts: + @cliqz/adblocker/dist/esm/punycode.js: (*! * Copyright Mathias Bynens * @@ -97,7 +97,7 @@ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *) - @cliqz/adblocker/src/data-view.ts: + @cliqz/adblocker/dist/esm/data-view.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -106,7 +106,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/config.ts: + @cliqz/adblocker/dist/esm/config.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -115,7 +115,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/events.ts: + @cliqz/adblocker/dist/esm/events.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -124,7 +124,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/fetch.ts: + @cliqz/adblocker/dist/esm/fetch.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -133,7 +133,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/filters/dsl.ts: + @cliqz/adblocker/dist/esm/filters/dsl.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -206,7 +206,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/tokens-buffer.ts: + @cliqz/adblocker/dist/esm/tokens-buffer.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -215,7 +215,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/utils.ts: + @cliqz/adblocker/dist/esm/utils.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -224,7 +224,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/request.ts: + @cliqz/adblocker/dist/esm/request.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -233,7 +233,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/engine/domains.ts: + @cliqz/adblocker/dist/esm/engine/domains.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -242,7 +242,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/html-filtering.ts: + @cliqz/adblocker/dist/esm/html-filtering.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -251,7 +251,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/filters/cosmetic.ts: + @cliqz/adblocker/dist/esm/filters/cosmetic.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -260,7 +260,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/filters/network.ts: + @cliqz/adblocker/dist/esm/filters/network.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -269,7 +269,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/lists.ts: + @cliqz/adblocker/dist/esm/lists.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -278,7 +278,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/resources.ts: + @cliqz/adblocker/dist/esm/resources.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -287,7 +287,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/compact-set.ts: + @cliqz/adblocker/dist/esm/compact-set.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -296,7 +296,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/engine/optimizer.ts: + @cliqz/adblocker/dist/esm/engine/optimizer.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -305,7 +305,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/engine/reverse-index.ts: + @cliqz/adblocker/dist/esm/engine/reverse-index.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -314,7 +314,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/engine/bucket/filters.ts: + @cliqz/adblocker/dist/esm/engine/bucket/filters.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -323,7 +323,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/engine/bucket/cosmetic.ts: + @cliqz/adblocker/dist/esm/engine/bucket/cosmetic.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -332,7 +332,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/engine/bucket/network.ts: + @cliqz/adblocker/dist/esm/engine/bucket/network.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -341,7 +341,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/engine/map.ts: + @cliqz/adblocker/dist/esm/engine/map.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -350,7 +350,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/engine/metadata/categories.ts: + @cliqz/adblocker/dist/esm/engine/metadata/categories.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -359,7 +359,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/engine/metadata/organizations.ts: + @cliqz/adblocker/dist/esm/engine/metadata/organizations.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -368,7 +368,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/engine/metadata/patterns.ts: + @cliqz/adblocker/dist/esm/engine/metadata/patterns.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -377,7 +377,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/engine/metadata.ts: + @cliqz/adblocker/dist/esm/engine/metadata.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -386,7 +386,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/engine/engine.ts: + @cliqz/adblocker/dist/esm/engine/engine.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -395,7 +395,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker/src/encoding.ts: + @cliqz/adblocker/dist/esm/encoding.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -425,7 +425,7 @@ * IN THE SOFTWARE. *) - @cliqz/adblocker/src/index.ts: + @cliqz/adblocker/dist/esm/index.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -434,7 +434,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - @cliqz/adblocker-content/src/index.ts: + @cliqz/adblocker-content/dist/esm/index.js: (*! * Copyright (c) 2017-present Ghostery GmbH. All rights reserved. * @@ -442,4 +442,4 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. *) - */const Mi=new class{constructor(e,t=null,o=null){if(this.id=r(),this.rules=[],this.foundCmp=null,this.state={cosmeticFiltersOn:!1,lifecycle:"loading",prehideOn:!1,findCmpAttempts:0,detectedCmps:[],detectedPopups:[],selfTest:null},performance.mark("autoconsent-constructor"),a.sendContentMessage=e,this.sendContentMessage=e,this.rules=[],this.updateState({lifecycle:"loading"}),this.addDynamicRules(),t)this.initialize(t,o);else{o&&this.parseDeclarativeRules(o);e({type:"init",url:window.location.href}),this.updateState({lifecycle:"waitingForInitResponse"})}this.domActions=new class{constructor(e){this.autoconsentInstance=e}click(e,t=!1){const o=this.elementSelector(e);return this.autoconsentInstance.config.logs.rulesteps&&console.log("[click]",e,t,o),o.length>0&&(t?o.forEach((e=>e.click())):o[0].click()),o.length>0}elementExists(e){return this.elementSelector(e).length>0}elementVisible(e,t){const o=this.elementSelector(e),i=new Array(o.length);return o.forEach(((e,t)=>{i[t]=f(e)})),"none"===t?i.every((e=>!e)):0!==i.length&&("any"===t?i.some((e=>e)):i.every((e=>e)))}waitForElement(e,t=1e4){const o=Math.ceil(t/200);return this.autoconsentInstance.config.logs.rulesteps&&console.log("[waitForElement]",e),g((()=>this.elementSelector(e).length>0),o,200)}waitForVisible(e,t=1e4,o="any"){return g((()=>this.elementVisible(e,o)),Math.ceil(t/200),200)}async waitForThenClick(e,t=1e4,o=!1){return await this.waitForElement(e,t),this.click(e,o)}wait(e){return new Promise((t=>{setTimeout((()=>{t(!0)}),e)}))}hide(e,t){return A(m(),e,t)}prehide(e){const t=m("autoconsent-prehide");return this.autoconsentInstance.config.logs.lifecycle&&console.log("[prehide]",t,location.href),A(t,e,"opacity")}undoPrehide(){const e=m("autoconsent-prehide");return this.autoconsentInstance.config.logs.lifecycle&&console.log("[undoprehide]",e,location.href),e&&e.remove(),!!e}async createOrUpdateStyleSheet(e,t){return t||(t=new CSSStyleSheet),await t.replace(e)}removeStyleSheet(e){return this.autoconsentInstance.config.logs.lifecycle&&console.log("[undocosmetics]",e,location.href),!!e&&(e.replace(""),!0)}querySingleReplySelector(e,t=document){if(e.startsWith("aria/"))return[];if(e.startsWith("xpath/")){const o=e.slice(6),i=document.evaluate(o,t,null,XPathResult.ANY_TYPE,null);let n=null;const s=[];for(;n=i.iterateNext();)s.push(n);return s}return e.startsWith("text/")||e.startsWith("pierce/")?[]:t.shadowRoot?Array.from(t.shadowRoot.querySelectorAll(e)):Array.from(t.querySelectorAll(e))}querySelectorChain(e){let t,o=document;for(const i of e){if(t=this.querySingleReplySelector(i,o),0===t.length)return[];o=t[0]}return t}elementSelector(e){return"string"==typeof e?this.querySingleReplySelector(e):this.querySelectorChain(e)}}(this)}initialize(e,t){performance.mark("autoconsent-initialize");const o=k(e);if(o.logs.lifecycle&&console.log("autoconsent init",window.location.href),this.config=o,o.enabled){if(t&&this.parseDeclarativeRules(t),e.enableFilterList){performance.mark("autoconsent-parse-start");try{this.filtersEngine=Pi.deserialize(Li)}catch(e){console.error("Error parsing filter list",e)}performance.mark("autoconsent-parse-end"),"loading"===document.readyState?window.addEventListener("DOMContentLoaded",(()=>{performance.mark("autoconsent-apply-filterlist-start"),this.applyCosmeticFilters().then((()=>{performance.mark("autoconsent-apply-filterlist-end")}))})):(performance.mark("autoconsent-apply-filterlist-start"),this.applyCosmeticFilters().then((()=>{performance.mark("autoconsent-apply-filterlist-end")})))}if(this.rules=function(e,t){return e.filter((e=>(!t.disabledCmps||!t.disabledCmps.includes(e.name))&&(t.enableCosmeticRules||!e.isCosmetic)))}(this.rules,o),e.enablePrehide)if(document.documentElement)this.prehideElements();else{const e=()=>{window.removeEventListener("DOMContentLoaded",e),this.prehideElements()};window.addEventListener("DOMContentLoaded",e)}if("loading"===document.readyState){const e=()=>{window.removeEventListener("DOMContentLoaded",e),this.start()};window.addEventListener("DOMContentLoaded",e)}else this.start();this.updateState({lifecycle:"initialized"})}else o.logs.lifecycle&&console.log("autoconsent is disabled")}addDynamicRules(){w.forEach((e=>{this.rules.push(new e(this))}))}parseDeclarativeRules(e){e.consentomatic&&Object.keys(e.consentomatic).forEach((t=>{this.addConsentomaticCMP(t,e.consentomatic[t])})),e.autoconsent&&e.autoconsent.forEach((e=>{this.addDeclarativeCMP(e)}))}addDeclarativeCMP(e){this.rules.push(new h(e,this))}addConsentomaticCMP(e,t){this.rules.push(new class{constructor(e,t){this.name=e,this.config=t,this.methods=new Map,this.runContext=d,this.isCosmetic=!1,t.methods.forEach((e=>{e.action&&this.methods.set(e.name,e.action)})),this.hasSelfTest=!1}get isIntermediate(){return!1}checkRunContext(){return!0}async detectCmp(){return this.config.detectors.map((e=>n(e.presentMatcher))).some((e=>!!e))}async detectPopup(){return this.config.detectors.map((e=>n(e.showingMatcher))).some((e=>!!e))}async executeAction(e,t){return!this.methods.has(e)||s(this.methods.get(e),t)}async optOut(){return await this.executeAction("HIDE_CMP"),await this.executeAction("OPEN_OPTIONS"),await this.executeAction("HIDE_CMP"),await this.executeAction("DO_CONSENT",[]),await this.executeAction("SAVE_CONSENT"),!0}async optIn(){return await this.executeAction("HIDE_CMP"),await this.executeAction("OPEN_OPTIONS"),await this.executeAction("HIDE_CMP"),await this.executeAction("DO_CONSENT",["D","A","B","E","F","X"]),await this.executeAction("SAVE_CONSENT"),!0}async openCmp(){return await this.executeAction("HIDE_CMP"),await this.executeAction("OPEN_OPTIONS"),!0}async test(){return!0}}(`com_${e}`,t))}start(){window.requestIdleCallback?window.requestIdleCallback((()=>this._start()),{timeout:500}):this._start()}async _start(){performance.mark("autoconsent-start");const e=this.config.logs;e.lifecycle&&console.log(`Detecting CMPs on ${window.location.href}`),this.updateState({lifecycle:"started"});const t=await this.findCmp(this.config.detectRetries);if(this.updateState({detectedCmps:t.map((e=>e.name))}),0===t.length)return e.lifecycle&&console.log("no CMP found",location.href),this.config.enablePrehide&&this.undoPrehide(),this.filterListFallback();this.updateState({lifecycle:"cmpDetected"});const o=[],i=[];for(const e of t)e.isCosmetic?i.push(e):o.push(e);let n=!1,s=await this.detectPopups(o,(async e=>{n=await this.handlePopup(e)}));if(0===s.length&&(s=await this.detectPopups(i,(async e=>{n=await this.handlePopup(e)}))),0===s.length)return e.lifecycle&&console.log("no popup found"),this.config.enablePrehide&&this.undoPrehide(),!1;if(s.length>1){const t={msg:"Found multiple CMPs, check the detection rules.",cmps:s.map((e=>e.name))};e.errors&&console.warn(t.msg,t.cmps),this.sendContentMessage({type:"autoconsentError",details:t})}return n}async findCmp(e){const t=this.config.logs;this.updateState({findCmpAttempts:this.state.findCmpAttempts+1});const o=[];for(const e of this.rules)try{if(!e.checkRunContext())continue;await e.detectCmp()&&(t.lifecycle&&console.log(`Found CMP: ${e.name} ${window.location.href}`),this.sendContentMessage({type:"cmpDetected",url:location.href,cmp:e.name}),o.push(e))}catch(o){t.errors&&console.warn(`error detecting ${e.name}`,o)}return 0===o.length&&e>0?(await this.domActions.wait(500),this.findCmp(e-1)):o}async detectPopup(e){if(await this.waitForPopup(e).catch((t=>(this.config.logs.errors&&console.warn(`error waiting for a popup for ${e.name}`,t),!1))))return this.updateState({detectedPopups:this.state.detectedPopups.concat([e.name])}),this.sendContentMessage({type:"popupFound",cmp:e.name,url:location.href}),e;throw new Error("Popup is not shown")}async detectPopups(e,t){const o=e.map((e=>this.detectPopup(e)));await Promise.any(o).then((e=>{t(e)})).catch((()=>null));const i=await Promise.allSettled(o),n=[];for(const e of i)"fulfilled"===e.status&&n.push(e.value);return n}async handlePopup(e){return this.updateState({lifecycle:"openPopupDetected"}),this.config.enablePrehide&&!this.state.prehideOn&&this.prehideElements(),this.state.cosmeticFiltersOn&&this.undoCosmetics(),this.foundCmp=e,"optOut"===this.config.autoAction?await this.doOptOut():"optIn"===this.config.autoAction?await this.doOptIn():(this.config.logs.lifecycle&&console.log("waiting for opt-out signal...",location.href),!0)}async doOptOut(){const e=this.config.logs;let t;return this.updateState({lifecycle:"runningOptOut"}),this.foundCmp?(e.lifecycle&&console.log(`CMP ${this.foundCmp.name}: opt out on ${window.location.href}`),t=await this.foundCmp.optOut(),e.lifecycle&&console.log(`${this.foundCmp.name}: opt out result ${t}`)):(e.errors&&console.log("no CMP to opt out"),t=!1),this.config.enablePrehide&&this.undoPrehide(),this.sendContentMessage({type:"optOutResult",cmp:this.foundCmp?this.foundCmp.name:"none",result:t,scheduleSelfTest:this.foundCmp&&this.foundCmp.hasSelfTest,url:location.href}),t&&!this.foundCmp.isIntermediate?(this.sendContentMessage({type:"autoconsentDone",cmp:this.foundCmp.name,isCosmetic:this.foundCmp.isCosmetic,url:location.href}),this.updateState({lifecycle:"done"})):this.updateState({lifecycle:t?"optOutSucceeded":"optOutFailed"}),t}async doOptIn(){const e=this.config.logs;let t;return this.updateState({lifecycle:"runningOptIn"}),this.foundCmp?(e.lifecycle&&console.log(`CMP ${this.foundCmp.name}: opt in on ${window.location.href}`),t=await this.foundCmp.optIn(),e.lifecycle&&console.log(`${this.foundCmp.name}: opt in result ${t}`)):(e.errors&&console.log("no CMP to opt in"),t=!1),this.config.enablePrehide&&this.undoPrehide(),this.sendContentMessage({type:"optInResult",cmp:this.foundCmp?this.foundCmp.name:"none",result:t,scheduleSelfTest:!1,url:location.href}),t&&!this.foundCmp.isIntermediate?(this.sendContentMessage({type:"autoconsentDone",cmp:this.foundCmp.name,isCosmetic:this.foundCmp.isCosmetic,url:location.href}),this.updateState({lifecycle:"done"})):this.updateState({lifecycle:t?"optInSucceeded":"optInFailed"}),t}async doSelfTest(){const e=this.config.logs;let t;return this.foundCmp?(e.lifecycle&&console.log(`CMP ${this.foundCmp.name}: self-test on ${window.location.href}`),t=await this.foundCmp.test()):(e.errors&&console.log("no CMP to self test"),t=!1),this.sendContentMessage({type:"selfTestResult",cmp:this.foundCmp?this.foundCmp.name:"none",result:t,url:location.href}),this.updateState({selfTest:t}),t}async waitForPopup(e,t=5,o=500){const i=this.config.logs;i.lifecycle&&console.log("checking if popup is open...",e.name);const n=await e.detectPopup().catch((t=>(i.errors&&console.warn(`error detecting popup for ${e.name}`,t),!1)));return!n&&t>0?(await this.domActions.wait(o),this.waitForPopup(e,t-1,o)):(i.lifecycle&&console.log(e.name,"popup is "+(n?"open":"not open")),n)}prehideElements(){const e=this.config.logs,t=this.rules.filter((e=>e.prehideSelectors&&e.checkRunContext())).reduce(((e,t)=>[...e,...t.prehideSelectors]),["#didomi-popup,.didomi-popup-container,.didomi-popup-notice,.didomi-consent-popup-preferences,#didomi-notice,.didomi-popup-backdrop,.didomi-screen-medium"]);return this.updateState({prehideOn:!0}),setTimeout((()=>{this.config.enablePrehide&&this.state.prehideOn&&!["runningOptOut","runningOptIn"].includes(this.state.lifecycle)&&(e.lifecycle&&console.log("Process is taking too long, unhiding elements"),this.undoPrehide())}),this.config.prehideTimeout||2e3),this.domActions.prehide(t.join(","))}undoPrehide(){return this.updateState({prehideOn:!1}),this.domActions.undoPrehide()}async applyCosmeticFilters(e){if(!this.filtersEngine)return!1;const t=this.config?.logs;e||(e=Ri(this.filtersEngine)),this.updateState({cosmeticFiltersOn:!0});try{this.cosmeticStyleSheet=await this.domActions.createOrUpdateStyleSheet(e,this.cosmeticStyleSheet),t?.lifecycle&&console.log("[cosmetics]",this.cosmeticStyleSheet,location.href),document.adoptedStyleSheets.push(this.cosmeticStyleSheet)}catch(e){return this.config.logs&&console.error("Error applying cosmetic filters",e),!1}return!0}undoCosmetics(){this.updateState({cosmeticFiltersOn:!1}),this.domActions.removeStyleSheet(this.cosmeticStyleSheet)}filterListFallback(){if(!this.filtersEngine)return this.updateState({lifecycle:"nothingDetected"}),!1;const e=Ri(this.filtersEngine),t=this.domActions.elementVisible(function(e){if(e)return e.replace(/\s*{[^\\}]*}\s*/g,",").replace(/,$/,"");return""}(e),"any"),o=this.config?.logs;return t?(this.applyCosmeticFilters(e),o?.lifecycle&&console.log("Keeping cosmetic filters",location.href),this.updateState({lifecycle:"cosmeticFiltersDetected"}),this.sendContentMessage({type:"cmpDetected",url:location.href,cmp:"filterList"}),this.sendContentMessage({type:"popupFound",cmp:"filterList",url:location.href}),this.sendContentMessage({type:"optOutResult",cmp:"filterList",result:!0,scheduleSelfTest:!1,url:location.href}),this.updateState({lifecycle:"done"}),this.sendContentMessage({type:"autoconsentDone",cmp:"filterList",isCosmetic:!0,url:location.href}),!0):(o?.lifecycle&&console.log("Cosmetic filters didn't work, removing them",location.href),this.undoCosmetics(),this.updateState({lifecycle:"nothingDetected"}),!1)}updateState(e){Object.assign(this.state,e),this.sendContentMessage({type:"report",instanceId:this.id,url:window.location.href,mainFrame:window.top===window.self,state:this.state})}async receiveMessageCallback(e){const t=this.config?.logs;switch(t?.messages&&console.log("received from background",e,window.location.href),e.type){case"initResp":this.initialize(e.config,e.rules);break;case"optIn":await this.doOptIn();break;case"optOut":await this.doOptOut();break;case"selfTest":await this.doSelfTest();break;case"evalResp":!function(e,t){const o=a.pending.get(e);o?(a.pending.delete(e),o.timer&&window.clearTimeout(o.timer),o.resolve(t)):console.warn("no eval #",e)}(e.id,e.result)}}}((e=>{window.webkit.messageHandlers[e.type]&&window.webkit.messageHandlers[e.type].postMessage(e).then((e=>{Mi.receiveMessageCallback(e)}))}),null,ji);window.autoconsentMessageCallback=e=>{Mi.receiveMessageCallback(e)}}(); + */const tn=new class{constructor(e,t=null,o=null){if(this.id=s(),this.rules=[],this.foundCmp=null,this.state={cosmeticFiltersOn:!1,lifecycle:"loading",prehideOn:!1,findCmpAttempts:0,detectedCmps:[],detectedPopups:[],selfTest:null},performance.mark("autoconsent-constructor"),c.sendContentMessage=e,this.sendContentMessage=e,this.rules=[],this.updateState({lifecycle:"loading"}),this.addDynamicRules(),t)this.initialize(t,o);else{o&&this.parseDeclarativeRules(o);e({type:"init",url:window.location.href}),this.updateState({lifecycle:"waitingForInitResponse"})}this.domActions=new class{constructor(e){this.autoconsentInstance=e}click(e,t=!1){const o=this.elementSelector(e);return this.autoconsentInstance.config.logs.rulesteps&&console.log("[click]",e,t,o),o.length>0&&(t?o.forEach((e=>e.click())):o[0].click()),o.length>0}elementExists(e){return this.elementSelector(e).length>0}elementVisible(e,t){const o=this.elementSelector(e),i=new Array(o.length);return o.forEach(((e,t)=>{i[t]=g(e)})),"none"===t?i.every((e=>!e)):0!==i.length&&("any"===t?i.some((e=>e)):i.every((e=>e)))}waitForElement(e,t=1e4){const o=Math.ceil(t/200);return this.autoconsentInstance.config.logs.rulesteps&&console.log("[waitForElement]",e),A((()=>this.elementSelector(e).length>0),o,200)}waitForVisible(e,t=1e4,o="any"){return A((()=>this.elementVisible(e,o)),Math.ceil(t/200),200)}async waitForThenClick(e,t=1e4,o=!1){return await this.waitForElement(e,t),this.click(e,o)}wait(e){return new Promise((t=>{setTimeout((()=>{t(!0)}),e)}))}hide(e,t){return m(u(),e,t)}prehide(e){const t=u("autoconsent-prehide");return this.autoconsentInstance.config.logs.lifecycle&&console.log("[prehide]",t,location.href),m(t,e,"opacity")}undoPrehide(){const e=u("autoconsent-prehide");return this.autoconsentInstance.config.logs.lifecycle&&console.log("[undoprehide]",e,location.href),e&&e.remove(),!!e}async createOrUpdateStyleSheet(e,t){return t||(t=new CSSStyleSheet),await t.replace(e)}removeStyleSheet(e){return!!e&&(e.replace(""),!0)}querySingleReplySelector(e,t=document){if(e.startsWith("aria/"))return[];if(e.startsWith("xpath/")){const o=e.slice(6),i=document.evaluate(o,t,null,XPathResult.ANY_TYPE,null);let n=null;const s=[];for(;n=i.iterateNext();)s.push(n);return s}return e.startsWith("text/")||e.startsWith("pierce/")?[]:t.shadowRoot?Array.from(t.shadowRoot.querySelectorAll(e)):Array.from(t.querySelectorAll(e))}querySelectorChain(e){let t,o=document;for(const i of e){if(t=this.querySingleReplySelector(i,o),0===t.length)return[];o=t[0]}return t}elementSelector(e){return"string"==typeof e?this.querySingleReplySelector(e):this.querySelectorChain(e)}}(this)}initialize(e,t){performance.mark("autoconsent-initialize");const o=f(e);if(o.logs.lifecycle&&console.log("autoconsent init",window.location.href),this.config=o,o.enabled){if(t&&this.parseDeclarativeRules(t),e.enableFilterList){performance.mark("autoconsent-parse-start");try{this.filtersEngine=$i.deserialize(Yi)}catch(e){console.error("Error parsing filter list",e)}performance.mark("autoconsent-parse-end"),"loading"===document.readyState?window.addEventListener("DOMContentLoaded",(()=>{performance.mark("autoconsent-apply-filterlist-start"),this.applyCosmeticFilters().then((()=>{performance.mark("autoconsent-apply-filterlist-end")}))})):(performance.mark("autoconsent-apply-filterlist-start"),this.applyCosmeticFilters().then((()=>{performance.mark("autoconsent-apply-filterlist-end")})))}if(this.rules=function(e,t){return e.filter((e=>(!t.disabledCmps||!t.disabledCmps.includes(e.name))&&(t.enableCosmeticRules||!e.isCosmetic)))}(this.rules,o),e.enablePrehide)if(document.documentElement)this.prehideElements();else{const e=()=>{window.removeEventListener("DOMContentLoaded",e),this.prehideElements()};window.addEventListener("DOMContentLoaded",e)}if("loading"===document.readyState){const e=()=>{window.removeEventListener("DOMContentLoaded",e),this.start()};window.addEventListener("DOMContentLoaded",e)}else this.start();this.updateState({lifecycle:"initialized"})}else o.logs.lifecycle&&console.log("autoconsent is disabled")}addDynamicRules(){y.forEach((e=>{this.rules.push(new e(this))}))}parseDeclarativeRules(e){e.consentomatic&&Object.keys(e.consentomatic).forEach((t=>{this.addConsentomaticCMP(t,e.consentomatic[t])})),e.autoconsent&&e.autoconsent.forEach((e=>{this.addDeclarativeCMP(e)}))}addDeclarativeCMP(e){this.rules.push(new d(e,this))}addConsentomaticCMP(e,t){this.rules.push(new class{constructor(e,t){this.name=e,this.config=t,this.methods=new Map,this.runContext=l,this.isCosmetic=!1,t.methods.forEach((e=>{e.action&&this.methods.set(e.name,e.action)})),this.hasSelfTest=!1}get isIntermediate(){return!1}checkRunContext(){return!0}async detectCmp(){return this.config.detectors.map((e=>o(e.presentMatcher))).some((e=>!!e))}async detectPopup(){return this.config.detectors.map((e=>o(e.showingMatcher))).some((e=>!!e))}async executeAction(e,t){return!this.methods.has(e)||i(this.methods.get(e),t)}async optOut(){return await this.executeAction("HIDE_CMP"),await this.executeAction("OPEN_OPTIONS"),await this.executeAction("HIDE_CMP"),await this.executeAction("DO_CONSENT",[]),await this.executeAction("SAVE_CONSENT"),!0}async optIn(){return await this.executeAction("HIDE_CMP"),await this.executeAction("OPEN_OPTIONS"),await this.executeAction("HIDE_CMP"),await this.executeAction("DO_CONSENT",["D","A","B","E","F","X"]),await this.executeAction("SAVE_CONSENT"),!0}async openCmp(){return await this.executeAction("HIDE_CMP"),await this.executeAction("OPEN_OPTIONS"),!0}async test(){return!0}}(`com_${e}`,t))}start(){window.requestIdleCallback?window.requestIdleCallback((()=>this._start()),{timeout:500}):this._start()}async _start(){performance.mark("autoconsent-start");const e=this.config.logs;e.lifecycle&&console.log(`Detecting CMPs on ${window.location.href}`),this.updateState({lifecycle:"started"});const t=await this.findCmp(this.config.detectRetries);if(this.updateState({detectedCmps:t.map((e=>e.name))}),0===t.length)return e.lifecycle&&console.log("no CMP found",location.href),this.config.enablePrehide&&this.undoPrehide(),this.filterListFallback();this.updateState({lifecycle:"cmpDetected"});const o=[],i=[];for(const e of t)e.isCosmetic?i.push(e):o.push(e);let n=!1,s=await this.detectPopups(o,(async e=>{n=await this.handlePopup(e)}));if(0===s.length&&(s=await this.detectPopups(i,(async e=>{n=await this.handlePopup(e)}))),0===s.length)return e.lifecycle&&console.log("no popup found"),this.config.enablePrehide&&this.undoPrehide(),!1;if(s.length>1){const t={msg:"Found multiple CMPs, check the detection rules.",cmps:s.map((e=>e.name))};e.errors&&console.warn(t.msg,t.cmps),this.sendContentMessage({type:"autoconsentError",details:t})}return n}async findCmp(e){const t=this.config.logs;this.updateState({findCmpAttempts:this.state.findCmpAttempts+1});const o=[];for(const e of this.rules)try{if(!e.checkRunContext())continue;await e.detectCmp()&&(t.lifecycle&&console.log(`Found CMP: ${e.name} ${window.location.href}`),this.sendContentMessage({type:"cmpDetected",url:location.href,cmp:e.name}),o.push(e))}catch(o){t.errors&&console.warn(`error detecting ${e.name}`,o)}return 0===o.length&&e>0?(await this.domActions.wait(500),this.findCmp(e-1)):o}async detectPopup(e){if(await this.waitForPopup(e).catch((t=>(this.config.logs.errors&&console.warn(`error waiting for a popup for ${e.name}`,t),!1))))return this.updateState({detectedPopups:this.state.detectedPopups.concat([e.name])}),this.sendContentMessage({type:"popupFound",cmp:e.name,url:location.href}),e;throw new Error("Popup is not shown")}async detectPopups(e,t){const o=e.map((e=>this.detectPopup(e)));await Promise.any(o).then((e=>{t(e)})).catch((()=>null));const i=await Promise.allSettled(o),n=[];for(const e of i)"fulfilled"===e.status&&n.push(e.value);return n}async handlePopup(e){return this.updateState({lifecycle:"openPopupDetected"}),this.config.enablePrehide&&!this.state.prehideOn&&this.prehideElements(),this.state.cosmeticFiltersOn&&this.undoCosmetics(),this.foundCmp=e,"optOut"===this.config.autoAction?await this.doOptOut():"optIn"===this.config.autoAction?await this.doOptIn():(this.config.logs.lifecycle&&console.log("waiting for opt-out signal...",location.href),!0)}async doOptOut(){const e=this.config.logs;let t;return this.updateState({lifecycle:"runningOptOut"}),this.foundCmp?(e.lifecycle&&console.log(`CMP ${this.foundCmp.name}: opt out on ${window.location.href}`),t=await this.foundCmp.optOut(),e.lifecycle&&console.log(`${this.foundCmp.name}: opt out result ${t}`)):(e.errors&&console.log("no CMP to opt out"),t=!1),this.config.enablePrehide&&this.undoPrehide(),this.sendContentMessage({type:"optOutResult",cmp:this.foundCmp?this.foundCmp.name:"none",result:t,scheduleSelfTest:this.foundCmp&&this.foundCmp.hasSelfTest,url:location.href}),t&&!this.foundCmp.isIntermediate?(this.sendContentMessage({type:"autoconsentDone",cmp:this.foundCmp.name,isCosmetic:this.foundCmp.isCosmetic,url:location.href}),this.updateState({lifecycle:"done"})):this.updateState({lifecycle:t?"optOutSucceeded":"optOutFailed"}),t}async doOptIn(){const e=this.config.logs;let t;return this.updateState({lifecycle:"runningOptIn"}),this.foundCmp?(e.lifecycle&&console.log(`CMP ${this.foundCmp.name}: opt in on ${window.location.href}`),t=await this.foundCmp.optIn(),e.lifecycle&&console.log(`${this.foundCmp.name}: opt in result ${t}`)):(e.errors&&console.log("no CMP to opt in"),t=!1),this.config.enablePrehide&&this.undoPrehide(),this.sendContentMessage({type:"optInResult",cmp:this.foundCmp?this.foundCmp.name:"none",result:t,scheduleSelfTest:!1,url:location.href}),t&&!this.foundCmp.isIntermediate?(this.sendContentMessage({type:"autoconsentDone",cmp:this.foundCmp.name,isCosmetic:this.foundCmp.isCosmetic,url:location.href}),this.updateState({lifecycle:"done"})):this.updateState({lifecycle:t?"optInSucceeded":"optInFailed"}),t}async doSelfTest(){const e=this.config.logs;let t;return this.foundCmp?(e.lifecycle&&console.log(`CMP ${this.foundCmp.name}: self-test on ${window.location.href}`),t=await this.foundCmp.test()):(e.errors&&console.log("no CMP to self test"),t=!1),this.sendContentMessage({type:"selfTestResult",cmp:this.foundCmp?this.foundCmp.name:"none",result:t,url:location.href}),this.updateState({selfTest:t}),t}async waitForPopup(e,t=5,o=500){const i=this.config.logs;i.lifecycle&&console.log("checking if popup is open...",e.name);const n=await e.detectPopup().catch((t=>(i.errors&&console.warn(`error detecting popup for ${e.name}`,t),!1)));return!n&&t>0?(await this.domActions.wait(o),this.waitForPopup(e,t-1,o)):(i.lifecycle&&console.log(e.name,"popup is "+(n?"open":"not open")),n)}prehideElements(){const e=this.config.logs,t=this.rules.filter((e=>e.prehideSelectors&&e.checkRunContext())).reduce(((e,t)=>[...e,...t.prehideSelectors]),["#didomi-popup,.didomi-popup-container,.didomi-popup-notice,.didomi-consent-popup-preferences,#didomi-notice,.didomi-popup-backdrop,.didomi-screen-medium"]);return this.updateState({prehideOn:!0}),setTimeout((()=>{this.config.enablePrehide&&this.state.prehideOn&&!["runningOptOut","runningOptIn"].includes(this.state.lifecycle)&&(e.lifecycle&&console.log("Process is taking too long, unhiding elements"),this.undoPrehide())}),this.config.prehideTimeout||2e3),this.domActions.prehide(t.join(","))}undoPrehide(){return this.updateState({prehideOn:!1}),this.domActions.undoPrehide()}async applyCosmeticFilters(e){if(performance.mark("autoconsent-apply-filterlist-start"),!this.filtersEngine)return!1;const t=this.config?.logs;e||(e=Qi(this.filtersEngine)),this.updateState({cosmeticFiltersOn:!0});try{this.cosmeticStyleSheet=await this.domActions.createOrUpdateStyleSheet(e,this.cosmeticStyleSheet),t?.lifecycle&&console.log("[cosmetics]",this.cosmeticStyleSheet,location.href),document.adoptedStyleSheets.push(this.cosmeticStyleSheet),performance.mark("autoconsent-apply-filterlist-end")}catch(e){return this.config.logs&&console.error("Error applying cosmetic filters",e),performance.mark("autoconsent-apply-filterlist-end"),!1}return!0}undoCosmetics(){this.updateState({cosmeticFiltersOn:!1}),this.config.logs.lifecycle&&console.log("[undocosmetics]",this.cosmeticStyleSheet,location.href),this.domActions.removeStyleSheet(this.cosmeticStyleSheet)}filterListFallback(){if(!this.filtersEngine)return this.updateState({lifecycle:"nothingDetected"}),!1;const e=Qi(this.filtersEngine),t=this.domActions.elementVisible(function(e){if(e)return e.replace(/\s*{[^\\}]*}\s*/g,",").replace(/,$/,"");return""}(e),"any"),o=this.config?.logs;return t?(this.applyCosmeticFilters(e),o?.lifecycle&&console.log("Keeping cosmetic filters",location.href),this.updateState({lifecycle:"cosmeticFiltersDetected"}),this.sendContentMessage({type:"cmpDetected",url:location.href,cmp:"filterList"}),this.sendContentMessage({type:"popupFound",cmp:"filterList",url:location.href}),this.sendContentMessage({type:"optOutResult",cmp:"filterList",result:!0,scheduleSelfTest:!1,url:location.href}),this.updateState({lifecycle:"done"}),this.sendContentMessage({type:"autoconsentDone",cmp:"filterList",isCosmetic:!0,url:location.href}),!0):(o?.lifecycle&&console.log("Cosmetic filters didn't work, removing them",location.href),this.undoCosmetics(),this.updateState({lifecycle:"nothingDetected"}),!1)}updateState(e){Object.assign(this.state,e),this.sendContentMessage({type:"report",instanceId:this.id,url:window.location.href,mainFrame:window.top===window.self,state:this.state})}async receiveMessageCallback(e){const t=this.config?.logs;switch(t?.messages&&console.log("received from background",e,window.location.href),e.type){case"initResp":this.initialize(e.config,e.rules);break;case"optIn":await this.doOptIn();break;case"optOut":await this.doOptOut();break;case"selfTest":await this.doSelfTest();break;case"evalResp":!function(e,t){const o=c.pending.get(e);o?(c.pending.delete(e),o.timer&&window.clearTimeout(o.timer),o.resolve(t)):console.warn("no eval #",e)}(e.id,e.result)}}}((e=>{window.webkit.messageHandlers[e.type]&&window.webkit.messageHandlers[e.type].postMessage(e).then((e=>{tn.receiveMessageCallback(e)}))}),null,en);window.autoconsentMessageCallback=e=>{tn.receiveMessageCallback(e)}}(); From fc9443fd7da7f070b0e3186c6ce1213bc80c2037 Mon Sep 17 00:00:00 2001 From: Maxim Tsoy Date: Tue, 15 Oct 2024 14:36:23 +0200 Subject: [PATCH 6/8] Pin to the dev BSK branch --- DuckDuckGo.xcodeproj/project.pbxproj | 4 ++-- .../project.xcworkspace/xcshareddata/swiftpm/Package.resolved | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/DuckDuckGo.xcodeproj/project.pbxproj b/DuckDuckGo.xcodeproj/project.pbxproj index 732d3c706c..056d48d4b4 100644 --- a/DuckDuckGo.xcodeproj/project.pbxproj +++ b/DuckDuckGo.xcodeproj/project.pbxproj @@ -14287,8 +14287,8 @@ isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/duckduckgo/BrowserServicesKit"; requirement = { - kind = exactVersion; - version = 199.0.0; + branch = "new-cpm-experiment"; + kind = branch; }; }; 9FF521422BAA8FF300B9819B /* XCRemoteSwiftPackageReference "lottie-spm" */ = { diff --git a/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 82d9c4dbfc..d9255d351e 100644 --- a/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -32,8 +32,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/duckduckgo/BrowserServicesKit", "state" : { - "revision" : "ec46d991838527dd8c7041a3673428c0e18e0fdc", - "version" : "199.0.0" + "branch" : "new-cpm-experiment", + "revision" : "24a9bfc3cf5d174f22d86b671b041e07a1f9b448" } }, { From fcb73040b6f5c39205ede109ff972a4a4ee682f8 Mon Sep 17 00:00:00 2001 From: Maxim Tsoy Date: Tue, 15 Oct 2024 19:58:10 +0200 Subject: [PATCH 7/8] Rename the search query parameter --- DuckDuckGo/Common/Extensions/URLExtension.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DuckDuckGo/Common/Extensions/URLExtension.swift b/DuckDuckGo/Common/Extensions/URLExtension.swift index 51a374c709..e956ab5ba0 100644 --- a/DuckDuckGo/Common/Extensions/URLExtension.swift +++ b/DuckDuckGo/Common/Extensions/URLExtension.swift @@ -98,7 +98,7 @@ extension URL { let isFilterListExperimentEnabled = privacyConfigurationManager.privacyConfig.isSubfeatureEnabled(AutoconsentSubfeature.filterlistExperiment2) var url = Self.duckDuckGo.appendingParameter(name: DuckDuckGoParameters.search.rawValue, value: trimmedQuery) if isFilterListExperimentEnabled { - url = url.appendingParameter(name: "cpm_filterlist", value: AutoconsentFilterlistExperiment.cohort == AutoconsentFilterlistExperiment.test ? "1" : "0") + url = url.appendingParameter(name: "cpme", value: AutoconsentFilterlistExperiment.cohort == AutoconsentFilterlistExperiment.test ? "1" : "0") } // Add experimental atb parameter to SERP queries for internal users to display Privacy Reminder From a9e1dadd8617502a182f2daa8e89379157432499 Mon Sep 17 00:00:00 2001 From: Maxim Tsoy Date: Fri, 18 Oct 2024 10:23:07 +0200 Subject: [PATCH 8/8] Bump BSK to the latest version --- DuckDuckGo.xcodeproj/project.pbxproj | 4 ++-- .../project.xcworkspace/xcshareddata/swiftpm/Package.resolved | 4 ++-- LocalPackages/DataBrokerProtection/Package.swift | 2 +- LocalPackages/NetworkProtectionMac/Package.swift | 2 +- LocalPackages/SubscriptionUI/Package.swift | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/DuckDuckGo.xcodeproj/project.pbxproj b/DuckDuckGo.xcodeproj/project.pbxproj index 056d48d4b4..c379c88728 100644 --- a/DuckDuckGo.xcodeproj/project.pbxproj +++ b/DuckDuckGo.xcodeproj/project.pbxproj @@ -14287,8 +14287,8 @@ isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/duckduckgo/BrowserServicesKit"; requirement = { - branch = "new-cpm-experiment"; - kind = branch; + kind = exactVersion; + version = 199.4.0; }; }; 9FF521422BAA8FF300B9819B /* XCRemoteSwiftPackageReference "lottie-spm" */ = { diff --git a/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 397d23d8e3..395ed3ae6f 100644 --- a/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -32,8 +32,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/duckduckgo/BrowserServicesKit", "state" : { - "branch" : "new-cpm-experiment", - "revision" : "60b5c80d341c60195dfc6f1676dbd6ea9d42d8f9" + "revision" : "f1a033cc4b97ab6b4d845815e825ba179c02635a", + "version" : "199.4.0" } }, { diff --git a/LocalPackages/DataBrokerProtection/Package.swift b/LocalPackages/DataBrokerProtection/Package.swift index f8efa75684..8dd204af21 100644 --- a/LocalPackages/DataBrokerProtection/Package.swift +++ b/LocalPackages/DataBrokerProtection/Package.swift @@ -29,7 +29,7 @@ let package = Package( targets: ["DataBrokerProtection"]) ], dependencies: [ - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "199.2.0"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "199.4.0"), .package(path: "../SwiftUIExtensions"), .package(path: "../XPCHelper"), ], diff --git a/LocalPackages/NetworkProtectionMac/Package.swift b/LocalPackages/NetworkProtectionMac/Package.swift index 05c43f14b1..1d35bc0778 100644 --- a/LocalPackages/NetworkProtectionMac/Package.swift +++ b/LocalPackages/NetworkProtectionMac/Package.swift @@ -32,7 +32,7 @@ let package = Package( .library(name: "VPNAppLauncher", targets: ["VPNAppLauncher"]), ], dependencies: [ - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "199.2.0"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "199.4.0"), .package(url: "https://github.com/airbnb/lottie-spm", exact: "4.4.3"), .package(path: "../AppLauncher"), .package(path: "../UDSHelper"), diff --git a/LocalPackages/SubscriptionUI/Package.swift b/LocalPackages/SubscriptionUI/Package.swift index 3ef44085af..c8850ac116 100644 --- a/LocalPackages/SubscriptionUI/Package.swift +++ b/LocalPackages/SubscriptionUI/Package.swift @@ -12,7 +12,7 @@ let package = Package( targets: ["SubscriptionUI"]), ], dependencies: [ - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "199.2.0"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "199.4.0"), .package(path: "../SwiftUIExtensions") ], targets: [